blob: bb5cd8715f618923bf56c29e2f406362ed8981e6 [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 Begunkov68fe2562021-09-15 12:03:38 +0100106#define SQE_COMMON_FLAGS (IOSQE_FIXED_FILE | IOSQE_IO_LINK | \
107 IOSQE_IO_HARDLINK | IOSQE_ASYNC)
108
109#define SQE_VALID_FLAGS (SQE_COMMON_FLAGS|IOSQE_BUFFER_SELECT|IOSQE_IO_DRAIN)
110
Pavel Begunkovc8543572021-06-17 18:14:04 +0100111#define IO_REQ_CLEAN_FLAGS (REQ_F_BUFFER_SELECTED | REQ_F_NEED_CLEANUP | \
Pavel Begunkovd886e182021-10-04 20:02:56 +0100112 REQ_F_POLLED | REQ_F_INFLIGHT | REQ_F_CREDS | \
113 REQ_F_ASYNC_DATA)
Pavel Begunkovb16fed662021-02-18 18:29:40 +0000114
Pavel Begunkov09899b12021-06-14 02:36:22 +0100115#define IO_TCTX_REFS_CACHE_NR (1U << 10)
116
Jens Axboe2b188cc2019-01-07 10:46:33 -0700117struct io_uring {
118 u32 head ____cacheline_aligned_in_smp;
119 u32 tail ____cacheline_aligned_in_smp;
120};
121
Stefan Bühler1e84b972019-04-24 23:54:16 +0200122/*
Hristo Venev75b28af2019-08-26 17:23:46 +0000123 * This data is shared with the application through the mmap at offsets
124 * IORING_OFF_SQ_RING and IORING_OFF_CQ_RING.
Stefan Bühler1e84b972019-04-24 23:54:16 +0200125 *
126 * The offsets to the member fields are published through struct
127 * io_sqring_offsets when calling io_uring_setup.
128 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000129struct io_rings {
Stefan Bühler1e84b972019-04-24 23:54:16 +0200130 /*
131 * Head and tail offsets into the ring; the offsets need to be
132 * masked to get valid indices.
133 *
Hristo Venev75b28af2019-08-26 17:23:46 +0000134 * The kernel controls head of the sq ring and the tail of the cq ring,
135 * and the application controls tail of the sq ring and the head of the
136 * cq ring.
Stefan Bühler1e84b972019-04-24 23:54:16 +0200137 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000138 struct io_uring sq, cq;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200139 /*
Hristo Venev75b28af2019-08-26 17:23:46 +0000140 * Bitmasks to apply to head and tail offsets (constant, equals
Stefan Bühler1e84b972019-04-24 23:54:16 +0200141 * ring_entries - 1)
142 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000143 u32 sq_ring_mask, cq_ring_mask;
144 /* Ring sizes (constant, power of 2) */
145 u32 sq_ring_entries, cq_ring_entries;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200146 /*
147 * Number of invalid entries dropped by the kernel due to
148 * invalid index stored in array
149 *
150 * Written by the kernel, shouldn't be modified by the
151 * application (i.e. get number of "new events" by comparing to
152 * cached value).
153 *
154 * After a new SQ head value was read by the application this
155 * counter includes all submissions that were dropped reaching
156 * the new SQ head (and possibly more).
157 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000158 u32 sq_dropped;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200159 /*
Stefano Garzarella0d9b5b32020-05-15 18:38:04 +0200160 * Runtime SQ flags
Stefan Bühler1e84b972019-04-24 23:54:16 +0200161 *
162 * Written by the kernel, shouldn't be modified by the
163 * application.
164 *
165 * The application needs a full memory barrier before checking
166 * for IORING_SQ_NEED_WAKEUP after updating the sq tail.
167 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000168 u32 sq_flags;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200169 /*
Stefano Garzarella0d9b5b32020-05-15 18:38:04 +0200170 * Runtime CQ flags
171 *
172 * Written by the application, shouldn't be modified by the
173 * kernel.
174 */
Pavel Begunkovfe7e3252021-06-24 15:09:57 +0100175 u32 cq_flags;
Stefano Garzarella0d9b5b32020-05-15 18:38:04 +0200176 /*
Stefan Bühler1e84b972019-04-24 23:54:16 +0200177 * Number of completion events lost because the queue was full;
178 * this should be avoided by the application by making sure
LimingWu0b4295b2019-12-05 20:18:18 +0800179 * there are not more requests pending than there is space in
Stefan Bühler1e84b972019-04-24 23:54:16 +0200180 * the completion queue.
181 *
182 * Written by the kernel, shouldn't be modified by the
183 * application (i.e. get number of "new events" by comparing to
184 * cached value).
185 *
186 * As completion events come in out of order this counter is not
187 * ordered with any other data.
188 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000189 u32 cq_overflow;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200190 /*
191 * Ring buffer of completion events.
192 *
193 * The kernel writes completion events fresh every time they are
194 * produced, so the application is allowed to modify pending
195 * entries.
196 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000197 struct io_uring_cqe cqes[] ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700198};
199
Pavel Begunkov45d189c2021-02-10 00:03:07 +0000200enum io_uring_cmd_flags {
201 IO_URING_F_NONBLOCK = 1,
Pavel Begunkov889fca72021-02-10 00:03:09 +0000202 IO_URING_F_COMPLETE_DEFER = 2,
Pavel Begunkov45d189c2021-02-10 00:03:07 +0000203};
204
Jens Axboeedafcce2019-01-09 09:16:05 -0700205struct io_mapped_ubuf {
206 u64 ubuf;
Pavel Begunkov4751f532021-04-01 15:43:55 +0100207 u64 ubuf_end;
Jens Axboeedafcce2019-01-09 09:16:05 -0700208 unsigned int nr_bvecs;
Jens Axboede293932020-09-17 16:19:16 -0600209 unsigned long acct_pages;
Pavel Begunkov41edf1a2021-04-25 14:32:23 +0100210 struct bio_vec bvec[];
Jens Axboeedafcce2019-01-09 09:16:05 -0700211};
212
Bijan Mottahedeh50238532021-01-15 17:37:45 +0000213struct io_ring_ctx;
214
Pavel Begunkov6c2450a2021-02-23 12:40:22 +0000215struct io_overflow_cqe {
216 struct io_uring_cqe cqe;
217 struct list_head list;
218};
219
Pavel Begunkova04b0ac2021-04-01 15:44:04 +0100220struct io_fixed_file {
221 /* file * with additional FFS_* flags */
222 unsigned long file_ptr;
223};
224
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +0000225struct io_rsrc_put {
226 struct list_head list;
Pavel Begunkovb60c8dc2021-04-25 14:32:18 +0100227 u64 tag;
Bijan Mottahedeh50238532021-01-15 17:37:45 +0000228 union {
229 void *rsrc;
230 struct file *file;
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +0100231 struct io_mapped_ubuf *buf;
Bijan Mottahedeh50238532021-01-15 17:37:45 +0000232 };
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +0000233};
234
Pavel Begunkovaeca2412021-04-11 01:46:37 +0100235struct io_file_table {
Pavel Begunkov042b0d82021-08-09 13:04:01 +0100236 struct io_fixed_file *files;
Jens Axboe31b51512019-01-18 22:56:34 -0700237};
238
Pavel Begunkovb895c9a2021-04-01 15:43:40 +0100239struct io_rsrc_node {
Xiaoguang Wang05589552020-03-31 14:05:18 +0800240 struct percpu_ref refs;
241 struct list_head node;
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +0000242 struct list_head rsrc_list;
Pavel Begunkovb895c9a2021-04-01 15:43:40 +0100243 struct io_rsrc_data *rsrc_data;
Jens Axboe4a38aed22020-05-14 17:21:15 -0600244 struct llist_node llist;
Pavel Begunkove2978222020-11-18 14:56:26 +0000245 bool done;
Xiaoguang Wang05589552020-03-31 14:05:18 +0800246};
247
Pavel Begunkov40ae0ff2021-04-01 15:43:44 +0100248typedef void (rsrc_put_fn)(struct io_ring_ctx *ctx, struct io_rsrc_put *prsrc);
249
Pavel Begunkovb895c9a2021-04-01 15:43:40 +0100250struct io_rsrc_data {
Jens Axboe05f3fb32019-12-09 11:22:50 -0700251 struct io_ring_ctx *ctx;
252
Pavel Begunkov2d091d62021-06-14 02:36:21 +0100253 u64 **tags;
254 unsigned int nr;
Pavel Begunkov40ae0ff2021-04-01 15:43:44 +0100255 rsrc_put_fn *do_put;
Pavel Begunkov3e942492021-04-11 01:46:34 +0100256 atomic_t refs;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700257 struct completion done;
Hao Xu8bad28d2021-02-19 17:19:36 +0800258 bool quiesce;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700259};
260
Jens Axboe5a2e7452020-02-23 16:23:11 -0700261struct io_buffer {
262 struct list_head list;
263 __u64 addr;
Thadeu Lima de Souza Cascardod1f82802021-05-05 09:47:06 -0300264 __u32 len;
Jens Axboe5a2e7452020-02-23 16:23:11 -0700265 __u16 bid;
266};
267
Stefano Garzarella21b55db2020-08-27 16:58:30 +0200268struct io_restriction {
269 DECLARE_BITMAP(register_op, IORING_REGISTER_LAST);
270 DECLARE_BITMAP(sqe_op, IORING_OP_LAST);
271 u8 sqe_flags_allowed;
272 u8 sqe_flags_required;
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +0200273 bool registered;
Stefano Garzarella21b55db2020-08-27 16:58:30 +0200274};
275
Jens Axboe37d1e2e2021-02-17 21:03:43 -0700276enum {
277 IO_SQ_THREAD_SHOULD_STOP = 0,
278 IO_SQ_THREAD_SHOULD_PARK,
279};
280
Jens Axboe534ca6d2020-09-02 13:52:19 -0600281struct io_sq_data {
282 refcount_t refs;
Pavel Begunkov9e138a42021-03-14 20:57:12 +0000283 atomic_t park_pending;
Pavel Begunkov09a6f4e2021-03-14 20:57:10 +0000284 struct mutex lock;
Jens Axboe69fb2132020-09-14 11:16:23 -0600285
286 /* ctx's that are using this sqd */
287 struct list_head ctx_list;
Jens Axboe69fb2132020-09-14 11:16:23 -0600288
Jens Axboe534ca6d2020-09-02 13:52:19 -0600289 struct task_struct *thread;
290 struct wait_queue_head wait;
Xiaoguang Wang08369242020-11-03 14:15:59 +0800291
292 unsigned sq_thread_idle;
Jens Axboe37d1e2e2021-02-17 21:03:43 -0700293 int sq_cpu;
294 pid_t task_pid;
Jens Axboe5c2469e2021-03-11 10:17:56 -0700295 pid_t task_tgid;
Jens Axboe37d1e2e2021-02-17 21:03:43 -0700296
297 unsigned long state;
Jens Axboe37d1e2e2021-02-17 21:03:43 -0700298 struct completion exited;
Jens Axboe534ca6d2020-09-02 13:52:19 -0600299};
300
Pavel Begunkov6dd0be12021-02-10 00:03:13 +0000301#define IO_COMPL_BATCH 32
Pavel Begunkov6ff119a2021-02-10 00:03:18 +0000302#define IO_REQ_CACHE_SIZE 32
Pavel Begunkovbf019da2021-02-10 00:03:17 +0000303#define IO_REQ_ALLOC_BATCH 8
Pavel Begunkov258b29a2021-02-10 00:03:10 +0000304
Pavel Begunkova1ab7b32021-02-18 18:29:42 +0000305struct io_submit_link {
306 struct io_kiocb *head;
307 struct io_kiocb *last;
308};
309
Pavel Begunkov258b29a2021-02-10 00:03:10 +0000310struct io_submit_state {
Pavel Begunkov5a158c62021-10-06 16:06:48 +0100311 /* inline/task_work completion list, under ->uring_lock */
312 struct io_wq_work_node free_list;
313 /* batch completion logic */
314 struct io_wq_work_list compl_reqs;
Pavel Begunkova1ab7b32021-02-18 18:29:42 +0000315 struct io_submit_link link;
Pavel Begunkov258b29a2021-02-10 00:03:10 +0000316
Pavel Begunkov258b29a2021-02-10 00:03:10 +0000317 bool plug_started;
Pavel Begunkov4b628ae2021-09-08 16:40:49 +0100318 bool need_plug;
Pavel Begunkov5a158c62021-10-06 16:06:48 +0100319 struct blk_plug plug;
Pavel Begunkov258b29a2021-02-10 00:03:10 +0000320};
321
Jens Axboe2b188cc2019-01-07 10:46:33 -0700322struct io_ring_ctx {
Pavel Begunkovb52ecf82021-06-14 23:37:21 +0100323 /* const or read-mostly hot data */
Jens Axboe2b188cc2019-01-07 10:46:33 -0700324 struct {
325 struct percpu_ref refs;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700326
Pavel Begunkovb52ecf82021-06-14 23:37:21 +0100327 struct io_rings *rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700328 unsigned int flags;
Randy Dunlape1d85332020-02-05 20:57:10 -0800329 unsigned int compat: 1;
Randy Dunlape1d85332020-02-05 20:57:10 -0800330 unsigned int drain_next: 1;
331 unsigned int eventfd_async: 1;
Stefano Garzarella21b55db2020-08-27 16:58:30 +0200332 unsigned int restricted: 1;
Pavel Begunkovf18ee4c2021-06-14 23:37:25 +0100333 unsigned int off_timeout_used: 1;
Pavel Begunkov10c66902021-06-15 16:47:56 +0100334 unsigned int drain_active: 1;
Pavel Begunkovb52ecf82021-06-14 23:37:21 +0100335 } ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700336
Pavel Begunkov7f1129d2021-06-14 23:37:22 +0100337 /* submission data */
Pavel Begunkovb52ecf82021-06-14 23:37:21 +0100338 struct {
Pavel Begunkov0499e582021-06-14 23:37:29 +0100339 struct mutex uring_lock;
340
Hristo Venev75b28af2019-08-26 17:23:46 +0000341 /*
342 * Ring buffer of indices into array of io_uring_sqe, which is
343 * mmapped by the application using the IORING_OFF_SQES offset.
344 *
345 * This indirection could e.g. be used to assign fixed
346 * io_uring_sqe entries to operations and only submit them to
347 * the queue when needed.
348 *
349 * The kernel modifies neither the indices array nor the entries
350 * array.
351 */
352 u32 *sq_array;
Pavel Begunkovc7af47c2021-06-14 23:37:20 +0100353 struct io_uring_sqe *sq_sqes;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700354 unsigned cached_sq_head;
355 unsigned sq_entries;
Jens Axboede0617e2019-04-06 21:51:27 -0600356 struct list_head defer_list;
Pavel Begunkov7f1129d2021-06-14 23:37:22 +0100357
358 /*
359 * Fixed resources fast path, should be accessed only under
360 * uring_lock, and updated through io_uring_register(2)
361 */
362 struct io_rsrc_node *rsrc_node;
Pavel Begunkovab409402021-10-09 23:14:41 +0100363 int rsrc_cached_refs;
Pavel Begunkov7f1129d2021-06-14 23:37:22 +0100364 struct io_file_table file_table;
365 unsigned nr_user_files;
366 unsigned nr_user_bufs;
367 struct io_mapped_ubuf **user_bufs;
368
369 struct io_submit_state submit_state;
Jens Axboe5262f562019-09-17 12:26:57 -0600370 struct list_head timeout_list;
Pavel Begunkovef9dd632021-08-28 19:54:38 -0600371 struct list_head ltimeout_list;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700372 struct list_head cq_overflow_list;
Pavel Begunkov7f1129d2021-06-14 23:37:22 +0100373 struct xarray io_buffers;
374 struct xarray personalities;
375 u32 pers_next;
376 unsigned sq_thread_idle;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700377 } ____cacheline_aligned_in_smp;
378
Pavel Begunkovd0acdee2021-05-16 22:58:12 +0100379 /* IRQ completion list, under ->completion_lock */
Pavel Begunkovc2b6c6b2021-09-24 21:59:47 +0100380 struct io_wq_work_list locked_free_list;
Pavel Begunkovd0acdee2021-05-16 22:58:12 +0100381 unsigned int locked_free_nr;
Jens Axboe3c1a2ea2021-02-11 10:48:03 -0700382
Stefan Metzmacher7c30f36a2021-03-07 11:54:28 +0100383 const struct cred *sq_creds; /* cred used for __io_sq_thread() */
Jens Axboe534ca6d2020-09-02 13:52:19 -0600384 struct io_sq_data *sq_data; /* if using sq thread polling */
385
Jens Axboe90554202020-09-03 12:12:41 -0600386 struct wait_queue_head sqo_sq_wait;
Jens Axboe69fb2132020-09-14 11:16:23 -0600387 struct list_head sqd_list;
Hristo Venev75b28af2019-08-26 17:23:46 +0000388
Pavel Begunkov5ed7a372021-06-14 23:37:27 +0100389 unsigned long check_cq_overflow;
390
Jens Axboe206aefd2019-11-07 18:27:42 -0700391 struct {
392 unsigned cached_cq_tail;
393 unsigned cq_entries;
Jens Axboe206aefd2019-11-07 18:27:42 -0700394 struct eventfd_ctx *cq_ev_fd;
Pavel Begunkov0499e582021-06-14 23:37:29 +0100395 struct wait_queue_head cq_wait;
396 unsigned cq_extra;
397 atomic_t cq_timeouts;
Pavel Begunkov0499e582021-06-14 23:37:29 +0100398 unsigned cq_last_tm_flush;
Jens Axboe206aefd2019-11-07 18:27:42 -0700399 } ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700400
401 struct {
Jens Axboe2b188cc2019-01-07 10:46:33 -0700402 spinlock_t completion_lock;
Jens Axboee94f1412019-12-19 12:06:02 -0700403
Jens Axboe89850fc2021-08-10 15:11:51 -0600404 spinlock_t timeout_lock;
405
Jens Axboedef596e2019-01-09 08:59:42 -0700406 /*
Pavel Begunkov540e32a2020-07-13 23:37:09 +0300407 * ->iopoll_list is protected by the ctx->uring_lock for
Jens Axboedef596e2019-01-09 08:59:42 -0700408 * io_uring instances that don't use IORING_SETUP_SQPOLL.
409 * For SQPOLL, only the single threaded io_sq_thread() will
410 * manipulate the list, hence no extra locking is needed there.
411 */
Pavel Begunkov5eef4e82021-09-24 21:59:49 +0100412 struct io_wq_work_list iopoll_list;
Jens Axboe78076bb2019-12-04 19:56:40 -0700413 struct hlist_head *cancel_hash;
414 unsigned cancel_hash_bits;
Hao Xu915b3dd2021-06-28 05:37:30 +0800415 bool poll_multi_queue;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700416 } ____cacheline_aligned_in_smp;
Jens Axboe85faa7b2020-04-09 18:14:00 -0600417
Stefano Garzarella21b55db2020-08-27 16:58:30 +0200418 struct io_restriction restrictions;
Jens Axboe3c1a2ea2021-02-11 10:48:03 -0700419
Pavel Begunkovb13a8912021-05-16 22:58:07 +0100420 /* slow path rsrc auxilary data, used by update/register */
421 struct {
422 struct io_rsrc_node *rsrc_backup_node;
423 struct io_mapped_ubuf *dummy_ubuf;
424 struct io_rsrc_data *file_data;
425 struct io_rsrc_data *buf_data;
426
427 struct delayed_work rsrc_put_work;
428 struct llist_head rsrc_put_llist;
429 struct list_head rsrc_ref_list;
430 spinlock_t rsrc_ref_lock;
431 };
432
Jens Axboe3c1a2ea2021-02-11 10:48:03 -0700433 /* Keep this last, we don't need it for the fast path */
Pavel Begunkovb986af72021-05-16 22:58:06 +0100434 struct {
435 #if defined(CONFIG_UNIX)
436 struct socket *ring_sock;
437 #endif
438 /* hashed buffered write serialization */
439 struct io_wq_hash *hash_map;
440
441 /* Only used for accounting purposes */
442 struct user_struct *user;
443 struct mm_struct *mm_account;
444
445 /* ctx exit and cancelation */
Pavel Begunkov9011bf92021-06-30 21:54:03 +0100446 struct llist_head fallback_llist;
447 struct delayed_work fallback_work;
Pavel Begunkovb986af72021-05-16 22:58:06 +0100448 struct work_struct exit_work;
449 struct list_head tctx_list;
450 struct completion ref_comp;
451 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700452};
453
Stefan Metzmacher53e043b2021-03-15 12:56:56 +0100454struct io_uring_task {
455 /* submission side */
Pavel Begunkov09899b12021-06-14 02:36:22 +0100456 int cached_refs;
Stefan Metzmacher53e043b2021-03-15 12:56:56 +0100457 struct xarray xa;
458 struct wait_queue_head wait;
Stefan Metzmacheree53fb22021-03-15 12:56:57 +0100459 const struct io_ring_ctx *last;
460 struct io_wq *io_wq;
Stefan Metzmacher53e043b2021-03-15 12:56:56 +0100461 struct percpu_counter inflight;
Pavel Begunkovb303fe22021-04-11 01:46:26 +0100462 atomic_t inflight_tracked;
Stefan Metzmacher53e043b2021-03-15 12:56:56 +0100463 atomic_t in_idle;
Stefan Metzmacher53e043b2021-03-15 12:56:56 +0100464
465 spinlock_t task_lock;
466 struct io_wq_work_list task_list;
Stefan Metzmacher53e043b2021-03-15 12:56:56 +0100467 struct callback_head task_work;
Pavel Begunkov6294f362021-08-10 17:53:55 +0100468 bool task_running;
Stefan Metzmacher53e043b2021-03-15 12:56:56 +0100469};
470
Jens Axboe09bb8392019-03-13 12:39:28 -0600471/*
472 * First field must be the file pointer in all the
473 * iocb unions! See also 'struct kiocb' in <linux/fs.h>
474 */
Jens Axboe221c5eb2019-01-17 09:41:58 -0700475struct io_poll_iocb {
476 struct file *file;
Pavel Begunkov018043b2020-10-27 23:17:18 +0000477 struct wait_queue_head *head;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700478 __poll_t events;
Jens Axboe8c838782019-03-12 15:48:16 -0600479 bool done;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700480 bool canceled;
Jens Axboe392edb42019-12-09 17:52:20 -0700481 struct wait_queue_entry wait;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700482};
483
Pavel Begunkov9d805892021-04-13 02:58:40 +0100484struct io_poll_update {
Pavel Begunkov018043b2020-10-27 23:17:18 +0000485 struct file *file;
Pavel Begunkov9d805892021-04-13 02:58:40 +0100486 u64 old_user_data;
487 u64 new_user_data;
488 __poll_t events;
Jens Axboeb69de282021-03-17 08:37:41 -0600489 bool update_events;
490 bool update_user_data;
Pavel Begunkov018043b2020-10-27 23:17:18 +0000491};
492
Jens Axboeb5dba592019-12-11 14:02:38 -0700493struct io_close {
494 struct file *file;
Jens Axboeb5dba592019-12-11 14:02:38 -0700495 int fd;
Pavel Begunkov7df778b2021-09-24 20:04:29 +0100496 u32 file_slot;
Jens Axboeb5dba592019-12-11 14:02:38 -0700497};
498
Jens Axboead8a48a2019-11-15 08:49:11 -0700499struct io_timeout_data {
500 struct io_kiocb *req;
501 struct hrtimer timer;
502 struct timespec64 ts;
503 enum hrtimer_mode mode;
Jens Axboe50c1df22021-08-27 17:11:06 -0600504 u32 flags;
Jens Axboead8a48a2019-11-15 08:49:11 -0700505};
506
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700507struct io_accept {
508 struct file *file;
509 struct sockaddr __user *addr;
510 int __user *addr_len;
511 int flags;
Pavel Begunkovaaa4db12021-08-25 12:25:47 +0100512 u32 file_slot;
Jens Axboe09952e32020-03-19 20:16:56 -0600513 unsigned long nofile;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700514};
515
516struct io_sync {
517 struct file *file;
518 loff_t len;
519 loff_t off;
520 int flags;
Jens Axboed63d1b52019-12-10 10:38:56 -0700521 int mode;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700522};
523
Jens Axboefbf23842019-12-17 18:45:56 -0700524struct io_cancel {
525 struct file *file;
526 u64 addr;
527};
528
Jens Axboeb29472e2019-12-17 18:50:29 -0700529struct io_timeout {
530 struct file *file;
Pavel Begunkovbfe68a22020-05-30 14:54:18 +0300531 u32 off;
532 u32 target_seq;
Pavel Begunkov135fcde2020-07-13 23:37:12 +0300533 struct list_head list;
Pavel Begunkov90cd7e42020-10-27 23:25:36 +0000534 /* head of the link, used by linked timeouts only */
535 struct io_kiocb *head;
Jens Axboe89b263f2021-08-10 15:14:18 -0600536 /* for linked completions */
537 struct io_kiocb *prev;
Jens Axboeb29472e2019-12-17 18:50:29 -0700538};
539
Pavel Begunkov0bdf7a22020-10-10 18:34:10 +0100540struct io_timeout_rem {
541 struct file *file;
542 u64 addr;
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +0000543
544 /* timeout update */
545 struct timespec64 ts;
546 u32 flags;
Pavel Begunkovf1042b62021-08-28 19:54:39 -0600547 bool ltimeout;
Pavel Begunkov0bdf7a22020-10-10 18:34:10 +0100548};
549
Jens Axboe9adbd452019-12-20 08:45:55 -0700550struct io_rw {
551 /* NOTE: kiocb has the file as the first member, so don't do it here */
552 struct kiocb kiocb;
553 u64 addr;
554 u64 len;
555};
556
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700557struct io_connect {
558 struct file *file;
559 struct sockaddr __user *addr;
560 int addr_len;
561};
562
Jens Axboee47293f2019-12-20 08:58:21 -0700563struct io_sr_msg {
564 struct file *file;
Jens Axboefddafac2020-01-04 20:19:44 -0700565 union {
Pavel Begunkov4af34172021-04-11 01:46:30 +0100566 struct compat_msghdr __user *umsg_compat;
567 struct user_msghdr __user *umsg;
568 void __user *buf;
Jens Axboefddafac2020-01-04 20:19:44 -0700569 };
Jens Axboee47293f2019-12-20 08:58:21 -0700570 int msg_flags;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700571 int bgid;
Jens Axboefddafac2020-01-04 20:19:44 -0700572 size_t len;
Jens Axboee47293f2019-12-20 08:58:21 -0700573};
574
Jens Axboe15b71ab2019-12-11 11:20:36 -0700575struct io_open {
576 struct file *file;
577 int dfd;
Pavel Begunkovb9445592021-08-25 12:25:45 +0100578 u32 file_slot;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700579 struct filename *filename;
Jens Axboec12cedf2020-01-08 17:41:21 -0700580 struct open_how how;
Jens Axboe4022e7a2020-03-19 19:23:18 -0600581 unsigned long nofile;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700582};
583
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +0000584struct io_rsrc_update {
Jens Axboe05f3fb32019-12-09 11:22:50 -0700585 struct file *file;
586 u64 arg;
587 u32 nr_args;
588 u32 offset;
589};
590
Jens Axboe4840e412019-12-25 22:03:45 -0700591struct io_fadvise {
592 struct file *file;
593 u64 offset;
594 u32 len;
595 u32 advice;
596};
597
Jens Axboec1ca7572019-12-25 22:18:28 -0700598struct io_madvise {
599 struct file *file;
600 u64 addr;
601 u32 len;
602 u32 advice;
603};
604
Jens Axboe3e4827b2020-01-08 15:18:09 -0700605struct io_epoll {
606 struct file *file;
607 int epfd;
608 int op;
609 int fd;
610 struct epoll_event event;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700611};
612
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300613struct io_splice {
614 struct file *file_out;
615 struct file *file_in;
616 loff_t off_out;
617 loff_t off_in;
618 u64 len;
619 unsigned int flags;
620};
621
Jens Axboeddf0322d2020-02-23 16:41:33 -0700622struct io_provide_buf {
623 struct file *file;
624 __u64 addr;
Pavel Begunkov38134ad2021-04-15 13:07:39 +0100625 __u32 len;
Jens Axboeddf0322d2020-02-23 16:41:33 -0700626 __u32 bgid;
627 __u16 nbufs;
628 __u16 bid;
629};
630
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -0700631struct io_statx {
632 struct file *file;
633 int dfd;
634 unsigned int mask;
635 unsigned int flags;
Bijan Mottahedehe62753e2020-05-22 21:31:18 -0700636 const char __user *filename;
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -0700637 struct statx __user *buffer;
638};
639
Jens Axboe36f4fa62020-09-05 11:14:22 -0600640struct io_shutdown {
641 struct file *file;
642 int how;
643};
644
Jens Axboe80a261f2020-09-28 14:23:58 -0600645struct io_rename {
646 struct file *file;
647 int old_dfd;
648 int new_dfd;
649 struct filename *oldpath;
650 struct filename *newpath;
651 int flags;
652};
653
Jens Axboe14a11432020-09-28 14:27:37 -0600654struct io_unlink {
655 struct file *file;
656 int dfd;
657 int flags;
658 struct filename *filename;
659};
660
Dmitry Kadasheve34a02d2021-07-08 13:34:45 +0700661struct io_mkdir {
662 struct file *file;
663 int dfd;
664 umode_t mode;
665 struct filename *filename;
666};
667
Dmitry Kadashev7a8721f2021-07-08 13:34:46 +0700668struct io_symlink {
669 struct file *file;
670 int new_dfd;
671 struct filename *oldpath;
672 struct filename *newpath;
673};
674
Dmitry Kadashevcf30da92021-07-08 13:34:47 +0700675struct io_hardlink {
676 struct file *file;
677 int old_dfd;
678 int new_dfd;
679 struct filename *oldpath;
680 struct filename *newpath;
681 int flags;
682};
683
Jens Axboef499a022019-12-02 16:28:46 -0700684struct io_async_connect {
685 struct sockaddr_storage address;
686};
687
Jens Axboe03b12302019-12-02 18:50:25 -0700688struct io_async_msghdr {
689 struct iovec fast_iov[UIO_FASTIOV];
Pavel Begunkov257e84a2021-02-05 00:58:00 +0000690 /* points to an allocated iov, if NULL we use fast_iov instead */
691 struct iovec *free_iov;
Jens Axboe03b12302019-12-02 18:50:25 -0700692 struct sockaddr __user *uaddr;
693 struct msghdr msg;
Jens Axboeb5379162020-02-09 11:29:15 -0700694 struct sockaddr_storage addr;
Jens Axboe03b12302019-12-02 18:50:25 -0700695};
696
Pavel Begunkov538941e2021-10-14 16:10:15 +0100697struct io_rw_state {
Jens Axboeff6165b2020-08-13 09:47:43 -0600698 struct iov_iter iter;
Jens Axboecd658692021-09-10 11:19:14 -0600699 struct iov_iter_state iter_state;
Pavel Begunkovc88598a2021-10-14 16:10:16 +0100700 struct iovec fast_iov[UIO_FASTIOV];
Pavel Begunkov538941e2021-10-14 16:10:15 +0100701};
702
703struct io_async_rw {
704 struct io_rw_state s;
705 const struct iovec *free_iovec;
Jens Axboe227c0c92020-08-13 11:51:40 -0600706 size_t bytes_done;
Jens Axboebcf5a062020-05-22 09:24:42 -0600707 struct wait_page_queue wpq;
Jens Axboef67676d2019-12-02 11:03:47 -0700708};
709
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300710enum {
711 REQ_F_FIXED_FILE_BIT = IOSQE_FIXED_FILE_BIT,
712 REQ_F_IO_DRAIN_BIT = IOSQE_IO_DRAIN_BIT,
713 REQ_F_LINK_BIT = IOSQE_IO_LINK_BIT,
714 REQ_F_HARDLINK_BIT = IOSQE_IO_HARDLINK_BIT,
715 REQ_F_FORCE_ASYNC_BIT = IOSQE_ASYNC_BIT,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700716 REQ_F_BUFFER_SELECT_BIT = IOSQE_BUFFER_SELECT_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300717
Pavel Begunkovdddca222021-04-27 16:13:52 +0100718 /* first byte is taken by user flags, shift it to not overlap */
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +0100719 REQ_F_FAIL_BIT = 8,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300720 REQ_F_INFLIGHT_BIT,
721 REQ_F_CUR_POS_BIT,
722 REQ_F_NOWAIT_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300723 REQ_F_LINK_TIMEOUT_BIT,
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300724 REQ_F_NEED_CLEANUP_BIT,
Jens Axboed7718a92020-02-14 22:23:12 -0700725 REQ_F_POLLED_BIT,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700726 REQ_F_BUFFER_SELECTED_BIT,
Pavel Begunkove342c802021-01-19 13:32:47 +0000727 REQ_F_COMPLETE_INLINE_BIT,
Jens Axboe230d50d2021-04-01 20:41:15 -0600728 REQ_F_REISSUE_BIT,
Pavel Begunkovb8e64b52021-06-17 18:14:02 +0100729 REQ_F_CREDS_BIT,
Pavel Begunkov20e60a32021-08-11 19:28:30 +0100730 REQ_F_REFCOUNT_BIT,
Pavel Begunkov4d13d1a2021-08-15 10:40:24 +0100731 REQ_F_ARM_LTIMEOUT_BIT,
Pavel Begunkovd886e182021-10-04 20:02:56 +0100732 REQ_F_ASYNC_DATA_BIT,
Jens Axboe7b29f922021-03-12 08:30:14 -0700733 /* keep async read/write and isreg together and in order */
Pavel Begunkovb191e2d2021-08-09 13:04:03 +0100734 REQ_F_NOWAIT_READ_BIT,
735 REQ_F_NOWAIT_WRITE_BIT,
Jens Axboe7b29f922021-03-12 08:30:14 -0700736 REQ_F_ISREG_BIT,
Jens Axboe84557872020-03-03 15:28:17 -0700737
738 /* not a real bit, just to check we're not overflowing the space */
739 __REQ_F_LAST_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300740};
741
742enum {
743 /* ctx owns file */
744 REQ_F_FIXED_FILE = BIT(REQ_F_FIXED_FILE_BIT),
745 /* drain existing IO first */
746 REQ_F_IO_DRAIN = BIT(REQ_F_IO_DRAIN_BIT),
747 /* linked sqes */
748 REQ_F_LINK = BIT(REQ_F_LINK_BIT),
749 /* doesn't sever on completion < 0 */
750 REQ_F_HARDLINK = BIT(REQ_F_HARDLINK_BIT),
751 /* IOSQE_ASYNC */
752 REQ_F_FORCE_ASYNC = BIT(REQ_F_FORCE_ASYNC_BIT),
Jens Axboebcda7ba2020-02-23 16:42:51 -0700753 /* IOSQE_BUFFER_SELECT */
754 REQ_F_BUFFER_SELECT = BIT(REQ_F_BUFFER_SELECT_BIT),
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300755
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300756 /* fail rest of links */
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +0100757 REQ_F_FAIL = BIT(REQ_F_FAIL_BIT),
Pavel Begunkovb05a1bc2021-03-04 13:59:24 +0000758 /* on inflight list, should be cancelled and waited on exit reliably */
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300759 REQ_F_INFLIGHT = BIT(REQ_F_INFLIGHT_BIT),
760 /* read/write uses file position */
761 REQ_F_CUR_POS = BIT(REQ_F_CUR_POS_BIT),
762 /* must not punt to workers */
763 REQ_F_NOWAIT = BIT(REQ_F_NOWAIT_BIT),
Pavel Begunkov900fad42020-10-19 16:39:16 +0100764 /* has or had linked timeout */
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300765 REQ_F_LINK_TIMEOUT = BIT(REQ_F_LINK_TIMEOUT_BIT),
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300766 /* needs cleanup */
767 REQ_F_NEED_CLEANUP = BIT(REQ_F_NEED_CLEANUP_BIT),
Jens Axboed7718a92020-02-14 22:23:12 -0700768 /* already went through poll handler */
769 REQ_F_POLLED = BIT(REQ_F_POLLED_BIT),
Jens Axboebcda7ba2020-02-23 16:42:51 -0700770 /* buffer already selected */
771 REQ_F_BUFFER_SELECTED = BIT(REQ_F_BUFFER_SELECTED_BIT),
Pavel Begunkove342c802021-01-19 13:32:47 +0000772 /* completion is deferred through io_comp_state */
773 REQ_F_COMPLETE_INLINE = BIT(REQ_F_COMPLETE_INLINE_BIT),
Jens Axboe230d50d2021-04-01 20:41:15 -0600774 /* caller should reissue async */
775 REQ_F_REISSUE = BIT(REQ_F_REISSUE_BIT),
Jens Axboe7b29f922021-03-12 08:30:14 -0700776 /* supports async reads */
Pavel Begunkovb191e2d2021-08-09 13:04:03 +0100777 REQ_F_NOWAIT_READ = BIT(REQ_F_NOWAIT_READ_BIT),
Jens Axboe7b29f922021-03-12 08:30:14 -0700778 /* supports async writes */
Pavel Begunkovb191e2d2021-08-09 13:04:03 +0100779 REQ_F_NOWAIT_WRITE = BIT(REQ_F_NOWAIT_WRITE_BIT),
Jens Axboe7b29f922021-03-12 08:30:14 -0700780 /* regular file */
781 REQ_F_ISREG = BIT(REQ_F_ISREG_BIT),
Pavel Begunkovb8e64b52021-06-17 18:14:02 +0100782 /* has creds assigned */
783 REQ_F_CREDS = BIT(REQ_F_CREDS_BIT),
Pavel Begunkov20e60a32021-08-11 19:28:30 +0100784 /* skip refcounting if not set */
785 REQ_F_REFCOUNT = BIT(REQ_F_REFCOUNT_BIT),
Pavel Begunkov4d13d1a2021-08-15 10:40:24 +0100786 /* there is a linked timeout that has to be armed */
787 REQ_F_ARM_LTIMEOUT = BIT(REQ_F_ARM_LTIMEOUT_BIT),
Pavel Begunkovd886e182021-10-04 20:02:56 +0100788 /* ->async_data allocated */
789 REQ_F_ASYNC_DATA = BIT(REQ_F_ASYNC_DATA_BIT),
Jens Axboed7718a92020-02-14 22:23:12 -0700790};
791
792struct async_poll {
793 struct io_poll_iocb poll;
Jens Axboe807abcb2020-07-17 17:09:27 -0600794 struct io_poll_iocb *double_poll;
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300795};
796
Pavel Begunkovf237c302021-08-18 12:42:46 +0100797typedef void (*io_req_tw_func_t)(struct io_kiocb *req, bool *locked);
Pavel Begunkov5b0a6ac2021-06-30 21:54:04 +0100798
Jens Axboe7cbf1722021-02-10 00:03:20 +0000799struct io_task_work {
Pavel Begunkov5b0a6ac2021-06-30 21:54:04 +0100800 union {
801 struct io_wq_work_node node;
802 struct llist_node fallback_node;
803 };
804 io_req_tw_func_t func;
Jens Axboe7cbf1722021-02-10 00:03:20 +0000805};
806
Pavel Begunkov992da012021-06-10 16:37:37 +0100807enum {
808 IORING_RSRC_FILE = 0,
809 IORING_RSRC_BUFFER = 1,
810};
811
Jens Axboe09bb8392019-03-13 12:39:28 -0600812/*
813 * NOTE! Each of the iocb union members has the file pointer
814 * as the first entry in their struct definition. So you can
815 * access the file pointer through any of the sub-structs,
816 * or directly as just 'ki_filp' in this struct.
817 */
Jens Axboe2b188cc2019-01-07 10:46:33 -0700818struct io_kiocb {
Jens Axboe221c5eb2019-01-17 09:41:58 -0700819 union {
Jens Axboe09bb8392019-03-13 12:39:28 -0600820 struct file *file;
Jens Axboe9adbd452019-12-20 08:45:55 -0700821 struct io_rw rw;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700822 struct io_poll_iocb poll;
Pavel Begunkov9d805892021-04-13 02:58:40 +0100823 struct io_poll_update poll_update;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700824 struct io_accept accept;
825 struct io_sync sync;
Jens Axboefbf23842019-12-17 18:45:56 -0700826 struct io_cancel cancel;
Jens Axboeb29472e2019-12-17 18:50:29 -0700827 struct io_timeout timeout;
Pavel Begunkov0bdf7a22020-10-10 18:34:10 +0100828 struct io_timeout_rem timeout_rem;
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700829 struct io_connect connect;
Jens Axboee47293f2019-12-20 08:58:21 -0700830 struct io_sr_msg sr_msg;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700831 struct io_open open;
Jens Axboeb5dba592019-12-11 14:02:38 -0700832 struct io_close close;
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +0000833 struct io_rsrc_update rsrc_update;
Jens Axboe4840e412019-12-25 22:03:45 -0700834 struct io_fadvise fadvise;
Jens Axboec1ca7572019-12-25 22:18:28 -0700835 struct io_madvise madvise;
Jens Axboe3e4827b2020-01-08 15:18:09 -0700836 struct io_epoll epoll;
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300837 struct io_splice splice;
Jens Axboeddf0322d2020-02-23 16:41:33 -0700838 struct io_provide_buf pbuf;
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -0700839 struct io_statx statx;
Jens Axboe36f4fa62020-09-05 11:14:22 -0600840 struct io_shutdown shutdown;
Jens Axboe80a261f2020-09-28 14:23:58 -0600841 struct io_rename rename;
Jens Axboe14a11432020-09-28 14:27:37 -0600842 struct io_unlink unlink;
Dmitry Kadasheve34a02d2021-07-08 13:34:45 +0700843 struct io_mkdir mkdir;
Dmitry Kadashev7a8721f2021-07-08 13:34:46 +0700844 struct io_symlink symlink;
Dmitry Kadashevcf30da92021-07-08 13:34:47 +0700845 struct io_hardlink hardlink;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700846 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700847
Jens Axboed625c6e2019-12-17 19:53:05 -0700848 u8 opcode;
Xiaoguang Wang65a65432020-06-11 23:39:36 +0800849 /* polled IO has completed */
850 u8 iopoll_completed;
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -0700851 u16 buf_index;
Pavel Begunkovd17e56e2021-10-04 20:02:57 +0100852 unsigned int flags;
853
854 u64 user_data;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +0300855 u32 result;
Pavel Begunkovd17e56e2021-10-04 20:02:57 +0100856 u32 cflags;
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -0700857
Pavel Begunkov010e8e62020-07-30 18:43:45 +0300858 struct io_ring_ctx *ctx;
Pavel Begunkov010e8e62020-07-30 18:43:45 +0300859 struct task_struct *task;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700860
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +0000861 struct percpu_ref *fixed_rsrc_refs;
Pavel Begunkovd886e182021-10-04 20:02:56 +0100862 /* store used ubuf, so we can prevent reloading */
863 struct io_mapped_ubuf *imu;
Jens Axboed7718a92020-02-14 22:23:12 -0700864
Pavel Begunkov7e3709d2021-10-04 20:02:46 +0100865 /* used by request caches, completion batching and iopoll */
Pavel Begunkovef05d9e2021-09-24 22:00:02 +0100866 struct io_wq_work_node comp_list;
Pavel Begunkovd17e56e2021-10-04 20:02:57 +0100867 atomic_t refs;
Pavel Begunkov7e3709d2021-10-04 20:02:46 +0100868 struct io_kiocb *link;
Pavel Begunkov5b0a6ac2021-06-30 21:54:04 +0100869 struct io_task_work io_task_work;
Pavel Begunkov010e8e62020-07-30 18:43:45 +0300870 /* for polled requests, i.e. IORING_OP_POLL_ADD and async armed poll */
871 struct hlist_node hash_node;
Pavel Begunkov7e3709d2021-10-04 20:02:46 +0100872 /* internal polling, see IORING_FEAT_FAST_POLL */
Pavel Begunkov010e8e62020-07-30 18:43:45 +0300873 struct async_poll *apoll;
Pavel Begunkovd886e182021-10-04 20:02:56 +0100874 /* opcode allocated if it needs to store data for async defer */
875 void *async_data;
Pavel Begunkovef05d9e2021-09-24 22:00:02 +0100876 struct io_wq_work work;
Pavel Begunkov7e3709d2021-10-04 20:02:46 +0100877 /* custom credentials, valid IFF REQ_F_CREDS is set */
Pavel Begunkovef05d9e2021-09-24 22:00:02 +0100878 const struct cred *creds;
Pavel Begunkov7e3709d2021-10-04 20:02:46 +0100879 /* stores selected buf, valid IFF REQ_F_BUFFER_SELECTED is set */
Pavel Begunkov30d51dd2021-10-01 18:07:03 +0100880 struct io_buffer *kbuf;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700881};
882
Pavel Begunkov13bf43f2021-03-06 11:02:12 +0000883struct io_tctx_node {
884 struct list_head ctx_node;
885 struct task_struct *task;
Pavel Begunkov13bf43f2021-03-06 11:02:12 +0000886 struct io_ring_ctx *ctx;
887};
888
Pavel Begunkov27dc8332020-07-13 23:37:14 +0300889struct io_defer_entry {
890 struct list_head list;
891 struct io_kiocb *req;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +0300892 u32 seq;
Pavel Begunkov27dc8332020-07-13 23:37:14 +0300893};
894
Jens Axboed3656342019-12-18 09:50:26 -0700895struct io_op_def {
Jens Axboed3656342019-12-18 09:50:26 -0700896 /* needs req->file assigned */
897 unsigned needs_file : 1;
Pavel Begunkov6d634162021-10-06 16:06:46 +0100898 /* should block plug */
899 unsigned plug : 1;
Jens Axboed3656342019-12-18 09:50:26 -0700900 /* hash wq insertion if file is a regular file */
901 unsigned hash_reg_file : 1;
902 /* unbound wq insertion if file is a non-regular file */
903 unsigned unbound_nonreg_file : 1;
Jens Axboe8a727582020-02-20 09:59:44 -0700904 /* set if opcode supports polled "wait" */
905 unsigned pollin : 1;
906 unsigned pollout : 1;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700907 /* op supports buffer selection */
908 unsigned buffer_select : 1;
Pavel Begunkov26f05052021-02-28 22:35:18 +0000909 /* do prep async if is going to be punted */
910 unsigned needs_async_setup : 1;
Pavel Begunkov6d634162021-10-06 16:06:46 +0100911 /* opcode is not supported by this kernel */
912 unsigned not_supported : 1;
Jens Axboee8c2bc12020-08-15 18:44:09 -0700913 /* size of async data needed, if any */
914 unsigned short async_size;
Jens Axboed3656342019-12-18 09:50:26 -0700915};
916
Jens Axboe09186822020-10-13 15:01:40 -0600917static const struct io_op_def io_op_defs[] = {
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300918 [IORING_OP_NOP] = {},
919 [IORING_OP_READV] = {
Jens Axboed3656342019-12-18 09:50:26 -0700920 .needs_file = 1,
921 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700922 .pollin = 1,
Jens Axboe4d954c22020-02-27 07:31:19 -0700923 .buffer_select = 1,
Pavel Begunkov26f05052021-02-28 22:35:18 +0000924 .needs_async_setup = 1,
Jens Axboe27926b62020-10-28 09:33:23 -0600925 .plug = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700926 .async_size = sizeof(struct io_async_rw),
Jens Axboed3656342019-12-18 09:50:26 -0700927 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300928 [IORING_OP_WRITEV] = {
Jens Axboed3656342019-12-18 09:50:26 -0700929 .needs_file = 1,
930 .hash_reg_file = 1,
931 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700932 .pollout = 1,
Pavel Begunkov26f05052021-02-28 22:35:18 +0000933 .needs_async_setup = 1,
Jens Axboe27926b62020-10-28 09:33:23 -0600934 .plug = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700935 .async_size = sizeof(struct io_async_rw),
Jens Axboed3656342019-12-18 09:50:26 -0700936 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300937 [IORING_OP_FSYNC] = {
Jens Axboed3656342019-12-18 09:50:26 -0700938 .needs_file = 1,
939 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300940 [IORING_OP_READ_FIXED] = {
Jens Axboed3656342019-12-18 09:50:26 -0700941 .needs_file = 1,
942 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700943 .pollin = 1,
Jens Axboe27926b62020-10-28 09:33:23 -0600944 .plug = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700945 .async_size = sizeof(struct io_async_rw),
Jens Axboed3656342019-12-18 09:50:26 -0700946 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300947 [IORING_OP_WRITE_FIXED] = {
Jens Axboed3656342019-12-18 09:50:26 -0700948 .needs_file = 1,
949 .hash_reg_file = 1,
950 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700951 .pollout = 1,
Jens Axboe27926b62020-10-28 09:33:23 -0600952 .plug = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700953 .async_size = sizeof(struct io_async_rw),
Jens Axboed3656342019-12-18 09:50:26 -0700954 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300955 [IORING_OP_POLL_ADD] = {
Jens Axboed3656342019-12-18 09:50:26 -0700956 .needs_file = 1,
957 .unbound_nonreg_file = 1,
958 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300959 [IORING_OP_POLL_REMOVE] = {},
960 [IORING_OP_SYNC_FILE_RANGE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700961 .needs_file = 1,
962 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300963 [IORING_OP_SENDMSG] = {
Jens Axboed3656342019-12-18 09:50:26 -0700964 .needs_file = 1,
965 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700966 .pollout = 1,
Pavel Begunkov26f05052021-02-28 22:35:18 +0000967 .needs_async_setup = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700968 .async_size = sizeof(struct io_async_msghdr),
Jens Axboed3656342019-12-18 09:50:26 -0700969 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300970 [IORING_OP_RECVMSG] = {
Jens Axboed3656342019-12-18 09:50:26 -0700971 .needs_file = 1,
972 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700973 .pollin = 1,
Jens Axboe52de1fe2020-02-27 10:15:42 -0700974 .buffer_select = 1,
Pavel Begunkov26f05052021-02-28 22:35:18 +0000975 .needs_async_setup = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700976 .async_size = sizeof(struct io_async_msghdr),
Jens Axboed3656342019-12-18 09:50:26 -0700977 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300978 [IORING_OP_TIMEOUT] = {
Jens Axboee8c2bc12020-08-15 18:44:09 -0700979 .async_size = sizeof(struct io_timeout_data),
Jens Axboed3656342019-12-18 09:50:26 -0700980 },
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +0000981 [IORING_OP_TIMEOUT_REMOVE] = {
982 /* used by timeout updates' prep() */
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +0000983 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300984 [IORING_OP_ACCEPT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700985 .needs_file = 1,
986 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700987 .pollin = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700988 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300989 [IORING_OP_ASYNC_CANCEL] = {},
990 [IORING_OP_LINK_TIMEOUT] = {
Jens Axboee8c2bc12020-08-15 18:44:09 -0700991 .async_size = sizeof(struct io_timeout_data),
Jens Axboed3656342019-12-18 09:50:26 -0700992 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300993 [IORING_OP_CONNECT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700994 .needs_file = 1,
995 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700996 .pollout = 1,
Pavel Begunkov26f05052021-02-28 22:35:18 +0000997 .needs_async_setup = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700998 .async_size = sizeof(struct io_async_connect),
Jens Axboed3656342019-12-18 09:50:26 -0700999 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +03001000 [IORING_OP_FALLOCATE] = {
Jens Axboed3656342019-12-18 09:50:26 -07001001 .needs_file = 1,
1002 },
Jens Axboe44526be2021-02-15 13:32:18 -07001003 [IORING_OP_OPENAT] = {},
1004 [IORING_OP_CLOSE] = {},
1005 [IORING_OP_FILES_UPDATE] = {},
1006 [IORING_OP_STATX] = {},
Pavel Begunkov0463b6c2020-01-18 21:35:38 +03001007 [IORING_OP_READ] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -07001008 .needs_file = 1,
1009 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -07001010 .pollin = 1,
Jens Axboebcda7ba2020-02-23 16:42:51 -07001011 .buffer_select = 1,
Jens Axboe27926b62020-10-28 09:33:23 -06001012 .plug = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -07001013 .async_size = sizeof(struct io_async_rw),
Jens Axboe3a6820f2019-12-22 15:19:35 -07001014 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +03001015 [IORING_OP_WRITE] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -07001016 .needs_file = 1,
Jens Axboe7b3188e2021-08-30 19:37:41 -06001017 .hash_reg_file = 1,
Jens Axboe3a6820f2019-12-22 15:19:35 -07001018 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -07001019 .pollout = 1,
Jens Axboe27926b62020-10-28 09:33:23 -06001020 .plug = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -07001021 .async_size = sizeof(struct io_async_rw),
Jens Axboe3a6820f2019-12-22 15:19:35 -07001022 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +03001023 [IORING_OP_FADVISE] = {
Jens Axboe4840e412019-12-25 22:03:45 -07001024 .needs_file = 1,
1025 },
Jens Axboe44526be2021-02-15 13:32:18 -07001026 [IORING_OP_MADVISE] = {},
Pavel Begunkov0463b6c2020-01-18 21:35:38 +03001027 [IORING_OP_SEND] = {
Jens Axboefddafac2020-01-04 20:19:44 -07001028 .needs_file = 1,
1029 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -07001030 .pollout = 1,
Jens Axboefddafac2020-01-04 20:19:44 -07001031 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +03001032 [IORING_OP_RECV] = {
Jens Axboefddafac2020-01-04 20:19:44 -07001033 .needs_file = 1,
1034 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -07001035 .pollin = 1,
Jens Axboebcda7ba2020-02-23 16:42:51 -07001036 .buffer_select = 1,
Jens Axboefddafac2020-01-04 20:19:44 -07001037 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +03001038 [IORING_OP_OPENAT2] = {
Jens Axboecebdb982020-01-08 17:59:24 -07001039 },
Jens Axboe3e4827b2020-01-08 15:18:09 -07001040 [IORING_OP_EPOLL_CTL] = {
1041 .unbound_nonreg_file = 1,
Jens Axboe3e4827b2020-01-08 15:18:09 -07001042 },
Pavel Begunkov7d67af22020-02-24 11:32:45 +03001043 [IORING_OP_SPLICE] = {
1044 .needs_file = 1,
1045 .hash_reg_file = 1,
1046 .unbound_nonreg_file = 1,
Jens Axboeddf0322d2020-02-23 16:41:33 -07001047 },
1048 [IORING_OP_PROVIDE_BUFFERS] = {},
Jens Axboe067524e2020-03-02 16:32:28 -07001049 [IORING_OP_REMOVE_BUFFERS] = {},
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03001050 [IORING_OP_TEE] = {
1051 .needs_file = 1,
1052 .hash_reg_file = 1,
1053 .unbound_nonreg_file = 1,
1054 },
Jens Axboe36f4fa62020-09-05 11:14:22 -06001055 [IORING_OP_SHUTDOWN] = {
1056 .needs_file = 1,
1057 },
Jens Axboe44526be2021-02-15 13:32:18 -07001058 [IORING_OP_RENAMEAT] = {},
1059 [IORING_OP_UNLINKAT] = {},
Dmitry Kadasheve34a02d2021-07-08 13:34:45 +07001060 [IORING_OP_MKDIRAT] = {},
Dmitry Kadashev7a8721f2021-07-08 13:34:46 +07001061 [IORING_OP_SYMLINKAT] = {},
Dmitry Kadashevcf30da92021-07-08 13:34:47 +07001062 [IORING_OP_LINKAT] = {},
Jens Axboed3656342019-12-18 09:50:26 -07001063};
1064
Pavel Begunkov0756a862021-08-15 10:40:25 +01001065/* requests with any of those set should undergo io_disarm_next() */
1066#define IO_DISARM_MASK (REQ_F_ARM_LTIMEOUT | REQ_F_LINK_TIMEOUT | REQ_F_FAIL)
1067
Pavel Begunkov7a612352021-03-09 00:37:59 +00001068static bool io_disarm_next(struct io_kiocb *req);
Pavel Begunkoveef51da2021-06-14 02:36:15 +01001069static void io_uring_del_tctx_node(unsigned long index);
Pavel Begunkov9936c7c2021-02-04 13:51:56 +00001070static void io_uring_try_cancel_requests(struct io_ring_ctx *ctx,
1071 struct task_struct *task,
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01001072 bool cancel_all);
Pavel Begunkov78cc6872021-06-14 02:36:23 +01001073static void io_uring_cancel_generic(bool cancel_all, struct io_sq_data *sqd);
Pavel Begunkov1ffc5422020-12-30 21:34:15 +00001074
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01001075static bool io_cqring_fill_event(struct io_ring_ctx *ctx, u64 user_data,
Pavel Begunkov54daa9b2021-10-04 20:03:00 +01001076 s32 res, u32 cflags);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001077static void io_put_req(struct io_kiocb *req);
Pavel Begunkov91c2f692021-08-11 19:28:28 +01001078static void io_put_req_deferred(struct io_kiocb *req);
Jens Axboec7dae4b2021-02-09 19:53:37 -07001079static void io_dismantle_req(struct io_kiocb *req);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001080static void io_queue_linked_timeout(struct io_kiocb *req);
Pavel Begunkovfdecb662021-04-25 14:32:20 +01001081static int __io_register_rsrc_update(struct io_ring_ctx *ctx, unsigned type,
Pavel Begunkovc3bdad02021-04-25 14:32:22 +01001082 struct io_uring_rsrc_update2 *up,
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +01001083 unsigned nr_args);
Pavel Begunkov68fb8972021-03-19 17:22:41 +00001084static void io_clean_op(struct io_kiocb *req);
Pavel Begunkovac177052021-08-09 13:04:02 +01001085static struct file *io_file_get(struct io_ring_ctx *ctx,
Pavel Begunkov8371adf2020-10-10 18:34:08 +01001086 struct io_kiocb *req, int fd, bool fixed);
Pavel Begunkovc5eef2b2021-02-10 00:03:22 +00001087static void __io_queue_sqe(struct io_kiocb *req);
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00001088static void io_rsrc_put_work(struct work_struct *work);
Jens Axboede0617e2019-04-06 21:51:27 -06001089
Pavel Begunkov907d1df2021-01-26 23:35:10 +00001090static void io_req_task_queue(struct io_kiocb *req);
Pavel Begunkovc4501782021-09-08 16:40:52 +01001091static void __io_submit_flush_completions(struct io_ring_ctx *ctx);
Pavel Begunkov179ae0d2021-02-28 22:35:20 +00001092static int io_req_prep_async(struct io_kiocb *req);
Jens Axboe9a56a232019-01-09 09:06:50 -07001093
Pavel Begunkovb9445592021-08-25 12:25:45 +01001094static int io_install_fixed_file(struct io_kiocb *req, struct file *file,
1095 unsigned int issue_flags, u32 slot_index);
Pavel Begunkov7df778b2021-09-24 20:04:29 +01001096static int io_close_fixed(struct io_kiocb *req, unsigned int issue_flags);
1097
Pavel Begunkovf1042b62021-08-28 19:54:39 -06001098static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer);
Pavel Begunkovb9445592021-08-25 12:25:45 +01001099
Jens Axboe2b188cc2019-01-07 10:46:33 -07001100static struct kmem_cache *req_cachep;
1101
Jens Axboe09186822020-10-13 15:01:40 -06001102static const struct file_operations io_uring_fops;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001103
1104struct sock *io_uring_get_socket(struct file *file)
1105{
1106#if defined(CONFIG_UNIX)
1107 if (file->f_op == &io_uring_fops) {
1108 struct io_ring_ctx *ctx = file->private_data;
1109
1110 return ctx->ring_sock->sk;
1111 }
1112#endif
1113 return NULL;
1114}
1115EXPORT_SYMBOL(io_uring_get_socket);
1116
Pavel Begunkovf237c302021-08-18 12:42:46 +01001117static inline void io_tw_lock(struct io_ring_ctx *ctx, bool *locked)
1118{
1119 if (!*locked) {
1120 mutex_lock(&ctx->uring_lock);
1121 *locked = true;
1122 }
1123}
1124
Pavel Begunkovf2f87372020-10-27 23:25:37 +00001125#define io_for_each_link(pos, head) \
1126 for (pos = (head); pos; pos = pos->link)
1127
Pavel Begunkov21c843d2021-08-11 19:28:27 +01001128/*
1129 * Shamelessly stolen from the mm implementation of page reference checking,
1130 * see commit f958d7b528b1 for details.
1131 */
1132#define req_ref_zero_or_close_to_overflow(req) \
1133 ((unsigned int) atomic_read(&(req->refs)) + 127u <= 127u)
1134
1135static inline bool req_ref_inc_not_zero(struct io_kiocb *req)
1136{
Pavel Begunkov20e60a32021-08-11 19:28:30 +01001137 WARN_ON_ONCE(!(req->flags & REQ_F_REFCOUNT));
Pavel Begunkov21c843d2021-08-11 19:28:27 +01001138 return atomic_inc_not_zero(&req->refs);
1139}
1140
Pavel Begunkov21c843d2021-08-11 19:28:27 +01001141static inline bool req_ref_put_and_test(struct io_kiocb *req)
1142{
Pavel Begunkov20e60a32021-08-11 19:28:30 +01001143 if (likely(!(req->flags & REQ_F_REFCOUNT)))
1144 return true;
1145
Pavel Begunkov21c843d2021-08-11 19:28:27 +01001146 WARN_ON_ONCE(req_ref_zero_or_close_to_overflow(req));
1147 return atomic_dec_and_test(&req->refs);
1148}
1149
1150static inline void req_ref_put(struct io_kiocb *req)
1151{
Pavel Begunkov20e60a32021-08-11 19:28:30 +01001152 WARN_ON_ONCE(!(req->flags & REQ_F_REFCOUNT));
Pavel Begunkov21c843d2021-08-11 19:28:27 +01001153 WARN_ON_ONCE(req_ref_put_and_test(req));
1154}
1155
1156static inline void req_ref_get(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_zero_or_close_to_overflow(req));
1160 atomic_inc(&req->refs);
1161}
1162
Pavel Begunkovc4501782021-09-08 16:40:52 +01001163static inline void io_submit_flush_completions(struct io_ring_ctx *ctx)
1164{
Pavel Begunkov6f33b0b2021-09-24 21:59:44 +01001165 if (!wq_list_empty(&ctx->submit_state.compl_reqs))
Pavel Begunkovc4501782021-09-08 16:40:52 +01001166 __io_submit_flush_completions(ctx);
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 Begunkovab409402021-10-09 23:14:41 +01001182#define IO_RSRC_REF_BATCH 100
1183
1184static inline void io_req_put_rsrc_locked(struct io_kiocb *req,
1185 struct io_ring_ctx *ctx)
1186 __must_hold(&ctx->uring_lock)
1187{
1188 struct percpu_ref *ref = req->fixed_rsrc_refs;
1189
1190 if (ref) {
1191 if (ref == &ctx->rsrc_node->refs)
1192 ctx->rsrc_cached_refs++;
1193 else
1194 percpu_ref_put(ref);
1195 }
1196}
1197
1198static inline void io_req_put_rsrc(struct io_kiocb *req, struct io_ring_ctx *ctx)
1199{
1200 if (req->fixed_rsrc_refs)
1201 percpu_ref_put(req->fixed_rsrc_refs);
1202}
1203
1204static __cold void io_rsrc_refs_drop(struct io_ring_ctx *ctx)
1205 __must_hold(&ctx->uring_lock)
1206{
1207 if (ctx->rsrc_cached_refs) {
1208 percpu_ref_put_many(&ctx->rsrc_node->refs, ctx->rsrc_cached_refs);
1209 ctx->rsrc_cached_refs = 0;
1210 }
1211}
1212
1213static void io_rsrc_refs_refill(struct io_ring_ctx *ctx)
1214 __must_hold(&ctx->uring_lock)
1215{
1216 ctx->rsrc_cached_refs += IO_RSRC_REF_BATCH;
1217 percpu_ref_get_many(&ctx->rsrc_node->refs, IO_RSRC_REF_BATCH);
1218}
1219
Pavel Begunkova46be972021-10-09 23:14:40 +01001220static inline void io_req_set_rsrc_node(struct io_kiocb *req,
1221 struct io_ring_ctx *ctx)
Jens Axboec40f6372020-06-25 15:39:59 -06001222{
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00001223 if (!req->fixed_rsrc_refs) {
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01001224 req->fixed_rsrc_refs = &ctx->rsrc_node->refs;
Pavel Begunkovab409402021-10-09 23:14:41 +01001225 ctx->rsrc_cached_refs--;
1226 if (unlikely(ctx->rsrc_cached_refs < 0))
1227 io_rsrc_refs_refill(ctx);
Pavel Begunkov36f72fe2020-11-18 19:57:26 +00001228 }
1229}
1230
Pavel Begunkovf70865d2021-04-11 01:46:40 +01001231static void io_refs_resurrect(struct percpu_ref *ref, struct completion *compl)
1232{
1233 bool got = percpu_ref_tryget(ref);
1234
1235 /* already at zero, wait for ->release() */
1236 if (!got)
1237 wait_for_completion(compl);
1238 percpu_ref_resurrect(ref);
1239 if (got)
1240 percpu_ref_put(ref);
1241}
1242
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01001243static bool io_match_task(struct io_kiocb *head, struct task_struct *task,
1244 bool cancel_all)
Pavel Begunkov08d23632020-11-06 13:00:22 +00001245{
1246 struct io_kiocb *req;
1247
Pavel Begunkov68207682021-03-22 01:58:25 +00001248 if (task && head->task != task)
Pavel Begunkov08d23632020-11-06 13:00:22 +00001249 return false;
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01001250 if (cancel_all)
Pavel Begunkov08d23632020-11-06 13:00:22 +00001251 return true;
1252
1253 io_for_each_link(req, head) {
Pavel Begunkovb05a1bc2021-03-04 13:59:24 +00001254 if (req->flags & REQ_F_INFLIGHT)
Jens Axboe02a13672021-01-23 15:49:31 -07001255 return true;
Pavel Begunkov08d23632020-11-06 13:00:22 +00001256 }
1257 return false;
1258}
1259
Pavel Begunkovd886e182021-10-04 20:02:56 +01001260static inline bool req_has_async_data(struct io_kiocb *req)
1261{
1262 return req->flags & REQ_F_ASYNC_DATA;
1263}
1264
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01001265static inline void req_set_fail(struct io_kiocb *req)
Jens Axboec40f6372020-06-25 15:39:59 -06001266{
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01001267 req->flags |= REQ_F_FAIL;
Jens Axboec40f6372020-06-25 15:39:59 -06001268}
Jens Axboe4a38aed22020-05-14 17:21:15 -06001269
Hao Xua8295b92021-08-27 17:46:09 +08001270static inline void req_fail_link_node(struct io_kiocb *req, int res)
1271{
1272 req_set_fail(req);
1273 req->result = res;
1274}
1275
Pavel Begunkovc0724812021-10-04 20:02:54 +01001276static __cold void io_ring_ctx_ref_free(struct percpu_ref *ref)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001277{
1278 struct io_ring_ctx *ctx = container_of(ref, struct io_ring_ctx, refs);
1279
Jens Axboe0f158b42020-05-14 17:18:39 -06001280 complete(&ctx->ref_comp);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001281}
1282
Pavel Begunkov8eb7e2d2020-06-29 13:13:02 +03001283static inline bool io_is_timeout_noseq(struct io_kiocb *req)
1284{
1285 return !req->timeout.off;
1286}
1287
Pavel Begunkovc0724812021-10-04 20:02:54 +01001288static __cold void io_fallback_req_func(struct work_struct *work)
Pavel Begunkovf56165e2021-08-09 20:18:07 +01001289{
1290 struct io_ring_ctx *ctx = container_of(work, struct io_ring_ctx,
1291 fallback_work.work);
1292 struct llist_node *node = llist_del_all(&ctx->fallback_llist);
1293 struct io_kiocb *req, *tmp;
Pavel Begunkovf237c302021-08-18 12:42:46 +01001294 bool locked = false;
Pavel Begunkovf56165e2021-08-09 20:18:07 +01001295
1296 percpu_ref_get(&ctx->refs);
1297 llist_for_each_entry_safe(req, tmp, node, io_task_work.fallback_node)
Pavel Begunkovf237c302021-08-18 12:42:46 +01001298 req->io_task_work.func(req, &locked);
Pavel Begunkov5636c002021-08-18 12:42:45 +01001299
Pavel Begunkovf237c302021-08-18 12:42:46 +01001300 if (locked) {
Pavel Begunkovc4501782021-09-08 16:40:52 +01001301 io_submit_flush_completions(ctx);
Pavel Begunkovf237c302021-08-18 12:42:46 +01001302 mutex_unlock(&ctx->uring_lock);
1303 }
Pavel Begunkovf56165e2021-08-09 20:18:07 +01001304 percpu_ref_put(&ctx->refs);
1305}
1306
Pavel Begunkovc0724812021-10-04 20:02:54 +01001307static __cold struct io_ring_ctx *io_ring_ctx_alloc(struct io_uring_params *p)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001308{
1309 struct io_ring_ctx *ctx;
Jens Axboe78076bb2019-12-04 19:56:40 -07001310 int hash_bits;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001311
1312 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
1313 if (!ctx)
1314 return NULL;
1315
Jens Axboe78076bb2019-12-04 19:56:40 -07001316 /*
1317 * Use 5 bits less than the max cq entries, that should give us around
1318 * 32 entries per hash list if totally full and uniformly spread.
1319 */
1320 hash_bits = ilog2(p->cq_entries);
1321 hash_bits -= 5;
1322 if (hash_bits <= 0)
1323 hash_bits = 1;
1324 ctx->cancel_hash_bits = hash_bits;
1325 ctx->cancel_hash = kmalloc((1U << hash_bits) * sizeof(struct hlist_head),
1326 GFP_KERNEL);
1327 if (!ctx->cancel_hash)
1328 goto err;
1329 __hash_init(ctx->cancel_hash, 1U << hash_bits);
1330
Pavel Begunkov62248432021-04-28 13:11:29 +01001331 ctx->dummy_ubuf = kzalloc(sizeof(*ctx->dummy_ubuf), GFP_KERNEL);
1332 if (!ctx->dummy_ubuf)
1333 goto err;
1334 /* set invalid range, so io_import_fixed() fails meeting it */
1335 ctx->dummy_ubuf->ubuf = -1UL;
1336
Roman Gushchin21482892019-05-07 10:01:48 -07001337 if (percpu_ref_init(&ctx->refs, io_ring_ctx_ref_free,
Jens Axboe206aefd2019-11-07 18:27:42 -07001338 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL))
1339 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001340
1341 ctx->flags = p->flags;
Jens Axboe90554202020-09-03 12:12:41 -06001342 init_waitqueue_head(&ctx->sqo_sq_wait);
Jens Axboe69fb2132020-09-14 11:16:23 -06001343 INIT_LIST_HEAD(&ctx->sqd_list);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001344 INIT_LIST_HEAD(&ctx->cq_overflow_list);
Jens Axboe0f158b42020-05-14 17:18:39 -06001345 init_completion(&ctx->ref_comp);
Jens Axboe9e15c3a2021-03-13 12:29:43 -07001346 xa_init_flags(&ctx->io_buffers, XA_FLAGS_ALLOC1);
Matthew Wilcox (Oracle)61cf9372021-03-08 14:16:16 +00001347 xa_init_flags(&ctx->personalities, XA_FLAGS_ALLOC1);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001348 mutex_init(&ctx->uring_lock);
Pavel Begunkov311997b2021-06-14 23:37:28 +01001349 init_waitqueue_head(&ctx->cq_wait);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001350 spin_lock_init(&ctx->completion_lock);
Jens Axboe89850fc2021-08-10 15:11:51 -06001351 spin_lock_init(&ctx->timeout_lock);
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01001352 INIT_WQ_LIST(&ctx->iopoll_list);
Jens Axboede0617e2019-04-06 21:51:27 -06001353 INIT_LIST_HEAD(&ctx->defer_list);
Jens Axboe5262f562019-09-17 12:26:57 -06001354 INIT_LIST_HEAD(&ctx->timeout_list);
Pavel Begunkovef9dd632021-08-28 19:54:38 -06001355 INIT_LIST_HEAD(&ctx->ltimeout_list);
Bijan Mottahedehd67d2262021-01-15 17:37:46 +00001356 spin_lock_init(&ctx->rsrc_ref_lock);
1357 INIT_LIST_HEAD(&ctx->rsrc_ref_list);
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00001358 INIT_DELAYED_WORK(&ctx->rsrc_put_work, io_rsrc_put_work);
1359 init_llist_head(&ctx->rsrc_put_llist);
Pavel Begunkov13bf43f2021-03-06 11:02:12 +00001360 INIT_LIST_HEAD(&ctx->tctx_list);
Pavel Begunkovc2b6c6b2021-09-24 21:59:47 +01001361 ctx->submit_state.free_list.next = NULL;
1362 INIT_WQ_LIST(&ctx->locked_free_list);
Pavel Begunkov9011bf92021-06-30 21:54:03 +01001363 INIT_DELAYED_WORK(&ctx->fallback_work, io_fallback_req_func);
Pavel Begunkov6f33b0b2021-09-24 21:59:44 +01001364 INIT_WQ_LIST(&ctx->submit_state.compl_reqs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001365 return ctx;
Jens Axboe206aefd2019-11-07 18:27:42 -07001366err:
Pavel Begunkov62248432021-04-28 13:11:29 +01001367 kfree(ctx->dummy_ubuf);
Jens Axboe78076bb2019-12-04 19:56:40 -07001368 kfree(ctx->cancel_hash);
Jens Axboe206aefd2019-11-07 18:27:42 -07001369 kfree(ctx);
1370 return NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001371}
1372
Pavel Begunkov8f6ed492021-05-16 22:58:10 +01001373static void io_account_cq_overflow(struct io_ring_ctx *ctx)
1374{
1375 struct io_rings *r = ctx->rings;
1376
1377 WRITE_ONCE(r->cq_overflow, READ_ONCE(r->cq_overflow) + 1);
1378 ctx->cq_extra--;
1379}
1380
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03001381static bool req_need_defer(struct io_kiocb *req, u32 seq)
Jens Axboede0617e2019-04-06 21:51:27 -06001382{
Jens Axboe2bc99302020-07-09 09:43:27 -06001383 if (unlikely(req->flags & REQ_F_IO_DRAIN)) {
1384 struct io_ring_ctx *ctx = req->ctx;
Jackie Liua197f662019-11-08 08:09:12 -07001385
Pavel Begunkov8f6ed492021-05-16 22:58:10 +01001386 return seq + READ_ONCE(ctx->cq_extra) != ctx->cached_cq_tail;
Jens Axboe2bc99302020-07-09 09:43:27 -06001387 }
Jens Axboe7adf4ea2019-10-10 21:42:58 -06001388
Bob Liu9d858b22019-11-13 18:06:25 +08001389 return false;
Jens Axboe7adf4ea2019-10-10 21:42:58 -06001390}
1391
Pavel Begunkovc97d8a02021-08-09 13:04:04 +01001392#define FFS_ASYNC_READ 0x1UL
1393#define FFS_ASYNC_WRITE 0x2UL
1394#ifdef CONFIG_64BIT
1395#define FFS_ISREG 0x4UL
1396#else
1397#define FFS_ISREG 0x0UL
1398#endif
1399#define FFS_MASK ~(FFS_ASYNC_READ|FFS_ASYNC_WRITE|FFS_ISREG)
1400
1401static inline bool io_req_ffs_set(struct io_kiocb *req)
1402{
1403 return IS_ENABLED(CONFIG_64BIT) && (req->flags & REQ_F_FIXED_FILE);
1404}
1405
Pavel Begunkovc0724812021-10-04 20:02:54 +01001406static inline void io_req_track_inflight(struct io_kiocb *req)
Pavel Begunkovce3d5aa2021-02-01 18:59:55 +00001407{
Pavel Begunkovce3d5aa2021-02-01 18:59:55 +00001408 if (!(req->flags & REQ_F_INFLIGHT)) {
Pavel Begunkovce3d5aa2021-02-01 18:59:55 +00001409 req->flags |= REQ_F_INFLIGHT;
Pavel Begunkovb303fe22021-04-11 01:46:26 +01001410 atomic_inc(&current->io_uring->inflight_tracked);
Pavel Begunkovce3d5aa2021-02-01 18:59:55 +00001411 }
1412}
1413
Pavel Begunkov906c6ca2021-08-15 10:40:26 +01001414static inline void io_unprep_linked_timeout(struct io_kiocb *req)
1415{
1416 req->flags &= ~REQ_F_LINK_TIMEOUT;
1417}
1418
Pavel Begunkovfd08e532021-08-11 19:28:31 +01001419static struct io_kiocb *__io_prep_linked_timeout(struct io_kiocb *req)
1420{
Pavel Begunkov906c6ca2021-08-15 10:40:26 +01001421 if (WARN_ON_ONCE(!req->link))
1422 return NULL;
1423
Pavel Begunkov4d13d1a2021-08-15 10:40:24 +01001424 req->flags &= ~REQ_F_ARM_LTIMEOUT;
1425 req->flags |= REQ_F_LINK_TIMEOUT;
Pavel Begunkovfd08e532021-08-11 19:28:31 +01001426
1427 /* linked timeouts should have two refs once prep'ed */
Pavel Begunkov48dcd382021-08-15 10:40:18 +01001428 io_req_set_refcount(req);
Pavel Begunkov4d13d1a2021-08-15 10:40:24 +01001429 __io_req_set_refcount(req->link, 2);
1430 return req->link;
Pavel Begunkovfd08e532021-08-11 19:28:31 +01001431}
1432
1433static inline struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req)
1434{
Pavel Begunkov4d13d1a2021-08-15 10:40:24 +01001435 if (likely(!(req->flags & REQ_F_ARM_LTIMEOUT)))
Pavel Begunkovfd08e532021-08-11 19:28:31 +01001436 return NULL;
1437 return __io_prep_linked_timeout(req);
1438}
1439
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001440static void io_prep_async_work(struct io_kiocb *req)
Jens Axboe561fb042019-10-24 07:25:42 -06001441{
Jens Axboed3656342019-12-18 09:50:26 -07001442 const struct io_op_def *def = &io_op_defs[req->opcode];
Pavel Begunkov23329512020-10-10 18:34:06 +01001443 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe54a91f32019-09-10 09:15:04 -06001444
Pavel Begunkovb8e64b52021-06-17 18:14:02 +01001445 if (!(req->flags & REQ_F_CREDS)) {
1446 req->flags |= REQ_F_CREDS;
Pavel Begunkovc10d1f92021-06-17 18:14:01 +01001447 req->creds = get_current_cred();
Pavel Begunkovb8e64b52021-06-17 18:14:02 +01001448 }
Jens Axboe003e8dc2021-03-06 09:22:27 -07001449
Pavel Begunkove1d675d2021-03-22 01:58:29 +00001450 req->work.list.next = NULL;
1451 req->work.flags = 0;
Pavel Begunkovfeaadc42020-10-22 16:47:16 +01001452 if (req->flags & REQ_F_FORCE_ASYNC)
1453 req->work.flags |= IO_WQ_WORK_CONCURRENT;
1454
Jens Axboed3656342019-12-18 09:50:26 -07001455 if (req->flags & REQ_F_ISREG) {
Pavel Begunkov23329512020-10-10 18:34:06 +01001456 if (def->hash_reg_file || (ctx->flags & IORING_SETUP_IOPOLL))
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001457 io_wq_hash_work(&req->work, file_inode(req->file));
Jens Axboe4b982bd2021-04-01 08:38:34 -06001458 } else if (!req->file || !S_ISBLK(file_inode(req->file)->i_mode)) {
Jens Axboed3656342019-12-18 09:50:26 -07001459 if (def->unbound_nonreg_file)
Jens Axboe3529d8c2019-12-19 18:24:38 -07001460 req->work.flags |= IO_WQ_WORK_UNBOUND;
Jens Axboe54a91f32019-09-10 09:15:04 -06001461 }
Pavel Begunkove1d675d2021-03-22 01:58:29 +00001462
1463 switch (req->opcode) {
1464 case IORING_OP_SPLICE:
1465 case IORING_OP_TEE:
Pavel Begunkove1d675d2021-03-22 01:58:29 +00001466 if (!S_ISREG(file_inode(req->splice.file_in)->i_mode))
1467 req->work.flags |= IO_WQ_WORK_UNBOUND;
1468 break;
1469 }
Jens Axboe561fb042019-10-24 07:25:42 -06001470}
1471
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001472static void io_prep_async_link(struct io_kiocb *req)
1473{
1474 struct io_kiocb *cur;
1475
Pavel Begunkov44eff402021-07-26 14:14:31 +01001476 if (req->flags & REQ_F_LINK_TIMEOUT) {
1477 struct io_ring_ctx *ctx = req->ctx;
1478
Jens Axboe79ebeae2021-08-10 15:18:27 -06001479 spin_lock(&ctx->completion_lock);
Pavel Begunkov44eff402021-07-26 14:14:31 +01001480 io_for_each_link(cur, req)
1481 io_prep_async_work(cur);
Jens Axboe79ebeae2021-08-10 15:18:27 -06001482 spin_unlock(&ctx->completion_lock);
Pavel Begunkov44eff402021-07-26 14:14:31 +01001483 } else {
1484 io_for_each_link(cur, req)
1485 io_prep_async_work(cur);
1486 }
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001487}
1488
Pavel Begunkovfff4e402021-10-04 20:02:48 +01001489static inline void io_req_add_compl_list(struct io_kiocb *req)
1490{
1491 struct io_submit_state *state = &req->ctx->submit_state;
1492
1493 wq_list_add_tail(&req->comp_list, &state->compl_reqs);
1494}
1495
Pavel Begunkovf237c302021-08-18 12:42:46 +01001496static void io_queue_async_work(struct io_kiocb *req, bool *locked)
Jens Axboe561fb042019-10-24 07:25:42 -06001497{
Jackie Liua197f662019-11-08 08:09:12 -07001498 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001499 struct io_kiocb *link = io_prep_linked_timeout(req);
Jens Axboe5aa75ed2021-02-16 12:56:50 -07001500 struct io_uring_task *tctx = req->task->io_uring;
Jens Axboe561fb042019-10-24 07:25:42 -06001501
Pavel Begunkovf237c302021-08-18 12:42:46 +01001502 /* must not take the lock, NULL it as a precaution */
1503 locked = NULL;
1504
Jens Axboe3bfe6102021-02-16 14:15:30 -07001505 BUG_ON(!tctx);
1506 BUG_ON(!tctx->io_wq);
Jens Axboe561fb042019-10-24 07:25:42 -06001507
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001508 /* init ->work of the whole link before punting */
1509 io_prep_async_link(req);
Jens Axboe991468d2021-07-23 11:53:54 -06001510
1511 /*
1512 * Not expected to happen, but if we do have a bug where this _can_
1513 * happen, catch it here and ensure the request is marked as
1514 * canceled. That will make io-wq go through the usual work cancel
1515 * procedure rather than attempt to run this request (or create a new
1516 * worker for it).
1517 */
1518 if (WARN_ON_ONCE(!same_thread_group(req->task, current)))
1519 req->work.flags |= IO_WQ_WORK_CANCEL;
1520
Pavel Begunkovd07f1e8a2021-03-22 01:45:58 +00001521 trace_io_uring_queue_async_work(ctx, io_wq_is_hashed(&req->work), req,
1522 &req->work, req->flags);
Pavel Begunkovebf93662021-03-01 18:20:47 +00001523 io_wq_enqueue(tctx->io_wq, &req->work);
Jens Axboe7271ef32020-08-10 09:55:22 -06001524 if (link)
1525 io_queue_linked_timeout(link);
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001526}
1527
Pavel Begunkov1ee41602021-03-25 18:32:42 +00001528static void io_kill_timeout(struct io_kiocb *req, int status)
Pavel Begunkov8c855882021-04-13 02:58:41 +01001529 __must_hold(&req->ctx->completion_lock)
Jens Axboe89850fc2021-08-10 15:11:51 -06001530 __must_hold(&req->ctx->timeout_lock)
Jens Axboe5262f562019-09-17 12:26:57 -06001531{
Jens Axboee8c2bc12020-08-15 18:44:09 -07001532 struct io_timeout_data *io = req->async_data;
Jens Axboe5262f562019-09-17 12:26:57 -06001533
Pavel Begunkovfd9c7bc2021-04-13 02:58:42 +01001534 if (hrtimer_try_to_cancel(&io->timer) != -1) {
Pavel Begunkov2ae2eb92021-09-09 13:56:27 +01001535 if (status)
1536 req_set_fail(req);
Pavel Begunkov01cec8c2020-07-30 18:43:50 +03001537 atomic_set(&req->ctx->cq_timeouts,
1538 atomic_read(&req->ctx->cq_timeouts) + 1);
Pavel Begunkov135fcde2020-07-13 23:37:12 +03001539 list_del_init(&req->timeout.list);
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01001540 io_cqring_fill_event(req->ctx, req->user_data, status, 0);
Pavel Begunkov91c2f692021-08-11 19:28:28 +01001541 io_put_req_deferred(req);
Jens Axboe5262f562019-09-17 12:26:57 -06001542 }
1543}
1544
Pavel Begunkovc0724812021-10-04 20:02:54 +01001545static __cold void io_queue_deferred(struct io_ring_ctx *ctx)
Pavel Begunkov04518942020-05-26 20:34:05 +03001546{
Pavel Begunkov441b8a72021-06-14 23:37:31 +01001547 while (!list_empty(&ctx->defer_list)) {
Pavel Begunkov27dc8332020-07-13 23:37:14 +03001548 struct io_defer_entry *de = list_first_entry(&ctx->defer_list,
1549 struct io_defer_entry, list);
Pavel Begunkov04518942020-05-26 20:34:05 +03001550
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03001551 if (req_need_defer(de->req, de->seq))
Pavel Begunkov04518942020-05-26 20:34:05 +03001552 break;
Pavel Begunkov27dc8332020-07-13 23:37:14 +03001553 list_del_init(&de->list);
Pavel Begunkov907d1df2021-01-26 23:35:10 +00001554 io_req_task_queue(de->req);
Pavel Begunkov27dc8332020-07-13 23:37:14 +03001555 kfree(de);
Pavel Begunkov441b8a72021-06-14 23:37:31 +01001556 }
Pavel Begunkov04518942020-05-26 20:34:05 +03001557}
1558
Pavel Begunkovc0724812021-10-04 20:02:54 +01001559static __cold void io_flush_timeouts(struct io_ring_ctx *ctx)
Jens Axboe89850fc2021-08-10 15:11:51 -06001560 __must_hold(&ctx->completion_lock)
Pavel Begunkov360428f2020-05-30 14:54:17 +03001561{
Pavel Begunkov441b8a72021-06-14 23:37:31 +01001562 u32 seq = ctx->cached_cq_tail - atomic_read(&ctx->cq_timeouts);
Marcelo Diop-Gonzalezf0105052021-01-15 11:54:40 -05001563
Jens Axboe79ebeae2021-08-10 15:18:27 -06001564 spin_lock_irq(&ctx->timeout_lock);
Pavel Begunkovf18ee4c2021-06-14 23:37:25 +01001565 while (!list_empty(&ctx->timeout_list)) {
Marcelo Diop-Gonzalezf0105052021-01-15 11:54:40 -05001566 u32 events_needed, events_got;
Pavel Begunkov360428f2020-05-30 14:54:17 +03001567 struct io_kiocb *req = list_first_entry(&ctx->timeout_list,
Pavel Begunkov135fcde2020-07-13 23:37:12 +03001568 struct io_kiocb, timeout.list);
Pavel Begunkov360428f2020-05-30 14:54:17 +03001569
Pavel Begunkov8eb7e2d2020-06-29 13:13:02 +03001570 if (io_is_timeout_noseq(req))
Pavel Begunkov360428f2020-05-30 14:54:17 +03001571 break;
Marcelo Diop-Gonzalezf0105052021-01-15 11:54:40 -05001572
1573 /*
1574 * Since seq can easily wrap around over time, subtract
1575 * the last seq at which timeouts were flushed before comparing.
1576 * Assuming not more than 2^31-1 events have happened since,
1577 * these subtractions won't have wrapped, so we can check if
1578 * target is in [last_seq, current_seq] by comparing the two.
1579 */
1580 events_needed = req->timeout.target_seq - ctx->cq_last_tm_flush;
1581 events_got = seq - ctx->cq_last_tm_flush;
1582 if (events_got < events_needed)
Pavel Begunkov360428f2020-05-30 14:54:17 +03001583 break;
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03001584
Pavel Begunkov135fcde2020-07-13 23:37:12 +03001585 list_del_init(&req->timeout.list);
Pavel Begunkov1ee41602021-03-25 18:32:42 +00001586 io_kill_timeout(req, 0);
Pavel Begunkovf18ee4c2021-06-14 23:37:25 +01001587 }
Marcelo Diop-Gonzalezf0105052021-01-15 11:54:40 -05001588 ctx->cq_last_tm_flush = seq;
Jens Axboe79ebeae2021-08-10 15:18:27 -06001589 spin_unlock_irq(&ctx->timeout_lock);
Pavel Begunkov360428f2020-05-30 14:54:17 +03001590}
1591
Pavel Begunkovc0724812021-10-04 20:02:54 +01001592static __cold void __io_commit_cqring_flush(struct io_ring_ctx *ctx)
Jens Axboede0617e2019-04-06 21:51:27 -06001593{
Pavel Begunkov2335f6f2021-06-15 16:47:58 +01001594 if (ctx->off_timeout_used)
1595 io_flush_timeouts(ctx);
1596 if (ctx->drain_active)
1597 io_queue_deferred(ctx);
1598}
1599
1600static inline void io_commit_cqring(struct io_ring_ctx *ctx)
1601{
1602 if (unlikely(ctx->off_timeout_used || ctx->drain_active))
1603 __io_commit_cqring_flush(ctx);
Pavel Begunkovec30e042021-01-19 13:32:38 +00001604 /* order cqe stores with ring update */
1605 smp_store_release(&ctx->rings->cq.tail, ctx->cached_cq_tail);
Jens Axboede0617e2019-04-06 21:51:27 -06001606}
1607
Jens Axboe90554202020-09-03 12:12:41 -06001608static inline bool io_sqring_full(struct io_ring_ctx *ctx)
1609{
1610 struct io_rings *r = ctx->rings;
1611
Pavel Begunkova566c552021-05-16 22:58:08 +01001612 return READ_ONCE(r->sq.tail) - ctx->cached_sq_head == ctx->sq_entries;
Jens Axboe90554202020-09-03 12:12:41 -06001613}
1614
Pavel Begunkov888aae22021-01-19 13:32:39 +00001615static inline unsigned int __io_cqring_events(struct io_ring_ctx *ctx)
1616{
1617 return ctx->cached_cq_tail - READ_ONCE(ctx->rings->cq.head);
1618}
1619
Pavel Begunkovd068b502021-05-16 22:58:11 +01001620static inline struct io_uring_cqe *io_get_cqe(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001621{
Hristo Venev75b28af2019-08-26 17:23:46 +00001622 struct io_rings *rings = ctx->rings;
Pavel Begunkovea5ab3b2021-05-16 22:58:09 +01001623 unsigned tail, mask = ctx->cq_entries - 1;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001624
Stefan Bühler115e12e2019-04-24 23:54:18 +02001625 /*
1626 * writes to the cq entry need to come after reading head; the
1627 * control dependency is enough as we're using WRITE_ONCE to
1628 * fill the cq entry
1629 */
Pavel Begunkova566c552021-05-16 22:58:08 +01001630 if (__io_cqring_events(ctx) == ctx->cq_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001631 return NULL;
1632
Pavel Begunkov888aae22021-01-19 13:32:39 +00001633 tail = ctx->cached_cq_tail++;
Pavel Begunkovea5ab3b2021-05-16 22:58:09 +01001634 return &rings->cqes[tail & mask];
Jens Axboe2b188cc2019-01-07 10:46:33 -07001635}
1636
Jens Axboef2842ab2020-01-08 11:04:00 -07001637static inline bool io_should_trigger_evfd(struct io_ring_ctx *ctx)
1638{
Pavel Begunkov44c769d2021-04-11 01:46:31 +01001639 if (likely(!ctx->cq_ev_fd))
Jens Axboef0b493e2020-02-01 21:30:11 -07001640 return false;
Stefano Garzarella7e55a192020-05-15 18:38:05 +02001641 if (READ_ONCE(ctx->rings->cq_flags) & IORING_CQ_EVENTFD_DISABLED)
1642 return false;
Pavel Begunkov44c769d2021-04-11 01:46:31 +01001643 return !ctx->eventfd_async || io_wq_current_is_worker();
Jens Axboef2842ab2020-01-08 11:04:00 -07001644}
1645
Jens Axboe2c5d7632021-08-21 07:21:19 -06001646/*
1647 * This should only get called when at least one event has been posted.
1648 * Some applications rely on the eventfd notification count only changing
1649 * IFF a new CQE has been added to the CQ ring. There's no depedency on
1650 * 1:1 relationship between how many times this function is called (and
1651 * hence the eventfd count) and number of CQEs posted to the CQ ring.
1652 */
Jens Axboeb41e9852020-02-17 09:52:41 -07001653static void io_cqring_ev_posted(struct io_ring_ctx *ctx)
Jens Axboe8c838782019-03-12 15:48:16 -06001654{
Jens Axboe5fd46172021-08-06 14:04:31 -06001655 /*
1656 * wake_up_all() may seem excessive, but io_wake_function() and
1657 * io_should_wake() handle the termination of the loop and only
1658 * wake as many waiters as we need to.
1659 */
1660 if (wq_has_sleeper(&ctx->cq_wait))
1661 wake_up_all(&ctx->cq_wait);
Jens Axboeb41e9852020-02-17 09:52:41 -07001662 if (io_should_trigger_evfd(ctx))
Jens Axboe9b402842019-04-11 11:45:41 -06001663 eventfd_signal(ctx->cq_ev_fd, 1);
Jens Axboe8c838782019-03-12 15:48:16 -06001664}
1665
Pavel Begunkov80c18e42021-01-07 03:15:41 +00001666static void io_cqring_ev_posted_iopoll(struct io_ring_ctx *ctx)
1667{
Pavel Begunkovc57a91fb2021-09-08 20:49:17 +01001668 /* see waitqueue_active() comment */
1669 smp_mb();
1670
Pavel Begunkov80c18e42021-01-07 03:15:41 +00001671 if (ctx->flags & IORING_SETUP_SQPOLL) {
Pavel Begunkovc57a91fb2021-09-08 20:49:17 +01001672 if (waitqueue_active(&ctx->cq_wait))
Jens Axboe5fd46172021-08-06 14:04:31 -06001673 wake_up_all(&ctx->cq_wait);
Pavel Begunkov80c18e42021-01-07 03:15:41 +00001674 }
1675 if (io_should_trigger_evfd(ctx))
1676 eventfd_signal(ctx->cq_ev_fd, 1);
1677}
1678
Jens Axboec4a2ed72019-11-21 21:01:26 -07001679/* Returns true if there are no backlogged entries after the flush */
Pavel Begunkov6c2450a2021-02-23 12:40:22 +00001680static bool __io_cqring_overflow_flush(struct io_ring_ctx *ctx, bool force)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001681{
Jens Axboeb18032b2021-01-24 16:58:56 -07001682 bool all_flushed, posted;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001683
Pavel Begunkova566c552021-05-16 22:58:08 +01001684 if (!force && __io_cqring_events(ctx) == ctx->cq_entries)
Pavel Begunkove23de152020-12-17 00:24:37 +00001685 return false;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001686
Jens Axboeb18032b2021-01-24 16:58:56 -07001687 posted = false;
Jens Axboe79ebeae2021-08-10 15:18:27 -06001688 spin_lock(&ctx->completion_lock);
Pavel Begunkov6c2450a2021-02-23 12:40:22 +00001689 while (!list_empty(&ctx->cq_overflow_list)) {
Pavel Begunkovd068b502021-05-16 22:58:11 +01001690 struct io_uring_cqe *cqe = io_get_cqe(ctx);
Pavel Begunkov6c2450a2021-02-23 12:40:22 +00001691 struct io_overflow_cqe *ocqe;
Jens Axboee6c8aa92020-09-28 13:10:13 -06001692
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001693 if (!cqe && !force)
1694 break;
Pavel Begunkov6c2450a2021-02-23 12:40:22 +00001695 ocqe = list_first_entry(&ctx->cq_overflow_list,
1696 struct io_overflow_cqe, list);
1697 if (cqe)
1698 memcpy(cqe, &ocqe->cqe, sizeof(*cqe));
1699 else
Pavel Begunkov8f6ed492021-05-16 22:58:10 +01001700 io_account_cq_overflow(ctx);
1701
Jens Axboeb18032b2021-01-24 16:58:56 -07001702 posted = true;
Pavel Begunkov6c2450a2021-02-23 12:40:22 +00001703 list_del(&ocqe->list);
1704 kfree(ocqe);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001705 }
1706
Pavel Begunkov09e88402020-12-17 00:24:38 +00001707 all_flushed = list_empty(&ctx->cq_overflow_list);
1708 if (all_flushed) {
Pavel Begunkov5ed7a372021-06-14 23:37:27 +01001709 clear_bit(0, &ctx->check_cq_overflow);
Nadav Amit20c0b382021-08-07 17:13:42 -07001710 WRITE_ONCE(ctx->rings->sq_flags,
1711 ctx->rings->sq_flags & ~IORING_SQ_CQ_OVERFLOW);
Pavel Begunkov09e88402020-12-17 00:24:38 +00001712 }
Pavel Begunkov46930142020-07-30 18:43:49 +03001713
Jens Axboeb18032b2021-01-24 16:58:56 -07001714 if (posted)
1715 io_commit_cqring(ctx);
Jens Axboe79ebeae2021-08-10 15:18:27 -06001716 spin_unlock(&ctx->completion_lock);
Jens Axboeb18032b2021-01-24 16:58:56 -07001717 if (posted)
1718 io_cqring_ev_posted(ctx);
Pavel Begunkov09e88402020-12-17 00:24:38 +00001719 return all_flushed;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001720}
1721
Pavel Begunkov90f67362021-08-09 20:18:12 +01001722static bool io_cqring_overflow_flush(struct io_ring_ctx *ctx)
Pavel Begunkov6c503152021-01-04 20:36:36 +00001723{
Jens Axboeca0a2652021-03-04 17:15:48 -07001724 bool ret = true;
1725
Pavel Begunkov5ed7a372021-06-14 23:37:27 +01001726 if (test_bit(0, &ctx->check_cq_overflow)) {
Pavel Begunkov6c503152021-01-04 20:36:36 +00001727 /* iopoll syncs against uring_lock, not completion_lock */
1728 if (ctx->flags & IORING_SETUP_IOPOLL)
1729 mutex_lock(&ctx->uring_lock);
Pavel Begunkov90f67362021-08-09 20:18:12 +01001730 ret = __io_cqring_overflow_flush(ctx, false);
Pavel Begunkov6c503152021-01-04 20:36:36 +00001731 if (ctx->flags & IORING_SETUP_IOPOLL)
1732 mutex_unlock(&ctx->uring_lock);
1733 }
Jens Axboeca0a2652021-03-04 17:15:48 -07001734
1735 return ret;
Pavel Begunkov6c503152021-01-04 20:36:36 +00001736}
1737
Pavel Begunkov6a290a12021-08-09 13:04:13 +01001738/* must to be called somewhat shortly after putting a request */
1739static inline void io_put_task(struct task_struct *task, int nr)
1740{
1741 struct io_uring_task *tctx = task->io_uring;
1742
Pavel Begunkove98e49b2021-08-18 17:01:43 +01001743 if (likely(task == current)) {
1744 tctx->cached_refs += nr;
1745 } else {
1746 percpu_counter_sub(&tctx->inflight, nr);
1747 if (unlikely(atomic_read(&tctx->in_idle)))
1748 wake_up(&tctx->wait);
1749 put_task_struct_many(task, nr);
1750 }
Pavel Begunkov6a290a12021-08-09 13:04:13 +01001751}
1752
Pavel Begunkov9a108672021-08-27 11:55:01 +01001753static void io_task_refs_refill(struct io_uring_task *tctx)
1754{
1755 unsigned int refill = -tctx->cached_refs + IO_TCTX_REFS_CACHE_NR;
1756
1757 percpu_counter_add(&tctx->inflight, refill);
1758 refcount_add(refill, &current->usage);
1759 tctx->cached_refs += refill;
1760}
1761
1762static inline void io_get_task_refs(int nr)
1763{
1764 struct io_uring_task *tctx = current->io_uring;
1765
1766 tctx->cached_refs -= nr;
1767 if (unlikely(tctx->cached_refs < 0))
1768 io_task_refs_refill(tctx);
1769}
1770
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01001771static bool io_cqring_event_overflow(struct io_ring_ctx *ctx, u64 user_data,
Pavel Begunkov54daa9b2021-10-04 20:03:00 +01001772 s32 res, u32 cflags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001773{
Pavel Begunkovcce4b8b2021-04-13 02:58:44 +01001774 struct io_overflow_cqe *ocqe;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001775
Pavel Begunkovcce4b8b2021-04-13 02:58:44 +01001776 ocqe = kmalloc(sizeof(*ocqe), GFP_ATOMIC | __GFP_ACCOUNT);
1777 if (!ocqe) {
1778 /*
1779 * If we're in ring overflow flush mode, or in task cancel mode,
1780 * or cannot allocate an overflow entry, then we need to drop it
1781 * on the floor.
1782 */
Pavel Begunkov8f6ed492021-05-16 22:58:10 +01001783 io_account_cq_overflow(ctx);
Pavel Begunkovcce4b8b2021-04-13 02:58:44 +01001784 return false;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001785 }
Pavel Begunkovcce4b8b2021-04-13 02:58:44 +01001786 if (list_empty(&ctx->cq_overflow_list)) {
Pavel Begunkov5ed7a372021-06-14 23:37:27 +01001787 set_bit(0, &ctx->check_cq_overflow);
Nadav Amit20c0b382021-08-07 17:13:42 -07001788 WRITE_ONCE(ctx->rings->sq_flags,
1789 ctx->rings->sq_flags | IORING_SQ_CQ_OVERFLOW);
1790
Pavel Begunkovcce4b8b2021-04-13 02:58:44 +01001791 }
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01001792 ocqe->cqe.user_data = user_data;
Pavel Begunkovcce4b8b2021-04-13 02:58:44 +01001793 ocqe->cqe.res = res;
1794 ocqe->cqe.flags = cflags;
1795 list_add_tail(&ocqe->list, &ctx->cq_overflow_list);
1796 return true;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001797}
1798
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01001799static inline bool __io_cqring_fill_event(struct io_ring_ctx *ctx, u64 user_data,
Pavel Begunkov54daa9b2021-10-04 20:03:00 +01001800 s32 res, u32 cflags)
Pavel Begunkov8d133262021-04-11 01:46:33 +01001801{
Jens Axboe2b188cc2019-01-07 10:46:33 -07001802 struct io_uring_cqe *cqe;
1803
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01001804 trace_io_uring_complete(ctx, user_data, res, cflags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001805
1806 /*
1807 * If we can't get a cq entry, userspace overflowed the
1808 * submission (by quite a lot). Increment the overflow count in
1809 * the ring.
1810 */
Pavel Begunkovd068b502021-05-16 22:58:11 +01001811 cqe = io_get_cqe(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001812 if (likely(cqe)) {
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01001813 WRITE_ONCE(cqe->user_data, user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001814 WRITE_ONCE(cqe->res, res);
1815 WRITE_ONCE(cqe->flags, cflags);
Pavel Begunkov8d133262021-04-11 01:46:33 +01001816 return true;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001817 }
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01001818 return io_cqring_event_overflow(ctx, user_data, res, cflags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001819}
1820
Pavel Begunkov8d133262021-04-11 01:46:33 +01001821/* not as hot to bloat with inlining */
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01001822static noinline bool io_cqring_fill_event(struct io_ring_ctx *ctx, u64 user_data,
Pavel Begunkov54daa9b2021-10-04 20:03:00 +01001823 s32 res, u32 cflags)
Jens Axboebcda7ba2020-02-23 16:42:51 -07001824{
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01001825 return __io_cqring_fill_event(ctx, user_data, res, cflags);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001826}
1827
Pavel Begunkov54daa9b2021-10-04 20:03:00 +01001828static void io_req_complete_post(struct io_kiocb *req, s32 res,
1829 u32 cflags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001830{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001831 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001832
Jens Axboe79ebeae2021-08-10 15:18:27 -06001833 spin_lock(&ctx->completion_lock);
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01001834 __io_cqring_fill_event(ctx, req->user_data, res, cflags);
Jens Axboec7dae4b2021-02-09 19:53:37 -07001835 /*
1836 * If we're the last reference to this request, add to our locked
1837 * free_list cache.
1838 */
Jens Axboede9b4cc2021-02-24 13:28:27 -07001839 if (req_ref_put_and_test(req)) {
Pavel Begunkov7a612352021-03-09 00:37:59 +00001840 if (req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) {
Pavel Begunkov0756a862021-08-15 10:40:25 +01001841 if (req->flags & IO_DISARM_MASK)
Pavel Begunkov7a612352021-03-09 00:37:59 +00001842 io_disarm_next(req);
1843 if (req->link) {
1844 io_req_task_queue(req->link);
1845 req->link = NULL;
1846 }
1847 }
Pavel Begunkovab409402021-10-09 23:14:41 +01001848 io_req_put_rsrc(req, ctx);
Jens Axboec7dae4b2021-02-09 19:53:37 -07001849 io_dismantle_req(req);
1850 io_put_task(req->task, 1);
Pavel Begunkovc2b6c6b2021-09-24 21:59:47 +01001851 wq_list_add_head(&req->comp_list, &ctx->locked_free_list);
Pavel Begunkovd0acdee2021-05-16 22:58:12 +01001852 ctx->locked_free_nr++;
Pavel Begunkov180f8292021-03-14 20:57:09 +00001853 }
Pavel Begunkov7a612352021-03-09 00:37:59 +00001854 io_commit_cqring(ctx);
Jens Axboe79ebeae2021-08-10 15:18:27 -06001855 spin_unlock(&ctx->completion_lock);
Pavel Begunkova3f349072021-09-15 12:04:20 +01001856 io_cqring_ev_posted(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001857}
1858
Pavel Begunkov54daa9b2021-10-04 20:03:00 +01001859static inline void io_req_complete_state(struct io_kiocb *req, s32 res,
1860 u32 cflags)
Jens Axboebcda7ba2020-02-23 16:42:51 -07001861{
Pavel Begunkova38d68d2021-01-19 13:32:45 +00001862 req->result = res;
Pavel Begunkovd17e56e2021-10-04 20:02:57 +01001863 req->cflags = cflags;
Pavel Begunkove342c802021-01-19 13:32:47 +00001864 req->flags |= REQ_F_COMPLETE_INLINE;
Jens Axboee1e16092020-06-22 09:17:17 -06001865}
Jens Axboe2b188cc2019-01-07 10:46:33 -07001866
Pavel Begunkov889fca72021-02-10 00:03:09 +00001867static inline void __io_req_complete(struct io_kiocb *req, unsigned issue_flags,
Pavel Begunkov54daa9b2021-10-04 20:03:00 +01001868 s32 res, u32 cflags)
Pavel Begunkova38d68d2021-01-19 13:32:45 +00001869{
Pavel Begunkov889fca72021-02-10 00:03:09 +00001870 if (issue_flags & IO_URING_F_COMPLETE_DEFER)
1871 io_req_complete_state(req, res, cflags);
Pavel Begunkova38d68d2021-01-19 13:32:45 +00001872 else
Jens Axboec7dae4b2021-02-09 19:53:37 -07001873 io_req_complete_post(req, res, cflags);
Pavel Begunkova38d68d2021-01-19 13:32:45 +00001874}
Jens Axboebcda7ba2020-02-23 16:42:51 -07001875
Pavel Begunkov54daa9b2021-10-04 20:03:00 +01001876static inline void io_req_complete(struct io_kiocb *req, s32 res)
Jens Axboee1e16092020-06-22 09:17:17 -06001877{
Pavel Begunkov889fca72021-02-10 00:03:09 +00001878 __io_req_complete(req, 0, res, 0);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001879}
1880
Pavel Begunkov54daa9b2021-10-04 20:03:00 +01001881static void io_req_complete_failed(struct io_kiocb *req, s32 res)
Pavel Begunkovf41db2732021-02-28 22:35:12 +00001882{
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01001883 req_set_fail(req);
Pavel Begunkovf41db2732021-02-28 22:35:12 +00001884 io_req_complete_post(req, res, 0);
1885}
1886
Pavel Begunkovc6d3d9c2021-08-31 14:13:10 +01001887static void io_req_complete_fail_submit(struct io_kiocb *req)
1888{
1889 /*
1890 * We don't submit, fail them all, for that replace hardlinks with
1891 * normal links. Extra REQ_F_LINK is tolerated.
1892 */
1893 req->flags &= ~REQ_F_HARDLINK;
1894 req->flags |= REQ_F_LINK;
1895 io_req_complete_failed(req, req->result);
1896}
1897
Pavel Begunkov864ea922021-08-09 13:04:08 +01001898/*
1899 * Don't initialise the fields below on every allocation, but do that in
1900 * advance and keep them valid across allocations.
1901 */
1902static void io_preinit_req(struct io_kiocb *req, struct io_ring_ctx *ctx)
1903{
1904 req->ctx = ctx;
1905 req->link = NULL;
1906 req->async_data = NULL;
1907 /* not necessary, but safer to zero */
1908 req->result = 0;
1909}
1910
Pavel Begunkovdac7a092021-03-19 17:22:39 +00001911static void io_flush_cached_locked_reqs(struct io_ring_ctx *ctx,
Pavel Begunkovcd0ca2e2021-08-09 20:18:11 +01001912 struct io_submit_state *state)
Pavel Begunkovdac7a092021-03-19 17:22:39 +00001913{
Jens Axboe79ebeae2021-08-10 15:18:27 -06001914 spin_lock(&ctx->completion_lock);
Pavel Begunkovc2b6c6b2021-09-24 21:59:47 +01001915 wq_list_splice(&ctx->locked_free_list, &state->free_list);
Pavel Begunkovd0acdee2021-05-16 22:58:12 +01001916 ctx->locked_free_nr = 0;
Jens Axboe79ebeae2021-08-10 15:18:27 -06001917 spin_unlock(&ctx->completion_lock);
Pavel Begunkovdac7a092021-03-19 17:22:39 +00001918}
1919
Pavel Begunkovdd78f492021-03-19 17:22:35 +00001920/* Returns true IFF there are requests in the cache */
Jens Axboec7dae4b2021-02-09 19:53:37 -07001921static bool io_flush_cached_reqs(struct io_ring_ctx *ctx)
Pavel Begunkove5d1bc02021-02-10 00:03:23 +00001922{
Jens Axboec7dae4b2021-02-09 19:53:37 -07001923 struct io_submit_state *state = &ctx->submit_state;
Pavel Begunkove5d1bc02021-02-10 00:03:23 +00001924
Jens Axboec7dae4b2021-02-09 19:53:37 -07001925 /*
1926 * If we have more than a batch's worth of requests in our IRQ side
1927 * locked cache, grab the lock and move them over to our submission
1928 * side cache.
1929 */
Pavel Begunkovd0acdee2021-05-16 22:58:12 +01001930 if (READ_ONCE(ctx->locked_free_nr) > IO_COMPL_BATCH)
Pavel Begunkovcd0ca2e2021-08-09 20:18:11 +01001931 io_flush_cached_locked_reqs(ctx, state);
Pavel Begunkovc2b6c6b2021-09-24 21:59:47 +01001932 return !!state->free_list.next;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001933}
1934
Pavel Begunkov5d5901a2021-08-11 19:28:29 +01001935/*
1936 * A request might get retired back into the request caches even before opcode
1937 * handlers and io_issue_sqe() are done with it, e.g. inline completion path.
1938 * Because of that, io_alloc_req() should be called only under ->uring_lock
1939 * and with extra caution to not get a request that is still worked on.
1940 */
Pavel Begunkovc0724812021-10-04 20:02:54 +01001941static __cold bool __io_alloc_req_refill(struct io_ring_ctx *ctx)
Pavel Begunkov5d5901a2021-08-11 19:28:29 +01001942 __must_hold(&ctx->uring_lock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001943{
Pavel Begunkov258b29a2021-02-10 00:03:10 +00001944 struct io_submit_state *state = &ctx->submit_state;
Pavel Begunkov864ea922021-08-09 13:04:08 +01001945 gfp_t gfp = GFP_KERNEL | __GFP_NOWARN;
Pavel Begunkov3ab665b2021-09-24 21:59:45 +01001946 void *reqs[IO_REQ_ALLOC_BATCH];
1947 struct io_kiocb *req;
Pavel Begunkov864ea922021-08-09 13:04:08 +01001948 int ret, i;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001949
Pavel Begunkovc2b6c6b2021-09-24 21:59:47 +01001950 if (likely(state->free_list.next || io_flush_cached_reqs(ctx)))
Pavel Begunkova33ae9c2021-10-04 20:02:49 +01001951 return true;
Jens Axboe2579f912019-01-09 09:10:43 -07001952
Pavel Begunkov3ab665b2021-09-24 21:59:45 +01001953 ret = kmem_cache_alloc_bulk(req_cachep, gfp, ARRAY_SIZE(reqs), reqs);
Pavel Begunkove5d1bc02021-02-10 00:03:23 +00001954
Pavel Begunkov864ea922021-08-09 13:04:08 +01001955 /*
1956 * Bulk alloc is all-or-nothing. If we fail to get a batch,
1957 * retry single alloc to be on the safe side.
1958 */
1959 if (unlikely(ret <= 0)) {
Pavel Begunkov3ab665b2021-09-24 21:59:45 +01001960 reqs[0] = kmem_cache_alloc(req_cachep, gfp);
1961 if (!reqs[0])
Pavel Begunkova33ae9c2021-10-04 20:02:49 +01001962 return false;
Pavel Begunkov864ea922021-08-09 13:04:08 +01001963 ret = 1;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001964 }
Pavel Begunkov864ea922021-08-09 13:04:08 +01001965
Pavel Begunkov37f0e762021-10-04 20:02:53 +01001966 percpu_ref_get_many(&ctx->refs, ret);
Pavel Begunkov3ab665b2021-09-24 21:59:45 +01001967 for (i = 0; i < ret; i++) {
1968 req = reqs[i];
1969
1970 io_preinit_req(req, ctx);
Pavel Begunkovc2b6c6b2021-09-24 21:59:47 +01001971 wq_stack_add_head(&req->comp_list, &state->free_list);
Pavel Begunkov3ab665b2021-09-24 21:59:45 +01001972 }
Pavel Begunkova33ae9c2021-10-04 20:02:49 +01001973 return true;
1974}
1975
1976static inline bool io_alloc_req_refill(struct io_ring_ctx *ctx)
1977{
1978 if (unlikely(!ctx->submit_state.free_list.next))
1979 return __io_alloc_req_refill(ctx);
1980 return true;
1981}
1982
1983static inline struct io_kiocb *io_alloc_req(struct io_ring_ctx *ctx)
1984{
1985 struct io_wq_work_node *node;
1986
1987 node = wq_stack_extract(&ctx->submit_state.free_list);
Pavel Begunkovc2b6c6b2021-09-24 21:59:47 +01001988 return container_of(node, struct io_kiocb, comp_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001989}
1990
Pavel Begunkove1d767f2021-03-19 17:22:43 +00001991static inline void io_put_file(struct file *file)
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001992{
Pavel Begunkove1d767f2021-03-19 17:22:43 +00001993 if (file)
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001994 fput(file);
1995}
1996
Pavel Begunkov6b639522021-09-08 16:40:50 +01001997static inline void io_dismantle_req(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001998{
Pavel Begunkov094bae42021-03-19 17:22:42 +00001999 unsigned int flags = req->flags;
Pavel Begunkov929a3af2020-02-19 00:19:09 +03002000
Pavel Begunkov867f8fa2021-10-04 20:02:58 +01002001 if (unlikely(flags & IO_REQ_CLEAN_FLAGS))
Pavel Begunkov3a0a6902021-04-20 12:03:31 +01002002 io_clean_op(req);
Pavel Begunkove1d767f2021-03-19 17:22:43 +00002003 if (!(flags & REQ_F_FIXED_FILE))
2004 io_put_file(req->file);
Pavel Begunkove6543a82020-06-28 12:52:30 +03002005}
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03002006
Pavel Begunkovc0724812021-10-04 20:02:54 +01002007static __cold void __io_free_req(struct io_kiocb *req)
Pavel Begunkove6543a82020-06-28 12:52:30 +03002008{
Jens Axboe51a4cc12020-08-10 10:55:56 -06002009 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovecfc5172020-06-29 13:13:03 +03002010
Pavel Begunkovab409402021-10-09 23:14:41 +01002011 io_req_put_rsrc(req, ctx);
Pavel Begunkov216578e2020-10-13 09:44:00 +01002012 io_dismantle_req(req);
Pavel Begunkov7c660732021-01-25 11:42:21 +00002013 io_put_task(req->task, 1);
Pavel Begunkove6543a82020-06-28 12:52:30 +03002014
Jens Axboe79ebeae2021-08-10 15:18:27 -06002015 spin_lock(&ctx->completion_lock);
Pavel Begunkovc2b6c6b2021-09-24 21:59:47 +01002016 wq_list_add_head(&req->comp_list, &ctx->locked_free_list);
Pavel Begunkovc34b0252021-08-09 20:18:08 +01002017 ctx->locked_free_nr++;
Jens Axboe79ebeae2021-08-10 15:18:27 -06002018 spin_unlock(&ctx->completion_lock);
Jens Axboee65ef562019-03-12 10:16:44 -06002019}
2020
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002021static inline void io_remove_next_linked(struct io_kiocb *req)
2022{
2023 struct io_kiocb *nxt = req->link;
2024
2025 req->link = nxt->link;
2026 nxt->link = NULL;
2027}
2028
Pavel Begunkov33cc89a2021-03-09 00:37:58 +00002029static bool io_kill_linked_timeout(struct io_kiocb *req)
2030 __must_hold(&req->ctx->completion_lock)
Jens Axboe89b263f2021-08-10 15:14:18 -06002031 __must_hold(&req->ctx->timeout_lock)
Jens Axboe9e645e112019-05-10 16:07:28 -06002032{
Pavel Begunkov33cc89a2021-03-09 00:37:58 +00002033 struct io_kiocb *link = req->link;
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002034
Pavel Begunkovb97e7362021-08-15 10:40:23 +01002035 if (link && link->opcode == IORING_OP_LINK_TIMEOUT) {
Pavel Begunkovc9abd7a2020-10-22 16:43:11 +01002036 struct io_timeout_data *io = link->async_data;
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03002037
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002038 io_remove_next_linked(req);
Pavel Begunkov90cd7e42020-10-27 23:25:36 +00002039 link->timeout.head = NULL;
Pavel Begunkovfd9c7bc2021-04-13 02:58:42 +01002040 if (hrtimer_try_to_cancel(&io->timer) != -1) {
Pavel Begunkovef9dd632021-08-28 19:54:38 -06002041 list_del(&link->timeout.list);
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01002042 io_cqring_fill_event(link->ctx, link->user_data,
2043 -ECANCELED, 0);
Pavel Begunkov91c2f692021-08-11 19:28:28 +01002044 io_put_req_deferred(link);
Pavel Begunkovd4729fb2021-03-22 01:58:24 +00002045 return true;
Pavel Begunkovc9abd7a2020-10-22 16:43:11 +01002046 }
2047 }
Pavel Begunkovd4729fb2021-03-22 01:58:24 +00002048 return false;
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03002049}
2050
Pavel Begunkovd148ca42020-10-18 10:17:39 +01002051static void io_fail_links(struct io_kiocb *req)
Pavel Begunkov33cc89a2021-03-09 00:37:58 +00002052 __must_hold(&req->ctx->completion_lock)
Jens Axboe9e645e112019-05-10 16:07:28 -06002053{
Pavel Begunkov33cc89a2021-03-09 00:37:58 +00002054 struct io_kiocb *nxt, *link = req->link;
Jens Axboe9e645e112019-05-10 16:07:28 -06002055
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002056 req->link = NULL;
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002057 while (link) {
Hao Xua8295b92021-08-27 17:46:09 +08002058 long res = -ECANCELED;
2059
2060 if (link->flags & REQ_F_FAIL)
2061 res = link->result;
2062
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002063 nxt = link->link;
2064 link->link = NULL;
2065
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02002066 trace_io_uring_fail_link(req, link);
Hao Xua8295b92021-08-27 17:46:09 +08002067 io_cqring_fill_event(link->ctx, link->user_data, res, 0);
Pavel Begunkov91c2f692021-08-11 19:28:28 +01002068 io_put_req_deferred(link);
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002069 link = nxt;
Jens Axboe9e645e112019-05-10 16:07:28 -06002070 }
Pavel Begunkov33cc89a2021-03-09 00:37:58 +00002071}
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03002072
Pavel Begunkov33cc89a2021-03-09 00:37:58 +00002073static bool io_disarm_next(struct io_kiocb *req)
2074 __must_hold(&req->ctx->completion_lock)
2075{
2076 bool posted = false;
2077
Pavel Begunkov0756a862021-08-15 10:40:25 +01002078 if (req->flags & REQ_F_ARM_LTIMEOUT) {
2079 struct io_kiocb *link = req->link;
2080
Pavel Begunkov906c6ca2021-08-15 10:40:26 +01002081 req->flags &= ~REQ_F_ARM_LTIMEOUT;
Pavel Begunkov0756a862021-08-15 10:40:25 +01002082 if (link && link->opcode == IORING_OP_LINK_TIMEOUT) {
2083 io_remove_next_linked(req);
2084 io_cqring_fill_event(link->ctx, link->user_data,
2085 -ECANCELED, 0);
2086 io_put_req_deferred(link);
2087 posted = true;
2088 }
2089 } else if (req->flags & REQ_F_LINK_TIMEOUT) {
Jens Axboe89b263f2021-08-10 15:14:18 -06002090 struct io_ring_ctx *ctx = req->ctx;
2091
2092 spin_lock_irq(&ctx->timeout_lock);
Pavel Begunkov33cc89a2021-03-09 00:37:58 +00002093 posted = io_kill_linked_timeout(req);
Jens Axboe89b263f2021-08-10 15:14:18 -06002094 spin_unlock_irq(&ctx->timeout_lock);
2095 }
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01002096 if (unlikely((req->flags & REQ_F_FAIL) &&
Pavel Begunkove4335ed2021-04-11 01:46:39 +01002097 !(req->flags & REQ_F_HARDLINK))) {
Pavel Begunkov33cc89a2021-03-09 00:37:58 +00002098 posted |= (req->link != NULL);
2099 io_fail_links(req);
2100 }
2101 return posted;
Jens Axboe9e645e112019-05-10 16:07:28 -06002102}
2103
Pavel Begunkovd81499b2021-09-08 16:40:51 +01002104static void __io_req_find_next_prep(struct io_kiocb *req)
2105{
2106 struct io_ring_ctx *ctx = req->ctx;
2107 bool posted;
2108
2109 spin_lock(&ctx->completion_lock);
2110 posted = io_disarm_next(req);
2111 if (posted)
2112 io_commit_cqring(req->ctx);
2113 spin_unlock(&ctx->completion_lock);
2114 if (posted)
2115 io_cqring_ev_posted(ctx);
2116}
2117
2118static inline struct io_kiocb *io_req_find_next(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -06002119{
Pavel Begunkov33cc89a2021-03-09 00:37:58 +00002120 struct io_kiocb *nxt;
Jens Axboe2665abf2019-11-05 12:40:47 -07002121
Pavel Begunkovd81499b2021-09-08 16:40:51 +01002122 if (likely(!(req->flags & (REQ_F_LINK|REQ_F_HARDLINK))))
2123 return NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06002124 /*
2125 * If LINK is set, we have dependent requests in this chain. If we
2126 * didn't fail this request, queue the first one up, moving any other
2127 * dependencies to the next request. In case of failure, fail the rest
2128 * of the chain.
2129 */
Pavel Begunkovd81499b2021-09-08 16:40:51 +01002130 if (unlikely(req->flags & IO_DISARM_MASK))
2131 __io_req_find_next_prep(req);
Pavel Begunkov33cc89a2021-03-09 00:37:58 +00002132 nxt = req->link;
2133 req->link = NULL;
2134 return nxt;
Jens Axboe4d7dd462019-11-20 13:03:52 -07002135}
Jens Axboe2665abf2019-11-05 12:40:47 -07002136
Pavel Begunkovf237c302021-08-18 12:42:46 +01002137static void ctx_flush_and_put(struct io_ring_ctx *ctx, bool *locked)
Pavel Begunkov2c323952021-02-28 22:04:53 +00002138{
2139 if (!ctx)
2140 return;
Pavel Begunkovf237c302021-08-18 12:42:46 +01002141 if (*locked) {
Pavel Begunkovc4501782021-09-08 16:40:52 +01002142 io_submit_flush_completions(ctx);
Pavel Begunkov2c323952021-02-28 22:04:53 +00002143 mutex_unlock(&ctx->uring_lock);
Pavel Begunkovf237c302021-08-18 12:42:46 +01002144 *locked = false;
Pavel Begunkov2c323952021-02-28 22:04:53 +00002145 }
2146 percpu_ref_put(&ctx->refs);
2147}
2148
Jens Axboe7cbf1722021-02-10 00:03:20 +00002149static void tctx_task_work(struct callback_head *cb)
2150{
Pavel Begunkovf237c302021-08-18 12:42:46 +01002151 bool locked = false;
Pavel Begunkovebd0df22021-06-17 18:14:07 +01002152 struct io_ring_ctx *ctx = NULL;
Pavel Begunkov3f184072021-06-17 18:14:06 +01002153 struct io_uring_task *tctx = container_of(cb, struct io_uring_task,
2154 task_work);
Jens Axboe7cbf1722021-02-10 00:03:20 +00002155
Pavel Begunkov16f72072021-06-17 18:14:09 +01002156 while (1) {
Pavel Begunkov3f184072021-06-17 18:14:06 +01002157 struct io_wq_work_node *node;
2158
Pavel Begunkovc4501782021-09-08 16:40:52 +01002159 if (!tctx->task_list.first && locked)
Pavel Begunkov8d4ad412021-09-02 00:38:23 +01002160 io_submit_flush_completions(ctx);
2161
Pavel Begunkov3f184072021-06-17 18:14:06 +01002162 spin_lock_irq(&tctx->task_lock);
Pavel Begunkovc6538be2021-06-17 18:14:08 +01002163 node = tctx->task_list.first;
Pavel Begunkov3f184072021-06-17 18:14:06 +01002164 INIT_WQ_LIST(&tctx->task_list);
Pavel Begunkov6294f362021-08-10 17:53:55 +01002165 if (!node)
2166 tctx->task_running = false;
Pavel Begunkov3f184072021-06-17 18:14:06 +01002167 spin_unlock_irq(&tctx->task_lock);
Pavel Begunkov6294f362021-08-10 17:53:55 +01002168 if (!node)
2169 break;
Pavel Begunkov3f184072021-06-17 18:14:06 +01002170
Pavel Begunkov6294f362021-08-10 17:53:55 +01002171 do {
Pavel Begunkov3f184072021-06-17 18:14:06 +01002172 struct io_wq_work_node *next = node->next;
2173 struct io_kiocb *req = container_of(node, struct io_kiocb,
2174 io_task_work.node);
2175
2176 if (req->ctx != ctx) {
Pavel Begunkovf237c302021-08-18 12:42:46 +01002177 ctx_flush_and_put(ctx, &locked);
Pavel Begunkov3f184072021-06-17 18:14:06 +01002178 ctx = req->ctx;
Pavel Begunkov126180b2021-08-18 12:42:47 +01002179 /* if not contended, grab and improve batching */
2180 locked = mutex_trylock(&ctx->uring_lock);
Pavel Begunkov3f184072021-06-17 18:14:06 +01002181 percpu_ref_get(&ctx->refs);
2182 }
Pavel Begunkovf237c302021-08-18 12:42:46 +01002183 req->io_task_work.func(req, &locked);
Pavel Begunkov3f184072021-06-17 18:14:06 +01002184 node = next;
Pavel Begunkov6294f362021-08-10 17:53:55 +01002185 } while (node);
2186
Jens Axboe7cbf1722021-02-10 00:03:20 +00002187 cond_resched();
Pavel Begunkov3f184072021-06-17 18:14:06 +01002188 }
Pavel Begunkovebd0df22021-06-17 18:14:07 +01002189
Pavel Begunkovf237c302021-08-18 12:42:46 +01002190 ctx_flush_and_put(ctx, &locked);
Jens Axboe7cbf1722021-02-10 00:03:20 +00002191}
2192
Pavel Begunkove09ee512021-07-01 13:26:05 +01002193static void io_req_task_work_add(struct io_kiocb *req)
Jens Axboe7cbf1722021-02-10 00:03:20 +00002194{
Pavel Begunkovc15b79d2021-03-19 17:22:44 +00002195 struct task_struct *tsk = req->task;
Jens Axboe7cbf1722021-02-10 00:03:20 +00002196 struct io_uring_task *tctx = tsk->io_uring;
Pavel Begunkovc15b79d2021-03-19 17:22:44 +00002197 enum task_work_notify_mode notify;
Pavel Begunkove09ee512021-07-01 13:26:05 +01002198 struct io_wq_work_node *node;
Jens Axboe0b81e802021-02-16 10:33:53 -07002199 unsigned long flags;
Pavel Begunkov6294f362021-08-10 17:53:55 +01002200 bool running;
Jens Axboe7cbf1722021-02-10 00:03:20 +00002201
2202 WARN_ON_ONCE(!tctx);
2203
Jens Axboe0b81e802021-02-16 10:33:53 -07002204 spin_lock_irqsave(&tctx->task_lock, flags);
Jens Axboe7cbf1722021-02-10 00:03:20 +00002205 wq_list_add_tail(&req->io_task_work.node, &tctx->task_list);
Pavel Begunkov6294f362021-08-10 17:53:55 +01002206 running = tctx->task_running;
2207 if (!running)
2208 tctx->task_running = true;
Jens Axboe0b81e802021-02-16 10:33:53 -07002209 spin_unlock_irqrestore(&tctx->task_lock, flags);
Jens Axboe7cbf1722021-02-10 00:03:20 +00002210
2211 /* task_work already pending, we're done */
Pavel Begunkov6294f362021-08-10 17:53:55 +01002212 if (running)
Pavel Begunkove09ee512021-07-01 13:26:05 +01002213 return;
Jens Axboe7cbf1722021-02-10 00:03:20 +00002214
Pavel Begunkovc15b79d2021-03-19 17:22:44 +00002215 /*
2216 * SQPOLL kernel thread doesn't need notification, just a wakeup. For
2217 * all other cases, use TWA_SIGNAL unconditionally to ensure we're
2218 * processing task_work. There's no reliable way to tell if TWA_RESUME
2219 * will do the job.
2220 */
2221 notify = (req->ctx->flags & IORING_SETUP_SQPOLL) ? TWA_NONE : TWA_SIGNAL;
Pavel Begunkovd97ec622021-09-08 16:40:53 +01002222 if (likely(!task_work_add(tsk, &tctx->task_work, notify))) {
2223 if (notify == TWA_NONE)
2224 wake_up_process(tsk);
Pavel Begunkove09ee512021-07-01 13:26:05 +01002225 return;
Pavel Begunkovc15b79d2021-03-19 17:22:44 +00002226 }
Pavel Begunkov2215bed2021-08-09 13:04:06 +01002227
Pavel Begunkove09ee512021-07-01 13:26:05 +01002228 spin_lock_irqsave(&tctx->task_lock, flags);
Pavel Begunkov6294f362021-08-10 17:53:55 +01002229 tctx->task_running = false;
Pavel Begunkove09ee512021-07-01 13:26:05 +01002230 node = tctx->task_list.first;
2231 INIT_WQ_LIST(&tctx->task_list);
2232 spin_unlock_irqrestore(&tctx->task_lock, flags);
Jens Axboe7cbf1722021-02-10 00:03:20 +00002233
Pavel Begunkove09ee512021-07-01 13:26:05 +01002234 while (node) {
2235 req = container_of(node, struct io_kiocb, io_task_work.node);
2236 node = node->next;
2237 if (llist_add(&req->io_task_work.fallback_node,
2238 &req->ctx->fallback_llist))
2239 schedule_delayed_work(&req->ctx->fallback_work, 1);
2240 }
Pavel Begunkoveab30c42021-01-19 13:32:42 +00002241}
2242
Pavel Begunkovf237c302021-08-18 12:42:46 +01002243static void io_req_task_cancel(struct io_kiocb *req, bool *locked)
Jens Axboec40f6372020-06-25 15:39:59 -06002244{
Jens Axboe87ceb6a2020-09-14 08:20:12 -06002245 struct io_ring_ctx *ctx = req->ctx;
Jens Axboec40f6372020-06-25 15:39:59 -06002246
Pavel Begunkovb18a1a42021-08-25 20:51:39 +01002247 /* not needed for normal modes, but SQPOLL depends on it */
Pavel Begunkovf237c302021-08-18 12:42:46 +01002248 io_tw_lock(ctx, locked);
Pavel Begunkov25935532021-03-19 17:22:40 +00002249 io_req_complete_failed(req, req->result);
Jens Axboec40f6372020-06-25 15:39:59 -06002250}
2251
Pavel Begunkovf237c302021-08-18 12:42:46 +01002252static void io_req_task_submit(struct io_kiocb *req, bool *locked)
Jens Axboec40f6372020-06-25 15:39:59 -06002253{
2254 struct io_ring_ctx *ctx = req->ctx;
2255
Pavel Begunkovf237c302021-08-18 12:42:46 +01002256 io_tw_lock(ctx, locked);
Jens Axboe316319e2021-08-19 09:41:42 -06002257 /* req->task == current here, checking PF_EXITING is safe */
Pavel Begunkovaf066f32021-08-09 13:04:19 +01002258 if (likely(!(req->task->flags & PF_EXITING)))
Pavel Begunkovc5eef2b2021-02-10 00:03:22 +00002259 __io_queue_sqe(req);
Pavel Begunkov81b6d052021-01-04 20:36:35 +00002260 else
Pavel Begunkov25935532021-03-19 17:22:40 +00002261 io_req_complete_failed(req, -EFAULT);
Jens Axboe9e645e112019-05-10 16:07:28 -06002262}
2263
Pavel Begunkova3df76982021-02-18 22:32:52 +00002264static void io_req_task_queue_fail(struct io_kiocb *req, int ret)
2265{
Pavel Begunkova3df76982021-02-18 22:32:52 +00002266 req->result = ret;
Pavel Begunkov5b0a6ac2021-06-30 21:54:04 +01002267 req->io_task_work.func = io_req_task_cancel;
Pavel Begunkove09ee512021-07-01 13:26:05 +01002268 io_req_task_work_add(req);
Pavel Begunkova3df76982021-02-18 22:32:52 +00002269}
2270
Pavel Begunkov2c4b8eb2021-02-28 22:35:10 +00002271static void io_req_task_queue(struct io_kiocb *req)
2272{
Pavel Begunkov5b0a6ac2021-06-30 21:54:04 +01002273 req->io_task_work.func = io_req_task_submit;
Pavel Begunkove09ee512021-07-01 13:26:05 +01002274 io_req_task_work_add(req);
Pavel Begunkov2c4b8eb2021-02-28 22:35:10 +00002275}
2276
Jens Axboe773af692021-07-27 10:25:55 -06002277static void io_req_task_queue_reissue(struct io_kiocb *req)
2278{
2279 req->io_task_work.func = io_queue_async_work;
2280 io_req_task_work_add(req);
2281}
2282
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002283static inline void io_queue_next(struct io_kiocb *req)
Jackie Liuc69f8db2019-11-09 11:00:08 +08002284{
Pavel Begunkov9b5f7bd92020-06-29 13:13:00 +03002285 struct io_kiocb *nxt = io_req_find_next(req);
Pavel Begunkov944e58b2019-11-21 23:21:01 +03002286
Pavel Begunkov906a8c32020-06-27 14:04:55 +03002287 if (nxt)
2288 io_req_task_queue(nxt);
Jackie Liuc69f8db2019-11-09 11:00:08 +08002289}
2290
Jens Axboe9e645e112019-05-10 16:07:28 -06002291static void io_free_req(struct io_kiocb *req)
2292{
Pavel Begunkovc3524382020-06-28 12:52:32 +03002293 io_queue_next(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06002294 __io_free_req(req);
Jens Axboee65ef562019-03-12 10:16:44 -06002295}
2296
Pavel Begunkovf237c302021-08-18 12:42:46 +01002297static void io_free_req_work(struct io_kiocb *req, bool *locked)
2298{
2299 io_free_req(req);
2300}
2301
Pavel Begunkov3aa83bf2021-09-24 21:59:50 +01002302static void io_free_batch_list(struct io_ring_ctx *ctx,
Pavel Begunkov1cce17a2021-09-24 21:59:54 +01002303 struct io_wq_work_node *node)
Pavel Begunkov3aa83bf2021-09-24 21:59:50 +01002304 __must_hold(&ctx->uring_lock)
2305{
Pavel Begunkovd4b7a5e2021-09-24 21:59:53 +01002306 struct task_struct *task = NULL;
Pavel Begunkov37f0e762021-10-04 20:02:53 +01002307 int task_refs = 0;
Pavel Begunkov3aa83bf2021-09-24 21:59:50 +01002308
Pavel Begunkov3aa83bf2021-09-24 21:59:50 +01002309 do {
2310 struct io_kiocb *req = container_of(node, struct io_kiocb,
2311 comp_list);
2312
Pavel Begunkovdef77ac2021-10-12 15:02:14 +01002313 if (unlikely(req->flags & REQ_F_REFCOUNT)) {
Pavel Begunkovc1e53a62021-10-04 20:02:55 +01002314 node = req->comp_list.next;
Pavel Begunkovdef77ac2021-10-12 15:02:14 +01002315 if (!req_ref_put_and_test(req))
2316 continue;
Pavel Begunkovc1e53a62021-10-04 20:02:55 +01002317 }
Pavel Begunkovd4b7a5e2021-09-24 21:59:53 +01002318
Pavel Begunkovab409402021-10-09 23:14:41 +01002319 io_req_put_rsrc_locked(req, ctx);
Pavel Begunkovd4b7a5e2021-09-24 21:59:53 +01002320 io_queue_next(req);
2321 io_dismantle_req(req);
2322
2323 if (req->task != task) {
2324 if (task)
2325 io_put_task(task, task_refs);
2326 task = req->task;
2327 task_refs = 0;
2328 }
2329 task_refs++;
Pavel Begunkovc1e53a62021-10-04 20:02:55 +01002330 node = req->comp_list.next;
Pavel Begunkovd4b7a5e2021-09-24 21:59:53 +01002331 wq_stack_add_head(&req->comp_list, &ctx->submit_state.free_list);
Pavel Begunkov3aa83bf2021-09-24 21:59:50 +01002332 } while (node);
Pavel Begunkovd4b7a5e2021-09-24 21:59:53 +01002333
Pavel Begunkovd4b7a5e2021-09-24 21:59:53 +01002334 if (task)
2335 io_put_task(task, task_refs);
Pavel Begunkov3aa83bf2021-09-24 21:59:50 +01002336}
2337
Pavel Begunkovc4501782021-09-08 16:40:52 +01002338static void __io_submit_flush_completions(struct io_ring_ctx *ctx)
Jens Axboea141dd82021-08-12 12:48:34 -06002339 __must_hold(&ctx->uring_lock)
Pavel Begunkov905c1722021-02-10 00:03:14 +00002340{
Pavel Begunkov6f33b0b2021-09-24 21:59:44 +01002341 struct io_wq_work_node *node, *prev;
Pavel Begunkovcd0ca2e2021-08-09 20:18:11 +01002342 struct io_submit_state *state = &ctx->submit_state;
Pavel Begunkov905c1722021-02-10 00:03:14 +00002343
Jens Axboe79ebeae2021-08-10 15:18:27 -06002344 spin_lock(&ctx->completion_lock);
Pavel Begunkov6f33b0b2021-09-24 21:59:44 +01002345 wq_list_for_each(node, prev, &state->compl_reqs) {
2346 struct io_kiocb *req = container_of(node, struct io_kiocb,
2347 comp_list);
Pavel Begunkov5182ed22021-06-26 21:40:48 +01002348
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01002349 __io_cqring_fill_event(ctx, req->user_data, req->result,
Pavel Begunkovd17e56e2021-10-04 20:02:57 +01002350 req->cflags);
Pavel Begunkov905c1722021-02-10 00:03:14 +00002351 }
2352 io_commit_cqring(ctx);
Jens Axboe79ebeae2021-08-10 15:18:27 -06002353 spin_unlock(&ctx->completion_lock);
Pavel Begunkov905c1722021-02-10 00:03:14 +00002354 io_cqring_ev_posted(ctx);
Pavel Begunkov5182ed22021-06-26 21:40:48 +01002355
Pavel Begunkov1cce17a2021-09-24 21:59:54 +01002356 io_free_batch_list(ctx, state->compl_reqs.first);
Pavel Begunkov6f33b0b2021-09-24 21:59:44 +01002357 INIT_WQ_LIST(&state->compl_reqs);
Pavel Begunkov7a743e22020-03-03 21:33:13 +03002358}
2359
Jens Axboeba816ad2019-09-28 11:36:45 -06002360/*
2361 * Drop reference to request, return next in chain (if there is one) if this
2362 * was the last reference to this request.
2363 */
Pavel Begunkov0d850352021-03-19 17:22:37 +00002364static inline struct io_kiocb *io_put_req_find_next(struct io_kiocb *req)
Jens Axboee65ef562019-03-12 10:16:44 -06002365{
Pavel Begunkov9b5f7bd92020-06-29 13:13:00 +03002366 struct io_kiocb *nxt = NULL;
2367
Jens Axboede9b4cc2021-02-24 13:28:27 -07002368 if (req_ref_put_and_test(req)) {
Pavel Begunkov9b5f7bd92020-06-29 13:13:00 +03002369 nxt = io_req_find_next(req);
Jens Axboe4d7dd462019-11-20 13:03:52 -07002370 __io_free_req(req);
Jens Axboe2a44f462020-02-25 13:25:41 -07002371 }
Pavel Begunkov9b5f7bd92020-06-29 13:13:00 +03002372 return nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002373}
2374
Pavel Begunkov0d850352021-03-19 17:22:37 +00002375static inline void io_put_req(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002376{
Jens Axboede9b4cc2021-02-24 13:28:27 -07002377 if (req_ref_put_and_test(req))
Jens Axboedef596e2019-01-09 08:59:42 -07002378 io_free_req(req);
2379}
2380
Pavel Begunkov91c2f692021-08-11 19:28:28 +01002381static inline void io_put_req_deferred(struct io_kiocb *req)
Pavel Begunkov216578e2020-10-13 09:44:00 +01002382{
Pavel Begunkov91c2f692021-08-11 19:28:28 +01002383 if (req_ref_put_and_test(req)) {
Pavel Begunkovf237c302021-08-18 12:42:46 +01002384 req->io_task_work.func = io_free_req_work;
Pavel Begunkov543af3a2021-08-09 13:04:15 +01002385 io_req_task_work_add(req);
2386 }
Pavel Begunkov216578e2020-10-13 09:44:00 +01002387}
2388
Pavel Begunkov6c503152021-01-04 20:36:36 +00002389static unsigned io_cqring_events(struct io_ring_ctx *ctx)
Jens Axboea3a0e432019-08-20 11:03:11 -06002390{
2391 /* See comment at the top of this file */
2392 smp_rmb();
Pavel Begunkove23de152020-12-17 00:24:37 +00002393 return __io_cqring_events(ctx);
Jens Axboea3a0e432019-08-20 11:03:11 -06002394}
2395
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03002396static inline unsigned int io_sqring_entries(struct io_ring_ctx *ctx)
2397{
2398 struct io_rings *rings = ctx->rings;
2399
2400 /* make sure SQ entry isn't read before tail */
2401 return smp_load_acquire(&rings->sq.tail) - ctx->cached_sq_head;
2402}
2403
Pavel Begunkov8ff069b2020-07-16 23:28:04 +03002404static unsigned int io_put_kbuf(struct io_kiocb *req, struct io_buffer *kbuf)
Jens Axboee94f1412019-12-19 12:06:02 -07002405{
Pavel Begunkov8ff069b2020-07-16 23:28:04 +03002406 unsigned int cflags;
Jens Axboee94f1412019-12-19 12:06:02 -07002407
Jens Axboebcda7ba2020-02-23 16:42:51 -07002408 cflags = kbuf->bid << IORING_CQE_BUFFER_SHIFT;
2409 cflags |= IORING_CQE_F_BUFFER;
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03002410 req->flags &= ~REQ_F_BUFFER_SELECTED;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002411 kfree(kbuf);
2412 return cflags;
2413}
2414
Pavel Begunkov8ff069b2020-07-16 23:28:04 +03002415static inline unsigned int io_put_rw_kbuf(struct io_kiocb *req)
2416{
Pavel Begunkovae421d92021-08-17 20:28:08 +01002417 if (likely(!(req->flags & REQ_F_BUFFER_SELECTED)))
2418 return 0;
Pavel Begunkov30d51dd2021-10-01 18:07:03 +01002419 return io_put_kbuf(req, req->kbuf);
Pavel Begunkov8ff069b2020-07-16 23:28:04 +03002420}
2421
Jens Axboe4c6e2772020-07-01 11:29:10 -06002422static inline bool io_run_task_work(void)
2423{
Nadav Amitef98eb02021-08-07 17:13:41 -07002424 if (test_thread_flag(TIF_NOTIFY_SIGNAL) || current->task_works) {
Jens Axboe4c6e2772020-07-01 11:29:10 -06002425 __set_current_state(TASK_RUNNING);
Nadav Amitef98eb02021-08-07 17:13:41 -07002426 tracehook_notify_signal();
Jens Axboe4c6e2772020-07-01 11:29:10 -06002427 return true;
2428 }
2429
2430 return false;
2431}
2432
Pavel Begunkov5ba3c872021-09-24 21:59:43 +01002433static int io_do_iopoll(struct io_ring_ctx *ctx, bool force_nonspin)
Jens Axboedef596e2019-01-09 08:59:42 -07002434{
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01002435 struct io_wq_work_node *pos, *start, *prev;
Christoph Hellwigd729cf92021-10-12 13:12:20 +02002436 unsigned int poll_flags = BLK_POLL_NOSLEEP;
Jens Axboeb688f112021-10-12 09:28:46 -06002437 DEFINE_IO_COMP_BATCH(iob);
Pavel Begunkov5ba3c872021-09-24 21:59:43 +01002438 int nr_events = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07002439
2440 /*
2441 * Only spin for completions if we don't have multiple devices hanging
Pavel Begunkov87a115f2021-09-24 21:59:42 +01002442 * off our complete list.
Jens Axboedef596e2019-01-09 08:59:42 -07002443 */
Pavel Begunkov87a115f2021-09-24 21:59:42 +01002444 if (ctx->poll_multi_queue || force_nonspin)
Christoph Hellwigef99b2d2021-10-12 13:12:19 +02002445 poll_flags |= BLK_POLL_ONESHOT;
Jens Axboedef596e2019-01-09 08:59:42 -07002446
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01002447 wq_list_for_each(pos, start, &ctx->iopoll_list) {
2448 struct io_kiocb *req = container_of(pos, struct io_kiocb, comp_list);
Jens Axboe9adbd452019-12-20 08:45:55 -07002449 struct kiocb *kiocb = &req->rw.kiocb;
Pavel Begunkova2416e12021-08-09 13:04:09 +01002450 int ret;
Jens Axboedef596e2019-01-09 08:59:42 -07002451
2452 /*
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07002453 * Move completed and retryable entries to our local lists.
2454 * If we find a request that requires polling, break out
2455 * and complete those lists first, if we have entries there.
Jens Axboedef596e2019-01-09 08:59:42 -07002456 */
Pavel Begunkove3f721e2021-09-24 21:59:48 +01002457 if (READ_ONCE(req->iopoll_completed))
Jens Axboedef596e2019-01-09 08:59:42 -07002458 break;
2459
Jens Axboeb688f112021-10-12 09:28:46 -06002460 ret = kiocb->ki_filp->f_op->iopoll(kiocb, &iob, poll_flags);
Pavel Begunkova2416e12021-08-09 13:04:09 +01002461 if (unlikely(ret < 0))
2462 return ret;
2463 else if (ret)
Christoph Hellwigef99b2d2021-10-12 13:12:19 +02002464 poll_flags |= BLK_POLL_ONESHOT;
Jens Axboedef596e2019-01-09 08:59:42 -07002465
Pavel Begunkov3aadc232020-07-06 17:59:29 +03002466 /* iopoll may have completed current req */
Jens Axboeb688f112021-10-12 09:28:46 -06002467 if (!rq_list_empty(iob.req_list) ||
Pavel Begunkove3f721e2021-09-24 21:59:48 +01002468 READ_ONCE(req->iopoll_completed))
2469 break;
Jens Axboedef596e2019-01-09 08:59:42 -07002470 }
2471
Jens Axboeb688f112021-10-12 09:28:46 -06002472 if (!rq_list_empty(iob.req_list))
2473 iob.complete(&iob);
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01002474 else if (!pos)
2475 return 0;
2476
2477 prev = start;
2478 wq_list_for_each_resume(pos, prev) {
2479 struct io_kiocb *req = container_of(pos, struct io_kiocb, comp_list);
2480
Pavel Begunkovb3fa03f2021-09-24 21:59:51 +01002481 /* order with io_complete_rw_iopoll(), e.g. ->result updates */
2482 if (!smp_load_acquire(&req->iopoll_completed))
Pavel Begunkove3f721e2021-09-24 21:59:48 +01002483 break;
Pavel Begunkovb3fa03f2021-09-24 21:59:51 +01002484 __io_cqring_fill_event(ctx, req->user_data, req->result,
Pavel Begunkovf5ed3bc2021-09-24 21:59:52 +01002485 io_put_rw_kbuf(req));
Pavel Begunkove3f721e2021-09-24 21:59:48 +01002486 nr_events++;
2487 }
Jens Axboedef596e2019-01-09 08:59:42 -07002488
Pavel Begunkovf5ed3bc2021-09-24 21:59:52 +01002489 if (unlikely(!nr_events))
2490 return 0;
2491
2492 io_commit_cqring(ctx);
2493 io_cqring_ev_posted_iopoll(ctx);
Pavel Begunkov1cce17a2021-09-24 21:59:54 +01002494 pos = start ? start->next : ctx->iopoll_list.first;
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01002495 wq_list_cut(&ctx->iopoll_list, prev, start);
Pavel Begunkov1cce17a2021-09-24 21:59:54 +01002496 io_free_batch_list(ctx, pos);
Pavel Begunkov5ba3c872021-09-24 21:59:43 +01002497 return nr_events;
Jens Axboedef596e2019-01-09 08:59:42 -07002498}
2499
2500/*
Jens Axboedef596e2019-01-09 08:59:42 -07002501 * We can't just wait for polled events to come to us, we have to actively
2502 * find and complete them.
2503 */
Pavel Begunkovc0724812021-10-04 20:02:54 +01002504static __cold void io_iopoll_try_reap_events(struct io_ring_ctx *ctx)
Jens Axboedef596e2019-01-09 08:59:42 -07002505{
2506 if (!(ctx->flags & IORING_SETUP_IOPOLL))
2507 return;
2508
2509 mutex_lock(&ctx->uring_lock);
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01002510 while (!wq_list_empty(&ctx->iopoll_list)) {
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03002511 /* let it sleep and repeat later if can't complete a request */
Pavel Begunkov5ba3c872021-09-24 21:59:43 +01002512 if (io_do_iopoll(ctx, true) == 0)
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03002513 break;
Jens Axboe08f54392019-08-21 22:19:11 -06002514 /*
2515 * Ensure we allow local-to-the-cpu processing to take place,
2516 * in this case we need to ensure that we reap all events.
Pavel Begunkov3fcee5a2020-07-06 17:59:31 +03002517 * Also let task_work, etc. to progress by releasing the mutex
Jens Axboe08f54392019-08-21 22:19:11 -06002518 */
Pavel Begunkov3fcee5a2020-07-06 17:59:31 +03002519 if (need_resched()) {
2520 mutex_unlock(&ctx->uring_lock);
2521 cond_resched();
2522 mutex_lock(&ctx->uring_lock);
2523 }
Jens Axboedef596e2019-01-09 08:59:42 -07002524 }
2525 mutex_unlock(&ctx->uring_lock);
2526}
2527
Pavel Begunkov7668b922020-07-07 16:36:21 +03002528static int io_iopoll_check(struct io_ring_ctx *ctx, long min)
Jens Axboedef596e2019-01-09 08:59:42 -07002529{
Pavel Begunkov7668b922020-07-07 16:36:21 +03002530 unsigned int nr_events = 0;
Pavel Begunkove9979b32021-04-13 02:58:45 +01002531 int ret = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07002532
Xiaoguang Wangc7849be2020-02-22 14:46:05 +08002533 /*
2534 * We disallow the app entering submit/complete with polling, but we
2535 * still need to lock the ring to prevent racing with polled issue
2536 * that got punted to a workqueue.
2537 */
2538 mutex_lock(&ctx->uring_lock);
Pavel Begunkovf39c8a52021-04-13 02:58:46 +01002539 /*
2540 * Don't enter poll loop if we already have events pending.
2541 * If we do, we can potentially be spinning for commands that
2542 * already triggered a CQE (eg in error).
2543 */
Pavel Begunkov5ed7a372021-06-14 23:37:27 +01002544 if (test_bit(0, &ctx->check_cq_overflow))
Pavel Begunkovf39c8a52021-04-13 02:58:46 +01002545 __io_cqring_overflow_flush(ctx, false);
2546 if (io_cqring_events(ctx))
2547 goto out;
Jens Axboedef596e2019-01-09 08:59:42 -07002548 do {
Jens Axboe500f9fb2019-08-19 12:15:59 -06002549 /*
2550 * If a submit got punted to a workqueue, we can have the
2551 * application entering polling for a command before it gets
2552 * issued. That app will hold the uring_lock for the duration
2553 * of the poll right here, so we need to take a breather every
2554 * now and then to ensure that the issue has a chance to add
2555 * the poll to the issued list. Otherwise we can spin here
2556 * forever, while the workqueue is stuck trying to acquire the
2557 * very same mutex.
2558 */
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01002559 if (wq_list_empty(&ctx->iopoll_list)) {
Pavel Begunkov8f487ef2021-07-08 13:37:06 +01002560 u32 tail = ctx->cached_cq_tail;
2561
Jens Axboe500f9fb2019-08-19 12:15:59 -06002562 mutex_unlock(&ctx->uring_lock);
Jens Axboe4c6e2772020-07-01 11:29:10 -06002563 io_run_task_work();
Jens Axboe500f9fb2019-08-19 12:15:59 -06002564 mutex_lock(&ctx->uring_lock);
Pavel Begunkove9979b32021-04-13 02:58:45 +01002565
Pavel Begunkov8f487ef2021-07-08 13:37:06 +01002566 /* some requests don't go through iopoll_list */
2567 if (tail != ctx->cached_cq_tail ||
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01002568 wq_list_empty(&ctx->iopoll_list))
Pavel Begunkove9979b32021-04-13 02:58:45 +01002569 break;
Jens Axboe500f9fb2019-08-19 12:15:59 -06002570 }
Pavel Begunkov5ba3c872021-09-24 21:59:43 +01002571 ret = io_do_iopoll(ctx, !min);
2572 if (ret < 0)
2573 break;
2574 nr_events += ret;
2575 ret = 0;
2576 } while (nr_events < min && !need_resched());
Pavel Begunkovf39c8a52021-04-13 02:58:46 +01002577out:
Jens Axboe500f9fb2019-08-19 12:15:59 -06002578 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07002579 return ret;
2580}
2581
Jens Axboe491381ce2019-10-17 09:20:46 -06002582static void kiocb_end_write(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002583{
Jens Axboe491381ce2019-10-17 09:20:46 -06002584 /*
2585 * Tell lockdep we inherited freeze protection from submission
2586 * thread.
2587 */
2588 if (req->flags & REQ_F_ISREG) {
Pavel Begunkov1c986792021-03-22 01:58:31 +00002589 struct super_block *sb = file_inode(req->file)->i_sb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002590
Pavel Begunkov1c986792021-03-22 01:58:31 +00002591 __sb_writers_acquired(sb, SB_FREEZE_WRITE);
2592 sb_end_write(sb);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002593 }
2594}
2595
Jens Axboeb63534c2020-06-04 11:28:00 -06002596#ifdef CONFIG_BLOCK
Pavel Begunkovdc2a6e92021-01-19 13:32:35 +00002597static bool io_resubmit_prep(struct io_kiocb *req)
Jens Axboeb63534c2020-06-04 11:28:00 -06002598{
Pavel Begunkovab454432021-03-22 01:58:33 +00002599 struct io_async_rw *rw = req->async_data;
Jens Axboeb63534c2020-06-04 11:28:00 -06002600
Pavel Begunkovd886e182021-10-04 20:02:56 +01002601 if (!req_has_async_data(req))
Pavel Begunkovab454432021-03-22 01:58:33 +00002602 return !io_req_prep_async(req);
Pavel Begunkov538941e2021-10-14 16:10:15 +01002603 iov_iter_restore(&rw->s.iter, &rw->s.iter_state);
Pavel Begunkovab454432021-03-22 01:58:33 +00002604 return true;
Jens Axboeb63534c2020-06-04 11:28:00 -06002605}
Jens Axboeb63534c2020-06-04 11:28:00 -06002606
Jens Axboe3e6a0d32021-03-01 13:56:00 -07002607static bool io_rw_should_reissue(struct io_kiocb *req)
Jens Axboeb63534c2020-06-04 11:28:00 -06002608{
Jens Axboe355afae2020-09-02 09:30:31 -06002609 umode_t mode = file_inode(req->file)->i_mode;
Jens Axboe3e6a0d32021-03-01 13:56:00 -07002610 struct io_ring_ctx *ctx = req->ctx;
Jens Axboeb63534c2020-06-04 11:28:00 -06002611
Jens Axboe355afae2020-09-02 09:30:31 -06002612 if (!S_ISBLK(mode) && !S_ISREG(mode))
2613 return false;
Jens Axboe3e6a0d32021-03-01 13:56:00 -07002614 if ((req->flags & REQ_F_NOWAIT) || (io_wq_current_is_worker() &&
2615 !(ctx->flags & IORING_SETUP_IOPOLL)))
Jens Axboeb63534c2020-06-04 11:28:00 -06002616 return false;
Jens Axboe7c977a52021-02-23 19:17:35 -07002617 /*
2618 * If ref is dying, we might be running poll reap from the exit work.
2619 * Don't attempt to reissue from that path, just let it fail with
2620 * -EAGAIN.
2621 */
Jens Axboe3e6a0d32021-03-01 13:56:00 -07002622 if (percpu_ref_is_dying(&ctx->refs))
2623 return false;
Jens Axboeef046882021-07-27 10:50:31 -06002624 /*
2625 * Play it safe and assume not safe to re-import and reissue if we're
2626 * not in the original thread group (or in task context).
2627 */
2628 if (!same_thread_group(req->task, current) || !in_task())
2629 return false;
Jens Axboe3e6a0d32021-03-01 13:56:00 -07002630 return true;
2631}
Jens Axboee82ad482021-04-02 19:45:34 -06002632#else
Jens Axboea1ff1e32021-04-12 06:40:02 -06002633static bool io_resubmit_prep(struct io_kiocb *req)
2634{
2635 return false;
2636}
Jens Axboee82ad482021-04-02 19:45:34 -06002637static bool io_rw_should_reissue(struct io_kiocb *req)
2638{
2639 return false;
2640}
Jens Axboe3e6a0d32021-03-01 13:56:00 -07002641#endif
2642
Jens Axboe8ef12ef2021-08-10 15:15:25 -06002643static bool __io_complete_rw_common(struct io_kiocb *req, long res)
Jens Axboea1d7c392020-06-22 11:09:46 -06002644{
Pavel Begunkovb65c1282021-03-22 01:45:59 +00002645 if (req->rw.kiocb.ki_flags & IOCB_WRITE)
2646 kiocb_end_write(req);
Pavel Begunkov258f3a72021-10-14 16:10:14 +01002647 if (unlikely(res != req->result)) {
Pavel Begunkov9532b992021-03-22 01:58:34 +00002648 if ((res == -EAGAIN || res == -EOPNOTSUPP) &&
2649 io_rw_should_reissue(req)) {
2650 req->flags |= REQ_F_REISSUE;
Jens Axboe8ef12ef2021-08-10 15:15:25 -06002651 return true;
Pavel Begunkov9532b992021-03-22 01:58:34 +00002652 }
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01002653 req_set_fail(req);
Jens Axboe8ef12ef2021-08-10 15:15:25 -06002654 req->result = res;
Pavel Begunkov9532b992021-03-22 01:58:34 +00002655 }
Jens Axboe8ef12ef2021-08-10 15:15:25 -06002656 return false;
2657}
2658
Pavel Begunkovf237c302021-08-18 12:42:46 +01002659static void io_req_task_complete(struct io_kiocb *req, bool *locked)
Jens Axboe8ef12ef2021-08-10 15:15:25 -06002660{
Pavel Begunkov126180b2021-08-18 12:42:47 +01002661 unsigned int cflags = io_put_rw_kbuf(req);
Pavel Begunkov54daa9b2021-10-04 20:03:00 +01002662 int res = req->result;
Pavel Begunkov126180b2021-08-18 12:42:47 +01002663
Pavel Begunkovfff4e402021-10-04 20:02:48 +01002664 if (*locked) {
Pavel Begunkov126180b2021-08-18 12:42:47 +01002665 io_req_complete_state(req, res, cflags);
Pavel Begunkovfff4e402021-10-04 20:02:48 +01002666 io_req_add_compl_list(req);
2667 } else {
Pavel Begunkov126180b2021-08-18 12:42:47 +01002668 io_req_complete_post(req, res, cflags);
Pavel Begunkovfff4e402021-10-04 20:02:48 +01002669 }
Jens Axboe8ef12ef2021-08-10 15:15:25 -06002670}
2671
2672static void __io_complete_rw(struct io_kiocb *req, long res, long res2,
2673 unsigned int issue_flags)
2674{
2675 if (__io_complete_rw_common(req, res))
2676 return;
Pavel Begunkov63637852021-09-02 00:38:22 +01002677 __io_req_complete(req, issue_flags, req->result, io_put_rw_kbuf(req));
Jens Axboeba816ad2019-09-28 11:36:45 -06002678}
2679
2680static void io_complete_rw(struct kiocb *kiocb, long res, long res2)
2681{
Jens Axboe9adbd452019-12-20 08:45:55 -07002682 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboeba816ad2019-09-28 11:36:45 -06002683
Jens Axboe8ef12ef2021-08-10 15:15:25 -06002684 if (__io_complete_rw_common(req, res))
2685 return;
2686 req->result = res;
2687 req->io_task_work.func = io_req_task_complete;
2688 io_req_task_work_add(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002689}
2690
Jens Axboedef596e2019-01-09 08:59:42 -07002691static void io_complete_rw_iopoll(struct kiocb *kiocb, long res, long res2)
2692{
Jens Axboe9adbd452019-12-20 08:45:55 -07002693 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboedef596e2019-01-09 08:59:42 -07002694
Jens Axboe491381ce2019-10-17 09:20:46 -06002695 if (kiocb->ki_flags & IOCB_WRITE)
2696 kiocb_end_write(req);
Pavel Begunkov9532b992021-03-22 01:58:34 +00002697 if (unlikely(res != req->result)) {
Pavel Begunkovb66ceaf2021-09-15 11:00:05 +01002698 if (res == -EAGAIN && io_rw_should_reissue(req)) {
2699 req->flags |= REQ_F_REISSUE;
2700 return;
Pavel Begunkov9532b992021-03-22 01:58:34 +00002701 }
Pavel Begunkov258f3a72021-10-14 16:10:14 +01002702 req->result = res;
Pavel Begunkov8c130822021-03-22 01:58:32 +00002703 }
Xiaoguang Wangbbde0172020-06-16 02:06:38 +08002704
Pavel Begunkovb3fa03f2021-09-24 21:59:51 +01002705 /* order with io_iopoll_complete() checking ->iopoll_completed */
2706 smp_store_release(&req->iopoll_completed, 1);
Jens Axboedef596e2019-01-09 08:59:42 -07002707}
2708
2709/*
2710 * After the iocb has been issued, it's safe to be found on the poll list.
2711 * Adding the kiocb to the list AFTER submission ensures that we don't
Pavel Begunkovf39c8a52021-04-13 02:58:46 +01002712 * find it from a io_do_iopoll() thread before the issuer is done
Jens Axboedef596e2019-01-09 08:59:42 -07002713 * accessing the kiocb cookie.
2714 */
Pavel Begunkovcb3d8972021-06-14 02:36:14 +01002715static void io_iopoll_req_issued(struct io_kiocb *req)
Jens Axboedef596e2019-01-09 08:59:42 -07002716{
2717 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovcb3d8972021-06-14 02:36:14 +01002718 const bool in_async = io_wq_current_is_worker();
2719
2720 /* workqueue context doesn't hold uring_lock, grab it now */
2721 if (unlikely(in_async))
2722 mutex_lock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07002723
2724 /*
2725 * Track whether we have multiple files in our lists. This will impact
2726 * how we do polling eventually, not spinning if we're on potentially
2727 * different devices.
2728 */
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01002729 if (wq_list_empty(&ctx->iopoll_list)) {
Hao Xu915b3dd2021-06-28 05:37:30 +08002730 ctx->poll_multi_queue = false;
2731 } else if (!ctx->poll_multi_queue) {
Jens Axboedef596e2019-01-09 08:59:42 -07002732 struct io_kiocb *list_req;
2733
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01002734 list_req = container_of(ctx->iopoll_list.first, struct io_kiocb,
2735 comp_list);
Christoph Hellwig30da1b42021-10-12 13:12:14 +02002736 if (list_req->file != req->file)
Hao Xu915b3dd2021-06-28 05:37:30 +08002737 ctx->poll_multi_queue = true;
Jens Axboedef596e2019-01-09 08:59:42 -07002738 }
2739
2740 /*
2741 * For fast devices, IO may have already completed. If it has, add
2742 * it to the front so we find it first.
2743 */
Xiaoguang Wang65a65432020-06-11 23:39:36 +08002744 if (READ_ONCE(req->iopoll_completed))
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01002745 wq_list_add_head(&req->comp_list, &ctx->iopoll_list);
Jens Axboedef596e2019-01-09 08:59:42 -07002746 else
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01002747 wq_list_add_tail(&req->comp_list, &ctx->iopoll_list);
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08002748
Pavel Begunkovcb3d8972021-06-14 02:36:14 +01002749 if (unlikely(in_async)) {
2750 /*
2751 * If IORING_SETUP_SQPOLL is enabled, sqes are either handle
2752 * in sq thread task context or in io worker task context. If
2753 * current task context is sq thread, we don't need to check
2754 * whether should wake up sq thread.
2755 */
2756 if ((ctx->flags & IORING_SETUP_SQPOLL) &&
2757 wq_has_sleeper(&ctx->sq_data->wait))
2758 wake_up(&ctx->sq_data->wait);
2759
2760 mutex_unlock(&ctx->uring_lock);
2761 }
Jens Axboedef596e2019-01-09 08:59:42 -07002762}
2763
Jens Axboe4503b762020-06-01 10:00:27 -06002764static bool io_bdev_nowait(struct block_device *bdev)
2765{
Jeffle Xu9ba0d0c2020-10-19 16:59:42 +08002766 return !bdev || blk_queue_nowait(bdev_get_queue(bdev));
Jens Axboe4503b762020-06-01 10:00:27 -06002767}
2768
Jens Axboe2b188cc2019-01-07 10:46:33 -07002769/*
2770 * If we tracked the file through the SCM inflight mechanism, we could support
2771 * any file. For now, just ensure that anything potentially problematic is done
2772 * inline.
2773 */
Pavel Begunkovb191e2d2021-08-09 13:04:03 +01002774static bool __io_file_supports_nowait(struct file *file, int rw)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002775{
2776 umode_t mode = file_inode(file)->i_mode;
2777
Jens Axboe4503b762020-06-01 10:00:27 -06002778 if (S_ISBLK(mode)) {
Christoph Hellwig4e7b5672020-11-23 13:38:40 +01002779 if (IS_ENABLED(CONFIG_BLOCK) &&
2780 io_bdev_nowait(I_BDEV(file->f_mapping->host)))
Jens Axboe4503b762020-06-01 10:00:27 -06002781 return true;
2782 return false;
2783 }
Pavel Begunkov976517f2021-06-09 12:07:25 +01002784 if (S_ISSOCK(mode))
Jens Axboe2b188cc2019-01-07 10:46:33 -07002785 return true;
Jens Axboe4503b762020-06-01 10:00:27 -06002786 if (S_ISREG(mode)) {
Christoph Hellwig4e7b5672020-11-23 13:38:40 +01002787 if (IS_ENABLED(CONFIG_BLOCK) &&
2788 io_bdev_nowait(file->f_inode->i_sb->s_bdev) &&
Jens Axboe4503b762020-06-01 10:00:27 -06002789 file->f_op != &io_uring_fops)
2790 return true;
2791 return false;
2792 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002793
Jens Axboec5b85622020-06-09 19:23:05 -06002794 /* any ->read/write should understand O_NONBLOCK */
2795 if (file->f_flags & O_NONBLOCK)
2796 return true;
2797
Jens Axboeaf197f52020-04-28 13:15:06 -06002798 if (!(file->f_mode & FMODE_NOWAIT))
2799 return false;
2800
2801 if (rw == READ)
2802 return file->f_op->read_iter != NULL;
2803
2804 return file->f_op->write_iter != NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002805}
2806
Pavel Begunkovb191e2d2021-08-09 13:04:03 +01002807static bool io_file_supports_nowait(struct io_kiocb *req, int rw)
Jens Axboe7b29f922021-03-12 08:30:14 -07002808{
Pavel Begunkovb191e2d2021-08-09 13:04:03 +01002809 if (rw == READ && (req->flags & REQ_F_NOWAIT_READ))
Jens Axboe7b29f922021-03-12 08:30:14 -07002810 return true;
Pavel Begunkovb191e2d2021-08-09 13:04:03 +01002811 else if (rw == WRITE && (req->flags & REQ_F_NOWAIT_WRITE))
Jens Axboe7b29f922021-03-12 08:30:14 -07002812 return true;
2813
Pavel Begunkovb191e2d2021-08-09 13:04:03 +01002814 return __io_file_supports_nowait(req->file, rw);
Jens Axboe7b29f922021-03-12 08:30:14 -07002815}
2816
Jens Axboe5d329e12021-09-14 11:08:37 -06002817static int io_prep_rw(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2818 int rw)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002819{
Jens Axboedef596e2019-01-09 08:59:42 -07002820 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9adbd452019-12-20 08:45:55 -07002821 struct kiocb *kiocb = &req->rw.kiocb;
Pavel Begunkov75c668c2021-02-04 13:52:05 +00002822 struct file *file = req->file;
Jens Axboe09bb8392019-03-13 12:39:28 -06002823 unsigned ioprio;
2824 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002825
Pavel Begunkovc97d8a02021-08-09 13:04:04 +01002826 if (!io_req_ffs_set(req) && S_ISREG(file_inode(file)->i_mode))
Jens Axboe491381ce2019-10-17 09:20:46 -06002827 req->flags |= REQ_F_ISREG;
2828
Jens Axboe2b188cc2019-01-07 10:46:33 -07002829 kiocb->ki_pos = READ_ONCE(sqe->off);
Pavel Begunkov75c668c2021-02-04 13:52:05 +00002830 if (kiocb->ki_pos == -1 && !(file->f_mode & FMODE_STREAM)) {
Jens Axboeba042912019-12-25 16:33:42 -07002831 req->flags |= REQ_F_CUR_POS;
Pavel Begunkov75c668c2021-02-04 13:52:05 +00002832 kiocb->ki_pos = file->f_pos;
Jens Axboeba042912019-12-25 16:33:42 -07002833 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002834 kiocb->ki_hint = ki_hint_validate(file_write_hint(kiocb->ki_filp));
Pavel Begunkov3e577dc2020-02-01 03:58:42 +03002835 kiocb->ki_flags = iocb_flags(kiocb->ki_filp);
2836 ret = kiocb_set_rw_flags(kiocb, READ_ONCE(sqe->rw_flags));
2837 if (unlikely(ret))
2838 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002839
Jens Axboe5d329e12021-09-14 11:08:37 -06002840 /*
2841 * If the file is marked O_NONBLOCK, still allow retry for it if it
2842 * supports async. Otherwise it's impossible to use O_NONBLOCK files
2843 * reliably. If not, or it IOCB_NOWAIT is set, don't retry.
2844 */
2845 if ((kiocb->ki_flags & IOCB_NOWAIT) ||
2846 ((file->f_flags & O_NONBLOCK) && !io_file_supports_nowait(req, rw)))
Pavel Begunkov75c668c2021-02-04 13:52:05 +00002847 req->flags |= REQ_F_NOWAIT;
2848
Jens Axboe2b188cc2019-01-07 10:46:33 -07002849 ioprio = READ_ONCE(sqe->ioprio);
2850 if (ioprio) {
2851 ret = ioprio_check_cap(ioprio);
2852 if (ret)
Jens Axboe09bb8392019-03-13 12:39:28 -06002853 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002854
2855 kiocb->ki_ioprio = ioprio;
2856 } else
2857 kiocb->ki_ioprio = get_current_ioprio();
2858
Jens Axboedef596e2019-01-09 08:59:42 -07002859 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07002860 if (!(kiocb->ki_flags & IOCB_DIRECT) ||
2861 !kiocb->ki_filp->f_op->iopoll)
Jens Axboe09bb8392019-03-13 12:39:28 -06002862 return -EOPNOTSUPP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002863
Jens Axboe394918e2021-03-08 11:40:23 -07002864 kiocb->ki_flags |= IOCB_HIPRI | IOCB_ALLOC_CACHE;
Jens Axboedef596e2019-01-09 08:59:42 -07002865 kiocb->ki_complete = io_complete_rw_iopoll;
Xiaoguang Wang65a65432020-06-11 23:39:36 +08002866 req->iopoll_completed = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07002867 } else {
Jens Axboe09bb8392019-03-13 12:39:28 -06002868 if (kiocb->ki_flags & IOCB_HIPRI)
2869 return -EINVAL;
Jens Axboedef596e2019-01-09 08:59:42 -07002870 kiocb->ki_complete = io_complete_rw;
2871 }
Jens Axboe9adbd452019-12-20 08:45:55 -07002872
Pavel Begunkoveae071c2021-04-25 14:32:24 +01002873 if (req->opcode == IORING_OP_READ_FIXED ||
2874 req->opcode == IORING_OP_WRITE_FIXED) {
2875 req->imu = NULL;
Pavel Begunkova46be972021-10-09 23:14:40 +01002876 io_req_set_rsrc_node(req, ctx);
Pavel Begunkoveae071c2021-04-25 14:32:24 +01002877 }
2878
Jens Axboe3529d8c2019-12-19 18:24:38 -07002879 req->rw.addr = READ_ONCE(sqe->addr);
2880 req->rw.len = READ_ONCE(sqe->len);
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -07002881 req->buf_index = READ_ONCE(sqe->buf_index);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002882 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002883}
2884
2885static inline void io_rw_done(struct kiocb *kiocb, ssize_t ret)
2886{
2887 switch (ret) {
2888 case -EIOCBQUEUED:
2889 break;
2890 case -ERESTARTSYS:
2891 case -ERESTARTNOINTR:
2892 case -ERESTARTNOHAND:
2893 case -ERESTART_RESTARTBLOCK:
2894 /*
2895 * We can't just restart the syscall, since previously
2896 * submitted sqes may already be in progress. Just fail this
2897 * IO with EINTR.
2898 */
2899 ret = -EINTR;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05002900 fallthrough;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002901 default:
2902 kiocb->ki_complete(kiocb, ret, 0);
2903 }
2904}
2905
Jens Axboea1d7c392020-06-22 11:09:46 -06002906static void kiocb_done(struct kiocb *kiocb, ssize_t ret,
Pavel Begunkov889fca72021-02-10 00:03:09 +00002907 unsigned int issue_flags)
Jens Axboeba816ad2019-09-28 11:36:45 -06002908{
Jens Axboeba042912019-12-25 16:33:42 -07002909 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboee8c2bc12020-08-15 18:44:09 -07002910 struct io_async_rw *io = req->async_data;
Jens Axboeba042912019-12-25 16:33:42 -07002911
Jens Axboe227c0c92020-08-13 11:51:40 -06002912 /* add previously done IO, if any */
Pavel Begunkovd886e182021-10-04 20:02:56 +01002913 if (req_has_async_data(req) && io->bytes_done > 0) {
Jens Axboe227c0c92020-08-13 11:51:40 -06002914 if (ret < 0)
Jens Axboee8c2bc12020-08-15 18:44:09 -07002915 ret = io->bytes_done;
Jens Axboe227c0c92020-08-13 11:51:40 -06002916 else
Jens Axboee8c2bc12020-08-15 18:44:09 -07002917 ret += io->bytes_done;
Jens Axboe227c0c92020-08-13 11:51:40 -06002918 }
2919
Jens Axboeba042912019-12-25 16:33:42 -07002920 if (req->flags & REQ_F_CUR_POS)
2921 req->file->f_pos = kiocb->ki_pos;
Pavel Begunkovb66ceaf2021-09-15 11:00:05 +01002922 if (ret >= 0 && (kiocb->ki_complete == io_complete_rw))
Pavel Begunkov889fca72021-02-10 00:03:09 +00002923 __io_complete_rw(req, ret, 0, issue_flags);
Jens Axboeba816ad2019-09-28 11:36:45 -06002924 else
2925 io_rw_done(kiocb, ret);
Pavel Begunkov97284632021-04-08 19:28:03 +01002926
Pavel Begunkovb66ceaf2021-09-15 11:00:05 +01002927 if (req->flags & REQ_F_REISSUE) {
Pavel Begunkov97284632021-04-08 19:28:03 +01002928 req->flags &= ~REQ_F_REISSUE;
Jens Axboea7be7c22021-04-15 11:31:14 -06002929 if (io_resubmit_prep(req)) {
Jens Axboe773af692021-07-27 10:25:55 -06002930 io_req_task_queue_reissue(req);
Pavel Begunkov8c130822021-03-22 01:58:32 +00002931 } else {
Pavel Begunkovb66ceaf2021-09-15 11:00:05 +01002932 unsigned int cflags = io_put_rw_kbuf(req);
2933 struct io_ring_ctx *ctx = req->ctx;
2934
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01002935 req_set_fail(req);
Hao Xu14cfbb72021-10-14 22:04:00 +08002936 if (!(issue_flags & IO_URING_F_NONBLOCK)) {
Pavel Begunkovb66ceaf2021-09-15 11:00:05 +01002937 mutex_lock(&ctx->uring_lock);
2938 __io_req_complete(req, issue_flags, ret, cflags);
2939 mutex_unlock(&ctx->uring_lock);
2940 } else {
2941 __io_req_complete(req, issue_flags, ret, cflags);
2942 }
Pavel Begunkov97284632021-04-08 19:28:03 +01002943 }
2944 }
Jens Axboeba816ad2019-09-28 11:36:45 -06002945}
2946
Pavel Begunkoveae071c2021-04-25 14:32:24 +01002947static int __io_import_fixed(struct io_kiocb *req, int rw, struct iov_iter *iter,
2948 struct io_mapped_ubuf *imu)
Jens Axboeedafcce2019-01-09 09:16:05 -07002949{
Jens Axboe9adbd452019-12-20 08:45:55 -07002950 size_t len = req->rw.len;
Pavel Begunkov75769e32021-04-01 15:43:54 +01002951 u64 buf_end, buf_addr = req->rw.addr;
Jens Axboeedafcce2019-01-09 09:16:05 -07002952 size_t offset;
Jens Axboeedafcce2019-01-09 09:16:05 -07002953
Pavel Begunkov75769e32021-04-01 15:43:54 +01002954 if (unlikely(check_add_overflow(buf_addr, (u64)len, &buf_end)))
Jens Axboeedafcce2019-01-09 09:16:05 -07002955 return -EFAULT;
2956 /* not inside the mapped region */
Pavel Begunkov4751f532021-04-01 15:43:55 +01002957 if (unlikely(buf_addr < imu->ubuf || buf_end > imu->ubuf_end))
Jens Axboeedafcce2019-01-09 09:16:05 -07002958 return -EFAULT;
2959
2960 /*
2961 * May not be a start of buffer, set size appropriately
2962 * and advance us to the beginning.
2963 */
2964 offset = buf_addr - imu->ubuf;
2965 iov_iter_bvec(iter, rw, imu->bvec, imu->nr_bvecs, offset + len);
Jens Axboebd11b3a2019-07-20 08:37:31 -06002966
2967 if (offset) {
2968 /*
2969 * Don't use iov_iter_advance() here, as it's really slow for
2970 * using the latter parts of a big fixed buffer - it iterates
2971 * over each segment manually. We can cheat a bit here, because
2972 * we know that:
2973 *
2974 * 1) it's a BVEC iter, we set it up
2975 * 2) all bvecs are PAGE_SIZE in size, except potentially the
2976 * first and last bvec
2977 *
2978 * So just find our index, and adjust the iterator afterwards.
2979 * If the offset is within the first bvec (or the whole first
2980 * bvec, just use iov_iter_advance(). This makes it easier
2981 * since we can just skip the first segment, which may not
2982 * be PAGE_SIZE aligned.
2983 */
2984 const struct bio_vec *bvec = imu->bvec;
2985
2986 if (offset <= bvec->bv_len) {
2987 iov_iter_advance(iter, offset);
2988 } else {
2989 unsigned long seg_skip;
2990
2991 /* skip first vec */
2992 offset -= bvec->bv_len;
2993 seg_skip = 1 + (offset >> PAGE_SHIFT);
2994
2995 iter->bvec = bvec + seg_skip;
2996 iter->nr_segs -= seg_skip;
Aleix Roca Nonell99c79f62019-08-15 14:03:22 +02002997 iter->count -= bvec->bv_len + offset;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002998 iter->iov_offset = offset & ~PAGE_MASK;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002999 }
3000 }
3001
Pavel Begunkov847595d2021-02-04 13:52:06 +00003002 return 0;
Jens Axboeedafcce2019-01-09 09:16:05 -07003003}
3004
Pavel Begunkoveae071c2021-04-25 14:32:24 +01003005static int io_import_fixed(struct io_kiocb *req, int rw, struct iov_iter *iter)
3006{
3007 struct io_ring_ctx *ctx = req->ctx;
3008 struct io_mapped_ubuf *imu = req->imu;
3009 u16 index, buf_index = req->buf_index;
3010
3011 if (likely(!imu)) {
3012 if (unlikely(buf_index >= ctx->nr_user_bufs))
3013 return -EFAULT;
3014 index = array_index_nospec(buf_index, ctx->nr_user_bufs);
3015 imu = READ_ONCE(ctx->user_bufs[index]);
3016 req->imu = imu;
3017 }
3018 return __io_import_fixed(req, rw, iter, imu);
3019}
3020
Jens Axboebcda7ba2020-02-23 16:42:51 -07003021static void io_ring_submit_unlock(struct io_ring_ctx *ctx, bool needs_lock)
3022{
3023 if (needs_lock)
3024 mutex_unlock(&ctx->uring_lock);
3025}
3026
3027static void io_ring_submit_lock(struct io_ring_ctx *ctx, bool needs_lock)
3028{
3029 /*
3030 * "Normal" inline submissions always hold the uring_lock, since we
3031 * grab it from the system call. Same is true for the SQPOLL offload.
3032 * The only exception is when we've detached the request and issue it
3033 * from an async worker thread, grab the lock for that case.
3034 */
3035 if (needs_lock)
3036 mutex_lock(&ctx->uring_lock);
3037}
3038
3039static struct io_buffer *io_buffer_select(struct io_kiocb *req, size_t *len,
Pavel Begunkov30d51dd2021-10-01 18:07:03 +01003040 int bgid, bool needs_lock)
Jens Axboebcda7ba2020-02-23 16:42:51 -07003041{
Pavel Begunkov30d51dd2021-10-01 18:07:03 +01003042 struct io_buffer *kbuf = req->kbuf;
Jens Axboebcda7ba2020-02-23 16:42:51 -07003043 struct io_buffer *head;
3044
3045 if (req->flags & REQ_F_BUFFER_SELECTED)
3046 return kbuf;
3047
3048 io_ring_submit_lock(req->ctx, needs_lock);
3049
3050 lockdep_assert_held(&req->ctx->uring_lock);
3051
Jens Axboe9e15c3a2021-03-13 12:29:43 -07003052 head = xa_load(&req->ctx->io_buffers, bgid);
Jens Axboebcda7ba2020-02-23 16:42:51 -07003053 if (head) {
3054 if (!list_empty(&head->list)) {
3055 kbuf = list_last_entry(&head->list, struct io_buffer,
3056 list);
3057 list_del(&kbuf->list);
3058 } else {
3059 kbuf = head;
Jens Axboe9e15c3a2021-03-13 12:29:43 -07003060 xa_erase(&req->ctx->io_buffers, bgid);
Jens Axboebcda7ba2020-02-23 16:42:51 -07003061 }
3062 if (*len > kbuf->len)
3063 *len = kbuf->len;
Pavel Begunkov30d51dd2021-10-01 18:07:03 +01003064 req->flags |= REQ_F_BUFFER_SELECTED;
3065 req->kbuf = kbuf;
Jens Axboebcda7ba2020-02-23 16:42:51 -07003066 } else {
3067 kbuf = ERR_PTR(-ENOBUFS);
3068 }
3069
3070 io_ring_submit_unlock(req->ctx, needs_lock);
Jens Axboebcda7ba2020-02-23 16:42:51 -07003071 return kbuf;
3072}
3073
Jens Axboe4d954c22020-02-27 07:31:19 -07003074static void __user *io_rw_buffer_select(struct io_kiocb *req, size_t *len,
3075 bool needs_lock)
3076{
3077 struct io_buffer *kbuf;
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -07003078 u16 bgid;
Jens Axboe4d954c22020-02-27 07:31:19 -07003079
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -07003080 bgid = req->buf_index;
Pavel Begunkov30d51dd2021-10-01 18:07:03 +01003081 kbuf = io_buffer_select(req, len, bgid, needs_lock);
Jens Axboe4d954c22020-02-27 07:31:19 -07003082 if (IS_ERR(kbuf))
3083 return kbuf;
Jens Axboe4d954c22020-02-27 07:31:19 -07003084 return u64_to_user_ptr(kbuf->addr);
3085}
3086
3087#ifdef CONFIG_COMPAT
3088static ssize_t io_compat_import(struct io_kiocb *req, struct iovec *iov,
3089 bool needs_lock)
3090{
3091 struct compat_iovec __user *uiov;
3092 compat_ssize_t clen;
3093 void __user *buf;
3094 ssize_t len;
3095
3096 uiov = u64_to_user_ptr(req->rw.addr);
3097 if (!access_ok(uiov, sizeof(*uiov)))
3098 return -EFAULT;
3099 if (__get_user(clen, &uiov->iov_len))
3100 return -EFAULT;
3101 if (clen < 0)
3102 return -EINVAL;
3103
3104 len = clen;
3105 buf = io_rw_buffer_select(req, &len, needs_lock);
3106 if (IS_ERR(buf))
3107 return PTR_ERR(buf);
3108 iov[0].iov_base = buf;
3109 iov[0].iov_len = (compat_size_t) len;
3110 return 0;
3111}
3112#endif
3113
3114static ssize_t __io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
3115 bool needs_lock)
3116{
3117 struct iovec __user *uiov = u64_to_user_ptr(req->rw.addr);
3118 void __user *buf;
3119 ssize_t len;
3120
3121 if (copy_from_user(iov, uiov, sizeof(*uiov)))
3122 return -EFAULT;
3123
3124 len = iov[0].iov_len;
3125 if (len < 0)
3126 return -EINVAL;
3127 buf = io_rw_buffer_select(req, &len, needs_lock);
3128 if (IS_ERR(buf))
3129 return PTR_ERR(buf);
3130 iov[0].iov_base = buf;
3131 iov[0].iov_len = len;
3132 return 0;
3133}
3134
3135static ssize_t io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
3136 bool needs_lock)
3137{
Jens Axboedddb3e22020-06-04 11:27:01 -06003138 if (req->flags & REQ_F_BUFFER_SELECTED) {
Pavel Begunkov30d51dd2021-10-01 18:07:03 +01003139 struct io_buffer *kbuf = req->kbuf;
Jens Axboedddb3e22020-06-04 11:27:01 -06003140
Jens Axboedddb3e22020-06-04 11:27:01 -06003141 iov[0].iov_base = u64_to_user_ptr(kbuf->addr);
3142 iov[0].iov_len = kbuf->len;
Jens Axboe4d954c22020-02-27 07:31:19 -07003143 return 0;
Jens Axboedddb3e22020-06-04 11:27:01 -06003144 }
Pavel Begunkovdd201662020-12-19 03:15:43 +00003145 if (req->rw.len != 1)
Jens Axboe4d954c22020-02-27 07:31:19 -07003146 return -EINVAL;
3147
3148#ifdef CONFIG_COMPAT
3149 if (req->ctx->compat)
3150 return io_compat_import(req, iov, needs_lock);
3151#endif
3152
3153 return __io_iov_buffer_select(req, iov, needs_lock);
3154}
3155
Pavel Begunkov847595d2021-02-04 13:52:06 +00003156static int io_import_iovec(int rw, struct io_kiocb *req, struct iovec **iovec,
3157 struct iov_iter *iter, bool needs_lock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003158{
Jens Axboe9adbd452019-12-20 08:45:55 -07003159 void __user *buf = u64_to_user_ptr(req->rw.addr);
3160 size_t sqe_len = req->rw.len;
Pavel Begunkov847595d2021-02-04 13:52:06 +00003161 u8 opcode = req->opcode;
Jens Axboe4d954c22020-02-27 07:31:19 -07003162 ssize_t ret;
Jens Axboeedafcce2019-01-09 09:16:05 -07003163
Pavel Begunkov7d009162019-11-25 23:14:40 +03003164 if (opcode == IORING_OP_READ_FIXED || opcode == IORING_OP_WRITE_FIXED) {
Jens Axboeedafcce2019-01-09 09:16:05 -07003165 *iovec = NULL;
Jens Axboe9adbd452019-12-20 08:45:55 -07003166 return io_import_fixed(req, rw, iter);
Jens Axboeedafcce2019-01-09 09:16:05 -07003167 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07003168
Jens Axboebcda7ba2020-02-23 16:42:51 -07003169 /* buffer index only valid with fixed read/write, or buffer select */
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -07003170 if (req->buf_index && !(req->flags & REQ_F_BUFFER_SELECT))
Jens Axboe9adbd452019-12-20 08:45:55 -07003171 return -EINVAL;
3172
Jens Axboe3a6820f2019-12-22 15:19:35 -07003173 if (opcode == IORING_OP_READ || opcode == IORING_OP_WRITE) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07003174 if (req->flags & REQ_F_BUFFER_SELECT) {
Jens Axboe4d954c22020-02-27 07:31:19 -07003175 buf = io_rw_buffer_select(req, &sqe_len, needs_lock);
Pavel Begunkov867a23e2020-08-20 11:34:39 +03003176 if (IS_ERR(buf))
Jens Axboe4d954c22020-02-27 07:31:19 -07003177 return PTR_ERR(buf);
Jens Axboe3f9d6442020-03-11 12:27:04 -06003178 req->rw.len = sqe_len;
Jens Axboebcda7ba2020-02-23 16:42:51 -07003179 }
3180
Jens Axboe3a6820f2019-12-22 15:19:35 -07003181 ret = import_single_range(rw, buf, sqe_len, *iovec, iter);
3182 *iovec = NULL;
David Laight10fc72e2020-11-07 13:16:25 +00003183 return ret;
Jens Axboe3a6820f2019-12-22 15:19:35 -07003184 }
3185
Jens Axboe4d954c22020-02-27 07:31:19 -07003186 if (req->flags & REQ_F_BUFFER_SELECT) {
3187 ret = io_iov_buffer_select(req, *iovec, needs_lock);
Pavel Begunkov847595d2021-02-04 13:52:06 +00003188 if (!ret)
3189 iov_iter_init(iter, rw, *iovec, 1, (*iovec)->iov_len);
Jens Axboe4d954c22020-02-27 07:31:19 -07003190 *iovec = NULL;
3191 return ret;
3192 }
3193
Christoph Hellwig89cd35c2020-09-25 06:51:41 +02003194 return __import_iovec(rw, buf, sqe_len, UIO_FASTIOV, iovec, iter,
3195 req->ctx->compat);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003196}
3197
Jens Axboe0fef9482020-08-26 10:36:20 -06003198static inline loff_t *io_kiocb_ppos(struct kiocb *kiocb)
3199{
Pavel Begunkov5b09e372020-09-30 22:57:15 +03003200 return (kiocb->ki_filp->f_mode & FMODE_STREAM) ? NULL : &kiocb->ki_pos;
Jens Axboe0fef9482020-08-26 10:36:20 -06003201}
3202
Jens Axboe32960612019-09-23 11:05:34 -06003203/*
3204 * For files that don't have ->read_iter() and ->write_iter(), handle them
3205 * by looping over ->read() or ->write() manually.
3206 */
Jens Axboe4017eb92020-10-22 14:14:12 -06003207static ssize_t loop_rw_iter(int rw, struct io_kiocb *req, struct iov_iter *iter)
Jens Axboe32960612019-09-23 11:05:34 -06003208{
Jens Axboe4017eb92020-10-22 14:14:12 -06003209 struct kiocb *kiocb = &req->rw.kiocb;
3210 struct file *file = req->file;
Jens Axboe32960612019-09-23 11:05:34 -06003211 ssize_t ret = 0;
3212
3213 /*
3214 * Don't support polled IO through this interface, and we can't
3215 * support non-blocking either. For the latter, this just causes
3216 * the kiocb to be handled from an async context.
3217 */
3218 if (kiocb->ki_flags & IOCB_HIPRI)
3219 return -EOPNOTSUPP;
3220 if (kiocb->ki_flags & IOCB_NOWAIT)
3221 return -EAGAIN;
3222
3223 while (iov_iter_count(iter)) {
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03003224 struct iovec iovec;
Jens Axboe32960612019-09-23 11:05:34 -06003225 ssize_t nr;
3226
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03003227 if (!iov_iter_is_bvec(iter)) {
3228 iovec = iov_iter_iovec(iter);
3229 } else {
Jens Axboe4017eb92020-10-22 14:14:12 -06003230 iovec.iov_base = u64_to_user_ptr(req->rw.addr);
3231 iovec.iov_len = req->rw.len;
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03003232 }
3233
Jens Axboe32960612019-09-23 11:05:34 -06003234 if (rw == READ) {
3235 nr = file->f_op->read(file, iovec.iov_base,
Jens Axboe0fef9482020-08-26 10:36:20 -06003236 iovec.iov_len, io_kiocb_ppos(kiocb));
Jens Axboe32960612019-09-23 11:05:34 -06003237 } else {
3238 nr = file->f_op->write(file, iovec.iov_base,
Jens Axboe0fef9482020-08-26 10:36:20 -06003239 iovec.iov_len, io_kiocb_ppos(kiocb));
Jens Axboe32960612019-09-23 11:05:34 -06003240 }
3241
3242 if (nr < 0) {
3243 if (!ret)
3244 ret = nr;
3245 break;
3246 }
Jens Axboe16c8d2d2021-09-12 06:45:07 -06003247 if (!iov_iter_is_bvec(iter)) {
3248 iov_iter_advance(iter, nr);
3249 } else {
3250 req->rw.len -= nr;
3251 req->rw.addr += nr;
3252 }
Jens Axboe32960612019-09-23 11:05:34 -06003253 ret += nr;
3254 if (nr != iovec.iov_len)
3255 break;
Jens Axboe32960612019-09-23 11:05:34 -06003256 }
3257
3258 return ret;
3259}
3260
Jens Axboeff6165b2020-08-13 09:47:43 -06003261static void io_req_map_rw(struct io_kiocb *req, const struct iovec *iovec,
3262 const struct iovec *fast_iov, struct iov_iter *iter)
Jens Axboef67676d2019-12-02 11:03:47 -07003263{
Jens Axboee8c2bc12020-08-15 18:44:09 -07003264 struct io_async_rw *rw = req->async_data;
Pavel Begunkovb64e3442020-07-13 22:59:18 +03003265
Pavel Begunkov538941e2021-10-14 16:10:15 +01003266 memcpy(&rw->s.iter, iter, sizeof(*iter));
Pavel Begunkovafb87652020-09-06 00:45:46 +03003267 rw->free_iovec = iovec;
Jens Axboe227c0c92020-08-13 11:51:40 -06003268 rw->bytes_done = 0;
Jens Axboeff6165b2020-08-13 09:47:43 -06003269 /* can only be fixed buffers, no need to do anything */
Pavel Begunkov9c3a2052020-11-23 23:20:27 +00003270 if (iov_iter_is_bvec(iter))
Jens Axboeff6165b2020-08-13 09:47:43 -06003271 return;
Pavel Begunkovb64e3442020-07-13 22:59:18 +03003272 if (!iovec) {
Jens Axboeff6165b2020-08-13 09:47:43 -06003273 unsigned iov_off = 0;
3274
Pavel Begunkov538941e2021-10-14 16:10:15 +01003275 rw->s.iter.iov = rw->s.fast_iov;
Jens Axboeff6165b2020-08-13 09:47:43 -06003276 if (iter->iov != fast_iov) {
3277 iov_off = iter->iov - fast_iov;
Pavel Begunkov538941e2021-10-14 16:10:15 +01003278 rw->s.iter.iov += iov_off;
Jens Axboeff6165b2020-08-13 09:47:43 -06003279 }
Pavel Begunkov538941e2021-10-14 16:10:15 +01003280 if (rw->s.fast_iov != fast_iov)
3281 memcpy(rw->s.fast_iov + iov_off, fast_iov + iov_off,
Xiaoguang Wang45097da2020-04-08 22:29:58 +08003282 sizeof(struct iovec) * iter->nr_segs);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003283 } else {
3284 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboef67676d2019-12-02 11:03:47 -07003285 }
3286}
3287
Hao Xu8d4af682021-09-22 18:15:22 +08003288static inline bool io_alloc_async_data(struct io_kiocb *req)
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08003289{
Jens Axboee8c2bc12020-08-15 18:44:09 -07003290 WARN_ON_ONCE(!io_op_defs[req->opcode].async_size);
3291 req->async_data = kmalloc(io_op_defs[req->opcode].async_size, GFP_KERNEL);
Pavel Begunkovd886e182021-10-04 20:02:56 +01003292 if (req->async_data) {
3293 req->flags |= REQ_F_ASYNC_DATA;
3294 return false;
3295 }
3296 return true;
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08003297}
3298
Jens Axboeff6165b2020-08-13 09:47:43 -06003299static int io_setup_async_rw(struct io_kiocb *req, const struct iovec *iovec,
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003300 struct io_rw_state *s, bool force)
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003301{
Pavel Begunkov26f05052021-02-28 22:35:18 +00003302 if (!force && !io_op_defs[req->opcode].needs_async_setup)
Jens Axboe74566df2020-01-13 19:23:24 -07003303 return 0;
Pavel Begunkovd886e182021-10-04 20:02:56 +01003304 if (!req_has_async_data(req)) {
Jens Axboecd658692021-09-10 11:19:14 -06003305 struct io_async_rw *iorw;
3306
Pavel Begunkov6cb78682021-02-28 22:35:17 +00003307 if (io_alloc_async_data(req)) {
Pavel Begunkov6bf985d2021-02-04 13:52:01 +00003308 kfree(iovec);
Jens Axboe5d204bc2020-01-31 12:06:52 -07003309 return -ENOMEM;
Pavel Begunkov6bf985d2021-02-04 13:52:01 +00003310 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003311
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003312 io_req_map_rw(req, iovec, s->fast_iov, &s->iter);
Jens Axboecd658692021-09-10 11:19:14 -06003313 iorw = req->async_data;
3314 /* we've copied and mapped the iter, ensure state is saved */
Pavel Begunkov538941e2021-10-14 16:10:15 +01003315 iov_iter_save_state(&iorw->s.iter, &iorw->s.iter_state);
Jens Axboe5d204bc2020-01-31 12:06:52 -07003316 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003317 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07003318}
3319
Pavel Begunkov73debe62020-09-30 22:57:54 +03003320static inline int io_rw_prep_async(struct io_kiocb *req, int rw)
Pavel Begunkovc3e330a2020-07-13 22:59:19 +03003321{
Jens Axboee8c2bc12020-08-15 18:44:09 -07003322 struct io_async_rw *iorw = req->async_data;
Pavel Begunkov538941e2021-10-14 16:10:15 +01003323 struct iovec *iov = iorw->s.fast_iov;
Pavel Begunkov847595d2021-02-04 13:52:06 +00003324 int ret;
Pavel Begunkovc3e330a2020-07-13 22:59:19 +03003325
Pavel Begunkov538941e2021-10-14 16:10:15 +01003326 ret = io_import_iovec(rw, req, &iov, &iorw->s.iter, false);
Pavel Begunkovc3e330a2020-07-13 22:59:19 +03003327 if (unlikely(ret < 0))
3328 return ret;
3329
Pavel Begunkovab0b1962020-09-06 00:45:47 +03003330 iorw->bytes_done = 0;
3331 iorw->free_iovec = iov;
3332 if (iov)
3333 req->flags |= REQ_F_NEED_CLEANUP;
Pavel Begunkov538941e2021-10-14 16:10:15 +01003334 iov_iter_save_state(&iorw->s.iter, &iorw->s.iter_state);
Pavel Begunkovc3e330a2020-07-13 22:59:19 +03003335 return 0;
3336}
3337
Pavel Begunkov73debe62020-09-30 22:57:54 +03003338static int io_read_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07003339{
Jens Axboe3529d8c2019-12-19 18:24:38 -07003340 if (unlikely(!(req->file->f_mode & FMODE_READ)))
3341 return -EBADF;
Jens Axboe5d329e12021-09-14 11:08:37 -06003342 return io_prep_rw(req, sqe, READ);
Jens Axboef67676d2019-12-02 11:03:47 -07003343}
3344
Jens Axboec1dd91d2020-08-03 16:43:59 -06003345/*
3346 * This is our waitqueue callback handler, registered through lock_page_async()
3347 * when we initially tried to do the IO with the iocb armed our waitqueue.
3348 * This gets called when the page is unlocked, and we generally expect that to
3349 * happen when the page IO is completed and the page is now uptodate. This will
3350 * queue a task_work based retry of the operation, attempting to copy the data
3351 * again. If the latter fails because the page was NOT uptodate, then we will
3352 * do a thread based blocking retry of the operation. That's the unexpected
3353 * slow path.
3354 */
Jens Axboebcf5a062020-05-22 09:24:42 -06003355static int io_async_buf_func(struct wait_queue_entry *wait, unsigned mode,
3356 int sync, void *arg)
3357{
3358 struct wait_page_queue *wpq;
3359 struct io_kiocb *req = wait->private;
Jens Axboebcf5a062020-05-22 09:24:42 -06003360 struct wait_page_key *key = arg;
Jens Axboebcf5a062020-05-22 09:24:42 -06003361
3362 wpq = container_of(wait, struct wait_page_queue, wait);
3363
Linus Torvaldscdc8fcb2020-08-03 13:01:22 -07003364 if (!wake_page_match(wpq, key))
3365 return 0;
3366
Hao Xuc8d317a2020-09-29 20:00:45 +08003367 req->rw.kiocb.ki_flags &= ~IOCB_WAITQ;
Jens Axboebcf5a062020-05-22 09:24:42 -06003368 list_del_init(&wait->entry);
Pavel Begunkov921b9052021-02-12 03:23:53 +00003369 io_req_task_queue(req);
Jens Axboebcf5a062020-05-22 09:24:42 -06003370 return 1;
3371}
3372
Jens Axboec1dd91d2020-08-03 16:43:59 -06003373/*
3374 * This controls whether a given IO request should be armed for async page
3375 * based retry. If we return false here, the request is handed to the async
3376 * worker threads for retry. If we're doing buffered reads on a regular file,
3377 * we prepare a private wait_page_queue entry and retry the operation. This
3378 * will either succeed because the page is now uptodate and unlocked, or it
3379 * will register a callback when the page is unlocked at IO completion. Through
3380 * that callback, io_uring uses task_work to setup a retry of the operation.
3381 * That retry will attempt the buffered read again. The retry will generally
3382 * succeed, or in rare cases where it fails, we then fall back to using the
3383 * async worker threads for a blocking retry.
3384 */
Jens Axboe227c0c92020-08-13 11:51:40 -06003385static bool io_rw_should_retry(struct io_kiocb *req)
Jens Axboebcf5a062020-05-22 09:24:42 -06003386{
Jens Axboee8c2bc12020-08-15 18:44:09 -07003387 struct io_async_rw *rw = req->async_data;
3388 struct wait_page_queue *wait = &rw->wpq;
Jens Axboebcf5a062020-05-22 09:24:42 -06003389 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboebcf5a062020-05-22 09:24:42 -06003390
3391 /* never retry for NOWAIT, we just complete with -EAGAIN */
3392 if (req->flags & REQ_F_NOWAIT)
3393 return false;
3394
Jens Axboe227c0c92020-08-13 11:51:40 -06003395 /* Only for buffered IO */
Jens Axboe3b2a4432020-08-16 10:58:43 -07003396 if (kiocb->ki_flags & (IOCB_DIRECT | IOCB_HIPRI))
Jens Axboebcf5a062020-05-22 09:24:42 -06003397 return false;
Jens Axboe3b2a4432020-08-16 10:58:43 -07003398
Jens Axboebcf5a062020-05-22 09:24:42 -06003399 /*
3400 * just use poll if we can, and don't attempt if the fs doesn't
3401 * support callback based unlocks
3402 */
3403 if (file_can_poll(req->file) || !(req->file->f_mode & FMODE_BUF_RASYNC))
3404 return false;
3405
Jens Axboe3b2a4432020-08-16 10:58:43 -07003406 wait->wait.func = io_async_buf_func;
3407 wait->wait.private = req;
3408 wait->wait.flags = 0;
3409 INIT_LIST_HEAD(&wait->wait.entry);
3410 kiocb->ki_flags |= IOCB_WAITQ;
Hao Xuc8d317a2020-09-29 20:00:45 +08003411 kiocb->ki_flags &= ~IOCB_NOWAIT;
Jens Axboe3b2a4432020-08-16 10:58:43 -07003412 kiocb->ki_waitq = wait;
Jens Axboe3b2a4432020-08-16 10:58:43 -07003413 return true;
Jens Axboebcf5a062020-05-22 09:24:42 -06003414}
3415
Pavel Begunkovaeab9502021-06-14 02:36:24 +01003416static inline int io_iter_do_read(struct io_kiocb *req, struct iov_iter *iter)
Jens Axboebcf5a062020-05-22 09:24:42 -06003417{
3418 if (req->file->f_op->read_iter)
3419 return call_read_iter(req->file, &req->rw.kiocb, iter);
Guoyu Huang2dd21112020-08-05 03:53:50 -07003420 else if (req->file->f_op->read)
Jens Axboe4017eb92020-10-22 14:14:12 -06003421 return loop_rw_iter(READ, req, iter);
Guoyu Huang2dd21112020-08-05 03:53:50 -07003422 else
3423 return -EINVAL;
Jens Axboebcf5a062020-05-22 09:24:42 -06003424}
3425
Ming Lei7db30432021-08-21 23:07:51 +08003426static bool need_read_all(struct io_kiocb *req)
3427{
3428 return req->flags & REQ_F_ISREG ||
3429 S_ISBLK(file_inode(req->file)->i_mode);
3430}
3431
Pavel Begunkov889fca72021-02-10 00:03:09 +00003432static int io_read(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003433{
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003434 struct io_rw_state __s, *s;
3435 struct iovec *iovec;
Jens Axboe9adbd452019-12-20 08:45:55 -07003436 struct kiocb *kiocb = &req->rw.kiocb;
Pavel Begunkov45d189c2021-02-10 00:03:07 +00003437 bool force_nonblock = issue_flags & IO_URING_F_NONBLOCK;
Pavel Begunkovd886e182021-10-04 20:02:56 +01003438 struct io_async_rw *rw;
Jens Axboecd658692021-09-10 11:19:14 -06003439 ssize_t ret, ret2;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003440
Pavel Begunkovd886e182021-10-04 20:02:56 +01003441 if (req_has_async_data(req)) {
3442 rw = req->async_data;
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003443 s = &rw->s;
Jens Axboecd658692021-09-10 11:19:14 -06003444 /*
3445 * We come here from an earlier attempt, restore our state to
3446 * match in case it doesn't. It's cheap enough that we don't
3447 * need to make this conditional.
3448 */
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003449 iov_iter_restore(&s->iter, &s->iter_state);
Pavel Begunkov2846c482020-11-07 13:16:27 +00003450 iovec = NULL;
3451 } else {
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003452 s = &__s;
3453 iovec = s->fast_iov;
3454 ret = io_import_iovec(READ, req, &iovec, &s->iter, !force_nonblock);
Pavel Begunkov2846c482020-11-07 13:16:27 +00003455 if (ret < 0)
3456 return ret;
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003457
3458 iov_iter_save_state(&s->iter, &s->iter_state);
Pavel Begunkov2846c482020-11-07 13:16:27 +00003459 }
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003460 req->result = iov_iter_count(&s->iter);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003461
Jens Axboefd6c2e42019-12-18 12:19:41 -07003462 /* Ensure we clear previously set non-block flag */
3463 if (!force_nonblock)
Jens Axboe29de5f62020-02-20 09:56:08 -07003464 kiocb->ki_flags &= ~IOCB_NOWAIT;
Pavel Begunkova88fc402020-09-30 22:57:53 +03003465 else
3466 kiocb->ki_flags |= IOCB_NOWAIT;
3467
Pavel Begunkov24c74672020-06-21 13:09:51 +03003468 /* If the file doesn't support async, just async punt */
Pavel Begunkovb191e2d2021-08-09 13:04:03 +01003469 if (force_nonblock && !io_file_supports_nowait(req, READ)) {
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003470 ret = io_setup_async_rw(req, iovec, s, true);
Pavel Begunkov6bf985d2021-02-04 13:52:01 +00003471 return ret ?: -EAGAIN;
Pavel Begunkov6713e7a2021-02-04 13:51:59 +00003472 }
Jens Axboe9e645e112019-05-10 16:07:28 -06003473
Jens Axboecd658692021-09-10 11:19:14 -06003474 ret = rw_verify_area(READ, req->file, io_kiocb_ppos(kiocb), req->result);
Pavel Begunkov5ea5dd42021-02-04 13:52:03 +00003475 if (unlikely(ret)) {
3476 kfree(iovec);
3477 return ret;
3478 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07003479
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003480 ret = io_iter_do_read(req, &s->iter);
Jens Axboe32960612019-09-23 11:05:34 -06003481
Jens Axboe230d50d2021-04-01 20:41:15 -06003482 if (ret == -EAGAIN || (req->flags & REQ_F_REISSUE)) {
Pavel Begunkov6ad7f232021-04-08 01:54:39 +01003483 req->flags &= ~REQ_F_REISSUE;
Jens Axboeeefdf302020-08-27 16:40:19 -06003484 /* IOPOLL retry should happen for io-wq threads */
3485 if (!force_nonblock && !(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboef91daf52020-08-15 15:58:42 -07003486 goto done;
Pavel Begunkov75c668c2021-02-04 13:52:05 +00003487 /* no retry on NONBLOCK nor RWF_NOWAIT */
3488 if (req->flags & REQ_F_NOWAIT)
Jens Axboe355afae2020-09-02 09:30:31 -06003489 goto done;
Jens Axboef38c7e32020-09-25 15:23:43 -06003490 ret = 0;
Jens Axboe230d50d2021-04-01 20:41:15 -06003491 } else if (ret == -EIOCBQUEUED) {
3492 goto out_free;
Pavel Begunkovf80a50a2021-10-14 16:10:13 +01003493 } else if (ret == req->result || ret <= 0 || !force_nonblock ||
Ming Lei7db30432021-08-21 23:07:51 +08003494 (req->flags & REQ_F_NOWAIT) || !need_read_all(req)) {
Pavel Begunkov7335e3b2021-02-04 13:52:02 +00003495 /* read all, failed, already did sync or don't want to retry */
Jens Axboe00d23d52020-08-25 12:59:22 -06003496 goto done;
Jens Axboe227c0c92020-08-13 11:51:40 -06003497 }
3498
Jens Axboecd658692021-09-10 11:19:14 -06003499 /*
3500 * Don't depend on the iter state matching what was consumed, or being
3501 * untouched in case of error. Restore it and we'll advance it
3502 * manually if we need to.
3503 */
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003504 iov_iter_restore(&s->iter, &s->iter_state);
Jens Axboecd658692021-09-10 11:19:14 -06003505
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003506 ret2 = io_setup_async_rw(req, iovec, s, true);
Pavel Begunkov6bf985d2021-02-04 13:52:01 +00003507 if (ret2)
3508 return ret2;
3509
Pavel Begunkovfe1cdd52021-02-17 21:02:36 +00003510 iovec = NULL;
Jens Axboee8c2bc12020-08-15 18:44:09 -07003511 rw = req->async_data;
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003512 s = &rw->s;
Jens Axboecd658692021-09-10 11:19:14 -06003513 /*
3514 * Now use our persistent iterator and state, if we aren't already.
3515 * We've restored and mapped the iter to match.
3516 */
Jens Axboe227c0c92020-08-13 11:51:40 -06003517
Pavel Begunkovb23df912021-02-04 13:52:04 +00003518 do {
Jens Axboecd658692021-09-10 11:19:14 -06003519 /*
3520 * We end up here because of a partial read, either from
3521 * above or inside this loop. Advance the iter by the bytes
3522 * that were consumed.
3523 */
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003524 iov_iter_advance(&s->iter, ret);
3525 if (!iov_iter_count(&s->iter))
Jens Axboecd658692021-09-10 11:19:14 -06003526 break;
Pavel Begunkovb23df912021-02-04 13:52:04 +00003527 rw->bytes_done += ret;
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003528 iov_iter_save_state(&s->iter, &s->iter_state);
Jens Axboecd658692021-09-10 11:19:14 -06003529
Pavel Begunkovb23df912021-02-04 13:52:04 +00003530 /* if we can retry, do so with the callbacks armed */
3531 if (!io_rw_should_retry(req)) {
3532 kiocb->ki_flags &= ~IOCB_WAITQ;
3533 return -EAGAIN;
3534 }
3535
3536 /*
3537 * Now retry read with the IOCB_WAITQ parts set in the iocb. If
3538 * we get -EIOCBQUEUED, then we'll get a notification when the
3539 * desired page gets unlocked. We can also get a partial read
3540 * here, and if we do, then just retry at the new offset.
3541 */
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003542 ret = io_iter_do_read(req, &s->iter);
Pavel Begunkovb23df912021-02-04 13:52:04 +00003543 if (ret == -EIOCBQUEUED)
3544 return 0;
Jens Axboe227c0c92020-08-13 11:51:40 -06003545 /* we got some bytes, but not all. retry. */
Jens Axboeb5b0ecb2021-03-04 21:02:58 -07003546 kiocb->ki_flags &= ~IOCB_WAITQ;
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003547 iov_iter_restore(&s->iter, &s->iter_state);
Jens Axboecd658692021-09-10 11:19:14 -06003548 } while (ret > 0);
Jens Axboe227c0c92020-08-13 11:51:40 -06003549done:
Pavel Begunkov889fca72021-02-10 00:03:09 +00003550 kiocb_done(kiocb, ret, issue_flags);
Pavel Begunkovfe1cdd52021-02-17 21:02:36 +00003551out_free:
3552 /* it's faster to check here then delegate to kfree */
3553 if (iovec)
3554 kfree(iovec);
Pavel Begunkov5ea5dd42021-02-04 13:52:03 +00003555 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003556}
3557
Pavel Begunkov73debe62020-09-30 22:57:54 +03003558static int io_write_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07003559{
Jens Axboe3529d8c2019-12-19 18:24:38 -07003560 if (unlikely(!(req->file->f_mode & FMODE_WRITE)))
3561 return -EBADF;
Jens Axboe5d329e12021-09-14 11:08:37 -06003562 return io_prep_rw(req, sqe, WRITE);
Jens Axboef67676d2019-12-02 11:03:47 -07003563}
3564
Pavel Begunkov889fca72021-02-10 00:03:09 +00003565static int io_write(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003566{
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003567 struct io_rw_state __s, *s;
Pavel Begunkovd886e182021-10-04 20:02:56 +01003568 struct io_async_rw *rw;
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003569 struct iovec *iovec;
3570 struct kiocb *kiocb = &req->rw.kiocb;
3571 bool force_nonblock = issue_flags & IO_URING_F_NONBLOCK;
Jens Axboecd658692021-09-10 11:19:14 -06003572 ssize_t ret, ret2;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003573
Pavel Begunkovd886e182021-10-04 20:02:56 +01003574 if (req_has_async_data(req)) {
3575 rw = req->async_data;
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003576 s = &rw->s;
3577 iov_iter_restore(&s->iter, &s->iter_state);
Pavel Begunkov2846c482020-11-07 13:16:27 +00003578 iovec = NULL;
3579 } else {
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003580 s = &__s;
3581 iovec = s->fast_iov;
3582 ret = io_import_iovec(WRITE, req, &iovec, &s->iter, !force_nonblock);
Pavel Begunkov2846c482020-11-07 13:16:27 +00003583 if (ret < 0)
3584 return ret;
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003585 iov_iter_save_state(&s->iter, &s->iter_state);
Pavel Begunkov2846c482020-11-07 13:16:27 +00003586 }
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003587 req->result = iov_iter_count(&s->iter);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003588
Jens Axboefd6c2e42019-12-18 12:19:41 -07003589 /* Ensure we clear previously set non-block flag */
3590 if (!force_nonblock)
Pavel Begunkova88fc402020-09-30 22:57:53 +03003591 kiocb->ki_flags &= ~IOCB_NOWAIT;
3592 else
3593 kiocb->ki_flags |= IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07003594
Pavel Begunkov24c74672020-06-21 13:09:51 +03003595 /* If the file doesn't support async, just async punt */
Pavel Begunkovb191e2d2021-08-09 13:04:03 +01003596 if (force_nonblock && !io_file_supports_nowait(req, WRITE))
Jens Axboef67676d2019-12-02 11:03:47 -07003597 goto copy_iov;
Jens Axboef67676d2019-12-02 11:03:47 -07003598
Jens Axboe10d59342019-12-09 20:16:22 -07003599 /* file path doesn't support NOWAIT for non-direct_IO */
3600 if (force_nonblock && !(kiocb->ki_flags & IOCB_DIRECT) &&
3601 (req->flags & REQ_F_ISREG))
Jens Axboef67676d2019-12-02 11:03:47 -07003602 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06003603
Jens Axboecd658692021-09-10 11:19:14 -06003604 ret = rw_verify_area(WRITE, req->file, io_kiocb_ppos(kiocb), req->result);
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003605 if (unlikely(ret))
3606 goto out_free;
Roman Penyaev9bf79332019-03-25 20:09:24 +01003607
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003608 /*
3609 * Open-code file_start_write here to grab freeze protection,
3610 * which will be released by another thread in
3611 * io_complete_rw(). Fool lockdep by telling it the lock got
3612 * released so that it doesn't complain about the held lock when
3613 * we return to userspace.
3614 */
3615 if (req->flags & REQ_F_ISREG) {
Darrick J. Wong8a3c84b2020-11-10 16:50:21 -08003616 sb_start_write(file_inode(req->file)->i_sb);
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003617 __sb_writers_release(file_inode(req->file)->i_sb,
3618 SB_FREEZE_WRITE);
3619 }
3620 kiocb->ki_flags |= IOCB_WRITE;
Roman Penyaev9bf79332019-03-25 20:09:24 +01003621
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003622 if (req->file->f_op->write_iter)
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003623 ret2 = call_write_iter(req->file, kiocb, &s->iter);
Guoyu Huang2dd21112020-08-05 03:53:50 -07003624 else if (req->file->f_op->write)
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003625 ret2 = loop_rw_iter(WRITE, req, &s->iter);
Guoyu Huang2dd21112020-08-05 03:53:50 -07003626 else
3627 ret2 = -EINVAL;
Jens Axboe4ed734b2020-03-20 11:23:41 -06003628
Pavel Begunkov6ad7f232021-04-08 01:54:39 +01003629 if (req->flags & REQ_F_REISSUE) {
3630 req->flags &= ~REQ_F_REISSUE;
Jens Axboe230d50d2021-04-01 20:41:15 -06003631 ret2 = -EAGAIN;
Pavel Begunkov6ad7f232021-04-08 01:54:39 +01003632 }
Jens Axboe230d50d2021-04-01 20:41:15 -06003633
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003634 /*
3635 * Raw bdev writes will return -EOPNOTSUPP for IOCB_NOWAIT. Just
3636 * retry them without IOCB_NOWAIT.
3637 */
3638 if (ret2 == -EOPNOTSUPP && (kiocb->ki_flags & IOCB_NOWAIT))
3639 ret2 = -EAGAIN;
Pavel Begunkov75c668c2021-02-04 13:52:05 +00003640 /* no retry on NONBLOCK nor RWF_NOWAIT */
3641 if (ret2 == -EAGAIN && (req->flags & REQ_F_NOWAIT))
Jens Axboe355afae2020-09-02 09:30:31 -06003642 goto done;
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003643 if (!force_nonblock || ret2 != -EAGAIN) {
Jens Axboeeefdf302020-08-27 16:40:19 -06003644 /* IOPOLL retry should happen for io-wq threads */
3645 if ((req->ctx->flags & IORING_SETUP_IOPOLL) && ret2 == -EAGAIN)
3646 goto copy_iov;
Jens Axboe355afae2020-09-02 09:30:31 -06003647done:
Pavel Begunkov889fca72021-02-10 00:03:09 +00003648 kiocb_done(kiocb, ret2, issue_flags);
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003649 } else {
Jens Axboef67676d2019-12-02 11:03:47 -07003650copy_iov:
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003651 iov_iter_restore(&s->iter, &s->iter_state);
3652 ret = io_setup_async_rw(req, iovec, s, false);
Pavel Begunkov6bf985d2021-02-04 13:52:01 +00003653 return ret ?: -EAGAIN;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003654 }
Jens Axboe31b51512019-01-18 22:56:34 -07003655out_free:
Pavel Begunkovf261c162020-08-20 11:34:10 +03003656 /* it's reportedly faster than delegating the null check to kfree() */
Pavel Begunkov252917c2020-07-13 22:59:20 +03003657 if (iovec)
Xiaoguang Wang6f2cc162020-06-18 15:01:56 +08003658 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003659 return ret;
3660}
3661
Jens Axboe80a261f2020-09-28 14:23:58 -06003662static int io_renameat_prep(struct io_kiocb *req,
3663 const struct io_uring_sqe *sqe)
3664{
3665 struct io_rename *ren = &req->rename;
3666 const char __user *oldf, *newf;
3667
Jens Axboeed7eb252021-06-23 09:04:13 -06003668 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3669 return -EINVAL;
Pavel Begunkov26578cd2021-08-20 10:36:37 +01003670 if (sqe->ioprio || sqe->buf_index || sqe->splice_fd_in)
Jens Axboeed7eb252021-06-23 09:04:13 -06003671 return -EINVAL;
Jens Axboe80a261f2020-09-28 14:23:58 -06003672 if (unlikely(req->flags & REQ_F_FIXED_FILE))
3673 return -EBADF;
3674
3675 ren->old_dfd = READ_ONCE(sqe->fd);
3676 oldf = u64_to_user_ptr(READ_ONCE(sqe->addr));
3677 newf = u64_to_user_ptr(READ_ONCE(sqe->addr2));
3678 ren->new_dfd = READ_ONCE(sqe->len);
3679 ren->flags = READ_ONCE(sqe->rename_flags);
3680
3681 ren->oldpath = getname(oldf);
3682 if (IS_ERR(ren->oldpath))
3683 return PTR_ERR(ren->oldpath);
3684
3685 ren->newpath = getname(newf);
3686 if (IS_ERR(ren->newpath)) {
3687 putname(ren->oldpath);
3688 return PTR_ERR(ren->newpath);
3689 }
3690
3691 req->flags |= REQ_F_NEED_CLEANUP;
3692 return 0;
3693}
3694
Pavel Begunkov45d189c2021-02-10 00:03:07 +00003695static int io_renameat(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe80a261f2020-09-28 14:23:58 -06003696{
3697 struct io_rename *ren = &req->rename;
3698 int ret;
3699
Pavel Begunkov45d189c2021-02-10 00:03:07 +00003700 if (issue_flags & IO_URING_F_NONBLOCK)
Jens Axboe80a261f2020-09-28 14:23:58 -06003701 return -EAGAIN;
3702
3703 ret = do_renameat2(ren->old_dfd, ren->oldpath, ren->new_dfd,
3704 ren->newpath, ren->flags);
3705
3706 req->flags &= ~REQ_F_NEED_CLEANUP;
3707 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01003708 req_set_fail(req);
Jens Axboe80a261f2020-09-28 14:23:58 -06003709 io_req_complete(req, ret);
3710 return 0;
3711}
3712
Jens Axboe14a11432020-09-28 14:27:37 -06003713static int io_unlinkat_prep(struct io_kiocb *req,
3714 const struct io_uring_sqe *sqe)
3715{
3716 struct io_unlink *un = &req->unlink;
3717 const char __user *fname;
3718
Jens Axboe22634bc2021-06-23 09:07:45 -06003719 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3720 return -EINVAL;
Pavel Begunkov26578cd2021-08-20 10:36:37 +01003721 if (sqe->ioprio || sqe->off || sqe->len || sqe->buf_index ||
3722 sqe->splice_fd_in)
Jens Axboe22634bc2021-06-23 09:07:45 -06003723 return -EINVAL;
Jens Axboe14a11432020-09-28 14:27:37 -06003724 if (unlikely(req->flags & REQ_F_FIXED_FILE))
3725 return -EBADF;
3726
3727 un->dfd = READ_ONCE(sqe->fd);
3728
3729 un->flags = READ_ONCE(sqe->unlink_flags);
3730 if (un->flags & ~AT_REMOVEDIR)
3731 return -EINVAL;
3732
3733 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
3734 un->filename = getname(fname);
3735 if (IS_ERR(un->filename))
3736 return PTR_ERR(un->filename);
3737
3738 req->flags |= REQ_F_NEED_CLEANUP;
3739 return 0;
3740}
3741
Pavel Begunkov45d189c2021-02-10 00:03:07 +00003742static int io_unlinkat(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe14a11432020-09-28 14:27:37 -06003743{
3744 struct io_unlink *un = &req->unlink;
3745 int ret;
3746
Pavel Begunkov45d189c2021-02-10 00:03:07 +00003747 if (issue_flags & IO_URING_F_NONBLOCK)
Jens Axboe14a11432020-09-28 14:27:37 -06003748 return -EAGAIN;
3749
3750 if (un->flags & AT_REMOVEDIR)
3751 ret = do_rmdir(un->dfd, un->filename);
3752 else
3753 ret = do_unlinkat(un->dfd, un->filename);
3754
3755 req->flags &= ~REQ_F_NEED_CLEANUP;
3756 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01003757 req_set_fail(req);
Jens Axboe14a11432020-09-28 14:27:37 -06003758 io_req_complete(req, ret);
3759 return 0;
3760}
3761
Dmitry Kadasheve34a02d2021-07-08 13:34:45 +07003762static int io_mkdirat_prep(struct io_kiocb *req,
3763 const struct io_uring_sqe *sqe)
3764{
3765 struct io_mkdir *mkd = &req->mkdir;
3766 const char __user *fname;
3767
3768 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3769 return -EINVAL;
3770 if (sqe->ioprio || sqe->off || sqe->rw_flags || sqe->buf_index ||
3771 sqe->splice_fd_in)
3772 return -EINVAL;
3773 if (unlikely(req->flags & REQ_F_FIXED_FILE))
3774 return -EBADF;
3775
3776 mkd->dfd = READ_ONCE(sqe->fd);
3777 mkd->mode = READ_ONCE(sqe->len);
3778
3779 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
3780 mkd->filename = getname(fname);
3781 if (IS_ERR(mkd->filename))
3782 return PTR_ERR(mkd->filename);
3783
3784 req->flags |= REQ_F_NEED_CLEANUP;
3785 return 0;
3786}
3787
Pavel Begunkov04f34082021-10-14 16:10:12 +01003788static int io_mkdirat(struct io_kiocb *req, unsigned int issue_flags)
Dmitry Kadasheve34a02d2021-07-08 13:34:45 +07003789{
3790 struct io_mkdir *mkd = &req->mkdir;
3791 int ret;
3792
3793 if (issue_flags & IO_URING_F_NONBLOCK)
3794 return -EAGAIN;
3795
3796 ret = do_mkdirat(mkd->dfd, mkd->filename, mkd->mode);
3797
3798 req->flags &= ~REQ_F_NEED_CLEANUP;
3799 if (ret < 0)
3800 req_set_fail(req);
3801 io_req_complete(req, ret);
3802 return 0;
3803}
3804
Dmitry Kadashev7a8721f2021-07-08 13:34:46 +07003805static int io_symlinkat_prep(struct io_kiocb *req,
3806 const struct io_uring_sqe *sqe)
3807{
3808 struct io_symlink *sl = &req->symlink;
3809 const char __user *oldpath, *newpath;
3810
3811 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3812 return -EINVAL;
3813 if (sqe->ioprio || sqe->len || sqe->rw_flags || sqe->buf_index ||
3814 sqe->splice_fd_in)
3815 return -EINVAL;
3816 if (unlikely(req->flags & REQ_F_FIXED_FILE))
3817 return -EBADF;
3818
3819 sl->new_dfd = READ_ONCE(sqe->fd);
3820 oldpath = u64_to_user_ptr(READ_ONCE(sqe->addr));
3821 newpath = u64_to_user_ptr(READ_ONCE(sqe->addr2));
3822
3823 sl->oldpath = getname(oldpath);
3824 if (IS_ERR(sl->oldpath))
3825 return PTR_ERR(sl->oldpath);
3826
3827 sl->newpath = getname(newpath);
3828 if (IS_ERR(sl->newpath)) {
3829 putname(sl->oldpath);
3830 return PTR_ERR(sl->newpath);
3831 }
3832
3833 req->flags |= REQ_F_NEED_CLEANUP;
3834 return 0;
3835}
3836
Pavel Begunkov04f34082021-10-14 16:10:12 +01003837static int io_symlinkat(struct io_kiocb *req, unsigned int issue_flags)
Dmitry Kadashev7a8721f2021-07-08 13:34:46 +07003838{
3839 struct io_symlink *sl = &req->symlink;
3840 int ret;
3841
3842 if (issue_flags & IO_URING_F_NONBLOCK)
3843 return -EAGAIN;
3844
3845 ret = do_symlinkat(sl->oldpath, sl->new_dfd, sl->newpath);
3846
3847 req->flags &= ~REQ_F_NEED_CLEANUP;
3848 if (ret < 0)
3849 req_set_fail(req);
3850 io_req_complete(req, ret);
3851 return 0;
3852}
3853
Dmitry Kadashevcf30da92021-07-08 13:34:47 +07003854static int io_linkat_prep(struct io_kiocb *req,
3855 const struct io_uring_sqe *sqe)
3856{
3857 struct io_hardlink *lnk = &req->hardlink;
3858 const char __user *oldf, *newf;
3859
3860 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3861 return -EINVAL;
3862 if (sqe->ioprio || sqe->rw_flags || sqe->buf_index || sqe->splice_fd_in)
3863 return -EINVAL;
3864 if (unlikely(req->flags & REQ_F_FIXED_FILE))
3865 return -EBADF;
3866
3867 lnk->old_dfd = READ_ONCE(sqe->fd);
3868 lnk->new_dfd = READ_ONCE(sqe->len);
3869 oldf = u64_to_user_ptr(READ_ONCE(sqe->addr));
3870 newf = u64_to_user_ptr(READ_ONCE(sqe->addr2));
3871 lnk->flags = READ_ONCE(sqe->hardlink_flags);
3872
3873 lnk->oldpath = getname(oldf);
3874 if (IS_ERR(lnk->oldpath))
3875 return PTR_ERR(lnk->oldpath);
3876
3877 lnk->newpath = getname(newf);
3878 if (IS_ERR(lnk->newpath)) {
3879 putname(lnk->oldpath);
3880 return PTR_ERR(lnk->newpath);
3881 }
3882
3883 req->flags |= REQ_F_NEED_CLEANUP;
3884 return 0;
3885}
3886
Pavel Begunkov04f34082021-10-14 16:10:12 +01003887static int io_linkat(struct io_kiocb *req, unsigned int issue_flags)
Dmitry Kadashevcf30da92021-07-08 13:34:47 +07003888{
3889 struct io_hardlink *lnk = &req->hardlink;
3890 int ret;
3891
3892 if (issue_flags & IO_URING_F_NONBLOCK)
3893 return -EAGAIN;
3894
3895 ret = do_linkat(lnk->old_dfd, lnk->oldpath, lnk->new_dfd,
3896 lnk->newpath, lnk->flags);
3897
3898 req->flags &= ~REQ_F_NEED_CLEANUP;
3899 if (ret < 0)
3900 req_set_fail(req);
3901 io_req_complete(req, ret);
3902 return 0;
3903}
3904
Jens Axboe36f4fa62020-09-05 11:14:22 -06003905static int io_shutdown_prep(struct io_kiocb *req,
3906 const struct io_uring_sqe *sqe)
3907{
3908#if defined(CONFIG_NET)
3909 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3910 return -EINVAL;
Pavel Begunkov26578cd2021-08-20 10:36:37 +01003911 if (unlikely(sqe->ioprio || sqe->off || sqe->addr || sqe->rw_flags ||
3912 sqe->buf_index || sqe->splice_fd_in))
Jens Axboe36f4fa62020-09-05 11:14:22 -06003913 return -EINVAL;
3914
3915 req->shutdown.how = READ_ONCE(sqe->len);
3916 return 0;
3917#else
3918 return -EOPNOTSUPP;
3919#endif
3920}
3921
Pavel Begunkov45d189c2021-02-10 00:03:07 +00003922static int io_shutdown(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe36f4fa62020-09-05 11:14:22 -06003923{
3924#if defined(CONFIG_NET)
3925 struct socket *sock;
3926 int ret;
3927
Pavel Begunkov45d189c2021-02-10 00:03:07 +00003928 if (issue_flags & IO_URING_F_NONBLOCK)
Jens Axboe36f4fa62020-09-05 11:14:22 -06003929 return -EAGAIN;
3930
Linus Torvalds48aba792020-12-16 12:44:05 -08003931 sock = sock_from_file(req->file);
Jens Axboe36f4fa62020-09-05 11:14:22 -06003932 if (unlikely(!sock))
Linus Torvalds48aba792020-12-16 12:44:05 -08003933 return -ENOTSOCK;
Jens Axboe36f4fa62020-09-05 11:14:22 -06003934
3935 ret = __sys_shutdown_sock(sock, req->shutdown.how);
Jens Axboea1464682020-12-14 20:57:27 -07003936 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01003937 req_set_fail(req);
Jens Axboe36f4fa62020-09-05 11:14:22 -06003938 io_req_complete(req, ret);
3939 return 0;
3940#else
3941 return -EOPNOTSUPP;
3942#endif
3943}
3944
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03003945static int __io_splice_prep(struct io_kiocb *req,
3946 const struct io_uring_sqe *sqe)
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003947{
Pavel Begunkovfe7e3252021-06-24 15:09:57 +01003948 struct io_splice *sp = &req->splice;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003949 unsigned int valid_flags = SPLICE_F_FD_IN_FIXED | SPLICE_F_ALL;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003950
Pavel Begunkov3232dd02020-06-03 18:03:22 +03003951 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3952 return -EINVAL;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003953
3954 sp->file_in = NULL;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003955 sp->len = READ_ONCE(sqe->len);
3956 sp->flags = READ_ONCE(sqe->splice_flags);
3957
3958 if (unlikely(sp->flags & ~valid_flags))
3959 return -EINVAL;
3960
Pavel Begunkov62906e82021-08-10 14:52:47 +01003961 sp->file_in = io_file_get(req->ctx, req, READ_ONCE(sqe->splice_fd_in),
Pavel Begunkov8371adf2020-10-10 18:34:08 +01003962 (sp->flags & SPLICE_F_FD_IN_FIXED));
3963 if (!sp->file_in)
3964 return -EBADF;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003965 req->flags |= REQ_F_NEED_CLEANUP;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003966 return 0;
3967}
3968
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03003969static int io_tee_prep(struct io_kiocb *req,
3970 const struct io_uring_sqe *sqe)
3971{
3972 if (READ_ONCE(sqe->splice_off_in) || READ_ONCE(sqe->off))
3973 return -EINVAL;
3974 return __io_splice_prep(req, sqe);
3975}
3976
Pavel Begunkov45d189c2021-02-10 00:03:07 +00003977static int io_tee(struct io_kiocb *req, unsigned int issue_flags)
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03003978{
3979 struct io_splice *sp = &req->splice;
3980 struct file *in = sp->file_in;
3981 struct file *out = sp->file_out;
3982 unsigned int flags = sp->flags & ~SPLICE_F_FD_IN_FIXED;
3983 long ret = 0;
3984
Pavel Begunkov45d189c2021-02-10 00:03:07 +00003985 if (issue_flags & IO_URING_F_NONBLOCK)
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03003986 return -EAGAIN;
3987 if (sp->len)
3988 ret = do_tee(in, out, sp->len, flags);
3989
Pavel Begunkove1d767f2021-03-19 17:22:43 +00003990 if (!(sp->flags & SPLICE_F_FD_IN_FIXED))
3991 io_put_file(in);
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03003992 req->flags &= ~REQ_F_NEED_CLEANUP;
3993
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03003994 if (ret != sp->len)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01003995 req_set_fail(req);
Jens Axboee1e16092020-06-22 09:17:17 -06003996 io_req_complete(req, ret);
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03003997 return 0;
3998}
3999
4000static int io_splice_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4001{
Pavel Begunkovfe7e3252021-06-24 15:09:57 +01004002 struct io_splice *sp = &req->splice;
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03004003
4004 sp->off_in = READ_ONCE(sqe->splice_off_in);
4005 sp->off_out = READ_ONCE(sqe->off);
4006 return __io_splice_prep(req, sqe);
4007}
4008
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004009static int io_splice(struct io_kiocb *req, unsigned int issue_flags)
Pavel Begunkov7d67af22020-02-24 11:32:45 +03004010{
4011 struct io_splice *sp = &req->splice;
4012 struct file *in = sp->file_in;
4013 struct file *out = sp->file_out;
4014 unsigned int flags = sp->flags & ~SPLICE_F_FD_IN_FIXED;
4015 loff_t *poff_in, *poff_out;
Pavel Begunkovc9687422020-05-04 23:00:54 +03004016 long ret = 0;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03004017
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004018 if (issue_flags & IO_URING_F_NONBLOCK)
Pavel Begunkov2fb3e822020-05-01 17:09:38 +03004019 return -EAGAIN;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03004020
4021 poff_in = (sp->off_in == -1) ? NULL : &sp->off_in;
4022 poff_out = (sp->off_out == -1) ? NULL : &sp->off_out;
Pavel Begunkovc9687422020-05-04 23:00:54 +03004023
Jens Axboe948a7742020-05-17 14:21:38 -06004024 if (sp->len)
Pavel Begunkovc9687422020-05-04 23:00:54 +03004025 ret = do_splice(in, poff_in, out, poff_out, sp->len, flags);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03004026
Pavel Begunkove1d767f2021-03-19 17:22:43 +00004027 if (!(sp->flags & SPLICE_F_FD_IN_FIXED))
4028 io_put_file(in);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03004029 req->flags &= ~REQ_F_NEED_CLEANUP;
4030
Pavel Begunkov7d67af22020-02-24 11:32:45 +03004031 if (ret != sp->len)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004032 req_set_fail(req);
Jens Axboee1e16092020-06-22 09:17:17 -06004033 io_req_complete(req, ret);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03004034 return 0;
4035}
4036
Jens Axboe2b188cc2019-01-07 10:46:33 -07004037/*
4038 * IORING_OP_NOP just posts a completion event, nothing else.
4039 */
Pavel Begunkov889fca72021-02-10 00:03:09 +00004040static int io_nop(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004041{
4042 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004043
Jens Axboedef596e2019-01-09 08:59:42 -07004044 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
4045 return -EINVAL;
4046
Pavel Begunkov889fca72021-02-10 00:03:09 +00004047 __io_req_complete(req, issue_flags, 0, 0);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004048 return 0;
4049}
4050
Pavel Begunkov1155c762021-02-18 18:29:38 +00004051static int io_fsync_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07004052{
Jens Axboe6b063142019-01-10 22:13:58 -07004053 struct io_ring_ctx *ctx = req->ctx;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07004054
Jens Axboe09bb8392019-03-13 12:39:28 -06004055 if (!req->file)
4056 return -EBADF;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07004057
Jens Axboe6b063142019-01-10 22:13:58 -07004058 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboedef596e2019-01-09 08:59:42 -07004059 return -EINVAL;
Pavel Begunkov26578cd2021-08-20 10:36:37 +01004060 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index ||
4061 sqe->splice_fd_in))
Christoph Hellwigc992fe22019-01-11 09:43:02 -07004062 return -EINVAL;
4063
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004064 req->sync.flags = READ_ONCE(sqe->fsync_flags);
4065 if (unlikely(req->sync.flags & ~IORING_FSYNC_DATASYNC))
4066 return -EINVAL;
4067
4068 req->sync.off = READ_ONCE(sqe->off);
4069 req->sync.len = READ_ONCE(sqe->len);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07004070 return 0;
4071}
4072
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004073static int io_fsync(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe78912932020-01-14 22:09:06 -07004074{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004075 loff_t end = req->sync.off + req->sync.len;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004076 int ret;
4077
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004078 /* fsync always requires a blocking context */
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004079 if (issue_flags & IO_URING_F_NONBLOCK)
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004080 return -EAGAIN;
4081
Jens Axboe9adbd452019-12-20 08:45:55 -07004082 ret = vfs_fsync_range(req->file, req->sync.off,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004083 end > 0 ? end : LLONG_MAX,
4084 req->sync.flags & IORING_FSYNC_DATASYNC);
4085 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004086 req_set_fail(req);
Jens Axboee1e16092020-06-22 09:17:17 -06004087 io_req_complete(req, ret);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07004088 return 0;
4089}
4090
Jens Axboed63d1b52019-12-10 10:38:56 -07004091static int io_fallocate_prep(struct io_kiocb *req,
4092 const struct io_uring_sqe *sqe)
4093{
Pavel Begunkov26578cd2021-08-20 10:36:37 +01004094 if (sqe->ioprio || sqe->buf_index || sqe->rw_flags ||
4095 sqe->splice_fd_in)
Jens Axboed63d1b52019-12-10 10:38:56 -07004096 return -EINVAL;
Pavel Begunkov3232dd02020-06-03 18:03:22 +03004097 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4098 return -EINVAL;
Jens Axboed63d1b52019-12-10 10:38:56 -07004099
4100 req->sync.off = READ_ONCE(sqe->off);
4101 req->sync.len = READ_ONCE(sqe->addr);
4102 req->sync.mode = READ_ONCE(sqe->len);
4103 return 0;
4104}
4105
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004106static int io_fallocate(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboed63d1b52019-12-10 10:38:56 -07004107{
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004108 int ret;
Jens Axboed63d1b52019-12-10 10:38:56 -07004109
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004110 /* fallocate always requiring blocking context */
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004111 if (issue_flags & IO_URING_F_NONBLOCK)
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004112 return -EAGAIN;
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004113 ret = vfs_fallocate(req->file, req->sync.mode, req->sync.off,
4114 req->sync.len);
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004115 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004116 req_set_fail(req);
Jens Axboee1e16092020-06-22 09:17:17 -06004117 io_req_complete(req, ret);
Jens Axboed63d1b52019-12-10 10:38:56 -07004118 return 0;
4119}
4120
Pavel Begunkovec65fea2020-06-03 18:03:24 +03004121static int __io_openat_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe15b71ab2019-12-11 11:20:36 -07004122{
Jens Axboef8748882020-01-08 17:47:02 -07004123 const char __user *fname;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004124 int ret;
4125
Pavel Begunkovd3fddf62021-08-09 13:04:16 +01004126 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4127 return -EINVAL;
Pavel Begunkovb9445592021-08-25 12:25:45 +01004128 if (unlikely(sqe->ioprio || sqe->buf_index))
Jens Axboe15b71ab2019-12-11 11:20:36 -07004129 return -EINVAL;
Pavel Begunkovec65fea2020-06-03 18:03:24 +03004130 if (unlikely(req->flags & REQ_F_FIXED_FILE))
Jens Axboecf3040c2020-02-06 21:31:40 -07004131 return -EBADF;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004132
Pavel Begunkovec65fea2020-06-03 18:03:24 +03004133 /* open.how should be already initialised */
4134 if (!(req->open.how.flags & O_PATH) && force_o_largefile())
Jens Axboe08a1d26eb2020-04-08 09:20:54 -06004135 req->open.how.flags |= O_LARGEFILE;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004136
Pavel Begunkov25e72d12020-06-03 18:03:23 +03004137 req->open.dfd = READ_ONCE(sqe->fd);
4138 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboef8748882020-01-08 17:47:02 -07004139 req->open.filename = getname(fname);
Jens Axboe15b71ab2019-12-11 11:20:36 -07004140 if (IS_ERR(req->open.filename)) {
4141 ret = PTR_ERR(req->open.filename);
4142 req->open.filename = NULL;
4143 return ret;
4144 }
Pavel Begunkovb9445592021-08-25 12:25:45 +01004145
4146 req->open.file_slot = READ_ONCE(sqe->file_index);
4147 if (req->open.file_slot && (req->open.how.flags & O_CLOEXEC))
4148 return -EINVAL;
4149
Jens Axboe4022e7a2020-03-19 19:23:18 -06004150 req->open.nofile = rlimit(RLIMIT_NOFILE);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03004151 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004152 return 0;
4153}
4154
Pavel Begunkovec65fea2020-06-03 18:03:24 +03004155static int io_openat_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4156{
Pavel Begunkovd3fddf62021-08-09 13:04:16 +01004157 u64 mode = READ_ONCE(sqe->len);
4158 u64 flags = READ_ONCE(sqe->open_flags);
Pavel Begunkovec65fea2020-06-03 18:03:24 +03004159
Pavel Begunkovec65fea2020-06-03 18:03:24 +03004160 req->open.how = build_open_how(flags, mode);
4161 return __io_openat_prep(req, sqe);
4162}
4163
Jens Axboecebdb982020-01-08 17:59:24 -07004164static int io_openat2_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4165{
4166 struct open_how __user *how;
Jens Axboecebdb982020-01-08 17:59:24 -07004167 size_t len;
4168 int ret;
4169
Jens Axboecebdb982020-01-08 17:59:24 -07004170 how = u64_to_user_ptr(READ_ONCE(sqe->addr2));
4171 len = READ_ONCE(sqe->len);
Jens Axboecebdb982020-01-08 17:59:24 -07004172 if (len < OPEN_HOW_SIZE_VER0)
4173 return -EINVAL;
4174
4175 ret = copy_struct_from_user(&req->open.how, sizeof(req->open.how), how,
4176 len);
4177 if (ret)
4178 return ret;
4179
Pavel Begunkovec65fea2020-06-03 18:03:24 +03004180 return __io_openat_prep(req, sqe);
Jens Axboecebdb982020-01-08 17:59:24 -07004181}
4182
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004183static int io_openat2(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe15b71ab2019-12-11 11:20:36 -07004184{
4185 struct open_flags op;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004186 struct file *file;
Pavel Begunkovb9445592021-08-25 12:25:45 +01004187 bool resolve_nonblock, nonblock_set;
4188 bool fixed = !!req->open.file_slot;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004189 int ret;
4190
Jens Axboecebdb982020-01-08 17:59:24 -07004191 ret = build_open_flags(&req->open.how, &op);
Jens Axboe15b71ab2019-12-11 11:20:36 -07004192 if (ret)
4193 goto err;
Jens Axboe3a81fd02020-12-10 12:25:36 -07004194 nonblock_set = op.open_flag & O_NONBLOCK;
4195 resolve_nonblock = req->open.how.resolve & RESOLVE_CACHED;
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004196 if (issue_flags & IO_URING_F_NONBLOCK) {
Jens Axboe3a81fd02020-12-10 12:25:36 -07004197 /*
4198 * Don't bother trying for O_TRUNC, O_CREAT, or O_TMPFILE open,
4199 * it'll always -EAGAIN
4200 */
4201 if (req->open.how.flags & (O_TRUNC | O_CREAT | O_TMPFILE))
4202 return -EAGAIN;
4203 op.lookup_flags |= LOOKUP_CACHED;
4204 op.open_flag |= O_NONBLOCK;
4205 }
Jens Axboe15b71ab2019-12-11 11:20:36 -07004206
Pavel Begunkovb9445592021-08-25 12:25:45 +01004207 if (!fixed) {
4208 ret = __get_unused_fd_flags(req->open.how.flags, req->open.nofile);
4209 if (ret < 0)
4210 goto err;
4211 }
Jens Axboe15b71ab2019-12-11 11:20:36 -07004212
4213 file = do_filp_open(req->open.dfd, req->open.filename, &op);
Pavel Begunkov12dcb58a2021-06-24 15:10:00 +01004214 if (IS_ERR(file)) {
Jens Axboe3a81fd02020-12-10 12:25:36 -07004215 /*
Pavel Begunkov12dcb58a2021-06-24 15:10:00 +01004216 * We could hang on to this 'fd' on retrying, but seems like
4217 * marginal gain for something that is now known to be a slower
4218 * path. So just put it, and we'll get a new one when we retry.
Jens Axboe3a81fd02020-12-10 12:25:36 -07004219 */
Pavel Begunkovb9445592021-08-25 12:25:45 +01004220 if (!fixed)
4221 put_unused_fd(ret);
Pavel Begunkov12dcb58a2021-06-24 15:10:00 +01004222
4223 ret = PTR_ERR(file);
4224 /* only retry if RESOLVE_CACHED wasn't already set by application */
4225 if (ret == -EAGAIN &&
4226 (!resolve_nonblock && (issue_flags & IO_URING_F_NONBLOCK)))
4227 return -EAGAIN;
4228 goto err;
Jens Axboe3a81fd02020-12-10 12:25:36 -07004229 }
4230
Pavel Begunkov12dcb58a2021-06-24 15:10:00 +01004231 if ((issue_flags & IO_URING_F_NONBLOCK) && !nonblock_set)
4232 file->f_flags &= ~O_NONBLOCK;
4233 fsnotify_open(file);
Pavel Begunkovb9445592021-08-25 12:25:45 +01004234
4235 if (!fixed)
4236 fd_install(ret, file);
4237 else
4238 ret = io_install_fixed_file(req, file, issue_flags,
4239 req->open.file_slot - 1);
Jens Axboe15b71ab2019-12-11 11:20:36 -07004240err:
4241 putname(req->open.filename);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03004242 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004243 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004244 req_set_fail(req);
Pavel Begunkov0bdf3392021-04-11 01:46:29 +01004245 __io_req_complete(req, issue_flags, ret, 0);
Jens Axboe15b71ab2019-12-11 11:20:36 -07004246 return 0;
4247}
4248
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004249static int io_openat(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboecebdb982020-01-08 17:59:24 -07004250{
Pavel Begunkove45cff52021-02-28 22:35:14 +00004251 return io_openat2(req, issue_flags);
Jens Axboecebdb982020-01-08 17:59:24 -07004252}
4253
Jens Axboe067524e2020-03-02 16:32:28 -07004254static int io_remove_buffers_prep(struct io_kiocb *req,
4255 const struct io_uring_sqe *sqe)
4256{
4257 struct io_provide_buf *p = &req->pbuf;
4258 u64 tmp;
4259
Pavel Begunkov26578cd2021-08-20 10:36:37 +01004260 if (sqe->ioprio || sqe->rw_flags || sqe->addr || sqe->len || sqe->off ||
4261 sqe->splice_fd_in)
Jens Axboe067524e2020-03-02 16:32:28 -07004262 return -EINVAL;
4263
4264 tmp = READ_ONCE(sqe->fd);
4265 if (!tmp || tmp > USHRT_MAX)
4266 return -EINVAL;
4267
4268 memset(p, 0, sizeof(*p));
4269 p->nbufs = tmp;
4270 p->bgid = READ_ONCE(sqe->buf_group);
4271 return 0;
4272}
4273
4274static int __io_remove_buffers(struct io_ring_ctx *ctx, struct io_buffer *buf,
4275 int bgid, unsigned nbufs)
4276{
4277 unsigned i = 0;
4278
4279 /* shouldn't happen */
4280 if (!nbufs)
4281 return 0;
4282
4283 /* the head kbuf is the list itself */
4284 while (!list_empty(&buf->list)) {
4285 struct io_buffer *nxt;
4286
4287 nxt = list_first_entry(&buf->list, struct io_buffer, list);
4288 list_del(&nxt->list);
4289 kfree(nxt);
4290 if (++i == nbufs)
4291 return i;
4292 }
4293 i++;
4294 kfree(buf);
Jens Axboe9e15c3a2021-03-13 12:29:43 -07004295 xa_erase(&ctx->io_buffers, bgid);
Jens Axboe067524e2020-03-02 16:32:28 -07004296
4297 return i;
4298}
4299
Pavel Begunkov889fca72021-02-10 00:03:09 +00004300static int io_remove_buffers(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe067524e2020-03-02 16:32:28 -07004301{
4302 struct io_provide_buf *p = &req->pbuf;
4303 struct io_ring_ctx *ctx = req->ctx;
4304 struct io_buffer *head;
4305 int ret = 0;
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004306 bool force_nonblock = issue_flags & IO_URING_F_NONBLOCK;
Jens Axboe067524e2020-03-02 16:32:28 -07004307
4308 io_ring_submit_lock(ctx, !force_nonblock);
4309
4310 lockdep_assert_held(&ctx->uring_lock);
4311
4312 ret = -ENOENT;
Jens Axboe9e15c3a2021-03-13 12:29:43 -07004313 head = xa_load(&ctx->io_buffers, p->bgid);
Jens Axboe067524e2020-03-02 16:32:28 -07004314 if (head)
4315 ret = __io_remove_buffers(ctx, head, p->bgid, p->nbufs);
Jens Axboe067524e2020-03-02 16:32:28 -07004316 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004317 req_set_fail(req);
Pavel Begunkov31bff9a2020-12-06 22:22:43 +00004318
Pavel Begunkov9fb8cb42021-02-28 22:35:13 +00004319 /* complete before unlock, IOPOLL may need the lock */
4320 __io_req_complete(req, issue_flags, ret, 0);
4321 io_ring_submit_unlock(ctx, !force_nonblock);
Jens Axboe067524e2020-03-02 16:32:28 -07004322 return 0;
4323}
4324
Jens Axboeddf0322d2020-02-23 16:41:33 -07004325static int io_provide_buffers_prep(struct io_kiocb *req,
4326 const struct io_uring_sqe *sqe)
4327{
Pavel Begunkov38134ad2021-04-15 13:07:39 +01004328 unsigned long size, tmp_check;
Jens Axboeddf0322d2020-02-23 16:41:33 -07004329 struct io_provide_buf *p = &req->pbuf;
4330 u64 tmp;
4331
Pavel Begunkov26578cd2021-08-20 10:36:37 +01004332 if (sqe->ioprio || sqe->rw_flags || sqe->splice_fd_in)
Jens Axboeddf0322d2020-02-23 16:41:33 -07004333 return -EINVAL;
4334
4335 tmp = READ_ONCE(sqe->fd);
4336 if (!tmp || tmp > USHRT_MAX)
4337 return -E2BIG;
4338 p->nbufs = tmp;
4339 p->addr = READ_ONCE(sqe->addr);
4340 p->len = READ_ONCE(sqe->len);
4341
Pavel Begunkov38134ad2021-04-15 13:07:39 +01004342 if (check_mul_overflow((unsigned long)p->len, (unsigned long)p->nbufs,
4343 &size))
4344 return -EOVERFLOW;
4345 if (check_add_overflow((unsigned long)p->addr, size, &tmp_check))
4346 return -EOVERFLOW;
4347
Pavel Begunkovd81269f2021-03-19 10:21:19 +00004348 size = (unsigned long)p->len * p->nbufs;
4349 if (!access_ok(u64_to_user_ptr(p->addr), size))
Jens Axboeddf0322d2020-02-23 16:41:33 -07004350 return -EFAULT;
4351
4352 p->bgid = READ_ONCE(sqe->buf_group);
4353 tmp = READ_ONCE(sqe->off);
4354 if (tmp > USHRT_MAX)
4355 return -E2BIG;
4356 p->bid = tmp;
4357 return 0;
4358}
4359
4360static int io_add_buffers(struct io_provide_buf *pbuf, struct io_buffer **head)
4361{
4362 struct io_buffer *buf;
4363 u64 addr = pbuf->addr;
4364 int i, bid = pbuf->bid;
4365
4366 for (i = 0; i < pbuf->nbufs; i++) {
Jens Axboe9990da92021-09-24 07:39:08 -06004367 buf = kmalloc(sizeof(*buf), GFP_KERNEL_ACCOUNT);
Jens Axboeddf0322d2020-02-23 16:41:33 -07004368 if (!buf)
4369 break;
4370
4371 buf->addr = addr;
Thadeu Lima de Souza Cascardod1f82802021-05-05 09:47:06 -03004372 buf->len = min_t(__u32, pbuf->len, MAX_RW_COUNT);
Jens Axboeddf0322d2020-02-23 16:41:33 -07004373 buf->bid = bid;
4374 addr += pbuf->len;
4375 bid++;
4376 if (!*head) {
4377 INIT_LIST_HEAD(&buf->list);
4378 *head = buf;
4379 } else {
4380 list_add_tail(&buf->list, &(*head)->list);
4381 }
4382 }
4383
4384 return i ? i : -ENOMEM;
4385}
4386
Pavel Begunkov889fca72021-02-10 00:03:09 +00004387static int io_provide_buffers(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboeddf0322d2020-02-23 16:41:33 -07004388{
4389 struct io_provide_buf *p = &req->pbuf;
4390 struct io_ring_ctx *ctx = req->ctx;
4391 struct io_buffer *head, *list;
4392 int ret = 0;
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004393 bool force_nonblock = issue_flags & IO_URING_F_NONBLOCK;
Jens Axboeddf0322d2020-02-23 16:41:33 -07004394
4395 io_ring_submit_lock(ctx, !force_nonblock);
4396
4397 lockdep_assert_held(&ctx->uring_lock);
4398
Jens Axboe9e15c3a2021-03-13 12:29:43 -07004399 list = head = xa_load(&ctx->io_buffers, p->bgid);
Jens Axboeddf0322d2020-02-23 16:41:33 -07004400
4401 ret = io_add_buffers(p, &head);
Jens Axboe9e15c3a2021-03-13 12:29:43 -07004402 if (ret >= 0 && !list) {
4403 ret = xa_insert(&ctx->io_buffers, p->bgid, head, GFP_KERNEL);
4404 if (ret < 0)
Jens Axboe067524e2020-03-02 16:32:28 -07004405 __io_remove_buffers(ctx, head, p->bgid, -1U);
Jens Axboeddf0322d2020-02-23 16:41:33 -07004406 }
Jens Axboeddf0322d2020-02-23 16:41:33 -07004407 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004408 req_set_fail(req);
Pavel Begunkov9fb8cb42021-02-28 22:35:13 +00004409 /* complete before unlock, IOPOLL may need the lock */
4410 __io_req_complete(req, issue_flags, ret, 0);
4411 io_ring_submit_unlock(ctx, !force_nonblock);
Jens Axboeddf0322d2020-02-23 16:41:33 -07004412 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004413}
4414
Jens Axboe3e4827b2020-01-08 15:18:09 -07004415static int io_epoll_ctl_prep(struct io_kiocb *req,
4416 const struct io_uring_sqe *sqe)
4417{
4418#if defined(CONFIG_EPOLL)
Pavel Begunkov26578cd2021-08-20 10:36:37 +01004419 if (sqe->ioprio || sqe->buf_index || sqe->splice_fd_in)
Jens Axboe3e4827b2020-01-08 15:18:09 -07004420 return -EINVAL;
Pavel Begunkov2d74d042021-05-14 12:05:46 +01004421 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Pavel Begunkov3232dd02020-06-03 18:03:22 +03004422 return -EINVAL;
Jens Axboe3e4827b2020-01-08 15:18:09 -07004423
4424 req->epoll.epfd = READ_ONCE(sqe->fd);
4425 req->epoll.op = READ_ONCE(sqe->len);
4426 req->epoll.fd = READ_ONCE(sqe->off);
4427
4428 if (ep_op_has_event(req->epoll.op)) {
4429 struct epoll_event __user *ev;
4430
4431 ev = u64_to_user_ptr(READ_ONCE(sqe->addr));
4432 if (copy_from_user(&req->epoll.event, ev, sizeof(*ev)))
4433 return -EFAULT;
4434 }
4435
4436 return 0;
4437#else
4438 return -EOPNOTSUPP;
4439#endif
4440}
4441
Pavel Begunkov889fca72021-02-10 00:03:09 +00004442static int io_epoll_ctl(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe3e4827b2020-01-08 15:18:09 -07004443{
4444#if defined(CONFIG_EPOLL)
4445 struct io_epoll *ie = &req->epoll;
4446 int ret;
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004447 bool force_nonblock = issue_flags & IO_URING_F_NONBLOCK;
Jens Axboe3e4827b2020-01-08 15:18:09 -07004448
4449 ret = do_epoll_ctl(ie->epfd, ie->op, ie->fd, &ie->event, force_nonblock);
4450 if (force_nonblock && ret == -EAGAIN)
4451 return -EAGAIN;
4452
4453 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004454 req_set_fail(req);
Pavel Begunkov889fca72021-02-10 00:03:09 +00004455 __io_req_complete(req, issue_flags, ret, 0);
Jens Axboe3e4827b2020-01-08 15:18:09 -07004456 return 0;
4457#else
4458 return -EOPNOTSUPP;
4459#endif
4460}
4461
Jens Axboec1ca7572019-12-25 22:18:28 -07004462static int io_madvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4463{
4464#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
Pavel Begunkov26578cd2021-08-20 10:36:37 +01004465 if (sqe->ioprio || sqe->buf_index || sqe->off || sqe->splice_fd_in)
Jens Axboec1ca7572019-12-25 22:18:28 -07004466 return -EINVAL;
Pavel Begunkov3232dd02020-06-03 18:03:22 +03004467 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4468 return -EINVAL;
Jens Axboec1ca7572019-12-25 22:18:28 -07004469
4470 req->madvise.addr = READ_ONCE(sqe->addr);
4471 req->madvise.len = READ_ONCE(sqe->len);
4472 req->madvise.advice = READ_ONCE(sqe->fadvise_advice);
4473 return 0;
4474#else
4475 return -EOPNOTSUPP;
4476#endif
4477}
4478
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004479static int io_madvise(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboec1ca7572019-12-25 22:18:28 -07004480{
4481#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
4482 struct io_madvise *ma = &req->madvise;
4483 int ret;
4484
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004485 if (issue_flags & IO_URING_F_NONBLOCK)
Jens Axboec1ca7572019-12-25 22:18:28 -07004486 return -EAGAIN;
4487
Minchan Kim0726b012020-10-17 16:14:50 -07004488 ret = do_madvise(current->mm, ma->addr, ma->len, ma->advice);
Jens Axboec1ca7572019-12-25 22:18:28 -07004489 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004490 req_set_fail(req);
Jens Axboee1e16092020-06-22 09:17:17 -06004491 io_req_complete(req, ret);
Jens Axboec1ca7572019-12-25 22:18:28 -07004492 return 0;
4493#else
4494 return -EOPNOTSUPP;
4495#endif
4496}
4497
Jens Axboe4840e412019-12-25 22:03:45 -07004498static int io_fadvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4499{
Pavel Begunkov26578cd2021-08-20 10:36:37 +01004500 if (sqe->ioprio || sqe->buf_index || sqe->addr || sqe->splice_fd_in)
Jens Axboe4840e412019-12-25 22:03:45 -07004501 return -EINVAL;
Pavel Begunkov3232dd02020-06-03 18:03:22 +03004502 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4503 return -EINVAL;
Jens Axboe4840e412019-12-25 22:03:45 -07004504
4505 req->fadvise.offset = READ_ONCE(sqe->off);
4506 req->fadvise.len = READ_ONCE(sqe->len);
4507 req->fadvise.advice = READ_ONCE(sqe->fadvise_advice);
4508 return 0;
4509}
4510
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004511static int io_fadvise(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe4840e412019-12-25 22:03:45 -07004512{
4513 struct io_fadvise *fa = &req->fadvise;
4514 int ret;
4515
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004516 if (issue_flags & IO_URING_F_NONBLOCK) {
Jens Axboe3e694262020-02-01 09:22:49 -07004517 switch (fa->advice) {
4518 case POSIX_FADV_NORMAL:
4519 case POSIX_FADV_RANDOM:
4520 case POSIX_FADV_SEQUENTIAL:
4521 break;
4522 default:
4523 return -EAGAIN;
4524 }
4525 }
Jens Axboe4840e412019-12-25 22:03:45 -07004526
4527 ret = vfs_fadvise(req->file, fa->offset, fa->len, fa->advice);
4528 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004529 req_set_fail(req);
Pavel Begunkov0bdf3392021-04-11 01:46:29 +01004530 __io_req_complete(req, issue_flags, ret, 0);
Jens Axboe4840e412019-12-25 22:03:45 -07004531 return 0;
4532}
4533
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004534static int io_statx_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4535{
Pavel Begunkov2d74d042021-05-14 12:05:46 +01004536 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Pavel Begunkov3232dd02020-06-03 18:03:22 +03004537 return -EINVAL;
Pavel Begunkov26578cd2021-08-20 10:36:37 +01004538 if (sqe->ioprio || sqe->buf_index || sqe->splice_fd_in)
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004539 return -EINVAL;
Pavel Begunkov9c280f92020-04-08 08:58:46 +03004540 if (req->flags & REQ_F_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07004541 return -EBADF;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004542
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -07004543 req->statx.dfd = READ_ONCE(sqe->fd);
4544 req->statx.mask = READ_ONCE(sqe->len);
Bijan Mottahedehe62753e2020-05-22 21:31:18 -07004545 req->statx.filename = u64_to_user_ptr(READ_ONCE(sqe->addr));
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -07004546 req->statx.buffer = u64_to_user_ptr(READ_ONCE(sqe->addr2));
4547 req->statx.flags = READ_ONCE(sqe->statx_flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004548
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004549 return 0;
4550}
4551
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004552static int io_statx(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004553{
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -07004554 struct io_statx *ctx = &req->statx;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004555 int ret;
4556
Pavel Begunkov59d70012021-03-22 01:58:30 +00004557 if (issue_flags & IO_URING_F_NONBLOCK)
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004558 return -EAGAIN;
4559
Bijan Mottahedehe62753e2020-05-22 21:31:18 -07004560 ret = do_statx(ctx->dfd, ctx->filename, ctx->flags, ctx->mask,
4561 ctx->buffer);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004562
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004563 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004564 req_set_fail(req);
Jens Axboee1e16092020-06-22 09:17:17 -06004565 io_req_complete(req, ret);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004566 return 0;
4567}
4568
Jens Axboeb5dba592019-12-11 14:02:38 -07004569static int io_close_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4570{
Jens Axboe14587a462020-09-05 11:36:08 -06004571 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Pavel Begunkov3232dd02020-06-03 18:03:22 +03004572 return -EINVAL;
Jens Axboeb5dba592019-12-11 14:02:38 -07004573 if (sqe->ioprio || sqe->off || sqe->addr || sqe->len ||
Pavel Begunkov7df778b2021-09-24 20:04:29 +01004574 sqe->rw_flags || sqe->buf_index)
Jens Axboeb5dba592019-12-11 14:02:38 -07004575 return -EINVAL;
Pavel Begunkov9c280f92020-04-08 08:58:46 +03004576 if (req->flags & REQ_F_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07004577 return -EBADF;
Jens Axboeb5dba592019-12-11 14:02:38 -07004578
4579 req->close.fd = READ_ONCE(sqe->fd);
Pavel Begunkov7df778b2021-09-24 20:04:29 +01004580 req->close.file_slot = READ_ONCE(sqe->file_index);
4581 if (req->close.file_slot && req->close.fd)
4582 return -EINVAL;
4583
Jens Axboeb5dba592019-12-11 14:02:38 -07004584 return 0;
4585}
4586
Pavel Begunkov889fca72021-02-10 00:03:09 +00004587static int io_close(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboeb5dba592019-12-11 14:02:38 -07004588{
Jens Axboe9eac1902021-01-19 15:50:37 -07004589 struct files_struct *files = current->files;
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004590 struct io_close *close = &req->close;
Jens Axboe9eac1902021-01-19 15:50:37 -07004591 struct fdtable *fdt;
Pavel Begunkova1fde922021-04-11 01:46:28 +01004592 struct file *file = NULL;
4593 int ret = -EBADF;
Jens Axboeb5dba592019-12-11 14:02:38 -07004594
Pavel Begunkov7df778b2021-09-24 20:04:29 +01004595 if (req->close.file_slot) {
4596 ret = io_close_fixed(req, issue_flags);
4597 goto err;
4598 }
4599
Jens Axboe9eac1902021-01-19 15:50:37 -07004600 spin_lock(&files->file_lock);
4601 fdt = files_fdtable(files);
4602 if (close->fd >= fdt->max_fds) {
4603 spin_unlock(&files->file_lock);
4604 goto err;
4605 }
4606 file = fdt->fd[close->fd];
Pavel Begunkova1fde922021-04-11 01:46:28 +01004607 if (!file || file->f_op == &io_uring_fops) {
Jens Axboe9eac1902021-01-19 15:50:37 -07004608 spin_unlock(&files->file_lock);
4609 file = NULL;
4610 goto err;
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004611 }
Jens Axboeb5dba592019-12-11 14:02:38 -07004612
4613 /* if the file has a flush method, be safe and punt to async */
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004614 if (file->f_op->flush && (issue_flags & IO_URING_F_NONBLOCK)) {
Jens Axboe9eac1902021-01-19 15:50:37 -07004615 spin_unlock(&files->file_lock);
Pavel Begunkov0bf0eef2020-05-26 20:34:06 +03004616 return -EAGAIN;
Pavel Begunkova2100672020-03-02 23:45:16 +03004617 }
Jens Axboeb5dba592019-12-11 14:02:38 -07004618
Jens Axboe9eac1902021-01-19 15:50:37 -07004619 ret = __close_fd_get_file(close->fd, &file);
4620 spin_unlock(&files->file_lock);
4621 if (ret < 0) {
4622 if (ret == -ENOENT)
4623 ret = -EBADF;
4624 goto err;
4625 }
4626
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004627 /* No ->flush() or already async, safely close from here */
Jens Axboe9eac1902021-01-19 15:50:37 -07004628 ret = filp_close(file, current->files);
4629err:
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004630 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004631 req_set_fail(req);
Jens Axboe9eac1902021-01-19 15:50:37 -07004632 if (file)
4633 fput(file);
Pavel Begunkov889fca72021-02-10 00:03:09 +00004634 __io_req_complete(req, issue_flags, ret, 0);
Jens Axboe1a417f42020-01-31 17:16:48 -07004635 return 0;
Jens Axboeb5dba592019-12-11 14:02:38 -07004636}
4637
Pavel Begunkov1155c762021-02-18 18:29:38 +00004638static int io_sfr_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004639{
4640 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004641
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004642 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
4643 return -EINVAL;
Pavel Begunkov26578cd2021-08-20 10:36:37 +01004644 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index ||
4645 sqe->splice_fd_in))
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004646 return -EINVAL;
4647
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004648 req->sync.off = READ_ONCE(sqe->off);
4649 req->sync.len = READ_ONCE(sqe->len);
4650 req->sync.flags = READ_ONCE(sqe->sync_range_flags);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004651 return 0;
4652}
4653
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004654static int io_sync_file_range(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004655{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004656 int ret;
4657
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004658 /* sync_file_range always requires a blocking context */
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004659 if (issue_flags & IO_URING_F_NONBLOCK)
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004660 return -EAGAIN;
4661
Jens Axboe9adbd452019-12-20 08:45:55 -07004662 ret = sync_file_range(req->file, req->sync.off, req->sync.len,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004663 req->sync.flags);
4664 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004665 req_set_fail(req);
Jens Axboee1e16092020-06-22 09:17:17 -06004666 io_req_complete(req, ret);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004667 return 0;
4668}
4669
YueHaibing469956e2020-03-04 15:53:52 +08004670#if defined(CONFIG_NET)
Pavel Begunkov02d27d82020-02-28 10:36:36 +03004671static int io_setup_async_msg(struct io_kiocb *req,
4672 struct io_async_msghdr *kmsg)
4673{
Jens Axboee8c2bc12020-08-15 18:44:09 -07004674 struct io_async_msghdr *async_msg = req->async_data;
4675
4676 if (async_msg)
Pavel Begunkov02d27d82020-02-28 10:36:36 +03004677 return -EAGAIN;
Jens Axboee8c2bc12020-08-15 18:44:09 -07004678 if (io_alloc_async_data(req)) {
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004679 kfree(kmsg->free_iov);
Pavel Begunkov02d27d82020-02-28 10:36:36 +03004680 return -ENOMEM;
4681 }
Jens Axboee8c2bc12020-08-15 18:44:09 -07004682 async_msg = req->async_data;
Pavel Begunkov02d27d82020-02-28 10:36:36 +03004683 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboee8c2bc12020-08-15 18:44:09 -07004684 memcpy(async_msg, kmsg, sizeof(*kmsg));
Pavel Begunkov2a780802021-02-05 00:57:58 +00004685 async_msg->msg.msg_name = &async_msg->addr;
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004686 /* if were using fast_iov, set it to the new one */
4687 if (!async_msg->free_iov)
4688 async_msg->msg.msg_iter.iov = async_msg->fast_iov;
4689
Pavel Begunkov02d27d82020-02-28 10:36:36 +03004690 return -EAGAIN;
4691}
4692
Pavel Begunkov2ae523e2020-07-12 20:41:06 +03004693static int io_sendmsg_copy_hdr(struct io_kiocb *req,
4694 struct io_async_msghdr *iomsg)
4695{
Pavel Begunkov2ae523e2020-07-12 20:41:06 +03004696 iomsg->msg.msg_name = &iomsg->addr;
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004697 iomsg->free_iov = iomsg->fast_iov;
Pavel Begunkov2ae523e2020-07-12 20:41:06 +03004698 return sendmsg_copy_msghdr(&iomsg->msg, req->sr_msg.umsg,
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004699 req->sr_msg.msg_flags, &iomsg->free_iov);
Pavel Begunkov2ae523e2020-07-12 20:41:06 +03004700}
4701
Pavel Begunkov93642ef2021-02-18 18:29:44 +00004702static int io_sendmsg_prep_async(struct io_kiocb *req)
4703{
4704 int ret;
4705
Pavel Begunkov93642ef2021-02-18 18:29:44 +00004706 ret = io_sendmsg_copy_hdr(req, req->async_data);
4707 if (!ret)
4708 req->flags |= REQ_F_NEED_CLEANUP;
4709 return ret;
4710}
4711
Jens Axboe3529d8c2019-12-19 18:24:38 -07004712static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboeaa1fa282019-04-19 13:38:09 -06004713{
Jens Axboee47293f2019-12-20 08:58:21 -07004714 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe03b12302019-12-02 18:50:25 -07004715
Pavel Begunkovd2b6f482020-06-03 18:03:25 +03004716 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4717 return -EINVAL;
4718
Pavel Begunkov270a5942020-07-12 20:41:04 +03004719 sr->umsg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboefddafac2020-01-04 20:19:44 -07004720 sr->len = READ_ONCE(sqe->len);
Pavel Begunkov04411802021-04-01 15:44:00 +01004721 sr->msg_flags = READ_ONCE(sqe->msg_flags) | MSG_NOSIGNAL;
4722 if (sr->msg_flags & MSG_DONTWAIT)
4723 req->flags |= REQ_F_NOWAIT;
Jens Axboe3529d8c2019-12-19 18:24:38 -07004724
Jens Axboed8768362020-02-27 14:17:49 -07004725#ifdef CONFIG_COMPAT
4726 if (req->ctx->compat)
4727 sr->msg_flags |= MSG_CMSG_COMPAT;
4728#endif
Pavel Begunkov93642ef2021-02-18 18:29:44 +00004729 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07004730}
4731
Pavel Begunkov889fca72021-02-10 00:03:09 +00004732static int io_sendmsg(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe03b12302019-12-02 18:50:25 -07004733{
Pavel Begunkov6b754c82020-07-16 23:28:00 +03004734 struct io_async_msghdr iomsg, *kmsg;
Jens Axboe03b12302019-12-02 18:50:25 -07004735 struct socket *sock;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004736 unsigned flags;
Stefan Metzmacher00312752021-03-20 20:33:36 +01004737 int min_ret = 0;
Jens Axboe03b12302019-12-02 18:50:25 -07004738 int ret;
4739
Florent Revestdba4a922020-12-04 12:36:04 +01004740 sock = sock_from_file(req->file);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004741 if (unlikely(!sock))
Florent Revestdba4a922020-12-04 12:36:04 +01004742 return -ENOTSOCK;
Jens Axboe03b12302019-12-02 18:50:25 -07004743
Pavel Begunkovd886e182021-10-04 20:02:56 +01004744 if (req_has_async_data(req)) {
4745 kmsg = req->async_data;
4746 } else {
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004747 ret = io_sendmsg_copy_hdr(req, &iomsg);
Jens Axboefddafac2020-01-04 20:19:44 -07004748 if (ret)
4749 return ret;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004750 kmsg = &iomsg;
Jens Axboefddafac2020-01-04 20:19:44 -07004751 }
4752
Pavel Begunkov04411802021-04-01 15:44:00 +01004753 flags = req->sr_msg.msg_flags;
4754 if (issue_flags & IO_URING_F_NONBLOCK)
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004755 flags |= MSG_DONTWAIT;
Stefan Metzmacher00312752021-03-20 20:33:36 +01004756 if (flags & MSG_WAITALL)
4757 min_ret = iov_iter_count(&kmsg->msg.msg_iter);
4758
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004759 ret = __sys_sendmsg_sock(sock, &kmsg->msg, flags);
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004760 if ((issue_flags & IO_URING_F_NONBLOCK) && ret == -EAGAIN)
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004761 return io_setup_async_msg(req, kmsg);
4762 if (ret == -ERESTARTSYS)
4763 ret = -EINTR;
4764
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004765 /* fast path, check for non-NULL to avoid function call */
4766 if (kmsg->free_iov)
4767 kfree(kmsg->free_iov);
Jens Axboe03b12302019-12-02 18:50:25 -07004768 req->flags &= ~REQ_F_NEED_CLEANUP;
Stefan Metzmacher00312752021-03-20 20:33:36 +01004769 if (ret < min_ret)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004770 req_set_fail(req);
Pavel Begunkov889fca72021-02-10 00:03:09 +00004771 __io_req_complete(req, issue_flags, ret, 0);
Jens Axboefddafac2020-01-04 20:19:44 -07004772 return 0;
Jens Axboefddafac2020-01-04 20:19:44 -07004773}
4774
Pavel Begunkov889fca72021-02-10 00:03:09 +00004775static int io_send(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe03b12302019-12-02 18:50:25 -07004776{
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004777 struct io_sr_msg *sr = &req->sr_msg;
4778 struct msghdr msg;
4779 struct iovec iov;
Jens Axboe03b12302019-12-02 18:50:25 -07004780 struct socket *sock;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004781 unsigned flags;
Stefan Metzmacher00312752021-03-20 20:33:36 +01004782 int min_ret = 0;
Jens Axboe03b12302019-12-02 18:50:25 -07004783 int ret;
4784
Florent Revestdba4a922020-12-04 12:36:04 +01004785 sock = sock_from_file(req->file);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004786 if (unlikely(!sock))
Florent Revestdba4a922020-12-04 12:36:04 +01004787 return -ENOTSOCK;
Jens Axboe03b12302019-12-02 18:50:25 -07004788
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004789 ret = import_single_range(WRITE, sr->buf, sr->len, &iov, &msg.msg_iter);
4790 if (unlikely(ret))
Zheng Bin14db8412020-09-09 20:12:37 +08004791 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07004792
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004793 msg.msg_name = NULL;
4794 msg.msg_control = NULL;
4795 msg.msg_controllen = 0;
4796 msg.msg_namelen = 0;
Jens Axboe03b12302019-12-02 18:50:25 -07004797
Pavel Begunkov04411802021-04-01 15:44:00 +01004798 flags = req->sr_msg.msg_flags;
4799 if (issue_flags & IO_URING_F_NONBLOCK)
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004800 flags |= MSG_DONTWAIT;
Stefan Metzmacher00312752021-03-20 20:33:36 +01004801 if (flags & MSG_WAITALL)
4802 min_ret = iov_iter_count(&msg.msg_iter);
4803
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004804 msg.msg_flags = flags;
4805 ret = sock_sendmsg(sock, &msg);
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004806 if ((issue_flags & IO_URING_F_NONBLOCK) && ret == -EAGAIN)
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004807 return -EAGAIN;
4808 if (ret == -ERESTARTSYS)
4809 ret = -EINTR;
Jens Axboe03b12302019-12-02 18:50:25 -07004810
Stefan Metzmacher00312752021-03-20 20:33:36 +01004811 if (ret < min_ret)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004812 req_set_fail(req);
Pavel Begunkov889fca72021-02-10 00:03:09 +00004813 __io_req_complete(req, issue_flags, ret, 0);
Jens Axboe03b12302019-12-02 18:50:25 -07004814 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07004815}
4816
Pavel Begunkov1400e692020-07-12 20:41:05 +03004817static int __io_recvmsg_copy_hdr(struct io_kiocb *req,
4818 struct io_async_msghdr *iomsg)
Jens Axboe52de1fe2020-02-27 10:15:42 -07004819{
4820 struct io_sr_msg *sr = &req->sr_msg;
4821 struct iovec __user *uiov;
4822 size_t iov_len;
4823 int ret;
4824
Pavel Begunkov1400e692020-07-12 20:41:05 +03004825 ret = __copy_msghdr_from_user(&iomsg->msg, sr->umsg,
4826 &iomsg->uaddr, &uiov, &iov_len);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004827 if (ret)
4828 return ret;
4829
4830 if (req->flags & REQ_F_BUFFER_SELECT) {
4831 if (iov_len > 1)
4832 return -EINVAL;
Pavel Begunkov5476dfe2021-02-05 00:57:59 +00004833 if (copy_from_user(iomsg->fast_iov, uiov, sizeof(*uiov)))
Jens Axboe52de1fe2020-02-27 10:15:42 -07004834 return -EFAULT;
Pavel Begunkov5476dfe2021-02-05 00:57:59 +00004835 sr->len = iomsg->fast_iov[0].iov_len;
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004836 iomsg->free_iov = NULL;
Jens Axboe52de1fe2020-02-27 10:15:42 -07004837 } else {
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004838 iomsg->free_iov = iomsg->fast_iov;
Christoph Hellwig89cd35c2020-09-25 06:51:41 +02004839 ret = __import_iovec(READ, uiov, iov_len, UIO_FASTIOV,
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004840 &iomsg->free_iov, &iomsg->msg.msg_iter,
Christoph Hellwig89cd35c2020-09-25 06:51:41 +02004841 false);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004842 if (ret > 0)
4843 ret = 0;
4844 }
4845
4846 return ret;
4847}
4848
4849#ifdef CONFIG_COMPAT
4850static int __io_compat_recvmsg_copy_hdr(struct io_kiocb *req,
Pavel Begunkov1400e692020-07-12 20:41:05 +03004851 struct io_async_msghdr *iomsg)
Jens Axboe52de1fe2020-02-27 10:15:42 -07004852{
Jens Axboe52de1fe2020-02-27 10:15:42 -07004853 struct io_sr_msg *sr = &req->sr_msg;
4854 struct compat_iovec __user *uiov;
4855 compat_uptr_t ptr;
4856 compat_size_t len;
4857 int ret;
4858
Pavel Begunkov4af34172021-04-11 01:46:30 +01004859 ret = __get_compat_msghdr(&iomsg->msg, sr->umsg_compat, &iomsg->uaddr,
4860 &ptr, &len);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004861 if (ret)
4862 return ret;
4863
4864 uiov = compat_ptr(ptr);
4865 if (req->flags & REQ_F_BUFFER_SELECT) {
4866 compat_ssize_t clen;
4867
4868 if (len > 1)
4869 return -EINVAL;
4870 if (!access_ok(uiov, sizeof(*uiov)))
4871 return -EFAULT;
4872 if (__get_user(clen, &uiov->iov_len))
4873 return -EFAULT;
4874 if (clen < 0)
4875 return -EINVAL;
Pavel Begunkov2d280bc2020-11-29 18:33:32 +00004876 sr->len = clen;
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004877 iomsg->free_iov = NULL;
Jens Axboe52de1fe2020-02-27 10:15:42 -07004878 } else {
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004879 iomsg->free_iov = iomsg->fast_iov;
Christoph Hellwig89cd35c2020-09-25 06:51:41 +02004880 ret = __import_iovec(READ, (struct iovec __user *)uiov, len,
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004881 UIO_FASTIOV, &iomsg->free_iov,
Christoph Hellwig89cd35c2020-09-25 06:51:41 +02004882 &iomsg->msg.msg_iter, true);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004883 if (ret < 0)
4884 return ret;
4885 }
4886
4887 return 0;
4888}
Jens Axboe03b12302019-12-02 18:50:25 -07004889#endif
Jens Axboe52de1fe2020-02-27 10:15:42 -07004890
Pavel Begunkov1400e692020-07-12 20:41:05 +03004891static int io_recvmsg_copy_hdr(struct io_kiocb *req,
4892 struct io_async_msghdr *iomsg)
Jens Axboe52de1fe2020-02-27 10:15:42 -07004893{
Pavel Begunkov1400e692020-07-12 20:41:05 +03004894 iomsg->msg.msg_name = &iomsg->addr;
Jens Axboe52de1fe2020-02-27 10:15:42 -07004895
4896#ifdef CONFIG_COMPAT
4897 if (req->ctx->compat)
Pavel Begunkov1400e692020-07-12 20:41:05 +03004898 return __io_compat_recvmsg_copy_hdr(req, iomsg);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004899#endif
4900
Pavel Begunkov1400e692020-07-12 20:41:05 +03004901 return __io_recvmsg_copy_hdr(req, iomsg);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004902}
4903
Jens Axboebcda7ba2020-02-23 16:42:51 -07004904static struct io_buffer *io_recv_buffer_select(struct io_kiocb *req,
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004905 bool needs_lock)
Jens Axboebcda7ba2020-02-23 16:42:51 -07004906{
4907 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboebcda7ba2020-02-23 16:42:51 -07004908
Pavel Begunkov30d51dd2021-10-01 18:07:03 +01004909 return io_buffer_select(req, &sr->len, sr->bgid, needs_lock);
Jens Axboe03b12302019-12-02 18:50:25 -07004910}
4911
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004912static inline unsigned int io_put_recv_kbuf(struct io_kiocb *req)
4913{
Pavel Begunkov30d51dd2021-10-01 18:07:03 +01004914 return io_put_kbuf(req, req->kbuf);
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004915}
4916
Pavel Begunkov93642ef2021-02-18 18:29:44 +00004917static int io_recvmsg_prep_async(struct io_kiocb *req)
Jens Axboe03b12302019-12-02 18:50:25 -07004918{
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004919 int ret;
Jens Axboe06b76d42019-12-19 14:44:26 -07004920
Pavel Begunkov93642ef2021-02-18 18:29:44 +00004921 ret = io_recvmsg_copy_hdr(req, req->async_data);
4922 if (!ret)
4923 req->flags |= REQ_F_NEED_CLEANUP;
4924 return ret;
4925}
4926
4927static int io_recvmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4928{
4929 struct io_sr_msg *sr = &req->sr_msg;
4930
Pavel Begunkovd2b6f482020-06-03 18:03:25 +03004931 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4932 return -EINVAL;
4933
Pavel Begunkov270a5942020-07-12 20:41:04 +03004934 sr->umsg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboe0b7b21e2020-01-31 08:34:59 -07004935 sr->len = READ_ONCE(sqe->len);
Jens Axboebcda7ba2020-02-23 16:42:51 -07004936 sr->bgid = READ_ONCE(sqe->buf_group);
Pavel Begunkov04411802021-04-01 15:44:00 +01004937 sr->msg_flags = READ_ONCE(sqe->msg_flags) | MSG_NOSIGNAL;
4938 if (sr->msg_flags & MSG_DONTWAIT)
4939 req->flags |= REQ_F_NOWAIT;
Jens Axboe3529d8c2019-12-19 18:24:38 -07004940
Jens Axboed8768362020-02-27 14:17:49 -07004941#ifdef CONFIG_COMPAT
4942 if (req->ctx->compat)
4943 sr->msg_flags |= MSG_CMSG_COMPAT;
4944#endif
Pavel Begunkov93642ef2021-02-18 18:29:44 +00004945 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07004946}
4947
Pavel Begunkov889fca72021-02-10 00:03:09 +00004948static int io_recvmsg(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe03b12302019-12-02 18:50:25 -07004949{
Pavel Begunkov6b754c82020-07-16 23:28:00 +03004950 struct io_async_msghdr iomsg, *kmsg;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004951 struct socket *sock;
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004952 struct io_buffer *kbuf;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004953 unsigned flags;
Stefan Metzmacher00312752021-03-20 20:33:36 +01004954 int min_ret = 0;
Jens Axboe52de1fe2020-02-27 10:15:42 -07004955 int ret, cflags = 0;
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004956 bool force_nonblock = issue_flags & IO_URING_F_NONBLOCK;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004957
Florent Revestdba4a922020-12-04 12:36:04 +01004958 sock = sock_from_file(req->file);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004959 if (unlikely(!sock))
Florent Revestdba4a922020-12-04 12:36:04 +01004960 return -ENOTSOCK;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004961
Pavel Begunkovd886e182021-10-04 20:02:56 +01004962 if (req_has_async_data(req)) {
4963 kmsg = req->async_data;
4964 } else {
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004965 ret = io_recvmsg_copy_hdr(req, &iomsg);
4966 if (ret)
Pavel Begunkov681fda82020-07-15 22:20:45 +03004967 return ret;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004968 kmsg = &iomsg;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004969 }
4970
Pavel Begunkovbc02ef32020-07-16 23:28:03 +03004971 if (req->flags & REQ_F_BUFFER_SELECT) {
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004972 kbuf = io_recv_buffer_select(req, !force_nonblock);
Pavel Begunkovbc02ef32020-07-16 23:28:03 +03004973 if (IS_ERR(kbuf))
4974 return PTR_ERR(kbuf);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004975 kmsg->fast_iov[0].iov_base = u64_to_user_ptr(kbuf->addr);
Pavel Begunkov5476dfe2021-02-05 00:57:59 +00004976 kmsg->fast_iov[0].iov_len = req->sr_msg.len;
4977 iov_iter_init(&kmsg->msg.msg_iter, READ, kmsg->fast_iov,
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004978 1, req->sr_msg.len);
4979 }
4980
Pavel Begunkov04411802021-04-01 15:44:00 +01004981 flags = req->sr_msg.msg_flags;
4982 if (force_nonblock)
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004983 flags |= MSG_DONTWAIT;
Stefan Metzmacher00312752021-03-20 20:33:36 +01004984 if (flags & MSG_WAITALL)
4985 min_ret = iov_iter_count(&kmsg->msg.msg_iter);
4986
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004987 ret = __sys_recvmsg_sock(sock, &kmsg->msg, req->sr_msg.umsg,
4988 kmsg->uaddr, flags);
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03004989 if (force_nonblock && ret == -EAGAIN)
4990 return io_setup_async_msg(req, kmsg);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004991 if (ret == -ERESTARTSYS)
4992 ret = -EINTR;
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03004993
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004994 if (req->flags & REQ_F_BUFFER_SELECTED)
4995 cflags = io_put_recv_kbuf(req);
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004996 /* fast path, check for non-NULL to avoid function call */
4997 if (kmsg->free_iov)
4998 kfree(kmsg->free_iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004999 req->flags &= ~REQ_F_NEED_CLEANUP;
Stefan Metzmacher00312752021-03-20 20:33:36 +01005000 if (ret < min_ret || ((flags & MSG_WAITALL) && (kmsg->msg.msg_flags & (MSG_TRUNC | MSG_CTRUNC))))
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01005001 req_set_fail(req);
Pavel Begunkov889fca72021-02-10 00:03:09 +00005002 __io_req_complete(req, issue_flags, ret, cflags);
Jens Axboe0fa03c62019-04-19 13:34:07 -06005003 return 0;
Jens Axboe0fa03c62019-04-19 13:34:07 -06005004}
5005
Pavel Begunkov889fca72021-02-10 00:03:09 +00005006static int io_recv(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboefddafac2020-01-04 20:19:44 -07005007{
Pavel Begunkov6b754c82020-07-16 23:28:00 +03005008 struct io_buffer *kbuf;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03005009 struct io_sr_msg *sr = &req->sr_msg;
5010 struct msghdr msg;
5011 void __user *buf = sr->buf;
Jens Axboefddafac2020-01-04 20:19:44 -07005012 struct socket *sock;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03005013 struct iovec iov;
5014 unsigned flags;
Stefan Metzmacher00312752021-03-20 20:33:36 +01005015 int min_ret = 0;
Jens Axboebcda7ba2020-02-23 16:42:51 -07005016 int ret, cflags = 0;
Pavel Begunkov45d189c2021-02-10 00:03:07 +00005017 bool force_nonblock = issue_flags & IO_URING_F_NONBLOCK;
Jens Axboefddafac2020-01-04 20:19:44 -07005018
Florent Revestdba4a922020-12-04 12:36:04 +01005019 sock = sock_from_file(req->file);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03005020 if (unlikely(!sock))
Florent Revestdba4a922020-12-04 12:36:04 +01005021 return -ENOTSOCK;
Jens Axboefddafac2020-01-04 20:19:44 -07005022
Pavel Begunkovbc02ef32020-07-16 23:28:03 +03005023 if (req->flags & REQ_F_BUFFER_SELECT) {
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03005024 kbuf = io_recv_buffer_select(req, !force_nonblock);
Jens Axboebcda7ba2020-02-23 16:42:51 -07005025 if (IS_ERR(kbuf))
5026 return PTR_ERR(kbuf);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03005027 buf = u64_to_user_ptr(kbuf->addr);
Jens Axboefddafac2020-01-04 20:19:44 -07005028 }
5029
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03005030 ret = import_single_range(READ, buf, sr->len, &iov, &msg.msg_iter);
Pavel Begunkov14c32ee2020-07-16 23:28:01 +03005031 if (unlikely(ret))
5032 goto out_free;
Jens Axboefddafac2020-01-04 20:19:44 -07005033
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03005034 msg.msg_name = NULL;
5035 msg.msg_control = NULL;
5036 msg.msg_controllen = 0;
5037 msg.msg_namelen = 0;
5038 msg.msg_iocb = NULL;
5039 msg.msg_flags = 0;
5040
Pavel Begunkov04411802021-04-01 15:44:00 +01005041 flags = req->sr_msg.msg_flags;
5042 if (force_nonblock)
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03005043 flags |= MSG_DONTWAIT;
Stefan Metzmacher00312752021-03-20 20:33:36 +01005044 if (flags & MSG_WAITALL)
5045 min_ret = iov_iter_count(&msg.msg_iter);
5046
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03005047 ret = sock_recvmsg(sock, &msg, flags);
5048 if (force_nonblock && ret == -EAGAIN)
5049 return -EAGAIN;
5050 if (ret == -ERESTARTSYS)
5051 ret = -EINTR;
Pavel Begunkov14c32ee2020-07-16 23:28:01 +03005052out_free:
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03005053 if (req->flags & REQ_F_BUFFER_SELECTED)
5054 cflags = io_put_recv_kbuf(req);
Stefan Metzmacher00312752021-03-20 20:33:36 +01005055 if (ret < min_ret || ((flags & MSG_WAITALL) && (msg.msg_flags & (MSG_TRUNC | MSG_CTRUNC))))
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01005056 req_set_fail(req);
Pavel Begunkov889fca72021-02-10 00:03:09 +00005057 __io_req_complete(req, issue_flags, ret, cflags);
Jens Axboefddafac2020-01-04 20:19:44 -07005058 return 0;
Jens Axboefddafac2020-01-04 20:19:44 -07005059}
5060
Jens Axboe3529d8c2019-12-19 18:24:38 -07005061static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe17f2fe32019-10-17 14:42:58 -06005062{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005063 struct io_accept *accept = &req->accept;
5064
Jens Axboe14587a462020-09-05 11:36:08 -06005065 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe17f2fe32019-10-17 14:42:58 -06005066 return -EINVAL;
Pavel Begunkovaaa4db12021-08-25 12:25:47 +01005067 if (sqe->ioprio || sqe->len || sqe->buf_index)
Jens Axboe17f2fe32019-10-17 14:42:58 -06005068 return -EINVAL;
5069
Jens Axboed55e5f52019-12-11 16:12:15 -07005070 accept->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
5071 accept->addr_len = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005072 accept->flags = READ_ONCE(sqe->accept_flags);
Jens Axboe09952e32020-03-19 20:16:56 -06005073 accept->nofile = rlimit(RLIMIT_NOFILE);
Pavel Begunkova7083ad2021-08-25 12:25:46 +01005074
Pavel Begunkovaaa4db12021-08-25 12:25:47 +01005075 accept->file_slot = READ_ONCE(sqe->file_index);
5076 if (accept->file_slot && ((req->open.how.flags & O_CLOEXEC) ||
5077 (accept->flags & SOCK_CLOEXEC)))
5078 return -EINVAL;
Pavel Begunkova7083ad2021-08-25 12:25:46 +01005079 if (accept->flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
5080 return -EINVAL;
5081 if (SOCK_NONBLOCK != O_NONBLOCK && (accept->flags & SOCK_NONBLOCK))
5082 accept->flags = (accept->flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005083 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005084}
Jens Axboe17f2fe32019-10-17 14:42:58 -06005085
Pavel Begunkov889fca72021-02-10 00:03:09 +00005086static int io_accept(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005087{
5088 struct io_accept *accept = &req->accept;
Pavel Begunkov45d189c2021-02-10 00:03:07 +00005089 bool force_nonblock = issue_flags & IO_URING_F_NONBLOCK;
Pavel Begunkovac45abc2020-06-08 21:08:18 +03005090 unsigned int file_flags = force_nonblock ? O_NONBLOCK : 0;
Pavel Begunkovaaa4db12021-08-25 12:25:47 +01005091 bool fixed = !!accept->file_slot;
Pavel Begunkova7083ad2021-08-25 12:25:46 +01005092 struct file *file;
5093 int ret, fd;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005094
Jiufei Xuee697dee2020-06-10 13:41:59 +08005095 if (req->file->f_flags & O_NONBLOCK)
5096 req->flags |= REQ_F_NOWAIT;
5097
Pavel Begunkovaaa4db12021-08-25 12:25:47 +01005098 if (!fixed) {
5099 fd = __get_unused_fd_flags(accept->flags, accept->nofile);
5100 if (unlikely(fd < 0))
5101 return fd;
5102 }
Pavel Begunkova7083ad2021-08-25 12:25:46 +01005103 file = do_accept(req->file, file_flags, accept->addr, accept->addr_len,
5104 accept->flags);
5105 if (IS_ERR(file)) {
Pavel Begunkovaaa4db12021-08-25 12:25:47 +01005106 if (!fixed)
5107 put_unused_fd(fd);
Pavel Begunkova7083ad2021-08-25 12:25:46 +01005108 ret = PTR_ERR(file);
5109 if (ret == -EAGAIN && force_nonblock)
5110 return -EAGAIN;
Pavel Begunkovac45abc2020-06-08 21:08:18 +03005111 if (ret == -ERESTARTSYS)
5112 ret = -EINTR;
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01005113 req_set_fail(req);
Pavel Begunkovaaa4db12021-08-25 12:25:47 +01005114 } else if (!fixed) {
Pavel Begunkova7083ad2021-08-25 12:25:46 +01005115 fd_install(fd, file);
5116 ret = fd;
Pavel Begunkovaaa4db12021-08-25 12:25:47 +01005117 } else {
5118 ret = io_install_fixed_file(req, file, issue_flags,
5119 accept->file_slot - 1);
Pavel Begunkovac45abc2020-06-08 21:08:18 +03005120 }
Pavel Begunkov889fca72021-02-10 00:03:09 +00005121 __io_req_complete(req, issue_flags, ret, 0);
Jens Axboe17f2fe32019-10-17 14:42:58 -06005122 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005123}
5124
Pavel Begunkov93642ef2021-02-18 18:29:44 +00005125static int io_connect_prep_async(struct io_kiocb *req)
5126{
5127 struct io_async_connect *io = req->async_data;
5128 struct io_connect *conn = &req->connect;
5129
5130 return move_addr_to_kernel(conn->addr, conn->addr_len, &io->address);
5131}
5132
Jens Axboe3529d8c2019-12-19 18:24:38 -07005133static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef499a022019-12-02 16:28:46 -07005134{
Jens Axboe3529d8c2019-12-19 18:24:38 -07005135 struct io_connect *conn = &req->connect;
Jens Axboef499a022019-12-02 16:28:46 -07005136
Jens Axboe14587a462020-09-05 11:36:08 -06005137 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe3fbb51c2019-12-20 08:51:52 -07005138 return -EINVAL;
Pavel Begunkov26578cd2021-08-20 10:36:37 +01005139 if (sqe->ioprio || sqe->len || sqe->buf_index || sqe->rw_flags ||
5140 sqe->splice_fd_in)
Jens Axboe3fbb51c2019-12-20 08:51:52 -07005141 return -EINVAL;
5142
Jens Axboe3529d8c2019-12-19 18:24:38 -07005143 conn->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
5144 conn->addr_len = READ_ONCE(sqe->addr2);
Pavel Begunkov93642ef2021-02-18 18:29:44 +00005145 return 0;
Jens Axboef499a022019-12-02 16:28:46 -07005146}
5147
Pavel Begunkov889fca72021-02-10 00:03:09 +00005148static int io_connect(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboef8e85cf2019-11-23 14:24:24 -07005149{
Jens Axboee8c2bc12020-08-15 18:44:09 -07005150 struct io_async_connect __io, *io;
Jens Axboef8e85cf2019-11-23 14:24:24 -07005151 unsigned file_flags;
Jens Axboe3fbb51c2019-12-20 08:51:52 -07005152 int ret;
Pavel Begunkov45d189c2021-02-10 00:03:07 +00005153 bool force_nonblock = issue_flags & IO_URING_F_NONBLOCK;
Jens Axboef8e85cf2019-11-23 14:24:24 -07005154
Pavel Begunkovd886e182021-10-04 20:02:56 +01005155 if (req_has_async_data(req)) {
Jens Axboee8c2bc12020-08-15 18:44:09 -07005156 io = req->async_data;
Jens Axboef499a022019-12-02 16:28:46 -07005157 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07005158 ret = move_addr_to_kernel(req->connect.addr,
5159 req->connect.addr_len,
Jens Axboee8c2bc12020-08-15 18:44:09 -07005160 &__io.address);
Jens Axboef499a022019-12-02 16:28:46 -07005161 if (ret)
5162 goto out;
5163 io = &__io;
5164 }
5165
Jens Axboe3fbb51c2019-12-20 08:51:52 -07005166 file_flags = force_nonblock ? O_NONBLOCK : 0;
5167
Jens Axboee8c2bc12020-08-15 18:44:09 -07005168 ret = __sys_connect_file(req->file, &io->address,
Jens Axboe3fbb51c2019-12-20 08:51:52 -07005169 req->connect.addr_len, file_flags);
Jens Axboe87f80d62019-12-03 11:23:54 -07005170 if ((ret == -EAGAIN || ret == -EINPROGRESS) && force_nonblock) {
Pavel Begunkovd886e182021-10-04 20:02:56 +01005171 if (req_has_async_data(req))
Jens Axboeb7bb4f72019-12-15 22:13:43 -07005172 return -EAGAIN;
Jens Axboee8c2bc12020-08-15 18:44:09 -07005173 if (io_alloc_async_data(req)) {
Jens Axboef499a022019-12-02 16:28:46 -07005174 ret = -ENOMEM;
5175 goto out;
5176 }
Jens Axboee8c2bc12020-08-15 18:44:09 -07005177 memcpy(req->async_data, &__io, sizeof(__io));
Jens Axboef8e85cf2019-11-23 14:24:24 -07005178 return -EAGAIN;
Jens Axboef499a022019-12-02 16:28:46 -07005179 }
Jens Axboef8e85cf2019-11-23 14:24:24 -07005180 if (ret == -ERESTARTSYS)
5181 ret = -EINTR;
Jens Axboef499a022019-12-02 16:28:46 -07005182out:
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005183 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01005184 req_set_fail(req);
Pavel Begunkov889fca72021-02-10 00:03:09 +00005185 __io_req_complete(req, issue_flags, ret, 0);
Jens Axboef8e85cf2019-11-23 14:24:24 -07005186 return 0;
Jens Axboef8e85cf2019-11-23 14:24:24 -07005187}
YueHaibing469956e2020-03-04 15:53:52 +08005188#else /* !CONFIG_NET */
Jens Axboe99a10082021-02-19 09:35:19 -07005189#define IO_NETOP_FN(op) \
5190static int io_##op(struct io_kiocb *req, unsigned int issue_flags) \
5191{ \
5192 return -EOPNOTSUPP; \
Jens Axboef8e85cf2019-11-23 14:24:24 -07005193}
5194
Jens Axboe99a10082021-02-19 09:35:19 -07005195#define IO_NETOP_PREP(op) \
5196IO_NETOP_FN(op) \
5197static int io_##op##_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe) \
5198{ \
5199 return -EOPNOTSUPP; \
5200} \
5201
5202#define IO_NETOP_PREP_ASYNC(op) \
5203IO_NETOP_PREP(op) \
5204static int io_##op##_prep_async(struct io_kiocb *req) \
5205{ \
5206 return -EOPNOTSUPP; \
YueHaibing469956e2020-03-04 15:53:52 +08005207}
5208
Jens Axboe99a10082021-02-19 09:35:19 -07005209IO_NETOP_PREP_ASYNC(sendmsg);
5210IO_NETOP_PREP_ASYNC(recvmsg);
5211IO_NETOP_PREP_ASYNC(connect);
5212IO_NETOP_PREP(accept);
5213IO_NETOP_FN(send);
5214IO_NETOP_FN(recv);
YueHaibing469956e2020-03-04 15:53:52 +08005215#endif /* CONFIG_NET */
Jens Axboe17f2fe32019-10-17 14:42:58 -06005216
Jens Axboed7718a92020-02-14 22:23:12 -07005217struct io_poll_table {
5218 struct poll_table_struct pt;
5219 struct io_kiocb *req;
Pavel Begunkov68b11e82021-07-20 10:50:43 +01005220 int nr_entries;
Jens Axboed7718a92020-02-14 22:23:12 -07005221 int error;
5222};
5223
Jens Axboed7718a92020-02-14 22:23:12 -07005224static int __io_async_wake(struct io_kiocb *req, struct io_poll_iocb *poll,
Pavel Begunkov5b0a6ac2021-06-30 21:54:04 +01005225 __poll_t mask, io_req_tw_func_t func)
Jens Axboed7718a92020-02-14 22:23:12 -07005226{
Jens Axboed7718a92020-02-14 22:23:12 -07005227 /* for instances that support it check for an event match first: */
5228 if (mask && !(mask & poll->events))
5229 return 0;
5230
5231 trace_io_uring_task_add(req->ctx, req->opcode, req->user_data, mask);
5232
5233 list_del_init(&poll->wait.entry);
5234
Jens Axboed7718a92020-02-14 22:23:12 -07005235 req->result = mask;
Pavel Begunkov5b0a6ac2021-06-30 21:54:04 +01005236 req->io_task_work.func = func;
Jens Axboe6d816e02020-08-11 08:04:14 -06005237
Jens Axboed7718a92020-02-14 22:23:12 -07005238 /*
Jens Axboee3aabf92020-05-18 11:04:17 -06005239 * If this fails, then the task is exiting. When a task exits, the
5240 * work gets canceled, so just cancel this request as well instead
5241 * of executing it. We can't safely execute it anyway, as we may not
5242 * have the needed state needed for it anyway.
Jens Axboed7718a92020-02-14 22:23:12 -07005243 */
Pavel Begunkove09ee512021-07-01 13:26:05 +01005244 io_req_task_work_add(req);
Jens Axboed7718a92020-02-14 22:23:12 -07005245 return 1;
5246}
5247
Jens Axboe74ce6ce2020-04-13 11:09:12 -06005248static bool io_poll_rewait(struct io_kiocb *req, struct io_poll_iocb *poll)
5249 __acquires(&req->ctx->completion_lock)
5250{
5251 struct io_ring_ctx *ctx = req->ctx;
5252
Jens Axboe316319e2021-08-19 09:41:42 -06005253 /* req->task == current here, checking PF_EXITING is safe */
Pavel Begunkove09ee512021-07-01 13:26:05 +01005254 if (unlikely(req->task->flags & PF_EXITING))
5255 WRITE_ONCE(poll->canceled, true);
5256
Jens Axboe74ce6ce2020-04-13 11:09:12 -06005257 if (!req->result && !READ_ONCE(poll->canceled)) {
5258 struct poll_table_struct pt = { ._key = poll->events };
5259
5260 req->result = vfs_poll(req->file, &pt) & poll->events;
5261 }
5262
Jens Axboe79ebeae2021-08-10 15:18:27 -06005263 spin_lock(&ctx->completion_lock);
Jens Axboe74ce6ce2020-04-13 11:09:12 -06005264 if (!req->result && !READ_ONCE(poll->canceled)) {
5265 add_wait_queue(poll->head, &poll->wait);
5266 return true;
5267 }
5268
5269 return false;
5270}
5271
Jens Axboed4e7cd32020-08-15 11:44:50 -07005272static struct io_poll_iocb *io_poll_get_double(struct io_kiocb *req)
Jens Axboe18bceab2020-05-15 11:56:54 -06005273{
Jens Axboee8c2bc12020-08-15 18:44:09 -07005274 /* pure poll stashes this in ->async_data, poll driven retry elsewhere */
Jens Axboed4e7cd32020-08-15 11:44:50 -07005275 if (req->opcode == IORING_OP_POLL_ADD)
Jens Axboee8c2bc12020-08-15 18:44:09 -07005276 return req->async_data;
Jens Axboed4e7cd32020-08-15 11:44:50 -07005277 return req->apoll->double_poll;
5278}
5279
5280static struct io_poll_iocb *io_poll_get_single(struct io_kiocb *req)
5281{
5282 if (req->opcode == IORING_OP_POLL_ADD)
5283 return &req->poll;
5284 return &req->apoll->poll;
5285}
5286
5287static void io_poll_remove_double(struct io_kiocb *req)
Pavel Begunkove07785b2021-04-01 15:43:57 +01005288 __must_hold(&req->ctx->completion_lock)
Jens Axboed4e7cd32020-08-15 11:44:50 -07005289{
5290 struct io_poll_iocb *poll = io_poll_get_double(req);
Jens Axboe18bceab2020-05-15 11:56:54 -06005291
5292 lockdep_assert_held(&req->ctx->completion_lock);
5293
5294 if (poll && poll->head) {
5295 struct wait_queue_head *head = poll->head;
5296
Jens Axboe79ebeae2021-08-10 15:18:27 -06005297 spin_lock_irq(&head->lock);
Jens Axboe18bceab2020-05-15 11:56:54 -06005298 list_del_init(&poll->wait.entry);
5299 if (poll->wait.private)
Jens Axboede9b4cc2021-02-24 13:28:27 -07005300 req_ref_put(req);
Jens Axboe18bceab2020-05-15 11:56:54 -06005301 poll->head = NULL;
Jens Axboe79ebeae2021-08-10 15:18:27 -06005302 spin_unlock_irq(&head->lock);
Jens Axboe18bceab2020-05-15 11:56:54 -06005303 }
5304}
5305
Xiaoguang Wang31efe482021-09-03 22:24:36 +08005306static bool __io_poll_complete(struct io_kiocb *req, __poll_t mask)
Pavel Begunkove07785b2021-04-01 15:43:57 +01005307 __must_hold(&req->ctx->completion_lock)
Jens Axboe18bceab2020-05-15 11:56:54 -06005308{
5309 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe88e41cf2021-02-22 22:08:01 -07005310 unsigned flags = IORING_CQE_F_MORE;
Pavel Begunkove27414b2021-04-09 09:13:20 +01005311 int error;
Jens Axboe18bceab2020-05-15 11:56:54 -06005312
Pavel Begunkove27414b2021-04-09 09:13:20 +01005313 if (READ_ONCE(req->poll.canceled)) {
Jens Axboe45ab03b2021-02-23 08:19:33 -07005314 error = -ECANCELED;
Jens Axboe88e41cf2021-02-22 22:08:01 -07005315 req->poll.events |= EPOLLONESHOT;
Pavel Begunkove27414b2021-04-09 09:13:20 +01005316 } else {
Jens Axboe50826202021-02-23 09:02:26 -07005317 error = mangle_poll(mask);
Pavel Begunkove27414b2021-04-09 09:13:20 +01005318 }
Jens Axboeb69de282021-03-17 08:37:41 -06005319 if (req->poll.events & EPOLLONESHOT)
5320 flags = 0;
Hao Xua62682f2021-09-22 18:12:37 +08005321 if (!io_cqring_fill_event(ctx, req->user_data, error, flags)) {
5322 req->poll.events |= EPOLLONESHOT;
Jens Axboe88e41cf2021-02-22 22:08:01 -07005323 flags = 0;
Hao Xua62682f2021-09-22 18:12:37 +08005324 }
Hao Xu7b289c32021-04-13 15:20:39 +08005325 if (flags & IORING_CQE_F_MORE)
5326 ctx->cq_extra++;
5327
Jens Axboe88e41cf2021-02-22 22:08:01 -07005328 return !(flags & IORING_CQE_F_MORE);
Jens Axboe18bceab2020-05-15 11:56:54 -06005329}
5330
Pavel Begunkovf237c302021-08-18 12:42:46 +01005331static void io_poll_task_func(struct io_kiocb *req, bool *locked)
Jens Axboe18bceab2020-05-15 11:56:54 -06005332{
Jens Axboe6d816e02020-08-11 08:04:14 -06005333 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovdd221f462020-10-18 10:17:42 +01005334 struct io_kiocb *nxt;
Jens Axboe18bceab2020-05-15 11:56:54 -06005335
Pavel Begunkovdd221f462020-10-18 10:17:42 +01005336 if (io_poll_rewait(req, &req->poll)) {
Jens Axboe79ebeae2021-08-10 15:18:27 -06005337 spin_unlock(&ctx->completion_lock);
Pavel Begunkovdd221f462020-10-18 10:17:42 +01005338 } else {
Pavel Begunkovf40b9642021-04-09 09:13:19 +01005339 bool done;
Jens Axboe88e41cf2021-02-22 22:08:01 -07005340
Hao Xu5b7aa382021-09-22 18:12:38 +08005341 if (req->poll.done) {
5342 spin_unlock(&ctx->completion_lock);
5343 return;
5344 }
Xiaoguang Wang31efe482021-09-03 22:24:36 +08005345 done = __io_poll_complete(req, req->result);
Jens Axboe88e41cf2021-02-22 22:08:01 -07005346 if (done) {
Hao Xua890d012021-07-28 11:03:22 +08005347 io_poll_remove_double(req);
Jens Axboe88e41cf2021-02-22 22:08:01 -07005348 hash_del(&req->hash_node);
Hao Xubd99c712021-09-22 18:12:36 +08005349 req->poll.done = true;
Pavel Begunkovf40b9642021-04-09 09:13:19 +01005350 } else {
Jens Axboe88e41cf2021-02-22 22:08:01 -07005351 req->result = 0;
5352 add_wait_queue(req->poll.head, &req->poll.wait);
5353 }
Xiaoguang Wang31efe482021-09-03 22:24:36 +08005354 io_commit_cqring(ctx);
Jens Axboe79ebeae2021-08-10 15:18:27 -06005355 spin_unlock(&ctx->completion_lock);
Pavel Begunkovdd221f462020-10-18 10:17:42 +01005356 io_cqring_ev_posted(ctx);
Pavel Begunkovdd221f462020-10-18 10:17:42 +01005357
Jens Axboe88e41cf2021-02-22 22:08:01 -07005358 if (done) {
5359 nxt = io_put_req_find_next(req);
5360 if (nxt)
Pavel Begunkovf237c302021-08-18 12:42:46 +01005361 io_req_task_submit(nxt, locked);
Jens Axboe88e41cf2021-02-22 22:08:01 -07005362 }
Pavel Begunkovea1164e2020-06-30 15:20:41 +03005363 }
Jens Axboe18bceab2020-05-15 11:56:54 -06005364}
5365
5366static int io_poll_double_wake(struct wait_queue_entry *wait, unsigned mode,
5367 int sync, void *key)
5368{
5369 struct io_kiocb *req = wait->private;
Jens Axboed4e7cd32020-08-15 11:44:50 -07005370 struct io_poll_iocb *poll = io_poll_get_single(req);
Jens Axboe18bceab2020-05-15 11:56:54 -06005371 __poll_t mask = key_to_poll(key);
Jens Axboe79ebeae2021-08-10 15:18:27 -06005372 unsigned long flags;
Jens Axboe18bceab2020-05-15 11:56:54 -06005373
5374 /* for instances that support it check for an event match first: */
5375 if (mask && !(mask & poll->events))
5376 return 0;
Jens Axboe88e41cf2021-02-22 22:08:01 -07005377 if (!(poll->events & EPOLLONESHOT))
5378 return poll->wait.func(&poll->wait, mode, sync, key);
Jens Axboe18bceab2020-05-15 11:56:54 -06005379
Jens Axboe8706e042020-09-28 08:38:54 -06005380 list_del_init(&wait->entry);
5381
Jens Axboe9ce85ef2021-07-09 08:20:28 -06005382 if (poll->head) {
Jens Axboe18bceab2020-05-15 11:56:54 -06005383 bool done;
5384
Jens Axboe79ebeae2021-08-10 15:18:27 -06005385 spin_lock_irqsave(&poll->head->lock, flags);
Jens Axboe807abcb2020-07-17 17:09:27 -06005386 done = list_empty(&poll->wait.entry);
Jens Axboe18bceab2020-05-15 11:56:54 -06005387 if (!done)
Jens Axboe807abcb2020-07-17 17:09:27 -06005388 list_del_init(&poll->wait.entry);
Jens Axboed4e7cd32020-08-15 11:44:50 -07005389 /* make sure double remove sees this as being gone */
5390 wait->private = NULL;
Jens Axboe79ebeae2021-08-10 15:18:27 -06005391 spin_unlock_irqrestore(&poll->head->lock, flags);
Jens Axboec8b5e262020-10-25 13:53:26 -06005392 if (!done) {
5393 /* use wait func handler, so it matches the rq type */
5394 poll->wait.func(&poll->wait, mode, sync, key);
5395 }
Jens Axboe18bceab2020-05-15 11:56:54 -06005396 }
Jens Axboede9b4cc2021-02-24 13:28:27 -07005397 req_ref_put(req);
Jens Axboe18bceab2020-05-15 11:56:54 -06005398 return 1;
5399}
5400
5401static void io_init_poll_iocb(struct io_poll_iocb *poll, __poll_t events,
5402 wait_queue_func_t wake_func)
5403{
5404 poll->head = NULL;
5405 poll->done = false;
5406 poll->canceled = false;
Jens Axboe464dca62021-03-19 14:06:24 -06005407#define IO_POLL_UNMASK (EPOLLERR|EPOLLHUP|EPOLLNVAL|EPOLLRDHUP)
5408 /* mask in events that we always want/need */
5409 poll->events = events | IO_POLL_UNMASK;
Jens Axboe18bceab2020-05-15 11:56:54 -06005410 INIT_LIST_HEAD(&poll->wait.entry);
5411 init_waitqueue_func_entry(&poll->wait, wake_func);
5412}
5413
5414static void __io_queue_proc(struct io_poll_iocb *poll, struct io_poll_table *pt,
Jens Axboe807abcb2020-07-17 17:09:27 -06005415 struct wait_queue_head *head,
5416 struct io_poll_iocb **poll_ptr)
Jens Axboe18bceab2020-05-15 11:56:54 -06005417{
5418 struct io_kiocb *req = pt->req;
5419
5420 /*
Pavel Begunkov68b11e82021-07-20 10:50:43 +01005421 * The file being polled uses multiple waitqueues for poll handling
5422 * (e.g. one for read, one for write). Setup a separate io_poll_iocb
5423 * if this happens.
Jens Axboe18bceab2020-05-15 11:56:54 -06005424 */
Pavel Begunkov68b11e82021-07-20 10:50:43 +01005425 if (unlikely(pt->nr_entries)) {
Pavel Begunkov58852d42020-10-16 20:55:56 +01005426 struct io_poll_iocb *poll_one = poll;
5427
Pavel Begunkov23a65db2021-08-17 20:28:11 +01005428 /* double add on the same waitqueue head, ignore */
5429 if (poll_one->head == head)
5430 return;
Jens Axboe18bceab2020-05-15 11:56:54 -06005431 /* already have a 2nd entry, fail a third attempt */
Jens Axboe807abcb2020-07-17 17:09:27 -06005432 if (*poll_ptr) {
Pavel Begunkov23a65db2021-08-17 20:28:11 +01005433 if ((*poll_ptr)->head == head)
5434 return;
Jens Axboe18bceab2020-05-15 11:56:54 -06005435 pt->error = -EINVAL;
5436 return;
5437 }
Jens Axboeea6a693d2021-04-15 09:47:13 -06005438 /*
5439 * Can't handle multishot for double wait for now, turn it
5440 * into one-shot mode.
5441 */
Pavel Begunkov7a274722021-05-17 12:43:34 +01005442 if (!(poll_one->events & EPOLLONESHOT))
5443 poll_one->events |= EPOLLONESHOT;
Jens Axboe18bceab2020-05-15 11:56:54 -06005444 poll = kmalloc(sizeof(*poll), GFP_ATOMIC);
5445 if (!poll) {
5446 pt->error = -ENOMEM;
5447 return;
5448 }
Pavel Begunkov58852d42020-10-16 20:55:56 +01005449 io_init_poll_iocb(poll, poll_one->events, io_poll_double_wake);
Jens Axboede9b4cc2021-02-24 13:28:27 -07005450 req_ref_get(req);
Jens Axboe18bceab2020-05-15 11:56:54 -06005451 poll->wait.private = req;
Pavel Begunkovd886e182021-10-04 20:02:56 +01005452
Jens Axboe807abcb2020-07-17 17:09:27 -06005453 *poll_ptr = poll;
Pavel Begunkovd886e182021-10-04 20:02:56 +01005454 if (req->opcode == IORING_OP_POLL_ADD)
5455 req->flags |= REQ_F_ASYNC_DATA;
Jens Axboe18bceab2020-05-15 11:56:54 -06005456 }
5457
Pavel Begunkov68b11e82021-07-20 10:50:43 +01005458 pt->nr_entries++;
Jens Axboe18bceab2020-05-15 11:56:54 -06005459 poll->head = head;
Jiufei Xuea31eb4a2020-06-17 17:53:56 +08005460
5461 if (poll->events & EPOLLEXCLUSIVE)
5462 add_wait_queue_exclusive(head, &poll->wait);
5463 else
5464 add_wait_queue(head, &poll->wait);
Jens Axboe18bceab2020-05-15 11:56:54 -06005465}
5466
5467static void io_async_queue_proc(struct file *file, struct wait_queue_head *head,
5468 struct poll_table_struct *p)
5469{
5470 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
Jens Axboe807abcb2020-07-17 17:09:27 -06005471 struct async_poll *apoll = pt->req->apoll;
Jens Axboe18bceab2020-05-15 11:56:54 -06005472
Jens Axboe807abcb2020-07-17 17:09:27 -06005473 __io_queue_proc(&apoll->poll, pt, head, &apoll->double_poll);
Jens Axboe18bceab2020-05-15 11:56:54 -06005474}
5475
Pavel Begunkovf237c302021-08-18 12:42:46 +01005476static void io_async_task_func(struct io_kiocb *req, bool *locked)
Jens Axboed7718a92020-02-14 22:23:12 -07005477{
Jens Axboed7718a92020-02-14 22:23:12 -07005478 struct async_poll *apoll = req->apoll;
5479 struct io_ring_ctx *ctx = req->ctx;
5480
Olivier Langlois236daeae2021-05-31 02:36:37 -04005481 trace_io_uring_task_run(req->ctx, req, req->opcode, req->user_data);
Jens Axboed7718a92020-02-14 22:23:12 -07005482
Jens Axboe74ce6ce2020-04-13 11:09:12 -06005483 if (io_poll_rewait(req, &apoll->poll)) {
Jens Axboe79ebeae2021-08-10 15:18:27 -06005484 spin_unlock(&ctx->completion_lock);
Jens Axboe74ce6ce2020-04-13 11:09:12 -06005485 return;
Jens Axboed7718a92020-02-14 22:23:12 -07005486 }
5487
Pavel Begunkov0ea13b42021-04-09 09:13:21 +01005488 hash_del(&req->hash_node);
Jens Axboed4e7cd32020-08-15 11:44:50 -07005489 io_poll_remove_double(req);
Hao Xubd99c712021-09-22 18:12:36 +08005490 apoll->poll.done = true;
Jens Axboe79ebeae2021-08-10 15:18:27 -06005491 spin_unlock(&ctx->completion_lock);
Jens Axboe74ce6ce2020-04-13 11:09:12 -06005492
Pavel Begunkov0be0b0e2020-06-30 15:20:42 +03005493 if (!READ_ONCE(apoll->poll.canceled))
Pavel Begunkovf237c302021-08-18 12:42:46 +01005494 io_req_task_submit(req, locked);
Pavel Begunkov0be0b0e2020-06-30 15:20:42 +03005495 else
Pavel Begunkov25935532021-03-19 17:22:40 +00005496 io_req_complete_failed(req, -ECANCELED);
Jens Axboed7718a92020-02-14 22:23:12 -07005497}
5498
5499static int io_async_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
5500 void *key)
5501{
5502 struct io_kiocb *req = wait->private;
5503 struct io_poll_iocb *poll = &req->apoll->poll;
5504
5505 trace_io_uring_poll_wake(req->ctx, req->opcode, req->user_data,
5506 key_to_poll(key));
5507
5508 return __io_async_wake(req, poll, key_to_poll(key), io_async_task_func);
5509}
5510
5511static void io_poll_req_insert(struct io_kiocb *req)
5512{
5513 struct io_ring_ctx *ctx = req->ctx;
5514 struct hlist_head *list;
5515
5516 list = &ctx->cancel_hash[hash_long(req->user_data, ctx->cancel_hash_bits)];
5517 hlist_add_head(&req->hash_node, list);
5518}
5519
5520static __poll_t __io_arm_poll_handler(struct io_kiocb *req,
5521 struct io_poll_iocb *poll,
5522 struct io_poll_table *ipt, __poll_t mask,
5523 wait_queue_func_t wake_func)
5524 __acquires(&ctx->completion_lock)
5525{
5526 struct io_ring_ctx *ctx = req->ctx;
5527 bool cancel = false;
5528
Pavel Begunkov4d52f332020-10-18 10:17:43 +01005529 INIT_HLIST_NODE(&req->hash_node);
Jens Axboe18bceab2020-05-15 11:56:54 -06005530 io_init_poll_iocb(poll, mask, wake_func);
Pavel Begunkovb90cd192020-06-21 13:09:52 +03005531 poll->file = req->file;
Jens Axboe18bceab2020-05-15 11:56:54 -06005532 poll->wait.private = req;
Jens Axboed7718a92020-02-14 22:23:12 -07005533
5534 ipt->pt._key = mask;
5535 ipt->req = req;
Pavel Begunkov68b11e82021-07-20 10:50:43 +01005536 ipt->error = 0;
5537 ipt->nr_entries = 0;
Jens Axboed7718a92020-02-14 22:23:12 -07005538
Jens Axboed7718a92020-02-14 22:23:12 -07005539 mask = vfs_poll(req->file, &ipt->pt) & poll->events;
Pavel Begunkov68b11e82021-07-20 10:50:43 +01005540 if (unlikely(!ipt->nr_entries) && !ipt->error)
5541 ipt->error = -EINVAL;
Jens Axboed7718a92020-02-14 22:23:12 -07005542
Jens Axboe79ebeae2021-08-10 15:18:27 -06005543 spin_lock(&ctx->completion_lock);
Hao Xua890d012021-07-28 11:03:22 +08005544 if (ipt->error || (mask && (poll->events & EPOLLONESHOT)))
Pavel Begunkov46fee9a2021-07-20 10:50:44 +01005545 io_poll_remove_double(req);
Jens Axboed7718a92020-02-14 22:23:12 -07005546 if (likely(poll->head)) {
Jens Axboe79ebeae2021-08-10 15:18:27 -06005547 spin_lock_irq(&poll->head->lock);
Jens Axboed7718a92020-02-14 22:23:12 -07005548 if (unlikely(list_empty(&poll->wait.entry))) {
5549 if (ipt->error)
5550 cancel = true;
5551 ipt->error = 0;
5552 mask = 0;
5553 }
Jens Axboe88e41cf2021-02-22 22:08:01 -07005554 if ((mask && (poll->events & EPOLLONESHOT)) || ipt->error)
Jens Axboed7718a92020-02-14 22:23:12 -07005555 list_del_init(&poll->wait.entry);
5556 else if (cancel)
5557 WRITE_ONCE(poll->canceled, true);
5558 else if (!poll->done) /* actually waiting for an event */
5559 io_poll_req_insert(req);
Jens Axboe79ebeae2021-08-10 15:18:27 -06005560 spin_unlock_irq(&poll->head->lock);
Jens Axboed7718a92020-02-14 22:23:12 -07005561 }
5562
5563 return mask;
5564}
5565
Olivier Langlois59b735a2021-06-22 05:17:39 -07005566enum {
5567 IO_APOLL_OK,
5568 IO_APOLL_ABORTED,
5569 IO_APOLL_READY
5570};
5571
5572static int io_arm_poll_handler(struct io_kiocb *req)
Jens Axboed7718a92020-02-14 22:23:12 -07005573{
5574 const struct io_op_def *def = &io_op_defs[req->opcode];
5575 struct io_ring_ctx *ctx = req->ctx;
5576 struct async_poll *apoll;
5577 struct io_poll_table ipt;
Pavel Begunkovb2d9c3d2021-06-26 21:40:44 +01005578 __poll_t ret, mask = EPOLLONESHOT | POLLERR | POLLPRI;
Jens Axboe9dab14b2020-08-25 12:27:50 -06005579 int rw;
Jens Axboed7718a92020-02-14 22:23:12 -07005580
5581 if (!req->file || !file_can_poll(req->file))
Olivier Langlois59b735a2021-06-22 05:17:39 -07005582 return IO_APOLL_ABORTED;
Pavel Begunkov24c74672020-06-21 13:09:51 +03005583 if (req->flags & REQ_F_POLLED)
Olivier Langlois59b735a2021-06-22 05:17:39 -07005584 return IO_APOLL_ABORTED;
Pavel Begunkovb2d9c3d2021-06-26 21:40:44 +01005585 if (!def->pollin && !def->pollout)
Olivier Langlois59b735a2021-06-22 05:17:39 -07005586 return IO_APOLL_ABORTED;
Pavel Begunkovb2d9c3d2021-06-26 21:40:44 +01005587
5588 if (def->pollin) {
5589 rw = READ;
5590 mask |= POLLIN | POLLRDNORM;
5591
5592 /* If reading from MSG_ERRQUEUE using recvmsg, ignore POLLIN */
5593 if ((req->opcode == IORING_OP_RECVMSG) &&
5594 (req->sr_msg.msg_flags & MSG_ERRQUEUE))
5595 mask &= ~POLLIN;
5596 } else {
5597 rw = WRITE;
5598 mask |= POLLOUT | POLLWRNORM;
5599 }
5600
Jens Axboe9dab14b2020-08-25 12:27:50 -06005601 /* if we can't nonblock try, then no point in arming a poll handler */
Pavel Begunkovb191e2d2021-08-09 13:04:03 +01005602 if (!io_file_supports_nowait(req, rw))
Olivier Langlois59b735a2021-06-22 05:17:39 -07005603 return IO_APOLL_ABORTED;
Jens Axboed7718a92020-02-14 22:23:12 -07005604
5605 apoll = kmalloc(sizeof(*apoll), GFP_ATOMIC);
5606 if (unlikely(!apoll))
Olivier Langlois59b735a2021-06-22 05:17:39 -07005607 return IO_APOLL_ABORTED;
Jens Axboe807abcb2020-07-17 17:09:27 -06005608 apoll->double_poll = NULL;
Jens Axboed7718a92020-02-14 22:23:12 -07005609 req->apoll = apoll;
Pavel Begunkovb2d9c3d2021-06-26 21:40:44 +01005610 req->flags |= REQ_F_POLLED;
Jens Axboed7718a92020-02-14 22:23:12 -07005611 ipt.pt._qproc = io_async_queue_proc;
Pavel Begunkov48dcd382021-08-15 10:40:18 +01005612 io_req_set_refcount(req);
Jens Axboed7718a92020-02-14 22:23:12 -07005613
5614 ret = __io_arm_poll_handler(req, &apoll->poll, &ipt, mask,
5615 io_async_wake);
Jens Axboe79ebeae2021-08-10 15:18:27 -06005616 spin_unlock(&ctx->completion_lock);
Hao Xu41a51692021-08-12 15:47:02 +08005617 if (ret || ipt.error)
5618 return ret ? IO_APOLL_READY : IO_APOLL_ABORTED;
5619
Olivier Langlois236daeae2021-05-31 02:36:37 -04005620 trace_io_uring_poll_arm(ctx, req, req->opcode, req->user_data,
5621 mask, apoll->poll.events);
Olivier Langlois59b735a2021-06-22 05:17:39 -07005622 return IO_APOLL_OK;
Jens Axboed7718a92020-02-14 22:23:12 -07005623}
5624
5625static bool __io_poll_remove_one(struct io_kiocb *req,
Jens Axboeb2e720a2021-03-31 09:03:03 -06005626 struct io_poll_iocb *poll, bool do_cancel)
Pavel Begunkove07785b2021-04-01 15:43:57 +01005627 __must_hold(&req->ctx->completion_lock)
Jens Axboed7718a92020-02-14 22:23:12 -07005628{
Jens Axboeb41e9852020-02-17 09:52:41 -07005629 bool do_complete = false;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005630
Jens Axboe50826202021-02-23 09:02:26 -07005631 if (!poll->head)
5632 return false;
Jens Axboe79ebeae2021-08-10 15:18:27 -06005633 spin_lock_irq(&poll->head->lock);
Jens Axboeb2e720a2021-03-31 09:03:03 -06005634 if (do_cancel)
5635 WRITE_ONCE(poll->canceled, true);
Jens Axboe392edb42019-12-09 17:52:20 -07005636 if (!list_empty(&poll->wait.entry)) {
5637 list_del_init(&poll->wait.entry);
Jens Axboeb41e9852020-02-17 09:52:41 -07005638 do_complete = true;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005639 }
Jens Axboe79ebeae2021-08-10 15:18:27 -06005640 spin_unlock_irq(&poll->head->lock);
Jens Axboe3bfa5bc2020-05-17 13:54:12 -06005641 hash_del(&req->hash_node);
Jens Axboed7718a92020-02-14 22:23:12 -07005642 return do_complete;
5643}
5644
Pavel Begunkov5d709042021-08-09 20:18:13 +01005645static bool io_poll_remove_one(struct io_kiocb *req)
Pavel Begunkove07785b2021-04-01 15:43:57 +01005646 __must_hold(&req->ctx->completion_lock)
Jens Axboed7718a92020-02-14 22:23:12 -07005647{
5648 bool do_complete;
5649
Jens Axboed4e7cd32020-08-15 11:44:50 -07005650 io_poll_remove_double(req);
Pavel Begunkove31001a2021-04-13 02:58:43 +01005651 do_complete = __io_poll_remove_one(req, io_poll_get_single(req), true);
Jens Axboed4e7cd32020-08-15 11:44:50 -07005652
Jens Axboeb41e9852020-02-17 09:52:41 -07005653 if (do_complete) {
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01005654 io_cqring_fill_event(req->ctx, req->user_data, -ECANCELED, 0);
Jens Axboeb41e9852020-02-17 09:52:41 -07005655 io_commit_cqring(req->ctx);
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01005656 req_set_fail(req);
Pavel Begunkov91c2f692021-08-11 19:28:28 +01005657 io_put_req_deferred(req);
Pavel Begunkov5d709042021-08-09 20:18:13 +01005658 }
Jens Axboeb41e9852020-02-17 09:52:41 -07005659 return do_complete;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005660}
5661
Jens Axboe76e1b642020-09-26 15:05:03 -06005662/*
5663 * Returns true if we found and killed one or more poll requests
5664 */
Pavel Begunkovc0724812021-10-04 20:02:54 +01005665static __cold bool io_poll_remove_all(struct io_ring_ctx *ctx,
5666 struct task_struct *tsk, bool cancel_all)
Jens Axboe221c5eb2019-01-17 09:41:58 -07005667{
Jens Axboe78076bb2019-12-04 19:56:40 -07005668 struct hlist_node *tmp;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005669 struct io_kiocb *req;
Jens Axboe8e2e1fa2020-04-13 17:05:14 -06005670 int posted = 0, i;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005671
Jens Axboe79ebeae2021-08-10 15:18:27 -06005672 spin_lock(&ctx->completion_lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07005673 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
5674 struct hlist_head *list;
5675
5676 list = &ctx->cancel_hash[i];
Jens Axboef3606e32020-09-22 08:18:24 -06005677 hlist_for_each_entry_safe(req, tmp, list, hash_node) {
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01005678 if (io_match_task(req, tsk, cancel_all))
Jens Axboef3606e32020-09-22 08:18:24 -06005679 posted += io_poll_remove_one(req);
5680 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07005681 }
Jens Axboe79ebeae2021-08-10 15:18:27 -06005682 spin_unlock(&ctx->completion_lock);
Jens Axboeb41e9852020-02-17 09:52:41 -07005683
Jens Axboe8e2e1fa2020-04-13 17:05:14 -06005684 if (posted)
5685 io_cqring_ev_posted(ctx);
Jens Axboe76e1b642020-09-26 15:05:03 -06005686
5687 return posted != 0;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005688}
5689
Pavel Begunkov9ba5fac2021-04-14 13:38:35 +01005690static struct io_kiocb *io_poll_find(struct io_ring_ctx *ctx, __u64 sqe_addr,
5691 bool poll_only)
Pavel Begunkove07785b2021-04-01 15:43:57 +01005692 __must_hold(&ctx->completion_lock)
Jens Axboe47f46762019-11-09 17:43:02 -07005693{
Jens Axboe78076bb2019-12-04 19:56:40 -07005694 struct hlist_head *list;
Jens Axboe47f46762019-11-09 17:43:02 -07005695 struct io_kiocb *req;
5696
Jens Axboe78076bb2019-12-04 19:56:40 -07005697 list = &ctx->cancel_hash[hash_long(sqe_addr, ctx->cancel_hash_bits)];
5698 hlist_for_each_entry(req, list, hash_node) {
Jens Axboeb41e9852020-02-17 09:52:41 -07005699 if (sqe_addr != req->user_data)
5700 continue;
Pavel Begunkov9ba5fac2021-04-14 13:38:35 +01005701 if (poll_only && req->opcode != IORING_OP_POLL_ADD)
5702 continue;
Jens Axboeb2cb8052021-03-17 08:17:19 -06005703 return req;
Jens Axboe47f46762019-11-09 17:43:02 -07005704 }
Jens Axboeb2cb8052021-03-17 08:17:19 -06005705 return NULL;
Jens Axboe47f46762019-11-09 17:43:02 -07005706}
5707
Pavel Begunkov9ba5fac2021-04-14 13:38:35 +01005708static int io_poll_cancel(struct io_ring_ctx *ctx, __u64 sqe_addr,
5709 bool poll_only)
Pavel Begunkove07785b2021-04-01 15:43:57 +01005710 __must_hold(&ctx->completion_lock)
Jens Axboeb2cb8052021-03-17 08:17:19 -06005711{
5712 struct io_kiocb *req;
5713
Pavel Begunkov9ba5fac2021-04-14 13:38:35 +01005714 req = io_poll_find(ctx, sqe_addr, poll_only);
Jens Axboeb2cb8052021-03-17 08:17:19 -06005715 if (!req)
5716 return -ENOENT;
5717 if (io_poll_remove_one(req))
5718 return 0;
5719
5720 return -EALREADY;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005721}
5722
Pavel Begunkov9096af32021-04-14 13:38:36 +01005723static __poll_t io_poll_parse_events(const struct io_uring_sqe *sqe,
5724 unsigned int flags)
5725{
5726 u32 events;
5727
5728 events = READ_ONCE(sqe->poll32_events);
5729#ifdef __BIG_ENDIAN
5730 events = swahw32(events);
5731#endif
5732 if (!(flags & IORING_POLL_ADD_MULTI))
5733 events |= EPOLLONESHOT;
5734 return demangle_poll(events) | (events & (EPOLLEXCLUSIVE|EPOLLONESHOT));
5735}
5736
Pavel Begunkovc5de0032021-04-14 13:38:37 +01005737static int io_poll_update_prep(struct io_kiocb *req,
Jens Axboe3529d8c2019-12-19 18:24:38 -07005738 const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07005739{
Pavel Begunkovc5de0032021-04-14 13:38:37 +01005740 struct io_poll_update *upd = &req->poll_update;
5741 u32 flags;
5742
Jens Axboe221c5eb2019-01-17 09:41:58 -07005743 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
5744 return -EINVAL;
Pavel Begunkov26578cd2021-08-20 10:36:37 +01005745 if (sqe->ioprio || sqe->buf_index || sqe->splice_fd_in)
Pavel Begunkovc5de0032021-04-14 13:38:37 +01005746 return -EINVAL;
5747 flags = READ_ONCE(sqe->len);
5748 if (flags & ~(IORING_POLL_UPDATE_EVENTS | IORING_POLL_UPDATE_USER_DATA |
5749 IORING_POLL_ADD_MULTI))
5750 return -EINVAL;
5751 /* meaningless without update */
5752 if (flags == IORING_POLL_ADD_MULTI)
Jens Axboe221c5eb2019-01-17 09:41:58 -07005753 return -EINVAL;
5754
Pavel Begunkovc5de0032021-04-14 13:38:37 +01005755 upd->old_user_data = READ_ONCE(sqe->addr);
5756 upd->update_events = flags & IORING_POLL_UPDATE_EVENTS;
5757 upd->update_user_data = flags & IORING_POLL_UPDATE_USER_DATA;
Jens Axboe0969e782019-12-17 18:40:57 -07005758
Pavel Begunkovc5de0032021-04-14 13:38:37 +01005759 upd->new_user_data = READ_ONCE(sqe->off);
5760 if (!upd->update_user_data && upd->new_user_data)
5761 return -EINVAL;
5762 if (upd->update_events)
5763 upd->events = io_poll_parse_events(sqe, flags);
5764 else if (sqe->poll32_events)
5765 return -EINVAL;
Jens Axboe0969e782019-12-17 18:40:57 -07005766
Jens Axboe221c5eb2019-01-17 09:41:58 -07005767 return 0;
5768}
5769
Jens Axboe221c5eb2019-01-17 09:41:58 -07005770static int io_poll_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
5771 void *key)
5772{
Jens Axboec2f2eb72020-02-10 09:07:05 -07005773 struct io_kiocb *req = wait->private;
5774 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005775
Jens Axboed7718a92020-02-14 22:23:12 -07005776 return __io_async_wake(req, poll, key_to_poll(key), io_poll_task_func);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005777}
5778
Jens Axboe221c5eb2019-01-17 09:41:58 -07005779static void io_poll_queue_proc(struct file *file, struct wait_queue_head *head,
5780 struct poll_table_struct *p)
5781{
5782 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
5783
Jens Axboee8c2bc12020-08-15 18:44:09 -07005784 __io_queue_proc(&pt->req->poll, pt, head, (struct io_poll_iocb **) &pt->req->async_data);
Jens Axboeeac406c2019-11-14 12:09:58 -07005785}
5786
Jens Axboe3529d8c2019-12-19 18:24:38 -07005787static int io_poll_add_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07005788{
5789 struct io_poll_iocb *poll = &req->poll;
Pavel Begunkovc5de0032021-04-14 13:38:37 +01005790 u32 flags;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005791
5792 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
5793 return -EINVAL;
Pavel Begunkovc5de0032021-04-14 13:38:37 +01005794 if (sqe->ioprio || sqe->buf_index || sqe->off || sqe->addr)
Jens Axboe88e41cf2021-02-22 22:08:01 -07005795 return -EINVAL;
5796 flags = READ_ONCE(sqe->len);
Pavel Begunkovc5de0032021-04-14 13:38:37 +01005797 if (flags & ~IORING_POLL_ADD_MULTI)
Jens Axboe221c5eb2019-01-17 09:41:58 -07005798 return -EINVAL;
5799
Pavel Begunkov48dcd382021-08-15 10:40:18 +01005800 io_req_set_refcount(req);
Pavel Begunkovc5de0032021-04-14 13:38:37 +01005801 poll->events = io_poll_parse_events(sqe, flags);
Jens Axboe0969e782019-12-17 18:40:57 -07005802 return 0;
5803}
5804
Pavel Begunkov61e98202021-02-10 00:03:08 +00005805static int io_poll_add(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe0969e782019-12-17 18:40:57 -07005806{
5807 struct io_poll_iocb *poll = &req->poll;
5808 struct io_ring_ctx *ctx = req->ctx;
5809 struct io_poll_table ipt;
Jens Axboe0969e782019-12-17 18:40:57 -07005810 __poll_t mask;
Hao Xu5b7aa382021-09-22 18:12:38 +08005811 bool done;
Jens Axboe0969e782019-12-17 18:40:57 -07005812
Jens Axboed7718a92020-02-14 22:23:12 -07005813 ipt.pt._qproc = io_poll_queue_proc;
Jens Axboe36703242019-07-25 10:20:18 -06005814
Jens Axboed7718a92020-02-14 22:23:12 -07005815 mask = __io_arm_poll_handler(req, &req->poll, &ipt, poll->events,
5816 io_poll_wake);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005817
Jens Axboe8c838782019-03-12 15:48:16 -06005818 if (mask) { /* no async, we'd stolen it */
Jens Axboe8c838782019-03-12 15:48:16 -06005819 ipt.error = 0;
Pavel Begunkoveb6e6f02021-10-04 20:02:59 +01005820 done = __io_poll_complete(req, mask);
5821 io_commit_cqring(req->ctx);
Jens Axboe8c838782019-03-12 15:48:16 -06005822 }
Jens Axboe79ebeae2021-08-10 15:18:27 -06005823 spin_unlock(&ctx->completion_lock);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005824
Jens Axboe8c838782019-03-12 15:48:16 -06005825 if (mask) {
5826 io_cqring_ev_posted(ctx);
Hao Xu5b7aa382021-09-22 18:12:38 +08005827 if (done)
Jens Axboe88e41cf2021-02-22 22:08:01 -07005828 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005829 }
Jens Axboe8c838782019-03-12 15:48:16 -06005830 return ipt.error;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005831}
5832
Pavel Begunkovc5de0032021-04-14 13:38:37 +01005833static int io_poll_update(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboeb69de282021-03-17 08:37:41 -06005834{
5835 struct io_ring_ctx *ctx = req->ctx;
5836 struct io_kiocb *preq;
Jens Axboecb3b200e2021-04-06 09:49:31 -06005837 bool completing;
Jens Axboeb69de282021-03-17 08:37:41 -06005838 int ret;
5839
Jens Axboe79ebeae2021-08-10 15:18:27 -06005840 spin_lock(&ctx->completion_lock);
Pavel Begunkov9ba5fac2021-04-14 13:38:35 +01005841 preq = io_poll_find(ctx, req->poll_update.old_user_data, true);
Jens Axboeb69de282021-03-17 08:37:41 -06005842 if (!preq) {
5843 ret = -ENOENT;
5844 goto err;
Jens Axboeb69de282021-03-17 08:37:41 -06005845 }
Jens Axboecb3b200e2021-04-06 09:49:31 -06005846
Pavel Begunkovc5de0032021-04-14 13:38:37 +01005847 if (!req->poll_update.update_events && !req->poll_update.update_user_data) {
5848 completing = true;
5849 ret = io_poll_remove_one(preq) ? 0 : -EALREADY;
5850 goto err;
5851 }
5852
Jens Axboecb3b200e2021-04-06 09:49:31 -06005853 /*
5854 * Don't allow racy completion with singleshot, as we cannot safely
5855 * update those. For multishot, if we're racing with completion, just
5856 * let completion re-add it.
5857 */
5858 completing = !__io_poll_remove_one(preq, &preq->poll, false);
5859 if (completing && (preq->poll.events & EPOLLONESHOT)) {
5860 ret = -EALREADY;
5861 goto err;
Jens Axboeb69de282021-03-17 08:37:41 -06005862 }
5863 /* we now have a detached poll request. reissue. */
5864 ret = 0;
5865err:
Jens Axboeb69de282021-03-17 08:37:41 -06005866 if (ret < 0) {
Jens Axboe79ebeae2021-08-10 15:18:27 -06005867 spin_unlock(&ctx->completion_lock);
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01005868 req_set_fail(req);
Jens Axboeb69de282021-03-17 08:37:41 -06005869 io_req_complete(req, ret);
5870 return 0;
5871 }
5872 /* only mask one event flags, keep behavior flags */
Pavel Begunkov9d805892021-04-13 02:58:40 +01005873 if (req->poll_update.update_events) {
Jens Axboeb69de282021-03-17 08:37:41 -06005874 preq->poll.events &= ~0xffff;
Pavel Begunkov9d805892021-04-13 02:58:40 +01005875 preq->poll.events |= req->poll_update.events & 0xffff;
Jens Axboeb69de282021-03-17 08:37:41 -06005876 preq->poll.events |= IO_POLL_UNMASK;
5877 }
Pavel Begunkov9d805892021-04-13 02:58:40 +01005878 if (req->poll_update.update_user_data)
5879 preq->user_data = req->poll_update.new_user_data;
Jens Axboe79ebeae2021-08-10 15:18:27 -06005880 spin_unlock(&ctx->completion_lock);
Jens Axboecb3b200e2021-04-06 09:49:31 -06005881
Jens Axboeb69de282021-03-17 08:37:41 -06005882 /* complete update request, we're done with it */
5883 io_req_complete(req, ret);
5884
Jens Axboecb3b200e2021-04-06 09:49:31 -06005885 if (!completing) {
Pavel Begunkovc5de0032021-04-14 13:38:37 +01005886 ret = io_poll_add(preq, issue_flags);
Jens Axboecb3b200e2021-04-06 09:49:31 -06005887 if (ret < 0) {
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01005888 req_set_fail(preq);
Jens Axboecb3b200e2021-04-06 09:49:31 -06005889 io_req_complete(preq, ret);
5890 }
Jens Axboeb69de282021-03-17 08:37:41 -06005891 }
5892 return 0;
5893}
5894
Pavel Begunkovf237c302021-08-18 12:42:46 +01005895static void io_req_task_timeout(struct io_kiocb *req, bool *locked)
Jens Axboe89850fc2021-08-10 15:11:51 -06005896{
Pavel Begunkov62245902021-10-02 19:36:14 +01005897 struct io_timeout_data *data = req->async_data;
5898
5899 if (!(data->flags & IORING_TIMEOUT_ETIME_SUCCESS))
5900 req_set_fail(req);
Pavel Begunkov505657b2021-08-17 20:28:09 +01005901 io_req_complete_post(req, -ETIME, 0);
Jens Axboe89850fc2021-08-10 15:11:51 -06005902}
5903
Jens Axboe5262f562019-09-17 12:26:57 -06005904static enum hrtimer_restart io_timeout_fn(struct hrtimer *timer)
5905{
Jens Axboead8a48a2019-11-15 08:49:11 -07005906 struct io_timeout_data *data = container_of(timer,
5907 struct io_timeout_data, timer);
5908 struct io_kiocb *req = data->req;
5909 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5262f562019-09-17 12:26:57 -06005910 unsigned long flags;
5911
Jens Axboe89850fc2021-08-10 15:11:51 -06005912 spin_lock_irqsave(&ctx->timeout_lock, flags);
Pavel Begunkova71976f2020-10-10 18:34:11 +01005913 list_del_init(&req->timeout.list);
Pavel Begunkov01cec8c2020-07-30 18:43:50 +03005914 atomic_set(&req->ctx->cq_timeouts,
5915 atomic_read(&req->ctx->cq_timeouts) + 1);
Jens Axboe89850fc2021-08-10 15:11:51 -06005916 spin_unlock_irqrestore(&ctx->timeout_lock, flags);
Pavel Begunkov01cec8c2020-07-30 18:43:50 +03005917
Jens Axboe89850fc2021-08-10 15:11:51 -06005918 req->io_task_work.func = io_req_task_timeout;
5919 io_req_task_work_add(req);
Jens Axboe5262f562019-09-17 12:26:57 -06005920 return HRTIMER_NORESTART;
5921}
5922
Pavel Begunkovfbd15842020-11-30 19:11:15 +00005923static struct io_kiocb *io_timeout_extract(struct io_ring_ctx *ctx,
5924 __u64 user_data)
Jens Axboe89850fc2021-08-10 15:11:51 -06005925 __must_hold(&ctx->timeout_lock)
Jens Axboe47f46762019-11-09 17:43:02 -07005926{
Pavel Begunkovfbd15842020-11-30 19:11:15 +00005927 struct io_timeout_data *io;
Jens Axboef254ac02020-08-12 17:33:30 -06005928 struct io_kiocb *req;
Pavel Begunkovfd9c7bc2021-04-13 02:58:42 +01005929 bool found = false;
Jens Axboef254ac02020-08-12 17:33:30 -06005930
5931 list_for_each_entry(req, &ctx->timeout_list, timeout.list) {
Pavel Begunkovfd9c7bc2021-04-13 02:58:42 +01005932 found = user_data == req->user_data;
5933 if (found)
Jens Axboef254ac02020-08-12 17:33:30 -06005934 break;
Jens Axboef254ac02020-08-12 17:33:30 -06005935 }
Pavel Begunkovfd9c7bc2021-04-13 02:58:42 +01005936 if (!found)
5937 return ERR_PTR(-ENOENT);
Jens Axboef254ac02020-08-12 17:33:30 -06005938
Pavel Begunkovfbd15842020-11-30 19:11:15 +00005939 io = req->async_data;
Pavel Begunkovfd9c7bc2021-04-13 02:58:42 +01005940 if (hrtimer_try_to_cancel(&io->timer) == -1)
Pavel Begunkovfbd15842020-11-30 19:11:15 +00005941 return ERR_PTR(-EALREADY);
5942 list_del_init(&req->timeout.list);
5943 return req;
5944}
5945
5946static int io_timeout_cancel(struct io_ring_ctx *ctx, __u64 user_data)
Pavel Begunkovec3c3d02021-08-18 10:50:52 +01005947 __must_hold(&ctx->completion_lock)
Jens Axboe89850fc2021-08-10 15:11:51 -06005948 __must_hold(&ctx->timeout_lock)
Pavel Begunkovfbd15842020-11-30 19:11:15 +00005949{
5950 struct io_kiocb *req = io_timeout_extract(ctx, user_data);
5951
5952 if (IS_ERR(req))
5953 return PTR_ERR(req);
5954
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01005955 req_set_fail(req);
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01005956 io_cqring_fill_event(ctx, req->user_data, -ECANCELED, 0);
Pavel Begunkov91c2f692021-08-11 19:28:28 +01005957 io_put_req_deferred(req);
Pavel Begunkovfbd15842020-11-30 19:11:15 +00005958 return 0;
Jens Axboef254ac02020-08-12 17:33:30 -06005959}
5960
Jens Axboe50c1df22021-08-27 17:11:06 -06005961static clockid_t io_timeout_get_clock(struct io_timeout_data *data)
5962{
5963 switch (data->flags & IORING_TIMEOUT_CLOCK_MASK) {
5964 case IORING_TIMEOUT_BOOTTIME:
5965 return CLOCK_BOOTTIME;
5966 case IORING_TIMEOUT_REALTIME:
5967 return CLOCK_REALTIME;
5968 default:
5969 /* can't happen, vetted at prep time */
5970 WARN_ON_ONCE(1);
5971 fallthrough;
5972 case 0:
5973 return CLOCK_MONOTONIC;
5974 }
5975}
5976
Pavel Begunkovf1042b62021-08-28 19:54:39 -06005977static int io_linked_timeout_update(struct io_ring_ctx *ctx, __u64 user_data,
5978 struct timespec64 *ts, enum hrtimer_mode mode)
5979 __must_hold(&ctx->timeout_lock)
5980{
5981 struct io_timeout_data *io;
5982 struct io_kiocb *req;
5983 bool found = false;
5984
5985 list_for_each_entry(req, &ctx->ltimeout_list, timeout.list) {
5986 found = user_data == req->user_data;
5987 if (found)
5988 break;
5989 }
5990 if (!found)
5991 return -ENOENT;
5992
5993 io = req->async_data;
5994 if (hrtimer_try_to_cancel(&io->timer) == -1)
5995 return -EALREADY;
5996 hrtimer_init(&io->timer, io_timeout_get_clock(io), mode);
5997 io->timer.function = io_link_timeout_fn;
5998 hrtimer_start(&io->timer, timespec64_to_ktime(*ts), mode);
5999 return 0;
6000}
6001
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +00006002static int io_timeout_update(struct io_ring_ctx *ctx, __u64 user_data,
6003 struct timespec64 *ts, enum hrtimer_mode mode)
Jens Axboe89850fc2021-08-10 15:11:51 -06006004 __must_hold(&ctx->timeout_lock)
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +00006005{
6006 struct io_kiocb *req = io_timeout_extract(ctx, user_data);
6007 struct io_timeout_data *data;
6008
6009 if (IS_ERR(req))
6010 return PTR_ERR(req);
6011
6012 req->timeout.off = 0; /* noseq */
6013 data = req->async_data;
6014 list_add_tail(&req->timeout.list, &ctx->timeout_list);
Jens Axboe50c1df22021-08-27 17:11:06 -06006015 hrtimer_init(&data->timer, io_timeout_get_clock(data), mode);
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +00006016 data->timer.function = io_timeout_fn;
6017 hrtimer_start(&data->timer, timespec64_to_ktime(*ts), mode);
6018 return 0;
Jens Axboe47f46762019-11-09 17:43:02 -07006019}
6020
Jens Axboe3529d8c2019-12-19 18:24:38 -07006021static int io_timeout_remove_prep(struct io_kiocb *req,
6022 const struct io_uring_sqe *sqe)
Jens Axboeb29472e2019-12-17 18:50:29 -07006023{
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +00006024 struct io_timeout_rem *tr = &req->timeout_rem;
6025
Jens Axboeb29472e2019-12-17 18:50:29 -07006026 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
6027 return -EINVAL;
Daniele Albano61710e42020-07-18 14:15:16 -06006028 if (unlikely(req->flags & (REQ_F_FIXED_FILE | REQ_F_BUFFER_SELECT)))
6029 return -EINVAL;
Pavel Begunkov26578cd2021-08-20 10:36:37 +01006030 if (sqe->ioprio || sqe->buf_index || sqe->len || sqe->splice_fd_in)
Jens Axboeb29472e2019-12-17 18:50:29 -07006031 return -EINVAL;
6032
Pavel Begunkovf1042b62021-08-28 19:54:39 -06006033 tr->ltimeout = false;
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +00006034 tr->addr = READ_ONCE(sqe->addr);
6035 tr->flags = READ_ONCE(sqe->timeout_flags);
Pavel Begunkovf1042b62021-08-28 19:54:39 -06006036 if (tr->flags & IORING_TIMEOUT_UPDATE_MASK) {
6037 if (hweight32(tr->flags & IORING_TIMEOUT_CLOCK_MASK) > 1)
6038 return -EINVAL;
6039 if (tr->flags & IORING_LINK_TIMEOUT_UPDATE)
6040 tr->ltimeout = true;
6041 if (tr->flags & ~(IORING_TIMEOUT_UPDATE_MASK|IORING_TIMEOUT_ABS))
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +00006042 return -EINVAL;
6043 if (get_timespec64(&tr->ts, u64_to_user_ptr(sqe->addr2)))
6044 return -EFAULT;
6045 } else if (tr->flags) {
6046 /* timeout removal doesn't support flags */
6047 return -EINVAL;
6048 }
6049
Jens Axboeb29472e2019-12-17 18:50:29 -07006050 return 0;
6051}
6052
Pavel Begunkov8662dae2021-01-19 13:32:44 +00006053static inline enum hrtimer_mode io_translate_timeout_mode(unsigned int flags)
6054{
6055 return (flags & IORING_TIMEOUT_ABS) ? HRTIMER_MODE_ABS
6056 : HRTIMER_MODE_REL;
6057}
6058
Jens Axboe11365042019-10-16 09:08:32 -06006059/*
6060 * Remove or update an existing timeout command
6061 */
Pavel Begunkov61e98202021-02-10 00:03:08 +00006062static int io_timeout_remove(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe11365042019-10-16 09:08:32 -06006063{
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +00006064 struct io_timeout_rem *tr = &req->timeout_rem;
Jens Axboe11365042019-10-16 09:08:32 -06006065 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe47f46762019-11-09 17:43:02 -07006066 int ret;
Jens Axboe11365042019-10-16 09:08:32 -06006067
Pavel Begunkovec3c3d02021-08-18 10:50:52 +01006068 if (!(req->timeout_rem.flags & IORING_TIMEOUT_UPDATE)) {
6069 spin_lock(&ctx->completion_lock);
6070 spin_lock_irq(&ctx->timeout_lock);
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +00006071 ret = io_timeout_cancel(ctx, tr->addr);
Pavel Begunkovec3c3d02021-08-18 10:50:52 +01006072 spin_unlock_irq(&ctx->timeout_lock);
6073 spin_unlock(&ctx->completion_lock);
6074 } else {
Pavel Begunkovf1042b62021-08-28 19:54:39 -06006075 enum hrtimer_mode mode = io_translate_timeout_mode(tr->flags);
6076
Pavel Begunkovec3c3d02021-08-18 10:50:52 +01006077 spin_lock_irq(&ctx->timeout_lock);
Pavel Begunkovf1042b62021-08-28 19:54:39 -06006078 if (tr->ltimeout)
6079 ret = io_linked_timeout_update(ctx, tr->addr, &tr->ts, mode);
6080 else
6081 ret = io_timeout_update(ctx, tr->addr, &tr->ts, mode);
Pavel Begunkovec3c3d02021-08-18 10:50:52 +01006082 spin_unlock_irq(&ctx->timeout_lock);
6083 }
Jens Axboe11365042019-10-16 09:08:32 -06006084
Jens Axboe4e88d6e2019-12-07 20:59:47 -07006085 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01006086 req_set_fail(req);
Pavel Begunkov505657b2021-08-17 20:28:09 +01006087 io_req_complete_post(req, ret, 0);
Jens Axboe11365042019-10-16 09:08:32 -06006088 return 0;
Jens Axboe5262f562019-09-17 12:26:57 -06006089}
6090
Jens Axboe3529d8c2019-12-19 18:24:38 -07006091static int io_timeout_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboe2d283902019-12-04 11:08:05 -07006092 bool is_timeout_link)
Jens Axboe5262f562019-09-17 12:26:57 -06006093{
Jens Axboead8a48a2019-11-15 08:49:11 -07006094 struct io_timeout_data *data;
Jens Axboea41525a2019-10-15 16:48:15 -06006095 unsigned flags;
Pavel Begunkov56080b02020-05-26 20:34:04 +03006096 u32 off = READ_ONCE(sqe->off);
Jens Axboe5262f562019-09-17 12:26:57 -06006097
Jens Axboead8a48a2019-11-15 08:49:11 -07006098 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe5262f562019-09-17 12:26:57 -06006099 return -EINVAL;
Pavel Begunkov26578cd2021-08-20 10:36:37 +01006100 if (sqe->ioprio || sqe->buf_index || sqe->len != 1 ||
6101 sqe->splice_fd_in)
Jens Axboea41525a2019-10-15 16:48:15 -06006102 return -EINVAL;
Pavel Begunkov56080b02020-05-26 20:34:04 +03006103 if (off && is_timeout_link)
Jens Axboe2d283902019-12-04 11:08:05 -07006104 return -EINVAL;
Jens Axboea41525a2019-10-15 16:48:15 -06006105 flags = READ_ONCE(sqe->timeout_flags);
Pavel Begunkov62245902021-10-02 19:36:14 +01006106 if (flags & ~(IORING_TIMEOUT_ABS | IORING_TIMEOUT_CLOCK_MASK |
6107 IORING_TIMEOUT_ETIME_SUCCESS))
Jens Axboe50c1df22021-08-27 17:11:06 -06006108 return -EINVAL;
6109 /* more than one clock specified is invalid, obviously */
6110 if (hweight32(flags & IORING_TIMEOUT_CLOCK_MASK) > 1)
Jens Axboe5262f562019-09-17 12:26:57 -06006111 return -EINVAL;
Arnd Bergmannbdf20072019-10-01 09:53:29 -06006112
Pavel Begunkovef9dd632021-08-28 19:54:38 -06006113 INIT_LIST_HEAD(&req->timeout.list);
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03006114 req->timeout.off = off;
Pavel Begunkovf18ee4c2021-06-14 23:37:25 +01006115 if (unlikely(off && !req->ctx->off_timeout_used))
6116 req->ctx->off_timeout_used = true;
Jens Axboe26a61672019-12-20 09:02:01 -07006117
Pavel Begunkovd886e182021-10-04 20:02:56 +01006118 if (!req_has_async_data(req) && io_alloc_async_data(req))
Jens Axboe26a61672019-12-20 09:02:01 -07006119 return -ENOMEM;
6120
Jens Axboee8c2bc12020-08-15 18:44:09 -07006121 data = req->async_data;
Jens Axboead8a48a2019-11-15 08:49:11 -07006122 data->req = req;
Jens Axboe50c1df22021-08-27 17:11:06 -06006123 data->flags = flags;
Jens Axboead8a48a2019-11-15 08:49:11 -07006124
6125 if (get_timespec64(&data->ts, u64_to_user_ptr(sqe->addr)))
Jens Axboe5262f562019-09-17 12:26:57 -06006126 return -EFAULT;
6127
Pavel Begunkov8662dae2021-01-19 13:32:44 +00006128 data->mode = io_translate_timeout_mode(flags);
Jens Axboe50c1df22021-08-27 17:11:06 -06006129 hrtimer_init(&data->timer, io_timeout_get_clock(data), data->mode);
Pavel Begunkovb97e7362021-08-15 10:40:23 +01006130
6131 if (is_timeout_link) {
6132 struct io_submit_link *link = &req->ctx->submit_state.link;
6133
6134 if (!link->head)
6135 return -EINVAL;
6136 if (link->last->opcode == IORING_OP_LINK_TIMEOUT)
6137 return -EINVAL;
Pavel Begunkov4d13d1a2021-08-15 10:40:24 +01006138 req->timeout.head = link->last;
6139 link->last->flags |= REQ_F_ARM_LTIMEOUT;
Pavel Begunkovb97e7362021-08-15 10:40:23 +01006140 }
Jens Axboead8a48a2019-11-15 08:49:11 -07006141 return 0;
6142}
6143
Pavel Begunkov61e98202021-02-10 00:03:08 +00006144static int io_timeout(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboead8a48a2019-11-15 08:49:11 -07006145{
Jens Axboead8a48a2019-11-15 08:49:11 -07006146 struct io_ring_ctx *ctx = req->ctx;
Jens Axboee8c2bc12020-08-15 18:44:09 -07006147 struct io_timeout_data *data = req->async_data;
Jens Axboead8a48a2019-11-15 08:49:11 -07006148 struct list_head *entry;
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03006149 u32 tail, off = req->timeout.off;
Jens Axboead8a48a2019-11-15 08:49:11 -07006150
Jens Axboe89850fc2021-08-10 15:11:51 -06006151 spin_lock_irq(&ctx->timeout_lock);
Jens Axboe93bd25b2019-11-11 23:34:31 -07006152
Jens Axboe5262f562019-09-17 12:26:57 -06006153 /*
6154 * sqe->off holds how many events that need to occur for this
Jens Axboe93bd25b2019-11-11 23:34:31 -07006155 * timeout event to be satisfied. If it isn't set, then this is
6156 * a pure timeout request, sequence isn't used.
Jens Axboe5262f562019-09-17 12:26:57 -06006157 */
Pavel Begunkov8eb7e2d2020-06-29 13:13:02 +03006158 if (io_is_timeout_noseq(req)) {
Jens Axboe93bd25b2019-11-11 23:34:31 -07006159 entry = ctx->timeout_list.prev;
6160 goto add;
6161 }
Jens Axboe5262f562019-09-17 12:26:57 -06006162
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03006163 tail = ctx->cached_cq_tail - atomic_read(&ctx->cq_timeouts);
6164 req->timeout.target_seq = tail + off;
Jens Axboe5262f562019-09-17 12:26:57 -06006165
Marcelo Diop-Gonzalezf0105052021-01-15 11:54:40 -05006166 /* Update the last seq here in case io_flush_timeouts() hasn't.
6167 * This is safe because ->completion_lock is held, and submissions
6168 * and completions are never mixed in the same ->completion_lock section.
6169 */
6170 ctx->cq_last_tm_flush = tail;
6171
Jens Axboe5262f562019-09-17 12:26:57 -06006172 /*
6173 * Insertion sort, ensuring the first entry in the list is always
6174 * the one we need first.
6175 */
Jens Axboe5262f562019-09-17 12:26:57 -06006176 list_for_each_prev(entry, &ctx->timeout_list) {
Pavel Begunkov135fcde2020-07-13 23:37:12 +03006177 struct io_kiocb *nxt = list_entry(entry, struct io_kiocb,
6178 timeout.list);
Jens Axboe5262f562019-09-17 12:26:57 -06006179
Pavel Begunkov8eb7e2d2020-06-29 13:13:02 +03006180 if (io_is_timeout_noseq(nxt))
Jens Axboe93bd25b2019-11-11 23:34:31 -07006181 continue;
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03006182 /* nxt.seq is behind @tail, otherwise would've been completed */
6183 if (off >= nxt->timeout.target_seq - tail)
Jens Axboe5262f562019-09-17 12:26:57 -06006184 break;
6185 }
Jens Axboe93bd25b2019-11-11 23:34:31 -07006186add:
Pavel Begunkov135fcde2020-07-13 23:37:12 +03006187 list_add(&req->timeout.list, entry);
Jens Axboead8a48a2019-11-15 08:49:11 -07006188 data->timer.function = io_timeout_fn;
6189 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts), data->mode);
Jens Axboe89850fc2021-08-10 15:11:51 -06006190 spin_unlock_irq(&ctx->timeout_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06006191 return 0;
6192}
6193
Pavel Begunkovf458dd842021-03-08 12:14:14 +00006194struct io_cancel_data {
6195 struct io_ring_ctx *ctx;
6196 u64 user_data;
6197};
6198
Jens Axboe62755e32019-10-28 21:49:21 -06006199static bool io_cancel_cb(struct io_wq_work *work, void *data)
Jens Axboede0617e2019-04-06 21:51:27 -06006200{
Jens Axboe62755e32019-10-28 21:49:21 -06006201 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Pavel Begunkovf458dd842021-03-08 12:14:14 +00006202 struct io_cancel_data *cd = data;
Jens Axboede0617e2019-04-06 21:51:27 -06006203
Pavel Begunkovf458dd842021-03-08 12:14:14 +00006204 return req->ctx == cd->ctx && req->user_data == cd->user_data;
Jens Axboe62755e32019-10-28 21:49:21 -06006205}
6206
Pavel Begunkovf458dd842021-03-08 12:14:14 +00006207static int io_async_cancel_one(struct io_uring_task *tctx, u64 user_data,
6208 struct io_ring_ctx *ctx)
Jens Axboe62755e32019-10-28 21:49:21 -06006209{
Pavel Begunkovf458dd842021-03-08 12:14:14 +00006210 struct io_cancel_data data = { .ctx = ctx, .user_data = user_data, };
Jens Axboe62755e32019-10-28 21:49:21 -06006211 enum io_wq_cancel cancel_ret;
Jens Axboe62755e32019-10-28 21:49:21 -06006212 int ret = 0;
6213
Pavel Begunkovf458dd842021-03-08 12:14:14 +00006214 if (!tctx || !tctx->io_wq)
Jens Axboe5aa75ed2021-02-16 12:56:50 -07006215 return -ENOENT;
6216
Pavel Begunkovf458dd842021-03-08 12:14:14 +00006217 cancel_ret = io_wq_cancel_cb(tctx->io_wq, io_cancel_cb, &data, false);
Jens Axboe62755e32019-10-28 21:49:21 -06006218 switch (cancel_ret) {
6219 case IO_WQ_CANCEL_OK:
6220 ret = 0;
6221 break;
6222 case IO_WQ_CANCEL_RUNNING:
6223 ret = -EALREADY;
6224 break;
6225 case IO_WQ_CANCEL_NOTFOUND:
6226 ret = -ENOENT;
6227 break;
6228 }
6229
Jens Axboee977d6d2019-11-05 12:39:45 -07006230 return ret;
6231}
6232
Pavel Begunkov8cb01fa2021-08-15 10:40:22 +01006233static int io_try_cancel_userdata(struct io_kiocb *req, u64 sqe_addr)
Jens Axboe47f46762019-11-09 17:43:02 -07006234{
Pavel Begunkov8cb01fa2021-08-15 10:40:22 +01006235 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe47f46762019-11-09 17:43:02 -07006236 int ret;
6237
Pavel Begunkovdadebc32021-08-23 13:30:44 +01006238 WARN_ON_ONCE(!io_wq_current_is_worker() && req->task != current);
Pavel Begunkov8cb01fa2021-08-15 10:40:22 +01006239
Pavel Begunkovf458dd842021-03-08 12:14:14 +00006240 ret = io_async_cancel_one(req->task->io_uring, sqe_addr, ctx);
Pavel Begunkovdf9727a2021-04-01 15:43:59 +01006241 if (ret != -ENOENT)
Pavel Begunkov8cb01fa2021-08-15 10:40:22 +01006242 return ret;
Pavel Begunkov505657b2021-08-17 20:28:09 +01006243
6244 spin_lock(&ctx->completion_lock);
Jens Axboe79ebeae2021-08-10 15:18:27 -06006245 spin_lock_irq(&ctx->timeout_lock);
Jens Axboe47f46762019-11-09 17:43:02 -07006246 ret = io_timeout_cancel(ctx, sqe_addr);
Jens Axboe79ebeae2021-08-10 15:18:27 -06006247 spin_unlock_irq(&ctx->timeout_lock);
Jens Axboe47f46762019-11-09 17:43:02 -07006248 if (ret != -ENOENT)
Pavel Begunkov505657b2021-08-17 20:28:09 +01006249 goto out;
6250 ret = io_poll_cancel(ctx, sqe_addr, false);
6251out:
6252 spin_unlock(&ctx->completion_lock);
6253 return ret;
Jens Axboe47f46762019-11-09 17:43:02 -07006254}
6255
Jens Axboe3529d8c2019-12-19 18:24:38 -07006256static int io_async_cancel_prep(struct io_kiocb *req,
6257 const struct io_uring_sqe *sqe)
Jens Axboee977d6d2019-11-05 12:39:45 -07006258{
Jens Axboefbf23842019-12-17 18:45:56 -07006259 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboee977d6d2019-11-05 12:39:45 -07006260 return -EINVAL;
Daniele Albano61710e42020-07-18 14:15:16 -06006261 if (unlikely(req->flags & (REQ_F_FIXED_FILE | REQ_F_BUFFER_SELECT)))
6262 return -EINVAL;
Pavel Begunkov26578cd2021-08-20 10:36:37 +01006263 if (sqe->ioprio || sqe->off || sqe->len || sqe->cancel_flags ||
6264 sqe->splice_fd_in)
Jens Axboee977d6d2019-11-05 12:39:45 -07006265 return -EINVAL;
6266
Jens Axboefbf23842019-12-17 18:45:56 -07006267 req->cancel.addr = READ_ONCE(sqe->addr);
6268 return 0;
6269}
6270
Pavel Begunkov61e98202021-02-10 00:03:08 +00006271static int io_async_cancel(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboefbf23842019-12-17 18:45:56 -07006272{
6273 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkov58f99372021-03-12 16:25:55 +00006274 u64 sqe_addr = req->cancel.addr;
6275 struct io_tctx_node *node;
6276 int ret;
Jens Axboefbf23842019-12-17 18:45:56 -07006277
Pavel Begunkov8cb01fa2021-08-15 10:40:22 +01006278 ret = io_try_cancel_userdata(req, sqe_addr);
Pavel Begunkov58f99372021-03-12 16:25:55 +00006279 if (ret != -ENOENT)
6280 goto done;
Pavel Begunkov58f99372021-03-12 16:25:55 +00006281
6282 /* slow path, try all io-wq's */
6283 io_ring_submit_lock(ctx, !(issue_flags & IO_URING_F_NONBLOCK));
6284 ret = -ENOENT;
6285 list_for_each_entry(node, &ctx->tctx_list, ctx_node) {
6286 struct io_uring_task *tctx = node->task->io_uring;
6287
Pavel Begunkov58f99372021-03-12 16:25:55 +00006288 ret = io_async_cancel_one(tctx, req->cancel.addr, ctx);
6289 if (ret != -ENOENT)
6290 break;
6291 }
6292 io_ring_submit_unlock(ctx, !(issue_flags & IO_URING_F_NONBLOCK));
Pavel Begunkov58f99372021-03-12 16:25:55 +00006293done:
Pavel Begunkov58f99372021-03-12 16:25:55 +00006294 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01006295 req_set_fail(req);
Pavel Begunkov505657b2021-08-17 20:28:09 +01006296 io_req_complete_post(req, ret, 0);
Jens Axboe62755e32019-10-28 21:49:21 -06006297 return 0;
6298}
6299
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00006300static int io_rsrc_update_prep(struct io_kiocb *req,
Jens Axboe05f3fb32019-12-09 11:22:50 -07006301 const struct io_uring_sqe *sqe)
6302{
Daniele Albano61710e42020-07-18 14:15:16 -06006303 if (unlikely(req->flags & (REQ_F_FIXED_FILE | REQ_F_BUFFER_SELECT)))
6304 return -EINVAL;
Pavel Begunkov26578cd2021-08-20 10:36:37 +01006305 if (sqe->ioprio || sqe->rw_flags || sqe->splice_fd_in)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006306 return -EINVAL;
6307
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00006308 req->rsrc_update.offset = READ_ONCE(sqe->off);
6309 req->rsrc_update.nr_args = READ_ONCE(sqe->len);
6310 if (!req->rsrc_update.nr_args)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006311 return -EINVAL;
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00006312 req->rsrc_update.arg = READ_ONCE(sqe->addr);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006313 return 0;
6314}
6315
Pavel Begunkov889fca72021-02-10 00:03:09 +00006316static int io_files_update(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006317{
6318 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovc3bdad02021-04-25 14:32:22 +01006319 struct io_uring_rsrc_update2 up;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006320 int ret;
6321
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00006322 up.offset = req->rsrc_update.offset;
6323 up.data = req->rsrc_update.arg;
Pavel Begunkovc3bdad02021-04-25 14:32:22 +01006324 up.nr = 0;
6325 up.tags = 0;
Colin Ian King615cee42021-04-26 10:47:35 +01006326 up.resv = 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006327
Jens Axboecdb31c22021-09-24 08:43:54 -06006328 io_ring_submit_lock(ctx, !(issue_flags & IO_URING_F_NONBLOCK));
Pavel Begunkovfdecb662021-04-25 14:32:20 +01006329 ret = __io_register_rsrc_update(ctx, IORING_RSRC_FILE,
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +01006330 &up, req->rsrc_update.nr_args);
Jens Axboecdb31c22021-09-24 08:43:54 -06006331 io_ring_submit_unlock(ctx, !(issue_flags & IO_URING_F_NONBLOCK));
Jens Axboe05f3fb32019-12-09 11:22:50 -07006332
6333 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01006334 req_set_fail(req);
Pavel Begunkov889fca72021-02-10 00:03:09 +00006335 __io_req_complete(req, issue_flags, ret, 0);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006336 return 0;
6337}
6338
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006339static int io_req_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07006340{
Jens Axboed625c6e2019-12-17 19:53:05 -07006341 switch (req->opcode) {
Jens Axboee7815732019-12-17 19:45:06 -07006342 case IORING_OP_NOP:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006343 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07006344 case IORING_OP_READV:
6345 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07006346 case IORING_OP_READ:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006347 return io_read_prep(req, sqe);
Jens Axboef67676d2019-12-02 11:03:47 -07006348 case IORING_OP_WRITEV:
6349 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07006350 case IORING_OP_WRITE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006351 return io_write_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07006352 case IORING_OP_POLL_ADD:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006353 return io_poll_add_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07006354 case IORING_OP_POLL_REMOVE:
Pavel Begunkovc5de0032021-04-14 13:38:37 +01006355 return io_poll_update_prep(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07006356 case IORING_OP_FSYNC:
Pavel Begunkov1155c762021-02-18 18:29:38 +00006357 return io_fsync_prep(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07006358 case IORING_OP_SYNC_FILE_RANGE:
Pavel Begunkov1155c762021-02-18 18:29:38 +00006359 return io_sfr_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07006360 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07006361 case IORING_OP_SEND:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006362 return io_sendmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07006363 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07006364 case IORING_OP_RECV:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006365 return io_recvmsg_prep(req, sqe);
Jens Axboef499a022019-12-02 16:28:46 -07006366 case IORING_OP_CONNECT:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006367 return io_connect_prep(req, sqe);
Jens Axboe2d283902019-12-04 11:08:05 -07006368 case IORING_OP_TIMEOUT:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006369 return io_timeout_prep(req, sqe, false);
Jens Axboeb29472e2019-12-17 18:50:29 -07006370 case IORING_OP_TIMEOUT_REMOVE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006371 return io_timeout_remove_prep(req, sqe);
Jens Axboefbf23842019-12-17 18:45:56 -07006372 case IORING_OP_ASYNC_CANCEL:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006373 return io_async_cancel_prep(req, sqe);
Jens Axboe2d283902019-12-04 11:08:05 -07006374 case IORING_OP_LINK_TIMEOUT:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006375 return io_timeout_prep(req, sqe, true);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07006376 case IORING_OP_ACCEPT:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006377 return io_accept_prep(req, sqe);
Jens Axboed63d1b52019-12-10 10:38:56 -07006378 case IORING_OP_FALLOCATE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006379 return io_fallocate_prep(req, sqe);
Jens Axboe15b71ab2019-12-11 11:20:36 -07006380 case IORING_OP_OPENAT:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006381 return io_openat_prep(req, sqe);
Jens Axboeb5dba592019-12-11 14:02:38 -07006382 case IORING_OP_CLOSE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006383 return io_close_prep(req, sqe);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006384 case IORING_OP_FILES_UPDATE:
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00006385 return io_rsrc_update_prep(req, sqe);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07006386 case IORING_OP_STATX:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006387 return io_statx_prep(req, sqe);
Jens Axboe4840e412019-12-25 22:03:45 -07006388 case IORING_OP_FADVISE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006389 return io_fadvise_prep(req, sqe);
Jens Axboec1ca7572019-12-25 22:18:28 -07006390 case IORING_OP_MADVISE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006391 return io_madvise_prep(req, sqe);
Jens Axboecebdb982020-01-08 17:59:24 -07006392 case IORING_OP_OPENAT2:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006393 return io_openat2_prep(req, sqe);
Jens Axboe3e4827b2020-01-08 15:18:09 -07006394 case IORING_OP_EPOLL_CTL:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006395 return io_epoll_ctl_prep(req, sqe);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03006396 case IORING_OP_SPLICE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006397 return io_splice_prep(req, sqe);
Jens Axboeddf0322d2020-02-23 16:41:33 -07006398 case IORING_OP_PROVIDE_BUFFERS:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006399 return io_provide_buffers_prep(req, sqe);
Jens Axboe067524e2020-03-02 16:32:28 -07006400 case IORING_OP_REMOVE_BUFFERS:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006401 return io_remove_buffers_prep(req, sqe);
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03006402 case IORING_OP_TEE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006403 return io_tee_prep(req, sqe);
Jens Axboe36f4fa62020-09-05 11:14:22 -06006404 case IORING_OP_SHUTDOWN:
6405 return io_shutdown_prep(req, sqe);
Jens Axboe80a261f2020-09-28 14:23:58 -06006406 case IORING_OP_RENAMEAT:
6407 return io_renameat_prep(req, sqe);
Jens Axboe14a11432020-09-28 14:27:37 -06006408 case IORING_OP_UNLINKAT:
6409 return io_unlinkat_prep(req, sqe);
Dmitry Kadasheve34a02d2021-07-08 13:34:45 +07006410 case IORING_OP_MKDIRAT:
6411 return io_mkdirat_prep(req, sqe);
Dmitry Kadashev7a8721f2021-07-08 13:34:46 +07006412 case IORING_OP_SYMLINKAT:
6413 return io_symlinkat_prep(req, sqe);
Dmitry Kadashevcf30da92021-07-08 13:34:47 +07006414 case IORING_OP_LINKAT:
6415 return io_linkat_prep(req, sqe);
Jens Axboef67676d2019-12-02 11:03:47 -07006416 }
6417
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006418 printk_once(KERN_WARNING "io_uring: unhandled opcode %d\n",
6419 req->opcode);
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01006420 return -EINVAL;
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006421}
6422
Pavel Begunkov93642ef2021-02-18 18:29:44 +00006423static int io_req_prep_async(struct io_kiocb *req)
Jens Axboedef596e2019-01-09 08:59:42 -07006424{
Pavel Begunkovb7e298d2021-02-28 22:35:19 +00006425 if (!io_op_defs[req->opcode].needs_async_setup)
6426 return 0;
Pavel Begunkovd886e182021-10-04 20:02:56 +01006427 if (WARN_ON_ONCE(req_has_async_data(req)))
Pavel Begunkovb7e298d2021-02-28 22:35:19 +00006428 return -EFAULT;
6429 if (io_alloc_async_data(req))
6430 return -EAGAIN;
6431
Pavel Begunkov93642ef2021-02-18 18:29:44 +00006432 switch (req->opcode) {
6433 case IORING_OP_READV:
Pavel Begunkov93642ef2021-02-18 18:29:44 +00006434 return io_rw_prep_async(req, READ);
6435 case IORING_OP_WRITEV:
Pavel Begunkov93642ef2021-02-18 18:29:44 +00006436 return io_rw_prep_async(req, WRITE);
6437 case IORING_OP_SENDMSG:
Pavel Begunkov93642ef2021-02-18 18:29:44 +00006438 return io_sendmsg_prep_async(req);
6439 case IORING_OP_RECVMSG:
Pavel Begunkov93642ef2021-02-18 18:29:44 +00006440 return io_recvmsg_prep_async(req);
6441 case IORING_OP_CONNECT:
6442 return io_connect_prep_async(req);
6443 }
Pavel Begunkovb7e298d2021-02-28 22:35:19 +00006444 printk_once(KERN_WARNING "io_uring: prep_async() bad opcode %d\n",
6445 req->opcode);
6446 return -EFAULT;
Jens Axboedef596e2019-01-09 08:59:42 -07006447}
6448
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03006449static u32 io_get_sequence(struct io_kiocb *req)
6450{
Pavel Begunkova3dbdf52021-06-17 18:14:05 +01006451 u32 seq = req->ctx->cached_sq_head;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03006452
Pavel Begunkova3dbdf52021-06-17 18:14:05 +01006453 /* need original cached_sq_head, but it was increased for each req */
6454 io_for_each_link(req, req)
6455 seq--;
6456 return seq;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03006457}
6458
Pavel Begunkovc0724812021-10-04 20:02:54 +01006459static __cold void io_drain_req(struct io_kiocb *req)
Jens Axboedef596e2019-01-09 08:59:42 -07006460{
6461 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkov27dc8332020-07-13 23:37:14 +03006462 struct io_defer_entry *de;
Jens Axboedef596e2019-01-09 08:59:42 -07006463 int ret;
Pavel Begunkove0eb71d2021-10-01 18:07:01 +01006464 u32 seq = io_get_sequence(req);
Jens Axboedef596e2019-01-09 08:59:42 -07006465
6466 /* Still need defer if there is pending req in defer list. */
Pavel Begunkov5e371262021-09-24 22:00:04 +01006467 if (!req_need_defer(req, seq) && list_empty_careful(&ctx->defer_list)) {
Pavel Begunkove0eb71d2021-10-01 18:07:01 +01006468queue:
Pavel Begunkov5e371262021-09-24 22:00:04 +01006469 ctx->drain_active = false;
Pavel Begunkove0eb71d2021-10-01 18:07:01 +01006470 io_req_task_queue(req);
6471 return;
Pavel Begunkov5e371262021-09-24 22:00:04 +01006472 }
Jens Axboedef596e2019-01-09 08:59:42 -07006473
Pavel Begunkovb7e298d2021-02-28 22:35:19 +00006474 ret = io_req_prep_async(req);
Pavel Begunkove0eb71d2021-10-01 18:07:01 +01006475 if (ret) {
6476fail:
6477 io_req_complete_failed(req, ret);
6478 return;
6479 }
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03006480 io_prep_async_link(req);
Pavel Begunkov27dc8332020-07-13 23:37:14 +03006481 de = kmalloc(sizeof(*de), GFP_KERNEL);
Pavel Begunkov76cc33d2021-06-14 23:37:30 +01006482 if (!de) {
Pavel Begunkov1b487732021-07-11 22:41:13 +01006483 ret = -ENOMEM;
Pavel Begunkove0eb71d2021-10-01 18:07:01 +01006484 goto fail;
Pavel Begunkov76cc33d2021-06-14 23:37:30 +01006485 }
Jens Axboe31b51512019-01-18 22:56:34 -07006486
Jens Axboe79ebeae2021-08-10 15:18:27 -06006487 spin_lock(&ctx->completion_lock);
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03006488 if (!req_need_defer(req, seq) && list_empty(&ctx->defer_list)) {
Jens Axboe79ebeae2021-08-10 15:18:27 -06006489 spin_unlock(&ctx->completion_lock);
Pavel Begunkov27dc8332020-07-13 23:37:14 +03006490 kfree(de);
Pavel Begunkove0eb71d2021-10-01 18:07:01 +01006491 goto queue;
Jens Axboe31b51512019-01-18 22:56:34 -07006492 }
6493
6494 trace_io_uring_defer(ctx, req, req->user_data);
Pavel Begunkov27dc8332020-07-13 23:37:14 +03006495 de->req = req;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03006496 de->seq = seq;
Pavel Begunkov27dc8332020-07-13 23:37:14 +03006497 list_add_tail(&de->list, &ctx->defer_list);
Jens Axboe79ebeae2021-08-10 15:18:27 -06006498 spin_unlock(&ctx->completion_lock);
Jens Axboe31b51512019-01-18 22:56:34 -07006499}
6500
Pavel Begunkov68fb8972021-03-19 17:22:41 +00006501static void io_clean_op(struct io_kiocb *req)
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03006502{
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006503 if (req->flags & REQ_F_BUFFER_SELECTED) {
Pavel Begunkov30d51dd2021-10-01 18:07:03 +01006504 kfree(req->kbuf);
6505 req->kbuf = NULL;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03006506 }
6507
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006508 if (req->flags & REQ_F_NEED_CLEANUP) {
6509 switch (req->opcode) {
6510 case IORING_OP_READV:
6511 case IORING_OP_READ_FIXED:
6512 case IORING_OP_READ:
6513 case IORING_OP_WRITEV:
6514 case IORING_OP_WRITE_FIXED:
Jens Axboee8c2bc12020-08-15 18:44:09 -07006515 case IORING_OP_WRITE: {
6516 struct io_async_rw *io = req->async_data;
Pavel Begunkov1dacb4d2021-06-17 18:14:03 +01006517
6518 kfree(io->free_iovec);
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006519 break;
Jens Axboee8c2bc12020-08-15 18:44:09 -07006520 }
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006521 case IORING_OP_RECVMSG:
Jens Axboee8c2bc12020-08-15 18:44:09 -07006522 case IORING_OP_SENDMSG: {
6523 struct io_async_msghdr *io = req->async_data;
Pavel Begunkov257e84a2021-02-05 00:58:00 +00006524
6525 kfree(io->free_iov);
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006526 break;
Jens Axboee8c2bc12020-08-15 18:44:09 -07006527 }
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006528 case IORING_OP_SPLICE:
6529 case IORING_OP_TEE:
Pavel Begunkove1d767f2021-03-19 17:22:43 +00006530 if (!(req->splice.flags & SPLICE_F_FD_IN_FIXED))
6531 io_put_file(req->splice.file_in);
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006532 break;
Jens Axboef3cd48502020-09-24 14:55:54 -06006533 case IORING_OP_OPENAT:
6534 case IORING_OP_OPENAT2:
6535 if (req->open.filename)
6536 putname(req->open.filename);
6537 break;
Jens Axboe80a261f2020-09-28 14:23:58 -06006538 case IORING_OP_RENAMEAT:
6539 putname(req->rename.oldpath);
6540 putname(req->rename.newpath);
6541 break;
Jens Axboe14a11432020-09-28 14:27:37 -06006542 case IORING_OP_UNLINKAT:
6543 putname(req->unlink.filename);
6544 break;
Dmitry Kadasheve34a02d2021-07-08 13:34:45 +07006545 case IORING_OP_MKDIRAT:
6546 putname(req->mkdir.filename);
6547 break;
Dmitry Kadashev7a8721f2021-07-08 13:34:46 +07006548 case IORING_OP_SYMLINKAT:
6549 putname(req->symlink.oldpath);
6550 putname(req->symlink.newpath);
6551 break;
Dmitry Kadashevcf30da92021-07-08 13:34:47 +07006552 case IORING_OP_LINKAT:
6553 putname(req->hardlink.oldpath);
6554 putname(req->hardlink.newpath);
6555 break;
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006556 }
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006557 }
Jens Axboe75652a302021-04-15 09:52:40 -06006558 if ((req->flags & REQ_F_POLLED) && req->apoll) {
6559 kfree(req->apoll->double_poll);
6560 kfree(req->apoll);
6561 req->apoll = NULL;
6562 }
Pavel Begunkov3a0a6902021-04-20 12:03:31 +01006563 if (req->flags & REQ_F_INFLIGHT) {
6564 struct io_uring_task *tctx = req->task->io_uring;
6565
6566 atomic_dec(&tctx->inflight_tracked);
Pavel Begunkov3a0a6902021-04-20 12:03:31 +01006567 }
Pavel Begunkovc8543572021-06-17 18:14:04 +01006568 if (req->flags & REQ_F_CREDS)
Pavel Begunkovb8e64b52021-06-17 18:14:02 +01006569 put_cred(req->creds);
Pavel Begunkovd886e182021-10-04 20:02:56 +01006570 if (req->flags & REQ_F_ASYNC_DATA) {
6571 kfree(req->async_data);
6572 req->async_data = NULL;
6573 }
Pavel Begunkovc8543572021-06-17 18:14:04 +01006574 req->flags &= ~IO_REQ_CLEAN_FLAGS;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03006575}
6576
Pavel Begunkov889fca72021-02-10 00:03:09 +00006577static int io_issue_sqe(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboeedafcce2019-01-09 09:16:05 -07006578{
Jens Axboeedafcce2019-01-09 09:16:05 -07006579 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5730b272021-02-27 15:57:30 -07006580 const struct cred *creds = NULL;
Jens Axboed625c6e2019-12-17 19:53:05 -07006581 int ret;
Jens Axboeedafcce2019-01-09 09:16:05 -07006582
Pavel Begunkov6878b402021-09-24 21:59:41 +01006583 if (unlikely((req->flags & REQ_F_CREDS) && req->creds != current_cred()))
Pavel Begunkovc10d1f92021-06-17 18:14:01 +01006584 creds = override_creds(req->creds);
Jens Axboe5730b272021-02-27 15:57:30 -07006585
Jens Axboed625c6e2019-12-17 19:53:05 -07006586 switch (req->opcode) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07006587 case IORING_OP_NOP:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006588 ret = io_nop(req, issue_flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006589 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006590 case IORING_OP_READV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07006591 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07006592 case IORING_OP_READ:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006593 ret = io_read(req, issue_flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006594 break;
6595 case IORING_OP_WRITEV:
Jens Axboe2b188cc2019-01-07 10:46:33 -07006596 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07006597 case IORING_OP_WRITE:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006598 ret = io_write(req, issue_flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006599 break;
6600 case IORING_OP_FSYNC:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006601 ret = io_fsync(req, issue_flags);
Jackie Liuba5290c2019-10-09 09:19:59 +08006602 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006603 case IORING_OP_POLL_ADD:
Pavel Begunkov61e98202021-02-10 00:03:08 +00006604 ret = io_poll_add(req, issue_flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006605 break;
6606 case IORING_OP_POLL_REMOVE:
Pavel Begunkovc5de0032021-04-14 13:38:37 +01006607 ret = io_poll_update(req, issue_flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006608 break;
Jens Axboeb76da702019-11-20 13:05:32 -07006609 case IORING_OP_SYNC_FILE_RANGE:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006610 ret = io_sync_file_range(req, issue_flags);
Jens Axboeb76da702019-11-20 13:05:32 -07006611 break;
6612 case IORING_OP_SENDMSG:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006613 ret = io_sendmsg(req, issue_flags);
Pavel Begunkov062d04d2020-10-10 18:34:12 +01006614 break;
Jens Axboefddafac2020-01-04 20:19:44 -07006615 case IORING_OP_SEND:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006616 ret = io_send(req, issue_flags);
Jens Axboeb76da702019-11-20 13:05:32 -07006617 break;
6618 case IORING_OP_RECVMSG:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006619 ret = io_recvmsg(req, issue_flags);
Pavel Begunkov062d04d2020-10-10 18:34:12 +01006620 break;
Jens Axboefddafac2020-01-04 20:19:44 -07006621 case IORING_OP_RECV:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006622 ret = io_recv(req, issue_flags);
Jens Axboeb76da702019-11-20 13:05:32 -07006623 break;
Jens Axboe561fb042019-10-24 07:25:42 -06006624 case IORING_OP_TIMEOUT:
Pavel Begunkov61e98202021-02-10 00:03:08 +00006625 ret = io_timeout(req, issue_flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006626 break;
6627 case IORING_OP_TIMEOUT_REMOVE:
Pavel Begunkov61e98202021-02-10 00:03:08 +00006628 ret = io_timeout_remove(req, issue_flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006629 break;
6630 case IORING_OP_ACCEPT:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006631 ret = io_accept(req, issue_flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006632 break;
6633 case IORING_OP_CONNECT:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006634 ret = io_connect(req, issue_flags);
Jens Axboe31b51512019-01-18 22:56:34 -07006635 break;
6636 case IORING_OP_ASYNC_CANCEL:
Pavel Begunkov61e98202021-02-10 00:03:08 +00006637 ret = io_async_cancel(req, issue_flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006638 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07006639 case IORING_OP_FALLOCATE:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006640 ret = io_fallocate(req, issue_flags);
Jens Axboed63d1b52019-12-10 10:38:56 -07006641 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07006642 case IORING_OP_OPENAT:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006643 ret = io_openat(req, issue_flags);
Jens Axboe15b71ab2019-12-11 11:20:36 -07006644 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07006645 case IORING_OP_CLOSE:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006646 ret = io_close(req, issue_flags);
Jens Axboeb5dba592019-12-11 14:02:38 -07006647 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006648 case IORING_OP_FILES_UPDATE:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006649 ret = io_files_update(req, issue_flags);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006650 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07006651 case IORING_OP_STATX:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006652 ret = io_statx(req, issue_flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07006653 break;
Jens Axboe4840e412019-12-25 22:03:45 -07006654 case IORING_OP_FADVISE:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006655 ret = io_fadvise(req, issue_flags);
Jens Axboe4840e412019-12-25 22:03:45 -07006656 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07006657 case IORING_OP_MADVISE:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006658 ret = io_madvise(req, issue_flags);
Jens Axboec1ca7572019-12-25 22:18:28 -07006659 break;
Jens Axboecebdb982020-01-08 17:59:24 -07006660 case IORING_OP_OPENAT2:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006661 ret = io_openat2(req, issue_flags);
Jens Axboecebdb982020-01-08 17:59:24 -07006662 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07006663 case IORING_OP_EPOLL_CTL:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006664 ret = io_epoll_ctl(req, issue_flags);
Jens Axboe3e4827b2020-01-08 15:18:09 -07006665 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03006666 case IORING_OP_SPLICE:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006667 ret = io_splice(req, issue_flags);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03006668 break;
Jens Axboeddf0322d2020-02-23 16:41:33 -07006669 case IORING_OP_PROVIDE_BUFFERS:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006670 ret = io_provide_buffers(req, issue_flags);
Jens Axboeddf0322d2020-02-23 16:41:33 -07006671 break;
Jens Axboe067524e2020-03-02 16:32:28 -07006672 case IORING_OP_REMOVE_BUFFERS:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006673 ret = io_remove_buffers(req, issue_flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006674 break;
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03006675 case IORING_OP_TEE:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006676 ret = io_tee(req, issue_flags);
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03006677 break;
Jens Axboe36f4fa62020-09-05 11:14:22 -06006678 case IORING_OP_SHUTDOWN:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006679 ret = io_shutdown(req, issue_flags);
Jens Axboe36f4fa62020-09-05 11:14:22 -06006680 break;
Jens Axboe80a261f2020-09-28 14:23:58 -06006681 case IORING_OP_RENAMEAT:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006682 ret = io_renameat(req, issue_flags);
Jens Axboe80a261f2020-09-28 14:23:58 -06006683 break;
Jens Axboe14a11432020-09-28 14:27:37 -06006684 case IORING_OP_UNLINKAT:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006685 ret = io_unlinkat(req, issue_flags);
Jens Axboe14a11432020-09-28 14:27:37 -06006686 break;
Dmitry Kadasheve34a02d2021-07-08 13:34:45 +07006687 case IORING_OP_MKDIRAT:
6688 ret = io_mkdirat(req, issue_flags);
6689 break;
Dmitry Kadashev7a8721f2021-07-08 13:34:46 +07006690 case IORING_OP_SYMLINKAT:
6691 ret = io_symlinkat(req, issue_flags);
6692 break;
Dmitry Kadashevcf30da92021-07-08 13:34:47 +07006693 case IORING_OP_LINKAT:
6694 ret = io_linkat(req, issue_flags);
6695 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006696 default:
6697 ret = -EINVAL;
6698 break;
6699 }
Jens Axboe31b51512019-01-18 22:56:34 -07006700
Jens Axboe5730b272021-02-27 15:57:30 -07006701 if (creds)
6702 revert_creds(creds);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006703 if (ret)
6704 return ret;
Jens Axboeb5325762020-05-19 21:20:27 -06006705 /* If the op doesn't have a file, we're not polling for it */
Pavel Begunkovcb3d8972021-06-14 02:36:14 +01006706 if ((ctx->flags & IORING_SETUP_IOPOLL) && req->file)
6707 io_iopoll_req_issued(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006708
6709 return 0;
6710}
6711
Pavel Begunkovebc11b62021-08-09 13:04:05 +01006712static struct io_wq_work *io_wq_free_work(struct io_wq_work *work)
6713{
6714 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
6715
6716 req = io_put_req_find_next(req);
6717 return req ? &req->work : NULL;
6718}
6719
Pavel Begunkov5280f7e2021-02-04 13:52:08 +00006720static void io_wq_submit_work(struct io_wq_work *work)
Pavel Begunkovd4c81f32020-06-08 21:08:19 +03006721{
Jens Axboe2b188cc2019-01-07 10:46:33 -07006722 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Pavel Begunkov6df1db62020-07-03 22:15:06 +03006723 struct io_kiocb *timeout;
Jens Axboe561fb042019-10-24 07:25:42 -06006724 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006725
Pavel Begunkov48dcd382021-08-15 10:40:18 +01006726 /* one will be dropped by ->io_free_work() after returning to io-wq */
6727 if (!(req->flags & REQ_F_REFCOUNT))
6728 __io_req_set_refcount(req, 2);
6729 else
6730 req_ref_get(req);
Pavel Begunkov5d5901a2021-08-11 19:28:29 +01006731
Pavel Begunkov6df1db62020-07-03 22:15:06 +03006732 timeout = io_prep_linked_timeout(req);
6733 if (timeout)
6734 io_queue_linked_timeout(timeout);
Pavel Begunkovd4c81f32020-06-08 21:08:19 +03006735
Pavel Begunkovdadebc32021-08-23 13:30:44 +01006736 /* either cancelled or io-wq is dying, so don't touch tctx->iowq */
Jens Axboe4014d942021-01-19 15:53:54 -07006737 if (work->flags & IO_WQ_WORK_CANCEL)
Jens Axboe561fb042019-10-24 07:25:42 -06006738 ret = -ECANCELED;
Jens Axboe31b51512019-01-18 22:56:34 -07006739
Jens Axboe561fb042019-10-24 07:25:42 -06006740 if (!ret) {
Jens Axboe561fb042019-10-24 07:25:42 -06006741 do {
Pavel Begunkov889fca72021-02-10 00:03:09 +00006742 ret = io_issue_sqe(req, 0);
Jens Axboe561fb042019-10-24 07:25:42 -06006743 /*
6744 * We can get EAGAIN for polled IO even though we're
6745 * forcing a sync submission from here, since we can't
6746 * wait for request slots on the block side.
6747 */
6748 if (ret != -EAGAIN)
6749 break;
6750 cond_resched();
6751 } while (1);
6752 }
Jens Axboe31b51512019-01-18 22:56:34 -07006753
Pavel Begunkova3df76982021-02-18 22:32:52 +00006754 /* avoid locking problems by failing it from a clean context */
Pavel Begunkov5d5901a2021-08-11 19:28:29 +01006755 if (ret)
Pavel Begunkova3df76982021-02-18 22:32:52 +00006756 io_req_task_queue_fail(req, ret);
Jens Axboe31b51512019-01-18 22:56:34 -07006757}
Jens Axboe2b188cc2019-01-07 10:46:33 -07006758
Pavel Begunkovaeca2412021-04-11 01:46:37 +01006759static inline struct io_fixed_file *io_fixed_file_slot(struct io_file_table *table,
Pavel Begunkov042b0d82021-08-09 13:04:01 +01006760 unsigned i)
Jens Axboe09bb8392019-03-13 12:39:28 -06006761{
Pavel Begunkov042b0d82021-08-09 13:04:01 +01006762 return &table->files[i];
Pavel Begunkovdafecf12021-02-28 22:35:11 +00006763}
6764
Jens Axboe09bb8392019-03-13 12:39:28 -06006765static inline struct file *io_file_from_index(struct io_ring_ctx *ctx,
6766 int index)
6767{
Pavel Begunkovaeca2412021-04-11 01:46:37 +01006768 struct io_fixed_file *slot = io_fixed_file_slot(&ctx->file_table, index);
Jens Axboe65e19f52019-10-26 07:20:21 -06006769
Pavel Begunkova04b0ac2021-04-01 15:44:04 +01006770 return (struct file *) (slot->file_ptr & FFS_MASK);
Jens Axboe65e19f52019-10-26 07:20:21 -06006771}
6772
Pavel Begunkova04b0ac2021-04-01 15:44:04 +01006773static void io_fixed_file_set(struct io_fixed_file *file_slot, struct file *file)
Pavel Begunkov9a321c92021-04-01 15:44:01 +01006774{
6775 unsigned long file_ptr = (unsigned long) file;
6776
Pavel Begunkovb191e2d2021-08-09 13:04:03 +01006777 if (__io_file_supports_nowait(file, READ))
Pavel Begunkov9a321c92021-04-01 15:44:01 +01006778 file_ptr |= FFS_ASYNC_READ;
Pavel Begunkovb191e2d2021-08-09 13:04:03 +01006779 if (__io_file_supports_nowait(file, WRITE))
Pavel Begunkov9a321c92021-04-01 15:44:01 +01006780 file_ptr |= FFS_ASYNC_WRITE;
6781 if (S_ISREG(file_inode(file)->i_mode))
6782 file_ptr |= FFS_ISREG;
Pavel Begunkova04b0ac2021-04-01 15:44:04 +01006783 file_slot->file_ptr = file_ptr;
Jens Axboe09bb8392019-03-13 12:39:28 -06006784}
6785
Pavel Begunkovac177052021-08-09 13:04:02 +01006786static inline struct file *io_file_get_fixed(struct io_ring_ctx *ctx,
6787 struct io_kiocb *req, int fd)
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006788{
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006789 struct file *file;
Pavel Begunkovac177052021-08-09 13:04:02 +01006790 unsigned long file_ptr;
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006791
Pavel Begunkovac177052021-08-09 13:04:02 +01006792 if (unlikely((unsigned int)fd >= ctx->nr_user_files))
6793 return NULL;
6794 fd = array_index_nospec(fd, ctx->nr_user_files);
6795 file_ptr = io_fixed_file_slot(&ctx->file_table, fd)->file_ptr;
6796 file = (struct file *) (file_ptr & FFS_MASK);
6797 file_ptr &= ~FFS_MASK;
6798 /* mask in overlapping REQ_F and FFS bits */
Pavel Begunkovb191e2d2021-08-09 13:04:03 +01006799 req->flags |= (file_ptr << REQ_F_NOWAIT_READ_BIT);
Pavel Begunkova46be972021-10-09 23:14:40 +01006800 io_req_set_rsrc_node(req, ctx);
Pavel Begunkov8371adf2020-10-10 18:34:08 +01006801 return file;
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006802}
6803
Pavel Begunkovac177052021-08-09 13:04:02 +01006804static struct file *io_file_get_normal(struct io_ring_ctx *ctx,
Pavel Begunkovac177052021-08-09 13:04:02 +01006805 struct io_kiocb *req, int fd)
6806{
Pavel Begunkov62906e82021-08-10 14:52:47 +01006807 struct file *file = fget(fd);
Pavel Begunkovac177052021-08-09 13:04:02 +01006808
6809 trace_io_uring_file_get(ctx, fd);
6810
6811 /* we don't allow fixed io_uring files */
6812 if (file && unlikely(file->f_op == &io_uring_fops))
6813 io_req_track_inflight(req);
6814 return file;
6815}
6816
6817static inline struct file *io_file_get(struct io_ring_ctx *ctx,
Pavel Begunkovac177052021-08-09 13:04:02 +01006818 struct io_kiocb *req, int fd, bool fixed)
6819{
6820 if (fixed)
6821 return io_file_get_fixed(ctx, req, fd);
6822 else
Pavel Begunkov62906e82021-08-10 14:52:47 +01006823 return io_file_get_normal(ctx, req, fd);
Pavel Begunkovac177052021-08-09 13:04:02 +01006824}
6825
Pavel Begunkovf237c302021-08-18 12:42:46 +01006826static void io_req_task_link_timeout(struct io_kiocb *req, bool *locked)
Jens Axboe89b263f2021-08-10 15:14:18 -06006827{
6828 struct io_kiocb *prev = req->timeout.prev;
Pavel Begunkov8cb01fa2021-08-15 10:40:22 +01006829 int ret;
Jens Axboe89b263f2021-08-10 15:14:18 -06006830
6831 if (prev) {
Pavel Begunkov8cb01fa2021-08-15 10:40:22 +01006832 ret = io_try_cancel_userdata(req, prev->user_data);
Pavel Begunkov505657b2021-08-17 20:28:09 +01006833 io_req_complete_post(req, ret ?: -ETIME, 0);
Jens Axboe89b263f2021-08-10 15:14:18 -06006834 io_put_req(prev);
Jens Axboe89b263f2021-08-10 15:14:18 -06006835 } else {
6836 io_req_complete_post(req, -ETIME, 0);
6837 }
6838}
6839
Jens Axboe2665abf2019-11-05 12:40:47 -07006840static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer)
6841{
Jens Axboead8a48a2019-11-15 08:49:11 -07006842 struct io_timeout_data *data = container_of(timer,
6843 struct io_timeout_data, timer);
Pavel Begunkov90cd7e42020-10-27 23:25:36 +00006844 struct io_kiocb *prev, *req = data->req;
Jens Axboe2665abf2019-11-05 12:40:47 -07006845 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07006846 unsigned long flags;
Jens Axboe2665abf2019-11-05 12:40:47 -07006847
Jens Axboe89b263f2021-08-10 15:14:18 -06006848 spin_lock_irqsave(&ctx->timeout_lock, flags);
Pavel Begunkov90cd7e42020-10-27 23:25:36 +00006849 prev = req->timeout.head;
6850 req->timeout.head = NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07006851
6852 /*
6853 * We don't expect the list to be empty, that will only happen if we
6854 * race with the completion of the linked work.
6855 */
Pavel Begunkov447c19f2021-05-14 12:02:50 +01006856 if (prev) {
Pavel Begunkovf2f87372020-10-27 23:25:37 +00006857 io_remove_next_linked(prev);
Pavel Begunkov447c19f2021-05-14 12:02:50 +01006858 if (!req_ref_inc_not_zero(prev))
6859 prev = NULL;
6860 }
Pavel Begunkovef9dd632021-08-28 19:54:38 -06006861 list_del(&req->timeout.list);
Jens Axboe89b263f2021-08-10 15:14:18 -06006862 req->timeout.prev = prev;
6863 spin_unlock_irqrestore(&ctx->timeout_lock, flags);
Jens Axboe2665abf2019-11-05 12:40:47 -07006864
Jens Axboe89b263f2021-08-10 15:14:18 -06006865 req->io_task_work.func = io_req_task_link_timeout;
6866 io_req_task_work_add(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07006867 return HRTIMER_NORESTART;
6868}
6869
Pavel Begunkovde968c12021-03-19 17:22:33 +00006870static void io_queue_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07006871{
Pavel Begunkovde968c12021-03-19 17:22:33 +00006872 struct io_ring_ctx *ctx = req->ctx;
6873
Jens Axboe89b263f2021-08-10 15:14:18 -06006874 spin_lock_irq(&ctx->timeout_lock);
Jens Axboe76a46e02019-11-10 23:34:16 -07006875 /*
Pavel Begunkovf2f87372020-10-27 23:25:37 +00006876 * If the back reference is NULL, then our linked request finished
6877 * before we got a chance to setup the timer
Jens Axboe76a46e02019-11-10 23:34:16 -07006878 */
Pavel Begunkov90cd7e42020-10-27 23:25:36 +00006879 if (req->timeout.head) {
Jens Axboee8c2bc12020-08-15 18:44:09 -07006880 struct io_timeout_data *data = req->async_data;
Jens Axboe94ae5e72019-11-14 19:39:52 -07006881
Jens Axboead8a48a2019-11-15 08:49:11 -07006882 data->timer.function = io_link_timeout_fn;
6883 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts),
6884 data->mode);
Pavel Begunkovef9dd632021-08-28 19:54:38 -06006885 list_add_tail(&req->timeout.list, &ctx->ltimeout_list);
Jens Axboe2665abf2019-11-05 12:40:47 -07006886 }
Jens Axboe89b263f2021-08-10 15:14:18 -06006887 spin_unlock_irq(&ctx->timeout_lock);
Jens Axboe2665abf2019-11-05 12:40:47 -07006888 /* drop submission reference */
Jens Axboe76a46e02019-11-10 23:34:16 -07006889 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07006890}
6891
Pavel Begunkovd475a9a2021-09-24 21:59:59 +01006892static void io_queue_sqe_arm_apoll(struct io_kiocb *req)
6893 __must_hold(&req->ctx->uring_lock)
6894{
6895 struct io_kiocb *linked_timeout = io_prep_linked_timeout(req);
6896
6897 switch (io_arm_poll_handler(req)) {
6898 case IO_APOLL_READY:
6899 if (linked_timeout) {
6900 io_unprep_linked_timeout(req);
6901 linked_timeout = NULL;
6902 }
6903 io_req_task_queue(req);
6904 break;
6905 case IO_APOLL_ABORTED:
6906 /*
6907 * Queued up for async execution, worker will release
6908 * submit reference when the iocb is actually submitted.
6909 */
6910 io_queue_async_work(req, NULL);
6911 break;
6912 }
6913
6914 if (linked_timeout)
6915 io_queue_linked_timeout(linked_timeout);
6916}
6917
6918static inline void __io_queue_sqe(struct io_kiocb *req)
Pavel Begunkov282cdc82021-08-09 13:04:10 +01006919 __must_hold(&req->ctx->uring_lock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006920{
Pavel Begunkov906c6ca2021-08-15 10:40:26 +01006921 struct io_kiocb *linked_timeout;
Jens Axboee0c5c572019-03-12 10:18:47 -06006922 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006923
Pavel Begunkovc5eef2b2021-02-10 00:03:22 +00006924 ret = io_issue_sqe(req, IO_URING_F_NONBLOCK|IO_URING_F_COMPLETE_DEFER);
Jens Axboe491381ce2019-10-17 09:20:46 -06006925
Pavel Begunkovfff4e402021-10-04 20:02:48 +01006926 if (req->flags & REQ_F_COMPLETE_INLINE) {
6927 io_req_add_compl_list(req);
Pavel Begunkovd9f9d282021-09-24 22:00:00 +01006928 return;
Pavel Begunkovfff4e402021-10-04 20:02:48 +01006929 }
Jens Axboe491381ce2019-10-17 09:20:46 -06006930 /*
6931 * We async punt it if the file wasn't marked NOWAIT, or if the file
6932 * doesn't support non-blocking read/write attempts
6933 */
Pavel Begunkov18400382021-03-19 17:22:34 +00006934 if (likely(!ret)) {
Pavel Begunkov906c6ca2021-08-15 10:40:26 +01006935 linked_timeout = io_prep_linked_timeout(req);
6936 if (linked_timeout)
6937 io_queue_linked_timeout(linked_timeout);
Pavel Begunkov18400382021-03-19 17:22:34 +00006938 } else if (ret == -EAGAIN && !(req->flags & REQ_F_NOWAIT)) {
Pavel Begunkovd475a9a2021-09-24 21:59:59 +01006939 io_queue_sqe_arm_apoll(req);
Pavel Begunkov0d63c142020-10-22 16:47:18 +01006940 } else {
Pavel Begunkovf41db2732021-02-28 22:35:12 +00006941 io_req_complete_failed(req, ret);
Jens Axboe9e645e112019-05-10 16:07:28 -06006942 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006943}
6944
Pavel Begunkov4652fe32021-09-24 21:59:58 +01006945static void io_queue_sqe_fallback(struct io_kiocb *req)
Pavel Begunkov282cdc82021-08-09 13:04:10 +01006946 __must_hold(&req->ctx->uring_lock)
Jackie Liu4fe2c962019-09-09 20:50:40 +08006947{
Pavel Begunkov4652fe32021-09-24 21:59:58 +01006948 if (req->flags & REQ_F_FAIL) {
Pavel Begunkovc6d3d9c2021-08-31 14:13:10 +01006949 io_req_complete_fail_submit(req);
Pavel Begunkove0eb71d2021-10-01 18:07:01 +01006950 } else if (unlikely(req->ctx->drain_active)) {
6951 io_drain_req(req);
Pavel Begunkov76cc33d2021-06-14 23:37:30 +01006952 } else {
6953 int ret = io_req_prep_async(req);
6954
6955 if (unlikely(ret))
6956 io_req_complete_failed(req, ret);
6957 else
Pavel Begunkovf237c302021-08-18 12:42:46 +01006958 io_queue_async_work(req, NULL);
Jens Axboece35a472019-12-17 08:04:44 -07006959 }
Jackie Liu4fe2c962019-09-09 20:50:40 +08006960}
6961
Pavel Begunkov4652fe32021-09-24 21:59:58 +01006962static inline void io_queue_sqe(struct io_kiocb *req)
6963 __must_hold(&req->ctx->uring_lock)
6964{
6965 if (likely(!(req->flags & (REQ_F_FORCE_ASYNC | REQ_F_FAIL))))
6966 __io_queue_sqe(req);
6967 else
6968 io_queue_sqe_fallback(req);
6969}
6970
Stefano Garzarella21b55db2020-08-27 16:58:30 +02006971/*
6972 * Check SQE restrictions (opcode and flags).
6973 *
6974 * Returns 'true' if SQE is allowed, 'false' otherwise.
6975 */
6976static inline bool io_check_restriction(struct io_ring_ctx *ctx,
6977 struct io_kiocb *req,
6978 unsigned int sqe_flags)
6979{
Stefano Garzarella21b55db2020-08-27 16:58:30 +02006980 if (!test_bit(req->opcode, ctx->restrictions.sqe_op))
6981 return false;
6982
6983 if ((sqe_flags & ctx->restrictions.sqe_flags_required) !=
6984 ctx->restrictions.sqe_flags_required)
6985 return false;
6986
6987 if (sqe_flags & ~(ctx->restrictions.sqe_flags_allowed |
6988 ctx->restrictions.sqe_flags_required))
6989 return false;
6990
6991 return true;
6992}
6993
Pavel Begunkov22b2ca32021-10-01 18:07:00 +01006994static void io_init_req_drain(struct io_kiocb *req)
6995{
6996 struct io_ring_ctx *ctx = req->ctx;
6997 struct io_kiocb *head = ctx->submit_state.link.head;
6998
6999 ctx->drain_active = true;
7000 if (head) {
7001 /*
7002 * If we need to drain a request in the middle of a link, drain
7003 * the head request and the next request/link after the current
7004 * link. Considering sequential execution of links,
7005 * IOSQE_IO_DRAIN will be maintained for every request of our
7006 * link.
7007 */
7008 head->flags |= IOSQE_IO_DRAIN | REQ_F_FORCE_ASYNC;
7009 ctx->drain_next = true;
7010 }
7011}
7012
Pavel Begunkovef4ff582020-04-12 02:05:05 +03007013static int io_init_req(struct io_ring_ctx *ctx, struct io_kiocb *req,
Pavel Begunkov258b29a2021-02-10 00:03:10 +00007014 const struct io_uring_sqe *sqe)
Pavel Begunkov282cdc82021-08-09 13:04:10 +01007015 __must_hold(&ctx->uring_lock)
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03007016{
Pavel Begunkovef4ff582020-04-12 02:05:05 +03007017 unsigned int sqe_flags;
Pavel Begunkovfc0ae022021-10-01 18:07:02 +01007018 int personality;
Pavel Begunkov4a04d1d2021-10-06 16:06:49 +01007019 u8 opcode;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03007020
Pavel Begunkov864ea922021-08-09 13:04:08 +01007021 /* req is partially pre-initialised, see io_preinit_req() */
Pavel Begunkov4a04d1d2021-10-06 16:06:49 +01007022 req->opcode = opcode = READ_ONCE(sqe->opcode);
Pavel Begunkov5be9ad12021-02-12 18:41:17 +00007023 /* same numerical values with corresponding REQ_F_*, safe to copy */
7024 req->flags = sqe_flags = READ_ONCE(sqe->flags);
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03007025 req->user_data = READ_ONCE(sqe->user_data);
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03007026 req->file = NULL;
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00007027 req->fixed_rsrc_refs = NULL;
Pavel Begunkov4dd28242020-06-15 10:33:13 +03007028 req->task = current;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03007029
Pavel Begunkov4a04d1d2021-10-06 16:06:49 +01007030 if (unlikely(opcode >= IORING_OP_LAST)) {
7031 req->opcode = 0;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03007032 return -EINVAL;
Pavel Begunkov4a04d1d2021-10-06 16:06:49 +01007033 }
Pavel Begunkov68fe2562021-09-15 12:03:38 +01007034 if (unlikely(sqe_flags & ~SQE_COMMON_FLAGS)) {
7035 /* enforce forwards compatibility on users */
7036 if (sqe_flags & ~SQE_VALID_FLAGS)
7037 return -EINVAL;
7038 if ((sqe_flags & IOSQE_BUFFER_SELECT) &&
Pavel Begunkov4a04d1d2021-10-06 16:06:49 +01007039 !io_op_defs[opcode].buffer_select)
Pavel Begunkov68fe2562021-09-15 12:03:38 +01007040 return -EOPNOTSUPP;
Pavel Begunkov22b2ca32021-10-01 18:07:00 +01007041 if (sqe_flags & IOSQE_IO_DRAIN)
7042 io_init_req_drain(req);
Pavel Begunkov68fe2562021-09-15 12:03:38 +01007043 }
Pavel Begunkov2a56a9b2021-09-24 21:59:57 +01007044 if (unlikely(ctx->restricted || ctx->drain_active || ctx->drain_next)) {
7045 if (ctx->restricted && !io_check_restriction(ctx, req, sqe_flags))
7046 return -EACCES;
7047 /* knock it to the slow queue path, will be drained there */
7048 if (ctx->drain_active)
7049 req->flags |= REQ_F_FORCE_ASYNC;
7050 /* if there is no link, we're at "next" request and need to drain */
7051 if (unlikely(ctx->drain_next) && !ctx->submit_state.link.head) {
7052 ctx->drain_next = false;
7053 ctx->drain_active = true;
Pavel Begunkov22b2ca32021-10-01 18:07:00 +01007054 req->flags |= IOSQE_IO_DRAIN | REQ_F_FORCE_ASYNC;
Pavel Begunkov2a56a9b2021-09-24 21:59:57 +01007055 }
7056 }
Stefano Garzarella21b55db2020-08-27 16:58:30 +02007057
Pavel Begunkov4a04d1d2021-10-06 16:06:49 +01007058 if (io_op_defs[opcode].needs_file) {
Pavel Begunkov6d634162021-10-06 16:06:46 +01007059 struct io_submit_state *state = &ctx->submit_state;
7060
7061 /*
7062 * Plug now if we have more than 2 IO left after this, and the
7063 * target is potentially a read/write to block based storage.
7064 */
Pavel Begunkov4a04d1d2021-10-06 16:06:49 +01007065 if (state->need_plug && io_op_defs[opcode].plug) {
Pavel Begunkov6d634162021-10-06 16:06:46 +01007066 state->plug_started = true;
7067 state->need_plug = false;
7068 blk_start_plug(&state->plug);
7069 }
7070
Pavel Begunkov62906e82021-08-10 14:52:47 +01007071 req->file = io_file_get(ctx, req, READ_ONCE(sqe->fd),
Pavel Begunkovac177052021-08-09 13:04:02 +01007072 (sqe_flags & IOSQE_FIXED_FILE));
Pavel Begunkovba13e232021-02-01 18:59:52 +00007073 if (unlikely(!req->file))
Pavel Begunkovfc0ae022021-10-01 18:07:02 +01007074 return -EBADF;
Pavel Begunkovbd5bbda2020-11-20 15:50:51 +00007075 }
Pavel Begunkovfc0ae022021-10-01 18:07:02 +01007076
Pavel Begunkov4a04d1d2021-10-06 16:06:49 +01007077 personality = READ_ONCE(sqe->personality);
7078 if (personality) {
7079 req->creds = xa_load(&ctx->personalities, personality);
7080 if (!req->creds)
7081 return -EINVAL;
7082 get_cred(req->creds);
7083 req->flags |= REQ_F_CREDS;
7084 }
7085
Pavel Begunkovfc0ae022021-10-01 18:07:02 +01007086 return io_req_prep(req, sqe);
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03007087}
7088
Pavel Begunkova6b8cadc2021-02-18 18:29:41 +00007089static int io_submit_sqe(struct io_ring_ctx *ctx, struct io_kiocb *req,
Pavel Begunkova1ab7b32021-02-18 18:29:42 +00007090 const struct io_uring_sqe *sqe)
Pavel Begunkov282cdc82021-08-09 13:04:10 +01007091 __must_hold(&ctx->uring_lock)
Jens Axboe6c271ce2019-01-10 11:22:30 -07007092{
Pavel Begunkova1ab7b32021-02-18 18:29:42 +00007093 struct io_submit_link *link = &ctx->submit_state.link;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007094 int ret;
7095
Pavel Begunkova6b8cadc2021-02-18 18:29:41 +00007096 ret = io_init_req(ctx, req, sqe);
7097 if (unlikely(ret)) {
Jens Axboea87acfd2021-09-11 16:04:50 -06007098 trace_io_uring_req_failed(sqe, ret);
7099
Hao Xua8295b92021-08-27 17:46:09 +08007100 /* fail even hard links since we don't submit */
Pavel Begunkovde59bc12021-02-18 18:29:47 +00007101 if (link->head) {
Hao Xua8295b92021-08-27 17:46:09 +08007102 /*
7103 * we can judge a link req is failed or cancelled by if
7104 * REQ_F_FAIL is set, but the head is an exception since
7105 * it may be set REQ_F_FAIL because of other req's failure
7106 * so let's leverage req->result to distinguish if a head
7107 * is set REQ_F_FAIL because of its failure or other req's
7108 * failure so that we can set the correct ret code for it.
7109 * init result here to avoid affecting the normal path.
7110 */
7111 if (!(link->head->flags & REQ_F_FAIL))
7112 req_fail_link_node(link->head, -ECANCELED);
7113 } else if (!(req->flags & (REQ_F_LINK | REQ_F_HARDLINK))) {
7114 /*
7115 * the current req is a normal req, we should return
7116 * error and thus break the submittion loop.
7117 */
7118 io_req_complete_failed(req, ret);
7119 return ret;
Pavel Begunkovde59bc12021-02-18 18:29:47 +00007120 }
Hao Xua8295b92021-08-27 17:46:09 +08007121 req_fail_link_node(req, ret);
Pavel Begunkova6b8cadc2021-02-18 18:29:41 +00007122 }
Pavel Begunkov441b8a72021-06-14 23:37:31 +01007123
Pavel Begunkovbe7053b2021-02-18 18:29:45 +00007124 /* don't need @sqe from now on */
Olivier Langlois236daeae2021-05-31 02:36:37 -04007125 trace_io_uring_submit_sqe(ctx, req, req->opcode, req->user_data,
7126 req->flags, true,
7127 ctx->flags & IORING_SETUP_SQPOLL);
Pavel Begunkova6b8cadc2021-02-18 18:29:41 +00007128
Jens Axboe6c271ce2019-01-10 11:22:30 -07007129 /*
7130 * If we already have a head request, queue this one for async
7131 * submittal once the head completes. If we don't have a head but
7132 * IOSQE_IO_LINK is set in the sqe, start a new head. This one will be
7133 * submitted sync once the chain is complete. If none of those
7134 * conditions are true (normal request), then just queue it.
7135 */
7136 if (link->head) {
7137 struct io_kiocb *head = link->head;
7138
Hao Xua8295b92021-08-27 17:46:09 +08007139 if (!(req->flags & REQ_F_FAIL)) {
7140 ret = io_req_prep_async(req);
7141 if (unlikely(ret)) {
7142 req_fail_link_node(req, ret);
7143 if (!(head->flags & REQ_F_FAIL))
7144 req_fail_link_node(head, -ECANCELED);
7145 }
7146 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07007147 trace_io_uring_link(ctx, req, head);
7148 link->last->link = req;
7149 link->last = req;
7150
Pavel Begunkovf15a3432021-09-24 21:59:56 +01007151 if (req->flags & (REQ_F_LINK | REQ_F_HARDLINK))
7152 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007153 /* last request of a link, enqueue the link */
Pavel Begunkovf15a3432021-09-24 21:59:56 +01007154 link->head = NULL;
7155 req = head;
7156 } else if (req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) {
7157 link->head = req;
7158 link->last = req;
7159 return 0;
Jackie Liu4fe2c962019-09-09 20:50:40 +08007160 }
7161
Pavel Begunkovf15a3432021-09-24 21:59:56 +01007162 io_queue_sqe(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08007163 return 0;
7164}
7165
7166/*
7167 * Batched submission is done, ensure local IO is flushed out.
7168 */
Pavel Begunkov553deff2021-09-24 21:59:55 +01007169static void io_submit_state_end(struct io_ring_ctx *ctx)
Jens Axboe3529d8c2019-12-19 18:24:38 -07007170{
Pavel Begunkov553deff2021-09-24 21:59:55 +01007171 struct io_submit_state *state = &ctx->submit_state;
7172
Pavel Begunkova1ab7b32021-02-18 18:29:42 +00007173 if (state->link.head)
Pavel Begunkovde59bc12021-02-18 18:29:47 +00007174 io_queue_sqe(state->link.head);
Pavel Begunkov553deff2021-09-24 21:59:55 +01007175 /* flush only after queuing links as they can generate completions */
Pavel Begunkovc4501782021-09-08 16:40:52 +01007176 io_submit_flush_completions(ctx);
Jackie Liua197f662019-11-08 08:09:12 -07007177 if (state->plug_started)
Pavel Begunkov32fe5252019-12-17 22:26:58 +03007178 blk_finish_plug(&state->plug);
Jens Axboe9e645e112019-05-10 16:07:28 -06007179}
Pavel Begunkov32fe5252019-12-17 22:26:58 +03007180
Jens Axboe9e645e112019-05-10 16:07:28 -06007181/*
7182 * Start submission side cache.
Pavel Begunkov32fe5252019-12-17 22:26:58 +03007183 */
Jens Axboe9e645e112019-05-10 16:07:28 -06007184static void io_submit_state_start(struct io_submit_state *state,
Pavel Begunkov196be952019-11-07 01:41:06 +03007185 unsigned int max_ios)
Jens Axboe9e645e112019-05-10 16:07:28 -06007186{
7187 state->plug_started = false;
Pavel Begunkov4b628ae2021-09-08 16:40:49 +01007188 state->need_plug = max_ios > 2;
Pavel Begunkova1ab7b32021-02-18 18:29:42 +00007189 /* set only head, no need to init link_last in advance */
7190 state->link.head = NULL;
Jens Axboe75c6a032020-01-28 10:15:23 -07007191}
7192
Jens Axboe193155c2020-02-22 23:22:19 -07007193static void io_commit_sqring(struct io_ring_ctx *ctx)
7194{
Jens Axboe75c6a032020-01-28 10:15:23 -07007195 struct io_rings *rings = ctx->rings;
7196
7197 /*
Jens Axboe193155c2020-02-22 23:22:19 -07007198 * Ensure any loads from the SQEs are done at this point,
Jens Axboe75c6a032020-01-28 10:15:23 -07007199 * since once we write the new head, the application could
7200 * write new data to them.
Pavel Begunkov6b47ee62020-01-18 20:22:41 +03007201 */
Pavel Begunkov8da11c12020-02-24 11:32:44 +03007202 smp_store_release(&rings->sq.head, ctx->cached_sq_head);
Jens Axboebcda7ba2020-02-23 16:42:51 -07007203}
7204
Jens Axboe9e645e112019-05-10 16:07:28 -06007205/*
Fam Zhengdd9ae8a2021-06-04 17:42:56 +01007206 * Fetch an sqe, if one is available. Note this returns a pointer to memory
Jens Axboe9e645e112019-05-10 16:07:28 -06007207 * that is mapped by userspace. This means that care needs to be taken to
7208 * ensure that reads are stable, as we cannot rely on userspace always
Jens Axboe78e19bb2019-11-06 15:21:34 -07007209 * being a good citizen. If members of the sqe are validated and then later
7210 * used, it's important that those reads are done through READ_ONCE() to
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03007211 * prevent a re-load down the line.
Jens Axboe9e645e112019-05-10 16:07:28 -06007212 */
7213static const struct io_uring_sqe *io_get_sqe(struct io_ring_ctx *ctx)
Jens Axboe9e645e112019-05-10 16:07:28 -06007214{
Pavel Begunkovea5ab3b2021-05-16 22:58:09 +01007215 unsigned head, mask = ctx->sq_entries - 1;
Pavel Begunkov17d3aeb2021-06-14 23:37:23 +01007216 unsigned sq_idx = ctx->cached_sq_head++ & mask;
Jens Axboe9e645e112019-05-10 16:07:28 -06007217
7218 /*
7219 * The cached sq head (or cq tail) serves two purposes:
7220 *
7221 * 1) allows us to batch the cost of updating the user visible
Pavel Begunkov9d763772019-12-17 02:22:07 +03007222 * head updates.
Jens Axboe9e645e112019-05-10 16:07:28 -06007223 * 2) allows the kernel side to track the head on its own, even
Pavel Begunkov8cdf2192020-01-25 00:40:24 +03007224 * though the application is the one updating it.
7225 */
Pavel Begunkov17d3aeb2021-06-14 23:37:23 +01007226 head = READ_ONCE(ctx->sq_array[sq_idx]);
Pavel Begunkov8cdf2192020-01-25 00:40:24 +03007227 if (likely(head < ctx->sq_entries))
7228 return &ctx->sq_sqes[head];
7229
7230 /* drop invalid entries */
Pavel Begunkov15641e42021-06-14 23:37:24 +01007231 ctx->cq_extra--;
7232 WRITE_ONCE(ctx->rings->sq_dropped,
7233 READ_ONCE(ctx->rings->sq_dropped) + 1);
Pavel Begunkov711be032020-01-17 03:57:59 +03007234 return NULL;
7235}
Jens Axboeb7bb4f72019-12-15 22:13:43 -07007236
Jens Axboe0f212202020-09-13 13:09:39 -06007237static int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr)
Pavel Begunkov282cdc82021-08-09 13:04:10 +01007238 __must_hold(&ctx->uring_lock)
Jens Axboe6c271ce2019-01-10 11:22:30 -07007239{
Pavel Begunkov69629802021-09-24 22:00:01 +01007240 unsigned int entries = io_sqring_entries(ctx);
Pavel Begunkov46c4e162021-02-18 18:29:37 +00007241 int submitted = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007242
Pavel Begunkov51d48da2021-10-04 20:02:47 +01007243 if (unlikely(!entries))
Pavel Begunkov69629802021-09-24 22:00:01 +01007244 return 0;
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03007245 /* make sure SQ entry isn't read before tail */
Pavel Begunkov69629802021-09-24 22:00:01 +01007246 nr = min3(nr, ctx->sq_entries, entries);
Pavel Begunkov9a108672021-08-27 11:55:01 +01007247 io_get_task_refs(nr);
Jens Axboe6c271ce2019-01-10 11:22:30 -07007248
Pavel Begunkovba88ff12021-02-10 00:03:11 +00007249 io_submit_state_start(&ctx->submit_state, nr);
Pavel Begunkov69629802021-09-24 22:00:01 +01007250 do {
Jens Axboe3529d8c2019-12-19 18:24:38 -07007251 const struct io_uring_sqe *sqe;
Pavel Begunkov196be952019-11-07 01:41:06 +03007252 struct io_kiocb *req;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03007253
Pavel Begunkova33ae9c2021-10-04 20:02:49 +01007254 if (unlikely(!io_alloc_req_refill(ctx))) {
Pavel Begunkov196be952019-11-07 01:41:06 +03007255 if (!submitted)
7256 submitted = -EAGAIN;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03007257 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06007258 }
Pavel Begunkova33ae9c2021-10-04 20:02:49 +01007259 req = io_alloc_req(ctx);
Pavel Begunkov4fccfcb2021-02-12 11:55:17 +00007260 sqe = io_get_sqe(ctx);
7261 if (unlikely(!sqe)) {
Pavel Begunkovc2b6c6b2021-09-24 21:59:47 +01007262 wq_stack_add_head(&req->comp_list, &ctx->submit_state.free_list);
Pavel Begunkov4fccfcb2021-02-12 11:55:17 +00007263 break;
7264 }
Jens Axboed3656342019-12-18 09:50:26 -07007265 /* will complete beyond this point, count as submitted */
7266 submitted++;
Pavel Begunkova1ab7b32021-02-18 18:29:42 +00007267 if (io_submit_sqe(ctx, req, sqe))
Jens Axboed3656342019-12-18 09:50:26 -07007268 break;
Pavel Begunkov69629802021-09-24 22:00:01 +01007269 } while (submitted < nr);
Jens Axboe6c271ce2019-01-10 11:22:30 -07007270
Pavel Begunkov9466f432020-01-25 22:34:01 +03007271 if (unlikely(submitted != nr)) {
7272 int ref_used = (submitted == -EAGAIN) ? 0 : submitted;
Jens Axboed8a6df12020-10-15 16:24:45 -06007273 int unused = nr - ref_used;
Pavel Begunkov9466f432020-01-25 22:34:01 +03007274
Pavel Begunkov09899b12021-06-14 02:36:22 +01007275 current->io_uring->cached_refs += unused;
Pavel Begunkov9466f432020-01-25 22:34:01 +03007276 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07007277
Pavel Begunkov553deff2021-09-24 21:59:55 +01007278 io_submit_state_end(ctx);
Pavel Begunkovae9428c2019-11-06 00:22:14 +03007279 /* Commit SQ ring head once we've consumed and submitted all SQEs */
7280 io_commit_sqring(ctx);
7281
Jens Axboe6c271ce2019-01-10 11:22:30 -07007282 return submitted;
7283}
7284
Pavel Begunkove4b6d902021-05-16 22:58:00 +01007285static inline bool io_sqd_events_pending(struct io_sq_data *sqd)
7286{
7287 return READ_ONCE(sqd->state);
7288}
7289
Xiaoguang Wang23b36282020-07-23 20:57:24 +08007290static inline void io_ring_set_wakeup_flag(struct io_ring_ctx *ctx)
7291{
7292 /* Tell userspace we may need a wakeup call */
Jens Axboe79ebeae2021-08-10 15:18:27 -06007293 spin_lock(&ctx->completion_lock);
Nadav Amit20c0b382021-08-07 17:13:42 -07007294 WRITE_ONCE(ctx->rings->sq_flags,
7295 ctx->rings->sq_flags | IORING_SQ_NEED_WAKEUP);
Jens Axboe79ebeae2021-08-10 15:18:27 -06007296 spin_unlock(&ctx->completion_lock);
Xiaoguang Wang23b36282020-07-23 20:57:24 +08007297}
7298
7299static inline void io_ring_clear_wakeup_flag(struct io_ring_ctx *ctx)
7300{
Jens Axboe79ebeae2021-08-10 15:18:27 -06007301 spin_lock(&ctx->completion_lock);
Nadav Amit20c0b382021-08-07 17:13:42 -07007302 WRITE_ONCE(ctx->rings->sq_flags,
7303 ctx->rings->sq_flags & ~IORING_SQ_NEED_WAKEUP);
Jens Axboe79ebeae2021-08-10 15:18:27 -06007304 spin_unlock(&ctx->completion_lock);
Xiaoguang Wang23b36282020-07-23 20:57:24 +08007305}
7306
Xiaoguang Wang08369242020-11-03 14:15:59 +08007307static int __io_sq_thread(struct io_ring_ctx *ctx, bool cap_entries)
Jens Axboe6c271ce2019-01-10 11:22:30 -07007308{
Jens Axboec8d1ba52020-09-14 11:07:26 -06007309 unsigned int to_submit;
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08007310 int ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007311
Jens Axboec8d1ba52020-09-14 11:07:26 -06007312 to_submit = io_sqring_entries(ctx);
Jens Axboee95eee22020-09-08 09:11:32 -06007313 /* if we're handling multiple rings, cap submit size for fairness */
Olivier Langlois4ce8ad92021-06-23 11:50:18 -07007314 if (cap_entries && to_submit > IORING_SQPOLL_CAP_ENTRIES_VALUE)
7315 to_submit = IORING_SQPOLL_CAP_ENTRIES_VALUE;
Jens Axboee95eee22020-09-08 09:11:32 -06007316
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01007317 if (!wq_list_empty(&ctx->iopoll_list) || to_submit) {
Pavel Begunkov948e1942021-06-24 15:09:55 +01007318 const struct cred *creds = NULL;
7319
7320 if (ctx->sq_creds != current_cred())
7321 creds = override_creds(ctx->sq_creds);
Xiaoguang Wang906a3c62020-11-12 14:56:00 +08007322
Xiaoguang Wang08369242020-11-03 14:15:59 +08007323 mutex_lock(&ctx->uring_lock);
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01007324 if (!wq_list_empty(&ctx->iopoll_list))
Pavel Begunkov5ba3c872021-09-24 21:59:43 +01007325 io_do_iopoll(ctx, true);
Xiaoguang Wang906a3c62020-11-12 14:56:00 +08007326
Pavel Begunkov3b763ba2021-04-18 14:52:08 +01007327 /*
7328 * Don't submit if refs are dying, good for io_uring_register(),
7329 * but also it is relied upon by io_ring_exit_work()
7330 */
Pavel Begunkov0298ef92021-03-08 13:20:57 +00007331 if (to_submit && likely(!percpu_ref_is_dying(&ctx->refs)) &&
7332 !(ctx->flags & IORING_SETUP_R_DISABLED))
Xiaoguang Wang08369242020-11-03 14:15:59 +08007333 ret = io_submit_sqes(ctx, to_submit);
7334 mutex_unlock(&ctx->uring_lock);
Jens Axboe90554202020-09-03 12:12:41 -06007335
Pavel Begunkovacfb3812021-05-16 22:58:03 +01007336 if (to_submit && wq_has_sleeper(&ctx->sqo_sq_wait))
7337 wake_up(&ctx->sqo_sq_wait);
Pavel Begunkov948e1942021-06-24 15:09:55 +01007338 if (creds)
7339 revert_creds(creds);
Pavel Begunkovacfb3812021-05-16 22:58:03 +01007340 }
Jens Axboe90554202020-09-03 12:12:41 -06007341
Xiaoguang Wang08369242020-11-03 14:15:59 +08007342 return ret;
7343}
7344
Pavel Begunkovc0724812021-10-04 20:02:54 +01007345static __cold void io_sqd_update_thread_idle(struct io_sq_data *sqd)
Xiaoguang Wang08369242020-11-03 14:15:59 +08007346{
7347 struct io_ring_ctx *ctx;
7348 unsigned sq_thread_idle = 0;
7349
Pavel Begunkovc9dca272021-03-10 13:13:55 +00007350 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list)
7351 sq_thread_idle = max(sq_thread_idle, ctx->sq_thread_idle);
Xiaoguang Wang08369242020-11-03 14:15:59 +08007352 sqd->sq_thread_idle = sq_thread_idle;
Jens Axboec8d1ba52020-09-14 11:07:26 -06007353}
7354
Pavel Begunkove4b6d902021-05-16 22:58:00 +01007355static bool io_sqd_handle_event(struct io_sq_data *sqd)
7356{
7357 bool did_sig = false;
7358 struct ksignal ksig;
7359
7360 if (test_bit(IO_SQ_THREAD_SHOULD_PARK, &sqd->state) ||
7361 signal_pending(current)) {
7362 mutex_unlock(&sqd->lock);
7363 if (signal_pending(current))
7364 did_sig = get_signal(&ksig);
7365 cond_resched();
7366 mutex_lock(&sqd->lock);
7367 }
Pavel Begunkove4b6d902021-05-16 22:58:00 +01007368 return did_sig || test_bit(IO_SQ_THREAD_SHOULD_STOP, &sqd->state);
7369}
7370
Jens Axboe6c271ce2019-01-10 11:22:30 -07007371static int io_sq_thread(void *data)
7372{
Jens Axboe69fb2132020-09-14 11:16:23 -06007373 struct io_sq_data *sqd = data;
7374 struct io_ring_ctx *ctx;
Xiaoguang Wanga0d92052020-11-12 14:55:59 +08007375 unsigned long timeout = 0;
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007376 char buf[TASK_COMM_LEN];
Xiaoguang Wang08369242020-11-03 14:15:59 +08007377 DEFINE_WAIT(wait);
Jens Axboe6c271ce2019-01-10 11:22:30 -07007378
Pavel Begunkov696ee882021-04-01 09:55:04 +01007379 snprintf(buf, sizeof(buf), "iou-sqp-%d", sqd->task_pid);
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007380 set_task_comm(current, buf);
Jens Axboe28cea78a2020-09-14 10:51:17 -06007381
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007382 if (sqd->sq_cpu != -1)
7383 set_cpus_allowed_ptr(current, cpumask_of(sqd->sq_cpu));
7384 else
7385 set_cpus_allowed_ptr(current, cpu_online_mask);
7386 current->flags |= PF_NO_SETAFFINITY;
7387
Pavel Begunkov09a6f4e2021-03-14 20:57:10 +00007388 mutex_lock(&sqd->lock);
Pavel Begunkove4b6d902021-05-16 22:58:00 +01007389 while (1) {
Pavel Begunkov1a924a82021-06-24 15:09:56 +01007390 bool cap_entries, sqt_spin = false;
Jens Axboec1edbf52019-11-10 16:56:04 -07007391
Pavel Begunkove4b6d902021-05-16 22:58:00 +01007392 if (io_sqd_events_pending(sqd) || signal_pending(current)) {
7393 if (io_sqd_handle_event(sqd))
Pavel Begunkovc7d95612021-04-13 11:43:00 +01007394 break;
Xiaoguang Wang08369242020-11-03 14:15:59 +08007395 timeout = jiffies + sqd->sq_thread_idle;
7396 }
Pavel Begunkove4b6d902021-05-16 22:58:00 +01007397
Jens Axboee95eee22020-09-08 09:11:32 -06007398 cap_entries = !list_is_singular(&sqd->ctx_list);
Jens Axboe69fb2132020-09-14 11:16:23 -06007399 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list) {
Pavel Begunkov948e1942021-06-24 15:09:55 +01007400 int ret = __io_sq_thread(ctx, cap_entries);
Stefan Metzmacher7c30f36a2021-03-07 11:54:28 +01007401
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01007402 if (!sqt_spin && (ret > 0 || !wq_list_empty(&ctx->iopoll_list)))
Xiaoguang Wang08369242020-11-03 14:15:59 +08007403 sqt_spin = true;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007404 }
Pavel Begunkovdd432ea52021-06-26 21:40:45 +01007405 if (io_run_task_work())
7406 sqt_spin = true;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007407
Xiaoguang Wang08369242020-11-03 14:15:59 +08007408 if (sqt_spin || !time_after(jiffies, timeout)) {
Jens Axboec8d1ba52020-09-14 11:07:26 -06007409 cond_resched();
Xiaoguang Wang08369242020-11-03 14:15:59 +08007410 if (sqt_spin)
7411 timeout = jiffies + sqd->sq_thread_idle;
7412 continue;
7413 }
7414
Xiaoguang Wang08369242020-11-03 14:15:59 +08007415 prepare_to_wait(&sqd->wait, &wait, TASK_INTERRUPTIBLE);
Pavel Begunkovdd432ea52021-06-26 21:40:45 +01007416 if (!io_sqd_events_pending(sqd) && !current->task_works) {
Pavel Begunkov1a924a82021-06-24 15:09:56 +01007417 bool needs_sched = true;
7418
Hao Xu724cb4f2021-04-21 23:19:11 +08007419 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list) {
Pavel Begunkovaaa9f0f2021-05-16 22:58:01 +01007420 io_ring_set_wakeup_flag(ctx);
7421
Hao Xu724cb4f2021-04-21 23:19:11 +08007422 if ((ctx->flags & IORING_SETUP_IOPOLL) &&
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01007423 !wq_list_empty(&ctx->iopoll_list)) {
Hao Xu724cb4f2021-04-21 23:19:11 +08007424 needs_sched = false;
7425 break;
7426 }
7427 if (io_sqring_entries(ctx)) {
7428 needs_sched = false;
7429 break;
7430 }
7431 }
7432
7433 if (needs_sched) {
7434 mutex_unlock(&sqd->lock);
7435 schedule();
7436 mutex_lock(&sqd->lock);
7437 }
Jens Axboe69fb2132020-09-14 11:16:23 -06007438 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list)
7439 io_ring_clear_wakeup_flag(ctx);
Jens Axboe6c271ce2019-01-10 11:22:30 -07007440 }
Xiaoguang Wang08369242020-11-03 14:15:59 +08007441
7442 finish_wait(&sqd->wait, &wait);
7443 timeout = jiffies + sqd->sq_thread_idle;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007444 }
7445
Pavel Begunkov78cc6872021-06-14 02:36:23 +01007446 io_uring_cancel_generic(true, sqd);
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007447 sqd->thread = NULL;
Jens Axboe05962f92021-03-06 13:58:48 -07007448 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list)
Jens Axboe5f3f26f2021-02-25 10:17:46 -07007449 io_ring_set_wakeup_flag(ctx);
Pavel Begunkov521d6a72021-03-11 23:29:38 +00007450 io_run_task_work();
Pavel Begunkov734551d2021-04-18 14:52:09 +01007451 mutex_unlock(&sqd->lock);
7452
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007453 complete(&sqd->exited);
7454 do_exit(0);
Jens Axboe6c271ce2019-01-10 11:22:30 -07007455}
7456
Jens Axboebda52162019-09-24 13:47:15 -06007457struct io_wait_queue {
7458 struct wait_queue_entry wq;
7459 struct io_ring_ctx *ctx;
Jens Axboe5fd46172021-08-06 14:04:31 -06007460 unsigned cq_tail;
Jens Axboebda52162019-09-24 13:47:15 -06007461 unsigned nr_timeouts;
7462};
7463
Pavel Begunkov6c503152021-01-04 20:36:36 +00007464static inline bool io_should_wake(struct io_wait_queue *iowq)
Jens Axboebda52162019-09-24 13:47:15 -06007465{
7466 struct io_ring_ctx *ctx = iowq->ctx;
Jens Axboe5fd46172021-08-06 14:04:31 -06007467 int dist = ctx->cached_cq_tail - (int) iowq->cq_tail;
Jens Axboebda52162019-09-24 13:47:15 -06007468
7469 /*
Brian Gianforcarod195a662019-12-13 03:09:50 -08007470 * Wake up if we have enough events, or if a timeout occurred since we
Jens Axboebda52162019-09-24 13:47:15 -06007471 * started waiting. For timeouts, we always want to return to userspace,
7472 * regardless of event count.
7473 */
Jens Axboe5fd46172021-08-06 14:04:31 -06007474 return dist >= 0 || atomic_read(&ctx->cq_timeouts) != iowq->nr_timeouts;
Jens Axboebda52162019-09-24 13:47:15 -06007475}
7476
7477static int io_wake_function(struct wait_queue_entry *curr, unsigned int mode,
7478 int wake_flags, void *key)
7479{
7480 struct io_wait_queue *iowq = container_of(curr, struct io_wait_queue,
7481 wq);
7482
Pavel Begunkov6c503152021-01-04 20:36:36 +00007483 /*
7484 * Cannot safely flush overflowed CQEs from here, ensure we wake up
7485 * the task, and the next invocation will do it.
7486 */
Pavel Begunkov5ed7a372021-06-14 23:37:27 +01007487 if (io_should_wake(iowq) || test_bit(0, &iowq->ctx->check_cq_overflow))
Pavel Begunkov6c503152021-01-04 20:36:36 +00007488 return autoremove_wake_function(curr, mode, wake_flags, key);
7489 return -1;
Jens Axboebda52162019-09-24 13:47:15 -06007490}
7491
Jens Axboeaf9c1a42020-09-24 13:32:18 -06007492static int io_run_task_work_sig(void)
7493{
7494 if (io_run_task_work())
7495 return 1;
7496 if (!signal_pending(current))
7497 return 0;
Jens Axboe0b8cfa92021-03-21 14:16:08 -06007498 if (test_thread_flag(TIF_NOTIFY_SIGNAL))
Jens Axboe792ee0f62020-10-22 20:17:18 -06007499 return -ERESTARTSYS;
Jens Axboeaf9c1a42020-09-24 13:32:18 -06007500 return -EINTR;
7501}
7502
Pavel Begunkoveeb60b92021-02-04 13:51:58 +00007503/* when returns >0, the caller should retry */
7504static inline int io_cqring_wait_schedule(struct io_ring_ctx *ctx,
7505 struct io_wait_queue *iowq,
7506 signed long *timeout)
7507{
7508 int ret;
7509
7510 /* make sure we run task_work before checking for signals */
7511 ret = io_run_task_work_sig();
7512 if (ret || io_should_wake(iowq))
7513 return ret;
7514 /* let the caller flush overflows, retry */
Pavel Begunkov5ed7a372021-06-14 23:37:27 +01007515 if (test_bit(0, &ctx->check_cq_overflow))
Pavel Begunkoveeb60b92021-02-04 13:51:58 +00007516 return 1;
7517
7518 *timeout = schedule_timeout(*timeout);
7519 return !*timeout ? -ETIME : 1;
7520}
7521
Jens Axboe2b188cc2019-01-07 10:46:33 -07007522/*
7523 * Wait until events become available, if we don't already have some. The
7524 * application must reap them itself, as they reside on the shared cq ring.
7525 */
7526static int io_cqring_wait(struct io_ring_ctx *ctx, int min_events,
Hao Xuc73ebb62020-11-03 10:54:37 +08007527 const sigset_t __user *sig, size_t sigsz,
7528 struct __kernel_timespec __user *uts)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007529{
Pavel Begunkov902910992021-08-09 09:07:32 -06007530 struct io_wait_queue iowq;
Hristo Venev75b28af2019-08-26 17:23:46 +00007531 struct io_rings *rings = ctx->rings;
Pavel Begunkovc1d5a222021-02-04 13:51:57 +00007532 signed long timeout = MAX_SCHEDULE_TIMEOUT;
7533 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007534
Jens Axboeb41e9852020-02-17 09:52:41 -07007535 do {
Pavel Begunkov90f67362021-08-09 20:18:12 +01007536 io_cqring_overflow_flush(ctx);
Pavel Begunkov6c503152021-01-04 20:36:36 +00007537 if (io_cqring_events(ctx) >= min_events)
Jens Axboeb41e9852020-02-17 09:52:41 -07007538 return 0;
Jens Axboe4c6e2772020-07-01 11:29:10 -06007539 if (!io_run_task_work())
Jens Axboeb41e9852020-02-17 09:52:41 -07007540 break;
Jens Axboeb41e9852020-02-17 09:52:41 -07007541 } while (1);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007542
Xiaoguang Wang44df58d2021-09-14 22:38:52 +08007543 if (uts) {
7544 struct timespec64 ts;
7545
7546 if (get_timespec64(&ts, uts))
7547 return -EFAULT;
7548 timeout = timespec64_to_jiffies(&ts);
7549 }
7550
Jens Axboe2b188cc2019-01-07 10:46:33 -07007551 if (sig) {
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01007552#ifdef CONFIG_COMPAT
7553 if (in_compat_syscall())
7554 ret = set_compat_user_sigmask((const compat_sigset_t __user *)sig,
Oleg Nesterovb7724342019-07-16 16:29:53 -07007555 sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01007556 else
7557#endif
Oleg Nesterovb7724342019-07-16 16:29:53 -07007558 ret = set_user_sigmask(sig, sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01007559
Jens Axboe2b188cc2019-01-07 10:46:33 -07007560 if (ret)
7561 return ret;
7562 }
7563
Pavel Begunkov902910992021-08-09 09:07:32 -06007564 init_waitqueue_func_entry(&iowq.wq, io_wake_function);
7565 iowq.wq.private = current;
7566 INIT_LIST_HEAD(&iowq.wq.entry);
7567 iowq.ctx = ctx;
Jens Axboebda52162019-09-24 13:47:15 -06007568 iowq.nr_timeouts = atomic_read(&ctx->cq_timeouts);
Jens Axboe5fd46172021-08-06 14:04:31 -06007569 iowq.cq_tail = READ_ONCE(ctx->rings->cq.head) + min_events;
Pavel Begunkov902910992021-08-09 09:07:32 -06007570
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02007571 trace_io_uring_cqring_wait(ctx, min_events);
Jens Axboebda52162019-09-24 13:47:15 -06007572 do {
Jens Axboeca0a2652021-03-04 17:15:48 -07007573 /* if we can't even flush overflow, don't wait for more */
Pavel Begunkov90f67362021-08-09 20:18:12 +01007574 if (!io_cqring_overflow_flush(ctx)) {
Jens Axboeca0a2652021-03-04 17:15:48 -07007575 ret = -EBUSY;
7576 break;
7577 }
Pavel Begunkov311997b2021-06-14 23:37:28 +01007578 prepare_to_wait_exclusive(&ctx->cq_wait, &iowq.wq,
Jens Axboebda52162019-09-24 13:47:15 -06007579 TASK_INTERRUPTIBLE);
Pavel Begunkoveeb60b92021-02-04 13:51:58 +00007580 ret = io_cqring_wait_schedule(ctx, &iowq, &timeout);
Pavel Begunkov311997b2021-06-14 23:37:28 +01007581 finish_wait(&ctx->cq_wait, &iowq.wq);
Jens Axboeca0a2652021-03-04 17:15:48 -07007582 cond_resched();
Pavel Begunkoveeb60b92021-02-04 13:51:58 +00007583 } while (ret > 0);
Jens Axboebda52162019-09-24 13:47:15 -06007584
Jens Axboeb7db41c2020-07-04 08:55:50 -06007585 restore_saved_sigmask_unless(ret == -EINTR);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007586
Hristo Venev75b28af2019-08-26 17:23:46 +00007587 return READ_ONCE(rings->cq.head) == READ_ONCE(rings->cq.tail) ? ret : 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007588}
7589
Pavel Begunkov9123c8f2021-06-14 02:36:20 +01007590static void io_free_page_table(void **table, size_t size)
Pavel Begunkov846a4ef2021-04-01 15:44:03 +01007591{
Pavel Begunkov9123c8f2021-06-14 02:36:20 +01007592 unsigned i, nr_tables = DIV_ROUND_UP(size, PAGE_SIZE);
Pavel Begunkov846a4ef2021-04-01 15:44:03 +01007593
7594 for (i = 0; i < nr_tables; i++)
Pavel Begunkov9123c8f2021-06-14 02:36:20 +01007595 kfree(table[i]);
7596 kfree(table);
7597}
7598
Pavel Begunkovc0724812021-10-04 20:02:54 +01007599static __cold void **io_alloc_page_table(size_t size)
Pavel Begunkov9123c8f2021-06-14 02:36:20 +01007600{
7601 unsigned i, nr_tables = DIV_ROUND_UP(size, PAGE_SIZE);
7602 size_t init_size = size;
7603 void **table;
7604
Pavel Begunkov0bea96f2021-08-20 10:36:36 +01007605 table = kcalloc(nr_tables, sizeof(*table), GFP_KERNEL_ACCOUNT);
Pavel Begunkov9123c8f2021-06-14 02:36:20 +01007606 if (!table)
7607 return NULL;
7608
7609 for (i = 0; i < nr_tables; i++) {
Pavel Begunkov27f6b312021-06-15 13:20:13 +01007610 unsigned int this_size = min_t(size_t, size, PAGE_SIZE);
Pavel Begunkov9123c8f2021-06-14 02:36:20 +01007611
Pavel Begunkov0bea96f2021-08-20 10:36:36 +01007612 table[i] = kzalloc(this_size, GFP_KERNEL_ACCOUNT);
Pavel Begunkov9123c8f2021-06-14 02:36:20 +01007613 if (!table[i]) {
7614 io_free_page_table(table, init_size);
7615 return NULL;
7616 }
7617 size -= this_size;
7618 }
7619 return table;
Pavel Begunkov846a4ef2021-04-01 15:44:03 +01007620}
7621
Pavel Begunkov28a9fe22021-04-01 15:43:47 +01007622static void io_rsrc_node_destroy(struct io_rsrc_node *ref_node)
7623{
7624 percpu_ref_exit(&ref_node->refs);
7625 kfree(ref_node);
7626}
7627
Pavel Begunkovc0724812021-10-04 20:02:54 +01007628static __cold void io_rsrc_node_ref_zero(struct percpu_ref *ref)
Pavel Begunkovb9bd2be2021-08-09 09:09:47 -06007629{
7630 struct io_rsrc_node *node = container_of(ref, struct io_rsrc_node, refs);
7631 struct io_ring_ctx *ctx = node->rsrc_data->ctx;
7632 unsigned long flags;
7633 bool first_add = false;
7634
7635 spin_lock_irqsave(&ctx->rsrc_ref_lock, flags);
7636 node->done = true;
7637
7638 while (!list_empty(&ctx->rsrc_ref_list)) {
7639 node = list_first_entry(&ctx->rsrc_ref_list,
7640 struct io_rsrc_node, node);
7641 /* recycle ref nodes in order */
7642 if (!node->done)
7643 break;
7644 list_del(&node->node);
7645 first_add |= llist_add(&node->llist, &ctx->rsrc_put_llist);
7646 }
7647 spin_unlock_irqrestore(&ctx->rsrc_ref_lock, flags);
7648
7649 if (first_add)
7650 mod_delayed_work(system_wq, &ctx->rsrc_put_work, HZ);
7651}
7652
7653static struct io_rsrc_node *io_rsrc_node_alloc(struct io_ring_ctx *ctx)
7654{
7655 struct io_rsrc_node *ref_node;
7656
7657 ref_node = kzalloc(sizeof(*ref_node), GFP_KERNEL);
7658 if (!ref_node)
7659 return NULL;
7660
7661 if (percpu_ref_init(&ref_node->refs, io_rsrc_node_ref_zero,
7662 0, GFP_KERNEL)) {
7663 kfree(ref_node);
7664 return NULL;
7665 }
7666 INIT_LIST_HEAD(&ref_node->node);
7667 INIT_LIST_HEAD(&ref_node->rsrc_list);
7668 ref_node->done = false;
7669 return ref_node;
7670}
7671
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01007672static void io_rsrc_node_switch(struct io_ring_ctx *ctx,
7673 struct io_rsrc_data *data_to_kill)
Pavel Begunkovab409402021-10-09 23:14:41 +01007674 __must_hold(&ctx->uring_lock)
Pavel Begunkov1642b442020-12-30 21:34:14 +00007675{
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01007676 WARN_ON_ONCE(!ctx->rsrc_backup_node);
7677 WARN_ON_ONCE(data_to_kill && !ctx->rsrc_node);
Pavel Begunkov82fbcfa2021-04-01 15:43:43 +01007678
Pavel Begunkovab409402021-10-09 23:14:41 +01007679 io_rsrc_refs_drop(ctx);
7680
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01007681 if (data_to_kill) {
7682 struct io_rsrc_node *rsrc_node = ctx->rsrc_node;
Pavel Begunkov82fbcfa2021-04-01 15:43:43 +01007683
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01007684 rsrc_node->rsrc_data = data_to_kill;
Jens Axboe4956b9e2021-08-09 07:49:41 -06007685 spin_lock_irq(&ctx->rsrc_ref_lock);
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01007686 list_add_tail(&rsrc_node->node, &ctx->rsrc_ref_list);
Jens Axboe4956b9e2021-08-09 07:49:41 -06007687 spin_unlock_irq(&ctx->rsrc_ref_lock);
Pavel Begunkov82fbcfa2021-04-01 15:43:43 +01007688
Pavel Begunkov3e942492021-04-11 01:46:34 +01007689 atomic_inc(&data_to_kill->refs);
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01007690 percpu_ref_kill(&rsrc_node->refs);
7691 ctx->rsrc_node = NULL;
7692 }
7693
7694 if (!ctx->rsrc_node) {
7695 ctx->rsrc_node = ctx->rsrc_backup_node;
7696 ctx->rsrc_backup_node = NULL;
7697 }
Pavel Begunkov1642b442020-12-30 21:34:14 +00007698}
7699
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01007700static int io_rsrc_node_switch_start(struct io_ring_ctx *ctx)
Pavel Begunkov8dd03af2021-03-19 17:22:36 +00007701{
7702 if (ctx->rsrc_backup_node)
7703 return 0;
Pavel Begunkovb895c9a2021-04-01 15:43:40 +01007704 ctx->rsrc_backup_node = io_rsrc_node_alloc(ctx);
Pavel Begunkov8dd03af2021-03-19 17:22:36 +00007705 return ctx->rsrc_backup_node ? 0 : -ENOMEM;
7706}
7707
Pavel Begunkovc0724812021-10-04 20:02:54 +01007708static __cold int io_rsrc_ref_quiesce(struct io_rsrc_data *data,
7709 struct io_ring_ctx *ctx)
Hao Xu8bad28d2021-02-19 17:19:36 +08007710{
7711 int ret;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007712
Pavel Begunkov215c3902021-04-01 15:43:48 +01007713 /* As we may drop ->uring_lock, other task may have started quiesce */
Hao Xu8bad28d2021-02-19 17:19:36 +08007714 if (data->quiesce)
7715 return -ENXIO;
7716
7717 data->quiesce = true;
Pavel Begunkov1ffc5422020-12-30 21:34:15 +00007718 do {
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01007719 ret = io_rsrc_node_switch_start(ctx);
Pavel Begunkov8dd03af2021-03-19 17:22:36 +00007720 if (ret)
Pavel Begunkovf2303b12021-02-20 18:03:49 +00007721 break;
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01007722 io_rsrc_node_switch(ctx, data);
7723
Pavel Begunkov3e942492021-04-11 01:46:34 +01007724 /* kill initial ref, already quiesced if zero */
7725 if (atomic_dec_and_test(&data->refs))
7726 break;
Jens Axboec018db42021-08-09 08:15:50 -06007727 mutex_unlock(&ctx->uring_lock);
Hao Xu8bad28d2021-02-19 17:19:36 +08007728 flush_delayed_work(&ctx->rsrc_put_work);
Pavel Begunkov1ffc5422020-12-30 21:34:15 +00007729 ret = wait_for_completion_interruptible(&data->done);
Jens Axboec018db42021-08-09 08:15:50 -06007730 if (!ret) {
7731 mutex_lock(&ctx->uring_lock);
Pavel Begunkov1ffc5422020-12-30 21:34:15 +00007732 break;
Jens Axboec018db42021-08-09 08:15:50 -06007733 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07007734
Pavel Begunkov3e942492021-04-11 01:46:34 +01007735 atomic_inc(&data->refs);
7736 /* wait for all works potentially completing data->done */
7737 flush_delayed_work(&ctx->rsrc_put_work);
Jens Axboecb5e1b82021-02-25 07:37:35 -07007738 reinit_completion(&data->done);
Pavel Begunkov8dd03af2021-03-19 17:22:36 +00007739
Hao Xu8bad28d2021-02-19 17:19:36 +08007740 ret = io_run_task_work_sig();
7741 mutex_lock(&ctx->uring_lock);
Pavel Begunkovf2303b12021-02-20 18:03:49 +00007742 } while (ret >= 0);
Hao Xu8bad28d2021-02-19 17:19:36 +08007743 data->quiesce = false;
7744
Hao Xu8bad28d2021-02-19 17:19:36 +08007745 return ret;
Bijan Mottahedehd7954b22021-01-15 17:37:50 +00007746}
7747
Pavel Begunkov2d091d62021-06-14 02:36:21 +01007748static u64 *io_get_tag_slot(struct io_rsrc_data *data, unsigned int idx)
7749{
7750 unsigned int off = idx & IO_RSRC_TAG_TABLE_MASK;
7751 unsigned int table_idx = idx >> IO_RSRC_TAG_TABLE_SHIFT;
7752
7753 return &data->tags[table_idx][off];
7754}
7755
Pavel Begunkov44b31f22021-04-25 14:32:16 +01007756static void io_rsrc_data_free(struct io_rsrc_data *data)
7757{
Pavel Begunkov2d091d62021-06-14 02:36:21 +01007758 size_t size = data->nr * sizeof(data->tags[0][0]);
7759
7760 if (data->tags)
7761 io_free_page_table((void **)data->tags, size);
Pavel Begunkov44b31f22021-04-25 14:32:16 +01007762 kfree(data);
7763}
7764
Pavel Begunkovc0724812021-10-04 20:02:54 +01007765static __cold int io_rsrc_data_alloc(struct io_ring_ctx *ctx, rsrc_put_fn *do_put,
7766 u64 __user *utags, unsigned nr,
7767 struct io_rsrc_data **pdata)
Bijan Mottahedeh1ad555c2021-01-15 17:37:51 +00007768{
Pavel Begunkovb895c9a2021-04-01 15:43:40 +01007769 struct io_rsrc_data *data;
Pavel Begunkov2d091d62021-06-14 02:36:21 +01007770 int ret = -ENOMEM;
Pavel Begunkovd878c812021-06-14 02:36:18 +01007771 unsigned i;
Bijan Mottahedeh1ad555c2021-01-15 17:37:51 +00007772
7773 data = kzalloc(sizeof(*data), GFP_KERNEL);
7774 if (!data)
Pavel Begunkovd878c812021-06-14 02:36:18 +01007775 return -ENOMEM;
Pavel Begunkov2d091d62021-06-14 02:36:21 +01007776 data->tags = (u64 **)io_alloc_page_table(nr * sizeof(data->tags[0][0]));
Pavel Begunkovb60c8dc2021-04-25 14:32:18 +01007777 if (!data->tags) {
7778 kfree(data);
Pavel Begunkovd878c812021-06-14 02:36:18 +01007779 return -ENOMEM;
7780 }
Pavel Begunkov2d091d62021-06-14 02:36:21 +01007781
7782 data->nr = nr;
7783 data->ctx = ctx;
7784 data->do_put = do_put;
Pavel Begunkovd878c812021-06-14 02:36:18 +01007785 if (utags) {
Pavel Begunkov2d091d62021-06-14 02:36:21 +01007786 ret = -EFAULT;
Pavel Begunkovd878c812021-06-14 02:36:18 +01007787 for (i = 0; i < nr; i++) {
Colin Ian Kingfdd1dc32021-06-15 14:00:11 +01007788 u64 *tag_slot = io_get_tag_slot(data, i);
7789
7790 if (copy_from_user(tag_slot, &utags[i],
7791 sizeof(*tag_slot)))
Pavel Begunkov2d091d62021-06-14 02:36:21 +01007792 goto fail;
Pavel Begunkovd878c812021-06-14 02:36:18 +01007793 }
Pavel Begunkovb60c8dc2021-04-25 14:32:18 +01007794 }
7795
Pavel Begunkov3e942492021-04-11 01:46:34 +01007796 atomic_set(&data->refs, 1);
Bijan Mottahedeh1ad555c2021-01-15 17:37:51 +00007797 init_completion(&data->done);
Pavel Begunkovd878c812021-06-14 02:36:18 +01007798 *pdata = data;
7799 return 0;
Pavel Begunkov2d091d62021-06-14 02:36:21 +01007800fail:
7801 io_rsrc_data_free(data);
7802 return ret;
Bijan Mottahedeh1ad555c2021-01-15 17:37:51 +00007803}
7804
Pavel Begunkov9123c8f2021-06-14 02:36:20 +01007805static bool io_alloc_file_tables(struct io_file_table *table, unsigned nr_files)
7806{
Pavel Begunkov0bea96f2021-08-20 10:36:36 +01007807 table->files = kvcalloc(nr_files, sizeof(table->files[0]),
7808 GFP_KERNEL_ACCOUNT);
Pavel Begunkov9123c8f2021-06-14 02:36:20 +01007809 return !!table->files;
7810}
7811
Pavel Begunkov042b0d82021-08-09 13:04:01 +01007812static void io_free_file_tables(struct io_file_table *table)
Pavel Begunkov9123c8f2021-06-14 02:36:20 +01007813{
Pavel Begunkov042b0d82021-08-09 13:04:01 +01007814 kvfree(table->files);
Pavel Begunkov9123c8f2021-06-14 02:36:20 +01007815 table->files = NULL;
7816}
7817
Jens Axboe2b188cc2019-01-07 10:46:33 -07007818static void __io_sqe_files_unregister(struct io_ring_ctx *ctx)
7819{
7820#if defined(CONFIG_UNIX)
7821 if (ctx->ring_sock) {
7822 struct sock *sock = ctx->ring_sock->sk;
7823 struct sk_buff *skb;
7824
7825 while ((skb = skb_dequeue(&sock->sk_receive_queue)) != NULL)
7826 kfree_skb(skb);
7827 }
7828#else
7829 int i;
7830
7831 for (i = 0; i < ctx->nr_user_files; i++) {
7832 struct file *file;
7833
7834 file = io_file_from_index(ctx, i);
7835 if (file)
7836 fput(file);
7837 }
7838#endif
Pavel Begunkov042b0d82021-08-09 13:04:01 +01007839 io_free_file_tables(&ctx->file_table);
Pavel Begunkov44b31f22021-04-25 14:32:16 +01007840 io_rsrc_data_free(ctx->file_data);
Pavel Begunkovfff4db72021-04-25 14:32:15 +01007841 ctx->file_data = NULL;
7842 ctx->nr_user_files = 0;
Bijan Mottahedeh1ad555c2021-01-15 17:37:51 +00007843}
7844
Bijan Mottahedehd7954b22021-01-15 17:37:50 +00007845static int io_sqe_files_unregister(struct io_ring_ctx *ctx)
7846{
Bijan Mottahedehd7954b22021-01-15 17:37:50 +00007847 int ret;
7848
Pavel Begunkov08480402021-04-13 02:58:38 +01007849 if (!ctx->file_data)
Bijan Mottahedehd7954b22021-01-15 17:37:50 +00007850 return -ENXIO;
Pavel Begunkov08480402021-04-13 02:58:38 +01007851 ret = io_rsrc_ref_quiesce(ctx->file_data, ctx);
7852 if (!ret)
7853 __io_sqe_files_unregister(ctx);
7854 return ret;
Jens Axboe6b063142019-01-10 22:13:58 -07007855}
7856
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007857static void io_sq_thread_unpark(struct io_sq_data *sqd)
Pavel Begunkov09a6f4e2021-03-14 20:57:10 +00007858 __releases(&sqd->lock)
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007859{
Pavel Begunkov521d6a72021-03-11 23:29:38 +00007860 WARN_ON_ONCE(sqd->thread == current);
7861
Pavel Begunkov9e138a42021-03-14 20:57:12 +00007862 /*
7863 * Do the dance but not conditional clear_bit() because it'd race with
7864 * other threads incrementing park_pending and setting the bit.
7865 */
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007866 clear_bit(IO_SQ_THREAD_SHOULD_PARK, &sqd->state);
Pavel Begunkov9e138a42021-03-14 20:57:12 +00007867 if (atomic_dec_return(&sqd->park_pending))
7868 set_bit(IO_SQ_THREAD_SHOULD_PARK, &sqd->state);
Pavel Begunkov09a6f4e2021-03-14 20:57:10 +00007869 mutex_unlock(&sqd->lock);
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007870}
7871
Jens Axboe86e0d672021-03-05 08:44:39 -07007872static void io_sq_thread_park(struct io_sq_data *sqd)
Pavel Begunkov09a6f4e2021-03-14 20:57:10 +00007873 __acquires(&sqd->lock)
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007874{
Pavel Begunkov521d6a72021-03-11 23:29:38 +00007875 WARN_ON_ONCE(sqd->thread == current);
7876
Pavel Begunkov9e138a42021-03-14 20:57:12 +00007877 atomic_inc(&sqd->park_pending);
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007878 set_bit(IO_SQ_THREAD_SHOULD_PARK, &sqd->state);
Pavel Begunkov09a6f4e2021-03-14 20:57:10 +00007879 mutex_lock(&sqd->lock);
Jens Axboe05962f92021-03-06 13:58:48 -07007880 if (sqd->thread)
Jens Axboe86e0d672021-03-05 08:44:39 -07007881 wake_up_process(sqd->thread);
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007882}
7883
7884static void io_sq_thread_stop(struct io_sq_data *sqd)
7885{
Pavel Begunkov521d6a72021-03-11 23:29:38 +00007886 WARN_ON_ONCE(sqd->thread == current);
Pavel Begunkov88885f62021-04-11 01:46:38 +01007887 WARN_ON_ONCE(test_bit(IO_SQ_THREAD_SHOULD_STOP, &sqd->state));
Pavel Begunkov521d6a72021-03-11 23:29:38 +00007888
Jens Axboe05962f92021-03-06 13:58:48 -07007889 set_bit(IO_SQ_THREAD_SHOULD_STOP, &sqd->state);
Pavel Begunkov88885f62021-04-11 01:46:38 +01007890 mutex_lock(&sqd->lock);
Jens Axboee8f98f242021-03-09 16:32:13 -07007891 if (sqd->thread)
7892 wake_up_process(sqd->thread);
Pavel Begunkov09a6f4e2021-03-14 20:57:10 +00007893 mutex_unlock(&sqd->lock);
Jens Axboe05962f92021-03-06 13:58:48 -07007894 wait_for_completion(&sqd->exited);
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007895}
7896
Jens Axboe534ca6d2020-09-02 13:52:19 -06007897static void io_put_sq_data(struct io_sq_data *sqd)
Jens Axboe6c271ce2019-01-10 11:22:30 -07007898{
Jens Axboe534ca6d2020-09-02 13:52:19 -06007899 if (refcount_dec_and_test(&sqd->refs)) {
Pavel Begunkov9e138a42021-03-14 20:57:12 +00007900 WARN_ON_ONCE(atomic_read(&sqd->park_pending));
7901
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007902 io_sq_thread_stop(sqd);
7903 kfree(sqd);
7904 }
7905}
7906
7907static void io_sq_thread_finish(struct io_ring_ctx *ctx)
7908{
7909 struct io_sq_data *sqd = ctx->sq_data;
7910
7911 if (sqd) {
Jens Axboe05962f92021-03-06 13:58:48 -07007912 io_sq_thread_park(sqd);
Pavel Begunkov521d6a72021-03-11 23:29:38 +00007913 list_del_init(&ctx->sqd_list);
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007914 io_sqd_update_thread_idle(sqd);
Jens Axboe05962f92021-03-06 13:58:48 -07007915 io_sq_thread_unpark(sqd);
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007916
7917 io_put_sq_data(sqd);
7918 ctx->sq_data = NULL;
Jens Axboe534ca6d2020-09-02 13:52:19 -06007919 }
7920}
7921
Jens Axboeaa061652020-09-02 14:50:27 -06007922static struct io_sq_data *io_attach_sq_data(struct io_uring_params *p)
7923{
7924 struct io_ring_ctx *ctx_attach;
7925 struct io_sq_data *sqd;
7926 struct fd f;
7927
7928 f = fdget(p->wq_fd);
7929 if (!f.file)
7930 return ERR_PTR(-ENXIO);
7931 if (f.file->f_op != &io_uring_fops) {
7932 fdput(f);
7933 return ERR_PTR(-EINVAL);
7934 }
7935
7936 ctx_attach = f.file->private_data;
7937 sqd = ctx_attach->sq_data;
7938 if (!sqd) {
7939 fdput(f);
7940 return ERR_PTR(-EINVAL);
7941 }
Jens Axboe5c2469e2021-03-11 10:17:56 -07007942 if (sqd->task_tgid != current->tgid) {
7943 fdput(f);
7944 return ERR_PTR(-EPERM);
7945 }
Jens Axboeaa061652020-09-02 14:50:27 -06007946
7947 refcount_inc(&sqd->refs);
7948 fdput(f);
7949 return sqd;
7950}
7951
Pavel Begunkov26984fb2021-03-11 23:29:37 +00007952static struct io_sq_data *io_get_sq_data(struct io_uring_params *p,
7953 bool *attached)
Jens Axboe534ca6d2020-09-02 13:52:19 -06007954{
7955 struct io_sq_data *sqd;
7956
Pavel Begunkov26984fb2021-03-11 23:29:37 +00007957 *attached = false;
Jens Axboe5c2469e2021-03-11 10:17:56 -07007958 if (p->flags & IORING_SETUP_ATTACH_WQ) {
7959 sqd = io_attach_sq_data(p);
Pavel Begunkov26984fb2021-03-11 23:29:37 +00007960 if (!IS_ERR(sqd)) {
7961 *attached = true;
Jens Axboe5c2469e2021-03-11 10:17:56 -07007962 return sqd;
Pavel Begunkov26984fb2021-03-11 23:29:37 +00007963 }
Jens Axboe5c2469e2021-03-11 10:17:56 -07007964 /* fall through for EPERM case, setup new sqd/task */
7965 if (PTR_ERR(sqd) != -EPERM)
7966 return sqd;
7967 }
Jens Axboeaa061652020-09-02 14:50:27 -06007968
Jens Axboe534ca6d2020-09-02 13:52:19 -06007969 sqd = kzalloc(sizeof(*sqd), GFP_KERNEL);
7970 if (!sqd)
7971 return ERR_PTR(-ENOMEM);
7972
Pavel Begunkov9e138a42021-03-14 20:57:12 +00007973 atomic_set(&sqd->park_pending, 0);
Jens Axboe534ca6d2020-09-02 13:52:19 -06007974 refcount_set(&sqd->refs, 1);
Jens Axboe69fb2132020-09-14 11:16:23 -06007975 INIT_LIST_HEAD(&sqd->ctx_list);
Pavel Begunkov09a6f4e2021-03-14 20:57:10 +00007976 mutex_init(&sqd->lock);
Jens Axboe534ca6d2020-09-02 13:52:19 -06007977 init_waitqueue_head(&sqd->wait);
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007978 init_completion(&sqd->exited);
Jens Axboe534ca6d2020-09-02 13:52:19 -06007979 return sqd;
7980}
7981
Jens Axboe6b063142019-01-10 22:13:58 -07007982#if defined(CONFIG_UNIX)
Jens Axboe6b063142019-01-10 22:13:58 -07007983/*
7984 * Ensure the UNIX gc is aware of our file set, so we are certain that
7985 * the io_uring can be safely unregistered on process exit, even if we have
7986 * loops in the file referencing.
7987 */
7988static int __io_sqe_files_scm(struct io_ring_ctx *ctx, int nr, int offset)
7989{
7990 struct sock *sk = ctx->ring_sock->sk;
7991 struct scm_fp_list *fpl;
7992 struct sk_buff *skb;
Jens Axboe08a45172019-10-03 08:11:03 -06007993 int i, nr_files;
Jens Axboe6b063142019-01-10 22:13:58 -07007994
Jens Axboe6b063142019-01-10 22:13:58 -07007995 fpl = kzalloc(sizeof(*fpl), GFP_KERNEL);
7996 if (!fpl)
7997 return -ENOMEM;
7998
7999 skb = alloc_skb(0, GFP_KERNEL);
8000 if (!skb) {
8001 kfree(fpl);
8002 return -ENOMEM;
8003 }
8004
8005 skb->sk = sk;
Jens Axboe6b063142019-01-10 22:13:58 -07008006
Jens Axboe08a45172019-10-03 08:11:03 -06008007 nr_files = 0;
Jens Axboe62e398b2021-02-21 16:19:37 -07008008 fpl->user = get_uid(current_user());
Jens Axboe6b063142019-01-10 22:13:58 -07008009 for (i = 0; i < nr; i++) {
Jens Axboe65e19f52019-10-26 07:20:21 -06008010 struct file *file = io_file_from_index(ctx, i + offset);
8011
8012 if (!file)
Jens Axboe08a45172019-10-03 08:11:03 -06008013 continue;
Jens Axboe65e19f52019-10-26 07:20:21 -06008014 fpl->fp[nr_files] = get_file(file);
Jens Axboe08a45172019-10-03 08:11:03 -06008015 unix_inflight(fpl->user, fpl->fp[nr_files]);
8016 nr_files++;
Jens Axboe6b063142019-01-10 22:13:58 -07008017 }
8018
Jens Axboe08a45172019-10-03 08:11:03 -06008019 if (nr_files) {
8020 fpl->max = SCM_MAX_FD;
8021 fpl->count = nr_files;
8022 UNIXCB(skb).fp = fpl;
Jens Axboe05f3fb32019-12-09 11:22:50 -07008023 skb->destructor = unix_destruct_scm;
Jens Axboe08a45172019-10-03 08:11:03 -06008024 refcount_add(skb->truesize, &sk->sk_wmem_alloc);
8025 skb_queue_head(&sk->sk_receive_queue, skb);
Jens Axboe6b063142019-01-10 22:13:58 -07008026
Jens Axboe08a45172019-10-03 08:11:03 -06008027 for (i = 0; i < nr_files; i++)
8028 fput(fpl->fp[i]);
8029 } else {
8030 kfree_skb(skb);
8031 kfree(fpl);
8032 }
Jens Axboe6b063142019-01-10 22:13:58 -07008033
8034 return 0;
8035}
8036
8037/*
8038 * If UNIX sockets are enabled, fd passing can cause a reference cycle which
8039 * causes regular reference counting to break down. We rely on the UNIX
8040 * garbage collection to take care of this problem for us.
8041 */
8042static int io_sqe_files_scm(struct io_ring_ctx *ctx)
8043{
8044 unsigned left, total;
8045 int ret = 0;
8046
8047 total = 0;
8048 left = ctx->nr_user_files;
8049 while (left) {
8050 unsigned this_files = min_t(unsigned, left, SCM_MAX_FD);
Jens Axboe6b063142019-01-10 22:13:58 -07008051
8052 ret = __io_sqe_files_scm(ctx, this_files, total);
8053 if (ret)
8054 break;
8055 left -= this_files;
8056 total += this_files;
8057 }
8058
8059 if (!ret)
8060 return 0;
8061
8062 while (total < ctx->nr_user_files) {
Jens Axboe65e19f52019-10-26 07:20:21 -06008063 struct file *file = io_file_from_index(ctx, total);
8064
8065 if (file)
8066 fput(file);
Jens Axboe6b063142019-01-10 22:13:58 -07008067 total++;
8068 }
8069
8070 return ret;
8071}
8072#else
8073static int io_sqe_files_scm(struct io_ring_ctx *ctx)
8074{
8075 return 0;
8076}
8077#endif
8078
Pavel Begunkov47e90392021-04-01 15:43:56 +01008079static void io_rsrc_file_put(struct io_ring_ctx *ctx, struct io_rsrc_put *prsrc)
Jens Axboec3a31e62019-10-03 13:59:56 -06008080{
Bijan Mottahedeh50238532021-01-15 17:37:45 +00008081 struct file *file = prsrc->file;
Jens Axboec3a31e62019-10-03 13:59:56 -06008082#if defined(CONFIG_UNIX)
Jens Axboec3a31e62019-10-03 13:59:56 -06008083 struct sock *sock = ctx->ring_sock->sk;
8084 struct sk_buff_head list, *head = &sock->sk_receive_queue;
8085 struct sk_buff *skb;
8086 int i;
8087
8088 __skb_queue_head_init(&list);
8089
8090 /*
8091 * Find the skb that holds this file in its SCM_RIGHTS. When found,
8092 * remove this entry and rearrange the file array.
8093 */
8094 skb = skb_dequeue(head);
8095 while (skb) {
8096 struct scm_fp_list *fp;
8097
8098 fp = UNIXCB(skb).fp;
8099 for (i = 0; i < fp->count; i++) {
8100 int left;
8101
8102 if (fp->fp[i] != file)
8103 continue;
8104
8105 unix_notinflight(fp->user, fp->fp[i]);
8106 left = fp->count - 1 - i;
8107 if (left) {
8108 memmove(&fp->fp[i], &fp->fp[i + 1],
8109 left * sizeof(struct file *));
8110 }
8111 fp->count--;
8112 if (!fp->count) {
8113 kfree_skb(skb);
8114 skb = NULL;
8115 } else {
8116 __skb_queue_tail(&list, skb);
8117 }
8118 fput(file);
8119 file = NULL;
8120 break;
8121 }
8122
8123 if (!file)
8124 break;
8125
8126 __skb_queue_tail(&list, skb);
8127
8128 skb = skb_dequeue(head);
8129 }
8130
8131 if (skb_peek(&list)) {
8132 spin_lock_irq(&head->lock);
8133 while ((skb = __skb_dequeue(&list)) != NULL)
8134 __skb_queue_tail(head, skb);
8135 spin_unlock_irq(&head->lock);
8136 }
8137#else
Jens Axboe05f3fb32019-12-09 11:22:50 -07008138 fput(file);
Jens Axboec3a31e62019-10-03 13:59:56 -06008139#endif
8140}
8141
Pavel Begunkovb895c9a2021-04-01 15:43:40 +01008142static void __io_rsrc_put_work(struct io_rsrc_node *ref_node)
Jens Axboe05f3fb32019-12-09 11:22:50 -07008143{
Pavel Begunkovb895c9a2021-04-01 15:43:40 +01008144 struct io_rsrc_data *rsrc_data = ref_node->rsrc_data;
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00008145 struct io_ring_ctx *ctx = rsrc_data->ctx;
8146 struct io_rsrc_put *prsrc, *tmp;
Xiaoguang Wang05589552020-03-31 14:05:18 +08008147
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00008148 list_for_each_entry_safe(prsrc, tmp, &ref_node->rsrc_list, list) {
8149 list_del(&prsrc->list);
Pavel Begunkovb60c8dc2021-04-25 14:32:18 +01008150
8151 if (prsrc->tag) {
8152 bool lock_ring = ctx->flags & IORING_SETUP_IOPOLL;
Pavel Begunkovb60c8dc2021-04-25 14:32:18 +01008153
8154 io_ring_submit_lock(ctx, lock_ring);
Jens Axboe79ebeae2021-08-10 15:18:27 -06008155 spin_lock(&ctx->completion_lock);
Pavel Begunkovb60c8dc2021-04-25 14:32:18 +01008156 io_cqring_fill_event(ctx, prsrc->tag, 0, 0);
Pavel Begunkov2840f712021-04-27 16:13:51 +01008157 ctx->cq_extra++;
Pavel Begunkovb60c8dc2021-04-25 14:32:18 +01008158 io_commit_cqring(ctx);
Jens Axboe79ebeae2021-08-10 15:18:27 -06008159 spin_unlock(&ctx->completion_lock);
Pavel Begunkovb60c8dc2021-04-25 14:32:18 +01008160 io_cqring_ev_posted(ctx);
8161 io_ring_submit_unlock(ctx, lock_ring);
8162 }
8163
Pavel Begunkov40ae0ff2021-04-01 15:43:44 +01008164 rsrc_data->do_put(ctx, prsrc);
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00008165 kfree(prsrc);
Jens Axboe05f3fb32019-12-09 11:22:50 -07008166 }
8167
Pavel Begunkov28a9fe22021-04-01 15:43:47 +01008168 io_rsrc_node_destroy(ref_node);
Pavel Begunkov3e942492021-04-11 01:46:34 +01008169 if (atomic_dec_and_test(&rsrc_data->refs))
8170 complete(&rsrc_data->done);
Jens Axboe05f3fb32019-12-09 11:22:50 -07008171}
8172
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00008173static void io_rsrc_put_work(struct work_struct *work)
Jens Axboe4a38aed22020-05-14 17:21:15 -06008174{
8175 struct io_ring_ctx *ctx;
8176 struct llist_node *node;
8177
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00008178 ctx = container_of(work, struct io_ring_ctx, rsrc_put_work.work);
8179 node = llist_del_all(&ctx->rsrc_put_llist);
Jens Axboe4a38aed22020-05-14 17:21:15 -06008180
8181 while (node) {
Pavel Begunkovb895c9a2021-04-01 15:43:40 +01008182 struct io_rsrc_node *ref_node;
Jens Axboe4a38aed22020-05-14 17:21:15 -06008183 struct llist_node *next = node->next;
8184
Pavel Begunkovb895c9a2021-04-01 15:43:40 +01008185 ref_node = llist_entry(node, struct io_rsrc_node, llist);
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00008186 __io_rsrc_put_work(ref_node);
Jens Axboe4a38aed22020-05-14 17:21:15 -06008187 node = next;
8188 }
8189}
8190
Jens Axboe05f3fb32019-12-09 11:22:50 -07008191static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
Pavel Begunkov792e3582021-04-25 14:32:21 +01008192 unsigned nr_args, u64 __user *tags)
Jens Axboe05f3fb32019-12-09 11:22:50 -07008193{
8194 __s32 __user *fds = (__s32 __user *) arg;
Jens Axboe05f3fb32019-12-09 11:22:50 -07008195 struct file *file;
Pavel Begunkovf3baed32021-04-01 15:43:42 +01008196 int fd, ret;
Pavel Begunkov846a4ef2021-04-01 15:44:03 +01008197 unsigned i;
Jens Axboe05f3fb32019-12-09 11:22:50 -07008198
8199 if (ctx->file_data)
8200 return -EBUSY;
8201 if (!nr_args)
8202 return -EINVAL;
8203 if (nr_args > IORING_MAX_FIXED_FILES)
8204 return -EMFILE;
Pavel Begunkov3a1b8a42021-08-20 10:36:35 +01008205 if (nr_args > rlimit(RLIMIT_NOFILE))
8206 return -EMFILE;
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01008207 ret = io_rsrc_node_switch_start(ctx);
Pavel Begunkovf3baed32021-04-01 15:43:42 +01008208 if (ret)
8209 return ret;
Pavel Begunkovd878c812021-06-14 02:36:18 +01008210 ret = io_rsrc_data_alloc(ctx, io_rsrc_file_put, tags, nr_args,
8211 &ctx->file_data);
8212 if (ret)
8213 return ret;
Jens Axboe05f3fb32019-12-09 11:22:50 -07008214
Pavel Begunkovf3baed32021-04-01 15:43:42 +01008215 ret = -ENOMEM;
Pavel Begunkovaeca2412021-04-11 01:46:37 +01008216 if (!io_alloc_file_tables(&ctx->file_table, nr_args))
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01008217 goto out_free;
Jens Axboe05f3fb32019-12-09 11:22:50 -07008218
Jens Axboe05f3fb32019-12-09 11:22:50 -07008219 for (i = 0; i < nr_args; i++, ctx->nr_user_files++) {
Pavel Begunkovd878c812021-06-14 02:36:18 +01008220 if (copy_from_user(&fd, &fds[i], sizeof(fd))) {
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01008221 ret = -EFAULT;
8222 goto out_fput;
Jens Axboe05f3fb32019-12-09 11:22:50 -07008223 }
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01008224 /* allow sparse sets */
Pavel Begunkov792e3582021-04-25 14:32:21 +01008225 if (fd == -1) {
8226 ret = -EINVAL;
Pavel Begunkov2d091d62021-06-14 02:36:21 +01008227 if (unlikely(*io_get_tag_slot(ctx->file_data, i)))
Pavel Begunkov792e3582021-04-25 14:32:21 +01008228 goto out_fput;
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01008229 continue;
Pavel Begunkov792e3582021-04-25 14:32:21 +01008230 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07008231
Jens Axboe05f3fb32019-12-09 11:22:50 -07008232 file = fget(fd);
Jens Axboe05f3fb32019-12-09 11:22:50 -07008233 ret = -EBADF;
Pavel Begunkov792e3582021-04-25 14:32:21 +01008234 if (unlikely(!file))
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01008235 goto out_fput;
Jens Axboe05f3fb32019-12-09 11:22:50 -07008236
8237 /*
8238 * Don't allow io_uring instances to be registered. If UNIX
8239 * isn't enabled, then this causes a reference cycle and this
8240 * instance can never get freed. If UNIX is enabled we'll
8241 * handle it just fine, but there's still no point in allowing
8242 * a ring fd as it doesn't support regular read/write anyway.
8243 */
8244 if (file->f_op == &io_uring_fops) {
8245 fput(file);
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01008246 goto out_fput;
Jens Axboe05f3fb32019-12-09 11:22:50 -07008247 }
Pavel Begunkovaeca2412021-04-11 01:46:37 +01008248 io_fixed_file_set(io_fixed_file_slot(&ctx->file_table, i), file);
Jens Axboe05f3fb32019-12-09 11:22:50 -07008249 }
8250
Jens Axboe05f3fb32019-12-09 11:22:50 -07008251 ret = io_sqe_files_scm(ctx);
Xiaoguang Wang05589552020-03-31 14:05:18 +08008252 if (ret) {
Pavel Begunkov08480402021-04-13 02:58:38 +01008253 __io_sqe_files_unregister(ctx);
Xiaoguang Wang05589552020-03-31 14:05:18 +08008254 return ret;
8255 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07008256
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01008257 io_rsrc_node_switch(ctx, NULL);
Jens Axboe05f3fb32019-12-09 11:22:50 -07008258 return ret;
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01008259out_fput:
8260 for (i = 0; i < ctx->nr_user_files; i++) {
8261 file = io_file_from_index(ctx, i);
8262 if (file)
8263 fput(file);
8264 }
Pavel Begunkov042b0d82021-08-09 13:04:01 +01008265 io_free_file_tables(&ctx->file_table);
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01008266 ctx->nr_user_files = 0;
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01008267out_free:
Pavel Begunkov44b31f22021-04-25 14:32:16 +01008268 io_rsrc_data_free(ctx->file_data);
Jens Axboe55cbc252020-10-14 07:35:57 -06008269 ctx->file_data = NULL;
Jens Axboe05f3fb32019-12-09 11:22:50 -07008270 return ret;
8271}
8272
Jens Axboec3a31e62019-10-03 13:59:56 -06008273static int io_sqe_file_register(struct io_ring_ctx *ctx, struct file *file,
8274 int index)
8275{
8276#if defined(CONFIG_UNIX)
8277 struct sock *sock = ctx->ring_sock->sk;
8278 struct sk_buff_head *head = &sock->sk_receive_queue;
8279 struct sk_buff *skb;
8280
8281 /*
8282 * See if we can merge this file into an existing skb SCM_RIGHTS
8283 * file set. If there's no room, fall back to allocating a new skb
8284 * and filling it in.
8285 */
8286 spin_lock_irq(&head->lock);
8287 skb = skb_peek(head);
8288 if (skb) {
8289 struct scm_fp_list *fpl = UNIXCB(skb).fp;
8290
8291 if (fpl->count < SCM_MAX_FD) {
8292 __skb_unlink(skb, head);
8293 spin_unlock_irq(&head->lock);
8294 fpl->fp[fpl->count] = get_file(file);
8295 unix_inflight(fpl->user, fpl->fp[fpl->count]);
8296 fpl->count++;
8297 spin_lock_irq(&head->lock);
8298 __skb_queue_head(head, skb);
8299 } else {
8300 skb = NULL;
8301 }
8302 }
8303 spin_unlock_irq(&head->lock);
8304
8305 if (skb) {
8306 fput(file);
8307 return 0;
8308 }
8309
8310 return __io_sqe_files_scm(ctx, 1, index);
8311#else
8312 return 0;
8313#endif
8314}
8315
Pavel Begunkov9c7b0ba2021-09-14 16:12:52 +01008316static int io_queue_rsrc_removal(struct io_rsrc_data *data, unsigned idx,
8317 struct io_rsrc_node *node, void *rsrc)
8318{
8319 struct io_rsrc_put *prsrc;
8320
8321 prsrc = kzalloc(sizeof(*prsrc), GFP_KERNEL);
8322 if (!prsrc)
8323 return -ENOMEM;
8324
8325 prsrc->tag = *io_get_tag_slot(data, idx);
8326 prsrc->rsrc = rsrc;
8327 list_add(&prsrc->list, &node->rsrc_list);
8328 return 0;
8329}
8330
Pavel Begunkovb9445592021-08-25 12:25:45 +01008331static int io_install_fixed_file(struct io_kiocb *req, struct file *file,
8332 unsigned int issue_flags, u32 slot_index)
8333{
8334 struct io_ring_ctx *ctx = req->ctx;
8335 bool force_nonblock = issue_flags & IO_URING_F_NONBLOCK;
Pavel Begunkov9c7b0ba2021-09-14 16:12:52 +01008336 bool needs_switch = false;
Pavel Begunkovb9445592021-08-25 12:25:45 +01008337 struct io_fixed_file *file_slot;
8338 int ret = -EBADF;
8339
8340 io_ring_submit_lock(ctx, !force_nonblock);
8341 if (file->f_op == &io_uring_fops)
8342 goto err;
8343 ret = -ENXIO;
8344 if (!ctx->file_data)
8345 goto err;
8346 ret = -EINVAL;
8347 if (slot_index >= ctx->nr_user_files)
8348 goto err;
8349
8350 slot_index = array_index_nospec(slot_index, ctx->nr_user_files);
8351 file_slot = io_fixed_file_slot(&ctx->file_table, slot_index);
Pavel Begunkov9c7b0ba2021-09-14 16:12:52 +01008352
8353 if (file_slot->file_ptr) {
8354 struct file *old_file;
8355
8356 ret = io_rsrc_node_switch_start(ctx);
8357 if (ret)
8358 goto err;
8359
8360 old_file = (struct file *)(file_slot->file_ptr & FFS_MASK);
8361 ret = io_queue_rsrc_removal(ctx->file_data, slot_index,
8362 ctx->rsrc_node, old_file);
8363 if (ret)
8364 goto err;
8365 file_slot->file_ptr = 0;
8366 needs_switch = true;
8367 }
Pavel Begunkovb9445592021-08-25 12:25:45 +01008368
8369 *io_get_tag_slot(ctx->file_data, slot_index) = 0;
8370 io_fixed_file_set(file_slot, file);
8371 ret = io_sqe_file_register(ctx, file, slot_index);
8372 if (ret) {
8373 file_slot->file_ptr = 0;
8374 goto err;
8375 }
8376
8377 ret = 0;
8378err:
Pavel Begunkov9c7b0ba2021-09-14 16:12:52 +01008379 if (needs_switch)
8380 io_rsrc_node_switch(ctx, ctx->file_data);
Pavel Begunkovb9445592021-08-25 12:25:45 +01008381 io_ring_submit_unlock(ctx, !force_nonblock);
8382 if (ret)
8383 fput(file);
8384 return ret;
8385}
8386
Pavel Begunkov7df778b2021-09-24 20:04:29 +01008387static int io_close_fixed(struct io_kiocb *req, unsigned int issue_flags)
8388{
8389 unsigned int offset = req->close.file_slot - 1;
8390 struct io_ring_ctx *ctx = req->ctx;
8391 struct io_fixed_file *file_slot;
8392 struct file *file;
8393 int ret, i;
8394
8395 io_ring_submit_lock(ctx, !(issue_flags & IO_URING_F_NONBLOCK));
8396 ret = -ENXIO;
8397 if (unlikely(!ctx->file_data))
8398 goto out;
8399 ret = -EINVAL;
8400 if (offset >= ctx->nr_user_files)
8401 goto out;
8402 ret = io_rsrc_node_switch_start(ctx);
8403 if (ret)
8404 goto out;
8405
8406 i = array_index_nospec(offset, ctx->nr_user_files);
8407 file_slot = io_fixed_file_slot(&ctx->file_table, i);
8408 ret = -EBADF;
8409 if (!file_slot->file_ptr)
8410 goto out;
8411
8412 file = (struct file *)(file_slot->file_ptr & FFS_MASK);
8413 ret = io_queue_rsrc_removal(ctx->file_data, offset, ctx->rsrc_node, file);
8414 if (ret)
8415 goto out;
8416
8417 file_slot->file_ptr = 0;
8418 io_rsrc_node_switch(ctx, ctx->file_data);
8419 ret = 0;
8420out:
8421 io_ring_submit_unlock(ctx, !(issue_flags & IO_URING_F_NONBLOCK));
8422 return ret;
8423}
8424
Jens Axboe05f3fb32019-12-09 11:22:50 -07008425static int __io_sqe_files_update(struct io_ring_ctx *ctx,
Pavel Begunkovc3bdad02021-04-25 14:32:22 +01008426 struct io_uring_rsrc_update2 *up,
Jens Axboe05f3fb32019-12-09 11:22:50 -07008427 unsigned nr_args)
8428{
Pavel Begunkovc3bdad02021-04-25 14:32:22 +01008429 u64 __user *tags = u64_to_user_ptr(up->tags);
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +01008430 __s32 __user *fds = u64_to_user_ptr(up->data);
Pavel Begunkovb895c9a2021-04-01 15:43:40 +01008431 struct io_rsrc_data *data = ctx->file_data;
Pavel Begunkova04b0ac2021-04-01 15:44:04 +01008432 struct io_fixed_file *file_slot;
8433 struct file *file;
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +01008434 int fd, i, err = 0;
8435 unsigned int done;
Xiaoguang Wang05589552020-03-31 14:05:18 +08008436 bool needs_switch = false;
Jens Axboec3a31e62019-10-03 13:59:56 -06008437
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +01008438 if (!ctx->file_data)
8439 return -ENXIO;
8440 if (up->offset + nr_args > ctx->nr_user_files)
Jens Axboec3a31e62019-10-03 13:59:56 -06008441 return -EINVAL;
8442
Pavel Begunkov67973b92021-01-26 13:51:09 +00008443 for (done = 0; done < nr_args; done++) {
Pavel Begunkovc3bdad02021-04-25 14:32:22 +01008444 u64 tag = 0;
8445
8446 if ((tags && copy_from_user(&tag, &tags[done], sizeof(tag))) ||
8447 copy_from_user(&fd, &fds[done], sizeof(fd))) {
Jens Axboec3a31e62019-10-03 13:59:56 -06008448 err = -EFAULT;
8449 break;
8450 }
Pavel Begunkovc3bdad02021-04-25 14:32:22 +01008451 if ((fd == IORING_REGISTER_FILES_SKIP || fd == -1) && tag) {
8452 err = -EINVAL;
8453 break;
8454 }
noah4e0377a2021-01-26 15:23:28 -05008455 if (fd == IORING_REGISTER_FILES_SKIP)
8456 continue;
8457
Pavel Begunkov67973b92021-01-26 13:51:09 +00008458 i = array_index_nospec(up->offset + done, ctx->nr_user_files);
Pavel Begunkovaeca2412021-04-11 01:46:37 +01008459 file_slot = io_fixed_file_slot(&ctx->file_table, i);
Pavel Begunkovea64ec022021-02-04 13:52:07 +00008460
Pavel Begunkova04b0ac2021-04-01 15:44:04 +01008461 if (file_slot->file_ptr) {
8462 file = (struct file *)(file_slot->file_ptr & FFS_MASK);
Pavel Begunkovb60c8dc2021-04-25 14:32:18 +01008463 err = io_queue_rsrc_removal(data, up->offset + done,
8464 ctx->rsrc_node, file);
Hillf Dantona5318d32020-03-23 17:47:15 +08008465 if (err)
8466 break;
Pavel Begunkova04b0ac2021-04-01 15:44:04 +01008467 file_slot->file_ptr = 0;
Xiaoguang Wang05589552020-03-31 14:05:18 +08008468 needs_switch = true;
Jens Axboec3a31e62019-10-03 13:59:56 -06008469 }
8470 if (fd != -1) {
Jens Axboec3a31e62019-10-03 13:59:56 -06008471 file = fget(fd);
8472 if (!file) {
8473 err = -EBADF;
8474 break;
8475 }
8476 /*
8477 * Don't allow io_uring instances to be registered. If
8478 * UNIX isn't enabled, then this causes a reference
8479 * cycle and this instance can never get freed. If UNIX
8480 * is enabled we'll handle it just fine, but there's
8481 * still no point in allowing a ring fd as it doesn't
8482 * support regular read/write anyway.
8483 */
8484 if (file->f_op == &io_uring_fops) {
8485 fput(file);
8486 err = -EBADF;
8487 break;
8488 }
Pavel Begunkov2d091d62021-06-14 02:36:21 +01008489 *io_get_tag_slot(data, up->offset + done) = tag;
Pavel Begunkov9a321c92021-04-01 15:44:01 +01008490 io_fixed_file_set(file_slot, file);
Jens Axboec3a31e62019-10-03 13:59:56 -06008491 err = io_sqe_file_register(ctx, file, i);
Yang Yingliangf3bd9da2020-07-09 10:11:41 +00008492 if (err) {
Pavel Begunkova04b0ac2021-04-01 15:44:04 +01008493 file_slot->file_ptr = 0;
Yang Yingliangf3bd9da2020-07-09 10:11:41 +00008494 fput(file);
Jens Axboec3a31e62019-10-03 13:59:56 -06008495 break;
Yang Yingliangf3bd9da2020-07-09 10:11:41 +00008496 }
Jens Axboec3a31e62019-10-03 13:59:56 -06008497 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07008498 }
8499
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01008500 if (needs_switch)
8501 io_rsrc_node_switch(ctx, data);
Jens Axboec3a31e62019-10-03 13:59:56 -06008502 return done ? done : err;
8503}
Xiaoguang Wang05589552020-03-31 14:05:18 +08008504
Jens Axboe685fe7f2021-03-08 09:37:51 -07008505static struct io_wq *io_init_wq_offload(struct io_ring_ctx *ctx,
8506 struct task_struct *task)
Pavel Begunkov24369c22020-01-28 03:15:48 +03008507{
Jens Axboee9418942021-02-19 12:33:30 -07008508 struct io_wq_hash *hash;
Pavel Begunkov24369c22020-01-28 03:15:48 +03008509 struct io_wq_data data;
Pavel Begunkov24369c22020-01-28 03:15:48 +03008510 unsigned int concurrency;
Pavel Begunkov24369c22020-01-28 03:15:48 +03008511
Yang Yingliang362a9e62021-07-20 16:38:05 +08008512 mutex_lock(&ctx->uring_lock);
Jens Axboee9418942021-02-19 12:33:30 -07008513 hash = ctx->hash_map;
8514 if (!hash) {
8515 hash = kzalloc(sizeof(*hash), GFP_KERNEL);
Yang Yingliang362a9e62021-07-20 16:38:05 +08008516 if (!hash) {
8517 mutex_unlock(&ctx->uring_lock);
Jens Axboee9418942021-02-19 12:33:30 -07008518 return ERR_PTR(-ENOMEM);
Yang Yingliang362a9e62021-07-20 16:38:05 +08008519 }
Jens Axboee9418942021-02-19 12:33:30 -07008520 refcount_set(&hash->refs, 1);
8521 init_waitqueue_head(&hash->wait);
8522 ctx->hash_map = hash;
8523 }
Yang Yingliang362a9e62021-07-20 16:38:05 +08008524 mutex_unlock(&ctx->uring_lock);
Jens Axboee9418942021-02-19 12:33:30 -07008525
8526 data.hash = hash;
Jens Axboe685fe7f2021-03-08 09:37:51 -07008527 data.task = task;
Pavel Begunkovebc11b62021-08-09 13:04:05 +01008528 data.free_work = io_wq_free_work;
Pavel Begunkovf5fa38c2020-06-08 21:08:20 +03008529 data.do_work = io_wq_submit_work;
Pavel Begunkov24369c22020-01-28 03:15:48 +03008530
Jens Axboed25e3a32021-02-16 11:41:41 -07008531 /* Do QD, or 4 * CPUS, whatever is smallest */
8532 concurrency = min(ctx->sq_entries, 4 * num_online_cpus());
Pavel Begunkov24369c22020-01-28 03:15:48 +03008533
Jens Axboe5aa75ed2021-02-16 12:56:50 -07008534 return io_wq_create(concurrency, &data);
Pavel Begunkov24369c22020-01-28 03:15:48 +03008535}
8536
Pavel Begunkovc0724812021-10-04 20:02:54 +01008537static __cold int io_uring_alloc_task_context(struct task_struct *task,
8538 struct io_ring_ctx *ctx)
Jens Axboe0f212202020-09-13 13:09:39 -06008539{
8540 struct io_uring_task *tctx;
Jens Axboed8a6df12020-10-15 16:24:45 -06008541 int ret;
Jens Axboe0f212202020-09-13 13:09:39 -06008542
Pavel Begunkov09899b12021-06-14 02:36:22 +01008543 tctx = kzalloc(sizeof(*tctx), GFP_KERNEL);
Jens Axboe0f212202020-09-13 13:09:39 -06008544 if (unlikely(!tctx))
8545 return -ENOMEM;
8546
Jens Axboed8a6df12020-10-15 16:24:45 -06008547 ret = percpu_counter_init(&tctx->inflight, 0, GFP_KERNEL);
8548 if (unlikely(ret)) {
8549 kfree(tctx);
8550 return ret;
8551 }
8552
Jens Axboe685fe7f2021-03-08 09:37:51 -07008553 tctx->io_wq = io_init_wq_offload(ctx, task);
Jens Axboe5aa75ed2021-02-16 12:56:50 -07008554 if (IS_ERR(tctx->io_wq)) {
8555 ret = PTR_ERR(tctx->io_wq);
8556 percpu_counter_destroy(&tctx->inflight);
8557 kfree(tctx);
8558 return ret;
8559 }
8560
Jens Axboe0f212202020-09-13 13:09:39 -06008561 xa_init(&tctx->xa);
8562 init_waitqueue_head(&tctx->wait);
Jens Axboefdaf0832020-10-30 09:37:30 -06008563 atomic_set(&tctx->in_idle, 0);
Pavel Begunkovb303fe22021-04-11 01:46:26 +01008564 atomic_set(&tctx->inflight_tracked, 0);
Jens Axboe0f212202020-09-13 13:09:39 -06008565 task->io_uring = tctx;
Jens Axboe7cbf1722021-02-10 00:03:20 +00008566 spin_lock_init(&tctx->task_lock);
8567 INIT_WQ_LIST(&tctx->task_list);
Jens Axboe7cbf1722021-02-10 00:03:20 +00008568 init_task_work(&tctx->task_work, tctx_task_work);
Jens Axboe0f212202020-09-13 13:09:39 -06008569 return 0;
8570}
8571
8572void __io_uring_free(struct task_struct *tsk)
8573{
8574 struct io_uring_task *tctx = tsk->io_uring;
8575
8576 WARN_ON_ONCE(!xa_empty(&tctx->xa));
Pavel Begunkovef8eaa42021-02-27 11:16:45 +00008577 WARN_ON_ONCE(tctx->io_wq);
Pavel Begunkov09899b12021-06-14 02:36:22 +01008578 WARN_ON_ONCE(tctx->cached_refs);
Pavel Begunkovef8eaa42021-02-27 11:16:45 +00008579
Jens Axboed8a6df12020-10-15 16:24:45 -06008580 percpu_counter_destroy(&tctx->inflight);
Jens Axboe0f212202020-09-13 13:09:39 -06008581 kfree(tctx);
8582 tsk->io_uring = NULL;
8583}
8584
Pavel Begunkovc0724812021-10-04 20:02:54 +01008585static __cold int io_sq_offload_create(struct io_ring_ctx *ctx,
8586 struct io_uring_params *p)
Jens Axboe2b188cc2019-01-07 10:46:33 -07008587{
8588 int ret;
8589
Jens Axboed25e3a32021-02-16 11:41:41 -07008590 /* Retain compatibility with failing for an invalid attach attempt */
8591 if ((ctx->flags & (IORING_SETUP_ATTACH_WQ | IORING_SETUP_SQPOLL)) ==
8592 IORING_SETUP_ATTACH_WQ) {
8593 struct fd f;
8594
8595 f = fdget(p->wq_fd);
8596 if (!f.file)
8597 return -ENXIO;
Jens Axboe0cc936f2021-07-22 17:08:07 -06008598 if (f.file->f_op != &io_uring_fops) {
8599 fdput(f);
Pavel Begunkovf2a48dd2021-04-20 12:03:33 +01008600 return -EINVAL;
Jens Axboe0cc936f2021-07-22 17:08:07 -06008601 }
8602 fdput(f);
Jens Axboed25e3a32021-02-16 11:41:41 -07008603 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07008604 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboe46fe18b2021-03-04 12:39:36 -07008605 struct task_struct *tsk;
Jens Axboe534ca6d2020-09-02 13:52:19 -06008606 struct io_sq_data *sqd;
Pavel Begunkov26984fb2021-03-11 23:29:37 +00008607 bool attached;
Jens Axboe534ca6d2020-09-02 13:52:19 -06008608
Pavel Begunkov26984fb2021-03-11 23:29:37 +00008609 sqd = io_get_sq_data(p, &attached);
Jens Axboe534ca6d2020-09-02 13:52:19 -06008610 if (IS_ERR(sqd)) {
8611 ret = PTR_ERR(sqd);
8612 goto err;
8613 }
Jens Axboe69fb2132020-09-14 11:16:23 -06008614
Stefan Metzmacher7c30f36a2021-03-07 11:54:28 +01008615 ctx->sq_creds = get_current_cred();
Jens Axboe534ca6d2020-09-02 13:52:19 -06008616 ctx->sq_data = sqd;
Jens Axboe917257d2019-04-13 09:28:55 -06008617 ctx->sq_thread_idle = msecs_to_jiffies(p->sq_thread_idle);
8618 if (!ctx->sq_thread_idle)
8619 ctx->sq_thread_idle = HZ;
8620
Pavel Begunkov78d7f6b2021-03-10 13:13:53 +00008621 io_sq_thread_park(sqd);
Pavel Begunkovde75a3d2021-03-18 11:54:35 +00008622 list_add(&ctx->sqd_list, &sqd->ctx_list);
8623 io_sqd_update_thread_idle(sqd);
Pavel Begunkov26984fb2021-03-11 23:29:37 +00008624 /* don't attach to a dying SQPOLL thread, would be racy */
Pavel Begunkovf2a48dd2021-04-20 12:03:33 +01008625 ret = (attached && !sqd->thread) ? -ENXIO : 0;
Pavel Begunkov78d7f6b2021-03-10 13:13:53 +00008626 io_sq_thread_unpark(sqd);
8627
Pavel Begunkovde75a3d2021-03-18 11:54:35 +00008628 if (ret < 0)
8629 goto err;
8630 if (attached)
Jens Axboe5aa75ed2021-02-16 12:56:50 -07008631 return 0;
Jens Axboeaa061652020-09-02 14:50:27 -06008632
Jens Axboe6c271ce2019-01-10 11:22:30 -07008633 if (p->flags & IORING_SETUP_SQ_AFF) {
Jens Axboe44a9bd12019-05-14 20:00:30 -06008634 int cpu = p->sq_thread_cpu;
Jens Axboe6c271ce2019-01-10 11:22:30 -07008635
Jens Axboe917257d2019-04-13 09:28:55 -06008636 ret = -EINVAL;
Pavel Begunkovf2a48dd2021-04-20 12:03:33 +01008637 if (cpu >= nr_cpu_ids || !cpu_online(cpu))
Jens Axboee8f98f242021-03-09 16:32:13 -07008638 goto err_sqpoll;
Jens Axboe37d1e2e2021-02-17 21:03:43 -07008639 sqd->sq_cpu = cpu;
Jens Axboe6c271ce2019-01-10 11:22:30 -07008640 } else {
Jens Axboe37d1e2e2021-02-17 21:03:43 -07008641 sqd->sq_cpu = -1;
Jens Axboe6c271ce2019-01-10 11:22:30 -07008642 }
Jens Axboe37d1e2e2021-02-17 21:03:43 -07008643
8644 sqd->task_pid = current->pid;
Jens Axboe5c2469e2021-03-11 10:17:56 -07008645 sqd->task_tgid = current->tgid;
Jens Axboe46fe18b2021-03-04 12:39:36 -07008646 tsk = create_io_thread(io_sq_thread, sqd, NUMA_NO_NODE);
8647 if (IS_ERR(tsk)) {
8648 ret = PTR_ERR(tsk);
Jens Axboee8f98f242021-03-09 16:32:13 -07008649 goto err_sqpoll;
Jens Axboe6c271ce2019-01-10 11:22:30 -07008650 }
Pavel Begunkov97a73a02021-03-08 17:30:54 +00008651
Jens Axboe46fe18b2021-03-04 12:39:36 -07008652 sqd->thread = tsk;
Pavel Begunkov97a73a02021-03-08 17:30:54 +00008653 ret = io_uring_alloc_task_context(tsk, ctx);
Jens Axboe46fe18b2021-03-04 12:39:36 -07008654 wake_up_new_task(tsk);
Jens Axboe0f212202020-09-13 13:09:39 -06008655 if (ret)
8656 goto err;
Jens Axboe6c271ce2019-01-10 11:22:30 -07008657 } else if (p->flags & IORING_SETUP_SQ_AFF) {
8658 /* Can't have SQ_AFF without SQPOLL */
8659 ret = -EINVAL;
8660 goto err;
8661 }
8662
Jens Axboe2b188cc2019-01-07 10:46:33 -07008663 return 0;
Pavel Begunkovf2a48dd2021-04-20 12:03:33 +01008664err_sqpoll:
8665 complete(&ctx->sq_data->exited);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008666err:
Jens Axboe37d1e2e2021-02-17 21:03:43 -07008667 io_sq_thread_finish(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008668 return ret;
8669}
8670
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008671static inline void __io_unaccount_mem(struct user_struct *user,
8672 unsigned long nr_pages)
Jens Axboe2b188cc2019-01-07 10:46:33 -07008673{
8674 atomic_long_sub(nr_pages, &user->locked_vm);
8675}
8676
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008677static inline int __io_account_mem(struct user_struct *user,
8678 unsigned long nr_pages)
Jens Axboe2b188cc2019-01-07 10:46:33 -07008679{
8680 unsigned long page_limit, cur_pages, new_pages;
8681
8682 /* Don't allow more pages than we can safely lock */
8683 page_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
8684
8685 do {
8686 cur_pages = atomic_long_read(&user->locked_vm);
8687 new_pages = cur_pages + nr_pages;
8688 if (new_pages > page_limit)
8689 return -ENOMEM;
8690 } while (atomic_long_cmpxchg(&user->locked_vm, cur_pages,
8691 new_pages) != cur_pages);
8692
8693 return 0;
8694}
8695
Jens Axboe26bfa89e2021-02-09 20:14:12 -07008696static void io_unaccount_mem(struct io_ring_ctx *ctx, unsigned long nr_pages)
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008697{
Jens Axboe62e398b2021-02-21 16:19:37 -07008698 if (ctx->user)
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008699 __io_unaccount_mem(ctx->user, nr_pages);
Bijan Mottahedeh30975822020-06-16 16:36:09 -07008700
Jens Axboe26bfa89e2021-02-09 20:14:12 -07008701 if (ctx->mm_account)
8702 atomic64_sub(nr_pages, &ctx->mm_account->pinned_vm);
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008703}
8704
Jens Axboe26bfa89e2021-02-09 20:14:12 -07008705static int io_account_mem(struct io_ring_ctx *ctx, unsigned long nr_pages)
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008706{
Bijan Mottahedeh30975822020-06-16 16:36:09 -07008707 int ret;
8708
Jens Axboe62e398b2021-02-21 16:19:37 -07008709 if (ctx->user) {
Bijan Mottahedeh30975822020-06-16 16:36:09 -07008710 ret = __io_account_mem(ctx->user, nr_pages);
8711 if (ret)
8712 return ret;
8713 }
8714
Jens Axboe26bfa89e2021-02-09 20:14:12 -07008715 if (ctx->mm_account)
8716 atomic64_add(nr_pages, &ctx->mm_account->pinned_vm);
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008717
8718 return 0;
8719}
8720
Jens Axboe2b188cc2019-01-07 10:46:33 -07008721static void io_mem_free(void *ptr)
8722{
Mark Rutland52e04ef2019-04-30 17:30:21 +01008723 struct page *page;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008724
Mark Rutland52e04ef2019-04-30 17:30:21 +01008725 if (!ptr)
8726 return;
8727
8728 page = virt_to_head_page(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008729 if (put_page_testzero(page))
8730 free_compound_page(page);
8731}
8732
8733static void *io_mem_alloc(size_t size)
8734{
8735 gfp_t gfp_flags = GFP_KERNEL | __GFP_ZERO | __GFP_NOWARN | __GFP_COMP |
Jens Axboe26bfa89e2021-02-09 20:14:12 -07008736 __GFP_NORETRY | __GFP_ACCOUNT;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008737
8738 return (void *) __get_free_pages(gfp_flags, get_order(size));
8739}
8740
Hristo Venev75b28af2019-08-26 17:23:46 +00008741static unsigned long rings_size(unsigned sq_entries, unsigned cq_entries,
8742 size_t *sq_offset)
8743{
8744 struct io_rings *rings;
8745 size_t off, sq_array_size;
8746
8747 off = struct_size(rings, cqes, cq_entries);
8748 if (off == SIZE_MAX)
8749 return SIZE_MAX;
8750
8751#ifdef CONFIG_SMP
8752 off = ALIGN(off, SMP_CACHE_BYTES);
8753 if (off == 0)
8754 return SIZE_MAX;
8755#endif
8756
Dmitry Vyukovb36200f2020-07-11 11:31:11 +02008757 if (sq_offset)
8758 *sq_offset = off;
8759
Hristo Venev75b28af2019-08-26 17:23:46 +00008760 sq_array_size = array_size(sizeof(u32), sq_entries);
8761 if (sq_array_size == SIZE_MAX)
8762 return SIZE_MAX;
8763
8764 if (check_add_overflow(off, sq_array_size, &off))
8765 return SIZE_MAX;
8766
Hristo Venev75b28af2019-08-26 17:23:46 +00008767 return off;
8768}
8769
Pavel Begunkov41edf1a2021-04-25 14:32:23 +01008770static void io_buffer_unmap(struct io_ring_ctx *ctx, struct io_mapped_ubuf **slot)
Pavel Begunkov7f61a1e2021-04-11 01:46:35 +01008771{
Pavel Begunkov41edf1a2021-04-25 14:32:23 +01008772 struct io_mapped_ubuf *imu = *slot;
Pavel Begunkov7f61a1e2021-04-11 01:46:35 +01008773 unsigned int i;
8774
Pavel Begunkov62248432021-04-28 13:11:29 +01008775 if (imu != ctx->dummy_ubuf) {
8776 for (i = 0; i < imu->nr_bvecs; i++)
8777 unpin_user_page(imu->bvec[i].bv_page);
8778 if (imu->acct_pages)
8779 io_unaccount_mem(ctx, imu->acct_pages);
8780 kvfree(imu);
8781 }
Pavel Begunkov41edf1a2021-04-25 14:32:23 +01008782 *slot = NULL;
Pavel Begunkov7f61a1e2021-04-11 01:46:35 +01008783}
8784
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01008785static void io_rsrc_buf_put(struct io_ring_ctx *ctx, struct io_rsrc_put *prsrc)
8786{
Pavel Begunkov634d00d2021-04-25 14:32:26 +01008787 io_buffer_unmap(ctx, &prsrc->buf);
8788 prsrc->buf = NULL;
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01008789}
8790
8791static void __io_sqe_buffers_unregister(struct io_ring_ctx *ctx)
Jens Axboeedafcce2019-01-09 09:16:05 -07008792{
Pavel Begunkov7f61a1e2021-04-11 01:46:35 +01008793 unsigned int i;
Jens Axboeedafcce2019-01-09 09:16:05 -07008794
Pavel Begunkov7f61a1e2021-04-11 01:46:35 +01008795 for (i = 0; i < ctx->nr_user_bufs; i++)
8796 io_buffer_unmap(ctx, &ctx->user_bufs[i]);
Jens Axboeedafcce2019-01-09 09:16:05 -07008797 kfree(ctx->user_bufs);
Zqiangbb6659c2021-04-30 16:25:15 +08008798 io_rsrc_data_free(ctx->buf_data);
Jens Axboeedafcce2019-01-09 09:16:05 -07008799 ctx->user_bufs = NULL;
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01008800 ctx->buf_data = NULL;
Jens Axboeedafcce2019-01-09 09:16:05 -07008801 ctx->nr_user_bufs = 0;
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01008802}
8803
Jens Axboeedafcce2019-01-09 09:16:05 -07008804static int io_sqe_buffers_unregister(struct io_ring_ctx *ctx)
8805{
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01008806 int ret;
Jens Axboeedafcce2019-01-09 09:16:05 -07008807
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01008808 if (!ctx->buf_data)
Jens Axboeedafcce2019-01-09 09:16:05 -07008809 return -ENXIO;
8810
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01008811 ret = io_rsrc_ref_quiesce(ctx->buf_data, ctx);
8812 if (!ret)
8813 __io_sqe_buffers_unregister(ctx);
8814 return ret;
Jens Axboeedafcce2019-01-09 09:16:05 -07008815}
8816
8817static int io_copy_iov(struct io_ring_ctx *ctx, struct iovec *dst,
8818 void __user *arg, unsigned index)
8819{
8820 struct iovec __user *src;
8821
8822#ifdef CONFIG_COMPAT
8823 if (ctx->compat) {
8824 struct compat_iovec __user *ciovs;
8825 struct compat_iovec ciov;
8826
8827 ciovs = (struct compat_iovec __user *) arg;
8828 if (copy_from_user(&ciov, &ciovs[index], sizeof(ciov)))
8829 return -EFAULT;
8830
Jens Axboed55e5f52019-12-11 16:12:15 -07008831 dst->iov_base = u64_to_user_ptr((u64)ciov.iov_base);
Jens Axboeedafcce2019-01-09 09:16:05 -07008832 dst->iov_len = ciov.iov_len;
8833 return 0;
8834 }
8835#endif
8836 src = (struct iovec __user *) arg;
8837 if (copy_from_user(dst, &src[index], sizeof(*dst)))
8838 return -EFAULT;
8839 return 0;
8840}
8841
Jens Axboede293932020-09-17 16:19:16 -06008842/*
8843 * Not super efficient, but this is just a registration time. And we do cache
8844 * the last compound head, so generally we'll only do a full search if we don't
8845 * match that one.
8846 *
8847 * We check if the given compound head page has already been accounted, to
8848 * avoid double accounting it. This allows us to account the full size of the
8849 * page, not just the constituent pages of a huge page.
8850 */
8851static bool headpage_already_acct(struct io_ring_ctx *ctx, struct page **pages,
8852 int nr_pages, struct page *hpage)
8853{
8854 int i, j;
8855
8856 /* check current page array */
8857 for (i = 0; i < nr_pages; i++) {
8858 if (!PageCompound(pages[i]))
8859 continue;
8860 if (compound_head(pages[i]) == hpage)
8861 return true;
8862 }
8863
8864 /* check previously registered pages */
8865 for (i = 0; i < ctx->nr_user_bufs; i++) {
Pavel Begunkov41edf1a2021-04-25 14:32:23 +01008866 struct io_mapped_ubuf *imu = ctx->user_bufs[i];
Jens Axboede293932020-09-17 16:19:16 -06008867
8868 for (j = 0; j < imu->nr_bvecs; j++) {
8869 if (!PageCompound(imu->bvec[j].bv_page))
8870 continue;
8871 if (compound_head(imu->bvec[j].bv_page) == hpage)
8872 return true;
8873 }
8874 }
8875
8876 return false;
8877}
8878
8879static int io_buffer_account_pin(struct io_ring_ctx *ctx, struct page **pages,
8880 int nr_pages, struct io_mapped_ubuf *imu,
8881 struct page **last_hpage)
8882{
8883 int i, ret;
8884
Pavel Begunkov216e5832021-05-29 12:01:02 +01008885 imu->acct_pages = 0;
Jens Axboede293932020-09-17 16:19:16 -06008886 for (i = 0; i < nr_pages; i++) {
8887 if (!PageCompound(pages[i])) {
8888 imu->acct_pages++;
8889 } else {
8890 struct page *hpage;
8891
8892 hpage = compound_head(pages[i]);
8893 if (hpage == *last_hpage)
8894 continue;
8895 *last_hpage = hpage;
8896 if (headpage_already_acct(ctx, pages, i, hpage))
8897 continue;
8898 imu->acct_pages += page_size(hpage) >> PAGE_SHIFT;
8899 }
8900 }
8901
8902 if (!imu->acct_pages)
8903 return 0;
8904
Jens Axboe26bfa89e2021-02-09 20:14:12 -07008905 ret = io_account_mem(ctx, imu->acct_pages);
Jens Axboede293932020-09-17 16:19:16 -06008906 if (ret)
8907 imu->acct_pages = 0;
8908 return ret;
8909}
8910
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08008911static int io_sqe_buffer_register(struct io_ring_ctx *ctx, struct iovec *iov,
Pavel Begunkov41edf1a2021-04-25 14:32:23 +01008912 struct io_mapped_ubuf **pimu,
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08008913 struct page **last_hpage)
Jens Axboeedafcce2019-01-09 09:16:05 -07008914{
Pavel Begunkov41edf1a2021-04-25 14:32:23 +01008915 struct io_mapped_ubuf *imu = NULL;
Jens Axboeedafcce2019-01-09 09:16:05 -07008916 struct vm_area_struct **vmas = NULL;
8917 struct page **pages = NULL;
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08008918 unsigned long off, start, end, ubuf;
8919 size_t size;
8920 int ret, pret, nr_pages, i;
Jens Axboeedafcce2019-01-09 09:16:05 -07008921
Pavel Begunkov62248432021-04-28 13:11:29 +01008922 if (!iov->iov_base) {
8923 *pimu = ctx->dummy_ubuf;
8924 return 0;
8925 }
8926
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08008927 ubuf = (unsigned long) iov->iov_base;
8928 end = (ubuf + iov->iov_len + PAGE_SIZE - 1) >> PAGE_SHIFT;
8929 start = ubuf >> PAGE_SHIFT;
8930 nr_pages = end - start;
8931
Pavel Begunkov41edf1a2021-04-25 14:32:23 +01008932 *pimu = NULL;
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08008933 ret = -ENOMEM;
8934
8935 pages = kvmalloc_array(nr_pages, sizeof(struct page *), GFP_KERNEL);
8936 if (!pages)
8937 goto done;
8938
8939 vmas = kvmalloc_array(nr_pages, sizeof(struct vm_area_struct *),
8940 GFP_KERNEL);
8941 if (!vmas)
8942 goto done;
8943
Pavel Begunkov41edf1a2021-04-25 14:32:23 +01008944 imu = kvmalloc(struct_size(imu, bvec, nr_pages), GFP_KERNEL);
Pavel Begunkova2b41982021-04-26 00:16:31 +01008945 if (!imu)
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08008946 goto done;
8947
8948 ret = 0;
8949 mmap_read_lock(current->mm);
8950 pret = pin_user_pages(ubuf, nr_pages, FOLL_WRITE | FOLL_LONGTERM,
8951 pages, vmas);
8952 if (pret == nr_pages) {
8953 /* don't support file backed memory */
8954 for (i = 0; i < nr_pages; i++) {
8955 struct vm_area_struct *vma = vmas[i];
8956
Pavel Begunkov40dad762021-06-09 15:26:54 +01008957 if (vma_is_shmem(vma))
8958 continue;
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08008959 if (vma->vm_file &&
8960 !is_file_hugepages(vma->vm_file)) {
8961 ret = -EOPNOTSUPP;
8962 break;
8963 }
8964 }
8965 } else {
8966 ret = pret < 0 ? pret : -EFAULT;
8967 }
8968 mmap_read_unlock(current->mm);
8969 if (ret) {
8970 /*
8971 * if we did partial map, or found file backed vmas,
8972 * release any pages we did get
8973 */
8974 if (pret > 0)
8975 unpin_user_pages(pages, pret);
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08008976 goto done;
8977 }
8978
8979 ret = io_buffer_account_pin(ctx, pages, pret, imu, last_hpage);
8980 if (ret) {
8981 unpin_user_pages(pages, pret);
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08008982 goto done;
8983 }
8984
8985 off = ubuf & ~PAGE_MASK;
8986 size = iov->iov_len;
8987 for (i = 0; i < nr_pages; i++) {
8988 size_t vec_len;
8989
8990 vec_len = min_t(size_t, size, PAGE_SIZE - off);
8991 imu->bvec[i].bv_page = pages[i];
8992 imu->bvec[i].bv_len = vec_len;
8993 imu->bvec[i].bv_offset = off;
8994 off = 0;
8995 size -= vec_len;
8996 }
8997 /* store original address for later verification */
8998 imu->ubuf = ubuf;
Pavel Begunkov4751f532021-04-01 15:43:55 +01008999 imu->ubuf_end = ubuf + iov->iov_len;
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08009000 imu->nr_bvecs = nr_pages;
Pavel Begunkov41edf1a2021-04-25 14:32:23 +01009001 *pimu = imu;
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08009002 ret = 0;
9003done:
Pavel Begunkov41edf1a2021-04-25 14:32:23 +01009004 if (ret)
9005 kvfree(imu);
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08009006 kvfree(pages);
9007 kvfree(vmas);
9008 return ret;
9009}
9010
Bijan Mottahedeh2b358602021-01-06 12:39:11 -08009011static int io_buffers_map_alloc(struct io_ring_ctx *ctx, unsigned int nr_args)
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08009012{
Pavel Begunkov87094462021-04-11 01:46:36 +01009013 ctx->user_bufs = kcalloc(nr_args, sizeof(*ctx->user_bufs), GFP_KERNEL);
9014 return ctx->user_bufs ? 0 : -ENOMEM;
Bijan Mottahedeh2b358602021-01-06 12:39:11 -08009015}
9016
9017static int io_buffer_validate(struct iovec *iov)
9018{
Pavel Begunkov50e96982021-03-24 22:59:01 +00009019 unsigned long tmp, acct_len = iov->iov_len + (PAGE_SIZE - 1);
9020
Bijan Mottahedeh2b358602021-01-06 12:39:11 -08009021 /*
9022 * Don't impose further limits on the size and buffer
9023 * constraints here, we'll -EINVAL later when IO is
9024 * submitted if they are wrong.
9025 */
Pavel Begunkov62248432021-04-28 13:11:29 +01009026 if (!iov->iov_base)
9027 return iov->iov_len ? -EFAULT : 0;
9028 if (!iov->iov_len)
Bijan Mottahedeh2b358602021-01-06 12:39:11 -08009029 return -EFAULT;
9030
9031 /* arbitrary limit, but we need something */
9032 if (iov->iov_len > SZ_1G)
9033 return -EFAULT;
9034
Pavel Begunkov50e96982021-03-24 22:59:01 +00009035 if (check_add_overflow((unsigned long)iov->iov_base, acct_len, &tmp))
9036 return -EOVERFLOW;
9037
Bijan Mottahedeh2b358602021-01-06 12:39:11 -08009038 return 0;
9039}
9040
9041static int io_sqe_buffers_register(struct io_ring_ctx *ctx, void __user *arg,
Pavel Begunkov634d00d2021-04-25 14:32:26 +01009042 unsigned int nr_args, u64 __user *tags)
Bijan Mottahedeh2b358602021-01-06 12:39:11 -08009043{
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01009044 struct page *last_hpage = NULL;
9045 struct io_rsrc_data *data;
Bijan Mottahedeh2b358602021-01-06 12:39:11 -08009046 int i, ret;
9047 struct iovec iov;
Bijan Mottahedeh2b358602021-01-06 12:39:11 -08009048
Pavel Begunkov87094462021-04-11 01:46:36 +01009049 if (ctx->user_bufs)
9050 return -EBUSY;
Pavel Begunkov489809e2021-05-14 12:06:44 +01009051 if (!nr_args || nr_args > IORING_MAX_REG_BUFFERS)
Pavel Begunkov87094462021-04-11 01:46:36 +01009052 return -EINVAL;
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01009053 ret = io_rsrc_node_switch_start(ctx);
Bijan Mottahedeh2b358602021-01-06 12:39:11 -08009054 if (ret)
9055 return ret;
Pavel Begunkovd878c812021-06-14 02:36:18 +01009056 ret = io_rsrc_data_alloc(ctx, io_rsrc_buf_put, tags, nr_args, &data);
9057 if (ret)
9058 return ret;
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01009059 ret = io_buffers_map_alloc(ctx, nr_args);
9060 if (ret) {
Zqiangbb6659c2021-04-30 16:25:15 +08009061 io_rsrc_data_free(data);
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01009062 return ret;
9063 }
Bijan Mottahedeh2b358602021-01-06 12:39:11 -08009064
Pavel Begunkov87094462021-04-11 01:46:36 +01009065 for (i = 0; i < nr_args; i++, ctx->nr_user_bufs++) {
Jens Axboeedafcce2019-01-09 09:16:05 -07009066 ret = io_copy_iov(ctx, &iov, arg, i);
9067 if (ret)
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08009068 break;
Bijan Mottahedeh2b358602021-01-06 12:39:11 -08009069 ret = io_buffer_validate(&iov);
9070 if (ret)
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08009071 break;
Pavel Begunkov2d091d62021-06-14 02:36:21 +01009072 if (!iov.iov_base && *io_get_tag_slot(data, i)) {
Colin Ian Kingcf3770e2021-04-29 11:46:02 +01009073 ret = -EINVAL;
9074 break;
9075 }
Jens Axboeedafcce2019-01-09 09:16:05 -07009076
Pavel Begunkov41edf1a2021-04-25 14:32:23 +01009077 ret = io_sqe_buffer_register(ctx, &iov, &ctx->user_bufs[i],
9078 &last_hpage);
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08009079 if (ret)
9080 break;
Jens Axboeedafcce2019-01-09 09:16:05 -07009081 }
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08009082
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01009083 WARN_ON_ONCE(ctx->buf_data);
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08009084
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01009085 ctx->buf_data = data;
9086 if (ret)
9087 __io_sqe_buffers_unregister(ctx);
9088 else
9089 io_rsrc_node_switch(ctx, NULL);
Jens Axboeedafcce2019-01-09 09:16:05 -07009090 return ret;
9091}
9092
Pavel Begunkov634d00d2021-04-25 14:32:26 +01009093static int __io_sqe_buffers_update(struct io_ring_ctx *ctx,
9094 struct io_uring_rsrc_update2 *up,
9095 unsigned int nr_args)
9096{
9097 u64 __user *tags = u64_to_user_ptr(up->tags);
9098 struct iovec iov, __user *iovs = u64_to_user_ptr(up->data);
Pavel Begunkov634d00d2021-04-25 14:32:26 +01009099 struct page *last_hpage = NULL;
9100 bool needs_switch = false;
9101 __u32 done;
9102 int i, err;
9103
9104 if (!ctx->buf_data)
9105 return -ENXIO;
9106 if (up->offset + nr_args > ctx->nr_user_bufs)
9107 return -EINVAL;
9108
9109 for (done = 0; done < nr_args; done++) {
Pavel Begunkov0b8c0e72021-04-26 15:17:38 +01009110 struct io_mapped_ubuf *imu;
9111 int offset = up->offset + done;
Pavel Begunkov634d00d2021-04-25 14:32:26 +01009112 u64 tag = 0;
9113
9114 err = io_copy_iov(ctx, &iov, iovs, done);
9115 if (err)
9116 break;
9117 if (tags && copy_from_user(&tag, &tags[done], sizeof(tag))) {
9118 err = -EFAULT;
9119 break;
9120 }
Pavel Begunkov0b8c0e72021-04-26 15:17:38 +01009121 err = io_buffer_validate(&iov);
9122 if (err)
9123 break;
Colin Ian Kingcf3770e2021-04-29 11:46:02 +01009124 if (!iov.iov_base && tag) {
9125 err = -EINVAL;
9126 break;
9127 }
Pavel Begunkov0b8c0e72021-04-26 15:17:38 +01009128 err = io_sqe_buffer_register(ctx, &iov, &imu, &last_hpage);
9129 if (err)
9130 break;
Pavel Begunkov634d00d2021-04-25 14:32:26 +01009131
Pavel Begunkov0b8c0e72021-04-26 15:17:38 +01009132 i = array_index_nospec(offset, ctx->nr_user_bufs);
Pavel Begunkov62248432021-04-28 13:11:29 +01009133 if (ctx->user_bufs[i] != ctx->dummy_ubuf) {
Pavel Begunkov0b8c0e72021-04-26 15:17:38 +01009134 err = io_queue_rsrc_removal(ctx->buf_data, offset,
9135 ctx->rsrc_node, ctx->user_bufs[i]);
9136 if (unlikely(err)) {
9137 io_buffer_unmap(ctx, &imu);
Pavel Begunkov634d00d2021-04-25 14:32:26 +01009138 break;
Pavel Begunkov0b8c0e72021-04-26 15:17:38 +01009139 }
Pavel Begunkov634d00d2021-04-25 14:32:26 +01009140 ctx->user_bufs[i] = NULL;
9141 needs_switch = true;
9142 }
9143
Pavel Begunkov0b8c0e72021-04-26 15:17:38 +01009144 ctx->user_bufs[i] = imu;
Pavel Begunkov2d091d62021-06-14 02:36:21 +01009145 *io_get_tag_slot(ctx->buf_data, offset) = tag;
Pavel Begunkov634d00d2021-04-25 14:32:26 +01009146 }
9147
9148 if (needs_switch)
9149 io_rsrc_node_switch(ctx, ctx->buf_data);
9150 return done ? done : err;
9151}
9152
Jens Axboe9b402842019-04-11 11:45:41 -06009153static int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg)
9154{
9155 __s32 __user *fds = arg;
9156 int fd;
9157
9158 if (ctx->cq_ev_fd)
9159 return -EBUSY;
9160
9161 if (copy_from_user(&fd, fds, sizeof(*fds)))
9162 return -EFAULT;
9163
9164 ctx->cq_ev_fd = eventfd_ctx_fdget(fd);
9165 if (IS_ERR(ctx->cq_ev_fd)) {
9166 int ret = PTR_ERR(ctx->cq_ev_fd);
Pavel Begunkovfe7e3252021-06-24 15:09:57 +01009167
Jens Axboe9b402842019-04-11 11:45:41 -06009168 ctx->cq_ev_fd = NULL;
9169 return ret;
9170 }
9171
9172 return 0;
9173}
9174
9175static int io_eventfd_unregister(struct io_ring_ctx *ctx)
9176{
9177 if (ctx->cq_ev_fd) {
9178 eventfd_ctx_put(ctx->cq_ev_fd);
9179 ctx->cq_ev_fd = NULL;
9180 return 0;
9181 }
9182
9183 return -ENXIO;
9184}
9185
Jens Axboe5a2e7452020-02-23 16:23:11 -07009186static void io_destroy_buffers(struct io_ring_ctx *ctx)
9187{
Jens Axboe9e15c3a2021-03-13 12:29:43 -07009188 struct io_buffer *buf;
9189 unsigned long index;
9190
Jens Axboe8bab4c02021-09-24 07:12:27 -06009191 xa_for_each(&ctx->io_buffers, index, buf) {
Jens Axboe9e15c3a2021-03-13 12:29:43 -07009192 __io_remove_buffers(ctx, buf, index, -1U);
Jens Axboe8bab4c02021-09-24 07:12:27 -06009193 cond_resched();
9194 }
Jens Axboe5a2e7452020-02-23 16:23:11 -07009195}
9196
Jens Axboe4010fec2021-02-27 15:04:18 -07009197static void io_req_caches_free(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -07009198{
Pavel Begunkovcd0ca2e2021-08-09 20:18:11 +01009199 struct io_submit_state *state = &ctx->submit_state;
Pavel Begunkov37f0e762021-10-04 20:02:53 +01009200 int nr = 0;
Pavel Begunkovbf019da2021-02-10 00:03:17 +00009201
Jens Axboe9a4fdbd2021-02-13 09:09:44 -07009202 mutex_lock(&ctx->uring_lock);
Pavel Begunkovcd0ca2e2021-08-09 20:18:11 +01009203 io_flush_cached_locked_reqs(ctx, state);
Pavel Begunkovc2b6c6b2021-09-24 21:59:47 +01009204
9205 while (state->free_list.next) {
9206 struct io_wq_work_node *node;
9207 struct io_kiocb *req;
9208
9209 node = wq_stack_extract(&state->free_list);
9210 req = container_of(node, struct io_kiocb, comp_list);
9211 kmem_cache_free(req_cachep, req);
Pavel Begunkov37f0e762021-10-04 20:02:53 +01009212 nr++;
Pavel Begunkovc2b6c6b2021-09-24 21:59:47 +01009213 }
Pavel Begunkov37f0e762021-10-04 20:02:53 +01009214 if (nr)
9215 percpu_ref_put_many(&ctx->refs, nr);
Jens Axboe9a4fdbd2021-02-13 09:09:44 -07009216 mutex_unlock(&ctx->uring_lock);
9217}
9218
Pavel Begunkov43597aa2021-08-10 02:44:23 +01009219static void io_wait_rsrc_data(struct io_rsrc_data *data)
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01009220{
Pavel Begunkov43597aa2021-08-10 02:44:23 +01009221 if (data && !atomic_dec_and_test(&data->refs))
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01009222 wait_for_completion(&data->done);
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01009223}
9224
Pavel Begunkovc0724812021-10-04 20:02:54 +01009225static __cold void io_ring_ctx_free(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -07009226{
Jens Axboe37d1e2e2021-02-17 21:03:43 -07009227 io_sq_thread_finish(ctx);
Jens Axboe2aede0e2020-09-14 10:45:53 -06009228
Jens Axboe37d1e2e2021-02-17 21:03:43 -07009229 if (ctx->mm_account) {
Jens Axboe2aede0e2020-09-14 10:45:53 -06009230 mmdrop(ctx->mm_account);
9231 ctx->mm_account = NULL;
Bijan Mottahedeh30975822020-06-16 16:36:09 -07009232 }
Jens Axboedef596e2019-01-09 08:59:42 -07009233
Pavel Begunkovab409402021-10-09 23:14:41 +01009234 io_rsrc_refs_drop(ctx);
Pavel Begunkov43597aa2021-08-10 02:44:23 +01009235 /* __io_rsrc_put_work() may need uring_lock to progress, wait w/o it */
9236 io_wait_rsrc_data(ctx->buf_data);
9237 io_wait_rsrc_data(ctx->file_data);
9238
Hao Xu8bad28d2021-02-19 17:19:36 +08009239 mutex_lock(&ctx->uring_lock);
Pavel Begunkov43597aa2021-08-10 02:44:23 +01009240 if (ctx->buf_data)
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01009241 __io_sqe_buffers_unregister(ctx);
Pavel Begunkov43597aa2021-08-10 02:44:23 +01009242 if (ctx->file_data)
Pavel Begunkov08480402021-04-13 02:58:38 +01009243 __io_sqe_files_unregister(ctx);
Pavel Begunkovc4ea0602021-04-01 15:43:58 +01009244 if (ctx->rings)
9245 __io_cqring_overflow_flush(ctx, true);
Hao Xu8bad28d2021-02-19 17:19:36 +08009246 mutex_unlock(&ctx->uring_lock);
Jens Axboe9b402842019-04-11 11:45:41 -06009247 io_eventfd_unregister(ctx);
Jens Axboe5a2e7452020-02-23 16:23:11 -07009248 io_destroy_buffers(ctx);
Pavel Begunkov07db2982021-04-20 12:03:32 +01009249 if (ctx->sq_creds)
9250 put_cred(ctx->sq_creds);
Jens Axboedef596e2019-01-09 08:59:42 -07009251
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01009252 /* there are no registered resources left, nobody uses it */
9253 if (ctx->rsrc_node)
9254 io_rsrc_node_destroy(ctx->rsrc_node);
Pavel Begunkov8dd03af2021-03-19 17:22:36 +00009255 if (ctx->rsrc_backup_node)
Pavel Begunkovb895c9a2021-04-01 15:43:40 +01009256 io_rsrc_node_destroy(ctx->rsrc_backup_node);
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01009257 flush_delayed_work(&ctx->rsrc_put_work);
Pavel Begunkov756ab7c2021-10-06 16:06:47 +01009258 flush_delayed_work(&ctx->fallback_work);
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01009259
9260 WARN_ON_ONCE(!list_empty(&ctx->rsrc_ref_list));
9261 WARN_ON_ONCE(!llist_empty(&ctx->rsrc_put_llist));
Jens Axboe2b188cc2019-01-07 10:46:33 -07009262
9263#if defined(CONFIG_UNIX)
Eric Biggers355e8d22019-06-12 14:58:43 -07009264 if (ctx->ring_sock) {
9265 ctx->ring_sock->file = NULL; /* so that iput() is called */
Jens Axboe2b188cc2019-01-07 10:46:33 -07009266 sock_release(ctx->ring_sock);
Eric Biggers355e8d22019-06-12 14:58:43 -07009267 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07009268#endif
Pavel Begunkovef9dd632021-08-28 19:54:38 -06009269 WARN_ON_ONCE(!list_empty(&ctx->ltimeout_list));
Jens Axboe2b188cc2019-01-07 10:46:33 -07009270
Hristo Venev75b28af2019-08-26 17:23:46 +00009271 io_mem_free(ctx->rings);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009272 io_mem_free(ctx->sq_sqes);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009273
9274 percpu_ref_exit(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009275 free_uid(ctx->user);
Jens Axboe4010fec2021-02-27 15:04:18 -07009276 io_req_caches_free(ctx);
Jens Axboee9418942021-02-19 12:33:30 -07009277 if (ctx->hash_map)
9278 io_wq_put_hash(ctx->hash_map);
Jens Axboe78076bb2019-12-04 19:56:40 -07009279 kfree(ctx->cancel_hash);
Pavel Begunkov62248432021-04-28 13:11:29 +01009280 kfree(ctx->dummy_ubuf);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009281 kfree(ctx);
9282}
9283
9284static __poll_t io_uring_poll(struct file *file, poll_table *wait)
9285{
9286 struct io_ring_ctx *ctx = file->private_data;
9287 __poll_t mask = 0;
9288
Pavel Begunkovd60aa652021-10-04 20:02:52 +01009289 poll_wait(file, &ctx->cq_wait, wait);
Stefan Bühler4f7067c2019-04-24 23:54:17 +02009290 /*
9291 * synchronizes with barrier from wq_has_sleeper call in
9292 * io_commit_cqring
9293 */
Jens Axboe2b188cc2019-01-07 10:46:33 -07009294 smp_rmb();
Jens Axboe90554202020-09-03 12:12:41 -06009295 if (!io_sqring_full(ctx))
Jens Axboe2b188cc2019-01-07 10:46:33 -07009296 mask |= EPOLLOUT | EPOLLWRNORM;
Hao Xued670c32021-02-05 16:34:21 +08009297
9298 /*
9299 * Don't flush cqring overflow list here, just do a simple check.
9300 * Otherwise there could possible be ABBA deadlock:
9301 * CPU0 CPU1
9302 * ---- ----
9303 * lock(&ctx->uring_lock);
9304 * lock(&ep->mtx);
9305 * lock(&ctx->uring_lock);
9306 * lock(&ep->mtx);
9307 *
9308 * Users may get EPOLLIN meanwhile seeing nothing in cqring, this
9309 * pushs them to do the flush.
9310 */
Pavel Begunkov5ed7a372021-06-14 23:37:27 +01009311 if (io_cqring_events(ctx) || test_bit(0, &ctx->check_cq_overflow))
Jens Axboe2b188cc2019-01-07 10:46:33 -07009312 mask |= EPOLLIN | EPOLLRDNORM;
9313
9314 return mask;
9315}
9316
Yejune Deng0bead8c2020-12-24 11:02:20 +08009317static int io_unregister_personality(struct io_ring_ctx *ctx, unsigned id)
Jens Axboe071698e2020-01-28 10:04:42 -07009318{
Jens Axboe4379bf82021-02-15 13:40:22 -07009319 const struct cred *creds;
Jens Axboe071698e2020-01-28 10:04:42 -07009320
Matthew Wilcox (Oracle)61cf9372021-03-08 14:16:16 +00009321 creds = xa_erase(&ctx->personalities, id);
Jens Axboe4379bf82021-02-15 13:40:22 -07009322 if (creds) {
9323 put_cred(creds);
Yejune Deng0bead8c2020-12-24 11:02:20 +08009324 return 0;
Jens Axboe1e6fa522020-10-15 08:46:24 -06009325 }
Yejune Deng0bead8c2020-12-24 11:02:20 +08009326
9327 return -EINVAL;
9328}
9329
Pavel Begunkovd56d9382021-03-06 11:02:13 +00009330struct io_tctx_exit {
9331 struct callback_head task_work;
9332 struct completion completion;
Pavel Begunkovbaf186c2021-03-06 11:02:15 +00009333 struct io_ring_ctx *ctx;
Pavel Begunkovd56d9382021-03-06 11:02:13 +00009334};
9335
Pavel Begunkovc0724812021-10-04 20:02:54 +01009336static __cold void io_tctx_exit_cb(struct callback_head *cb)
Pavel Begunkovd56d9382021-03-06 11:02:13 +00009337{
9338 struct io_uring_task *tctx = current->io_uring;
9339 struct io_tctx_exit *work;
9340
9341 work = container_of(cb, struct io_tctx_exit, task_work);
9342 /*
9343 * When @in_idle, we're in cancellation and it's racy to remove the
9344 * node. It'll be removed by the end of cancellation, just ignore it.
9345 */
9346 if (!atomic_read(&tctx->in_idle))
Pavel Begunkoveef51da2021-06-14 02:36:15 +01009347 io_uring_del_tctx_node((unsigned long)work->ctx);
Pavel Begunkovd56d9382021-03-06 11:02:13 +00009348 complete(&work->completion);
9349}
9350
Pavel Begunkovc0724812021-10-04 20:02:54 +01009351static __cold bool io_cancel_ctx_cb(struct io_wq_work *work, void *data)
Pavel Begunkov28090c12021-04-25 23:34:45 +01009352{
9353 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
9354
9355 return req->ctx == data;
9356}
9357
Pavel Begunkovc0724812021-10-04 20:02:54 +01009358static __cold void io_ring_exit_work(struct work_struct *work)
Jens Axboe85faa7b2020-04-09 18:14:00 -06009359{
Pavel Begunkovd56d9382021-03-06 11:02:13 +00009360 struct io_ring_ctx *ctx = container_of(work, struct io_ring_ctx, exit_work);
Pavel Begunkovb5bb3a22021-03-06 11:02:16 +00009361 unsigned long timeout = jiffies + HZ * 60 * 5;
Pavel Begunkov58d3be22021-08-09 13:04:17 +01009362 unsigned long interval = HZ / 20;
Pavel Begunkovd56d9382021-03-06 11:02:13 +00009363 struct io_tctx_exit exit;
9364 struct io_tctx_node *node;
9365 int ret;
Jens Axboe85faa7b2020-04-09 18:14:00 -06009366
Jens Axboe56952e92020-06-17 15:00:04 -06009367 /*
9368 * If we're doing polled IO and end up having requests being
9369 * submitted async (out-of-line), then completions can come in while
9370 * we're waiting for refs to drop. We need to reap these manually,
9371 * as nobody else will be looking for them.
9372 */
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03009373 do {
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009374 io_uring_try_cancel_requests(ctx, NULL, true);
Pavel Begunkov28090c12021-04-25 23:34:45 +01009375 if (ctx->sq_data) {
9376 struct io_sq_data *sqd = ctx->sq_data;
9377 struct task_struct *tsk;
9378
9379 io_sq_thread_park(sqd);
9380 tsk = sqd->thread;
9381 if (tsk && tsk->io_uring && tsk->io_uring->io_wq)
9382 io_wq_cancel_cb(tsk->io_uring->io_wq,
9383 io_cancel_ctx_cb, ctx, true);
9384 io_sq_thread_unpark(sqd);
9385 }
Pavel Begunkovb5bb3a22021-03-06 11:02:16 +00009386
Pavel Begunkov37f0e762021-10-04 20:02:53 +01009387 io_req_caches_free(ctx);
9388
Pavel Begunkov58d3be22021-08-09 13:04:17 +01009389 if (WARN_ON_ONCE(time_after(jiffies, timeout))) {
9390 /* there is little hope left, don't run it too often */
9391 interval = HZ * 60;
9392 }
9393 } while (!wait_for_completion_timeout(&ctx->ref_comp, interval));
Pavel Begunkovd56d9382021-03-06 11:02:13 +00009394
Pavel Begunkov7f006512021-04-14 13:38:34 +01009395 init_completion(&exit.completion);
9396 init_task_work(&exit.task_work, io_tctx_exit_cb);
9397 exit.ctx = ctx;
Pavel Begunkov89b50662021-04-01 15:43:50 +01009398 /*
9399 * Some may use context even when all refs and requests have been put,
9400 * and they are free to do so while still holding uring_lock or
Pavel Begunkov5b0a6ac2021-06-30 21:54:04 +01009401 * completion_lock, see io_req_task_submit(). Apart from other work,
Pavel Begunkov89b50662021-04-01 15:43:50 +01009402 * this lock/unlock section also waits them to finish.
9403 */
Pavel Begunkovd56d9382021-03-06 11:02:13 +00009404 mutex_lock(&ctx->uring_lock);
9405 while (!list_empty(&ctx->tctx_list)) {
Pavel Begunkovb5bb3a22021-03-06 11:02:16 +00009406 WARN_ON_ONCE(time_after(jiffies, timeout));
9407
Pavel Begunkovd56d9382021-03-06 11:02:13 +00009408 node = list_first_entry(&ctx->tctx_list, struct io_tctx_node,
9409 ctx_node);
Pavel Begunkov7f006512021-04-14 13:38:34 +01009410 /* don't spin on a single task if cancellation failed */
9411 list_rotate_left(&ctx->tctx_list);
Pavel Begunkovd56d9382021-03-06 11:02:13 +00009412 ret = task_work_add(node->task, &exit.task_work, TWA_SIGNAL);
9413 if (WARN_ON_ONCE(ret))
9414 continue;
Pavel Begunkovd56d9382021-03-06 11:02:13 +00009415
9416 mutex_unlock(&ctx->uring_lock);
9417 wait_for_completion(&exit.completion);
Pavel Begunkovd56d9382021-03-06 11:02:13 +00009418 mutex_lock(&ctx->uring_lock);
9419 }
9420 mutex_unlock(&ctx->uring_lock);
Jens Axboe79ebeae2021-08-10 15:18:27 -06009421 spin_lock(&ctx->completion_lock);
9422 spin_unlock(&ctx->completion_lock);
Pavel Begunkovd56d9382021-03-06 11:02:13 +00009423
Jens Axboe85faa7b2020-04-09 18:14:00 -06009424 io_ring_ctx_free(ctx);
9425}
9426
Pavel Begunkov80c4cbd2021-03-25 18:32:43 +00009427/* Returns true if we found and killed one or more timeouts */
Pavel Begunkovc0724812021-10-04 20:02:54 +01009428static __cold bool io_kill_timeouts(struct io_ring_ctx *ctx,
9429 struct task_struct *tsk, bool cancel_all)
Pavel Begunkov80c4cbd2021-03-25 18:32:43 +00009430{
9431 struct io_kiocb *req, *tmp;
9432 int canceled = 0;
9433
Jens Axboe79ebeae2021-08-10 15:18:27 -06009434 spin_lock(&ctx->completion_lock);
9435 spin_lock_irq(&ctx->timeout_lock);
Pavel Begunkov80c4cbd2021-03-25 18:32:43 +00009436 list_for_each_entry_safe(req, tmp, &ctx->timeout_list, timeout.list) {
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009437 if (io_match_task(req, tsk, cancel_all)) {
Pavel Begunkov80c4cbd2021-03-25 18:32:43 +00009438 io_kill_timeout(req, -ECANCELED);
9439 canceled++;
9440 }
9441 }
Jens Axboe79ebeae2021-08-10 15:18:27 -06009442 spin_unlock_irq(&ctx->timeout_lock);
Pavel Begunkov51520422021-03-29 11:39:29 +01009443 if (canceled != 0)
9444 io_commit_cqring(ctx);
Jens Axboe79ebeae2021-08-10 15:18:27 -06009445 spin_unlock(&ctx->completion_lock);
Pavel Begunkov80c4cbd2021-03-25 18:32:43 +00009446 if (canceled != 0)
9447 io_cqring_ev_posted(ctx);
9448 return canceled != 0;
9449}
9450
Pavel Begunkovc0724812021-10-04 20:02:54 +01009451static __cold void io_ring_ctx_wait_and_kill(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -07009452{
Matthew Wilcox (Oracle)61cf9372021-03-08 14:16:16 +00009453 unsigned long index;
9454 struct creds *creds;
9455
Jens Axboe2b188cc2019-01-07 10:46:33 -07009456 mutex_lock(&ctx->uring_lock);
9457 percpu_ref_kill(&ctx->refs);
Pavel Begunkov634578f2020-12-06 22:22:44 +00009458 if (ctx->rings)
Pavel Begunkov6c2450a2021-02-23 12:40:22 +00009459 __io_cqring_overflow_flush(ctx, true);
Matthew Wilcox (Oracle)61cf9372021-03-08 14:16:16 +00009460 xa_for_each(&ctx->personalities, index, creds)
9461 io_unregister_personality(ctx, index);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009462 mutex_unlock(&ctx->uring_lock);
9463
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009464 io_kill_timeouts(ctx, NULL, true);
9465 io_poll_remove_all(ctx, NULL, true);
Jens Axboe561fb042019-10-24 07:25:42 -06009466
Jens Axboe15dff282019-11-13 09:09:23 -07009467 /* if we failed setting up the ctx, we might not have any rings */
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03009468 io_iopoll_try_reap_events(ctx);
Jens Axboe309fc032020-07-10 09:13:34 -06009469
Jens Axboe85faa7b2020-04-09 18:14:00 -06009470 INIT_WORK(&ctx->exit_work, io_ring_exit_work);
Jens Axboefc666772020-08-19 11:10:51 -06009471 /*
9472 * Use system_unbound_wq to avoid spawning tons of event kworkers
9473 * if we're exiting a ton of rings at the same time. It just adds
9474 * noise and overhead, there's no discernable change in runtime
9475 * over using system_wq.
9476 */
9477 queue_work(system_unbound_wq, &ctx->exit_work);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009478}
9479
9480static int io_uring_release(struct inode *inode, struct file *file)
9481{
9482 struct io_ring_ctx *ctx = file->private_data;
9483
9484 file->private_data = NULL;
9485 io_ring_ctx_wait_and_kill(ctx);
9486 return 0;
9487}
9488
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00009489struct io_task_cancel {
9490 struct task_struct *task;
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009491 bool all;
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00009492};
Pavel Begunkov67c4d9e2020-06-15 10:24:05 +03009493
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00009494static bool io_cancel_task_cb(struct io_wq_work *work, void *data)
Jens Axboeb711d4e2020-08-16 08:23:05 -07009495{
Pavel Begunkov9a472ef2020-11-05 22:31:37 +00009496 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00009497 struct io_task_cancel *cancel = data;
Pavel Begunkov9a472ef2020-11-05 22:31:37 +00009498 bool ret;
9499
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009500 if (!cancel->all && (req->flags & REQ_F_LINK_TIMEOUT)) {
Pavel Begunkov9a472ef2020-11-05 22:31:37 +00009501 struct io_ring_ctx *ctx = req->ctx;
9502
9503 /* protect against races with linked timeouts */
Jens Axboe79ebeae2021-08-10 15:18:27 -06009504 spin_lock(&ctx->completion_lock);
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009505 ret = io_match_task(req, cancel->task, cancel->all);
Jens Axboe79ebeae2021-08-10 15:18:27 -06009506 spin_unlock(&ctx->completion_lock);
Pavel Begunkov9a472ef2020-11-05 22:31:37 +00009507 } else {
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009508 ret = io_match_task(req, cancel->task, cancel->all);
Pavel Begunkov9a472ef2020-11-05 22:31:37 +00009509 }
9510 return ret;
Jens Axboeb711d4e2020-08-16 08:23:05 -07009511}
9512
Pavel Begunkovc0724812021-10-04 20:02:54 +01009513static __cold bool io_cancel_defer_files(struct io_ring_ctx *ctx,
9514 struct task_struct *task,
9515 bool cancel_all)
Pavel Begunkovb7ddce32020-09-06 00:45:14 +03009516{
Pavel Begunkove1915f72021-03-11 23:29:35 +00009517 struct io_defer_entry *de;
Pavel Begunkovb7ddce32020-09-06 00:45:14 +03009518 LIST_HEAD(list);
9519
Jens Axboe79ebeae2021-08-10 15:18:27 -06009520 spin_lock(&ctx->completion_lock);
Pavel Begunkovb7ddce32020-09-06 00:45:14 +03009521 list_for_each_entry_reverse(de, &ctx->defer_list, list) {
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009522 if (io_match_task(de->req, task, cancel_all)) {
Pavel Begunkovb7ddce32020-09-06 00:45:14 +03009523 list_cut_position(&list, &ctx->defer_list, &de->list);
9524 break;
9525 }
9526 }
Jens Axboe79ebeae2021-08-10 15:18:27 -06009527 spin_unlock(&ctx->completion_lock);
Pavel Begunkove1915f72021-03-11 23:29:35 +00009528 if (list_empty(&list))
9529 return false;
Pavel Begunkovb7ddce32020-09-06 00:45:14 +03009530
9531 while (!list_empty(&list)) {
9532 de = list_first_entry(&list, struct io_defer_entry, list);
9533 list_del_init(&de->list);
Pavel Begunkovf41db2732021-02-28 22:35:12 +00009534 io_req_complete_failed(de->req, -ECANCELED);
Pavel Begunkovb7ddce32020-09-06 00:45:14 +03009535 kfree(de);
9536 }
Pavel Begunkove1915f72021-03-11 23:29:35 +00009537 return true;
Pavel Begunkovb7ddce32020-09-06 00:45:14 +03009538}
9539
Pavel Begunkovc0724812021-10-04 20:02:54 +01009540static __cold bool io_uring_try_cancel_iowq(struct io_ring_ctx *ctx)
Pavel Begunkov1b007642021-03-06 11:02:17 +00009541{
9542 struct io_tctx_node *node;
9543 enum io_wq_cancel cret;
9544 bool ret = false;
9545
9546 mutex_lock(&ctx->uring_lock);
9547 list_for_each_entry(node, &ctx->tctx_list, ctx_node) {
9548 struct io_uring_task *tctx = node->task->io_uring;
9549
9550 /*
9551 * io_wq will stay alive while we hold uring_lock, because it's
9552 * killed after ctx nodes, which requires to take the lock.
9553 */
9554 if (!tctx || !tctx->io_wq)
9555 continue;
9556 cret = io_wq_cancel_cb(tctx->io_wq, io_cancel_ctx_cb, ctx, true);
9557 ret |= (cret != IO_WQ_CANCEL_NOTFOUND);
9558 }
9559 mutex_unlock(&ctx->uring_lock);
9560
9561 return ret;
9562}
9563
Pavel Begunkovc0724812021-10-04 20:02:54 +01009564static __cold void io_uring_try_cancel_requests(struct io_ring_ctx *ctx,
9565 struct task_struct *task,
9566 bool cancel_all)
Pavel Begunkov9936c7c2021-02-04 13:51:56 +00009567{
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009568 struct io_task_cancel cancel = { .task = task, .all = cancel_all, };
Pavel Begunkov1b007642021-03-06 11:02:17 +00009569 struct io_uring_task *tctx = task ? task->io_uring : NULL;
Pavel Begunkov9936c7c2021-02-04 13:51:56 +00009570
9571 while (1) {
9572 enum io_wq_cancel cret;
9573 bool ret = false;
9574
Pavel Begunkov1b007642021-03-06 11:02:17 +00009575 if (!task) {
9576 ret |= io_uring_try_cancel_iowq(ctx);
9577 } else if (tctx && tctx->io_wq) {
9578 /*
9579 * Cancels requests of all rings, not only @ctx, but
9580 * it's fine as the task is in exit/exec.
9581 */
Jens Axboe5aa75ed2021-02-16 12:56:50 -07009582 cret = io_wq_cancel_cb(tctx->io_wq, io_cancel_task_cb,
Pavel Begunkov9936c7c2021-02-04 13:51:56 +00009583 &cancel, true);
9584 ret |= (cret != IO_WQ_CANCEL_NOTFOUND);
9585 }
9586
9587 /* SQPOLL thread does its own polling */
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009588 if ((!(ctx->flags & IORING_SETUP_SQPOLL) && cancel_all) ||
Jens Axboed052d1d2021-03-11 10:49:20 -07009589 (ctx->sq_data && ctx->sq_data->thread == current)) {
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01009590 while (!wq_list_empty(&ctx->iopoll_list)) {
Pavel Begunkov9936c7c2021-02-04 13:51:56 +00009591 io_iopoll_try_reap_events(ctx);
9592 ret = true;
9593 }
9594 }
9595
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009596 ret |= io_cancel_defer_files(ctx, task, cancel_all);
9597 ret |= io_poll_remove_all(ctx, task, cancel_all);
9598 ret |= io_kill_timeouts(ctx, task, cancel_all);
Pavel Begunkove5dc4802021-06-26 21:40:46 +01009599 if (task)
9600 ret |= io_run_task_work();
Pavel Begunkov9936c7c2021-02-04 13:51:56 +00009601 if (!ret)
9602 break;
9603 cond_resched();
9604 }
9605}
9606
Pavel Begunkoveef51da2021-06-14 02:36:15 +01009607static int __io_uring_add_tctx_node(struct io_ring_ctx *ctx)
Jens Axboe0f212202020-09-13 13:09:39 -06009608{
Matthew Wilcox (Oracle)236434c2020-10-09 13:49:52 +01009609 struct io_uring_task *tctx = current->io_uring;
Pavel Begunkov13bf43f2021-03-06 11:02:12 +00009610 struct io_tctx_node *node;
Pavel Begunkova528b042020-12-21 18:34:04 +00009611 int ret;
Matthew Wilcox (Oracle)236434c2020-10-09 13:49:52 +01009612
9613 if (unlikely(!tctx)) {
Jens Axboe5aa75ed2021-02-16 12:56:50 -07009614 ret = io_uring_alloc_task_context(current, ctx);
Jens Axboe0f212202020-09-13 13:09:39 -06009615 if (unlikely(ret))
9616 return ret;
Matthew Wilcox (Oracle)236434c2020-10-09 13:49:52 +01009617 tctx = current->io_uring;
Jens Axboe0f212202020-09-13 13:09:39 -06009618 }
Pavel Begunkovcf27f3b2021-03-19 17:22:31 +00009619 if (!xa_load(&tctx->xa, (unsigned long)ctx)) {
9620 node = kmalloc(sizeof(*node), GFP_KERNEL);
9621 if (!node)
9622 return -ENOMEM;
9623 node->ctx = ctx;
9624 node->task = current;
Jens Axboe0f212202020-09-13 13:09:39 -06009625
Pavel Begunkovcf27f3b2021-03-19 17:22:31 +00009626 ret = xa_err(xa_store(&tctx->xa, (unsigned long)ctx,
9627 node, GFP_KERNEL));
9628 if (ret) {
9629 kfree(node);
9630 return ret;
Jens Axboe0f212202020-09-13 13:09:39 -06009631 }
Pavel Begunkovcf27f3b2021-03-19 17:22:31 +00009632
9633 mutex_lock(&ctx->uring_lock);
9634 list_add(&node->ctx_node, &ctx->tctx_list);
9635 mutex_unlock(&ctx->uring_lock);
Jens Axboe0f212202020-09-13 13:09:39 -06009636 }
Pavel Begunkovcf27f3b2021-03-19 17:22:31 +00009637 tctx->last = ctx;
Jens Axboe0f212202020-09-13 13:09:39 -06009638 return 0;
9639}
9640
9641/*
Pavel Begunkovcf27f3b2021-03-19 17:22:31 +00009642 * Note that this task has used io_uring. We use it for cancelation purposes.
9643 */
Pavel Begunkoveef51da2021-06-14 02:36:15 +01009644static inline int io_uring_add_tctx_node(struct io_ring_ctx *ctx)
Pavel Begunkovcf27f3b2021-03-19 17:22:31 +00009645{
9646 struct io_uring_task *tctx = current->io_uring;
9647
9648 if (likely(tctx && tctx->last == ctx))
9649 return 0;
Pavel Begunkoveef51da2021-06-14 02:36:15 +01009650 return __io_uring_add_tctx_node(ctx);
Pavel Begunkovcf27f3b2021-03-19 17:22:31 +00009651}
9652
9653/*
Jens Axboe0f212202020-09-13 13:09:39 -06009654 * Remove this io_uring_file -> task mapping.
9655 */
Pavel Begunkovc0724812021-10-04 20:02:54 +01009656static __cold void io_uring_del_tctx_node(unsigned long index)
Jens Axboe0f212202020-09-13 13:09:39 -06009657{
9658 struct io_uring_task *tctx = current->io_uring;
Pavel Begunkov13bf43f2021-03-06 11:02:12 +00009659 struct io_tctx_node *node;
Pavel Begunkov29412672021-03-06 11:02:11 +00009660
Pavel Begunkoveebd2e32021-03-06 11:02:14 +00009661 if (!tctx)
9662 return;
Pavel Begunkov13bf43f2021-03-06 11:02:12 +00009663 node = xa_erase(&tctx->xa, index);
9664 if (!node)
Pavel Begunkov29412672021-03-06 11:02:11 +00009665 return;
Jens Axboe0f212202020-09-13 13:09:39 -06009666
Pavel Begunkov13bf43f2021-03-06 11:02:12 +00009667 WARN_ON_ONCE(current != node->task);
9668 WARN_ON_ONCE(list_empty(&node->ctx_node));
9669
9670 mutex_lock(&node->ctx->uring_lock);
9671 list_del(&node->ctx_node);
9672 mutex_unlock(&node->ctx->uring_lock);
9673
Pavel Begunkovbaf186c2021-03-06 11:02:15 +00009674 if (tctx->last == node->ctx)
Jens Axboe0f212202020-09-13 13:09:39 -06009675 tctx->last = NULL;
Pavel Begunkov13bf43f2021-03-06 11:02:12 +00009676 kfree(node);
Jens Axboe0f212202020-09-13 13:09:39 -06009677}
9678
Pavel Begunkovc0724812021-10-04 20:02:54 +01009679static __cold void io_uring_clean_tctx(struct io_uring_task *tctx)
Pavel Begunkovde7f1d92021-01-04 20:43:29 +00009680{
Pavel Begunkovba5ef6d2021-05-20 13:21:20 +01009681 struct io_wq *wq = tctx->io_wq;
Pavel Begunkov13bf43f2021-03-06 11:02:12 +00009682 struct io_tctx_node *node;
Pavel Begunkovde7f1d92021-01-04 20:43:29 +00009683 unsigned long index;
9684
Jens Axboe8bab4c02021-09-24 07:12:27 -06009685 xa_for_each(&tctx->xa, index, node) {
Pavel Begunkoveef51da2021-06-14 02:36:15 +01009686 io_uring_del_tctx_node(index);
Jens Axboe8bab4c02021-09-24 07:12:27 -06009687 cond_resched();
9688 }
Marco Elverb16ef422021-05-27 11:25:48 +02009689 if (wq) {
9690 /*
9691 * Must be after io_uring_del_task_file() (removes nodes under
9692 * uring_lock) to avoid race with io_uring_try_cancel_iowq().
9693 */
Pavel Begunkovba5ef6d2021-05-20 13:21:20 +01009694 io_wq_put_and_exit(wq);
Pavel Begunkovdadebc32021-08-23 13:30:44 +01009695 tctx->io_wq = NULL;
Marco Elverb16ef422021-05-27 11:25:48 +02009696 }
Pavel Begunkovde7f1d92021-01-04 20:43:29 +00009697}
9698
Pavel Begunkov3f48cf12021-04-11 01:46:27 +01009699static s64 tctx_inflight(struct io_uring_task *tctx, bool tracked)
Pavel Begunkov521d6a72021-03-11 23:29:38 +00009700{
Pavel Begunkov3f48cf12021-04-11 01:46:27 +01009701 if (tracked)
9702 return atomic_read(&tctx->inflight_tracked);
Pavel Begunkov521d6a72021-03-11 23:29:38 +00009703 return percpu_counter_sum(&tctx->inflight);
9704}
9705
Pavel Begunkovc0724812021-10-04 20:02:54 +01009706static __cold void io_uring_drop_tctx_refs(struct task_struct *task)
Pavel Begunkov09899b12021-06-14 02:36:22 +01009707{
9708 struct io_uring_task *tctx = task->io_uring;
9709 unsigned int refs = tctx->cached_refs;
9710
Pavel Begunkove9dbe222021-08-09 13:04:20 +01009711 if (refs) {
9712 tctx->cached_refs = 0;
9713 percpu_counter_sub(&tctx->inflight, refs);
9714 put_task_struct_many(task, refs);
9715 }
Pavel Begunkov09899b12021-06-14 02:36:22 +01009716}
9717
Pavel Begunkov78cc6872021-06-14 02:36:23 +01009718/*
9719 * Find any io_uring ctx that this task has registered or done IO on, and cancel
9720 * requests. @sqd should be not-null IIF it's an SQPOLL thread cancellation.
9721 */
Pavel Begunkovc0724812021-10-04 20:02:54 +01009722static __cold void io_uring_cancel_generic(bool cancel_all,
9723 struct io_sq_data *sqd)
Pavel Begunkov0e9ddb32021-02-07 22:34:26 +00009724{
Pavel Begunkov521d6a72021-03-11 23:29:38 +00009725 struct io_uring_task *tctx = current->io_uring;
Pavel Begunkov734551d2021-04-18 14:52:09 +01009726 struct io_ring_ctx *ctx;
Jens Axboefdaf0832020-10-30 09:37:30 -06009727 s64 inflight;
Pavel Begunkov0e9ddb32021-02-07 22:34:26 +00009728 DEFINE_WAIT(wait);
Jens Axboefdaf0832020-10-30 09:37:30 -06009729
Pavel Begunkov78cc6872021-06-14 02:36:23 +01009730 WARN_ON_ONCE(sqd && sqd->thread != current);
9731
Palash Oswal6d042ff2021-04-27 18:21:49 +05309732 if (!current->io_uring)
9733 return;
Pavel Begunkov17a91052021-05-23 15:48:39 +01009734 if (tctx->io_wq)
9735 io_wq_exit_start(tctx->io_wq);
9736
Jens Axboefdaf0832020-10-30 09:37:30 -06009737 atomic_inc(&tctx->in_idle);
Jens Axboed8a6df12020-10-15 16:24:45 -06009738 do {
Pavel Begunkove9dbe222021-08-09 13:04:20 +01009739 io_uring_drop_tctx_refs(current);
Jens Axboe0f212202020-09-13 13:09:39 -06009740 /* read completions before cancelations */
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009741 inflight = tctx_inflight(tctx, !cancel_all);
Jens Axboed8a6df12020-10-15 16:24:45 -06009742 if (!inflight)
9743 break;
Jens Axboe0f212202020-09-13 13:09:39 -06009744
Pavel Begunkov78cc6872021-06-14 02:36:23 +01009745 if (!sqd) {
9746 struct io_tctx_node *node;
9747 unsigned long index;
9748
9749 xa_for_each(&tctx->xa, index, node) {
9750 /* sqpoll task will cancel all its requests */
9751 if (node->ctx->sq_data)
9752 continue;
9753 io_uring_try_cancel_requests(node->ctx, current,
9754 cancel_all);
9755 }
9756 } else {
9757 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list)
9758 io_uring_try_cancel_requests(ctx, current,
9759 cancel_all);
9760 }
9761
9762 prepare_to_wait(&tctx->wait, &wait, TASK_UNINTERRUPTIBLE);
Pavel Begunkove9dbe222021-08-09 13:04:20 +01009763 io_uring_drop_tctx_refs(current);
Jens Axboe0f212202020-09-13 13:09:39 -06009764 /*
Pavel Begunkova1bb3cd2021-01-26 15:28:26 +00009765 * If we've seen completions, retry without waiting. This
9766 * avoids a race where a completion comes in before we did
9767 * prepare_to_wait().
Jens Axboe0f212202020-09-13 13:09:39 -06009768 */
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009769 if (inflight == tctx_inflight(tctx, !cancel_all))
Pavel Begunkova1bb3cd2021-01-26 15:28:26 +00009770 schedule();
Pavel Begunkovf57555e2020-12-20 13:21:44 +00009771 finish_wait(&tctx->wait, &wait);
Jens Axboed8a6df12020-10-15 16:24:45 -06009772 } while (1);
Jens Axboefdaf0832020-10-30 09:37:30 -06009773 atomic_dec(&tctx->in_idle);
Pavel Begunkovde7f1d92021-01-04 20:43:29 +00009774
Pavel Begunkov8452d4a2021-02-27 11:16:46 +00009775 io_uring_clean_tctx(tctx);
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009776 if (cancel_all) {
Pavel Begunkov3f48cf12021-04-11 01:46:27 +01009777 /* for exec all current's requests should be gone, kill tctx */
9778 __io_uring_free(current);
9779 }
Pavel Begunkov44e728b2020-06-15 10:24:04 +03009780}
9781
Hao Xuf552a272021-08-12 12:14:35 +08009782void __io_uring_cancel(bool cancel_all)
Pavel Begunkov78cc6872021-06-14 02:36:23 +01009783{
Hao Xuf552a272021-08-12 12:14:35 +08009784 io_uring_cancel_generic(cancel_all, NULL);
Pavel Begunkov78cc6872021-06-14 02:36:23 +01009785}
9786
Roman Penyaev6c5c2402019-11-28 12:53:22 +01009787static void *io_uring_validate_mmap_request(struct file *file,
9788 loff_t pgoff, size_t sz)
Jens Axboe2b188cc2019-01-07 10:46:33 -07009789{
Jens Axboe2b188cc2019-01-07 10:46:33 -07009790 struct io_ring_ctx *ctx = file->private_data;
Roman Penyaev6c5c2402019-11-28 12:53:22 +01009791 loff_t offset = pgoff << PAGE_SHIFT;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009792 struct page *page;
9793 void *ptr;
9794
9795 switch (offset) {
9796 case IORING_OFF_SQ_RING:
Hristo Venev75b28af2019-08-26 17:23:46 +00009797 case IORING_OFF_CQ_RING:
9798 ptr = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009799 break;
9800 case IORING_OFF_SQES:
9801 ptr = ctx->sq_sqes;
9802 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009803 default:
Roman Penyaev6c5c2402019-11-28 12:53:22 +01009804 return ERR_PTR(-EINVAL);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009805 }
9806
9807 page = virt_to_head_page(ptr);
Matthew Wilcox (Oracle)a50b8542019-09-23 15:34:25 -07009808 if (sz > page_size(page))
Roman Penyaev6c5c2402019-11-28 12:53:22 +01009809 return ERR_PTR(-EINVAL);
9810
9811 return ptr;
9812}
9813
9814#ifdef CONFIG_MMU
9815
Pavel Begunkovc0724812021-10-04 20:02:54 +01009816static __cold int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
Roman Penyaev6c5c2402019-11-28 12:53:22 +01009817{
9818 size_t sz = vma->vm_end - vma->vm_start;
9819 unsigned long pfn;
9820 void *ptr;
9821
9822 ptr = io_uring_validate_mmap_request(file, vma->vm_pgoff, sz);
9823 if (IS_ERR(ptr))
9824 return PTR_ERR(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009825
9826 pfn = virt_to_phys(ptr) >> PAGE_SHIFT;
9827 return remap_pfn_range(vma, vma->vm_start, pfn, sz, vma->vm_page_prot);
9828}
9829
Roman Penyaev6c5c2402019-11-28 12:53:22 +01009830#else /* !CONFIG_MMU */
9831
9832static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
9833{
9834 return vma->vm_flags & (VM_SHARED | VM_MAYSHARE) ? 0 : -EINVAL;
9835}
9836
9837static unsigned int io_uring_nommu_mmap_capabilities(struct file *file)
9838{
9839 return NOMMU_MAP_DIRECT | NOMMU_MAP_READ | NOMMU_MAP_WRITE;
9840}
9841
9842static unsigned long io_uring_nommu_get_unmapped_area(struct file *file,
9843 unsigned long addr, unsigned long len,
9844 unsigned long pgoff, unsigned long flags)
9845{
9846 void *ptr;
9847
9848 ptr = io_uring_validate_mmap_request(file, pgoff, len);
9849 if (IS_ERR(ptr))
9850 return PTR_ERR(ptr);
9851
9852 return (unsigned long) ptr;
9853}
9854
9855#endif /* !CONFIG_MMU */
9856
Pavel Begunkovd9d05212021-01-08 20:57:25 +00009857static int io_sqpoll_wait_sq(struct io_ring_ctx *ctx)
Jens Axboe90554202020-09-03 12:12:41 -06009858{
9859 DEFINE_WAIT(wait);
9860
9861 do {
9862 if (!io_sqring_full(ctx))
9863 break;
Jens Axboe90554202020-09-03 12:12:41 -06009864 prepare_to_wait(&ctx->sqo_sq_wait, &wait, TASK_INTERRUPTIBLE);
9865
9866 if (!io_sqring_full(ctx))
9867 break;
Jens Axboe90554202020-09-03 12:12:41 -06009868 schedule();
9869 } while (!signal_pending(current));
9870
9871 finish_wait(&ctx->sqo_sq_wait, &wait);
Yang Li51993282021-03-09 14:30:41 +08009872 return 0;
Jens Axboe90554202020-09-03 12:12:41 -06009873}
9874
Hao Xuc73ebb62020-11-03 10:54:37 +08009875static int io_get_ext_arg(unsigned flags, const void __user *argp, size_t *argsz,
9876 struct __kernel_timespec __user **ts,
9877 const sigset_t __user **sig)
9878{
9879 struct io_uring_getevents_arg arg;
9880
9881 /*
9882 * If EXT_ARG isn't set, then we have no timespec and the argp pointer
9883 * is just a pointer to the sigset_t.
9884 */
9885 if (!(flags & IORING_ENTER_EXT_ARG)) {
9886 *sig = (const sigset_t __user *) argp;
9887 *ts = NULL;
9888 return 0;
9889 }
9890
9891 /*
9892 * EXT_ARG is set - ensure we agree on the size of it and copy in our
9893 * timespec and sigset_t pointers if good.
9894 */
9895 if (*argsz != sizeof(arg))
9896 return -EINVAL;
9897 if (copy_from_user(&arg, argp, sizeof(arg)))
9898 return -EFAULT;
9899 *sig = u64_to_user_ptr(arg.sigmask);
9900 *argsz = arg.sigmask_sz;
9901 *ts = u64_to_user_ptr(arg.ts);
9902 return 0;
9903}
9904
Jens Axboe2b188cc2019-01-07 10:46:33 -07009905SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
Hao Xuc73ebb62020-11-03 10:54:37 +08009906 u32, min_complete, u32, flags, const void __user *, argp,
9907 size_t, argsz)
Jens Axboe2b188cc2019-01-07 10:46:33 -07009908{
9909 struct io_ring_ctx *ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009910 int submitted = 0;
9911 struct fd f;
Pavel Begunkov33f993d2021-03-19 17:22:30 +00009912 long ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009913
Jens Axboe4c6e2772020-07-01 11:29:10 -06009914 io_run_task_work();
Jens Axboeb41e9852020-02-17 09:52:41 -07009915
Pavel Begunkov33f993d2021-03-19 17:22:30 +00009916 if (unlikely(flags & ~(IORING_ENTER_GETEVENTS | IORING_ENTER_SQ_WAKEUP |
9917 IORING_ENTER_SQ_WAIT | IORING_ENTER_EXT_ARG)))
Jens Axboe2b188cc2019-01-07 10:46:33 -07009918 return -EINVAL;
9919
9920 f = fdget(fd);
Pavel Begunkov33f993d2021-03-19 17:22:30 +00009921 if (unlikely(!f.file))
Jens Axboe2b188cc2019-01-07 10:46:33 -07009922 return -EBADF;
9923
9924 ret = -EOPNOTSUPP;
Pavel Begunkov33f993d2021-03-19 17:22:30 +00009925 if (unlikely(f.file->f_op != &io_uring_fops))
Jens Axboe2b188cc2019-01-07 10:46:33 -07009926 goto out_fput;
9927
9928 ret = -ENXIO;
9929 ctx = f.file->private_data;
Pavel Begunkov33f993d2021-03-19 17:22:30 +00009930 if (unlikely(!percpu_ref_tryget(&ctx->refs)))
Jens Axboe2b188cc2019-01-07 10:46:33 -07009931 goto out_fput;
9932
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02009933 ret = -EBADFD;
Pavel Begunkov33f993d2021-03-19 17:22:30 +00009934 if (unlikely(ctx->flags & IORING_SETUP_R_DISABLED))
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02009935 goto out;
9936
Jens Axboe6c271ce2019-01-10 11:22:30 -07009937 /*
9938 * For SQ polling, the thread will do all submissions and completions.
9939 * Just return the requested submit count, and wake the thread if
9940 * we were asked to.
9941 */
Jens Axboeb2a9ead2019-09-12 14:19:16 -06009942 ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07009943 if (ctx->flags & IORING_SETUP_SQPOLL) {
Pavel Begunkov90f67362021-08-09 20:18:12 +01009944 io_cqring_overflow_flush(ctx);
Pavel Begunkov89448c42020-12-17 00:24:39 +00009945
Jens Axboe21f96522021-08-14 09:04:40 -06009946 if (unlikely(ctx->sq_data->thread == NULL)) {
9947 ret = -EOWNERDEAD;
Stefan Metzmacher04147482021-03-07 11:54:29 +01009948 goto out;
Jens Axboe21f96522021-08-14 09:04:40 -06009949 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07009950 if (flags & IORING_ENTER_SQ_WAKEUP)
Jens Axboe534ca6d2020-09-02 13:52:19 -06009951 wake_up(&ctx->sq_data->wait);
Pavel Begunkovd9d05212021-01-08 20:57:25 +00009952 if (flags & IORING_ENTER_SQ_WAIT) {
9953 ret = io_sqpoll_wait_sq(ctx);
9954 if (ret)
9955 goto out;
9956 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07009957 submitted = to_submit;
Jens Axboeb2a9ead2019-09-12 14:19:16 -06009958 } else if (to_submit) {
Pavel Begunkoveef51da2021-06-14 02:36:15 +01009959 ret = io_uring_add_tctx_node(ctx);
Jens Axboe0f212202020-09-13 13:09:39 -06009960 if (unlikely(ret))
9961 goto out;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009962 mutex_lock(&ctx->uring_lock);
Jens Axboe0f212202020-09-13 13:09:39 -06009963 submitted = io_submit_sqes(ctx, to_submit);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009964 mutex_unlock(&ctx->uring_lock);
Pavel Begunkov7c504e652019-12-18 19:53:45 +03009965
9966 if (submitted != to_submit)
9967 goto out;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009968 }
9969 if (flags & IORING_ENTER_GETEVENTS) {
Hao Xuc73ebb62020-11-03 10:54:37 +08009970 const sigset_t __user *sig;
9971 struct __kernel_timespec __user *ts;
9972
9973 ret = io_get_ext_arg(flags, argp, &argsz, &ts, &sig);
9974 if (unlikely(ret))
9975 goto out;
9976
Jens Axboe2b188cc2019-01-07 10:46:33 -07009977 min_complete = min(min_complete, ctx->cq_entries);
9978
Xiaoguang Wang32b22442020-03-11 09:26:09 +08009979 /*
9980 * When SETUP_IOPOLL and SETUP_SQPOLL are both enabled, user
9981 * space applications don't need to do io completion events
9982 * polling again, they can rely on io_sq_thread to do polling
9983 * work, which can reduce cpu usage and uring_lock contention.
9984 */
9985 if (ctx->flags & IORING_SETUP_IOPOLL &&
9986 !(ctx->flags & IORING_SETUP_SQPOLL)) {
Pavel Begunkov7668b922020-07-07 16:36:21 +03009987 ret = io_iopoll_check(ctx, min_complete);
Jens Axboedef596e2019-01-09 08:59:42 -07009988 } else {
Hao Xuc73ebb62020-11-03 10:54:37 +08009989 ret = io_cqring_wait(ctx, min_complete, sig, argsz, ts);
Jens Axboedef596e2019-01-09 08:59:42 -07009990 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07009991 }
9992
Pavel Begunkov7c504e652019-12-18 19:53:45 +03009993out:
Pavel Begunkov6805b322019-10-08 02:18:42 +03009994 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009995out_fput:
9996 fdput(f);
9997 return submitted ? submitted : ret;
9998}
9999
Tobias Klauserbebdb652020-02-26 18:38:32 +010010000#ifdef CONFIG_PROC_FS
Pavel Begunkovc0724812021-10-04 20:02:54 +010010001static __cold int io_uring_show_cred(struct seq_file *m, unsigned int id,
Matthew Wilcox (Oracle)61cf9372021-03-08 14:16:16 +000010002 const struct cred *cred)
Jens Axboe87ce9552020-01-30 08:25:34 -070010003{
Jens Axboe87ce9552020-01-30 08:25:34 -070010004 struct user_namespace *uns = seq_user_ns(m);
10005 struct group_info *gi;
10006 kernel_cap_t cap;
10007 unsigned __capi;
10008 int g;
10009
10010 seq_printf(m, "%5d\n", id);
10011 seq_put_decimal_ull(m, "\tUid:\t", from_kuid_munged(uns, cred->uid));
10012 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->euid));
10013 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->suid));
10014 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->fsuid));
10015 seq_put_decimal_ull(m, "\n\tGid:\t", from_kgid_munged(uns, cred->gid));
10016 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->egid));
10017 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->sgid));
10018 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->fsgid));
10019 seq_puts(m, "\n\tGroups:\t");
10020 gi = cred->group_info;
10021 for (g = 0; g < gi->ngroups; g++) {
10022 seq_put_decimal_ull(m, g ? " " : "",
10023 from_kgid_munged(uns, gi->gid[g]));
10024 }
10025 seq_puts(m, "\n\tCapEff:\t");
10026 cap = cred->cap_effective;
10027 CAP_FOR_EACH_U32(__capi)
10028 seq_put_hex_ll(m, NULL, cap.cap[CAP_LAST_U32 - __capi], 8);
10029 seq_putc(m, '\n');
10030 return 0;
10031}
10032
Pavel Begunkovc0724812021-10-04 20:02:54 +010010033static __cold void __io_uring_show_fdinfo(struct io_ring_ctx *ctx,
10034 struct seq_file *m)
Jens Axboe87ce9552020-01-30 08:25:34 -070010035{
Joseph Qidbbe9c62020-09-29 09:01:22 -060010036 struct io_sq_data *sq = NULL;
Hao Xu83f84352021-09-13 21:08:54 +080010037 struct io_overflow_cqe *ocqe;
10038 struct io_rings *r = ctx->rings;
10039 unsigned int sq_mask = ctx->sq_entries - 1, cq_mask = ctx->cq_entries - 1;
10040 unsigned int cached_sq_head = ctx->cached_sq_head;
10041 unsigned int cached_cq_tail = ctx->cached_cq_tail;
10042 unsigned int sq_head = READ_ONCE(r->sq.head);
10043 unsigned int sq_tail = READ_ONCE(r->sq.tail);
10044 unsigned int cq_head = READ_ONCE(r->cq.head);
10045 unsigned int cq_tail = READ_ONCE(r->cq.tail);
Jens Axboefad8e0d2020-09-28 08:57:48 -060010046 bool has_lock;
Hao Xu83f84352021-09-13 21:08:54 +080010047 unsigned int i;
10048
10049 /*
10050 * we may get imprecise sqe and cqe info if uring is actively running
10051 * since we get cached_sq_head and cached_cq_tail without uring_lock
10052 * and sq_tail and cq_head are changed by userspace. But it's ok since
10053 * we usually use these info when it is stuck.
10054 */
10055 seq_printf(m, "SqHead:\t%u\n", sq_head & sq_mask);
10056 seq_printf(m, "SqTail:\t%u\n", sq_tail & sq_mask);
10057 seq_printf(m, "CachedSqHead:\t%u\n", cached_sq_head & sq_mask);
10058 seq_printf(m, "CqHead:\t%u\n", cq_head & cq_mask);
10059 seq_printf(m, "CqTail:\t%u\n", cq_tail & cq_mask);
10060 seq_printf(m, "CachedCqTail:\t%u\n", cached_cq_tail & cq_mask);
10061 seq_printf(m, "SQEs:\t%u\n", sq_tail - cached_sq_head);
10062 for (i = cached_sq_head; i < sq_tail; i++) {
10063 unsigned int sq_idx = READ_ONCE(ctx->sq_array[i & sq_mask]);
10064
10065 if (likely(sq_idx <= sq_mask)) {
10066 struct io_uring_sqe *sqe = &ctx->sq_sqes[sq_idx];
10067
10068 seq_printf(m, "%5u: opcode:%d, fd:%d, flags:%x, user_data:%llu\n",
10069 sq_idx, sqe->opcode, sqe->fd, sqe->flags, sqe->user_data);
10070 }
10071 }
10072 seq_printf(m, "CQEs:\t%u\n", cached_cq_tail - cq_head);
10073 for (i = cq_head; i < cached_cq_tail; i++) {
10074 struct io_uring_cqe *cqe = &r->cqes[i & cq_mask];
10075
10076 seq_printf(m, "%5u: user_data:%llu, res:%d, flag:%x\n",
10077 i & cq_mask, cqe->user_data, cqe->res, cqe->flags);
10078 }
Jens Axboe87ce9552020-01-30 08:25:34 -070010079
Jens Axboefad8e0d2020-09-28 08:57:48 -060010080 /*
10081 * Avoid ABBA deadlock between the seq lock and the io_uring mutex,
10082 * since fdinfo case grabs it in the opposite direction of normal use
10083 * cases. If we fail to get the lock, we just don't iterate any
10084 * structures that could be going away outside the io_uring mutex.
10085 */
10086 has_lock = mutex_trylock(&ctx->uring_lock);
10087
Jens Axboe5f3f26f2021-02-25 10:17:46 -070010088 if (has_lock && (ctx->flags & IORING_SETUP_SQPOLL)) {
Joseph Qidbbe9c62020-09-29 09:01:22 -060010089 sq = ctx->sq_data;
Jens Axboe5f3f26f2021-02-25 10:17:46 -070010090 if (!sq->thread)
10091 sq = NULL;
10092 }
Joseph Qidbbe9c62020-09-29 09:01:22 -060010093
10094 seq_printf(m, "SqThread:\t%d\n", sq ? task_pid_nr(sq->thread) : -1);
10095 seq_printf(m, "SqThreadCpu:\t%d\n", sq ? task_cpu(sq->thread) : -1);
Jens Axboe87ce9552020-01-30 08:25:34 -070010096 seq_printf(m, "UserFiles:\t%u\n", ctx->nr_user_files);
Jens Axboefad8e0d2020-09-28 08:57:48 -060010097 for (i = 0; has_lock && i < ctx->nr_user_files; i++) {
Jens Axboe7b29f922021-03-12 08:30:14 -070010098 struct file *f = io_file_from_index(ctx, i);
Jens Axboe87ce9552020-01-30 08:25:34 -070010099
Jens Axboe87ce9552020-01-30 08:25:34 -070010100 if (f)
10101 seq_printf(m, "%5u: %s\n", i, file_dentry(f)->d_iname);
10102 else
10103 seq_printf(m, "%5u: <none>\n", i);
10104 }
10105 seq_printf(m, "UserBufs:\t%u\n", ctx->nr_user_bufs);
Jens Axboefad8e0d2020-09-28 08:57:48 -060010106 for (i = 0; has_lock && i < ctx->nr_user_bufs; i++) {
Pavel Begunkov41edf1a2021-04-25 14:32:23 +010010107 struct io_mapped_ubuf *buf = ctx->user_bufs[i];
Pavel Begunkov4751f532021-04-01 15:43:55 +010010108 unsigned int len = buf->ubuf_end - buf->ubuf;
Jens Axboe87ce9552020-01-30 08:25:34 -070010109
Pavel Begunkov4751f532021-04-01 15:43:55 +010010110 seq_printf(m, "%5u: 0x%llx/%u\n", i, buf->ubuf, len);
Jens Axboe87ce9552020-01-30 08:25:34 -070010111 }
Matthew Wilcox (Oracle)61cf9372021-03-08 14:16:16 +000010112 if (has_lock && !xa_empty(&ctx->personalities)) {
10113 unsigned long index;
10114 const struct cred *cred;
10115
Jens Axboe87ce9552020-01-30 08:25:34 -070010116 seq_printf(m, "Personalities:\n");
Matthew Wilcox (Oracle)61cf9372021-03-08 14:16:16 +000010117 xa_for_each(&ctx->personalities, index, cred)
10118 io_uring_show_cred(m, index, cred);
Jens Axboe87ce9552020-01-30 08:25:34 -070010119 }
Hao Xu83f84352021-09-13 21:08:54 +080010120 if (has_lock)
10121 mutex_unlock(&ctx->uring_lock);
10122
10123 seq_puts(m, "PollList:\n");
Jens Axboe79ebeae2021-08-10 15:18:27 -060010124 spin_lock(&ctx->completion_lock);
Jens Axboed7718a92020-02-14 22:23:12 -070010125 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
10126 struct hlist_head *list = &ctx->cancel_hash[i];
10127 struct io_kiocb *req;
10128
10129 hlist_for_each_entry(req, list, hash_node)
10130 seq_printf(m, " op=%d, task_works=%d\n", req->opcode,
10131 req->task->task_works != NULL);
10132 }
Hao Xu83f84352021-09-13 21:08:54 +080010133
10134 seq_puts(m, "CqOverflowList:\n");
10135 list_for_each_entry(ocqe, &ctx->cq_overflow_list, list) {
10136 struct io_uring_cqe *cqe = &ocqe->cqe;
10137
10138 seq_printf(m, " user_data=%llu, res=%d, flags=%x\n",
10139 cqe->user_data, cqe->res, cqe->flags);
10140
10141 }
10142
Jens Axboe79ebeae2021-08-10 15:18:27 -060010143 spin_unlock(&ctx->completion_lock);
Jens Axboe87ce9552020-01-30 08:25:34 -070010144}
10145
Pavel Begunkovc0724812021-10-04 20:02:54 +010010146static __cold void io_uring_show_fdinfo(struct seq_file *m, struct file *f)
Jens Axboe87ce9552020-01-30 08:25:34 -070010147{
10148 struct io_ring_ctx *ctx = f->private_data;
10149
10150 if (percpu_ref_tryget(&ctx->refs)) {
10151 __io_uring_show_fdinfo(ctx, m);
10152 percpu_ref_put(&ctx->refs);
10153 }
10154}
Tobias Klauserbebdb652020-02-26 18:38:32 +010010155#endif
Jens Axboe87ce9552020-01-30 08:25:34 -070010156
Jens Axboe2b188cc2019-01-07 10:46:33 -070010157static const struct file_operations io_uring_fops = {
10158 .release = io_uring_release,
10159 .mmap = io_uring_mmap,
Roman Penyaev6c5c2402019-11-28 12:53:22 +010010160#ifndef CONFIG_MMU
10161 .get_unmapped_area = io_uring_nommu_get_unmapped_area,
10162 .mmap_capabilities = io_uring_nommu_mmap_capabilities,
10163#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -070010164 .poll = io_uring_poll,
Tobias Klauserbebdb652020-02-26 18:38:32 +010010165#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -070010166 .show_fdinfo = io_uring_show_fdinfo,
Tobias Klauserbebdb652020-02-26 18:38:32 +010010167#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -070010168};
10169
Pavel Begunkovc0724812021-10-04 20:02:54 +010010170static __cold int io_allocate_scq_urings(struct io_ring_ctx *ctx,
10171 struct io_uring_params *p)
Jens Axboe2b188cc2019-01-07 10:46:33 -070010172{
Hristo Venev75b28af2019-08-26 17:23:46 +000010173 struct io_rings *rings;
10174 size_t size, sq_array_offset;
Jens Axboe2b188cc2019-01-07 10:46:33 -070010175
Jens Axboebd740482020-08-05 12:58:23 -060010176 /* make sure these are sane, as we already accounted them */
10177 ctx->sq_entries = p->sq_entries;
10178 ctx->cq_entries = p->cq_entries;
10179
Hristo Venev75b28af2019-08-26 17:23:46 +000010180 size = rings_size(p->sq_entries, p->cq_entries, &sq_array_offset);
10181 if (size == SIZE_MAX)
10182 return -EOVERFLOW;
10183
10184 rings = io_mem_alloc(size);
10185 if (!rings)
Jens Axboe2b188cc2019-01-07 10:46:33 -070010186 return -ENOMEM;
10187
Hristo Venev75b28af2019-08-26 17:23:46 +000010188 ctx->rings = rings;
10189 ctx->sq_array = (u32 *)((char *)rings + sq_array_offset);
10190 rings->sq_ring_mask = p->sq_entries - 1;
10191 rings->cq_ring_mask = p->cq_entries - 1;
10192 rings->sq_ring_entries = p->sq_entries;
10193 rings->cq_ring_entries = p->cq_entries;
Jens Axboe2b188cc2019-01-07 10:46:33 -070010194
10195 size = array_size(sizeof(struct io_uring_sqe), p->sq_entries);
Jens Axboeeb065d32019-11-20 09:26:29 -070010196 if (size == SIZE_MAX) {
10197 io_mem_free(ctx->rings);
10198 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -070010199 return -EOVERFLOW;
Jens Axboeeb065d32019-11-20 09:26:29 -070010200 }
Jens Axboe2b188cc2019-01-07 10:46:33 -070010201
10202 ctx->sq_sqes = io_mem_alloc(size);
Jens Axboeeb065d32019-11-20 09:26:29 -070010203 if (!ctx->sq_sqes) {
10204 io_mem_free(ctx->rings);
10205 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -070010206 return -ENOMEM;
Jens Axboeeb065d32019-11-20 09:26:29 -070010207 }
Jens Axboe2b188cc2019-01-07 10:46:33 -070010208
Jens Axboe2b188cc2019-01-07 10:46:33 -070010209 return 0;
10210}
10211
Pavel Begunkov9faadcc2020-12-21 18:34:05 +000010212static int io_uring_install_fd(struct io_ring_ctx *ctx, struct file *file)
10213{
10214 int ret, fd;
10215
10216 fd = get_unused_fd_flags(O_RDWR | O_CLOEXEC);
10217 if (fd < 0)
10218 return fd;
10219
Pavel Begunkoveef51da2021-06-14 02:36:15 +010010220 ret = io_uring_add_tctx_node(ctx);
Pavel Begunkov9faadcc2020-12-21 18:34:05 +000010221 if (ret) {
10222 put_unused_fd(fd);
10223 return ret;
10224 }
10225 fd_install(fd, file);
10226 return fd;
10227}
10228
Jens Axboe2b188cc2019-01-07 10:46:33 -070010229/*
10230 * Allocate an anonymous fd, this is what constitutes the application
10231 * visible backing of an io_uring instance. The application mmaps this
10232 * fd to gain access to the SQ/CQ ring details. If UNIX sockets are enabled,
10233 * we have to tie this fd to a socket for file garbage collection purposes.
10234 */
Pavel Begunkov9faadcc2020-12-21 18:34:05 +000010235static struct file *io_uring_get_file(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -070010236{
10237 struct file *file;
Jens Axboe2b188cc2019-01-07 10:46:33 -070010238#if defined(CONFIG_UNIX)
Pavel Begunkov9faadcc2020-12-21 18:34:05 +000010239 int ret;
10240
Jens Axboe2b188cc2019-01-07 10:46:33 -070010241 ret = sock_create_kern(&init_net, PF_UNIX, SOCK_RAW, IPPROTO_IP,
10242 &ctx->ring_sock);
10243 if (ret)
Pavel Begunkov9faadcc2020-12-21 18:34:05 +000010244 return ERR_PTR(ret);
Jens Axboe2b188cc2019-01-07 10:46:33 -070010245#endif
10246
Jens Axboe2b188cc2019-01-07 10:46:33 -070010247 file = anon_inode_getfile("[io_uring]", &io_uring_fops, ctx,
10248 O_RDWR | O_CLOEXEC);
Pavel Begunkov9faadcc2020-12-21 18:34:05 +000010249#if defined(CONFIG_UNIX)
Jens Axboe2b188cc2019-01-07 10:46:33 -070010250 if (IS_ERR(file)) {
Pavel Begunkov9faadcc2020-12-21 18:34:05 +000010251 sock_release(ctx->ring_sock);
10252 ctx->ring_sock = NULL;
10253 } else {
10254 ctx->ring_sock->file = file;
Jens Axboe2b188cc2019-01-07 10:46:33 -070010255 }
Jens Axboe2b188cc2019-01-07 10:46:33 -070010256#endif
Pavel Begunkov9faadcc2020-12-21 18:34:05 +000010257 return file;
Jens Axboe2b188cc2019-01-07 10:46:33 -070010258}
10259
Pavel Begunkovc0724812021-10-04 20:02:54 +010010260static __cold int io_uring_create(unsigned entries, struct io_uring_params *p,
10261 struct io_uring_params __user *params)
Jens Axboe2b188cc2019-01-07 10:46:33 -070010262{
Jens Axboe2b188cc2019-01-07 10:46:33 -070010263 struct io_ring_ctx *ctx;
Pavel Begunkov9faadcc2020-12-21 18:34:05 +000010264 struct file *file;
Jens Axboe2b188cc2019-01-07 10:46:33 -070010265 int ret;
10266
Jens Axboe8110c1a2019-12-28 15:39:54 -070010267 if (!entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -070010268 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -070010269 if (entries > IORING_MAX_ENTRIES) {
10270 if (!(p->flags & IORING_SETUP_CLAMP))
10271 return -EINVAL;
10272 entries = IORING_MAX_ENTRIES;
10273 }
Jens Axboe2b188cc2019-01-07 10:46:33 -070010274
10275 /*
10276 * Use twice as many entries for the CQ ring. It's possible for the
10277 * application to drive a higher depth than the size of the SQ ring,
10278 * since the sqes are only used at submission time. This allows for
Jens Axboe33a107f2019-10-04 12:10:03 -060010279 * some flexibility in overcommitting a bit. If the application has
10280 * set IORING_SETUP_CQSIZE, it will have passed in the desired number
10281 * of CQ ring entries manually.
Jens Axboe2b188cc2019-01-07 10:46:33 -070010282 */
10283 p->sq_entries = roundup_pow_of_two(entries);
Jens Axboe33a107f2019-10-04 12:10:03 -060010284 if (p->flags & IORING_SETUP_CQSIZE) {
10285 /*
10286 * If IORING_SETUP_CQSIZE is set, we do the same roundup
10287 * to a power-of-two, if it isn't already. We do NOT impose
10288 * any cq vs sq ring sizing.
10289 */
Joseph Qieb2667b32020-11-24 15:03:03 +080010290 if (!p->cq_entries)
Jens Axboe33a107f2019-10-04 12:10:03 -060010291 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -070010292 if (p->cq_entries > IORING_MAX_CQ_ENTRIES) {
10293 if (!(p->flags & IORING_SETUP_CLAMP))
10294 return -EINVAL;
10295 p->cq_entries = IORING_MAX_CQ_ENTRIES;
10296 }
Joseph Qieb2667b32020-11-24 15:03:03 +080010297 p->cq_entries = roundup_pow_of_two(p->cq_entries);
10298 if (p->cq_entries < p->sq_entries)
10299 return -EINVAL;
Jens Axboe33a107f2019-10-04 12:10:03 -060010300 } else {
10301 p->cq_entries = 2 * p->sq_entries;
10302 }
Jens Axboe2b188cc2019-01-07 10:46:33 -070010303
Jens Axboe2b188cc2019-01-07 10:46:33 -070010304 ctx = io_ring_ctx_alloc(p);
Jens Axboe62e398b2021-02-21 16:19:37 -070010305 if (!ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -070010306 return -ENOMEM;
Jens Axboe2b188cc2019-01-07 10:46:33 -070010307 ctx->compat = in_compat_syscall();
Jens Axboe62e398b2021-02-21 16:19:37 -070010308 if (!capable(CAP_IPC_LOCK))
10309 ctx->user = get_uid(current_user());
Jens Axboe2aede0e2020-09-14 10:45:53 -060010310
10311 /*
10312 * This is just grabbed for accounting purposes. When a process exits,
10313 * the mm is exited and dropped before the files, hence we need to hang
10314 * on to this mm purely for the purposes of being able to unaccount
10315 * memory (locked/pinned vm). It's not used for anything else.
10316 */
Jens Axboe6b7898e2020-08-25 07:58:00 -060010317 mmgrab(current->mm);
Jens Axboe2aede0e2020-09-14 10:45:53 -060010318 ctx->mm_account = current->mm;
Jens Axboe6b7898e2020-08-25 07:58:00 -060010319
Jens Axboe2b188cc2019-01-07 10:46:33 -070010320 ret = io_allocate_scq_urings(ctx, p);
10321 if (ret)
10322 goto err;
10323
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +020010324 ret = io_sq_offload_create(ctx, p);
Jens Axboe2b188cc2019-01-07 10:46:33 -070010325 if (ret)
10326 goto err;
Pavel Begunkoveae071c2021-04-25 14:32:24 +010010327 /* always set a rsrc node */
Pavel Begunkov47b228c2021-04-29 11:46:48 +010010328 ret = io_rsrc_node_switch_start(ctx);
10329 if (ret)
10330 goto err;
Pavel Begunkoveae071c2021-04-25 14:32:24 +010010331 io_rsrc_node_switch(ctx, NULL);
Jens Axboe2b188cc2019-01-07 10:46:33 -070010332
Jens Axboe2b188cc2019-01-07 10:46:33 -070010333 memset(&p->sq_off, 0, sizeof(p->sq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +000010334 p->sq_off.head = offsetof(struct io_rings, sq.head);
10335 p->sq_off.tail = offsetof(struct io_rings, sq.tail);
10336 p->sq_off.ring_mask = offsetof(struct io_rings, sq_ring_mask);
10337 p->sq_off.ring_entries = offsetof(struct io_rings, sq_ring_entries);
10338 p->sq_off.flags = offsetof(struct io_rings, sq_flags);
10339 p->sq_off.dropped = offsetof(struct io_rings, sq_dropped);
10340 p->sq_off.array = (char *)ctx->sq_array - (char *)ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -070010341
10342 memset(&p->cq_off, 0, sizeof(p->cq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +000010343 p->cq_off.head = offsetof(struct io_rings, cq.head);
10344 p->cq_off.tail = offsetof(struct io_rings, cq.tail);
10345 p->cq_off.ring_mask = offsetof(struct io_rings, cq_ring_mask);
10346 p->cq_off.ring_entries = offsetof(struct io_rings, cq_ring_entries);
10347 p->cq_off.overflow = offsetof(struct io_rings, cq_overflow);
10348 p->cq_off.cqes = offsetof(struct io_rings, cqes);
Stefano Garzarella0d9b5b32020-05-15 18:38:04 +020010349 p->cq_off.flags = offsetof(struct io_rings, cq_flags);
Jens Axboeac90f242019-09-06 10:26:21 -060010350
Xiaoguang Wang7f136572020-05-05 16:28:53 +080010351 p->features = IORING_FEAT_SINGLE_MMAP | IORING_FEAT_NODROP |
10352 IORING_FEAT_SUBMIT_STABLE | IORING_FEAT_RW_CUR_POS |
Jiufei Xue5769a352020-06-17 17:53:55 +080010353 IORING_FEAT_CUR_PERSONALITY | IORING_FEAT_FAST_POLL |
Hao Xuc73ebb62020-11-03 10:54:37 +080010354 IORING_FEAT_POLL_32BITS | IORING_FEAT_SQPOLL_NONFIXED |
Pavel Begunkov96905572021-06-10 16:37:38 +010010355 IORING_FEAT_EXT_ARG | IORING_FEAT_NATIVE_WORKERS |
10356 IORING_FEAT_RSRC_TAGS;
Xiaoguang Wang7f136572020-05-05 16:28:53 +080010357
10358 if (copy_to_user(params, p, sizeof(*p))) {
10359 ret = -EFAULT;
10360 goto err;
10361 }
Jens Axboed1719f72020-07-30 13:43:53 -060010362
Pavel Begunkov9faadcc2020-12-21 18:34:05 +000010363 file = io_uring_get_file(ctx);
10364 if (IS_ERR(file)) {
10365 ret = PTR_ERR(file);
10366 goto err;
10367 }
10368
Jens Axboed1719f72020-07-30 13:43:53 -060010369 /*
Jens Axboe044c1ab2019-10-28 09:15:33 -060010370 * Install ring fd as the very last thing, so we don't risk someone
10371 * having closed it before we finish setup
10372 */
Pavel Begunkov9faadcc2020-12-21 18:34:05 +000010373 ret = io_uring_install_fd(ctx, file);
10374 if (ret < 0) {
10375 /* fput will clean it up */
10376 fput(file);
10377 return ret;
10378 }
Jens Axboe044c1ab2019-10-28 09:15:33 -060010379
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +020010380 trace_io_uring_create(ret, ctx, p->sq_entries, p->cq_entries, p->flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -070010381 return ret;
10382err:
10383 io_ring_ctx_wait_and_kill(ctx);
10384 return ret;
10385}
10386
10387/*
10388 * Sets up an aio uring context, and returns the fd. Applications asks for a
10389 * ring size, we return the actual sq/cq ring sizes (among other things) in the
10390 * params structure passed in.
10391 */
10392static long io_uring_setup(u32 entries, struct io_uring_params __user *params)
10393{
10394 struct io_uring_params p;
Jens Axboe2b188cc2019-01-07 10:46:33 -070010395 int i;
10396
10397 if (copy_from_user(&p, params, sizeof(p)))
10398 return -EFAULT;
10399 for (i = 0; i < ARRAY_SIZE(p.resv); i++) {
10400 if (p.resv[i])
10401 return -EINVAL;
10402 }
10403
Jens Axboe6c271ce2019-01-10 11:22:30 -070010404 if (p.flags & ~(IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL |
Jens Axboe8110c1a2019-12-28 15:39:54 -070010405 IORING_SETUP_SQ_AFF | IORING_SETUP_CQSIZE |
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +020010406 IORING_SETUP_CLAMP | IORING_SETUP_ATTACH_WQ |
10407 IORING_SETUP_R_DISABLED))
Jens Axboe2b188cc2019-01-07 10:46:33 -070010408 return -EINVAL;
10409
Xiaoguang Wang7f136572020-05-05 16:28:53 +080010410 return io_uring_create(entries, &p, params);
Jens Axboe2b188cc2019-01-07 10:46:33 -070010411}
10412
10413SYSCALL_DEFINE2(io_uring_setup, u32, entries,
10414 struct io_uring_params __user *, params)
10415{
10416 return io_uring_setup(entries, params);
10417}
10418
Pavel Begunkovc0724812021-10-04 20:02:54 +010010419static __cold int io_probe(struct io_ring_ctx *ctx, void __user *arg,
10420 unsigned nr_args)
Jens Axboe66f4af92020-01-16 15:36:52 -070010421{
10422 struct io_uring_probe *p;
10423 size_t size;
10424 int i, ret;
10425
10426 size = struct_size(p, ops, nr_args);
10427 if (size == SIZE_MAX)
10428 return -EOVERFLOW;
10429 p = kzalloc(size, GFP_KERNEL);
10430 if (!p)
10431 return -ENOMEM;
10432
10433 ret = -EFAULT;
10434 if (copy_from_user(p, arg, size))
10435 goto out;
10436 ret = -EINVAL;
10437 if (memchr_inv(p, 0, size))
10438 goto out;
10439
10440 p->last_op = IORING_OP_LAST - 1;
10441 if (nr_args > IORING_OP_LAST)
10442 nr_args = IORING_OP_LAST;
10443
10444 for (i = 0; i < nr_args; i++) {
10445 p->ops[i].op = i;
10446 if (!io_op_defs[i].not_supported)
10447 p->ops[i].flags = IO_URING_OP_SUPPORTED;
10448 }
10449 p->ops_len = i;
10450
10451 ret = 0;
10452 if (copy_to_user(arg, p, size))
10453 ret = -EFAULT;
10454out:
10455 kfree(p);
10456 return ret;
10457}
10458
Jens Axboe071698e2020-01-28 10:04:42 -070010459static int io_register_personality(struct io_ring_ctx *ctx)
10460{
Jens Axboe4379bf82021-02-15 13:40:22 -070010461 const struct cred *creds;
Matthew Wilcox (Oracle)61cf9372021-03-08 14:16:16 +000010462 u32 id;
Jens Axboe1e6fa522020-10-15 08:46:24 -060010463 int ret;
Jens Axboe071698e2020-01-28 10:04:42 -070010464
Jens Axboe4379bf82021-02-15 13:40:22 -070010465 creds = get_current_cred();
Jens Axboe1e6fa522020-10-15 08:46:24 -060010466
Matthew Wilcox (Oracle)61cf9372021-03-08 14:16:16 +000010467 ret = xa_alloc_cyclic(&ctx->personalities, &id, (void *)creds,
10468 XA_LIMIT(0, USHRT_MAX), &ctx->pers_next, GFP_KERNEL);
Jens Axboea30f8952021-08-20 14:53:59 -060010469 if (ret < 0) {
10470 put_cred(creds);
10471 return ret;
10472 }
10473 return id;
Jens Axboe071698e2020-01-28 10:04:42 -070010474}
10475
Pavel Begunkovc0724812021-10-04 20:02:54 +010010476static __cold int io_register_restrictions(struct io_ring_ctx *ctx,
10477 void __user *arg, unsigned int nr_args)
Stefano Garzarella21b55db2020-08-27 16:58:30 +020010478{
10479 struct io_uring_restriction *res;
10480 size_t size;
10481 int i, ret;
10482
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +020010483 /* Restrictions allowed only if rings started disabled */
10484 if (!(ctx->flags & IORING_SETUP_R_DISABLED))
10485 return -EBADFD;
10486
Stefano Garzarella21b55db2020-08-27 16:58:30 +020010487 /* We allow only a single restrictions registration */
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +020010488 if (ctx->restrictions.registered)
Stefano Garzarella21b55db2020-08-27 16:58:30 +020010489 return -EBUSY;
10490
10491 if (!arg || nr_args > IORING_MAX_RESTRICTIONS)
10492 return -EINVAL;
10493
10494 size = array_size(nr_args, sizeof(*res));
10495 if (size == SIZE_MAX)
10496 return -EOVERFLOW;
10497
10498 res = memdup_user(arg, size);
10499 if (IS_ERR(res))
10500 return PTR_ERR(res);
10501
10502 ret = 0;
10503
10504 for (i = 0; i < nr_args; i++) {
10505 switch (res[i].opcode) {
10506 case IORING_RESTRICTION_REGISTER_OP:
10507 if (res[i].register_op >= IORING_REGISTER_LAST) {
10508 ret = -EINVAL;
10509 goto out;
10510 }
10511
10512 __set_bit(res[i].register_op,
10513 ctx->restrictions.register_op);
10514 break;
10515 case IORING_RESTRICTION_SQE_OP:
10516 if (res[i].sqe_op >= IORING_OP_LAST) {
10517 ret = -EINVAL;
10518 goto out;
10519 }
10520
10521 __set_bit(res[i].sqe_op, ctx->restrictions.sqe_op);
10522 break;
10523 case IORING_RESTRICTION_SQE_FLAGS_ALLOWED:
10524 ctx->restrictions.sqe_flags_allowed = res[i].sqe_flags;
10525 break;
10526 case IORING_RESTRICTION_SQE_FLAGS_REQUIRED:
10527 ctx->restrictions.sqe_flags_required = res[i].sqe_flags;
10528 break;
10529 default:
10530 ret = -EINVAL;
10531 goto out;
10532 }
10533 }
10534
10535out:
10536 /* Reset all restrictions if an error happened */
10537 if (ret != 0)
10538 memset(&ctx->restrictions, 0, sizeof(ctx->restrictions));
10539 else
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +020010540 ctx->restrictions.registered = true;
Stefano Garzarella21b55db2020-08-27 16:58:30 +020010541
10542 kfree(res);
10543 return ret;
10544}
10545
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +020010546static int io_register_enable_rings(struct io_ring_ctx *ctx)
10547{
10548 if (!(ctx->flags & IORING_SETUP_R_DISABLED))
10549 return -EBADFD;
10550
10551 if (ctx->restrictions.registered)
10552 ctx->restricted = 1;
10553
Pavel Begunkov0298ef92021-03-08 13:20:57 +000010554 ctx->flags &= ~IORING_SETUP_R_DISABLED;
10555 if (ctx->sq_data && wq_has_sleeper(&ctx->sq_data->wait))
10556 wake_up(&ctx->sq_data->wait);
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +020010557 return 0;
10558}
10559
Pavel Begunkovfdecb662021-04-25 14:32:20 +010010560static int __io_register_rsrc_update(struct io_ring_ctx *ctx, unsigned type,
Pavel Begunkovc3bdad02021-04-25 14:32:22 +010010561 struct io_uring_rsrc_update2 *up,
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +010010562 unsigned nr_args)
10563{
10564 __u32 tmp;
10565 int err;
10566
Pavel Begunkovc3bdad02021-04-25 14:32:22 +010010567 if (up->resv)
10568 return -EINVAL;
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +010010569 if (check_add_overflow(up->offset, nr_args, &tmp))
10570 return -EOVERFLOW;
10571 err = io_rsrc_node_switch_start(ctx);
10572 if (err)
10573 return err;
10574
Pavel Begunkovfdecb662021-04-25 14:32:20 +010010575 switch (type) {
10576 case IORING_RSRC_FILE:
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +010010577 return __io_sqe_files_update(ctx, up, nr_args);
Pavel Begunkov634d00d2021-04-25 14:32:26 +010010578 case IORING_RSRC_BUFFER:
10579 return __io_sqe_buffers_update(ctx, up, nr_args);
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +010010580 }
10581 return -EINVAL;
10582}
10583
Pavel Begunkovc3bdad02021-04-25 14:32:22 +010010584static int io_register_files_update(struct io_ring_ctx *ctx, void __user *arg,
10585 unsigned nr_args)
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +010010586{
Pavel Begunkovc3bdad02021-04-25 14:32:22 +010010587 struct io_uring_rsrc_update2 up;
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +010010588
10589 if (!nr_args)
10590 return -EINVAL;
Pavel Begunkovc3bdad02021-04-25 14:32:22 +010010591 memset(&up, 0, sizeof(up));
10592 if (copy_from_user(&up, arg, sizeof(struct io_uring_rsrc_update)))
10593 return -EFAULT;
10594 return __io_register_rsrc_update(ctx, IORING_RSRC_FILE, &up, nr_args);
10595}
10596
10597static int io_register_rsrc_update(struct io_ring_ctx *ctx, void __user *arg,
Pavel Begunkov992da012021-06-10 16:37:37 +010010598 unsigned size, unsigned type)
Pavel Begunkovc3bdad02021-04-25 14:32:22 +010010599{
10600 struct io_uring_rsrc_update2 up;
10601
10602 if (size != sizeof(up))
10603 return -EINVAL;
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +010010604 if (copy_from_user(&up, arg, sizeof(up)))
10605 return -EFAULT;
Pavel Begunkov992da012021-06-10 16:37:37 +010010606 if (!up.nr || up.resv)
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +010010607 return -EINVAL;
Pavel Begunkov992da012021-06-10 16:37:37 +010010608 return __io_register_rsrc_update(ctx, type, &up, up.nr);
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +010010609}
10610
Pavel Begunkovc0724812021-10-04 20:02:54 +010010611static __cold int io_register_rsrc(struct io_ring_ctx *ctx, void __user *arg,
Pavel Begunkov992da012021-06-10 16:37:37 +010010612 unsigned int size, unsigned int type)
Pavel Begunkov792e3582021-04-25 14:32:21 +010010613{
10614 struct io_uring_rsrc_register rr;
10615
10616 /* keep it extendible */
10617 if (size != sizeof(rr))
10618 return -EINVAL;
10619
10620 memset(&rr, 0, sizeof(rr));
10621 if (copy_from_user(&rr, arg, size))
10622 return -EFAULT;
Pavel Begunkov992da012021-06-10 16:37:37 +010010623 if (!rr.nr || rr.resv || rr.resv2)
Pavel Begunkov792e3582021-04-25 14:32:21 +010010624 return -EINVAL;
10625
Pavel Begunkov992da012021-06-10 16:37:37 +010010626 switch (type) {
Pavel Begunkov792e3582021-04-25 14:32:21 +010010627 case IORING_RSRC_FILE:
10628 return io_sqe_files_register(ctx, u64_to_user_ptr(rr.data),
10629 rr.nr, u64_to_user_ptr(rr.tags));
Pavel Begunkov634d00d2021-04-25 14:32:26 +010010630 case IORING_RSRC_BUFFER:
10631 return io_sqe_buffers_register(ctx, u64_to_user_ptr(rr.data),
10632 rr.nr, u64_to_user_ptr(rr.tags));
Pavel Begunkov792e3582021-04-25 14:32:21 +010010633 }
10634 return -EINVAL;
10635}
10636
Pavel Begunkovc0724812021-10-04 20:02:54 +010010637static __cold int io_register_iowq_aff(struct io_ring_ctx *ctx,
10638 void __user *arg, unsigned len)
Jens Axboefe764212021-06-17 10:19:54 -060010639{
10640 struct io_uring_task *tctx = current->io_uring;
10641 cpumask_var_t new_mask;
10642 int ret;
10643
10644 if (!tctx || !tctx->io_wq)
10645 return -EINVAL;
10646
10647 if (!alloc_cpumask_var(&new_mask, GFP_KERNEL))
10648 return -ENOMEM;
10649
10650 cpumask_clear(new_mask);
10651 if (len > cpumask_size())
10652 len = cpumask_size();
10653
10654 if (copy_from_user(new_mask, arg, len)) {
10655 free_cpumask_var(new_mask);
10656 return -EFAULT;
10657 }
10658
10659 ret = io_wq_cpu_affinity(tctx->io_wq, new_mask);
10660 free_cpumask_var(new_mask);
10661 return ret;
10662}
10663
Pavel Begunkovc0724812021-10-04 20:02:54 +010010664static __cold int io_unregister_iowq_aff(struct io_ring_ctx *ctx)
Jens Axboefe764212021-06-17 10:19:54 -060010665{
10666 struct io_uring_task *tctx = current->io_uring;
10667
10668 if (!tctx || !tctx->io_wq)
10669 return -EINVAL;
10670
10671 return io_wq_cpu_affinity(tctx->io_wq, NULL);
10672}
10673
Pavel Begunkovc0724812021-10-04 20:02:54 +010010674static __cold int io_register_iowq_max_workers(struct io_ring_ctx *ctx,
10675 void __user *arg)
Jens Axboe2e480052021-08-27 11:33:19 -060010676{
Jens Axboefa846932021-09-01 14:15:59 -060010677 struct io_uring_task *tctx = NULL;
10678 struct io_sq_data *sqd = NULL;
Jens Axboe2e480052021-08-27 11:33:19 -060010679 __u32 new_count[2];
10680 int i, ret;
10681
Jens Axboe2e480052021-08-27 11:33:19 -060010682 if (copy_from_user(new_count, arg, sizeof(new_count)))
10683 return -EFAULT;
10684 for (i = 0; i < ARRAY_SIZE(new_count); i++)
10685 if (new_count[i] > INT_MAX)
10686 return -EINVAL;
10687
Jens Axboefa846932021-09-01 14:15:59 -060010688 if (ctx->flags & IORING_SETUP_SQPOLL) {
10689 sqd = ctx->sq_data;
10690 if (sqd) {
Jens Axboe009ad9f2021-09-08 19:07:26 -060010691 /*
10692 * Observe the correct sqd->lock -> ctx->uring_lock
10693 * ordering. Fine to drop uring_lock here, we hold
10694 * a ref to the ctx.
10695 */
Jens Axboe41d3a6b2021-09-13 13:08:51 -060010696 refcount_inc(&sqd->refs);
Jens Axboe009ad9f2021-09-08 19:07:26 -060010697 mutex_unlock(&ctx->uring_lock);
Jens Axboefa846932021-09-01 14:15:59 -060010698 mutex_lock(&sqd->lock);
Jens Axboe009ad9f2021-09-08 19:07:26 -060010699 mutex_lock(&ctx->uring_lock);
Jens Axboe41d3a6b2021-09-13 13:08:51 -060010700 if (sqd->thread)
10701 tctx = sqd->thread->io_uring;
Jens Axboefa846932021-09-01 14:15:59 -060010702 }
10703 } else {
10704 tctx = current->io_uring;
10705 }
10706
10707 ret = -EINVAL;
10708 if (!tctx || !tctx->io_wq)
10709 goto err;
10710
Jens Axboe2e480052021-08-27 11:33:19 -060010711 ret = io_wq_max_workers(tctx->io_wq, new_count);
10712 if (ret)
Jens Axboefa846932021-09-01 14:15:59 -060010713 goto err;
10714
Jens Axboe41d3a6b2021-09-13 13:08:51 -060010715 if (sqd) {
Jens Axboefa846932021-09-01 14:15:59 -060010716 mutex_unlock(&sqd->lock);
Jens Axboe41d3a6b2021-09-13 13:08:51 -060010717 io_put_sq_data(sqd);
10718 }
Jens Axboe2e480052021-08-27 11:33:19 -060010719
10720 if (copy_to_user(arg, new_count, sizeof(new_count)))
10721 return -EFAULT;
10722
10723 return 0;
Jens Axboefa846932021-09-01 14:15:59 -060010724err:
Jens Axboe41d3a6b2021-09-13 13:08:51 -060010725 if (sqd) {
Jens Axboefa846932021-09-01 14:15:59 -060010726 mutex_unlock(&sqd->lock);
Jens Axboe41d3a6b2021-09-13 13:08:51 -060010727 io_put_sq_data(sqd);
10728 }
Jens Axboefa846932021-09-01 14:15:59 -060010729 return ret;
Jens Axboe2e480052021-08-27 11:33:19 -060010730}
10731
Jens Axboe071698e2020-01-28 10:04:42 -070010732static bool io_register_op_must_quiesce(int op)
10733{
10734 switch (op) {
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +010010735 case IORING_REGISTER_BUFFERS:
10736 case IORING_UNREGISTER_BUFFERS:
Pavel Begunkovf4f7d212021-04-01 15:44:02 +010010737 case IORING_REGISTER_FILES:
Jens Axboe071698e2020-01-28 10:04:42 -070010738 case IORING_UNREGISTER_FILES:
10739 case IORING_REGISTER_FILES_UPDATE:
10740 case IORING_REGISTER_PROBE:
10741 case IORING_REGISTER_PERSONALITY:
10742 case IORING_UNREGISTER_PERSONALITY:
Pavel Begunkov992da012021-06-10 16:37:37 +010010743 case IORING_REGISTER_FILES2:
10744 case IORING_REGISTER_FILES_UPDATE2:
10745 case IORING_REGISTER_BUFFERS2:
10746 case IORING_REGISTER_BUFFERS_UPDATE:
Jens Axboefe764212021-06-17 10:19:54 -060010747 case IORING_REGISTER_IOWQ_AFF:
10748 case IORING_UNREGISTER_IOWQ_AFF:
Jens Axboe2e480052021-08-27 11:33:19 -060010749 case IORING_REGISTER_IOWQ_MAX_WORKERS:
Jens Axboe071698e2020-01-28 10:04:42 -070010750 return false;
10751 default:
10752 return true;
10753 }
10754}
10755
Pavel Begunkovc0724812021-10-04 20:02:54 +010010756static __cold int io_ctx_quiesce(struct io_ring_ctx *ctx)
Pavel Begunkove73c5c72021-08-09 13:04:12 +010010757{
10758 long ret;
10759
10760 percpu_ref_kill(&ctx->refs);
10761
10762 /*
10763 * Drop uring mutex before waiting for references to exit. If another
10764 * thread is currently inside io_uring_enter() it might need to grab the
10765 * uring_lock to make progress. If we hold it here across the drain
10766 * wait, then we can deadlock. It's safe to drop the mutex here, since
10767 * no new references will come in after we've killed the percpu ref.
10768 */
10769 mutex_unlock(&ctx->uring_lock);
10770 do {
Pavel Begunkov37f0e762021-10-04 20:02:53 +010010771 ret = wait_for_completion_interruptible_timeout(&ctx->ref_comp, HZ);
10772 if (ret) {
10773 ret = min(0L, ret);
Pavel Begunkove73c5c72021-08-09 13:04:12 +010010774 break;
Pavel Begunkov37f0e762021-10-04 20:02:53 +010010775 }
10776
Pavel Begunkove73c5c72021-08-09 13:04:12 +010010777 ret = io_run_task_work_sig();
Pavel Begunkov37f0e762021-10-04 20:02:53 +010010778 io_req_caches_free(ctx);
Pavel Begunkove73c5c72021-08-09 13:04:12 +010010779 } while (ret >= 0);
10780 mutex_lock(&ctx->uring_lock);
10781
10782 if (ret)
10783 io_refs_resurrect(&ctx->refs, &ctx->ref_comp);
10784 return ret;
10785}
10786
Jens Axboeedafcce2019-01-09 09:16:05 -070010787static int __io_uring_register(struct io_ring_ctx *ctx, unsigned opcode,
10788 void __user *arg, unsigned nr_args)
Jens Axboeb19062a2019-04-15 10:49:38 -060010789 __releases(ctx->uring_lock)
10790 __acquires(ctx->uring_lock)
Jens Axboeedafcce2019-01-09 09:16:05 -070010791{
10792 int ret;
10793
Jens Axboe35fa71a2019-04-22 10:23:23 -060010794 /*
10795 * We're inside the ring mutex, if the ref is already dying, then
10796 * someone else killed the ctx or is already going through
10797 * io_uring_register().
10798 */
10799 if (percpu_ref_is_dying(&ctx->refs))
10800 return -ENXIO;
10801
Pavel Begunkov75c40212021-04-15 13:07:40 +010010802 if (ctx->restricted) {
10803 if (opcode >= IORING_REGISTER_LAST)
10804 return -EINVAL;
10805 opcode = array_index_nospec(opcode, IORING_REGISTER_LAST);
10806 if (!test_bit(opcode, ctx->restrictions.register_op))
10807 return -EACCES;
10808 }
10809
Jens Axboe071698e2020-01-28 10:04:42 -070010810 if (io_register_op_must_quiesce(opcode)) {
Pavel Begunkove73c5c72021-08-09 13:04:12 +010010811 ret = io_ctx_quiesce(ctx);
10812 if (ret)
Pavel Begunkovf70865d2021-04-11 01:46:40 +010010813 return ret;
Jens Axboe05f3fb32019-12-09 11:22:50 -070010814 }
Jens Axboeedafcce2019-01-09 09:16:05 -070010815
10816 switch (opcode) {
10817 case IORING_REGISTER_BUFFERS:
Pavel Begunkov634d00d2021-04-25 14:32:26 +010010818 ret = io_sqe_buffers_register(ctx, arg, nr_args, NULL);
Jens Axboeedafcce2019-01-09 09:16:05 -070010819 break;
10820 case IORING_UNREGISTER_BUFFERS:
10821 ret = -EINVAL;
10822 if (arg || nr_args)
10823 break;
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -080010824 ret = io_sqe_buffers_unregister(ctx);
Jens Axboeedafcce2019-01-09 09:16:05 -070010825 break;
Jens Axboe6b063142019-01-10 22:13:58 -070010826 case IORING_REGISTER_FILES:
Pavel Begunkov792e3582021-04-25 14:32:21 +010010827 ret = io_sqe_files_register(ctx, arg, nr_args, NULL);
Jens Axboe6b063142019-01-10 22:13:58 -070010828 break;
10829 case IORING_UNREGISTER_FILES:
10830 ret = -EINVAL;
10831 if (arg || nr_args)
10832 break;
10833 ret = io_sqe_files_unregister(ctx);
10834 break;
Jens Axboec3a31e62019-10-03 13:59:56 -060010835 case IORING_REGISTER_FILES_UPDATE:
Pavel Begunkovc3bdad02021-04-25 14:32:22 +010010836 ret = io_register_files_update(ctx, arg, nr_args);
Jens Axboec3a31e62019-10-03 13:59:56 -060010837 break;
Jens Axboe9b402842019-04-11 11:45:41 -060010838 case IORING_REGISTER_EVENTFD:
Jens Axboef2842ab2020-01-08 11:04:00 -070010839 case IORING_REGISTER_EVENTFD_ASYNC:
Jens Axboe9b402842019-04-11 11:45:41 -060010840 ret = -EINVAL;
10841 if (nr_args != 1)
10842 break;
10843 ret = io_eventfd_register(ctx, arg);
Jens Axboef2842ab2020-01-08 11:04:00 -070010844 if (ret)
10845 break;
10846 if (opcode == IORING_REGISTER_EVENTFD_ASYNC)
10847 ctx->eventfd_async = 1;
10848 else
10849 ctx->eventfd_async = 0;
Jens Axboe9b402842019-04-11 11:45:41 -060010850 break;
10851 case IORING_UNREGISTER_EVENTFD:
10852 ret = -EINVAL;
10853 if (arg || nr_args)
10854 break;
10855 ret = io_eventfd_unregister(ctx);
10856 break;
Jens Axboe66f4af92020-01-16 15:36:52 -070010857 case IORING_REGISTER_PROBE:
10858 ret = -EINVAL;
10859 if (!arg || nr_args > 256)
10860 break;
10861 ret = io_probe(ctx, arg, nr_args);
10862 break;
Jens Axboe071698e2020-01-28 10:04:42 -070010863 case IORING_REGISTER_PERSONALITY:
10864 ret = -EINVAL;
10865 if (arg || nr_args)
10866 break;
10867 ret = io_register_personality(ctx);
10868 break;
10869 case IORING_UNREGISTER_PERSONALITY:
10870 ret = -EINVAL;
10871 if (arg)
10872 break;
10873 ret = io_unregister_personality(ctx, nr_args);
10874 break;
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +020010875 case IORING_REGISTER_ENABLE_RINGS:
10876 ret = -EINVAL;
10877 if (arg || nr_args)
10878 break;
10879 ret = io_register_enable_rings(ctx);
10880 break;
Stefano Garzarella21b55db2020-08-27 16:58:30 +020010881 case IORING_REGISTER_RESTRICTIONS:
10882 ret = io_register_restrictions(ctx, arg, nr_args);
10883 break;
Pavel Begunkov992da012021-06-10 16:37:37 +010010884 case IORING_REGISTER_FILES2:
10885 ret = io_register_rsrc(ctx, arg, nr_args, IORING_RSRC_FILE);
Pavel Begunkov792e3582021-04-25 14:32:21 +010010886 break;
Pavel Begunkov992da012021-06-10 16:37:37 +010010887 case IORING_REGISTER_FILES_UPDATE2:
10888 ret = io_register_rsrc_update(ctx, arg, nr_args,
10889 IORING_RSRC_FILE);
10890 break;
10891 case IORING_REGISTER_BUFFERS2:
10892 ret = io_register_rsrc(ctx, arg, nr_args, IORING_RSRC_BUFFER);
10893 break;
10894 case IORING_REGISTER_BUFFERS_UPDATE:
10895 ret = io_register_rsrc_update(ctx, arg, nr_args,
10896 IORING_RSRC_BUFFER);
Pavel Begunkovc3bdad02021-04-25 14:32:22 +010010897 break;
Jens Axboefe764212021-06-17 10:19:54 -060010898 case IORING_REGISTER_IOWQ_AFF:
10899 ret = -EINVAL;
10900 if (!arg || !nr_args)
10901 break;
10902 ret = io_register_iowq_aff(ctx, arg, nr_args);
10903 break;
10904 case IORING_UNREGISTER_IOWQ_AFF:
10905 ret = -EINVAL;
10906 if (arg || nr_args)
10907 break;
10908 ret = io_unregister_iowq_aff(ctx);
10909 break;
Jens Axboe2e480052021-08-27 11:33:19 -060010910 case IORING_REGISTER_IOWQ_MAX_WORKERS:
10911 ret = -EINVAL;
10912 if (!arg || nr_args != 2)
10913 break;
10914 ret = io_register_iowq_max_workers(ctx, arg);
10915 break;
Jens Axboeedafcce2019-01-09 09:16:05 -070010916 default:
10917 ret = -EINVAL;
10918 break;
10919 }
10920
Jens Axboe071698e2020-01-28 10:04:42 -070010921 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -070010922 /* bring the ctx back to life */
Jens Axboe05f3fb32019-12-09 11:22:50 -070010923 percpu_ref_reinit(&ctx->refs);
Jens Axboe0f158b42020-05-14 17:18:39 -060010924 reinit_completion(&ctx->ref_comp);
Jens Axboe05f3fb32019-12-09 11:22:50 -070010925 }
Jens Axboeedafcce2019-01-09 09:16:05 -070010926 return ret;
10927}
10928
10929SYSCALL_DEFINE4(io_uring_register, unsigned int, fd, unsigned int, opcode,
10930 void __user *, arg, unsigned int, nr_args)
10931{
10932 struct io_ring_ctx *ctx;
10933 long ret = -EBADF;
10934 struct fd f;
10935
10936 f = fdget(fd);
10937 if (!f.file)
10938 return -EBADF;
10939
10940 ret = -EOPNOTSUPP;
10941 if (f.file->f_op != &io_uring_fops)
10942 goto out_fput;
10943
10944 ctx = f.file->private_data;
10945
Pavel Begunkovb6c23dd2021-02-20 15:17:18 +000010946 io_run_task_work();
10947
Jens Axboeedafcce2019-01-09 09:16:05 -070010948 mutex_lock(&ctx->uring_lock);
10949 ret = __io_uring_register(ctx, opcode, arg, nr_args);
10950 mutex_unlock(&ctx->uring_lock);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +020010951 trace_io_uring_register(ctx, opcode, ctx->nr_user_files, ctx->nr_user_bufs,
10952 ctx->cq_ev_fd != NULL, ret);
Jens Axboeedafcce2019-01-09 09:16:05 -070010953out_fput:
10954 fdput(f);
10955 return ret;
10956}
10957
Jens Axboe2b188cc2019-01-07 10:46:33 -070010958static int __init io_uring_init(void)
10959{
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +010010960#define __BUILD_BUG_VERIFY_ELEMENT(stype, eoffset, etype, ename) do { \
10961 BUILD_BUG_ON(offsetof(stype, ename) != eoffset); \
10962 BUILD_BUG_ON(sizeof(etype) != sizeof_field(stype, ename)); \
10963} while (0)
10964
10965#define BUILD_BUG_SQE_ELEM(eoffset, etype, ename) \
10966 __BUILD_BUG_VERIFY_ELEMENT(struct io_uring_sqe, eoffset, etype, ename)
10967 BUILD_BUG_ON(sizeof(struct io_uring_sqe) != 64);
10968 BUILD_BUG_SQE_ELEM(0, __u8, opcode);
10969 BUILD_BUG_SQE_ELEM(1, __u8, flags);
10970 BUILD_BUG_SQE_ELEM(2, __u16, ioprio);
10971 BUILD_BUG_SQE_ELEM(4, __s32, fd);
10972 BUILD_BUG_SQE_ELEM(8, __u64, off);
10973 BUILD_BUG_SQE_ELEM(8, __u64, addr2);
10974 BUILD_BUG_SQE_ELEM(16, __u64, addr);
Pavel Begunkov7d67af22020-02-24 11:32:45 +030010975 BUILD_BUG_SQE_ELEM(16, __u64, splice_off_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +010010976 BUILD_BUG_SQE_ELEM(24, __u32, len);
10977 BUILD_BUG_SQE_ELEM(28, __kernel_rwf_t, rw_flags);
10978 BUILD_BUG_SQE_ELEM(28, /* compat */ int, rw_flags);
10979 BUILD_BUG_SQE_ELEM(28, /* compat */ __u32, rw_flags);
10980 BUILD_BUG_SQE_ELEM(28, __u32, fsync_flags);
Jiufei Xue5769a352020-06-17 17:53:55 +080010981 BUILD_BUG_SQE_ELEM(28, /* compat */ __u16, poll_events);
10982 BUILD_BUG_SQE_ELEM(28, __u32, poll32_events);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +010010983 BUILD_BUG_SQE_ELEM(28, __u32, sync_range_flags);
10984 BUILD_BUG_SQE_ELEM(28, __u32, msg_flags);
10985 BUILD_BUG_SQE_ELEM(28, __u32, timeout_flags);
10986 BUILD_BUG_SQE_ELEM(28, __u32, accept_flags);
10987 BUILD_BUG_SQE_ELEM(28, __u32, cancel_flags);
10988 BUILD_BUG_SQE_ELEM(28, __u32, open_flags);
10989 BUILD_BUG_SQE_ELEM(28, __u32, statx_flags);
10990 BUILD_BUG_SQE_ELEM(28, __u32, fadvise_advice);
Pavel Begunkov7d67af22020-02-24 11:32:45 +030010991 BUILD_BUG_SQE_ELEM(28, __u32, splice_flags);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +010010992 BUILD_BUG_SQE_ELEM(32, __u64, user_data);
10993 BUILD_BUG_SQE_ELEM(40, __u16, buf_index);
Pavel Begunkov16340ea2021-06-24 15:09:58 +010010994 BUILD_BUG_SQE_ELEM(40, __u16, buf_group);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +010010995 BUILD_BUG_SQE_ELEM(42, __u16, personality);
Pavel Begunkov7d67af22020-02-24 11:32:45 +030010996 BUILD_BUG_SQE_ELEM(44, __s32, splice_fd_in);
Pavel Begunkovb9445592021-08-25 12:25:45 +010010997 BUILD_BUG_SQE_ELEM(44, __u32, file_index);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +010010998
Pavel Begunkovb0d658ec2021-04-27 16:13:53 +010010999 BUILD_BUG_ON(sizeof(struct io_uring_files_update) !=
11000 sizeof(struct io_uring_rsrc_update));
11001 BUILD_BUG_ON(sizeof(struct io_uring_rsrc_update) >
11002 sizeof(struct io_uring_rsrc_update2));
Pavel Begunkov90499ad2021-08-25 20:51:40 +010011003
11004 /* ->buf_index is u16 */
11005 BUILD_BUG_ON(IORING_MAX_REG_BUFFERS >= (1u << 16));
11006
Pavel Begunkovb0d658ec2021-04-27 16:13:53 +010011007 /* should fit into one byte */
11008 BUILD_BUG_ON(SQE_VALID_FLAGS >= (1 << 8));
Pavel Begunkov68fe2562021-09-15 12:03:38 +010011009 BUILD_BUG_ON(SQE_COMMON_FLAGS >= (1 << 8));
11010 BUILD_BUG_ON((SQE_VALID_FLAGS | SQE_COMMON_FLAGS) != SQE_VALID_FLAGS);
Pavel Begunkovb0d658ec2021-04-27 16:13:53 +010011011
Jens Axboed3656342019-12-18 09:50:26 -070011012 BUILD_BUG_ON(ARRAY_SIZE(io_op_defs) != IORING_OP_LAST);
Hao Xu32c2d332021-09-07 11:22:43 +080011013 BUILD_BUG_ON(__REQ_F_LAST_BIT > 8 * sizeof(int));
Pavel Begunkov16340ea2021-06-24 15:09:58 +010011014
Jens Axboe91f245d2021-02-09 13:48:50 -070011015 req_cachep = KMEM_CACHE(io_kiocb, SLAB_HWCACHE_ALIGN | SLAB_PANIC |
11016 SLAB_ACCOUNT);
Jens Axboe2b188cc2019-01-07 10:46:33 -070011017 return 0;
11018};
11019__initcall(io_uring_init);