blob: 9b99ec46da2559f86f633e5ae0c3162797958966 [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 | \
112 REQ_F_POLLED | REQ_F_INFLIGHT | REQ_F_CREDS)
Pavel Begunkovb16fed662021-02-18 18:29:40 +0000113
Pavel Begunkov09899b12021-06-14 02:36:22 +0100114#define IO_TCTX_REFS_CACHE_NR (1U << 10)
115
Jens Axboe2b188cc2019-01-07 10:46:33 -0700116struct io_uring {
117 u32 head ____cacheline_aligned_in_smp;
118 u32 tail ____cacheline_aligned_in_smp;
119};
120
Stefan Bühler1e84b972019-04-24 23:54:16 +0200121/*
Hristo Venev75b28af2019-08-26 17:23:46 +0000122 * This data is shared with the application through the mmap at offsets
123 * IORING_OFF_SQ_RING and IORING_OFF_CQ_RING.
Stefan Bühler1e84b972019-04-24 23:54:16 +0200124 *
125 * The offsets to the member fields are published through struct
126 * io_sqring_offsets when calling io_uring_setup.
127 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000128struct io_rings {
Stefan Bühler1e84b972019-04-24 23:54:16 +0200129 /*
130 * Head and tail offsets into the ring; the offsets need to be
131 * masked to get valid indices.
132 *
Hristo Venev75b28af2019-08-26 17:23:46 +0000133 * The kernel controls head of the sq ring and the tail of the cq ring,
134 * and the application controls tail of the sq ring and the head of the
135 * cq ring.
Stefan Bühler1e84b972019-04-24 23:54:16 +0200136 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000137 struct io_uring sq, cq;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200138 /*
Hristo Venev75b28af2019-08-26 17:23:46 +0000139 * Bitmasks to apply to head and tail offsets (constant, equals
Stefan Bühler1e84b972019-04-24 23:54:16 +0200140 * ring_entries - 1)
141 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000142 u32 sq_ring_mask, cq_ring_mask;
143 /* Ring sizes (constant, power of 2) */
144 u32 sq_ring_entries, cq_ring_entries;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200145 /*
146 * Number of invalid entries dropped by the kernel due to
147 * invalid index stored in array
148 *
149 * Written by the kernel, shouldn't be modified by the
150 * application (i.e. get number of "new events" by comparing to
151 * cached value).
152 *
153 * After a new SQ head value was read by the application this
154 * counter includes all submissions that were dropped reaching
155 * the new SQ head (and possibly more).
156 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000157 u32 sq_dropped;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200158 /*
Stefano Garzarella0d9b5b32020-05-15 18:38:04 +0200159 * Runtime SQ flags
Stefan Bühler1e84b972019-04-24 23:54:16 +0200160 *
161 * Written by the kernel, shouldn't be modified by the
162 * application.
163 *
164 * The application needs a full memory barrier before checking
165 * for IORING_SQ_NEED_WAKEUP after updating the sq tail.
166 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000167 u32 sq_flags;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200168 /*
Stefano Garzarella0d9b5b32020-05-15 18:38:04 +0200169 * Runtime CQ flags
170 *
171 * Written by the application, shouldn't be modified by the
172 * kernel.
173 */
Pavel Begunkovfe7e3252021-06-24 15:09:57 +0100174 u32 cq_flags;
Stefano Garzarella0d9b5b32020-05-15 18:38:04 +0200175 /*
Stefan Bühler1e84b972019-04-24 23:54:16 +0200176 * Number of completion events lost because the queue was full;
177 * this should be avoided by the application by making sure
LimingWu0b4295b2019-12-05 20:18:18 +0800178 * there are not more requests pending than there is space in
Stefan Bühler1e84b972019-04-24 23:54:16 +0200179 * the completion queue.
180 *
181 * Written by the kernel, shouldn't be modified by the
182 * application (i.e. get number of "new events" by comparing to
183 * cached value).
184 *
185 * As completion events come in out of order this counter is not
186 * ordered with any other data.
187 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000188 u32 cq_overflow;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200189 /*
190 * Ring buffer of completion events.
191 *
192 * The kernel writes completion events fresh every time they are
193 * produced, so the application is allowed to modify pending
194 * entries.
195 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000196 struct io_uring_cqe cqes[] ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700197};
198
Pavel Begunkov45d189c2021-02-10 00:03:07 +0000199enum io_uring_cmd_flags {
200 IO_URING_F_NONBLOCK = 1,
Pavel Begunkov889fca72021-02-10 00:03:09 +0000201 IO_URING_F_COMPLETE_DEFER = 2,
Pavel Begunkov45d189c2021-02-10 00:03:07 +0000202};
203
Jens Axboeedafcce2019-01-09 09:16:05 -0700204struct io_mapped_ubuf {
205 u64 ubuf;
Pavel Begunkov4751f532021-04-01 15:43:55 +0100206 u64 ubuf_end;
Jens Axboeedafcce2019-01-09 09:16:05 -0700207 unsigned int nr_bvecs;
Jens Axboede293932020-09-17 16:19:16 -0600208 unsigned long acct_pages;
Pavel Begunkov41edf1a2021-04-25 14:32:23 +0100209 struct bio_vec bvec[];
Jens Axboeedafcce2019-01-09 09:16:05 -0700210};
211
Bijan Mottahedeh50238532021-01-15 17:37:45 +0000212struct io_ring_ctx;
213
Pavel Begunkov6c2450a2021-02-23 12:40:22 +0000214struct io_overflow_cqe {
215 struct io_uring_cqe cqe;
216 struct list_head list;
217};
218
Pavel Begunkova04b0ac2021-04-01 15:44:04 +0100219struct io_fixed_file {
220 /* file * with additional FFS_* flags */
221 unsigned long file_ptr;
222};
223
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +0000224struct io_rsrc_put {
225 struct list_head list;
Pavel Begunkovb60c8dc2021-04-25 14:32:18 +0100226 u64 tag;
Bijan Mottahedeh50238532021-01-15 17:37:45 +0000227 union {
228 void *rsrc;
229 struct file *file;
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +0100230 struct io_mapped_ubuf *buf;
Bijan Mottahedeh50238532021-01-15 17:37:45 +0000231 };
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +0000232};
233
Pavel Begunkovaeca2412021-04-11 01:46:37 +0100234struct io_file_table {
Pavel Begunkov042b0d82021-08-09 13:04:01 +0100235 struct io_fixed_file *files;
Jens Axboe31b51512019-01-18 22:56:34 -0700236};
237
Pavel Begunkovb895c9a2021-04-01 15:43:40 +0100238struct io_rsrc_node {
Xiaoguang Wang05589552020-03-31 14:05:18 +0800239 struct percpu_ref refs;
240 struct list_head node;
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +0000241 struct list_head rsrc_list;
Pavel Begunkovb895c9a2021-04-01 15:43:40 +0100242 struct io_rsrc_data *rsrc_data;
Jens Axboe4a38aed22020-05-14 17:21:15 -0600243 struct llist_node llist;
Pavel Begunkove2978222020-11-18 14:56:26 +0000244 bool done;
Xiaoguang Wang05589552020-03-31 14:05:18 +0800245};
246
Pavel Begunkov40ae0ff2021-04-01 15:43:44 +0100247typedef void (rsrc_put_fn)(struct io_ring_ctx *ctx, struct io_rsrc_put *prsrc);
248
Pavel Begunkovb895c9a2021-04-01 15:43:40 +0100249struct io_rsrc_data {
Jens Axboe05f3fb32019-12-09 11:22:50 -0700250 struct io_ring_ctx *ctx;
251
Pavel Begunkov2d091d62021-06-14 02:36:21 +0100252 u64 **tags;
253 unsigned int nr;
Pavel Begunkov40ae0ff2021-04-01 15:43:44 +0100254 rsrc_put_fn *do_put;
Pavel Begunkov3e942492021-04-11 01:46:34 +0100255 atomic_t refs;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700256 struct completion done;
Hao Xu8bad28d2021-02-19 17:19:36 +0800257 bool quiesce;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700258};
259
Jens Axboe5a2e7452020-02-23 16:23:11 -0700260struct io_buffer {
261 struct list_head list;
262 __u64 addr;
Thadeu Lima de Souza Cascardod1f82802021-05-05 09:47:06 -0300263 __u32 len;
Jens Axboe5a2e7452020-02-23 16:23:11 -0700264 __u16 bid;
265};
266
Stefano Garzarella21b55db2020-08-27 16:58:30 +0200267struct io_restriction {
268 DECLARE_BITMAP(register_op, IORING_REGISTER_LAST);
269 DECLARE_BITMAP(sqe_op, IORING_OP_LAST);
270 u8 sqe_flags_allowed;
271 u8 sqe_flags_required;
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +0200272 bool registered;
Stefano Garzarella21b55db2020-08-27 16:58:30 +0200273};
274
Jens Axboe37d1e2e2021-02-17 21:03:43 -0700275enum {
276 IO_SQ_THREAD_SHOULD_STOP = 0,
277 IO_SQ_THREAD_SHOULD_PARK,
278};
279
Jens Axboe534ca6d2020-09-02 13:52:19 -0600280struct io_sq_data {
281 refcount_t refs;
Pavel Begunkov9e138a42021-03-14 20:57:12 +0000282 atomic_t park_pending;
Pavel Begunkov09a6f4e2021-03-14 20:57:10 +0000283 struct mutex lock;
Jens Axboe69fb2132020-09-14 11:16:23 -0600284
285 /* ctx's that are using this sqd */
286 struct list_head ctx_list;
Jens Axboe69fb2132020-09-14 11:16:23 -0600287
Jens Axboe534ca6d2020-09-02 13:52:19 -0600288 struct task_struct *thread;
289 struct wait_queue_head wait;
Xiaoguang Wang08369242020-11-03 14:15:59 +0800290
291 unsigned sq_thread_idle;
Jens Axboe37d1e2e2021-02-17 21:03:43 -0700292 int sq_cpu;
293 pid_t task_pid;
Jens Axboe5c2469e2021-03-11 10:17:56 -0700294 pid_t task_tgid;
Jens Axboe37d1e2e2021-02-17 21:03:43 -0700295
296 unsigned long state;
Jens Axboe37d1e2e2021-02-17 21:03:43 -0700297 struct completion exited;
Jens Axboe534ca6d2020-09-02 13:52:19 -0600298};
299
Pavel Begunkov6dd0be12021-02-10 00:03:13 +0000300#define IO_COMPL_BATCH 32
Pavel Begunkov6ff119a2021-02-10 00:03:18 +0000301#define IO_REQ_CACHE_SIZE 32
Pavel Begunkovbf019da2021-02-10 00:03:17 +0000302#define IO_REQ_ALLOC_BATCH 8
Pavel Begunkov258b29a2021-02-10 00:03:10 +0000303
Pavel Begunkova1ab7b32021-02-18 18:29:42 +0000304struct io_submit_link {
305 struct io_kiocb *head;
306 struct io_kiocb *last;
307};
308
Pavel Begunkov258b29a2021-02-10 00:03:10 +0000309struct io_submit_state {
310 struct blk_plug plug;
Pavel Begunkova1ab7b32021-02-18 18:29:42 +0000311 struct io_submit_link link;
Pavel Begunkov258b29a2021-02-10 00:03:10 +0000312
Pavel Begunkov258b29a2021-02-10 00:03:10 +0000313 bool plug_started;
Pavel Begunkov4b628ae2021-09-08 16:40:49 +0100314 bool need_plug;
Pavel Begunkov258b29a2021-02-10 00:03:10 +0000315
316 /*
317 * Batch completion logic
318 */
Pavel Begunkov6f33b0b2021-09-24 21:59:44 +0100319 struct io_wq_work_list compl_reqs;
320
Pavel Begunkovcd0ca2e2021-08-09 20:18:11 +0100321 /* inline/task_work completion list, under ->uring_lock */
Pavel Begunkovc2b6c6b2021-09-24 21:59:47 +0100322 struct io_wq_work_node free_list;
Pavel Begunkov258b29a2021-02-10 00:03:10 +0000323};
324
Jens Axboe2b188cc2019-01-07 10:46:33 -0700325struct io_ring_ctx {
Pavel Begunkovb52ecf82021-06-14 23:37:21 +0100326 /* const or read-mostly hot data */
Jens Axboe2b188cc2019-01-07 10:46:33 -0700327 struct {
328 struct percpu_ref refs;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700329
Pavel Begunkovb52ecf82021-06-14 23:37:21 +0100330 struct io_rings *rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700331 unsigned int flags;
Randy Dunlape1d85332020-02-05 20:57:10 -0800332 unsigned int compat: 1;
Randy Dunlape1d85332020-02-05 20:57:10 -0800333 unsigned int drain_next: 1;
334 unsigned int eventfd_async: 1;
Stefano Garzarella21b55db2020-08-27 16:58:30 +0200335 unsigned int restricted: 1;
Pavel Begunkovf18ee4c2021-06-14 23:37:25 +0100336 unsigned int off_timeout_used: 1;
Pavel Begunkov10c66902021-06-15 16:47:56 +0100337 unsigned int drain_active: 1;
Pavel Begunkovb52ecf82021-06-14 23:37:21 +0100338 } ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700339
Pavel Begunkov7f1129d2021-06-14 23:37:22 +0100340 /* submission data */
Pavel Begunkovb52ecf82021-06-14 23:37:21 +0100341 struct {
Pavel Begunkov0499e582021-06-14 23:37:29 +0100342 struct mutex uring_lock;
343
Hristo Venev75b28af2019-08-26 17:23:46 +0000344 /*
345 * Ring buffer of indices into array of io_uring_sqe, which is
346 * mmapped by the application using the IORING_OFF_SQES offset.
347 *
348 * This indirection could e.g. be used to assign fixed
349 * io_uring_sqe entries to operations and only submit them to
350 * the queue when needed.
351 *
352 * The kernel modifies neither the indices array nor the entries
353 * array.
354 */
355 u32 *sq_array;
Pavel Begunkovc7af47c2021-06-14 23:37:20 +0100356 struct io_uring_sqe *sq_sqes;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700357 unsigned cached_sq_head;
358 unsigned sq_entries;
Jens Axboede0617e2019-04-06 21:51:27 -0600359 struct list_head defer_list;
Pavel Begunkov7f1129d2021-06-14 23:37:22 +0100360
361 /*
362 * Fixed resources fast path, should be accessed only under
363 * uring_lock, and updated through io_uring_register(2)
364 */
365 struct io_rsrc_node *rsrc_node;
366 struct io_file_table file_table;
367 unsigned nr_user_files;
368 unsigned nr_user_bufs;
369 struct io_mapped_ubuf **user_bufs;
370
371 struct io_submit_state submit_state;
Jens Axboe5262f562019-09-17 12:26:57 -0600372 struct list_head timeout_list;
Pavel Begunkovef9dd632021-08-28 19:54:38 -0600373 struct list_head ltimeout_list;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700374 struct list_head cq_overflow_list;
Pavel Begunkov7f1129d2021-06-14 23:37:22 +0100375 struct xarray io_buffers;
376 struct xarray personalities;
377 u32 pers_next;
378 unsigned sq_thread_idle;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700379 } ____cacheline_aligned_in_smp;
380
Pavel Begunkovd0acdee2021-05-16 22:58:12 +0100381 /* IRQ completion list, under ->completion_lock */
Pavel Begunkovc2b6c6b2021-09-24 21:59:47 +0100382 struct io_wq_work_list locked_free_list;
Pavel Begunkovd0acdee2021-05-16 22:58:12 +0100383 unsigned int locked_free_nr;
Jens Axboe3c1a2ea2021-02-11 10:48:03 -0700384
Stefan Metzmacher7c30f36a2021-03-07 11:54:28 +0100385 const struct cred *sq_creds; /* cred used for __io_sq_thread() */
Jens Axboe534ca6d2020-09-02 13:52:19 -0600386 struct io_sq_data *sq_data; /* if using sq thread polling */
387
Jens Axboe90554202020-09-03 12:12:41 -0600388 struct wait_queue_head sqo_sq_wait;
Jens Axboe69fb2132020-09-14 11:16:23 -0600389 struct list_head sqd_list;
Hristo Venev75b28af2019-08-26 17:23:46 +0000390
Pavel Begunkov5ed7a372021-06-14 23:37:27 +0100391 unsigned long check_cq_overflow;
392
Jens Axboe206aefd2019-11-07 18:27:42 -0700393 struct {
394 unsigned cached_cq_tail;
395 unsigned cq_entries;
Jens Axboe206aefd2019-11-07 18:27:42 -0700396 struct eventfd_ctx *cq_ev_fd;
Pavel Begunkov0499e582021-06-14 23:37:29 +0100397 struct wait_queue_head poll_wait;
398 struct wait_queue_head cq_wait;
399 unsigned cq_extra;
400 atomic_t cq_timeouts;
Pavel Begunkov0499e582021-06-14 23:37:29 +0100401 unsigned cq_last_tm_flush;
Jens Axboe206aefd2019-11-07 18:27:42 -0700402 } ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700403
404 struct {
Jens Axboe2b188cc2019-01-07 10:46:33 -0700405 spinlock_t completion_lock;
Jens Axboee94f1412019-12-19 12:06:02 -0700406
Jens Axboe89850fc2021-08-10 15:11:51 -0600407 spinlock_t timeout_lock;
408
Jens Axboedef596e2019-01-09 08:59:42 -0700409 /*
Pavel Begunkov540e32a2020-07-13 23:37:09 +0300410 * ->iopoll_list is protected by the ctx->uring_lock for
Jens Axboedef596e2019-01-09 08:59:42 -0700411 * io_uring instances that don't use IORING_SETUP_SQPOLL.
412 * For SQPOLL, only the single threaded io_sq_thread() will
413 * manipulate the list, hence no extra locking is needed there.
414 */
Pavel Begunkov5eef4e82021-09-24 21:59:49 +0100415 struct io_wq_work_list iopoll_list;
Jens Axboe78076bb2019-12-04 19:56:40 -0700416 struct hlist_head *cancel_hash;
417 unsigned cancel_hash_bits;
Hao Xu915b3dd2021-06-28 05:37:30 +0800418 bool poll_multi_queue;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700419 } ____cacheline_aligned_in_smp;
Jens Axboe85faa7b2020-04-09 18:14:00 -0600420
Stefano Garzarella21b55db2020-08-27 16:58:30 +0200421 struct io_restriction restrictions;
Jens Axboe3c1a2ea2021-02-11 10:48:03 -0700422
Pavel Begunkovb13a8912021-05-16 22:58:07 +0100423 /* slow path rsrc auxilary data, used by update/register */
424 struct {
425 struct io_rsrc_node *rsrc_backup_node;
426 struct io_mapped_ubuf *dummy_ubuf;
427 struct io_rsrc_data *file_data;
428 struct io_rsrc_data *buf_data;
429
430 struct delayed_work rsrc_put_work;
431 struct llist_head rsrc_put_llist;
432 struct list_head rsrc_ref_list;
433 spinlock_t rsrc_ref_lock;
434 };
435
Jens Axboe3c1a2ea2021-02-11 10:48:03 -0700436 /* Keep this last, we don't need it for the fast path */
Pavel Begunkovb986af72021-05-16 22:58:06 +0100437 struct {
438 #if defined(CONFIG_UNIX)
439 struct socket *ring_sock;
440 #endif
441 /* hashed buffered write serialization */
442 struct io_wq_hash *hash_map;
443
444 /* Only used for accounting purposes */
445 struct user_struct *user;
446 struct mm_struct *mm_account;
447
448 /* ctx exit and cancelation */
Pavel Begunkov9011bf92021-06-30 21:54:03 +0100449 struct llist_head fallback_llist;
450 struct delayed_work fallback_work;
Pavel Begunkovb986af72021-05-16 22:58:06 +0100451 struct work_struct exit_work;
452 struct list_head tctx_list;
453 struct completion ref_comp;
454 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700455};
456
Stefan Metzmacher53e043b2021-03-15 12:56:56 +0100457struct io_uring_task {
458 /* submission side */
Pavel Begunkov09899b12021-06-14 02:36:22 +0100459 int cached_refs;
Stefan Metzmacher53e043b2021-03-15 12:56:56 +0100460 struct xarray xa;
461 struct wait_queue_head wait;
Stefan Metzmacheree53fb22021-03-15 12:56:57 +0100462 const struct io_ring_ctx *last;
463 struct io_wq *io_wq;
Stefan Metzmacher53e043b2021-03-15 12:56:56 +0100464 struct percpu_counter inflight;
Pavel Begunkovb303fe22021-04-11 01:46:26 +0100465 atomic_t inflight_tracked;
Stefan Metzmacher53e043b2021-03-15 12:56:56 +0100466 atomic_t in_idle;
Stefan Metzmacher53e043b2021-03-15 12:56:56 +0100467
468 spinlock_t task_lock;
469 struct io_wq_work_list task_list;
Stefan Metzmacher53e043b2021-03-15 12:56:56 +0100470 struct callback_head task_work;
Pavel Begunkov6294f362021-08-10 17:53:55 +0100471 bool task_running;
Stefan Metzmacher53e043b2021-03-15 12:56:56 +0100472};
473
Jens Axboe09bb8392019-03-13 12:39:28 -0600474/*
475 * First field must be the file pointer in all the
476 * iocb unions! See also 'struct kiocb' in <linux/fs.h>
477 */
Jens Axboe221c5eb2019-01-17 09:41:58 -0700478struct io_poll_iocb {
479 struct file *file;
Pavel Begunkov018043b2020-10-27 23:17:18 +0000480 struct wait_queue_head *head;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700481 __poll_t events;
Jens Axboe8c838782019-03-12 15:48:16 -0600482 bool done;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700483 bool canceled;
Jens Axboe392edb42019-12-09 17:52:20 -0700484 struct wait_queue_entry wait;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700485};
486
Pavel Begunkov9d805892021-04-13 02:58:40 +0100487struct io_poll_update {
Pavel Begunkov018043b2020-10-27 23:17:18 +0000488 struct file *file;
Pavel Begunkov9d805892021-04-13 02:58:40 +0100489 u64 old_user_data;
490 u64 new_user_data;
491 __poll_t events;
Jens Axboeb69de282021-03-17 08:37:41 -0600492 bool update_events;
493 bool update_user_data;
Pavel Begunkov018043b2020-10-27 23:17:18 +0000494};
495
Jens Axboeb5dba592019-12-11 14:02:38 -0700496struct io_close {
497 struct file *file;
Jens Axboeb5dba592019-12-11 14:02:38 -0700498 int fd;
Pavel Begunkov7df778b2021-09-24 20:04:29 +0100499 u32 file_slot;
Jens Axboeb5dba592019-12-11 14:02:38 -0700500};
501
Jens Axboead8a48a2019-11-15 08:49:11 -0700502struct io_timeout_data {
503 struct io_kiocb *req;
504 struct hrtimer timer;
505 struct timespec64 ts;
506 enum hrtimer_mode mode;
Jens Axboe50c1df22021-08-27 17:11:06 -0600507 u32 flags;
Jens Axboead8a48a2019-11-15 08:49:11 -0700508};
509
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700510struct io_accept {
511 struct file *file;
512 struct sockaddr __user *addr;
513 int __user *addr_len;
514 int flags;
Pavel Begunkovaaa4db12021-08-25 12:25:47 +0100515 u32 file_slot;
Jens Axboe09952e32020-03-19 20:16:56 -0600516 unsigned long nofile;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700517};
518
519struct io_sync {
520 struct file *file;
521 loff_t len;
522 loff_t off;
523 int flags;
Jens Axboed63d1b52019-12-10 10:38:56 -0700524 int mode;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700525};
526
Jens Axboefbf23842019-12-17 18:45:56 -0700527struct io_cancel {
528 struct file *file;
529 u64 addr;
530};
531
Jens Axboeb29472e2019-12-17 18:50:29 -0700532struct io_timeout {
533 struct file *file;
Pavel Begunkovbfe68a22020-05-30 14:54:18 +0300534 u32 off;
535 u32 target_seq;
Pavel Begunkov135fcde2020-07-13 23:37:12 +0300536 struct list_head list;
Pavel Begunkov90cd7e42020-10-27 23:25:36 +0000537 /* head of the link, used by linked timeouts only */
538 struct io_kiocb *head;
Jens Axboe89b263f2021-08-10 15:14:18 -0600539 /* for linked completions */
540 struct io_kiocb *prev;
Jens Axboeb29472e2019-12-17 18:50:29 -0700541};
542
Pavel Begunkov0bdf7a22020-10-10 18:34:10 +0100543struct io_timeout_rem {
544 struct file *file;
545 u64 addr;
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +0000546
547 /* timeout update */
548 struct timespec64 ts;
549 u32 flags;
Pavel Begunkovf1042b62021-08-28 19:54:39 -0600550 bool ltimeout;
Pavel Begunkov0bdf7a22020-10-10 18:34:10 +0100551};
552
Jens Axboe9adbd452019-12-20 08:45:55 -0700553struct io_rw {
554 /* NOTE: kiocb has the file as the first member, so don't do it here */
555 struct kiocb kiocb;
556 u64 addr;
557 u64 len;
558};
559
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700560struct io_connect {
561 struct file *file;
562 struct sockaddr __user *addr;
563 int addr_len;
564};
565
Jens Axboee47293f2019-12-20 08:58:21 -0700566struct io_sr_msg {
567 struct file *file;
Jens Axboefddafac2020-01-04 20:19:44 -0700568 union {
Pavel Begunkov4af34172021-04-11 01:46:30 +0100569 struct compat_msghdr __user *umsg_compat;
570 struct user_msghdr __user *umsg;
571 void __user *buf;
Jens Axboefddafac2020-01-04 20:19:44 -0700572 };
Jens Axboee47293f2019-12-20 08:58:21 -0700573 int msg_flags;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700574 int bgid;
Jens Axboefddafac2020-01-04 20:19:44 -0700575 size_t len;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700576 struct io_buffer *kbuf;
Jens Axboee47293f2019-12-20 08:58:21 -0700577};
578
Jens Axboe15b71ab2019-12-11 11:20:36 -0700579struct io_open {
580 struct file *file;
581 int dfd;
Pavel Begunkovb9445592021-08-25 12:25:45 +0100582 u32 file_slot;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700583 struct filename *filename;
Jens Axboec12cedf2020-01-08 17:41:21 -0700584 struct open_how how;
Jens Axboe4022e7a2020-03-19 19:23:18 -0600585 unsigned long nofile;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700586};
587
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +0000588struct io_rsrc_update {
Jens Axboe05f3fb32019-12-09 11:22:50 -0700589 struct file *file;
590 u64 arg;
591 u32 nr_args;
592 u32 offset;
593};
594
Jens Axboe4840e412019-12-25 22:03:45 -0700595struct io_fadvise {
596 struct file *file;
597 u64 offset;
598 u32 len;
599 u32 advice;
600};
601
Jens Axboec1ca7572019-12-25 22:18:28 -0700602struct io_madvise {
603 struct file *file;
604 u64 addr;
605 u32 len;
606 u32 advice;
607};
608
Jens Axboe3e4827b2020-01-08 15:18:09 -0700609struct io_epoll {
610 struct file *file;
611 int epfd;
612 int op;
613 int fd;
614 struct epoll_event event;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700615};
616
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300617struct io_splice {
618 struct file *file_out;
619 struct file *file_in;
620 loff_t off_out;
621 loff_t off_in;
622 u64 len;
623 unsigned int flags;
624};
625
Jens Axboeddf0322d2020-02-23 16:41:33 -0700626struct io_provide_buf {
627 struct file *file;
628 __u64 addr;
Pavel Begunkov38134ad2021-04-15 13:07:39 +0100629 __u32 len;
Jens Axboeddf0322d2020-02-23 16:41:33 -0700630 __u32 bgid;
631 __u16 nbufs;
632 __u16 bid;
633};
634
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -0700635struct io_statx {
636 struct file *file;
637 int dfd;
638 unsigned int mask;
639 unsigned int flags;
Bijan Mottahedehe62753e2020-05-22 21:31:18 -0700640 const char __user *filename;
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -0700641 struct statx __user *buffer;
642};
643
Jens Axboe36f4fa62020-09-05 11:14:22 -0600644struct io_shutdown {
645 struct file *file;
646 int how;
647};
648
Jens Axboe80a261f2020-09-28 14:23:58 -0600649struct io_rename {
650 struct file *file;
651 int old_dfd;
652 int new_dfd;
653 struct filename *oldpath;
654 struct filename *newpath;
655 int flags;
656};
657
Jens Axboe14a11432020-09-28 14:27:37 -0600658struct io_unlink {
659 struct file *file;
660 int dfd;
661 int flags;
662 struct filename *filename;
663};
664
Dmitry Kadasheve34a02d2021-07-08 13:34:45 +0700665struct io_mkdir {
666 struct file *file;
667 int dfd;
668 umode_t mode;
669 struct filename *filename;
670};
671
Dmitry Kadashev7a8721f2021-07-08 13:34:46 +0700672struct io_symlink {
673 struct file *file;
674 int new_dfd;
675 struct filename *oldpath;
676 struct filename *newpath;
677};
678
Dmitry Kadashevcf30da92021-07-08 13:34:47 +0700679struct io_hardlink {
680 struct file *file;
681 int old_dfd;
682 int new_dfd;
683 struct filename *oldpath;
684 struct filename *newpath;
685 int flags;
686};
687
Pavel Begunkov3ca405e2020-07-13 23:37:08 +0300688struct io_completion {
689 struct file *file;
Pavel Begunkov8c3f9cd2021-02-28 22:35:15 +0000690 u32 cflags;
Pavel Begunkov3ca405e2020-07-13 23:37:08 +0300691};
692
Jens Axboef499a022019-12-02 16:28:46 -0700693struct io_async_connect {
694 struct sockaddr_storage address;
695};
696
Jens Axboe03b12302019-12-02 18:50:25 -0700697struct io_async_msghdr {
698 struct iovec fast_iov[UIO_FASTIOV];
Pavel Begunkov257e84a2021-02-05 00:58:00 +0000699 /* points to an allocated iov, if NULL we use fast_iov instead */
700 struct iovec *free_iov;
Jens Axboe03b12302019-12-02 18:50:25 -0700701 struct sockaddr __user *uaddr;
702 struct msghdr msg;
Jens Axboeb5379162020-02-09 11:29:15 -0700703 struct sockaddr_storage addr;
Jens Axboe03b12302019-12-02 18:50:25 -0700704};
705
Jens Axboef67676d2019-12-02 11:03:47 -0700706struct io_async_rw {
707 struct iovec fast_iov[UIO_FASTIOV];
Jens Axboeff6165b2020-08-13 09:47:43 -0600708 const struct iovec *free_iovec;
709 struct iov_iter iter;
Jens Axboecd658692021-09-10 11:19:14 -0600710 struct iov_iter_state iter_state;
Jens Axboe227c0c92020-08-13 11:51:40 -0600711 size_t bytes_done;
Jens Axboebcf5a062020-05-22 09:24:42 -0600712 struct wait_page_queue wpq;
Jens Axboef67676d2019-12-02 11:03:47 -0700713};
714
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300715enum {
716 REQ_F_FIXED_FILE_BIT = IOSQE_FIXED_FILE_BIT,
717 REQ_F_IO_DRAIN_BIT = IOSQE_IO_DRAIN_BIT,
718 REQ_F_LINK_BIT = IOSQE_IO_LINK_BIT,
719 REQ_F_HARDLINK_BIT = IOSQE_IO_HARDLINK_BIT,
720 REQ_F_FORCE_ASYNC_BIT = IOSQE_ASYNC_BIT,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700721 REQ_F_BUFFER_SELECT_BIT = IOSQE_BUFFER_SELECT_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300722
Pavel Begunkovdddca222021-04-27 16:13:52 +0100723 /* first byte is taken by user flags, shift it to not overlap */
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +0100724 REQ_F_FAIL_BIT = 8,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300725 REQ_F_INFLIGHT_BIT,
726 REQ_F_CUR_POS_BIT,
727 REQ_F_NOWAIT_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300728 REQ_F_LINK_TIMEOUT_BIT,
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300729 REQ_F_NEED_CLEANUP_BIT,
Jens Axboed7718a92020-02-14 22:23:12 -0700730 REQ_F_POLLED_BIT,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700731 REQ_F_BUFFER_SELECTED_BIT,
Pavel Begunkove342c802021-01-19 13:32:47 +0000732 REQ_F_COMPLETE_INLINE_BIT,
Jens Axboe230d50d2021-04-01 20:41:15 -0600733 REQ_F_REISSUE_BIT,
Pavel Begunkovb8e64b52021-06-17 18:14:02 +0100734 REQ_F_CREDS_BIT,
Pavel Begunkov20e60a32021-08-11 19:28:30 +0100735 REQ_F_REFCOUNT_BIT,
Pavel Begunkov4d13d1a2021-08-15 10:40:24 +0100736 REQ_F_ARM_LTIMEOUT_BIT,
Jens Axboe7b29f922021-03-12 08:30:14 -0700737 /* keep async read/write and isreg together and in order */
Pavel Begunkovb191e2d2021-08-09 13:04:03 +0100738 REQ_F_NOWAIT_READ_BIT,
739 REQ_F_NOWAIT_WRITE_BIT,
Jens Axboe7b29f922021-03-12 08:30:14 -0700740 REQ_F_ISREG_BIT,
Jens Axboe84557872020-03-03 15:28:17 -0700741
742 /* not a real bit, just to check we're not overflowing the space */
743 __REQ_F_LAST_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300744};
745
746enum {
747 /* ctx owns file */
748 REQ_F_FIXED_FILE = BIT(REQ_F_FIXED_FILE_BIT),
749 /* drain existing IO first */
750 REQ_F_IO_DRAIN = BIT(REQ_F_IO_DRAIN_BIT),
751 /* linked sqes */
752 REQ_F_LINK = BIT(REQ_F_LINK_BIT),
753 /* doesn't sever on completion < 0 */
754 REQ_F_HARDLINK = BIT(REQ_F_HARDLINK_BIT),
755 /* IOSQE_ASYNC */
756 REQ_F_FORCE_ASYNC = BIT(REQ_F_FORCE_ASYNC_BIT),
Jens Axboebcda7ba2020-02-23 16:42:51 -0700757 /* IOSQE_BUFFER_SELECT */
758 REQ_F_BUFFER_SELECT = BIT(REQ_F_BUFFER_SELECT_BIT),
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300759
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300760 /* fail rest of links */
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +0100761 REQ_F_FAIL = BIT(REQ_F_FAIL_BIT),
Pavel Begunkovb05a1bc2021-03-04 13:59:24 +0000762 /* on inflight list, should be cancelled and waited on exit reliably */
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300763 REQ_F_INFLIGHT = BIT(REQ_F_INFLIGHT_BIT),
764 /* read/write uses file position */
765 REQ_F_CUR_POS = BIT(REQ_F_CUR_POS_BIT),
766 /* must not punt to workers */
767 REQ_F_NOWAIT = BIT(REQ_F_NOWAIT_BIT),
Pavel Begunkov900fad42020-10-19 16:39:16 +0100768 /* has or had linked timeout */
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300769 REQ_F_LINK_TIMEOUT = BIT(REQ_F_LINK_TIMEOUT_BIT),
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300770 /* needs cleanup */
771 REQ_F_NEED_CLEANUP = BIT(REQ_F_NEED_CLEANUP_BIT),
Jens Axboed7718a92020-02-14 22:23:12 -0700772 /* already went through poll handler */
773 REQ_F_POLLED = BIT(REQ_F_POLLED_BIT),
Jens Axboebcda7ba2020-02-23 16:42:51 -0700774 /* buffer already selected */
775 REQ_F_BUFFER_SELECTED = BIT(REQ_F_BUFFER_SELECTED_BIT),
Pavel Begunkove342c802021-01-19 13:32:47 +0000776 /* completion is deferred through io_comp_state */
777 REQ_F_COMPLETE_INLINE = BIT(REQ_F_COMPLETE_INLINE_BIT),
Jens Axboe230d50d2021-04-01 20:41:15 -0600778 /* caller should reissue async */
779 REQ_F_REISSUE = BIT(REQ_F_REISSUE_BIT),
Jens Axboe7b29f922021-03-12 08:30:14 -0700780 /* supports async reads */
Pavel Begunkovb191e2d2021-08-09 13:04:03 +0100781 REQ_F_NOWAIT_READ = BIT(REQ_F_NOWAIT_READ_BIT),
Jens Axboe7b29f922021-03-12 08:30:14 -0700782 /* supports async writes */
Pavel Begunkovb191e2d2021-08-09 13:04:03 +0100783 REQ_F_NOWAIT_WRITE = BIT(REQ_F_NOWAIT_WRITE_BIT),
Jens Axboe7b29f922021-03-12 08:30:14 -0700784 /* regular file */
785 REQ_F_ISREG = BIT(REQ_F_ISREG_BIT),
Pavel Begunkovb8e64b52021-06-17 18:14:02 +0100786 /* has creds assigned */
787 REQ_F_CREDS = BIT(REQ_F_CREDS_BIT),
Pavel Begunkov20e60a32021-08-11 19:28:30 +0100788 /* skip refcounting if not set */
789 REQ_F_REFCOUNT = BIT(REQ_F_REFCOUNT_BIT),
Pavel Begunkov4d13d1a2021-08-15 10:40:24 +0100790 /* there is a linked timeout that has to be armed */
791 REQ_F_ARM_LTIMEOUT = BIT(REQ_F_ARM_LTIMEOUT_BIT),
Jens Axboed7718a92020-02-14 22:23:12 -0700792};
793
794struct async_poll {
795 struct io_poll_iocb poll;
Jens Axboe807abcb2020-07-17 17:09:27 -0600796 struct io_poll_iocb *double_poll;
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300797};
798
Pavel Begunkovf237c302021-08-18 12:42:46 +0100799typedef void (*io_req_tw_func_t)(struct io_kiocb *req, bool *locked);
Pavel Begunkov5b0a6ac2021-06-30 21:54:04 +0100800
Jens Axboe7cbf1722021-02-10 00:03:20 +0000801struct io_task_work {
Pavel Begunkov5b0a6ac2021-06-30 21:54:04 +0100802 union {
803 struct io_wq_work_node node;
804 struct llist_node fallback_node;
805 };
806 io_req_tw_func_t func;
Jens Axboe7cbf1722021-02-10 00:03:20 +0000807};
808
Pavel Begunkov992da012021-06-10 16:37:37 +0100809enum {
810 IORING_RSRC_FILE = 0,
811 IORING_RSRC_BUFFER = 1,
812};
813
Jens Axboe09bb8392019-03-13 12:39:28 -0600814/*
815 * NOTE! Each of the iocb union members has the file pointer
816 * as the first entry in their struct definition. So you can
817 * access the file pointer through any of the sub-structs,
818 * or directly as just 'ki_filp' in this struct.
819 */
Jens Axboe2b188cc2019-01-07 10:46:33 -0700820struct io_kiocb {
Jens Axboe221c5eb2019-01-17 09:41:58 -0700821 union {
Jens Axboe09bb8392019-03-13 12:39:28 -0600822 struct file *file;
Jens Axboe9adbd452019-12-20 08:45:55 -0700823 struct io_rw rw;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700824 struct io_poll_iocb poll;
Pavel Begunkov9d805892021-04-13 02:58:40 +0100825 struct io_poll_update poll_update;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700826 struct io_accept accept;
827 struct io_sync sync;
Jens Axboefbf23842019-12-17 18:45:56 -0700828 struct io_cancel cancel;
Jens Axboeb29472e2019-12-17 18:50:29 -0700829 struct io_timeout timeout;
Pavel Begunkov0bdf7a22020-10-10 18:34:10 +0100830 struct io_timeout_rem timeout_rem;
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700831 struct io_connect connect;
Jens Axboee47293f2019-12-20 08:58:21 -0700832 struct io_sr_msg sr_msg;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700833 struct io_open open;
Jens Axboeb5dba592019-12-11 14:02:38 -0700834 struct io_close close;
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +0000835 struct io_rsrc_update rsrc_update;
Jens Axboe4840e412019-12-25 22:03:45 -0700836 struct io_fadvise fadvise;
Jens Axboec1ca7572019-12-25 22:18:28 -0700837 struct io_madvise madvise;
Jens Axboe3e4827b2020-01-08 15:18:09 -0700838 struct io_epoll epoll;
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300839 struct io_splice splice;
Jens Axboeddf0322d2020-02-23 16:41:33 -0700840 struct io_provide_buf pbuf;
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -0700841 struct io_statx statx;
Jens Axboe36f4fa62020-09-05 11:14:22 -0600842 struct io_shutdown shutdown;
Jens Axboe80a261f2020-09-28 14:23:58 -0600843 struct io_rename rename;
Jens Axboe14a11432020-09-28 14:27:37 -0600844 struct io_unlink unlink;
Dmitry Kadasheve34a02d2021-07-08 13:34:45 +0700845 struct io_mkdir mkdir;
Dmitry Kadashev7a8721f2021-07-08 13:34:46 +0700846 struct io_symlink symlink;
Dmitry Kadashevcf30da92021-07-08 13:34:47 +0700847 struct io_hardlink hardlink;
Pavel Begunkov3ca405e2020-07-13 23:37:08 +0300848 /* use only after cleaning per-op data, see io_clean_op() */
849 struct io_completion compl;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700850 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700851
Jens Axboee8c2bc12020-08-15 18:44:09 -0700852 /* opcode allocated if it needs to store data for async defer */
853 void *async_data;
Jens Axboed625c6e2019-12-17 19:53:05 -0700854 u8 opcode;
Xiaoguang Wang65a65432020-06-11 23:39:36 +0800855 /* polled IO has completed */
856 u8 iopoll_completed;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700857
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -0700858 u16 buf_index;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +0300859 u32 result;
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -0700860
Pavel Begunkov010e8e62020-07-30 18:43:45 +0300861 struct io_ring_ctx *ctx;
862 unsigned int flags;
Jens Axboeabc54d62021-02-24 13:32:30 -0700863 atomic_t refs;
Pavel Begunkov010e8e62020-07-30 18:43:45 +0300864 struct task_struct *task;
865 u64 user_data;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700866
Pavel Begunkovf2f87372020-10-27 23:25:37 +0000867 struct io_kiocb *link;
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +0000868 struct percpu_ref *fixed_rsrc_refs;
Jens Axboed7718a92020-02-14 22:23:12 -0700869
Pavel Begunkovb303fe22021-04-11 01:46:26 +0100870 /* used with ctx->iopoll_list with reads/writes */
Pavel Begunkov010e8e62020-07-30 18:43:45 +0300871 struct list_head inflight_entry;
Pavel Begunkov5b0a6ac2021-06-30 21:54:04 +0100872 struct io_task_work io_task_work;
Pavel Begunkov010e8e62020-07-30 18:43:45 +0300873 /* for polled requests, i.e. IORING_OP_POLL_ADD and async armed poll */
874 struct hlist_node hash_node;
875 struct async_poll *apoll;
876 struct io_wq_work work;
Pavel Begunkovfe7e3252021-06-24 15:09:57 +0100877 const struct cred *creds;
Pavel Begunkovc10d1f92021-06-17 18:14:01 +0100878
Pavel Begunkov6f33b0b2021-09-24 21:59:44 +0100879 struct io_wq_work_node comp_list;
880
Pavel Begunkoveae071c2021-04-25 14:32:24 +0100881 /* store used ubuf, so we can prevent reloading */
882 struct io_mapped_ubuf *imu;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700883};
884
Pavel Begunkov13bf43f2021-03-06 11:02:12 +0000885struct io_tctx_node {
886 struct list_head ctx_node;
887 struct task_struct *task;
Pavel Begunkov13bf43f2021-03-06 11:02:12 +0000888 struct io_ring_ctx *ctx;
889};
890
Pavel Begunkov27dc8332020-07-13 23:37:14 +0300891struct io_defer_entry {
892 struct list_head list;
893 struct io_kiocb *req;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +0300894 u32 seq;
Pavel Begunkov27dc8332020-07-13 23:37:14 +0300895};
896
Jens Axboed3656342019-12-18 09:50:26 -0700897struct io_op_def {
Jens Axboed3656342019-12-18 09:50:26 -0700898 /* needs req->file assigned */
899 unsigned needs_file : 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 Axboe66f4af92020-01-16 15:36:52 -0700904 /* opcode is not supported by this kernel */
905 unsigned not_supported : 1;
Jens Axboe8a727582020-02-20 09:59:44 -0700906 /* set if opcode supports polled "wait" */
907 unsigned pollin : 1;
908 unsigned pollout : 1;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700909 /* op supports buffer selection */
910 unsigned buffer_select : 1;
Pavel Begunkov26f05052021-02-28 22:35:18 +0000911 /* do prep async if is going to be punted */
912 unsigned needs_async_setup : 1;
Jens Axboe27926b62020-10-28 09:33:23 -0600913 /* should block plug */
914 unsigned plug : 1;
Jens Axboee8c2bc12020-08-15 18:44:09 -0700915 /* size of async data needed, if any */
916 unsigned short async_size;
Jens Axboed3656342019-12-18 09:50:26 -0700917};
918
Jens Axboe09186822020-10-13 15:01:40 -0600919static const struct io_op_def io_op_defs[] = {
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300920 [IORING_OP_NOP] = {},
921 [IORING_OP_READV] = {
Jens Axboed3656342019-12-18 09:50:26 -0700922 .needs_file = 1,
923 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700924 .pollin = 1,
Jens Axboe4d954c22020-02-27 07:31:19 -0700925 .buffer_select = 1,
Pavel Begunkov26f05052021-02-28 22:35:18 +0000926 .needs_async_setup = 1,
Jens Axboe27926b62020-10-28 09:33:23 -0600927 .plug = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700928 .async_size = sizeof(struct io_async_rw),
Jens Axboed3656342019-12-18 09:50:26 -0700929 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300930 [IORING_OP_WRITEV] = {
Jens Axboed3656342019-12-18 09:50:26 -0700931 .needs_file = 1,
932 .hash_reg_file = 1,
933 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700934 .pollout = 1,
Pavel Begunkov26f05052021-02-28 22:35:18 +0000935 .needs_async_setup = 1,
Jens Axboe27926b62020-10-28 09:33:23 -0600936 .plug = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700937 .async_size = sizeof(struct io_async_rw),
Jens Axboed3656342019-12-18 09:50:26 -0700938 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300939 [IORING_OP_FSYNC] = {
Jens Axboed3656342019-12-18 09:50:26 -0700940 .needs_file = 1,
941 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300942 [IORING_OP_READ_FIXED] = {
Jens Axboed3656342019-12-18 09:50:26 -0700943 .needs_file = 1,
944 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700945 .pollin = 1,
Jens Axboe27926b62020-10-28 09:33:23 -0600946 .plug = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700947 .async_size = sizeof(struct io_async_rw),
Jens Axboed3656342019-12-18 09:50:26 -0700948 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300949 [IORING_OP_WRITE_FIXED] = {
Jens Axboed3656342019-12-18 09:50:26 -0700950 .needs_file = 1,
951 .hash_reg_file = 1,
952 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700953 .pollout = 1,
Jens Axboe27926b62020-10-28 09:33:23 -0600954 .plug = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700955 .async_size = sizeof(struct io_async_rw),
Jens Axboed3656342019-12-18 09:50:26 -0700956 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300957 [IORING_OP_POLL_ADD] = {
Jens Axboed3656342019-12-18 09:50:26 -0700958 .needs_file = 1,
959 .unbound_nonreg_file = 1,
960 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300961 [IORING_OP_POLL_REMOVE] = {},
962 [IORING_OP_SYNC_FILE_RANGE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700963 .needs_file = 1,
964 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300965 [IORING_OP_SENDMSG] = {
Jens Axboed3656342019-12-18 09:50:26 -0700966 .needs_file = 1,
967 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700968 .pollout = 1,
Pavel Begunkov26f05052021-02-28 22:35:18 +0000969 .needs_async_setup = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700970 .async_size = sizeof(struct io_async_msghdr),
Jens Axboed3656342019-12-18 09:50:26 -0700971 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300972 [IORING_OP_RECVMSG] = {
Jens Axboed3656342019-12-18 09:50:26 -0700973 .needs_file = 1,
974 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700975 .pollin = 1,
Jens Axboe52de1fe2020-02-27 10:15:42 -0700976 .buffer_select = 1,
Pavel Begunkov26f05052021-02-28 22:35:18 +0000977 .needs_async_setup = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700978 .async_size = sizeof(struct io_async_msghdr),
Jens Axboed3656342019-12-18 09:50:26 -0700979 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300980 [IORING_OP_TIMEOUT] = {
Jens Axboee8c2bc12020-08-15 18:44:09 -0700981 .async_size = sizeof(struct io_timeout_data),
Jens Axboed3656342019-12-18 09:50:26 -0700982 },
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +0000983 [IORING_OP_TIMEOUT_REMOVE] = {
984 /* used by timeout updates' prep() */
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +0000985 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300986 [IORING_OP_ACCEPT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700987 .needs_file = 1,
988 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700989 .pollin = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700990 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300991 [IORING_OP_ASYNC_CANCEL] = {},
992 [IORING_OP_LINK_TIMEOUT] = {
Jens Axboee8c2bc12020-08-15 18:44:09 -0700993 .async_size = sizeof(struct io_timeout_data),
Jens Axboed3656342019-12-18 09:50:26 -0700994 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300995 [IORING_OP_CONNECT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700996 .needs_file = 1,
997 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700998 .pollout = 1,
Pavel Begunkov26f05052021-02-28 22:35:18 +0000999 .needs_async_setup = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -07001000 .async_size = sizeof(struct io_async_connect),
Jens Axboed3656342019-12-18 09:50:26 -07001001 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +03001002 [IORING_OP_FALLOCATE] = {
Jens Axboed3656342019-12-18 09:50:26 -07001003 .needs_file = 1,
1004 },
Jens Axboe44526be2021-02-15 13:32:18 -07001005 [IORING_OP_OPENAT] = {},
1006 [IORING_OP_CLOSE] = {},
1007 [IORING_OP_FILES_UPDATE] = {},
1008 [IORING_OP_STATX] = {},
Pavel Begunkov0463b6c2020-01-18 21:35:38 +03001009 [IORING_OP_READ] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -07001010 .needs_file = 1,
1011 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -07001012 .pollin = 1,
Jens Axboebcda7ba2020-02-23 16:42:51 -07001013 .buffer_select = 1,
Jens Axboe27926b62020-10-28 09:33:23 -06001014 .plug = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -07001015 .async_size = sizeof(struct io_async_rw),
Jens Axboe3a6820f2019-12-22 15:19:35 -07001016 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +03001017 [IORING_OP_WRITE] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -07001018 .needs_file = 1,
Jens Axboe7b3188e2021-08-30 19:37:41 -06001019 .hash_reg_file = 1,
Jens Axboe3a6820f2019-12-22 15:19:35 -07001020 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -07001021 .pollout = 1,
Jens Axboe27926b62020-10-28 09:33:23 -06001022 .plug = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -07001023 .async_size = sizeof(struct io_async_rw),
Jens Axboe3a6820f2019-12-22 15:19:35 -07001024 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +03001025 [IORING_OP_FADVISE] = {
Jens Axboe4840e412019-12-25 22:03:45 -07001026 .needs_file = 1,
1027 },
Jens Axboe44526be2021-02-15 13:32:18 -07001028 [IORING_OP_MADVISE] = {},
Pavel Begunkov0463b6c2020-01-18 21:35:38 +03001029 [IORING_OP_SEND] = {
Jens Axboefddafac2020-01-04 20:19:44 -07001030 .needs_file = 1,
1031 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -07001032 .pollout = 1,
Jens Axboefddafac2020-01-04 20:19:44 -07001033 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +03001034 [IORING_OP_RECV] = {
Jens Axboefddafac2020-01-04 20:19:44 -07001035 .needs_file = 1,
1036 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -07001037 .pollin = 1,
Jens Axboebcda7ba2020-02-23 16:42:51 -07001038 .buffer_select = 1,
Jens Axboefddafac2020-01-04 20:19:44 -07001039 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +03001040 [IORING_OP_OPENAT2] = {
Jens Axboecebdb982020-01-08 17:59:24 -07001041 },
Jens Axboe3e4827b2020-01-08 15:18:09 -07001042 [IORING_OP_EPOLL_CTL] = {
1043 .unbound_nonreg_file = 1,
Jens Axboe3e4827b2020-01-08 15:18:09 -07001044 },
Pavel Begunkov7d67af22020-02-24 11:32:45 +03001045 [IORING_OP_SPLICE] = {
1046 .needs_file = 1,
1047 .hash_reg_file = 1,
1048 .unbound_nonreg_file = 1,
Jens Axboeddf0322d2020-02-23 16:41:33 -07001049 },
1050 [IORING_OP_PROVIDE_BUFFERS] = {},
Jens Axboe067524e2020-03-02 16:32:28 -07001051 [IORING_OP_REMOVE_BUFFERS] = {},
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03001052 [IORING_OP_TEE] = {
1053 .needs_file = 1,
1054 .hash_reg_file = 1,
1055 .unbound_nonreg_file = 1,
1056 },
Jens Axboe36f4fa62020-09-05 11:14:22 -06001057 [IORING_OP_SHUTDOWN] = {
1058 .needs_file = 1,
1059 },
Jens Axboe44526be2021-02-15 13:32:18 -07001060 [IORING_OP_RENAMEAT] = {},
1061 [IORING_OP_UNLINKAT] = {},
Dmitry Kadasheve34a02d2021-07-08 13:34:45 +07001062 [IORING_OP_MKDIRAT] = {},
Dmitry Kadashev7a8721f2021-07-08 13:34:46 +07001063 [IORING_OP_SYMLINKAT] = {},
Dmitry Kadashevcf30da92021-07-08 13:34:47 +07001064 [IORING_OP_LINKAT] = {},
Jens Axboed3656342019-12-18 09:50:26 -07001065};
1066
Pavel Begunkov0756a862021-08-15 10:40:25 +01001067/* requests with any of those set should undergo io_disarm_next() */
1068#define IO_DISARM_MASK (REQ_F_ARM_LTIMEOUT | REQ_F_LINK_TIMEOUT | REQ_F_FAIL)
1069
Pavel Begunkov7a612352021-03-09 00:37:59 +00001070static bool io_disarm_next(struct io_kiocb *req);
Pavel Begunkoveef51da2021-06-14 02:36:15 +01001071static void io_uring_del_tctx_node(unsigned long index);
Pavel Begunkov9936c7c2021-02-04 13:51:56 +00001072static void io_uring_try_cancel_requests(struct io_ring_ctx *ctx,
1073 struct task_struct *task,
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01001074 bool cancel_all);
Pavel Begunkov78cc6872021-06-14 02:36:23 +01001075static void io_uring_cancel_generic(bool cancel_all, struct io_sq_data *sqd);
Pavel Begunkov1ffc5422020-12-30 21:34:15 +00001076
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01001077static bool io_cqring_fill_event(struct io_ring_ctx *ctx, u64 user_data,
1078 long res, unsigned int cflags);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001079static void io_put_req(struct io_kiocb *req);
Pavel Begunkov91c2f692021-08-11 19:28:28 +01001080static void io_put_req_deferred(struct io_kiocb *req);
Jens Axboec7dae4b2021-02-09 19:53:37 -07001081static void io_dismantle_req(struct io_kiocb *req);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001082static void io_queue_linked_timeout(struct io_kiocb *req);
Pavel Begunkovfdecb662021-04-25 14:32:20 +01001083static int __io_register_rsrc_update(struct io_ring_ctx *ctx, unsigned type,
Pavel Begunkovc3bdad02021-04-25 14:32:22 +01001084 struct io_uring_rsrc_update2 *up,
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +01001085 unsigned nr_args);
Pavel Begunkov68fb8972021-03-19 17:22:41 +00001086static void io_clean_op(struct io_kiocb *req);
Pavel Begunkovac177052021-08-09 13:04:02 +01001087static struct file *io_file_get(struct io_ring_ctx *ctx,
Pavel Begunkov8371adf2020-10-10 18:34:08 +01001088 struct io_kiocb *req, int fd, bool fixed);
Pavel Begunkovc5eef2b2021-02-10 00:03:22 +00001089static void __io_queue_sqe(struct io_kiocb *req);
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00001090static void io_rsrc_put_work(struct work_struct *work);
Jens Axboede0617e2019-04-06 21:51:27 -06001091
Pavel Begunkov907d1df2021-01-26 23:35:10 +00001092static void io_req_task_queue(struct io_kiocb *req);
Pavel Begunkovc4501782021-09-08 16:40:52 +01001093static void __io_submit_flush_completions(struct io_ring_ctx *ctx);
Pavel Begunkov179ae0d2021-02-28 22:35:20 +00001094static int io_req_prep_async(struct io_kiocb *req);
Jens Axboe9a56a232019-01-09 09:06:50 -07001095
Pavel Begunkovb9445592021-08-25 12:25:45 +01001096static int io_install_fixed_file(struct io_kiocb *req, struct file *file,
1097 unsigned int issue_flags, u32 slot_index);
Pavel Begunkov7df778b2021-09-24 20:04:29 +01001098static int io_close_fixed(struct io_kiocb *req, unsigned int issue_flags);
1099
Pavel Begunkovf1042b62021-08-28 19:54:39 -06001100static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer);
Pavel Begunkovb9445592021-08-25 12:25:45 +01001101
Jens Axboe2b188cc2019-01-07 10:46:33 -07001102static struct kmem_cache *req_cachep;
1103
Jens Axboe09186822020-10-13 15:01:40 -06001104static const struct file_operations io_uring_fops;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001105
1106struct sock *io_uring_get_socket(struct file *file)
1107{
1108#if defined(CONFIG_UNIX)
1109 if (file->f_op == &io_uring_fops) {
1110 struct io_ring_ctx *ctx = file->private_data;
1111
1112 return ctx->ring_sock->sk;
1113 }
1114#endif
1115 return NULL;
1116}
1117EXPORT_SYMBOL(io_uring_get_socket);
1118
Pavel Begunkovf237c302021-08-18 12:42:46 +01001119static inline void io_tw_lock(struct io_ring_ctx *ctx, bool *locked)
1120{
1121 if (!*locked) {
1122 mutex_lock(&ctx->uring_lock);
1123 *locked = true;
1124 }
1125}
1126
Pavel Begunkovf2f87372020-10-27 23:25:37 +00001127#define io_for_each_link(pos, head) \
1128 for (pos = (head); pos; pos = pos->link)
1129
Pavel Begunkov21c843d2021-08-11 19:28:27 +01001130/*
1131 * Shamelessly stolen from the mm implementation of page reference checking,
1132 * see commit f958d7b528b1 for details.
1133 */
1134#define req_ref_zero_or_close_to_overflow(req) \
1135 ((unsigned int) atomic_read(&(req->refs)) + 127u <= 127u)
1136
1137static inline bool req_ref_inc_not_zero(struct io_kiocb *req)
1138{
Pavel Begunkov20e60a32021-08-11 19:28:30 +01001139 WARN_ON_ONCE(!(req->flags & REQ_F_REFCOUNT));
Pavel Begunkov21c843d2021-08-11 19:28:27 +01001140 return atomic_inc_not_zero(&req->refs);
1141}
1142
Pavel Begunkov21c843d2021-08-11 19:28:27 +01001143static inline bool req_ref_put_and_test(struct io_kiocb *req)
1144{
Pavel Begunkov20e60a32021-08-11 19:28:30 +01001145 if (likely(!(req->flags & REQ_F_REFCOUNT)))
1146 return true;
1147
Pavel Begunkov21c843d2021-08-11 19:28:27 +01001148 WARN_ON_ONCE(req_ref_zero_or_close_to_overflow(req));
1149 return atomic_dec_and_test(&req->refs);
1150}
1151
1152static inline void req_ref_put(struct io_kiocb *req)
1153{
Pavel Begunkov20e60a32021-08-11 19:28:30 +01001154 WARN_ON_ONCE(!(req->flags & REQ_F_REFCOUNT));
Pavel Begunkov21c843d2021-08-11 19:28:27 +01001155 WARN_ON_ONCE(req_ref_put_and_test(req));
1156}
1157
1158static inline void req_ref_get(struct io_kiocb *req)
1159{
Pavel Begunkov20e60a32021-08-11 19:28:30 +01001160 WARN_ON_ONCE(!(req->flags & REQ_F_REFCOUNT));
Pavel Begunkov21c843d2021-08-11 19:28:27 +01001161 WARN_ON_ONCE(req_ref_zero_or_close_to_overflow(req));
1162 atomic_inc(&req->refs);
1163}
1164
Pavel Begunkovc4501782021-09-08 16:40:52 +01001165static inline void io_submit_flush_completions(struct io_ring_ctx *ctx)
1166{
Pavel Begunkov6f33b0b2021-09-24 21:59:44 +01001167 if (!wq_list_empty(&ctx->submit_state.compl_reqs))
Pavel Begunkovc4501782021-09-08 16:40:52 +01001168 __io_submit_flush_completions(ctx);
1169}
1170
Pavel Begunkov48dcd382021-08-15 10:40:18 +01001171static inline void __io_req_set_refcount(struct io_kiocb *req, int nr)
Pavel Begunkov20e60a32021-08-11 19:28:30 +01001172{
1173 if (!(req->flags & REQ_F_REFCOUNT)) {
1174 req->flags |= REQ_F_REFCOUNT;
Pavel Begunkov48dcd382021-08-15 10:40:18 +01001175 atomic_set(&req->refs, nr);
Pavel Begunkov20e60a32021-08-11 19:28:30 +01001176 }
1177}
1178
Pavel Begunkov48dcd382021-08-15 10:40:18 +01001179static inline void io_req_set_refcount(struct io_kiocb *req)
1180{
1181 __io_req_set_refcount(req, 1);
1182}
1183
Pavel Begunkovb895c9a2021-04-01 15:43:40 +01001184static inline void io_req_set_rsrc_node(struct io_kiocb *req)
Jens Axboec40f6372020-06-25 15:39:59 -06001185{
Pavel Begunkov36f72fe2020-11-18 19:57:26 +00001186 struct io_ring_ctx *ctx = req->ctx;
1187
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00001188 if (!req->fixed_rsrc_refs) {
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01001189 req->fixed_rsrc_refs = &ctx->rsrc_node->refs;
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00001190 percpu_ref_get(req->fixed_rsrc_refs);
Pavel Begunkov36f72fe2020-11-18 19:57:26 +00001191 }
1192}
1193
Pavel Begunkovf70865d2021-04-11 01:46:40 +01001194static void io_refs_resurrect(struct percpu_ref *ref, struct completion *compl)
1195{
1196 bool got = percpu_ref_tryget(ref);
1197
1198 /* already at zero, wait for ->release() */
1199 if (!got)
1200 wait_for_completion(compl);
1201 percpu_ref_resurrect(ref);
1202 if (got)
1203 percpu_ref_put(ref);
1204}
1205
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01001206static bool io_match_task(struct io_kiocb *head, struct task_struct *task,
1207 bool cancel_all)
Pavel Begunkov08d23632020-11-06 13:00:22 +00001208{
1209 struct io_kiocb *req;
1210
Pavel Begunkov68207682021-03-22 01:58:25 +00001211 if (task && head->task != task)
Pavel Begunkov08d23632020-11-06 13:00:22 +00001212 return false;
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01001213 if (cancel_all)
Pavel Begunkov08d23632020-11-06 13:00:22 +00001214 return true;
1215
1216 io_for_each_link(req, head) {
Pavel Begunkovb05a1bc2021-03-04 13:59:24 +00001217 if (req->flags & REQ_F_INFLIGHT)
Jens Axboe02a13672021-01-23 15:49:31 -07001218 return true;
Pavel Begunkov08d23632020-11-06 13:00:22 +00001219 }
1220 return false;
1221}
1222
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01001223static inline void req_set_fail(struct io_kiocb *req)
Jens Axboec40f6372020-06-25 15:39:59 -06001224{
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01001225 req->flags |= REQ_F_FAIL;
Jens Axboec40f6372020-06-25 15:39:59 -06001226}
Jens Axboe4a38aed22020-05-14 17:21:15 -06001227
Hao Xua8295b92021-08-27 17:46:09 +08001228static inline void req_fail_link_node(struct io_kiocb *req, int res)
1229{
1230 req_set_fail(req);
1231 req->result = res;
1232}
1233
Jens Axboe2b188cc2019-01-07 10:46:33 -07001234static void io_ring_ctx_ref_free(struct percpu_ref *ref)
1235{
1236 struct io_ring_ctx *ctx = container_of(ref, struct io_ring_ctx, refs);
1237
Jens Axboe0f158b42020-05-14 17:18:39 -06001238 complete(&ctx->ref_comp);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001239}
1240
Pavel Begunkov8eb7e2d2020-06-29 13:13:02 +03001241static inline bool io_is_timeout_noseq(struct io_kiocb *req)
1242{
1243 return !req->timeout.off;
1244}
1245
Pavel Begunkovf56165e2021-08-09 20:18:07 +01001246static void io_fallback_req_func(struct work_struct *work)
1247{
1248 struct io_ring_ctx *ctx = container_of(work, struct io_ring_ctx,
1249 fallback_work.work);
1250 struct llist_node *node = llist_del_all(&ctx->fallback_llist);
1251 struct io_kiocb *req, *tmp;
Pavel Begunkovf237c302021-08-18 12:42:46 +01001252 bool locked = false;
Pavel Begunkovf56165e2021-08-09 20:18:07 +01001253
1254 percpu_ref_get(&ctx->refs);
1255 llist_for_each_entry_safe(req, tmp, node, io_task_work.fallback_node)
Pavel Begunkovf237c302021-08-18 12:42:46 +01001256 req->io_task_work.func(req, &locked);
Pavel Begunkov5636c002021-08-18 12:42:45 +01001257
Pavel Begunkovf237c302021-08-18 12:42:46 +01001258 if (locked) {
Pavel Begunkovc4501782021-09-08 16:40:52 +01001259 io_submit_flush_completions(ctx);
Pavel Begunkovf237c302021-08-18 12:42:46 +01001260 mutex_unlock(&ctx->uring_lock);
1261 }
Pavel Begunkovf56165e2021-08-09 20:18:07 +01001262 percpu_ref_put(&ctx->refs);
Pavel Begunkovf237c302021-08-18 12:42:46 +01001263
Pavel Begunkovf56165e2021-08-09 20:18:07 +01001264}
1265
Jens Axboe2b188cc2019-01-07 10:46:33 -07001266static struct io_ring_ctx *io_ring_ctx_alloc(struct io_uring_params *p)
1267{
1268 struct io_ring_ctx *ctx;
Jens Axboe78076bb2019-12-04 19:56:40 -07001269 int hash_bits;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001270
1271 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
1272 if (!ctx)
1273 return NULL;
1274
Jens Axboe78076bb2019-12-04 19:56:40 -07001275 /*
1276 * Use 5 bits less than the max cq entries, that should give us around
1277 * 32 entries per hash list if totally full and uniformly spread.
1278 */
1279 hash_bits = ilog2(p->cq_entries);
1280 hash_bits -= 5;
1281 if (hash_bits <= 0)
1282 hash_bits = 1;
1283 ctx->cancel_hash_bits = hash_bits;
1284 ctx->cancel_hash = kmalloc((1U << hash_bits) * sizeof(struct hlist_head),
1285 GFP_KERNEL);
1286 if (!ctx->cancel_hash)
1287 goto err;
1288 __hash_init(ctx->cancel_hash, 1U << hash_bits);
1289
Pavel Begunkov62248432021-04-28 13:11:29 +01001290 ctx->dummy_ubuf = kzalloc(sizeof(*ctx->dummy_ubuf), GFP_KERNEL);
1291 if (!ctx->dummy_ubuf)
1292 goto err;
1293 /* set invalid range, so io_import_fixed() fails meeting it */
1294 ctx->dummy_ubuf->ubuf = -1UL;
1295
Roman Gushchin21482892019-05-07 10:01:48 -07001296 if (percpu_ref_init(&ctx->refs, io_ring_ctx_ref_free,
Jens Axboe206aefd2019-11-07 18:27:42 -07001297 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL))
1298 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001299
1300 ctx->flags = p->flags;
Jens Axboe90554202020-09-03 12:12:41 -06001301 init_waitqueue_head(&ctx->sqo_sq_wait);
Jens Axboe69fb2132020-09-14 11:16:23 -06001302 INIT_LIST_HEAD(&ctx->sqd_list);
Pavel Begunkov311997b2021-06-14 23:37:28 +01001303 init_waitqueue_head(&ctx->poll_wait);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001304 INIT_LIST_HEAD(&ctx->cq_overflow_list);
Jens Axboe0f158b42020-05-14 17:18:39 -06001305 init_completion(&ctx->ref_comp);
Jens Axboe9e15c3a2021-03-13 12:29:43 -07001306 xa_init_flags(&ctx->io_buffers, XA_FLAGS_ALLOC1);
Matthew Wilcox (Oracle)61cf9372021-03-08 14:16:16 +00001307 xa_init_flags(&ctx->personalities, XA_FLAGS_ALLOC1);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001308 mutex_init(&ctx->uring_lock);
Pavel Begunkov311997b2021-06-14 23:37:28 +01001309 init_waitqueue_head(&ctx->cq_wait);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001310 spin_lock_init(&ctx->completion_lock);
Jens Axboe89850fc2021-08-10 15:11:51 -06001311 spin_lock_init(&ctx->timeout_lock);
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01001312 INIT_WQ_LIST(&ctx->iopoll_list);
Jens Axboede0617e2019-04-06 21:51:27 -06001313 INIT_LIST_HEAD(&ctx->defer_list);
Jens Axboe5262f562019-09-17 12:26:57 -06001314 INIT_LIST_HEAD(&ctx->timeout_list);
Pavel Begunkovef9dd632021-08-28 19:54:38 -06001315 INIT_LIST_HEAD(&ctx->ltimeout_list);
Bijan Mottahedehd67d2262021-01-15 17:37:46 +00001316 spin_lock_init(&ctx->rsrc_ref_lock);
1317 INIT_LIST_HEAD(&ctx->rsrc_ref_list);
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00001318 INIT_DELAYED_WORK(&ctx->rsrc_put_work, io_rsrc_put_work);
1319 init_llist_head(&ctx->rsrc_put_llist);
Pavel Begunkov13bf43f2021-03-06 11:02:12 +00001320 INIT_LIST_HEAD(&ctx->tctx_list);
Pavel Begunkovc2b6c6b2021-09-24 21:59:47 +01001321 ctx->submit_state.free_list.next = NULL;
1322 INIT_WQ_LIST(&ctx->locked_free_list);
Pavel Begunkov9011bf92021-06-30 21:54:03 +01001323 INIT_DELAYED_WORK(&ctx->fallback_work, io_fallback_req_func);
Pavel Begunkov6f33b0b2021-09-24 21:59:44 +01001324 INIT_WQ_LIST(&ctx->submit_state.compl_reqs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001325 return ctx;
Jens Axboe206aefd2019-11-07 18:27:42 -07001326err:
Pavel Begunkov62248432021-04-28 13:11:29 +01001327 kfree(ctx->dummy_ubuf);
Jens Axboe78076bb2019-12-04 19:56:40 -07001328 kfree(ctx->cancel_hash);
Jens Axboe206aefd2019-11-07 18:27:42 -07001329 kfree(ctx);
1330 return NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001331}
1332
Pavel Begunkov8f6ed492021-05-16 22:58:10 +01001333static void io_account_cq_overflow(struct io_ring_ctx *ctx)
1334{
1335 struct io_rings *r = ctx->rings;
1336
1337 WRITE_ONCE(r->cq_overflow, READ_ONCE(r->cq_overflow) + 1);
1338 ctx->cq_extra--;
1339}
1340
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03001341static bool req_need_defer(struct io_kiocb *req, u32 seq)
Jens Axboede0617e2019-04-06 21:51:27 -06001342{
Jens Axboe2bc99302020-07-09 09:43:27 -06001343 if (unlikely(req->flags & REQ_F_IO_DRAIN)) {
1344 struct io_ring_ctx *ctx = req->ctx;
Jackie Liua197f662019-11-08 08:09:12 -07001345
Pavel Begunkov8f6ed492021-05-16 22:58:10 +01001346 return seq + READ_ONCE(ctx->cq_extra) != ctx->cached_cq_tail;
Jens Axboe2bc99302020-07-09 09:43:27 -06001347 }
Jens Axboe7adf4ea2019-10-10 21:42:58 -06001348
Bob Liu9d858b22019-11-13 18:06:25 +08001349 return false;
Jens Axboe7adf4ea2019-10-10 21:42:58 -06001350}
1351
Pavel Begunkovc97d8a02021-08-09 13:04:04 +01001352#define FFS_ASYNC_READ 0x1UL
1353#define FFS_ASYNC_WRITE 0x2UL
1354#ifdef CONFIG_64BIT
1355#define FFS_ISREG 0x4UL
1356#else
1357#define FFS_ISREG 0x0UL
1358#endif
1359#define FFS_MASK ~(FFS_ASYNC_READ|FFS_ASYNC_WRITE|FFS_ISREG)
1360
1361static inline bool io_req_ffs_set(struct io_kiocb *req)
1362{
1363 return IS_ENABLED(CONFIG_64BIT) && (req->flags & REQ_F_FIXED_FILE);
1364}
1365
Pavel Begunkovce3d5aa2021-02-01 18:59:55 +00001366static void io_req_track_inflight(struct io_kiocb *req)
1367{
Pavel Begunkovce3d5aa2021-02-01 18:59:55 +00001368 if (!(req->flags & REQ_F_INFLIGHT)) {
Pavel Begunkovce3d5aa2021-02-01 18:59:55 +00001369 req->flags |= REQ_F_INFLIGHT;
Pavel Begunkovb303fe22021-04-11 01:46:26 +01001370 atomic_inc(&current->io_uring->inflight_tracked);
Pavel Begunkovce3d5aa2021-02-01 18:59:55 +00001371 }
1372}
1373
Pavel Begunkov906c6ca2021-08-15 10:40:26 +01001374static inline void io_unprep_linked_timeout(struct io_kiocb *req)
1375{
1376 req->flags &= ~REQ_F_LINK_TIMEOUT;
1377}
1378
Pavel Begunkovfd08e532021-08-11 19:28:31 +01001379static struct io_kiocb *__io_prep_linked_timeout(struct io_kiocb *req)
1380{
Pavel Begunkov906c6ca2021-08-15 10:40:26 +01001381 if (WARN_ON_ONCE(!req->link))
1382 return NULL;
1383
Pavel Begunkov4d13d1a2021-08-15 10:40:24 +01001384 req->flags &= ~REQ_F_ARM_LTIMEOUT;
1385 req->flags |= REQ_F_LINK_TIMEOUT;
Pavel Begunkovfd08e532021-08-11 19:28:31 +01001386
1387 /* linked timeouts should have two refs once prep'ed */
Pavel Begunkov48dcd382021-08-15 10:40:18 +01001388 io_req_set_refcount(req);
Pavel Begunkov4d13d1a2021-08-15 10:40:24 +01001389 __io_req_set_refcount(req->link, 2);
1390 return req->link;
Pavel Begunkovfd08e532021-08-11 19:28:31 +01001391}
1392
1393static inline struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req)
1394{
Pavel Begunkov4d13d1a2021-08-15 10:40:24 +01001395 if (likely(!(req->flags & REQ_F_ARM_LTIMEOUT)))
Pavel Begunkovfd08e532021-08-11 19:28:31 +01001396 return NULL;
1397 return __io_prep_linked_timeout(req);
1398}
1399
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001400static void io_prep_async_work(struct io_kiocb *req)
Jens Axboe561fb042019-10-24 07:25:42 -06001401{
Jens Axboed3656342019-12-18 09:50:26 -07001402 const struct io_op_def *def = &io_op_defs[req->opcode];
Pavel Begunkov23329512020-10-10 18:34:06 +01001403 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe54a91f32019-09-10 09:15:04 -06001404
Pavel Begunkovb8e64b52021-06-17 18:14:02 +01001405 if (!(req->flags & REQ_F_CREDS)) {
1406 req->flags |= REQ_F_CREDS;
Pavel Begunkovc10d1f92021-06-17 18:14:01 +01001407 req->creds = get_current_cred();
Pavel Begunkovb8e64b52021-06-17 18:14:02 +01001408 }
Jens Axboe003e8dc2021-03-06 09:22:27 -07001409
Pavel Begunkove1d675d2021-03-22 01:58:29 +00001410 req->work.list.next = NULL;
1411 req->work.flags = 0;
Pavel Begunkovfeaadc42020-10-22 16:47:16 +01001412 if (req->flags & REQ_F_FORCE_ASYNC)
1413 req->work.flags |= IO_WQ_WORK_CONCURRENT;
1414
Jens Axboed3656342019-12-18 09:50:26 -07001415 if (req->flags & REQ_F_ISREG) {
Pavel Begunkov23329512020-10-10 18:34:06 +01001416 if (def->hash_reg_file || (ctx->flags & IORING_SETUP_IOPOLL))
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001417 io_wq_hash_work(&req->work, file_inode(req->file));
Jens Axboe4b982bd2021-04-01 08:38:34 -06001418 } else if (!req->file || !S_ISBLK(file_inode(req->file)->i_mode)) {
Jens Axboed3656342019-12-18 09:50:26 -07001419 if (def->unbound_nonreg_file)
Jens Axboe3529d8c2019-12-19 18:24:38 -07001420 req->work.flags |= IO_WQ_WORK_UNBOUND;
Jens Axboe54a91f32019-09-10 09:15:04 -06001421 }
Pavel Begunkove1d675d2021-03-22 01:58:29 +00001422
1423 switch (req->opcode) {
1424 case IORING_OP_SPLICE:
1425 case IORING_OP_TEE:
Pavel Begunkove1d675d2021-03-22 01:58:29 +00001426 if (!S_ISREG(file_inode(req->splice.file_in)->i_mode))
1427 req->work.flags |= IO_WQ_WORK_UNBOUND;
1428 break;
1429 }
Jens Axboe561fb042019-10-24 07:25:42 -06001430}
1431
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001432static void io_prep_async_link(struct io_kiocb *req)
1433{
1434 struct io_kiocb *cur;
1435
Pavel Begunkov44eff402021-07-26 14:14:31 +01001436 if (req->flags & REQ_F_LINK_TIMEOUT) {
1437 struct io_ring_ctx *ctx = req->ctx;
1438
Jens Axboe79ebeae2021-08-10 15:18:27 -06001439 spin_lock(&ctx->completion_lock);
Pavel Begunkov44eff402021-07-26 14:14:31 +01001440 io_for_each_link(cur, req)
1441 io_prep_async_work(cur);
Jens Axboe79ebeae2021-08-10 15:18:27 -06001442 spin_unlock(&ctx->completion_lock);
Pavel Begunkov44eff402021-07-26 14:14:31 +01001443 } else {
1444 io_for_each_link(cur, req)
1445 io_prep_async_work(cur);
1446 }
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001447}
1448
Pavel Begunkovf237c302021-08-18 12:42:46 +01001449static void io_queue_async_work(struct io_kiocb *req, bool *locked)
Jens Axboe561fb042019-10-24 07:25:42 -06001450{
Jackie Liua197f662019-11-08 08:09:12 -07001451 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001452 struct io_kiocb *link = io_prep_linked_timeout(req);
Jens Axboe5aa75ed2021-02-16 12:56:50 -07001453 struct io_uring_task *tctx = req->task->io_uring;
Jens Axboe561fb042019-10-24 07:25:42 -06001454
Pavel Begunkovf237c302021-08-18 12:42:46 +01001455 /* must not take the lock, NULL it as a precaution */
1456 locked = NULL;
1457
Jens Axboe3bfe6102021-02-16 14:15:30 -07001458 BUG_ON(!tctx);
1459 BUG_ON(!tctx->io_wq);
Jens Axboe561fb042019-10-24 07:25:42 -06001460
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001461 /* init ->work of the whole link before punting */
1462 io_prep_async_link(req);
Jens Axboe991468d2021-07-23 11:53:54 -06001463
1464 /*
1465 * Not expected to happen, but if we do have a bug where this _can_
1466 * happen, catch it here and ensure the request is marked as
1467 * canceled. That will make io-wq go through the usual work cancel
1468 * procedure rather than attempt to run this request (or create a new
1469 * worker for it).
1470 */
1471 if (WARN_ON_ONCE(!same_thread_group(req->task, current)))
1472 req->work.flags |= IO_WQ_WORK_CANCEL;
1473
Pavel Begunkovd07f1e8a2021-03-22 01:45:58 +00001474 trace_io_uring_queue_async_work(ctx, io_wq_is_hashed(&req->work), req,
1475 &req->work, req->flags);
Pavel Begunkovebf93662021-03-01 18:20:47 +00001476 io_wq_enqueue(tctx->io_wq, &req->work);
Jens Axboe7271ef32020-08-10 09:55:22 -06001477 if (link)
1478 io_queue_linked_timeout(link);
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001479}
1480
Pavel Begunkov1ee41602021-03-25 18:32:42 +00001481static void io_kill_timeout(struct io_kiocb *req, int status)
Pavel Begunkov8c855882021-04-13 02:58:41 +01001482 __must_hold(&req->ctx->completion_lock)
Jens Axboe89850fc2021-08-10 15:11:51 -06001483 __must_hold(&req->ctx->timeout_lock)
Jens Axboe5262f562019-09-17 12:26:57 -06001484{
Jens Axboee8c2bc12020-08-15 18:44:09 -07001485 struct io_timeout_data *io = req->async_data;
Jens Axboe5262f562019-09-17 12:26:57 -06001486
Pavel Begunkovfd9c7bc2021-04-13 02:58:42 +01001487 if (hrtimer_try_to_cancel(&io->timer) != -1) {
Pavel Begunkov2ae2eb92021-09-09 13:56:27 +01001488 if (status)
1489 req_set_fail(req);
Pavel Begunkov01cec8c2020-07-30 18:43:50 +03001490 atomic_set(&req->ctx->cq_timeouts,
1491 atomic_read(&req->ctx->cq_timeouts) + 1);
Pavel Begunkov135fcde2020-07-13 23:37:12 +03001492 list_del_init(&req->timeout.list);
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01001493 io_cqring_fill_event(req->ctx, req->user_data, status, 0);
Pavel Begunkov91c2f692021-08-11 19:28:28 +01001494 io_put_req_deferred(req);
Jens Axboe5262f562019-09-17 12:26:57 -06001495 }
1496}
1497
Pavel Begunkov441b8a72021-06-14 23:37:31 +01001498static void io_queue_deferred(struct io_ring_ctx *ctx)
Pavel Begunkov04518942020-05-26 20:34:05 +03001499{
Pavel Begunkov441b8a72021-06-14 23:37:31 +01001500 while (!list_empty(&ctx->defer_list)) {
Pavel Begunkov27dc8332020-07-13 23:37:14 +03001501 struct io_defer_entry *de = list_first_entry(&ctx->defer_list,
1502 struct io_defer_entry, list);
Pavel Begunkov04518942020-05-26 20:34:05 +03001503
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03001504 if (req_need_defer(de->req, de->seq))
Pavel Begunkov04518942020-05-26 20:34:05 +03001505 break;
Pavel Begunkov27dc8332020-07-13 23:37:14 +03001506 list_del_init(&de->list);
Pavel Begunkov907d1df2021-01-26 23:35:10 +00001507 io_req_task_queue(de->req);
Pavel Begunkov27dc8332020-07-13 23:37:14 +03001508 kfree(de);
Pavel Begunkov441b8a72021-06-14 23:37:31 +01001509 }
Pavel Begunkov04518942020-05-26 20:34:05 +03001510}
1511
Pavel Begunkov360428f2020-05-30 14:54:17 +03001512static void io_flush_timeouts(struct io_ring_ctx *ctx)
Jens Axboe89850fc2021-08-10 15:11:51 -06001513 __must_hold(&ctx->completion_lock)
Pavel Begunkov360428f2020-05-30 14:54:17 +03001514{
Pavel Begunkov441b8a72021-06-14 23:37:31 +01001515 u32 seq = ctx->cached_cq_tail - atomic_read(&ctx->cq_timeouts);
Marcelo Diop-Gonzalezf0105052021-01-15 11:54:40 -05001516
Jens Axboe79ebeae2021-08-10 15:18:27 -06001517 spin_lock_irq(&ctx->timeout_lock);
Pavel Begunkovf18ee4c2021-06-14 23:37:25 +01001518 while (!list_empty(&ctx->timeout_list)) {
Marcelo Diop-Gonzalezf0105052021-01-15 11:54:40 -05001519 u32 events_needed, events_got;
Pavel Begunkov360428f2020-05-30 14:54:17 +03001520 struct io_kiocb *req = list_first_entry(&ctx->timeout_list,
Pavel Begunkov135fcde2020-07-13 23:37:12 +03001521 struct io_kiocb, timeout.list);
Pavel Begunkov360428f2020-05-30 14:54:17 +03001522
Pavel Begunkov8eb7e2d2020-06-29 13:13:02 +03001523 if (io_is_timeout_noseq(req))
Pavel Begunkov360428f2020-05-30 14:54:17 +03001524 break;
Marcelo Diop-Gonzalezf0105052021-01-15 11:54:40 -05001525
1526 /*
1527 * Since seq can easily wrap around over time, subtract
1528 * the last seq at which timeouts were flushed before comparing.
1529 * Assuming not more than 2^31-1 events have happened since,
1530 * these subtractions won't have wrapped, so we can check if
1531 * target is in [last_seq, current_seq] by comparing the two.
1532 */
1533 events_needed = req->timeout.target_seq - ctx->cq_last_tm_flush;
1534 events_got = seq - ctx->cq_last_tm_flush;
1535 if (events_got < events_needed)
Pavel Begunkov360428f2020-05-30 14:54:17 +03001536 break;
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03001537
Pavel Begunkov135fcde2020-07-13 23:37:12 +03001538 list_del_init(&req->timeout.list);
Pavel Begunkov1ee41602021-03-25 18:32:42 +00001539 io_kill_timeout(req, 0);
Pavel Begunkovf18ee4c2021-06-14 23:37:25 +01001540 }
Marcelo Diop-Gonzalezf0105052021-01-15 11:54:40 -05001541 ctx->cq_last_tm_flush = seq;
Jens Axboe79ebeae2021-08-10 15:18:27 -06001542 spin_unlock_irq(&ctx->timeout_lock);
Pavel Begunkov360428f2020-05-30 14:54:17 +03001543}
1544
Pavel Begunkov2335f6f2021-06-15 16:47:58 +01001545static void __io_commit_cqring_flush(struct io_ring_ctx *ctx)
Jens Axboede0617e2019-04-06 21:51:27 -06001546{
Pavel Begunkov2335f6f2021-06-15 16:47:58 +01001547 if (ctx->off_timeout_used)
1548 io_flush_timeouts(ctx);
1549 if (ctx->drain_active)
1550 io_queue_deferred(ctx);
1551}
1552
1553static inline void io_commit_cqring(struct io_ring_ctx *ctx)
1554{
1555 if (unlikely(ctx->off_timeout_used || ctx->drain_active))
1556 __io_commit_cqring_flush(ctx);
Pavel Begunkovec30e042021-01-19 13:32:38 +00001557 /* order cqe stores with ring update */
1558 smp_store_release(&ctx->rings->cq.tail, ctx->cached_cq_tail);
Jens Axboede0617e2019-04-06 21:51:27 -06001559}
1560
Jens Axboe90554202020-09-03 12:12:41 -06001561static inline bool io_sqring_full(struct io_ring_ctx *ctx)
1562{
1563 struct io_rings *r = ctx->rings;
1564
Pavel Begunkova566c552021-05-16 22:58:08 +01001565 return READ_ONCE(r->sq.tail) - ctx->cached_sq_head == ctx->sq_entries;
Jens Axboe90554202020-09-03 12:12:41 -06001566}
1567
Pavel Begunkov888aae22021-01-19 13:32:39 +00001568static inline unsigned int __io_cqring_events(struct io_ring_ctx *ctx)
1569{
1570 return ctx->cached_cq_tail - READ_ONCE(ctx->rings->cq.head);
1571}
1572
Pavel Begunkovd068b502021-05-16 22:58:11 +01001573static inline struct io_uring_cqe *io_get_cqe(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001574{
Hristo Venev75b28af2019-08-26 17:23:46 +00001575 struct io_rings *rings = ctx->rings;
Pavel Begunkovea5ab3b2021-05-16 22:58:09 +01001576 unsigned tail, mask = ctx->cq_entries - 1;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001577
Stefan Bühler115e12e2019-04-24 23:54:18 +02001578 /*
1579 * writes to the cq entry need to come after reading head; the
1580 * control dependency is enough as we're using WRITE_ONCE to
1581 * fill the cq entry
1582 */
Pavel Begunkova566c552021-05-16 22:58:08 +01001583 if (__io_cqring_events(ctx) == ctx->cq_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001584 return NULL;
1585
Pavel Begunkov888aae22021-01-19 13:32:39 +00001586 tail = ctx->cached_cq_tail++;
Pavel Begunkovea5ab3b2021-05-16 22:58:09 +01001587 return &rings->cqes[tail & mask];
Jens Axboe2b188cc2019-01-07 10:46:33 -07001588}
1589
Jens Axboef2842ab2020-01-08 11:04:00 -07001590static inline bool io_should_trigger_evfd(struct io_ring_ctx *ctx)
1591{
Pavel Begunkov44c769d2021-04-11 01:46:31 +01001592 if (likely(!ctx->cq_ev_fd))
Jens Axboef0b493e2020-02-01 21:30:11 -07001593 return false;
Stefano Garzarella7e55a192020-05-15 18:38:05 +02001594 if (READ_ONCE(ctx->rings->cq_flags) & IORING_CQ_EVENTFD_DISABLED)
1595 return false;
Pavel Begunkov44c769d2021-04-11 01:46:31 +01001596 return !ctx->eventfd_async || io_wq_current_is_worker();
Jens Axboef2842ab2020-01-08 11:04:00 -07001597}
1598
Jens Axboe2c5d7632021-08-21 07:21:19 -06001599/*
1600 * This should only get called when at least one event has been posted.
1601 * Some applications rely on the eventfd notification count only changing
1602 * IFF a new CQE has been added to the CQ ring. There's no depedency on
1603 * 1:1 relationship between how many times this function is called (and
1604 * hence the eventfd count) and number of CQEs posted to the CQ ring.
1605 */
Jens Axboeb41e9852020-02-17 09:52:41 -07001606static void io_cqring_ev_posted(struct io_ring_ctx *ctx)
Jens Axboe8c838782019-03-12 15:48:16 -06001607{
Jens Axboe5fd46172021-08-06 14:04:31 -06001608 /*
1609 * wake_up_all() may seem excessive, but io_wake_function() and
1610 * io_should_wake() handle the termination of the loop and only
1611 * wake as many waiters as we need to.
1612 */
1613 if (wq_has_sleeper(&ctx->cq_wait))
1614 wake_up_all(&ctx->cq_wait);
Jens Axboe534ca6d2020-09-02 13:52:19 -06001615 if (ctx->sq_data && waitqueue_active(&ctx->sq_data->wait))
1616 wake_up(&ctx->sq_data->wait);
Jens Axboeb41e9852020-02-17 09:52:41 -07001617 if (io_should_trigger_evfd(ctx))
Jens Axboe9b402842019-04-11 11:45:41 -06001618 eventfd_signal(ctx->cq_ev_fd, 1);
Pavel Begunkov3f008382021-10-01 10:39:33 +01001619 if (waitqueue_active(&ctx->poll_wait))
Pavel Begunkov311997b2021-06-14 23:37:28 +01001620 wake_up_interruptible(&ctx->poll_wait);
Jens Axboe8c838782019-03-12 15:48:16 -06001621}
1622
Pavel Begunkov80c18e42021-01-07 03:15:41 +00001623static void io_cqring_ev_posted_iopoll(struct io_ring_ctx *ctx)
1624{
Pavel Begunkovc57a91fb2021-09-08 20:49:17 +01001625 /* see waitqueue_active() comment */
1626 smp_mb();
1627
Pavel Begunkov80c18e42021-01-07 03:15:41 +00001628 if (ctx->flags & IORING_SETUP_SQPOLL) {
Pavel Begunkovc57a91fb2021-09-08 20:49:17 +01001629 if (waitqueue_active(&ctx->cq_wait))
Jens Axboe5fd46172021-08-06 14:04:31 -06001630 wake_up_all(&ctx->cq_wait);
Pavel Begunkov80c18e42021-01-07 03:15:41 +00001631 }
1632 if (io_should_trigger_evfd(ctx))
1633 eventfd_signal(ctx->cq_ev_fd, 1);
Pavel Begunkov3f008382021-10-01 10:39:33 +01001634 if (waitqueue_active(&ctx->poll_wait))
Pavel Begunkov311997b2021-06-14 23:37:28 +01001635 wake_up_interruptible(&ctx->poll_wait);
Pavel Begunkov80c18e42021-01-07 03:15:41 +00001636}
1637
Jens Axboec4a2ed72019-11-21 21:01:26 -07001638/* Returns true if there are no backlogged entries after the flush */
Pavel Begunkov6c2450a2021-02-23 12:40:22 +00001639static bool __io_cqring_overflow_flush(struct io_ring_ctx *ctx, bool force)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001640{
Jens Axboeb18032b2021-01-24 16:58:56 -07001641 bool all_flushed, posted;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001642
Pavel Begunkova566c552021-05-16 22:58:08 +01001643 if (!force && __io_cqring_events(ctx) == ctx->cq_entries)
Pavel Begunkove23de152020-12-17 00:24:37 +00001644 return false;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001645
Jens Axboeb18032b2021-01-24 16:58:56 -07001646 posted = false;
Jens Axboe79ebeae2021-08-10 15:18:27 -06001647 spin_lock(&ctx->completion_lock);
Pavel Begunkov6c2450a2021-02-23 12:40:22 +00001648 while (!list_empty(&ctx->cq_overflow_list)) {
Pavel Begunkovd068b502021-05-16 22:58:11 +01001649 struct io_uring_cqe *cqe = io_get_cqe(ctx);
Pavel Begunkov6c2450a2021-02-23 12:40:22 +00001650 struct io_overflow_cqe *ocqe;
Jens Axboee6c8aa92020-09-28 13:10:13 -06001651
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001652 if (!cqe && !force)
1653 break;
Pavel Begunkov6c2450a2021-02-23 12:40:22 +00001654 ocqe = list_first_entry(&ctx->cq_overflow_list,
1655 struct io_overflow_cqe, list);
1656 if (cqe)
1657 memcpy(cqe, &ocqe->cqe, sizeof(*cqe));
1658 else
Pavel Begunkov8f6ed492021-05-16 22:58:10 +01001659 io_account_cq_overflow(ctx);
1660
Jens Axboeb18032b2021-01-24 16:58:56 -07001661 posted = true;
Pavel Begunkov6c2450a2021-02-23 12:40:22 +00001662 list_del(&ocqe->list);
1663 kfree(ocqe);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001664 }
1665
Pavel Begunkov09e88402020-12-17 00:24:38 +00001666 all_flushed = list_empty(&ctx->cq_overflow_list);
1667 if (all_flushed) {
Pavel Begunkov5ed7a372021-06-14 23:37:27 +01001668 clear_bit(0, &ctx->check_cq_overflow);
Nadav Amit20c0b382021-08-07 17:13:42 -07001669 WRITE_ONCE(ctx->rings->sq_flags,
1670 ctx->rings->sq_flags & ~IORING_SQ_CQ_OVERFLOW);
Pavel Begunkov09e88402020-12-17 00:24:38 +00001671 }
Pavel Begunkov46930142020-07-30 18:43:49 +03001672
Jens Axboeb18032b2021-01-24 16:58:56 -07001673 if (posted)
1674 io_commit_cqring(ctx);
Jens Axboe79ebeae2021-08-10 15:18:27 -06001675 spin_unlock(&ctx->completion_lock);
Jens Axboeb18032b2021-01-24 16:58:56 -07001676 if (posted)
1677 io_cqring_ev_posted(ctx);
Pavel Begunkov09e88402020-12-17 00:24:38 +00001678 return all_flushed;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001679}
1680
Pavel Begunkov90f67362021-08-09 20:18:12 +01001681static bool io_cqring_overflow_flush(struct io_ring_ctx *ctx)
Pavel Begunkov6c503152021-01-04 20:36:36 +00001682{
Jens Axboeca0a2652021-03-04 17:15:48 -07001683 bool ret = true;
1684
Pavel Begunkov5ed7a372021-06-14 23:37:27 +01001685 if (test_bit(0, &ctx->check_cq_overflow)) {
Pavel Begunkov6c503152021-01-04 20:36:36 +00001686 /* iopoll syncs against uring_lock, not completion_lock */
1687 if (ctx->flags & IORING_SETUP_IOPOLL)
1688 mutex_lock(&ctx->uring_lock);
Pavel Begunkov90f67362021-08-09 20:18:12 +01001689 ret = __io_cqring_overflow_flush(ctx, false);
Pavel Begunkov6c503152021-01-04 20:36:36 +00001690 if (ctx->flags & IORING_SETUP_IOPOLL)
1691 mutex_unlock(&ctx->uring_lock);
1692 }
Jens Axboeca0a2652021-03-04 17:15:48 -07001693
1694 return ret;
Pavel Begunkov6c503152021-01-04 20:36:36 +00001695}
1696
Pavel Begunkov6a290a12021-08-09 13:04:13 +01001697/* must to be called somewhat shortly after putting a request */
1698static inline void io_put_task(struct task_struct *task, int nr)
1699{
1700 struct io_uring_task *tctx = task->io_uring;
1701
Pavel Begunkove98e49b2021-08-18 17:01:43 +01001702 if (likely(task == current)) {
1703 tctx->cached_refs += nr;
1704 } else {
1705 percpu_counter_sub(&tctx->inflight, nr);
1706 if (unlikely(atomic_read(&tctx->in_idle)))
1707 wake_up(&tctx->wait);
1708 put_task_struct_many(task, nr);
1709 }
Pavel Begunkov6a290a12021-08-09 13:04:13 +01001710}
1711
Pavel Begunkov9a108672021-08-27 11:55:01 +01001712static void io_task_refs_refill(struct io_uring_task *tctx)
1713{
1714 unsigned int refill = -tctx->cached_refs + IO_TCTX_REFS_CACHE_NR;
1715
1716 percpu_counter_add(&tctx->inflight, refill);
1717 refcount_add(refill, &current->usage);
1718 tctx->cached_refs += refill;
1719}
1720
1721static inline void io_get_task_refs(int nr)
1722{
1723 struct io_uring_task *tctx = current->io_uring;
1724
1725 tctx->cached_refs -= nr;
1726 if (unlikely(tctx->cached_refs < 0))
1727 io_task_refs_refill(tctx);
1728}
1729
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01001730static bool io_cqring_event_overflow(struct io_ring_ctx *ctx, u64 user_data,
1731 long res, unsigned int cflags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001732{
Pavel Begunkovcce4b8b2021-04-13 02:58:44 +01001733 struct io_overflow_cqe *ocqe;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001734
Pavel Begunkovcce4b8b2021-04-13 02:58:44 +01001735 ocqe = kmalloc(sizeof(*ocqe), GFP_ATOMIC | __GFP_ACCOUNT);
1736 if (!ocqe) {
1737 /*
1738 * If we're in ring overflow flush mode, or in task cancel mode,
1739 * or cannot allocate an overflow entry, then we need to drop it
1740 * on the floor.
1741 */
Pavel Begunkov8f6ed492021-05-16 22:58:10 +01001742 io_account_cq_overflow(ctx);
Pavel Begunkovcce4b8b2021-04-13 02:58:44 +01001743 return false;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001744 }
Pavel Begunkovcce4b8b2021-04-13 02:58:44 +01001745 if (list_empty(&ctx->cq_overflow_list)) {
Pavel Begunkov5ed7a372021-06-14 23:37:27 +01001746 set_bit(0, &ctx->check_cq_overflow);
Nadav Amit20c0b382021-08-07 17:13:42 -07001747 WRITE_ONCE(ctx->rings->sq_flags,
1748 ctx->rings->sq_flags | IORING_SQ_CQ_OVERFLOW);
1749
Pavel Begunkovcce4b8b2021-04-13 02:58:44 +01001750 }
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01001751 ocqe->cqe.user_data = user_data;
Pavel Begunkovcce4b8b2021-04-13 02:58:44 +01001752 ocqe->cqe.res = res;
1753 ocqe->cqe.flags = cflags;
1754 list_add_tail(&ocqe->list, &ctx->cq_overflow_list);
1755 return true;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001756}
1757
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01001758static inline bool __io_cqring_fill_event(struct io_ring_ctx *ctx, u64 user_data,
1759 long res, unsigned int cflags)
Pavel Begunkov8d133262021-04-11 01:46:33 +01001760{
Jens Axboe2b188cc2019-01-07 10:46:33 -07001761 struct io_uring_cqe *cqe;
1762
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01001763 trace_io_uring_complete(ctx, user_data, res, cflags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001764
1765 /*
1766 * If we can't get a cq entry, userspace overflowed the
1767 * submission (by quite a lot). Increment the overflow count in
1768 * the ring.
1769 */
Pavel Begunkovd068b502021-05-16 22:58:11 +01001770 cqe = io_get_cqe(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001771 if (likely(cqe)) {
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01001772 WRITE_ONCE(cqe->user_data, user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001773 WRITE_ONCE(cqe->res, res);
1774 WRITE_ONCE(cqe->flags, cflags);
Pavel Begunkov8d133262021-04-11 01:46:33 +01001775 return true;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001776 }
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01001777 return io_cqring_event_overflow(ctx, user_data, res, cflags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001778}
1779
Pavel Begunkov8d133262021-04-11 01:46:33 +01001780/* not as hot to bloat with inlining */
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01001781static noinline bool io_cqring_fill_event(struct io_ring_ctx *ctx, u64 user_data,
1782 long res, unsigned int cflags)
Jens Axboebcda7ba2020-02-23 16:42:51 -07001783{
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01001784 return __io_cqring_fill_event(ctx, user_data, res, cflags);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001785}
1786
Pavel Begunkov7a612352021-03-09 00:37:59 +00001787static void io_req_complete_post(struct io_kiocb *req, long res,
1788 unsigned int cflags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001789{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001790 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001791
Jens Axboe79ebeae2021-08-10 15:18:27 -06001792 spin_lock(&ctx->completion_lock);
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01001793 __io_cqring_fill_event(ctx, req->user_data, res, cflags);
Jens Axboec7dae4b2021-02-09 19:53:37 -07001794 /*
1795 * If we're the last reference to this request, add to our locked
1796 * free_list cache.
1797 */
Jens Axboede9b4cc2021-02-24 13:28:27 -07001798 if (req_ref_put_and_test(req)) {
Pavel Begunkov7a612352021-03-09 00:37:59 +00001799 if (req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) {
Pavel Begunkov0756a862021-08-15 10:40:25 +01001800 if (req->flags & IO_DISARM_MASK)
Pavel Begunkov7a612352021-03-09 00:37:59 +00001801 io_disarm_next(req);
1802 if (req->link) {
1803 io_req_task_queue(req->link);
1804 req->link = NULL;
1805 }
1806 }
Jens Axboec7dae4b2021-02-09 19:53:37 -07001807 io_dismantle_req(req);
1808 io_put_task(req->task, 1);
Pavel Begunkovc2b6c6b2021-09-24 21:59:47 +01001809 wq_list_add_head(&req->comp_list, &ctx->locked_free_list);
Pavel Begunkovd0acdee2021-05-16 22:58:12 +01001810 ctx->locked_free_nr++;
Pavel Begunkova3f349072021-09-15 12:04:20 +01001811 percpu_ref_put(&ctx->refs);
Pavel Begunkov180f8292021-03-14 20:57:09 +00001812 }
Pavel Begunkov7a612352021-03-09 00:37:59 +00001813 io_commit_cqring(ctx);
Jens Axboe79ebeae2021-08-10 15:18:27 -06001814 spin_unlock(&ctx->completion_lock);
Pavel Begunkova3f349072021-09-15 12:04:20 +01001815 io_cqring_ev_posted(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001816}
1817
Jens Axboe4e3d9ff2021-04-15 17:44:34 -06001818static inline bool io_req_needs_clean(struct io_kiocb *req)
1819{
Pavel Begunkovc8543572021-06-17 18:14:04 +01001820 return req->flags & IO_REQ_CLEAN_FLAGS;
Jens Axboe4e3d9ff2021-04-15 17:44:34 -06001821}
1822
Pavel Begunkova38d68d2021-01-19 13:32:45 +00001823static void io_req_complete_state(struct io_kiocb *req, long res,
Pavel Begunkov889fca72021-02-10 00:03:09 +00001824 unsigned int cflags)
Jens Axboebcda7ba2020-02-23 16:42:51 -07001825{
Pavel Begunkov6f33b0b2021-09-24 21:59:44 +01001826 struct io_submit_state *state;
1827
Jens Axboe4e3d9ff2021-04-15 17:44:34 -06001828 if (io_req_needs_clean(req))
Pavel Begunkov68fb8972021-03-19 17:22:41 +00001829 io_clean_op(req);
Pavel Begunkova38d68d2021-01-19 13:32:45 +00001830 req->result = res;
1831 req->compl.cflags = cflags;
Pavel Begunkove342c802021-01-19 13:32:47 +00001832 req->flags |= REQ_F_COMPLETE_INLINE;
Pavel Begunkov6f33b0b2021-09-24 21:59:44 +01001833
1834 state = &req->ctx->submit_state;
1835 wq_list_add_tail(&req->comp_list, &state->compl_reqs);
Jens Axboee1e16092020-06-22 09:17:17 -06001836}
Jens Axboe2b188cc2019-01-07 10:46:33 -07001837
Pavel Begunkov889fca72021-02-10 00:03:09 +00001838static inline void __io_req_complete(struct io_kiocb *req, unsigned issue_flags,
1839 long res, unsigned cflags)
Pavel Begunkova38d68d2021-01-19 13:32:45 +00001840{
Pavel Begunkov889fca72021-02-10 00:03:09 +00001841 if (issue_flags & IO_URING_F_COMPLETE_DEFER)
1842 io_req_complete_state(req, res, cflags);
Pavel Begunkova38d68d2021-01-19 13:32:45 +00001843 else
Jens Axboec7dae4b2021-02-09 19:53:37 -07001844 io_req_complete_post(req, res, cflags);
Pavel Begunkova38d68d2021-01-19 13:32:45 +00001845}
Jens Axboebcda7ba2020-02-23 16:42:51 -07001846
Pavel Begunkova38d68d2021-01-19 13:32:45 +00001847static inline void io_req_complete(struct io_kiocb *req, long res)
Jens Axboee1e16092020-06-22 09:17:17 -06001848{
Pavel Begunkov889fca72021-02-10 00:03:09 +00001849 __io_req_complete(req, 0, res, 0);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001850}
1851
Pavel Begunkovf41db2732021-02-28 22:35:12 +00001852static void io_req_complete_failed(struct io_kiocb *req, long res)
1853{
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01001854 req_set_fail(req);
Pavel Begunkovf41db2732021-02-28 22:35:12 +00001855 io_req_complete_post(req, res, 0);
1856}
1857
Pavel Begunkovc6d3d9c2021-08-31 14:13:10 +01001858static void io_req_complete_fail_submit(struct io_kiocb *req)
1859{
1860 /*
1861 * We don't submit, fail them all, for that replace hardlinks with
1862 * normal links. Extra REQ_F_LINK is tolerated.
1863 */
1864 req->flags &= ~REQ_F_HARDLINK;
1865 req->flags |= REQ_F_LINK;
1866 io_req_complete_failed(req, req->result);
1867}
1868
Pavel Begunkov864ea922021-08-09 13:04:08 +01001869/*
1870 * Don't initialise the fields below on every allocation, but do that in
1871 * advance and keep them valid across allocations.
1872 */
1873static void io_preinit_req(struct io_kiocb *req, struct io_ring_ctx *ctx)
1874{
1875 req->ctx = ctx;
1876 req->link = NULL;
1877 req->async_data = NULL;
1878 /* not necessary, but safer to zero */
1879 req->result = 0;
1880}
1881
Pavel Begunkovdac7a092021-03-19 17:22:39 +00001882static void io_flush_cached_locked_reqs(struct io_ring_ctx *ctx,
Pavel Begunkovcd0ca2e2021-08-09 20:18:11 +01001883 struct io_submit_state *state)
Pavel Begunkovdac7a092021-03-19 17:22:39 +00001884{
Jens Axboe79ebeae2021-08-10 15:18:27 -06001885 spin_lock(&ctx->completion_lock);
Pavel Begunkovc2b6c6b2021-09-24 21:59:47 +01001886 wq_list_splice(&ctx->locked_free_list, &state->free_list);
Pavel Begunkovd0acdee2021-05-16 22:58:12 +01001887 ctx->locked_free_nr = 0;
Jens Axboe79ebeae2021-08-10 15:18:27 -06001888 spin_unlock(&ctx->completion_lock);
Pavel Begunkovdac7a092021-03-19 17:22:39 +00001889}
1890
Pavel Begunkovdd78f492021-03-19 17:22:35 +00001891/* Returns true IFF there are requests in the cache */
Jens Axboec7dae4b2021-02-09 19:53:37 -07001892static bool io_flush_cached_reqs(struct io_ring_ctx *ctx)
Pavel Begunkove5d1bc02021-02-10 00:03:23 +00001893{
Jens Axboec7dae4b2021-02-09 19:53:37 -07001894 struct io_submit_state *state = &ctx->submit_state;
Pavel Begunkove5d1bc02021-02-10 00:03:23 +00001895
Jens Axboec7dae4b2021-02-09 19:53:37 -07001896 /*
1897 * If we have more than a batch's worth of requests in our IRQ side
1898 * locked cache, grab the lock and move them over to our submission
1899 * side cache.
1900 */
Pavel Begunkovd0acdee2021-05-16 22:58:12 +01001901 if (READ_ONCE(ctx->locked_free_nr) > IO_COMPL_BATCH)
Pavel Begunkovcd0ca2e2021-08-09 20:18:11 +01001902 io_flush_cached_locked_reqs(ctx, state);
Pavel Begunkovc2b6c6b2021-09-24 21:59:47 +01001903 return !!state->free_list.next;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001904}
1905
Pavel Begunkov5d5901a2021-08-11 19:28:29 +01001906/*
1907 * A request might get retired back into the request caches even before opcode
1908 * handlers and io_issue_sqe() are done with it, e.g. inline completion path.
1909 * Because of that, io_alloc_req() should be called only under ->uring_lock
1910 * and with extra caution to not get a request that is still worked on.
1911 */
Pavel Begunkov258b29a2021-02-10 00:03:10 +00001912static struct io_kiocb *io_alloc_req(struct io_ring_ctx *ctx)
Pavel Begunkov5d5901a2021-08-11 19:28:29 +01001913 __must_hold(&ctx->uring_lock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001914{
Pavel Begunkov258b29a2021-02-10 00:03:10 +00001915 struct io_submit_state *state = &ctx->submit_state;
Pavel Begunkov864ea922021-08-09 13:04:08 +01001916 gfp_t gfp = GFP_KERNEL | __GFP_NOWARN;
Pavel Begunkov3ab665b2021-09-24 21:59:45 +01001917 void *reqs[IO_REQ_ALLOC_BATCH];
Pavel Begunkovc2b6c6b2021-09-24 21:59:47 +01001918 struct io_wq_work_node *node;
Pavel Begunkov3ab665b2021-09-24 21:59:45 +01001919 struct io_kiocb *req;
Pavel Begunkov864ea922021-08-09 13:04:08 +01001920 int ret, i;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001921
Pavel Begunkovc2b6c6b2021-09-24 21:59:47 +01001922 if (likely(state->free_list.next || io_flush_cached_reqs(ctx)))
Pavel Begunkov864ea922021-08-09 13:04:08 +01001923 goto got_req;
Jens Axboe2579f912019-01-09 09:10:43 -07001924
Pavel Begunkov3ab665b2021-09-24 21:59:45 +01001925 ret = kmem_cache_alloc_bulk(req_cachep, gfp, ARRAY_SIZE(reqs), reqs);
Pavel Begunkove5d1bc02021-02-10 00:03:23 +00001926
Pavel Begunkov864ea922021-08-09 13:04:08 +01001927 /*
1928 * Bulk alloc is all-or-nothing. If we fail to get a batch,
1929 * retry single alloc to be on the safe side.
1930 */
1931 if (unlikely(ret <= 0)) {
Pavel Begunkov3ab665b2021-09-24 21:59:45 +01001932 reqs[0] = kmem_cache_alloc(req_cachep, gfp);
1933 if (!reqs[0])
Pavel Begunkov864ea922021-08-09 13:04:08 +01001934 return NULL;
1935 ret = 1;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001936 }
Pavel Begunkov864ea922021-08-09 13:04:08 +01001937
Pavel Begunkov3ab665b2021-09-24 21:59:45 +01001938 for (i = 0; i < ret; i++) {
1939 req = reqs[i];
1940
1941 io_preinit_req(req, ctx);
Pavel Begunkovc2b6c6b2021-09-24 21:59:47 +01001942 wq_stack_add_head(&req->comp_list, &state->free_list);
Pavel Begunkov3ab665b2021-09-24 21:59:45 +01001943 }
Pavel Begunkove5d1bc02021-02-10 00:03:23 +00001944got_req:
Pavel Begunkovc2b6c6b2021-09-24 21:59:47 +01001945 node = wq_stack_extract(&state->free_list);
1946 return container_of(node, struct io_kiocb, comp_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001947}
1948
Pavel Begunkove1d767f2021-03-19 17:22:43 +00001949static inline void io_put_file(struct file *file)
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001950{
Pavel Begunkove1d767f2021-03-19 17:22:43 +00001951 if (file)
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001952 fput(file);
1953}
1954
Pavel Begunkov6b639522021-09-08 16:40:50 +01001955static inline void io_dismantle_req(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001956{
Pavel Begunkov094bae42021-03-19 17:22:42 +00001957 unsigned int flags = req->flags;
Pavel Begunkov929a3af2020-02-19 00:19:09 +03001958
Pavel Begunkov3a0a6902021-04-20 12:03:31 +01001959 if (io_req_needs_clean(req))
1960 io_clean_op(req);
Pavel Begunkove1d767f2021-03-19 17:22:43 +00001961 if (!(flags & REQ_F_FIXED_FILE))
1962 io_put_file(req->file);
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00001963 if (req->fixed_rsrc_refs)
1964 percpu_ref_put(req->fixed_rsrc_refs);
Pavel Begunkov99ebe4e2021-06-26 21:40:49 +01001965 if (req->async_data) {
Pavel Begunkov094bae42021-03-19 17:22:42 +00001966 kfree(req->async_data);
Pavel Begunkov99ebe4e2021-06-26 21:40:49 +01001967 req->async_data = NULL;
1968 }
Pavel Begunkove6543a82020-06-28 12:52:30 +03001969}
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03001970
Pavel Begunkov216578e2020-10-13 09:44:00 +01001971static void __io_free_req(struct io_kiocb *req)
Pavel Begunkove6543a82020-06-28 12:52:30 +03001972{
Jens Axboe51a4cc12020-08-10 10:55:56 -06001973 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovecfc5172020-06-29 13:13:03 +03001974
Pavel Begunkov216578e2020-10-13 09:44:00 +01001975 io_dismantle_req(req);
Pavel Begunkov7c660732021-01-25 11:42:21 +00001976 io_put_task(req->task, 1);
Pavel Begunkove6543a82020-06-28 12:52:30 +03001977
Jens Axboe79ebeae2021-08-10 15:18:27 -06001978 spin_lock(&ctx->completion_lock);
Pavel Begunkovc2b6c6b2021-09-24 21:59:47 +01001979 wq_list_add_head(&req->comp_list, &ctx->locked_free_list);
Pavel Begunkovc34b0252021-08-09 20:18:08 +01001980 ctx->locked_free_nr++;
Jens Axboe79ebeae2021-08-10 15:18:27 -06001981 spin_unlock(&ctx->completion_lock);
Pavel Begunkovc34b0252021-08-09 20:18:08 +01001982
Pavel Begunkovecfc5172020-06-29 13:13:03 +03001983 percpu_ref_put(&ctx->refs);
Jens Axboee65ef562019-03-12 10:16:44 -06001984}
1985
Pavel Begunkovf2f87372020-10-27 23:25:37 +00001986static inline void io_remove_next_linked(struct io_kiocb *req)
1987{
1988 struct io_kiocb *nxt = req->link;
1989
1990 req->link = nxt->link;
1991 nxt->link = NULL;
1992}
1993
Pavel Begunkov33cc89a2021-03-09 00:37:58 +00001994static bool io_kill_linked_timeout(struct io_kiocb *req)
1995 __must_hold(&req->ctx->completion_lock)
Jens Axboe89b263f2021-08-10 15:14:18 -06001996 __must_hold(&req->ctx->timeout_lock)
Jens Axboe9e645e112019-05-10 16:07:28 -06001997{
Pavel Begunkov33cc89a2021-03-09 00:37:58 +00001998 struct io_kiocb *link = req->link;
Pavel Begunkovf2f87372020-10-27 23:25:37 +00001999
Pavel Begunkovb97e7362021-08-15 10:40:23 +01002000 if (link && link->opcode == IORING_OP_LINK_TIMEOUT) {
Pavel Begunkovc9abd7a2020-10-22 16:43:11 +01002001 struct io_timeout_data *io = link->async_data;
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03002002
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002003 io_remove_next_linked(req);
Pavel Begunkov90cd7e42020-10-27 23:25:36 +00002004 link->timeout.head = NULL;
Pavel Begunkovfd9c7bc2021-04-13 02:58:42 +01002005 if (hrtimer_try_to_cancel(&io->timer) != -1) {
Pavel Begunkovef9dd632021-08-28 19:54:38 -06002006 list_del(&link->timeout.list);
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01002007 io_cqring_fill_event(link->ctx, link->user_data,
2008 -ECANCELED, 0);
Pavel Begunkov91c2f692021-08-11 19:28:28 +01002009 io_put_req_deferred(link);
Pavel Begunkovd4729fb2021-03-22 01:58:24 +00002010 return true;
Pavel Begunkovc9abd7a2020-10-22 16:43:11 +01002011 }
2012 }
Pavel Begunkovd4729fb2021-03-22 01:58:24 +00002013 return false;
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03002014}
2015
Pavel Begunkovd148ca42020-10-18 10:17:39 +01002016static void io_fail_links(struct io_kiocb *req)
Pavel Begunkov33cc89a2021-03-09 00:37:58 +00002017 __must_hold(&req->ctx->completion_lock)
Jens Axboe9e645e112019-05-10 16:07:28 -06002018{
Pavel Begunkov33cc89a2021-03-09 00:37:58 +00002019 struct io_kiocb *nxt, *link = req->link;
Jens Axboe9e645e112019-05-10 16:07:28 -06002020
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002021 req->link = NULL;
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002022 while (link) {
Hao Xua8295b92021-08-27 17:46:09 +08002023 long res = -ECANCELED;
2024
2025 if (link->flags & REQ_F_FAIL)
2026 res = link->result;
2027
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002028 nxt = link->link;
2029 link->link = NULL;
2030
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02002031 trace_io_uring_fail_link(req, link);
Hao Xua8295b92021-08-27 17:46:09 +08002032 io_cqring_fill_event(link->ctx, link->user_data, res, 0);
Pavel Begunkov91c2f692021-08-11 19:28:28 +01002033 io_put_req_deferred(link);
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002034 link = nxt;
Jens Axboe9e645e112019-05-10 16:07:28 -06002035 }
Pavel Begunkov33cc89a2021-03-09 00:37:58 +00002036}
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03002037
Pavel Begunkov33cc89a2021-03-09 00:37:58 +00002038static bool io_disarm_next(struct io_kiocb *req)
2039 __must_hold(&req->ctx->completion_lock)
2040{
2041 bool posted = false;
2042
Pavel Begunkov0756a862021-08-15 10:40:25 +01002043 if (req->flags & REQ_F_ARM_LTIMEOUT) {
2044 struct io_kiocb *link = req->link;
2045
Pavel Begunkov906c6ca2021-08-15 10:40:26 +01002046 req->flags &= ~REQ_F_ARM_LTIMEOUT;
Pavel Begunkov0756a862021-08-15 10:40:25 +01002047 if (link && link->opcode == IORING_OP_LINK_TIMEOUT) {
2048 io_remove_next_linked(req);
2049 io_cqring_fill_event(link->ctx, link->user_data,
2050 -ECANCELED, 0);
2051 io_put_req_deferred(link);
2052 posted = true;
2053 }
2054 } else if (req->flags & REQ_F_LINK_TIMEOUT) {
Jens Axboe89b263f2021-08-10 15:14:18 -06002055 struct io_ring_ctx *ctx = req->ctx;
2056
2057 spin_lock_irq(&ctx->timeout_lock);
Pavel Begunkov33cc89a2021-03-09 00:37:58 +00002058 posted = io_kill_linked_timeout(req);
Jens Axboe89b263f2021-08-10 15:14:18 -06002059 spin_unlock_irq(&ctx->timeout_lock);
2060 }
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01002061 if (unlikely((req->flags & REQ_F_FAIL) &&
Pavel Begunkove4335ed2021-04-11 01:46:39 +01002062 !(req->flags & REQ_F_HARDLINK))) {
Pavel Begunkov33cc89a2021-03-09 00:37:58 +00002063 posted |= (req->link != NULL);
2064 io_fail_links(req);
2065 }
2066 return posted;
Jens Axboe9e645e112019-05-10 16:07:28 -06002067}
2068
Pavel Begunkovd81499b2021-09-08 16:40:51 +01002069static void __io_req_find_next_prep(struct io_kiocb *req)
2070{
2071 struct io_ring_ctx *ctx = req->ctx;
2072 bool posted;
2073
2074 spin_lock(&ctx->completion_lock);
2075 posted = io_disarm_next(req);
2076 if (posted)
2077 io_commit_cqring(req->ctx);
2078 spin_unlock(&ctx->completion_lock);
2079 if (posted)
2080 io_cqring_ev_posted(ctx);
2081}
2082
2083static inline struct io_kiocb *io_req_find_next(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -06002084{
Pavel Begunkov33cc89a2021-03-09 00:37:58 +00002085 struct io_kiocb *nxt;
Jens Axboe2665abf2019-11-05 12:40:47 -07002086
Pavel Begunkovd81499b2021-09-08 16:40:51 +01002087 if (likely(!(req->flags & (REQ_F_LINK|REQ_F_HARDLINK))))
2088 return NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06002089 /*
2090 * If LINK is set, we have dependent requests in this chain. If we
2091 * didn't fail this request, queue the first one up, moving any other
2092 * dependencies to the next request. In case of failure, fail the rest
2093 * of the chain.
2094 */
Pavel Begunkovd81499b2021-09-08 16:40:51 +01002095 if (unlikely(req->flags & IO_DISARM_MASK))
2096 __io_req_find_next_prep(req);
Pavel Begunkov33cc89a2021-03-09 00:37:58 +00002097 nxt = req->link;
2098 req->link = NULL;
2099 return nxt;
Jens Axboe4d7dd462019-11-20 13:03:52 -07002100}
Jens Axboe2665abf2019-11-05 12:40:47 -07002101
Pavel Begunkovf237c302021-08-18 12:42:46 +01002102static void ctx_flush_and_put(struct io_ring_ctx *ctx, bool *locked)
Pavel Begunkov2c323952021-02-28 22:04:53 +00002103{
2104 if (!ctx)
2105 return;
Pavel Begunkovf237c302021-08-18 12:42:46 +01002106 if (*locked) {
Pavel Begunkovc4501782021-09-08 16:40:52 +01002107 io_submit_flush_completions(ctx);
Pavel Begunkov2c323952021-02-28 22:04:53 +00002108 mutex_unlock(&ctx->uring_lock);
Pavel Begunkovf237c302021-08-18 12:42:46 +01002109 *locked = false;
Pavel Begunkov2c323952021-02-28 22:04:53 +00002110 }
2111 percpu_ref_put(&ctx->refs);
2112}
2113
Jens Axboe7cbf1722021-02-10 00:03:20 +00002114static void tctx_task_work(struct callback_head *cb)
2115{
Pavel Begunkovf237c302021-08-18 12:42:46 +01002116 bool locked = false;
Pavel Begunkovebd0df22021-06-17 18:14:07 +01002117 struct io_ring_ctx *ctx = NULL;
Pavel Begunkov3f184072021-06-17 18:14:06 +01002118 struct io_uring_task *tctx = container_of(cb, struct io_uring_task,
2119 task_work);
Jens Axboe7cbf1722021-02-10 00:03:20 +00002120
Pavel Begunkov16f72072021-06-17 18:14:09 +01002121 while (1) {
Pavel Begunkov3f184072021-06-17 18:14:06 +01002122 struct io_wq_work_node *node;
2123
Pavel Begunkovc4501782021-09-08 16:40:52 +01002124 if (!tctx->task_list.first && locked)
Pavel Begunkov8d4ad412021-09-02 00:38:23 +01002125 io_submit_flush_completions(ctx);
2126
Pavel Begunkov3f184072021-06-17 18:14:06 +01002127 spin_lock_irq(&tctx->task_lock);
Pavel Begunkovc6538be2021-06-17 18:14:08 +01002128 node = tctx->task_list.first;
Pavel Begunkov3f184072021-06-17 18:14:06 +01002129 INIT_WQ_LIST(&tctx->task_list);
Pavel Begunkov6294f362021-08-10 17:53:55 +01002130 if (!node)
2131 tctx->task_running = false;
Pavel Begunkov3f184072021-06-17 18:14:06 +01002132 spin_unlock_irq(&tctx->task_lock);
Pavel Begunkov6294f362021-08-10 17:53:55 +01002133 if (!node)
2134 break;
Pavel Begunkov3f184072021-06-17 18:14:06 +01002135
Pavel Begunkov6294f362021-08-10 17:53:55 +01002136 do {
Pavel Begunkov3f184072021-06-17 18:14:06 +01002137 struct io_wq_work_node *next = node->next;
2138 struct io_kiocb *req = container_of(node, struct io_kiocb,
2139 io_task_work.node);
2140
2141 if (req->ctx != ctx) {
Pavel Begunkovf237c302021-08-18 12:42:46 +01002142 ctx_flush_and_put(ctx, &locked);
Pavel Begunkov3f184072021-06-17 18:14:06 +01002143 ctx = req->ctx;
Pavel Begunkov126180b2021-08-18 12:42:47 +01002144 /* if not contended, grab and improve batching */
2145 locked = mutex_trylock(&ctx->uring_lock);
Pavel Begunkov3f184072021-06-17 18:14:06 +01002146 percpu_ref_get(&ctx->refs);
2147 }
Pavel Begunkovf237c302021-08-18 12:42:46 +01002148 req->io_task_work.func(req, &locked);
Pavel Begunkov3f184072021-06-17 18:14:06 +01002149 node = next;
Pavel Begunkov6294f362021-08-10 17:53:55 +01002150 } while (node);
2151
Jens Axboe7cbf1722021-02-10 00:03:20 +00002152 cond_resched();
Pavel Begunkov3f184072021-06-17 18:14:06 +01002153 }
Pavel Begunkovebd0df22021-06-17 18:14:07 +01002154
Pavel Begunkovf237c302021-08-18 12:42:46 +01002155 ctx_flush_and_put(ctx, &locked);
Jens Axboe7cbf1722021-02-10 00:03:20 +00002156}
2157
Pavel Begunkove09ee512021-07-01 13:26:05 +01002158static void io_req_task_work_add(struct io_kiocb *req)
Jens Axboe7cbf1722021-02-10 00:03:20 +00002159{
Pavel Begunkovc15b79d2021-03-19 17:22:44 +00002160 struct task_struct *tsk = req->task;
Jens Axboe7cbf1722021-02-10 00:03:20 +00002161 struct io_uring_task *tctx = tsk->io_uring;
Pavel Begunkovc15b79d2021-03-19 17:22:44 +00002162 enum task_work_notify_mode notify;
Pavel Begunkove09ee512021-07-01 13:26:05 +01002163 struct io_wq_work_node *node;
Jens Axboe0b81e802021-02-16 10:33:53 -07002164 unsigned long flags;
Pavel Begunkov6294f362021-08-10 17:53:55 +01002165 bool running;
Jens Axboe7cbf1722021-02-10 00:03:20 +00002166
2167 WARN_ON_ONCE(!tctx);
2168
Jens Axboe0b81e802021-02-16 10:33:53 -07002169 spin_lock_irqsave(&tctx->task_lock, flags);
Jens Axboe7cbf1722021-02-10 00:03:20 +00002170 wq_list_add_tail(&req->io_task_work.node, &tctx->task_list);
Pavel Begunkov6294f362021-08-10 17:53:55 +01002171 running = tctx->task_running;
2172 if (!running)
2173 tctx->task_running = true;
Jens Axboe0b81e802021-02-16 10:33:53 -07002174 spin_unlock_irqrestore(&tctx->task_lock, flags);
Jens Axboe7cbf1722021-02-10 00:03:20 +00002175
2176 /* task_work already pending, we're done */
Pavel Begunkov6294f362021-08-10 17:53:55 +01002177 if (running)
Pavel Begunkove09ee512021-07-01 13:26:05 +01002178 return;
Jens Axboe7cbf1722021-02-10 00:03:20 +00002179
Pavel Begunkovc15b79d2021-03-19 17:22:44 +00002180 /*
2181 * SQPOLL kernel thread doesn't need notification, just a wakeup. For
2182 * all other cases, use TWA_SIGNAL unconditionally to ensure we're
2183 * processing task_work. There's no reliable way to tell if TWA_RESUME
2184 * will do the job.
2185 */
2186 notify = (req->ctx->flags & IORING_SETUP_SQPOLL) ? TWA_NONE : TWA_SIGNAL;
Pavel Begunkovd97ec622021-09-08 16:40:53 +01002187 if (likely(!task_work_add(tsk, &tctx->task_work, notify))) {
2188 if (notify == TWA_NONE)
2189 wake_up_process(tsk);
Pavel Begunkove09ee512021-07-01 13:26:05 +01002190 return;
Pavel Begunkovc15b79d2021-03-19 17:22:44 +00002191 }
Pavel Begunkov2215bed2021-08-09 13:04:06 +01002192
Pavel Begunkove09ee512021-07-01 13:26:05 +01002193 spin_lock_irqsave(&tctx->task_lock, flags);
Pavel Begunkov6294f362021-08-10 17:53:55 +01002194 tctx->task_running = false;
Pavel Begunkove09ee512021-07-01 13:26:05 +01002195 node = tctx->task_list.first;
2196 INIT_WQ_LIST(&tctx->task_list);
2197 spin_unlock_irqrestore(&tctx->task_lock, flags);
Jens Axboe7cbf1722021-02-10 00:03:20 +00002198
Pavel Begunkove09ee512021-07-01 13:26:05 +01002199 while (node) {
2200 req = container_of(node, struct io_kiocb, io_task_work.node);
2201 node = node->next;
2202 if (llist_add(&req->io_task_work.fallback_node,
2203 &req->ctx->fallback_llist))
2204 schedule_delayed_work(&req->ctx->fallback_work, 1);
2205 }
Pavel Begunkoveab30c42021-01-19 13:32:42 +00002206}
2207
Pavel Begunkovf237c302021-08-18 12:42:46 +01002208static void io_req_task_cancel(struct io_kiocb *req, bool *locked)
Jens Axboec40f6372020-06-25 15:39:59 -06002209{
Jens Axboe87ceb6a2020-09-14 08:20:12 -06002210 struct io_ring_ctx *ctx = req->ctx;
Jens Axboec40f6372020-06-25 15:39:59 -06002211
Pavel Begunkovb18a1a42021-08-25 20:51:39 +01002212 /* not needed for normal modes, but SQPOLL depends on it */
Pavel Begunkovf237c302021-08-18 12:42:46 +01002213 io_tw_lock(ctx, locked);
Pavel Begunkov25935532021-03-19 17:22:40 +00002214 io_req_complete_failed(req, req->result);
Jens Axboec40f6372020-06-25 15:39:59 -06002215}
2216
Pavel Begunkovf237c302021-08-18 12:42:46 +01002217static void io_req_task_submit(struct io_kiocb *req, bool *locked)
Jens Axboec40f6372020-06-25 15:39:59 -06002218{
2219 struct io_ring_ctx *ctx = req->ctx;
2220
Pavel Begunkovf237c302021-08-18 12:42:46 +01002221 io_tw_lock(ctx, locked);
Jens Axboe316319e2021-08-19 09:41:42 -06002222 /* req->task == current here, checking PF_EXITING is safe */
Pavel Begunkovaf066f32021-08-09 13:04:19 +01002223 if (likely(!(req->task->flags & PF_EXITING)))
Pavel Begunkovc5eef2b2021-02-10 00:03:22 +00002224 __io_queue_sqe(req);
Pavel Begunkov81b6d052021-01-04 20:36:35 +00002225 else
Pavel Begunkov25935532021-03-19 17:22:40 +00002226 io_req_complete_failed(req, -EFAULT);
Jens Axboe9e645e112019-05-10 16:07:28 -06002227}
2228
Pavel Begunkova3df76982021-02-18 22:32:52 +00002229static void io_req_task_queue_fail(struct io_kiocb *req, int ret)
2230{
Pavel Begunkova3df76982021-02-18 22:32:52 +00002231 req->result = ret;
Pavel Begunkov5b0a6ac2021-06-30 21:54:04 +01002232 req->io_task_work.func = io_req_task_cancel;
Pavel Begunkove09ee512021-07-01 13:26:05 +01002233 io_req_task_work_add(req);
Pavel Begunkova3df76982021-02-18 22:32:52 +00002234}
2235
Pavel Begunkov2c4b8eb2021-02-28 22:35:10 +00002236static void io_req_task_queue(struct io_kiocb *req)
2237{
Pavel Begunkov5b0a6ac2021-06-30 21:54:04 +01002238 req->io_task_work.func = io_req_task_submit;
Pavel Begunkove09ee512021-07-01 13:26:05 +01002239 io_req_task_work_add(req);
Pavel Begunkov2c4b8eb2021-02-28 22:35:10 +00002240}
2241
Jens Axboe773af692021-07-27 10:25:55 -06002242static void io_req_task_queue_reissue(struct io_kiocb *req)
2243{
2244 req->io_task_work.func = io_queue_async_work;
2245 io_req_task_work_add(req);
2246}
2247
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002248static inline void io_queue_next(struct io_kiocb *req)
Jackie Liuc69f8db2019-11-09 11:00:08 +08002249{
Pavel Begunkov9b5f7bd92020-06-29 13:13:00 +03002250 struct io_kiocb *nxt = io_req_find_next(req);
Pavel Begunkov944e58b2019-11-21 23:21:01 +03002251
Pavel Begunkov906a8c32020-06-27 14:04:55 +03002252 if (nxt)
2253 io_req_task_queue(nxt);
Jackie Liuc69f8db2019-11-09 11:00:08 +08002254}
2255
Jens Axboe9e645e112019-05-10 16:07:28 -06002256static void io_free_req(struct io_kiocb *req)
2257{
Pavel Begunkovc3524382020-06-28 12:52:32 +03002258 io_queue_next(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06002259 __io_free_req(req);
Jens Axboee65ef562019-03-12 10:16:44 -06002260}
2261
Pavel Begunkovf237c302021-08-18 12:42:46 +01002262static void io_free_req_work(struct io_kiocb *req, bool *locked)
2263{
2264 io_free_req(req);
2265}
2266
Pavel Begunkov3aa83bf2021-09-24 21:59:50 +01002267static void io_free_batch_list(struct io_ring_ctx *ctx,
Pavel Begunkov1cce17a2021-09-24 21:59:54 +01002268 struct io_wq_work_node *node)
Pavel Begunkov3aa83bf2021-09-24 21:59:50 +01002269 __must_hold(&ctx->uring_lock)
2270{
Pavel Begunkovd4b7a5e2021-09-24 21:59:53 +01002271 struct task_struct *task = NULL;
2272 int task_refs = 0, ctx_refs = 0;
Pavel Begunkov3aa83bf2021-09-24 21:59:50 +01002273
Pavel Begunkov3aa83bf2021-09-24 21:59:50 +01002274 do {
2275 struct io_kiocb *req = container_of(node, struct io_kiocb,
2276 comp_list);
2277
2278 node = req->comp_list.next;
Pavel Begunkovd4b7a5e2021-09-24 21:59:53 +01002279 if (!req_ref_put_and_test(req))
2280 continue;
2281
2282 io_queue_next(req);
2283 io_dismantle_req(req);
2284
2285 if (req->task != task) {
2286 if (task)
2287 io_put_task(task, task_refs);
2288 task = req->task;
2289 task_refs = 0;
2290 }
2291 task_refs++;
2292 ctx_refs++;
2293 wq_stack_add_head(&req->comp_list, &ctx->submit_state.free_list);
Pavel Begunkov3aa83bf2021-09-24 21:59:50 +01002294 } while (node);
Pavel Begunkovd4b7a5e2021-09-24 21:59:53 +01002295
2296 if (ctx_refs)
2297 percpu_ref_put_many(&ctx->refs, ctx_refs);
2298 if (task)
2299 io_put_task(task, task_refs);
Pavel Begunkov3aa83bf2021-09-24 21:59:50 +01002300}
2301
Pavel Begunkovc4501782021-09-08 16:40:52 +01002302static void __io_submit_flush_completions(struct io_ring_ctx *ctx)
Jens Axboea141dd82021-08-12 12:48:34 -06002303 __must_hold(&ctx->uring_lock)
Pavel Begunkov905c1722021-02-10 00:03:14 +00002304{
Pavel Begunkov6f33b0b2021-09-24 21:59:44 +01002305 struct io_wq_work_node *node, *prev;
Pavel Begunkovcd0ca2e2021-08-09 20:18:11 +01002306 struct io_submit_state *state = &ctx->submit_state;
Pavel Begunkov905c1722021-02-10 00:03:14 +00002307
Jens Axboe79ebeae2021-08-10 15:18:27 -06002308 spin_lock(&ctx->completion_lock);
Pavel Begunkov6f33b0b2021-09-24 21:59:44 +01002309 wq_list_for_each(node, prev, &state->compl_reqs) {
2310 struct io_kiocb *req = container_of(node, struct io_kiocb,
2311 comp_list);
Pavel Begunkov5182ed22021-06-26 21:40:48 +01002312
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01002313 __io_cqring_fill_event(ctx, req->user_data, req->result,
2314 req->compl.cflags);
Pavel Begunkov905c1722021-02-10 00:03:14 +00002315 }
2316 io_commit_cqring(ctx);
Jens Axboe79ebeae2021-08-10 15:18:27 -06002317 spin_unlock(&ctx->completion_lock);
Pavel Begunkov905c1722021-02-10 00:03:14 +00002318 io_cqring_ev_posted(ctx);
Pavel Begunkov5182ed22021-06-26 21:40:48 +01002319
Pavel Begunkov1cce17a2021-09-24 21:59:54 +01002320 io_free_batch_list(ctx, state->compl_reqs.first);
Pavel Begunkov6f33b0b2021-09-24 21:59:44 +01002321 INIT_WQ_LIST(&state->compl_reqs);
Pavel Begunkov7a743e22020-03-03 21:33:13 +03002322}
2323
Jens Axboeba816ad2019-09-28 11:36:45 -06002324/*
2325 * Drop reference to request, return next in chain (if there is one) if this
2326 * was the last reference to this request.
2327 */
Pavel Begunkov0d850352021-03-19 17:22:37 +00002328static inline struct io_kiocb *io_put_req_find_next(struct io_kiocb *req)
Jens Axboee65ef562019-03-12 10:16:44 -06002329{
Pavel Begunkov9b5f7bd92020-06-29 13:13:00 +03002330 struct io_kiocb *nxt = NULL;
2331
Jens Axboede9b4cc2021-02-24 13:28:27 -07002332 if (req_ref_put_and_test(req)) {
Pavel Begunkov9b5f7bd92020-06-29 13:13:00 +03002333 nxt = io_req_find_next(req);
Jens Axboe4d7dd462019-11-20 13:03:52 -07002334 __io_free_req(req);
Jens Axboe2a44f462020-02-25 13:25:41 -07002335 }
Pavel Begunkov9b5f7bd92020-06-29 13:13:00 +03002336 return nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002337}
2338
Pavel Begunkov0d850352021-03-19 17:22:37 +00002339static inline void io_put_req(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002340{
Jens Axboede9b4cc2021-02-24 13:28:27 -07002341 if (req_ref_put_and_test(req))
Jens Axboedef596e2019-01-09 08:59:42 -07002342 io_free_req(req);
2343}
2344
Pavel Begunkov91c2f692021-08-11 19:28:28 +01002345static inline void io_put_req_deferred(struct io_kiocb *req)
Pavel Begunkov216578e2020-10-13 09:44:00 +01002346{
Pavel Begunkov91c2f692021-08-11 19:28:28 +01002347 if (req_ref_put_and_test(req)) {
Pavel Begunkovf237c302021-08-18 12:42:46 +01002348 req->io_task_work.func = io_free_req_work;
Pavel Begunkov543af3a2021-08-09 13:04:15 +01002349 io_req_task_work_add(req);
2350 }
Pavel Begunkov216578e2020-10-13 09:44:00 +01002351}
2352
Pavel Begunkov6c503152021-01-04 20:36:36 +00002353static unsigned io_cqring_events(struct io_ring_ctx *ctx)
Jens Axboea3a0e432019-08-20 11:03:11 -06002354{
2355 /* See comment at the top of this file */
2356 smp_rmb();
Pavel Begunkove23de152020-12-17 00:24:37 +00002357 return __io_cqring_events(ctx);
Jens Axboea3a0e432019-08-20 11:03:11 -06002358}
2359
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03002360static inline unsigned int io_sqring_entries(struct io_ring_ctx *ctx)
2361{
2362 struct io_rings *rings = ctx->rings;
2363
2364 /* make sure SQ entry isn't read before tail */
2365 return smp_load_acquire(&rings->sq.tail) - ctx->cached_sq_head;
2366}
2367
Pavel Begunkov8ff069b2020-07-16 23:28:04 +03002368static unsigned int io_put_kbuf(struct io_kiocb *req, struct io_buffer *kbuf)
Jens Axboee94f1412019-12-19 12:06:02 -07002369{
Pavel Begunkov8ff069b2020-07-16 23:28:04 +03002370 unsigned int cflags;
Jens Axboee94f1412019-12-19 12:06:02 -07002371
Jens Axboebcda7ba2020-02-23 16:42:51 -07002372 cflags = kbuf->bid << IORING_CQE_BUFFER_SHIFT;
2373 cflags |= IORING_CQE_F_BUFFER;
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03002374 req->flags &= ~REQ_F_BUFFER_SELECTED;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002375 kfree(kbuf);
2376 return cflags;
2377}
2378
Pavel Begunkov8ff069b2020-07-16 23:28:04 +03002379static inline unsigned int io_put_rw_kbuf(struct io_kiocb *req)
2380{
2381 struct io_buffer *kbuf;
2382
Pavel Begunkovae421d92021-08-17 20:28:08 +01002383 if (likely(!(req->flags & REQ_F_BUFFER_SELECTED)))
2384 return 0;
Pavel Begunkov8ff069b2020-07-16 23:28:04 +03002385 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
2386 return io_put_kbuf(req, kbuf);
2387}
2388
Jens Axboe4c6e2772020-07-01 11:29:10 -06002389static inline bool io_run_task_work(void)
2390{
Nadav Amitef98eb02021-08-07 17:13:41 -07002391 if (test_thread_flag(TIF_NOTIFY_SIGNAL) || current->task_works) {
Jens Axboe4c6e2772020-07-01 11:29:10 -06002392 __set_current_state(TASK_RUNNING);
Nadav Amitef98eb02021-08-07 17:13:41 -07002393 tracehook_notify_signal();
Jens Axboe4c6e2772020-07-01 11:29:10 -06002394 return true;
2395 }
2396
2397 return false;
2398}
2399
Pavel Begunkov5ba3c872021-09-24 21:59:43 +01002400static int io_do_iopoll(struct io_ring_ctx *ctx, bool force_nonspin)
Jens Axboedef596e2019-01-09 08:59:42 -07002401{
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01002402 struct io_wq_work_node *pos, *start, *prev;
Christoph Hellwigd729cf92021-10-12 13:12:20 +02002403 unsigned int poll_flags = BLK_POLL_NOSLEEP;
Jens Axboeb688f112021-10-12 09:28:46 -06002404 DEFINE_IO_COMP_BATCH(iob);
Pavel Begunkov5ba3c872021-09-24 21:59:43 +01002405 int nr_events = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07002406
2407 /*
2408 * Only spin for completions if we don't have multiple devices hanging
Pavel Begunkov87a115f2021-09-24 21:59:42 +01002409 * off our complete list.
Jens Axboedef596e2019-01-09 08:59:42 -07002410 */
Pavel Begunkov87a115f2021-09-24 21:59:42 +01002411 if (ctx->poll_multi_queue || force_nonspin)
Christoph Hellwigef99b2d2021-10-12 13:12:19 +02002412 poll_flags |= BLK_POLL_ONESHOT;
Jens Axboedef596e2019-01-09 08:59:42 -07002413
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01002414 wq_list_for_each(pos, start, &ctx->iopoll_list) {
2415 struct io_kiocb *req = container_of(pos, struct io_kiocb, comp_list);
Jens Axboe9adbd452019-12-20 08:45:55 -07002416 struct kiocb *kiocb = &req->rw.kiocb;
Pavel Begunkova2416e12021-08-09 13:04:09 +01002417 int ret;
Jens Axboedef596e2019-01-09 08:59:42 -07002418
2419 /*
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07002420 * Move completed and retryable entries to our local lists.
2421 * If we find a request that requires polling, break out
2422 * and complete those lists first, if we have entries there.
Jens Axboedef596e2019-01-09 08:59:42 -07002423 */
Pavel Begunkove3f721e2021-09-24 21:59:48 +01002424 if (READ_ONCE(req->iopoll_completed))
Jens Axboedef596e2019-01-09 08:59:42 -07002425 break;
2426
Jens Axboeb688f112021-10-12 09:28:46 -06002427 ret = kiocb->ki_filp->f_op->iopoll(kiocb, &iob, poll_flags);
Pavel Begunkova2416e12021-08-09 13:04:09 +01002428 if (unlikely(ret < 0))
2429 return ret;
2430 else if (ret)
Christoph Hellwigef99b2d2021-10-12 13:12:19 +02002431 poll_flags |= BLK_POLL_ONESHOT;
Jens Axboedef596e2019-01-09 08:59:42 -07002432
Pavel Begunkov3aadc232020-07-06 17:59:29 +03002433 /* iopoll may have completed current req */
Jens Axboeb688f112021-10-12 09:28:46 -06002434 if (!rq_list_empty(iob.req_list) ||
Pavel Begunkove3f721e2021-09-24 21:59:48 +01002435 READ_ONCE(req->iopoll_completed))
2436 break;
Jens Axboedef596e2019-01-09 08:59:42 -07002437 }
2438
Jens Axboeb688f112021-10-12 09:28:46 -06002439 if (!rq_list_empty(iob.req_list))
2440 iob.complete(&iob);
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01002441 else if (!pos)
2442 return 0;
2443
2444 prev = start;
2445 wq_list_for_each_resume(pos, prev) {
2446 struct io_kiocb *req = container_of(pos, struct io_kiocb, comp_list);
2447
Pavel Begunkovb3fa03f2021-09-24 21:59:51 +01002448 /* order with io_complete_rw_iopoll(), e.g. ->result updates */
2449 if (!smp_load_acquire(&req->iopoll_completed))
Pavel Begunkove3f721e2021-09-24 21:59:48 +01002450 break;
Pavel Begunkovb3fa03f2021-09-24 21:59:51 +01002451 __io_cqring_fill_event(ctx, req->user_data, req->result,
Pavel Begunkovf5ed3bc2021-09-24 21:59:52 +01002452 io_put_rw_kbuf(req));
Pavel Begunkove3f721e2021-09-24 21:59:48 +01002453 nr_events++;
2454 }
Jens Axboedef596e2019-01-09 08:59:42 -07002455
Pavel Begunkovf5ed3bc2021-09-24 21:59:52 +01002456 if (unlikely(!nr_events))
2457 return 0;
2458
2459 io_commit_cqring(ctx);
2460 io_cqring_ev_posted_iopoll(ctx);
Pavel Begunkov1cce17a2021-09-24 21:59:54 +01002461 pos = start ? start->next : ctx->iopoll_list.first;
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01002462 wq_list_cut(&ctx->iopoll_list, prev, start);
Pavel Begunkov1cce17a2021-09-24 21:59:54 +01002463 io_free_batch_list(ctx, pos);
Pavel Begunkov5ba3c872021-09-24 21:59:43 +01002464 return nr_events;
Jens Axboedef596e2019-01-09 08:59:42 -07002465}
2466
2467/*
Jens Axboedef596e2019-01-09 08:59:42 -07002468 * We can't just wait for polled events to come to us, we have to actively
2469 * find and complete them.
2470 */
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03002471static void io_iopoll_try_reap_events(struct io_ring_ctx *ctx)
Jens Axboedef596e2019-01-09 08:59:42 -07002472{
2473 if (!(ctx->flags & IORING_SETUP_IOPOLL))
2474 return;
2475
2476 mutex_lock(&ctx->uring_lock);
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01002477 while (!wq_list_empty(&ctx->iopoll_list)) {
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03002478 /* let it sleep and repeat later if can't complete a request */
Pavel Begunkov5ba3c872021-09-24 21:59:43 +01002479 if (io_do_iopoll(ctx, true) == 0)
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03002480 break;
Jens Axboe08f54392019-08-21 22:19:11 -06002481 /*
2482 * Ensure we allow local-to-the-cpu processing to take place,
2483 * in this case we need to ensure that we reap all events.
Pavel Begunkov3fcee5a2020-07-06 17:59:31 +03002484 * Also let task_work, etc. to progress by releasing the mutex
Jens Axboe08f54392019-08-21 22:19:11 -06002485 */
Pavel Begunkov3fcee5a2020-07-06 17:59:31 +03002486 if (need_resched()) {
2487 mutex_unlock(&ctx->uring_lock);
2488 cond_resched();
2489 mutex_lock(&ctx->uring_lock);
2490 }
Jens Axboedef596e2019-01-09 08:59:42 -07002491 }
2492 mutex_unlock(&ctx->uring_lock);
2493}
2494
Pavel Begunkov7668b922020-07-07 16:36:21 +03002495static int io_iopoll_check(struct io_ring_ctx *ctx, long min)
Jens Axboedef596e2019-01-09 08:59:42 -07002496{
Pavel Begunkov7668b922020-07-07 16:36:21 +03002497 unsigned int nr_events = 0;
Pavel Begunkove9979b32021-04-13 02:58:45 +01002498 int ret = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07002499
Xiaoguang Wangc7849be2020-02-22 14:46:05 +08002500 /*
2501 * We disallow the app entering submit/complete with polling, but we
2502 * still need to lock the ring to prevent racing with polled issue
2503 * that got punted to a workqueue.
2504 */
2505 mutex_lock(&ctx->uring_lock);
Pavel Begunkovf39c8a52021-04-13 02:58:46 +01002506 /*
2507 * Don't enter poll loop if we already have events pending.
2508 * If we do, we can potentially be spinning for commands that
2509 * already triggered a CQE (eg in error).
2510 */
Pavel Begunkov5ed7a372021-06-14 23:37:27 +01002511 if (test_bit(0, &ctx->check_cq_overflow))
Pavel Begunkovf39c8a52021-04-13 02:58:46 +01002512 __io_cqring_overflow_flush(ctx, false);
2513 if (io_cqring_events(ctx))
2514 goto out;
Jens Axboedef596e2019-01-09 08:59:42 -07002515 do {
Jens Axboe500f9fb2019-08-19 12:15:59 -06002516 /*
2517 * If a submit got punted to a workqueue, we can have the
2518 * application entering polling for a command before it gets
2519 * issued. That app will hold the uring_lock for the duration
2520 * of the poll right here, so we need to take a breather every
2521 * now and then to ensure that the issue has a chance to add
2522 * the poll to the issued list. Otherwise we can spin here
2523 * forever, while the workqueue is stuck trying to acquire the
2524 * very same mutex.
2525 */
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01002526 if (wq_list_empty(&ctx->iopoll_list)) {
Pavel Begunkov8f487ef2021-07-08 13:37:06 +01002527 u32 tail = ctx->cached_cq_tail;
2528
Jens Axboe500f9fb2019-08-19 12:15:59 -06002529 mutex_unlock(&ctx->uring_lock);
Jens Axboe4c6e2772020-07-01 11:29:10 -06002530 io_run_task_work();
Jens Axboe500f9fb2019-08-19 12:15:59 -06002531 mutex_lock(&ctx->uring_lock);
Pavel Begunkove9979b32021-04-13 02:58:45 +01002532
Pavel Begunkov8f487ef2021-07-08 13:37:06 +01002533 /* some requests don't go through iopoll_list */
2534 if (tail != ctx->cached_cq_tail ||
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01002535 wq_list_empty(&ctx->iopoll_list))
Pavel Begunkove9979b32021-04-13 02:58:45 +01002536 break;
Jens Axboe500f9fb2019-08-19 12:15:59 -06002537 }
Pavel Begunkov5ba3c872021-09-24 21:59:43 +01002538 ret = io_do_iopoll(ctx, !min);
2539 if (ret < 0)
2540 break;
2541 nr_events += ret;
2542 ret = 0;
2543 } while (nr_events < min && !need_resched());
Pavel Begunkovf39c8a52021-04-13 02:58:46 +01002544out:
Jens Axboe500f9fb2019-08-19 12:15:59 -06002545 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07002546 return ret;
2547}
2548
Jens Axboe491381ce2019-10-17 09:20:46 -06002549static void kiocb_end_write(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002550{
Jens Axboe491381ce2019-10-17 09:20:46 -06002551 /*
2552 * Tell lockdep we inherited freeze protection from submission
2553 * thread.
2554 */
2555 if (req->flags & REQ_F_ISREG) {
Pavel Begunkov1c986792021-03-22 01:58:31 +00002556 struct super_block *sb = file_inode(req->file)->i_sb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002557
Pavel Begunkov1c986792021-03-22 01:58:31 +00002558 __sb_writers_acquired(sb, SB_FREEZE_WRITE);
2559 sb_end_write(sb);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002560 }
2561}
2562
Jens Axboeb63534c2020-06-04 11:28:00 -06002563#ifdef CONFIG_BLOCK
Pavel Begunkovdc2a6e92021-01-19 13:32:35 +00002564static bool io_resubmit_prep(struct io_kiocb *req)
Jens Axboeb63534c2020-06-04 11:28:00 -06002565{
Pavel Begunkovab454432021-03-22 01:58:33 +00002566 struct io_async_rw *rw = req->async_data;
Jens Axboeb63534c2020-06-04 11:28:00 -06002567
Pavel Begunkovab454432021-03-22 01:58:33 +00002568 if (!rw)
2569 return !io_req_prep_async(req);
Jens Axboecd658692021-09-10 11:19:14 -06002570 iov_iter_restore(&rw->iter, &rw->iter_state);
Pavel Begunkovab454432021-03-22 01:58:33 +00002571 return true;
Jens Axboeb63534c2020-06-04 11:28:00 -06002572}
Jens Axboeb63534c2020-06-04 11:28:00 -06002573
Jens Axboe3e6a0d32021-03-01 13:56:00 -07002574static bool io_rw_should_reissue(struct io_kiocb *req)
Jens Axboeb63534c2020-06-04 11:28:00 -06002575{
Jens Axboe355afae2020-09-02 09:30:31 -06002576 umode_t mode = file_inode(req->file)->i_mode;
Jens Axboe3e6a0d32021-03-01 13:56:00 -07002577 struct io_ring_ctx *ctx = req->ctx;
Jens Axboeb63534c2020-06-04 11:28:00 -06002578
Jens Axboe355afae2020-09-02 09:30:31 -06002579 if (!S_ISBLK(mode) && !S_ISREG(mode))
2580 return false;
Jens Axboe3e6a0d32021-03-01 13:56:00 -07002581 if ((req->flags & REQ_F_NOWAIT) || (io_wq_current_is_worker() &&
2582 !(ctx->flags & IORING_SETUP_IOPOLL)))
Jens Axboeb63534c2020-06-04 11:28:00 -06002583 return false;
Jens Axboe7c977a52021-02-23 19:17:35 -07002584 /*
2585 * If ref is dying, we might be running poll reap from the exit work.
2586 * Don't attempt to reissue from that path, just let it fail with
2587 * -EAGAIN.
2588 */
Jens Axboe3e6a0d32021-03-01 13:56:00 -07002589 if (percpu_ref_is_dying(&ctx->refs))
2590 return false;
Jens Axboeef046882021-07-27 10:50:31 -06002591 /*
2592 * Play it safe and assume not safe to re-import and reissue if we're
2593 * not in the original thread group (or in task context).
2594 */
2595 if (!same_thread_group(req->task, current) || !in_task())
2596 return false;
Jens Axboe3e6a0d32021-03-01 13:56:00 -07002597 return true;
2598}
Jens Axboee82ad482021-04-02 19:45:34 -06002599#else
Jens Axboea1ff1e32021-04-12 06:40:02 -06002600static bool io_resubmit_prep(struct io_kiocb *req)
2601{
2602 return false;
2603}
Jens Axboee82ad482021-04-02 19:45:34 -06002604static bool io_rw_should_reissue(struct io_kiocb *req)
2605{
2606 return false;
2607}
Jens Axboe3e6a0d32021-03-01 13:56:00 -07002608#endif
2609
Jens Axboe8ef12ef2021-08-10 15:15:25 -06002610static bool __io_complete_rw_common(struct io_kiocb *req, long res)
Jens Axboea1d7c392020-06-22 11:09:46 -06002611{
Pavel Begunkovb65c1282021-03-22 01:45:59 +00002612 if (req->rw.kiocb.ki_flags & IOCB_WRITE)
2613 kiocb_end_write(req);
Pavel Begunkov9532b992021-03-22 01:58:34 +00002614 if (res != req->result) {
2615 if ((res == -EAGAIN || res == -EOPNOTSUPP) &&
2616 io_rw_should_reissue(req)) {
2617 req->flags |= REQ_F_REISSUE;
Jens Axboe8ef12ef2021-08-10 15:15:25 -06002618 return true;
Pavel Begunkov9532b992021-03-22 01:58:34 +00002619 }
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01002620 req_set_fail(req);
Jens Axboe8ef12ef2021-08-10 15:15:25 -06002621 req->result = res;
Pavel Begunkov9532b992021-03-22 01:58:34 +00002622 }
Jens Axboe8ef12ef2021-08-10 15:15:25 -06002623 return false;
2624}
2625
Pavel Begunkovf237c302021-08-18 12:42:46 +01002626static void io_req_task_complete(struct io_kiocb *req, bool *locked)
Jens Axboe8ef12ef2021-08-10 15:15:25 -06002627{
Pavel Begunkov126180b2021-08-18 12:42:47 +01002628 unsigned int cflags = io_put_rw_kbuf(req);
2629 long res = req->result;
2630
Pavel Begunkov6f33b0b2021-09-24 21:59:44 +01002631 if (*locked)
Pavel Begunkov126180b2021-08-18 12:42:47 +01002632 io_req_complete_state(req, res, cflags);
Pavel Begunkov6f33b0b2021-09-24 21:59:44 +01002633 else
Pavel Begunkov126180b2021-08-18 12:42:47 +01002634 io_req_complete_post(req, res, cflags);
Jens Axboe8ef12ef2021-08-10 15:15:25 -06002635}
2636
2637static void __io_complete_rw(struct io_kiocb *req, long res, long res2,
2638 unsigned int issue_flags)
2639{
2640 if (__io_complete_rw_common(req, res))
2641 return;
Pavel Begunkov63637852021-09-02 00:38:22 +01002642 __io_req_complete(req, issue_flags, req->result, io_put_rw_kbuf(req));
Jens Axboeba816ad2019-09-28 11:36:45 -06002643}
2644
2645static void io_complete_rw(struct kiocb *kiocb, long res, long res2)
2646{
Jens Axboe9adbd452019-12-20 08:45:55 -07002647 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboeba816ad2019-09-28 11:36:45 -06002648
Jens Axboe8ef12ef2021-08-10 15:15:25 -06002649 if (__io_complete_rw_common(req, res))
2650 return;
2651 req->result = res;
2652 req->io_task_work.func = io_req_task_complete;
2653 io_req_task_work_add(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002654}
2655
Jens Axboedef596e2019-01-09 08:59:42 -07002656static void io_complete_rw_iopoll(struct kiocb *kiocb, long res, long res2)
2657{
Jens Axboe9adbd452019-12-20 08:45:55 -07002658 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboedef596e2019-01-09 08:59:42 -07002659
Jens Axboe491381ce2019-10-17 09:20:46 -06002660 if (kiocb->ki_flags & IOCB_WRITE)
2661 kiocb_end_write(req);
Pavel Begunkov9532b992021-03-22 01:58:34 +00002662 if (unlikely(res != req->result)) {
Pavel Begunkovb66ceaf2021-09-15 11:00:05 +01002663 if (res == -EAGAIN && io_rw_should_reissue(req)) {
2664 req->flags |= REQ_F_REISSUE;
2665 return;
Pavel Begunkov9532b992021-03-22 01:58:34 +00002666 }
Pavel Begunkov8c130822021-03-22 01:58:32 +00002667 }
Xiaoguang Wangbbde0172020-06-16 02:06:38 +08002668
Pavel Begunkovb3fa03f2021-09-24 21:59:51 +01002669 req->result = res;
2670 /* order with io_iopoll_complete() checking ->iopoll_completed */
2671 smp_store_release(&req->iopoll_completed, 1);
Jens Axboedef596e2019-01-09 08:59:42 -07002672}
2673
2674/*
2675 * After the iocb has been issued, it's safe to be found on the poll list.
2676 * Adding the kiocb to the list AFTER submission ensures that we don't
Pavel Begunkovf39c8a52021-04-13 02:58:46 +01002677 * find it from a io_do_iopoll() thread before the issuer is done
Jens Axboedef596e2019-01-09 08:59:42 -07002678 * accessing the kiocb cookie.
2679 */
Pavel Begunkovcb3d8972021-06-14 02:36:14 +01002680static void io_iopoll_req_issued(struct io_kiocb *req)
Jens Axboedef596e2019-01-09 08:59:42 -07002681{
2682 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovcb3d8972021-06-14 02:36:14 +01002683 const bool in_async = io_wq_current_is_worker();
2684
2685 /* workqueue context doesn't hold uring_lock, grab it now */
2686 if (unlikely(in_async))
2687 mutex_lock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07002688
2689 /*
2690 * Track whether we have multiple files in our lists. This will impact
2691 * how we do polling eventually, not spinning if we're on potentially
2692 * different devices.
2693 */
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01002694 if (wq_list_empty(&ctx->iopoll_list)) {
Hao Xu915b3dd2021-06-28 05:37:30 +08002695 ctx->poll_multi_queue = false;
2696 } else if (!ctx->poll_multi_queue) {
Jens Axboedef596e2019-01-09 08:59:42 -07002697 struct io_kiocb *list_req;
2698
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01002699 list_req = container_of(ctx->iopoll_list.first, struct io_kiocb,
2700 comp_list);
Christoph Hellwig30da1b42021-10-12 13:12:14 +02002701 if (list_req->file != req->file)
Hao Xu915b3dd2021-06-28 05:37:30 +08002702 ctx->poll_multi_queue = true;
Jens Axboedef596e2019-01-09 08:59:42 -07002703 }
2704
2705 /*
2706 * For fast devices, IO may have already completed. If it has, add
2707 * it to the front so we find it first.
2708 */
Xiaoguang Wang65a65432020-06-11 23:39:36 +08002709 if (READ_ONCE(req->iopoll_completed))
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01002710 wq_list_add_head(&req->comp_list, &ctx->iopoll_list);
Jens Axboedef596e2019-01-09 08:59:42 -07002711 else
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01002712 wq_list_add_tail(&req->comp_list, &ctx->iopoll_list);
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08002713
Pavel Begunkovcb3d8972021-06-14 02:36:14 +01002714 if (unlikely(in_async)) {
2715 /*
2716 * If IORING_SETUP_SQPOLL is enabled, sqes are either handle
2717 * in sq thread task context or in io worker task context. If
2718 * current task context is sq thread, we don't need to check
2719 * whether should wake up sq thread.
2720 */
2721 if ((ctx->flags & IORING_SETUP_SQPOLL) &&
2722 wq_has_sleeper(&ctx->sq_data->wait))
2723 wake_up(&ctx->sq_data->wait);
2724
2725 mutex_unlock(&ctx->uring_lock);
2726 }
Jens Axboedef596e2019-01-09 08:59:42 -07002727}
2728
Jens Axboe4503b762020-06-01 10:00:27 -06002729static bool io_bdev_nowait(struct block_device *bdev)
2730{
Jeffle Xu9ba0d0c2020-10-19 16:59:42 +08002731 return !bdev || blk_queue_nowait(bdev_get_queue(bdev));
Jens Axboe4503b762020-06-01 10:00:27 -06002732}
2733
Jens Axboe2b188cc2019-01-07 10:46:33 -07002734/*
2735 * If we tracked the file through the SCM inflight mechanism, we could support
2736 * any file. For now, just ensure that anything potentially problematic is done
2737 * inline.
2738 */
Pavel Begunkovb191e2d2021-08-09 13:04:03 +01002739static bool __io_file_supports_nowait(struct file *file, int rw)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002740{
2741 umode_t mode = file_inode(file)->i_mode;
2742
Jens Axboe4503b762020-06-01 10:00:27 -06002743 if (S_ISBLK(mode)) {
Christoph Hellwig4e7b5672020-11-23 13:38:40 +01002744 if (IS_ENABLED(CONFIG_BLOCK) &&
2745 io_bdev_nowait(I_BDEV(file->f_mapping->host)))
Jens Axboe4503b762020-06-01 10:00:27 -06002746 return true;
2747 return false;
2748 }
Pavel Begunkov976517f2021-06-09 12:07:25 +01002749 if (S_ISSOCK(mode))
Jens Axboe2b188cc2019-01-07 10:46:33 -07002750 return true;
Jens Axboe4503b762020-06-01 10:00:27 -06002751 if (S_ISREG(mode)) {
Christoph Hellwig4e7b5672020-11-23 13:38:40 +01002752 if (IS_ENABLED(CONFIG_BLOCK) &&
2753 io_bdev_nowait(file->f_inode->i_sb->s_bdev) &&
Jens Axboe4503b762020-06-01 10:00:27 -06002754 file->f_op != &io_uring_fops)
2755 return true;
2756 return false;
2757 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002758
Jens Axboec5b85622020-06-09 19:23:05 -06002759 /* any ->read/write should understand O_NONBLOCK */
2760 if (file->f_flags & O_NONBLOCK)
2761 return true;
2762
Jens Axboeaf197f52020-04-28 13:15:06 -06002763 if (!(file->f_mode & FMODE_NOWAIT))
2764 return false;
2765
2766 if (rw == READ)
2767 return file->f_op->read_iter != NULL;
2768
2769 return file->f_op->write_iter != NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002770}
2771
Pavel Begunkovb191e2d2021-08-09 13:04:03 +01002772static bool io_file_supports_nowait(struct io_kiocb *req, int rw)
Jens Axboe7b29f922021-03-12 08:30:14 -07002773{
Pavel Begunkovb191e2d2021-08-09 13:04:03 +01002774 if (rw == READ && (req->flags & REQ_F_NOWAIT_READ))
Jens Axboe7b29f922021-03-12 08:30:14 -07002775 return true;
Pavel Begunkovb191e2d2021-08-09 13:04:03 +01002776 else if (rw == WRITE && (req->flags & REQ_F_NOWAIT_WRITE))
Jens Axboe7b29f922021-03-12 08:30:14 -07002777 return true;
2778
Pavel Begunkovb191e2d2021-08-09 13:04:03 +01002779 return __io_file_supports_nowait(req->file, rw);
Jens Axboe7b29f922021-03-12 08:30:14 -07002780}
2781
Jens Axboe5d329e12021-09-14 11:08:37 -06002782static int io_prep_rw(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2783 int rw)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002784{
Jens Axboedef596e2019-01-09 08:59:42 -07002785 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9adbd452019-12-20 08:45:55 -07002786 struct kiocb *kiocb = &req->rw.kiocb;
Pavel Begunkov75c668c2021-02-04 13:52:05 +00002787 struct file *file = req->file;
Jens Axboe09bb8392019-03-13 12:39:28 -06002788 unsigned ioprio;
2789 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002790
Pavel Begunkovc97d8a02021-08-09 13:04:04 +01002791 if (!io_req_ffs_set(req) && S_ISREG(file_inode(file)->i_mode))
Jens Axboe491381ce2019-10-17 09:20:46 -06002792 req->flags |= REQ_F_ISREG;
2793
Jens Axboe2b188cc2019-01-07 10:46:33 -07002794 kiocb->ki_pos = READ_ONCE(sqe->off);
Pavel Begunkov75c668c2021-02-04 13:52:05 +00002795 if (kiocb->ki_pos == -1 && !(file->f_mode & FMODE_STREAM)) {
Jens Axboeba042912019-12-25 16:33:42 -07002796 req->flags |= REQ_F_CUR_POS;
Pavel Begunkov75c668c2021-02-04 13:52:05 +00002797 kiocb->ki_pos = file->f_pos;
Jens Axboeba042912019-12-25 16:33:42 -07002798 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002799 kiocb->ki_hint = ki_hint_validate(file_write_hint(kiocb->ki_filp));
Pavel Begunkov3e577dc2020-02-01 03:58:42 +03002800 kiocb->ki_flags = iocb_flags(kiocb->ki_filp);
2801 ret = kiocb_set_rw_flags(kiocb, READ_ONCE(sqe->rw_flags));
2802 if (unlikely(ret))
2803 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002804
Jens Axboe5d329e12021-09-14 11:08:37 -06002805 /*
2806 * If the file is marked O_NONBLOCK, still allow retry for it if it
2807 * supports async. Otherwise it's impossible to use O_NONBLOCK files
2808 * reliably. If not, or it IOCB_NOWAIT is set, don't retry.
2809 */
2810 if ((kiocb->ki_flags & IOCB_NOWAIT) ||
2811 ((file->f_flags & O_NONBLOCK) && !io_file_supports_nowait(req, rw)))
Pavel Begunkov75c668c2021-02-04 13:52:05 +00002812 req->flags |= REQ_F_NOWAIT;
2813
Jens Axboe2b188cc2019-01-07 10:46:33 -07002814 ioprio = READ_ONCE(sqe->ioprio);
2815 if (ioprio) {
2816 ret = ioprio_check_cap(ioprio);
2817 if (ret)
Jens Axboe09bb8392019-03-13 12:39:28 -06002818 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002819
2820 kiocb->ki_ioprio = ioprio;
2821 } else
2822 kiocb->ki_ioprio = get_current_ioprio();
2823
Jens Axboedef596e2019-01-09 08:59:42 -07002824 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07002825 if (!(kiocb->ki_flags & IOCB_DIRECT) ||
2826 !kiocb->ki_filp->f_op->iopoll)
Jens Axboe09bb8392019-03-13 12:39:28 -06002827 return -EOPNOTSUPP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002828
Jens Axboe394918e2021-03-08 11:40:23 -07002829 kiocb->ki_flags |= IOCB_HIPRI | IOCB_ALLOC_CACHE;
Jens Axboedef596e2019-01-09 08:59:42 -07002830 kiocb->ki_complete = io_complete_rw_iopoll;
Xiaoguang Wang65a65432020-06-11 23:39:36 +08002831 req->iopoll_completed = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07002832 } else {
Jens Axboe09bb8392019-03-13 12:39:28 -06002833 if (kiocb->ki_flags & IOCB_HIPRI)
2834 return -EINVAL;
Jens Axboedef596e2019-01-09 08:59:42 -07002835 kiocb->ki_complete = io_complete_rw;
2836 }
Jens Axboe9adbd452019-12-20 08:45:55 -07002837
Pavel Begunkoveae071c2021-04-25 14:32:24 +01002838 if (req->opcode == IORING_OP_READ_FIXED ||
2839 req->opcode == IORING_OP_WRITE_FIXED) {
2840 req->imu = NULL;
2841 io_req_set_rsrc_node(req);
2842 }
2843
Jens Axboe3529d8c2019-12-19 18:24:38 -07002844 req->rw.addr = READ_ONCE(sqe->addr);
2845 req->rw.len = READ_ONCE(sqe->len);
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -07002846 req->buf_index = READ_ONCE(sqe->buf_index);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002847 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002848}
2849
2850static inline void io_rw_done(struct kiocb *kiocb, ssize_t ret)
2851{
2852 switch (ret) {
2853 case -EIOCBQUEUED:
2854 break;
2855 case -ERESTARTSYS:
2856 case -ERESTARTNOINTR:
2857 case -ERESTARTNOHAND:
2858 case -ERESTART_RESTARTBLOCK:
2859 /*
2860 * We can't just restart the syscall, since previously
2861 * submitted sqes may already be in progress. Just fail this
2862 * IO with EINTR.
2863 */
2864 ret = -EINTR;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05002865 fallthrough;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002866 default:
2867 kiocb->ki_complete(kiocb, ret, 0);
2868 }
2869}
2870
Jens Axboea1d7c392020-06-22 11:09:46 -06002871static void kiocb_done(struct kiocb *kiocb, ssize_t ret,
Pavel Begunkov889fca72021-02-10 00:03:09 +00002872 unsigned int issue_flags)
Jens Axboeba816ad2019-09-28 11:36:45 -06002873{
Jens Axboeba042912019-12-25 16:33:42 -07002874 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboee8c2bc12020-08-15 18:44:09 -07002875 struct io_async_rw *io = req->async_data;
Jens Axboeba042912019-12-25 16:33:42 -07002876
Jens Axboe227c0c92020-08-13 11:51:40 -06002877 /* add previously done IO, if any */
Jens Axboee8c2bc12020-08-15 18:44:09 -07002878 if (io && io->bytes_done > 0) {
Jens Axboe227c0c92020-08-13 11:51:40 -06002879 if (ret < 0)
Jens Axboee8c2bc12020-08-15 18:44:09 -07002880 ret = io->bytes_done;
Jens Axboe227c0c92020-08-13 11:51:40 -06002881 else
Jens Axboee8c2bc12020-08-15 18:44:09 -07002882 ret += io->bytes_done;
Jens Axboe227c0c92020-08-13 11:51:40 -06002883 }
2884
Jens Axboeba042912019-12-25 16:33:42 -07002885 if (req->flags & REQ_F_CUR_POS)
2886 req->file->f_pos = kiocb->ki_pos;
Pavel Begunkovb66ceaf2021-09-15 11:00:05 +01002887 if (ret >= 0 && (kiocb->ki_complete == io_complete_rw))
Pavel Begunkov889fca72021-02-10 00:03:09 +00002888 __io_complete_rw(req, ret, 0, issue_flags);
Jens Axboeba816ad2019-09-28 11:36:45 -06002889 else
2890 io_rw_done(kiocb, ret);
Pavel Begunkov97284632021-04-08 19:28:03 +01002891
Pavel Begunkovb66ceaf2021-09-15 11:00:05 +01002892 if (req->flags & REQ_F_REISSUE) {
Pavel Begunkov97284632021-04-08 19:28:03 +01002893 req->flags &= ~REQ_F_REISSUE;
Jens Axboea7be7c22021-04-15 11:31:14 -06002894 if (io_resubmit_prep(req)) {
Jens Axboe773af692021-07-27 10:25:55 -06002895 io_req_task_queue_reissue(req);
Pavel Begunkov8c130822021-03-22 01:58:32 +00002896 } else {
Pavel Begunkovb66ceaf2021-09-15 11:00:05 +01002897 unsigned int cflags = io_put_rw_kbuf(req);
2898 struct io_ring_ctx *ctx = req->ctx;
2899
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01002900 req_set_fail(req);
Hao Xu14cfbb72021-10-14 22:04:00 +08002901 if (!(issue_flags & IO_URING_F_NONBLOCK)) {
Pavel Begunkovb66ceaf2021-09-15 11:00:05 +01002902 mutex_lock(&ctx->uring_lock);
2903 __io_req_complete(req, issue_flags, ret, cflags);
2904 mutex_unlock(&ctx->uring_lock);
2905 } else {
2906 __io_req_complete(req, issue_flags, ret, cflags);
2907 }
Pavel Begunkov97284632021-04-08 19:28:03 +01002908 }
2909 }
Jens Axboeba816ad2019-09-28 11:36:45 -06002910}
2911
Pavel Begunkoveae071c2021-04-25 14:32:24 +01002912static int __io_import_fixed(struct io_kiocb *req, int rw, struct iov_iter *iter,
2913 struct io_mapped_ubuf *imu)
Jens Axboeedafcce2019-01-09 09:16:05 -07002914{
Jens Axboe9adbd452019-12-20 08:45:55 -07002915 size_t len = req->rw.len;
Pavel Begunkov75769e32021-04-01 15:43:54 +01002916 u64 buf_end, buf_addr = req->rw.addr;
Jens Axboeedafcce2019-01-09 09:16:05 -07002917 size_t offset;
Jens Axboeedafcce2019-01-09 09:16:05 -07002918
Pavel Begunkov75769e32021-04-01 15:43:54 +01002919 if (unlikely(check_add_overflow(buf_addr, (u64)len, &buf_end)))
Jens Axboeedafcce2019-01-09 09:16:05 -07002920 return -EFAULT;
2921 /* not inside the mapped region */
Pavel Begunkov4751f532021-04-01 15:43:55 +01002922 if (unlikely(buf_addr < imu->ubuf || buf_end > imu->ubuf_end))
Jens Axboeedafcce2019-01-09 09:16:05 -07002923 return -EFAULT;
2924
2925 /*
2926 * May not be a start of buffer, set size appropriately
2927 * and advance us to the beginning.
2928 */
2929 offset = buf_addr - imu->ubuf;
2930 iov_iter_bvec(iter, rw, imu->bvec, imu->nr_bvecs, offset + len);
Jens Axboebd11b3a2019-07-20 08:37:31 -06002931
2932 if (offset) {
2933 /*
2934 * Don't use iov_iter_advance() here, as it's really slow for
2935 * using the latter parts of a big fixed buffer - it iterates
2936 * over each segment manually. We can cheat a bit here, because
2937 * we know that:
2938 *
2939 * 1) it's a BVEC iter, we set it up
2940 * 2) all bvecs are PAGE_SIZE in size, except potentially the
2941 * first and last bvec
2942 *
2943 * So just find our index, and adjust the iterator afterwards.
2944 * If the offset is within the first bvec (or the whole first
2945 * bvec, just use iov_iter_advance(). This makes it easier
2946 * since we can just skip the first segment, which may not
2947 * be PAGE_SIZE aligned.
2948 */
2949 const struct bio_vec *bvec = imu->bvec;
2950
2951 if (offset <= bvec->bv_len) {
2952 iov_iter_advance(iter, offset);
2953 } else {
2954 unsigned long seg_skip;
2955
2956 /* skip first vec */
2957 offset -= bvec->bv_len;
2958 seg_skip = 1 + (offset >> PAGE_SHIFT);
2959
2960 iter->bvec = bvec + seg_skip;
2961 iter->nr_segs -= seg_skip;
Aleix Roca Nonell99c79f62019-08-15 14:03:22 +02002962 iter->count -= bvec->bv_len + offset;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002963 iter->iov_offset = offset & ~PAGE_MASK;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002964 }
2965 }
2966
Pavel Begunkov847595d2021-02-04 13:52:06 +00002967 return 0;
Jens Axboeedafcce2019-01-09 09:16:05 -07002968}
2969
Pavel Begunkoveae071c2021-04-25 14:32:24 +01002970static int io_import_fixed(struct io_kiocb *req, int rw, struct iov_iter *iter)
2971{
2972 struct io_ring_ctx *ctx = req->ctx;
2973 struct io_mapped_ubuf *imu = req->imu;
2974 u16 index, buf_index = req->buf_index;
2975
2976 if (likely(!imu)) {
2977 if (unlikely(buf_index >= ctx->nr_user_bufs))
2978 return -EFAULT;
2979 index = array_index_nospec(buf_index, ctx->nr_user_bufs);
2980 imu = READ_ONCE(ctx->user_bufs[index]);
2981 req->imu = imu;
2982 }
2983 return __io_import_fixed(req, rw, iter, imu);
2984}
2985
Jens Axboebcda7ba2020-02-23 16:42:51 -07002986static void io_ring_submit_unlock(struct io_ring_ctx *ctx, bool needs_lock)
2987{
2988 if (needs_lock)
2989 mutex_unlock(&ctx->uring_lock);
2990}
2991
2992static void io_ring_submit_lock(struct io_ring_ctx *ctx, bool needs_lock)
2993{
2994 /*
2995 * "Normal" inline submissions always hold the uring_lock, since we
2996 * grab it from the system call. Same is true for the SQPOLL offload.
2997 * The only exception is when we've detached the request and issue it
2998 * from an async worker thread, grab the lock for that case.
2999 */
3000 if (needs_lock)
3001 mutex_lock(&ctx->uring_lock);
3002}
3003
3004static struct io_buffer *io_buffer_select(struct io_kiocb *req, size_t *len,
3005 int bgid, struct io_buffer *kbuf,
3006 bool needs_lock)
3007{
3008 struct io_buffer *head;
3009
3010 if (req->flags & REQ_F_BUFFER_SELECTED)
3011 return kbuf;
3012
3013 io_ring_submit_lock(req->ctx, needs_lock);
3014
3015 lockdep_assert_held(&req->ctx->uring_lock);
3016
Jens Axboe9e15c3a2021-03-13 12:29:43 -07003017 head = xa_load(&req->ctx->io_buffers, bgid);
Jens Axboebcda7ba2020-02-23 16:42:51 -07003018 if (head) {
3019 if (!list_empty(&head->list)) {
3020 kbuf = list_last_entry(&head->list, struct io_buffer,
3021 list);
3022 list_del(&kbuf->list);
3023 } else {
3024 kbuf = head;
Jens Axboe9e15c3a2021-03-13 12:29:43 -07003025 xa_erase(&req->ctx->io_buffers, bgid);
Jens Axboebcda7ba2020-02-23 16:42:51 -07003026 }
3027 if (*len > kbuf->len)
3028 *len = kbuf->len;
3029 } else {
3030 kbuf = ERR_PTR(-ENOBUFS);
3031 }
3032
3033 io_ring_submit_unlock(req->ctx, needs_lock);
3034
3035 return kbuf;
3036}
3037
Jens Axboe4d954c22020-02-27 07:31:19 -07003038static void __user *io_rw_buffer_select(struct io_kiocb *req, size_t *len,
3039 bool needs_lock)
3040{
3041 struct io_buffer *kbuf;
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -07003042 u16 bgid;
Jens Axboe4d954c22020-02-27 07:31:19 -07003043
3044 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -07003045 bgid = req->buf_index;
Jens Axboe4d954c22020-02-27 07:31:19 -07003046 kbuf = io_buffer_select(req, len, bgid, kbuf, needs_lock);
3047 if (IS_ERR(kbuf))
3048 return kbuf;
3049 req->rw.addr = (u64) (unsigned long) kbuf;
3050 req->flags |= REQ_F_BUFFER_SELECTED;
3051 return u64_to_user_ptr(kbuf->addr);
3052}
3053
3054#ifdef CONFIG_COMPAT
3055static ssize_t io_compat_import(struct io_kiocb *req, struct iovec *iov,
3056 bool needs_lock)
3057{
3058 struct compat_iovec __user *uiov;
3059 compat_ssize_t clen;
3060 void __user *buf;
3061 ssize_t len;
3062
3063 uiov = u64_to_user_ptr(req->rw.addr);
3064 if (!access_ok(uiov, sizeof(*uiov)))
3065 return -EFAULT;
3066 if (__get_user(clen, &uiov->iov_len))
3067 return -EFAULT;
3068 if (clen < 0)
3069 return -EINVAL;
3070
3071 len = clen;
3072 buf = io_rw_buffer_select(req, &len, needs_lock);
3073 if (IS_ERR(buf))
3074 return PTR_ERR(buf);
3075 iov[0].iov_base = buf;
3076 iov[0].iov_len = (compat_size_t) len;
3077 return 0;
3078}
3079#endif
3080
3081static ssize_t __io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
3082 bool needs_lock)
3083{
3084 struct iovec __user *uiov = u64_to_user_ptr(req->rw.addr);
3085 void __user *buf;
3086 ssize_t len;
3087
3088 if (copy_from_user(iov, uiov, sizeof(*uiov)))
3089 return -EFAULT;
3090
3091 len = iov[0].iov_len;
3092 if (len < 0)
3093 return -EINVAL;
3094 buf = io_rw_buffer_select(req, &len, needs_lock);
3095 if (IS_ERR(buf))
3096 return PTR_ERR(buf);
3097 iov[0].iov_base = buf;
3098 iov[0].iov_len = len;
3099 return 0;
3100}
3101
3102static ssize_t io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
3103 bool needs_lock)
3104{
Jens Axboedddb3e22020-06-04 11:27:01 -06003105 if (req->flags & REQ_F_BUFFER_SELECTED) {
3106 struct io_buffer *kbuf;
3107
3108 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
3109 iov[0].iov_base = u64_to_user_ptr(kbuf->addr);
3110 iov[0].iov_len = kbuf->len;
Jens Axboe4d954c22020-02-27 07:31:19 -07003111 return 0;
Jens Axboedddb3e22020-06-04 11:27:01 -06003112 }
Pavel Begunkovdd201662020-12-19 03:15:43 +00003113 if (req->rw.len != 1)
Jens Axboe4d954c22020-02-27 07:31:19 -07003114 return -EINVAL;
3115
3116#ifdef CONFIG_COMPAT
3117 if (req->ctx->compat)
3118 return io_compat_import(req, iov, needs_lock);
3119#endif
3120
3121 return __io_iov_buffer_select(req, iov, needs_lock);
3122}
3123
Pavel Begunkov847595d2021-02-04 13:52:06 +00003124static int io_import_iovec(int rw, struct io_kiocb *req, struct iovec **iovec,
3125 struct iov_iter *iter, bool needs_lock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003126{
Jens Axboe9adbd452019-12-20 08:45:55 -07003127 void __user *buf = u64_to_user_ptr(req->rw.addr);
3128 size_t sqe_len = req->rw.len;
Pavel Begunkov847595d2021-02-04 13:52:06 +00003129 u8 opcode = req->opcode;
Jens Axboe4d954c22020-02-27 07:31:19 -07003130 ssize_t ret;
Jens Axboeedafcce2019-01-09 09:16:05 -07003131
Pavel Begunkov7d009162019-11-25 23:14:40 +03003132 if (opcode == IORING_OP_READ_FIXED || opcode == IORING_OP_WRITE_FIXED) {
Jens Axboeedafcce2019-01-09 09:16:05 -07003133 *iovec = NULL;
Jens Axboe9adbd452019-12-20 08:45:55 -07003134 return io_import_fixed(req, rw, iter);
Jens Axboeedafcce2019-01-09 09:16:05 -07003135 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07003136
Jens Axboebcda7ba2020-02-23 16:42:51 -07003137 /* buffer index only valid with fixed read/write, or buffer select */
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -07003138 if (req->buf_index && !(req->flags & REQ_F_BUFFER_SELECT))
Jens Axboe9adbd452019-12-20 08:45:55 -07003139 return -EINVAL;
3140
Jens Axboe3a6820f2019-12-22 15:19:35 -07003141 if (opcode == IORING_OP_READ || opcode == IORING_OP_WRITE) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07003142 if (req->flags & REQ_F_BUFFER_SELECT) {
Jens Axboe4d954c22020-02-27 07:31:19 -07003143 buf = io_rw_buffer_select(req, &sqe_len, needs_lock);
Pavel Begunkov867a23e2020-08-20 11:34:39 +03003144 if (IS_ERR(buf))
Jens Axboe4d954c22020-02-27 07:31:19 -07003145 return PTR_ERR(buf);
Jens Axboe3f9d6442020-03-11 12:27:04 -06003146 req->rw.len = sqe_len;
Jens Axboebcda7ba2020-02-23 16:42:51 -07003147 }
3148
Jens Axboe3a6820f2019-12-22 15:19:35 -07003149 ret = import_single_range(rw, buf, sqe_len, *iovec, iter);
3150 *iovec = NULL;
David Laight10fc72e2020-11-07 13:16:25 +00003151 return ret;
Jens Axboe3a6820f2019-12-22 15:19:35 -07003152 }
3153
Jens Axboe4d954c22020-02-27 07:31:19 -07003154 if (req->flags & REQ_F_BUFFER_SELECT) {
3155 ret = io_iov_buffer_select(req, *iovec, needs_lock);
Pavel Begunkov847595d2021-02-04 13:52:06 +00003156 if (!ret)
3157 iov_iter_init(iter, rw, *iovec, 1, (*iovec)->iov_len);
Jens Axboe4d954c22020-02-27 07:31:19 -07003158 *iovec = NULL;
3159 return ret;
3160 }
3161
Christoph Hellwig89cd35c2020-09-25 06:51:41 +02003162 return __import_iovec(rw, buf, sqe_len, UIO_FASTIOV, iovec, iter,
3163 req->ctx->compat);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003164}
3165
Jens Axboe0fef9482020-08-26 10:36:20 -06003166static inline loff_t *io_kiocb_ppos(struct kiocb *kiocb)
3167{
Pavel Begunkov5b09e372020-09-30 22:57:15 +03003168 return (kiocb->ki_filp->f_mode & FMODE_STREAM) ? NULL : &kiocb->ki_pos;
Jens Axboe0fef9482020-08-26 10:36:20 -06003169}
3170
Jens Axboe32960612019-09-23 11:05:34 -06003171/*
3172 * For files that don't have ->read_iter() and ->write_iter(), handle them
3173 * by looping over ->read() or ->write() manually.
3174 */
Jens Axboe4017eb92020-10-22 14:14:12 -06003175static ssize_t loop_rw_iter(int rw, struct io_kiocb *req, struct iov_iter *iter)
Jens Axboe32960612019-09-23 11:05:34 -06003176{
Jens Axboe4017eb92020-10-22 14:14:12 -06003177 struct kiocb *kiocb = &req->rw.kiocb;
3178 struct file *file = req->file;
Jens Axboe32960612019-09-23 11:05:34 -06003179 ssize_t ret = 0;
3180
3181 /*
3182 * Don't support polled IO through this interface, and we can't
3183 * support non-blocking either. For the latter, this just causes
3184 * the kiocb to be handled from an async context.
3185 */
3186 if (kiocb->ki_flags & IOCB_HIPRI)
3187 return -EOPNOTSUPP;
3188 if (kiocb->ki_flags & IOCB_NOWAIT)
3189 return -EAGAIN;
3190
3191 while (iov_iter_count(iter)) {
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03003192 struct iovec iovec;
Jens Axboe32960612019-09-23 11:05:34 -06003193 ssize_t nr;
3194
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03003195 if (!iov_iter_is_bvec(iter)) {
3196 iovec = iov_iter_iovec(iter);
3197 } else {
Jens Axboe4017eb92020-10-22 14:14:12 -06003198 iovec.iov_base = u64_to_user_ptr(req->rw.addr);
3199 iovec.iov_len = req->rw.len;
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03003200 }
3201
Jens Axboe32960612019-09-23 11:05:34 -06003202 if (rw == READ) {
3203 nr = file->f_op->read(file, iovec.iov_base,
Jens Axboe0fef9482020-08-26 10:36:20 -06003204 iovec.iov_len, io_kiocb_ppos(kiocb));
Jens Axboe32960612019-09-23 11:05:34 -06003205 } else {
3206 nr = file->f_op->write(file, iovec.iov_base,
Jens Axboe0fef9482020-08-26 10:36:20 -06003207 iovec.iov_len, io_kiocb_ppos(kiocb));
Jens Axboe32960612019-09-23 11:05:34 -06003208 }
3209
3210 if (nr < 0) {
3211 if (!ret)
3212 ret = nr;
3213 break;
3214 }
Jens Axboe16c8d2d2021-09-12 06:45:07 -06003215 if (!iov_iter_is_bvec(iter)) {
3216 iov_iter_advance(iter, nr);
3217 } else {
3218 req->rw.len -= nr;
3219 req->rw.addr += nr;
3220 }
Jens Axboe32960612019-09-23 11:05:34 -06003221 ret += nr;
3222 if (nr != iovec.iov_len)
3223 break;
Jens Axboe32960612019-09-23 11:05:34 -06003224 }
3225
3226 return ret;
3227}
3228
Jens Axboeff6165b2020-08-13 09:47:43 -06003229static void io_req_map_rw(struct io_kiocb *req, const struct iovec *iovec,
3230 const struct iovec *fast_iov, struct iov_iter *iter)
Jens Axboef67676d2019-12-02 11:03:47 -07003231{
Jens Axboee8c2bc12020-08-15 18:44:09 -07003232 struct io_async_rw *rw = req->async_data;
Pavel Begunkovb64e3442020-07-13 22:59:18 +03003233
Jens Axboeff6165b2020-08-13 09:47:43 -06003234 memcpy(&rw->iter, iter, sizeof(*iter));
Pavel Begunkovafb87652020-09-06 00:45:46 +03003235 rw->free_iovec = iovec;
Jens Axboe227c0c92020-08-13 11:51:40 -06003236 rw->bytes_done = 0;
Jens Axboeff6165b2020-08-13 09:47:43 -06003237 /* can only be fixed buffers, no need to do anything */
Pavel Begunkov9c3a2052020-11-23 23:20:27 +00003238 if (iov_iter_is_bvec(iter))
Jens Axboeff6165b2020-08-13 09:47:43 -06003239 return;
Pavel Begunkovb64e3442020-07-13 22:59:18 +03003240 if (!iovec) {
Jens Axboeff6165b2020-08-13 09:47:43 -06003241 unsigned iov_off = 0;
3242
3243 rw->iter.iov = rw->fast_iov;
3244 if (iter->iov != fast_iov) {
3245 iov_off = iter->iov - fast_iov;
3246 rw->iter.iov += iov_off;
3247 }
3248 if (rw->fast_iov != fast_iov)
3249 memcpy(rw->fast_iov + iov_off, fast_iov + iov_off,
Xiaoguang Wang45097da2020-04-08 22:29:58 +08003250 sizeof(struct iovec) * iter->nr_segs);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003251 } else {
3252 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboef67676d2019-12-02 11:03:47 -07003253 }
3254}
3255
Hao Xu8d4af682021-09-22 18:15:22 +08003256static inline bool io_alloc_async_data(struct io_kiocb *req)
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08003257{
Jens Axboee8c2bc12020-08-15 18:44:09 -07003258 WARN_ON_ONCE(!io_op_defs[req->opcode].async_size);
3259 req->async_data = kmalloc(io_op_defs[req->opcode].async_size, GFP_KERNEL);
3260 return req->async_data == NULL;
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08003261}
3262
Jens Axboeff6165b2020-08-13 09:47:43 -06003263static int io_setup_async_rw(struct io_kiocb *req, const struct iovec *iovec,
3264 const struct iovec *fast_iov,
Jens Axboe227c0c92020-08-13 11:51:40 -06003265 struct iov_iter *iter, bool force)
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003266{
Pavel Begunkov26f05052021-02-28 22:35:18 +00003267 if (!force && !io_op_defs[req->opcode].needs_async_setup)
Jens Axboe74566df2020-01-13 19:23:24 -07003268 return 0;
Jens Axboee8c2bc12020-08-15 18:44:09 -07003269 if (!req->async_data) {
Jens Axboecd658692021-09-10 11:19:14 -06003270 struct io_async_rw *iorw;
3271
Pavel Begunkov6cb78682021-02-28 22:35:17 +00003272 if (io_alloc_async_data(req)) {
Pavel Begunkov6bf985d2021-02-04 13:52:01 +00003273 kfree(iovec);
Jens Axboe5d204bc2020-01-31 12:06:52 -07003274 return -ENOMEM;
Pavel Begunkov6bf985d2021-02-04 13:52:01 +00003275 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003276
Jens Axboeff6165b2020-08-13 09:47:43 -06003277 io_req_map_rw(req, iovec, fast_iov, iter);
Jens Axboecd658692021-09-10 11:19:14 -06003278 iorw = req->async_data;
3279 /* we've copied and mapped the iter, ensure state is saved */
3280 iov_iter_save_state(&iorw->iter, &iorw->iter_state);
Jens Axboe5d204bc2020-01-31 12:06:52 -07003281 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003282 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07003283}
3284
Pavel Begunkov73debe62020-09-30 22:57:54 +03003285static inline int io_rw_prep_async(struct io_kiocb *req, int rw)
Pavel Begunkovc3e330a2020-07-13 22:59:19 +03003286{
Jens Axboee8c2bc12020-08-15 18:44:09 -07003287 struct io_async_rw *iorw = req->async_data;
Pavel Begunkovf4bff102020-09-06 00:45:45 +03003288 struct iovec *iov = iorw->fast_iov;
Pavel Begunkov847595d2021-02-04 13:52:06 +00003289 int ret;
Pavel Begunkovc3e330a2020-07-13 22:59:19 +03003290
Pavel Begunkov2846c482020-11-07 13:16:27 +00003291 ret = io_import_iovec(rw, req, &iov, &iorw->iter, false);
Pavel Begunkovc3e330a2020-07-13 22:59:19 +03003292 if (unlikely(ret < 0))
3293 return ret;
3294
Pavel Begunkovab0b1962020-09-06 00:45:47 +03003295 iorw->bytes_done = 0;
3296 iorw->free_iovec = iov;
3297 if (iov)
3298 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboecd658692021-09-10 11:19:14 -06003299 iov_iter_save_state(&iorw->iter, &iorw->iter_state);
Pavel Begunkovc3e330a2020-07-13 22:59:19 +03003300 return 0;
3301}
3302
Pavel Begunkov73debe62020-09-30 22:57:54 +03003303static int io_read_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07003304{
Jens Axboe3529d8c2019-12-19 18:24:38 -07003305 if (unlikely(!(req->file->f_mode & FMODE_READ)))
3306 return -EBADF;
Jens Axboe5d329e12021-09-14 11:08:37 -06003307 return io_prep_rw(req, sqe, READ);
Jens Axboef67676d2019-12-02 11:03:47 -07003308}
3309
Jens Axboec1dd91d2020-08-03 16:43:59 -06003310/*
3311 * This is our waitqueue callback handler, registered through lock_page_async()
3312 * when we initially tried to do the IO with the iocb armed our waitqueue.
3313 * This gets called when the page is unlocked, and we generally expect that to
3314 * happen when the page IO is completed and the page is now uptodate. This will
3315 * queue a task_work based retry of the operation, attempting to copy the data
3316 * again. If the latter fails because the page was NOT uptodate, then we will
3317 * do a thread based blocking retry of the operation. That's the unexpected
3318 * slow path.
3319 */
Jens Axboebcf5a062020-05-22 09:24:42 -06003320static int io_async_buf_func(struct wait_queue_entry *wait, unsigned mode,
3321 int sync, void *arg)
3322{
3323 struct wait_page_queue *wpq;
3324 struct io_kiocb *req = wait->private;
Jens Axboebcf5a062020-05-22 09:24:42 -06003325 struct wait_page_key *key = arg;
Jens Axboebcf5a062020-05-22 09:24:42 -06003326
3327 wpq = container_of(wait, struct wait_page_queue, wait);
3328
Linus Torvaldscdc8fcb2020-08-03 13:01:22 -07003329 if (!wake_page_match(wpq, key))
3330 return 0;
3331
Hao Xuc8d317a2020-09-29 20:00:45 +08003332 req->rw.kiocb.ki_flags &= ~IOCB_WAITQ;
Jens Axboebcf5a062020-05-22 09:24:42 -06003333 list_del_init(&wait->entry);
Pavel Begunkov921b9052021-02-12 03:23:53 +00003334 io_req_task_queue(req);
Jens Axboebcf5a062020-05-22 09:24:42 -06003335 return 1;
3336}
3337
Jens Axboec1dd91d2020-08-03 16:43:59 -06003338/*
3339 * This controls whether a given IO request should be armed for async page
3340 * based retry. If we return false here, the request is handed to the async
3341 * worker threads for retry. If we're doing buffered reads on a regular file,
3342 * we prepare a private wait_page_queue entry and retry the operation. This
3343 * will either succeed because the page is now uptodate and unlocked, or it
3344 * will register a callback when the page is unlocked at IO completion. Through
3345 * that callback, io_uring uses task_work to setup a retry of the operation.
3346 * That retry will attempt the buffered read again. The retry will generally
3347 * succeed, or in rare cases where it fails, we then fall back to using the
3348 * async worker threads for a blocking retry.
3349 */
Jens Axboe227c0c92020-08-13 11:51:40 -06003350static bool io_rw_should_retry(struct io_kiocb *req)
Jens Axboebcf5a062020-05-22 09:24:42 -06003351{
Jens Axboee8c2bc12020-08-15 18:44:09 -07003352 struct io_async_rw *rw = req->async_data;
3353 struct wait_page_queue *wait = &rw->wpq;
Jens Axboebcf5a062020-05-22 09:24:42 -06003354 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboebcf5a062020-05-22 09:24:42 -06003355
3356 /* never retry for NOWAIT, we just complete with -EAGAIN */
3357 if (req->flags & REQ_F_NOWAIT)
3358 return false;
3359
Jens Axboe227c0c92020-08-13 11:51:40 -06003360 /* Only for buffered IO */
Jens Axboe3b2a4432020-08-16 10:58:43 -07003361 if (kiocb->ki_flags & (IOCB_DIRECT | IOCB_HIPRI))
Jens Axboebcf5a062020-05-22 09:24:42 -06003362 return false;
Jens Axboe3b2a4432020-08-16 10:58:43 -07003363
Jens Axboebcf5a062020-05-22 09:24:42 -06003364 /*
3365 * just use poll if we can, and don't attempt if the fs doesn't
3366 * support callback based unlocks
3367 */
3368 if (file_can_poll(req->file) || !(req->file->f_mode & FMODE_BUF_RASYNC))
3369 return false;
3370
Jens Axboe3b2a4432020-08-16 10:58:43 -07003371 wait->wait.func = io_async_buf_func;
3372 wait->wait.private = req;
3373 wait->wait.flags = 0;
3374 INIT_LIST_HEAD(&wait->wait.entry);
3375 kiocb->ki_flags |= IOCB_WAITQ;
Hao Xuc8d317a2020-09-29 20:00:45 +08003376 kiocb->ki_flags &= ~IOCB_NOWAIT;
Jens Axboe3b2a4432020-08-16 10:58:43 -07003377 kiocb->ki_waitq = wait;
Jens Axboe3b2a4432020-08-16 10:58:43 -07003378 return true;
Jens Axboebcf5a062020-05-22 09:24:42 -06003379}
3380
Pavel Begunkovaeab9502021-06-14 02:36:24 +01003381static inline int io_iter_do_read(struct io_kiocb *req, struct iov_iter *iter)
Jens Axboebcf5a062020-05-22 09:24:42 -06003382{
3383 if (req->file->f_op->read_iter)
3384 return call_read_iter(req->file, &req->rw.kiocb, iter);
Guoyu Huang2dd21112020-08-05 03:53:50 -07003385 else if (req->file->f_op->read)
Jens Axboe4017eb92020-10-22 14:14:12 -06003386 return loop_rw_iter(READ, req, iter);
Guoyu Huang2dd21112020-08-05 03:53:50 -07003387 else
3388 return -EINVAL;
Jens Axboebcf5a062020-05-22 09:24:42 -06003389}
3390
Ming Lei7db30432021-08-21 23:07:51 +08003391static bool need_read_all(struct io_kiocb *req)
3392{
3393 return req->flags & REQ_F_ISREG ||
3394 S_ISBLK(file_inode(req->file)->i_mode);
3395}
3396
Pavel Begunkov889fca72021-02-10 00:03:09 +00003397static int io_read(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003398{
3399 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07003400 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboeff6165b2020-08-13 09:47:43 -06003401 struct iov_iter __iter, *iter = &__iter;
Jens Axboee8c2bc12020-08-15 18:44:09 -07003402 struct io_async_rw *rw = req->async_data;
Pavel Begunkov45d189c2021-02-10 00:03:07 +00003403 bool force_nonblock = issue_flags & IO_URING_F_NONBLOCK;
Jens Axboecd658692021-09-10 11:19:14 -06003404 struct iov_iter_state __state, *state;
3405 ssize_t ret, ret2;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003406
Pavel Begunkov2846c482020-11-07 13:16:27 +00003407 if (rw) {
Jens Axboee8c2bc12020-08-15 18:44:09 -07003408 iter = &rw->iter;
Jens Axboecd658692021-09-10 11:19:14 -06003409 state = &rw->iter_state;
3410 /*
3411 * We come here from an earlier attempt, restore our state to
3412 * match in case it doesn't. It's cheap enough that we don't
3413 * need to make this conditional.
3414 */
3415 iov_iter_restore(iter, state);
Pavel Begunkov2846c482020-11-07 13:16:27 +00003416 iovec = NULL;
3417 } else {
3418 ret = io_import_iovec(READ, req, &iovec, iter, !force_nonblock);
3419 if (ret < 0)
3420 return ret;
Jens Axboecd658692021-09-10 11:19:14 -06003421 state = &__state;
3422 iov_iter_save_state(iter, state);
Pavel Begunkov2846c482020-11-07 13:16:27 +00003423 }
Jens Axboecd658692021-09-10 11:19:14 -06003424 req->result = iov_iter_count(iter);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003425
Jens Axboefd6c2e42019-12-18 12:19:41 -07003426 /* Ensure we clear previously set non-block flag */
3427 if (!force_nonblock)
Jens Axboe29de5f62020-02-20 09:56:08 -07003428 kiocb->ki_flags &= ~IOCB_NOWAIT;
Pavel Begunkova88fc402020-09-30 22:57:53 +03003429 else
3430 kiocb->ki_flags |= IOCB_NOWAIT;
3431
Pavel Begunkov24c74672020-06-21 13:09:51 +03003432 /* If the file doesn't support async, just async punt */
Pavel Begunkovb191e2d2021-08-09 13:04:03 +01003433 if (force_nonblock && !io_file_supports_nowait(req, READ)) {
Pavel Begunkov6713e7a2021-02-04 13:51:59 +00003434 ret = io_setup_async_rw(req, iovec, inline_vecs, iter, true);
Pavel Begunkov6bf985d2021-02-04 13:52:01 +00003435 return ret ?: -EAGAIN;
Pavel Begunkov6713e7a2021-02-04 13:51:59 +00003436 }
Jens Axboe9e645e112019-05-10 16:07:28 -06003437
Jens Axboecd658692021-09-10 11:19:14 -06003438 ret = rw_verify_area(READ, req->file, io_kiocb_ppos(kiocb), req->result);
Pavel Begunkov5ea5dd42021-02-04 13:52:03 +00003439 if (unlikely(ret)) {
3440 kfree(iovec);
3441 return ret;
3442 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07003443
Jens Axboe227c0c92020-08-13 11:51:40 -06003444 ret = io_iter_do_read(req, iter);
Jens Axboe32960612019-09-23 11:05:34 -06003445
Jens Axboe230d50d2021-04-01 20:41:15 -06003446 if (ret == -EAGAIN || (req->flags & REQ_F_REISSUE)) {
Pavel Begunkov6ad7f232021-04-08 01:54:39 +01003447 req->flags &= ~REQ_F_REISSUE;
Jens Axboeeefdf302020-08-27 16:40:19 -06003448 /* IOPOLL retry should happen for io-wq threads */
3449 if (!force_nonblock && !(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboef91daf52020-08-15 15:58:42 -07003450 goto done;
Pavel Begunkov75c668c2021-02-04 13:52:05 +00003451 /* no retry on NONBLOCK nor RWF_NOWAIT */
3452 if (req->flags & REQ_F_NOWAIT)
Jens Axboe355afae2020-09-02 09:30:31 -06003453 goto done;
Jens Axboef38c7e32020-09-25 15:23:43 -06003454 ret = 0;
Jens Axboe230d50d2021-04-01 20:41:15 -06003455 } else if (ret == -EIOCBQUEUED) {
3456 goto out_free;
Jens Axboecd658692021-09-10 11:19:14 -06003457 } else if (ret <= 0 || ret == req->result || !force_nonblock ||
Ming Lei7db30432021-08-21 23:07:51 +08003458 (req->flags & REQ_F_NOWAIT) || !need_read_all(req)) {
Pavel Begunkov7335e3b2021-02-04 13:52:02 +00003459 /* read all, failed, already did sync or don't want to retry */
Jens Axboe00d23d52020-08-25 12:59:22 -06003460 goto done;
Jens Axboe227c0c92020-08-13 11:51:40 -06003461 }
3462
Jens Axboecd658692021-09-10 11:19:14 -06003463 /*
3464 * Don't depend on the iter state matching what was consumed, or being
3465 * untouched in case of error. Restore it and we'll advance it
3466 * manually if we need to.
3467 */
3468 iov_iter_restore(iter, state);
3469
Jens Axboe227c0c92020-08-13 11:51:40 -06003470 ret2 = io_setup_async_rw(req, iovec, inline_vecs, iter, true);
Pavel Begunkov6bf985d2021-02-04 13:52:01 +00003471 if (ret2)
3472 return ret2;
3473
Pavel Begunkovfe1cdd52021-02-17 21:02:36 +00003474 iovec = NULL;
Jens Axboee8c2bc12020-08-15 18:44:09 -07003475 rw = req->async_data;
Jens Axboecd658692021-09-10 11:19:14 -06003476 /*
3477 * Now use our persistent iterator and state, if we aren't already.
3478 * We've restored and mapped the iter to match.
3479 */
3480 if (iter != &rw->iter) {
3481 iter = &rw->iter;
3482 state = &rw->iter_state;
3483 }
Jens Axboe227c0c92020-08-13 11:51:40 -06003484
Pavel Begunkovb23df912021-02-04 13:52:04 +00003485 do {
Jens Axboecd658692021-09-10 11:19:14 -06003486 /*
3487 * We end up here because of a partial read, either from
3488 * above or inside this loop. Advance the iter by the bytes
3489 * that were consumed.
3490 */
3491 iov_iter_advance(iter, ret);
3492 if (!iov_iter_count(iter))
3493 break;
Pavel Begunkovb23df912021-02-04 13:52:04 +00003494 rw->bytes_done += ret;
Jens Axboecd658692021-09-10 11:19:14 -06003495 iov_iter_save_state(iter, state);
3496
Pavel Begunkovb23df912021-02-04 13:52:04 +00003497 /* if we can retry, do so with the callbacks armed */
3498 if (!io_rw_should_retry(req)) {
3499 kiocb->ki_flags &= ~IOCB_WAITQ;
3500 return -EAGAIN;
3501 }
3502
3503 /*
3504 * Now retry read with the IOCB_WAITQ parts set in the iocb. If
3505 * we get -EIOCBQUEUED, then we'll get a notification when the
3506 * desired page gets unlocked. We can also get a partial read
3507 * here, and if we do, then just retry at the new offset.
3508 */
3509 ret = io_iter_do_read(req, iter);
3510 if (ret == -EIOCBQUEUED)
3511 return 0;
Jens Axboe227c0c92020-08-13 11:51:40 -06003512 /* we got some bytes, but not all. retry. */
Jens Axboeb5b0ecb2021-03-04 21:02:58 -07003513 kiocb->ki_flags &= ~IOCB_WAITQ;
Jens Axboecd658692021-09-10 11:19:14 -06003514 iov_iter_restore(iter, state);
3515 } while (ret > 0);
Jens Axboe227c0c92020-08-13 11:51:40 -06003516done:
Pavel Begunkov889fca72021-02-10 00:03:09 +00003517 kiocb_done(kiocb, ret, issue_flags);
Pavel Begunkovfe1cdd52021-02-17 21:02:36 +00003518out_free:
3519 /* it's faster to check here then delegate to kfree */
3520 if (iovec)
3521 kfree(iovec);
Pavel Begunkov5ea5dd42021-02-04 13:52:03 +00003522 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003523}
3524
Pavel Begunkov73debe62020-09-30 22:57:54 +03003525static int io_write_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07003526{
Jens Axboe3529d8c2019-12-19 18:24:38 -07003527 if (unlikely(!(req->file->f_mode & FMODE_WRITE)))
3528 return -EBADF;
Jens Axboe5d329e12021-09-14 11:08:37 -06003529 return io_prep_rw(req, sqe, WRITE);
Jens Axboef67676d2019-12-02 11:03:47 -07003530}
3531
Pavel Begunkov889fca72021-02-10 00:03:09 +00003532static int io_write(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003533{
3534 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07003535 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboeff6165b2020-08-13 09:47:43 -06003536 struct iov_iter __iter, *iter = &__iter;
Jens Axboee8c2bc12020-08-15 18:44:09 -07003537 struct io_async_rw *rw = req->async_data;
Pavel Begunkov45d189c2021-02-10 00:03:07 +00003538 bool force_nonblock = issue_flags & IO_URING_F_NONBLOCK;
Jens Axboecd658692021-09-10 11:19:14 -06003539 struct iov_iter_state __state, *state;
3540 ssize_t ret, ret2;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003541
Pavel Begunkov2846c482020-11-07 13:16:27 +00003542 if (rw) {
Jens Axboee8c2bc12020-08-15 18:44:09 -07003543 iter = &rw->iter;
Jens Axboecd658692021-09-10 11:19:14 -06003544 state = &rw->iter_state;
3545 iov_iter_restore(iter, state);
Pavel Begunkov2846c482020-11-07 13:16:27 +00003546 iovec = NULL;
3547 } else {
3548 ret = io_import_iovec(WRITE, req, &iovec, iter, !force_nonblock);
3549 if (ret < 0)
3550 return ret;
Jens Axboecd658692021-09-10 11:19:14 -06003551 state = &__state;
3552 iov_iter_save_state(iter, state);
Pavel Begunkov2846c482020-11-07 13:16:27 +00003553 }
Jens Axboecd658692021-09-10 11:19:14 -06003554 req->result = iov_iter_count(iter);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003555
Jens Axboefd6c2e42019-12-18 12:19:41 -07003556 /* Ensure we clear previously set non-block flag */
3557 if (!force_nonblock)
Pavel Begunkova88fc402020-09-30 22:57:53 +03003558 kiocb->ki_flags &= ~IOCB_NOWAIT;
3559 else
3560 kiocb->ki_flags |= IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07003561
Pavel Begunkov24c74672020-06-21 13:09:51 +03003562 /* If the file doesn't support async, just async punt */
Pavel Begunkovb191e2d2021-08-09 13:04:03 +01003563 if (force_nonblock && !io_file_supports_nowait(req, WRITE))
Jens Axboef67676d2019-12-02 11:03:47 -07003564 goto copy_iov;
Jens Axboef67676d2019-12-02 11:03:47 -07003565
Jens Axboe10d59342019-12-09 20:16:22 -07003566 /* file path doesn't support NOWAIT for non-direct_IO */
3567 if (force_nonblock && !(kiocb->ki_flags & IOCB_DIRECT) &&
3568 (req->flags & REQ_F_ISREG))
Jens Axboef67676d2019-12-02 11:03:47 -07003569 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06003570
Jens Axboecd658692021-09-10 11:19:14 -06003571 ret = rw_verify_area(WRITE, req->file, io_kiocb_ppos(kiocb), req->result);
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003572 if (unlikely(ret))
3573 goto out_free;
Roman Penyaev9bf79332019-03-25 20:09:24 +01003574
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003575 /*
3576 * Open-code file_start_write here to grab freeze protection,
3577 * which will be released by another thread in
3578 * io_complete_rw(). Fool lockdep by telling it the lock got
3579 * released so that it doesn't complain about the held lock when
3580 * we return to userspace.
3581 */
3582 if (req->flags & REQ_F_ISREG) {
Darrick J. Wong8a3c84b2020-11-10 16:50:21 -08003583 sb_start_write(file_inode(req->file)->i_sb);
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003584 __sb_writers_release(file_inode(req->file)->i_sb,
3585 SB_FREEZE_WRITE);
3586 }
3587 kiocb->ki_flags |= IOCB_WRITE;
Roman Penyaev9bf79332019-03-25 20:09:24 +01003588
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003589 if (req->file->f_op->write_iter)
Jens Axboeff6165b2020-08-13 09:47:43 -06003590 ret2 = call_write_iter(req->file, kiocb, iter);
Guoyu Huang2dd21112020-08-05 03:53:50 -07003591 else if (req->file->f_op->write)
Jens Axboe4017eb92020-10-22 14:14:12 -06003592 ret2 = loop_rw_iter(WRITE, req, iter);
Guoyu Huang2dd21112020-08-05 03:53:50 -07003593 else
3594 ret2 = -EINVAL;
Jens Axboe4ed734b2020-03-20 11:23:41 -06003595
Pavel Begunkov6ad7f232021-04-08 01:54:39 +01003596 if (req->flags & REQ_F_REISSUE) {
3597 req->flags &= ~REQ_F_REISSUE;
Jens Axboe230d50d2021-04-01 20:41:15 -06003598 ret2 = -EAGAIN;
Pavel Begunkov6ad7f232021-04-08 01:54:39 +01003599 }
Jens Axboe230d50d2021-04-01 20:41:15 -06003600
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003601 /*
3602 * Raw bdev writes will return -EOPNOTSUPP for IOCB_NOWAIT. Just
3603 * retry them without IOCB_NOWAIT.
3604 */
3605 if (ret2 == -EOPNOTSUPP && (kiocb->ki_flags & IOCB_NOWAIT))
3606 ret2 = -EAGAIN;
Pavel Begunkov75c668c2021-02-04 13:52:05 +00003607 /* no retry on NONBLOCK nor RWF_NOWAIT */
3608 if (ret2 == -EAGAIN && (req->flags & REQ_F_NOWAIT))
Jens Axboe355afae2020-09-02 09:30:31 -06003609 goto done;
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003610 if (!force_nonblock || ret2 != -EAGAIN) {
Jens Axboeeefdf302020-08-27 16:40:19 -06003611 /* IOPOLL retry should happen for io-wq threads */
3612 if ((req->ctx->flags & IORING_SETUP_IOPOLL) && ret2 == -EAGAIN)
3613 goto copy_iov;
Jens Axboe355afae2020-09-02 09:30:31 -06003614done:
Pavel Begunkov889fca72021-02-10 00:03:09 +00003615 kiocb_done(kiocb, ret2, issue_flags);
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003616 } else {
Jens Axboef67676d2019-12-02 11:03:47 -07003617copy_iov:
Jens Axboecd658692021-09-10 11:19:14 -06003618 iov_iter_restore(iter, state);
Jens Axboe227c0c92020-08-13 11:51:40 -06003619 ret = io_setup_async_rw(req, iovec, inline_vecs, iter, false);
Pavel Begunkov6bf985d2021-02-04 13:52:01 +00003620 return ret ?: -EAGAIN;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003621 }
Jens Axboe31b51512019-01-18 22:56:34 -07003622out_free:
Pavel Begunkovf261c162020-08-20 11:34:10 +03003623 /* it's reportedly faster than delegating the null check to kfree() */
Pavel Begunkov252917c2020-07-13 22:59:20 +03003624 if (iovec)
Xiaoguang Wang6f2cc162020-06-18 15:01:56 +08003625 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003626 return ret;
3627}
3628
Jens Axboe80a261f2020-09-28 14:23:58 -06003629static int io_renameat_prep(struct io_kiocb *req,
3630 const struct io_uring_sqe *sqe)
3631{
3632 struct io_rename *ren = &req->rename;
3633 const char __user *oldf, *newf;
3634
Jens Axboeed7eb252021-06-23 09:04:13 -06003635 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3636 return -EINVAL;
Pavel Begunkov26578cd2021-08-20 10:36:37 +01003637 if (sqe->ioprio || sqe->buf_index || sqe->splice_fd_in)
Jens Axboeed7eb252021-06-23 09:04:13 -06003638 return -EINVAL;
Jens Axboe80a261f2020-09-28 14:23:58 -06003639 if (unlikely(req->flags & REQ_F_FIXED_FILE))
3640 return -EBADF;
3641
3642 ren->old_dfd = READ_ONCE(sqe->fd);
3643 oldf = u64_to_user_ptr(READ_ONCE(sqe->addr));
3644 newf = u64_to_user_ptr(READ_ONCE(sqe->addr2));
3645 ren->new_dfd = READ_ONCE(sqe->len);
3646 ren->flags = READ_ONCE(sqe->rename_flags);
3647
3648 ren->oldpath = getname(oldf);
3649 if (IS_ERR(ren->oldpath))
3650 return PTR_ERR(ren->oldpath);
3651
3652 ren->newpath = getname(newf);
3653 if (IS_ERR(ren->newpath)) {
3654 putname(ren->oldpath);
3655 return PTR_ERR(ren->newpath);
3656 }
3657
3658 req->flags |= REQ_F_NEED_CLEANUP;
3659 return 0;
3660}
3661
Pavel Begunkov45d189c2021-02-10 00:03:07 +00003662static int io_renameat(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe80a261f2020-09-28 14:23:58 -06003663{
3664 struct io_rename *ren = &req->rename;
3665 int ret;
3666
Pavel Begunkov45d189c2021-02-10 00:03:07 +00003667 if (issue_flags & IO_URING_F_NONBLOCK)
Jens Axboe80a261f2020-09-28 14:23:58 -06003668 return -EAGAIN;
3669
3670 ret = do_renameat2(ren->old_dfd, ren->oldpath, ren->new_dfd,
3671 ren->newpath, ren->flags);
3672
3673 req->flags &= ~REQ_F_NEED_CLEANUP;
3674 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01003675 req_set_fail(req);
Jens Axboe80a261f2020-09-28 14:23:58 -06003676 io_req_complete(req, ret);
3677 return 0;
3678}
3679
Jens Axboe14a11432020-09-28 14:27:37 -06003680static int io_unlinkat_prep(struct io_kiocb *req,
3681 const struct io_uring_sqe *sqe)
3682{
3683 struct io_unlink *un = &req->unlink;
3684 const char __user *fname;
3685
Jens Axboe22634bc2021-06-23 09:07:45 -06003686 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3687 return -EINVAL;
Pavel Begunkov26578cd2021-08-20 10:36:37 +01003688 if (sqe->ioprio || sqe->off || sqe->len || sqe->buf_index ||
3689 sqe->splice_fd_in)
Jens Axboe22634bc2021-06-23 09:07:45 -06003690 return -EINVAL;
Jens Axboe14a11432020-09-28 14:27:37 -06003691 if (unlikely(req->flags & REQ_F_FIXED_FILE))
3692 return -EBADF;
3693
3694 un->dfd = READ_ONCE(sqe->fd);
3695
3696 un->flags = READ_ONCE(sqe->unlink_flags);
3697 if (un->flags & ~AT_REMOVEDIR)
3698 return -EINVAL;
3699
3700 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
3701 un->filename = getname(fname);
3702 if (IS_ERR(un->filename))
3703 return PTR_ERR(un->filename);
3704
3705 req->flags |= REQ_F_NEED_CLEANUP;
3706 return 0;
3707}
3708
Pavel Begunkov45d189c2021-02-10 00:03:07 +00003709static int io_unlinkat(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe14a11432020-09-28 14:27:37 -06003710{
3711 struct io_unlink *un = &req->unlink;
3712 int ret;
3713
Pavel Begunkov45d189c2021-02-10 00:03:07 +00003714 if (issue_flags & IO_URING_F_NONBLOCK)
Jens Axboe14a11432020-09-28 14:27:37 -06003715 return -EAGAIN;
3716
3717 if (un->flags & AT_REMOVEDIR)
3718 ret = do_rmdir(un->dfd, un->filename);
3719 else
3720 ret = do_unlinkat(un->dfd, un->filename);
3721
3722 req->flags &= ~REQ_F_NEED_CLEANUP;
3723 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01003724 req_set_fail(req);
Jens Axboe14a11432020-09-28 14:27:37 -06003725 io_req_complete(req, ret);
3726 return 0;
3727}
3728
Dmitry Kadasheve34a02d2021-07-08 13:34:45 +07003729static int io_mkdirat_prep(struct io_kiocb *req,
3730 const struct io_uring_sqe *sqe)
3731{
3732 struct io_mkdir *mkd = &req->mkdir;
3733 const char __user *fname;
3734
3735 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3736 return -EINVAL;
3737 if (sqe->ioprio || sqe->off || sqe->rw_flags || sqe->buf_index ||
3738 sqe->splice_fd_in)
3739 return -EINVAL;
3740 if (unlikely(req->flags & REQ_F_FIXED_FILE))
3741 return -EBADF;
3742
3743 mkd->dfd = READ_ONCE(sqe->fd);
3744 mkd->mode = READ_ONCE(sqe->len);
3745
3746 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
3747 mkd->filename = getname(fname);
3748 if (IS_ERR(mkd->filename))
3749 return PTR_ERR(mkd->filename);
3750
3751 req->flags |= REQ_F_NEED_CLEANUP;
3752 return 0;
3753}
3754
3755static int io_mkdirat(struct io_kiocb *req, int issue_flags)
3756{
3757 struct io_mkdir *mkd = &req->mkdir;
3758 int ret;
3759
3760 if (issue_flags & IO_URING_F_NONBLOCK)
3761 return -EAGAIN;
3762
3763 ret = do_mkdirat(mkd->dfd, mkd->filename, mkd->mode);
3764
3765 req->flags &= ~REQ_F_NEED_CLEANUP;
3766 if (ret < 0)
3767 req_set_fail(req);
3768 io_req_complete(req, ret);
3769 return 0;
3770}
3771
Dmitry Kadashev7a8721f2021-07-08 13:34:46 +07003772static int io_symlinkat_prep(struct io_kiocb *req,
3773 const struct io_uring_sqe *sqe)
3774{
3775 struct io_symlink *sl = &req->symlink;
3776 const char __user *oldpath, *newpath;
3777
3778 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3779 return -EINVAL;
3780 if (sqe->ioprio || sqe->len || sqe->rw_flags || sqe->buf_index ||
3781 sqe->splice_fd_in)
3782 return -EINVAL;
3783 if (unlikely(req->flags & REQ_F_FIXED_FILE))
3784 return -EBADF;
3785
3786 sl->new_dfd = READ_ONCE(sqe->fd);
3787 oldpath = u64_to_user_ptr(READ_ONCE(sqe->addr));
3788 newpath = u64_to_user_ptr(READ_ONCE(sqe->addr2));
3789
3790 sl->oldpath = getname(oldpath);
3791 if (IS_ERR(sl->oldpath))
3792 return PTR_ERR(sl->oldpath);
3793
3794 sl->newpath = getname(newpath);
3795 if (IS_ERR(sl->newpath)) {
3796 putname(sl->oldpath);
3797 return PTR_ERR(sl->newpath);
3798 }
3799
3800 req->flags |= REQ_F_NEED_CLEANUP;
3801 return 0;
3802}
3803
3804static int io_symlinkat(struct io_kiocb *req, int issue_flags)
3805{
3806 struct io_symlink *sl = &req->symlink;
3807 int ret;
3808
3809 if (issue_flags & IO_URING_F_NONBLOCK)
3810 return -EAGAIN;
3811
3812 ret = do_symlinkat(sl->oldpath, sl->new_dfd, sl->newpath);
3813
3814 req->flags &= ~REQ_F_NEED_CLEANUP;
3815 if (ret < 0)
3816 req_set_fail(req);
3817 io_req_complete(req, ret);
3818 return 0;
3819}
3820
Dmitry Kadashevcf30da92021-07-08 13:34:47 +07003821static int io_linkat_prep(struct io_kiocb *req,
3822 const struct io_uring_sqe *sqe)
3823{
3824 struct io_hardlink *lnk = &req->hardlink;
3825 const char __user *oldf, *newf;
3826
3827 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3828 return -EINVAL;
3829 if (sqe->ioprio || sqe->rw_flags || sqe->buf_index || sqe->splice_fd_in)
3830 return -EINVAL;
3831 if (unlikely(req->flags & REQ_F_FIXED_FILE))
3832 return -EBADF;
3833
3834 lnk->old_dfd = READ_ONCE(sqe->fd);
3835 lnk->new_dfd = READ_ONCE(sqe->len);
3836 oldf = u64_to_user_ptr(READ_ONCE(sqe->addr));
3837 newf = u64_to_user_ptr(READ_ONCE(sqe->addr2));
3838 lnk->flags = READ_ONCE(sqe->hardlink_flags);
3839
3840 lnk->oldpath = getname(oldf);
3841 if (IS_ERR(lnk->oldpath))
3842 return PTR_ERR(lnk->oldpath);
3843
3844 lnk->newpath = getname(newf);
3845 if (IS_ERR(lnk->newpath)) {
3846 putname(lnk->oldpath);
3847 return PTR_ERR(lnk->newpath);
3848 }
3849
3850 req->flags |= REQ_F_NEED_CLEANUP;
3851 return 0;
3852}
3853
3854static int io_linkat(struct io_kiocb *req, int issue_flags)
3855{
3856 struct io_hardlink *lnk = &req->hardlink;
3857 int ret;
3858
3859 if (issue_flags & IO_URING_F_NONBLOCK)
3860 return -EAGAIN;
3861
3862 ret = do_linkat(lnk->old_dfd, lnk->oldpath, lnk->new_dfd,
3863 lnk->newpath, lnk->flags);
3864
3865 req->flags &= ~REQ_F_NEED_CLEANUP;
3866 if (ret < 0)
3867 req_set_fail(req);
3868 io_req_complete(req, ret);
3869 return 0;
3870}
3871
Jens Axboe36f4fa62020-09-05 11:14:22 -06003872static int io_shutdown_prep(struct io_kiocb *req,
3873 const struct io_uring_sqe *sqe)
3874{
3875#if defined(CONFIG_NET)
3876 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3877 return -EINVAL;
Pavel Begunkov26578cd2021-08-20 10:36:37 +01003878 if (unlikely(sqe->ioprio || sqe->off || sqe->addr || sqe->rw_flags ||
3879 sqe->buf_index || sqe->splice_fd_in))
Jens Axboe36f4fa62020-09-05 11:14:22 -06003880 return -EINVAL;
3881
3882 req->shutdown.how = READ_ONCE(sqe->len);
3883 return 0;
3884#else
3885 return -EOPNOTSUPP;
3886#endif
3887}
3888
Pavel Begunkov45d189c2021-02-10 00:03:07 +00003889static int io_shutdown(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe36f4fa62020-09-05 11:14:22 -06003890{
3891#if defined(CONFIG_NET)
3892 struct socket *sock;
3893 int ret;
3894
Pavel Begunkov45d189c2021-02-10 00:03:07 +00003895 if (issue_flags & IO_URING_F_NONBLOCK)
Jens Axboe36f4fa62020-09-05 11:14:22 -06003896 return -EAGAIN;
3897
Linus Torvalds48aba792020-12-16 12:44:05 -08003898 sock = sock_from_file(req->file);
Jens Axboe36f4fa62020-09-05 11:14:22 -06003899 if (unlikely(!sock))
Linus Torvalds48aba792020-12-16 12:44:05 -08003900 return -ENOTSOCK;
Jens Axboe36f4fa62020-09-05 11:14:22 -06003901
3902 ret = __sys_shutdown_sock(sock, req->shutdown.how);
Jens Axboea1464682020-12-14 20:57:27 -07003903 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01003904 req_set_fail(req);
Jens Axboe36f4fa62020-09-05 11:14:22 -06003905 io_req_complete(req, ret);
3906 return 0;
3907#else
3908 return -EOPNOTSUPP;
3909#endif
3910}
3911
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03003912static int __io_splice_prep(struct io_kiocb *req,
3913 const struct io_uring_sqe *sqe)
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003914{
Pavel Begunkovfe7e3252021-06-24 15:09:57 +01003915 struct io_splice *sp = &req->splice;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003916 unsigned int valid_flags = SPLICE_F_FD_IN_FIXED | SPLICE_F_ALL;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003917
Pavel Begunkov3232dd02020-06-03 18:03:22 +03003918 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3919 return -EINVAL;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003920
3921 sp->file_in = NULL;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003922 sp->len = READ_ONCE(sqe->len);
3923 sp->flags = READ_ONCE(sqe->splice_flags);
3924
3925 if (unlikely(sp->flags & ~valid_flags))
3926 return -EINVAL;
3927
Pavel Begunkov62906e82021-08-10 14:52:47 +01003928 sp->file_in = io_file_get(req->ctx, req, READ_ONCE(sqe->splice_fd_in),
Pavel Begunkov8371adf2020-10-10 18:34:08 +01003929 (sp->flags & SPLICE_F_FD_IN_FIXED));
3930 if (!sp->file_in)
3931 return -EBADF;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003932 req->flags |= REQ_F_NEED_CLEANUP;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003933 return 0;
3934}
3935
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03003936static int io_tee_prep(struct io_kiocb *req,
3937 const struct io_uring_sqe *sqe)
3938{
3939 if (READ_ONCE(sqe->splice_off_in) || READ_ONCE(sqe->off))
3940 return -EINVAL;
3941 return __io_splice_prep(req, sqe);
3942}
3943
Pavel Begunkov45d189c2021-02-10 00:03:07 +00003944static int io_tee(struct io_kiocb *req, unsigned int issue_flags)
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03003945{
3946 struct io_splice *sp = &req->splice;
3947 struct file *in = sp->file_in;
3948 struct file *out = sp->file_out;
3949 unsigned int flags = sp->flags & ~SPLICE_F_FD_IN_FIXED;
3950 long ret = 0;
3951
Pavel Begunkov45d189c2021-02-10 00:03:07 +00003952 if (issue_flags & IO_URING_F_NONBLOCK)
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03003953 return -EAGAIN;
3954 if (sp->len)
3955 ret = do_tee(in, out, sp->len, flags);
3956
Pavel Begunkove1d767f2021-03-19 17:22:43 +00003957 if (!(sp->flags & SPLICE_F_FD_IN_FIXED))
3958 io_put_file(in);
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03003959 req->flags &= ~REQ_F_NEED_CLEANUP;
3960
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03003961 if (ret != sp->len)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01003962 req_set_fail(req);
Jens Axboee1e16092020-06-22 09:17:17 -06003963 io_req_complete(req, ret);
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03003964 return 0;
3965}
3966
3967static int io_splice_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3968{
Pavel Begunkovfe7e3252021-06-24 15:09:57 +01003969 struct io_splice *sp = &req->splice;
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03003970
3971 sp->off_in = READ_ONCE(sqe->splice_off_in);
3972 sp->off_out = READ_ONCE(sqe->off);
3973 return __io_splice_prep(req, sqe);
3974}
3975
Pavel Begunkov45d189c2021-02-10 00:03:07 +00003976static int io_splice(struct io_kiocb *req, unsigned int issue_flags)
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003977{
3978 struct io_splice *sp = &req->splice;
3979 struct file *in = sp->file_in;
3980 struct file *out = sp->file_out;
3981 unsigned int flags = sp->flags & ~SPLICE_F_FD_IN_FIXED;
3982 loff_t *poff_in, *poff_out;
Pavel Begunkovc9687422020-05-04 23:00:54 +03003983 long ret = 0;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003984
Pavel Begunkov45d189c2021-02-10 00:03:07 +00003985 if (issue_flags & IO_URING_F_NONBLOCK)
Pavel Begunkov2fb3e822020-05-01 17:09:38 +03003986 return -EAGAIN;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003987
3988 poff_in = (sp->off_in == -1) ? NULL : &sp->off_in;
3989 poff_out = (sp->off_out == -1) ? NULL : &sp->off_out;
Pavel Begunkovc9687422020-05-04 23:00:54 +03003990
Jens Axboe948a7742020-05-17 14:21:38 -06003991 if (sp->len)
Pavel Begunkovc9687422020-05-04 23:00:54 +03003992 ret = do_splice(in, poff_in, out, poff_out, sp->len, flags);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003993
Pavel Begunkove1d767f2021-03-19 17:22:43 +00003994 if (!(sp->flags & SPLICE_F_FD_IN_FIXED))
3995 io_put_file(in);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003996 req->flags &= ~REQ_F_NEED_CLEANUP;
3997
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003998 if (ret != sp->len)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01003999 req_set_fail(req);
Jens Axboee1e16092020-06-22 09:17:17 -06004000 io_req_complete(req, ret);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03004001 return 0;
4002}
4003
Jens Axboe2b188cc2019-01-07 10:46:33 -07004004/*
4005 * IORING_OP_NOP just posts a completion event, nothing else.
4006 */
Pavel Begunkov889fca72021-02-10 00:03:09 +00004007static int io_nop(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004008{
4009 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004010
Jens Axboedef596e2019-01-09 08:59:42 -07004011 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
4012 return -EINVAL;
4013
Pavel Begunkov889fca72021-02-10 00:03:09 +00004014 __io_req_complete(req, issue_flags, 0, 0);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004015 return 0;
4016}
4017
Pavel Begunkov1155c762021-02-18 18:29:38 +00004018static int io_fsync_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07004019{
Jens Axboe6b063142019-01-10 22:13:58 -07004020 struct io_ring_ctx *ctx = req->ctx;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07004021
Jens Axboe09bb8392019-03-13 12:39:28 -06004022 if (!req->file)
4023 return -EBADF;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07004024
Jens Axboe6b063142019-01-10 22:13:58 -07004025 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboedef596e2019-01-09 08:59:42 -07004026 return -EINVAL;
Pavel Begunkov26578cd2021-08-20 10:36:37 +01004027 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index ||
4028 sqe->splice_fd_in))
Christoph Hellwigc992fe22019-01-11 09:43:02 -07004029 return -EINVAL;
4030
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004031 req->sync.flags = READ_ONCE(sqe->fsync_flags);
4032 if (unlikely(req->sync.flags & ~IORING_FSYNC_DATASYNC))
4033 return -EINVAL;
4034
4035 req->sync.off = READ_ONCE(sqe->off);
4036 req->sync.len = READ_ONCE(sqe->len);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07004037 return 0;
4038}
4039
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004040static int io_fsync(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe78912932020-01-14 22:09:06 -07004041{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004042 loff_t end = req->sync.off + req->sync.len;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004043 int ret;
4044
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004045 /* fsync always requires a blocking context */
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004046 if (issue_flags & IO_URING_F_NONBLOCK)
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004047 return -EAGAIN;
4048
Jens Axboe9adbd452019-12-20 08:45:55 -07004049 ret = vfs_fsync_range(req->file, req->sync.off,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004050 end > 0 ? end : LLONG_MAX,
4051 req->sync.flags & IORING_FSYNC_DATASYNC);
4052 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004053 req_set_fail(req);
Jens Axboee1e16092020-06-22 09:17:17 -06004054 io_req_complete(req, ret);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07004055 return 0;
4056}
4057
Jens Axboed63d1b52019-12-10 10:38:56 -07004058static int io_fallocate_prep(struct io_kiocb *req,
4059 const struct io_uring_sqe *sqe)
4060{
Pavel Begunkov26578cd2021-08-20 10:36:37 +01004061 if (sqe->ioprio || sqe->buf_index || sqe->rw_flags ||
4062 sqe->splice_fd_in)
Jens Axboed63d1b52019-12-10 10:38:56 -07004063 return -EINVAL;
Pavel Begunkov3232dd02020-06-03 18:03:22 +03004064 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4065 return -EINVAL;
Jens Axboed63d1b52019-12-10 10:38:56 -07004066
4067 req->sync.off = READ_ONCE(sqe->off);
4068 req->sync.len = READ_ONCE(sqe->addr);
4069 req->sync.mode = READ_ONCE(sqe->len);
4070 return 0;
4071}
4072
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004073static int io_fallocate(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboed63d1b52019-12-10 10:38:56 -07004074{
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004075 int ret;
Jens Axboed63d1b52019-12-10 10:38:56 -07004076
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004077 /* fallocate always requiring blocking context */
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004078 if (issue_flags & IO_URING_F_NONBLOCK)
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004079 return -EAGAIN;
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004080 ret = vfs_fallocate(req->file, req->sync.mode, req->sync.off,
4081 req->sync.len);
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004082 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004083 req_set_fail(req);
Jens Axboee1e16092020-06-22 09:17:17 -06004084 io_req_complete(req, ret);
Jens Axboed63d1b52019-12-10 10:38:56 -07004085 return 0;
4086}
4087
Pavel Begunkovec65fea2020-06-03 18:03:24 +03004088static int __io_openat_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe15b71ab2019-12-11 11:20:36 -07004089{
Jens Axboef8748882020-01-08 17:47:02 -07004090 const char __user *fname;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004091 int ret;
4092
Pavel Begunkovd3fddf62021-08-09 13:04:16 +01004093 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4094 return -EINVAL;
Pavel Begunkovb9445592021-08-25 12:25:45 +01004095 if (unlikely(sqe->ioprio || sqe->buf_index))
Jens Axboe15b71ab2019-12-11 11:20:36 -07004096 return -EINVAL;
Pavel Begunkovec65fea2020-06-03 18:03:24 +03004097 if (unlikely(req->flags & REQ_F_FIXED_FILE))
Jens Axboecf3040c2020-02-06 21:31:40 -07004098 return -EBADF;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004099
Pavel Begunkovec65fea2020-06-03 18:03:24 +03004100 /* open.how should be already initialised */
4101 if (!(req->open.how.flags & O_PATH) && force_o_largefile())
Jens Axboe08a1d26eb2020-04-08 09:20:54 -06004102 req->open.how.flags |= O_LARGEFILE;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004103
Pavel Begunkov25e72d12020-06-03 18:03:23 +03004104 req->open.dfd = READ_ONCE(sqe->fd);
4105 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboef8748882020-01-08 17:47:02 -07004106 req->open.filename = getname(fname);
Jens Axboe15b71ab2019-12-11 11:20:36 -07004107 if (IS_ERR(req->open.filename)) {
4108 ret = PTR_ERR(req->open.filename);
4109 req->open.filename = NULL;
4110 return ret;
4111 }
Pavel Begunkovb9445592021-08-25 12:25:45 +01004112
4113 req->open.file_slot = READ_ONCE(sqe->file_index);
4114 if (req->open.file_slot && (req->open.how.flags & O_CLOEXEC))
4115 return -EINVAL;
4116
Jens Axboe4022e7a2020-03-19 19:23:18 -06004117 req->open.nofile = rlimit(RLIMIT_NOFILE);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03004118 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004119 return 0;
4120}
4121
Pavel Begunkovec65fea2020-06-03 18:03:24 +03004122static int io_openat_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4123{
Pavel Begunkovd3fddf62021-08-09 13:04:16 +01004124 u64 mode = READ_ONCE(sqe->len);
4125 u64 flags = READ_ONCE(sqe->open_flags);
Pavel Begunkovec65fea2020-06-03 18:03:24 +03004126
Pavel Begunkovec65fea2020-06-03 18:03:24 +03004127 req->open.how = build_open_how(flags, mode);
4128 return __io_openat_prep(req, sqe);
4129}
4130
Jens Axboecebdb982020-01-08 17:59:24 -07004131static int io_openat2_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4132{
4133 struct open_how __user *how;
Jens Axboecebdb982020-01-08 17:59:24 -07004134 size_t len;
4135 int ret;
4136
Jens Axboecebdb982020-01-08 17:59:24 -07004137 how = u64_to_user_ptr(READ_ONCE(sqe->addr2));
4138 len = READ_ONCE(sqe->len);
Jens Axboecebdb982020-01-08 17:59:24 -07004139 if (len < OPEN_HOW_SIZE_VER0)
4140 return -EINVAL;
4141
4142 ret = copy_struct_from_user(&req->open.how, sizeof(req->open.how), how,
4143 len);
4144 if (ret)
4145 return ret;
4146
Pavel Begunkovec65fea2020-06-03 18:03:24 +03004147 return __io_openat_prep(req, sqe);
Jens Axboecebdb982020-01-08 17:59:24 -07004148}
4149
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004150static int io_openat2(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe15b71ab2019-12-11 11:20:36 -07004151{
4152 struct open_flags op;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004153 struct file *file;
Pavel Begunkovb9445592021-08-25 12:25:45 +01004154 bool resolve_nonblock, nonblock_set;
4155 bool fixed = !!req->open.file_slot;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004156 int ret;
4157
Jens Axboecebdb982020-01-08 17:59:24 -07004158 ret = build_open_flags(&req->open.how, &op);
Jens Axboe15b71ab2019-12-11 11:20:36 -07004159 if (ret)
4160 goto err;
Jens Axboe3a81fd02020-12-10 12:25:36 -07004161 nonblock_set = op.open_flag & O_NONBLOCK;
4162 resolve_nonblock = req->open.how.resolve & RESOLVE_CACHED;
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004163 if (issue_flags & IO_URING_F_NONBLOCK) {
Jens Axboe3a81fd02020-12-10 12:25:36 -07004164 /*
4165 * Don't bother trying for O_TRUNC, O_CREAT, or O_TMPFILE open,
4166 * it'll always -EAGAIN
4167 */
4168 if (req->open.how.flags & (O_TRUNC | O_CREAT | O_TMPFILE))
4169 return -EAGAIN;
4170 op.lookup_flags |= LOOKUP_CACHED;
4171 op.open_flag |= O_NONBLOCK;
4172 }
Jens Axboe15b71ab2019-12-11 11:20:36 -07004173
Pavel Begunkovb9445592021-08-25 12:25:45 +01004174 if (!fixed) {
4175 ret = __get_unused_fd_flags(req->open.how.flags, req->open.nofile);
4176 if (ret < 0)
4177 goto err;
4178 }
Jens Axboe15b71ab2019-12-11 11:20:36 -07004179
4180 file = do_filp_open(req->open.dfd, req->open.filename, &op);
Pavel Begunkov12dcb58a2021-06-24 15:10:00 +01004181 if (IS_ERR(file)) {
Jens Axboe3a81fd02020-12-10 12:25:36 -07004182 /*
Pavel Begunkov12dcb58a2021-06-24 15:10:00 +01004183 * We could hang on to this 'fd' on retrying, but seems like
4184 * marginal gain for something that is now known to be a slower
4185 * path. So just put it, and we'll get a new one when we retry.
Jens Axboe3a81fd02020-12-10 12:25:36 -07004186 */
Pavel Begunkovb9445592021-08-25 12:25:45 +01004187 if (!fixed)
4188 put_unused_fd(ret);
Pavel Begunkov12dcb58a2021-06-24 15:10:00 +01004189
4190 ret = PTR_ERR(file);
4191 /* only retry if RESOLVE_CACHED wasn't already set by application */
4192 if (ret == -EAGAIN &&
4193 (!resolve_nonblock && (issue_flags & IO_URING_F_NONBLOCK)))
4194 return -EAGAIN;
4195 goto err;
Jens Axboe3a81fd02020-12-10 12:25:36 -07004196 }
4197
Pavel Begunkov12dcb58a2021-06-24 15:10:00 +01004198 if ((issue_flags & IO_URING_F_NONBLOCK) && !nonblock_set)
4199 file->f_flags &= ~O_NONBLOCK;
4200 fsnotify_open(file);
Pavel Begunkovb9445592021-08-25 12:25:45 +01004201
4202 if (!fixed)
4203 fd_install(ret, file);
4204 else
4205 ret = io_install_fixed_file(req, file, issue_flags,
4206 req->open.file_slot - 1);
Jens Axboe15b71ab2019-12-11 11:20:36 -07004207err:
4208 putname(req->open.filename);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03004209 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004210 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004211 req_set_fail(req);
Pavel Begunkov0bdf3392021-04-11 01:46:29 +01004212 __io_req_complete(req, issue_flags, ret, 0);
Jens Axboe15b71ab2019-12-11 11:20:36 -07004213 return 0;
4214}
4215
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004216static int io_openat(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboecebdb982020-01-08 17:59:24 -07004217{
Pavel Begunkove45cff52021-02-28 22:35:14 +00004218 return io_openat2(req, issue_flags);
Jens Axboecebdb982020-01-08 17:59:24 -07004219}
4220
Jens Axboe067524e2020-03-02 16:32:28 -07004221static int io_remove_buffers_prep(struct io_kiocb *req,
4222 const struct io_uring_sqe *sqe)
4223{
4224 struct io_provide_buf *p = &req->pbuf;
4225 u64 tmp;
4226
Pavel Begunkov26578cd2021-08-20 10:36:37 +01004227 if (sqe->ioprio || sqe->rw_flags || sqe->addr || sqe->len || sqe->off ||
4228 sqe->splice_fd_in)
Jens Axboe067524e2020-03-02 16:32:28 -07004229 return -EINVAL;
4230
4231 tmp = READ_ONCE(sqe->fd);
4232 if (!tmp || tmp > USHRT_MAX)
4233 return -EINVAL;
4234
4235 memset(p, 0, sizeof(*p));
4236 p->nbufs = tmp;
4237 p->bgid = READ_ONCE(sqe->buf_group);
4238 return 0;
4239}
4240
4241static int __io_remove_buffers(struct io_ring_ctx *ctx, struct io_buffer *buf,
4242 int bgid, unsigned nbufs)
4243{
4244 unsigned i = 0;
4245
4246 /* shouldn't happen */
4247 if (!nbufs)
4248 return 0;
4249
4250 /* the head kbuf is the list itself */
4251 while (!list_empty(&buf->list)) {
4252 struct io_buffer *nxt;
4253
4254 nxt = list_first_entry(&buf->list, struct io_buffer, list);
4255 list_del(&nxt->list);
4256 kfree(nxt);
4257 if (++i == nbufs)
4258 return i;
4259 }
4260 i++;
4261 kfree(buf);
Jens Axboe9e15c3a2021-03-13 12:29:43 -07004262 xa_erase(&ctx->io_buffers, bgid);
Jens Axboe067524e2020-03-02 16:32:28 -07004263
4264 return i;
4265}
4266
Pavel Begunkov889fca72021-02-10 00:03:09 +00004267static int io_remove_buffers(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe067524e2020-03-02 16:32:28 -07004268{
4269 struct io_provide_buf *p = &req->pbuf;
4270 struct io_ring_ctx *ctx = req->ctx;
4271 struct io_buffer *head;
4272 int ret = 0;
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004273 bool force_nonblock = issue_flags & IO_URING_F_NONBLOCK;
Jens Axboe067524e2020-03-02 16:32:28 -07004274
4275 io_ring_submit_lock(ctx, !force_nonblock);
4276
4277 lockdep_assert_held(&ctx->uring_lock);
4278
4279 ret = -ENOENT;
Jens Axboe9e15c3a2021-03-13 12:29:43 -07004280 head = xa_load(&ctx->io_buffers, p->bgid);
Jens Axboe067524e2020-03-02 16:32:28 -07004281 if (head)
4282 ret = __io_remove_buffers(ctx, head, p->bgid, p->nbufs);
Jens Axboe067524e2020-03-02 16:32:28 -07004283 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004284 req_set_fail(req);
Pavel Begunkov31bff9a2020-12-06 22:22:43 +00004285
Pavel Begunkov9fb8cb42021-02-28 22:35:13 +00004286 /* complete before unlock, IOPOLL may need the lock */
4287 __io_req_complete(req, issue_flags, ret, 0);
4288 io_ring_submit_unlock(ctx, !force_nonblock);
Jens Axboe067524e2020-03-02 16:32:28 -07004289 return 0;
4290}
4291
Jens Axboeddf0322d2020-02-23 16:41:33 -07004292static int io_provide_buffers_prep(struct io_kiocb *req,
4293 const struct io_uring_sqe *sqe)
4294{
Pavel Begunkov38134ad2021-04-15 13:07:39 +01004295 unsigned long size, tmp_check;
Jens Axboeddf0322d2020-02-23 16:41:33 -07004296 struct io_provide_buf *p = &req->pbuf;
4297 u64 tmp;
4298
Pavel Begunkov26578cd2021-08-20 10:36:37 +01004299 if (sqe->ioprio || sqe->rw_flags || sqe->splice_fd_in)
Jens Axboeddf0322d2020-02-23 16:41:33 -07004300 return -EINVAL;
4301
4302 tmp = READ_ONCE(sqe->fd);
4303 if (!tmp || tmp > USHRT_MAX)
4304 return -E2BIG;
4305 p->nbufs = tmp;
4306 p->addr = READ_ONCE(sqe->addr);
4307 p->len = READ_ONCE(sqe->len);
4308
Pavel Begunkov38134ad2021-04-15 13:07:39 +01004309 if (check_mul_overflow((unsigned long)p->len, (unsigned long)p->nbufs,
4310 &size))
4311 return -EOVERFLOW;
4312 if (check_add_overflow((unsigned long)p->addr, size, &tmp_check))
4313 return -EOVERFLOW;
4314
Pavel Begunkovd81269f2021-03-19 10:21:19 +00004315 size = (unsigned long)p->len * p->nbufs;
4316 if (!access_ok(u64_to_user_ptr(p->addr), size))
Jens Axboeddf0322d2020-02-23 16:41:33 -07004317 return -EFAULT;
4318
4319 p->bgid = READ_ONCE(sqe->buf_group);
4320 tmp = READ_ONCE(sqe->off);
4321 if (tmp > USHRT_MAX)
4322 return -E2BIG;
4323 p->bid = tmp;
4324 return 0;
4325}
4326
4327static int io_add_buffers(struct io_provide_buf *pbuf, struct io_buffer **head)
4328{
4329 struct io_buffer *buf;
4330 u64 addr = pbuf->addr;
4331 int i, bid = pbuf->bid;
4332
4333 for (i = 0; i < pbuf->nbufs; i++) {
Jens Axboe9990da92021-09-24 07:39:08 -06004334 buf = kmalloc(sizeof(*buf), GFP_KERNEL_ACCOUNT);
Jens Axboeddf0322d2020-02-23 16:41:33 -07004335 if (!buf)
4336 break;
4337
4338 buf->addr = addr;
Thadeu Lima de Souza Cascardod1f82802021-05-05 09:47:06 -03004339 buf->len = min_t(__u32, pbuf->len, MAX_RW_COUNT);
Jens Axboeddf0322d2020-02-23 16:41:33 -07004340 buf->bid = bid;
4341 addr += pbuf->len;
4342 bid++;
4343 if (!*head) {
4344 INIT_LIST_HEAD(&buf->list);
4345 *head = buf;
4346 } else {
4347 list_add_tail(&buf->list, &(*head)->list);
4348 }
4349 }
4350
4351 return i ? i : -ENOMEM;
4352}
4353
Pavel Begunkov889fca72021-02-10 00:03:09 +00004354static int io_provide_buffers(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboeddf0322d2020-02-23 16:41:33 -07004355{
4356 struct io_provide_buf *p = &req->pbuf;
4357 struct io_ring_ctx *ctx = req->ctx;
4358 struct io_buffer *head, *list;
4359 int ret = 0;
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004360 bool force_nonblock = issue_flags & IO_URING_F_NONBLOCK;
Jens Axboeddf0322d2020-02-23 16:41:33 -07004361
4362 io_ring_submit_lock(ctx, !force_nonblock);
4363
4364 lockdep_assert_held(&ctx->uring_lock);
4365
Jens Axboe9e15c3a2021-03-13 12:29:43 -07004366 list = head = xa_load(&ctx->io_buffers, p->bgid);
Jens Axboeddf0322d2020-02-23 16:41:33 -07004367
4368 ret = io_add_buffers(p, &head);
Jens Axboe9e15c3a2021-03-13 12:29:43 -07004369 if (ret >= 0 && !list) {
4370 ret = xa_insert(&ctx->io_buffers, p->bgid, head, GFP_KERNEL);
4371 if (ret < 0)
Jens Axboe067524e2020-03-02 16:32:28 -07004372 __io_remove_buffers(ctx, head, p->bgid, -1U);
Jens Axboeddf0322d2020-02-23 16:41:33 -07004373 }
Jens Axboeddf0322d2020-02-23 16:41:33 -07004374 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004375 req_set_fail(req);
Pavel Begunkov9fb8cb42021-02-28 22:35:13 +00004376 /* complete before unlock, IOPOLL may need the lock */
4377 __io_req_complete(req, issue_flags, ret, 0);
4378 io_ring_submit_unlock(ctx, !force_nonblock);
Jens Axboeddf0322d2020-02-23 16:41:33 -07004379 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004380}
4381
Jens Axboe3e4827b2020-01-08 15:18:09 -07004382static int io_epoll_ctl_prep(struct io_kiocb *req,
4383 const struct io_uring_sqe *sqe)
4384{
4385#if defined(CONFIG_EPOLL)
Pavel Begunkov26578cd2021-08-20 10:36:37 +01004386 if (sqe->ioprio || sqe->buf_index || sqe->splice_fd_in)
Jens Axboe3e4827b2020-01-08 15:18:09 -07004387 return -EINVAL;
Pavel Begunkov2d74d042021-05-14 12:05:46 +01004388 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Pavel Begunkov3232dd02020-06-03 18:03:22 +03004389 return -EINVAL;
Jens Axboe3e4827b2020-01-08 15:18:09 -07004390
4391 req->epoll.epfd = READ_ONCE(sqe->fd);
4392 req->epoll.op = READ_ONCE(sqe->len);
4393 req->epoll.fd = READ_ONCE(sqe->off);
4394
4395 if (ep_op_has_event(req->epoll.op)) {
4396 struct epoll_event __user *ev;
4397
4398 ev = u64_to_user_ptr(READ_ONCE(sqe->addr));
4399 if (copy_from_user(&req->epoll.event, ev, sizeof(*ev)))
4400 return -EFAULT;
4401 }
4402
4403 return 0;
4404#else
4405 return -EOPNOTSUPP;
4406#endif
4407}
4408
Pavel Begunkov889fca72021-02-10 00:03:09 +00004409static int io_epoll_ctl(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe3e4827b2020-01-08 15:18:09 -07004410{
4411#if defined(CONFIG_EPOLL)
4412 struct io_epoll *ie = &req->epoll;
4413 int ret;
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004414 bool force_nonblock = issue_flags & IO_URING_F_NONBLOCK;
Jens Axboe3e4827b2020-01-08 15:18:09 -07004415
4416 ret = do_epoll_ctl(ie->epfd, ie->op, ie->fd, &ie->event, force_nonblock);
4417 if (force_nonblock && ret == -EAGAIN)
4418 return -EAGAIN;
4419
4420 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004421 req_set_fail(req);
Pavel Begunkov889fca72021-02-10 00:03:09 +00004422 __io_req_complete(req, issue_flags, ret, 0);
Jens Axboe3e4827b2020-01-08 15:18:09 -07004423 return 0;
4424#else
4425 return -EOPNOTSUPP;
4426#endif
4427}
4428
Jens Axboec1ca7572019-12-25 22:18:28 -07004429static int io_madvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4430{
4431#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
Pavel Begunkov26578cd2021-08-20 10:36:37 +01004432 if (sqe->ioprio || sqe->buf_index || sqe->off || sqe->splice_fd_in)
Jens Axboec1ca7572019-12-25 22:18:28 -07004433 return -EINVAL;
Pavel Begunkov3232dd02020-06-03 18:03:22 +03004434 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4435 return -EINVAL;
Jens Axboec1ca7572019-12-25 22:18:28 -07004436
4437 req->madvise.addr = READ_ONCE(sqe->addr);
4438 req->madvise.len = READ_ONCE(sqe->len);
4439 req->madvise.advice = READ_ONCE(sqe->fadvise_advice);
4440 return 0;
4441#else
4442 return -EOPNOTSUPP;
4443#endif
4444}
4445
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004446static int io_madvise(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboec1ca7572019-12-25 22:18:28 -07004447{
4448#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
4449 struct io_madvise *ma = &req->madvise;
4450 int ret;
4451
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004452 if (issue_flags & IO_URING_F_NONBLOCK)
Jens Axboec1ca7572019-12-25 22:18:28 -07004453 return -EAGAIN;
4454
Minchan Kim0726b012020-10-17 16:14:50 -07004455 ret = do_madvise(current->mm, ma->addr, ma->len, ma->advice);
Jens Axboec1ca7572019-12-25 22:18:28 -07004456 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004457 req_set_fail(req);
Jens Axboee1e16092020-06-22 09:17:17 -06004458 io_req_complete(req, ret);
Jens Axboec1ca7572019-12-25 22:18:28 -07004459 return 0;
4460#else
4461 return -EOPNOTSUPP;
4462#endif
4463}
4464
Jens Axboe4840e412019-12-25 22:03:45 -07004465static int io_fadvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4466{
Pavel Begunkov26578cd2021-08-20 10:36:37 +01004467 if (sqe->ioprio || sqe->buf_index || sqe->addr || sqe->splice_fd_in)
Jens Axboe4840e412019-12-25 22:03:45 -07004468 return -EINVAL;
Pavel Begunkov3232dd02020-06-03 18:03:22 +03004469 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4470 return -EINVAL;
Jens Axboe4840e412019-12-25 22:03:45 -07004471
4472 req->fadvise.offset = READ_ONCE(sqe->off);
4473 req->fadvise.len = READ_ONCE(sqe->len);
4474 req->fadvise.advice = READ_ONCE(sqe->fadvise_advice);
4475 return 0;
4476}
4477
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004478static int io_fadvise(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe4840e412019-12-25 22:03:45 -07004479{
4480 struct io_fadvise *fa = &req->fadvise;
4481 int ret;
4482
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004483 if (issue_flags & IO_URING_F_NONBLOCK) {
Jens Axboe3e694262020-02-01 09:22:49 -07004484 switch (fa->advice) {
4485 case POSIX_FADV_NORMAL:
4486 case POSIX_FADV_RANDOM:
4487 case POSIX_FADV_SEQUENTIAL:
4488 break;
4489 default:
4490 return -EAGAIN;
4491 }
4492 }
Jens Axboe4840e412019-12-25 22:03:45 -07004493
4494 ret = vfs_fadvise(req->file, fa->offset, fa->len, fa->advice);
4495 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004496 req_set_fail(req);
Pavel Begunkov0bdf3392021-04-11 01:46:29 +01004497 __io_req_complete(req, issue_flags, ret, 0);
Jens Axboe4840e412019-12-25 22:03:45 -07004498 return 0;
4499}
4500
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004501static int io_statx_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4502{
Pavel Begunkov2d74d042021-05-14 12:05:46 +01004503 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Pavel Begunkov3232dd02020-06-03 18:03:22 +03004504 return -EINVAL;
Pavel Begunkov26578cd2021-08-20 10:36:37 +01004505 if (sqe->ioprio || sqe->buf_index || sqe->splice_fd_in)
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004506 return -EINVAL;
Pavel Begunkov9c280f92020-04-08 08:58:46 +03004507 if (req->flags & REQ_F_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07004508 return -EBADF;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004509
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -07004510 req->statx.dfd = READ_ONCE(sqe->fd);
4511 req->statx.mask = READ_ONCE(sqe->len);
Bijan Mottahedehe62753e2020-05-22 21:31:18 -07004512 req->statx.filename = u64_to_user_ptr(READ_ONCE(sqe->addr));
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -07004513 req->statx.buffer = u64_to_user_ptr(READ_ONCE(sqe->addr2));
4514 req->statx.flags = READ_ONCE(sqe->statx_flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004515
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004516 return 0;
4517}
4518
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004519static int io_statx(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004520{
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -07004521 struct io_statx *ctx = &req->statx;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004522 int ret;
4523
Pavel Begunkov59d70012021-03-22 01:58:30 +00004524 if (issue_flags & IO_URING_F_NONBLOCK)
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004525 return -EAGAIN;
4526
Bijan Mottahedehe62753e2020-05-22 21:31:18 -07004527 ret = do_statx(ctx->dfd, ctx->filename, ctx->flags, ctx->mask,
4528 ctx->buffer);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004529
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004530 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004531 req_set_fail(req);
Jens Axboee1e16092020-06-22 09:17:17 -06004532 io_req_complete(req, ret);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004533 return 0;
4534}
4535
Jens Axboeb5dba592019-12-11 14:02:38 -07004536static int io_close_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4537{
Jens Axboe14587a462020-09-05 11:36:08 -06004538 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Pavel Begunkov3232dd02020-06-03 18:03:22 +03004539 return -EINVAL;
Jens Axboeb5dba592019-12-11 14:02:38 -07004540 if (sqe->ioprio || sqe->off || sqe->addr || sqe->len ||
Pavel Begunkov7df778b2021-09-24 20:04:29 +01004541 sqe->rw_flags || sqe->buf_index)
Jens Axboeb5dba592019-12-11 14:02:38 -07004542 return -EINVAL;
Pavel Begunkov9c280f92020-04-08 08:58:46 +03004543 if (req->flags & REQ_F_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07004544 return -EBADF;
Jens Axboeb5dba592019-12-11 14:02:38 -07004545
4546 req->close.fd = READ_ONCE(sqe->fd);
Pavel Begunkov7df778b2021-09-24 20:04:29 +01004547 req->close.file_slot = READ_ONCE(sqe->file_index);
4548 if (req->close.file_slot && req->close.fd)
4549 return -EINVAL;
4550
Jens Axboeb5dba592019-12-11 14:02:38 -07004551 return 0;
4552}
4553
Pavel Begunkov889fca72021-02-10 00:03:09 +00004554static int io_close(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboeb5dba592019-12-11 14:02:38 -07004555{
Jens Axboe9eac1902021-01-19 15:50:37 -07004556 struct files_struct *files = current->files;
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004557 struct io_close *close = &req->close;
Jens Axboe9eac1902021-01-19 15:50:37 -07004558 struct fdtable *fdt;
Pavel Begunkova1fde922021-04-11 01:46:28 +01004559 struct file *file = NULL;
4560 int ret = -EBADF;
Jens Axboeb5dba592019-12-11 14:02:38 -07004561
Pavel Begunkov7df778b2021-09-24 20:04:29 +01004562 if (req->close.file_slot) {
4563 ret = io_close_fixed(req, issue_flags);
4564 goto err;
4565 }
4566
Jens Axboe9eac1902021-01-19 15:50:37 -07004567 spin_lock(&files->file_lock);
4568 fdt = files_fdtable(files);
4569 if (close->fd >= fdt->max_fds) {
4570 spin_unlock(&files->file_lock);
4571 goto err;
4572 }
4573 file = fdt->fd[close->fd];
Pavel Begunkova1fde922021-04-11 01:46:28 +01004574 if (!file || file->f_op == &io_uring_fops) {
Jens Axboe9eac1902021-01-19 15:50:37 -07004575 spin_unlock(&files->file_lock);
4576 file = NULL;
4577 goto err;
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004578 }
Jens Axboeb5dba592019-12-11 14:02:38 -07004579
4580 /* if the file has a flush method, be safe and punt to async */
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004581 if (file->f_op->flush && (issue_flags & IO_URING_F_NONBLOCK)) {
Jens Axboe9eac1902021-01-19 15:50:37 -07004582 spin_unlock(&files->file_lock);
Pavel Begunkov0bf0eef2020-05-26 20:34:06 +03004583 return -EAGAIN;
Pavel Begunkova2100672020-03-02 23:45:16 +03004584 }
Jens Axboeb5dba592019-12-11 14:02:38 -07004585
Jens Axboe9eac1902021-01-19 15:50:37 -07004586 ret = __close_fd_get_file(close->fd, &file);
4587 spin_unlock(&files->file_lock);
4588 if (ret < 0) {
4589 if (ret == -ENOENT)
4590 ret = -EBADF;
4591 goto err;
4592 }
4593
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004594 /* No ->flush() or already async, safely close from here */
Jens Axboe9eac1902021-01-19 15:50:37 -07004595 ret = filp_close(file, current->files);
4596err:
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004597 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004598 req_set_fail(req);
Jens Axboe9eac1902021-01-19 15:50:37 -07004599 if (file)
4600 fput(file);
Pavel Begunkov889fca72021-02-10 00:03:09 +00004601 __io_req_complete(req, issue_flags, ret, 0);
Jens Axboe1a417f42020-01-31 17:16:48 -07004602 return 0;
Jens Axboeb5dba592019-12-11 14:02:38 -07004603}
4604
Pavel Begunkov1155c762021-02-18 18:29:38 +00004605static int io_sfr_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004606{
4607 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004608
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004609 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
4610 return -EINVAL;
Pavel Begunkov26578cd2021-08-20 10:36:37 +01004611 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index ||
4612 sqe->splice_fd_in))
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004613 return -EINVAL;
4614
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004615 req->sync.off = READ_ONCE(sqe->off);
4616 req->sync.len = READ_ONCE(sqe->len);
4617 req->sync.flags = READ_ONCE(sqe->sync_range_flags);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004618 return 0;
4619}
4620
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004621static int io_sync_file_range(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004622{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004623 int ret;
4624
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004625 /* sync_file_range always requires a blocking context */
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004626 if (issue_flags & IO_URING_F_NONBLOCK)
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004627 return -EAGAIN;
4628
Jens Axboe9adbd452019-12-20 08:45:55 -07004629 ret = sync_file_range(req->file, req->sync.off, req->sync.len,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004630 req->sync.flags);
4631 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004632 req_set_fail(req);
Jens Axboee1e16092020-06-22 09:17:17 -06004633 io_req_complete(req, ret);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004634 return 0;
4635}
4636
YueHaibing469956e2020-03-04 15:53:52 +08004637#if defined(CONFIG_NET)
Pavel Begunkov02d27d82020-02-28 10:36:36 +03004638static int io_setup_async_msg(struct io_kiocb *req,
4639 struct io_async_msghdr *kmsg)
4640{
Jens Axboee8c2bc12020-08-15 18:44:09 -07004641 struct io_async_msghdr *async_msg = req->async_data;
4642
4643 if (async_msg)
Pavel Begunkov02d27d82020-02-28 10:36:36 +03004644 return -EAGAIN;
Jens Axboee8c2bc12020-08-15 18:44:09 -07004645 if (io_alloc_async_data(req)) {
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004646 kfree(kmsg->free_iov);
Pavel Begunkov02d27d82020-02-28 10:36:36 +03004647 return -ENOMEM;
4648 }
Jens Axboee8c2bc12020-08-15 18:44:09 -07004649 async_msg = req->async_data;
Pavel Begunkov02d27d82020-02-28 10:36:36 +03004650 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboee8c2bc12020-08-15 18:44:09 -07004651 memcpy(async_msg, kmsg, sizeof(*kmsg));
Pavel Begunkov2a780802021-02-05 00:57:58 +00004652 async_msg->msg.msg_name = &async_msg->addr;
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004653 /* if were using fast_iov, set it to the new one */
4654 if (!async_msg->free_iov)
4655 async_msg->msg.msg_iter.iov = async_msg->fast_iov;
4656
Pavel Begunkov02d27d82020-02-28 10:36:36 +03004657 return -EAGAIN;
4658}
4659
Pavel Begunkov2ae523e2020-07-12 20:41:06 +03004660static int io_sendmsg_copy_hdr(struct io_kiocb *req,
4661 struct io_async_msghdr *iomsg)
4662{
Pavel Begunkov2ae523e2020-07-12 20:41:06 +03004663 iomsg->msg.msg_name = &iomsg->addr;
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004664 iomsg->free_iov = iomsg->fast_iov;
Pavel Begunkov2ae523e2020-07-12 20:41:06 +03004665 return sendmsg_copy_msghdr(&iomsg->msg, req->sr_msg.umsg,
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004666 req->sr_msg.msg_flags, &iomsg->free_iov);
Pavel Begunkov2ae523e2020-07-12 20:41:06 +03004667}
4668
Pavel Begunkov93642ef2021-02-18 18:29:44 +00004669static int io_sendmsg_prep_async(struct io_kiocb *req)
4670{
4671 int ret;
4672
Pavel Begunkov93642ef2021-02-18 18:29:44 +00004673 ret = io_sendmsg_copy_hdr(req, req->async_data);
4674 if (!ret)
4675 req->flags |= REQ_F_NEED_CLEANUP;
4676 return ret;
4677}
4678
Jens Axboe3529d8c2019-12-19 18:24:38 -07004679static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboeaa1fa282019-04-19 13:38:09 -06004680{
Jens Axboee47293f2019-12-20 08:58:21 -07004681 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe03b12302019-12-02 18:50:25 -07004682
Pavel Begunkovd2b6f482020-06-03 18:03:25 +03004683 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4684 return -EINVAL;
4685
Pavel Begunkov270a5942020-07-12 20:41:04 +03004686 sr->umsg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboefddafac2020-01-04 20:19:44 -07004687 sr->len = READ_ONCE(sqe->len);
Pavel Begunkov04411802021-04-01 15:44:00 +01004688 sr->msg_flags = READ_ONCE(sqe->msg_flags) | MSG_NOSIGNAL;
4689 if (sr->msg_flags & MSG_DONTWAIT)
4690 req->flags |= REQ_F_NOWAIT;
Jens Axboe3529d8c2019-12-19 18:24:38 -07004691
Jens Axboed8768362020-02-27 14:17:49 -07004692#ifdef CONFIG_COMPAT
4693 if (req->ctx->compat)
4694 sr->msg_flags |= MSG_CMSG_COMPAT;
4695#endif
Pavel Begunkov93642ef2021-02-18 18:29:44 +00004696 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07004697}
4698
Pavel Begunkov889fca72021-02-10 00:03:09 +00004699static int io_sendmsg(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe03b12302019-12-02 18:50:25 -07004700{
Pavel Begunkov6b754c82020-07-16 23:28:00 +03004701 struct io_async_msghdr iomsg, *kmsg;
Jens Axboe03b12302019-12-02 18:50:25 -07004702 struct socket *sock;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004703 unsigned flags;
Stefan Metzmacher00312752021-03-20 20:33:36 +01004704 int min_ret = 0;
Jens Axboe03b12302019-12-02 18:50:25 -07004705 int ret;
4706
Florent Revestdba4a922020-12-04 12:36:04 +01004707 sock = sock_from_file(req->file);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004708 if (unlikely(!sock))
Florent Revestdba4a922020-12-04 12:36:04 +01004709 return -ENOTSOCK;
Jens Axboe03b12302019-12-02 18:50:25 -07004710
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004711 kmsg = req->async_data;
4712 if (!kmsg) {
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004713 ret = io_sendmsg_copy_hdr(req, &iomsg);
Jens Axboefddafac2020-01-04 20:19:44 -07004714 if (ret)
4715 return ret;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004716 kmsg = &iomsg;
Jens Axboefddafac2020-01-04 20:19:44 -07004717 }
4718
Pavel Begunkov04411802021-04-01 15:44:00 +01004719 flags = req->sr_msg.msg_flags;
4720 if (issue_flags & IO_URING_F_NONBLOCK)
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004721 flags |= MSG_DONTWAIT;
Stefan Metzmacher00312752021-03-20 20:33:36 +01004722 if (flags & MSG_WAITALL)
4723 min_ret = iov_iter_count(&kmsg->msg.msg_iter);
4724
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004725 ret = __sys_sendmsg_sock(sock, &kmsg->msg, flags);
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004726 if ((issue_flags & IO_URING_F_NONBLOCK) && ret == -EAGAIN)
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004727 return io_setup_async_msg(req, kmsg);
4728 if (ret == -ERESTARTSYS)
4729 ret = -EINTR;
4730
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004731 /* fast path, check for non-NULL to avoid function call */
4732 if (kmsg->free_iov)
4733 kfree(kmsg->free_iov);
Jens Axboe03b12302019-12-02 18:50:25 -07004734 req->flags &= ~REQ_F_NEED_CLEANUP;
Stefan Metzmacher00312752021-03-20 20:33:36 +01004735 if (ret < min_ret)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004736 req_set_fail(req);
Pavel Begunkov889fca72021-02-10 00:03:09 +00004737 __io_req_complete(req, issue_flags, ret, 0);
Jens Axboefddafac2020-01-04 20:19:44 -07004738 return 0;
Jens Axboefddafac2020-01-04 20:19:44 -07004739}
4740
Pavel Begunkov889fca72021-02-10 00:03:09 +00004741static int io_send(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe03b12302019-12-02 18:50:25 -07004742{
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004743 struct io_sr_msg *sr = &req->sr_msg;
4744 struct msghdr msg;
4745 struct iovec iov;
Jens Axboe03b12302019-12-02 18:50:25 -07004746 struct socket *sock;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004747 unsigned flags;
Stefan Metzmacher00312752021-03-20 20:33:36 +01004748 int min_ret = 0;
Jens Axboe03b12302019-12-02 18:50:25 -07004749 int ret;
4750
Florent Revestdba4a922020-12-04 12:36:04 +01004751 sock = sock_from_file(req->file);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004752 if (unlikely(!sock))
Florent Revestdba4a922020-12-04 12:36:04 +01004753 return -ENOTSOCK;
Jens Axboe03b12302019-12-02 18:50:25 -07004754
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004755 ret = import_single_range(WRITE, sr->buf, sr->len, &iov, &msg.msg_iter);
4756 if (unlikely(ret))
Zheng Bin14db8412020-09-09 20:12:37 +08004757 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07004758
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004759 msg.msg_name = NULL;
4760 msg.msg_control = NULL;
4761 msg.msg_controllen = 0;
4762 msg.msg_namelen = 0;
Jens Axboe03b12302019-12-02 18:50:25 -07004763
Pavel Begunkov04411802021-04-01 15:44:00 +01004764 flags = req->sr_msg.msg_flags;
4765 if (issue_flags & IO_URING_F_NONBLOCK)
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004766 flags |= MSG_DONTWAIT;
Stefan Metzmacher00312752021-03-20 20:33:36 +01004767 if (flags & MSG_WAITALL)
4768 min_ret = iov_iter_count(&msg.msg_iter);
4769
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004770 msg.msg_flags = flags;
4771 ret = sock_sendmsg(sock, &msg);
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004772 if ((issue_flags & IO_URING_F_NONBLOCK) && ret == -EAGAIN)
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004773 return -EAGAIN;
4774 if (ret == -ERESTARTSYS)
4775 ret = -EINTR;
Jens Axboe03b12302019-12-02 18:50:25 -07004776
Stefan Metzmacher00312752021-03-20 20:33:36 +01004777 if (ret < min_ret)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004778 req_set_fail(req);
Pavel Begunkov889fca72021-02-10 00:03:09 +00004779 __io_req_complete(req, issue_flags, ret, 0);
Jens Axboe03b12302019-12-02 18:50:25 -07004780 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07004781}
4782
Pavel Begunkov1400e692020-07-12 20:41:05 +03004783static int __io_recvmsg_copy_hdr(struct io_kiocb *req,
4784 struct io_async_msghdr *iomsg)
Jens Axboe52de1fe2020-02-27 10:15:42 -07004785{
4786 struct io_sr_msg *sr = &req->sr_msg;
4787 struct iovec __user *uiov;
4788 size_t iov_len;
4789 int ret;
4790
Pavel Begunkov1400e692020-07-12 20:41:05 +03004791 ret = __copy_msghdr_from_user(&iomsg->msg, sr->umsg,
4792 &iomsg->uaddr, &uiov, &iov_len);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004793 if (ret)
4794 return ret;
4795
4796 if (req->flags & REQ_F_BUFFER_SELECT) {
4797 if (iov_len > 1)
4798 return -EINVAL;
Pavel Begunkov5476dfe2021-02-05 00:57:59 +00004799 if (copy_from_user(iomsg->fast_iov, uiov, sizeof(*uiov)))
Jens Axboe52de1fe2020-02-27 10:15:42 -07004800 return -EFAULT;
Pavel Begunkov5476dfe2021-02-05 00:57:59 +00004801 sr->len = iomsg->fast_iov[0].iov_len;
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004802 iomsg->free_iov = NULL;
Jens Axboe52de1fe2020-02-27 10:15:42 -07004803 } else {
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004804 iomsg->free_iov = iomsg->fast_iov;
Christoph Hellwig89cd35c2020-09-25 06:51:41 +02004805 ret = __import_iovec(READ, uiov, iov_len, UIO_FASTIOV,
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004806 &iomsg->free_iov, &iomsg->msg.msg_iter,
Christoph Hellwig89cd35c2020-09-25 06:51:41 +02004807 false);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004808 if (ret > 0)
4809 ret = 0;
4810 }
4811
4812 return ret;
4813}
4814
4815#ifdef CONFIG_COMPAT
4816static int __io_compat_recvmsg_copy_hdr(struct io_kiocb *req,
Pavel Begunkov1400e692020-07-12 20:41:05 +03004817 struct io_async_msghdr *iomsg)
Jens Axboe52de1fe2020-02-27 10:15:42 -07004818{
Jens Axboe52de1fe2020-02-27 10:15:42 -07004819 struct io_sr_msg *sr = &req->sr_msg;
4820 struct compat_iovec __user *uiov;
4821 compat_uptr_t ptr;
4822 compat_size_t len;
4823 int ret;
4824
Pavel Begunkov4af34172021-04-11 01:46:30 +01004825 ret = __get_compat_msghdr(&iomsg->msg, sr->umsg_compat, &iomsg->uaddr,
4826 &ptr, &len);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004827 if (ret)
4828 return ret;
4829
4830 uiov = compat_ptr(ptr);
4831 if (req->flags & REQ_F_BUFFER_SELECT) {
4832 compat_ssize_t clen;
4833
4834 if (len > 1)
4835 return -EINVAL;
4836 if (!access_ok(uiov, sizeof(*uiov)))
4837 return -EFAULT;
4838 if (__get_user(clen, &uiov->iov_len))
4839 return -EFAULT;
4840 if (clen < 0)
4841 return -EINVAL;
Pavel Begunkov2d280bc2020-11-29 18:33:32 +00004842 sr->len = clen;
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004843 iomsg->free_iov = NULL;
Jens Axboe52de1fe2020-02-27 10:15:42 -07004844 } else {
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004845 iomsg->free_iov = iomsg->fast_iov;
Christoph Hellwig89cd35c2020-09-25 06:51:41 +02004846 ret = __import_iovec(READ, (struct iovec __user *)uiov, len,
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004847 UIO_FASTIOV, &iomsg->free_iov,
Christoph Hellwig89cd35c2020-09-25 06:51:41 +02004848 &iomsg->msg.msg_iter, true);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004849 if (ret < 0)
4850 return ret;
4851 }
4852
4853 return 0;
4854}
Jens Axboe03b12302019-12-02 18:50:25 -07004855#endif
Jens Axboe52de1fe2020-02-27 10:15:42 -07004856
Pavel Begunkov1400e692020-07-12 20:41:05 +03004857static int io_recvmsg_copy_hdr(struct io_kiocb *req,
4858 struct io_async_msghdr *iomsg)
Jens Axboe52de1fe2020-02-27 10:15:42 -07004859{
Pavel Begunkov1400e692020-07-12 20:41:05 +03004860 iomsg->msg.msg_name = &iomsg->addr;
Jens Axboe52de1fe2020-02-27 10:15:42 -07004861
4862#ifdef CONFIG_COMPAT
4863 if (req->ctx->compat)
Pavel Begunkov1400e692020-07-12 20:41:05 +03004864 return __io_compat_recvmsg_copy_hdr(req, iomsg);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004865#endif
4866
Pavel Begunkov1400e692020-07-12 20:41:05 +03004867 return __io_recvmsg_copy_hdr(req, iomsg);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004868}
4869
Jens Axboebcda7ba2020-02-23 16:42:51 -07004870static struct io_buffer *io_recv_buffer_select(struct io_kiocb *req,
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004871 bool needs_lock)
Jens Axboebcda7ba2020-02-23 16:42:51 -07004872{
4873 struct io_sr_msg *sr = &req->sr_msg;
4874 struct io_buffer *kbuf;
4875
Jens Axboebcda7ba2020-02-23 16:42:51 -07004876 kbuf = io_buffer_select(req, &sr->len, sr->bgid, sr->kbuf, needs_lock);
4877 if (IS_ERR(kbuf))
4878 return kbuf;
4879
4880 sr->kbuf = kbuf;
4881 req->flags |= REQ_F_BUFFER_SELECTED;
Jens Axboebcda7ba2020-02-23 16:42:51 -07004882 return kbuf;
Jens Axboe03b12302019-12-02 18:50:25 -07004883}
4884
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004885static inline unsigned int io_put_recv_kbuf(struct io_kiocb *req)
4886{
4887 return io_put_kbuf(req, req->sr_msg.kbuf);
4888}
4889
Pavel Begunkov93642ef2021-02-18 18:29:44 +00004890static int io_recvmsg_prep_async(struct io_kiocb *req)
Jens Axboe03b12302019-12-02 18:50:25 -07004891{
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004892 int ret;
Jens Axboe06b76d42019-12-19 14:44:26 -07004893
Pavel Begunkov93642ef2021-02-18 18:29:44 +00004894 ret = io_recvmsg_copy_hdr(req, req->async_data);
4895 if (!ret)
4896 req->flags |= REQ_F_NEED_CLEANUP;
4897 return ret;
4898}
4899
4900static int io_recvmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4901{
4902 struct io_sr_msg *sr = &req->sr_msg;
4903
Pavel Begunkovd2b6f482020-06-03 18:03:25 +03004904 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4905 return -EINVAL;
4906
Pavel Begunkov270a5942020-07-12 20:41:04 +03004907 sr->umsg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboe0b7b21e2020-01-31 08:34:59 -07004908 sr->len = READ_ONCE(sqe->len);
Jens Axboebcda7ba2020-02-23 16:42:51 -07004909 sr->bgid = READ_ONCE(sqe->buf_group);
Pavel Begunkov04411802021-04-01 15:44:00 +01004910 sr->msg_flags = READ_ONCE(sqe->msg_flags) | MSG_NOSIGNAL;
4911 if (sr->msg_flags & MSG_DONTWAIT)
4912 req->flags |= REQ_F_NOWAIT;
Jens Axboe3529d8c2019-12-19 18:24:38 -07004913
Jens Axboed8768362020-02-27 14:17:49 -07004914#ifdef CONFIG_COMPAT
4915 if (req->ctx->compat)
4916 sr->msg_flags |= MSG_CMSG_COMPAT;
4917#endif
Pavel Begunkov93642ef2021-02-18 18:29:44 +00004918 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07004919}
4920
Pavel Begunkov889fca72021-02-10 00:03:09 +00004921static int io_recvmsg(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe03b12302019-12-02 18:50:25 -07004922{
Pavel Begunkov6b754c82020-07-16 23:28:00 +03004923 struct io_async_msghdr iomsg, *kmsg;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004924 struct socket *sock;
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004925 struct io_buffer *kbuf;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004926 unsigned flags;
Stefan Metzmacher00312752021-03-20 20:33:36 +01004927 int min_ret = 0;
Jens Axboe52de1fe2020-02-27 10:15:42 -07004928 int ret, cflags = 0;
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004929 bool force_nonblock = issue_flags & IO_URING_F_NONBLOCK;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004930
Florent Revestdba4a922020-12-04 12:36:04 +01004931 sock = sock_from_file(req->file);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004932 if (unlikely(!sock))
Florent Revestdba4a922020-12-04 12:36:04 +01004933 return -ENOTSOCK;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004934
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004935 kmsg = req->async_data;
4936 if (!kmsg) {
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004937 ret = io_recvmsg_copy_hdr(req, &iomsg);
4938 if (ret)
Pavel Begunkov681fda82020-07-15 22:20:45 +03004939 return ret;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004940 kmsg = &iomsg;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004941 }
4942
Pavel Begunkovbc02ef32020-07-16 23:28:03 +03004943 if (req->flags & REQ_F_BUFFER_SELECT) {
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004944 kbuf = io_recv_buffer_select(req, !force_nonblock);
Pavel Begunkovbc02ef32020-07-16 23:28:03 +03004945 if (IS_ERR(kbuf))
4946 return PTR_ERR(kbuf);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004947 kmsg->fast_iov[0].iov_base = u64_to_user_ptr(kbuf->addr);
Pavel Begunkov5476dfe2021-02-05 00:57:59 +00004948 kmsg->fast_iov[0].iov_len = req->sr_msg.len;
4949 iov_iter_init(&kmsg->msg.msg_iter, READ, kmsg->fast_iov,
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004950 1, req->sr_msg.len);
4951 }
4952
Pavel Begunkov04411802021-04-01 15:44:00 +01004953 flags = req->sr_msg.msg_flags;
4954 if (force_nonblock)
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004955 flags |= MSG_DONTWAIT;
Stefan Metzmacher00312752021-03-20 20:33:36 +01004956 if (flags & MSG_WAITALL)
4957 min_ret = iov_iter_count(&kmsg->msg.msg_iter);
4958
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004959 ret = __sys_recvmsg_sock(sock, &kmsg->msg, req->sr_msg.umsg,
4960 kmsg->uaddr, flags);
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03004961 if (force_nonblock && ret == -EAGAIN)
4962 return io_setup_async_msg(req, kmsg);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004963 if (ret == -ERESTARTSYS)
4964 ret = -EINTR;
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03004965
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004966 if (req->flags & REQ_F_BUFFER_SELECTED)
4967 cflags = io_put_recv_kbuf(req);
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004968 /* fast path, check for non-NULL to avoid function call */
4969 if (kmsg->free_iov)
4970 kfree(kmsg->free_iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004971 req->flags &= ~REQ_F_NEED_CLEANUP;
Stefan Metzmacher00312752021-03-20 20:33:36 +01004972 if (ret < min_ret || ((flags & MSG_WAITALL) && (kmsg->msg.msg_flags & (MSG_TRUNC | MSG_CTRUNC))))
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004973 req_set_fail(req);
Pavel Begunkov889fca72021-02-10 00:03:09 +00004974 __io_req_complete(req, issue_flags, ret, cflags);
Jens Axboe0fa03c62019-04-19 13:34:07 -06004975 return 0;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004976}
4977
Pavel Begunkov889fca72021-02-10 00:03:09 +00004978static int io_recv(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboefddafac2020-01-04 20:19:44 -07004979{
Pavel Begunkov6b754c82020-07-16 23:28:00 +03004980 struct io_buffer *kbuf;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004981 struct io_sr_msg *sr = &req->sr_msg;
4982 struct msghdr msg;
4983 void __user *buf = sr->buf;
Jens Axboefddafac2020-01-04 20:19:44 -07004984 struct socket *sock;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004985 struct iovec iov;
4986 unsigned flags;
Stefan Metzmacher00312752021-03-20 20:33:36 +01004987 int min_ret = 0;
Jens Axboebcda7ba2020-02-23 16:42:51 -07004988 int ret, cflags = 0;
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004989 bool force_nonblock = issue_flags & IO_URING_F_NONBLOCK;
Jens Axboefddafac2020-01-04 20:19:44 -07004990
Florent Revestdba4a922020-12-04 12:36:04 +01004991 sock = sock_from_file(req->file);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004992 if (unlikely(!sock))
Florent Revestdba4a922020-12-04 12:36:04 +01004993 return -ENOTSOCK;
Jens Axboefddafac2020-01-04 20:19:44 -07004994
Pavel Begunkovbc02ef32020-07-16 23:28:03 +03004995 if (req->flags & REQ_F_BUFFER_SELECT) {
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004996 kbuf = io_recv_buffer_select(req, !force_nonblock);
Jens Axboebcda7ba2020-02-23 16:42:51 -07004997 if (IS_ERR(kbuf))
4998 return PTR_ERR(kbuf);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004999 buf = u64_to_user_ptr(kbuf->addr);
Jens Axboefddafac2020-01-04 20:19:44 -07005000 }
5001
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03005002 ret = import_single_range(READ, buf, sr->len, &iov, &msg.msg_iter);
Pavel Begunkov14c32ee2020-07-16 23:28:01 +03005003 if (unlikely(ret))
5004 goto out_free;
Jens Axboefddafac2020-01-04 20:19:44 -07005005
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03005006 msg.msg_name = NULL;
5007 msg.msg_control = NULL;
5008 msg.msg_controllen = 0;
5009 msg.msg_namelen = 0;
5010 msg.msg_iocb = NULL;
5011 msg.msg_flags = 0;
5012
Pavel Begunkov04411802021-04-01 15:44:00 +01005013 flags = req->sr_msg.msg_flags;
5014 if (force_nonblock)
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03005015 flags |= MSG_DONTWAIT;
Stefan Metzmacher00312752021-03-20 20:33:36 +01005016 if (flags & MSG_WAITALL)
5017 min_ret = iov_iter_count(&msg.msg_iter);
5018
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03005019 ret = sock_recvmsg(sock, &msg, flags);
5020 if (force_nonblock && ret == -EAGAIN)
5021 return -EAGAIN;
5022 if (ret == -ERESTARTSYS)
5023 ret = -EINTR;
Pavel Begunkov14c32ee2020-07-16 23:28:01 +03005024out_free:
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03005025 if (req->flags & REQ_F_BUFFER_SELECTED)
5026 cflags = io_put_recv_kbuf(req);
Stefan Metzmacher00312752021-03-20 20:33:36 +01005027 if (ret < min_ret || ((flags & MSG_WAITALL) && (msg.msg_flags & (MSG_TRUNC | MSG_CTRUNC))))
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01005028 req_set_fail(req);
Pavel Begunkov889fca72021-02-10 00:03:09 +00005029 __io_req_complete(req, issue_flags, ret, cflags);
Jens Axboefddafac2020-01-04 20:19:44 -07005030 return 0;
Jens Axboefddafac2020-01-04 20:19:44 -07005031}
5032
Jens Axboe3529d8c2019-12-19 18:24:38 -07005033static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe17f2fe32019-10-17 14:42:58 -06005034{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005035 struct io_accept *accept = &req->accept;
5036
Jens Axboe14587a462020-09-05 11:36:08 -06005037 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe17f2fe32019-10-17 14:42:58 -06005038 return -EINVAL;
Pavel Begunkovaaa4db12021-08-25 12:25:47 +01005039 if (sqe->ioprio || sqe->len || sqe->buf_index)
Jens Axboe17f2fe32019-10-17 14:42:58 -06005040 return -EINVAL;
5041
Jens Axboed55e5f52019-12-11 16:12:15 -07005042 accept->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
5043 accept->addr_len = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005044 accept->flags = READ_ONCE(sqe->accept_flags);
Jens Axboe09952e32020-03-19 20:16:56 -06005045 accept->nofile = rlimit(RLIMIT_NOFILE);
Pavel Begunkova7083ad2021-08-25 12:25:46 +01005046
Pavel Begunkovaaa4db12021-08-25 12:25:47 +01005047 accept->file_slot = READ_ONCE(sqe->file_index);
5048 if (accept->file_slot && ((req->open.how.flags & O_CLOEXEC) ||
5049 (accept->flags & SOCK_CLOEXEC)))
5050 return -EINVAL;
Pavel Begunkova7083ad2021-08-25 12:25:46 +01005051 if (accept->flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
5052 return -EINVAL;
5053 if (SOCK_NONBLOCK != O_NONBLOCK && (accept->flags & SOCK_NONBLOCK))
5054 accept->flags = (accept->flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005055 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005056}
Jens Axboe17f2fe32019-10-17 14:42:58 -06005057
Pavel Begunkov889fca72021-02-10 00:03:09 +00005058static int io_accept(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005059{
5060 struct io_accept *accept = &req->accept;
Pavel Begunkov45d189c2021-02-10 00:03:07 +00005061 bool force_nonblock = issue_flags & IO_URING_F_NONBLOCK;
Pavel Begunkovac45abc2020-06-08 21:08:18 +03005062 unsigned int file_flags = force_nonblock ? O_NONBLOCK : 0;
Pavel Begunkovaaa4db12021-08-25 12:25:47 +01005063 bool fixed = !!accept->file_slot;
Pavel Begunkova7083ad2021-08-25 12:25:46 +01005064 struct file *file;
5065 int ret, fd;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005066
Jiufei Xuee697dee2020-06-10 13:41:59 +08005067 if (req->file->f_flags & O_NONBLOCK)
5068 req->flags |= REQ_F_NOWAIT;
5069
Pavel Begunkovaaa4db12021-08-25 12:25:47 +01005070 if (!fixed) {
5071 fd = __get_unused_fd_flags(accept->flags, accept->nofile);
5072 if (unlikely(fd < 0))
5073 return fd;
5074 }
Pavel Begunkova7083ad2021-08-25 12:25:46 +01005075 file = do_accept(req->file, file_flags, accept->addr, accept->addr_len,
5076 accept->flags);
5077 if (IS_ERR(file)) {
Pavel Begunkovaaa4db12021-08-25 12:25:47 +01005078 if (!fixed)
5079 put_unused_fd(fd);
Pavel Begunkova7083ad2021-08-25 12:25:46 +01005080 ret = PTR_ERR(file);
5081 if (ret == -EAGAIN && force_nonblock)
5082 return -EAGAIN;
Pavel Begunkovac45abc2020-06-08 21:08:18 +03005083 if (ret == -ERESTARTSYS)
5084 ret = -EINTR;
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01005085 req_set_fail(req);
Pavel Begunkovaaa4db12021-08-25 12:25:47 +01005086 } else if (!fixed) {
Pavel Begunkova7083ad2021-08-25 12:25:46 +01005087 fd_install(fd, file);
5088 ret = fd;
Pavel Begunkovaaa4db12021-08-25 12:25:47 +01005089 } else {
5090 ret = io_install_fixed_file(req, file, issue_flags,
5091 accept->file_slot - 1);
Pavel Begunkovac45abc2020-06-08 21:08:18 +03005092 }
Pavel Begunkov889fca72021-02-10 00:03:09 +00005093 __io_req_complete(req, issue_flags, ret, 0);
Jens Axboe17f2fe32019-10-17 14:42:58 -06005094 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005095}
5096
Pavel Begunkov93642ef2021-02-18 18:29:44 +00005097static int io_connect_prep_async(struct io_kiocb *req)
5098{
5099 struct io_async_connect *io = req->async_data;
5100 struct io_connect *conn = &req->connect;
5101
5102 return move_addr_to_kernel(conn->addr, conn->addr_len, &io->address);
5103}
5104
Jens Axboe3529d8c2019-12-19 18:24:38 -07005105static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef499a022019-12-02 16:28:46 -07005106{
Jens Axboe3529d8c2019-12-19 18:24:38 -07005107 struct io_connect *conn = &req->connect;
Jens Axboef499a022019-12-02 16:28:46 -07005108
Jens Axboe14587a462020-09-05 11:36:08 -06005109 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe3fbb51c2019-12-20 08:51:52 -07005110 return -EINVAL;
Pavel Begunkov26578cd2021-08-20 10:36:37 +01005111 if (sqe->ioprio || sqe->len || sqe->buf_index || sqe->rw_flags ||
5112 sqe->splice_fd_in)
Jens Axboe3fbb51c2019-12-20 08:51:52 -07005113 return -EINVAL;
5114
Jens Axboe3529d8c2019-12-19 18:24:38 -07005115 conn->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
5116 conn->addr_len = READ_ONCE(sqe->addr2);
Pavel Begunkov93642ef2021-02-18 18:29:44 +00005117 return 0;
Jens Axboef499a022019-12-02 16:28:46 -07005118}
5119
Pavel Begunkov889fca72021-02-10 00:03:09 +00005120static int io_connect(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboef8e85cf2019-11-23 14:24:24 -07005121{
Jens Axboee8c2bc12020-08-15 18:44:09 -07005122 struct io_async_connect __io, *io;
Jens Axboef8e85cf2019-11-23 14:24:24 -07005123 unsigned file_flags;
Jens Axboe3fbb51c2019-12-20 08:51:52 -07005124 int ret;
Pavel Begunkov45d189c2021-02-10 00:03:07 +00005125 bool force_nonblock = issue_flags & IO_URING_F_NONBLOCK;
Jens Axboef8e85cf2019-11-23 14:24:24 -07005126
Jens Axboee8c2bc12020-08-15 18:44:09 -07005127 if (req->async_data) {
5128 io = req->async_data;
Jens Axboef499a022019-12-02 16:28:46 -07005129 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07005130 ret = move_addr_to_kernel(req->connect.addr,
5131 req->connect.addr_len,
Jens Axboee8c2bc12020-08-15 18:44:09 -07005132 &__io.address);
Jens Axboef499a022019-12-02 16:28:46 -07005133 if (ret)
5134 goto out;
5135 io = &__io;
5136 }
5137
Jens Axboe3fbb51c2019-12-20 08:51:52 -07005138 file_flags = force_nonblock ? O_NONBLOCK : 0;
5139
Jens Axboee8c2bc12020-08-15 18:44:09 -07005140 ret = __sys_connect_file(req->file, &io->address,
Jens Axboe3fbb51c2019-12-20 08:51:52 -07005141 req->connect.addr_len, file_flags);
Jens Axboe87f80d62019-12-03 11:23:54 -07005142 if ((ret == -EAGAIN || ret == -EINPROGRESS) && force_nonblock) {
Jens Axboee8c2bc12020-08-15 18:44:09 -07005143 if (req->async_data)
Jens Axboeb7bb4f72019-12-15 22:13:43 -07005144 return -EAGAIN;
Jens Axboee8c2bc12020-08-15 18:44:09 -07005145 if (io_alloc_async_data(req)) {
Jens Axboef499a022019-12-02 16:28:46 -07005146 ret = -ENOMEM;
5147 goto out;
5148 }
Jens Axboee8c2bc12020-08-15 18:44:09 -07005149 memcpy(req->async_data, &__io, sizeof(__io));
Jens Axboef8e85cf2019-11-23 14:24:24 -07005150 return -EAGAIN;
Jens Axboef499a022019-12-02 16:28:46 -07005151 }
Jens Axboef8e85cf2019-11-23 14:24:24 -07005152 if (ret == -ERESTARTSYS)
5153 ret = -EINTR;
Jens Axboef499a022019-12-02 16:28:46 -07005154out:
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005155 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01005156 req_set_fail(req);
Pavel Begunkov889fca72021-02-10 00:03:09 +00005157 __io_req_complete(req, issue_flags, ret, 0);
Jens Axboef8e85cf2019-11-23 14:24:24 -07005158 return 0;
Jens Axboef8e85cf2019-11-23 14:24:24 -07005159}
YueHaibing469956e2020-03-04 15:53:52 +08005160#else /* !CONFIG_NET */
Jens Axboe99a10082021-02-19 09:35:19 -07005161#define IO_NETOP_FN(op) \
5162static int io_##op(struct io_kiocb *req, unsigned int issue_flags) \
5163{ \
5164 return -EOPNOTSUPP; \
Jens Axboef8e85cf2019-11-23 14:24:24 -07005165}
5166
Jens Axboe99a10082021-02-19 09:35:19 -07005167#define IO_NETOP_PREP(op) \
5168IO_NETOP_FN(op) \
5169static int io_##op##_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe) \
5170{ \
5171 return -EOPNOTSUPP; \
5172} \
5173
5174#define IO_NETOP_PREP_ASYNC(op) \
5175IO_NETOP_PREP(op) \
5176static int io_##op##_prep_async(struct io_kiocb *req) \
5177{ \
5178 return -EOPNOTSUPP; \
YueHaibing469956e2020-03-04 15:53:52 +08005179}
5180
Jens Axboe99a10082021-02-19 09:35:19 -07005181IO_NETOP_PREP_ASYNC(sendmsg);
5182IO_NETOP_PREP_ASYNC(recvmsg);
5183IO_NETOP_PREP_ASYNC(connect);
5184IO_NETOP_PREP(accept);
5185IO_NETOP_FN(send);
5186IO_NETOP_FN(recv);
YueHaibing469956e2020-03-04 15:53:52 +08005187#endif /* CONFIG_NET */
Jens Axboe17f2fe32019-10-17 14:42:58 -06005188
Jens Axboed7718a92020-02-14 22:23:12 -07005189struct io_poll_table {
5190 struct poll_table_struct pt;
5191 struct io_kiocb *req;
Pavel Begunkov68b11e82021-07-20 10:50:43 +01005192 int nr_entries;
Jens Axboed7718a92020-02-14 22:23:12 -07005193 int error;
5194};
5195
Jens Axboed7718a92020-02-14 22:23:12 -07005196static int __io_async_wake(struct io_kiocb *req, struct io_poll_iocb *poll,
Pavel Begunkov5b0a6ac2021-06-30 21:54:04 +01005197 __poll_t mask, io_req_tw_func_t func)
Jens Axboed7718a92020-02-14 22:23:12 -07005198{
Jens Axboed7718a92020-02-14 22:23:12 -07005199 /* for instances that support it check for an event match first: */
5200 if (mask && !(mask & poll->events))
5201 return 0;
5202
5203 trace_io_uring_task_add(req->ctx, req->opcode, req->user_data, mask);
5204
5205 list_del_init(&poll->wait.entry);
5206
Jens Axboed7718a92020-02-14 22:23:12 -07005207 req->result = mask;
Pavel Begunkov5b0a6ac2021-06-30 21:54:04 +01005208 req->io_task_work.func = func;
Jens Axboe6d816e02020-08-11 08:04:14 -06005209
Jens Axboed7718a92020-02-14 22:23:12 -07005210 /*
Jens Axboee3aabf92020-05-18 11:04:17 -06005211 * If this fails, then the task is exiting. When a task exits, the
5212 * work gets canceled, so just cancel this request as well instead
5213 * of executing it. We can't safely execute it anyway, as we may not
5214 * have the needed state needed for it anyway.
Jens Axboed7718a92020-02-14 22:23:12 -07005215 */
Pavel Begunkove09ee512021-07-01 13:26:05 +01005216 io_req_task_work_add(req);
Jens Axboed7718a92020-02-14 22:23:12 -07005217 return 1;
5218}
5219
Jens Axboe74ce6ce2020-04-13 11:09:12 -06005220static bool io_poll_rewait(struct io_kiocb *req, struct io_poll_iocb *poll)
5221 __acquires(&req->ctx->completion_lock)
5222{
5223 struct io_ring_ctx *ctx = req->ctx;
5224
Jens Axboe316319e2021-08-19 09:41:42 -06005225 /* req->task == current here, checking PF_EXITING is safe */
Pavel Begunkove09ee512021-07-01 13:26:05 +01005226 if (unlikely(req->task->flags & PF_EXITING))
5227 WRITE_ONCE(poll->canceled, true);
5228
Jens Axboe74ce6ce2020-04-13 11:09:12 -06005229 if (!req->result && !READ_ONCE(poll->canceled)) {
5230 struct poll_table_struct pt = { ._key = poll->events };
5231
5232 req->result = vfs_poll(req->file, &pt) & poll->events;
5233 }
5234
Jens Axboe79ebeae2021-08-10 15:18:27 -06005235 spin_lock(&ctx->completion_lock);
Jens Axboe74ce6ce2020-04-13 11:09:12 -06005236 if (!req->result && !READ_ONCE(poll->canceled)) {
5237 add_wait_queue(poll->head, &poll->wait);
5238 return true;
5239 }
5240
5241 return false;
5242}
5243
Jens Axboed4e7cd32020-08-15 11:44:50 -07005244static struct io_poll_iocb *io_poll_get_double(struct io_kiocb *req)
Jens Axboe18bceab2020-05-15 11:56:54 -06005245{
Jens Axboee8c2bc12020-08-15 18:44:09 -07005246 /* pure poll stashes this in ->async_data, poll driven retry elsewhere */
Jens Axboed4e7cd32020-08-15 11:44:50 -07005247 if (req->opcode == IORING_OP_POLL_ADD)
Jens Axboee8c2bc12020-08-15 18:44:09 -07005248 return req->async_data;
Jens Axboed4e7cd32020-08-15 11:44:50 -07005249 return req->apoll->double_poll;
5250}
5251
5252static struct io_poll_iocb *io_poll_get_single(struct io_kiocb *req)
5253{
5254 if (req->opcode == IORING_OP_POLL_ADD)
5255 return &req->poll;
5256 return &req->apoll->poll;
5257}
5258
5259static void io_poll_remove_double(struct io_kiocb *req)
Pavel Begunkove07785b2021-04-01 15:43:57 +01005260 __must_hold(&req->ctx->completion_lock)
Jens Axboed4e7cd32020-08-15 11:44:50 -07005261{
5262 struct io_poll_iocb *poll = io_poll_get_double(req);
Jens Axboe18bceab2020-05-15 11:56:54 -06005263
5264 lockdep_assert_held(&req->ctx->completion_lock);
5265
5266 if (poll && poll->head) {
5267 struct wait_queue_head *head = poll->head;
5268
Jens Axboe79ebeae2021-08-10 15:18:27 -06005269 spin_lock_irq(&head->lock);
Jens Axboe18bceab2020-05-15 11:56:54 -06005270 list_del_init(&poll->wait.entry);
5271 if (poll->wait.private)
Jens Axboede9b4cc2021-02-24 13:28:27 -07005272 req_ref_put(req);
Jens Axboe18bceab2020-05-15 11:56:54 -06005273 poll->head = NULL;
Jens Axboe79ebeae2021-08-10 15:18:27 -06005274 spin_unlock_irq(&head->lock);
Jens Axboe18bceab2020-05-15 11:56:54 -06005275 }
5276}
5277
Xiaoguang Wang31efe482021-09-03 22:24:36 +08005278static bool __io_poll_complete(struct io_kiocb *req, __poll_t mask)
Pavel Begunkove07785b2021-04-01 15:43:57 +01005279 __must_hold(&req->ctx->completion_lock)
Jens Axboe18bceab2020-05-15 11:56:54 -06005280{
5281 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe88e41cf2021-02-22 22:08:01 -07005282 unsigned flags = IORING_CQE_F_MORE;
Pavel Begunkove27414b2021-04-09 09:13:20 +01005283 int error;
Jens Axboe18bceab2020-05-15 11:56:54 -06005284
Pavel Begunkove27414b2021-04-09 09:13:20 +01005285 if (READ_ONCE(req->poll.canceled)) {
Jens Axboe45ab03b2021-02-23 08:19:33 -07005286 error = -ECANCELED;
Jens Axboe88e41cf2021-02-22 22:08:01 -07005287 req->poll.events |= EPOLLONESHOT;
Pavel Begunkove27414b2021-04-09 09:13:20 +01005288 } else {
Jens Axboe50826202021-02-23 09:02:26 -07005289 error = mangle_poll(mask);
Pavel Begunkove27414b2021-04-09 09:13:20 +01005290 }
Jens Axboeb69de282021-03-17 08:37:41 -06005291 if (req->poll.events & EPOLLONESHOT)
5292 flags = 0;
Hao Xua62682f2021-09-22 18:12:37 +08005293 if (!io_cqring_fill_event(ctx, req->user_data, error, flags)) {
5294 req->poll.events |= EPOLLONESHOT;
Jens Axboe88e41cf2021-02-22 22:08:01 -07005295 flags = 0;
Hao Xua62682f2021-09-22 18:12:37 +08005296 }
Hao Xu7b289c32021-04-13 15:20:39 +08005297 if (flags & IORING_CQE_F_MORE)
5298 ctx->cq_extra++;
5299
Jens Axboe88e41cf2021-02-22 22:08:01 -07005300 return !(flags & IORING_CQE_F_MORE);
Jens Axboe18bceab2020-05-15 11:56:54 -06005301}
5302
Xiaoguang Wang31efe482021-09-03 22:24:36 +08005303static inline bool io_poll_complete(struct io_kiocb *req, __poll_t mask)
5304 __must_hold(&req->ctx->completion_lock)
5305{
5306 bool done;
5307
5308 done = __io_poll_complete(req, mask);
5309 io_commit_cqring(req->ctx);
5310 return done;
5311}
5312
Pavel Begunkovf237c302021-08-18 12:42:46 +01005313static void io_poll_task_func(struct io_kiocb *req, bool *locked)
Jens Axboe18bceab2020-05-15 11:56:54 -06005314{
Jens Axboe6d816e02020-08-11 08:04:14 -06005315 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovdd221f462020-10-18 10:17:42 +01005316 struct io_kiocb *nxt;
Jens Axboe18bceab2020-05-15 11:56:54 -06005317
Pavel Begunkovdd221f462020-10-18 10:17:42 +01005318 if (io_poll_rewait(req, &req->poll)) {
Jens Axboe79ebeae2021-08-10 15:18:27 -06005319 spin_unlock(&ctx->completion_lock);
Pavel Begunkovdd221f462020-10-18 10:17:42 +01005320 } else {
Pavel Begunkovf40b9642021-04-09 09:13:19 +01005321 bool done;
Jens Axboe88e41cf2021-02-22 22:08:01 -07005322
Hao Xu5b7aa382021-09-22 18:12:38 +08005323 if (req->poll.done) {
5324 spin_unlock(&ctx->completion_lock);
5325 return;
5326 }
Xiaoguang Wang31efe482021-09-03 22:24:36 +08005327 done = __io_poll_complete(req, req->result);
Jens Axboe88e41cf2021-02-22 22:08:01 -07005328 if (done) {
Hao Xua890d012021-07-28 11:03:22 +08005329 io_poll_remove_double(req);
Jens Axboe88e41cf2021-02-22 22:08:01 -07005330 hash_del(&req->hash_node);
Hao Xubd99c712021-09-22 18:12:36 +08005331 req->poll.done = true;
Pavel Begunkovf40b9642021-04-09 09:13:19 +01005332 } else {
Jens Axboe88e41cf2021-02-22 22:08:01 -07005333 req->result = 0;
5334 add_wait_queue(req->poll.head, &req->poll.wait);
5335 }
Xiaoguang Wang31efe482021-09-03 22:24:36 +08005336 io_commit_cqring(ctx);
Jens Axboe79ebeae2021-08-10 15:18:27 -06005337 spin_unlock(&ctx->completion_lock);
Pavel Begunkovdd221f462020-10-18 10:17:42 +01005338 io_cqring_ev_posted(ctx);
Pavel Begunkovdd221f462020-10-18 10:17:42 +01005339
Jens Axboe88e41cf2021-02-22 22:08:01 -07005340 if (done) {
5341 nxt = io_put_req_find_next(req);
5342 if (nxt)
Pavel Begunkovf237c302021-08-18 12:42:46 +01005343 io_req_task_submit(nxt, locked);
Jens Axboe88e41cf2021-02-22 22:08:01 -07005344 }
Pavel Begunkovea1164e2020-06-30 15:20:41 +03005345 }
Jens Axboe18bceab2020-05-15 11:56:54 -06005346}
5347
5348static int io_poll_double_wake(struct wait_queue_entry *wait, unsigned mode,
5349 int sync, void *key)
5350{
5351 struct io_kiocb *req = wait->private;
Jens Axboed4e7cd32020-08-15 11:44:50 -07005352 struct io_poll_iocb *poll = io_poll_get_single(req);
Jens Axboe18bceab2020-05-15 11:56:54 -06005353 __poll_t mask = key_to_poll(key);
Jens Axboe79ebeae2021-08-10 15:18:27 -06005354 unsigned long flags;
Jens Axboe18bceab2020-05-15 11:56:54 -06005355
5356 /* for instances that support it check for an event match first: */
5357 if (mask && !(mask & poll->events))
5358 return 0;
Jens Axboe88e41cf2021-02-22 22:08:01 -07005359 if (!(poll->events & EPOLLONESHOT))
5360 return poll->wait.func(&poll->wait, mode, sync, key);
Jens Axboe18bceab2020-05-15 11:56:54 -06005361
Jens Axboe8706e042020-09-28 08:38:54 -06005362 list_del_init(&wait->entry);
5363
Jens Axboe9ce85ef2021-07-09 08:20:28 -06005364 if (poll->head) {
Jens Axboe18bceab2020-05-15 11:56:54 -06005365 bool done;
5366
Jens Axboe79ebeae2021-08-10 15:18:27 -06005367 spin_lock_irqsave(&poll->head->lock, flags);
Jens Axboe807abcb2020-07-17 17:09:27 -06005368 done = list_empty(&poll->wait.entry);
Jens Axboe18bceab2020-05-15 11:56:54 -06005369 if (!done)
Jens Axboe807abcb2020-07-17 17:09:27 -06005370 list_del_init(&poll->wait.entry);
Jens Axboed4e7cd32020-08-15 11:44:50 -07005371 /* make sure double remove sees this as being gone */
5372 wait->private = NULL;
Jens Axboe79ebeae2021-08-10 15:18:27 -06005373 spin_unlock_irqrestore(&poll->head->lock, flags);
Jens Axboec8b5e262020-10-25 13:53:26 -06005374 if (!done) {
5375 /* use wait func handler, so it matches the rq type */
5376 poll->wait.func(&poll->wait, mode, sync, key);
5377 }
Jens Axboe18bceab2020-05-15 11:56:54 -06005378 }
Jens Axboede9b4cc2021-02-24 13:28:27 -07005379 req_ref_put(req);
Jens Axboe18bceab2020-05-15 11:56:54 -06005380 return 1;
5381}
5382
5383static void io_init_poll_iocb(struct io_poll_iocb *poll, __poll_t events,
5384 wait_queue_func_t wake_func)
5385{
5386 poll->head = NULL;
5387 poll->done = false;
5388 poll->canceled = false;
Jens Axboe464dca62021-03-19 14:06:24 -06005389#define IO_POLL_UNMASK (EPOLLERR|EPOLLHUP|EPOLLNVAL|EPOLLRDHUP)
5390 /* mask in events that we always want/need */
5391 poll->events = events | IO_POLL_UNMASK;
Jens Axboe18bceab2020-05-15 11:56:54 -06005392 INIT_LIST_HEAD(&poll->wait.entry);
5393 init_waitqueue_func_entry(&poll->wait, wake_func);
5394}
5395
5396static void __io_queue_proc(struct io_poll_iocb *poll, struct io_poll_table *pt,
Jens Axboe807abcb2020-07-17 17:09:27 -06005397 struct wait_queue_head *head,
5398 struct io_poll_iocb **poll_ptr)
Jens Axboe18bceab2020-05-15 11:56:54 -06005399{
5400 struct io_kiocb *req = pt->req;
5401
5402 /*
Pavel Begunkov68b11e82021-07-20 10:50:43 +01005403 * The file being polled uses multiple waitqueues for poll handling
5404 * (e.g. one for read, one for write). Setup a separate io_poll_iocb
5405 * if this happens.
Jens Axboe18bceab2020-05-15 11:56:54 -06005406 */
Pavel Begunkov68b11e82021-07-20 10:50:43 +01005407 if (unlikely(pt->nr_entries)) {
Pavel Begunkov58852d42020-10-16 20:55:56 +01005408 struct io_poll_iocb *poll_one = poll;
5409
Pavel Begunkov23a65db2021-08-17 20:28:11 +01005410 /* double add on the same waitqueue head, ignore */
5411 if (poll_one->head == head)
5412 return;
Jens Axboe18bceab2020-05-15 11:56:54 -06005413 /* already have a 2nd entry, fail a third attempt */
Jens Axboe807abcb2020-07-17 17:09:27 -06005414 if (*poll_ptr) {
Pavel Begunkov23a65db2021-08-17 20:28:11 +01005415 if ((*poll_ptr)->head == head)
5416 return;
Jens Axboe18bceab2020-05-15 11:56:54 -06005417 pt->error = -EINVAL;
5418 return;
5419 }
Jens Axboeea6a693d2021-04-15 09:47:13 -06005420 /*
5421 * Can't handle multishot for double wait for now, turn it
5422 * into one-shot mode.
5423 */
Pavel Begunkov7a274722021-05-17 12:43:34 +01005424 if (!(poll_one->events & EPOLLONESHOT))
5425 poll_one->events |= EPOLLONESHOT;
Jens Axboe18bceab2020-05-15 11:56:54 -06005426 poll = kmalloc(sizeof(*poll), GFP_ATOMIC);
5427 if (!poll) {
5428 pt->error = -ENOMEM;
5429 return;
5430 }
Pavel Begunkov58852d42020-10-16 20:55:56 +01005431 io_init_poll_iocb(poll, poll_one->events, io_poll_double_wake);
Jens Axboede9b4cc2021-02-24 13:28:27 -07005432 req_ref_get(req);
Jens Axboe18bceab2020-05-15 11:56:54 -06005433 poll->wait.private = req;
Jens Axboe807abcb2020-07-17 17:09:27 -06005434 *poll_ptr = poll;
Jens Axboe18bceab2020-05-15 11:56:54 -06005435 }
5436
Pavel Begunkov68b11e82021-07-20 10:50:43 +01005437 pt->nr_entries++;
Jens Axboe18bceab2020-05-15 11:56:54 -06005438 poll->head = head;
Jiufei Xuea31eb4a2020-06-17 17:53:56 +08005439
5440 if (poll->events & EPOLLEXCLUSIVE)
5441 add_wait_queue_exclusive(head, &poll->wait);
5442 else
5443 add_wait_queue(head, &poll->wait);
Jens Axboe18bceab2020-05-15 11:56:54 -06005444}
5445
5446static void io_async_queue_proc(struct file *file, struct wait_queue_head *head,
5447 struct poll_table_struct *p)
5448{
5449 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
Jens Axboe807abcb2020-07-17 17:09:27 -06005450 struct async_poll *apoll = pt->req->apoll;
Jens Axboe18bceab2020-05-15 11:56:54 -06005451
Jens Axboe807abcb2020-07-17 17:09:27 -06005452 __io_queue_proc(&apoll->poll, pt, head, &apoll->double_poll);
Jens Axboe18bceab2020-05-15 11:56:54 -06005453}
5454
Pavel Begunkovf237c302021-08-18 12:42:46 +01005455static void io_async_task_func(struct io_kiocb *req, bool *locked)
Jens Axboed7718a92020-02-14 22:23:12 -07005456{
Jens Axboed7718a92020-02-14 22:23:12 -07005457 struct async_poll *apoll = req->apoll;
5458 struct io_ring_ctx *ctx = req->ctx;
5459
Olivier Langlois236daeae2021-05-31 02:36:37 -04005460 trace_io_uring_task_run(req->ctx, req, req->opcode, req->user_data);
Jens Axboed7718a92020-02-14 22:23:12 -07005461
Jens Axboe74ce6ce2020-04-13 11:09:12 -06005462 if (io_poll_rewait(req, &apoll->poll)) {
Jens Axboe79ebeae2021-08-10 15:18:27 -06005463 spin_unlock(&ctx->completion_lock);
Jens Axboe74ce6ce2020-04-13 11:09:12 -06005464 return;
Jens Axboed7718a92020-02-14 22:23:12 -07005465 }
5466
Pavel Begunkov0ea13b42021-04-09 09:13:21 +01005467 hash_del(&req->hash_node);
Jens Axboed4e7cd32020-08-15 11:44:50 -07005468 io_poll_remove_double(req);
Hao Xubd99c712021-09-22 18:12:36 +08005469 apoll->poll.done = true;
Jens Axboe79ebeae2021-08-10 15:18:27 -06005470 spin_unlock(&ctx->completion_lock);
Jens Axboe74ce6ce2020-04-13 11:09:12 -06005471
Pavel Begunkov0be0b0e2020-06-30 15:20:42 +03005472 if (!READ_ONCE(apoll->poll.canceled))
Pavel Begunkovf237c302021-08-18 12:42:46 +01005473 io_req_task_submit(req, locked);
Pavel Begunkov0be0b0e2020-06-30 15:20:42 +03005474 else
Pavel Begunkov25935532021-03-19 17:22:40 +00005475 io_req_complete_failed(req, -ECANCELED);
Jens Axboed7718a92020-02-14 22:23:12 -07005476}
5477
5478static int io_async_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
5479 void *key)
5480{
5481 struct io_kiocb *req = wait->private;
5482 struct io_poll_iocb *poll = &req->apoll->poll;
5483
5484 trace_io_uring_poll_wake(req->ctx, req->opcode, req->user_data,
5485 key_to_poll(key));
5486
5487 return __io_async_wake(req, poll, key_to_poll(key), io_async_task_func);
5488}
5489
5490static void io_poll_req_insert(struct io_kiocb *req)
5491{
5492 struct io_ring_ctx *ctx = req->ctx;
5493 struct hlist_head *list;
5494
5495 list = &ctx->cancel_hash[hash_long(req->user_data, ctx->cancel_hash_bits)];
5496 hlist_add_head(&req->hash_node, list);
5497}
5498
5499static __poll_t __io_arm_poll_handler(struct io_kiocb *req,
5500 struct io_poll_iocb *poll,
5501 struct io_poll_table *ipt, __poll_t mask,
5502 wait_queue_func_t wake_func)
5503 __acquires(&ctx->completion_lock)
5504{
5505 struct io_ring_ctx *ctx = req->ctx;
5506 bool cancel = false;
5507
Pavel Begunkov4d52f332020-10-18 10:17:43 +01005508 INIT_HLIST_NODE(&req->hash_node);
Jens Axboe18bceab2020-05-15 11:56:54 -06005509 io_init_poll_iocb(poll, mask, wake_func);
Pavel Begunkovb90cd192020-06-21 13:09:52 +03005510 poll->file = req->file;
Jens Axboe18bceab2020-05-15 11:56:54 -06005511 poll->wait.private = req;
Jens Axboed7718a92020-02-14 22:23:12 -07005512
5513 ipt->pt._key = mask;
5514 ipt->req = req;
Pavel Begunkov68b11e82021-07-20 10:50:43 +01005515 ipt->error = 0;
5516 ipt->nr_entries = 0;
Jens Axboed7718a92020-02-14 22:23:12 -07005517
Jens Axboed7718a92020-02-14 22:23:12 -07005518 mask = vfs_poll(req->file, &ipt->pt) & poll->events;
Pavel Begunkov68b11e82021-07-20 10:50:43 +01005519 if (unlikely(!ipt->nr_entries) && !ipt->error)
5520 ipt->error = -EINVAL;
Jens Axboed7718a92020-02-14 22:23:12 -07005521
Jens Axboe79ebeae2021-08-10 15:18:27 -06005522 spin_lock(&ctx->completion_lock);
Hao Xua890d012021-07-28 11:03:22 +08005523 if (ipt->error || (mask && (poll->events & EPOLLONESHOT)))
Pavel Begunkov46fee9a2021-07-20 10:50:44 +01005524 io_poll_remove_double(req);
Jens Axboed7718a92020-02-14 22:23:12 -07005525 if (likely(poll->head)) {
Jens Axboe79ebeae2021-08-10 15:18:27 -06005526 spin_lock_irq(&poll->head->lock);
Jens Axboed7718a92020-02-14 22:23:12 -07005527 if (unlikely(list_empty(&poll->wait.entry))) {
5528 if (ipt->error)
5529 cancel = true;
5530 ipt->error = 0;
5531 mask = 0;
5532 }
Jens Axboe88e41cf2021-02-22 22:08:01 -07005533 if ((mask && (poll->events & EPOLLONESHOT)) || ipt->error)
Jens Axboed7718a92020-02-14 22:23:12 -07005534 list_del_init(&poll->wait.entry);
5535 else if (cancel)
5536 WRITE_ONCE(poll->canceled, true);
5537 else if (!poll->done) /* actually waiting for an event */
5538 io_poll_req_insert(req);
Jens Axboe79ebeae2021-08-10 15:18:27 -06005539 spin_unlock_irq(&poll->head->lock);
Jens Axboed7718a92020-02-14 22:23:12 -07005540 }
5541
5542 return mask;
5543}
5544
Olivier Langlois59b735a2021-06-22 05:17:39 -07005545enum {
5546 IO_APOLL_OK,
5547 IO_APOLL_ABORTED,
5548 IO_APOLL_READY
5549};
5550
5551static int io_arm_poll_handler(struct io_kiocb *req)
Jens Axboed7718a92020-02-14 22:23:12 -07005552{
5553 const struct io_op_def *def = &io_op_defs[req->opcode];
5554 struct io_ring_ctx *ctx = req->ctx;
5555 struct async_poll *apoll;
5556 struct io_poll_table ipt;
Pavel Begunkovb2d9c3d2021-06-26 21:40:44 +01005557 __poll_t ret, mask = EPOLLONESHOT | POLLERR | POLLPRI;
Jens Axboe9dab14b2020-08-25 12:27:50 -06005558 int rw;
Jens Axboed7718a92020-02-14 22:23:12 -07005559
5560 if (!req->file || !file_can_poll(req->file))
Olivier Langlois59b735a2021-06-22 05:17:39 -07005561 return IO_APOLL_ABORTED;
Pavel Begunkov24c74672020-06-21 13:09:51 +03005562 if (req->flags & REQ_F_POLLED)
Olivier Langlois59b735a2021-06-22 05:17:39 -07005563 return IO_APOLL_ABORTED;
Pavel Begunkovb2d9c3d2021-06-26 21:40:44 +01005564 if (!def->pollin && !def->pollout)
Olivier Langlois59b735a2021-06-22 05:17:39 -07005565 return IO_APOLL_ABORTED;
Pavel Begunkovb2d9c3d2021-06-26 21:40:44 +01005566
5567 if (def->pollin) {
5568 rw = READ;
5569 mask |= POLLIN | POLLRDNORM;
5570
5571 /* If reading from MSG_ERRQUEUE using recvmsg, ignore POLLIN */
5572 if ((req->opcode == IORING_OP_RECVMSG) &&
5573 (req->sr_msg.msg_flags & MSG_ERRQUEUE))
5574 mask &= ~POLLIN;
5575 } else {
5576 rw = WRITE;
5577 mask |= POLLOUT | POLLWRNORM;
5578 }
5579
Jens Axboe9dab14b2020-08-25 12:27:50 -06005580 /* if we can't nonblock try, then no point in arming a poll handler */
Pavel Begunkovb191e2d2021-08-09 13:04:03 +01005581 if (!io_file_supports_nowait(req, rw))
Olivier Langlois59b735a2021-06-22 05:17:39 -07005582 return IO_APOLL_ABORTED;
Jens Axboed7718a92020-02-14 22:23:12 -07005583
5584 apoll = kmalloc(sizeof(*apoll), GFP_ATOMIC);
5585 if (unlikely(!apoll))
Olivier Langlois59b735a2021-06-22 05:17:39 -07005586 return IO_APOLL_ABORTED;
Jens Axboe807abcb2020-07-17 17:09:27 -06005587 apoll->double_poll = NULL;
Jens Axboed7718a92020-02-14 22:23:12 -07005588 req->apoll = apoll;
Pavel Begunkovb2d9c3d2021-06-26 21:40:44 +01005589 req->flags |= REQ_F_POLLED;
Jens Axboed7718a92020-02-14 22:23:12 -07005590 ipt.pt._qproc = io_async_queue_proc;
Pavel Begunkov48dcd382021-08-15 10:40:18 +01005591 io_req_set_refcount(req);
Jens Axboed7718a92020-02-14 22:23:12 -07005592
5593 ret = __io_arm_poll_handler(req, &apoll->poll, &ipt, mask,
5594 io_async_wake);
Jens Axboe79ebeae2021-08-10 15:18:27 -06005595 spin_unlock(&ctx->completion_lock);
Hao Xu41a51692021-08-12 15:47:02 +08005596 if (ret || ipt.error)
5597 return ret ? IO_APOLL_READY : IO_APOLL_ABORTED;
5598
Olivier Langlois236daeae2021-05-31 02:36:37 -04005599 trace_io_uring_poll_arm(ctx, req, req->opcode, req->user_data,
5600 mask, apoll->poll.events);
Olivier Langlois59b735a2021-06-22 05:17:39 -07005601 return IO_APOLL_OK;
Jens Axboed7718a92020-02-14 22:23:12 -07005602}
5603
5604static bool __io_poll_remove_one(struct io_kiocb *req,
Jens Axboeb2e720a2021-03-31 09:03:03 -06005605 struct io_poll_iocb *poll, bool do_cancel)
Pavel Begunkove07785b2021-04-01 15:43:57 +01005606 __must_hold(&req->ctx->completion_lock)
Jens Axboed7718a92020-02-14 22:23:12 -07005607{
Jens Axboeb41e9852020-02-17 09:52:41 -07005608 bool do_complete = false;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005609
Jens Axboe50826202021-02-23 09:02:26 -07005610 if (!poll->head)
5611 return false;
Jens Axboe79ebeae2021-08-10 15:18:27 -06005612 spin_lock_irq(&poll->head->lock);
Jens Axboeb2e720a2021-03-31 09:03:03 -06005613 if (do_cancel)
5614 WRITE_ONCE(poll->canceled, true);
Jens Axboe392edb42019-12-09 17:52:20 -07005615 if (!list_empty(&poll->wait.entry)) {
5616 list_del_init(&poll->wait.entry);
Jens Axboeb41e9852020-02-17 09:52:41 -07005617 do_complete = true;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005618 }
Jens Axboe79ebeae2021-08-10 15:18:27 -06005619 spin_unlock_irq(&poll->head->lock);
Jens Axboe3bfa5bc2020-05-17 13:54:12 -06005620 hash_del(&req->hash_node);
Jens Axboed7718a92020-02-14 22:23:12 -07005621 return do_complete;
5622}
5623
Pavel Begunkov5d709042021-08-09 20:18:13 +01005624static bool io_poll_remove_one(struct io_kiocb *req)
Pavel Begunkove07785b2021-04-01 15:43:57 +01005625 __must_hold(&req->ctx->completion_lock)
Jens Axboed7718a92020-02-14 22:23:12 -07005626{
5627 bool do_complete;
5628
Jens Axboed4e7cd32020-08-15 11:44:50 -07005629 io_poll_remove_double(req);
Pavel Begunkove31001a2021-04-13 02:58:43 +01005630 do_complete = __io_poll_remove_one(req, io_poll_get_single(req), true);
Jens Axboed4e7cd32020-08-15 11:44:50 -07005631
Jens Axboeb41e9852020-02-17 09:52:41 -07005632 if (do_complete) {
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01005633 io_cqring_fill_event(req->ctx, req->user_data, -ECANCELED, 0);
Jens Axboeb41e9852020-02-17 09:52:41 -07005634 io_commit_cqring(req->ctx);
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01005635 req_set_fail(req);
Pavel Begunkov91c2f692021-08-11 19:28:28 +01005636 io_put_req_deferred(req);
Pavel Begunkov5d709042021-08-09 20:18:13 +01005637 }
Jens Axboeb41e9852020-02-17 09:52:41 -07005638 return do_complete;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005639}
5640
Jens Axboe76e1b642020-09-26 15:05:03 -06005641/*
5642 * Returns true if we found and killed one or more poll requests
5643 */
Pavel Begunkov6b819282020-11-06 13:00:25 +00005644static bool io_poll_remove_all(struct io_ring_ctx *ctx, struct task_struct *tsk,
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01005645 bool cancel_all)
Jens Axboe221c5eb2019-01-17 09:41:58 -07005646{
Jens Axboe78076bb2019-12-04 19:56:40 -07005647 struct hlist_node *tmp;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005648 struct io_kiocb *req;
Jens Axboe8e2e1fa2020-04-13 17:05:14 -06005649 int posted = 0, i;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005650
Jens Axboe79ebeae2021-08-10 15:18:27 -06005651 spin_lock(&ctx->completion_lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07005652 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
5653 struct hlist_head *list;
5654
5655 list = &ctx->cancel_hash[i];
Jens Axboef3606e32020-09-22 08:18:24 -06005656 hlist_for_each_entry_safe(req, tmp, list, hash_node) {
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01005657 if (io_match_task(req, tsk, cancel_all))
Jens Axboef3606e32020-09-22 08:18:24 -06005658 posted += io_poll_remove_one(req);
5659 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07005660 }
Jens Axboe79ebeae2021-08-10 15:18:27 -06005661 spin_unlock(&ctx->completion_lock);
Jens Axboeb41e9852020-02-17 09:52:41 -07005662
Jens Axboe8e2e1fa2020-04-13 17:05:14 -06005663 if (posted)
5664 io_cqring_ev_posted(ctx);
Jens Axboe76e1b642020-09-26 15:05:03 -06005665
5666 return posted != 0;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005667}
5668
Pavel Begunkov9ba5fac2021-04-14 13:38:35 +01005669static struct io_kiocb *io_poll_find(struct io_ring_ctx *ctx, __u64 sqe_addr,
5670 bool poll_only)
Pavel Begunkove07785b2021-04-01 15:43:57 +01005671 __must_hold(&ctx->completion_lock)
Jens Axboe47f46762019-11-09 17:43:02 -07005672{
Jens Axboe78076bb2019-12-04 19:56:40 -07005673 struct hlist_head *list;
Jens Axboe47f46762019-11-09 17:43:02 -07005674 struct io_kiocb *req;
5675
Jens Axboe78076bb2019-12-04 19:56:40 -07005676 list = &ctx->cancel_hash[hash_long(sqe_addr, ctx->cancel_hash_bits)];
5677 hlist_for_each_entry(req, list, hash_node) {
Jens Axboeb41e9852020-02-17 09:52:41 -07005678 if (sqe_addr != req->user_data)
5679 continue;
Pavel Begunkov9ba5fac2021-04-14 13:38:35 +01005680 if (poll_only && req->opcode != IORING_OP_POLL_ADD)
5681 continue;
Jens Axboeb2cb8052021-03-17 08:17:19 -06005682 return req;
Jens Axboe47f46762019-11-09 17:43:02 -07005683 }
Jens Axboeb2cb8052021-03-17 08:17:19 -06005684 return NULL;
Jens Axboe47f46762019-11-09 17:43:02 -07005685}
5686
Pavel Begunkov9ba5fac2021-04-14 13:38:35 +01005687static int io_poll_cancel(struct io_ring_ctx *ctx, __u64 sqe_addr,
5688 bool poll_only)
Pavel Begunkove07785b2021-04-01 15:43:57 +01005689 __must_hold(&ctx->completion_lock)
Jens Axboeb2cb8052021-03-17 08:17:19 -06005690{
5691 struct io_kiocb *req;
5692
Pavel Begunkov9ba5fac2021-04-14 13:38:35 +01005693 req = io_poll_find(ctx, sqe_addr, poll_only);
Jens Axboeb2cb8052021-03-17 08:17:19 -06005694 if (!req)
5695 return -ENOENT;
5696 if (io_poll_remove_one(req))
5697 return 0;
5698
5699 return -EALREADY;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005700}
5701
Pavel Begunkov9096af32021-04-14 13:38:36 +01005702static __poll_t io_poll_parse_events(const struct io_uring_sqe *sqe,
5703 unsigned int flags)
5704{
5705 u32 events;
5706
5707 events = READ_ONCE(sqe->poll32_events);
5708#ifdef __BIG_ENDIAN
5709 events = swahw32(events);
5710#endif
5711 if (!(flags & IORING_POLL_ADD_MULTI))
5712 events |= EPOLLONESHOT;
5713 return demangle_poll(events) | (events & (EPOLLEXCLUSIVE|EPOLLONESHOT));
5714}
5715
Pavel Begunkovc5de0032021-04-14 13:38:37 +01005716static int io_poll_update_prep(struct io_kiocb *req,
Jens Axboe3529d8c2019-12-19 18:24:38 -07005717 const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07005718{
Pavel Begunkovc5de0032021-04-14 13:38:37 +01005719 struct io_poll_update *upd = &req->poll_update;
5720 u32 flags;
5721
Jens Axboe221c5eb2019-01-17 09:41:58 -07005722 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
5723 return -EINVAL;
Pavel Begunkov26578cd2021-08-20 10:36:37 +01005724 if (sqe->ioprio || sqe->buf_index || sqe->splice_fd_in)
Pavel Begunkovc5de0032021-04-14 13:38:37 +01005725 return -EINVAL;
5726 flags = READ_ONCE(sqe->len);
5727 if (flags & ~(IORING_POLL_UPDATE_EVENTS | IORING_POLL_UPDATE_USER_DATA |
5728 IORING_POLL_ADD_MULTI))
5729 return -EINVAL;
5730 /* meaningless without update */
5731 if (flags == IORING_POLL_ADD_MULTI)
Jens Axboe221c5eb2019-01-17 09:41:58 -07005732 return -EINVAL;
5733
Pavel Begunkovc5de0032021-04-14 13:38:37 +01005734 upd->old_user_data = READ_ONCE(sqe->addr);
5735 upd->update_events = flags & IORING_POLL_UPDATE_EVENTS;
5736 upd->update_user_data = flags & IORING_POLL_UPDATE_USER_DATA;
Jens Axboe0969e782019-12-17 18:40:57 -07005737
Pavel Begunkovc5de0032021-04-14 13:38:37 +01005738 upd->new_user_data = READ_ONCE(sqe->off);
5739 if (!upd->update_user_data && upd->new_user_data)
5740 return -EINVAL;
5741 if (upd->update_events)
5742 upd->events = io_poll_parse_events(sqe, flags);
5743 else if (sqe->poll32_events)
5744 return -EINVAL;
Jens Axboe0969e782019-12-17 18:40:57 -07005745
Jens Axboe221c5eb2019-01-17 09:41:58 -07005746 return 0;
5747}
5748
Jens Axboe221c5eb2019-01-17 09:41:58 -07005749static int io_poll_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
5750 void *key)
5751{
Jens Axboec2f2eb72020-02-10 09:07:05 -07005752 struct io_kiocb *req = wait->private;
5753 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005754
Jens Axboed7718a92020-02-14 22:23:12 -07005755 return __io_async_wake(req, poll, key_to_poll(key), io_poll_task_func);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005756}
5757
Jens Axboe221c5eb2019-01-17 09:41:58 -07005758static void io_poll_queue_proc(struct file *file, struct wait_queue_head *head,
5759 struct poll_table_struct *p)
5760{
5761 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
5762
Jens Axboee8c2bc12020-08-15 18:44:09 -07005763 __io_queue_proc(&pt->req->poll, pt, head, (struct io_poll_iocb **) &pt->req->async_data);
Jens Axboeeac406c2019-11-14 12:09:58 -07005764}
5765
Jens Axboe3529d8c2019-12-19 18:24:38 -07005766static int io_poll_add_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07005767{
5768 struct io_poll_iocb *poll = &req->poll;
Pavel Begunkovc5de0032021-04-14 13:38:37 +01005769 u32 flags;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005770
5771 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
5772 return -EINVAL;
Pavel Begunkovc5de0032021-04-14 13:38:37 +01005773 if (sqe->ioprio || sqe->buf_index || sqe->off || sqe->addr)
Jens Axboe88e41cf2021-02-22 22:08:01 -07005774 return -EINVAL;
5775 flags = READ_ONCE(sqe->len);
Pavel Begunkovc5de0032021-04-14 13:38:37 +01005776 if (flags & ~IORING_POLL_ADD_MULTI)
Jens Axboe221c5eb2019-01-17 09:41:58 -07005777 return -EINVAL;
5778
Pavel Begunkov48dcd382021-08-15 10:40:18 +01005779 io_req_set_refcount(req);
Pavel Begunkovc5de0032021-04-14 13:38:37 +01005780 poll->events = io_poll_parse_events(sqe, flags);
Jens Axboe0969e782019-12-17 18:40:57 -07005781 return 0;
5782}
5783
Pavel Begunkov61e98202021-02-10 00:03:08 +00005784static int io_poll_add(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe0969e782019-12-17 18:40:57 -07005785{
5786 struct io_poll_iocb *poll = &req->poll;
5787 struct io_ring_ctx *ctx = req->ctx;
5788 struct io_poll_table ipt;
Jens Axboe0969e782019-12-17 18:40:57 -07005789 __poll_t mask;
Hao Xu5b7aa382021-09-22 18:12:38 +08005790 bool done;
Jens Axboe0969e782019-12-17 18:40:57 -07005791
Jens Axboed7718a92020-02-14 22:23:12 -07005792 ipt.pt._qproc = io_poll_queue_proc;
Jens Axboe36703242019-07-25 10:20:18 -06005793
Jens Axboed7718a92020-02-14 22:23:12 -07005794 mask = __io_arm_poll_handler(req, &req->poll, &ipt, poll->events,
5795 io_poll_wake);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005796
Jens Axboe8c838782019-03-12 15:48:16 -06005797 if (mask) { /* no async, we'd stolen it */
Jens Axboe8c838782019-03-12 15:48:16 -06005798 ipt.error = 0;
Hao Xu5b7aa382021-09-22 18:12:38 +08005799 done = io_poll_complete(req, mask);
Jens Axboe8c838782019-03-12 15:48:16 -06005800 }
Jens Axboe79ebeae2021-08-10 15:18:27 -06005801 spin_unlock(&ctx->completion_lock);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005802
Jens Axboe8c838782019-03-12 15:48:16 -06005803 if (mask) {
5804 io_cqring_ev_posted(ctx);
Hao Xu5b7aa382021-09-22 18:12:38 +08005805 if (done)
Jens Axboe88e41cf2021-02-22 22:08:01 -07005806 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005807 }
Jens Axboe8c838782019-03-12 15:48:16 -06005808 return ipt.error;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005809}
5810
Pavel Begunkovc5de0032021-04-14 13:38:37 +01005811static int io_poll_update(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboeb69de282021-03-17 08:37:41 -06005812{
5813 struct io_ring_ctx *ctx = req->ctx;
5814 struct io_kiocb *preq;
Jens Axboecb3b200e2021-04-06 09:49:31 -06005815 bool completing;
Jens Axboeb69de282021-03-17 08:37:41 -06005816 int ret;
5817
Jens Axboe79ebeae2021-08-10 15:18:27 -06005818 spin_lock(&ctx->completion_lock);
Pavel Begunkov9ba5fac2021-04-14 13:38:35 +01005819 preq = io_poll_find(ctx, req->poll_update.old_user_data, true);
Jens Axboeb69de282021-03-17 08:37:41 -06005820 if (!preq) {
5821 ret = -ENOENT;
5822 goto err;
Jens Axboeb69de282021-03-17 08:37:41 -06005823 }
Jens Axboecb3b200e2021-04-06 09:49:31 -06005824
Pavel Begunkovc5de0032021-04-14 13:38:37 +01005825 if (!req->poll_update.update_events && !req->poll_update.update_user_data) {
5826 completing = true;
5827 ret = io_poll_remove_one(preq) ? 0 : -EALREADY;
5828 goto err;
5829 }
5830
Jens Axboecb3b200e2021-04-06 09:49:31 -06005831 /*
5832 * Don't allow racy completion with singleshot, as we cannot safely
5833 * update those. For multishot, if we're racing with completion, just
5834 * let completion re-add it.
5835 */
5836 completing = !__io_poll_remove_one(preq, &preq->poll, false);
5837 if (completing && (preq->poll.events & EPOLLONESHOT)) {
5838 ret = -EALREADY;
5839 goto err;
Jens Axboeb69de282021-03-17 08:37:41 -06005840 }
5841 /* we now have a detached poll request. reissue. */
5842 ret = 0;
5843err:
Jens Axboeb69de282021-03-17 08:37:41 -06005844 if (ret < 0) {
Jens Axboe79ebeae2021-08-10 15:18:27 -06005845 spin_unlock(&ctx->completion_lock);
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01005846 req_set_fail(req);
Jens Axboeb69de282021-03-17 08:37:41 -06005847 io_req_complete(req, ret);
5848 return 0;
5849 }
5850 /* only mask one event flags, keep behavior flags */
Pavel Begunkov9d805892021-04-13 02:58:40 +01005851 if (req->poll_update.update_events) {
Jens Axboeb69de282021-03-17 08:37:41 -06005852 preq->poll.events &= ~0xffff;
Pavel Begunkov9d805892021-04-13 02:58:40 +01005853 preq->poll.events |= req->poll_update.events & 0xffff;
Jens Axboeb69de282021-03-17 08:37:41 -06005854 preq->poll.events |= IO_POLL_UNMASK;
5855 }
Pavel Begunkov9d805892021-04-13 02:58:40 +01005856 if (req->poll_update.update_user_data)
5857 preq->user_data = req->poll_update.new_user_data;
Jens Axboe79ebeae2021-08-10 15:18:27 -06005858 spin_unlock(&ctx->completion_lock);
Jens Axboecb3b200e2021-04-06 09:49:31 -06005859
Jens Axboeb69de282021-03-17 08:37:41 -06005860 /* complete update request, we're done with it */
5861 io_req_complete(req, ret);
5862
Jens Axboecb3b200e2021-04-06 09:49:31 -06005863 if (!completing) {
Pavel Begunkovc5de0032021-04-14 13:38:37 +01005864 ret = io_poll_add(preq, issue_flags);
Jens Axboecb3b200e2021-04-06 09:49:31 -06005865 if (ret < 0) {
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01005866 req_set_fail(preq);
Jens Axboecb3b200e2021-04-06 09:49:31 -06005867 io_req_complete(preq, ret);
5868 }
Jens Axboeb69de282021-03-17 08:37:41 -06005869 }
5870 return 0;
5871}
5872
Pavel Begunkovf237c302021-08-18 12:42:46 +01005873static void io_req_task_timeout(struct io_kiocb *req, bool *locked)
Jens Axboe89850fc2021-08-10 15:11:51 -06005874{
Jens Axboe89850fc2021-08-10 15:11:51 -06005875 req_set_fail(req);
Pavel Begunkov505657b2021-08-17 20:28:09 +01005876 io_req_complete_post(req, -ETIME, 0);
Jens Axboe89850fc2021-08-10 15:11:51 -06005877}
5878
Jens Axboe5262f562019-09-17 12:26:57 -06005879static enum hrtimer_restart io_timeout_fn(struct hrtimer *timer)
5880{
Jens Axboead8a48a2019-11-15 08:49:11 -07005881 struct io_timeout_data *data = container_of(timer,
5882 struct io_timeout_data, timer);
5883 struct io_kiocb *req = data->req;
5884 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5262f562019-09-17 12:26:57 -06005885 unsigned long flags;
5886
Jens Axboe89850fc2021-08-10 15:11:51 -06005887 spin_lock_irqsave(&ctx->timeout_lock, flags);
Pavel Begunkova71976f2020-10-10 18:34:11 +01005888 list_del_init(&req->timeout.list);
Pavel Begunkov01cec8c2020-07-30 18:43:50 +03005889 atomic_set(&req->ctx->cq_timeouts,
5890 atomic_read(&req->ctx->cq_timeouts) + 1);
Jens Axboe89850fc2021-08-10 15:11:51 -06005891 spin_unlock_irqrestore(&ctx->timeout_lock, flags);
Pavel Begunkov01cec8c2020-07-30 18:43:50 +03005892
Jens Axboe89850fc2021-08-10 15:11:51 -06005893 req->io_task_work.func = io_req_task_timeout;
5894 io_req_task_work_add(req);
Jens Axboe5262f562019-09-17 12:26:57 -06005895 return HRTIMER_NORESTART;
5896}
5897
Pavel Begunkovfbd15842020-11-30 19:11:15 +00005898static struct io_kiocb *io_timeout_extract(struct io_ring_ctx *ctx,
5899 __u64 user_data)
Jens Axboe89850fc2021-08-10 15:11:51 -06005900 __must_hold(&ctx->timeout_lock)
Jens Axboe47f46762019-11-09 17:43:02 -07005901{
Pavel Begunkovfbd15842020-11-30 19:11:15 +00005902 struct io_timeout_data *io;
Jens Axboef254ac02020-08-12 17:33:30 -06005903 struct io_kiocb *req;
Pavel Begunkovfd9c7bc2021-04-13 02:58:42 +01005904 bool found = false;
Jens Axboef254ac02020-08-12 17:33:30 -06005905
5906 list_for_each_entry(req, &ctx->timeout_list, timeout.list) {
Pavel Begunkovfd9c7bc2021-04-13 02:58:42 +01005907 found = user_data == req->user_data;
5908 if (found)
Jens Axboef254ac02020-08-12 17:33:30 -06005909 break;
Jens Axboef254ac02020-08-12 17:33:30 -06005910 }
Pavel Begunkovfd9c7bc2021-04-13 02:58:42 +01005911 if (!found)
5912 return ERR_PTR(-ENOENT);
Jens Axboef254ac02020-08-12 17:33:30 -06005913
Pavel Begunkovfbd15842020-11-30 19:11:15 +00005914 io = req->async_data;
Pavel Begunkovfd9c7bc2021-04-13 02:58:42 +01005915 if (hrtimer_try_to_cancel(&io->timer) == -1)
Pavel Begunkovfbd15842020-11-30 19:11:15 +00005916 return ERR_PTR(-EALREADY);
5917 list_del_init(&req->timeout.list);
5918 return req;
5919}
5920
5921static int io_timeout_cancel(struct io_ring_ctx *ctx, __u64 user_data)
Pavel Begunkovec3c3d02021-08-18 10:50:52 +01005922 __must_hold(&ctx->completion_lock)
Jens Axboe89850fc2021-08-10 15:11:51 -06005923 __must_hold(&ctx->timeout_lock)
Pavel Begunkovfbd15842020-11-30 19:11:15 +00005924{
5925 struct io_kiocb *req = io_timeout_extract(ctx, user_data);
5926
5927 if (IS_ERR(req))
5928 return PTR_ERR(req);
5929
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01005930 req_set_fail(req);
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01005931 io_cqring_fill_event(ctx, req->user_data, -ECANCELED, 0);
Pavel Begunkov91c2f692021-08-11 19:28:28 +01005932 io_put_req_deferred(req);
Pavel Begunkovfbd15842020-11-30 19:11:15 +00005933 return 0;
Jens Axboef254ac02020-08-12 17:33:30 -06005934}
5935
Jens Axboe50c1df22021-08-27 17:11:06 -06005936static clockid_t io_timeout_get_clock(struct io_timeout_data *data)
5937{
5938 switch (data->flags & IORING_TIMEOUT_CLOCK_MASK) {
5939 case IORING_TIMEOUT_BOOTTIME:
5940 return CLOCK_BOOTTIME;
5941 case IORING_TIMEOUT_REALTIME:
5942 return CLOCK_REALTIME;
5943 default:
5944 /* can't happen, vetted at prep time */
5945 WARN_ON_ONCE(1);
5946 fallthrough;
5947 case 0:
5948 return CLOCK_MONOTONIC;
5949 }
5950}
5951
Pavel Begunkovf1042b62021-08-28 19:54:39 -06005952static int io_linked_timeout_update(struct io_ring_ctx *ctx, __u64 user_data,
5953 struct timespec64 *ts, enum hrtimer_mode mode)
5954 __must_hold(&ctx->timeout_lock)
5955{
5956 struct io_timeout_data *io;
5957 struct io_kiocb *req;
5958 bool found = false;
5959
5960 list_for_each_entry(req, &ctx->ltimeout_list, timeout.list) {
5961 found = user_data == req->user_data;
5962 if (found)
5963 break;
5964 }
5965 if (!found)
5966 return -ENOENT;
5967
5968 io = req->async_data;
5969 if (hrtimer_try_to_cancel(&io->timer) == -1)
5970 return -EALREADY;
5971 hrtimer_init(&io->timer, io_timeout_get_clock(io), mode);
5972 io->timer.function = io_link_timeout_fn;
5973 hrtimer_start(&io->timer, timespec64_to_ktime(*ts), mode);
5974 return 0;
5975}
5976
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +00005977static int io_timeout_update(struct io_ring_ctx *ctx, __u64 user_data,
5978 struct timespec64 *ts, enum hrtimer_mode mode)
Jens Axboe89850fc2021-08-10 15:11:51 -06005979 __must_hold(&ctx->timeout_lock)
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +00005980{
5981 struct io_kiocb *req = io_timeout_extract(ctx, user_data);
5982 struct io_timeout_data *data;
5983
5984 if (IS_ERR(req))
5985 return PTR_ERR(req);
5986
5987 req->timeout.off = 0; /* noseq */
5988 data = req->async_data;
5989 list_add_tail(&req->timeout.list, &ctx->timeout_list);
Jens Axboe50c1df22021-08-27 17:11:06 -06005990 hrtimer_init(&data->timer, io_timeout_get_clock(data), mode);
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +00005991 data->timer.function = io_timeout_fn;
5992 hrtimer_start(&data->timer, timespec64_to_ktime(*ts), mode);
5993 return 0;
Jens Axboe47f46762019-11-09 17:43:02 -07005994}
5995
Jens Axboe3529d8c2019-12-19 18:24:38 -07005996static int io_timeout_remove_prep(struct io_kiocb *req,
5997 const struct io_uring_sqe *sqe)
Jens Axboeb29472e2019-12-17 18:50:29 -07005998{
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +00005999 struct io_timeout_rem *tr = &req->timeout_rem;
6000
Jens Axboeb29472e2019-12-17 18:50:29 -07006001 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
6002 return -EINVAL;
Daniele Albano61710e42020-07-18 14:15:16 -06006003 if (unlikely(req->flags & (REQ_F_FIXED_FILE | REQ_F_BUFFER_SELECT)))
6004 return -EINVAL;
Pavel Begunkov26578cd2021-08-20 10:36:37 +01006005 if (sqe->ioprio || sqe->buf_index || sqe->len || sqe->splice_fd_in)
Jens Axboeb29472e2019-12-17 18:50:29 -07006006 return -EINVAL;
6007
Pavel Begunkovf1042b62021-08-28 19:54:39 -06006008 tr->ltimeout = false;
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +00006009 tr->addr = READ_ONCE(sqe->addr);
6010 tr->flags = READ_ONCE(sqe->timeout_flags);
Pavel Begunkovf1042b62021-08-28 19:54:39 -06006011 if (tr->flags & IORING_TIMEOUT_UPDATE_MASK) {
6012 if (hweight32(tr->flags & IORING_TIMEOUT_CLOCK_MASK) > 1)
6013 return -EINVAL;
6014 if (tr->flags & IORING_LINK_TIMEOUT_UPDATE)
6015 tr->ltimeout = true;
6016 if (tr->flags & ~(IORING_TIMEOUT_UPDATE_MASK|IORING_TIMEOUT_ABS))
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +00006017 return -EINVAL;
6018 if (get_timespec64(&tr->ts, u64_to_user_ptr(sqe->addr2)))
6019 return -EFAULT;
6020 } else if (tr->flags) {
6021 /* timeout removal doesn't support flags */
6022 return -EINVAL;
6023 }
6024
Jens Axboeb29472e2019-12-17 18:50:29 -07006025 return 0;
6026}
6027
Pavel Begunkov8662dae2021-01-19 13:32:44 +00006028static inline enum hrtimer_mode io_translate_timeout_mode(unsigned int flags)
6029{
6030 return (flags & IORING_TIMEOUT_ABS) ? HRTIMER_MODE_ABS
6031 : HRTIMER_MODE_REL;
6032}
6033
Jens Axboe11365042019-10-16 09:08:32 -06006034/*
6035 * Remove or update an existing timeout command
6036 */
Pavel Begunkov61e98202021-02-10 00:03:08 +00006037static int io_timeout_remove(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe11365042019-10-16 09:08:32 -06006038{
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +00006039 struct io_timeout_rem *tr = &req->timeout_rem;
Jens Axboe11365042019-10-16 09:08:32 -06006040 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe47f46762019-11-09 17:43:02 -07006041 int ret;
Jens Axboe11365042019-10-16 09:08:32 -06006042
Pavel Begunkovec3c3d02021-08-18 10:50:52 +01006043 if (!(req->timeout_rem.flags & IORING_TIMEOUT_UPDATE)) {
6044 spin_lock(&ctx->completion_lock);
6045 spin_lock_irq(&ctx->timeout_lock);
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +00006046 ret = io_timeout_cancel(ctx, tr->addr);
Pavel Begunkovec3c3d02021-08-18 10:50:52 +01006047 spin_unlock_irq(&ctx->timeout_lock);
6048 spin_unlock(&ctx->completion_lock);
6049 } else {
Pavel Begunkovf1042b62021-08-28 19:54:39 -06006050 enum hrtimer_mode mode = io_translate_timeout_mode(tr->flags);
6051
Pavel Begunkovec3c3d02021-08-18 10:50:52 +01006052 spin_lock_irq(&ctx->timeout_lock);
Pavel Begunkovf1042b62021-08-28 19:54:39 -06006053 if (tr->ltimeout)
6054 ret = io_linked_timeout_update(ctx, tr->addr, &tr->ts, mode);
6055 else
6056 ret = io_timeout_update(ctx, tr->addr, &tr->ts, mode);
Pavel Begunkovec3c3d02021-08-18 10:50:52 +01006057 spin_unlock_irq(&ctx->timeout_lock);
6058 }
Jens Axboe11365042019-10-16 09:08:32 -06006059
Jens Axboe4e88d6e2019-12-07 20:59:47 -07006060 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01006061 req_set_fail(req);
Pavel Begunkov505657b2021-08-17 20:28:09 +01006062 io_req_complete_post(req, ret, 0);
Jens Axboe11365042019-10-16 09:08:32 -06006063 return 0;
Jens Axboe5262f562019-09-17 12:26:57 -06006064}
6065
Jens Axboe3529d8c2019-12-19 18:24:38 -07006066static int io_timeout_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboe2d283902019-12-04 11:08:05 -07006067 bool is_timeout_link)
Jens Axboe5262f562019-09-17 12:26:57 -06006068{
Jens Axboead8a48a2019-11-15 08:49:11 -07006069 struct io_timeout_data *data;
Jens Axboea41525a2019-10-15 16:48:15 -06006070 unsigned flags;
Pavel Begunkov56080b02020-05-26 20:34:04 +03006071 u32 off = READ_ONCE(sqe->off);
Jens Axboe5262f562019-09-17 12:26:57 -06006072
Jens Axboead8a48a2019-11-15 08:49:11 -07006073 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe5262f562019-09-17 12:26:57 -06006074 return -EINVAL;
Pavel Begunkov26578cd2021-08-20 10:36:37 +01006075 if (sqe->ioprio || sqe->buf_index || sqe->len != 1 ||
6076 sqe->splice_fd_in)
Jens Axboea41525a2019-10-15 16:48:15 -06006077 return -EINVAL;
Pavel Begunkov56080b02020-05-26 20:34:04 +03006078 if (off && is_timeout_link)
Jens Axboe2d283902019-12-04 11:08:05 -07006079 return -EINVAL;
Jens Axboea41525a2019-10-15 16:48:15 -06006080 flags = READ_ONCE(sqe->timeout_flags);
Jens Axboe50c1df22021-08-27 17:11:06 -06006081 if (flags & ~(IORING_TIMEOUT_ABS | IORING_TIMEOUT_CLOCK_MASK))
6082 return -EINVAL;
6083 /* more than one clock specified is invalid, obviously */
6084 if (hweight32(flags & IORING_TIMEOUT_CLOCK_MASK) > 1)
Jens Axboe5262f562019-09-17 12:26:57 -06006085 return -EINVAL;
Arnd Bergmannbdf20072019-10-01 09:53:29 -06006086
Pavel Begunkovef9dd632021-08-28 19:54:38 -06006087 INIT_LIST_HEAD(&req->timeout.list);
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03006088 req->timeout.off = off;
Pavel Begunkovf18ee4c2021-06-14 23:37:25 +01006089 if (unlikely(off && !req->ctx->off_timeout_used))
6090 req->ctx->off_timeout_used = true;
Jens Axboe26a61672019-12-20 09:02:01 -07006091
Jens Axboee8c2bc12020-08-15 18:44:09 -07006092 if (!req->async_data && io_alloc_async_data(req))
Jens Axboe26a61672019-12-20 09:02:01 -07006093 return -ENOMEM;
6094
Jens Axboee8c2bc12020-08-15 18:44:09 -07006095 data = req->async_data;
Jens Axboead8a48a2019-11-15 08:49:11 -07006096 data->req = req;
Jens Axboe50c1df22021-08-27 17:11:06 -06006097 data->flags = flags;
Jens Axboead8a48a2019-11-15 08:49:11 -07006098
6099 if (get_timespec64(&data->ts, u64_to_user_ptr(sqe->addr)))
Jens Axboe5262f562019-09-17 12:26:57 -06006100 return -EFAULT;
6101
Pavel Begunkov8662dae2021-01-19 13:32:44 +00006102 data->mode = io_translate_timeout_mode(flags);
Jens Axboe50c1df22021-08-27 17:11:06 -06006103 hrtimer_init(&data->timer, io_timeout_get_clock(data), data->mode);
Pavel Begunkovb97e7362021-08-15 10:40:23 +01006104
6105 if (is_timeout_link) {
6106 struct io_submit_link *link = &req->ctx->submit_state.link;
6107
6108 if (!link->head)
6109 return -EINVAL;
6110 if (link->last->opcode == IORING_OP_LINK_TIMEOUT)
6111 return -EINVAL;
Pavel Begunkov4d13d1a2021-08-15 10:40:24 +01006112 req->timeout.head = link->last;
6113 link->last->flags |= REQ_F_ARM_LTIMEOUT;
Pavel Begunkovb97e7362021-08-15 10:40:23 +01006114 }
Jens Axboead8a48a2019-11-15 08:49:11 -07006115 return 0;
6116}
6117
Pavel Begunkov61e98202021-02-10 00:03:08 +00006118static int io_timeout(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboead8a48a2019-11-15 08:49:11 -07006119{
Jens Axboead8a48a2019-11-15 08:49:11 -07006120 struct io_ring_ctx *ctx = req->ctx;
Jens Axboee8c2bc12020-08-15 18:44:09 -07006121 struct io_timeout_data *data = req->async_data;
Jens Axboead8a48a2019-11-15 08:49:11 -07006122 struct list_head *entry;
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03006123 u32 tail, off = req->timeout.off;
Jens Axboead8a48a2019-11-15 08:49:11 -07006124
Jens Axboe89850fc2021-08-10 15:11:51 -06006125 spin_lock_irq(&ctx->timeout_lock);
Jens Axboe93bd25b2019-11-11 23:34:31 -07006126
Jens Axboe5262f562019-09-17 12:26:57 -06006127 /*
6128 * sqe->off holds how many events that need to occur for this
Jens Axboe93bd25b2019-11-11 23:34:31 -07006129 * timeout event to be satisfied. If it isn't set, then this is
6130 * a pure timeout request, sequence isn't used.
Jens Axboe5262f562019-09-17 12:26:57 -06006131 */
Pavel Begunkov8eb7e2d2020-06-29 13:13:02 +03006132 if (io_is_timeout_noseq(req)) {
Jens Axboe93bd25b2019-11-11 23:34:31 -07006133 entry = ctx->timeout_list.prev;
6134 goto add;
6135 }
Jens Axboe5262f562019-09-17 12:26:57 -06006136
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03006137 tail = ctx->cached_cq_tail - atomic_read(&ctx->cq_timeouts);
6138 req->timeout.target_seq = tail + off;
Jens Axboe5262f562019-09-17 12:26:57 -06006139
Marcelo Diop-Gonzalezf0105052021-01-15 11:54:40 -05006140 /* Update the last seq here in case io_flush_timeouts() hasn't.
6141 * This is safe because ->completion_lock is held, and submissions
6142 * and completions are never mixed in the same ->completion_lock section.
6143 */
6144 ctx->cq_last_tm_flush = tail;
6145
Jens Axboe5262f562019-09-17 12:26:57 -06006146 /*
6147 * Insertion sort, ensuring the first entry in the list is always
6148 * the one we need first.
6149 */
Jens Axboe5262f562019-09-17 12:26:57 -06006150 list_for_each_prev(entry, &ctx->timeout_list) {
Pavel Begunkov135fcde2020-07-13 23:37:12 +03006151 struct io_kiocb *nxt = list_entry(entry, struct io_kiocb,
6152 timeout.list);
Jens Axboe5262f562019-09-17 12:26:57 -06006153
Pavel Begunkov8eb7e2d2020-06-29 13:13:02 +03006154 if (io_is_timeout_noseq(nxt))
Jens Axboe93bd25b2019-11-11 23:34:31 -07006155 continue;
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03006156 /* nxt.seq is behind @tail, otherwise would've been completed */
6157 if (off >= nxt->timeout.target_seq - tail)
Jens Axboe5262f562019-09-17 12:26:57 -06006158 break;
6159 }
Jens Axboe93bd25b2019-11-11 23:34:31 -07006160add:
Pavel Begunkov135fcde2020-07-13 23:37:12 +03006161 list_add(&req->timeout.list, entry);
Jens Axboead8a48a2019-11-15 08:49:11 -07006162 data->timer.function = io_timeout_fn;
6163 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts), data->mode);
Jens Axboe89850fc2021-08-10 15:11:51 -06006164 spin_unlock_irq(&ctx->timeout_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06006165 return 0;
6166}
6167
Pavel Begunkovf458dd842021-03-08 12:14:14 +00006168struct io_cancel_data {
6169 struct io_ring_ctx *ctx;
6170 u64 user_data;
6171};
6172
Jens Axboe62755e32019-10-28 21:49:21 -06006173static bool io_cancel_cb(struct io_wq_work *work, void *data)
Jens Axboede0617e2019-04-06 21:51:27 -06006174{
Jens Axboe62755e32019-10-28 21:49:21 -06006175 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Pavel Begunkovf458dd842021-03-08 12:14:14 +00006176 struct io_cancel_data *cd = data;
Jens Axboede0617e2019-04-06 21:51:27 -06006177
Pavel Begunkovf458dd842021-03-08 12:14:14 +00006178 return req->ctx == cd->ctx && req->user_data == cd->user_data;
Jens Axboe62755e32019-10-28 21:49:21 -06006179}
6180
Pavel Begunkovf458dd842021-03-08 12:14:14 +00006181static int io_async_cancel_one(struct io_uring_task *tctx, u64 user_data,
6182 struct io_ring_ctx *ctx)
Jens Axboe62755e32019-10-28 21:49:21 -06006183{
Pavel Begunkovf458dd842021-03-08 12:14:14 +00006184 struct io_cancel_data data = { .ctx = ctx, .user_data = user_data, };
Jens Axboe62755e32019-10-28 21:49:21 -06006185 enum io_wq_cancel cancel_ret;
Jens Axboe62755e32019-10-28 21:49:21 -06006186 int ret = 0;
6187
Pavel Begunkovf458dd842021-03-08 12:14:14 +00006188 if (!tctx || !tctx->io_wq)
Jens Axboe5aa75ed2021-02-16 12:56:50 -07006189 return -ENOENT;
6190
Pavel Begunkovf458dd842021-03-08 12:14:14 +00006191 cancel_ret = io_wq_cancel_cb(tctx->io_wq, io_cancel_cb, &data, false);
Jens Axboe62755e32019-10-28 21:49:21 -06006192 switch (cancel_ret) {
6193 case IO_WQ_CANCEL_OK:
6194 ret = 0;
6195 break;
6196 case IO_WQ_CANCEL_RUNNING:
6197 ret = -EALREADY;
6198 break;
6199 case IO_WQ_CANCEL_NOTFOUND:
6200 ret = -ENOENT;
6201 break;
6202 }
6203
Jens Axboee977d6d2019-11-05 12:39:45 -07006204 return ret;
6205}
6206
Pavel Begunkov8cb01fa2021-08-15 10:40:22 +01006207static int io_try_cancel_userdata(struct io_kiocb *req, u64 sqe_addr)
Jens Axboe47f46762019-11-09 17:43:02 -07006208{
Pavel Begunkov8cb01fa2021-08-15 10:40:22 +01006209 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe47f46762019-11-09 17:43:02 -07006210 int ret;
6211
Pavel Begunkovdadebc32021-08-23 13:30:44 +01006212 WARN_ON_ONCE(!io_wq_current_is_worker() && req->task != current);
Pavel Begunkov8cb01fa2021-08-15 10:40:22 +01006213
Pavel Begunkovf458dd842021-03-08 12:14:14 +00006214 ret = io_async_cancel_one(req->task->io_uring, sqe_addr, ctx);
Pavel Begunkovdf9727a2021-04-01 15:43:59 +01006215 if (ret != -ENOENT)
Pavel Begunkov8cb01fa2021-08-15 10:40:22 +01006216 return ret;
Pavel Begunkov505657b2021-08-17 20:28:09 +01006217
6218 spin_lock(&ctx->completion_lock);
Jens Axboe79ebeae2021-08-10 15:18:27 -06006219 spin_lock_irq(&ctx->timeout_lock);
Jens Axboe47f46762019-11-09 17:43:02 -07006220 ret = io_timeout_cancel(ctx, sqe_addr);
Jens Axboe79ebeae2021-08-10 15:18:27 -06006221 spin_unlock_irq(&ctx->timeout_lock);
Jens Axboe47f46762019-11-09 17:43:02 -07006222 if (ret != -ENOENT)
Pavel Begunkov505657b2021-08-17 20:28:09 +01006223 goto out;
6224 ret = io_poll_cancel(ctx, sqe_addr, false);
6225out:
6226 spin_unlock(&ctx->completion_lock);
6227 return ret;
Jens Axboe47f46762019-11-09 17:43:02 -07006228}
6229
Jens Axboe3529d8c2019-12-19 18:24:38 -07006230static int io_async_cancel_prep(struct io_kiocb *req,
6231 const struct io_uring_sqe *sqe)
Jens Axboee977d6d2019-11-05 12:39:45 -07006232{
Jens Axboefbf23842019-12-17 18:45:56 -07006233 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboee977d6d2019-11-05 12:39:45 -07006234 return -EINVAL;
Daniele Albano61710e42020-07-18 14:15:16 -06006235 if (unlikely(req->flags & (REQ_F_FIXED_FILE | REQ_F_BUFFER_SELECT)))
6236 return -EINVAL;
Pavel Begunkov26578cd2021-08-20 10:36:37 +01006237 if (sqe->ioprio || sqe->off || sqe->len || sqe->cancel_flags ||
6238 sqe->splice_fd_in)
Jens Axboee977d6d2019-11-05 12:39:45 -07006239 return -EINVAL;
6240
Jens Axboefbf23842019-12-17 18:45:56 -07006241 req->cancel.addr = READ_ONCE(sqe->addr);
6242 return 0;
6243}
6244
Pavel Begunkov61e98202021-02-10 00:03:08 +00006245static int io_async_cancel(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboefbf23842019-12-17 18:45:56 -07006246{
6247 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkov58f99372021-03-12 16:25:55 +00006248 u64 sqe_addr = req->cancel.addr;
6249 struct io_tctx_node *node;
6250 int ret;
Jens Axboefbf23842019-12-17 18:45:56 -07006251
Pavel Begunkov8cb01fa2021-08-15 10:40:22 +01006252 ret = io_try_cancel_userdata(req, sqe_addr);
Pavel Begunkov58f99372021-03-12 16:25:55 +00006253 if (ret != -ENOENT)
6254 goto done;
Pavel Begunkov58f99372021-03-12 16:25:55 +00006255
6256 /* slow path, try all io-wq's */
6257 io_ring_submit_lock(ctx, !(issue_flags & IO_URING_F_NONBLOCK));
6258 ret = -ENOENT;
6259 list_for_each_entry(node, &ctx->tctx_list, ctx_node) {
6260 struct io_uring_task *tctx = node->task->io_uring;
6261
Pavel Begunkov58f99372021-03-12 16:25:55 +00006262 ret = io_async_cancel_one(tctx, req->cancel.addr, ctx);
6263 if (ret != -ENOENT)
6264 break;
6265 }
6266 io_ring_submit_unlock(ctx, !(issue_flags & IO_URING_F_NONBLOCK));
Pavel Begunkov58f99372021-03-12 16:25:55 +00006267done:
Pavel Begunkov58f99372021-03-12 16:25:55 +00006268 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01006269 req_set_fail(req);
Pavel Begunkov505657b2021-08-17 20:28:09 +01006270 io_req_complete_post(req, ret, 0);
Jens Axboe62755e32019-10-28 21:49:21 -06006271 return 0;
6272}
6273
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00006274static int io_rsrc_update_prep(struct io_kiocb *req,
Jens Axboe05f3fb32019-12-09 11:22:50 -07006275 const struct io_uring_sqe *sqe)
6276{
Daniele Albano61710e42020-07-18 14:15:16 -06006277 if (unlikely(req->flags & (REQ_F_FIXED_FILE | REQ_F_BUFFER_SELECT)))
6278 return -EINVAL;
Pavel Begunkov26578cd2021-08-20 10:36:37 +01006279 if (sqe->ioprio || sqe->rw_flags || sqe->splice_fd_in)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006280 return -EINVAL;
6281
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00006282 req->rsrc_update.offset = READ_ONCE(sqe->off);
6283 req->rsrc_update.nr_args = READ_ONCE(sqe->len);
6284 if (!req->rsrc_update.nr_args)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006285 return -EINVAL;
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00006286 req->rsrc_update.arg = READ_ONCE(sqe->addr);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006287 return 0;
6288}
6289
Pavel Begunkov889fca72021-02-10 00:03:09 +00006290static int io_files_update(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006291{
6292 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovc3bdad02021-04-25 14:32:22 +01006293 struct io_uring_rsrc_update2 up;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006294 int ret;
6295
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00006296 up.offset = req->rsrc_update.offset;
6297 up.data = req->rsrc_update.arg;
Pavel Begunkovc3bdad02021-04-25 14:32:22 +01006298 up.nr = 0;
6299 up.tags = 0;
Colin Ian King615cee42021-04-26 10:47:35 +01006300 up.resv = 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006301
Jens Axboecdb31c22021-09-24 08:43:54 -06006302 io_ring_submit_lock(ctx, !(issue_flags & IO_URING_F_NONBLOCK));
Pavel Begunkovfdecb662021-04-25 14:32:20 +01006303 ret = __io_register_rsrc_update(ctx, IORING_RSRC_FILE,
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +01006304 &up, req->rsrc_update.nr_args);
Jens Axboecdb31c22021-09-24 08:43:54 -06006305 io_ring_submit_unlock(ctx, !(issue_flags & IO_URING_F_NONBLOCK));
Jens Axboe05f3fb32019-12-09 11:22:50 -07006306
6307 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01006308 req_set_fail(req);
Pavel Begunkov889fca72021-02-10 00:03:09 +00006309 __io_req_complete(req, issue_flags, ret, 0);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006310 return 0;
6311}
6312
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006313static int io_req_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07006314{
Jens Axboed625c6e2019-12-17 19:53:05 -07006315 switch (req->opcode) {
Jens Axboee7815732019-12-17 19:45:06 -07006316 case IORING_OP_NOP:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006317 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07006318 case IORING_OP_READV:
6319 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07006320 case IORING_OP_READ:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006321 return io_read_prep(req, sqe);
Jens Axboef67676d2019-12-02 11:03:47 -07006322 case IORING_OP_WRITEV:
6323 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07006324 case IORING_OP_WRITE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006325 return io_write_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07006326 case IORING_OP_POLL_ADD:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006327 return io_poll_add_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07006328 case IORING_OP_POLL_REMOVE:
Pavel Begunkovc5de0032021-04-14 13:38:37 +01006329 return io_poll_update_prep(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07006330 case IORING_OP_FSYNC:
Pavel Begunkov1155c762021-02-18 18:29:38 +00006331 return io_fsync_prep(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07006332 case IORING_OP_SYNC_FILE_RANGE:
Pavel Begunkov1155c762021-02-18 18:29:38 +00006333 return io_sfr_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07006334 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07006335 case IORING_OP_SEND:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006336 return io_sendmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07006337 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07006338 case IORING_OP_RECV:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006339 return io_recvmsg_prep(req, sqe);
Jens Axboef499a022019-12-02 16:28:46 -07006340 case IORING_OP_CONNECT:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006341 return io_connect_prep(req, sqe);
Jens Axboe2d283902019-12-04 11:08:05 -07006342 case IORING_OP_TIMEOUT:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006343 return io_timeout_prep(req, sqe, false);
Jens Axboeb29472e2019-12-17 18:50:29 -07006344 case IORING_OP_TIMEOUT_REMOVE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006345 return io_timeout_remove_prep(req, sqe);
Jens Axboefbf23842019-12-17 18:45:56 -07006346 case IORING_OP_ASYNC_CANCEL:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006347 return io_async_cancel_prep(req, sqe);
Jens Axboe2d283902019-12-04 11:08:05 -07006348 case IORING_OP_LINK_TIMEOUT:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006349 return io_timeout_prep(req, sqe, true);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07006350 case IORING_OP_ACCEPT:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006351 return io_accept_prep(req, sqe);
Jens Axboed63d1b52019-12-10 10:38:56 -07006352 case IORING_OP_FALLOCATE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006353 return io_fallocate_prep(req, sqe);
Jens Axboe15b71ab2019-12-11 11:20:36 -07006354 case IORING_OP_OPENAT:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006355 return io_openat_prep(req, sqe);
Jens Axboeb5dba592019-12-11 14:02:38 -07006356 case IORING_OP_CLOSE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006357 return io_close_prep(req, sqe);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006358 case IORING_OP_FILES_UPDATE:
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00006359 return io_rsrc_update_prep(req, sqe);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07006360 case IORING_OP_STATX:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006361 return io_statx_prep(req, sqe);
Jens Axboe4840e412019-12-25 22:03:45 -07006362 case IORING_OP_FADVISE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006363 return io_fadvise_prep(req, sqe);
Jens Axboec1ca7572019-12-25 22:18:28 -07006364 case IORING_OP_MADVISE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006365 return io_madvise_prep(req, sqe);
Jens Axboecebdb982020-01-08 17:59:24 -07006366 case IORING_OP_OPENAT2:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006367 return io_openat2_prep(req, sqe);
Jens Axboe3e4827b2020-01-08 15:18:09 -07006368 case IORING_OP_EPOLL_CTL:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006369 return io_epoll_ctl_prep(req, sqe);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03006370 case IORING_OP_SPLICE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006371 return io_splice_prep(req, sqe);
Jens Axboeddf0322d2020-02-23 16:41:33 -07006372 case IORING_OP_PROVIDE_BUFFERS:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006373 return io_provide_buffers_prep(req, sqe);
Jens Axboe067524e2020-03-02 16:32:28 -07006374 case IORING_OP_REMOVE_BUFFERS:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006375 return io_remove_buffers_prep(req, sqe);
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03006376 case IORING_OP_TEE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006377 return io_tee_prep(req, sqe);
Jens Axboe36f4fa62020-09-05 11:14:22 -06006378 case IORING_OP_SHUTDOWN:
6379 return io_shutdown_prep(req, sqe);
Jens Axboe80a261f2020-09-28 14:23:58 -06006380 case IORING_OP_RENAMEAT:
6381 return io_renameat_prep(req, sqe);
Jens Axboe14a11432020-09-28 14:27:37 -06006382 case IORING_OP_UNLINKAT:
6383 return io_unlinkat_prep(req, sqe);
Dmitry Kadasheve34a02d2021-07-08 13:34:45 +07006384 case IORING_OP_MKDIRAT:
6385 return io_mkdirat_prep(req, sqe);
Dmitry Kadashev7a8721f2021-07-08 13:34:46 +07006386 case IORING_OP_SYMLINKAT:
6387 return io_symlinkat_prep(req, sqe);
Dmitry Kadashevcf30da92021-07-08 13:34:47 +07006388 case IORING_OP_LINKAT:
6389 return io_linkat_prep(req, sqe);
Jens Axboef67676d2019-12-02 11:03:47 -07006390 }
6391
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006392 printk_once(KERN_WARNING "io_uring: unhandled opcode %d\n",
6393 req->opcode);
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01006394 return -EINVAL;
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006395}
6396
Pavel Begunkov93642ef2021-02-18 18:29:44 +00006397static int io_req_prep_async(struct io_kiocb *req)
Jens Axboedef596e2019-01-09 08:59:42 -07006398{
Pavel Begunkovb7e298d2021-02-28 22:35:19 +00006399 if (!io_op_defs[req->opcode].needs_async_setup)
6400 return 0;
6401 if (WARN_ON_ONCE(req->async_data))
6402 return -EFAULT;
6403 if (io_alloc_async_data(req))
6404 return -EAGAIN;
6405
Pavel Begunkov93642ef2021-02-18 18:29:44 +00006406 switch (req->opcode) {
6407 case IORING_OP_READV:
Pavel Begunkov93642ef2021-02-18 18:29:44 +00006408 return io_rw_prep_async(req, READ);
6409 case IORING_OP_WRITEV:
Pavel Begunkov93642ef2021-02-18 18:29:44 +00006410 return io_rw_prep_async(req, WRITE);
6411 case IORING_OP_SENDMSG:
Pavel Begunkov93642ef2021-02-18 18:29:44 +00006412 return io_sendmsg_prep_async(req);
6413 case IORING_OP_RECVMSG:
Pavel Begunkov93642ef2021-02-18 18:29:44 +00006414 return io_recvmsg_prep_async(req);
6415 case IORING_OP_CONNECT:
6416 return io_connect_prep_async(req);
6417 }
Pavel Begunkovb7e298d2021-02-28 22:35:19 +00006418 printk_once(KERN_WARNING "io_uring: prep_async() bad opcode %d\n",
6419 req->opcode);
6420 return -EFAULT;
Jens Axboedef596e2019-01-09 08:59:42 -07006421}
6422
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03006423static u32 io_get_sequence(struct io_kiocb *req)
6424{
Pavel Begunkova3dbdf52021-06-17 18:14:05 +01006425 u32 seq = req->ctx->cached_sq_head;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03006426
Pavel Begunkova3dbdf52021-06-17 18:14:05 +01006427 /* need original cached_sq_head, but it was increased for each req */
6428 io_for_each_link(req, req)
6429 seq--;
6430 return seq;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03006431}
6432
Pavel Begunkov76cc33d2021-06-14 23:37:30 +01006433static bool io_drain_req(struct io_kiocb *req)
Jens Axboedef596e2019-01-09 08:59:42 -07006434{
Pavel Begunkov3c199662021-06-15 16:47:57 +01006435 struct io_kiocb *pos;
Jens Axboedef596e2019-01-09 08:59:42 -07006436 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkov27dc8332020-07-13 23:37:14 +03006437 struct io_defer_entry *de;
Jens Axboedef596e2019-01-09 08:59:42 -07006438 int ret;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03006439 u32 seq;
Jens Axboedef596e2019-01-09 08:59:42 -07006440
Pavel Begunkovb8ce1b92021-08-31 14:13:11 +01006441 if (req->flags & REQ_F_FAIL) {
6442 io_req_complete_fail_submit(req);
6443 return true;
6444 }
6445
Pavel Begunkov3c199662021-06-15 16:47:57 +01006446 /*
6447 * If we need to drain a request in the middle of a link, drain the
6448 * head request and the next request/link after the current link.
6449 * Considering sequential execution of links, IOSQE_IO_DRAIN will be
6450 * maintained for every request of our link.
6451 */
6452 if (ctx->drain_next) {
6453 req->flags |= REQ_F_IO_DRAIN;
6454 ctx->drain_next = false;
6455 }
6456 /* not interested in head, start from the first linked */
6457 io_for_each_link(pos, req->link) {
6458 if (pos->flags & REQ_F_IO_DRAIN) {
6459 ctx->drain_next = true;
6460 req->flags |= REQ_F_IO_DRAIN;
6461 break;
6462 }
6463 }
6464
Jens Axboedef596e2019-01-09 08:59:42 -07006465 /* Still need defer if there is pending req in defer list. */
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03006466 if (likely(list_empty_careful(&ctx->defer_list) &&
Pavel Begunkov10c66902021-06-15 16:47:56 +01006467 !(req->flags & REQ_F_IO_DRAIN))) {
6468 ctx->drain_active = false;
Pavel Begunkov76cc33d2021-06-14 23:37:30 +01006469 return false;
Pavel Begunkov10c66902021-06-15 16:47:56 +01006470 }
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03006471
6472 seq = io_get_sequence(req);
6473 /* Still a chance to pass the sequence check */
6474 if (!req_need_defer(req, seq) && list_empty_careful(&ctx->defer_list))
Pavel Begunkov76cc33d2021-06-14 23:37:30 +01006475 return false;
Jens Axboedef596e2019-01-09 08:59:42 -07006476
Pavel Begunkovb7e298d2021-02-28 22:35:19 +00006477 ret = io_req_prep_async(req);
Pavel Begunkovbe7053b2021-02-18 18:29:45 +00006478 if (ret)
Pavel Begunkov1b487732021-07-11 22:41:13 +01006479 goto fail;
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;
6484fail:
6485 io_req_complete_failed(req, ret);
Pavel Begunkov76cc33d2021-06-14 23:37:30 +01006486 return true;
6487 }
Jens Axboe31b51512019-01-18 22:56:34 -07006488
Jens Axboe79ebeae2021-08-10 15:18:27 -06006489 spin_lock(&ctx->completion_lock);
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03006490 if (!req_need_defer(req, seq) && list_empty(&ctx->defer_list)) {
Jens Axboe79ebeae2021-08-10 15:18:27 -06006491 spin_unlock(&ctx->completion_lock);
Pavel Begunkov27dc8332020-07-13 23:37:14 +03006492 kfree(de);
Pavel Begunkovf237c302021-08-18 12:42:46 +01006493 io_queue_async_work(req, NULL);
Pavel Begunkov76cc33d2021-06-14 23:37:30 +01006494 return true;
Jens Axboe31b51512019-01-18 22:56:34 -07006495 }
6496
6497 trace_io_uring_defer(ctx, req, req->user_data);
Pavel Begunkov27dc8332020-07-13 23:37:14 +03006498 de->req = req;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03006499 de->seq = seq;
Pavel Begunkov27dc8332020-07-13 23:37:14 +03006500 list_add_tail(&de->list, &ctx->defer_list);
Jens Axboe79ebeae2021-08-10 15:18:27 -06006501 spin_unlock(&ctx->completion_lock);
Pavel Begunkov76cc33d2021-06-14 23:37:30 +01006502 return true;
Jens Axboe31b51512019-01-18 22:56:34 -07006503}
6504
Pavel Begunkov68fb8972021-03-19 17:22:41 +00006505static void io_clean_op(struct io_kiocb *req)
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03006506{
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006507 if (req->flags & REQ_F_BUFFER_SELECTED) {
6508 switch (req->opcode) {
6509 case IORING_OP_READV:
6510 case IORING_OP_READ_FIXED:
6511 case IORING_OP_READ:
Jens Axboebcda7ba2020-02-23 16:42:51 -07006512 kfree((void *)(unsigned long)req->rw.addr);
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006513 break;
6514 case IORING_OP_RECVMSG:
6515 case IORING_OP_RECV:
Jens Axboe52de1fe2020-02-27 10:15:42 -07006516 kfree(req->sr_msg.kbuf);
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006517 break;
6518 }
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03006519 }
6520
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006521 if (req->flags & REQ_F_NEED_CLEANUP) {
6522 switch (req->opcode) {
6523 case IORING_OP_READV:
6524 case IORING_OP_READ_FIXED:
6525 case IORING_OP_READ:
6526 case IORING_OP_WRITEV:
6527 case IORING_OP_WRITE_FIXED:
Jens Axboee8c2bc12020-08-15 18:44:09 -07006528 case IORING_OP_WRITE: {
6529 struct io_async_rw *io = req->async_data;
Pavel Begunkov1dacb4d2021-06-17 18:14:03 +01006530
6531 kfree(io->free_iovec);
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006532 break;
Jens Axboee8c2bc12020-08-15 18:44:09 -07006533 }
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006534 case IORING_OP_RECVMSG:
Jens Axboee8c2bc12020-08-15 18:44:09 -07006535 case IORING_OP_SENDMSG: {
6536 struct io_async_msghdr *io = req->async_data;
Pavel Begunkov257e84a2021-02-05 00:58:00 +00006537
6538 kfree(io->free_iov);
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006539 break;
Jens Axboee8c2bc12020-08-15 18:44:09 -07006540 }
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006541 case IORING_OP_SPLICE:
6542 case IORING_OP_TEE:
Pavel Begunkove1d767f2021-03-19 17:22:43 +00006543 if (!(req->splice.flags & SPLICE_F_FD_IN_FIXED))
6544 io_put_file(req->splice.file_in);
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006545 break;
Jens Axboef3cd48502020-09-24 14:55:54 -06006546 case IORING_OP_OPENAT:
6547 case IORING_OP_OPENAT2:
6548 if (req->open.filename)
6549 putname(req->open.filename);
6550 break;
Jens Axboe80a261f2020-09-28 14:23:58 -06006551 case IORING_OP_RENAMEAT:
6552 putname(req->rename.oldpath);
6553 putname(req->rename.newpath);
6554 break;
Jens Axboe14a11432020-09-28 14:27:37 -06006555 case IORING_OP_UNLINKAT:
6556 putname(req->unlink.filename);
6557 break;
Dmitry Kadasheve34a02d2021-07-08 13:34:45 +07006558 case IORING_OP_MKDIRAT:
6559 putname(req->mkdir.filename);
6560 break;
Dmitry Kadashev7a8721f2021-07-08 13:34:46 +07006561 case IORING_OP_SYMLINKAT:
6562 putname(req->symlink.oldpath);
6563 putname(req->symlink.newpath);
6564 break;
Dmitry Kadashevcf30da92021-07-08 13:34:47 +07006565 case IORING_OP_LINKAT:
6566 putname(req->hardlink.oldpath);
6567 putname(req->hardlink.newpath);
6568 break;
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006569 }
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006570 }
Jens Axboe75652a302021-04-15 09:52:40 -06006571 if ((req->flags & REQ_F_POLLED) && req->apoll) {
6572 kfree(req->apoll->double_poll);
6573 kfree(req->apoll);
6574 req->apoll = NULL;
6575 }
Pavel Begunkov3a0a6902021-04-20 12:03:31 +01006576 if (req->flags & REQ_F_INFLIGHT) {
6577 struct io_uring_task *tctx = req->task->io_uring;
6578
6579 atomic_dec(&tctx->inflight_tracked);
Pavel Begunkov3a0a6902021-04-20 12:03:31 +01006580 }
Pavel Begunkovc8543572021-06-17 18:14:04 +01006581 if (req->flags & REQ_F_CREDS)
Pavel Begunkovb8e64b52021-06-17 18:14:02 +01006582 put_cred(req->creds);
Pavel Begunkovc8543572021-06-17 18:14:04 +01006583
6584 req->flags &= ~IO_REQ_CLEAN_FLAGS;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03006585}
6586
Pavel Begunkov889fca72021-02-10 00:03:09 +00006587static int io_issue_sqe(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboeedafcce2019-01-09 09:16:05 -07006588{
Jens Axboeedafcce2019-01-09 09:16:05 -07006589 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5730b272021-02-27 15:57:30 -07006590 const struct cred *creds = NULL;
Jens Axboed625c6e2019-12-17 19:53:05 -07006591 int ret;
Jens Axboeedafcce2019-01-09 09:16:05 -07006592
Pavel Begunkov6878b402021-09-24 21:59:41 +01006593 if (unlikely((req->flags & REQ_F_CREDS) && req->creds != current_cred()))
Pavel Begunkovc10d1f92021-06-17 18:14:01 +01006594 creds = override_creds(req->creds);
Jens Axboe5730b272021-02-27 15:57:30 -07006595
Jens Axboed625c6e2019-12-17 19:53:05 -07006596 switch (req->opcode) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07006597 case IORING_OP_NOP:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006598 ret = io_nop(req, issue_flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006599 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006600 case IORING_OP_READV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07006601 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07006602 case IORING_OP_READ:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006603 ret = io_read(req, issue_flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006604 break;
6605 case IORING_OP_WRITEV:
Jens Axboe2b188cc2019-01-07 10:46:33 -07006606 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07006607 case IORING_OP_WRITE:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006608 ret = io_write(req, issue_flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006609 break;
6610 case IORING_OP_FSYNC:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006611 ret = io_fsync(req, issue_flags);
Jackie Liuba5290c2019-10-09 09:19:59 +08006612 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006613 case IORING_OP_POLL_ADD:
Pavel Begunkov61e98202021-02-10 00:03:08 +00006614 ret = io_poll_add(req, issue_flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006615 break;
6616 case IORING_OP_POLL_REMOVE:
Pavel Begunkovc5de0032021-04-14 13:38:37 +01006617 ret = io_poll_update(req, issue_flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006618 break;
Jens Axboeb76da702019-11-20 13:05:32 -07006619 case IORING_OP_SYNC_FILE_RANGE:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006620 ret = io_sync_file_range(req, issue_flags);
Jens Axboeb76da702019-11-20 13:05:32 -07006621 break;
6622 case IORING_OP_SENDMSG:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006623 ret = io_sendmsg(req, issue_flags);
Pavel Begunkov062d04d2020-10-10 18:34:12 +01006624 break;
Jens Axboefddafac2020-01-04 20:19:44 -07006625 case IORING_OP_SEND:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006626 ret = io_send(req, issue_flags);
Jens Axboeb76da702019-11-20 13:05:32 -07006627 break;
6628 case IORING_OP_RECVMSG:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006629 ret = io_recvmsg(req, issue_flags);
Pavel Begunkov062d04d2020-10-10 18:34:12 +01006630 break;
Jens Axboefddafac2020-01-04 20:19:44 -07006631 case IORING_OP_RECV:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006632 ret = io_recv(req, issue_flags);
Jens Axboeb76da702019-11-20 13:05:32 -07006633 break;
Jens Axboe561fb042019-10-24 07:25:42 -06006634 case IORING_OP_TIMEOUT:
Pavel Begunkov61e98202021-02-10 00:03:08 +00006635 ret = io_timeout(req, issue_flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006636 break;
6637 case IORING_OP_TIMEOUT_REMOVE:
Pavel Begunkov61e98202021-02-10 00:03:08 +00006638 ret = io_timeout_remove(req, issue_flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006639 break;
6640 case IORING_OP_ACCEPT:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006641 ret = io_accept(req, issue_flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006642 break;
6643 case IORING_OP_CONNECT:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006644 ret = io_connect(req, issue_flags);
Jens Axboe31b51512019-01-18 22:56:34 -07006645 break;
6646 case IORING_OP_ASYNC_CANCEL:
Pavel Begunkov61e98202021-02-10 00:03:08 +00006647 ret = io_async_cancel(req, issue_flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006648 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07006649 case IORING_OP_FALLOCATE:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006650 ret = io_fallocate(req, issue_flags);
Jens Axboed63d1b52019-12-10 10:38:56 -07006651 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07006652 case IORING_OP_OPENAT:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006653 ret = io_openat(req, issue_flags);
Jens Axboe15b71ab2019-12-11 11:20:36 -07006654 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07006655 case IORING_OP_CLOSE:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006656 ret = io_close(req, issue_flags);
Jens Axboeb5dba592019-12-11 14:02:38 -07006657 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006658 case IORING_OP_FILES_UPDATE:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006659 ret = io_files_update(req, issue_flags);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006660 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07006661 case IORING_OP_STATX:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006662 ret = io_statx(req, issue_flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07006663 break;
Jens Axboe4840e412019-12-25 22:03:45 -07006664 case IORING_OP_FADVISE:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006665 ret = io_fadvise(req, issue_flags);
Jens Axboe4840e412019-12-25 22:03:45 -07006666 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07006667 case IORING_OP_MADVISE:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006668 ret = io_madvise(req, issue_flags);
Jens Axboec1ca7572019-12-25 22:18:28 -07006669 break;
Jens Axboecebdb982020-01-08 17:59:24 -07006670 case IORING_OP_OPENAT2:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006671 ret = io_openat2(req, issue_flags);
Jens Axboecebdb982020-01-08 17:59:24 -07006672 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07006673 case IORING_OP_EPOLL_CTL:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006674 ret = io_epoll_ctl(req, issue_flags);
Jens Axboe3e4827b2020-01-08 15:18:09 -07006675 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03006676 case IORING_OP_SPLICE:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006677 ret = io_splice(req, issue_flags);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03006678 break;
Jens Axboeddf0322d2020-02-23 16:41:33 -07006679 case IORING_OP_PROVIDE_BUFFERS:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006680 ret = io_provide_buffers(req, issue_flags);
Jens Axboeddf0322d2020-02-23 16:41:33 -07006681 break;
Jens Axboe067524e2020-03-02 16:32:28 -07006682 case IORING_OP_REMOVE_BUFFERS:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006683 ret = io_remove_buffers(req, issue_flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006684 break;
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03006685 case IORING_OP_TEE:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006686 ret = io_tee(req, issue_flags);
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03006687 break;
Jens Axboe36f4fa62020-09-05 11:14:22 -06006688 case IORING_OP_SHUTDOWN:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006689 ret = io_shutdown(req, issue_flags);
Jens Axboe36f4fa62020-09-05 11:14:22 -06006690 break;
Jens Axboe80a261f2020-09-28 14:23:58 -06006691 case IORING_OP_RENAMEAT:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006692 ret = io_renameat(req, issue_flags);
Jens Axboe80a261f2020-09-28 14:23:58 -06006693 break;
Jens Axboe14a11432020-09-28 14:27:37 -06006694 case IORING_OP_UNLINKAT:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006695 ret = io_unlinkat(req, issue_flags);
Jens Axboe14a11432020-09-28 14:27:37 -06006696 break;
Dmitry Kadasheve34a02d2021-07-08 13:34:45 +07006697 case IORING_OP_MKDIRAT:
6698 ret = io_mkdirat(req, issue_flags);
6699 break;
Dmitry Kadashev7a8721f2021-07-08 13:34:46 +07006700 case IORING_OP_SYMLINKAT:
6701 ret = io_symlinkat(req, issue_flags);
6702 break;
Dmitry Kadashevcf30da92021-07-08 13:34:47 +07006703 case IORING_OP_LINKAT:
6704 ret = io_linkat(req, issue_flags);
6705 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006706 default:
6707 ret = -EINVAL;
6708 break;
6709 }
Jens Axboe31b51512019-01-18 22:56:34 -07006710
Jens Axboe5730b272021-02-27 15:57:30 -07006711 if (creds)
6712 revert_creds(creds);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006713 if (ret)
6714 return ret;
Jens Axboeb5325762020-05-19 21:20:27 -06006715 /* If the op doesn't have a file, we're not polling for it */
Pavel Begunkovcb3d8972021-06-14 02:36:14 +01006716 if ((ctx->flags & IORING_SETUP_IOPOLL) && req->file)
6717 io_iopoll_req_issued(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006718
6719 return 0;
6720}
6721
Pavel Begunkovebc11b62021-08-09 13:04:05 +01006722static struct io_wq_work *io_wq_free_work(struct io_wq_work *work)
6723{
6724 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
6725
6726 req = io_put_req_find_next(req);
6727 return req ? &req->work : NULL;
6728}
6729
Pavel Begunkov5280f7e2021-02-04 13:52:08 +00006730static void io_wq_submit_work(struct io_wq_work *work)
Pavel Begunkovd4c81f32020-06-08 21:08:19 +03006731{
Jens Axboe2b188cc2019-01-07 10:46:33 -07006732 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Pavel Begunkov6df1db62020-07-03 22:15:06 +03006733 struct io_kiocb *timeout;
Jens Axboe561fb042019-10-24 07:25:42 -06006734 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006735
Pavel Begunkov48dcd382021-08-15 10:40:18 +01006736 /* one will be dropped by ->io_free_work() after returning to io-wq */
6737 if (!(req->flags & REQ_F_REFCOUNT))
6738 __io_req_set_refcount(req, 2);
6739 else
6740 req_ref_get(req);
Pavel Begunkov5d5901a2021-08-11 19:28:29 +01006741
Pavel Begunkov6df1db62020-07-03 22:15:06 +03006742 timeout = io_prep_linked_timeout(req);
6743 if (timeout)
6744 io_queue_linked_timeout(timeout);
Pavel Begunkovd4c81f32020-06-08 21:08:19 +03006745
Pavel Begunkovdadebc32021-08-23 13:30:44 +01006746 /* either cancelled or io-wq is dying, so don't touch tctx->iowq */
Jens Axboe4014d942021-01-19 15:53:54 -07006747 if (work->flags & IO_WQ_WORK_CANCEL)
Jens Axboe561fb042019-10-24 07:25:42 -06006748 ret = -ECANCELED;
Jens Axboe31b51512019-01-18 22:56:34 -07006749
Jens Axboe561fb042019-10-24 07:25:42 -06006750 if (!ret) {
Jens Axboe561fb042019-10-24 07:25:42 -06006751 do {
Pavel Begunkov889fca72021-02-10 00:03:09 +00006752 ret = io_issue_sqe(req, 0);
Jens Axboe561fb042019-10-24 07:25:42 -06006753 /*
6754 * We can get EAGAIN for polled IO even though we're
6755 * forcing a sync submission from here, since we can't
6756 * wait for request slots on the block side.
6757 */
6758 if (ret != -EAGAIN)
6759 break;
6760 cond_resched();
6761 } while (1);
6762 }
Jens Axboe31b51512019-01-18 22:56:34 -07006763
Pavel Begunkova3df76982021-02-18 22:32:52 +00006764 /* avoid locking problems by failing it from a clean context */
Pavel Begunkov5d5901a2021-08-11 19:28:29 +01006765 if (ret)
Pavel Begunkova3df76982021-02-18 22:32:52 +00006766 io_req_task_queue_fail(req, ret);
Jens Axboe31b51512019-01-18 22:56:34 -07006767}
Jens Axboe2b188cc2019-01-07 10:46:33 -07006768
Pavel Begunkovaeca2412021-04-11 01:46:37 +01006769static inline struct io_fixed_file *io_fixed_file_slot(struct io_file_table *table,
Pavel Begunkov042b0d82021-08-09 13:04:01 +01006770 unsigned i)
Jens Axboe09bb8392019-03-13 12:39:28 -06006771{
Pavel Begunkov042b0d82021-08-09 13:04:01 +01006772 return &table->files[i];
Pavel Begunkovdafecf12021-02-28 22:35:11 +00006773}
6774
Jens Axboe09bb8392019-03-13 12:39:28 -06006775static inline struct file *io_file_from_index(struct io_ring_ctx *ctx,
6776 int index)
6777{
Pavel Begunkovaeca2412021-04-11 01:46:37 +01006778 struct io_fixed_file *slot = io_fixed_file_slot(&ctx->file_table, index);
Jens Axboe65e19f52019-10-26 07:20:21 -06006779
Pavel Begunkova04b0ac2021-04-01 15:44:04 +01006780 return (struct file *) (slot->file_ptr & FFS_MASK);
Jens Axboe65e19f52019-10-26 07:20:21 -06006781}
6782
Pavel Begunkova04b0ac2021-04-01 15:44:04 +01006783static void io_fixed_file_set(struct io_fixed_file *file_slot, struct file *file)
Pavel Begunkov9a321c92021-04-01 15:44:01 +01006784{
6785 unsigned long file_ptr = (unsigned long) file;
6786
Pavel Begunkovb191e2d2021-08-09 13:04:03 +01006787 if (__io_file_supports_nowait(file, READ))
Pavel Begunkov9a321c92021-04-01 15:44:01 +01006788 file_ptr |= FFS_ASYNC_READ;
Pavel Begunkovb191e2d2021-08-09 13:04:03 +01006789 if (__io_file_supports_nowait(file, WRITE))
Pavel Begunkov9a321c92021-04-01 15:44:01 +01006790 file_ptr |= FFS_ASYNC_WRITE;
6791 if (S_ISREG(file_inode(file)->i_mode))
6792 file_ptr |= FFS_ISREG;
Pavel Begunkova04b0ac2021-04-01 15:44:04 +01006793 file_slot->file_ptr = file_ptr;
Jens Axboe09bb8392019-03-13 12:39:28 -06006794}
6795
Pavel Begunkovac177052021-08-09 13:04:02 +01006796static inline struct file *io_file_get_fixed(struct io_ring_ctx *ctx,
6797 struct io_kiocb *req, int fd)
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006798{
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006799 struct file *file;
Pavel Begunkovac177052021-08-09 13:04:02 +01006800 unsigned long file_ptr;
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006801
Pavel Begunkovac177052021-08-09 13:04:02 +01006802 if (unlikely((unsigned int)fd >= ctx->nr_user_files))
6803 return NULL;
6804 fd = array_index_nospec(fd, ctx->nr_user_files);
6805 file_ptr = io_fixed_file_slot(&ctx->file_table, fd)->file_ptr;
6806 file = (struct file *) (file_ptr & FFS_MASK);
6807 file_ptr &= ~FFS_MASK;
6808 /* mask in overlapping REQ_F and FFS bits */
Pavel Begunkovb191e2d2021-08-09 13:04:03 +01006809 req->flags |= (file_ptr << REQ_F_NOWAIT_READ_BIT);
Pavel Begunkovac177052021-08-09 13:04:02 +01006810 io_req_set_rsrc_node(req);
Pavel Begunkov8371adf2020-10-10 18:34:08 +01006811 return file;
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006812}
6813
Pavel Begunkovac177052021-08-09 13:04:02 +01006814static struct file *io_file_get_normal(struct io_ring_ctx *ctx,
Pavel Begunkovac177052021-08-09 13:04:02 +01006815 struct io_kiocb *req, int fd)
6816{
Pavel Begunkov62906e82021-08-10 14:52:47 +01006817 struct file *file = fget(fd);
Pavel Begunkovac177052021-08-09 13:04:02 +01006818
6819 trace_io_uring_file_get(ctx, fd);
6820
6821 /* we don't allow fixed io_uring files */
6822 if (file && unlikely(file->f_op == &io_uring_fops))
6823 io_req_track_inflight(req);
6824 return file;
6825}
6826
6827static inline struct file *io_file_get(struct io_ring_ctx *ctx,
Pavel Begunkovac177052021-08-09 13:04:02 +01006828 struct io_kiocb *req, int fd, bool fixed)
6829{
6830 if (fixed)
6831 return io_file_get_fixed(ctx, req, fd);
6832 else
Pavel Begunkov62906e82021-08-10 14:52:47 +01006833 return io_file_get_normal(ctx, req, fd);
Pavel Begunkovac177052021-08-09 13:04:02 +01006834}
6835
Pavel Begunkovf237c302021-08-18 12:42:46 +01006836static void io_req_task_link_timeout(struct io_kiocb *req, bool *locked)
Jens Axboe89b263f2021-08-10 15:14:18 -06006837{
6838 struct io_kiocb *prev = req->timeout.prev;
Pavel Begunkov8cb01fa2021-08-15 10:40:22 +01006839 int ret;
Jens Axboe89b263f2021-08-10 15:14:18 -06006840
6841 if (prev) {
Pavel Begunkov8cb01fa2021-08-15 10:40:22 +01006842 ret = io_try_cancel_userdata(req, prev->user_data);
Pavel Begunkov505657b2021-08-17 20:28:09 +01006843 io_req_complete_post(req, ret ?: -ETIME, 0);
Jens Axboe89b263f2021-08-10 15:14:18 -06006844 io_put_req(prev);
Jens Axboe89b263f2021-08-10 15:14:18 -06006845 } else {
6846 io_req_complete_post(req, -ETIME, 0);
6847 }
6848}
6849
Jens Axboe2665abf2019-11-05 12:40:47 -07006850static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer)
6851{
Jens Axboead8a48a2019-11-15 08:49:11 -07006852 struct io_timeout_data *data = container_of(timer,
6853 struct io_timeout_data, timer);
Pavel Begunkov90cd7e42020-10-27 23:25:36 +00006854 struct io_kiocb *prev, *req = data->req;
Jens Axboe2665abf2019-11-05 12:40:47 -07006855 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07006856 unsigned long flags;
Jens Axboe2665abf2019-11-05 12:40:47 -07006857
Jens Axboe89b263f2021-08-10 15:14:18 -06006858 spin_lock_irqsave(&ctx->timeout_lock, flags);
Pavel Begunkov90cd7e42020-10-27 23:25:36 +00006859 prev = req->timeout.head;
6860 req->timeout.head = NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07006861
6862 /*
6863 * We don't expect the list to be empty, that will only happen if we
6864 * race with the completion of the linked work.
6865 */
Pavel Begunkov447c19f2021-05-14 12:02:50 +01006866 if (prev) {
Pavel Begunkovf2f87372020-10-27 23:25:37 +00006867 io_remove_next_linked(prev);
Pavel Begunkov447c19f2021-05-14 12:02:50 +01006868 if (!req_ref_inc_not_zero(prev))
6869 prev = NULL;
6870 }
Pavel Begunkovef9dd632021-08-28 19:54:38 -06006871 list_del(&req->timeout.list);
Jens Axboe89b263f2021-08-10 15:14:18 -06006872 req->timeout.prev = prev;
6873 spin_unlock_irqrestore(&ctx->timeout_lock, flags);
Jens Axboe2665abf2019-11-05 12:40:47 -07006874
Jens Axboe89b263f2021-08-10 15:14:18 -06006875 req->io_task_work.func = io_req_task_link_timeout;
6876 io_req_task_work_add(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07006877 return HRTIMER_NORESTART;
6878}
6879
Pavel Begunkovde968c12021-03-19 17:22:33 +00006880static void io_queue_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07006881{
Pavel Begunkovde968c12021-03-19 17:22:33 +00006882 struct io_ring_ctx *ctx = req->ctx;
6883
Jens Axboe89b263f2021-08-10 15:14:18 -06006884 spin_lock_irq(&ctx->timeout_lock);
Jens Axboe76a46e02019-11-10 23:34:16 -07006885 /*
Pavel Begunkovf2f87372020-10-27 23:25:37 +00006886 * If the back reference is NULL, then our linked request finished
6887 * before we got a chance to setup the timer
Jens Axboe76a46e02019-11-10 23:34:16 -07006888 */
Pavel Begunkov90cd7e42020-10-27 23:25:36 +00006889 if (req->timeout.head) {
Jens Axboee8c2bc12020-08-15 18:44:09 -07006890 struct io_timeout_data *data = req->async_data;
Jens Axboe94ae5e72019-11-14 19:39:52 -07006891
Jens Axboead8a48a2019-11-15 08:49:11 -07006892 data->timer.function = io_link_timeout_fn;
6893 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts),
6894 data->mode);
Pavel Begunkovef9dd632021-08-28 19:54:38 -06006895 list_add_tail(&req->timeout.list, &ctx->ltimeout_list);
Jens Axboe2665abf2019-11-05 12:40:47 -07006896 }
Jens Axboe89b263f2021-08-10 15:14:18 -06006897 spin_unlock_irq(&ctx->timeout_lock);
Jens Axboe2665abf2019-11-05 12:40:47 -07006898 /* drop submission reference */
Jens Axboe76a46e02019-11-10 23:34:16 -07006899 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07006900}
6901
Pavel Begunkovc5eef2b2021-02-10 00:03:22 +00006902static void __io_queue_sqe(struct io_kiocb *req)
Pavel Begunkov282cdc82021-08-09 13:04:10 +01006903 __must_hold(&req->ctx->uring_lock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006904{
Pavel Begunkov906c6ca2021-08-15 10:40:26 +01006905 struct io_kiocb *linked_timeout;
Jens Axboee0c5c572019-03-12 10:18:47 -06006906 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006907
Olivier Langlois59b735a2021-06-22 05:17:39 -07006908issue_sqe:
Pavel Begunkovc5eef2b2021-02-10 00:03:22 +00006909 ret = io_issue_sqe(req, IO_URING_F_NONBLOCK|IO_URING_F_COMPLETE_DEFER);
Jens Axboe491381ce2019-10-17 09:20:46 -06006910
6911 /*
6912 * We async punt it if the file wasn't marked NOWAIT, or if the file
6913 * doesn't support non-blocking read/write attempts
6914 */
Pavel Begunkov18400382021-03-19 17:22:34 +00006915 if (likely(!ret)) {
Pavel Begunkov6f33b0b2021-09-24 21:59:44 +01006916 if (req->flags & REQ_F_COMPLETE_INLINE)
Pavel Begunkov906c6ca2021-08-15 10:40:26 +01006917 return;
Pavel Begunkov906c6ca2021-08-15 10:40:26 +01006918
6919 linked_timeout = io_prep_linked_timeout(req);
6920 if (linked_timeout)
6921 io_queue_linked_timeout(linked_timeout);
Pavel Begunkov18400382021-03-19 17:22:34 +00006922 } else if (ret == -EAGAIN && !(req->flags & REQ_F_NOWAIT)) {
Pavel Begunkov906c6ca2021-08-15 10:40:26 +01006923 linked_timeout = io_prep_linked_timeout(req);
6924
Olivier Langlois59b735a2021-06-22 05:17:39 -07006925 switch (io_arm_poll_handler(req)) {
6926 case IO_APOLL_READY:
Pavel Begunkov906c6ca2021-08-15 10:40:26 +01006927 if (linked_timeout)
6928 io_unprep_linked_timeout(req);
Olivier Langlois59b735a2021-06-22 05:17:39 -07006929 goto issue_sqe;
6930 case IO_APOLL_ABORTED:
Pavel Begunkov18400382021-03-19 17:22:34 +00006931 /*
6932 * Queued up for async execution, worker will release
6933 * submit reference when the iocb is actually submitted.
6934 */
Pavel Begunkovf237c302021-08-18 12:42:46 +01006935 io_queue_async_work(req, NULL);
Olivier Langlois59b735a2021-06-22 05:17:39 -07006936 break;
Pavel Begunkov18400382021-03-19 17:22:34 +00006937 }
Pavel Begunkov906c6ca2021-08-15 10:40:26 +01006938
6939 if (linked_timeout)
6940 io_queue_linked_timeout(linked_timeout);
Pavel Begunkov0d63c142020-10-22 16:47:18 +01006941 } else {
Pavel Begunkovf41db2732021-02-28 22:35:12 +00006942 io_req_complete_failed(req, ret);
Jens Axboe9e645e112019-05-10 16:07:28 -06006943 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006944}
6945
Pavel Begunkov441b8a72021-06-14 23:37:31 +01006946static inline void io_queue_sqe(struct io_kiocb *req)
Pavel Begunkov282cdc82021-08-09 13:04:10 +01006947 __must_hold(&req->ctx->uring_lock)
Jackie Liu4fe2c962019-09-09 20:50:40 +08006948{
Pavel Begunkov10c66902021-06-15 16:47:56 +01006949 if (unlikely(req->ctx->drain_active) && io_drain_req(req))
Pavel Begunkov76cc33d2021-06-14 23:37:30 +01006950 return;
Jackie Liu4fe2c962019-09-09 20:50:40 +08006951
Hao Xua8295b92021-08-27 17:46:09 +08006952 if (likely(!(req->flags & (REQ_F_FORCE_ASYNC | REQ_F_FAIL)))) {
Pavel Begunkovc5eef2b2021-02-10 00:03:22 +00006953 __io_queue_sqe(req);
Hao Xua8295b92021-08-27 17:46:09 +08006954 } else if (req->flags & REQ_F_FAIL) {
Pavel Begunkovc6d3d9c2021-08-31 14:13:10 +01006955 io_req_complete_fail_submit(req);
Pavel Begunkov76cc33d2021-06-14 23:37:30 +01006956 } else {
6957 int ret = io_req_prep_async(req);
6958
6959 if (unlikely(ret))
6960 io_req_complete_failed(req, ret);
6961 else
Pavel Begunkovf237c302021-08-18 12:42:46 +01006962 io_queue_async_work(req, NULL);
Jens Axboece35a472019-12-17 08:04:44 -07006963 }
Jackie Liu4fe2c962019-09-09 20:50:40 +08006964}
6965
Stefano Garzarella21b55db2020-08-27 16:58:30 +02006966/*
6967 * Check SQE restrictions (opcode and flags).
6968 *
6969 * Returns 'true' if SQE is allowed, 'false' otherwise.
6970 */
6971static inline bool io_check_restriction(struct io_ring_ctx *ctx,
6972 struct io_kiocb *req,
6973 unsigned int sqe_flags)
6974{
Pavel Begunkov4cfb25b2021-06-26 21:40:47 +01006975 if (likely(!ctx->restricted))
Stefano Garzarella21b55db2020-08-27 16:58:30 +02006976 return true;
6977
6978 if (!test_bit(req->opcode, ctx->restrictions.sqe_op))
6979 return false;
6980
6981 if ((sqe_flags & ctx->restrictions.sqe_flags_required) !=
6982 ctx->restrictions.sqe_flags_required)
6983 return false;
6984
6985 if (sqe_flags & ~(ctx->restrictions.sqe_flags_allowed |
6986 ctx->restrictions.sqe_flags_required))
6987 return false;
6988
6989 return true;
6990}
6991
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006992static int io_init_req(struct io_ring_ctx *ctx, struct io_kiocb *req,
Pavel Begunkov258b29a2021-02-10 00:03:10 +00006993 const struct io_uring_sqe *sqe)
Pavel Begunkov282cdc82021-08-09 13:04:10 +01006994 __must_hold(&ctx->uring_lock)
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03006995{
Pavel Begunkov258b29a2021-02-10 00:03:10 +00006996 struct io_submit_state *state;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006997 unsigned int sqe_flags;
Jens Axboe003e8dc2021-03-06 09:22:27 -07006998 int personality, ret = 0;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03006999
Pavel Begunkov864ea922021-08-09 13:04:08 +01007000 /* req is partially pre-initialised, see io_preinit_req() */
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03007001 req->opcode = READ_ONCE(sqe->opcode);
Pavel Begunkov5be9ad12021-02-12 18:41:17 +00007002 /* same numerical values with corresponding REQ_F_*, safe to copy */
7003 req->flags = sqe_flags = READ_ONCE(sqe->flags);
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03007004 req->user_data = READ_ONCE(sqe->user_data);
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03007005 req->file = NULL;
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00007006 req->fixed_rsrc_refs = NULL;
Pavel Begunkov4dd28242020-06-15 10:33:13 +03007007 req->task = current;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03007008
7009 if (unlikely(req->opcode >= IORING_OP_LAST))
7010 return -EINVAL;
Pavel Begunkov68fe2562021-09-15 12:03:38 +01007011 if (unlikely(sqe_flags & ~SQE_COMMON_FLAGS)) {
7012 /* enforce forwards compatibility on users */
7013 if (sqe_flags & ~SQE_VALID_FLAGS)
7014 return -EINVAL;
7015 if ((sqe_flags & IOSQE_BUFFER_SELECT) &&
7016 !io_op_defs[req->opcode].buffer_select)
7017 return -EOPNOTSUPP;
7018 if (sqe_flags & IOSQE_IO_DRAIN)
7019 ctx->drain_active = true;
7020 }
Pavel Begunkov4cfb25b2021-06-26 21:40:47 +01007021 if (!io_check_restriction(ctx, req, sqe_flags))
Stefano Garzarella21b55db2020-08-27 16:58:30 +02007022 return -EACCES;
7023
Jens Axboe003e8dc2021-03-06 09:22:27 -07007024 personality = READ_ONCE(sqe->personality);
7025 if (personality) {
Pavel Begunkovc10d1f92021-06-17 18:14:01 +01007026 req->creds = xa_load(&ctx->personalities, personality);
7027 if (!req->creds)
Jens Axboe003e8dc2021-03-06 09:22:27 -07007028 return -EINVAL;
Pavel Begunkovc10d1f92021-06-17 18:14:01 +01007029 get_cred(req->creds);
Pavel Begunkovb8e64b52021-06-17 18:14:02 +01007030 req->flags |= REQ_F_CREDS;
Jens Axboe003e8dc2021-03-06 09:22:27 -07007031 }
Pavel Begunkov258b29a2021-02-10 00:03:10 +00007032 state = &ctx->submit_state;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03007033
Jens Axboe27926b62020-10-28 09:33:23 -06007034 /*
7035 * Plug now if we have more than 1 IO left after this, and the target
7036 * is potentially a read/write to block based storage.
7037 */
Pavel Begunkov4b628ae2021-09-08 16:40:49 +01007038 if (state->need_plug && io_op_defs[req->opcode].plug) {
Jens Axboe27926b62020-10-28 09:33:23 -06007039 blk_start_plug(&state->plug);
7040 state->plug_started = true;
Pavel Begunkov4b628ae2021-09-08 16:40:49 +01007041 state->need_plug = false;
Jens Axboe27926b62020-10-28 09:33:23 -06007042 }
Jens Axboe63ff8222020-05-07 14:56:15 -06007043
Pavel Begunkovbd5bbda2020-11-20 15:50:51 +00007044 if (io_op_defs[req->opcode].needs_file) {
Pavel Begunkov62906e82021-08-10 14:52:47 +01007045 req->file = io_file_get(ctx, req, READ_ONCE(sqe->fd),
Pavel Begunkovac177052021-08-09 13:04:02 +01007046 (sqe_flags & IOSQE_FIXED_FILE));
Pavel Begunkovba13e232021-02-01 18:59:52 +00007047 if (unlikely(!req->file))
Pavel Begunkovbd5bbda2020-11-20 15:50:51 +00007048 ret = -EBADF;
7049 }
Pavel Begunkov71b547c2020-10-10 18:34:09 +01007050 return ret;
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03007051}
7052
Pavel Begunkova6b8cadc2021-02-18 18:29:41 +00007053static int io_submit_sqe(struct io_ring_ctx *ctx, struct io_kiocb *req,
Pavel Begunkova1ab7b32021-02-18 18:29:42 +00007054 const struct io_uring_sqe *sqe)
Pavel Begunkov282cdc82021-08-09 13:04:10 +01007055 __must_hold(&ctx->uring_lock)
Jens Axboe6c271ce2019-01-10 11:22:30 -07007056{
Pavel Begunkova1ab7b32021-02-18 18:29:42 +00007057 struct io_submit_link *link = &ctx->submit_state.link;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007058 int ret;
7059
Pavel Begunkova6b8cadc2021-02-18 18:29:41 +00007060 ret = io_init_req(ctx, req, sqe);
7061 if (unlikely(ret)) {
7062fail_req:
Jens Axboea87acfd2021-09-11 16:04:50 -06007063 trace_io_uring_req_failed(sqe, ret);
7064
Hao Xua8295b92021-08-27 17:46:09 +08007065 /* fail even hard links since we don't submit */
Pavel Begunkovde59bc12021-02-18 18:29:47 +00007066 if (link->head) {
Hao Xua8295b92021-08-27 17:46:09 +08007067 /*
7068 * we can judge a link req is failed or cancelled by if
7069 * REQ_F_FAIL is set, but the head is an exception since
7070 * it may be set REQ_F_FAIL because of other req's failure
7071 * so let's leverage req->result to distinguish if a head
7072 * is set REQ_F_FAIL because of its failure or other req's
7073 * failure so that we can set the correct ret code for it.
7074 * init result here to avoid affecting the normal path.
7075 */
7076 if (!(link->head->flags & REQ_F_FAIL))
7077 req_fail_link_node(link->head, -ECANCELED);
7078 } else if (!(req->flags & (REQ_F_LINK | REQ_F_HARDLINK))) {
7079 /*
7080 * the current req is a normal req, we should return
7081 * error and thus break the submittion loop.
7082 */
7083 io_req_complete_failed(req, ret);
7084 return ret;
Pavel Begunkovde59bc12021-02-18 18:29:47 +00007085 }
Hao Xua8295b92021-08-27 17:46:09 +08007086 req_fail_link_node(req, ret);
7087 } else {
7088 ret = io_req_prep(req, sqe);
7089 if (unlikely(ret))
7090 goto fail_req;
Pavel Begunkova6b8cadc2021-02-18 18:29:41 +00007091 }
Pavel Begunkov441b8a72021-06-14 23:37:31 +01007092
Pavel Begunkovbe7053b2021-02-18 18:29:45 +00007093 /* don't need @sqe from now on */
Olivier Langlois236daeae2021-05-31 02:36:37 -04007094 trace_io_uring_submit_sqe(ctx, req, req->opcode, req->user_data,
7095 req->flags, true,
7096 ctx->flags & IORING_SETUP_SQPOLL);
Pavel Begunkova6b8cadc2021-02-18 18:29:41 +00007097
Jens Axboe6c271ce2019-01-10 11:22:30 -07007098 /*
7099 * If we already have a head request, queue this one for async
7100 * submittal once the head completes. If we don't have a head but
7101 * IOSQE_IO_LINK is set in the sqe, start a new head. This one will be
7102 * submitted sync once the chain is complete. If none of those
7103 * conditions are true (normal request), then just queue it.
7104 */
7105 if (link->head) {
7106 struct io_kiocb *head = link->head;
7107
Hao Xua8295b92021-08-27 17:46:09 +08007108 if (!(req->flags & REQ_F_FAIL)) {
7109 ret = io_req_prep_async(req);
7110 if (unlikely(ret)) {
7111 req_fail_link_node(req, ret);
7112 if (!(head->flags & REQ_F_FAIL))
7113 req_fail_link_node(head, -ECANCELED);
7114 }
7115 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07007116 trace_io_uring_link(ctx, req, head);
7117 link->last->link = req;
7118 link->last = req;
7119
Pavel Begunkovf15a3432021-09-24 21:59:56 +01007120 if (req->flags & (REQ_F_LINK | REQ_F_HARDLINK))
7121 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007122 /* last request of a link, enqueue the link */
Pavel Begunkovf15a3432021-09-24 21:59:56 +01007123 link->head = NULL;
7124 req = head;
7125 } else if (req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) {
7126 link->head = req;
7127 link->last = req;
7128 return 0;
Jackie Liu4fe2c962019-09-09 20:50:40 +08007129 }
7130
Pavel Begunkovf15a3432021-09-24 21:59:56 +01007131 io_queue_sqe(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08007132 return 0;
7133}
7134
7135/*
7136 * Batched submission is done, ensure local IO is flushed out.
7137 */
Pavel Begunkov553deff2021-09-24 21:59:55 +01007138static void io_submit_state_end(struct io_ring_ctx *ctx)
Jens Axboe3529d8c2019-12-19 18:24:38 -07007139{
Pavel Begunkov553deff2021-09-24 21:59:55 +01007140 struct io_submit_state *state = &ctx->submit_state;
7141
Pavel Begunkova1ab7b32021-02-18 18:29:42 +00007142 if (state->link.head)
Pavel Begunkovde59bc12021-02-18 18:29:47 +00007143 io_queue_sqe(state->link.head);
Pavel Begunkov553deff2021-09-24 21:59:55 +01007144 /* flush only after queuing links as they can generate completions */
Pavel Begunkovc4501782021-09-08 16:40:52 +01007145 io_submit_flush_completions(ctx);
Jackie Liua197f662019-11-08 08:09:12 -07007146 if (state->plug_started)
Pavel Begunkov32fe5252019-12-17 22:26:58 +03007147 blk_finish_plug(&state->plug);
Jens Axboe9e645e112019-05-10 16:07:28 -06007148}
Pavel Begunkov32fe5252019-12-17 22:26:58 +03007149
Jens Axboe9e645e112019-05-10 16:07:28 -06007150/*
7151 * Start submission side cache.
Pavel Begunkov32fe5252019-12-17 22:26:58 +03007152 */
Jens Axboe9e645e112019-05-10 16:07:28 -06007153static void io_submit_state_start(struct io_submit_state *state,
Pavel Begunkov196be952019-11-07 01:41:06 +03007154 unsigned int max_ios)
Jens Axboe9e645e112019-05-10 16:07:28 -06007155{
7156 state->plug_started = false;
Pavel Begunkov4b628ae2021-09-08 16:40:49 +01007157 state->need_plug = max_ios > 2;
Pavel Begunkova1ab7b32021-02-18 18:29:42 +00007158 /* set only head, no need to init link_last in advance */
7159 state->link.head = NULL;
Jens Axboe75c6a032020-01-28 10:15:23 -07007160}
7161
Jens Axboe193155c2020-02-22 23:22:19 -07007162static void io_commit_sqring(struct io_ring_ctx *ctx)
7163{
Jens Axboe75c6a032020-01-28 10:15:23 -07007164 struct io_rings *rings = ctx->rings;
7165
7166 /*
Jens Axboe193155c2020-02-22 23:22:19 -07007167 * Ensure any loads from the SQEs are done at this point,
Jens Axboe75c6a032020-01-28 10:15:23 -07007168 * since once we write the new head, the application could
7169 * write new data to them.
Pavel Begunkov6b47ee62020-01-18 20:22:41 +03007170 */
Pavel Begunkov8da11c12020-02-24 11:32:44 +03007171 smp_store_release(&rings->sq.head, ctx->cached_sq_head);
Jens Axboebcda7ba2020-02-23 16:42:51 -07007172}
7173
Jens Axboe9e645e112019-05-10 16:07:28 -06007174/*
Fam Zhengdd9ae8a2021-06-04 17:42:56 +01007175 * Fetch an sqe, if one is available. Note this returns a pointer to memory
Jens Axboe9e645e112019-05-10 16:07:28 -06007176 * that is mapped by userspace. This means that care needs to be taken to
7177 * ensure that reads are stable, as we cannot rely on userspace always
Jens Axboe78e19bb2019-11-06 15:21:34 -07007178 * being a good citizen. If members of the sqe are validated and then later
7179 * used, it's important that those reads are done through READ_ONCE() to
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03007180 * prevent a re-load down the line.
Jens Axboe9e645e112019-05-10 16:07:28 -06007181 */
7182static const struct io_uring_sqe *io_get_sqe(struct io_ring_ctx *ctx)
Jens Axboe9e645e112019-05-10 16:07:28 -06007183{
Pavel Begunkovea5ab3b2021-05-16 22:58:09 +01007184 unsigned head, mask = ctx->sq_entries - 1;
Pavel Begunkov17d3aeb2021-06-14 23:37:23 +01007185 unsigned sq_idx = ctx->cached_sq_head++ & mask;
Jens Axboe9e645e112019-05-10 16:07:28 -06007186
7187 /*
7188 * The cached sq head (or cq tail) serves two purposes:
7189 *
7190 * 1) allows us to batch the cost of updating the user visible
Pavel Begunkov9d763772019-12-17 02:22:07 +03007191 * head updates.
Jens Axboe9e645e112019-05-10 16:07:28 -06007192 * 2) allows the kernel side to track the head on its own, even
Pavel Begunkov8cdf2192020-01-25 00:40:24 +03007193 * though the application is the one updating it.
7194 */
Pavel Begunkov17d3aeb2021-06-14 23:37:23 +01007195 head = READ_ONCE(ctx->sq_array[sq_idx]);
Pavel Begunkov8cdf2192020-01-25 00:40:24 +03007196 if (likely(head < ctx->sq_entries))
7197 return &ctx->sq_sqes[head];
7198
7199 /* drop invalid entries */
Pavel Begunkov15641e42021-06-14 23:37:24 +01007200 ctx->cq_extra--;
7201 WRITE_ONCE(ctx->rings->sq_dropped,
7202 READ_ONCE(ctx->rings->sq_dropped) + 1);
Pavel Begunkov711be032020-01-17 03:57:59 +03007203 return NULL;
7204}
Jens Axboeb7bb4f72019-12-15 22:13:43 -07007205
Jens Axboe0f212202020-09-13 13:09:39 -06007206static int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr)
Pavel Begunkov282cdc82021-08-09 13:04:10 +01007207 __must_hold(&ctx->uring_lock)
Jens Axboe6c271ce2019-01-10 11:22:30 -07007208{
Pavel Begunkov46c4e162021-02-18 18:29:37 +00007209 int submitted = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007210
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03007211 /* make sure SQ entry isn't read before tail */
7212 nr = min3(nr, ctx->sq_entries, io_sqring_entries(ctx));
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03007213 if (!percpu_ref_tryget_many(&ctx->refs, nr))
7214 return -EAGAIN;
Pavel Begunkov9a108672021-08-27 11:55:01 +01007215 io_get_task_refs(nr);
Jens Axboe6c271ce2019-01-10 11:22:30 -07007216
Pavel Begunkovba88ff12021-02-10 00:03:11 +00007217 io_submit_state_start(&ctx->submit_state, nr);
Pavel Begunkov46c4e162021-02-18 18:29:37 +00007218 while (submitted < nr) {
Jens Axboe3529d8c2019-12-19 18:24:38 -07007219 const struct io_uring_sqe *sqe;
Pavel Begunkov196be952019-11-07 01:41:06 +03007220 struct io_kiocb *req;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03007221
Pavel Begunkov258b29a2021-02-10 00:03:10 +00007222 req = io_alloc_req(ctx);
Pavel Begunkov196be952019-11-07 01:41:06 +03007223 if (unlikely(!req)) {
7224 if (!submitted)
7225 submitted = -EAGAIN;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03007226 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06007227 }
Pavel Begunkov4fccfcb2021-02-12 11:55:17 +00007228 sqe = io_get_sqe(ctx);
7229 if (unlikely(!sqe)) {
Pavel Begunkovc2b6c6b2021-09-24 21:59:47 +01007230 wq_stack_add_head(&req->comp_list, &ctx->submit_state.free_list);
Pavel Begunkov4fccfcb2021-02-12 11:55:17 +00007231 break;
7232 }
Jens Axboed3656342019-12-18 09:50:26 -07007233 /* will complete beyond this point, count as submitted */
7234 submitted++;
Pavel Begunkova1ab7b32021-02-18 18:29:42 +00007235 if (io_submit_sqe(ctx, req, sqe))
Jens Axboed3656342019-12-18 09:50:26 -07007236 break;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007237 }
7238
Pavel Begunkov9466f432020-01-25 22:34:01 +03007239 if (unlikely(submitted != nr)) {
7240 int ref_used = (submitted == -EAGAIN) ? 0 : submitted;
Jens Axboed8a6df12020-10-15 16:24:45 -06007241 int unused = nr - ref_used;
Pavel Begunkov9466f432020-01-25 22:34:01 +03007242
Pavel Begunkov09899b12021-06-14 02:36:22 +01007243 current->io_uring->cached_refs += unused;
Jens Axboed8a6df12020-10-15 16:24:45 -06007244 percpu_ref_put_many(&ctx->refs, unused);
Pavel Begunkov9466f432020-01-25 22:34:01 +03007245 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07007246
Pavel Begunkov553deff2021-09-24 21:59:55 +01007247 io_submit_state_end(ctx);
Pavel Begunkovae9428c2019-11-06 00:22:14 +03007248 /* Commit SQ ring head once we've consumed and submitted all SQEs */
7249 io_commit_sqring(ctx);
7250
Jens Axboe6c271ce2019-01-10 11:22:30 -07007251 return submitted;
7252}
7253
Pavel Begunkove4b6d902021-05-16 22:58:00 +01007254static inline bool io_sqd_events_pending(struct io_sq_data *sqd)
7255{
7256 return READ_ONCE(sqd->state);
7257}
7258
Xiaoguang Wang23b36282020-07-23 20:57:24 +08007259static inline void io_ring_set_wakeup_flag(struct io_ring_ctx *ctx)
7260{
7261 /* Tell userspace we may need a wakeup call */
Jens Axboe79ebeae2021-08-10 15:18:27 -06007262 spin_lock(&ctx->completion_lock);
Nadav Amit20c0b382021-08-07 17:13:42 -07007263 WRITE_ONCE(ctx->rings->sq_flags,
7264 ctx->rings->sq_flags | IORING_SQ_NEED_WAKEUP);
Jens Axboe79ebeae2021-08-10 15:18:27 -06007265 spin_unlock(&ctx->completion_lock);
Xiaoguang Wang23b36282020-07-23 20:57:24 +08007266}
7267
7268static inline void io_ring_clear_wakeup_flag(struct io_ring_ctx *ctx)
7269{
Jens Axboe79ebeae2021-08-10 15:18:27 -06007270 spin_lock(&ctx->completion_lock);
Nadav Amit20c0b382021-08-07 17:13:42 -07007271 WRITE_ONCE(ctx->rings->sq_flags,
7272 ctx->rings->sq_flags & ~IORING_SQ_NEED_WAKEUP);
Jens Axboe79ebeae2021-08-10 15:18:27 -06007273 spin_unlock(&ctx->completion_lock);
Xiaoguang Wang23b36282020-07-23 20:57:24 +08007274}
7275
Xiaoguang Wang08369242020-11-03 14:15:59 +08007276static int __io_sq_thread(struct io_ring_ctx *ctx, bool cap_entries)
Jens Axboe6c271ce2019-01-10 11:22:30 -07007277{
Jens Axboec8d1ba52020-09-14 11:07:26 -06007278 unsigned int to_submit;
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08007279 int ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007280
Jens Axboec8d1ba52020-09-14 11:07:26 -06007281 to_submit = io_sqring_entries(ctx);
Jens Axboee95eee22020-09-08 09:11:32 -06007282 /* if we're handling multiple rings, cap submit size for fairness */
Olivier Langlois4ce8ad92021-06-23 11:50:18 -07007283 if (cap_entries && to_submit > IORING_SQPOLL_CAP_ENTRIES_VALUE)
7284 to_submit = IORING_SQPOLL_CAP_ENTRIES_VALUE;
Jens Axboee95eee22020-09-08 09:11:32 -06007285
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01007286 if (!wq_list_empty(&ctx->iopoll_list) || to_submit) {
Pavel Begunkov948e1942021-06-24 15:09:55 +01007287 const struct cred *creds = NULL;
7288
7289 if (ctx->sq_creds != current_cred())
7290 creds = override_creds(ctx->sq_creds);
Xiaoguang Wang906a3c62020-11-12 14:56:00 +08007291
Xiaoguang Wang08369242020-11-03 14:15:59 +08007292 mutex_lock(&ctx->uring_lock);
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01007293 if (!wq_list_empty(&ctx->iopoll_list))
Pavel Begunkov5ba3c872021-09-24 21:59:43 +01007294 io_do_iopoll(ctx, true);
Xiaoguang Wang906a3c62020-11-12 14:56:00 +08007295
Pavel Begunkov3b763ba2021-04-18 14:52:08 +01007296 /*
7297 * Don't submit if refs are dying, good for io_uring_register(),
7298 * but also it is relied upon by io_ring_exit_work()
7299 */
Pavel Begunkov0298ef92021-03-08 13:20:57 +00007300 if (to_submit && likely(!percpu_ref_is_dying(&ctx->refs)) &&
7301 !(ctx->flags & IORING_SETUP_R_DISABLED))
Xiaoguang Wang08369242020-11-03 14:15:59 +08007302 ret = io_submit_sqes(ctx, to_submit);
7303 mutex_unlock(&ctx->uring_lock);
Jens Axboe90554202020-09-03 12:12:41 -06007304
Pavel Begunkovacfb3812021-05-16 22:58:03 +01007305 if (to_submit && wq_has_sleeper(&ctx->sqo_sq_wait))
7306 wake_up(&ctx->sqo_sq_wait);
Pavel Begunkov948e1942021-06-24 15:09:55 +01007307 if (creds)
7308 revert_creds(creds);
Pavel Begunkovacfb3812021-05-16 22:58:03 +01007309 }
Jens Axboe90554202020-09-03 12:12:41 -06007310
Xiaoguang Wang08369242020-11-03 14:15:59 +08007311 return ret;
7312}
7313
7314static void io_sqd_update_thread_idle(struct io_sq_data *sqd)
7315{
7316 struct io_ring_ctx *ctx;
7317 unsigned sq_thread_idle = 0;
7318
Pavel Begunkovc9dca272021-03-10 13:13:55 +00007319 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list)
7320 sq_thread_idle = max(sq_thread_idle, ctx->sq_thread_idle);
Xiaoguang Wang08369242020-11-03 14:15:59 +08007321 sqd->sq_thread_idle = sq_thread_idle;
Jens Axboec8d1ba52020-09-14 11:07:26 -06007322}
7323
Pavel Begunkove4b6d902021-05-16 22:58:00 +01007324static bool io_sqd_handle_event(struct io_sq_data *sqd)
7325{
7326 bool did_sig = false;
7327 struct ksignal ksig;
7328
7329 if (test_bit(IO_SQ_THREAD_SHOULD_PARK, &sqd->state) ||
7330 signal_pending(current)) {
7331 mutex_unlock(&sqd->lock);
7332 if (signal_pending(current))
7333 did_sig = get_signal(&ksig);
7334 cond_resched();
7335 mutex_lock(&sqd->lock);
7336 }
Pavel Begunkove4b6d902021-05-16 22:58:00 +01007337 return did_sig || test_bit(IO_SQ_THREAD_SHOULD_STOP, &sqd->state);
7338}
7339
Jens Axboe6c271ce2019-01-10 11:22:30 -07007340static int io_sq_thread(void *data)
7341{
Jens Axboe69fb2132020-09-14 11:16:23 -06007342 struct io_sq_data *sqd = data;
7343 struct io_ring_ctx *ctx;
Xiaoguang Wanga0d92052020-11-12 14:55:59 +08007344 unsigned long timeout = 0;
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007345 char buf[TASK_COMM_LEN];
Xiaoguang Wang08369242020-11-03 14:15:59 +08007346 DEFINE_WAIT(wait);
Jens Axboe6c271ce2019-01-10 11:22:30 -07007347
Pavel Begunkov696ee882021-04-01 09:55:04 +01007348 snprintf(buf, sizeof(buf), "iou-sqp-%d", sqd->task_pid);
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007349 set_task_comm(current, buf);
Jens Axboe28cea78a2020-09-14 10:51:17 -06007350
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007351 if (sqd->sq_cpu != -1)
7352 set_cpus_allowed_ptr(current, cpumask_of(sqd->sq_cpu));
7353 else
7354 set_cpus_allowed_ptr(current, cpu_online_mask);
7355 current->flags |= PF_NO_SETAFFINITY;
7356
Pavel Begunkov09a6f4e2021-03-14 20:57:10 +00007357 mutex_lock(&sqd->lock);
Pavel Begunkove4b6d902021-05-16 22:58:00 +01007358 while (1) {
Pavel Begunkov1a924a82021-06-24 15:09:56 +01007359 bool cap_entries, sqt_spin = false;
Jens Axboec1edbf52019-11-10 16:56:04 -07007360
Pavel Begunkove4b6d902021-05-16 22:58:00 +01007361 if (io_sqd_events_pending(sqd) || signal_pending(current)) {
7362 if (io_sqd_handle_event(sqd))
Pavel Begunkovc7d95612021-04-13 11:43:00 +01007363 break;
Xiaoguang Wang08369242020-11-03 14:15:59 +08007364 timeout = jiffies + sqd->sq_thread_idle;
7365 }
Pavel Begunkove4b6d902021-05-16 22:58:00 +01007366
Jens Axboee95eee22020-09-08 09:11:32 -06007367 cap_entries = !list_is_singular(&sqd->ctx_list);
Jens Axboe69fb2132020-09-14 11:16:23 -06007368 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list) {
Pavel Begunkov948e1942021-06-24 15:09:55 +01007369 int ret = __io_sq_thread(ctx, cap_entries);
Stefan Metzmacher7c30f36a2021-03-07 11:54:28 +01007370
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01007371 if (!sqt_spin && (ret > 0 || !wq_list_empty(&ctx->iopoll_list)))
Xiaoguang Wang08369242020-11-03 14:15:59 +08007372 sqt_spin = true;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007373 }
Pavel Begunkovdd432ea52021-06-26 21:40:45 +01007374 if (io_run_task_work())
7375 sqt_spin = true;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007376
Xiaoguang Wang08369242020-11-03 14:15:59 +08007377 if (sqt_spin || !time_after(jiffies, timeout)) {
Jens Axboec8d1ba52020-09-14 11:07:26 -06007378 cond_resched();
Xiaoguang Wang08369242020-11-03 14:15:59 +08007379 if (sqt_spin)
7380 timeout = jiffies + sqd->sq_thread_idle;
7381 continue;
7382 }
7383
Xiaoguang Wang08369242020-11-03 14:15:59 +08007384 prepare_to_wait(&sqd->wait, &wait, TASK_INTERRUPTIBLE);
Pavel Begunkovdd432ea52021-06-26 21:40:45 +01007385 if (!io_sqd_events_pending(sqd) && !current->task_works) {
Pavel Begunkov1a924a82021-06-24 15:09:56 +01007386 bool needs_sched = true;
7387
Hao Xu724cb4f2021-04-21 23:19:11 +08007388 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list) {
Pavel Begunkovaaa9f0f2021-05-16 22:58:01 +01007389 io_ring_set_wakeup_flag(ctx);
7390
Hao Xu724cb4f2021-04-21 23:19:11 +08007391 if ((ctx->flags & IORING_SETUP_IOPOLL) &&
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01007392 !wq_list_empty(&ctx->iopoll_list)) {
Hao Xu724cb4f2021-04-21 23:19:11 +08007393 needs_sched = false;
7394 break;
7395 }
7396 if (io_sqring_entries(ctx)) {
7397 needs_sched = false;
7398 break;
7399 }
7400 }
7401
7402 if (needs_sched) {
7403 mutex_unlock(&sqd->lock);
7404 schedule();
7405 mutex_lock(&sqd->lock);
7406 }
Jens Axboe69fb2132020-09-14 11:16:23 -06007407 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list)
7408 io_ring_clear_wakeup_flag(ctx);
Jens Axboe6c271ce2019-01-10 11:22:30 -07007409 }
Xiaoguang Wang08369242020-11-03 14:15:59 +08007410
7411 finish_wait(&sqd->wait, &wait);
7412 timeout = jiffies + sqd->sq_thread_idle;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007413 }
7414
Pavel Begunkov78cc6872021-06-14 02:36:23 +01007415 io_uring_cancel_generic(true, sqd);
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007416 sqd->thread = NULL;
Jens Axboe05962f92021-03-06 13:58:48 -07007417 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list)
Jens Axboe5f3f26f2021-02-25 10:17:46 -07007418 io_ring_set_wakeup_flag(ctx);
Pavel Begunkov521d6a72021-03-11 23:29:38 +00007419 io_run_task_work();
Pavel Begunkov734551d2021-04-18 14:52:09 +01007420 mutex_unlock(&sqd->lock);
7421
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007422 complete(&sqd->exited);
7423 do_exit(0);
Jens Axboe6c271ce2019-01-10 11:22:30 -07007424}
7425
Jens Axboebda52162019-09-24 13:47:15 -06007426struct io_wait_queue {
7427 struct wait_queue_entry wq;
7428 struct io_ring_ctx *ctx;
Jens Axboe5fd46172021-08-06 14:04:31 -06007429 unsigned cq_tail;
Jens Axboebda52162019-09-24 13:47:15 -06007430 unsigned nr_timeouts;
7431};
7432
Pavel Begunkov6c503152021-01-04 20:36:36 +00007433static inline bool io_should_wake(struct io_wait_queue *iowq)
Jens Axboebda52162019-09-24 13:47:15 -06007434{
7435 struct io_ring_ctx *ctx = iowq->ctx;
Jens Axboe5fd46172021-08-06 14:04:31 -06007436 int dist = ctx->cached_cq_tail - (int) iowq->cq_tail;
Jens Axboebda52162019-09-24 13:47:15 -06007437
7438 /*
Brian Gianforcarod195a662019-12-13 03:09:50 -08007439 * Wake up if we have enough events, or if a timeout occurred since we
Jens Axboebda52162019-09-24 13:47:15 -06007440 * started waiting. For timeouts, we always want to return to userspace,
7441 * regardless of event count.
7442 */
Jens Axboe5fd46172021-08-06 14:04:31 -06007443 return dist >= 0 || atomic_read(&ctx->cq_timeouts) != iowq->nr_timeouts;
Jens Axboebda52162019-09-24 13:47:15 -06007444}
7445
7446static int io_wake_function(struct wait_queue_entry *curr, unsigned int mode,
7447 int wake_flags, void *key)
7448{
7449 struct io_wait_queue *iowq = container_of(curr, struct io_wait_queue,
7450 wq);
7451
Pavel Begunkov6c503152021-01-04 20:36:36 +00007452 /*
7453 * Cannot safely flush overflowed CQEs from here, ensure we wake up
7454 * the task, and the next invocation will do it.
7455 */
Pavel Begunkov5ed7a372021-06-14 23:37:27 +01007456 if (io_should_wake(iowq) || test_bit(0, &iowq->ctx->check_cq_overflow))
Pavel Begunkov6c503152021-01-04 20:36:36 +00007457 return autoremove_wake_function(curr, mode, wake_flags, key);
7458 return -1;
Jens Axboebda52162019-09-24 13:47:15 -06007459}
7460
Jens Axboeaf9c1a42020-09-24 13:32:18 -06007461static int io_run_task_work_sig(void)
7462{
7463 if (io_run_task_work())
7464 return 1;
7465 if (!signal_pending(current))
7466 return 0;
Jens Axboe0b8cfa92021-03-21 14:16:08 -06007467 if (test_thread_flag(TIF_NOTIFY_SIGNAL))
Jens Axboe792ee0f62020-10-22 20:17:18 -06007468 return -ERESTARTSYS;
Jens Axboeaf9c1a42020-09-24 13:32:18 -06007469 return -EINTR;
7470}
7471
Pavel Begunkoveeb60b92021-02-04 13:51:58 +00007472/* when returns >0, the caller should retry */
7473static inline int io_cqring_wait_schedule(struct io_ring_ctx *ctx,
7474 struct io_wait_queue *iowq,
7475 signed long *timeout)
7476{
7477 int ret;
7478
7479 /* make sure we run task_work before checking for signals */
7480 ret = io_run_task_work_sig();
7481 if (ret || io_should_wake(iowq))
7482 return ret;
7483 /* let the caller flush overflows, retry */
Pavel Begunkov5ed7a372021-06-14 23:37:27 +01007484 if (test_bit(0, &ctx->check_cq_overflow))
Pavel Begunkoveeb60b92021-02-04 13:51:58 +00007485 return 1;
7486
7487 *timeout = schedule_timeout(*timeout);
7488 return !*timeout ? -ETIME : 1;
7489}
7490
Jens Axboe2b188cc2019-01-07 10:46:33 -07007491/*
7492 * Wait until events become available, if we don't already have some. The
7493 * application must reap them itself, as they reside on the shared cq ring.
7494 */
7495static int io_cqring_wait(struct io_ring_ctx *ctx, int min_events,
Hao Xuc73ebb62020-11-03 10:54:37 +08007496 const sigset_t __user *sig, size_t sigsz,
7497 struct __kernel_timespec __user *uts)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007498{
Pavel Begunkov902910992021-08-09 09:07:32 -06007499 struct io_wait_queue iowq;
Hristo Venev75b28af2019-08-26 17:23:46 +00007500 struct io_rings *rings = ctx->rings;
Pavel Begunkovc1d5a222021-02-04 13:51:57 +00007501 signed long timeout = MAX_SCHEDULE_TIMEOUT;
7502 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007503
Jens Axboeb41e9852020-02-17 09:52:41 -07007504 do {
Pavel Begunkov90f67362021-08-09 20:18:12 +01007505 io_cqring_overflow_flush(ctx);
Pavel Begunkov6c503152021-01-04 20:36:36 +00007506 if (io_cqring_events(ctx) >= min_events)
Jens Axboeb41e9852020-02-17 09:52:41 -07007507 return 0;
Jens Axboe4c6e2772020-07-01 11:29:10 -06007508 if (!io_run_task_work())
Jens Axboeb41e9852020-02-17 09:52:41 -07007509 break;
Jens Axboeb41e9852020-02-17 09:52:41 -07007510 } while (1);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007511
Xiaoguang Wang44df58d2021-09-14 22:38:52 +08007512 if (uts) {
7513 struct timespec64 ts;
7514
7515 if (get_timespec64(&ts, uts))
7516 return -EFAULT;
7517 timeout = timespec64_to_jiffies(&ts);
7518 }
7519
Jens Axboe2b188cc2019-01-07 10:46:33 -07007520 if (sig) {
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01007521#ifdef CONFIG_COMPAT
7522 if (in_compat_syscall())
7523 ret = set_compat_user_sigmask((const compat_sigset_t __user *)sig,
Oleg Nesterovb7724342019-07-16 16:29:53 -07007524 sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01007525 else
7526#endif
Oleg Nesterovb7724342019-07-16 16:29:53 -07007527 ret = set_user_sigmask(sig, sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01007528
Jens Axboe2b188cc2019-01-07 10:46:33 -07007529 if (ret)
7530 return ret;
7531 }
7532
Pavel Begunkov902910992021-08-09 09:07:32 -06007533 init_waitqueue_func_entry(&iowq.wq, io_wake_function);
7534 iowq.wq.private = current;
7535 INIT_LIST_HEAD(&iowq.wq.entry);
7536 iowq.ctx = ctx;
Jens Axboebda52162019-09-24 13:47:15 -06007537 iowq.nr_timeouts = atomic_read(&ctx->cq_timeouts);
Jens Axboe5fd46172021-08-06 14:04:31 -06007538 iowq.cq_tail = READ_ONCE(ctx->rings->cq.head) + min_events;
Pavel Begunkov902910992021-08-09 09:07:32 -06007539
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02007540 trace_io_uring_cqring_wait(ctx, min_events);
Jens Axboebda52162019-09-24 13:47:15 -06007541 do {
Jens Axboeca0a2652021-03-04 17:15:48 -07007542 /* if we can't even flush overflow, don't wait for more */
Pavel Begunkov90f67362021-08-09 20:18:12 +01007543 if (!io_cqring_overflow_flush(ctx)) {
Jens Axboeca0a2652021-03-04 17:15:48 -07007544 ret = -EBUSY;
7545 break;
7546 }
Pavel Begunkov311997b2021-06-14 23:37:28 +01007547 prepare_to_wait_exclusive(&ctx->cq_wait, &iowq.wq,
Jens Axboebda52162019-09-24 13:47:15 -06007548 TASK_INTERRUPTIBLE);
Pavel Begunkoveeb60b92021-02-04 13:51:58 +00007549 ret = io_cqring_wait_schedule(ctx, &iowq, &timeout);
Pavel Begunkov311997b2021-06-14 23:37:28 +01007550 finish_wait(&ctx->cq_wait, &iowq.wq);
Jens Axboeca0a2652021-03-04 17:15:48 -07007551 cond_resched();
Pavel Begunkoveeb60b92021-02-04 13:51:58 +00007552 } while (ret > 0);
Jens Axboebda52162019-09-24 13:47:15 -06007553
Jens Axboeb7db41c2020-07-04 08:55:50 -06007554 restore_saved_sigmask_unless(ret == -EINTR);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007555
Hristo Venev75b28af2019-08-26 17:23:46 +00007556 return READ_ONCE(rings->cq.head) == READ_ONCE(rings->cq.tail) ? ret : 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007557}
7558
Pavel Begunkov9123c8f2021-06-14 02:36:20 +01007559static void io_free_page_table(void **table, size_t size)
Pavel Begunkov846a4ef2021-04-01 15:44:03 +01007560{
Pavel Begunkov9123c8f2021-06-14 02:36:20 +01007561 unsigned i, nr_tables = DIV_ROUND_UP(size, PAGE_SIZE);
Pavel Begunkov846a4ef2021-04-01 15:44:03 +01007562
7563 for (i = 0; i < nr_tables; i++)
Pavel Begunkov9123c8f2021-06-14 02:36:20 +01007564 kfree(table[i]);
7565 kfree(table);
7566}
7567
7568static void **io_alloc_page_table(size_t size)
7569{
7570 unsigned i, nr_tables = DIV_ROUND_UP(size, PAGE_SIZE);
7571 size_t init_size = size;
7572 void **table;
7573
Pavel Begunkov0bea96f2021-08-20 10:36:36 +01007574 table = kcalloc(nr_tables, sizeof(*table), GFP_KERNEL_ACCOUNT);
Pavel Begunkov9123c8f2021-06-14 02:36:20 +01007575 if (!table)
7576 return NULL;
7577
7578 for (i = 0; i < nr_tables; i++) {
Pavel Begunkov27f6b312021-06-15 13:20:13 +01007579 unsigned int this_size = min_t(size_t, size, PAGE_SIZE);
Pavel Begunkov9123c8f2021-06-14 02:36:20 +01007580
Pavel Begunkov0bea96f2021-08-20 10:36:36 +01007581 table[i] = kzalloc(this_size, GFP_KERNEL_ACCOUNT);
Pavel Begunkov9123c8f2021-06-14 02:36:20 +01007582 if (!table[i]) {
7583 io_free_page_table(table, init_size);
7584 return NULL;
7585 }
7586 size -= this_size;
7587 }
7588 return table;
Pavel Begunkov846a4ef2021-04-01 15:44:03 +01007589}
7590
Pavel Begunkov28a9fe22021-04-01 15:43:47 +01007591static void io_rsrc_node_destroy(struct io_rsrc_node *ref_node)
7592{
7593 percpu_ref_exit(&ref_node->refs);
7594 kfree(ref_node);
7595}
7596
Pavel Begunkovb9bd2be2021-08-09 09:09:47 -06007597static void io_rsrc_node_ref_zero(struct percpu_ref *ref)
7598{
7599 struct io_rsrc_node *node = container_of(ref, struct io_rsrc_node, refs);
7600 struct io_ring_ctx *ctx = node->rsrc_data->ctx;
7601 unsigned long flags;
7602 bool first_add = false;
7603
7604 spin_lock_irqsave(&ctx->rsrc_ref_lock, flags);
7605 node->done = true;
7606
7607 while (!list_empty(&ctx->rsrc_ref_list)) {
7608 node = list_first_entry(&ctx->rsrc_ref_list,
7609 struct io_rsrc_node, node);
7610 /* recycle ref nodes in order */
7611 if (!node->done)
7612 break;
7613 list_del(&node->node);
7614 first_add |= llist_add(&node->llist, &ctx->rsrc_put_llist);
7615 }
7616 spin_unlock_irqrestore(&ctx->rsrc_ref_lock, flags);
7617
7618 if (first_add)
7619 mod_delayed_work(system_wq, &ctx->rsrc_put_work, HZ);
7620}
7621
7622static struct io_rsrc_node *io_rsrc_node_alloc(struct io_ring_ctx *ctx)
7623{
7624 struct io_rsrc_node *ref_node;
7625
7626 ref_node = kzalloc(sizeof(*ref_node), GFP_KERNEL);
7627 if (!ref_node)
7628 return NULL;
7629
7630 if (percpu_ref_init(&ref_node->refs, io_rsrc_node_ref_zero,
7631 0, GFP_KERNEL)) {
7632 kfree(ref_node);
7633 return NULL;
7634 }
7635 INIT_LIST_HEAD(&ref_node->node);
7636 INIT_LIST_HEAD(&ref_node->rsrc_list);
7637 ref_node->done = false;
7638 return ref_node;
7639}
7640
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01007641static void io_rsrc_node_switch(struct io_ring_ctx *ctx,
7642 struct io_rsrc_data *data_to_kill)
Pavel Begunkov1642b442020-12-30 21:34:14 +00007643{
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01007644 WARN_ON_ONCE(!ctx->rsrc_backup_node);
7645 WARN_ON_ONCE(data_to_kill && !ctx->rsrc_node);
Pavel Begunkov82fbcfa2021-04-01 15:43:43 +01007646
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01007647 if (data_to_kill) {
7648 struct io_rsrc_node *rsrc_node = ctx->rsrc_node;
Pavel Begunkov82fbcfa2021-04-01 15:43:43 +01007649
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01007650 rsrc_node->rsrc_data = data_to_kill;
Jens Axboe4956b9e2021-08-09 07:49:41 -06007651 spin_lock_irq(&ctx->rsrc_ref_lock);
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01007652 list_add_tail(&rsrc_node->node, &ctx->rsrc_ref_list);
Jens Axboe4956b9e2021-08-09 07:49:41 -06007653 spin_unlock_irq(&ctx->rsrc_ref_lock);
Pavel Begunkov82fbcfa2021-04-01 15:43:43 +01007654
Pavel Begunkov3e942492021-04-11 01:46:34 +01007655 atomic_inc(&data_to_kill->refs);
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01007656 percpu_ref_kill(&rsrc_node->refs);
7657 ctx->rsrc_node = NULL;
7658 }
7659
7660 if (!ctx->rsrc_node) {
7661 ctx->rsrc_node = ctx->rsrc_backup_node;
7662 ctx->rsrc_backup_node = NULL;
7663 }
Pavel Begunkov1642b442020-12-30 21:34:14 +00007664}
7665
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01007666static int io_rsrc_node_switch_start(struct io_ring_ctx *ctx)
Pavel Begunkov8dd03af2021-03-19 17:22:36 +00007667{
7668 if (ctx->rsrc_backup_node)
7669 return 0;
Pavel Begunkovb895c9a2021-04-01 15:43:40 +01007670 ctx->rsrc_backup_node = io_rsrc_node_alloc(ctx);
Pavel Begunkov8dd03af2021-03-19 17:22:36 +00007671 return ctx->rsrc_backup_node ? 0 : -ENOMEM;
7672}
7673
Pavel Begunkov40ae0ff2021-04-01 15:43:44 +01007674static int io_rsrc_ref_quiesce(struct io_rsrc_data *data, struct io_ring_ctx *ctx)
Hao Xu8bad28d2021-02-19 17:19:36 +08007675{
7676 int ret;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007677
Pavel Begunkov215c3902021-04-01 15:43:48 +01007678 /* As we may drop ->uring_lock, other task may have started quiesce */
Hao Xu8bad28d2021-02-19 17:19:36 +08007679 if (data->quiesce)
7680 return -ENXIO;
7681
7682 data->quiesce = true;
Pavel Begunkov1ffc5422020-12-30 21:34:15 +00007683 do {
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01007684 ret = io_rsrc_node_switch_start(ctx);
Pavel Begunkov8dd03af2021-03-19 17:22:36 +00007685 if (ret)
Pavel Begunkovf2303b12021-02-20 18:03:49 +00007686 break;
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01007687 io_rsrc_node_switch(ctx, data);
7688
Pavel Begunkov3e942492021-04-11 01:46:34 +01007689 /* kill initial ref, already quiesced if zero */
7690 if (atomic_dec_and_test(&data->refs))
7691 break;
Jens Axboec018db42021-08-09 08:15:50 -06007692 mutex_unlock(&ctx->uring_lock);
Hao Xu8bad28d2021-02-19 17:19:36 +08007693 flush_delayed_work(&ctx->rsrc_put_work);
Pavel Begunkov1ffc5422020-12-30 21:34:15 +00007694 ret = wait_for_completion_interruptible(&data->done);
Jens Axboec018db42021-08-09 08:15:50 -06007695 if (!ret) {
7696 mutex_lock(&ctx->uring_lock);
Pavel Begunkov1ffc5422020-12-30 21:34:15 +00007697 break;
Jens Axboec018db42021-08-09 08:15:50 -06007698 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07007699
Pavel Begunkov3e942492021-04-11 01:46:34 +01007700 atomic_inc(&data->refs);
7701 /* wait for all works potentially completing data->done */
7702 flush_delayed_work(&ctx->rsrc_put_work);
Jens Axboecb5e1b82021-02-25 07:37:35 -07007703 reinit_completion(&data->done);
Pavel Begunkov8dd03af2021-03-19 17:22:36 +00007704
Hao Xu8bad28d2021-02-19 17:19:36 +08007705 ret = io_run_task_work_sig();
7706 mutex_lock(&ctx->uring_lock);
Pavel Begunkovf2303b12021-02-20 18:03:49 +00007707 } while (ret >= 0);
Hao Xu8bad28d2021-02-19 17:19:36 +08007708 data->quiesce = false;
7709
Hao Xu8bad28d2021-02-19 17:19:36 +08007710 return ret;
Bijan Mottahedehd7954b22021-01-15 17:37:50 +00007711}
7712
Pavel Begunkov2d091d62021-06-14 02:36:21 +01007713static u64 *io_get_tag_slot(struct io_rsrc_data *data, unsigned int idx)
7714{
7715 unsigned int off = idx & IO_RSRC_TAG_TABLE_MASK;
7716 unsigned int table_idx = idx >> IO_RSRC_TAG_TABLE_SHIFT;
7717
7718 return &data->tags[table_idx][off];
7719}
7720
Pavel Begunkov44b31f22021-04-25 14:32:16 +01007721static void io_rsrc_data_free(struct io_rsrc_data *data)
7722{
Pavel Begunkov2d091d62021-06-14 02:36:21 +01007723 size_t size = data->nr * sizeof(data->tags[0][0]);
7724
7725 if (data->tags)
7726 io_free_page_table((void **)data->tags, size);
Pavel Begunkov44b31f22021-04-25 14:32:16 +01007727 kfree(data);
7728}
7729
Pavel Begunkovd878c812021-06-14 02:36:18 +01007730static int io_rsrc_data_alloc(struct io_ring_ctx *ctx, rsrc_put_fn *do_put,
7731 u64 __user *utags, unsigned nr,
7732 struct io_rsrc_data **pdata)
Bijan Mottahedeh1ad555c2021-01-15 17:37:51 +00007733{
Pavel Begunkovb895c9a2021-04-01 15:43:40 +01007734 struct io_rsrc_data *data;
Pavel Begunkov2d091d62021-06-14 02:36:21 +01007735 int ret = -ENOMEM;
Pavel Begunkovd878c812021-06-14 02:36:18 +01007736 unsigned i;
Bijan Mottahedeh1ad555c2021-01-15 17:37:51 +00007737
7738 data = kzalloc(sizeof(*data), GFP_KERNEL);
7739 if (!data)
Pavel Begunkovd878c812021-06-14 02:36:18 +01007740 return -ENOMEM;
Pavel Begunkov2d091d62021-06-14 02:36:21 +01007741 data->tags = (u64 **)io_alloc_page_table(nr * sizeof(data->tags[0][0]));
Pavel Begunkovb60c8dc2021-04-25 14:32:18 +01007742 if (!data->tags) {
7743 kfree(data);
Pavel Begunkovd878c812021-06-14 02:36:18 +01007744 return -ENOMEM;
7745 }
Pavel Begunkov2d091d62021-06-14 02:36:21 +01007746
7747 data->nr = nr;
7748 data->ctx = ctx;
7749 data->do_put = do_put;
Pavel Begunkovd878c812021-06-14 02:36:18 +01007750 if (utags) {
Pavel Begunkov2d091d62021-06-14 02:36:21 +01007751 ret = -EFAULT;
Pavel Begunkovd878c812021-06-14 02:36:18 +01007752 for (i = 0; i < nr; i++) {
Colin Ian Kingfdd1dc32021-06-15 14:00:11 +01007753 u64 *tag_slot = io_get_tag_slot(data, i);
7754
7755 if (copy_from_user(tag_slot, &utags[i],
7756 sizeof(*tag_slot)))
Pavel Begunkov2d091d62021-06-14 02:36:21 +01007757 goto fail;
Pavel Begunkovd878c812021-06-14 02:36:18 +01007758 }
Pavel Begunkovb60c8dc2021-04-25 14:32:18 +01007759 }
7760
Pavel Begunkov3e942492021-04-11 01:46:34 +01007761 atomic_set(&data->refs, 1);
Bijan Mottahedeh1ad555c2021-01-15 17:37:51 +00007762 init_completion(&data->done);
Pavel Begunkovd878c812021-06-14 02:36:18 +01007763 *pdata = data;
7764 return 0;
Pavel Begunkov2d091d62021-06-14 02:36:21 +01007765fail:
7766 io_rsrc_data_free(data);
7767 return ret;
Bijan Mottahedeh1ad555c2021-01-15 17:37:51 +00007768}
7769
Pavel Begunkov9123c8f2021-06-14 02:36:20 +01007770static bool io_alloc_file_tables(struct io_file_table *table, unsigned nr_files)
7771{
Pavel Begunkov0bea96f2021-08-20 10:36:36 +01007772 table->files = kvcalloc(nr_files, sizeof(table->files[0]),
7773 GFP_KERNEL_ACCOUNT);
Pavel Begunkov9123c8f2021-06-14 02:36:20 +01007774 return !!table->files;
7775}
7776
Pavel Begunkov042b0d82021-08-09 13:04:01 +01007777static void io_free_file_tables(struct io_file_table *table)
Pavel Begunkov9123c8f2021-06-14 02:36:20 +01007778{
Pavel Begunkov042b0d82021-08-09 13:04:01 +01007779 kvfree(table->files);
Pavel Begunkov9123c8f2021-06-14 02:36:20 +01007780 table->files = NULL;
7781}
7782
Jens Axboe2b188cc2019-01-07 10:46:33 -07007783static void __io_sqe_files_unregister(struct io_ring_ctx *ctx)
7784{
7785#if defined(CONFIG_UNIX)
7786 if (ctx->ring_sock) {
7787 struct sock *sock = ctx->ring_sock->sk;
7788 struct sk_buff *skb;
7789
7790 while ((skb = skb_dequeue(&sock->sk_receive_queue)) != NULL)
7791 kfree_skb(skb);
7792 }
7793#else
7794 int i;
7795
7796 for (i = 0; i < ctx->nr_user_files; i++) {
7797 struct file *file;
7798
7799 file = io_file_from_index(ctx, i);
7800 if (file)
7801 fput(file);
7802 }
7803#endif
Pavel Begunkov042b0d82021-08-09 13:04:01 +01007804 io_free_file_tables(&ctx->file_table);
Pavel Begunkov44b31f22021-04-25 14:32:16 +01007805 io_rsrc_data_free(ctx->file_data);
Pavel Begunkovfff4db72021-04-25 14:32:15 +01007806 ctx->file_data = NULL;
7807 ctx->nr_user_files = 0;
Bijan Mottahedeh1ad555c2021-01-15 17:37:51 +00007808}
7809
Bijan Mottahedehd7954b22021-01-15 17:37:50 +00007810static int io_sqe_files_unregister(struct io_ring_ctx *ctx)
7811{
Bijan Mottahedehd7954b22021-01-15 17:37:50 +00007812 int ret;
7813
Pavel Begunkov08480402021-04-13 02:58:38 +01007814 if (!ctx->file_data)
Bijan Mottahedehd7954b22021-01-15 17:37:50 +00007815 return -ENXIO;
Pavel Begunkov08480402021-04-13 02:58:38 +01007816 ret = io_rsrc_ref_quiesce(ctx->file_data, ctx);
7817 if (!ret)
7818 __io_sqe_files_unregister(ctx);
7819 return ret;
Jens Axboe6b063142019-01-10 22:13:58 -07007820}
7821
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007822static void io_sq_thread_unpark(struct io_sq_data *sqd)
Pavel Begunkov09a6f4e2021-03-14 20:57:10 +00007823 __releases(&sqd->lock)
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007824{
Pavel Begunkov521d6a72021-03-11 23:29:38 +00007825 WARN_ON_ONCE(sqd->thread == current);
7826
Pavel Begunkov9e138a42021-03-14 20:57:12 +00007827 /*
7828 * Do the dance but not conditional clear_bit() because it'd race with
7829 * other threads incrementing park_pending and setting the bit.
7830 */
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007831 clear_bit(IO_SQ_THREAD_SHOULD_PARK, &sqd->state);
Pavel Begunkov9e138a42021-03-14 20:57:12 +00007832 if (atomic_dec_return(&sqd->park_pending))
7833 set_bit(IO_SQ_THREAD_SHOULD_PARK, &sqd->state);
Pavel Begunkov09a6f4e2021-03-14 20:57:10 +00007834 mutex_unlock(&sqd->lock);
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007835}
7836
Jens Axboe86e0d672021-03-05 08:44:39 -07007837static void io_sq_thread_park(struct io_sq_data *sqd)
Pavel Begunkov09a6f4e2021-03-14 20:57:10 +00007838 __acquires(&sqd->lock)
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007839{
Pavel Begunkov521d6a72021-03-11 23:29:38 +00007840 WARN_ON_ONCE(sqd->thread == current);
7841
Pavel Begunkov9e138a42021-03-14 20:57:12 +00007842 atomic_inc(&sqd->park_pending);
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007843 set_bit(IO_SQ_THREAD_SHOULD_PARK, &sqd->state);
Pavel Begunkov09a6f4e2021-03-14 20:57:10 +00007844 mutex_lock(&sqd->lock);
Jens Axboe05962f92021-03-06 13:58:48 -07007845 if (sqd->thread)
Jens Axboe86e0d672021-03-05 08:44:39 -07007846 wake_up_process(sqd->thread);
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007847}
7848
7849static void io_sq_thread_stop(struct io_sq_data *sqd)
7850{
Pavel Begunkov521d6a72021-03-11 23:29:38 +00007851 WARN_ON_ONCE(sqd->thread == current);
Pavel Begunkov88885f62021-04-11 01:46:38 +01007852 WARN_ON_ONCE(test_bit(IO_SQ_THREAD_SHOULD_STOP, &sqd->state));
Pavel Begunkov521d6a72021-03-11 23:29:38 +00007853
Jens Axboe05962f92021-03-06 13:58:48 -07007854 set_bit(IO_SQ_THREAD_SHOULD_STOP, &sqd->state);
Pavel Begunkov88885f62021-04-11 01:46:38 +01007855 mutex_lock(&sqd->lock);
Jens Axboee8f98f242021-03-09 16:32:13 -07007856 if (sqd->thread)
7857 wake_up_process(sqd->thread);
Pavel Begunkov09a6f4e2021-03-14 20:57:10 +00007858 mutex_unlock(&sqd->lock);
Jens Axboe05962f92021-03-06 13:58:48 -07007859 wait_for_completion(&sqd->exited);
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007860}
7861
Jens Axboe534ca6d2020-09-02 13:52:19 -06007862static void io_put_sq_data(struct io_sq_data *sqd)
Jens Axboe6c271ce2019-01-10 11:22:30 -07007863{
Jens Axboe534ca6d2020-09-02 13:52:19 -06007864 if (refcount_dec_and_test(&sqd->refs)) {
Pavel Begunkov9e138a42021-03-14 20:57:12 +00007865 WARN_ON_ONCE(atomic_read(&sqd->park_pending));
7866
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007867 io_sq_thread_stop(sqd);
7868 kfree(sqd);
7869 }
7870}
7871
7872static void io_sq_thread_finish(struct io_ring_ctx *ctx)
7873{
7874 struct io_sq_data *sqd = ctx->sq_data;
7875
7876 if (sqd) {
Jens Axboe05962f92021-03-06 13:58:48 -07007877 io_sq_thread_park(sqd);
Pavel Begunkov521d6a72021-03-11 23:29:38 +00007878 list_del_init(&ctx->sqd_list);
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007879 io_sqd_update_thread_idle(sqd);
Jens Axboe05962f92021-03-06 13:58:48 -07007880 io_sq_thread_unpark(sqd);
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007881
7882 io_put_sq_data(sqd);
7883 ctx->sq_data = NULL;
Jens Axboe534ca6d2020-09-02 13:52:19 -06007884 }
7885}
7886
Jens Axboeaa061652020-09-02 14:50:27 -06007887static struct io_sq_data *io_attach_sq_data(struct io_uring_params *p)
7888{
7889 struct io_ring_ctx *ctx_attach;
7890 struct io_sq_data *sqd;
7891 struct fd f;
7892
7893 f = fdget(p->wq_fd);
7894 if (!f.file)
7895 return ERR_PTR(-ENXIO);
7896 if (f.file->f_op != &io_uring_fops) {
7897 fdput(f);
7898 return ERR_PTR(-EINVAL);
7899 }
7900
7901 ctx_attach = f.file->private_data;
7902 sqd = ctx_attach->sq_data;
7903 if (!sqd) {
7904 fdput(f);
7905 return ERR_PTR(-EINVAL);
7906 }
Jens Axboe5c2469e2021-03-11 10:17:56 -07007907 if (sqd->task_tgid != current->tgid) {
7908 fdput(f);
7909 return ERR_PTR(-EPERM);
7910 }
Jens Axboeaa061652020-09-02 14:50:27 -06007911
7912 refcount_inc(&sqd->refs);
7913 fdput(f);
7914 return sqd;
7915}
7916
Pavel Begunkov26984fb2021-03-11 23:29:37 +00007917static struct io_sq_data *io_get_sq_data(struct io_uring_params *p,
7918 bool *attached)
Jens Axboe534ca6d2020-09-02 13:52:19 -06007919{
7920 struct io_sq_data *sqd;
7921
Pavel Begunkov26984fb2021-03-11 23:29:37 +00007922 *attached = false;
Jens Axboe5c2469e2021-03-11 10:17:56 -07007923 if (p->flags & IORING_SETUP_ATTACH_WQ) {
7924 sqd = io_attach_sq_data(p);
Pavel Begunkov26984fb2021-03-11 23:29:37 +00007925 if (!IS_ERR(sqd)) {
7926 *attached = true;
Jens Axboe5c2469e2021-03-11 10:17:56 -07007927 return sqd;
Pavel Begunkov26984fb2021-03-11 23:29:37 +00007928 }
Jens Axboe5c2469e2021-03-11 10:17:56 -07007929 /* fall through for EPERM case, setup new sqd/task */
7930 if (PTR_ERR(sqd) != -EPERM)
7931 return sqd;
7932 }
Jens Axboeaa061652020-09-02 14:50:27 -06007933
Jens Axboe534ca6d2020-09-02 13:52:19 -06007934 sqd = kzalloc(sizeof(*sqd), GFP_KERNEL);
7935 if (!sqd)
7936 return ERR_PTR(-ENOMEM);
7937
Pavel Begunkov9e138a42021-03-14 20:57:12 +00007938 atomic_set(&sqd->park_pending, 0);
Jens Axboe534ca6d2020-09-02 13:52:19 -06007939 refcount_set(&sqd->refs, 1);
Jens Axboe69fb2132020-09-14 11:16:23 -06007940 INIT_LIST_HEAD(&sqd->ctx_list);
Pavel Begunkov09a6f4e2021-03-14 20:57:10 +00007941 mutex_init(&sqd->lock);
Jens Axboe534ca6d2020-09-02 13:52:19 -06007942 init_waitqueue_head(&sqd->wait);
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007943 init_completion(&sqd->exited);
Jens Axboe534ca6d2020-09-02 13:52:19 -06007944 return sqd;
7945}
7946
Jens Axboe6b063142019-01-10 22:13:58 -07007947#if defined(CONFIG_UNIX)
Jens Axboe6b063142019-01-10 22:13:58 -07007948/*
7949 * Ensure the UNIX gc is aware of our file set, so we are certain that
7950 * the io_uring can be safely unregistered on process exit, even if we have
7951 * loops in the file referencing.
7952 */
7953static int __io_sqe_files_scm(struct io_ring_ctx *ctx, int nr, int offset)
7954{
7955 struct sock *sk = ctx->ring_sock->sk;
7956 struct scm_fp_list *fpl;
7957 struct sk_buff *skb;
Jens Axboe08a45172019-10-03 08:11:03 -06007958 int i, nr_files;
Jens Axboe6b063142019-01-10 22:13:58 -07007959
Jens Axboe6b063142019-01-10 22:13:58 -07007960 fpl = kzalloc(sizeof(*fpl), GFP_KERNEL);
7961 if (!fpl)
7962 return -ENOMEM;
7963
7964 skb = alloc_skb(0, GFP_KERNEL);
7965 if (!skb) {
7966 kfree(fpl);
7967 return -ENOMEM;
7968 }
7969
7970 skb->sk = sk;
Jens Axboe6b063142019-01-10 22:13:58 -07007971
Jens Axboe08a45172019-10-03 08:11:03 -06007972 nr_files = 0;
Jens Axboe62e398b2021-02-21 16:19:37 -07007973 fpl->user = get_uid(current_user());
Jens Axboe6b063142019-01-10 22:13:58 -07007974 for (i = 0; i < nr; i++) {
Jens Axboe65e19f52019-10-26 07:20:21 -06007975 struct file *file = io_file_from_index(ctx, i + offset);
7976
7977 if (!file)
Jens Axboe08a45172019-10-03 08:11:03 -06007978 continue;
Jens Axboe65e19f52019-10-26 07:20:21 -06007979 fpl->fp[nr_files] = get_file(file);
Jens Axboe08a45172019-10-03 08:11:03 -06007980 unix_inflight(fpl->user, fpl->fp[nr_files]);
7981 nr_files++;
Jens Axboe6b063142019-01-10 22:13:58 -07007982 }
7983
Jens Axboe08a45172019-10-03 08:11:03 -06007984 if (nr_files) {
7985 fpl->max = SCM_MAX_FD;
7986 fpl->count = nr_files;
7987 UNIXCB(skb).fp = fpl;
Jens Axboe05f3fb32019-12-09 11:22:50 -07007988 skb->destructor = unix_destruct_scm;
Jens Axboe08a45172019-10-03 08:11:03 -06007989 refcount_add(skb->truesize, &sk->sk_wmem_alloc);
7990 skb_queue_head(&sk->sk_receive_queue, skb);
Jens Axboe6b063142019-01-10 22:13:58 -07007991
Jens Axboe08a45172019-10-03 08:11:03 -06007992 for (i = 0; i < nr_files; i++)
7993 fput(fpl->fp[i]);
7994 } else {
7995 kfree_skb(skb);
7996 kfree(fpl);
7997 }
Jens Axboe6b063142019-01-10 22:13:58 -07007998
7999 return 0;
8000}
8001
8002/*
8003 * If UNIX sockets are enabled, fd passing can cause a reference cycle which
8004 * causes regular reference counting to break down. We rely on the UNIX
8005 * garbage collection to take care of this problem for us.
8006 */
8007static int io_sqe_files_scm(struct io_ring_ctx *ctx)
8008{
8009 unsigned left, total;
8010 int ret = 0;
8011
8012 total = 0;
8013 left = ctx->nr_user_files;
8014 while (left) {
8015 unsigned this_files = min_t(unsigned, left, SCM_MAX_FD);
Jens Axboe6b063142019-01-10 22:13:58 -07008016
8017 ret = __io_sqe_files_scm(ctx, this_files, total);
8018 if (ret)
8019 break;
8020 left -= this_files;
8021 total += this_files;
8022 }
8023
8024 if (!ret)
8025 return 0;
8026
8027 while (total < ctx->nr_user_files) {
Jens Axboe65e19f52019-10-26 07:20:21 -06008028 struct file *file = io_file_from_index(ctx, total);
8029
8030 if (file)
8031 fput(file);
Jens Axboe6b063142019-01-10 22:13:58 -07008032 total++;
8033 }
8034
8035 return ret;
8036}
8037#else
8038static int io_sqe_files_scm(struct io_ring_ctx *ctx)
8039{
8040 return 0;
8041}
8042#endif
8043
Pavel Begunkov47e90392021-04-01 15:43:56 +01008044static void io_rsrc_file_put(struct io_ring_ctx *ctx, struct io_rsrc_put *prsrc)
Jens Axboec3a31e62019-10-03 13:59:56 -06008045{
Bijan Mottahedeh50238532021-01-15 17:37:45 +00008046 struct file *file = prsrc->file;
Jens Axboec3a31e62019-10-03 13:59:56 -06008047#if defined(CONFIG_UNIX)
Jens Axboec3a31e62019-10-03 13:59:56 -06008048 struct sock *sock = ctx->ring_sock->sk;
8049 struct sk_buff_head list, *head = &sock->sk_receive_queue;
8050 struct sk_buff *skb;
8051 int i;
8052
8053 __skb_queue_head_init(&list);
8054
8055 /*
8056 * Find the skb that holds this file in its SCM_RIGHTS. When found,
8057 * remove this entry and rearrange the file array.
8058 */
8059 skb = skb_dequeue(head);
8060 while (skb) {
8061 struct scm_fp_list *fp;
8062
8063 fp = UNIXCB(skb).fp;
8064 for (i = 0; i < fp->count; i++) {
8065 int left;
8066
8067 if (fp->fp[i] != file)
8068 continue;
8069
8070 unix_notinflight(fp->user, fp->fp[i]);
8071 left = fp->count - 1 - i;
8072 if (left) {
8073 memmove(&fp->fp[i], &fp->fp[i + 1],
8074 left * sizeof(struct file *));
8075 }
8076 fp->count--;
8077 if (!fp->count) {
8078 kfree_skb(skb);
8079 skb = NULL;
8080 } else {
8081 __skb_queue_tail(&list, skb);
8082 }
8083 fput(file);
8084 file = NULL;
8085 break;
8086 }
8087
8088 if (!file)
8089 break;
8090
8091 __skb_queue_tail(&list, skb);
8092
8093 skb = skb_dequeue(head);
8094 }
8095
8096 if (skb_peek(&list)) {
8097 spin_lock_irq(&head->lock);
8098 while ((skb = __skb_dequeue(&list)) != NULL)
8099 __skb_queue_tail(head, skb);
8100 spin_unlock_irq(&head->lock);
8101 }
8102#else
Jens Axboe05f3fb32019-12-09 11:22:50 -07008103 fput(file);
Jens Axboec3a31e62019-10-03 13:59:56 -06008104#endif
8105}
8106
Pavel Begunkovb895c9a2021-04-01 15:43:40 +01008107static void __io_rsrc_put_work(struct io_rsrc_node *ref_node)
Jens Axboe05f3fb32019-12-09 11:22:50 -07008108{
Pavel Begunkovb895c9a2021-04-01 15:43:40 +01008109 struct io_rsrc_data *rsrc_data = ref_node->rsrc_data;
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00008110 struct io_ring_ctx *ctx = rsrc_data->ctx;
8111 struct io_rsrc_put *prsrc, *tmp;
Xiaoguang Wang05589552020-03-31 14:05:18 +08008112
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00008113 list_for_each_entry_safe(prsrc, tmp, &ref_node->rsrc_list, list) {
8114 list_del(&prsrc->list);
Pavel Begunkovb60c8dc2021-04-25 14:32:18 +01008115
8116 if (prsrc->tag) {
8117 bool lock_ring = ctx->flags & IORING_SETUP_IOPOLL;
Pavel Begunkovb60c8dc2021-04-25 14:32:18 +01008118
8119 io_ring_submit_lock(ctx, lock_ring);
Jens Axboe79ebeae2021-08-10 15:18:27 -06008120 spin_lock(&ctx->completion_lock);
Pavel Begunkovb60c8dc2021-04-25 14:32:18 +01008121 io_cqring_fill_event(ctx, prsrc->tag, 0, 0);
Pavel Begunkov2840f712021-04-27 16:13:51 +01008122 ctx->cq_extra++;
Pavel Begunkovb60c8dc2021-04-25 14:32:18 +01008123 io_commit_cqring(ctx);
Jens Axboe79ebeae2021-08-10 15:18:27 -06008124 spin_unlock(&ctx->completion_lock);
Pavel Begunkovb60c8dc2021-04-25 14:32:18 +01008125 io_cqring_ev_posted(ctx);
8126 io_ring_submit_unlock(ctx, lock_ring);
8127 }
8128
Pavel Begunkov40ae0ff2021-04-01 15:43:44 +01008129 rsrc_data->do_put(ctx, prsrc);
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00008130 kfree(prsrc);
Jens Axboe05f3fb32019-12-09 11:22:50 -07008131 }
8132
Pavel Begunkov28a9fe22021-04-01 15:43:47 +01008133 io_rsrc_node_destroy(ref_node);
Pavel Begunkov3e942492021-04-11 01:46:34 +01008134 if (atomic_dec_and_test(&rsrc_data->refs))
8135 complete(&rsrc_data->done);
Jens Axboe05f3fb32019-12-09 11:22:50 -07008136}
8137
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00008138static void io_rsrc_put_work(struct work_struct *work)
Jens Axboe4a38aed22020-05-14 17:21:15 -06008139{
8140 struct io_ring_ctx *ctx;
8141 struct llist_node *node;
8142
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00008143 ctx = container_of(work, struct io_ring_ctx, rsrc_put_work.work);
8144 node = llist_del_all(&ctx->rsrc_put_llist);
Jens Axboe4a38aed22020-05-14 17:21:15 -06008145
8146 while (node) {
Pavel Begunkovb895c9a2021-04-01 15:43:40 +01008147 struct io_rsrc_node *ref_node;
Jens Axboe4a38aed22020-05-14 17:21:15 -06008148 struct llist_node *next = node->next;
8149
Pavel Begunkovb895c9a2021-04-01 15:43:40 +01008150 ref_node = llist_entry(node, struct io_rsrc_node, llist);
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00008151 __io_rsrc_put_work(ref_node);
Jens Axboe4a38aed22020-05-14 17:21:15 -06008152 node = next;
8153 }
8154}
8155
Jens Axboe05f3fb32019-12-09 11:22:50 -07008156static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
Pavel Begunkov792e3582021-04-25 14:32:21 +01008157 unsigned nr_args, u64 __user *tags)
Jens Axboe05f3fb32019-12-09 11:22:50 -07008158{
8159 __s32 __user *fds = (__s32 __user *) arg;
Jens Axboe05f3fb32019-12-09 11:22:50 -07008160 struct file *file;
Pavel Begunkovf3baed32021-04-01 15:43:42 +01008161 int fd, ret;
Pavel Begunkov846a4ef2021-04-01 15:44:03 +01008162 unsigned i;
Jens Axboe05f3fb32019-12-09 11:22:50 -07008163
8164 if (ctx->file_data)
8165 return -EBUSY;
8166 if (!nr_args)
8167 return -EINVAL;
8168 if (nr_args > IORING_MAX_FIXED_FILES)
8169 return -EMFILE;
Pavel Begunkov3a1b8a42021-08-20 10:36:35 +01008170 if (nr_args > rlimit(RLIMIT_NOFILE))
8171 return -EMFILE;
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01008172 ret = io_rsrc_node_switch_start(ctx);
Pavel Begunkovf3baed32021-04-01 15:43:42 +01008173 if (ret)
8174 return ret;
Pavel Begunkovd878c812021-06-14 02:36:18 +01008175 ret = io_rsrc_data_alloc(ctx, io_rsrc_file_put, tags, nr_args,
8176 &ctx->file_data);
8177 if (ret)
8178 return ret;
Jens Axboe05f3fb32019-12-09 11:22:50 -07008179
Pavel Begunkovf3baed32021-04-01 15:43:42 +01008180 ret = -ENOMEM;
Pavel Begunkovaeca2412021-04-11 01:46:37 +01008181 if (!io_alloc_file_tables(&ctx->file_table, nr_args))
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01008182 goto out_free;
Jens Axboe05f3fb32019-12-09 11:22:50 -07008183
Jens Axboe05f3fb32019-12-09 11:22:50 -07008184 for (i = 0; i < nr_args; i++, ctx->nr_user_files++) {
Pavel Begunkovd878c812021-06-14 02:36:18 +01008185 if (copy_from_user(&fd, &fds[i], sizeof(fd))) {
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01008186 ret = -EFAULT;
8187 goto out_fput;
Jens Axboe05f3fb32019-12-09 11:22:50 -07008188 }
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01008189 /* allow sparse sets */
Pavel Begunkov792e3582021-04-25 14:32:21 +01008190 if (fd == -1) {
8191 ret = -EINVAL;
Pavel Begunkov2d091d62021-06-14 02:36:21 +01008192 if (unlikely(*io_get_tag_slot(ctx->file_data, i)))
Pavel Begunkov792e3582021-04-25 14:32:21 +01008193 goto out_fput;
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01008194 continue;
Pavel Begunkov792e3582021-04-25 14:32:21 +01008195 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07008196
Jens Axboe05f3fb32019-12-09 11:22:50 -07008197 file = fget(fd);
Jens Axboe05f3fb32019-12-09 11:22:50 -07008198 ret = -EBADF;
Pavel Begunkov792e3582021-04-25 14:32:21 +01008199 if (unlikely(!file))
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01008200 goto out_fput;
Jens Axboe05f3fb32019-12-09 11:22:50 -07008201
8202 /*
8203 * Don't allow io_uring instances to be registered. If UNIX
8204 * isn't enabled, then this causes a reference cycle and this
8205 * instance can never get freed. If UNIX is enabled we'll
8206 * handle it just fine, but there's still no point in allowing
8207 * a ring fd as it doesn't support regular read/write anyway.
8208 */
8209 if (file->f_op == &io_uring_fops) {
8210 fput(file);
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01008211 goto out_fput;
Jens Axboe05f3fb32019-12-09 11:22:50 -07008212 }
Pavel Begunkovaeca2412021-04-11 01:46:37 +01008213 io_fixed_file_set(io_fixed_file_slot(&ctx->file_table, i), file);
Jens Axboe05f3fb32019-12-09 11:22:50 -07008214 }
8215
Jens Axboe05f3fb32019-12-09 11:22:50 -07008216 ret = io_sqe_files_scm(ctx);
Xiaoguang Wang05589552020-03-31 14:05:18 +08008217 if (ret) {
Pavel Begunkov08480402021-04-13 02:58:38 +01008218 __io_sqe_files_unregister(ctx);
Xiaoguang Wang05589552020-03-31 14:05:18 +08008219 return ret;
8220 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07008221
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01008222 io_rsrc_node_switch(ctx, NULL);
Jens Axboe05f3fb32019-12-09 11:22:50 -07008223 return ret;
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01008224out_fput:
8225 for (i = 0; i < ctx->nr_user_files; i++) {
8226 file = io_file_from_index(ctx, i);
8227 if (file)
8228 fput(file);
8229 }
Pavel Begunkov042b0d82021-08-09 13:04:01 +01008230 io_free_file_tables(&ctx->file_table);
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01008231 ctx->nr_user_files = 0;
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01008232out_free:
Pavel Begunkov44b31f22021-04-25 14:32:16 +01008233 io_rsrc_data_free(ctx->file_data);
Jens Axboe55cbc252020-10-14 07:35:57 -06008234 ctx->file_data = NULL;
Jens Axboe05f3fb32019-12-09 11:22:50 -07008235 return ret;
8236}
8237
Jens Axboec3a31e62019-10-03 13:59:56 -06008238static int io_sqe_file_register(struct io_ring_ctx *ctx, struct file *file,
8239 int index)
8240{
8241#if defined(CONFIG_UNIX)
8242 struct sock *sock = ctx->ring_sock->sk;
8243 struct sk_buff_head *head = &sock->sk_receive_queue;
8244 struct sk_buff *skb;
8245
8246 /*
8247 * See if we can merge this file into an existing skb SCM_RIGHTS
8248 * file set. If there's no room, fall back to allocating a new skb
8249 * and filling it in.
8250 */
8251 spin_lock_irq(&head->lock);
8252 skb = skb_peek(head);
8253 if (skb) {
8254 struct scm_fp_list *fpl = UNIXCB(skb).fp;
8255
8256 if (fpl->count < SCM_MAX_FD) {
8257 __skb_unlink(skb, head);
8258 spin_unlock_irq(&head->lock);
8259 fpl->fp[fpl->count] = get_file(file);
8260 unix_inflight(fpl->user, fpl->fp[fpl->count]);
8261 fpl->count++;
8262 spin_lock_irq(&head->lock);
8263 __skb_queue_head(head, skb);
8264 } else {
8265 skb = NULL;
8266 }
8267 }
8268 spin_unlock_irq(&head->lock);
8269
8270 if (skb) {
8271 fput(file);
8272 return 0;
8273 }
8274
8275 return __io_sqe_files_scm(ctx, 1, index);
8276#else
8277 return 0;
8278#endif
8279}
8280
Pavel Begunkov9c7b0ba2021-09-14 16:12:52 +01008281static int io_queue_rsrc_removal(struct io_rsrc_data *data, unsigned idx,
8282 struct io_rsrc_node *node, void *rsrc)
8283{
8284 struct io_rsrc_put *prsrc;
8285
8286 prsrc = kzalloc(sizeof(*prsrc), GFP_KERNEL);
8287 if (!prsrc)
8288 return -ENOMEM;
8289
8290 prsrc->tag = *io_get_tag_slot(data, idx);
8291 prsrc->rsrc = rsrc;
8292 list_add(&prsrc->list, &node->rsrc_list);
8293 return 0;
8294}
8295
Pavel Begunkovb9445592021-08-25 12:25:45 +01008296static int io_install_fixed_file(struct io_kiocb *req, struct file *file,
8297 unsigned int issue_flags, u32 slot_index)
8298{
8299 struct io_ring_ctx *ctx = req->ctx;
8300 bool force_nonblock = issue_flags & IO_URING_F_NONBLOCK;
Pavel Begunkov9c7b0ba2021-09-14 16:12:52 +01008301 bool needs_switch = false;
Pavel Begunkovb9445592021-08-25 12:25:45 +01008302 struct io_fixed_file *file_slot;
8303 int ret = -EBADF;
8304
8305 io_ring_submit_lock(ctx, !force_nonblock);
8306 if (file->f_op == &io_uring_fops)
8307 goto err;
8308 ret = -ENXIO;
8309 if (!ctx->file_data)
8310 goto err;
8311 ret = -EINVAL;
8312 if (slot_index >= ctx->nr_user_files)
8313 goto err;
8314
8315 slot_index = array_index_nospec(slot_index, ctx->nr_user_files);
8316 file_slot = io_fixed_file_slot(&ctx->file_table, slot_index);
Pavel Begunkov9c7b0ba2021-09-14 16:12:52 +01008317
8318 if (file_slot->file_ptr) {
8319 struct file *old_file;
8320
8321 ret = io_rsrc_node_switch_start(ctx);
8322 if (ret)
8323 goto err;
8324
8325 old_file = (struct file *)(file_slot->file_ptr & FFS_MASK);
8326 ret = io_queue_rsrc_removal(ctx->file_data, slot_index,
8327 ctx->rsrc_node, old_file);
8328 if (ret)
8329 goto err;
8330 file_slot->file_ptr = 0;
8331 needs_switch = true;
8332 }
Pavel Begunkovb9445592021-08-25 12:25:45 +01008333
8334 *io_get_tag_slot(ctx->file_data, slot_index) = 0;
8335 io_fixed_file_set(file_slot, file);
8336 ret = io_sqe_file_register(ctx, file, slot_index);
8337 if (ret) {
8338 file_slot->file_ptr = 0;
8339 goto err;
8340 }
8341
8342 ret = 0;
8343err:
Pavel Begunkov9c7b0ba2021-09-14 16:12:52 +01008344 if (needs_switch)
8345 io_rsrc_node_switch(ctx, ctx->file_data);
Pavel Begunkovb9445592021-08-25 12:25:45 +01008346 io_ring_submit_unlock(ctx, !force_nonblock);
8347 if (ret)
8348 fput(file);
8349 return ret;
8350}
8351
Pavel Begunkov7df778b2021-09-24 20:04:29 +01008352static int io_close_fixed(struct io_kiocb *req, unsigned int issue_flags)
8353{
8354 unsigned int offset = req->close.file_slot - 1;
8355 struct io_ring_ctx *ctx = req->ctx;
8356 struct io_fixed_file *file_slot;
8357 struct file *file;
8358 int ret, i;
8359
8360 io_ring_submit_lock(ctx, !(issue_flags & IO_URING_F_NONBLOCK));
8361 ret = -ENXIO;
8362 if (unlikely(!ctx->file_data))
8363 goto out;
8364 ret = -EINVAL;
8365 if (offset >= ctx->nr_user_files)
8366 goto out;
8367 ret = io_rsrc_node_switch_start(ctx);
8368 if (ret)
8369 goto out;
8370
8371 i = array_index_nospec(offset, ctx->nr_user_files);
8372 file_slot = io_fixed_file_slot(&ctx->file_table, i);
8373 ret = -EBADF;
8374 if (!file_slot->file_ptr)
8375 goto out;
8376
8377 file = (struct file *)(file_slot->file_ptr & FFS_MASK);
8378 ret = io_queue_rsrc_removal(ctx->file_data, offset, ctx->rsrc_node, file);
8379 if (ret)
8380 goto out;
8381
8382 file_slot->file_ptr = 0;
8383 io_rsrc_node_switch(ctx, ctx->file_data);
8384 ret = 0;
8385out:
8386 io_ring_submit_unlock(ctx, !(issue_flags & IO_URING_F_NONBLOCK));
8387 return ret;
8388}
8389
Jens Axboe05f3fb32019-12-09 11:22:50 -07008390static int __io_sqe_files_update(struct io_ring_ctx *ctx,
Pavel Begunkovc3bdad02021-04-25 14:32:22 +01008391 struct io_uring_rsrc_update2 *up,
Jens Axboe05f3fb32019-12-09 11:22:50 -07008392 unsigned nr_args)
8393{
Pavel Begunkovc3bdad02021-04-25 14:32:22 +01008394 u64 __user *tags = u64_to_user_ptr(up->tags);
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +01008395 __s32 __user *fds = u64_to_user_ptr(up->data);
Pavel Begunkovb895c9a2021-04-01 15:43:40 +01008396 struct io_rsrc_data *data = ctx->file_data;
Pavel Begunkova04b0ac2021-04-01 15:44:04 +01008397 struct io_fixed_file *file_slot;
8398 struct file *file;
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +01008399 int fd, i, err = 0;
8400 unsigned int done;
Xiaoguang Wang05589552020-03-31 14:05:18 +08008401 bool needs_switch = false;
Jens Axboec3a31e62019-10-03 13:59:56 -06008402
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +01008403 if (!ctx->file_data)
8404 return -ENXIO;
8405 if (up->offset + nr_args > ctx->nr_user_files)
Jens Axboec3a31e62019-10-03 13:59:56 -06008406 return -EINVAL;
8407
Pavel Begunkov67973b92021-01-26 13:51:09 +00008408 for (done = 0; done < nr_args; done++) {
Pavel Begunkovc3bdad02021-04-25 14:32:22 +01008409 u64 tag = 0;
8410
8411 if ((tags && copy_from_user(&tag, &tags[done], sizeof(tag))) ||
8412 copy_from_user(&fd, &fds[done], sizeof(fd))) {
Jens Axboec3a31e62019-10-03 13:59:56 -06008413 err = -EFAULT;
8414 break;
8415 }
Pavel Begunkovc3bdad02021-04-25 14:32:22 +01008416 if ((fd == IORING_REGISTER_FILES_SKIP || fd == -1) && tag) {
8417 err = -EINVAL;
8418 break;
8419 }
noah4e0377a2021-01-26 15:23:28 -05008420 if (fd == IORING_REGISTER_FILES_SKIP)
8421 continue;
8422
Pavel Begunkov67973b92021-01-26 13:51:09 +00008423 i = array_index_nospec(up->offset + done, ctx->nr_user_files);
Pavel Begunkovaeca2412021-04-11 01:46:37 +01008424 file_slot = io_fixed_file_slot(&ctx->file_table, i);
Pavel Begunkovea64ec022021-02-04 13:52:07 +00008425
Pavel Begunkova04b0ac2021-04-01 15:44:04 +01008426 if (file_slot->file_ptr) {
8427 file = (struct file *)(file_slot->file_ptr & FFS_MASK);
Pavel Begunkovb60c8dc2021-04-25 14:32:18 +01008428 err = io_queue_rsrc_removal(data, up->offset + done,
8429 ctx->rsrc_node, file);
Hillf Dantona5318d32020-03-23 17:47:15 +08008430 if (err)
8431 break;
Pavel Begunkova04b0ac2021-04-01 15:44:04 +01008432 file_slot->file_ptr = 0;
Xiaoguang Wang05589552020-03-31 14:05:18 +08008433 needs_switch = true;
Jens Axboec3a31e62019-10-03 13:59:56 -06008434 }
8435 if (fd != -1) {
Jens Axboec3a31e62019-10-03 13:59:56 -06008436 file = fget(fd);
8437 if (!file) {
8438 err = -EBADF;
8439 break;
8440 }
8441 /*
8442 * Don't allow io_uring instances to be registered. If
8443 * UNIX isn't enabled, then this causes a reference
8444 * cycle and this instance can never get freed. If UNIX
8445 * is enabled we'll handle it just fine, but there's
8446 * still no point in allowing a ring fd as it doesn't
8447 * support regular read/write anyway.
8448 */
8449 if (file->f_op == &io_uring_fops) {
8450 fput(file);
8451 err = -EBADF;
8452 break;
8453 }
Pavel Begunkov2d091d62021-06-14 02:36:21 +01008454 *io_get_tag_slot(data, up->offset + done) = tag;
Pavel Begunkov9a321c92021-04-01 15:44:01 +01008455 io_fixed_file_set(file_slot, file);
Jens Axboec3a31e62019-10-03 13:59:56 -06008456 err = io_sqe_file_register(ctx, file, i);
Yang Yingliangf3bd9da2020-07-09 10:11:41 +00008457 if (err) {
Pavel Begunkova04b0ac2021-04-01 15:44:04 +01008458 file_slot->file_ptr = 0;
Yang Yingliangf3bd9da2020-07-09 10:11:41 +00008459 fput(file);
Jens Axboec3a31e62019-10-03 13:59:56 -06008460 break;
Yang Yingliangf3bd9da2020-07-09 10:11:41 +00008461 }
Jens Axboec3a31e62019-10-03 13:59:56 -06008462 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07008463 }
8464
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01008465 if (needs_switch)
8466 io_rsrc_node_switch(ctx, data);
Jens Axboec3a31e62019-10-03 13:59:56 -06008467 return done ? done : err;
8468}
Xiaoguang Wang05589552020-03-31 14:05:18 +08008469
Jens Axboe685fe7f2021-03-08 09:37:51 -07008470static struct io_wq *io_init_wq_offload(struct io_ring_ctx *ctx,
8471 struct task_struct *task)
Pavel Begunkov24369c22020-01-28 03:15:48 +03008472{
Jens Axboee9418942021-02-19 12:33:30 -07008473 struct io_wq_hash *hash;
Pavel Begunkov24369c22020-01-28 03:15:48 +03008474 struct io_wq_data data;
Pavel Begunkov24369c22020-01-28 03:15:48 +03008475 unsigned int concurrency;
Pavel Begunkov24369c22020-01-28 03:15:48 +03008476
Yang Yingliang362a9e62021-07-20 16:38:05 +08008477 mutex_lock(&ctx->uring_lock);
Jens Axboee9418942021-02-19 12:33:30 -07008478 hash = ctx->hash_map;
8479 if (!hash) {
8480 hash = kzalloc(sizeof(*hash), GFP_KERNEL);
Yang Yingliang362a9e62021-07-20 16:38:05 +08008481 if (!hash) {
8482 mutex_unlock(&ctx->uring_lock);
Jens Axboee9418942021-02-19 12:33:30 -07008483 return ERR_PTR(-ENOMEM);
Yang Yingliang362a9e62021-07-20 16:38:05 +08008484 }
Jens Axboee9418942021-02-19 12:33:30 -07008485 refcount_set(&hash->refs, 1);
8486 init_waitqueue_head(&hash->wait);
8487 ctx->hash_map = hash;
8488 }
Yang Yingliang362a9e62021-07-20 16:38:05 +08008489 mutex_unlock(&ctx->uring_lock);
Jens Axboee9418942021-02-19 12:33:30 -07008490
8491 data.hash = hash;
Jens Axboe685fe7f2021-03-08 09:37:51 -07008492 data.task = task;
Pavel Begunkovebc11b62021-08-09 13:04:05 +01008493 data.free_work = io_wq_free_work;
Pavel Begunkovf5fa38c2020-06-08 21:08:20 +03008494 data.do_work = io_wq_submit_work;
Pavel Begunkov24369c22020-01-28 03:15:48 +03008495
Jens Axboed25e3a32021-02-16 11:41:41 -07008496 /* Do QD, or 4 * CPUS, whatever is smallest */
8497 concurrency = min(ctx->sq_entries, 4 * num_online_cpus());
Pavel Begunkov24369c22020-01-28 03:15:48 +03008498
Jens Axboe5aa75ed2021-02-16 12:56:50 -07008499 return io_wq_create(concurrency, &data);
Pavel Begunkov24369c22020-01-28 03:15:48 +03008500}
8501
Jens Axboe5aa75ed2021-02-16 12:56:50 -07008502static int io_uring_alloc_task_context(struct task_struct *task,
8503 struct io_ring_ctx *ctx)
Jens Axboe0f212202020-09-13 13:09:39 -06008504{
8505 struct io_uring_task *tctx;
Jens Axboed8a6df12020-10-15 16:24:45 -06008506 int ret;
Jens Axboe0f212202020-09-13 13:09:39 -06008507
Pavel Begunkov09899b12021-06-14 02:36:22 +01008508 tctx = kzalloc(sizeof(*tctx), GFP_KERNEL);
Jens Axboe0f212202020-09-13 13:09:39 -06008509 if (unlikely(!tctx))
8510 return -ENOMEM;
8511
Jens Axboed8a6df12020-10-15 16:24:45 -06008512 ret = percpu_counter_init(&tctx->inflight, 0, GFP_KERNEL);
8513 if (unlikely(ret)) {
8514 kfree(tctx);
8515 return ret;
8516 }
8517
Jens Axboe685fe7f2021-03-08 09:37:51 -07008518 tctx->io_wq = io_init_wq_offload(ctx, task);
Jens Axboe5aa75ed2021-02-16 12:56:50 -07008519 if (IS_ERR(tctx->io_wq)) {
8520 ret = PTR_ERR(tctx->io_wq);
8521 percpu_counter_destroy(&tctx->inflight);
8522 kfree(tctx);
8523 return ret;
8524 }
8525
Jens Axboe0f212202020-09-13 13:09:39 -06008526 xa_init(&tctx->xa);
8527 init_waitqueue_head(&tctx->wait);
Jens Axboefdaf0832020-10-30 09:37:30 -06008528 atomic_set(&tctx->in_idle, 0);
Pavel Begunkovb303fe22021-04-11 01:46:26 +01008529 atomic_set(&tctx->inflight_tracked, 0);
Jens Axboe0f212202020-09-13 13:09:39 -06008530 task->io_uring = tctx;
Jens Axboe7cbf1722021-02-10 00:03:20 +00008531 spin_lock_init(&tctx->task_lock);
8532 INIT_WQ_LIST(&tctx->task_list);
Jens Axboe7cbf1722021-02-10 00:03:20 +00008533 init_task_work(&tctx->task_work, tctx_task_work);
Jens Axboe0f212202020-09-13 13:09:39 -06008534 return 0;
8535}
8536
8537void __io_uring_free(struct task_struct *tsk)
8538{
8539 struct io_uring_task *tctx = tsk->io_uring;
8540
8541 WARN_ON_ONCE(!xa_empty(&tctx->xa));
Pavel Begunkovef8eaa42021-02-27 11:16:45 +00008542 WARN_ON_ONCE(tctx->io_wq);
Pavel Begunkov09899b12021-06-14 02:36:22 +01008543 WARN_ON_ONCE(tctx->cached_refs);
Pavel Begunkovef8eaa42021-02-27 11:16:45 +00008544
Jens Axboed8a6df12020-10-15 16:24:45 -06008545 percpu_counter_destroy(&tctx->inflight);
Jens Axboe0f212202020-09-13 13:09:39 -06008546 kfree(tctx);
8547 tsk->io_uring = NULL;
8548}
8549
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02008550static int io_sq_offload_create(struct io_ring_ctx *ctx,
8551 struct io_uring_params *p)
Jens Axboe2b188cc2019-01-07 10:46:33 -07008552{
8553 int ret;
8554
Jens Axboed25e3a32021-02-16 11:41:41 -07008555 /* Retain compatibility with failing for an invalid attach attempt */
8556 if ((ctx->flags & (IORING_SETUP_ATTACH_WQ | IORING_SETUP_SQPOLL)) ==
8557 IORING_SETUP_ATTACH_WQ) {
8558 struct fd f;
8559
8560 f = fdget(p->wq_fd);
8561 if (!f.file)
8562 return -ENXIO;
Jens Axboe0cc936f2021-07-22 17:08:07 -06008563 if (f.file->f_op != &io_uring_fops) {
8564 fdput(f);
Pavel Begunkovf2a48dd2021-04-20 12:03:33 +01008565 return -EINVAL;
Jens Axboe0cc936f2021-07-22 17:08:07 -06008566 }
8567 fdput(f);
Jens Axboed25e3a32021-02-16 11:41:41 -07008568 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07008569 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboe46fe18b2021-03-04 12:39:36 -07008570 struct task_struct *tsk;
Jens Axboe534ca6d2020-09-02 13:52:19 -06008571 struct io_sq_data *sqd;
Pavel Begunkov26984fb2021-03-11 23:29:37 +00008572 bool attached;
Jens Axboe534ca6d2020-09-02 13:52:19 -06008573
Pavel Begunkov26984fb2021-03-11 23:29:37 +00008574 sqd = io_get_sq_data(p, &attached);
Jens Axboe534ca6d2020-09-02 13:52:19 -06008575 if (IS_ERR(sqd)) {
8576 ret = PTR_ERR(sqd);
8577 goto err;
8578 }
Jens Axboe69fb2132020-09-14 11:16:23 -06008579
Stefan Metzmacher7c30f36a2021-03-07 11:54:28 +01008580 ctx->sq_creds = get_current_cred();
Jens Axboe534ca6d2020-09-02 13:52:19 -06008581 ctx->sq_data = sqd;
Jens Axboe917257d2019-04-13 09:28:55 -06008582 ctx->sq_thread_idle = msecs_to_jiffies(p->sq_thread_idle);
8583 if (!ctx->sq_thread_idle)
8584 ctx->sq_thread_idle = HZ;
8585
Pavel Begunkov78d7f6b2021-03-10 13:13:53 +00008586 io_sq_thread_park(sqd);
Pavel Begunkovde75a3d2021-03-18 11:54:35 +00008587 list_add(&ctx->sqd_list, &sqd->ctx_list);
8588 io_sqd_update_thread_idle(sqd);
Pavel Begunkov26984fb2021-03-11 23:29:37 +00008589 /* don't attach to a dying SQPOLL thread, would be racy */
Pavel Begunkovf2a48dd2021-04-20 12:03:33 +01008590 ret = (attached && !sqd->thread) ? -ENXIO : 0;
Pavel Begunkov78d7f6b2021-03-10 13:13:53 +00008591 io_sq_thread_unpark(sqd);
8592
Pavel Begunkovde75a3d2021-03-18 11:54:35 +00008593 if (ret < 0)
8594 goto err;
8595 if (attached)
Jens Axboe5aa75ed2021-02-16 12:56:50 -07008596 return 0;
Jens Axboeaa061652020-09-02 14:50:27 -06008597
Jens Axboe6c271ce2019-01-10 11:22:30 -07008598 if (p->flags & IORING_SETUP_SQ_AFF) {
Jens Axboe44a9bd12019-05-14 20:00:30 -06008599 int cpu = p->sq_thread_cpu;
Jens Axboe6c271ce2019-01-10 11:22:30 -07008600
Jens Axboe917257d2019-04-13 09:28:55 -06008601 ret = -EINVAL;
Pavel Begunkovf2a48dd2021-04-20 12:03:33 +01008602 if (cpu >= nr_cpu_ids || !cpu_online(cpu))
Jens Axboee8f98f242021-03-09 16:32:13 -07008603 goto err_sqpoll;
Jens Axboe37d1e2e2021-02-17 21:03:43 -07008604 sqd->sq_cpu = cpu;
Jens Axboe6c271ce2019-01-10 11:22:30 -07008605 } else {
Jens Axboe37d1e2e2021-02-17 21:03:43 -07008606 sqd->sq_cpu = -1;
Jens Axboe6c271ce2019-01-10 11:22:30 -07008607 }
Jens Axboe37d1e2e2021-02-17 21:03:43 -07008608
8609 sqd->task_pid = current->pid;
Jens Axboe5c2469e2021-03-11 10:17:56 -07008610 sqd->task_tgid = current->tgid;
Jens Axboe46fe18b2021-03-04 12:39:36 -07008611 tsk = create_io_thread(io_sq_thread, sqd, NUMA_NO_NODE);
8612 if (IS_ERR(tsk)) {
8613 ret = PTR_ERR(tsk);
Jens Axboee8f98f242021-03-09 16:32:13 -07008614 goto err_sqpoll;
Jens Axboe6c271ce2019-01-10 11:22:30 -07008615 }
Pavel Begunkov97a73a02021-03-08 17:30:54 +00008616
Jens Axboe46fe18b2021-03-04 12:39:36 -07008617 sqd->thread = tsk;
Pavel Begunkov97a73a02021-03-08 17:30:54 +00008618 ret = io_uring_alloc_task_context(tsk, ctx);
Jens Axboe46fe18b2021-03-04 12:39:36 -07008619 wake_up_new_task(tsk);
Jens Axboe0f212202020-09-13 13:09:39 -06008620 if (ret)
8621 goto err;
Jens Axboe6c271ce2019-01-10 11:22:30 -07008622 } else if (p->flags & IORING_SETUP_SQ_AFF) {
8623 /* Can't have SQ_AFF without SQPOLL */
8624 ret = -EINVAL;
8625 goto err;
8626 }
8627
Jens Axboe2b188cc2019-01-07 10:46:33 -07008628 return 0;
Pavel Begunkovf2a48dd2021-04-20 12:03:33 +01008629err_sqpoll:
8630 complete(&ctx->sq_data->exited);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008631err:
Jens Axboe37d1e2e2021-02-17 21:03:43 -07008632 io_sq_thread_finish(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008633 return ret;
8634}
8635
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008636static inline void __io_unaccount_mem(struct user_struct *user,
8637 unsigned long nr_pages)
Jens Axboe2b188cc2019-01-07 10:46:33 -07008638{
8639 atomic_long_sub(nr_pages, &user->locked_vm);
8640}
8641
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008642static inline int __io_account_mem(struct user_struct *user,
8643 unsigned long nr_pages)
Jens Axboe2b188cc2019-01-07 10:46:33 -07008644{
8645 unsigned long page_limit, cur_pages, new_pages;
8646
8647 /* Don't allow more pages than we can safely lock */
8648 page_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
8649
8650 do {
8651 cur_pages = atomic_long_read(&user->locked_vm);
8652 new_pages = cur_pages + nr_pages;
8653 if (new_pages > page_limit)
8654 return -ENOMEM;
8655 } while (atomic_long_cmpxchg(&user->locked_vm, cur_pages,
8656 new_pages) != cur_pages);
8657
8658 return 0;
8659}
8660
Jens Axboe26bfa89e2021-02-09 20:14:12 -07008661static void io_unaccount_mem(struct io_ring_ctx *ctx, unsigned long nr_pages)
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008662{
Jens Axboe62e398b2021-02-21 16:19:37 -07008663 if (ctx->user)
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008664 __io_unaccount_mem(ctx->user, nr_pages);
Bijan Mottahedeh30975822020-06-16 16:36:09 -07008665
Jens Axboe26bfa89e2021-02-09 20:14:12 -07008666 if (ctx->mm_account)
8667 atomic64_sub(nr_pages, &ctx->mm_account->pinned_vm);
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008668}
8669
Jens Axboe26bfa89e2021-02-09 20:14:12 -07008670static int io_account_mem(struct io_ring_ctx *ctx, unsigned long nr_pages)
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008671{
Bijan Mottahedeh30975822020-06-16 16:36:09 -07008672 int ret;
8673
Jens Axboe62e398b2021-02-21 16:19:37 -07008674 if (ctx->user) {
Bijan Mottahedeh30975822020-06-16 16:36:09 -07008675 ret = __io_account_mem(ctx->user, nr_pages);
8676 if (ret)
8677 return ret;
8678 }
8679
Jens Axboe26bfa89e2021-02-09 20:14:12 -07008680 if (ctx->mm_account)
8681 atomic64_add(nr_pages, &ctx->mm_account->pinned_vm);
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008682
8683 return 0;
8684}
8685
Jens Axboe2b188cc2019-01-07 10:46:33 -07008686static void io_mem_free(void *ptr)
8687{
Mark Rutland52e04ef2019-04-30 17:30:21 +01008688 struct page *page;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008689
Mark Rutland52e04ef2019-04-30 17:30:21 +01008690 if (!ptr)
8691 return;
8692
8693 page = virt_to_head_page(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008694 if (put_page_testzero(page))
8695 free_compound_page(page);
8696}
8697
8698static void *io_mem_alloc(size_t size)
8699{
8700 gfp_t gfp_flags = GFP_KERNEL | __GFP_ZERO | __GFP_NOWARN | __GFP_COMP |
Jens Axboe26bfa89e2021-02-09 20:14:12 -07008701 __GFP_NORETRY | __GFP_ACCOUNT;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008702
8703 return (void *) __get_free_pages(gfp_flags, get_order(size));
8704}
8705
Hristo Venev75b28af2019-08-26 17:23:46 +00008706static unsigned long rings_size(unsigned sq_entries, unsigned cq_entries,
8707 size_t *sq_offset)
8708{
8709 struct io_rings *rings;
8710 size_t off, sq_array_size;
8711
8712 off = struct_size(rings, cqes, cq_entries);
8713 if (off == SIZE_MAX)
8714 return SIZE_MAX;
8715
8716#ifdef CONFIG_SMP
8717 off = ALIGN(off, SMP_CACHE_BYTES);
8718 if (off == 0)
8719 return SIZE_MAX;
8720#endif
8721
Dmitry Vyukovb36200f2020-07-11 11:31:11 +02008722 if (sq_offset)
8723 *sq_offset = off;
8724
Hristo Venev75b28af2019-08-26 17:23:46 +00008725 sq_array_size = array_size(sizeof(u32), sq_entries);
8726 if (sq_array_size == SIZE_MAX)
8727 return SIZE_MAX;
8728
8729 if (check_add_overflow(off, sq_array_size, &off))
8730 return SIZE_MAX;
8731
Hristo Venev75b28af2019-08-26 17:23:46 +00008732 return off;
8733}
8734
Pavel Begunkov41edf1a2021-04-25 14:32:23 +01008735static void io_buffer_unmap(struct io_ring_ctx *ctx, struct io_mapped_ubuf **slot)
Pavel Begunkov7f61a1e2021-04-11 01:46:35 +01008736{
Pavel Begunkov41edf1a2021-04-25 14:32:23 +01008737 struct io_mapped_ubuf *imu = *slot;
Pavel Begunkov7f61a1e2021-04-11 01:46:35 +01008738 unsigned int i;
8739
Pavel Begunkov62248432021-04-28 13:11:29 +01008740 if (imu != ctx->dummy_ubuf) {
8741 for (i = 0; i < imu->nr_bvecs; i++)
8742 unpin_user_page(imu->bvec[i].bv_page);
8743 if (imu->acct_pages)
8744 io_unaccount_mem(ctx, imu->acct_pages);
8745 kvfree(imu);
8746 }
Pavel Begunkov41edf1a2021-04-25 14:32:23 +01008747 *slot = NULL;
Pavel Begunkov7f61a1e2021-04-11 01:46:35 +01008748}
8749
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01008750static void io_rsrc_buf_put(struct io_ring_ctx *ctx, struct io_rsrc_put *prsrc)
8751{
Pavel Begunkov634d00d2021-04-25 14:32:26 +01008752 io_buffer_unmap(ctx, &prsrc->buf);
8753 prsrc->buf = NULL;
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01008754}
8755
8756static void __io_sqe_buffers_unregister(struct io_ring_ctx *ctx)
Jens Axboeedafcce2019-01-09 09:16:05 -07008757{
Pavel Begunkov7f61a1e2021-04-11 01:46:35 +01008758 unsigned int i;
Jens Axboeedafcce2019-01-09 09:16:05 -07008759
Pavel Begunkov7f61a1e2021-04-11 01:46:35 +01008760 for (i = 0; i < ctx->nr_user_bufs; i++)
8761 io_buffer_unmap(ctx, &ctx->user_bufs[i]);
Jens Axboeedafcce2019-01-09 09:16:05 -07008762 kfree(ctx->user_bufs);
Zqiangbb6659c2021-04-30 16:25:15 +08008763 io_rsrc_data_free(ctx->buf_data);
Jens Axboeedafcce2019-01-09 09:16:05 -07008764 ctx->user_bufs = NULL;
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01008765 ctx->buf_data = NULL;
Jens Axboeedafcce2019-01-09 09:16:05 -07008766 ctx->nr_user_bufs = 0;
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01008767}
8768
Jens Axboeedafcce2019-01-09 09:16:05 -07008769static int io_sqe_buffers_unregister(struct io_ring_ctx *ctx)
8770{
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01008771 int ret;
Jens Axboeedafcce2019-01-09 09:16:05 -07008772
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01008773 if (!ctx->buf_data)
Jens Axboeedafcce2019-01-09 09:16:05 -07008774 return -ENXIO;
8775
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01008776 ret = io_rsrc_ref_quiesce(ctx->buf_data, ctx);
8777 if (!ret)
8778 __io_sqe_buffers_unregister(ctx);
8779 return ret;
Jens Axboeedafcce2019-01-09 09:16:05 -07008780}
8781
8782static int io_copy_iov(struct io_ring_ctx *ctx, struct iovec *dst,
8783 void __user *arg, unsigned index)
8784{
8785 struct iovec __user *src;
8786
8787#ifdef CONFIG_COMPAT
8788 if (ctx->compat) {
8789 struct compat_iovec __user *ciovs;
8790 struct compat_iovec ciov;
8791
8792 ciovs = (struct compat_iovec __user *) arg;
8793 if (copy_from_user(&ciov, &ciovs[index], sizeof(ciov)))
8794 return -EFAULT;
8795
Jens Axboed55e5f52019-12-11 16:12:15 -07008796 dst->iov_base = u64_to_user_ptr((u64)ciov.iov_base);
Jens Axboeedafcce2019-01-09 09:16:05 -07008797 dst->iov_len = ciov.iov_len;
8798 return 0;
8799 }
8800#endif
8801 src = (struct iovec __user *) arg;
8802 if (copy_from_user(dst, &src[index], sizeof(*dst)))
8803 return -EFAULT;
8804 return 0;
8805}
8806
Jens Axboede293932020-09-17 16:19:16 -06008807/*
8808 * Not super efficient, but this is just a registration time. And we do cache
8809 * the last compound head, so generally we'll only do a full search if we don't
8810 * match that one.
8811 *
8812 * We check if the given compound head page has already been accounted, to
8813 * avoid double accounting it. This allows us to account the full size of the
8814 * page, not just the constituent pages of a huge page.
8815 */
8816static bool headpage_already_acct(struct io_ring_ctx *ctx, struct page **pages,
8817 int nr_pages, struct page *hpage)
8818{
8819 int i, j;
8820
8821 /* check current page array */
8822 for (i = 0; i < nr_pages; i++) {
8823 if (!PageCompound(pages[i]))
8824 continue;
8825 if (compound_head(pages[i]) == hpage)
8826 return true;
8827 }
8828
8829 /* check previously registered pages */
8830 for (i = 0; i < ctx->nr_user_bufs; i++) {
Pavel Begunkov41edf1a2021-04-25 14:32:23 +01008831 struct io_mapped_ubuf *imu = ctx->user_bufs[i];
Jens Axboede293932020-09-17 16:19:16 -06008832
8833 for (j = 0; j < imu->nr_bvecs; j++) {
8834 if (!PageCompound(imu->bvec[j].bv_page))
8835 continue;
8836 if (compound_head(imu->bvec[j].bv_page) == hpage)
8837 return true;
8838 }
8839 }
8840
8841 return false;
8842}
8843
8844static int io_buffer_account_pin(struct io_ring_ctx *ctx, struct page **pages,
8845 int nr_pages, struct io_mapped_ubuf *imu,
8846 struct page **last_hpage)
8847{
8848 int i, ret;
8849
Pavel Begunkov216e5832021-05-29 12:01:02 +01008850 imu->acct_pages = 0;
Jens Axboede293932020-09-17 16:19:16 -06008851 for (i = 0; i < nr_pages; i++) {
8852 if (!PageCompound(pages[i])) {
8853 imu->acct_pages++;
8854 } else {
8855 struct page *hpage;
8856
8857 hpage = compound_head(pages[i]);
8858 if (hpage == *last_hpage)
8859 continue;
8860 *last_hpage = hpage;
8861 if (headpage_already_acct(ctx, pages, i, hpage))
8862 continue;
8863 imu->acct_pages += page_size(hpage) >> PAGE_SHIFT;
8864 }
8865 }
8866
8867 if (!imu->acct_pages)
8868 return 0;
8869
Jens Axboe26bfa89e2021-02-09 20:14:12 -07008870 ret = io_account_mem(ctx, imu->acct_pages);
Jens Axboede293932020-09-17 16:19:16 -06008871 if (ret)
8872 imu->acct_pages = 0;
8873 return ret;
8874}
8875
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08008876static int io_sqe_buffer_register(struct io_ring_ctx *ctx, struct iovec *iov,
Pavel Begunkov41edf1a2021-04-25 14:32:23 +01008877 struct io_mapped_ubuf **pimu,
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08008878 struct page **last_hpage)
Jens Axboeedafcce2019-01-09 09:16:05 -07008879{
Pavel Begunkov41edf1a2021-04-25 14:32:23 +01008880 struct io_mapped_ubuf *imu = NULL;
Jens Axboeedafcce2019-01-09 09:16:05 -07008881 struct vm_area_struct **vmas = NULL;
8882 struct page **pages = NULL;
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08008883 unsigned long off, start, end, ubuf;
8884 size_t size;
8885 int ret, pret, nr_pages, i;
Jens Axboeedafcce2019-01-09 09:16:05 -07008886
Pavel Begunkov62248432021-04-28 13:11:29 +01008887 if (!iov->iov_base) {
8888 *pimu = ctx->dummy_ubuf;
8889 return 0;
8890 }
8891
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08008892 ubuf = (unsigned long) iov->iov_base;
8893 end = (ubuf + iov->iov_len + PAGE_SIZE - 1) >> PAGE_SHIFT;
8894 start = ubuf >> PAGE_SHIFT;
8895 nr_pages = end - start;
8896
Pavel Begunkov41edf1a2021-04-25 14:32:23 +01008897 *pimu = NULL;
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08008898 ret = -ENOMEM;
8899
8900 pages = kvmalloc_array(nr_pages, sizeof(struct page *), GFP_KERNEL);
8901 if (!pages)
8902 goto done;
8903
8904 vmas = kvmalloc_array(nr_pages, sizeof(struct vm_area_struct *),
8905 GFP_KERNEL);
8906 if (!vmas)
8907 goto done;
8908
Pavel Begunkov41edf1a2021-04-25 14:32:23 +01008909 imu = kvmalloc(struct_size(imu, bvec, nr_pages), GFP_KERNEL);
Pavel Begunkova2b41982021-04-26 00:16:31 +01008910 if (!imu)
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08008911 goto done;
8912
8913 ret = 0;
8914 mmap_read_lock(current->mm);
8915 pret = pin_user_pages(ubuf, nr_pages, FOLL_WRITE | FOLL_LONGTERM,
8916 pages, vmas);
8917 if (pret == nr_pages) {
8918 /* don't support file backed memory */
8919 for (i = 0; i < nr_pages; i++) {
8920 struct vm_area_struct *vma = vmas[i];
8921
Pavel Begunkov40dad762021-06-09 15:26:54 +01008922 if (vma_is_shmem(vma))
8923 continue;
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08008924 if (vma->vm_file &&
8925 !is_file_hugepages(vma->vm_file)) {
8926 ret = -EOPNOTSUPP;
8927 break;
8928 }
8929 }
8930 } else {
8931 ret = pret < 0 ? pret : -EFAULT;
8932 }
8933 mmap_read_unlock(current->mm);
8934 if (ret) {
8935 /*
8936 * if we did partial map, or found file backed vmas,
8937 * release any pages we did get
8938 */
8939 if (pret > 0)
8940 unpin_user_pages(pages, pret);
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08008941 goto done;
8942 }
8943
8944 ret = io_buffer_account_pin(ctx, pages, pret, imu, last_hpage);
8945 if (ret) {
8946 unpin_user_pages(pages, pret);
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08008947 goto done;
8948 }
8949
8950 off = ubuf & ~PAGE_MASK;
8951 size = iov->iov_len;
8952 for (i = 0; i < nr_pages; i++) {
8953 size_t vec_len;
8954
8955 vec_len = min_t(size_t, size, PAGE_SIZE - off);
8956 imu->bvec[i].bv_page = pages[i];
8957 imu->bvec[i].bv_len = vec_len;
8958 imu->bvec[i].bv_offset = off;
8959 off = 0;
8960 size -= vec_len;
8961 }
8962 /* store original address for later verification */
8963 imu->ubuf = ubuf;
Pavel Begunkov4751f532021-04-01 15:43:55 +01008964 imu->ubuf_end = ubuf + iov->iov_len;
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08008965 imu->nr_bvecs = nr_pages;
Pavel Begunkov41edf1a2021-04-25 14:32:23 +01008966 *pimu = imu;
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08008967 ret = 0;
8968done:
Pavel Begunkov41edf1a2021-04-25 14:32:23 +01008969 if (ret)
8970 kvfree(imu);
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08008971 kvfree(pages);
8972 kvfree(vmas);
8973 return ret;
8974}
8975
Bijan Mottahedeh2b358602021-01-06 12:39:11 -08008976static int io_buffers_map_alloc(struct io_ring_ctx *ctx, unsigned int nr_args)
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08008977{
Pavel Begunkov87094462021-04-11 01:46:36 +01008978 ctx->user_bufs = kcalloc(nr_args, sizeof(*ctx->user_bufs), GFP_KERNEL);
8979 return ctx->user_bufs ? 0 : -ENOMEM;
Bijan Mottahedeh2b358602021-01-06 12:39:11 -08008980}
8981
8982static int io_buffer_validate(struct iovec *iov)
8983{
Pavel Begunkov50e96982021-03-24 22:59:01 +00008984 unsigned long tmp, acct_len = iov->iov_len + (PAGE_SIZE - 1);
8985
Bijan Mottahedeh2b358602021-01-06 12:39:11 -08008986 /*
8987 * Don't impose further limits on the size and buffer
8988 * constraints here, we'll -EINVAL later when IO is
8989 * submitted if they are wrong.
8990 */
Pavel Begunkov62248432021-04-28 13:11:29 +01008991 if (!iov->iov_base)
8992 return iov->iov_len ? -EFAULT : 0;
8993 if (!iov->iov_len)
Bijan Mottahedeh2b358602021-01-06 12:39:11 -08008994 return -EFAULT;
8995
8996 /* arbitrary limit, but we need something */
8997 if (iov->iov_len > SZ_1G)
8998 return -EFAULT;
8999
Pavel Begunkov50e96982021-03-24 22:59:01 +00009000 if (check_add_overflow((unsigned long)iov->iov_base, acct_len, &tmp))
9001 return -EOVERFLOW;
9002
Bijan Mottahedeh2b358602021-01-06 12:39:11 -08009003 return 0;
9004}
9005
9006static int io_sqe_buffers_register(struct io_ring_ctx *ctx, void __user *arg,
Pavel Begunkov634d00d2021-04-25 14:32:26 +01009007 unsigned int nr_args, u64 __user *tags)
Bijan Mottahedeh2b358602021-01-06 12:39:11 -08009008{
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01009009 struct page *last_hpage = NULL;
9010 struct io_rsrc_data *data;
Bijan Mottahedeh2b358602021-01-06 12:39:11 -08009011 int i, ret;
9012 struct iovec iov;
Bijan Mottahedeh2b358602021-01-06 12:39:11 -08009013
Pavel Begunkov87094462021-04-11 01:46:36 +01009014 if (ctx->user_bufs)
9015 return -EBUSY;
Pavel Begunkov489809e2021-05-14 12:06:44 +01009016 if (!nr_args || nr_args > IORING_MAX_REG_BUFFERS)
Pavel Begunkov87094462021-04-11 01:46:36 +01009017 return -EINVAL;
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01009018 ret = io_rsrc_node_switch_start(ctx);
Bijan Mottahedeh2b358602021-01-06 12:39:11 -08009019 if (ret)
9020 return ret;
Pavel Begunkovd878c812021-06-14 02:36:18 +01009021 ret = io_rsrc_data_alloc(ctx, io_rsrc_buf_put, tags, nr_args, &data);
9022 if (ret)
9023 return ret;
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01009024 ret = io_buffers_map_alloc(ctx, nr_args);
9025 if (ret) {
Zqiangbb6659c2021-04-30 16:25:15 +08009026 io_rsrc_data_free(data);
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01009027 return ret;
9028 }
Bijan Mottahedeh2b358602021-01-06 12:39:11 -08009029
Pavel Begunkov87094462021-04-11 01:46:36 +01009030 for (i = 0; i < nr_args; i++, ctx->nr_user_bufs++) {
Jens Axboeedafcce2019-01-09 09:16:05 -07009031 ret = io_copy_iov(ctx, &iov, arg, i);
9032 if (ret)
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08009033 break;
Bijan Mottahedeh2b358602021-01-06 12:39:11 -08009034 ret = io_buffer_validate(&iov);
9035 if (ret)
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08009036 break;
Pavel Begunkov2d091d62021-06-14 02:36:21 +01009037 if (!iov.iov_base && *io_get_tag_slot(data, i)) {
Colin Ian Kingcf3770e2021-04-29 11:46:02 +01009038 ret = -EINVAL;
9039 break;
9040 }
Jens Axboeedafcce2019-01-09 09:16:05 -07009041
Pavel Begunkov41edf1a2021-04-25 14:32:23 +01009042 ret = io_sqe_buffer_register(ctx, &iov, &ctx->user_bufs[i],
9043 &last_hpage);
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08009044 if (ret)
9045 break;
Jens Axboeedafcce2019-01-09 09:16:05 -07009046 }
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08009047
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01009048 WARN_ON_ONCE(ctx->buf_data);
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08009049
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01009050 ctx->buf_data = data;
9051 if (ret)
9052 __io_sqe_buffers_unregister(ctx);
9053 else
9054 io_rsrc_node_switch(ctx, NULL);
Jens Axboeedafcce2019-01-09 09:16:05 -07009055 return ret;
9056}
9057
Pavel Begunkov634d00d2021-04-25 14:32:26 +01009058static int __io_sqe_buffers_update(struct io_ring_ctx *ctx,
9059 struct io_uring_rsrc_update2 *up,
9060 unsigned int nr_args)
9061{
9062 u64 __user *tags = u64_to_user_ptr(up->tags);
9063 struct iovec iov, __user *iovs = u64_to_user_ptr(up->data);
Pavel Begunkov634d00d2021-04-25 14:32:26 +01009064 struct page *last_hpage = NULL;
9065 bool needs_switch = false;
9066 __u32 done;
9067 int i, err;
9068
9069 if (!ctx->buf_data)
9070 return -ENXIO;
9071 if (up->offset + nr_args > ctx->nr_user_bufs)
9072 return -EINVAL;
9073
9074 for (done = 0; done < nr_args; done++) {
Pavel Begunkov0b8c0e72021-04-26 15:17:38 +01009075 struct io_mapped_ubuf *imu;
9076 int offset = up->offset + done;
Pavel Begunkov634d00d2021-04-25 14:32:26 +01009077 u64 tag = 0;
9078
9079 err = io_copy_iov(ctx, &iov, iovs, done);
9080 if (err)
9081 break;
9082 if (tags && copy_from_user(&tag, &tags[done], sizeof(tag))) {
9083 err = -EFAULT;
9084 break;
9085 }
Pavel Begunkov0b8c0e72021-04-26 15:17:38 +01009086 err = io_buffer_validate(&iov);
9087 if (err)
9088 break;
Colin Ian Kingcf3770e2021-04-29 11:46:02 +01009089 if (!iov.iov_base && tag) {
9090 err = -EINVAL;
9091 break;
9092 }
Pavel Begunkov0b8c0e72021-04-26 15:17:38 +01009093 err = io_sqe_buffer_register(ctx, &iov, &imu, &last_hpage);
9094 if (err)
9095 break;
Pavel Begunkov634d00d2021-04-25 14:32:26 +01009096
Pavel Begunkov0b8c0e72021-04-26 15:17:38 +01009097 i = array_index_nospec(offset, ctx->nr_user_bufs);
Pavel Begunkov62248432021-04-28 13:11:29 +01009098 if (ctx->user_bufs[i] != ctx->dummy_ubuf) {
Pavel Begunkov0b8c0e72021-04-26 15:17:38 +01009099 err = io_queue_rsrc_removal(ctx->buf_data, offset,
9100 ctx->rsrc_node, ctx->user_bufs[i]);
9101 if (unlikely(err)) {
9102 io_buffer_unmap(ctx, &imu);
Pavel Begunkov634d00d2021-04-25 14:32:26 +01009103 break;
Pavel Begunkov0b8c0e72021-04-26 15:17:38 +01009104 }
Pavel Begunkov634d00d2021-04-25 14:32:26 +01009105 ctx->user_bufs[i] = NULL;
9106 needs_switch = true;
9107 }
9108
Pavel Begunkov0b8c0e72021-04-26 15:17:38 +01009109 ctx->user_bufs[i] = imu;
Pavel Begunkov2d091d62021-06-14 02:36:21 +01009110 *io_get_tag_slot(ctx->buf_data, offset) = tag;
Pavel Begunkov634d00d2021-04-25 14:32:26 +01009111 }
9112
9113 if (needs_switch)
9114 io_rsrc_node_switch(ctx, ctx->buf_data);
9115 return done ? done : err;
9116}
9117
Jens Axboe9b402842019-04-11 11:45:41 -06009118static int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg)
9119{
9120 __s32 __user *fds = arg;
9121 int fd;
9122
9123 if (ctx->cq_ev_fd)
9124 return -EBUSY;
9125
9126 if (copy_from_user(&fd, fds, sizeof(*fds)))
9127 return -EFAULT;
9128
9129 ctx->cq_ev_fd = eventfd_ctx_fdget(fd);
9130 if (IS_ERR(ctx->cq_ev_fd)) {
9131 int ret = PTR_ERR(ctx->cq_ev_fd);
Pavel Begunkovfe7e3252021-06-24 15:09:57 +01009132
Jens Axboe9b402842019-04-11 11:45:41 -06009133 ctx->cq_ev_fd = NULL;
9134 return ret;
9135 }
9136
9137 return 0;
9138}
9139
9140static int io_eventfd_unregister(struct io_ring_ctx *ctx)
9141{
9142 if (ctx->cq_ev_fd) {
9143 eventfd_ctx_put(ctx->cq_ev_fd);
9144 ctx->cq_ev_fd = NULL;
9145 return 0;
9146 }
9147
9148 return -ENXIO;
9149}
9150
Jens Axboe5a2e7452020-02-23 16:23:11 -07009151static void io_destroy_buffers(struct io_ring_ctx *ctx)
9152{
Jens Axboe9e15c3a2021-03-13 12:29:43 -07009153 struct io_buffer *buf;
9154 unsigned long index;
9155
Jens Axboe8bab4c02021-09-24 07:12:27 -06009156 xa_for_each(&ctx->io_buffers, index, buf) {
Jens Axboe9e15c3a2021-03-13 12:29:43 -07009157 __io_remove_buffers(ctx, buf, index, -1U);
Jens Axboe8bab4c02021-09-24 07:12:27 -06009158 cond_resched();
9159 }
Jens Axboe5a2e7452020-02-23 16:23:11 -07009160}
9161
Jens Axboe4010fec2021-02-27 15:04:18 -07009162static void io_req_caches_free(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -07009163{
Pavel Begunkovcd0ca2e2021-08-09 20:18:11 +01009164 struct io_submit_state *state = &ctx->submit_state;
Pavel Begunkovbf019da2021-02-10 00:03:17 +00009165
Jens Axboe9a4fdbd2021-02-13 09:09:44 -07009166 mutex_lock(&ctx->uring_lock);
Pavel Begunkovcd0ca2e2021-08-09 20:18:11 +01009167 io_flush_cached_locked_reqs(ctx, state);
Pavel Begunkovc2b6c6b2021-09-24 21:59:47 +01009168
9169 while (state->free_list.next) {
9170 struct io_wq_work_node *node;
9171 struct io_kiocb *req;
9172
9173 node = wq_stack_extract(&state->free_list);
9174 req = container_of(node, struct io_kiocb, comp_list);
9175 kmem_cache_free(req_cachep, req);
9176 }
Jens Axboe9a4fdbd2021-02-13 09:09:44 -07009177 mutex_unlock(&ctx->uring_lock);
9178}
9179
Pavel Begunkov43597aa2021-08-10 02:44:23 +01009180static void io_wait_rsrc_data(struct io_rsrc_data *data)
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01009181{
Pavel Begunkov43597aa2021-08-10 02:44:23 +01009182 if (data && !atomic_dec_and_test(&data->refs))
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01009183 wait_for_completion(&data->done);
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01009184}
9185
Jens Axboe2b188cc2019-01-07 10:46:33 -07009186static void io_ring_ctx_free(struct io_ring_ctx *ctx)
9187{
Jens Axboe37d1e2e2021-02-17 21:03:43 -07009188 io_sq_thread_finish(ctx);
Jens Axboe2aede0e2020-09-14 10:45:53 -06009189
Jens Axboe37d1e2e2021-02-17 21:03:43 -07009190 if (ctx->mm_account) {
Jens Axboe2aede0e2020-09-14 10:45:53 -06009191 mmdrop(ctx->mm_account);
9192 ctx->mm_account = NULL;
Bijan Mottahedeh30975822020-06-16 16:36:09 -07009193 }
Jens Axboedef596e2019-01-09 08:59:42 -07009194
Pavel Begunkov43597aa2021-08-10 02:44:23 +01009195 /* __io_rsrc_put_work() may need uring_lock to progress, wait w/o it */
9196 io_wait_rsrc_data(ctx->buf_data);
9197 io_wait_rsrc_data(ctx->file_data);
9198
Hao Xu8bad28d2021-02-19 17:19:36 +08009199 mutex_lock(&ctx->uring_lock);
Pavel Begunkov43597aa2021-08-10 02:44:23 +01009200 if (ctx->buf_data)
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01009201 __io_sqe_buffers_unregister(ctx);
Pavel Begunkov43597aa2021-08-10 02:44:23 +01009202 if (ctx->file_data)
Pavel Begunkov08480402021-04-13 02:58:38 +01009203 __io_sqe_files_unregister(ctx);
Pavel Begunkovc4ea0602021-04-01 15:43:58 +01009204 if (ctx->rings)
9205 __io_cqring_overflow_flush(ctx, true);
Hao Xu8bad28d2021-02-19 17:19:36 +08009206 mutex_unlock(&ctx->uring_lock);
Jens Axboe9b402842019-04-11 11:45:41 -06009207 io_eventfd_unregister(ctx);
Jens Axboe5a2e7452020-02-23 16:23:11 -07009208 io_destroy_buffers(ctx);
Pavel Begunkov07db2982021-04-20 12:03:32 +01009209 if (ctx->sq_creds)
9210 put_cred(ctx->sq_creds);
Jens Axboedef596e2019-01-09 08:59:42 -07009211
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01009212 /* there are no registered resources left, nobody uses it */
9213 if (ctx->rsrc_node)
9214 io_rsrc_node_destroy(ctx->rsrc_node);
Pavel Begunkov8dd03af2021-03-19 17:22:36 +00009215 if (ctx->rsrc_backup_node)
Pavel Begunkovb895c9a2021-04-01 15:43:40 +01009216 io_rsrc_node_destroy(ctx->rsrc_backup_node);
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01009217 flush_delayed_work(&ctx->rsrc_put_work);
9218
9219 WARN_ON_ONCE(!list_empty(&ctx->rsrc_ref_list));
9220 WARN_ON_ONCE(!llist_empty(&ctx->rsrc_put_llist));
Jens Axboe2b188cc2019-01-07 10:46:33 -07009221
9222#if defined(CONFIG_UNIX)
Eric Biggers355e8d22019-06-12 14:58:43 -07009223 if (ctx->ring_sock) {
9224 ctx->ring_sock->file = NULL; /* so that iput() is called */
Jens Axboe2b188cc2019-01-07 10:46:33 -07009225 sock_release(ctx->ring_sock);
Eric Biggers355e8d22019-06-12 14:58:43 -07009226 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07009227#endif
Pavel Begunkovef9dd632021-08-28 19:54:38 -06009228 WARN_ON_ONCE(!list_empty(&ctx->ltimeout_list));
Jens Axboe2b188cc2019-01-07 10:46:33 -07009229
Hristo Venev75b28af2019-08-26 17:23:46 +00009230 io_mem_free(ctx->rings);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009231 io_mem_free(ctx->sq_sqes);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009232
9233 percpu_ref_exit(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009234 free_uid(ctx->user);
Jens Axboe4010fec2021-02-27 15:04:18 -07009235 io_req_caches_free(ctx);
Jens Axboee9418942021-02-19 12:33:30 -07009236 if (ctx->hash_map)
9237 io_wq_put_hash(ctx->hash_map);
Jens Axboe78076bb2019-12-04 19:56:40 -07009238 kfree(ctx->cancel_hash);
Pavel Begunkov62248432021-04-28 13:11:29 +01009239 kfree(ctx->dummy_ubuf);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009240 kfree(ctx);
9241}
9242
9243static __poll_t io_uring_poll(struct file *file, poll_table *wait)
9244{
9245 struct io_ring_ctx *ctx = file->private_data;
9246 __poll_t mask = 0;
9247
Pavel Begunkov311997b2021-06-14 23:37:28 +01009248 poll_wait(file, &ctx->poll_wait, wait);
Stefan Bühler4f7067c2019-04-24 23:54:17 +02009249 /*
9250 * synchronizes with barrier from wq_has_sleeper call in
9251 * io_commit_cqring
9252 */
Jens Axboe2b188cc2019-01-07 10:46:33 -07009253 smp_rmb();
Jens Axboe90554202020-09-03 12:12:41 -06009254 if (!io_sqring_full(ctx))
Jens Axboe2b188cc2019-01-07 10:46:33 -07009255 mask |= EPOLLOUT | EPOLLWRNORM;
Hao Xued670c32021-02-05 16:34:21 +08009256
9257 /*
9258 * Don't flush cqring overflow list here, just do a simple check.
9259 * Otherwise there could possible be ABBA deadlock:
9260 * CPU0 CPU1
9261 * ---- ----
9262 * lock(&ctx->uring_lock);
9263 * lock(&ep->mtx);
9264 * lock(&ctx->uring_lock);
9265 * lock(&ep->mtx);
9266 *
9267 * Users may get EPOLLIN meanwhile seeing nothing in cqring, this
9268 * pushs them to do the flush.
9269 */
Pavel Begunkov5ed7a372021-06-14 23:37:27 +01009270 if (io_cqring_events(ctx) || test_bit(0, &ctx->check_cq_overflow))
Jens Axboe2b188cc2019-01-07 10:46:33 -07009271 mask |= EPOLLIN | EPOLLRDNORM;
9272
9273 return mask;
9274}
9275
Yejune Deng0bead8c2020-12-24 11:02:20 +08009276static int io_unregister_personality(struct io_ring_ctx *ctx, unsigned id)
Jens Axboe071698e2020-01-28 10:04:42 -07009277{
Jens Axboe4379bf82021-02-15 13:40:22 -07009278 const struct cred *creds;
Jens Axboe071698e2020-01-28 10:04:42 -07009279
Matthew Wilcox (Oracle)61cf9372021-03-08 14:16:16 +00009280 creds = xa_erase(&ctx->personalities, id);
Jens Axboe4379bf82021-02-15 13:40:22 -07009281 if (creds) {
9282 put_cred(creds);
Yejune Deng0bead8c2020-12-24 11:02:20 +08009283 return 0;
Jens Axboe1e6fa522020-10-15 08:46:24 -06009284 }
Yejune Deng0bead8c2020-12-24 11:02:20 +08009285
9286 return -EINVAL;
9287}
9288
Pavel Begunkovd56d9382021-03-06 11:02:13 +00009289struct io_tctx_exit {
9290 struct callback_head task_work;
9291 struct completion completion;
Pavel Begunkovbaf186c2021-03-06 11:02:15 +00009292 struct io_ring_ctx *ctx;
Pavel Begunkovd56d9382021-03-06 11:02:13 +00009293};
9294
9295static void io_tctx_exit_cb(struct callback_head *cb)
9296{
9297 struct io_uring_task *tctx = current->io_uring;
9298 struct io_tctx_exit *work;
9299
9300 work = container_of(cb, struct io_tctx_exit, task_work);
9301 /*
9302 * When @in_idle, we're in cancellation and it's racy to remove the
9303 * node. It'll be removed by the end of cancellation, just ignore it.
9304 */
9305 if (!atomic_read(&tctx->in_idle))
Pavel Begunkoveef51da2021-06-14 02:36:15 +01009306 io_uring_del_tctx_node((unsigned long)work->ctx);
Pavel Begunkovd56d9382021-03-06 11:02:13 +00009307 complete(&work->completion);
9308}
9309
Pavel Begunkov28090c12021-04-25 23:34:45 +01009310static bool io_cancel_ctx_cb(struct io_wq_work *work, void *data)
9311{
9312 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
9313
9314 return req->ctx == data;
9315}
9316
Jens Axboe85faa7b2020-04-09 18:14:00 -06009317static void io_ring_exit_work(struct work_struct *work)
9318{
Pavel Begunkovd56d9382021-03-06 11:02:13 +00009319 struct io_ring_ctx *ctx = container_of(work, struct io_ring_ctx, exit_work);
Pavel Begunkovb5bb3a22021-03-06 11:02:16 +00009320 unsigned long timeout = jiffies + HZ * 60 * 5;
Pavel Begunkov58d3be22021-08-09 13:04:17 +01009321 unsigned long interval = HZ / 20;
Pavel Begunkovd56d9382021-03-06 11:02:13 +00009322 struct io_tctx_exit exit;
9323 struct io_tctx_node *node;
9324 int ret;
Jens Axboe85faa7b2020-04-09 18:14:00 -06009325
Jens Axboe56952e92020-06-17 15:00:04 -06009326 /*
9327 * If we're doing polled IO and end up having requests being
9328 * submitted async (out-of-line), then completions can come in while
9329 * we're waiting for refs to drop. We need to reap these manually,
9330 * as nobody else will be looking for them.
9331 */
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03009332 do {
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009333 io_uring_try_cancel_requests(ctx, NULL, true);
Pavel Begunkov28090c12021-04-25 23:34:45 +01009334 if (ctx->sq_data) {
9335 struct io_sq_data *sqd = ctx->sq_data;
9336 struct task_struct *tsk;
9337
9338 io_sq_thread_park(sqd);
9339 tsk = sqd->thread;
9340 if (tsk && tsk->io_uring && tsk->io_uring->io_wq)
9341 io_wq_cancel_cb(tsk->io_uring->io_wq,
9342 io_cancel_ctx_cb, ctx, true);
9343 io_sq_thread_unpark(sqd);
9344 }
Pavel Begunkovb5bb3a22021-03-06 11:02:16 +00009345
Pavel Begunkov58d3be22021-08-09 13:04:17 +01009346 if (WARN_ON_ONCE(time_after(jiffies, timeout))) {
9347 /* there is little hope left, don't run it too often */
9348 interval = HZ * 60;
9349 }
9350 } while (!wait_for_completion_timeout(&ctx->ref_comp, interval));
Pavel Begunkovd56d9382021-03-06 11:02:13 +00009351
Pavel Begunkov7f006512021-04-14 13:38:34 +01009352 init_completion(&exit.completion);
9353 init_task_work(&exit.task_work, io_tctx_exit_cb);
9354 exit.ctx = ctx;
Pavel Begunkov89b50662021-04-01 15:43:50 +01009355 /*
9356 * Some may use context even when all refs and requests have been put,
9357 * and they are free to do so while still holding uring_lock or
Pavel Begunkov5b0a6ac2021-06-30 21:54:04 +01009358 * completion_lock, see io_req_task_submit(). Apart from other work,
Pavel Begunkov89b50662021-04-01 15:43:50 +01009359 * this lock/unlock section also waits them to finish.
9360 */
Pavel Begunkovd56d9382021-03-06 11:02:13 +00009361 mutex_lock(&ctx->uring_lock);
9362 while (!list_empty(&ctx->tctx_list)) {
Pavel Begunkovb5bb3a22021-03-06 11:02:16 +00009363 WARN_ON_ONCE(time_after(jiffies, timeout));
9364
Pavel Begunkovd56d9382021-03-06 11:02:13 +00009365 node = list_first_entry(&ctx->tctx_list, struct io_tctx_node,
9366 ctx_node);
Pavel Begunkov7f006512021-04-14 13:38:34 +01009367 /* don't spin on a single task if cancellation failed */
9368 list_rotate_left(&ctx->tctx_list);
Pavel Begunkovd56d9382021-03-06 11:02:13 +00009369 ret = task_work_add(node->task, &exit.task_work, TWA_SIGNAL);
9370 if (WARN_ON_ONCE(ret))
9371 continue;
9372 wake_up_process(node->task);
9373
9374 mutex_unlock(&ctx->uring_lock);
9375 wait_for_completion(&exit.completion);
Pavel Begunkovd56d9382021-03-06 11:02:13 +00009376 mutex_lock(&ctx->uring_lock);
9377 }
9378 mutex_unlock(&ctx->uring_lock);
Jens Axboe79ebeae2021-08-10 15:18:27 -06009379 spin_lock(&ctx->completion_lock);
9380 spin_unlock(&ctx->completion_lock);
Pavel Begunkovd56d9382021-03-06 11:02:13 +00009381
Jens Axboe85faa7b2020-04-09 18:14:00 -06009382 io_ring_ctx_free(ctx);
9383}
9384
Pavel Begunkov80c4cbd2021-03-25 18:32:43 +00009385/* Returns true if we found and killed one or more timeouts */
9386static bool io_kill_timeouts(struct io_ring_ctx *ctx, struct task_struct *tsk,
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009387 bool cancel_all)
Pavel Begunkov80c4cbd2021-03-25 18:32:43 +00009388{
9389 struct io_kiocb *req, *tmp;
9390 int canceled = 0;
9391
Jens Axboe79ebeae2021-08-10 15:18:27 -06009392 spin_lock(&ctx->completion_lock);
9393 spin_lock_irq(&ctx->timeout_lock);
Pavel Begunkov80c4cbd2021-03-25 18:32:43 +00009394 list_for_each_entry_safe(req, tmp, &ctx->timeout_list, timeout.list) {
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009395 if (io_match_task(req, tsk, cancel_all)) {
Pavel Begunkov80c4cbd2021-03-25 18:32:43 +00009396 io_kill_timeout(req, -ECANCELED);
9397 canceled++;
9398 }
9399 }
Jens Axboe79ebeae2021-08-10 15:18:27 -06009400 spin_unlock_irq(&ctx->timeout_lock);
Pavel Begunkov51520422021-03-29 11:39:29 +01009401 if (canceled != 0)
9402 io_commit_cqring(ctx);
Jens Axboe79ebeae2021-08-10 15:18:27 -06009403 spin_unlock(&ctx->completion_lock);
Pavel Begunkov80c4cbd2021-03-25 18:32:43 +00009404 if (canceled != 0)
9405 io_cqring_ev_posted(ctx);
9406 return canceled != 0;
9407}
9408
Jens Axboe2b188cc2019-01-07 10:46:33 -07009409static void io_ring_ctx_wait_and_kill(struct io_ring_ctx *ctx)
9410{
Matthew Wilcox (Oracle)61cf9372021-03-08 14:16:16 +00009411 unsigned long index;
9412 struct creds *creds;
9413
Jens Axboe2b188cc2019-01-07 10:46:33 -07009414 mutex_lock(&ctx->uring_lock);
9415 percpu_ref_kill(&ctx->refs);
Pavel Begunkov634578f2020-12-06 22:22:44 +00009416 if (ctx->rings)
Pavel Begunkov6c2450a2021-02-23 12:40:22 +00009417 __io_cqring_overflow_flush(ctx, true);
Matthew Wilcox (Oracle)61cf9372021-03-08 14:16:16 +00009418 xa_for_each(&ctx->personalities, index, creds)
9419 io_unregister_personality(ctx, index);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009420 mutex_unlock(&ctx->uring_lock);
9421
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009422 io_kill_timeouts(ctx, NULL, true);
9423 io_poll_remove_all(ctx, NULL, true);
Jens Axboe561fb042019-10-24 07:25:42 -06009424
Jens Axboe15dff282019-11-13 09:09:23 -07009425 /* if we failed setting up the ctx, we might not have any rings */
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03009426 io_iopoll_try_reap_events(ctx);
Jens Axboe309fc032020-07-10 09:13:34 -06009427
Jens Axboe85faa7b2020-04-09 18:14:00 -06009428 INIT_WORK(&ctx->exit_work, io_ring_exit_work);
Jens Axboefc666772020-08-19 11:10:51 -06009429 /*
9430 * Use system_unbound_wq to avoid spawning tons of event kworkers
9431 * if we're exiting a ton of rings at the same time. It just adds
9432 * noise and overhead, there's no discernable change in runtime
9433 * over using system_wq.
9434 */
9435 queue_work(system_unbound_wq, &ctx->exit_work);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009436}
9437
9438static int io_uring_release(struct inode *inode, struct file *file)
9439{
9440 struct io_ring_ctx *ctx = file->private_data;
9441
9442 file->private_data = NULL;
9443 io_ring_ctx_wait_and_kill(ctx);
9444 return 0;
9445}
9446
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00009447struct io_task_cancel {
9448 struct task_struct *task;
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009449 bool all;
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00009450};
Pavel Begunkov67c4d9e2020-06-15 10:24:05 +03009451
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00009452static bool io_cancel_task_cb(struct io_wq_work *work, void *data)
Jens Axboeb711d4e2020-08-16 08:23:05 -07009453{
Pavel Begunkov9a472ef2020-11-05 22:31:37 +00009454 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00009455 struct io_task_cancel *cancel = data;
Pavel Begunkov9a472ef2020-11-05 22:31:37 +00009456 bool ret;
9457
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009458 if (!cancel->all && (req->flags & REQ_F_LINK_TIMEOUT)) {
Pavel Begunkov9a472ef2020-11-05 22:31:37 +00009459 struct io_ring_ctx *ctx = req->ctx;
9460
9461 /* protect against races with linked timeouts */
Jens Axboe79ebeae2021-08-10 15:18:27 -06009462 spin_lock(&ctx->completion_lock);
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009463 ret = io_match_task(req, cancel->task, cancel->all);
Jens Axboe79ebeae2021-08-10 15:18:27 -06009464 spin_unlock(&ctx->completion_lock);
Pavel Begunkov9a472ef2020-11-05 22:31:37 +00009465 } else {
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009466 ret = io_match_task(req, cancel->task, cancel->all);
Pavel Begunkov9a472ef2020-11-05 22:31:37 +00009467 }
9468 return ret;
Jens Axboeb711d4e2020-08-16 08:23:05 -07009469}
9470
Pavel Begunkove1915f72021-03-11 23:29:35 +00009471static bool io_cancel_defer_files(struct io_ring_ctx *ctx,
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009472 struct task_struct *task, bool cancel_all)
Pavel Begunkovb7ddce32020-09-06 00:45:14 +03009473{
Pavel Begunkove1915f72021-03-11 23:29:35 +00009474 struct io_defer_entry *de;
Pavel Begunkovb7ddce32020-09-06 00:45:14 +03009475 LIST_HEAD(list);
9476
Jens Axboe79ebeae2021-08-10 15:18:27 -06009477 spin_lock(&ctx->completion_lock);
Pavel Begunkovb7ddce32020-09-06 00:45:14 +03009478 list_for_each_entry_reverse(de, &ctx->defer_list, list) {
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009479 if (io_match_task(de->req, task, cancel_all)) {
Pavel Begunkovb7ddce32020-09-06 00:45:14 +03009480 list_cut_position(&list, &ctx->defer_list, &de->list);
9481 break;
9482 }
9483 }
Jens Axboe79ebeae2021-08-10 15:18:27 -06009484 spin_unlock(&ctx->completion_lock);
Pavel Begunkove1915f72021-03-11 23:29:35 +00009485 if (list_empty(&list))
9486 return false;
Pavel Begunkovb7ddce32020-09-06 00:45:14 +03009487
9488 while (!list_empty(&list)) {
9489 de = list_first_entry(&list, struct io_defer_entry, list);
9490 list_del_init(&de->list);
Pavel Begunkovf41db2732021-02-28 22:35:12 +00009491 io_req_complete_failed(de->req, -ECANCELED);
Pavel Begunkovb7ddce32020-09-06 00:45:14 +03009492 kfree(de);
9493 }
Pavel Begunkove1915f72021-03-11 23:29:35 +00009494 return true;
Pavel Begunkovb7ddce32020-09-06 00:45:14 +03009495}
9496
Pavel Begunkov1b007642021-03-06 11:02:17 +00009497static bool io_uring_try_cancel_iowq(struct io_ring_ctx *ctx)
9498{
9499 struct io_tctx_node *node;
9500 enum io_wq_cancel cret;
9501 bool ret = false;
9502
9503 mutex_lock(&ctx->uring_lock);
9504 list_for_each_entry(node, &ctx->tctx_list, ctx_node) {
9505 struct io_uring_task *tctx = node->task->io_uring;
9506
9507 /*
9508 * io_wq will stay alive while we hold uring_lock, because it's
9509 * killed after ctx nodes, which requires to take the lock.
9510 */
9511 if (!tctx || !tctx->io_wq)
9512 continue;
9513 cret = io_wq_cancel_cb(tctx->io_wq, io_cancel_ctx_cb, ctx, true);
9514 ret |= (cret != IO_WQ_CANCEL_NOTFOUND);
9515 }
9516 mutex_unlock(&ctx->uring_lock);
9517
9518 return ret;
9519}
9520
Pavel Begunkov9936c7c2021-02-04 13:51:56 +00009521static void io_uring_try_cancel_requests(struct io_ring_ctx *ctx,
9522 struct task_struct *task,
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009523 bool cancel_all)
Pavel Begunkov9936c7c2021-02-04 13:51:56 +00009524{
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009525 struct io_task_cancel cancel = { .task = task, .all = cancel_all, };
Pavel Begunkov1b007642021-03-06 11:02:17 +00009526 struct io_uring_task *tctx = task ? task->io_uring : NULL;
Pavel Begunkov9936c7c2021-02-04 13:51:56 +00009527
9528 while (1) {
9529 enum io_wq_cancel cret;
9530 bool ret = false;
9531
Pavel Begunkov1b007642021-03-06 11:02:17 +00009532 if (!task) {
9533 ret |= io_uring_try_cancel_iowq(ctx);
9534 } else if (tctx && tctx->io_wq) {
9535 /*
9536 * Cancels requests of all rings, not only @ctx, but
9537 * it's fine as the task is in exit/exec.
9538 */
Jens Axboe5aa75ed2021-02-16 12:56:50 -07009539 cret = io_wq_cancel_cb(tctx->io_wq, io_cancel_task_cb,
Pavel Begunkov9936c7c2021-02-04 13:51:56 +00009540 &cancel, true);
9541 ret |= (cret != IO_WQ_CANCEL_NOTFOUND);
9542 }
9543
9544 /* SQPOLL thread does its own polling */
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009545 if ((!(ctx->flags & IORING_SETUP_SQPOLL) && cancel_all) ||
Jens Axboed052d1d2021-03-11 10:49:20 -07009546 (ctx->sq_data && ctx->sq_data->thread == current)) {
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01009547 while (!wq_list_empty(&ctx->iopoll_list)) {
Pavel Begunkov9936c7c2021-02-04 13:51:56 +00009548 io_iopoll_try_reap_events(ctx);
9549 ret = true;
9550 }
9551 }
9552
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009553 ret |= io_cancel_defer_files(ctx, task, cancel_all);
9554 ret |= io_poll_remove_all(ctx, task, cancel_all);
9555 ret |= io_kill_timeouts(ctx, task, cancel_all);
Pavel Begunkove5dc4802021-06-26 21:40:46 +01009556 if (task)
9557 ret |= io_run_task_work();
Pavel Begunkov9936c7c2021-02-04 13:51:56 +00009558 if (!ret)
9559 break;
9560 cond_resched();
9561 }
9562}
9563
Pavel Begunkoveef51da2021-06-14 02:36:15 +01009564static int __io_uring_add_tctx_node(struct io_ring_ctx *ctx)
Jens Axboe0f212202020-09-13 13:09:39 -06009565{
Matthew Wilcox (Oracle)236434c2020-10-09 13:49:52 +01009566 struct io_uring_task *tctx = current->io_uring;
Pavel Begunkov13bf43f2021-03-06 11:02:12 +00009567 struct io_tctx_node *node;
Pavel Begunkova528b042020-12-21 18:34:04 +00009568 int ret;
Matthew Wilcox (Oracle)236434c2020-10-09 13:49:52 +01009569
9570 if (unlikely(!tctx)) {
Jens Axboe5aa75ed2021-02-16 12:56:50 -07009571 ret = io_uring_alloc_task_context(current, ctx);
Jens Axboe0f212202020-09-13 13:09:39 -06009572 if (unlikely(ret))
9573 return ret;
Matthew Wilcox (Oracle)236434c2020-10-09 13:49:52 +01009574 tctx = current->io_uring;
Jens Axboe0f212202020-09-13 13:09:39 -06009575 }
Pavel Begunkovcf27f3b2021-03-19 17:22:31 +00009576 if (!xa_load(&tctx->xa, (unsigned long)ctx)) {
9577 node = kmalloc(sizeof(*node), GFP_KERNEL);
9578 if (!node)
9579 return -ENOMEM;
9580 node->ctx = ctx;
9581 node->task = current;
Jens Axboe0f212202020-09-13 13:09:39 -06009582
Pavel Begunkovcf27f3b2021-03-19 17:22:31 +00009583 ret = xa_err(xa_store(&tctx->xa, (unsigned long)ctx,
9584 node, GFP_KERNEL));
9585 if (ret) {
9586 kfree(node);
9587 return ret;
Jens Axboe0f212202020-09-13 13:09:39 -06009588 }
Pavel Begunkovcf27f3b2021-03-19 17:22:31 +00009589
9590 mutex_lock(&ctx->uring_lock);
9591 list_add(&node->ctx_node, &ctx->tctx_list);
9592 mutex_unlock(&ctx->uring_lock);
Jens Axboe0f212202020-09-13 13:09:39 -06009593 }
Pavel Begunkovcf27f3b2021-03-19 17:22:31 +00009594 tctx->last = ctx;
Jens Axboe0f212202020-09-13 13:09:39 -06009595 return 0;
9596}
9597
9598/*
Pavel Begunkovcf27f3b2021-03-19 17:22:31 +00009599 * Note that this task has used io_uring. We use it for cancelation purposes.
9600 */
Pavel Begunkoveef51da2021-06-14 02:36:15 +01009601static inline int io_uring_add_tctx_node(struct io_ring_ctx *ctx)
Pavel Begunkovcf27f3b2021-03-19 17:22:31 +00009602{
9603 struct io_uring_task *tctx = current->io_uring;
9604
9605 if (likely(tctx && tctx->last == ctx))
9606 return 0;
Pavel Begunkoveef51da2021-06-14 02:36:15 +01009607 return __io_uring_add_tctx_node(ctx);
Pavel Begunkovcf27f3b2021-03-19 17:22:31 +00009608}
9609
9610/*
Jens Axboe0f212202020-09-13 13:09:39 -06009611 * Remove this io_uring_file -> task mapping.
9612 */
Pavel Begunkoveef51da2021-06-14 02:36:15 +01009613static void io_uring_del_tctx_node(unsigned long index)
Jens Axboe0f212202020-09-13 13:09:39 -06009614{
9615 struct io_uring_task *tctx = current->io_uring;
Pavel Begunkov13bf43f2021-03-06 11:02:12 +00009616 struct io_tctx_node *node;
Pavel Begunkov29412672021-03-06 11:02:11 +00009617
Pavel Begunkoveebd2e32021-03-06 11:02:14 +00009618 if (!tctx)
9619 return;
Pavel Begunkov13bf43f2021-03-06 11:02:12 +00009620 node = xa_erase(&tctx->xa, index);
9621 if (!node)
Pavel Begunkov29412672021-03-06 11:02:11 +00009622 return;
Jens Axboe0f212202020-09-13 13:09:39 -06009623
Pavel Begunkov13bf43f2021-03-06 11:02:12 +00009624 WARN_ON_ONCE(current != node->task);
9625 WARN_ON_ONCE(list_empty(&node->ctx_node));
9626
9627 mutex_lock(&node->ctx->uring_lock);
9628 list_del(&node->ctx_node);
9629 mutex_unlock(&node->ctx->uring_lock);
9630
Pavel Begunkovbaf186c2021-03-06 11:02:15 +00009631 if (tctx->last == node->ctx)
Jens Axboe0f212202020-09-13 13:09:39 -06009632 tctx->last = NULL;
Pavel Begunkov13bf43f2021-03-06 11:02:12 +00009633 kfree(node);
Jens Axboe0f212202020-09-13 13:09:39 -06009634}
9635
Pavel Begunkov8452d4a2021-02-27 11:16:46 +00009636static void io_uring_clean_tctx(struct io_uring_task *tctx)
Pavel Begunkovde7f1d92021-01-04 20:43:29 +00009637{
Pavel Begunkovba5ef6d2021-05-20 13:21:20 +01009638 struct io_wq *wq = tctx->io_wq;
Pavel Begunkov13bf43f2021-03-06 11:02:12 +00009639 struct io_tctx_node *node;
Pavel Begunkovde7f1d92021-01-04 20:43:29 +00009640 unsigned long index;
9641
Jens Axboe8bab4c02021-09-24 07:12:27 -06009642 xa_for_each(&tctx->xa, index, node) {
Pavel Begunkoveef51da2021-06-14 02:36:15 +01009643 io_uring_del_tctx_node(index);
Jens Axboe8bab4c02021-09-24 07:12:27 -06009644 cond_resched();
9645 }
Marco Elverb16ef422021-05-27 11:25:48 +02009646 if (wq) {
9647 /*
9648 * Must be after io_uring_del_task_file() (removes nodes under
9649 * uring_lock) to avoid race with io_uring_try_cancel_iowq().
9650 */
Pavel Begunkovba5ef6d2021-05-20 13:21:20 +01009651 io_wq_put_and_exit(wq);
Pavel Begunkovdadebc32021-08-23 13:30:44 +01009652 tctx->io_wq = NULL;
Marco Elverb16ef422021-05-27 11:25:48 +02009653 }
Pavel Begunkovde7f1d92021-01-04 20:43:29 +00009654}
9655
Pavel Begunkov3f48cf12021-04-11 01:46:27 +01009656static s64 tctx_inflight(struct io_uring_task *tctx, bool tracked)
Pavel Begunkov521d6a72021-03-11 23:29:38 +00009657{
Pavel Begunkov3f48cf12021-04-11 01:46:27 +01009658 if (tracked)
9659 return atomic_read(&tctx->inflight_tracked);
Pavel Begunkov521d6a72021-03-11 23:29:38 +00009660 return percpu_counter_sum(&tctx->inflight);
9661}
9662
Pavel Begunkov09899b12021-06-14 02:36:22 +01009663static void io_uring_drop_tctx_refs(struct task_struct *task)
9664{
9665 struct io_uring_task *tctx = task->io_uring;
9666 unsigned int refs = tctx->cached_refs;
9667
Pavel Begunkove9dbe222021-08-09 13:04:20 +01009668 if (refs) {
9669 tctx->cached_refs = 0;
9670 percpu_counter_sub(&tctx->inflight, refs);
9671 put_task_struct_many(task, refs);
9672 }
Pavel Begunkov09899b12021-06-14 02:36:22 +01009673}
9674
Pavel Begunkov78cc6872021-06-14 02:36:23 +01009675/*
9676 * Find any io_uring ctx that this task has registered or done IO on, and cancel
9677 * requests. @sqd should be not-null IIF it's an SQPOLL thread cancellation.
9678 */
9679static void io_uring_cancel_generic(bool cancel_all, struct io_sq_data *sqd)
Pavel Begunkov0e9ddb32021-02-07 22:34:26 +00009680{
Pavel Begunkov521d6a72021-03-11 23:29:38 +00009681 struct io_uring_task *tctx = current->io_uring;
Pavel Begunkov734551d2021-04-18 14:52:09 +01009682 struct io_ring_ctx *ctx;
Jens Axboefdaf0832020-10-30 09:37:30 -06009683 s64 inflight;
Pavel Begunkov0e9ddb32021-02-07 22:34:26 +00009684 DEFINE_WAIT(wait);
Jens Axboefdaf0832020-10-30 09:37:30 -06009685
Pavel Begunkov78cc6872021-06-14 02:36:23 +01009686 WARN_ON_ONCE(sqd && sqd->thread != current);
9687
Palash Oswal6d042ff2021-04-27 18:21:49 +05309688 if (!current->io_uring)
9689 return;
Pavel Begunkov17a91052021-05-23 15:48:39 +01009690 if (tctx->io_wq)
9691 io_wq_exit_start(tctx->io_wq);
9692
Jens Axboefdaf0832020-10-30 09:37:30 -06009693 atomic_inc(&tctx->in_idle);
Jens Axboed8a6df12020-10-15 16:24:45 -06009694 do {
Pavel Begunkove9dbe222021-08-09 13:04:20 +01009695 io_uring_drop_tctx_refs(current);
Jens Axboe0f212202020-09-13 13:09:39 -06009696 /* read completions before cancelations */
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009697 inflight = tctx_inflight(tctx, !cancel_all);
Jens Axboed8a6df12020-10-15 16:24:45 -06009698 if (!inflight)
9699 break;
Jens Axboe0f212202020-09-13 13:09:39 -06009700
Pavel Begunkov78cc6872021-06-14 02:36:23 +01009701 if (!sqd) {
9702 struct io_tctx_node *node;
9703 unsigned long index;
9704
9705 xa_for_each(&tctx->xa, index, node) {
9706 /* sqpoll task will cancel all its requests */
9707 if (node->ctx->sq_data)
9708 continue;
9709 io_uring_try_cancel_requests(node->ctx, current,
9710 cancel_all);
9711 }
9712 } else {
9713 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list)
9714 io_uring_try_cancel_requests(ctx, current,
9715 cancel_all);
9716 }
9717
9718 prepare_to_wait(&tctx->wait, &wait, TASK_UNINTERRUPTIBLE);
Pavel Begunkove9dbe222021-08-09 13:04:20 +01009719 io_uring_drop_tctx_refs(current);
Jens Axboe0f212202020-09-13 13:09:39 -06009720 /*
Pavel Begunkova1bb3cd2021-01-26 15:28:26 +00009721 * If we've seen completions, retry without waiting. This
9722 * avoids a race where a completion comes in before we did
9723 * prepare_to_wait().
Jens Axboe0f212202020-09-13 13:09:39 -06009724 */
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009725 if (inflight == tctx_inflight(tctx, !cancel_all))
Pavel Begunkova1bb3cd2021-01-26 15:28:26 +00009726 schedule();
Pavel Begunkovf57555e2020-12-20 13:21:44 +00009727 finish_wait(&tctx->wait, &wait);
Jens Axboed8a6df12020-10-15 16:24:45 -06009728 } while (1);
Jens Axboefdaf0832020-10-30 09:37:30 -06009729 atomic_dec(&tctx->in_idle);
Pavel Begunkovde7f1d92021-01-04 20:43:29 +00009730
Pavel Begunkov8452d4a2021-02-27 11:16:46 +00009731 io_uring_clean_tctx(tctx);
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009732 if (cancel_all) {
Pavel Begunkov3f48cf12021-04-11 01:46:27 +01009733 /* for exec all current's requests should be gone, kill tctx */
9734 __io_uring_free(current);
9735 }
Pavel Begunkov44e728b2020-06-15 10:24:04 +03009736}
9737
Hao Xuf552a272021-08-12 12:14:35 +08009738void __io_uring_cancel(bool cancel_all)
Pavel Begunkov78cc6872021-06-14 02:36:23 +01009739{
Hao Xuf552a272021-08-12 12:14:35 +08009740 io_uring_cancel_generic(cancel_all, NULL);
Pavel Begunkov78cc6872021-06-14 02:36:23 +01009741}
9742
Roman Penyaev6c5c2402019-11-28 12:53:22 +01009743static void *io_uring_validate_mmap_request(struct file *file,
9744 loff_t pgoff, size_t sz)
Jens Axboe2b188cc2019-01-07 10:46:33 -07009745{
Jens Axboe2b188cc2019-01-07 10:46:33 -07009746 struct io_ring_ctx *ctx = file->private_data;
Roman Penyaev6c5c2402019-11-28 12:53:22 +01009747 loff_t offset = pgoff << PAGE_SHIFT;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009748 struct page *page;
9749 void *ptr;
9750
9751 switch (offset) {
9752 case IORING_OFF_SQ_RING:
Hristo Venev75b28af2019-08-26 17:23:46 +00009753 case IORING_OFF_CQ_RING:
9754 ptr = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009755 break;
9756 case IORING_OFF_SQES:
9757 ptr = ctx->sq_sqes;
9758 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009759 default:
Roman Penyaev6c5c2402019-11-28 12:53:22 +01009760 return ERR_PTR(-EINVAL);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009761 }
9762
9763 page = virt_to_head_page(ptr);
Matthew Wilcox (Oracle)a50b8542019-09-23 15:34:25 -07009764 if (sz > page_size(page))
Roman Penyaev6c5c2402019-11-28 12:53:22 +01009765 return ERR_PTR(-EINVAL);
9766
9767 return ptr;
9768}
9769
9770#ifdef CONFIG_MMU
9771
9772static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
9773{
9774 size_t sz = vma->vm_end - vma->vm_start;
9775 unsigned long pfn;
9776 void *ptr;
9777
9778 ptr = io_uring_validate_mmap_request(file, vma->vm_pgoff, sz);
9779 if (IS_ERR(ptr))
9780 return PTR_ERR(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009781
9782 pfn = virt_to_phys(ptr) >> PAGE_SHIFT;
9783 return remap_pfn_range(vma, vma->vm_start, pfn, sz, vma->vm_page_prot);
9784}
9785
Roman Penyaev6c5c2402019-11-28 12:53:22 +01009786#else /* !CONFIG_MMU */
9787
9788static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
9789{
9790 return vma->vm_flags & (VM_SHARED | VM_MAYSHARE) ? 0 : -EINVAL;
9791}
9792
9793static unsigned int io_uring_nommu_mmap_capabilities(struct file *file)
9794{
9795 return NOMMU_MAP_DIRECT | NOMMU_MAP_READ | NOMMU_MAP_WRITE;
9796}
9797
9798static unsigned long io_uring_nommu_get_unmapped_area(struct file *file,
9799 unsigned long addr, unsigned long len,
9800 unsigned long pgoff, unsigned long flags)
9801{
9802 void *ptr;
9803
9804 ptr = io_uring_validate_mmap_request(file, pgoff, len);
9805 if (IS_ERR(ptr))
9806 return PTR_ERR(ptr);
9807
9808 return (unsigned long) ptr;
9809}
9810
9811#endif /* !CONFIG_MMU */
9812
Pavel Begunkovd9d05212021-01-08 20:57:25 +00009813static int io_sqpoll_wait_sq(struct io_ring_ctx *ctx)
Jens Axboe90554202020-09-03 12:12:41 -06009814{
9815 DEFINE_WAIT(wait);
9816
9817 do {
9818 if (!io_sqring_full(ctx))
9819 break;
Jens Axboe90554202020-09-03 12:12:41 -06009820 prepare_to_wait(&ctx->sqo_sq_wait, &wait, TASK_INTERRUPTIBLE);
9821
9822 if (!io_sqring_full(ctx))
9823 break;
Jens Axboe90554202020-09-03 12:12:41 -06009824 schedule();
9825 } while (!signal_pending(current));
9826
9827 finish_wait(&ctx->sqo_sq_wait, &wait);
Yang Li51993282021-03-09 14:30:41 +08009828 return 0;
Jens Axboe90554202020-09-03 12:12:41 -06009829}
9830
Hao Xuc73ebb62020-11-03 10:54:37 +08009831static int io_get_ext_arg(unsigned flags, const void __user *argp, size_t *argsz,
9832 struct __kernel_timespec __user **ts,
9833 const sigset_t __user **sig)
9834{
9835 struct io_uring_getevents_arg arg;
9836
9837 /*
9838 * If EXT_ARG isn't set, then we have no timespec and the argp pointer
9839 * is just a pointer to the sigset_t.
9840 */
9841 if (!(flags & IORING_ENTER_EXT_ARG)) {
9842 *sig = (const sigset_t __user *) argp;
9843 *ts = NULL;
9844 return 0;
9845 }
9846
9847 /*
9848 * EXT_ARG is set - ensure we agree on the size of it and copy in our
9849 * timespec and sigset_t pointers if good.
9850 */
9851 if (*argsz != sizeof(arg))
9852 return -EINVAL;
9853 if (copy_from_user(&arg, argp, sizeof(arg)))
9854 return -EFAULT;
9855 *sig = u64_to_user_ptr(arg.sigmask);
9856 *argsz = arg.sigmask_sz;
9857 *ts = u64_to_user_ptr(arg.ts);
9858 return 0;
9859}
9860
Jens Axboe2b188cc2019-01-07 10:46:33 -07009861SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
Hao Xuc73ebb62020-11-03 10:54:37 +08009862 u32, min_complete, u32, flags, const void __user *, argp,
9863 size_t, argsz)
Jens Axboe2b188cc2019-01-07 10:46:33 -07009864{
9865 struct io_ring_ctx *ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009866 int submitted = 0;
9867 struct fd f;
Pavel Begunkov33f993d2021-03-19 17:22:30 +00009868 long ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009869
Jens Axboe4c6e2772020-07-01 11:29:10 -06009870 io_run_task_work();
Jens Axboeb41e9852020-02-17 09:52:41 -07009871
Pavel Begunkov33f993d2021-03-19 17:22:30 +00009872 if (unlikely(flags & ~(IORING_ENTER_GETEVENTS | IORING_ENTER_SQ_WAKEUP |
9873 IORING_ENTER_SQ_WAIT | IORING_ENTER_EXT_ARG)))
Jens Axboe2b188cc2019-01-07 10:46:33 -07009874 return -EINVAL;
9875
9876 f = fdget(fd);
Pavel Begunkov33f993d2021-03-19 17:22:30 +00009877 if (unlikely(!f.file))
Jens Axboe2b188cc2019-01-07 10:46:33 -07009878 return -EBADF;
9879
9880 ret = -EOPNOTSUPP;
Pavel Begunkov33f993d2021-03-19 17:22:30 +00009881 if (unlikely(f.file->f_op != &io_uring_fops))
Jens Axboe2b188cc2019-01-07 10:46:33 -07009882 goto out_fput;
9883
9884 ret = -ENXIO;
9885 ctx = f.file->private_data;
Pavel Begunkov33f993d2021-03-19 17:22:30 +00009886 if (unlikely(!percpu_ref_tryget(&ctx->refs)))
Jens Axboe2b188cc2019-01-07 10:46:33 -07009887 goto out_fput;
9888
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02009889 ret = -EBADFD;
Pavel Begunkov33f993d2021-03-19 17:22:30 +00009890 if (unlikely(ctx->flags & IORING_SETUP_R_DISABLED))
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02009891 goto out;
9892
Jens Axboe6c271ce2019-01-10 11:22:30 -07009893 /*
9894 * For SQ polling, the thread will do all submissions and completions.
9895 * Just return the requested submit count, and wake the thread if
9896 * we were asked to.
9897 */
Jens Axboeb2a9ead2019-09-12 14:19:16 -06009898 ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07009899 if (ctx->flags & IORING_SETUP_SQPOLL) {
Pavel Begunkov90f67362021-08-09 20:18:12 +01009900 io_cqring_overflow_flush(ctx);
Pavel Begunkov89448c42020-12-17 00:24:39 +00009901
Jens Axboe21f96522021-08-14 09:04:40 -06009902 if (unlikely(ctx->sq_data->thread == NULL)) {
9903 ret = -EOWNERDEAD;
Stefan Metzmacher04147482021-03-07 11:54:29 +01009904 goto out;
Jens Axboe21f96522021-08-14 09:04:40 -06009905 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07009906 if (flags & IORING_ENTER_SQ_WAKEUP)
Jens Axboe534ca6d2020-09-02 13:52:19 -06009907 wake_up(&ctx->sq_data->wait);
Pavel Begunkovd9d05212021-01-08 20:57:25 +00009908 if (flags & IORING_ENTER_SQ_WAIT) {
9909 ret = io_sqpoll_wait_sq(ctx);
9910 if (ret)
9911 goto out;
9912 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07009913 submitted = to_submit;
Jens Axboeb2a9ead2019-09-12 14:19:16 -06009914 } else if (to_submit) {
Pavel Begunkoveef51da2021-06-14 02:36:15 +01009915 ret = io_uring_add_tctx_node(ctx);
Jens Axboe0f212202020-09-13 13:09:39 -06009916 if (unlikely(ret))
9917 goto out;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009918 mutex_lock(&ctx->uring_lock);
Jens Axboe0f212202020-09-13 13:09:39 -06009919 submitted = io_submit_sqes(ctx, to_submit);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009920 mutex_unlock(&ctx->uring_lock);
Pavel Begunkov7c504e652019-12-18 19:53:45 +03009921
9922 if (submitted != to_submit)
9923 goto out;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009924 }
9925 if (flags & IORING_ENTER_GETEVENTS) {
Hao Xuc73ebb62020-11-03 10:54:37 +08009926 const sigset_t __user *sig;
9927 struct __kernel_timespec __user *ts;
9928
9929 ret = io_get_ext_arg(flags, argp, &argsz, &ts, &sig);
9930 if (unlikely(ret))
9931 goto out;
9932
Jens Axboe2b188cc2019-01-07 10:46:33 -07009933 min_complete = min(min_complete, ctx->cq_entries);
9934
Xiaoguang Wang32b22442020-03-11 09:26:09 +08009935 /*
9936 * When SETUP_IOPOLL and SETUP_SQPOLL are both enabled, user
9937 * space applications don't need to do io completion events
9938 * polling again, they can rely on io_sq_thread to do polling
9939 * work, which can reduce cpu usage and uring_lock contention.
9940 */
9941 if (ctx->flags & IORING_SETUP_IOPOLL &&
9942 !(ctx->flags & IORING_SETUP_SQPOLL)) {
Pavel Begunkov7668b922020-07-07 16:36:21 +03009943 ret = io_iopoll_check(ctx, min_complete);
Jens Axboedef596e2019-01-09 08:59:42 -07009944 } else {
Hao Xuc73ebb62020-11-03 10:54:37 +08009945 ret = io_cqring_wait(ctx, min_complete, sig, argsz, ts);
Jens Axboedef596e2019-01-09 08:59:42 -07009946 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07009947 }
9948
Pavel Begunkov7c504e652019-12-18 19:53:45 +03009949out:
Pavel Begunkov6805b322019-10-08 02:18:42 +03009950 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009951out_fput:
9952 fdput(f);
9953 return submitted ? submitted : ret;
9954}
9955
Tobias Klauserbebdb652020-02-26 18:38:32 +01009956#ifdef CONFIG_PROC_FS
Matthew Wilcox (Oracle)61cf9372021-03-08 14:16:16 +00009957static int io_uring_show_cred(struct seq_file *m, unsigned int id,
9958 const struct cred *cred)
Jens Axboe87ce9552020-01-30 08:25:34 -07009959{
Jens Axboe87ce9552020-01-30 08:25:34 -07009960 struct user_namespace *uns = seq_user_ns(m);
9961 struct group_info *gi;
9962 kernel_cap_t cap;
9963 unsigned __capi;
9964 int g;
9965
9966 seq_printf(m, "%5d\n", id);
9967 seq_put_decimal_ull(m, "\tUid:\t", from_kuid_munged(uns, cred->uid));
9968 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->euid));
9969 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->suid));
9970 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->fsuid));
9971 seq_put_decimal_ull(m, "\n\tGid:\t", from_kgid_munged(uns, cred->gid));
9972 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->egid));
9973 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->sgid));
9974 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->fsgid));
9975 seq_puts(m, "\n\tGroups:\t");
9976 gi = cred->group_info;
9977 for (g = 0; g < gi->ngroups; g++) {
9978 seq_put_decimal_ull(m, g ? " " : "",
9979 from_kgid_munged(uns, gi->gid[g]));
9980 }
9981 seq_puts(m, "\n\tCapEff:\t");
9982 cap = cred->cap_effective;
9983 CAP_FOR_EACH_U32(__capi)
9984 seq_put_hex_ll(m, NULL, cap.cap[CAP_LAST_U32 - __capi], 8);
9985 seq_putc(m, '\n');
9986 return 0;
9987}
9988
9989static void __io_uring_show_fdinfo(struct io_ring_ctx *ctx, struct seq_file *m)
9990{
Joseph Qidbbe9c62020-09-29 09:01:22 -06009991 struct io_sq_data *sq = NULL;
Hao Xu83f84352021-09-13 21:08:54 +08009992 struct io_overflow_cqe *ocqe;
9993 struct io_rings *r = ctx->rings;
9994 unsigned int sq_mask = ctx->sq_entries - 1, cq_mask = ctx->cq_entries - 1;
9995 unsigned int cached_sq_head = ctx->cached_sq_head;
9996 unsigned int cached_cq_tail = ctx->cached_cq_tail;
9997 unsigned int sq_head = READ_ONCE(r->sq.head);
9998 unsigned int sq_tail = READ_ONCE(r->sq.tail);
9999 unsigned int cq_head = READ_ONCE(r->cq.head);
10000 unsigned int cq_tail = READ_ONCE(r->cq.tail);
Jens Axboefad8e0d2020-09-28 08:57:48 -060010001 bool has_lock;
Hao Xu83f84352021-09-13 21:08:54 +080010002 unsigned int i;
10003
10004 /*
10005 * we may get imprecise sqe and cqe info if uring is actively running
10006 * since we get cached_sq_head and cached_cq_tail without uring_lock
10007 * and sq_tail and cq_head are changed by userspace. But it's ok since
10008 * we usually use these info when it is stuck.
10009 */
10010 seq_printf(m, "SqHead:\t%u\n", sq_head & sq_mask);
10011 seq_printf(m, "SqTail:\t%u\n", sq_tail & sq_mask);
10012 seq_printf(m, "CachedSqHead:\t%u\n", cached_sq_head & sq_mask);
10013 seq_printf(m, "CqHead:\t%u\n", cq_head & cq_mask);
10014 seq_printf(m, "CqTail:\t%u\n", cq_tail & cq_mask);
10015 seq_printf(m, "CachedCqTail:\t%u\n", cached_cq_tail & cq_mask);
10016 seq_printf(m, "SQEs:\t%u\n", sq_tail - cached_sq_head);
10017 for (i = cached_sq_head; i < sq_tail; i++) {
10018 unsigned int sq_idx = READ_ONCE(ctx->sq_array[i & sq_mask]);
10019
10020 if (likely(sq_idx <= sq_mask)) {
10021 struct io_uring_sqe *sqe = &ctx->sq_sqes[sq_idx];
10022
10023 seq_printf(m, "%5u: opcode:%d, fd:%d, flags:%x, user_data:%llu\n",
10024 sq_idx, sqe->opcode, sqe->fd, sqe->flags, sqe->user_data);
10025 }
10026 }
10027 seq_printf(m, "CQEs:\t%u\n", cached_cq_tail - cq_head);
10028 for (i = cq_head; i < cached_cq_tail; i++) {
10029 struct io_uring_cqe *cqe = &r->cqes[i & cq_mask];
10030
10031 seq_printf(m, "%5u: user_data:%llu, res:%d, flag:%x\n",
10032 i & cq_mask, cqe->user_data, cqe->res, cqe->flags);
10033 }
Jens Axboe87ce9552020-01-30 08:25:34 -070010034
Jens Axboefad8e0d2020-09-28 08:57:48 -060010035 /*
10036 * Avoid ABBA deadlock between the seq lock and the io_uring mutex,
10037 * since fdinfo case grabs it in the opposite direction of normal use
10038 * cases. If we fail to get the lock, we just don't iterate any
10039 * structures that could be going away outside the io_uring mutex.
10040 */
10041 has_lock = mutex_trylock(&ctx->uring_lock);
10042
Jens Axboe5f3f26f2021-02-25 10:17:46 -070010043 if (has_lock && (ctx->flags & IORING_SETUP_SQPOLL)) {
Joseph Qidbbe9c62020-09-29 09:01:22 -060010044 sq = ctx->sq_data;
Jens Axboe5f3f26f2021-02-25 10:17:46 -070010045 if (!sq->thread)
10046 sq = NULL;
10047 }
Joseph Qidbbe9c62020-09-29 09:01:22 -060010048
10049 seq_printf(m, "SqThread:\t%d\n", sq ? task_pid_nr(sq->thread) : -1);
10050 seq_printf(m, "SqThreadCpu:\t%d\n", sq ? task_cpu(sq->thread) : -1);
Jens Axboe87ce9552020-01-30 08:25:34 -070010051 seq_printf(m, "UserFiles:\t%u\n", ctx->nr_user_files);
Jens Axboefad8e0d2020-09-28 08:57:48 -060010052 for (i = 0; has_lock && i < ctx->nr_user_files; i++) {
Jens Axboe7b29f922021-03-12 08:30:14 -070010053 struct file *f = io_file_from_index(ctx, i);
Jens Axboe87ce9552020-01-30 08:25:34 -070010054
Jens Axboe87ce9552020-01-30 08:25:34 -070010055 if (f)
10056 seq_printf(m, "%5u: %s\n", i, file_dentry(f)->d_iname);
10057 else
10058 seq_printf(m, "%5u: <none>\n", i);
10059 }
10060 seq_printf(m, "UserBufs:\t%u\n", ctx->nr_user_bufs);
Jens Axboefad8e0d2020-09-28 08:57:48 -060010061 for (i = 0; has_lock && i < ctx->nr_user_bufs; i++) {
Pavel Begunkov41edf1a2021-04-25 14:32:23 +010010062 struct io_mapped_ubuf *buf = ctx->user_bufs[i];
Pavel Begunkov4751f532021-04-01 15:43:55 +010010063 unsigned int len = buf->ubuf_end - buf->ubuf;
Jens Axboe87ce9552020-01-30 08:25:34 -070010064
Pavel Begunkov4751f532021-04-01 15:43:55 +010010065 seq_printf(m, "%5u: 0x%llx/%u\n", i, buf->ubuf, len);
Jens Axboe87ce9552020-01-30 08:25:34 -070010066 }
Matthew Wilcox (Oracle)61cf9372021-03-08 14:16:16 +000010067 if (has_lock && !xa_empty(&ctx->personalities)) {
10068 unsigned long index;
10069 const struct cred *cred;
10070
Jens Axboe87ce9552020-01-30 08:25:34 -070010071 seq_printf(m, "Personalities:\n");
Matthew Wilcox (Oracle)61cf9372021-03-08 14:16:16 +000010072 xa_for_each(&ctx->personalities, index, cred)
10073 io_uring_show_cred(m, index, cred);
Jens Axboe87ce9552020-01-30 08:25:34 -070010074 }
Hao Xu83f84352021-09-13 21:08:54 +080010075 if (has_lock)
10076 mutex_unlock(&ctx->uring_lock);
10077
10078 seq_puts(m, "PollList:\n");
Jens Axboe79ebeae2021-08-10 15:18:27 -060010079 spin_lock(&ctx->completion_lock);
Jens Axboed7718a92020-02-14 22:23:12 -070010080 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
10081 struct hlist_head *list = &ctx->cancel_hash[i];
10082 struct io_kiocb *req;
10083
10084 hlist_for_each_entry(req, list, hash_node)
10085 seq_printf(m, " op=%d, task_works=%d\n", req->opcode,
10086 req->task->task_works != NULL);
10087 }
Hao Xu83f84352021-09-13 21:08:54 +080010088
10089 seq_puts(m, "CqOverflowList:\n");
10090 list_for_each_entry(ocqe, &ctx->cq_overflow_list, list) {
10091 struct io_uring_cqe *cqe = &ocqe->cqe;
10092
10093 seq_printf(m, " user_data=%llu, res=%d, flags=%x\n",
10094 cqe->user_data, cqe->res, cqe->flags);
10095
10096 }
10097
Jens Axboe79ebeae2021-08-10 15:18:27 -060010098 spin_unlock(&ctx->completion_lock);
Jens Axboe87ce9552020-01-30 08:25:34 -070010099}
10100
10101static void io_uring_show_fdinfo(struct seq_file *m, struct file *f)
10102{
10103 struct io_ring_ctx *ctx = f->private_data;
10104
10105 if (percpu_ref_tryget(&ctx->refs)) {
10106 __io_uring_show_fdinfo(ctx, m);
10107 percpu_ref_put(&ctx->refs);
10108 }
10109}
Tobias Klauserbebdb652020-02-26 18:38:32 +010010110#endif
Jens Axboe87ce9552020-01-30 08:25:34 -070010111
Jens Axboe2b188cc2019-01-07 10:46:33 -070010112static const struct file_operations io_uring_fops = {
10113 .release = io_uring_release,
10114 .mmap = io_uring_mmap,
Roman Penyaev6c5c2402019-11-28 12:53:22 +010010115#ifndef CONFIG_MMU
10116 .get_unmapped_area = io_uring_nommu_get_unmapped_area,
10117 .mmap_capabilities = io_uring_nommu_mmap_capabilities,
10118#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -070010119 .poll = io_uring_poll,
Tobias Klauserbebdb652020-02-26 18:38:32 +010010120#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -070010121 .show_fdinfo = io_uring_show_fdinfo,
Tobias Klauserbebdb652020-02-26 18:38:32 +010010122#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -070010123};
10124
10125static int io_allocate_scq_urings(struct io_ring_ctx *ctx,
10126 struct io_uring_params *p)
10127{
Hristo Venev75b28af2019-08-26 17:23:46 +000010128 struct io_rings *rings;
10129 size_t size, sq_array_offset;
Jens Axboe2b188cc2019-01-07 10:46:33 -070010130
Jens Axboebd740482020-08-05 12:58:23 -060010131 /* make sure these are sane, as we already accounted them */
10132 ctx->sq_entries = p->sq_entries;
10133 ctx->cq_entries = p->cq_entries;
10134
Hristo Venev75b28af2019-08-26 17:23:46 +000010135 size = rings_size(p->sq_entries, p->cq_entries, &sq_array_offset);
10136 if (size == SIZE_MAX)
10137 return -EOVERFLOW;
10138
10139 rings = io_mem_alloc(size);
10140 if (!rings)
Jens Axboe2b188cc2019-01-07 10:46:33 -070010141 return -ENOMEM;
10142
Hristo Venev75b28af2019-08-26 17:23:46 +000010143 ctx->rings = rings;
10144 ctx->sq_array = (u32 *)((char *)rings + sq_array_offset);
10145 rings->sq_ring_mask = p->sq_entries - 1;
10146 rings->cq_ring_mask = p->cq_entries - 1;
10147 rings->sq_ring_entries = p->sq_entries;
10148 rings->cq_ring_entries = p->cq_entries;
Jens Axboe2b188cc2019-01-07 10:46:33 -070010149
10150 size = array_size(sizeof(struct io_uring_sqe), p->sq_entries);
Jens Axboeeb065d32019-11-20 09:26:29 -070010151 if (size == SIZE_MAX) {
10152 io_mem_free(ctx->rings);
10153 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -070010154 return -EOVERFLOW;
Jens Axboeeb065d32019-11-20 09:26:29 -070010155 }
Jens Axboe2b188cc2019-01-07 10:46:33 -070010156
10157 ctx->sq_sqes = io_mem_alloc(size);
Jens Axboeeb065d32019-11-20 09:26:29 -070010158 if (!ctx->sq_sqes) {
10159 io_mem_free(ctx->rings);
10160 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -070010161 return -ENOMEM;
Jens Axboeeb065d32019-11-20 09:26:29 -070010162 }
Jens Axboe2b188cc2019-01-07 10:46:33 -070010163
Jens Axboe2b188cc2019-01-07 10:46:33 -070010164 return 0;
10165}
10166
Pavel Begunkov9faadcc2020-12-21 18:34:05 +000010167static int io_uring_install_fd(struct io_ring_ctx *ctx, struct file *file)
10168{
10169 int ret, fd;
10170
10171 fd = get_unused_fd_flags(O_RDWR | O_CLOEXEC);
10172 if (fd < 0)
10173 return fd;
10174
Pavel Begunkoveef51da2021-06-14 02:36:15 +010010175 ret = io_uring_add_tctx_node(ctx);
Pavel Begunkov9faadcc2020-12-21 18:34:05 +000010176 if (ret) {
10177 put_unused_fd(fd);
10178 return ret;
10179 }
10180 fd_install(fd, file);
10181 return fd;
10182}
10183
Jens Axboe2b188cc2019-01-07 10:46:33 -070010184/*
10185 * Allocate an anonymous fd, this is what constitutes the application
10186 * visible backing of an io_uring instance. The application mmaps this
10187 * fd to gain access to the SQ/CQ ring details. If UNIX sockets are enabled,
10188 * we have to tie this fd to a socket for file garbage collection purposes.
10189 */
Pavel Begunkov9faadcc2020-12-21 18:34:05 +000010190static struct file *io_uring_get_file(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -070010191{
10192 struct file *file;
Jens Axboe2b188cc2019-01-07 10:46:33 -070010193#if defined(CONFIG_UNIX)
Pavel Begunkov9faadcc2020-12-21 18:34:05 +000010194 int ret;
10195
Jens Axboe2b188cc2019-01-07 10:46:33 -070010196 ret = sock_create_kern(&init_net, PF_UNIX, SOCK_RAW, IPPROTO_IP,
10197 &ctx->ring_sock);
10198 if (ret)
Pavel Begunkov9faadcc2020-12-21 18:34:05 +000010199 return ERR_PTR(ret);
Jens Axboe2b188cc2019-01-07 10:46:33 -070010200#endif
10201
Jens Axboe2b188cc2019-01-07 10:46:33 -070010202 file = anon_inode_getfile("[io_uring]", &io_uring_fops, ctx,
10203 O_RDWR | O_CLOEXEC);
Pavel Begunkov9faadcc2020-12-21 18:34:05 +000010204#if defined(CONFIG_UNIX)
Jens Axboe2b188cc2019-01-07 10:46:33 -070010205 if (IS_ERR(file)) {
Pavel Begunkov9faadcc2020-12-21 18:34:05 +000010206 sock_release(ctx->ring_sock);
10207 ctx->ring_sock = NULL;
10208 } else {
10209 ctx->ring_sock->file = file;
Jens Axboe2b188cc2019-01-07 10:46:33 -070010210 }
Jens Axboe2b188cc2019-01-07 10:46:33 -070010211#endif
Pavel Begunkov9faadcc2020-12-21 18:34:05 +000010212 return file;
Jens Axboe2b188cc2019-01-07 10:46:33 -070010213}
10214
Xiaoguang Wang7f136572020-05-05 16:28:53 +080010215static int io_uring_create(unsigned entries, struct io_uring_params *p,
10216 struct io_uring_params __user *params)
Jens Axboe2b188cc2019-01-07 10:46:33 -070010217{
Jens Axboe2b188cc2019-01-07 10:46:33 -070010218 struct io_ring_ctx *ctx;
Pavel Begunkov9faadcc2020-12-21 18:34:05 +000010219 struct file *file;
Jens Axboe2b188cc2019-01-07 10:46:33 -070010220 int ret;
10221
Jens Axboe8110c1a2019-12-28 15:39:54 -070010222 if (!entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -070010223 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -070010224 if (entries > IORING_MAX_ENTRIES) {
10225 if (!(p->flags & IORING_SETUP_CLAMP))
10226 return -EINVAL;
10227 entries = IORING_MAX_ENTRIES;
10228 }
Jens Axboe2b188cc2019-01-07 10:46:33 -070010229
10230 /*
10231 * Use twice as many entries for the CQ ring. It's possible for the
10232 * application to drive a higher depth than the size of the SQ ring,
10233 * since the sqes are only used at submission time. This allows for
Jens Axboe33a107f2019-10-04 12:10:03 -060010234 * some flexibility in overcommitting a bit. If the application has
10235 * set IORING_SETUP_CQSIZE, it will have passed in the desired number
10236 * of CQ ring entries manually.
Jens Axboe2b188cc2019-01-07 10:46:33 -070010237 */
10238 p->sq_entries = roundup_pow_of_two(entries);
Jens Axboe33a107f2019-10-04 12:10:03 -060010239 if (p->flags & IORING_SETUP_CQSIZE) {
10240 /*
10241 * If IORING_SETUP_CQSIZE is set, we do the same roundup
10242 * to a power-of-two, if it isn't already. We do NOT impose
10243 * any cq vs sq ring sizing.
10244 */
Joseph Qieb2667b32020-11-24 15:03:03 +080010245 if (!p->cq_entries)
Jens Axboe33a107f2019-10-04 12:10:03 -060010246 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -070010247 if (p->cq_entries > IORING_MAX_CQ_ENTRIES) {
10248 if (!(p->flags & IORING_SETUP_CLAMP))
10249 return -EINVAL;
10250 p->cq_entries = IORING_MAX_CQ_ENTRIES;
10251 }
Joseph Qieb2667b32020-11-24 15:03:03 +080010252 p->cq_entries = roundup_pow_of_two(p->cq_entries);
10253 if (p->cq_entries < p->sq_entries)
10254 return -EINVAL;
Jens Axboe33a107f2019-10-04 12:10:03 -060010255 } else {
10256 p->cq_entries = 2 * p->sq_entries;
10257 }
Jens Axboe2b188cc2019-01-07 10:46:33 -070010258
Jens Axboe2b188cc2019-01-07 10:46:33 -070010259 ctx = io_ring_ctx_alloc(p);
Jens Axboe62e398b2021-02-21 16:19:37 -070010260 if (!ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -070010261 return -ENOMEM;
Jens Axboe2b188cc2019-01-07 10:46:33 -070010262 ctx->compat = in_compat_syscall();
Jens Axboe62e398b2021-02-21 16:19:37 -070010263 if (!capable(CAP_IPC_LOCK))
10264 ctx->user = get_uid(current_user());
Jens Axboe2aede0e2020-09-14 10:45:53 -060010265
10266 /*
10267 * This is just grabbed for accounting purposes. When a process exits,
10268 * the mm is exited and dropped before the files, hence we need to hang
10269 * on to this mm purely for the purposes of being able to unaccount
10270 * memory (locked/pinned vm). It's not used for anything else.
10271 */
Jens Axboe6b7898e2020-08-25 07:58:00 -060010272 mmgrab(current->mm);
Jens Axboe2aede0e2020-09-14 10:45:53 -060010273 ctx->mm_account = current->mm;
Jens Axboe6b7898e2020-08-25 07:58:00 -060010274
Jens Axboe2b188cc2019-01-07 10:46:33 -070010275 ret = io_allocate_scq_urings(ctx, p);
10276 if (ret)
10277 goto err;
10278
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +020010279 ret = io_sq_offload_create(ctx, p);
Jens Axboe2b188cc2019-01-07 10:46:33 -070010280 if (ret)
10281 goto err;
Pavel Begunkoveae071c2021-04-25 14:32:24 +010010282 /* always set a rsrc node */
Pavel Begunkov47b228c2021-04-29 11:46:48 +010010283 ret = io_rsrc_node_switch_start(ctx);
10284 if (ret)
10285 goto err;
Pavel Begunkoveae071c2021-04-25 14:32:24 +010010286 io_rsrc_node_switch(ctx, NULL);
Jens Axboe2b188cc2019-01-07 10:46:33 -070010287
Jens Axboe2b188cc2019-01-07 10:46:33 -070010288 memset(&p->sq_off, 0, sizeof(p->sq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +000010289 p->sq_off.head = offsetof(struct io_rings, sq.head);
10290 p->sq_off.tail = offsetof(struct io_rings, sq.tail);
10291 p->sq_off.ring_mask = offsetof(struct io_rings, sq_ring_mask);
10292 p->sq_off.ring_entries = offsetof(struct io_rings, sq_ring_entries);
10293 p->sq_off.flags = offsetof(struct io_rings, sq_flags);
10294 p->sq_off.dropped = offsetof(struct io_rings, sq_dropped);
10295 p->sq_off.array = (char *)ctx->sq_array - (char *)ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -070010296
10297 memset(&p->cq_off, 0, sizeof(p->cq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +000010298 p->cq_off.head = offsetof(struct io_rings, cq.head);
10299 p->cq_off.tail = offsetof(struct io_rings, cq.tail);
10300 p->cq_off.ring_mask = offsetof(struct io_rings, cq_ring_mask);
10301 p->cq_off.ring_entries = offsetof(struct io_rings, cq_ring_entries);
10302 p->cq_off.overflow = offsetof(struct io_rings, cq_overflow);
10303 p->cq_off.cqes = offsetof(struct io_rings, cqes);
Stefano Garzarella0d9b5b32020-05-15 18:38:04 +020010304 p->cq_off.flags = offsetof(struct io_rings, cq_flags);
Jens Axboeac90f242019-09-06 10:26:21 -060010305
Xiaoguang Wang7f136572020-05-05 16:28:53 +080010306 p->features = IORING_FEAT_SINGLE_MMAP | IORING_FEAT_NODROP |
10307 IORING_FEAT_SUBMIT_STABLE | IORING_FEAT_RW_CUR_POS |
Jiufei Xue5769a352020-06-17 17:53:55 +080010308 IORING_FEAT_CUR_PERSONALITY | IORING_FEAT_FAST_POLL |
Hao Xuc73ebb62020-11-03 10:54:37 +080010309 IORING_FEAT_POLL_32BITS | IORING_FEAT_SQPOLL_NONFIXED |
Pavel Begunkov96905572021-06-10 16:37:38 +010010310 IORING_FEAT_EXT_ARG | IORING_FEAT_NATIVE_WORKERS |
10311 IORING_FEAT_RSRC_TAGS;
Xiaoguang Wang7f136572020-05-05 16:28:53 +080010312
10313 if (copy_to_user(params, p, sizeof(*p))) {
10314 ret = -EFAULT;
10315 goto err;
10316 }
Jens Axboed1719f72020-07-30 13:43:53 -060010317
Pavel Begunkov9faadcc2020-12-21 18:34:05 +000010318 file = io_uring_get_file(ctx);
10319 if (IS_ERR(file)) {
10320 ret = PTR_ERR(file);
10321 goto err;
10322 }
10323
Jens Axboed1719f72020-07-30 13:43:53 -060010324 /*
Jens Axboe044c1ab2019-10-28 09:15:33 -060010325 * Install ring fd as the very last thing, so we don't risk someone
10326 * having closed it before we finish setup
10327 */
Pavel Begunkov9faadcc2020-12-21 18:34:05 +000010328 ret = io_uring_install_fd(ctx, file);
10329 if (ret < 0) {
10330 /* fput will clean it up */
10331 fput(file);
10332 return ret;
10333 }
Jens Axboe044c1ab2019-10-28 09:15:33 -060010334
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +020010335 trace_io_uring_create(ret, ctx, p->sq_entries, p->cq_entries, p->flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -070010336 return ret;
10337err:
10338 io_ring_ctx_wait_and_kill(ctx);
10339 return ret;
10340}
10341
10342/*
10343 * Sets up an aio uring context, and returns the fd. Applications asks for a
10344 * ring size, we return the actual sq/cq ring sizes (among other things) in the
10345 * params structure passed in.
10346 */
10347static long io_uring_setup(u32 entries, struct io_uring_params __user *params)
10348{
10349 struct io_uring_params p;
Jens Axboe2b188cc2019-01-07 10:46:33 -070010350 int i;
10351
10352 if (copy_from_user(&p, params, sizeof(p)))
10353 return -EFAULT;
10354 for (i = 0; i < ARRAY_SIZE(p.resv); i++) {
10355 if (p.resv[i])
10356 return -EINVAL;
10357 }
10358
Jens Axboe6c271ce2019-01-10 11:22:30 -070010359 if (p.flags & ~(IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL |
Jens Axboe8110c1a2019-12-28 15:39:54 -070010360 IORING_SETUP_SQ_AFF | IORING_SETUP_CQSIZE |
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +020010361 IORING_SETUP_CLAMP | IORING_SETUP_ATTACH_WQ |
10362 IORING_SETUP_R_DISABLED))
Jens Axboe2b188cc2019-01-07 10:46:33 -070010363 return -EINVAL;
10364
Xiaoguang Wang7f136572020-05-05 16:28:53 +080010365 return io_uring_create(entries, &p, params);
Jens Axboe2b188cc2019-01-07 10:46:33 -070010366}
10367
10368SYSCALL_DEFINE2(io_uring_setup, u32, entries,
10369 struct io_uring_params __user *, params)
10370{
10371 return io_uring_setup(entries, params);
10372}
10373
Jens Axboe66f4af92020-01-16 15:36:52 -070010374static int io_probe(struct io_ring_ctx *ctx, void __user *arg, unsigned nr_args)
10375{
10376 struct io_uring_probe *p;
10377 size_t size;
10378 int i, ret;
10379
10380 size = struct_size(p, ops, nr_args);
10381 if (size == SIZE_MAX)
10382 return -EOVERFLOW;
10383 p = kzalloc(size, GFP_KERNEL);
10384 if (!p)
10385 return -ENOMEM;
10386
10387 ret = -EFAULT;
10388 if (copy_from_user(p, arg, size))
10389 goto out;
10390 ret = -EINVAL;
10391 if (memchr_inv(p, 0, size))
10392 goto out;
10393
10394 p->last_op = IORING_OP_LAST - 1;
10395 if (nr_args > IORING_OP_LAST)
10396 nr_args = IORING_OP_LAST;
10397
10398 for (i = 0; i < nr_args; i++) {
10399 p->ops[i].op = i;
10400 if (!io_op_defs[i].not_supported)
10401 p->ops[i].flags = IO_URING_OP_SUPPORTED;
10402 }
10403 p->ops_len = i;
10404
10405 ret = 0;
10406 if (copy_to_user(arg, p, size))
10407 ret = -EFAULT;
10408out:
10409 kfree(p);
10410 return ret;
10411}
10412
Jens Axboe071698e2020-01-28 10:04:42 -070010413static int io_register_personality(struct io_ring_ctx *ctx)
10414{
Jens Axboe4379bf82021-02-15 13:40:22 -070010415 const struct cred *creds;
Matthew Wilcox (Oracle)61cf9372021-03-08 14:16:16 +000010416 u32 id;
Jens Axboe1e6fa522020-10-15 08:46:24 -060010417 int ret;
Jens Axboe071698e2020-01-28 10:04:42 -070010418
Jens Axboe4379bf82021-02-15 13:40:22 -070010419 creds = get_current_cred();
Jens Axboe1e6fa522020-10-15 08:46:24 -060010420
Matthew Wilcox (Oracle)61cf9372021-03-08 14:16:16 +000010421 ret = xa_alloc_cyclic(&ctx->personalities, &id, (void *)creds,
10422 XA_LIMIT(0, USHRT_MAX), &ctx->pers_next, GFP_KERNEL);
Jens Axboea30f8952021-08-20 14:53:59 -060010423 if (ret < 0) {
10424 put_cred(creds);
10425 return ret;
10426 }
10427 return id;
Jens Axboe071698e2020-01-28 10:04:42 -070010428}
10429
Stefano Garzarella21b55db2020-08-27 16:58:30 +020010430static int io_register_restrictions(struct io_ring_ctx *ctx, void __user *arg,
10431 unsigned int nr_args)
10432{
10433 struct io_uring_restriction *res;
10434 size_t size;
10435 int i, ret;
10436
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +020010437 /* Restrictions allowed only if rings started disabled */
10438 if (!(ctx->flags & IORING_SETUP_R_DISABLED))
10439 return -EBADFD;
10440
Stefano Garzarella21b55db2020-08-27 16:58:30 +020010441 /* We allow only a single restrictions registration */
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +020010442 if (ctx->restrictions.registered)
Stefano Garzarella21b55db2020-08-27 16:58:30 +020010443 return -EBUSY;
10444
10445 if (!arg || nr_args > IORING_MAX_RESTRICTIONS)
10446 return -EINVAL;
10447
10448 size = array_size(nr_args, sizeof(*res));
10449 if (size == SIZE_MAX)
10450 return -EOVERFLOW;
10451
10452 res = memdup_user(arg, size);
10453 if (IS_ERR(res))
10454 return PTR_ERR(res);
10455
10456 ret = 0;
10457
10458 for (i = 0; i < nr_args; i++) {
10459 switch (res[i].opcode) {
10460 case IORING_RESTRICTION_REGISTER_OP:
10461 if (res[i].register_op >= IORING_REGISTER_LAST) {
10462 ret = -EINVAL;
10463 goto out;
10464 }
10465
10466 __set_bit(res[i].register_op,
10467 ctx->restrictions.register_op);
10468 break;
10469 case IORING_RESTRICTION_SQE_OP:
10470 if (res[i].sqe_op >= IORING_OP_LAST) {
10471 ret = -EINVAL;
10472 goto out;
10473 }
10474
10475 __set_bit(res[i].sqe_op, ctx->restrictions.sqe_op);
10476 break;
10477 case IORING_RESTRICTION_SQE_FLAGS_ALLOWED:
10478 ctx->restrictions.sqe_flags_allowed = res[i].sqe_flags;
10479 break;
10480 case IORING_RESTRICTION_SQE_FLAGS_REQUIRED:
10481 ctx->restrictions.sqe_flags_required = res[i].sqe_flags;
10482 break;
10483 default:
10484 ret = -EINVAL;
10485 goto out;
10486 }
10487 }
10488
10489out:
10490 /* Reset all restrictions if an error happened */
10491 if (ret != 0)
10492 memset(&ctx->restrictions, 0, sizeof(ctx->restrictions));
10493 else
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +020010494 ctx->restrictions.registered = true;
Stefano Garzarella21b55db2020-08-27 16:58:30 +020010495
10496 kfree(res);
10497 return ret;
10498}
10499
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +020010500static int io_register_enable_rings(struct io_ring_ctx *ctx)
10501{
10502 if (!(ctx->flags & IORING_SETUP_R_DISABLED))
10503 return -EBADFD;
10504
10505 if (ctx->restrictions.registered)
10506 ctx->restricted = 1;
10507
Pavel Begunkov0298ef92021-03-08 13:20:57 +000010508 ctx->flags &= ~IORING_SETUP_R_DISABLED;
10509 if (ctx->sq_data && wq_has_sleeper(&ctx->sq_data->wait))
10510 wake_up(&ctx->sq_data->wait);
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +020010511 return 0;
10512}
10513
Pavel Begunkovfdecb662021-04-25 14:32:20 +010010514static int __io_register_rsrc_update(struct io_ring_ctx *ctx, unsigned type,
Pavel Begunkovc3bdad02021-04-25 14:32:22 +010010515 struct io_uring_rsrc_update2 *up,
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +010010516 unsigned nr_args)
10517{
10518 __u32 tmp;
10519 int err;
10520
Pavel Begunkovc3bdad02021-04-25 14:32:22 +010010521 if (up->resv)
10522 return -EINVAL;
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +010010523 if (check_add_overflow(up->offset, nr_args, &tmp))
10524 return -EOVERFLOW;
10525 err = io_rsrc_node_switch_start(ctx);
10526 if (err)
10527 return err;
10528
Pavel Begunkovfdecb662021-04-25 14:32:20 +010010529 switch (type) {
10530 case IORING_RSRC_FILE:
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +010010531 return __io_sqe_files_update(ctx, up, nr_args);
Pavel Begunkov634d00d2021-04-25 14:32:26 +010010532 case IORING_RSRC_BUFFER:
10533 return __io_sqe_buffers_update(ctx, up, nr_args);
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +010010534 }
10535 return -EINVAL;
10536}
10537
Pavel Begunkovc3bdad02021-04-25 14:32:22 +010010538static int io_register_files_update(struct io_ring_ctx *ctx, void __user *arg,
10539 unsigned nr_args)
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +010010540{
Pavel Begunkovc3bdad02021-04-25 14:32:22 +010010541 struct io_uring_rsrc_update2 up;
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +010010542
10543 if (!nr_args)
10544 return -EINVAL;
Pavel Begunkovc3bdad02021-04-25 14:32:22 +010010545 memset(&up, 0, sizeof(up));
10546 if (copy_from_user(&up, arg, sizeof(struct io_uring_rsrc_update)))
10547 return -EFAULT;
10548 return __io_register_rsrc_update(ctx, IORING_RSRC_FILE, &up, nr_args);
10549}
10550
10551static int io_register_rsrc_update(struct io_ring_ctx *ctx, void __user *arg,
Pavel Begunkov992da012021-06-10 16:37:37 +010010552 unsigned size, unsigned type)
Pavel Begunkovc3bdad02021-04-25 14:32:22 +010010553{
10554 struct io_uring_rsrc_update2 up;
10555
10556 if (size != sizeof(up))
10557 return -EINVAL;
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +010010558 if (copy_from_user(&up, arg, sizeof(up)))
10559 return -EFAULT;
Pavel Begunkov992da012021-06-10 16:37:37 +010010560 if (!up.nr || up.resv)
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +010010561 return -EINVAL;
Pavel Begunkov992da012021-06-10 16:37:37 +010010562 return __io_register_rsrc_update(ctx, type, &up, up.nr);
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +010010563}
10564
Pavel Begunkov792e3582021-04-25 14:32:21 +010010565static int io_register_rsrc(struct io_ring_ctx *ctx, void __user *arg,
Pavel Begunkov992da012021-06-10 16:37:37 +010010566 unsigned int size, unsigned int type)
Pavel Begunkov792e3582021-04-25 14:32:21 +010010567{
10568 struct io_uring_rsrc_register rr;
10569
10570 /* keep it extendible */
10571 if (size != sizeof(rr))
10572 return -EINVAL;
10573
10574 memset(&rr, 0, sizeof(rr));
10575 if (copy_from_user(&rr, arg, size))
10576 return -EFAULT;
Pavel Begunkov992da012021-06-10 16:37:37 +010010577 if (!rr.nr || rr.resv || rr.resv2)
Pavel Begunkov792e3582021-04-25 14:32:21 +010010578 return -EINVAL;
10579
Pavel Begunkov992da012021-06-10 16:37:37 +010010580 switch (type) {
Pavel Begunkov792e3582021-04-25 14:32:21 +010010581 case IORING_RSRC_FILE:
10582 return io_sqe_files_register(ctx, u64_to_user_ptr(rr.data),
10583 rr.nr, u64_to_user_ptr(rr.tags));
Pavel Begunkov634d00d2021-04-25 14:32:26 +010010584 case IORING_RSRC_BUFFER:
10585 return io_sqe_buffers_register(ctx, u64_to_user_ptr(rr.data),
10586 rr.nr, u64_to_user_ptr(rr.tags));
Pavel Begunkov792e3582021-04-25 14:32:21 +010010587 }
10588 return -EINVAL;
10589}
10590
Jens Axboefe764212021-06-17 10:19:54 -060010591static int io_register_iowq_aff(struct io_ring_ctx *ctx, void __user *arg,
10592 unsigned len)
10593{
10594 struct io_uring_task *tctx = current->io_uring;
10595 cpumask_var_t new_mask;
10596 int ret;
10597
10598 if (!tctx || !tctx->io_wq)
10599 return -EINVAL;
10600
10601 if (!alloc_cpumask_var(&new_mask, GFP_KERNEL))
10602 return -ENOMEM;
10603
10604 cpumask_clear(new_mask);
10605 if (len > cpumask_size())
10606 len = cpumask_size();
10607
10608 if (copy_from_user(new_mask, arg, len)) {
10609 free_cpumask_var(new_mask);
10610 return -EFAULT;
10611 }
10612
10613 ret = io_wq_cpu_affinity(tctx->io_wq, new_mask);
10614 free_cpumask_var(new_mask);
10615 return ret;
10616}
10617
10618static int io_unregister_iowq_aff(struct io_ring_ctx *ctx)
10619{
10620 struct io_uring_task *tctx = current->io_uring;
10621
10622 if (!tctx || !tctx->io_wq)
10623 return -EINVAL;
10624
10625 return io_wq_cpu_affinity(tctx->io_wq, NULL);
10626}
10627
Jens Axboe2e480052021-08-27 11:33:19 -060010628static int io_register_iowq_max_workers(struct io_ring_ctx *ctx,
10629 void __user *arg)
10630{
Jens Axboefa846932021-09-01 14:15:59 -060010631 struct io_uring_task *tctx = NULL;
10632 struct io_sq_data *sqd = NULL;
Jens Axboe2e480052021-08-27 11:33:19 -060010633 __u32 new_count[2];
10634 int i, ret;
10635
Jens Axboe2e480052021-08-27 11:33:19 -060010636 if (copy_from_user(new_count, arg, sizeof(new_count)))
10637 return -EFAULT;
10638 for (i = 0; i < ARRAY_SIZE(new_count); i++)
10639 if (new_count[i] > INT_MAX)
10640 return -EINVAL;
10641
Jens Axboefa846932021-09-01 14:15:59 -060010642 if (ctx->flags & IORING_SETUP_SQPOLL) {
10643 sqd = ctx->sq_data;
10644 if (sqd) {
Jens Axboe009ad9f2021-09-08 19:07:26 -060010645 /*
10646 * Observe the correct sqd->lock -> ctx->uring_lock
10647 * ordering. Fine to drop uring_lock here, we hold
10648 * a ref to the ctx.
10649 */
Jens Axboe41d3a6b2021-09-13 13:08:51 -060010650 refcount_inc(&sqd->refs);
Jens Axboe009ad9f2021-09-08 19:07:26 -060010651 mutex_unlock(&ctx->uring_lock);
Jens Axboefa846932021-09-01 14:15:59 -060010652 mutex_lock(&sqd->lock);
Jens Axboe009ad9f2021-09-08 19:07:26 -060010653 mutex_lock(&ctx->uring_lock);
Jens Axboe41d3a6b2021-09-13 13:08:51 -060010654 if (sqd->thread)
10655 tctx = sqd->thread->io_uring;
Jens Axboefa846932021-09-01 14:15:59 -060010656 }
10657 } else {
10658 tctx = current->io_uring;
10659 }
10660
10661 ret = -EINVAL;
10662 if (!tctx || !tctx->io_wq)
10663 goto err;
10664
Jens Axboe2e480052021-08-27 11:33:19 -060010665 ret = io_wq_max_workers(tctx->io_wq, new_count);
10666 if (ret)
Jens Axboefa846932021-09-01 14:15:59 -060010667 goto err;
10668
Jens Axboe41d3a6b2021-09-13 13:08:51 -060010669 if (sqd) {
Jens Axboefa846932021-09-01 14:15:59 -060010670 mutex_unlock(&sqd->lock);
Jens Axboe41d3a6b2021-09-13 13:08:51 -060010671 io_put_sq_data(sqd);
10672 }
Jens Axboe2e480052021-08-27 11:33:19 -060010673
10674 if (copy_to_user(arg, new_count, sizeof(new_count)))
10675 return -EFAULT;
10676
10677 return 0;
Jens Axboefa846932021-09-01 14:15:59 -060010678err:
Jens Axboe41d3a6b2021-09-13 13:08:51 -060010679 if (sqd) {
Jens Axboefa846932021-09-01 14:15:59 -060010680 mutex_unlock(&sqd->lock);
Jens Axboe41d3a6b2021-09-13 13:08:51 -060010681 io_put_sq_data(sqd);
10682 }
Jens Axboefa846932021-09-01 14:15:59 -060010683 return ret;
Jens Axboe2e480052021-08-27 11:33:19 -060010684}
10685
Jens Axboe071698e2020-01-28 10:04:42 -070010686static bool io_register_op_must_quiesce(int op)
10687{
10688 switch (op) {
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +010010689 case IORING_REGISTER_BUFFERS:
10690 case IORING_UNREGISTER_BUFFERS:
Pavel Begunkovf4f7d212021-04-01 15:44:02 +010010691 case IORING_REGISTER_FILES:
Jens Axboe071698e2020-01-28 10:04:42 -070010692 case IORING_UNREGISTER_FILES:
10693 case IORING_REGISTER_FILES_UPDATE:
10694 case IORING_REGISTER_PROBE:
10695 case IORING_REGISTER_PERSONALITY:
10696 case IORING_UNREGISTER_PERSONALITY:
Pavel Begunkov992da012021-06-10 16:37:37 +010010697 case IORING_REGISTER_FILES2:
10698 case IORING_REGISTER_FILES_UPDATE2:
10699 case IORING_REGISTER_BUFFERS2:
10700 case IORING_REGISTER_BUFFERS_UPDATE:
Jens Axboefe764212021-06-17 10:19:54 -060010701 case IORING_REGISTER_IOWQ_AFF:
10702 case IORING_UNREGISTER_IOWQ_AFF:
Jens Axboe2e480052021-08-27 11:33:19 -060010703 case IORING_REGISTER_IOWQ_MAX_WORKERS:
Jens Axboe071698e2020-01-28 10:04:42 -070010704 return false;
10705 default:
10706 return true;
10707 }
10708}
10709
Pavel Begunkove73c5c72021-08-09 13:04:12 +010010710static int io_ctx_quiesce(struct io_ring_ctx *ctx)
10711{
10712 long ret;
10713
10714 percpu_ref_kill(&ctx->refs);
10715
10716 /*
10717 * Drop uring mutex before waiting for references to exit. If another
10718 * thread is currently inside io_uring_enter() it might need to grab the
10719 * uring_lock to make progress. If we hold it here across the drain
10720 * wait, then we can deadlock. It's safe to drop the mutex here, since
10721 * no new references will come in after we've killed the percpu ref.
10722 */
10723 mutex_unlock(&ctx->uring_lock);
10724 do {
10725 ret = wait_for_completion_interruptible(&ctx->ref_comp);
10726 if (!ret)
10727 break;
10728 ret = io_run_task_work_sig();
10729 } while (ret >= 0);
10730 mutex_lock(&ctx->uring_lock);
10731
10732 if (ret)
10733 io_refs_resurrect(&ctx->refs, &ctx->ref_comp);
10734 return ret;
10735}
10736
Jens Axboeedafcce2019-01-09 09:16:05 -070010737static int __io_uring_register(struct io_ring_ctx *ctx, unsigned opcode,
10738 void __user *arg, unsigned nr_args)
Jens Axboeb19062a2019-04-15 10:49:38 -060010739 __releases(ctx->uring_lock)
10740 __acquires(ctx->uring_lock)
Jens Axboeedafcce2019-01-09 09:16:05 -070010741{
10742 int ret;
10743
Jens Axboe35fa71a2019-04-22 10:23:23 -060010744 /*
10745 * We're inside the ring mutex, if the ref is already dying, then
10746 * someone else killed the ctx or is already going through
10747 * io_uring_register().
10748 */
10749 if (percpu_ref_is_dying(&ctx->refs))
10750 return -ENXIO;
10751
Pavel Begunkov75c40212021-04-15 13:07:40 +010010752 if (ctx->restricted) {
10753 if (opcode >= IORING_REGISTER_LAST)
10754 return -EINVAL;
10755 opcode = array_index_nospec(opcode, IORING_REGISTER_LAST);
10756 if (!test_bit(opcode, ctx->restrictions.register_op))
10757 return -EACCES;
10758 }
10759
Jens Axboe071698e2020-01-28 10:04:42 -070010760 if (io_register_op_must_quiesce(opcode)) {
Pavel Begunkove73c5c72021-08-09 13:04:12 +010010761 ret = io_ctx_quiesce(ctx);
10762 if (ret)
Pavel Begunkovf70865d2021-04-11 01:46:40 +010010763 return ret;
Jens Axboe05f3fb32019-12-09 11:22:50 -070010764 }
Jens Axboeedafcce2019-01-09 09:16:05 -070010765
10766 switch (opcode) {
10767 case IORING_REGISTER_BUFFERS:
Pavel Begunkov634d00d2021-04-25 14:32:26 +010010768 ret = io_sqe_buffers_register(ctx, arg, nr_args, NULL);
Jens Axboeedafcce2019-01-09 09:16:05 -070010769 break;
10770 case IORING_UNREGISTER_BUFFERS:
10771 ret = -EINVAL;
10772 if (arg || nr_args)
10773 break;
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -080010774 ret = io_sqe_buffers_unregister(ctx);
Jens Axboeedafcce2019-01-09 09:16:05 -070010775 break;
Jens Axboe6b063142019-01-10 22:13:58 -070010776 case IORING_REGISTER_FILES:
Pavel Begunkov792e3582021-04-25 14:32:21 +010010777 ret = io_sqe_files_register(ctx, arg, nr_args, NULL);
Jens Axboe6b063142019-01-10 22:13:58 -070010778 break;
10779 case IORING_UNREGISTER_FILES:
10780 ret = -EINVAL;
10781 if (arg || nr_args)
10782 break;
10783 ret = io_sqe_files_unregister(ctx);
10784 break;
Jens Axboec3a31e62019-10-03 13:59:56 -060010785 case IORING_REGISTER_FILES_UPDATE:
Pavel Begunkovc3bdad02021-04-25 14:32:22 +010010786 ret = io_register_files_update(ctx, arg, nr_args);
Jens Axboec3a31e62019-10-03 13:59:56 -060010787 break;
Jens Axboe9b402842019-04-11 11:45:41 -060010788 case IORING_REGISTER_EVENTFD:
Jens Axboef2842ab2020-01-08 11:04:00 -070010789 case IORING_REGISTER_EVENTFD_ASYNC:
Jens Axboe9b402842019-04-11 11:45:41 -060010790 ret = -EINVAL;
10791 if (nr_args != 1)
10792 break;
10793 ret = io_eventfd_register(ctx, arg);
Jens Axboef2842ab2020-01-08 11:04:00 -070010794 if (ret)
10795 break;
10796 if (opcode == IORING_REGISTER_EVENTFD_ASYNC)
10797 ctx->eventfd_async = 1;
10798 else
10799 ctx->eventfd_async = 0;
Jens Axboe9b402842019-04-11 11:45:41 -060010800 break;
10801 case IORING_UNREGISTER_EVENTFD:
10802 ret = -EINVAL;
10803 if (arg || nr_args)
10804 break;
10805 ret = io_eventfd_unregister(ctx);
10806 break;
Jens Axboe66f4af92020-01-16 15:36:52 -070010807 case IORING_REGISTER_PROBE:
10808 ret = -EINVAL;
10809 if (!arg || nr_args > 256)
10810 break;
10811 ret = io_probe(ctx, arg, nr_args);
10812 break;
Jens Axboe071698e2020-01-28 10:04:42 -070010813 case IORING_REGISTER_PERSONALITY:
10814 ret = -EINVAL;
10815 if (arg || nr_args)
10816 break;
10817 ret = io_register_personality(ctx);
10818 break;
10819 case IORING_UNREGISTER_PERSONALITY:
10820 ret = -EINVAL;
10821 if (arg)
10822 break;
10823 ret = io_unregister_personality(ctx, nr_args);
10824 break;
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +020010825 case IORING_REGISTER_ENABLE_RINGS:
10826 ret = -EINVAL;
10827 if (arg || nr_args)
10828 break;
10829 ret = io_register_enable_rings(ctx);
10830 break;
Stefano Garzarella21b55db2020-08-27 16:58:30 +020010831 case IORING_REGISTER_RESTRICTIONS:
10832 ret = io_register_restrictions(ctx, arg, nr_args);
10833 break;
Pavel Begunkov992da012021-06-10 16:37:37 +010010834 case IORING_REGISTER_FILES2:
10835 ret = io_register_rsrc(ctx, arg, nr_args, IORING_RSRC_FILE);
Pavel Begunkov792e3582021-04-25 14:32:21 +010010836 break;
Pavel Begunkov992da012021-06-10 16:37:37 +010010837 case IORING_REGISTER_FILES_UPDATE2:
10838 ret = io_register_rsrc_update(ctx, arg, nr_args,
10839 IORING_RSRC_FILE);
10840 break;
10841 case IORING_REGISTER_BUFFERS2:
10842 ret = io_register_rsrc(ctx, arg, nr_args, IORING_RSRC_BUFFER);
10843 break;
10844 case IORING_REGISTER_BUFFERS_UPDATE:
10845 ret = io_register_rsrc_update(ctx, arg, nr_args,
10846 IORING_RSRC_BUFFER);
Pavel Begunkovc3bdad02021-04-25 14:32:22 +010010847 break;
Jens Axboefe764212021-06-17 10:19:54 -060010848 case IORING_REGISTER_IOWQ_AFF:
10849 ret = -EINVAL;
10850 if (!arg || !nr_args)
10851 break;
10852 ret = io_register_iowq_aff(ctx, arg, nr_args);
10853 break;
10854 case IORING_UNREGISTER_IOWQ_AFF:
10855 ret = -EINVAL;
10856 if (arg || nr_args)
10857 break;
10858 ret = io_unregister_iowq_aff(ctx);
10859 break;
Jens Axboe2e480052021-08-27 11:33:19 -060010860 case IORING_REGISTER_IOWQ_MAX_WORKERS:
10861 ret = -EINVAL;
10862 if (!arg || nr_args != 2)
10863 break;
10864 ret = io_register_iowq_max_workers(ctx, arg);
10865 break;
Jens Axboeedafcce2019-01-09 09:16:05 -070010866 default:
10867 ret = -EINVAL;
10868 break;
10869 }
10870
Jens Axboe071698e2020-01-28 10:04:42 -070010871 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -070010872 /* bring the ctx back to life */
Jens Axboe05f3fb32019-12-09 11:22:50 -070010873 percpu_ref_reinit(&ctx->refs);
Jens Axboe0f158b42020-05-14 17:18:39 -060010874 reinit_completion(&ctx->ref_comp);
Jens Axboe05f3fb32019-12-09 11:22:50 -070010875 }
Jens Axboeedafcce2019-01-09 09:16:05 -070010876 return ret;
10877}
10878
10879SYSCALL_DEFINE4(io_uring_register, unsigned int, fd, unsigned int, opcode,
10880 void __user *, arg, unsigned int, nr_args)
10881{
10882 struct io_ring_ctx *ctx;
10883 long ret = -EBADF;
10884 struct fd f;
10885
10886 f = fdget(fd);
10887 if (!f.file)
10888 return -EBADF;
10889
10890 ret = -EOPNOTSUPP;
10891 if (f.file->f_op != &io_uring_fops)
10892 goto out_fput;
10893
10894 ctx = f.file->private_data;
10895
Pavel Begunkovb6c23dd2021-02-20 15:17:18 +000010896 io_run_task_work();
10897
Jens Axboeedafcce2019-01-09 09:16:05 -070010898 mutex_lock(&ctx->uring_lock);
10899 ret = __io_uring_register(ctx, opcode, arg, nr_args);
10900 mutex_unlock(&ctx->uring_lock);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +020010901 trace_io_uring_register(ctx, opcode, ctx->nr_user_files, ctx->nr_user_bufs,
10902 ctx->cq_ev_fd != NULL, ret);
Jens Axboeedafcce2019-01-09 09:16:05 -070010903out_fput:
10904 fdput(f);
10905 return ret;
10906}
10907
Jens Axboe2b188cc2019-01-07 10:46:33 -070010908static int __init io_uring_init(void)
10909{
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +010010910#define __BUILD_BUG_VERIFY_ELEMENT(stype, eoffset, etype, ename) do { \
10911 BUILD_BUG_ON(offsetof(stype, ename) != eoffset); \
10912 BUILD_BUG_ON(sizeof(etype) != sizeof_field(stype, ename)); \
10913} while (0)
10914
10915#define BUILD_BUG_SQE_ELEM(eoffset, etype, ename) \
10916 __BUILD_BUG_VERIFY_ELEMENT(struct io_uring_sqe, eoffset, etype, ename)
10917 BUILD_BUG_ON(sizeof(struct io_uring_sqe) != 64);
10918 BUILD_BUG_SQE_ELEM(0, __u8, opcode);
10919 BUILD_BUG_SQE_ELEM(1, __u8, flags);
10920 BUILD_BUG_SQE_ELEM(2, __u16, ioprio);
10921 BUILD_BUG_SQE_ELEM(4, __s32, fd);
10922 BUILD_BUG_SQE_ELEM(8, __u64, off);
10923 BUILD_BUG_SQE_ELEM(8, __u64, addr2);
10924 BUILD_BUG_SQE_ELEM(16, __u64, addr);
Pavel Begunkov7d67af22020-02-24 11:32:45 +030010925 BUILD_BUG_SQE_ELEM(16, __u64, splice_off_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +010010926 BUILD_BUG_SQE_ELEM(24, __u32, len);
10927 BUILD_BUG_SQE_ELEM(28, __kernel_rwf_t, rw_flags);
10928 BUILD_BUG_SQE_ELEM(28, /* compat */ int, rw_flags);
10929 BUILD_BUG_SQE_ELEM(28, /* compat */ __u32, rw_flags);
10930 BUILD_BUG_SQE_ELEM(28, __u32, fsync_flags);
Jiufei Xue5769a352020-06-17 17:53:55 +080010931 BUILD_BUG_SQE_ELEM(28, /* compat */ __u16, poll_events);
10932 BUILD_BUG_SQE_ELEM(28, __u32, poll32_events);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +010010933 BUILD_BUG_SQE_ELEM(28, __u32, sync_range_flags);
10934 BUILD_BUG_SQE_ELEM(28, __u32, msg_flags);
10935 BUILD_BUG_SQE_ELEM(28, __u32, timeout_flags);
10936 BUILD_BUG_SQE_ELEM(28, __u32, accept_flags);
10937 BUILD_BUG_SQE_ELEM(28, __u32, cancel_flags);
10938 BUILD_BUG_SQE_ELEM(28, __u32, open_flags);
10939 BUILD_BUG_SQE_ELEM(28, __u32, statx_flags);
10940 BUILD_BUG_SQE_ELEM(28, __u32, fadvise_advice);
Pavel Begunkov7d67af22020-02-24 11:32:45 +030010941 BUILD_BUG_SQE_ELEM(28, __u32, splice_flags);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +010010942 BUILD_BUG_SQE_ELEM(32, __u64, user_data);
10943 BUILD_BUG_SQE_ELEM(40, __u16, buf_index);
Pavel Begunkov16340ea2021-06-24 15:09:58 +010010944 BUILD_BUG_SQE_ELEM(40, __u16, buf_group);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +010010945 BUILD_BUG_SQE_ELEM(42, __u16, personality);
Pavel Begunkov7d67af22020-02-24 11:32:45 +030010946 BUILD_BUG_SQE_ELEM(44, __s32, splice_fd_in);
Pavel Begunkovb9445592021-08-25 12:25:45 +010010947 BUILD_BUG_SQE_ELEM(44, __u32, file_index);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +010010948
Pavel Begunkovb0d658ec2021-04-27 16:13:53 +010010949 BUILD_BUG_ON(sizeof(struct io_uring_files_update) !=
10950 sizeof(struct io_uring_rsrc_update));
10951 BUILD_BUG_ON(sizeof(struct io_uring_rsrc_update) >
10952 sizeof(struct io_uring_rsrc_update2));
Pavel Begunkov90499ad2021-08-25 20:51:40 +010010953
10954 /* ->buf_index is u16 */
10955 BUILD_BUG_ON(IORING_MAX_REG_BUFFERS >= (1u << 16));
10956
Pavel Begunkovb0d658ec2021-04-27 16:13:53 +010010957 /* should fit into one byte */
10958 BUILD_BUG_ON(SQE_VALID_FLAGS >= (1 << 8));
Pavel Begunkov68fe2562021-09-15 12:03:38 +010010959 BUILD_BUG_ON(SQE_COMMON_FLAGS >= (1 << 8));
10960 BUILD_BUG_ON((SQE_VALID_FLAGS | SQE_COMMON_FLAGS) != SQE_VALID_FLAGS);
Pavel Begunkovb0d658ec2021-04-27 16:13:53 +010010961
Jens Axboed3656342019-12-18 09:50:26 -070010962 BUILD_BUG_ON(ARRAY_SIZE(io_op_defs) != IORING_OP_LAST);
Hao Xu32c2d332021-09-07 11:22:43 +080010963 BUILD_BUG_ON(__REQ_F_LAST_BIT > 8 * sizeof(int));
Pavel Begunkov16340ea2021-06-24 15:09:58 +010010964
Jens Axboe91f245d2021-02-09 13:48:50 -070010965 req_cachep = KMEM_CACHE(io_kiocb, SLAB_HWCACHE_ALIGN | SLAB_PANIC |
10966 SLAB_ACCOUNT);
Jens Axboe2b188cc2019-01-07 10:46:33 -070010967 return 0;
10968};
10969__initcall(io_uring_init);