blob: 0a0f84b28eba314d6e07d41bc1503cd6330c5c3f [file] [log] [blame]
Jens Axboe2b188cc2019-01-07 10:46:33 -07001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Shared application/kernel submission and completion ring pairs, for
4 * supporting fast/efficient IO.
5 *
6 * A note on the read/write ordering memory barriers that are matched between
Stefan Bühler1e84b972019-04-24 23:54:16 +02007 * the application and kernel side.
8 *
9 * After the application reads the CQ ring tail, it must use an
10 * appropriate smp_rmb() to pair with the smp_wmb() the kernel uses
11 * before writing the tail (using smp_load_acquire to read the tail will
12 * do). It also needs a smp_mb() before updating CQ head (ordering the
13 * entry load(s) with the head store), pairing with an implicit barrier
Pavel Begunkovd068b502021-05-16 22:58:11 +010014 * through a control-dependency in io_get_cqe (smp_store_release to
Stefan Bühler1e84b972019-04-24 23:54:16 +020015 * store head will do). Failure to do so could lead to reading invalid
16 * CQ entries.
17 *
18 * Likewise, the application must use an appropriate smp_wmb() before
19 * writing the SQ tail (ordering SQ entry stores with the tail store),
20 * which pairs with smp_load_acquire in io_get_sqring (smp_store_release
21 * to store the tail will do). And it needs a barrier ordering the SQ
22 * head load before writing new SQ entries (smp_load_acquire to read
23 * head will do).
24 *
25 * When using the SQ poll thread (IORING_SETUP_SQPOLL), the application
26 * needs to check the SQ flags for IORING_SQ_NEED_WAKEUP *after*
27 * updating the SQ tail; a full memory barrier smp_mb() is needed
28 * between.
Jens Axboe2b188cc2019-01-07 10:46:33 -070029 *
30 * Also see the examples in the liburing library:
31 *
32 * git://git.kernel.dk/liburing
33 *
34 * io_uring also uses READ/WRITE_ONCE() for _any_ store or load that happens
35 * from data shared between the kernel and application. This is done both
36 * for ordering purposes, but also to ensure that once a value is loaded from
37 * data that the application could potentially modify, it remains stable.
38 *
39 * Copyright (C) 2018-2019 Jens Axboe
Christoph Hellwigc992fe22019-01-11 09:43:02 -070040 * Copyright (c) 2018-2019 Christoph Hellwig
Jens Axboe2b188cc2019-01-07 10:46:33 -070041 */
42#include <linux/kernel.h>
43#include <linux/init.h>
44#include <linux/errno.h>
45#include <linux/syscalls.h>
46#include <linux/compat.h>
Jens Axboe52de1fe2020-02-27 10:15:42 -070047#include <net/compat.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070048#include <linux/refcount.h>
49#include <linux/uio.h>
Pavel Begunkov6b47ee62020-01-18 20:22:41 +030050#include <linux/bits.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070051
52#include <linux/sched/signal.h>
53#include <linux/fs.h>
54#include <linux/file.h>
55#include <linux/fdtable.h>
56#include <linux/mm.h>
57#include <linux/mman.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070058#include <linux/percpu.h>
59#include <linux/slab.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070060#include <linux/blkdev.h>
Jens Axboeedafcce2019-01-09 09:16:05 -070061#include <linux/bvec.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070062#include <linux/net.h>
63#include <net/sock.h>
64#include <net/af_unix.h>
Jens Axboe6b063142019-01-10 22:13:58 -070065#include <net/scm.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070066#include <linux/anon_inodes.h>
67#include <linux/sched/mm.h>
68#include <linux/uaccess.h>
69#include <linux/nospec.h>
Jens Axboeedafcce2019-01-09 09:16:05 -070070#include <linux/sizes.h>
71#include <linux/hugetlb.h>
Jens Axboeaa4c3962019-11-29 10:14:00 -070072#include <linux/highmem.h>
Jens Axboe15b71ab2019-12-11 11:20:36 -070073#include <linux/namei.h>
74#include <linux/fsnotify.h>
Jens Axboe4840e412019-12-25 22:03:45 -070075#include <linux/fadvise.h>
Jens Axboe3e4827b2020-01-08 15:18:09 -070076#include <linux/eventpoll.h>
Pavel Begunkov7d67af22020-02-24 11:32:45 +030077#include <linux/splice.h>
Jens Axboeb41e9852020-02-17 09:52:41 -070078#include <linux/task_work.h>
Jens Axboebcf5a062020-05-22 09:24:42 -060079#include <linux/pagemap.h>
Jens Axboe0f212202020-09-13 13:09:39 -060080#include <linux/io_uring.h>
Nadav Amitef98eb02021-08-07 17:13:41 -070081#include <linux/tracehook.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070082
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +020083#define CREATE_TRACE_POINTS
84#include <trace/events/io_uring.h>
85
Jens Axboe2b188cc2019-01-07 10:46:33 -070086#include <uapi/linux/io_uring.h>
87
88#include "internal.h"
Jens Axboe561fb042019-10-24 07:25:42 -060089#include "io-wq.h"
Jens Axboe2b188cc2019-01-07 10:46:33 -070090
Daniel Xu5277dea2019-09-14 14:23:45 -070091#define IORING_MAX_ENTRIES 32768
Jens Axboe33a107f2019-10-04 12:10:03 -060092#define IORING_MAX_CQ_ENTRIES (2 * IORING_MAX_ENTRIES)
Olivier Langlois4ce8ad92021-06-23 11:50:18 -070093#define IORING_SQPOLL_CAP_ENTRIES_VALUE 8
Jens Axboe65e19f52019-10-26 07:20:21 -060094
wangyangbo187f08c2021-08-19 13:56:57 +080095/* only define max */
Pavel Begunkov042b0d82021-08-09 13:04:01 +010096#define IORING_MAX_FIXED_FILES (1U << 15)
Stefano Garzarella21b55db2020-08-27 16:58:30 +020097#define IORING_MAX_RESTRICTIONS (IORING_RESTRICTION_LAST + \
98 IORING_REGISTER_LAST + IORING_OP_LAST)
Jens Axboe2b188cc2019-01-07 10:46:33 -070099
wangyangbo187f08c2021-08-19 13:56:57 +0800100#define IO_RSRC_TAG_TABLE_SHIFT (PAGE_SHIFT - 3)
Pavel Begunkov2d091d62021-06-14 02:36:21 +0100101#define IO_RSRC_TAG_TABLE_MAX (1U << IO_RSRC_TAG_TABLE_SHIFT)
102#define IO_RSRC_TAG_TABLE_MASK (IO_RSRC_TAG_TABLE_MAX - 1)
103
Pavel Begunkov489809e2021-05-14 12:06:44 +0100104#define IORING_MAX_REG_BUFFERS (1U << 14)
105
Pavel Begunkov68fe2562021-09-15 12:03:38 +0100106#define SQE_COMMON_FLAGS (IOSQE_FIXED_FILE | IOSQE_IO_LINK | \
107 IOSQE_IO_HARDLINK | IOSQE_ASYNC)
108
109#define SQE_VALID_FLAGS (SQE_COMMON_FLAGS|IOSQE_BUFFER_SELECT|IOSQE_IO_DRAIN)
110
Pavel Begunkovc8543572021-06-17 18:14:04 +0100111#define IO_REQ_CLEAN_FLAGS (REQ_F_BUFFER_SELECTED | REQ_F_NEED_CLEANUP | \
Pavel Begunkovd886e182021-10-04 20:02:56 +0100112 REQ_F_POLLED | REQ_F_INFLIGHT | REQ_F_CREDS | \
113 REQ_F_ASYNC_DATA)
Pavel Begunkovb16fed662021-02-18 18:29:40 +0000114
Pavel Begunkov09899b12021-06-14 02:36:22 +0100115#define IO_TCTX_REFS_CACHE_NR (1U << 10)
116
Jens Axboe2b188cc2019-01-07 10:46:33 -0700117struct io_uring {
118 u32 head ____cacheline_aligned_in_smp;
119 u32 tail ____cacheline_aligned_in_smp;
120};
121
Stefan Bühler1e84b972019-04-24 23:54:16 +0200122/*
Hristo Venev75b28af2019-08-26 17:23:46 +0000123 * This data is shared with the application through the mmap at offsets
124 * IORING_OFF_SQ_RING and IORING_OFF_CQ_RING.
Stefan Bühler1e84b972019-04-24 23:54:16 +0200125 *
126 * The offsets to the member fields are published through struct
127 * io_sqring_offsets when calling io_uring_setup.
128 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000129struct io_rings {
Stefan Bühler1e84b972019-04-24 23:54:16 +0200130 /*
131 * Head and tail offsets into the ring; the offsets need to be
132 * masked to get valid indices.
133 *
Hristo Venev75b28af2019-08-26 17:23:46 +0000134 * The kernel controls head of the sq ring and the tail of the cq ring,
135 * and the application controls tail of the sq ring and the head of the
136 * cq ring.
Stefan Bühler1e84b972019-04-24 23:54:16 +0200137 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000138 struct io_uring sq, cq;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200139 /*
Hristo Venev75b28af2019-08-26 17:23:46 +0000140 * Bitmasks to apply to head and tail offsets (constant, equals
Stefan Bühler1e84b972019-04-24 23:54:16 +0200141 * ring_entries - 1)
142 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000143 u32 sq_ring_mask, cq_ring_mask;
144 /* Ring sizes (constant, power of 2) */
145 u32 sq_ring_entries, cq_ring_entries;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200146 /*
147 * Number of invalid entries dropped by the kernel due to
148 * invalid index stored in array
149 *
150 * Written by the kernel, shouldn't be modified by the
151 * application (i.e. get number of "new events" by comparing to
152 * cached value).
153 *
154 * After a new SQ head value was read by the application this
155 * counter includes all submissions that were dropped reaching
156 * the new SQ head (and possibly more).
157 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000158 u32 sq_dropped;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200159 /*
Stefano Garzarella0d9b5b32020-05-15 18:38:04 +0200160 * Runtime SQ flags
Stefan Bühler1e84b972019-04-24 23:54:16 +0200161 *
162 * Written by the kernel, shouldn't be modified by the
163 * application.
164 *
165 * The application needs a full memory barrier before checking
166 * for IORING_SQ_NEED_WAKEUP after updating the sq tail.
167 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000168 u32 sq_flags;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200169 /*
Stefano Garzarella0d9b5b32020-05-15 18:38:04 +0200170 * Runtime CQ flags
171 *
172 * Written by the application, shouldn't be modified by the
173 * kernel.
174 */
Pavel Begunkovfe7e3252021-06-24 15:09:57 +0100175 u32 cq_flags;
Stefano Garzarella0d9b5b32020-05-15 18:38:04 +0200176 /*
Stefan Bühler1e84b972019-04-24 23:54:16 +0200177 * Number of completion events lost because the queue was full;
178 * this should be avoided by the application by making sure
LimingWu0b4295b2019-12-05 20:18:18 +0800179 * there are not more requests pending than there is space in
Stefan Bühler1e84b972019-04-24 23:54:16 +0200180 * the completion queue.
181 *
182 * Written by the kernel, shouldn't be modified by the
183 * application (i.e. get number of "new events" by comparing to
184 * cached value).
185 *
186 * As completion events come in out of order this counter is not
187 * ordered with any other data.
188 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000189 u32 cq_overflow;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200190 /*
191 * Ring buffer of completion events.
192 *
193 * The kernel writes completion events fresh every time they are
194 * produced, so the application is allowed to modify pending
195 * entries.
196 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000197 struct io_uring_cqe cqes[] ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700198};
199
Pavel Begunkov45d189c2021-02-10 00:03:07 +0000200enum io_uring_cmd_flags {
Pavel Begunkov51aac422021-10-14 16:10:17 +0100201 IO_URING_F_COMPLETE_DEFER = 1,
202 /* int's last bit, sign checks are usually faster than a bit test */
203 IO_URING_F_NONBLOCK = INT_MIN,
Pavel Begunkov45d189c2021-02-10 00:03:07 +0000204};
205
Jens Axboeedafcce2019-01-09 09:16:05 -0700206struct io_mapped_ubuf {
207 u64 ubuf;
Pavel Begunkov4751f532021-04-01 15:43:55 +0100208 u64 ubuf_end;
Jens Axboeedafcce2019-01-09 09:16:05 -0700209 unsigned int nr_bvecs;
Jens Axboede293932020-09-17 16:19:16 -0600210 unsigned long acct_pages;
Pavel Begunkov41edf1a2021-04-25 14:32:23 +0100211 struct bio_vec bvec[];
Jens Axboeedafcce2019-01-09 09:16:05 -0700212};
213
Bijan Mottahedeh50238532021-01-15 17:37:45 +0000214struct io_ring_ctx;
215
Pavel Begunkov6c2450a2021-02-23 12:40:22 +0000216struct io_overflow_cqe {
217 struct io_uring_cqe cqe;
218 struct list_head list;
219};
220
Pavel Begunkova04b0ac2021-04-01 15:44:04 +0100221struct io_fixed_file {
222 /* file * with additional FFS_* flags */
223 unsigned long file_ptr;
224};
225
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +0000226struct io_rsrc_put {
227 struct list_head list;
Pavel Begunkovb60c8dc2021-04-25 14:32:18 +0100228 u64 tag;
Bijan Mottahedeh50238532021-01-15 17:37:45 +0000229 union {
230 void *rsrc;
231 struct file *file;
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +0100232 struct io_mapped_ubuf *buf;
Bijan Mottahedeh50238532021-01-15 17:37:45 +0000233 };
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +0000234};
235
Pavel Begunkovaeca2412021-04-11 01:46:37 +0100236struct io_file_table {
Pavel Begunkov042b0d82021-08-09 13:04:01 +0100237 struct io_fixed_file *files;
Jens Axboe31b51512019-01-18 22:56:34 -0700238};
239
Pavel Begunkovb895c9a2021-04-01 15:43:40 +0100240struct io_rsrc_node {
Xiaoguang Wang05589552020-03-31 14:05:18 +0800241 struct percpu_ref refs;
242 struct list_head node;
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +0000243 struct list_head rsrc_list;
Pavel Begunkovb895c9a2021-04-01 15:43:40 +0100244 struct io_rsrc_data *rsrc_data;
Jens Axboe4a38aed22020-05-14 17:21:15 -0600245 struct llist_node llist;
Pavel Begunkove2978222020-11-18 14:56:26 +0000246 bool done;
Xiaoguang Wang05589552020-03-31 14:05:18 +0800247};
248
Pavel Begunkov40ae0ff2021-04-01 15:43:44 +0100249typedef void (rsrc_put_fn)(struct io_ring_ctx *ctx, struct io_rsrc_put *prsrc);
250
Pavel Begunkovb895c9a2021-04-01 15:43:40 +0100251struct io_rsrc_data {
Jens Axboe05f3fb32019-12-09 11:22:50 -0700252 struct io_ring_ctx *ctx;
253
Pavel Begunkov2d091d62021-06-14 02:36:21 +0100254 u64 **tags;
255 unsigned int nr;
Pavel Begunkov40ae0ff2021-04-01 15:43:44 +0100256 rsrc_put_fn *do_put;
Pavel Begunkov3e942492021-04-11 01:46:34 +0100257 atomic_t refs;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700258 struct completion done;
Hao Xu8bad28d2021-02-19 17:19:36 +0800259 bool quiesce;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700260};
261
Jens Axboe5a2e7452020-02-23 16:23:11 -0700262struct io_buffer {
263 struct list_head list;
264 __u64 addr;
Thadeu Lima de Souza Cascardod1f82802021-05-05 09:47:06 -0300265 __u32 len;
Jens Axboe5a2e7452020-02-23 16:23:11 -0700266 __u16 bid;
267};
268
Stefano Garzarella21b55db2020-08-27 16:58:30 +0200269struct io_restriction {
270 DECLARE_BITMAP(register_op, IORING_REGISTER_LAST);
271 DECLARE_BITMAP(sqe_op, IORING_OP_LAST);
272 u8 sqe_flags_allowed;
273 u8 sqe_flags_required;
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +0200274 bool registered;
Stefano Garzarella21b55db2020-08-27 16:58:30 +0200275};
276
Jens Axboe37d1e2e2021-02-17 21:03:43 -0700277enum {
278 IO_SQ_THREAD_SHOULD_STOP = 0,
279 IO_SQ_THREAD_SHOULD_PARK,
280};
281
Jens Axboe534ca6d2020-09-02 13:52:19 -0600282struct io_sq_data {
283 refcount_t refs;
Pavel Begunkov9e138a42021-03-14 20:57:12 +0000284 atomic_t park_pending;
Pavel Begunkov09a6f4e2021-03-14 20:57:10 +0000285 struct mutex lock;
Jens Axboe69fb2132020-09-14 11:16:23 -0600286
287 /* ctx's that are using this sqd */
288 struct list_head ctx_list;
Jens Axboe69fb2132020-09-14 11:16:23 -0600289
Jens Axboe534ca6d2020-09-02 13:52:19 -0600290 struct task_struct *thread;
291 struct wait_queue_head wait;
Xiaoguang Wang08369242020-11-03 14:15:59 +0800292
293 unsigned sq_thread_idle;
Jens Axboe37d1e2e2021-02-17 21:03:43 -0700294 int sq_cpu;
295 pid_t task_pid;
Jens Axboe5c2469e2021-03-11 10:17:56 -0700296 pid_t task_tgid;
Jens Axboe37d1e2e2021-02-17 21:03:43 -0700297
298 unsigned long state;
Jens Axboe37d1e2e2021-02-17 21:03:43 -0700299 struct completion exited;
Jens Axboe534ca6d2020-09-02 13:52:19 -0600300};
301
Pavel Begunkov6dd0be12021-02-10 00:03:13 +0000302#define IO_COMPL_BATCH 32
Pavel Begunkov6ff119a2021-02-10 00:03:18 +0000303#define IO_REQ_CACHE_SIZE 32
Pavel Begunkovbf019da2021-02-10 00:03:17 +0000304#define IO_REQ_ALLOC_BATCH 8
Pavel Begunkov258b29a2021-02-10 00:03:10 +0000305
Pavel Begunkova1ab7b32021-02-18 18:29:42 +0000306struct io_submit_link {
307 struct io_kiocb *head;
308 struct io_kiocb *last;
309};
310
Pavel Begunkov258b29a2021-02-10 00:03:10 +0000311struct io_submit_state {
Pavel Begunkov5a158c62021-10-06 16:06:48 +0100312 /* inline/task_work completion list, under ->uring_lock */
313 struct io_wq_work_node free_list;
314 /* batch completion logic */
315 struct io_wq_work_list compl_reqs;
Pavel Begunkova1ab7b32021-02-18 18:29:42 +0000316 struct io_submit_link link;
Pavel Begunkov258b29a2021-02-10 00:03:10 +0000317
Pavel Begunkov258b29a2021-02-10 00:03:10 +0000318 bool plug_started;
Pavel Begunkov4b628ae2021-09-08 16:40:49 +0100319 bool need_plug;
Pavel Begunkov5a158c62021-10-06 16:06:48 +0100320 struct blk_plug plug;
Pavel Begunkov258b29a2021-02-10 00:03:10 +0000321};
322
Jens Axboe2b188cc2019-01-07 10:46:33 -0700323struct io_ring_ctx {
Pavel Begunkovb52ecf82021-06-14 23:37:21 +0100324 /* const or read-mostly hot data */
Jens Axboe2b188cc2019-01-07 10:46:33 -0700325 struct {
326 struct percpu_ref refs;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700327
Pavel Begunkovb52ecf82021-06-14 23:37:21 +0100328 struct io_rings *rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700329 unsigned int flags;
Randy Dunlape1d85332020-02-05 20:57:10 -0800330 unsigned int compat: 1;
Randy Dunlape1d85332020-02-05 20:57:10 -0800331 unsigned int drain_next: 1;
332 unsigned int eventfd_async: 1;
Stefano Garzarella21b55db2020-08-27 16:58:30 +0200333 unsigned int restricted: 1;
Pavel Begunkovf18ee4c2021-06-14 23:37:25 +0100334 unsigned int off_timeout_used: 1;
Pavel Begunkov10c66902021-06-15 16:47:56 +0100335 unsigned int drain_active: 1;
Pavel Begunkovb52ecf82021-06-14 23:37:21 +0100336 } ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700337
Pavel Begunkov7f1129d2021-06-14 23:37:22 +0100338 /* submission data */
Pavel Begunkovb52ecf82021-06-14 23:37:21 +0100339 struct {
Pavel Begunkov0499e582021-06-14 23:37:29 +0100340 struct mutex uring_lock;
341
Hristo Venev75b28af2019-08-26 17:23:46 +0000342 /*
343 * Ring buffer of indices into array of io_uring_sqe, which is
344 * mmapped by the application using the IORING_OFF_SQES offset.
345 *
346 * This indirection could e.g. be used to assign fixed
347 * io_uring_sqe entries to operations and only submit them to
348 * the queue when needed.
349 *
350 * The kernel modifies neither the indices array nor the entries
351 * array.
352 */
353 u32 *sq_array;
Pavel Begunkovc7af47c2021-06-14 23:37:20 +0100354 struct io_uring_sqe *sq_sqes;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700355 unsigned cached_sq_head;
356 unsigned sq_entries;
Jens Axboede0617e2019-04-06 21:51:27 -0600357 struct list_head defer_list;
Pavel Begunkov7f1129d2021-06-14 23:37:22 +0100358
359 /*
360 * Fixed resources fast path, should be accessed only under
361 * uring_lock, and updated through io_uring_register(2)
362 */
363 struct io_rsrc_node *rsrc_node;
Pavel Begunkovab409402021-10-09 23:14:41 +0100364 int rsrc_cached_refs;
Pavel Begunkov7f1129d2021-06-14 23:37:22 +0100365 struct io_file_table file_table;
366 unsigned nr_user_files;
367 unsigned nr_user_bufs;
368 struct io_mapped_ubuf **user_bufs;
369
370 struct io_submit_state submit_state;
Jens Axboe5262f562019-09-17 12:26:57 -0600371 struct list_head timeout_list;
Pavel Begunkovef9dd632021-08-28 19:54:38 -0600372 struct list_head ltimeout_list;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700373 struct list_head cq_overflow_list;
Pavel Begunkov7f1129d2021-06-14 23:37:22 +0100374 struct xarray io_buffers;
375 struct xarray personalities;
376 u32 pers_next;
377 unsigned sq_thread_idle;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700378 } ____cacheline_aligned_in_smp;
379
Pavel Begunkovd0acdee2021-05-16 22:58:12 +0100380 /* IRQ completion list, under ->completion_lock */
Pavel Begunkovc2b6c6b2021-09-24 21:59:47 +0100381 struct io_wq_work_list locked_free_list;
Pavel Begunkovd0acdee2021-05-16 22:58:12 +0100382 unsigned int locked_free_nr;
Jens Axboe3c1a2ea2021-02-11 10:48:03 -0700383
Stefan Metzmacher7c30f36a2021-03-07 11:54:28 +0100384 const struct cred *sq_creds; /* cred used for __io_sq_thread() */
Jens Axboe534ca6d2020-09-02 13:52:19 -0600385 struct io_sq_data *sq_data; /* if using sq thread polling */
386
Jens Axboe90554202020-09-03 12:12:41 -0600387 struct wait_queue_head sqo_sq_wait;
Jens Axboe69fb2132020-09-14 11:16:23 -0600388 struct list_head sqd_list;
Hristo Venev75b28af2019-08-26 17:23:46 +0000389
Pavel Begunkov5ed7a372021-06-14 23:37:27 +0100390 unsigned long check_cq_overflow;
391
Jens Axboe206aefd2019-11-07 18:27:42 -0700392 struct {
393 unsigned cached_cq_tail;
394 unsigned cq_entries;
Jens Axboe206aefd2019-11-07 18:27:42 -0700395 struct eventfd_ctx *cq_ev_fd;
Pavel Begunkov0499e582021-06-14 23:37:29 +0100396 struct wait_queue_head cq_wait;
397 unsigned cq_extra;
398 atomic_t cq_timeouts;
Pavel Begunkov0499e582021-06-14 23:37:29 +0100399 unsigned cq_last_tm_flush;
Jens Axboe206aefd2019-11-07 18:27:42 -0700400 } ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700401
402 struct {
Jens Axboe2b188cc2019-01-07 10:46:33 -0700403 spinlock_t completion_lock;
Jens Axboee94f1412019-12-19 12:06:02 -0700404
Jens Axboe89850fc2021-08-10 15:11:51 -0600405 spinlock_t timeout_lock;
406
Jens Axboedef596e2019-01-09 08:59:42 -0700407 /*
Pavel Begunkov540e32a2020-07-13 23:37:09 +0300408 * ->iopoll_list is protected by the ctx->uring_lock for
Jens Axboedef596e2019-01-09 08:59:42 -0700409 * io_uring instances that don't use IORING_SETUP_SQPOLL.
410 * For SQPOLL, only the single threaded io_sq_thread() will
411 * manipulate the list, hence no extra locking is needed there.
412 */
Pavel Begunkov5eef4e82021-09-24 21:59:49 +0100413 struct io_wq_work_list iopoll_list;
Jens Axboe78076bb2019-12-04 19:56:40 -0700414 struct hlist_head *cancel_hash;
415 unsigned cancel_hash_bits;
Hao Xu915b3dd2021-06-28 05:37:30 +0800416 bool poll_multi_queue;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700417 } ____cacheline_aligned_in_smp;
Jens Axboe85faa7b2020-04-09 18:14:00 -0600418
Stefano Garzarella21b55db2020-08-27 16:58:30 +0200419 struct io_restriction restrictions;
Jens Axboe3c1a2ea2021-02-11 10:48:03 -0700420
Pavel Begunkovb13a8912021-05-16 22:58:07 +0100421 /* slow path rsrc auxilary data, used by update/register */
422 struct {
423 struct io_rsrc_node *rsrc_backup_node;
424 struct io_mapped_ubuf *dummy_ubuf;
425 struct io_rsrc_data *file_data;
426 struct io_rsrc_data *buf_data;
427
428 struct delayed_work rsrc_put_work;
429 struct llist_head rsrc_put_llist;
430 struct list_head rsrc_ref_list;
431 spinlock_t rsrc_ref_lock;
432 };
433
Jens Axboe3c1a2ea2021-02-11 10:48:03 -0700434 /* Keep this last, we don't need it for the fast path */
Pavel Begunkovb986af72021-05-16 22:58:06 +0100435 struct {
436 #if defined(CONFIG_UNIX)
437 struct socket *ring_sock;
438 #endif
439 /* hashed buffered write serialization */
440 struct io_wq_hash *hash_map;
441
442 /* Only used for accounting purposes */
443 struct user_struct *user;
444 struct mm_struct *mm_account;
445
446 /* ctx exit and cancelation */
Pavel Begunkov9011bf92021-06-30 21:54:03 +0100447 struct llist_head fallback_llist;
448 struct delayed_work fallback_work;
Pavel Begunkovb986af72021-05-16 22:58:06 +0100449 struct work_struct exit_work;
450 struct list_head tctx_list;
451 struct completion ref_comp;
452 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700453};
454
Stefan Metzmacher53e043b2021-03-15 12:56:56 +0100455struct io_uring_task {
456 /* submission side */
Pavel Begunkov09899b12021-06-14 02:36:22 +0100457 int cached_refs;
Stefan Metzmacher53e043b2021-03-15 12:56:56 +0100458 struct xarray xa;
459 struct wait_queue_head wait;
Stefan Metzmacheree53fb22021-03-15 12:56:57 +0100460 const struct io_ring_ctx *last;
461 struct io_wq *io_wq;
Stefan Metzmacher53e043b2021-03-15 12:56:56 +0100462 struct percpu_counter inflight;
Pavel Begunkovb303fe22021-04-11 01:46:26 +0100463 atomic_t inflight_tracked;
Stefan Metzmacher53e043b2021-03-15 12:56:56 +0100464 atomic_t in_idle;
Stefan Metzmacher53e043b2021-03-15 12:56:56 +0100465
466 spinlock_t task_lock;
467 struct io_wq_work_list task_list;
Stefan Metzmacher53e043b2021-03-15 12:56:56 +0100468 struct callback_head task_work;
Pavel Begunkov6294f362021-08-10 17:53:55 +0100469 bool task_running;
Stefan Metzmacher53e043b2021-03-15 12:56:56 +0100470};
471
Jens Axboe09bb8392019-03-13 12:39:28 -0600472/*
473 * First field must be the file pointer in all the
474 * iocb unions! See also 'struct kiocb' in <linux/fs.h>
475 */
Jens Axboe221c5eb2019-01-17 09:41:58 -0700476struct io_poll_iocb {
477 struct file *file;
Pavel Begunkov018043b2020-10-27 23:17:18 +0000478 struct wait_queue_head *head;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700479 __poll_t events;
Jens Axboe8c838782019-03-12 15:48:16 -0600480 bool done;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700481 bool canceled;
Jens Axboe392edb42019-12-09 17:52:20 -0700482 struct wait_queue_entry wait;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700483};
484
Pavel Begunkov9d805892021-04-13 02:58:40 +0100485struct io_poll_update {
Pavel Begunkov018043b2020-10-27 23:17:18 +0000486 struct file *file;
Pavel Begunkov9d805892021-04-13 02:58:40 +0100487 u64 old_user_data;
488 u64 new_user_data;
489 __poll_t events;
Jens Axboeb69de282021-03-17 08:37:41 -0600490 bool update_events;
491 bool update_user_data;
Pavel Begunkov018043b2020-10-27 23:17:18 +0000492};
493
Jens Axboeb5dba592019-12-11 14:02:38 -0700494struct io_close {
495 struct file *file;
Jens Axboeb5dba592019-12-11 14:02:38 -0700496 int fd;
Pavel Begunkov7df778b2021-09-24 20:04:29 +0100497 u32 file_slot;
Jens Axboeb5dba592019-12-11 14:02:38 -0700498};
499
Jens Axboead8a48a2019-11-15 08:49:11 -0700500struct io_timeout_data {
501 struct io_kiocb *req;
502 struct hrtimer timer;
503 struct timespec64 ts;
504 enum hrtimer_mode mode;
Jens Axboe50c1df22021-08-27 17:11:06 -0600505 u32 flags;
Jens Axboead8a48a2019-11-15 08:49:11 -0700506};
507
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700508struct io_accept {
509 struct file *file;
510 struct sockaddr __user *addr;
511 int __user *addr_len;
512 int flags;
Pavel Begunkovaaa4db12021-08-25 12:25:47 +0100513 u32 file_slot;
Jens Axboe09952e32020-03-19 20:16:56 -0600514 unsigned long nofile;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700515};
516
517struct io_sync {
518 struct file *file;
519 loff_t len;
520 loff_t off;
521 int flags;
Jens Axboed63d1b52019-12-10 10:38:56 -0700522 int mode;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700523};
524
Jens Axboefbf23842019-12-17 18:45:56 -0700525struct io_cancel {
526 struct file *file;
527 u64 addr;
528};
529
Jens Axboeb29472e2019-12-17 18:50:29 -0700530struct io_timeout {
531 struct file *file;
Pavel Begunkovbfe68a22020-05-30 14:54:18 +0300532 u32 off;
533 u32 target_seq;
Pavel Begunkov135fcde2020-07-13 23:37:12 +0300534 struct list_head list;
Pavel Begunkov90cd7e42020-10-27 23:25:36 +0000535 /* head of the link, used by linked timeouts only */
536 struct io_kiocb *head;
Jens Axboe89b263f2021-08-10 15:14:18 -0600537 /* for linked completions */
538 struct io_kiocb *prev;
Jens Axboeb29472e2019-12-17 18:50:29 -0700539};
540
Pavel Begunkov0bdf7a22020-10-10 18:34:10 +0100541struct io_timeout_rem {
542 struct file *file;
543 u64 addr;
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +0000544
545 /* timeout update */
546 struct timespec64 ts;
547 u32 flags;
Pavel Begunkovf1042b62021-08-28 19:54:39 -0600548 bool ltimeout;
Pavel Begunkov0bdf7a22020-10-10 18:34:10 +0100549};
550
Jens Axboe9adbd452019-12-20 08:45:55 -0700551struct io_rw {
552 /* NOTE: kiocb has the file as the first member, so don't do it here */
553 struct kiocb kiocb;
554 u64 addr;
555 u64 len;
556};
557
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700558struct io_connect {
559 struct file *file;
560 struct sockaddr __user *addr;
561 int addr_len;
562};
563
Jens Axboee47293f2019-12-20 08:58:21 -0700564struct io_sr_msg {
565 struct file *file;
Jens Axboefddafac2020-01-04 20:19:44 -0700566 union {
Pavel Begunkov4af34172021-04-11 01:46:30 +0100567 struct compat_msghdr __user *umsg_compat;
568 struct user_msghdr __user *umsg;
569 void __user *buf;
Jens Axboefddafac2020-01-04 20:19:44 -0700570 };
Jens Axboee47293f2019-12-20 08:58:21 -0700571 int msg_flags;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700572 int bgid;
Jens Axboefddafac2020-01-04 20:19:44 -0700573 size_t len;
Jens Axboee47293f2019-12-20 08:58:21 -0700574};
575
Jens Axboe15b71ab2019-12-11 11:20:36 -0700576struct io_open {
577 struct file *file;
578 int dfd;
Pavel Begunkovb9445592021-08-25 12:25:45 +0100579 u32 file_slot;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700580 struct filename *filename;
Jens Axboec12cedf2020-01-08 17:41:21 -0700581 struct open_how how;
Jens Axboe4022e7a2020-03-19 19:23:18 -0600582 unsigned long nofile;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700583};
584
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +0000585struct io_rsrc_update {
Jens Axboe05f3fb32019-12-09 11:22:50 -0700586 struct file *file;
587 u64 arg;
588 u32 nr_args;
589 u32 offset;
590};
591
Jens Axboe4840e412019-12-25 22:03:45 -0700592struct io_fadvise {
593 struct file *file;
594 u64 offset;
595 u32 len;
596 u32 advice;
597};
598
Jens Axboec1ca7572019-12-25 22:18:28 -0700599struct io_madvise {
600 struct file *file;
601 u64 addr;
602 u32 len;
603 u32 advice;
604};
605
Jens Axboe3e4827b2020-01-08 15:18:09 -0700606struct io_epoll {
607 struct file *file;
608 int epfd;
609 int op;
610 int fd;
611 struct epoll_event event;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700612};
613
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300614struct io_splice {
615 struct file *file_out;
616 struct file *file_in;
617 loff_t off_out;
618 loff_t off_in;
619 u64 len;
620 unsigned int flags;
621};
622
Jens Axboeddf0322d2020-02-23 16:41:33 -0700623struct io_provide_buf {
624 struct file *file;
625 __u64 addr;
Pavel Begunkov38134ad2021-04-15 13:07:39 +0100626 __u32 len;
Jens Axboeddf0322d2020-02-23 16:41:33 -0700627 __u32 bgid;
628 __u16 nbufs;
629 __u16 bid;
630};
631
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -0700632struct io_statx {
633 struct file *file;
634 int dfd;
635 unsigned int mask;
636 unsigned int flags;
Bijan Mottahedehe62753e2020-05-22 21:31:18 -0700637 const char __user *filename;
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -0700638 struct statx __user *buffer;
639};
640
Jens Axboe36f4fa62020-09-05 11:14:22 -0600641struct io_shutdown {
642 struct file *file;
643 int how;
644};
645
Jens Axboe80a261f2020-09-28 14:23:58 -0600646struct io_rename {
647 struct file *file;
648 int old_dfd;
649 int new_dfd;
650 struct filename *oldpath;
651 struct filename *newpath;
652 int flags;
653};
654
Jens Axboe14a11432020-09-28 14:27:37 -0600655struct io_unlink {
656 struct file *file;
657 int dfd;
658 int flags;
659 struct filename *filename;
660};
661
Dmitry Kadasheve34a02d2021-07-08 13:34:45 +0700662struct io_mkdir {
663 struct file *file;
664 int dfd;
665 umode_t mode;
666 struct filename *filename;
667};
668
Dmitry Kadashev7a8721f2021-07-08 13:34:46 +0700669struct io_symlink {
670 struct file *file;
671 int new_dfd;
672 struct filename *oldpath;
673 struct filename *newpath;
674};
675
Dmitry Kadashevcf30da92021-07-08 13:34:47 +0700676struct io_hardlink {
677 struct file *file;
678 int old_dfd;
679 int new_dfd;
680 struct filename *oldpath;
681 struct filename *newpath;
682 int flags;
683};
684
Jens Axboef499a022019-12-02 16:28:46 -0700685struct io_async_connect {
686 struct sockaddr_storage address;
687};
688
Jens Axboe03b12302019-12-02 18:50:25 -0700689struct io_async_msghdr {
690 struct iovec fast_iov[UIO_FASTIOV];
Pavel Begunkov257e84a2021-02-05 00:58:00 +0000691 /* points to an allocated iov, if NULL we use fast_iov instead */
692 struct iovec *free_iov;
Jens Axboe03b12302019-12-02 18:50:25 -0700693 struct sockaddr __user *uaddr;
694 struct msghdr msg;
Jens Axboeb5379162020-02-09 11:29:15 -0700695 struct sockaddr_storage addr;
Jens Axboe03b12302019-12-02 18:50:25 -0700696};
697
Pavel Begunkov538941e2021-10-14 16:10:15 +0100698struct io_rw_state {
Jens Axboeff6165b2020-08-13 09:47:43 -0600699 struct iov_iter iter;
Jens Axboecd658692021-09-10 11:19:14 -0600700 struct iov_iter_state iter_state;
Pavel Begunkovc88598a2021-10-14 16:10:16 +0100701 struct iovec fast_iov[UIO_FASTIOV];
Pavel Begunkov538941e2021-10-14 16:10:15 +0100702};
703
704struct io_async_rw {
705 struct io_rw_state s;
706 const struct iovec *free_iovec;
Jens Axboe227c0c92020-08-13 11:51:40 -0600707 size_t bytes_done;
Jens Axboebcf5a062020-05-22 09:24:42 -0600708 struct wait_page_queue wpq;
Jens Axboef67676d2019-12-02 11:03:47 -0700709};
710
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300711enum {
712 REQ_F_FIXED_FILE_BIT = IOSQE_FIXED_FILE_BIT,
713 REQ_F_IO_DRAIN_BIT = IOSQE_IO_DRAIN_BIT,
714 REQ_F_LINK_BIT = IOSQE_IO_LINK_BIT,
715 REQ_F_HARDLINK_BIT = IOSQE_IO_HARDLINK_BIT,
716 REQ_F_FORCE_ASYNC_BIT = IOSQE_ASYNC_BIT,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700717 REQ_F_BUFFER_SELECT_BIT = IOSQE_BUFFER_SELECT_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300718
Pavel Begunkovdddca222021-04-27 16:13:52 +0100719 /* first byte is taken by user flags, shift it to not overlap */
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +0100720 REQ_F_FAIL_BIT = 8,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300721 REQ_F_INFLIGHT_BIT,
722 REQ_F_CUR_POS_BIT,
723 REQ_F_NOWAIT_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300724 REQ_F_LINK_TIMEOUT_BIT,
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300725 REQ_F_NEED_CLEANUP_BIT,
Jens Axboed7718a92020-02-14 22:23:12 -0700726 REQ_F_POLLED_BIT,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700727 REQ_F_BUFFER_SELECTED_BIT,
Pavel Begunkove342c802021-01-19 13:32:47 +0000728 REQ_F_COMPLETE_INLINE_BIT,
Jens Axboe230d50d2021-04-01 20:41:15 -0600729 REQ_F_REISSUE_BIT,
Pavel Begunkovb8e64b52021-06-17 18:14:02 +0100730 REQ_F_CREDS_BIT,
Pavel Begunkov20e60a32021-08-11 19:28:30 +0100731 REQ_F_REFCOUNT_BIT,
Pavel Begunkov4d13d1a2021-08-15 10:40:24 +0100732 REQ_F_ARM_LTIMEOUT_BIT,
Pavel Begunkovd886e182021-10-04 20:02:56 +0100733 REQ_F_ASYNC_DATA_BIT,
Jens Axboe7b29f922021-03-12 08:30:14 -0700734 /* keep async read/write and isreg together and in order */
Pavel Begunkovb191e2d2021-08-09 13:04:03 +0100735 REQ_F_NOWAIT_READ_BIT,
736 REQ_F_NOWAIT_WRITE_BIT,
Jens Axboe7b29f922021-03-12 08:30:14 -0700737 REQ_F_ISREG_BIT,
Jens Axboe84557872020-03-03 15:28:17 -0700738
739 /* not a real bit, just to check we're not overflowing the space */
740 __REQ_F_LAST_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300741};
742
743enum {
744 /* ctx owns file */
745 REQ_F_FIXED_FILE = BIT(REQ_F_FIXED_FILE_BIT),
746 /* drain existing IO first */
747 REQ_F_IO_DRAIN = BIT(REQ_F_IO_DRAIN_BIT),
748 /* linked sqes */
749 REQ_F_LINK = BIT(REQ_F_LINK_BIT),
750 /* doesn't sever on completion < 0 */
751 REQ_F_HARDLINK = BIT(REQ_F_HARDLINK_BIT),
752 /* IOSQE_ASYNC */
753 REQ_F_FORCE_ASYNC = BIT(REQ_F_FORCE_ASYNC_BIT),
Jens Axboebcda7ba2020-02-23 16:42:51 -0700754 /* IOSQE_BUFFER_SELECT */
755 REQ_F_BUFFER_SELECT = BIT(REQ_F_BUFFER_SELECT_BIT),
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300756
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300757 /* fail rest of links */
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +0100758 REQ_F_FAIL = BIT(REQ_F_FAIL_BIT),
Pavel Begunkovb05a1bc2021-03-04 13:59:24 +0000759 /* on inflight list, should be cancelled and waited on exit reliably */
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300760 REQ_F_INFLIGHT = BIT(REQ_F_INFLIGHT_BIT),
761 /* read/write uses file position */
762 REQ_F_CUR_POS = BIT(REQ_F_CUR_POS_BIT),
763 /* must not punt to workers */
764 REQ_F_NOWAIT = BIT(REQ_F_NOWAIT_BIT),
Pavel Begunkov900fad42020-10-19 16:39:16 +0100765 /* has or had linked timeout */
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300766 REQ_F_LINK_TIMEOUT = BIT(REQ_F_LINK_TIMEOUT_BIT),
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300767 /* needs cleanup */
768 REQ_F_NEED_CLEANUP = BIT(REQ_F_NEED_CLEANUP_BIT),
Jens Axboed7718a92020-02-14 22:23:12 -0700769 /* already went through poll handler */
770 REQ_F_POLLED = BIT(REQ_F_POLLED_BIT),
Jens Axboebcda7ba2020-02-23 16:42:51 -0700771 /* buffer already selected */
772 REQ_F_BUFFER_SELECTED = BIT(REQ_F_BUFFER_SELECTED_BIT),
Pavel Begunkove342c802021-01-19 13:32:47 +0000773 /* completion is deferred through io_comp_state */
774 REQ_F_COMPLETE_INLINE = BIT(REQ_F_COMPLETE_INLINE_BIT),
Jens Axboe230d50d2021-04-01 20:41:15 -0600775 /* caller should reissue async */
776 REQ_F_REISSUE = BIT(REQ_F_REISSUE_BIT),
Jens Axboe7b29f922021-03-12 08:30:14 -0700777 /* supports async reads */
Pavel Begunkovb191e2d2021-08-09 13:04:03 +0100778 REQ_F_NOWAIT_READ = BIT(REQ_F_NOWAIT_READ_BIT),
Jens Axboe7b29f922021-03-12 08:30:14 -0700779 /* supports async writes */
Pavel Begunkovb191e2d2021-08-09 13:04:03 +0100780 REQ_F_NOWAIT_WRITE = BIT(REQ_F_NOWAIT_WRITE_BIT),
Jens Axboe7b29f922021-03-12 08:30:14 -0700781 /* regular file */
782 REQ_F_ISREG = BIT(REQ_F_ISREG_BIT),
Pavel Begunkovb8e64b52021-06-17 18:14:02 +0100783 /* has creds assigned */
784 REQ_F_CREDS = BIT(REQ_F_CREDS_BIT),
Pavel Begunkov20e60a32021-08-11 19:28:30 +0100785 /* skip refcounting if not set */
786 REQ_F_REFCOUNT = BIT(REQ_F_REFCOUNT_BIT),
Pavel Begunkov4d13d1a2021-08-15 10:40:24 +0100787 /* there is a linked timeout that has to be armed */
788 REQ_F_ARM_LTIMEOUT = BIT(REQ_F_ARM_LTIMEOUT_BIT),
Pavel Begunkovd886e182021-10-04 20:02:56 +0100789 /* ->async_data allocated */
790 REQ_F_ASYNC_DATA = BIT(REQ_F_ASYNC_DATA_BIT),
Jens Axboed7718a92020-02-14 22:23:12 -0700791};
792
793struct async_poll {
794 struct io_poll_iocb poll;
Jens Axboe807abcb2020-07-17 17:09:27 -0600795 struct io_poll_iocb *double_poll;
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300796};
797
Pavel Begunkovf237c302021-08-18 12:42:46 +0100798typedef void (*io_req_tw_func_t)(struct io_kiocb *req, bool *locked);
Pavel Begunkov5b0a6ac2021-06-30 21:54:04 +0100799
Jens Axboe7cbf1722021-02-10 00:03:20 +0000800struct io_task_work {
Pavel Begunkov5b0a6ac2021-06-30 21:54:04 +0100801 union {
802 struct io_wq_work_node node;
803 struct llist_node fallback_node;
804 };
805 io_req_tw_func_t func;
Jens Axboe7cbf1722021-02-10 00:03:20 +0000806};
807
Pavel Begunkov992da012021-06-10 16:37:37 +0100808enum {
809 IORING_RSRC_FILE = 0,
810 IORING_RSRC_BUFFER = 1,
811};
812
Jens Axboe09bb8392019-03-13 12:39:28 -0600813/*
814 * NOTE! Each of the iocb union members has the file pointer
815 * as the first entry in their struct definition. So you can
816 * access the file pointer through any of the sub-structs,
817 * or directly as just 'ki_filp' in this struct.
818 */
Jens Axboe2b188cc2019-01-07 10:46:33 -0700819struct io_kiocb {
Jens Axboe221c5eb2019-01-17 09:41:58 -0700820 union {
Jens Axboe09bb8392019-03-13 12:39:28 -0600821 struct file *file;
Jens Axboe9adbd452019-12-20 08:45:55 -0700822 struct io_rw rw;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700823 struct io_poll_iocb poll;
Pavel Begunkov9d805892021-04-13 02:58:40 +0100824 struct io_poll_update poll_update;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700825 struct io_accept accept;
826 struct io_sync sync;
Jens Axboefbf23842019-12-17 18:45:56 -0700827 struct io_cancel cancel;
Jens Axboeb29472e2019-12-17 18:50:29 -0700828 struct io_timeout timeout;
Pavel Begunkov0bdf7a22020-10-10 18:34:10 +0100829 struct io_timeout_rem timeout_rem;
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700830 struct io_connect connect;
Jens Axboee47293f2019-12-20 08:58:21 -0700831 struct io_sr_msg sr_msg;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700832 struct io_open open;
Jens Axboeb5dba592019-12-11 14:02:38 -0700833 struct io_close close;
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +0000834 struct io_rsrc_update rsrc_update;
Jens Axboe4840e412019-12-25 22:03:45 -0700835 struct io_fadvise fadvise;
Jens Axboec1ca7572019-12-25 22:18:28 -0700836 struct io_madvise madvise;
Jens Axboe3e4827b2020-01-08 15:18:09 -0700837 struct io_epoll epoll;
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300838 struct io_splice splice;
Jens Axboeddf0322d2020-02-23 16:41:33 -0700839 struct io_provide_buf pbuf;
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -0700840 struct io_statx statx;
Jens Axboe36f4fa62020-09-05 11:14:22 -0600841 struct io_shutdown shutdown;
Jens Axboe80a261f2020-09-28 14:23:58 -0600842 struct io_rename rename;
Jens Axboe14a11432020-09-28 14:27:37 -0600843 struct io_unlink unlink;
Dmitry Kadasheve34a02d2021-07-08 13:34:45 +0700844 struct io_mkdir mkdir;
Dmitry Kadashev7a8721f2021-07-08 13:34:46 +0700845 struct io_symlink symlink;
Dmitry Kadashevcf30da92021-07-08 13:34:47 +0700846 struct io_hardlink hardlink;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700847 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700848
Jens Axboed625c6e2019-12-17 19:53:05 -0700849 u8 opcode;
Xiaoguang Wang65a65432020-06-11 23:39:36 +0800850 /* polled IO has completed */
851 u8 iopoll_completed;
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -0700852 u16 buf_index;
Pavel Begunkovd17e56e2021-10-04 20:02:57 +0100853 unsigned int flags;
854
855 u64 user_data;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +0300856 u32 result;
Pavel Begunkovd17e56e2021-10-04 20:02:57 +0100857 u32 cflags;
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -0700858
Pavel Begunkov010e8e62020-07-30 18:43:45 +0300859 struct io_ring_ctx *ctx;
Pavel Begunkov010e8e62020-07-30 18:43:45 +0300860 struct task_struct *task;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700861
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +0000862 struct percpu_ref *fixed_rsrc_refs;
Pavel Begunkovd886e182021-10-04 20:02:56 +0100863 /* store used ubuf, so we can prevent reloading */
864 struct io_mapped_ubuf *imu;
Jens Axboed7718a92020-02-14 22:23:12 -0700865
Pavel Begunkov7e3709d2021-10-04 20:02:46 +0100866 /* used by request caches, completion batching and iopoll */
Pavel Begunkovef05d9e2021-09-24 22:00:02 +0100867 struct io_wq_work_node comp_list;
Pavel Begunkovd17e56e2021-10-04 20:02:57 +0100868 atomic_t refs;
Pavel Begunkov7e3709d2021-10-04 20:02:46 +0100869 struct io_kiocb *link;
Pavel Begunkov5b0a6ac2021-06-30 21:54:04 +0100870 struct io_task_work io_task_work;
Pavel Begunkov010e8e62020-07-30 18:43:45 +0300871 /* for polled requests, i.e. IORING_OP_POLL_ADD and async armed poll */
872 struct hlist_node hash_node;
Pavel Begunkov7e3709d2021-10-04 20:02:46 +0100873 /* internal polling, see IORING_FEAT_FAST_POLL */
Pavel Begunkov010e8e62020-07-30 18:43:45 +0300874 struct async_poll *apoll;
Pavel Begunkovd886e182021-10-04 20:02:56 +0100875 /* opcode allocated if it needs to store data for async defer */
876 void *async_data;
Pavel Begunkovef05d9e2021-09-24 22:00:02 +0100877 struct io_wq_work work;
Pavel Begunkov7e3709d2021-10-04 20:02:46 +0100878 /* custom credentials, valid IFF REQ_F_CREDS is set */
Pavel Begunkovef05d9e2021-09-24 22:00:02 +0100879 const struct cred *creds;
Pavel Begunkov7e3709d2021-10-04 20:02:46 +0100880 /* stores selected buf, valid IFF REQ_F_BUFFER_SELECTED is set */
Pavel Begunkov30d51dd2021-10-01 18:07:03 +0100881 struct io_buffer *kbuf;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700882};
883
Pavel Begunkov13bf43f2021-03-06 11:02:12 +0000884struct io_tctx_node {
885 struct list_head ctx_node;
886 struct task_struct *task;
Pavel Begunkov13bf43f2021-03-06 11:02:12 +0000887 struct io_ring_ctx *ctx;
888};
889
Pavel Begunkov27dc8332020-07-13 23:37:14 +0300890struct io_defer_entry {
891 struct list_head list;
892 struct io_kiocb *req;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +0300893 u32 seq;
Pavel Begunkov27dc8332020-07-13 23:37:14 +0300894};
895
Jens Axboed3656342019-12-18 09:50:26 -0700896struct io_op_def {
Jens Axboed3656342019-12-18 09:50:26 -0700897 /* needs req->file assigned */
898 unsigned needs_file : 1;
Pavel Begunkov6d634162021-10-06 16:06:46 +0100899 /* should block plug */
900 unsigned plug : 1;
Jens Axboed3656342019-12-18 09:50:26 -0700901 /* hash wq insertion if file is a regular file */
902 unsigned hash_reg_file : 1;
903 /* unbound wq insertion if file is a non-regular file */
904 unsigned unbound_nonreg_file : 1;
Jens Axboe8a727582020-02-20 09:59:44 -0700905 /* set if opcode supports polled "wait" */
906 unsigned pollin : 1;
907 unsigned pollout : 1;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700908 /* op supports buffer selection */
909 unsigned buffer_select : 1;
Pavel Begunkov26f05052021-02-28 22:35:18 +0000910 /* do prep async if is going to be punted */
911 unsigned needs_async_setup : 1;
Pavel Begunkov6d634162021-10-06 16:06:46 +0100912 /* opcode is not supported by this kernel */
913 unsigned not_supported : 1;
Jens Axboee8c2bc12020-08-15 18:44:09 -0700914 /* size of async data needed, if any */
915 unsigned short async_size;
Jens Axboed3656342019-12-18 09:50:26 -0700916};
917
Jens Axboe09186822020-10-13 15:01:40 -0600918static const struct io_op_def io_op_defs[] = {
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300919 [IORING_OP_NOP] = {},
920 [IORING_OP_READV] = {
Jens Axboed3656342019-12-18 09:50:26 -0700921 .needs_file = 1,
922 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700923 .pollin = 1,
Jens Axboe4d954c22020-02-27 07:31:19 -0700924 .buffer_select = 1,
Pavel Begunkov26f05052021-02-28 22:35:18 +0000925 .needs_async_setup = 1,
Jens Axboe27926b62020-10-28 09:33:23 -0600926 .plug = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700927 .async_size = sizeof(struct io_async_rw),
Jens Axboed3656342019-12-18 09:50:26 -0700928 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300929 [IORING_OP_WRITEV] = {
Jens Axboed3656342019-12-18 09:50:26 -0700930 .needs_file = 1,
931 .hash_reg_file = 1,
932 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700933 .pollout = 1,
Pavel Begunkov26f05052021-02-28 22:35:18 +0000934 .needs_async_setup = 1,
Jens Axboe27926b62020-10-28 09:33:23 -0600935 .plug = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700936 .async_size = sizeof(struct io_async_rw),
Jens Axboed3656342019-12-18 09:50:26 -0700937 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300938 [IORING_OP_FSYNC] = {
Jens Axboed3656342019-12-18 09:50:26 -0700939 .needs_file = 1,
940 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300941 [IORING_OP_READ_FIXED] = {
Jens Axboed3656342019-12-18 09:50:26 -0700942 .needs_file = 1,
943 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700944 .pollin = 1,
Jens Axboe27926b62020-10-28 09:33:23 -0600945 .plug = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700946 .async_size = sizeof(struct io_async_rw),
Jens Axboed3656342019-12-18 09:50:26 -0700947 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300948 [IORING_OP_WRITE_FIXED] = {
Jens Axboed3656342019-12-18 09:50:26 -0700949 .needs_file = 1,
950 .hash_reg_file = 1,
951 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700952 .pollout = 1,
Jens Axboe27926b62020-10-28 09:33:23 -0600953 .plug = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700954 .async_size = sizeof(struct io_async_rw),
Jens Axboed3656342019-12-18 09:50:26 -0700955 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300956 [IORING_OP_POLL_ADD] = {
Jens Axboed3656342019-12-18 09:50:26 -0700957 .needs_file = 1,
958 .unbound_nonreg_file = 1,
959 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300960 [IORING_OP_POLL_REMOVE] = {},
961 [IORING_OP_SYNC_FILE_RANGE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700962 .needs_file = 1,
963 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300964 [IORING_OP_SENDMSG] = {
Jens Axboed3656342019-12-18 09:50:26 -0700965 .needs_file = 1,
966 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700967 .pollout = 1,
Pavel Begunkov26f05052021-02-28 22:35:18 +0000968 .needs_async_setup = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700969 .async_size = sizeof(struct io_async_msghdr),
Jens Axboed3656342019-12-18 09:50:26 -0700970 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300971 [IORING_OP_RECVMSG] = {
Jens Axboed3656342019-12-18 09:50:26 -0700972 .needs_file = 1,
973 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700974 .pollin = 1,
Jens Axboe52de1fe2020-02-27 10:15:42 -0700975 .buffer_select = 1,
Pavel Begunkov26f05052021-02-28 22:35:18 +0000976 .needs_async_setup = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700977 .async_size = sizeof(struct io_async_msghdr),
Jens Axboed3656342019-12-18 09:50:26 -0700978 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300979 [IORING_OP_TIMEOUT] = {
Jens Axboee8c2bc12020-08-15 18:44:09 -0700980 .async_size = sizeof(struct io_timeout_data),
Jens Axboed3656342019-12-18 09:50:26 -0700981 },
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +0000982 [IORING_OP_TIMEOUT_REMOVE] = {
983 /* used by timeout updates' prep() */
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +0000984 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300985 [IORING_OP_ACCEPT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700986 .needs_file = 1,
987 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700988 .pollin = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700989 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300990 [IORING_OP_ASYNC_CANCEL] = {},
991 [IORING_OP_LINK_TIMEOUT] = {
Jens Axboee8c2bc12020-08-15 18:44:09 -0700992 .async_size = sizeof(struct io_timeout_data),
Jens Axboed3656342019-12-18 09:50:26 -0700993 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300994 [IORING_OP_CONNECT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700995 .needs_file = 1,
996 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700997 .pollout = 1,
Pavel Begunkov26f05052021-02-28 22:35:18 +0000998 .needs_async_setup = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -0700999 .async_size = sizeof(struct io_async_connect),
Jens Axboed3656342019-12-18 09:50:26 -07001000 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +03001001 [IORING_OP_FALLOCATE] = {
Jens Axboed3656342019-12-18 09:50:26 -07001002 .needs_file = 1,
1003 },
Jens Axboe44526be2021-02-15 13:32:18 -07001004 [IORING_OP_OPENAT] = {},
1005 [IORING_OP_CLOSE] = {},
1006 [IORING_OP_FILES_UPDATE] = {},
1007 [IORING_OP_STATX] = {},
Pavel Begunkov0463b6c2020-01-18 21:35:38 +03001008 [IORING_OP_READ] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -07001009 .needs_file = 1,
1010 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -07001011 .pollin = 1,
Jens Axboebcda7ba2020-02-23 16:42:51 -07001012 .buffer_select = 1,
Jens Axboe27926b62020-10-28 09:33:23 -06001013 .plug = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -07001014 .async_size = sizeof(struct io_async_rw),
Jens Axboe3a6820f2019-12-22 15:19:35 -07001015 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +03001016 [IORING_OP_WRITE] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -07001017 .needs_file = 1,
Jens Axboe7b3188e2021-08-30 19:37:41 -06001018 .hash_reg_file = 1,
Jens Axboe3a6820f2019-12-22 15:19:35 -07001019 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -07001020 .pollout = 1,
Jens Axboe27926b62020-10-28 09:33:23 -06001021 .plug = 1,
Jens Axboee8c2bc12020-08-15 18:44:09 -07001022 .async_size = sizeof(struct io_async_rw),
Jens Axboe3a6820f2019-12-22 15:19:35 -07001023 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +03001024 [IORING_OP_FADVISE] = {
Jens Axboe4840e412019-12-25 22:03:45 -07001025 .needs_file = 1,
1026 },
Jens Axboe44526be2021-02-15 13:32:18 -07001027 [IORING_OP_MADVISE] = {},
Pavel Begunkov0463b6c2020-01-18 21:35:38 +03001028 [IORING_OP_SEND] = {
Jens Axboefddafac2020-01-04 20:19:44 -07001029 .needs_file = 1,
1030 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -07001031 .pollout = 1,
Jens Axboefddafac2020-01-04 20:19:44 -07001032 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +03001033 [IORING_OP_RECV] = {
Jens Axboefddafac2020-01-04 20:19:44 -07001034 .needs_file = 1,
1035 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -07001036 .pollin = 1,
Jens Axboebcda7ba2020-02-23 16:42:51 -07001037 .buffer_select = 1,
Jens Axboefddafac2020-01-04 20:19:44 -07001038 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +03001039 [IORING_OP_OPENAT2] = {
Jens Axboecebdb982020-01-08 17:59:24 -07001040 },
Jens Axboe3e4827b2020-01-08 15:18:09 -07001041 [IORING_OP_EPOLL_CTL] = {
1042 .unbound_nonreg_file = 1,
Jens Axboe3e4827b2020-01-08 15:18:09 -07001043 },
Pavel Begunkov7d67af22020-02-24 11:32:45 +03001044 [IORING_OP_SPLICE] = {
1045 .needs_file = 1,
1046 .hash_reg_file = 1,
1047 .unbound_nonreg_file = 1,
Jens Axboeddf0322d2020-02-23 16:41:33 -07001048 },
1049 [IORING_OP_PROVIDE_BUFFERS] = {},
Jens Axboe067524e2020-03-02 16:32:28 -07001050 [IORING_OP_REMOVE_BUFFERS] = {},
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03001051 [IORING_OP_TEE] = {
1052 .needs_file = 1,
1053 .hash_reg_file = 1,
1054 .unbound_nonreg_file = 1,
1055 },
Jens Axboe36f4fa62020-09-05 11:14:22 -06001056 [IORING_OP_SHUTDOWN] = {
1057 .needs_file = 1,
1058 },
Jens Axboe44526be2021-02-15 13:32:18 -07001059 [IORING_OP_RENAMEAT] = {},
1060 [IORING_OP_UNLINKAT] = {},
Dmitry Kadasheve34a02d2021-07-08 13:34:45 +07001061 [IORING_OP_MKDIRAT] = {},
Dmitry Kadashev7a8721f2021-07-08 13:34:46 +07001062 [IORING_OP_SYMLINKAT] = {},
Dmitry Kadashevcf30da92021-07-08 13:34:47 +07001063 [IORING_OP_LINKAT] = {},
Jens Axboed3656342019-12-18 09:50:26 -07001064};
1065
Pavel Begunkov0756a862021-08-15 10:40:25 +01001066/* requests with any of those set should undergo io_disarm_next() */
1067#define IO_DISARM_MASK (REQ_F_ARM_LTIMEOUT | REQ_F_LINK_TIMEOUT | REQ_F_FAIL)
1068
Pavel Begunkov7a612352021-03-09 00:37:59 +00001069static bool io_disarm_next(struct io_kiocb *req);
Pavel Begunkoveef51da2021-06-14 02:36:15 +01001070static void io_uring_del_tctx_node(unsigned long index);
Pavel Begunkov9936c7c2021-02-04 13:51:56 +00001071static void io_uring_try_cancel_requests(struct io_ring_ctx *ctx,
1072 struct task_struct *task,
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01001073 bool cancel_all);
Pavel Begunkov78cc6872021-06-14 02:36:23 +01001074static void io_uring_cancel_generic(bool cancel_all, struct io_sq_data *sqd);
Pavel Begunkov1ffc5422020-12-30 21:34:15 +00001075
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01001076static bool io_cqring_fill_event(struct io_ring_ctx *ctx, u64 user_data,
Pavel Begunkov54daa9b2021-10-04 20:03:00 +01001077 s32 res, u32 cflags);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001078static void io_put_req(struct io_kiocb *req);
Pavel Begunkov91c2f692021-08-11 19:28:28 +01001079static void io_put_req_deferred(struct io_kiocb *req);
Jens Axboec7dae4b2021-02-09 19:53:37 -07001080static void io_dismantle_req(struct io_kiocb *req);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001081static void io_queue_linked_timeout(struct io_kiocb *req);
Pavel Begunkovfdecb662021-04-25 14:32:20 +01001082static int __io_register_rsrc_update(struct io_ring_ctx *ctx, unsigned type,
Pavel Begunkovc3bdad02021-04-25 14:32:22 +01001083 struct io_uring_rsrc_update2 *up,
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +01001084 unsigned nr_args);
Pavel Begunkov68fb8972021-03-19 17:22:41 +00001085static void io_clean_op(struct io_kiocb *req);
Pavel Begunkovac177052021-08-09 13:04:02 +01001086static struct file *io_file_get(struct io_ring_ctx *ctx,
Pavel Begunkov8371adf2020-10-10 18:34:08 +01001087 struct io_kiocb *req, int fd, bool fixed);
Pavel Begunkovc5eef2b2021-02-10 00:03:22 +00001088static void __io_queue_sqe(struct io_kiocb *req);
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00001089static void io_rsrc_put_work(struct work_struct *work);
Jens Axboede0617e2019-04-06 21:51:27 -06001090
Pavel Begunkov907d1df2021-01-26 23:35:10 +00001091static void io_req_task_queue(struct io_kiocb *req);
Pavel Begunkovc4501782021-09-08 16:40:52 +01001092static void __io_submit_flush_completions(struct io_ring_ctx *ctx);
Pavel Begunkov179ae0d2021-02-28 22:35:20 +00001093static int io_req_prep_async(struct io_kiocb *req);
Jens Axboe9a56a232019-01-09 09:06:50 -07001094
Pavel Begunkovb9445592021-08-25 12:25:45 +01001095static int io_install_fixed_file(struct io_kiocb *req, struct file *file,
1096 unsigned int issue_flags, u32 slot_index);
Pavel Begunkov7df778b2021-09-24 20:04:29 +01001097static int io_close_fixed(struct io_kiocb *req, unsigned int issue_flags);
1098
Pavel Begunkovf1042b62021-08-28 19:54:39 -06001099static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer);
Pavel Begunkovb9445592021-08-25 12:25:45 +01001100
Jens Axboe2b188cc2019-01-07 10:46:33 -07001101static struct kmem_cache *req_cachep;
1102
Jens Axboe09186822020-10-13 15:01:40 -06001103static const struct file_operations io_uring_fops;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001104
1105struct sock *io_uring_get_socket(struct file *file)
1106{
1107#if defined(CONFIG_UNIX)
1108 if (file->f_op == &io_uring_fops) {
1109 struct io_ring_ctx *ctx = file->private_data;
1110
1111 return ctx->ring_sock->sk;
1112 }
1113#endif
1114 return NULL;
1115}
1116EXPORT_SYMBOL(io_uring_get_socket);
1117
Pavel Begunkovf237c302021-08-18 12:42:46 +01001118static inline void io_tw_lock(struct io_ring_ctx *ctx, bool *locked)
1119{
1120 if (!*locked) {
1121 mutex_lock(&ctx->uring_lock);
1122 *locked = true;
1123 }
1124}
1125
Pavel Begunkovf2f87372020-10-27 23:25:37 +00001126#define io_for_each_link(pos, head) \
1127 for (pos = (head); pos; pos = pos->link)
1128
Pavel Begunkov21c843d2021-08-11 19:28:27 +01001129/*
1130 * Shamelessly stolen from the mm implementation of page reference checking,
1131 * see commit f958d7b528b1 for details.
1132 */
1133#define req_ref_zero_or_close_to_overflow(req) \
1134 ((unsigned int) atomic_read(&(req->refs)) + 127u <= 127u)
1135
1136static inline bool req_ref_inc_not_zero(struct io_kiocb *req)
1137{
Pavel Begunkov20e60a32021-08-11 19:28:30 +01001138 WARN_ON_ONCE(!(req->flags & REQ_F_REFCOUNT));
Pavel Begunkov21c843d2021-08-11 19:28:27 +01001139 return atomic_inc_not_zero(&req->refs);
1140}
1141
Pavel Begunkov21c843d2021-08-11 19:28:27 +01001142static inline bool req_ref_put_and_test(struct io_kiocb *req)
1143{
Pavel Begunkov20e60a32021-08-11 19:28:30 +01001144 if (likely(!(req->flags & REQ_F_REFCOUNT)))
1145 return true;
1146
Pavel Begunkov21c843d2021-08-11 19:28:27 +01001147 WARN_ON_ONCE(req_ref_zero_or_close_to_overflow(req));
1148 return atomic_dec_and_test(&req->refs);
1149}
1150
1151static inline void req_ref_put(struct io_kiocb *req)
1152{
Pavel Begunkov20e60a32021-08-11 19:28:30 +01001153 WARN_ON_ONCE(!(req->flags & REQ_F_REFCOUNT));
Pavel Begunkov21c843d2021-08-11 19:28:27 +01001154 WARN_ON_ONCE(req_ref_put_and_test(req));
1155}
1156
1157static inline void req_ref_get(struct io_kiocb *req)
1158{
Pavel Begunkov20e60a32021-08-11 19:28:30 +01001159 WARN_ON_ONCE(!(req->flags & REQ_F_REFCOUNT));
Pavel Begunkov21c843d2021-08-11 19:28:27 +01001160 WARN_ON_ONCE(req_ref_zero_or_close_to_overflow(req));
1161 atomic_inc(&req->refs);
1162}
1163
Pavel Begunkovc4501782021-09-08 16:40:52 +01001164static inline void io_submit_flush_completions(struct io_ring_ctx *ctx)
1165{
Pavel Begunkov6f33b0b2021-09-24 21:59:44 +01001166 if (!wq_list_empty(&ctx->submit_state.compl_reqs))
Pavel Begunkovc4501782021-09-08 16:40:52 +01001167 __io_submit_flush_completions(ctx);
1168}
1169
Pavel Begunkov48dcd382021-08-15 10:40:18 +01001170static inline void __io_req_set_refcount(struct io_kiocb *req, int nr)
Pavel Begunkov20e60a32021-08-11 19:28:30 +01001171{
1172 if (!(req->flags & REQ_F_REFCOUNT)) {
1173 req->flags |= REQ_F_REFCOUNT;
Pavel Begunkov48dcd382021-08-15 10:40:18 +01001174 atomic_set(&req->refs, nr);
Pavel Begunkov20e60a32021-08-11 19:28:30 +01001175 }
1176}
1177
Pavel Begunkov48dcd382021-08-15 10:40:18 +01001178static inline void io_req_set_refcount(struct io_kiocb *req)
1179{
1180 __io_req_set_refcount(req, 1);
1181}
1182
Pavel Begunkovab409402021-10-09 23:14:41 +01001183#define IO_RSRC_REF_BATCH 100
1184
1185static inline void io_req_put_rsrc_locked(struct io_kiocb *req,
1186 struct io_ring_ctx *ctx)
1187 __must_hold(&ctx->uring_lock)
1188{
1189 struct percpu_ref *ref = req->fixed_rsrc_refs;
1190
1191 if (ref) {
1192 if (ref == &ctx->rsrc_node->refs)
1193 ctx->rsrc_cached_refs++;
1194 else
1195 percpu_ref_put(ref);
1196 }
1197}
1198
1199static inline void io_req_put_rsrc(struct io_kiocb *req, struct io_ring_ctx *ctx)
1200{
1201 if (req->fixed_rsrc_refs)
1202 percpu_ref_put(req->fixed_rsrc_refs);
1203}
1204
1205static __cold void io_rsrc_refs_drop(struct io_ring_ctx *ctx)
1206 __must_hold(&ctx->uring_lock)
1207{
1208 if (ctx->rsrc_cached_refs) {
1209 percpu_ref_put_many(&ctx->rsrc_node->refs, ctx->rsrc_cached_refs);
1210 ctx->rsrc_cached_refs = 0;
1211 }
1212}
1213
1214static void io_rsrc_refs_refill(struct io_ring_ctx *ctx)
1215 __must_hold(&ctx->uring_lock)
1216{
1217 ctx->rsrc_cached_refs += IO_RSRC_REF_BATCH;
1218 percpu_ref_get_many(&ctx->rsrc_node->refs, IO_RSRC_REF_BATCH);
1219}
1220
Pavel Begunkova46be972021-10-09 23:14:40 +01001221static inline void io_req_set_rsrc_node(struct io_kiocb *req,
1222 struct io_ring_ctx *ctx)
Jens Axboec40f6372020-06-25 15:39:59 -06001223{
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00001224 if (!req->fixed_rsrc_refs) {
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01001225 req->fixed_rsrc_refs = &ctx->rsrc_node->refs;
Pavel Begunkovab409402021-10-09 23:14:41 +01001226 ctx->rsrc_cached_refs--;
1227 if (unlikely(ctx->rsrc_cached_refs < 0))
1228 io_rsrc_refs_refill(ctx);
Pavel Begunkov36f72fe2020-11-18 19:57:26 +00001229 }
1230}
1231
Pavel Begunkovf70865d2021-04-11 01:46:40 +01001232static void io_refs_resurrect(struct percpu_ref *ref, struct completion *compl)
1233{
1234 bool got = percpu_ref_tryget(ref);
1235
1236 /* already at zero, wait for ->release() */
1237 if (!got)
1238 wait_for_completion(compl);
1239 percpu_ref_resurrect(ref);
1240 if (got)
1241 percpu_ref_put(ref);
1242}
1243
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01001244static bool io_match_task(struct io_kiocb *head, struct task_struct *task,
1245 bool cancel_all)
Pavel Begunkov08d23632020-11-06 13:00:22 +00001246{
1247 struct io_kiocb *req;
1248
Pavel Begunkov68207682021-03-22 01:58:25 +00001249 if (task && head->task != task)
Pavel Begunkov08d23632020-11-06 13:00:22 +00001250 return false;
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01001251 if (cancel_all)
Pavel Begunkov08d23632020-11-06 13:00:22 +00001252 return true;
1253
1254 io_for_each_link(req, head) {
Pavel Begunkovb05a1bc2021-03-04 13:59:24 +00001255 if (req->flags & REQ_F_INFLIGHT)
Jens Axboe02a13672021-01-23 15:49:31 -07001256 return true;
Pavel Begunkov08d23632020-11-06 13:00:22 +00001257 }
1258 return false;
1259}
1260
Pavel Begunkovd886e182021-10-04 20:02:56 +01001261static inline bool req_has_async_data(struct io_kiocb *req)
1262{
1263 return req->flags & REQ_F_ASYNC_DATA;
1264}
1265
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01001266static inline void req_set_fail(struct io_kiocb *req)
Jens Axboec40f6372020-06-25 15:39:59 -06001267{
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01001268 req->flags |= REQ_F_FAIL;
Jens Axboec40f6372020-06-25 15:39:59 -06001269}
Jens Axboe4a38aed22020-05-14 17:21:15 -06001270
Hao Xua8295b92021-08-27 17:46:09 +08001271static inline void req_fail_link_node(struct io_kiocb *req, int res)
1272{
1273 req_set_fail(req);
1274 req->result = res;
1275}
1276
Pavel Begunkovc0724812021-10-04 20:02:54 +01001277static __cold void io_ring_ctx_ref_free(struct percpu_ref *ref)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001278{
1279 struct io_ring_ctx *ctx = container_of(ref, struct io_ring_ctx, refs);
1280
Jens Axboe0f158b42020-05-14 17:18:39 -06001281 complete(&ctx->ref_comp);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001282}
1283
Pavel Begunkov8eb7e2d2020-06-29 13:13:02 +03001284static inline bool io_is_timeout_noseq(struct io_kiocb *req)
1285{
1286 return !req->timeout.off;
1287}
1288
Pavel Begunkovc0724812021-10-04 20:02:54 +01001289static __cold void io_fallback_req_func(struct work_struct *work)
Pavel Begunkovf56165e2021-08-09 20:18:07 +01001290{
1291 struct io_ring_ctx *ctx = container_of(work, struct io_ring_ctx,
1292 fallback_work.work);
1293 struct llist_node *node = llist_del_all(&ctx->fallback_llist);
1294 struct io_kiocb *req, *tmp;
Pavel Begunkovf237c302021-08-18 12:42:46 +01001295 bool locked = false;
Pavel Begunkovf56165e2021-08-09 20:18:07 +01001296
1297 percpu_ref_get(&ctx->refs);
1298 llist_for_each_entry_safe(req, tmp, node, io_task_work.fallback_node)
Pavel Begunkovf237c302021-08-18 12:42:46 +01001299 req->io_task_work.func(req, &locked);
Pavel Begunkov5636c002021-08-18 12:42:45 +01001300
Pavel Begunkovf237c302021-08-18 12:42:46 +01001301 if (locked) {
Pavel Begunkovc4501782021-09-08 16:40:52 +01001302 io_submit_flush_completions(ctx);
Pavel Begunkovf237c302021-08-18 12:42:46 +01001303 mutex_unlock(&ctx->uring_lock);
1304 }
Pavel Begunkovf56165e2021-08-09 20:18:07 +01001305 percpu_ref_put(&ctx->refs);
1306}
1307
Pavel Begunkovc0724812021-10-04 20:02:54 +01001308static __cold struct io_ring_ctx *io_ring_ctx_alloc(struct io_uring_params *p)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001309{
1310 struct io_ring_ctx *ctx;
Jens Axboe78076bb2019-12-04 19:56:40 -07001311 int hash_bits;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001312
1313 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
1314 if (!ctx)
1315 return NULL;
1316
Jens Axboe78076bb2019-12-04 19:56:40 -07001317 /*
1318 * Use 5 bits less than the max cq entries, that should give us around
1319 * 32 entries per hash list if totally full and uniformly spread.
1320 */
1321 hash_bits = ilog2(p->cq_entries);
1322 hash_bits -= 5;
1323 if (hash_bits <= 0)
1324 hash_bits = 1;
1325 ctx->cancel_hash_bits = hash_bits;
1326 ctx->cancel_hash = kmalloc((1U << hash_bits) * sizeof(struct hlist_head),
1327 GFP_KERNEL);
1328 if (!ctx->cancel_hash)
1329 goto err;
1330 __hash_init(ctx->cancel_hash, 1U << hash_bits);
1331
Pavel Begunkov62248432021-04-28 13:11:29 +01001332 ctx->dummy_ubuf = kzalloc(sizeof(*ctx->dummy_ubuf), GFP_KERNEL);
1333 if (!ctx->dummy_ubuf)
1334 goto err;
1335 /* set invalid range, so io_import_fixed() fails meeting it */
1336 ctx->dummy_ubuf->ubuf = -1UL;
1337
Roman Gushchin21482892019-05-07 10:01:48 -07001338 if (percpu_ref_init(&ctx->refs, io_ring_ctx_ref_free,
Jens Axboe206aefd2019-11-07 18:27:42 -07001339 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL))
1340 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001341
1342 ctx->flags = p->flags;
Jens Axboe90554202020-09-03 12:12:41 -06001343 init_waitqueue_head(&ctx->sqo_sq_wait);
Jens Axboe69fb2132020-09-14 11:16:23 -06001344 INIT_LIST_HEAD(&ctx->sqd_list);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001345 INIT_LIST_HEAD(&ctx->cq_overflow_list);
Jens Axboe0f158b42020-05-14 17:18:39 -06001346 init_completion(&ctx->ref_comp);
Jens Axboe9e15c3a2021-03-13 12:29:43 -07001347 xa_init_flags(&ctx->io_buffers, XA_FLAGS_ALLOC1);
Matthew Wilcox (Oracle)61cf9372021-03-08 14:16:16 +00001348 xa_init_flags(&ctx->personalities, XA_FLAGS_ALLOC1);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001349 mutex_init(&ctx->uring_lock);
Pavel Begunkov311997b2021-06-14 23:37:28 +01001350 init_waitqueue_head(&ctx->cq_wait);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001351 spin_lock_init(&ctx->completion_lock);
Jens Axboe89850fc2021-08-10 15:11:51 -06001352 spin_lock_init(&ctx->timeout_lock);
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01001353 INIT_WQ_LIST(&ctx->iopoll_list);
Jens Axboede0617e2019-04-06 21:51:27 -06001354 INIT_LIST_HEAD(&ctx->defer_list);
Jens Axboe5262f562019-09-17 12:26:57 -06001355 INIT_LIST_HEAD(&ctx->timeout_list);
Pavel Begunkovef9dd632021-08-28 19:54:38 -06001356 INIT_LIST_HEAD(&ctx->ltimeout_list);
Bijan Mottahedehd67d2262021-01-15 17:37:46 +00001357 spin_lock_init(&ctx->rsrc_ref_lock);
1358 INIT_LIST_HEAD(&ctx->rsrc_ref_list);
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00001359 INIT_DELAYED_WORK(&ctx->rsrc_put_work, io_rsrc_put_work);
1360 init_llist_head(&ctx->rsrc_put_llist);
Pavel Begunkov13bf43f2021-03-06 11:02:12 +00001361 INIT_LIST_HEAD(&ctx->tctx_list);
Pavel Begunkovc2b6c6b2021-09-24 21:59:47 +01001362 ctx->submit_state.free_list.next = NULL;
1363 INIT_WQ_LIST(&ctx->locked_free_list);
Pavel Begunkov9011bf92021-06-30 21:54:03 +01001364 INIT_DELAYED_WORK(&ctx->fallback_work, io_fallback_req_func);
Pavel Begunkov6f33b0b2021-09-24 21:59:44 +01001365 INIT_WQ_LIST(&ctx->submit_state.compl_reqs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001366 return ctx;
Jens Axboe206aefd2019-11-07 18:27:42 -07001367err:
Pavel Begunkov62248432021-04-28 13:11:29 +01001368 kfree(ctx->dummy_ubuf);
Jens Axboe78076bb2019-12-04 19:56:40 -07001369 kfree(ctx->cancel_hash);
Jens Axboe206aefd2019-11-07 18:27:42 -07001370 kfree(ctx);
1371 return NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001372}
1373
Pavel Begunkov8f6ed492021-05-16 22:58:10 +01001374static void io_account_cq_overflow(struct io_ring_ctx *ctx)
1375{
1376 struct io_rings *r = ctx->rings;
1377
1378 WRITE_ONCE(r->cq_overflow, READ_ONCE(r->cq_overflow) + 1);
1379 ctx->cq_extra--;
1380}
1381
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03001382static bool req_need_defer(struct io_kiocb *req, u32 seq)
Jens Axboede0617e2019-04-06 21:51:27 -06001383{
Jens Axboe2bc99302020-07-09 09:43:27 -06001384 if (unlikely(req->flags & REQ_F_IO_DRAIN)) {
1385 struct io_ring_ctx *ctx = req->ctx;
Jackie Liua197f662019-11-08 08:09:12 -07001386
Pavel Begunkov8f6ed492021-05-16 22:58:10 +01001387 return seq + READ_ONCE(ctx->cq_extra) != ctx->cached_cq_tail;
Jens Axboe2bc99302020-07-09 09:43:27 -06001388 }
Jens Axboe7adf4ea2019-10-10 21:42:58 -06001389
Bob Liu9d858b22019-11-13 18:06:25 +08001390 return false;
Jens Axboe7adf4ea2019-10-10 21:42:58 -06001391}
1392
Pavel Begunkovc97d8a02021-08-09 13:04:04 +01001393#define FFS_ASYNC_READ 0x1UL
1394#define FFS_ASYNC_WRITE 0x2UL
1395#ifdef CONFIG_64BIT
1396#define FFS_ISREG 0x4UL
1397#else
1398#define FFS_ISREG 0x0UL
1399#endif
1400#define FFS_MASK ~(FFS_ASYNC_READ|FFS_ASYNC_WRITE|FFS_ISREG)
1401
1402static inline bool io_req_ffs_set(struct io_kiocb *req)
1403{
1404 return IS_ENABLED(CONFIG_64BIT) && (req->flags & REQ_F_FIXED_FILE);
1405}
1406
Pavel Begunkovc0724812021-10-04 20:02:54 +01001407static inline void io_req_track_inflight(struct io_kiocb *req)
Pavel Begunkovce3d5aa2021-02-01 18:59:55 +00001408{
Pavel Begunkovce3d5aa2021-02-01 18:59:55 +00001409 if (!(req->flags & REQ_F_INFLIGHT)) {
Pavel Begunkovce3d5aa2021-02-01 18:59:55 +00001410 req->flags |= REQ_F_INFLIGHT;
Pavel Begunkovb303fe22021-04-11 01:46:26 +01001411 atomic_inc(&current->io_uring->inflight_tracked);
Pavel Begunkovce3d5aa2021-02-01 18:59:55 +00001412 }
1413}
1414
Pavel Begunkov906c6ca2021-08-15 10:40:26 +01001415static inline void io_unprep_linked_timeout(struct io_kiocb *req)
1416{
1417 req->flags &= ~REQ_F_LINK_TIMEOUT;
1418}
1419
Pavel Begunkovfd08e532021-08-11 19:28:31 +01001420static struct io_kiocb *__io_prep_linked_timeout(struct io_kiocb *req)
1421{
Pavel Begunkov906c6ca2021-08-15 10:40:26 +01001422 if (WARN_ON_ONCE(!req->link))
1423 return NULL;
1424
Pavel Begunkov4d13d1a2021-08-15 10:40:24 +01001425 req->flags &= ~REQ_F_ARM_LTIMEOUT;
1426 req->flags |= REQ_F_LINK_TIMEOUT;
Pavel Begunkovfd08e532021-08-11 19:28:31 +01001427
1428 /* linked timeouts should have two refs once prep'ed */
Pavel Begunkov48dcd382021-08-15 10:40:18 +01001429 io_req_set_refcount(req);
Pavel Begunkov4d13d1a2021-08-15 10:40:24 +01001430 __io_req_set_refcount(req->link, 2);
1431 return req->link;
Pavel Begunkovfd08e532021-08-11 19:28:31 +01001432}
1433
1434static inline struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req)
1435{
Pavel Begunkov4d13d1a2021-08-15 10:40:24 +01001436 if (likely(!(req->flags & REQ_F_ARM_LTIMEOUT)))
Pavel Begunkovfd08e532021-08-11 19:28:31 +01001437 return NULL;
1438 return __io_prep_linked_timeout(req);
1439}
1440
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001441static void io_prep_async_work(struct io_kiocb *req)
Jens Axboe561fb042019-10-24 07:25:42 -06001442{
Jens Axboed3656342019-12-18 09:50:26 -07001443 const struct io_op_def *def = &io_op_defs[req->opcode];
Pavel Begunkov23329512020-10-10 18:34:06 +01001444 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe54a91f32019-09-10 09:15:04 -06001445
Pavel Begunkovb8e64b52021-06-17 18:14:02 +01001446 if (!(req->flags & REQ_F_CREDS)) {
1447 req->flags |= REQ_F_CREDS;
Pavel Begunkovc10d1f92021-06-17 18:14:01 +01001448 req->creds = get_current_cred();
Pavel Begunkovb8e64b52021-06-17 18:14:02 +01001449 }
Jens Axboe003e8dc2021-03-06 09:22:27 -07001450
Pavel Begunkove1d675d2021-03-22 01:58:29 +00001451 req->work.list.next = NULL;
1452 req->work.flags = 0;
Pavel Begunkovfeaadc42020-10-22 16:47:16 +01001453 if (req->flags & REQ_F_FORCE_ASYNC)
1454 req->work.flags |= IO_WQ_WORK_CONCURRENT;
1455
Jens Axboed3656342019-12-18 09:50:26 -07001456 if (req->flags & REQ_F_ISREG) {
Pavel Begunkov23329512020-10-10 18:34:06 +01001457 if (def->hash_reg_file || (ctx->flags & IORING_SETUP_IOPOLL))
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001458 io_wq_hash_work(&req->work, file_inode(req->file));
Jens Axboe4b982bd2021-04-01 08:38:34 -06001459 } else if (!req->file || !S_ISBLK(file_inode(req->file)->i_mode)) {
Jens Axboed3656342019-12-18 09:50:26 -07001460 if (def->unbound_nonreg_file)
Jens Axboe3529d8c2019-12-19 18:24:38 -07001461 req->work.flags |= IO_WQ_WORK_UNBOUND;
Jens Axboe54a91f32019-09-10 09:15:04 -06001462 }
Pavel Begunkove1d675d2021-03-22 01:58:29 +00001463
1464 switch (req->opcode) {
1465 case IORING_OP_SPLICE:
1466 case IORING_OP_TEE:
Pavel Begunkove1d675d2021-03-22 01:58:29 +00001467 if (!S_ISREG(file_inode(req->splice.file_in)->i_mode))
1468 req->work.flags |= IO_WQ_WORK_UNBOUND;
1469 break;
1470 }
Jens Axboe561fb042019-10-24 07:25:42 -06001471}
1472
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001473static void io_prep_async_link(struct io_kiocb *req)
1474{
1475 struct io_kiocb *cur;
1476
Pavel Begunkov44eff402021-07-26 14:14:31 +01001477 if (req->flags & REQ_F_LINK_TIMEOUT) {
1478 struct io_ring_ctx *ctx = req->ctx;
1479
Jens Axboe79ebeae2021-08-10 15:18:27 -06001480 spin_lock(&ctx->completion_lock);
Pavel Begunkov44eff402021-07-26 14:14:31 +01001481 io_for_each_link(cur, req)
1482 io_prep_async_work(cur);
Jens Axboe79ebeae2021-08-10 15:18:27 -06001483 spin_unlock(&ctx->completion_lock);
Pavel Begunkov44eff402021-07-26 14:14:31 +01001484 } else {
1485 io_for_each_link(cur, req)
1486 io_prep_async_work(cur);
1487 }
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001488}
1489
Pavel Begunkovfff4e402021-10-04 20:02:48 +01001490static inline void io_req_add_compl_list(struct io_kiocb *req)
1491{
1492 struct io_submit_state *state = &req->ctx->submit_state;
1493
1494 wq_list_add_tail(&req->comp_list, &state->compl_reqs);
1495}
1496
Pavel Begunkovf237c302021-08-18 12:42:46 +01001497static void io_queue_async_work(struct io_kiocb *req, bool *locked)
Jens Axboe561fb042019-10-24 07:25:42 -06001498{
Jackie Liua197f662019-11-08 08:09:12 -07001499 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001500 struct io_kiocb *link = io_prep_linked_timeout(req);
Jens Axboe5aa75ed2021-02-16 12:56:50 -07001501 struct io_uring_task *tctx = req->task->io_uring;
Jens Axboe561fb042019-10-24 07:25:42 -06001502
Pavel Begunkovf237c302021-08-18 12:42:46 +01001503 /* must not take the lock, NULL it as a precaution */
1504 locked = NULL;
1505
Jens Axboe3bfe6102021-02-16 14:15:30 -07001506 BUG_ON(!tctx);
1507 BUG_ON(!tctx->io_wq);
Jens Axboe561fb042019-10-24 07:25:42 -06001508
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001509 /* init ->work of the whole link before punting */
1510 io_prep_async_link(req);
Jens Axboe991468d2021-07-23 11:53:54 -06001511
1512 /*
1513 * Not expected to happen, but if we do have a bug where this _can_
1514 * happen, catch it here and ensure the request is marked as
1515 * canceled. That will make io-wq go through the usual work cancel
1516 * procedure rather than attempt to run this request (or create a new
1517 * worker for it).
1518 */
1519 if (WARN_ON_ONCE(!same_thread_group(req->task, current)))
1520 req->work.flags |= IO_WQ_WORK_CANCEL;
1521
Pavel Begunkovd07f1e8a2021-03-22 01:45:58 +00001522 trace_io_uring_queue_async_work(ctx, io_wq_is_hashed(&req->work), req,
1523 &req->work, req->flags);
Pavel Begunkovebf93662021-03-01 18:20:47 +00001524 io_wq_enqueue(tctx->io_wq, &req->work);
Jens Axboe7271ef32020-08-10 09:55:22 -06001525 if (link)
1526 io_queue_linked_timeout(link);
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03001527}
1528
Pavel Begunkov1ee41602021-03-25 18:32:42 +00001529static void io_kill_timeout(struct io_kiocb *req, int status)
Pavel Begunkov8c855882021-04-13 02:58:41 +01001530 __must_hold(&req->ctx->completion_lock)
Jens Axboe89850fc2021-08-10 15:11:51 -06001531 __must_hold(&req->ctx->timeout_lock)
Jens Axboe5262f562019-09-17 12:26:57 -06001532{
Jens Axboee8c2bc12020-08-15 18:44:09 -07001533 struct io_timeout_data *io = req->async_data;
Jens Axboe5262f562019-09-17 12:26:57 -06001534
Pavel Begunkovfd9c7bc2021-04-13 02:58:42 +01001535 if (hrtimer_try_to_cancel(&io->timer) != -1) {
Pavel Begunkov2ae2eb92021-09-09 13:56:27 +01001536 if (status)
1537 req_set_fail(req);
Pavel Begunkov01cec8c2020-07-30 18:43:50 +03001538 atomic_set(&req->ctx->cq_timeouts,
1539 atomic_read(&req->ctx->cq_timeouts) + 1);
Pavel Begunkov135fcde2020-07-13 23:37:12 +03001540 list_del_init(&req->timeout.list);
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01001541 io_cqring_fill_event(req->ctx, req->user_data, status, 0);
Pavel Begunkov91c2f692021-08-11 19:28:28 +01001542 io_put_req_deferred(req);
Jens Axboe5262f562019-09-17 12:26:57 -06001543 }
1544}
1545
Pavel Begunkovc0724812021-10-04 20:02:54 +01001546static __cold void io_queue_deferred(struct io_ring_ctx *ctx)
Pavel Begunkov04518942020-05-26 20:34:05 +03001547{
Pavel Begunkov441b8a72021-06-14 23:37:31 +01001548 while (!list_empty(&ctx->defer_list)) {
Pavel Begunkov27dc8332020-07-13 23:37:14 +03001549 struct io_defer_entry *de = list_first_entry(&ctx->defer_list,
1550 struct io_defer_entry, list);
Pavel Begunkov04518942020-05-26 20:34:05 +03001551
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03001552 if (req_need_defer(de->req, de->seq))
Pavel Begunkov04518942020-05-26 20:34:05 +03001553 break;
Pavel Begunkov27dc8332020-07-13 23:37:14 +03001554 list_del_init(&de->list);
Pavel Begunkov907d1df2021-01-26 23:35:10 +00001555 io_req_task_queue(de->req);
Pavel Begunkov27dc8332020-07-13 23:37:14 +03001556 kfree(de);
Pavel Begunkov441b8a72021-06-14 23:37:31 +01001557 }
Pavel Begunkov04518942020-05-26 20:34:05 +03001558}
1559
Pavel Begunkovc0724812021-10-04 20:02:54 +01001560static __cold void io_flush_timeouts(struct io_ring_ctx *ctx)
Jens Axboe89850fc2021-08-10 15:11:51 -06001561 __must_hold(&ctx->completion_lock)
Pavel Begunkov360428f2020-05-30 14:54:17 +03001562{
Pavel Begunkov441b8a72021-06-14 23:37:31 +01001563 u32 seq = ctx->cached_cq_tail - atomic_read(&ctx->cq_timeouts);
Marcelo Diop-Gonzalezf0105052021-01-15 11:54:40 -05001564
Jens Axboe79ebeae2021-08-10 15:18:27 -06001565 spin_lock_irq(&ctx->timeout_lock);
Pavel Begunkovf18ee4c2021-06-14 23:37:25 +01001566 while (!list_empty(&ctx->timeout_list)) {
Marcelo Diop-Gonzalezf0105052021-01-15 11:54:40 -05001567 u32 events_needed, events_got;
Pavel Begunkov360428f2020-05-30 14:54:17 +03001568 struct io_kiocb *req = list_first_entry(&ctx->timeout_list,
Pavel Begunkov135fcde2020-07-13 23:37:12 +03001569 struct io_kiocb, timeout.list);
Pavel Begunkov360428f2020-05-30 14:54:17 +03001570
Pavel Begunkov8eb7e2d2020-06-29 13:13:02 +03001571 if (io_is_timeout_noseq(req))
Pavel Begunkov360428f2020-05-30 14:54:17 +03001572 break;
Marcelo Diop-Gonzalezf0105052021-01-15 11:54:40 -05001573
1574 /*
1575 * Since seq can easily wrap around over time, subtract
1576 * the last seq at which timeouts were flushed before comparing.
1577 * Assuming not more than 2^31-1 events have happened since,
1578 * these subtractions won't have wrapped, so we can check if
1579 * target is in [last_seq, current_seq] by comparing the two.
1580 */
1581 events_needed = req->timeout.target_seq - ctx->cq_last_tm_flush;
1582 events_got = seq - ctx->cq_last_tm_flush;
1583 if (events_got < events_needed)
Pavel Begunkov360428f2020-05-30 14:54:17 +03001584 break;
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03001585
Pavel Begunkov135fcde2020-07-13 23:37:12 +03001586 list_del_init(&req->timeout.list);
Pavel Begunkov1ee41602021-03-25 18:32:42 +00001587 io_kill_timeout(req, 0);
Pavel Begunkovf18ee4c2021-06-14 23:37:25 +01001588 }
Marcelo Diop-Gonzalezf0105052021-01-15 11:54:40 -05001589 ctx->cq_last_tm_flush = seq;
Jens Axboe79ebeae2021-08-10 15:18:27 -06001590 spin_unlock_irq(&ctx->timeout_lock);
Pavel Begunkov360428f2020-05-30 14:54:17 +03001591}
1592
Pavel Begunkovc0724812021-10-04 20:02:54 +01001593static __cold void __io_commit_cqring_flush(struct io_ring_ctx *ctx)
Jens Axboede0617e2019-04-06 21:51:27 -06001594{
Pavel Begunkov2335f6f2021-06-15 16:47:58 +01001595 if (ctx->off_timeout_used)
1596 io_flush_timeouts(ctx);
1597 if (ctx->drain_active)
1598 io_queue_deferred(ctx);
1599}
1600
1601static inline void io_commit_cqring(struct io_ring_ctx *ctx)
1602{
1603 if (unlikely(ctx->off_timeout_used || ctx->drain_active))
1604 __io_commit_cqring_flush(ctx);
Pavel Begunkovec30e042021-01-19 13:32:38 +00001605 /* order cqe stores with ring update */
1606 smp_store_release(&ctx->rings->cq.tail, ctx->cached_cq_tail);
Jens Axboede0617e2019-04-06 21:51:27 -06001607}
1608
Jens Axboe90554202020-09-03 12:12:41 -06001609static inline bool io_sqring_full(struct io_ring_ctx *ctx)
1610{
1611 struct io_rings *r = ctx->rings;
1612
Pavel Begunkova566c552021-05-16 22:58:08 +01001613 return READ_ONCE(r->sq.tail) - ctx->cached_sq_head == ctx->sq_entries;
Jens Axboe90554202020-09-03 12:12:41 -06001614}
1615
Pavel Begunkov888aae22021-01-19 13:32:39 +00001616static inline unsigned int __io_cqring_events(struct io_ring_ctx *ctx)
1617{
1618 return ctx->cached_cq_tail - READ_ONCE(ctx->rings->cq.head);
1619}
1620
Pavel Begunkovd068b502021-05-16 22:58:11 +01001621static inline struct io_uring_cqe *io_get_cqe(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001622{
Hristo Venev75b28af2019-08-26 17:23:46 +00001623 struct io_rings *rings = ctx->rings;
Pavel Begunkovea5ab3b2021-05-16 22:58:09 +01001624 unsigned tail, mask = ctx->cq_entries - 1;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001625
Stefan Bühler115e12e2019-04-24 23:54:18 +02001626 /*
1627 * writes to the cq entry need to come after reading head; the
1628 * control dependency is enough as we're using WRITE_ONCE to
1629 * fill the cq entry
1630 */
Pavel Begunkova566c552021-05-16 22:58:08 +01001631 if (__io_cqring_events(ctx) == ctx->cq_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001632 return NULL;
1633
Pavel Begunkov888aae22021-01-19 13:32:39 +00001634 tail = ctx->cached_cq_tail++;
Pavel Begunkovea5ab3b2021-05-16 22:58:09 +01001635 return &rings->cqes[tail & mask];
Jens Axboe2b188cc2019-01-07 10:46:33 -07001636}
1637
Jens Axboef2842ab2020-01-08 11:04:00 -07001638static inline bool io_should_trigger_evfd(struct io_ring_ctx *ctx)
1639{
Pavel Begunkov44c769d2021-04-11 01:46:31 +01001640 if (likely(!ctx->cq_ev_fd))
Jens Axboef0b493e2020-02-01 21:30:11 -07001641 return false;
Stefano Garzarella7e55a192020-05-15 18:38:05 +02001642 if (READ_ONCE(ctx->rings->cq_flags) & IORING_CQ_EVENTFD_DISABLED)
1643 return false;
Pavel Begunkov44c769d2021-04-11 01:46:31 +01001644 return !ctx->eventfd_async || io_wq_current_is_worker();
Jens Axboef2842ab2020-01-08 11:04:00 -07001645}
1646
Jens Axboe2c5d7632021-08-21 07:21:19 -06001647/*
1648 * This should only get called when at least one event has been posted.
1649 * Some applications rely on the eventfd notification count only changing
1650 * IFF a new CQE has been added to the CQ ring. There's no depedency on
1651 * 1:1 relationship between how many times this function is called (and
1652 * hence the eventfd count) and number of CQEs posted to the CQ ring.
1653 */
Jens Axboeb41e9852020-02-17 09:52:41 -07001654static void io_cqring_ev_posted(struct io_ring_ctx *ctx)
Jens Axboe8c838782019-03-12 15:48:16 -06001655{
Jens Axboe5fd46172021-08-06 14:04:31 -06001656 /*
1657 * wake_up_all() may seem excessive, but io_wake_function() and
1658 * io_should_wake() handle the termination of the loop and only
1659 * wake as many waiters as we need to.
1660 */
1661 if (wq_has_sleeper(&ctx->cq_wait))
1662 wake_up_all(&ctx->cq_wait);
Jens Axboeb41e9852020-02-17 09:52:41 -07001663 if (io_should_trigger_evfd(ctx))
Jens Axboe9b402842019-04-11 11:45:41 -06001664 eventfd_signal(ctx->cq_ev_fd, 1);
Jens Axboe8c838782019-03-12 15:48:16 -06001665}
1666
Pavel Begunkov80c18e42021-01-07 03:15:41 +00001667static void io_cqring_ev_posted_iopoll(struct io_ring_ctx *ctx)
1668{
Pavel Begunkovc57a91fb2021-09-08 20:49:17 +01001669 /* see waitqueue_active() comment */
1670 smp_mb();
1671
Pavel Begunkov80c18e42021-01-07 03:15:41 +00001672 if (ctx->flags & IORING_SETUP_SQPOLL) {
Pavel Begunkovc57a91fb2021-09-08 20:49:17 +01001673 if (waitqueue_active(&ctx->cq_wait))
Jens Axboe5fd46172021-08-06 14:04:31 -06001674 wake_up_all(&ctx->cq_wait);
Pavel Begunkov80c18e42021-01-07 03:15:41 +00001675 }
1676 if (io_should_trigger_evfd(ctx))
1677 eventfd_signal(ctx->cq_ev_fd, 1);
1678}
1679
Jens Axboec4a2ed72019-11-21 21:01:26 -07001680/* Returns true if there are no backlogged entries after the flush */
Pavel Begunkov6c2450a2021-02-23 12:40:22 +00001681static bool __io_cqring_overflow_flush(struct io_ring_ctx *ctx, bool force)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001682{
Jens Axboeb18032b2021-01-24 16:58:56 -07001683 bool all_flushed, posted;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001684
Pavel Begunkova566c552021-05-16 22:58:08 +01001685 if (!force && __io_cqring_events(ctx) == ctx->cq_entries)
Pavel Begunkove23de152020-12-17 00:24:37 +00001686 return false;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001687
Jens Axboeb18032b2021-01-24 16:58:56 -07001688 posted = false;
Jens Axboe79ebeae2021-08-10 15:18:27 -06001689 spin_lock(&ctx->completion_lock);
Pavel Begunkov6c2450a2021-02-23 12:40:22 +00001690 while (!list_empty(&ctx->cq_overflow_list)) {
Pavel Begunkovd068b502021-05-16 22:58:11 +01001691 struct io_uring_cqe *cqe = io_get_cqe(ctx);
Pavel Begunkov6c2450a2021-02-23 12:40:22 +00001692 struct io_overflow_cqe *ocqe;
Jens Axboee6c8aa92020-09-28 13:10:13 -06001693
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001694 if (!cqe && !force)
1695 break;
Pavel Begunkov6c2450a2021-02-23 12:40:22 +00001696 ocqe = list_first_entry(&ctx->cq_overflow_list,
1697 struct io_overflow_cqe, list);
1698 if (cqe)
1699 memcpy(cqe, &ocqe->cqe, sizeof(*cqe));
1700 else
Pavel Begunkov8f6ed492021-05-16 22:58:10 +01001701 io_account_cq_overflow(ctx);
1702
Jens Axboeb18032b2021-01-24 16:58:56 -07001703 posted = true;
Pavel Begunkov6c2450a2021-02-23 12:40:22 +00001704 list_del(&ocqe->list);
1705 kfree(ocqe);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001706 }
1707
Pavel Begunkov09e88402020-12-17 00:24:38 +00001708 all_flushed = list_empty(&ctx->cq_overflow_list);
1709 if (all_flushed) {
Pavel Begunkov5ed7a372021-06-14 23:37:27 +01001710 clear_bit(0, &ctx->check_cq_overflow);
Nadav Amit20c0b382021-08-07 17:13:42 -07001711 WRITE_ONCE(ctx->rings->sq_flags,
1712 ctx->rings->sq_flags & ~IORING_SQ_CQ_OVERFLOW);
Pavel Begunkov09e88402020-12-17 00:24:38 +00001713 }
Pavel Begunkov46930142020-07-30 18:43:49 +03001714
Jens Axboeb18032b2021-01-24 16:58:56 -07001715 if (posted)
1716 io_commit_cqring(ctx);
Jens Axboe79ebeae2021-08-10 15:18:27 -06001717 spin_unlock(&ctx->completion_lock);
Jens Axboeb18032b2021-01-24 16:58:56 -07001718 if (posted)
1719 io_cqring_ev_posted(ctx);
Pavel Begunkov09e88402020-12-17 00:24:38 +00001720 return all_flushed;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001721}
1722
Pavel Begunkov90f67362021-08-09 20:18:12 +01001723static bool io_cqring_overflow_flush(struct io_ring_ctx *ctx)
Pavel Begunkov6c503152021-01-04 20:36:36 +00001724{
Jens Axboeca0a2652021-03-04 17:15:48 -07001725 bool ret = true;
1726
Pavel Begunkov5ed7a372021-06-14 23:37:27 +01001727 if (test_bit(0, &ctx->check_cq_overflow)) {
Pavel Begunkov6c503152021-01-04 20:36:36 +00001728 /* iopoll syncs against uring_lock, not completion_lock */
1729 if (ctx->flags & IORING_SETUP_IOPOLL)
1730 mutex_lock(&ctx->uring_lock);
Pavel Begunkov90f67362021-08-09 20:18:12 +01001731 ret = __io_cqring_overflow_flush(ctx, false);
Pavel Begunkov6c503152021-01-04 20:36:36 +00001732 if (ctx->flags & IORING_SETUP_IOPOLL)
1733 mutex_unlock(&ctx->uring_lock);
1734 }
Jens Axboeca0a2652021-03-04 17:15:48 -07001735
1736 return ret;
Pavel Begunkov6c503152021-01-04 20:36:36 +00001737}
1738
Pavel Begunkov6a290a12021-08-09 13:04:13 +01001739/* must to be called somewhat shortly after putting a request */
1740static inline void io_put_task(struct task_struct *task, int nr)
1741{
1742 struct io_uring_task *tctx = task->io_uring;
1743
Pavel Begunkove98e49b2021-08-18 17:01:43 +01001744 if (likely(task == current)) {
1745 tctx->cached_refs += nr;
1746 } else {
1747 percpu_counter_sub(&tctx->inflight, nr);
1748 if (unlikely(atomic_read(&tctx->in_idle)))
1749 wake_up(&tctx->wait);
1750 put_task_struct_many(task, nr);
1751 }
Pavel Begunkov6a290a12021-08-09 13:04:13 +01001752}
1753
Pavel Begunkov9a108672021-08-27 11:55:01 +01001754static void io_task_refs_refill(struct io_uring_task *tctx)
1755{
1756 unsigned int refill = -tctx->cached_refs + IO_TCTX_REFS_CACHE_NR;
1757
1758 percpu_counter_add(&tctx->inflight, refill);
1759 refcount_add(refill, &current->usage);
1760 tctx->cached_refs += refill;
1761}
1762
1763static inline void io_get_task_refs(int nr)
1764{
1765 struct io_uring_task *tctx = current->io_uring;
1766
1767 tctx->cached_refs -= nr;
1768 if (unlikely(tctx->cached_refs < 0))
1769 io_task_refs_refill(tctx);
1770}
1771
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01001772static bool io_cqring_event_overflow(struct io_ring_ctx *ctx, u64 user_data,
Pavel Begunkov54daa9b2021-10-04 20:03:00 +01001773 s32 res, u32 cflags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001774{
Pavel Begunkovcce4b8b2021-04-13 02:58:44 +01001775 struct io_overflow_cqe *ocqe;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001776
Pavel Begunkovcce4b8b2021-04-13 02:58:44 +01001777 ocqe = kmalloc(sizeof(*ocqe), GFP_ATOMIC | __GFP_ACCOUNT);
1778 if (!ocqe) {
1779 /*
1780 * If we're in ring overflow flush mode, or in task cancel mode,
1781 * or cannot allocate an overflow entry, then we need to drop it
1782 * on the floor.
1783 */
Pavel Begunkov8f6ed492021-05-16 22:58:10 +01001784 io_account_cq_overflow(ctx);
Pavel Begunkovcce4b8b2021-04-13 02:58:44 +01001785 return false;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001786 }
Pavel Begunkovcce4b8b2021-04-13 02:58:44 +01001787 if (list_empty(&ctx->cq_overflow_list)) {
Pavel Begunkov5ed7a372021-06-14 23:37:27 +01001788 set_bit(0, &ctx->check_cq_overflow);
Nadav Amit20c0b382021-08-07 17:13:42 -07001789 WRITE_ONCE(ctx->rings->sq_flags,
1790 ctx->rings->sq_flags | IORING_SQ_CQ_OVERFLOW);
1791
Pavel Begunkovcce4b8b2021-04-13 02:58:44 +01001792 }
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01001793 ocqe->cqe.user_data = user_data;
Pavel Begunkovcce4b8b2021-04-13 02:58:44 +01001794 ocqe->cqe.res = res;
1795 ocqe->cqe.flags = cflags;
1796 list_add_tail(&ocqe->list, &ctx->cq_overflow_list);
1797 return true;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001798}
1799
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01001800static inline bool __io_cqring_fill_event(struct io_ring_ctx *ctx, u64 user_data,
Pavel Begunkov54daa9b2021-10-04 20:03:00 +01001801 s32 res, u32 cflags)
Pavel Begunkov8d133262021-04-11 01:46:33 +01001802{
Jens Axboe2b188cc2019-01-07 10:46:33 -07001803 struct io_uring_cqe *cqe;
1804
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01001805 trace_io_uring_complete(ctx, user_data, res, cflags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001806
1807 /*
1808 * If we can't get a cq entry, userspace overflowed the
1809 * submission (by quite a lot). Increment the overflow count in
1810 * the ring.
1811 */
Pavel Begunkovd068b502021-05-16 22:58:11 +01001812 cqe = io_get_cqe(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001813 if (likely(cqe)) {
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01001814 WRITE_ONCE(cqe->user_data, user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001815 WRITE_ONCE(cqe->res, res);
1816 WRITE_ONCE(cqe->flags, cflags);
Pavel Begunkov8d133262021-04-11 01:46:33 +01001817 return true;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001818 }
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01001819 return io_cqring_event_overflow(ctx, user_data, res, cflags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001820}
1821
Pavel Begunkov8d133262021-04-11 01:46:33 +01001822/* not as hot to bloat with inlining */
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01001823static noinline bool io_cqring_fill_event(struct io_ring_ctx *ctx, u64 user_data,
Pavel Begunkov54daa9b2021-10-04 20:03:00 +01001824 s32 res, u32 cflags)
Jens Axboebcda7ba2020-02-23 16:42:51 -07001825{
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01001826 return __io_cqring_fill_event(ctx, user_data, res, cflags);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001827}
1828
Pavel Begunkov54daa9b2021-10-04 20:03:00 +01001829static void io_req_complete_post(struct io_kiocb *req, s32 res,
1830 u32 cflags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001831{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001832 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001833
Jens Axboe79ebeae2021-08-10 15:18:27 -06001834 spin_lock(&ctx->completion_lock);
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01001835 __io_cqring_fill_event(ctx, req->user_data, res, cflags);
Jens Axboec7dae4b2021-02-09 19:53:37 -07001836 /*
1837 * If we're the last reference to this request, add to our locked
1838 * free_list cache.
1839 */
Jens Axboede9b4cc2021-02-24 13:28:27 -07001840 if (req_ref_put_and_test(req)) {
Pavel Begunkov7a612352021-03-09 00:37:59 +00001841 if (req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) {
Pavel Begunkov0756a862021-08-15 10:40:25 +01001842 if (req->flags & IO_DISARM_MASK)
Pavel Begunkov7a612352021-03-09 00:37:59 +00001843 io_disarm_next(req);
1844 if (req->link) {
1845 io_req_task_queue(req->link);
1846 req->link = NULL;
1847 }
1848 }
Pavel Begunkovab409402021-10-09 23:14:41 +01001849 io_req_put_rsrc(req, ctx);
Jens Axboec7dae4b2021-02-09 19:53:37 -07001850 io_dismantle_req(req);
1851 io_put_task(req->task, 1);
Pavel Begunkovc2b6c6b2021-09-24 21:59:47 +01001852 wq_list_add_head(&req->comp_list, &ctx->locked_free_list);
Pavel Begunkovd0acdee2021-05-16 22:58:12 +01001853 ctx->locked_free_nr++;
Pavel Begunkov180f8292021-03-14 20:57:09 +00001854 }
Pavel Begunkov7a612352021-03-09 00:37:59 +00001855 io_commit_cqring(ctx);
Jens Axboe79ebeae2021-08-10 15:18:27 -06001856 spin_unlock(&ctx->completion_lock);
Pavel Begunkova3f349072021-09-15 12:04:20 +01001857 io_cqring_ev_posted(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001858}
1859
Pavel Begunkov54daa9b2021-10-04 20:03:00 +01001860static inline void io_req_complete_state(struct io_kiocb *req, s32 res,
1861 u32 cflags)
Jens Axboebcda7ba2020-02-23 16:42:51 -07001862{
Pavel Begunkova38d68d2021-01-19 13:32:45 +00001863 req->result = res;
Pavel Begunkovd17e56e2021-10-04 20:02:57 +01001864 req->cflags = cflags;
Pavel Begunkove342c802021-01-19 13:32:47 +00001865 req->flags |= REQ_F_COMPLETE_INLINE;
Jens Axboee1e16092020-06-22 09:17:17 -06001866}
Jens Axboe2b188cc2019-01-07 10:46:33 -07001867
Pavel Begunkov889fca72021-02-10 00:03:09 +00001868static inline void __io_req_complete(struct io_kiocb *req, unsigned issue_flags,
Pavel Begunkov54daa9b2021-10-04 20:03:00 +01001869 s32 res, u32 cflags)
Pavel Begunkova38d68d2021-01-19 13:32:45 +00001870{
Pavel Begunkov889fca72021-02-10 00:03:09 +00001871 if (issue_flags & IO_URING_F_COMPLETE_DEFER)
1872 io_req_complete_state(req, res, cflags);
Pavel Begunkova38d68d2021-01-19 13:32:45 +00001873 else
Jens Axboec7dae4b2021-02-09 19:53:37 -07001874 io_req_complete_post(req, res, cflags);
Pavel Begunkova38d68d2021-01-19 13:32:45 +00001875}
Jens Axboebcda7ba2020-02-23 16:42:51 -07001876
Pavel Begunkov54daa9b2021-10-04 20:03:00 +01001877static inline void io_req_complete(struct io_kiocb *req, s32 res)
Jens Axboee1e16092020-06-22 09:17:17 -06001878{
Pavel Begunkov889fca72021-02-10 00:03:09 +00001879 __io_req_complete(req, 0, res, 0);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001880}
1881
Pavel Begunkov54daa9b2021-10-04 20:03:00 +01001882static void io_req_complete_failed(struct io_kiocb *req, s32 res)
Pavel Begunkovf41db2732021-02-28 22:35:12 +00001883{
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01001884 req_set_fail(req);
Pavel Begunkovf41db2732021-02-28 22:35:12 +00001885 io_req_complete_post(req, res, 0);
1886}
1887
Pavel Begunkovc6d3d9c2021-08-31 14:13:10 +01001888static void io_req_complete_fail_submit(struct io_kiocb *req)
1889{
1890 /*
1891 * We don't submit, fail them all, for that replace hardlinks with
1892 * normal links. Extra REQ_F_LINK is tolerated.
1893 */
1894 req->flags &= ~REQ_F_HARDLINK;
1895 req->flags |= REQ_F_LINK;
1896 io_req_complete_failed(req, req->result);
1897}
1898
Pavel Begunkov864ea922021-08-09 13:04:08 +01001899/*
1900 * Don't initialise the fields below on every allocation, but do that in
1901 * advance and keep them valid across allocations.
1902 */
1903static void io_preinit_req(struct io_kiocb *req, struct io_ring_ctx *ctx)
1904{
1905 req->ctx = ctx;
1906 req->link = NULL;
1907 req->async_data = NULL;
1908 /* not necessary, but safer to zero */
1909 req->result = 0;
1910}
1911
Pavel Begunkovdac7a092021-03-19 17:22:39 +00001912static void io_flush_cached_locked_reqs(struct io_ring_ctx *ctx,
Pavel Begunkovcd0ca2e2021-08-09 20:18:11 +01001913 struct io_submit_state *state)
Pavel Begunkovdac7a092021-03-19 17:22:39 +00001914{
Jens Axboe79ebeae2021-08-10 15:18:27 -06001915 spin_lock(&ctx->completion_lock);
Pavel Begunkovc2b6c6b2021-09-24 21:59:47 +01001916 wq_list_splice(&ctx->locked_free_list, &state->free_list);
Pavel Begunkovd0acdee2021-05-16 22:58:12 +01001917 ctx->locked_free_nr = 0;
Jens Axboe79ebeae2021-08-10 15:18:27 -06001918 spin_unlock(&ctx->completion_lock);
Pavel Begunkovdac7a092021-03-19 17:22:39 +00001919}
1920
Pavel Begunkovdd78f492021-03-19 17:22:35 +00001921/* Returns true IFF there are requests in the cache */
Jens Axboec7dae4b2021-02-09 19:53:37 -07001922static bool io_flush_cached_reqs(struct io_ring_ctx *ctx)
Pavel Begunkove5d1bc02021-02-10 00:03:23 +00001923{
Jens Axboec7dae4b2021-02-09 19:53:37 -07001924 struct io_submit_state *state = &ctx->submit_state;
Pavel Begunkove5d1bc02021-02-10 00:03:23 +00001925
Jens Axboec7dae4b2021-02-09 19:53:37 -07001926 /*
1927 * If we have more than a batch's worth of requests in our IRQ side
1928 * locked cache, grab the lock and move them over to our submission
1929 * side cache.
1930 */
Pavel Begunkovd0acdee2021-05-16 22:58:12 +01001931 if (READ_ONCE(ctx->locked_free_nr) > IO_COMPL_BATCH)
Pavel Begunkovcd0ca2e2021-08-09 20:18:11 +01001932 io_flush_cached_locked_reqs(ctx, state);
Pavel Begunkovc2b6c6b2021-09-24 21:59:47 +01001933 return !!state->free_list.next;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001934}
1935
Pavel Begunkov5d5901a2021-08-11 19:28:29 +01001936/*
1937 * A request might get retired back into the request caches even before opcode
1938 * handlers and io_issue_sqe() are done with it, e.g. inline completion path.
1939 * Because of that, io_alloc_req() should be called only under ->uring_lock
1940 * and with extra caution to not get a request that is still worked on.
1941 */
Pavel Begunkovc0724812021-10-04 20:02:54 +01001942static __cold bool __io_alloc_req_refill(struct io_ring_ctx *ctx)
Pavel Begunkov5d5901a2021-08-11 19:28:29 +01001943 __must_hold(&ctx->uring_lock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001944{
Pavel Begunkov258b29a2021-02-10 00:03:10 +00001945 struct io_submit_state *state = &ctx->submit_state;
Pavel Begunkov864ea922021-08-09 13:04:08 +01001946 gfp_t gfp = GFP_KERNEL | __GFP_NOWARN;
Pavel Begunkov3ab665b2021-09-24 21:59:45 +01001947 void *reqs[IO_REQ_ALLOC_BATCH];
1948 struct io_kiocb *req;
Pavel Begunkov864ea922021-08-09 13:04:08 +01001949 int ret, i;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001950
Pavel Begunkovc2b6c6b2021-09-24 21:59:47 +01001951 if (likely(state->free_list.next || io_flush_cached_reqs(ctx)))
Pavel Begunkova33ae9c2021-10-04 20:02:49 +01001952 return true;
Jens Axboe2579f912019-01-09 09:10:43 -07001953
Pavel Begunkov3ab665b2021-09-24 21:59:45 +01001954 ret = kmem_cache_alloc_bulk(req_cachep, gfp, ARRAY_SIZE(reqs), reqs);
Pavel Begunkove5d1bc02021-02-10 00:03:23 +00001955
Pavel Begunkov864ea922021-08-09 13:04:08 +01001956 /*
1957 * Bulk alloc is all-or-nothing. If we fail to get a batch,
1958 * retry single alloc to be on the safe side.
1959 */
1960 if (unlikely(ret <= 0)) {
Pavel Begunkov3ab665b2021-09-24 21:59:45 +01001961 reqs[0] = kmem_cache_alloc(req_cachep, gfp);
1962 if (!reqs[0])
Pavel Begunkova33ae9c2021-10-04 20:02:49 +01001963 return false;
Pavel Begunkov864ea922021-08-09 13:04:08 +01001964 ret = 1;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001965 }
Pavel Begunkov864ea922021-08-09 13:04:08 +01001966
Pavel Begunkov37f0e762021-10-04 20:02:53 +01001967 percpu_ref_get_many(&ctx->refs, ret);
Pavel Begunkov3ab665b2021-09-24 21:59:45 +01001968 for (i = 0; i < ret; i++) {
1969 req = reqs[i];
1970
1971 io_preinit_req(req, ctx);
Pavel Begunkovc2b6c6b2021-09-24 21:59:47 +01001972 wq_stack_add_head(&req->comp_list, &state->free_list);
Pavel Begunkov3ab665b2021-09-24 21:59:45 +01001973 }
Pavel Begunkova33ae9c2021-10-04 20:02:49 +01001974 return true;
1975}
1976
1977static inline bool io_alloc_req_refill(struct io_ring_ctx *ctx)
1978{
1979 if (unlikely(!ctx->submit_state.free_list.next))
1980 return __io_alloc_req_refill(ctx);
1981 return true;
1982}
1983
1984static inline struct io_kiocb *io_alloc_req(struct io_ring_ctx *ctx)
1985{
1986 struct io_wq_work_node *node;
1987
1988 node = wq_stack_extract(&ctx->submit_state.free_list);
Pavel Begunkovc2b6c6b2021-09-24 21:59:47 +01001989 return container_of(node, struct io_kiocb, comp_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001990}
1991
Pavel Begunkove1d767f2021-03-19 17:22:43 +00001992static inline void io_put_file(struct file *file)
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001993{
Pavel Begunkove1d767f2021-03-19 17:22:43 +00001994 if (file)
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001995 fput(file);
1996}
1997
Pavel Begunkov6b639522021-09-08 16:40:50 +01001998static inline void io_dismantle_req(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001999{
Pavel Begunkov094bae42021-03-19 17:22:42 +00002000 unsigned int flags = req->flags;
Pavel Begunkov929a3af2020-02-19 00:19:09 +03002001
Pavel Begunkov867f8fa2021-10-04 20:02:58 +01002002 if (unlikely(flags & IO_REQ_CLEAN_FLAGS))
Pavel Begunkov3a0a6902021-04-20 12:03:31 +01002003 io_clean_op(req);
Pavel Begunkove1d767f2021-03-19 17:22:43 +00002004 if (!(flags & REQ_F_FIXED_FILE))
2005 io_put_file(req->file);
Pavel Begunkove6543a82020-06-28 12:52:30 +03002006}
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03002007
Pavel Begunkovc0724812021-10-04 20:02:54 +01002008static __cold void __io_free_req(struct io_kiocb *req)
Pavel Begunkove6543a82020-06-28 12:52:30 +03002009{
Jens Axboe51a4cc12020-08-10 10:55:56 -06002010 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovecfc5172020-06-29 13:13:03 +03002011
Pavel Begunkovab409402021-10-09 23:14:41 +01002012 io_req_put_rsrc(req, ctx);
Pavel Begunkov216578e2020-10-13 09:44:00 +01002013 io_dismantle_req(req);
Pavel Begunkov7c660732021-01-25 11:42:21 +00002014 io_put_task(req->task, 1);
Pavel Begunkove6543a82020-06-28 12:52:30 +03002015
Jens Axboe79ebeae2021-08-10 15:18:27 -06002016 spin_lock(&ctx->completion_lock);
Pavel Begunkovc2b6c6b2021-09-24 21:59:47 +01002017 wq_list_add_head(&req->comp_list, &ctx->locked_free_list);
Pavel Begunkovc34b0252021-08-09 20:18:08 +01002018 ctx->locked_free_nr++;
Jens Axboe79ebeae2021-08-10 15:18:27 -06002019 spin_unlock(&ctx->completion_lock);
Jens Axboee65ef562019-03-12 10:16:44 -06002020}
2021
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002022static inline void io_remove_next_linked(struct io_kiocb *req)
2023{
2024 struct io_kiocb *nxt = req->link;
2025
2026 req->link = nxt->link;
2027 nxt->link = NULL;
2028}
2029
Pavel Begunkov33cc89a2021-03-09 00:37:58 +00002030static bool io_kill_linked_timeout(struct io_kiocb *req)
2031 __must_hold(&req->ctx->completion_lock)
Jens Axboe89b263f2021-08-10 15:14:18 -06002032 __must_hold(&req->ctx->timeout_lock)
Jens Axboe9e645e112019-05-10 16:07:28 -06002033{
Pavel Begunkov33cc89a2021-03-09 00:37:58 +00002034 struct io_kiocb *link = req->link;
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002035
Pavel Begunkovb97e7362021-08-15 10:40:23 +01002036 if (link && link->opcode == IORING_OP_LINK_TIMEOUT) {
Pavel Begunkovc9abd7a2020-10-22 16:43:11 +01002037 struct io_timeout_data *io = link->async_data;
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03002038
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002039 io_remove_next_linked(req);
Pavel Begunkov90cd7e42020-10-27 23:25:36 +00002040 link->timeout.head = NULL;
Pavel Begunkovfd9c7bc2021-04-13 02:58:42 +01002041 if (hrtimer_try_to_cancel(&io->timer) != -1) {
Pavel Begunkovef9dd632021-08-28 19:54:38 -06002042 list_del(&link->timeout.list);
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01002043 io_cqring_fill_event(link->ctx, link->user_data,
2044 -ECANCELED, 0);
Pavel Begunkov91c2f692021-08-11 19:28:28 +01002045 io_put_req_deferred(link);
Pavel Begunkovd4729fb2021-03-22 01:58:24 +00002046 return true;
Pavel Begunkovc9abd7a2020-10-22 16:43:11 +01002047 }
2048 }
Pavel Begunkovd4729fb2021-03-22 01:58:24 +00002049 return false;
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03002050}
2051
Pavel Begunkovd148ca42020-10-18 10:17:39 +01002052static void io_fail_links(struct io_kiocb *req)
Pavel Begunkov33cc89a2021-03-09 00:37:58 +00002053 __must_hold(&req->ctx->completion_lock)
Jens Axboe9e645e112019-05-10 16:07:28 -06002054{
Pavel Begunkov33cc89a2021-03-09 00:37:58 +00002055 struct io_kiocb *nxt, *link = req->link;
Jens Axboe9e645e112019-05-10 16:07:28 -06002056
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002057 req->link = NULL;
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002058 while (link) {
Hao Xua8295b92021-08-27 17:46:09 +08002059 long res = -ECANCELED;
2060
2061 if (link->flags & REQ_F_FAIL)
2062 res = link->result;
2063
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002064 nxt = link->link;
2065 link->link = NULL;
2066
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02002067 trace_io_uring_fail_link(req, link);
Hao Xua8295b92021-08-27 17:46:09 +08002068 io_cqring_fill_event(link->ctx, link->user_data, res, 0);
Pavel Begunkov91c2f692021-08-11 19:28:28 +01002069 io_put_req_deferred(link);
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002070 link = nxt;
Jens Axboe9e645e112019-05-10 16:07:28 -06002071 }
Pavel Begunkov33cc89a2021-03-09 00:37:58 +00002072}
Pavel Begunkov7c86ffe2020-06-29 13:12:59 +03002073
Pavel Begunkov33cc89a2021-03-09 00:37:58 +00002074static bool io_disarm_next(struct io_kiocb *req)
2075 __must_hold(&req->ctx->completion_lock)
2076{
2077 bool posted = false;
2078
Pavel Begunkov0756a862021-08-15 10:40:25 +01002079 if (req->flags & REQ_F_ARM_LTIMEOUT) {
2080 struct io_kiocb *link = req->link;
2081
Pavel Begunkov906c6ca2021-08-15 10:40:26 +01002082 req->flags &= ~REQ_F_ARM_LTIMEOUT;
Pavel Begunkov0756a862021-08-15 10:40:25 +01002083 if (link && link->opcode == IORING_OP_LINK_TIMEOUT) {
2084 io_remove_next_linked(req);
2085 io_cqring_fill_event(link->ctx, link->user_data,
2086 -ECANCELED, 0);
2087 io_put_req_deferred(link);
2088 posted = true;
2089 }
2090 } else if (req->flags & REQ_F_LINK_TIMEOUT) {
Jens Axboe89b263f2021-08-10 15:14:18 -06002091 struct io_ring_ctx *ctx = req->ctx;
2092
2093 spin_lock_irq(&ctx->timeout_lock);
Pavel Begunkov33cc89a2021-03-09 00:37:58 +00002094 posted = io_kill_linked_timeout(req);
Jens Axboe89b263f2021-08-10 15:14:18 -06002095 spin_unlock_irq(&ctx->timeout_lock);
2096 }
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01002097 if (unlikely((req->flags & REQ_F_FAIL) &&
Pavel Begunkove4335ed2021-04-11 01:46:39 +01002098 !(req->flags & REQ_F_HARDLINK))) {
Pavel Begunkov33cc89a2021-03-09 00:37:58 +00002099 posted |= (req->link != NULL);
2100 io_fail_links(req);
2101 }
2102 return posted;
Jens Axboe9e645e112019-05-10 16:07:28 -06002103}
2104
Pavel Begunkovd81499b2021-09-08 16:40:51 +01002105static void __io_req_find_next_prep(struct io_kiocb *req)
2106{
2107 struct io_ring_ctx *ctx = req->ctx;
2108 bool posted;
2109
2110 spin_lock(&ctx->completion_lock);
2111 posted = io_disarm_next(req);
2112 if (posted)
2113 io_commit_cqring(req->ctx);
2114 spin_unlock(&ctx->completion_lock);
2115 if (posted)
2116 io_cqring_ev_posted(ctx);
2117}
2118
2119static inline struct io_kiocb *io_req_find_next(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -06002120{
Pavel Begunkov33cc89a2021-03-09 00:37:58 +00002121 struct io_kiocb *nxt;
Jens Axboe2665abf2019-11-05 12:40:47 -07002122
Pavel Begunkovd81499b2021-09-08 16:40:51 +01002123 if (likely(!(req->flags & (REQ_F_LINK|REQ_F_HARDLINK))))
2124 return NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06002125 /*
2126 * If LINK is set, we have dependent requests in this chain. If we
2127 * didn't fail this request, queue the first one up, moving any other
2128 * dependencies to the next request. In case of failure, fail the rest
2129 * of the chain.
2130 */
Pavel Begunkovd81499b2021-09-08 16:40:51 +01002131 if (unlikely(req->flags & IO_DISARM_MASK))
2132 __io_req_find_next_prep(req);
Pavel Begunkov33cc89a2021-03-09 00:37:58 +00002133 nxt = req->link;
2134 req->link = NULL;
2135 return nxt;
Jens Axboe4d7dd462019-11-20 13:03:52 -07002136}
Jens Axboe2665abf2019-11-05 12:40:47 -07002137
Pavel Begunkovf237c302021-08-18 12:42:46 +01002138static void ctx_flush_and_put(struct io_ring_ctx *ctx, bool *locked)
Pavel Begunkov2c323952021-02-28 22:04:53 +00002139{
2140 if (!ctx)
2141 return;
Pavel Begunkovf237c302021-08-18 12:42:46 +01002142 if (*locked) {
Pavel Begunkovc4501782021-09-08 16:40:52 +01002143 io_submit_flush_completions(ctx);
Pavel Begunkov2c323952021-02-28 22:04:53 +00002144 mutex_unlock(&ctx->uring_lock);
Pavel Begunkovf237c302021-08-18 12:42:46 +01002145 *locked = false;
Pavel Begunkov2c323952021-02-28 22:04:53 +00002146 }
2147 percpu_ref_put(&ctx->refs);
2148}
2149
Jens Axboe7cbf1722021-02-10 00:03:20 +00002150static void tctx_task_work(struct callback_head *cb)
2151{
Pavel Begunkovf237c302021-08-18 12:42:46 +01002152 bool locked = false;
Pavel Begunkovebd0df22021-06-17 18:14:07 +01002153 struct io_ring_ctx *ctx = NULL;
Pavel Begunkov3f184072021-06-17 18:14:06 +01002154 struct io_uring_task *tctx = container_of(cb, struct io_uring_task,
2155 task_work);
Jens Axboe7cbf1722021-02-10 00:03:20 +00002156
Pavel Begunkov16f72072021-06-17 18:14:09 +01002157 while (1) {
Pavel Begunkov3f184072021-06-17 18:14:06 +01002158 struct io_wq_work_node *node;
2159
Pavel Begunkovc4501782021-09-08 16:40:52 +01002160 if (!tctx->task_list.first && locked)
Pavel Begunkov8d4ad412021-09-02 00:38:23 +01002161 io_submit_flush_completions(ctx);
2162
Pavel Begunkov3f184072021-06-17 18:14:06 +01002163 spin_lock_irq(&tctx->task_lock);
Pavel Begunkovc6538be2021-06-17 18:14:08 +01002164 node = tctx->task_list.first;
Pavel Begunkov3f184072021-06-17 18:14:06 +01002165 INIT_WQ_LIST(&tctx->task_list);
Pavel Begunkov6294f362021-08-10 17:53:55 +01002166 if (!node)
2167 tctx->task_running = false;
Pavel Begunkov3f184072021-06-17 18:14:06 +01002168 spin_unlock_irq(&tctx->task_lock);
Pavel Begunkov6294f362021-08-10 17:53:55 +01002169 if (!node)
2170 break;
Pavel Begunkov3f184072021-06-17 18:14:06 +01002171
Pavel Begunkov6294f362021-08-10 17:53:55 +01002172 do {
Pavel Begunkov3f184072021-06-17 18:14:06 +01002173 struct io_wq_work_node *next = node->next;
2174 struct io_kiocb *req = container_of(node, struct io_kiocb,
2175 io_task_work.node);
2176
2177 if (req->ctx != ctx) {
Pavel Begunkovf237c302021-08-18 12:42:46 +01002178 ctx_flush_and_put(ctx, &locked);
Pavel Begunkov3f184072021-06-17 18:14:06 +01002179 ctx = req->ctx;
Pavel Begunkov126180b2021-08-18 12:42:47 +01002180 /* if not contended, grab and improve batching */
2181 locked = mutex_trylock(&ctx->uring_lock);
Pavel Begunkov3f184072021-06-17 18:14:06 +01002182 percpu_ref_get(&ctx->refs);
2183 }
Pavel Begunkovf237c302021-08-18 12:42:46 +01002184 req->io_task_work.func(req, &locked);
Pavel Begunkov3f184072021-06-17 18:14:06 +01002185 node = next;
Pavel Begunkov6294f362021-08-10 17:53:55 +01002186 } while (node);
2187
Jens Axboe7cbf1722021-02-10 00:03:20 +00002188 cond_resched();
Pavel Begunkov3f184072021-06-17 18:14:06 +01002189 }
Pavel Begunkovebd0df22021-06-17 18:14:07 +01002190
Pavel Begunkovf237c302021-08-18 12:42:46 +01002191 ctx_flush_and_put(ctx, &locked);
Jens Axboe7cbf1722021-02-10 00:03:20 +00002192}
2193
Pavel Begunkove09ee512021-07-01 13:26:05 +01002194static void io_req_task_work_add(struct io_kiocb *req)
Jens Axboe7cbf1722021-02-10 00:03:20 +00002195{
Pavel Begunkovc15b79d2021-03-19 17:22:44 +00002196 struct task_struct *tsk = req->task;
Jens Axboe7cbf1722021-02-10 00:03:20 +00002197 struct io_uring_task *tctx = tsk->io_uring;
Pavel Begunkovc15b79d2021-03-19 17:22:44 +00002198 enum task_work_notify_mode notify;
Pavel Begunkove09ee512021-07-01 13:26:05 +01002199 struct io_wq_work_node *node;
Jens Axboe0b81e802021-02-16 10:33:53 -07002200 unsigned long flags;
Pavel Begunkov6294f362021-08-10 17:53:55 +01002201 bool running;
Jens Axboe7cbf1722021-02-10 00:03:20 +00002202
2203 WARN_ON_ONCE(!tctx);
2204
Jens Axboe0b81e802021-02-16 10:33:53 -07002205 spin_lock_irqsave(&tctx->task_lock, flags);
Jens Axboe7cbf1722021-02-10 00:03:20 +00002206 wq_list_add_tail(&req->io_task_work.node, &tctx->task_list);
Pavel Begunkov6294f362021-08-10 17:53:55 +01002207 running = tctx->task_running;
2208 if (!running)
2209 tctx->task_running = true;
Jens Axboe0b81e802021-02-16 10:33:53 -07002210 spin_unlock_irqrestore(&tctx->task_lock, flags);
Jens Axboe7cbf1722021-02-10 00:03:20 +00002211
2212 /* task_work already pending, we're done */
Pavel Begunkov6294f362021-08-10 17:53:55 +01002213 if (running)
Pavel Begunkove09ee512021-07-01 13:26:05 +01002214 return;
Jens Axboe7cbf1722021-02-10 00:03:20 +00002215
Pavel Begunkovc15b79d2021-03-19 17:22:44 +00002216 /*
2217 * SQPOLL kernel thread doesn't need notification, just a wakeup. For
2218 * all other cases, use TWA_SIGNAL unconditionally to ensure we're
2219 * processing task_work. There's no reliable way to tell if TWA_RESUME
2220 * will do the job.
2221 */
2222 notify = (req->ctx->flags & IORING_SETUP_SQPOLL) ? TWA_NONE : TWA_SIGNAL;
Pavel Begunkovd97ec622021-09-08 16:40:53 +01002223 if (likely(!task_work_add(tsk, &tctx->task_work, notify))) {
2224 if (notify == TWA_NONE)
2225 wake_up_process(tsk);
Pavel Begunkove09ee512021-07-01 13:26:05 +01002226 return;
Pavel Begunkovc15b79d2021-03-19 17:22:44 +00002227 }
Pavel Begunkov2215bed2021-08-09 13:04:06 +01002228
Pavel Begunkove09ee512021-07-01 13:26:05 +01002229 spin_lock_irqsave(&tctx->task_lock, flags);
Pavel Begunkov6294f362021-08-10 17:53:55 +01002230 tctx->task_running = false;
Pavel Begunkove09ee512021-07-01 13:26:05 +01002231 node = tctx->task_list.first;
2232 INIT_WQ_LIST(&tctx->task_list);
2233 spin_unlock_irqrestore(&tctx->task_lock, flags);
Jens Axboe7cbf1722021-02-10 00:03:20 +00002234
Pavel Begunkove09ee512021-07-01 13:26:05 +01002235 while (node) {
2236 req = container_of(node, struct io_kiocb, io_task_work.node);
2237 node = node->next;
2238 if (llist_add(&req->io_task_work.fallback_node,
2239 &req->ctx->fallback_llist))
2240 schedule_delayed_work(&req->ctx->fallback_work, 1);
2241 }
Pavel Begunkoveab30c42021-01-19 13:32:42 +00002242}
2243
Pavel Begunkovf237c302021-08-18 12:42:46 +01002244static void io_req_task_cancel(struct io_kiocb *req, bool *locked)
Jens Axboec40f6372020-06-25 15:39:59 -06002245{
Jens Axboe87ceb6a2020-09-14 08:20:12 -06002246 struct io_ring_ctx *ctx = req->ctx;
Jens Axboec40f6372020-06-25 15:39:59 -06002247
Pavel Begunkovb18a1a42021-08-25 20:51:39 +01002248 /* not needed for normal modes, but SQPOLL depends on it */
Pavel Begunkovf237c302021-08-18 12:42:46 +01002249 io_tw_lock(ctx, locked);
Pavel Begunkov25935532021-03-19 17:22:40 +00002250 io_req_complete_failed(req, req->result);
Jens Axboec40f6372020-06-25 15:39:59 -06002251}
2252
Pavel Begunkovf237c302021-08-18 12:42:46 +01002253static void io_req_task_submit(struct io_kiocb *req, bool *locked)
Jens Axboec40f6372020-06-25 15:39:59 -06002254{
2255 struct io_ring_ctx *ctx = req->ctx;
2256
Pavel Begunkovf237c302021-08-18 12:42:46 +01002257 io_tw_lock(ctx, locked);
Jens Axboe316319e2021-08-19 09:41:42 -06002258 /* req->task == current here, checking PF_EXITING is safe */
Pavel Begunkovaf066f32021-08-09 13:04:19 +01002259 if (likely(!(req->task->flags & PF_EXITING)))
Pavel Begunkovc5eef2b2021-02-10 00:03:22 +00002260 __io_queue_sqe(req);
Pavel Begunkov81b6d052021-01-04 20:36:35 +00002261 else
Pavel Begunkov25935532021-03-19 17:22:40 +00002262 io_req_complete_failed(req, -EFAULT);
Jens Axboe9e645e112019-05-10 16:07:28 -06002263}
2264
Pavel Begunkova3df76982021-02-18 22:32:52 +00002265static void io_req_task_queue_fail(struct io_kiocb *req, int ret)
2266{
Pavel Begunkova3df76982021-02-18 22:32:52 +00002267 req->result = ret;
Pavel Begunkov5b0a6ac2021-06-30 21:54:04 +01002268 req->io_task_work.func = io_req_task_cancel;
Pavel Begunkove09ee512021-07-01 13:26:05 +01002269 io_req_task_work_add(req);
Pavel Begunkova3df76982021-02-18 22:32:52 +00002270}
2271
Pavel Begunkov2c4b8eb2021-02-28 22:35:10 +00002272static void io_req_task_queue(struct io_kiocb *req)
2273{
Pavel Begunkov5b0a6ac2021-06-30 21:54:04 +01002274 req->io_task_work.func = io_req_task_submit;
Pavel Begunkove09ee512021-07-01 13:26:05 +01002275 io_req_task_work_add(req);
Pavel Begunkov2c4b8eb2021-02-28 22:35:10 +00002276}
2277
Jens Axboe773af692021-07-27 10:25:55 -06002278static void io_req_task_queue_reissue(struct io_kiocb *req)
2279{
2280 req->io_task_work.func = io_queue_async_work;
2281 io_req_task_work_add(req);
2282}
2283
Pavel Begunkovf2f87372020-10-27 23:25:37 +00002284static inline void io_queue_next(struct io_kiocb *req)
Jackie Liuc69f8db2019-11-09 11:00:08 +08002285{
Pavel Begunkov9b5f7bd92020-06-29 13:13:00 +03002286 struct io_kiocb *nxt = io_req_find_next(req);
Pavel Begunkov944e58b2019-11-21 23:21:01 +03002287
Pavel Begunkov906a8c32020-06-27 14:04:55 +03002288 if (nxt)
2289 io_req_task_queue(nxt);
Jackie Liuc69f8db2019-11-09 11:00:08 +08002290}
2291
Jens Axboe9e645e112019-05-10 16:07:28 -06002292static void io_free_req(struct io_kiocb *req)
2293{
Pavel Begunkovc3524382020-06-28 12:52:32 +03002294 io_queue_next(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06002295 __io_free_req(req);
Jens Axboee65ef562019-03-12 10:16:44 -06002296}
2297
Pavel Begunkovf237c302021-08-18 12:42:46 +01002298static void io_free_req_work(struct io_kiocb *req, bool *locked)
2299{
2300 io_free_req(req);
2301}
2302
Pavel Begunkov3aa83bf2021-09-24 21:59:50 +01002303static void io_free_batch_list(struct io_ring_ctx *ctx,
Pavel Begunkov1cce17a2021-09-24 21:59:54 +01002304 struct io_wq_work_node *node)
Pavel Begunkov3aa83bf2021-09-24 21:59:50 +01002305 __must_hold(&ctx->uring_lock)
2306{
Pavel Begunkovd4b7a5e2021-09-24 21:59:53 +01002307 struct task_struct *task = NULL;
Pavel Begunkov37f0e762021-10-04 20:02:53 +01002308 int task_refs = 0;
Pavel Begunkov3aa83bf2021-09-24 21:59:50 +01002309
Pavel Begunkov3aa83bf2021-09-24 21:59:50 +01002310 do {
2311 struct io_kiocb *req = container_of(node, struct io_kiocb,
2312 comp_list);
2313
Pavel Begunkovdef77ac2021-10-12 15:02:14 +01002314 if (unlikely(req->flags & REQ_F_REFCOUNT)) {
Pavel Begunkovc1e53a62021-10-04 20:02:55 +01002315 node = req->comp_list.next;
Pavel Begunkovdef77ac2021-10-12 15:02:14 +01002316 if (!req_ref_put_and_test(req))
2317 continue;
Pavel Begunkovc1e53a62021-10-04 20:02:55 +01002318 }
Pavel Begunkovd4b7a5e2021-09-24 21:59:53 +01002319
Pavel Begunkovab409402021-10-09 23:14:41 +01002320 io_req_put_rsrc_locked(req, ctx);
Pavel Begunkovd4b7a5e2021-09-24 21:59:53 +01002321 io_queue_next(req);
2322 io_dismantle_req(req);
2323
2324 if (req->task != task) {
2325 if (task)
2326 io_put_task(task, task_refs);
2327 task = req->task;
2328 task_refs = 0;
2329 }
2330 task_refs++;
Pavel Begunkovc1e53a62021-10-04 20:02:55 +01002331 node = req->comp_list.next;
Pavel Begunkovd4b7a5e2021-09-24 21:59:53 +01002332 wq_stack_add_head(&req->comp_list, &ctx->submit_state.free_list);
Pavel Begunkov3aa83bf2021-09-24 21:59:50 +01002333 } while (node);
Pavel Begunkovd4b7a5e2021-09-24 21:59:53 +01002334
Pavel Begunkovd4b7a5e2021-09-24 21:59:53 +01002335 if (task)
2336 io_put_task(task, task_refs);
Pavel Begunkov3aa83bf2021-09-24 21:59:50 +01002337}
2338
Pavel Begunkovc4501782021-09-08 16:40:52 +01002339static void __io_submit_flush_completions(struct io_ring_ctx *ctx)
Jens Axboea141dd82021-08-12 12:48:34 -06002340 __must_hold(&ctx->uring_lock)
Pavel Begunkov905c1722021-02-10 00:03:14 +00002341{
Pavel Begunkov6f33b0b2021-09-24 21:59:44 +01002342 struct io_wq_work_node *node, *prev;
Pavel Begunkovcd0ca2e2021-08-09 20:18:11 +01002343 struct io_submit_state *state = &ctx->submit_state;
Pavel Begunkov905c1722021-02-10 00:03:14 +00002344
Jens Axboe79ebeae2021-08-10 15:18:27 -06002345 spin_lock(&ctx->completion_lock);
Pavel Begunkov6f33b0b2021-09-24 21:59:44 +01002346 wq_list_for_each(node, prev, &state->compl_reqs) {
2347 struct io_kiocb *req = container_of(node, struct io_kiocb,
2348 comp_list);
Pavel Begunkov5182ed22021-06-26 21:40:48 +01002349
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01002350 __io_cqring_fill_event(ctx, req->user_data, req->result,
Pavel Begunkovd17e56e2021-10-04 20:02:57 +01002351 req->cflags);
Pavel Begunkov905c1722021-02-10 00:03:14 +00002352 }
2353 io_commit_cqring(ctx);
Jens Axboe79ebeae2021-08-10 15:18:27 -06002354 spin_unlock(&ctx->completion_lock);
Pavel Begunkov905c1722021-02-10 00:03:14 +00002355 io_cqring_ev_posted(ctx);
Pavel Begunkov5182ed22021-06-26 21:40:48 +01002356
Pavel Begunkov1cce17a2021-09-24 21:59:54 +01002357 io_free_batch_list(ctx, state->compl_reqs.first);
Pavel Begunkov6f33b0b2021-09-24 21:59:44 +01002358 INIT_WQ_LIST(&state->compl_reqs);
Pavel Begunkov7a743e22020-03-03 21:33:13 +03002359}
2360
Jens Axboeba816ad2019-09-28 11:36:45 -06002361/*
2362 * Drop reference to request, return next in chain (if there is one) if this
2363 * was the last reference to this request.
2364 */
Pavel Begunkov0d850352021-03-19 17:22:37 +00002365static inline struct io_kiocb *io_put_req_find_next(struct io_kiocb *req)
Jens Axboee65ef562019-03-12 10:16:44 -06002366{
Pavel Begunkov9b5f7bd92020-06-29 13:13:00 +03002367 struct io_kiocb *nxt = NULL;
2368
Jens Axboede9b4cc2021-02-24 13:28:27 -07002369 if (req_ref_put_and_test(req)) {
Pavel Begunkov9b5f7bd92020-06-29 13:13:00 +03002370 nxt = io_req_find_next(req);
Jens Axboe4d7dd462019-11-20 13:03:52 -07002371 __io_free_req(req);
Jens Axboe2a44f462020-02-25 13:25:41 -07002372 }
Pavel Begunkov9b5f7bd92020-06-29 13:13:00 +03002373 return nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002374}
2375
Pavel Begunkov0d850352021-03-19 17:22:37 +00002376static inline void io_put_req(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002377{
Jens Axboede9b4cc2021-02-24 13:28:27 -07002378 if (req_ref_put_and_test(req))
Jens Axboedef596e2019-01-09 08:59:42 -07002379 io_free_req(req);
2380}
2381
Pavel Begunkov91c2f692021-08-11 19:28:28 +01002382static inline void io_put_req_deferred(struct io_kiocb *req)
Pavel Begunkov216578e2020-10-13 09:44:00 +01002383{
Pavel Begunkov91c2f692021-08-11 19:28:28 +01002384 if (req_ref_put_and_test(req)) {
Pavel Begunkovf237c302021-08-18 12:42:46 +01002385 req->io_task_work.func = io_free_req_work;
Pavel Begunkov543af3a2021-08-09 13:04:15 +01002386 io_req_task_work_add(req);
2387 }
Pavel Begunkov216578e2020-10-13 09:44:00 +01002388}
2389
Pavel Begunkov6c503152021-01-04 20:36:36 +00002390static unsigned io_cqring_events(struct io_ring_ctx *ctx)
Jens Axboea3a0e432019-08-20 11:03:11 -06002391{
2392 /* See comment at the top of this file */
2393 smp_rmb();
Pavel Begunkove23de152020-12-17 00:24:37 +00002394 return __io_cqring_events(ctx);
Jens Axboea3a0e432019-08-20 11:03:11 -06002395}
2396
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03002397static inline unsigned int io_sqring_entries(struct io_ring_ctx *ctx)
2398{
2399 struct io_rings *rings = ctx->rings;
2400
2401 /* make sure SQ entry isn't read before tail */
2402 return smp_load_acquire(&rings->sq.tail) - ctx->cached_sq_head;
2403}
2404
Pavel Begunkov8ff069b2020-07-16 23:28:04 +03002405static unsigned int io_put_kbuf(struct io_kiocb *req, struct io_buffer *kbuf)
Jens Axboee94f1412019-12-19 12:06:02 -07002406{
Pavel Begunkov8ff069b2020-07-16 23:28:04 +03002407 unsigned int cflags;
Jens Axboee94f1412019-12-19 12:06:02 -07002408
Jens Axboebcda7ba2020-02-23 16:42:51 -07002409 cflags = kbuf->bid << IORING_CQE_BUFFER_SHIFT;
2410 cflags |= IORING_CQE_F_BUFFER;
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03002411 req->flags &= ~REQ_F_BUFFER_SELECTED;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002412 kfree(kbuf);
2413 return cflags;
2414}
2415
Pavel Begunkov8ff069b2020-07-16 23:28:04 +03002416static inline unsigned int io_put_rw_kbuf(struct io_kiocb *req)
2417{
Pavel Begunkovae421d92021-08-17 20:28:08 +01002418 if (likely(!(req->flags & REQ_F_BUFFER_SELECTED)))
2419 return 0;
Pavel Begunkov30d51dd2021-10-01 18:07:03 +01002420 return io_put_kbuf(req, req->kbuf);
Pavel Begunkov8ff069b2020-07-16 23:28:04 +03002421}
2422
Jens Axboe4c6e2772020-07-01 11:29:10 -06002423static inline bool io_run_task_work(void)
2424{
Nadav Amitef98eb02021-08-07 17:13:41 -07002425 if (test_thread_flag(TIF_NOTIFY_SIGNAL) || current->task_works) {
Jens Axboe4c6e2772020-07-01 11:29:10 -06002426 __set_current_state(TASK_RUNNING);
Nadav Amitef98eb02021-08-07 17:13:41 -07002427 tracehook_notify_signal();
Jens Axboe4c6e2772020-07-01 11:29:10 -06002428 return true;
2429 }
2430
2431 return false;
2432}
2433
Pavel Begunkov5ba3c872021-09-24 21:59:43 +01002434static int io_do_iopoll(struct io_ring_ctx *ctx, bool force_nonspin)
Jens Axboedef596e2019-01-09 08:59:42 -07002435{
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01002436 struct io_wq_work_node *pos, *start, *prev;
Christoph Hellwigd729cf92021-10-12 13:12:20 +02002437 unsigned int poll_flags = BLK_POLL_NOSLEEP;
Jens Axboeb688f112021-10-12 09:28:46 -06002438 DEFINE_IO_COMP_BATCH(iob);
Pavel Begunkov5ba3c872021-09-24 21:59:43 +01002439 int nr_events = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07002440
2441 /*
2442 * Only spin for completions if we don't have multiple devices hanging
Pavel Begunkov87a115f2021-09-24 21:59:42 +01002443 * off our complete list.
Jens Axboedef596e2019-01-09 08:59:42 -07002444 */
Pavel Begunkov87a115f2021-09-24 21:59:42 +01002445 if (ctx->poll_multi_queue || force_nonspin)
Christoph Hellwigef99b2d2021-10-12 13:12:19 +02002446 poll_flags |= BLK_POLL_ONESHOT;
Jens Axboedef596e2019-01-09 08:59:42 -07002447
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01002448 wq_list_for_each(pos, start, &ctx->iopoll_list) {
2449 struct io_kiocb *req = container_of(pos, struct io_kiocb, comp_list);
Jens Axboe9adbd452019-12-20 08:45:55 -07002450 struct kiocb *kiocb = &req->rw.kiocb;
Pavel Begunkova2416e12021-08-09 13:04:09 +01002451 int ret;
Jens Axboedef596e2019-01-09 08:59:42 -07002452
2453 /*
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07002454 * Move completed and retryable entries to our local lists.
2455 * If we find a request that requires polling, break out
2456 * and complete those lists first, if we have entries there.
Jens Axboedef596e2019-01-09 08:59:42 -07002457 */
Pavel Begunkove3f721e2021-09-24 21:59:48 +01002458 if (READ_ONCE(req->iopoll_completed))
Jens Axboedef596e2019-01-09 08:59:42 -07002459 break;
2460
Jens Axboeb688f112021-10-12 09:28:46 -06002461 ret = kiocb->ki_filp->f_op->iopoll(kiocb, &iob, poll_flags);
Pavel Begunkova2416e12021-08-09 13:04:09 +01002462 if (unlikely(ret < 0))
2463 return ret;
2464 else if (ret)
Christoph Hellwigef99b2d2021-10-12 13:12:19 +02002465 poll_flags |= BLK_POLL_ONESHOT;
Jens Axboedef596e2019-01-09 08:59:42 -07002466
Pavel Begunkov3aadc232020-07-06 17:59:29 +03002467 /* iopoll may have completed current req */
Jens Axboeb688f112021-10-12 09:28:46 -06002468 if (!rq_list_empty(iob.req_list) ||
Pavel Begunkove3f721e2021-09-24 21:59:48 +01002469 READ_ONCE(req->iopoll_completed))
2470 break;
Jens Axboedef596e2019-01-09 08:59:42 -07002471 }
2472
Jens Axboeb688f112021-10-12 09:28:46 -06002473 if (!rq_list_empty(iob.req_list))
2474 iob.complete(&iob);
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01002475 else if (!pos)
2476 return 0;
2477
2478 prev = start;
2479 wq_list_for_each_resume(pos, prev) {
2480 struct io_kiocb *req = container_of(pos, struct io_kiocb, comp_list);
2481
Pavel Begunkovb3fa03f2021-09-24 21:59:51 +01002482 /* order with io_complete_rw_iopoll(), e.g. ->result updates */
2483 if (!smp_load_acquire(&req->iopoll_completed))
Pavel Begunkove3f721e2021-09-24 21:59:48 +01002484 break;
Pavel Begunkovb3fa03f2021-09-24 21:59:51 +01002485 __io_cqring_fill_event(ctx, req->user_data, req->result,
Pavel Begunkovf5ed3bc2021-09-24 21:59:52 +01002486 io_put_rw_kbuf(req));
Pavel Begunkove3f721e2021-09-24 21:59:48 +01002487 nr_events++;
2488 }
Jens Axboedef596e2019-01-09 08:59:42 -07002489
Pavel Begunkovf5ed3bc2021-09-24 21:59:52 +01002490 if (unlikely(!nr_events))
2491 return 0;
2492
2493 io_commit_cqring(ctx);
2494 io_cqring_ev_posted_iopoll(ctx);
Pavel Begunkov1cce17a2021-09-24 21:59:54 +01002495 pos = start ? start->next : ctx->iopoll_list.first;
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01002496 wq_list_cut(&ctx->iopoll_list, prev, start);
Pavel Begunkov1cce17a2021-09-24 21:59:54 +01002497 io_free_batch_list(ctx, pos);
Pavel Begunkov5ba3c872021-09-24 21:59:43 +01002498 return nr_events;
Jens Axboedef596e2019-01-09 08:59:42 -07002499}
2500
2501/*
Jens Axboedef596e2019-01-09 08:59:42 -07002502 * We can't just wait for polled events to come to us, we have to actively
2503 * find and complete them.
2504 */
Pavel Begunkovc0724812021-10-04 20:02:54 +01002505static __cold void io_iopoll_try_reap_events(struct io_ring_ctx *ctx)
Jens Axboedef596e2019-01-09 08:59:42 -07002506{
2507 if (!(ctx->flags & IORING_SETUP_IOPOLL))
2508 return;
2509
2510 mutex_lock(&ctx->uring_lock);
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01002511 while (!wq_list_empty(&ctx->iopoll_list)) {
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03002512 /* let it sleep and repeat later if can't complete a request */
Pavel Begunkov5ba3c872021-09-24 21:59:43 +01002513 if (io_do_iopoll(ctx, true) == 0)
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03002514 break;
Jens Axboe08f54392019-08-21 22:19:11 -06002515 /*
2516 * Ensure we allow local-to-the-cpu processing to take place,
2517 * in this case we need to ensure that we reap all events.
Pavel Begunkov3fcee5a2020-07-06 17:59:31 +03002518 * Also let task_work, etc. to progress by releasing the mutex
Jens Axboe08f54392019-08-21 22:19:11 -06002519 */
Pavel Begunkov3fcee5a2020-07-06 17:59:31 +03002520 if (need_resched()) {
2521 mutex_unlock(&ctx->uring_lock);
2522 cond_resched();
2523 mutex_lock(&ctx->uring_lock);
2524 }
Jens Axboedef596e2019-01-09 08:59:42 -07002525 }
2526 mutex_unlock(&ctx->uring_lock);
2527}
2528
Pavel Begunkov7668b922020-07-07 16:36:21 +03002529static int io_iopoll_check(struct io_ring_ctx *ctx, long min)
Jens Axboedef596e2019-01-09 08:59:42 -07002530{
Pavel Begunkov7668b922020-07-07 16:36:21 +03002531 unsigned int nr_events = 0;
Pavel Begunkove9979b32021-04-13 02:58:45 +01002532 int ret = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07002533
Xiaoguang Wangc7849be2020-02-22 14:46:05 +08002534 /*
2535 * We disallow the app entering submit/complete with polling, but we
2536 * still need to lock the ring to prevent racing with polled issue
2537 * that got punted to a workqueue.
2538 */
2539 mutex_lock(&ctx->uring_lock);
Pavel Begunkovf39c8a52021-04-13 02:58:46 +01002540 /*
2541 * Don't enter poll loop if we already have events pending.
2542 * If we do, we can potentially be spinning for commands that
2543 * already triggered a CQE (eg in error).
2544 */
Pavel Begunkov5ed7a372021-06-14 23:37:27 +01002545 if (test_bit(0, &ctx->check_cq_overflow))
Pavel Begunkovf39c8a52021-04-13 02:58:46 +01002546 __io_cqring_overflow_flush(ctx, false);
2547 if (io_cqring_events(ctx))
2548 goto out;
Jens Axboedef596e2019-01-09 08:59:42 -07002549 do {
Jens Axboe500f9fb2019-08-19 12:15:59 -06002550 /*
2551 * If a submit got punted to a workqueue, we can have the
2552 * application entering polling for a command before it gets
2553 * issued. That app will hold the uring_lock for the duration
2554 * of the poll right here, so we need to take a breather every
2555 * now and then to ensure that the issue has a chance to add
2556 * the poll to the issued list. Otherwise we can spin here
2557 * forever, while the workqueue is stuck trying to acquire the
2558 * very same mutex.
2559 */
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01002560 if (wq_list_empty(&ctx->iopoll_list)) {
Pavel Begunkov8f487ef2021-07-08 13:37:06 +01002561 u32 tail = ctx->cached_cq_tail;
2562
Jens Axboe500f9fb2019-08-19 12:15:59 -06002563 mutex_unlock(&ctx->uring_lock);
Jens Axboe4c6e2772020-07-01 11:29:10 -06002564 io_run_task_work();
Jens Axboe500f9fb2019-08-19 12:15:59 -06002565 mutex_lock(&ctx->uring_lock);
Pavel Begunkove9979b32021-04-13 02:58:45 +01002566
Pavel Begunkov8f487ef2021-07-08 13:37:06 +01002567 /* some requests don't go through iopoll_list */
2568 if (tail != ctx->cached_cq_tail ||
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01002569 wq_list_empty(&ctx->iopoll_list))
Pavel Begunkove9979b32021-04-13 02:58:45 +01002570 break;
Jens Axboe500f9fb2019-08-19 12:15:59 -06002571 }
Pavel Begunkov5ba3c872021-09-24 21:59:43 +01002572 ret = io_do_iopoll(ctx, !min);
2573 if (ret < 0)
2574 break;
2575 nr_events += ret;
2576 ret = 0;
2577 } while (nr_events < min && !need_resched());
Pavel Begunkovf39c8a52021-04-13 02:58:46 +01002578out:
Jens Axboe500f9fb2019-08-19 12:15:59 -06002579 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07002580 return ret;
2581}
2582
Jens Axboe491381ce2019-10-17 09:20:46 -06002583static void kiocb_end_write(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002584{
Jens Axboe491381ce2019-10-17 09:20:46 -06002585 /*
2586 * Tell lockdep we inherited freeze protection from submission
2587 * thread.
2588 */
2589 if (req->flags & REQ_F_ISREG) {
Pavel Begunkov1c986792021-03-22 01:58:31 +00002590 struct super_block *sb = file_inode(req->file)->i_sb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002591
Pavel Begunkov1c986792021-03-22 01:58:31 +00002592 __sb_writers_acquired(sb, SB_FREEZE_WRITE);
2593 sb_end_write(sb);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002594 }
2595}
2596
Jens Axboeb63534c2020-06-04 11:28:00 -06002597#ifdef CONFIG_BLOCK
Pavel Begunkovdc2a6e92021-01-19 13:32:35 +00002598static bool io_resubmit_prep(struct io_kiocb *req)
Jens Axboeb63534c2020-06-04 11:28:00 -06002599{
Pavel Begunkovab454432021-03-22 01:58:33 +00002600 struct io_async_rw *rw = req->async_data;
Jens Axboeb63534c2020-06-04 11:28:00 -06002601
Pavel Begunkovd886e182021-10-04 20:02:56 +01002602 if (!req_has_async_data(req))
Pavel Begunkovab454432021-03-22 01:58:33 +00002603 return !io_req_prep_async(req);
Pavel Begunkov538941e2021-10-14 16:10:15 +01002604 iov_iter_restore(&rw->s.iter, &rw->s.iter_state);
Pavel Begunkovab454432021-03-22 01:58:33 +00002605 return true;
Jens Axboeb63534c2020-06-04 11:28:00 -06002606}
Jens Axboeb63534c2020-06-04 11:28:00 -06002607
Jens Axboe3e6a0d32021-03-01 13:56:00 -07002608static bool io_rw_should_reissue(struct io_kiocb *req)
Jens Axboeb63534c2020-06-04 11:28:00 -06002609{
Jens Axboe355afae2020-09-02 09:30:31 -06002610 umode_t mode = file_inode(req->file)->i_mode;
Jens Axboe3e6a0d32021-03-01 13:56:00 -07002611 struct io_ring_ctx *ctx = req->ctx;
Jens Axboeb63534c2020-06-04 11:28:00 -06002612
Jens Axboe355afae2020-09-02 09:30:31 -06002613 if (!S_ISBLK(mode) && !S_ISREG(mode))
2614 return false;
Jens Axboe3e6a0d32021-03-01 13:56:00 -07002615 if ((req->flags & REQ_F_NOWAIT) || (io_wq_current_is_worker() &&
2616 !(ctx->flags & IORING_SETUP_IOPOLL)))
Jens Axboeb63534c2020-06-04 11:28:00 -06002617 return false;
Jens Axboe7c977a52021-02-23 19:17:35 -07002618 /*
2619 * If ref is dying, we might be running poll reap from the exit work.
2620 * Don't attempt to reissue from that path, just let it fail with
2621 * -EAGAIN.
2622 */
Jens Axboe3e6a0d32021-03-01 13:56:00 -07002623 if (percpu_ref_is_dying(&ctx->refs))
2624 return false;
Jens Axboeef046882021-07-27 10:50:31 -06002625 /*
2626 * Play it safe and assume not safe to re-import and reissue if we're
2627 * not in the original thread group (or in task context).
2628 */
2629 if (!same_thread_group(req->task, current) || !in_task())
2630 return false;
Jens Axboe3e6a0d32021-03-01 13:56:00 -07002631 return true;
2632}
Jens Axboee82ad482021-04-02 19:45:34 -06002633#else
Jens Axboea1ff1e32021-04-12 06:40:02 -06002634static bool io_resubmit_prep(struct io_kiocb *req)
2635{
2636 return false;
2637}
Jens Axboee82ad482021-04-02 19:45:34 -06002638static bool io_rw_should_reissue(struct io_kiocb *req)
2639{
2640 return false;
2641}
Jens Axboe3e6a0d32021-03-01 13:56:00 -07002642#endif
2643
Jens Axboe8ef12ef2021-08-10 15:15:25 -06002644static bool __io_complete_rw_common(struct io_kiocb *req, long res)
Jens Axboea1d7c392020-06-22 11:09:46 -06002645{
Pavel Begunkovb65c1282021-03-22 01:45:59 +00002646 if (req->rw.kiocb.ki_flags & IOCB_WRITE)
2647 kiocb_end_write(req);
Pavel Begunkov258f3a72021-10-14 16:10:14 +01002648 if (unlikely(res != req->result)) {
Pavel Begunkov9532b992021-03-22 01:58:34 +00002649 if ((res == -EAGAIN || res == -EOPNOTSUPP) &&
2650 io_rw_should_reissue(req)) {
2651 req->flags |= REQ_F_REISSUE;
Jens Axboe8ef12ef2021-08-10 15:15:25 -06002652 return true;
Pavel Begunkov9532b992021-03-22 01:58:34 +00002653 }
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01002654 req_set_fail(req);
Jens Axboe8ef12ef2021-08-10 15:15:25 -06002655 req->result = res;
Pavel Begunkov9532b992021-03-22 01:58:34 +00002656 }
Jens Axboe8ef12ef2021-08-10 15:15:25 -06002657 return false;
2658}
2659
Pavel Begunkovf237c302021-08-18 12:42:46 +01002660static void io_req_task_complete(struct io_kiocb *req, bool *locked)
Jens Axboe8ef12ef2021-08-10 15:15:25 -06002661{
Pavel Begunkov126180b2021-08-18 12:42:47 +01002662 unsigned int cflags = io_put_rw_kbuf(req);
Pavel Begunkov54daa9b2021-10-04 20:03:00 +01002663 int res = req->result;
Pavel Begunkov126180b2021-08-18 12:42:47 +01002664
Pavel Begunkovfff4e402021-10-04 20:02:48 +01002665 if (*locked) {
Pavel Begunkov126180b2021-08-18 12:42:47 +01002666 io_req_complete_state(req, res, cflags);
Pavel Begunkovfff4e402021-10-04 20:02:48 +01002667 io_req_add_compl_list(req);
2668 } else {
Pavel Begunkov126180b2021-08-18 12:42:47 +01002669 io_req_complete_post(req, res, cflags);
Pavel Begunkovfff4e402021-10-04 20:02:48 +01002670 }
Jens Axboe8ef12ef2021-08-10 15:15:25 -06002671}
2672
2673static void __io_complete_rw(struct io_kiocb *req, long res, long res2,
2674 unsigned int issue_flags)
2675{
2676 if (__io_complete_rw_common(req, res))
2677 return;
Pavel Begunkov63637852021-09-02 00:38:22 +01002678 __io_req_complete(req, issue_flags, req->result, io_put_rw_kbuf(req));
Jens Axboeba816ad2019-09-28 11:36:45 -06002679}
2680
2681static void io_complete_rw(struct kiocb *kiocb, long res, long res2)
2682{
Jens Axboe9adbd452019-12-20 08:45:55 -07002683 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboeba816ad2019-09-28 11:36:45 -06002684
Jens Axboe8ef12ef2021-08-10 15:15:25 -06002685 if (__io_complete_rw_common(req, res))
2686 return;
2687 req->result = res;
2688 req->io_task_work.func = io_req_task_complete;
2689 io_req_task_work_add(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002690}
2691
Jens Axboedef596e2019-01-09 08:59:42 -07002692static void io_complete_rw_iopoll(struct kiocb *kiocb, long res, long res2)
2693{
Jens Axboe9adbd452019-12-20 08:45:55 -07002694 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboedef596e2019-01-09 08:59:42 -07002695
Jens Axboe491381ce2019-10-17 09:20:46 -06002696 if (kiocb->ki_flags & IOCB_WRITE)
2697 kiocb_end_write(req);
Pavel Begunkov9532b992021-03-22 01:58:34 +00002698 if (unlikely(res != req->result)) {
Pavel Begunkovb66ceaf2021-09-15 11:00:05 +01002699 if (res == -EAGAIN && io_rw_should_reissue(req)) {
2700 req->flags |= REQ_F_REISSUE;
2701 return;
Pavel Begunkov9532b992021-03-22 01:58:34 +00002702 }
Pavel Begunkov258f3a72021-10-14 16:10:14 +01002703 req->result = res;
Pavel Begunkov8c130822021-03-22 01:58:32 +00002704 }
Xiaoguang Wangbbde0172020-06-16 02:06:38 +08002705
Pavel Begunkovb3fa03f2021-09-24 21:59:51 +01002706 /* order with io_iopoll_complete() checking ->iopoll_completed */
2707 smp_store_release(&req->iopoll_completed, 1);
Jens Axboedef596e2019-01-09 08:59:42 -07002708}
2709
2710/*
2711 * After the iocb has been issued, it's safe to be found on the poll list.
2712 * Adding the kiocb to the list AFTER submission ensures that we don't
Pavel Begunkovf39c8a52021-04-13 02:58:46 +01002713 * find it from a io_do_iopoll() thread before the issuer is done
Jens Axboedef596e2019-01-09 08:59:42 -07002714 * accessing the kiocb cookie.
2715 */
Pavel Begunkovcb3d8972021-06-14 02:36:14 +01002716static void io_iopoll_req_issued(struct io_kiocb *req)
Jens Axboedef596e2019-01-09 08:59:42 -07002717{
2718 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovcb3d8972021-06-14 02:36:14 +01002719 const bool in_async = io_wq_current_is_worker();
2720
2721 /* workqueue context doesn't hold uring_lock, grab it now */
2722 if (unlikely(in_async))
2723 mutex_lock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07002724
2725 /*
2726 * Track whether we have multiple files in our lists. This will impact
2727 * how we do polling eventually, not spinning if we're on potentially
2728 * different devices.
2729 */
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01002730 if (wq_list_empty(&ctx->iopoll_list)) {
Hao Xu915b3dd2021-06-28 05:37:30 +08002731 ctx->poll_multi_queue = false;
2732 } else if (!ctx->poll_multi_queue) {
Jens Axboedef596e2019-01-09 08:59:42 -07002733 struct io_kiocb *list_req;
2734
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01002735 list_req = container_of(ctx->iopoll_list.first, struct io_kiocb,
2736 comp_list);
Christoph Hellwig30da1b42021-10-12 13:12:14 +02002737 if (list_req->file != req->file)
Hao Xu915b3dd2021-06-28 05:37:30 +08002738 ctx->poll_multi_queue = true;
Jens Axboedef596e2019-01-09 08:59:42 -07002739 }
2740
2741 /*
2742 * For fast devices, IO may have already completed. If it has, add
2743 * it to the front so we find it first.
2744 */
Xiaoguang Wang65a65432020-06-11 23:39:36 +08002745 if (READ_ONCE(req->iopoll_completed))
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01002746 wq_list_add_head(&req->comp_list, &ctx->iopoll_list);
Jens Axboedef596e2019-01-09 08:59:42 -07002747 else
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01002748 wq_list_add_tail(&req->comp_list, &ctx->iopoll_list);
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08002749
Pavel Begunkovcb3d8972021-06-14 02:36:14 +01002750 if (unlikely(in_async)) {
2751 /*
2752 * If IORING_SETUP_SQPOLL is enabled, sqes are either handle
2753 * in sq thread task context or in io worker task context. If
2754 * current task context is sq thread, we don't need to check
2755 * whether should wake up sq thread.
2756 */
2757 if ((ctx->flags & IORING_SETUP_SQPOLL) &&
2758 wq_has_sleeper(&ctx->sq_data->wait))
2759 wake_up(&ctx->sq_data->wait);
2760
2761 mutex_unlock(&ctx->uring_lock);
2762 }
Jens Axboedef596e2019-01-09 08:59:42 -07002763}
2764
Jens Axboe4503b762020-06-01 10:00:27 -06002765static bool io_bdev_nowait(struct block_device *bdev)
2766{
Jeffle Xu9ba0d0c2020-10-19 16:59:42 +08002767 return !bdev || blk_queue_nowait(bdev_get_queue(bdev));
Jens Axboe4503b762020-06-01 10:00:27 -06002768}
2769
Jens Axboe2b188cc2019-01-07 10:46:33 -07002770/*
2771 * If we tracked the file through the SCM inflight mechanism, we could support
2772 * any file. For now, just ensure that anything potentially problematic is done
2773 * inline.
2774 */
Pavel Begunkovb191e2d2021-08-09 13:04:03 +01002775static bool __io_file_supports_nowait(struct file *file, int rw)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002776{
2777 umode_t mode = file_inode(file)->i_mode;
2778
Jens Axboe4503b762020-06-01 10:00:27 -06002779 if (S_ISBLK(mode)) {
Christoph Hellwig4e7b5672020-11-23 13:38:40 +01002780 if (IS_ENABLED(CONFIG_BLOCK) &&
2781 io_bdev_nowait(I_BDEV(file->f_mapping->host)))
Jens Axboe4503b762020-06-01 10:00:27 -06002782 return true;
2783 return false;
2784 }
Pavel Begunkov976517f2021-06-09 12:07:25 +01002785 if (S_ISSOCK(mode))
Jens Axboe2b188cc2019-01-07 10:46:33 -07002786 return true;
Jens Axboe4503b762020-06-01 10:00:27 -06002787 if (S_ISREG(mode)) {
Christoph Hellwig4e7b5672020-11-23 13:38:40 +01002788 if (IS_ENABLED(CONFIG_BLOCK) &&
2789 io_bdev_nowait(file->f_inode->i_sb->s_bdev) &&
Jens Axboe4503b762020-06-01 10:00:27 -06002790 file->f_op != &io_uring_fops)
2791 return true;
2792 return false;
2793 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002794
Jens Axboec5b85622020-06-09 19:23:05 -06002795 /* any ->read/write should understand O_NONBLOCK */
2796 if (file->f_flags & O_NONBLOCK)
2797 return true;
2798
Jens Axboeaf197f52020-04-28 13:15:06 -06002799 if (!(file->f_mode & FMODE_NOWAIT))
2800 return false;
2801
2802 if (rw == READ)
2803 return file->f_op->read_iter != NULL;
2804
2805 return file->f_op->write_iter != NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002806}
2807
Pavel Begunkovb191e2d2021-08-09 13:04:03 +01002808static bool io_file_supports_nowait(struct io_kiocb *req, int rw)
Jens Axboe7b29f922021-03-12 08:30:14 -07002809{
Pavel Begunkovb191e2d2021-08-09 13:04:03 +01002810 if (rw == READ && (req->flags & REQ_F_NOWAIT_READ))
Jens Axboe7b29f922021-03-12 08:30:14 -07002811 return true;
Pavel Begunkovb191e2d2021-08-09 13:04:03 +01002812 else if (rw == WRITE && (req->flags & REQ_F_NOWAIT_WRITE))
Jens Axboe7b29f922021-03-12 08:30:14 -07002813 return true;
2814
Pavel Begunkovb191e2d2021-08-09 13:04:03 +01002815 return __io_file_supports_nowait(req->file, rw);
Jens Axboe7b29f922021-03-12 08:30:14 -07002816}
2817
Jens Axboe5d329e12021-09-14 11:08:37 -06002818static int io_prep_rw(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2819 int rw)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002820{
Jens Axboedef596e2019-01-09 08:59:42 -07002821 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9adbd452019-12-20 08:45:55 -07002822 struct kiocb *kiocb = &req->rw.kiocb;
Pavel Begunkov75c668c2021-02-04 13:52:05 +00002823 struct file *file = req->file;
Jens Axboe09bb8392019-03-13 12:39:28 -06002824 unsigned ioprio;
2825 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002826
Pavel Begunkovc97d8a02021-08-09 13:04:04 +01002827 if (!io_req_ffs_set(req) && S_ISREG(file_inode(file)->i_mode))
Jens Axboe491381ce2019-10-17 09:20:46 -06002828 req->flags |= REQ_F_ISREG;
2829
Jens Axboe2b188cc2019-01-07 10:46:33 -07002830 kiocb->ki_pos = READ_ONCE(sqe->off);
Pavel Begunkov75c668c2021-02-04 13:52:05 +00002831 if (kiocb->ki_pos == -1 && !(file->f_mode & FMODE_STREAM)) {
Jens Axboeba042912019-12-25 16:33:42 -07002832 req->flags |= REQ_F_CUR_POS;
Pavel Begunkov75c668c2021-02-04 13:52:05 +00002833 kiocb->ki_pos = file->f_pos;
Jens Axboeba042912019-12-25 16:33:42 -07002834 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002835 kiocb->ki_hint = ki_hint_validate(file_write_hint(kiocb->ki_filp));
Pavel Begunkov3e577dc2020-02-01 03:58:42 +03002836 kiocb->ki_flags = iocb_flags(kiocb->ki_filp);
2837 ret = kiocb_set_rw_flags(kiocb, READ_ONCE(sqe->rw_flags));
2838 if (unlikely(ret))
2839 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002840
Jens Axboe5d329e12021-09-14 11:08:37 -06002841 /*
2842 * If the file is marked O_NONBLOCK, still allow retry for it if it
2843 * supports async. Otherwise it's impossible to use O_NONBLOCK files
2844 * reliably. If not, or it IOCB_NOWAIT is set, don't retry.
2845 */
2846 if ((kiocb->ki_flags & IOCB_NOWAIT) ||
2847 ((file->f_flags & O_NONBLOCK) && !io_file_supports_nowait(req, rw)))
Pavel Begunkov75c668c2021-02-04 13:52:05 +00002848 req->flags |= REQ_F_NOWAIT;
2849
Jens Axboe2b188cc2019-01-07 10:46:33 -07002850 ioprio = READ_ONCE(sqe->ioprio);
2851 if (ioprio) {
2852 ret = ioprio_check_cap(ioprio);
2853 if (ret)
Jens Axboe09bb8392019-03-13 12:39:28 -06002854 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002855
2856 kiocb->ki_ioprio = ioprio;
2857 } else
2858 kiocb->ki_ioprio = get_current_ioprio();
2859
Jens Axboedef596e2019-01-09 08:59:42 -07002860 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07002861 if (!(kiocb->ki_flags & IOCB_DIRECT) ||
2862 !kiocb->ki_filp->f_op->iopoll)
Jens Axboe09bb8392019-03-13 12:39:28 -06002863 return -EOPNOTSUPP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002864
Jens Axboe394918e2021-03-08 11:40:23 -07002865 kiocb->ki_flags |= IOCB_HIPRI | IOCB_ALLOC_CACHE;
Jens Axboedef596e2019-01-09 08:59:42 -07002866 kiocb->ki_complete = io_complete_rw_iopoll;
Xiaoguang Wang65a65432020-06-11 23:39:36 +08002867 req->iopoll_completed = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07002868 } else {
Jens Axboe09bb8392019-03-13 12:39:28 -06002869 if (kiocb->ki_flags & IOCB_HIPRI)
2870 return -EINVAL;
Jens Axboedef596e2019-01-09 08:59:42 -07002871 kiocb->ki_complete = io_complete_rw;
2872 }
Jens Axboe9adbd452019-12-20 08:45:55 -07002873
Pavel Begunkoveae071c2021-04-25 14:32:24 +01002874 if (req->opcode == IORING_OP_READ_FIXED ||
2875 req->opcode == IORING_OP_WRITE_FIXED) {
2876 req->imu = NULL;
Pavel Begunkova46be972021-10-09 23:14:40 +01002877 io_req_set_rsrc_node(req, ctx);
Pavel Begunkoveae071c2021-04-25 14:32:24 +01002878 }
2879
Jens Axboe3529d8c2019-12-19 18:24:38 -07002880 req->rw.addr = READ_ONCE(sqe->addr);
2881 req->rw.len = READ_ONCE(sqe->len);
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -07002882 req->buf_index = READ_ONCE(sqe->buf_index);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002883 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002884}
2885
2886static inline void io_rw_done(struct kiocb *kiocb, ssize_t ret)
2887{
2888 switch (ret) {
2889 case -EIOCBQUEUED:
2890 break;
2891 case -ERESTARTSYS:
2892 case -ERESTARTNOINTR:
2893 case -ERESTARTNOHAND:
2894 case -ERESTART_RESTARTBLOCK:
2895 /*
2896 * We can't just restart the syscall, since previously
2897 * submitted sqes may already be in progress. Just fail this
2898 * IO with EINTR.
2899 */
2900 ret = -EINTR;
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -05002901 fallthrough;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002902 default:
2903 kiocb->ki_complete(kiocb, ret, 0);
2904 }
2905}
2906
Jens Axboea1d7c392020-06-22 11:09:46 -06002907static void kiocb_done(struct kiocb *kiocb, ssize_t ret,
Pavel Begunkov889fca72021-02-10 00:03:09 +00002908 unsigned int issue_flags)
Jens Axboeba816ad2019-09-28 11:36:45 -06002909{
Jens Axboeba042912019-12-25 16:33:42 -07002910 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboee8c2bc12020-08-15 18:44:09 -07002911 struct io_async_rw *io = req->async_data;
Jens Axboeba042912019-12-25 16:33:42 -07002912
Jens Axboe227c0c92020-08-13 11:51:40 -06002913 /* add previously done IO, if any */
Pavel Begunkovd886e182021-10-04 20:02:56 +01002914 if (req_has_async_data(req) && io->bytes_done > 0) {
Jens Axboe227c0c92020-08-13 11:51:40 -06002915 if (ret < 0)
Jens Axboee8c2bc12020-08-15 18:44:09 -07002916 ret = io->bytes_done;
Jens Axboe227c0c92020-08-13 11:51:40 -06002917 else
Jens Axboee8c2bc12020-08-15 18:44:09 -07002918 ret += io->bytes_done;
Jens Axboe227c0c92020-08-13 11:51:40 -06002919 }
2920
Jens Axboeba042912019-12-25 16:33:42 -07002921 if (req->flags & REQ_F_CUR_POS)
2922 req->file->f_pos = kiocb->ki_pos;
Pavel Begunkovb66ceaf2021-09-15 11:00:05 +01002923 if (ret >= 0 && (kiocb->ki_complete == io_complete_rw))
Pavel Begunkov889fca72021-02-10 00:03:09 +00002924 __io_complete_rw(req, ret, 0, issue_flags);
Jens Axboeba816ad2019-09-28 11:36:45 -06002925 else
2926 io_rw_done(kiocb, ret);
Pavel Begunkov97284632021-04-08 19:28:03 +01002927
Pavel Begunkovb66ceaf2021-09-15 11:00:05 +01002928 if (req->flags & REQ_F_REISSUE) {
Pavel Begunkov97284632021-04-08 19:28:03 +01002929 req->flags &= ~REQ_F_REISSUE;
Jens Axboea7be7c22021-04-15 11:31:14 -06002930 if (io_resubmit_prep(req)) {
Jens Axboe773af692021-07-27 10:25:55 -06002931 io_req_task_queue_reissue(req);
Pavel Begunkov8c130822021-03-22 01:58:32 +00002932 } else {
Pavel Begunkovb66ceaf2021-09-15 11:00:05 +01002933 unsigned int cflags = io_put_rw_kbuf(req);
2934 struct io_ring_ctx *ctx = req->ctx;
2935
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01002936 req_set_fail(req);
Hao Xu14cfbb72021-10-14 22:04:00 +08002937 if (!(issue_flags & IO_URING_F_NONBLOCK)) {
Pavel Begunkovb66ceaf2021-09-15 11:00:05 +01002938 mutex_lock(&ctx->uring_lock);
2939 __io_req_complete(req, issue_flags, ret, cflags);
2940 mutex_unlock(&ctx->uring_lock);
2941 } else {
2942 __io_req_complete(req, issue_flags, ret, cflags);
2943 }
Pavel Begunkov97284632021-04-08 19:28:03 +01002944 }
2945 }
Jens Axboeba816ad2019-09-28 11:36:45 -06002946}
2947
Pavel Begunkoveae071c2021-04-25 14:32:24 +01002948static int __io_import_fixed(struct io_kiocb *req, int rw, struct iov_iter *iter,
2949 struct io_mapped_ubuf *imu)
Jens Axboeedafcce2019-01-09 09:16:05 -07002950{
Jens Axboe9adbd452019-12-20 08:45:55 -07002951 size_t len = req->rw.len;
Pavel Begunkov75769e32021-04-01 15:43:54 +01002952 u64 buf_end, buf_addr = req->rw.addr;
Jens Axboeedafcce2019-01-09 09:16:05 -07002953 size_t offset;
Jens Axboeedafcce2019-01-09 09:16:05 -07002954
Pavel Begunkov75769e32021-04-01 15:43:54 +01002955 if (unlikely(check_add_overflow(buf_addr, (u64)len, &buf_end)))
Jens Axboeedafcce2019-01-09 09:16:05 -07002956 return -EFAULT;
2957 /* not inside the mapped region */
Pavel Begunkov4751f532021-04-01 15:43:55 +01002958 if (unlikely(buf_addr < imu->ubuf || buf_end > imu->ubuf_end))
Jens Axboeedafcce2019-01-09 09:16:05 -07002959 return -EFAULT;
2960
2961 /*
2962 * May not be a start of buffer, set size appropriately
2963 * and advance us to the beginning.
2964 */
2965 offset = buf_addr - imu->ubuf;
2966 iov_iter_bvec(iter, rw, imu->bvec, imu->nr_bvecs, offset + len);
Jens Axboebd11b3a2019-07-20 08:37:31 -06002967
2968 if (offset) {
2969 /*
2970 * Don't use iov_iter_advance() here, as it's really slow for
2971 * using the latter parts of a big fixed buffer - it iterates
2972 * over each segment manually. We can cheat a bit here, because
2973 * we know that:
2974 *
2975 * 1) it's a BVEC iter, we set it up
2976 * 2) all bvecs are PAGE_SIZE in size, except potentially the
2977 * first and last bvec
2978 *
2979 * So just find our index, and adjust the iterator afterwards.
2980 * If the offset is within the first bvec (or the whole first
2981 * bvec, just use iov_iter_advance(). This makes it easier
2982 * since we can just skip the first segment, which may not
2983 * be PAGE_SIZE aligned.
2984 */
2985 const struct bio_vec *bvec = imu->bvec;
2986
2987 if (offset <= bvec->bv_len) {
2988 iov_iter_advance(iter, offset);
2989 } else {
2990 unsigned long seg_skip;
2991
2992 /* skip first vec */
2993 offset -= bvec->bv_len;
2994 seg_skip = 1 + (offset >> PAGE_SHIFT);
2995
2996 iter->bvec = bvec + seg_skip;
2997 iter->nr_segs -= seg_skip;
Aleix Roca Nonell99c79f62019-08-15 14:03:22 +02002998 iter->count -= bvec->bv_len + offset;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002999 iter->iov_offset = offset & ~PAGE_MASK;
Jens Axboebd11b3a2019-07-20 08:37:31 -06003000 }
3001 }
3002
Pavel Begunkov847595d2021-02-04 13:52:06 +00003003 return 0;
Jens Axboeedafcce2019-01-09 09:16:05 -07003004}
3005
Pavel Begunkoveae071c2021-04-25 14:32:24 +01003006static int io_import_fixed(struct io_kiocb *req, int rw, struct iov_iter *iter)
3007{
3008 struct io_ring_ctx *ctx = req->ctx;
3009 struct io_mapped_ubuf *imu = req->imu;
3010 u16 index, buf_index = req->buf_index;
3011
3012 if (likely(!imu)) {
3013 if (unlikely(buf_index >= ctx->nr_user_bufs))
3014 return -EFAULT;
3015 index = array_index_nospec(buf_index, ctx->nr_user_bufs);
3016 imu = READ_ONCE(ctx->user_bufs[index]);
3017 req->imu = imu;
3018 }
3019 return __io_import_fixed(req, rw, iter, imu);
3020}
3021
Jens Axboebcda7ba2020-02-23 16:42:51 -07003022static void io_ring_submit_unlock(struct io_ring_ctx *ctx, bool needs_lock)
3023{
3024 if (needs_lock)
3025 mutex_unlock(&ctx->uring_lock);
3026}
3027
3028static void io_ring_submit_lock(struct io_ring_ctx *ctx, bool needs_lock)
3029{
3030 /*
3031 * "Normal" inline submissions always hold the uring_lock, since we
3032 * grab it from the system call. Same is true for the SQPOLL offload.
3033 * The only exception is when we've detached the request and issue it
3034 * from an async worker thread, grab the lock for that case.
3035 */
3036 if (needs_lock)
3037 mutex_lock(&ctx->uring_lock);
3038}
3039
3040static struct io_buffer *io_buffer_select(struct io_kiocb *req, size_t *len,
Pavel Begunkov51aac422021-10-14 16:10:17 +01003041 int bgid, unsigned int issue_flags)
Jens Axboebcda7ba2020-02-23 16:42:51 -07003042{
Pavel Begunkov30d51dd2021-10-01 18:07:03 +01003043 struct io_buffer *kbuf = req->kbuf;
Jens Axboebcda7ba2020-02-23 16:42:51 -07003044 struct io_buffer *head;
Pavel Begunkov51aac422021-10-14 16:10:17 +01003045 bool needs_lock = !(issue_flags & IO_URING_F_NONBLOCK);
Jens Axboebcda7ba2020-02-23 16:42:51 -07003046
3047 if (req->flags & REQ_F_BUFFER_SELECTED)
3048 return kbuf;
3049
3050 io_ring_submit_lock(req->ctx, needs_lock);
3051
3052 lockdep_assert_held(&req->ctx->uring_lock);
3053
Jens Axboe9e15c3a2021-03-13 12:29:43 -07003054 head = xa_load(&req->ctx->io_buffers, bgid);
Jens Axboebcda7ba2020-02-23 16:42:51 -07003055 if (head) {
3056 if (!list_empty(&head->list)) {
3057 kbuf = list_last_entry(&head->list, struct io_buffer,
3058 list);
3059 list_del(&kbuf->list);
3060 } else {
3061 kbuf = head;
Jens Axboe9e15c3a2021-03-13 12:29:43 -07003062 xa_erase(&req->ctx->io_buffers, bgid);
Jens Axboebcda7ba2020-02-23 16:42:51 -07003063 }
3064 if (*len > kbuf->len)
3065 *len = kbuf->len;
Pavel Begunkov30d51dd2021-10-01 18:07:03 +01003066 req->flags |= REQ_F_BUFFER_SELECTED;
3067 req->kbuf = kbuf;
Jens Axboebcda7ba2020-02-23 16:42:51 -07003068 } else {
3069 kbuf = ERR_PTR(-ENOBUFS);
3070 }
3071
3072 io_ring_submit_unlock(req->ctx, needs_lock);
Jens Axboebcda7ba2020-02-23 16:42:51 -07003073 return kbuf;
3074}
3075
Jens Axboe4d954c22020-02-27 07:31:19 -07003076static void __user *io_rw_buffer_select(struct io_kiocb *req, size_t *len,
Pavel Begunkov51aac422021-10-14 16:10:17 +01003077 unsigned int issue_flags)
Jens Axboe4d954c22020-02-27 07:31:19 -07003078{
3079 struct io_buffer *kbuf;
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -07003080 u16 bgid;
Jens Axboe4d954c22020-02-27 07:31:19 -07003081
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -07003082 bgid = req->buf_index;
Pavel Begunkov51aac422021-10-14 16:10:17 +01003083 kbuf = io_buffer_select(req, len, bgid, issue_flags);
Jens Axboe4d954c22020-02-27 07:31:19 -07003084 if (IS_ERR(kbuf))
3085 return kbuf;
Jens Axboe4d954c22020-02-27 07:31:19 -07003086 return u64_to_user_ptr(kbuf->addr);
3087}
3088
3089#ifdef CONFIG_COMPAT
3090static ssize_t io_compat_import(struct io_kiocb *req, struct iovec *iov,
Pavel Begunkov51aac422021-10-14 16:10:17 +01003091 unsigned int issue_flags)
Jens Axboe4d954c22020-02-27 07:31:19 -07003092{
3093 struct compat_iovec __user *uiov;
3094 compat_ssize_t clen;
3095 void __user *buf;
3096 ssize_t len;
3097
3098 uiov = u64_to_user_ptr(req->rw.addr);
3099 if (!access_ok(uiov, sizeof(*uiov)))
3100 return -EFAULT;
3101 if (__get_user(clen, &uiov->iov_len))
3102 return -EFAULT;
3103 if (clen < 0)
3104 return -EINVAL;
3105
3106 len = clen;
Pavel Begunkov51aac422021-10-14 16:10:17 +01003107 buf = io_rw_buffer_select(req, &len, issue_flags);
Jens Axboe4d954c22020-02-27 07:31:19 -07003108 if (IS_ERR(buf))
3109 return PTR_ERR(buf);
3110 iov[0].iov_base = buf;
3111 iov[0].iov_len = (compat_size_t) len;
3112 return 0;
3113}
3114#endif
3115
3116static ssize_t __io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
Pavel Begunkov51aac422021-10-14 16:10:17 +01003117 unsigned int issue_flags)
Jens Axboe4d954c22020-02-27 07:31:19 -07003118{
3119 struct iovec __user *uiov = u64_to_user_ptr(req->rw.addr);
3120 void __user *buf;
3121 ssize_t len;
3122
3123 if (copy_from_user(iov, uiov, sizeof(*uiov)))
3124 return -EFAULT;
3125
3126 len = iov[0].iov_len;
3127 if (len < 0)
3128 return -EINVAL;
Pavel Begunkov51aac422021-10-14 16:10:17 +01003129 buf = io_rw_buffer_select(req, &len, issue_flags);
Jens Axboe4d954c22020-02-27 07:31:19 -07003130 if (IS_ERR(buf))
3131 return PTR_ERR(buf);
3132 iov[0].iov_base = buf;
3133 iov[0].iov_len = len;
3134 return 0;
3135}
3136
3137static ssize_t io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
Pavel Begunkov51aac422021-10-14 16:10:17 +01003138 unsigned int issue_flags)
Jens Axboe4d954c22020-02-27 07:31:19 -07003139{
Jens Axboedddb3e22020-06-04 11:27:01 -06003140 if (req->flags & REQ_F_BUFFER_SELECTED) {
Pavel Begunkov30d51dd2021-10-01 18:07:03 +01003141 struct io_buffer *kbuf = req->kbuf;
Jens Axboedddb3e22020-06-04 11:27:01 -06003142
Jens Axboedddb3e22020-06-04 11:27:01 -06003143 iov[0].iov_base = u64_to_user_ptr(kbuf->addr);
3144 iov[0].iov_len = kbuf->len;
Jens Axboe4d954c22020-02-27 07:31:19 -07003145 return 0;
Jens Axboedddb3e22020-06-04 11:27:01 -06003146 }
Pavel Begunkovdd201662020-12-19 03:15:43 +00003147 if (req->rw.len != 1)
Jens Axboe4d954c22020-02-27 07:31:19 -07003148 return -EINVAL;
3149
3150#ifdef CONFIG_COMPAT
3151 if (req->ctx->compat)
Pavel Begunkov51aac422021-10-14 16:10:17 +01003152 return io_compat_import(req, iov, issue_flags);
Jens Axboe4d954c22020-02-27 07:31:19 -07003153#endif
3154
Pavel Begunkov51aac422021-10-14 16:10:17 +01003155 return __io_iov_buffer_select(req, iov, issue_flags);
Jens Axboe4d954c22020-02-27 07:31:19 -07003156}
3157
Pavel Begunkov847595d2021-02-04 13:52:06 +00003158static int io_import_iovec(int rw, struct io_kiocb *req, struct iovec **iovec,
Pavel Begunkov51aac422021-10-14 16:10:17 +01003159 struct iov_iter *iter, unsigned int issue_flags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003160{
Jens Axboe9adbd452019-12-20 08:45:55 -07003161 void __user *buf = u64_to_user_ptr(req->rw.addr);
3162 size_t sqe_len = req->rw.len;
Pavel Begunkov847595d2021-02-04 13:52:06 +00003163 u8 opcode = req->opcode;
Jens Axboe4d954c22020-02-27 07:31:19 -07003164 ssize_t ret;
Jens Axboeedafcce2019-01-09 09:16:05 -07003165
Pavel Begunkov7d009162019-11-25 23:14:40 +03003166 if (opcode == IORING_OP_READ_FIXED || opcode == IORING_OP_WRITE_FIXED) {
Jens Axboeedafcce2019-01-09 09:16:05 -07003167 *iovec = NULL;
Jens Axboe9adbd452019-12-20 08:45:55 -07003168 return io_import_fixed(req, rw, iter);
Jens Axboeedafcce2019-01-09 09:16:05 -07003169 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07003170
Jens Axboebcda7ba2020-02-23 16:42:51 -07003171 /* buffer index only valid with fixed read/write, or buffer select */
Bijan Mottahedeh4f4eeba2020-05-19 14:52:49 -07003172 if (req->buf_index && !(req->flags & REQ_F_BUFFER_SELECT))
Jens Axboe9adbd452019-12-20 08:45:55 -07003173 return -EINVAL;
3174
Jens Axboe3a6820f2019-12-22 15:19:35 -07003175 if (opcode == IORING_OP_READ || opcode == IORING_OP_WRITE) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07003176 if (req->flags & REQ_F_BUFFER_SELECT) {
Pavel Begunkov51aac422021-10-14 16:10:17 +01003177 buf = io_rw_buffer_select(req, &sqe_len, issue_flags);
Pavel Begunkov867a23e2020-08-20 11:34:39 +03003178 if (IS_ERR(buf))
Jens Axboe4d954c22020-02-27 07:31:19 -07003179 return PTR_ERR(buf);
Jens Axboe3f9d6442020-03-11 12:27:04 -06003180 req->rw.len = sqe_len;
Jens Axboebcda7ba2020-02-23 16:42:51 -07003181 }
3182
Jens Axboe3a6820f2019-12-22 15:19:35 -07003183 ret = import_single_range(rw, buf, sqe_len, *iovec, iter);
3184 *iovec = NULL;
David Laight10fc72e2020-11-07 13:16:25 +00003185 return ret;
Jens Axboe3a6820f2019-12-22 15:19:35 -07003186 }
3187
Jens Axboe4d954c22020-02-27 07:31:19 -07003188 if (req->flags & REQ_F_BUFFER_SELECT) {
Pavel Begunkov51aac422021-10-14 16:10:17 +01003189 ret = io_iov_buffer_select(req, *iovec, issue_flags);
Pavel Begunkov847595d2021-02-04 13:52:06 +00003190 if (!ret)
3191 iov_iter_init(iter, rw, *iovec, 1, (*iovec)->iov_len);
Jens Axboe4d954c22020-02-27 07:31:19 -07003192 *iovec = NULL;
3193 return ret;
3194 }
3195
Christoph Hellwig89cd35c2020-09-25 06:51:41 +02003196 return __import_iovec(rw, buf, sqe_len, UIO_FASTIOV, iovec, iter,
3197 req->ctx->compat);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003198}
3199
Jens Axboe0fef9482020-08-26 10:36:20 -06003200static inline loff_t *io_kiocb_ppos(struct kiocb *kiocb)
3201{
Pavel Begunkov5b09e372020-09-30 22:57:15 +03003202 return (kiocb->ki_filp->f_mode & FMODE_STREAM) ? NULL : &kiocb->ki_pos;
Jens Axboe0fef9482020-08-26 10:36:20 -06003203}
3204
Jens Axboe32960612019-09-23 11:05:34 -06003205/*
3206 * For files that don't have ->read_iter() and ->write_iter(), handle them
3207 * by looping over ->read() or ->write() manually.
3208 */
Jens Axboe4017eb92020-10-22 14:14:12 -06003209static ssize_t loop_rw_iter(int rw, struct io_kiocb *req, struct iov_iter *iter)
Jens Axboe32960612019-09-23 11:05:34 -06003210{
Jens Axboe4017eb92020-10-22 14:14:12 -06003211 struct kiocb *kiocb = &req->rw.kiocb;
3212 struct file *file = req->file;
Jens Axboe32960612019-09-23 11:05:34 -06003213 ssize_t ret = 0;
3214
3215 /*
3216 * Don't support polled IO through this interface, and we can't
3217 * support non-blocking either. For the latter, this just causes
3218 * the kiocb to be handled from an async context.
3219 */
3220 if (kiocb->ki_flags & IOCB_HIPRI)
3221 return -EOPNOTSUPP;
3222 if (kiocb->ki_flags & IOCB_NOWAIT)
3223 return -EAGAIN;
3224
3225 while (iov_iter_count(iter)) {
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03003226 struct iovec iovec;
Jens Axboe32960612019-09-23 11:05:34 -06003227 ssize_t nr;
3228
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03003229 if (!iov_iter_is_bvec(iter)) {
3230 iovec = iov_iter_iovec(iter);
3231 } else {
Jens Axboe4017eb92020-10-22 14:14:12 -06003232 iovec.iov_base = u64_to_user_ptr(req->rw.addr);
3233 iovec.iov_len = req->rw.len;
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03003234 }
3235
Jens Axboe32960612019-09-23 11:05:34 -06003236 if (rw == READ) {
3237 nr = file->f_op->read(file, iovec.iov_base,
Jens Axboe0fef9482020-08-26 10:36:20 -06003238 iovec.iov_len, io_kiocb_ppos(kiocb));
Jens Axboe32960612019-09-23 11:05:34 -06003239 } else {
3240 nr = file->f_op->write(file, iovec.iov_base,
Jens Axboe0fef9482020-08-26 10:36:20 -06003241 iovec.iov_len, io_kiocb_ppos(kiocb));
Jens Axboe32960612019-09-23 11:05:34 -06003242 }
3243
3244 if (nr < 0) {
3245 if (!ret)
3246 ret = nr;
3247 break;
3248 }
Jens Axboe16c8d2d2021-09-12 06:45:07 -06003249 if (!iov_iter_is_bvec(iter)) {
3250 iov_iter_advance(iter, nr);
3251 } else {
3252 req->rw.len -= nr;
3253 req->rw.addr += nr;
3254 }
Jens Axboe32960612019-09-23 11:05:34 -06003255 ret += nr;
3256 if (nr != iovec.iov_len)
3257 break;
Jens Axboe32960612019-09-23 11:05:34 -06003258 }
3259
3260 return ret;
3261}
3262
Jens Axboeff6165b2020-08-13 09:47:43 -06003263static void io_req_map_rw(struct io_kiocb *req, const struct iovec *iovec,
3264 const struct iovec *fast_iov, struct iov_iter *iter)
Jens Axboef67676d2019-12-02 11:03:47 -07003265{
Jens Axboee8c2bc12020-08-15 18:44:09 -07003266 struct io_async_rw *rw = req->async_data;
Pavel Begunkovb64e3442020-07-13 22:59:18 +03003267
Pavel Begunkov538941e2021-10-14 16:10:15 +01003268 memcpy(&rw->s.iter, iter, sizeof(*iter));
Pavel Begunkovafb87652020-09-06 00:45:46 +03003269 rw->free_iovec = iovec;
Jens Axboe227c0c92020-08-13 11:51:40 -06003270 rw->bytes_done = 0;
Jens Axboeff6165b2020-08-13 09:47:43 -06003271 /* can only be fixed buffers, no need to do anything */
Pavel Begunkov9c3a2052020-11-23 23:20:27 +00003272 if (iov_iter_is_bvec(iter))
Jens Axboeff6165b2020-08-13 09:47:43 -06003273 return;
Pavel Begunkovb64e3442020-07-13 22:59:18 +03003274 if (!iovec) {
Jens Axboeff6165b2020-08-13 09:47:43 -06003275 unsigned iov_off = 0;
3276
Pavel Begunkov538941e2021-10-14 16:10:15 +01003277 rw->s.iter.iov = rw->s.fast_iov;
Jens Axboeff6165b2020-08-13 09:47:43 -06003278 if (iter->iov != fast_iov) {
3279 iov_off = iter->iov - fast_iov;
Pavel Begunkov538941e2021-10-14 16:10:15 +01003280 rw->s.iter.iov += iov_off;
Jens Axboeff6165b2020-08-13 09:47:43 -06003281 }
Pavel Begunkov538941e2021-10-14 16:10:15 +01003282 if (rw->s.fast_iov != fast_iov)
3283 memcpy(rw->s.fast_iov + iov_off, fast_iov + iov_off,
Xiaoguang Wang45097da2020-04-08 22:29:58 +08003284 sizeof(struct iovec) * iter->nr_segs);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003285 } else {
3286 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboef67676d2019-12-02 11:03:47 -07003287 }
3288}
3289
Hao Xu8d4af682021-09-22 18:15:22 +08003290static inline bool io_alloc_async_data(struct io_kiocb *req)
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08003291{
Jens Axboee8c2bc12020-08-15 18:44:09 -07003292 WARN_ON_ONCE(!io_op_defs[req->opcode].async_size);
3293 req->async_data = kmalloc(io_op_defs[req->opcode].async_size, GFP_KERNEL);
Pavel Begunkovd886e182021-10-04 20:02:56 +01003294 if (req->async_data) {
3295 req->flags |= REQ_F_ASYNC_DATA;
3296 return false;
3297 }
3298 return true;
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08003299}
3300
Jens Axboeff6165b2020-08-13 09:47:43 -06003301static int io_setup_async_rw(struct io_kiocb *req, const struct iovec *iovec,
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003302 struct io_rw_state *s, bool force)
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003303{
Pavel Begunkov26f05052021-02-28 22:35:18 +00003304 if (!force && !io_op_defs[req->opcode].needs_async_setup)
Jens Axboe74566df2020-01-13 19:23:24 -07003305 return 0;
Pavel Begunkovd886e182021-10-04 20:02:56 +01003306 if (!req_has_async_data(req)) {
Jens Axboecd658692021-09-10 11:19:14 -06003307 struct io_async_rw *iorw;
3308
Pavel Begunkov6cb78682021-02-28 22:35:17 +00003309 if (io_alloc_async_data(req)) {
Pavel Begunkov6bf985d2021-02-04 13:52:01 +00003310 kfree(iovec);
Jens Axboe5d204bc2020-01-31 12:06:52 -07003311 return -ENOMEM;
Pavel Begunkov6bf985d2021-02-04 13:52:01 +00003312 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003313
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003314 io_req_map_rw(req, iovec, s->fast_iov, &s->iter);
Jens Axboecd658692021-09-10 11:19:14 -06003315 iorw = req->async_data;
3316 /* we've copied and mapped the iter, ensure state is saved */
Pavel Begunkov538941e2021-10-14 16:10:15 +01003317 iov_iter_save_state(&iorw->s.iter, &iorw->s.iter_state);
Jens Axboe5d204bc2020-01-31 12:06:52 -07003318 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003319 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07003320}
3321
Pavel Begunkov73debe62020-09-30 22:57:54 +03003322static inline int io_rw_prep_async(struct io_kiocb *req, int rw)
Pavel Begunkovc3e330a2020-07-13 22:59:19 +03003323{
Jens Axboee8c2bc12020-08-15 18:44:09 -07003324 struct io_async_rw *iorw = req->async_data;
Pavel Begunkov538941e2021-10-14 16:10:15 +01003325 struct iovec *iov = iorw->s.fast_iov;
Pavel Begunkov847595d2021-02-04 13:52:06 +00003326 int ret;
Pavel Begunkovc3e330a2020-07-13 22:59:19 +03003327
Pavel Begunkov51aac422021-10-14 16:10:17 +01003328 /* submission path, ->uring_lock should already be taken */
3329 ret = io_import_iovec(rw, req, &iov, &iorw->s.iter, IO_URING_F_NONBLOCK);
Pavel Begunkovc3e330a2020-07-13 22:59:19 +03003330 if (unlikely(ret < 0))
3331 return ret;
3332
Pavel Begunkovab0b1962020-09-06 00:45:47 +03003333 iorw->bytes_done = 0;
3334 iorw->free_iovec = iov;
3335 if (iov)
3336 req->flags |= REQ_F_NEED_CLEANUP;
Pavel Begunkov538941e2021-10-14 16:10:15 +01003337 iov_iter_save_state(&iorw->s.iter, &iorw->s.iter_state);
Pavel Begunkovc3e330a2020-07-13 22:59:19 +03003338 return 0;
3339}
3340
Pavel Begunkov73debe62020-09-30 22:57:54 +03003341static int io_read_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07003342{
Jens Axboe3529d8c2019-12-19 18:24:38 -07003343 if (unlikely(!(req->file->f_mode & FMODE_READ)))
3344 return -EBADF;
Jens Axboe5d329e12021-09-14 11:08:37 -06003345 return io_prep_rw(req, sqe, READ);
Jens Axboef67676d2019-12-02 11:03:47 -07003346}
3347
Jens Axboec1dd91d2020-08-03 16:43:59 -06003348/*
3349 * This is our waitqueue callback handler, registered through lock_page_async()
3350 * when we initially tried to do the IO with the iocb armed our waitqueue.
3351 * This gets called when the page is unlocked, and we generally expect that to
3352 * happen when the page IO is completed and the page is now uptodate. This will
3353 * queue a task_work based retry of the operation, attempting to copy the data
3354 * again. If the latter fails because the page was NOT uptodate, then we will
3355 * do a thread based blocking retry of the operation. That's the unexpected
3356 * slow path.
3357 */
Jens Axboebcf5a062020-05-22 09:24:42 -06003358static int io_async_buf_func(struct wait_queue_entry *wait, unsigned mode,
3359 int sync, void *arg)
3360{
3361 struct wait_page_queue *wpq;
3362 struct io_kiocb *req = wait->private;
Jens Axboebcf5a062020-05-22 09:24:42 -06003363 struct wait_page_key *key = arg;
Jens Axboebcf5a062020-05-22 09:24:42 -06003364
3365 wpq = container_of(wait, struct wait_page_queue, wait);
3366
Linus Torvaldscdc8fcb2020-08-03 13:01:22 -07003367 if (!wake_page_match(wpq, key))
3368 return 0;
3369
Hao Xuc8d317a2020-09-29 20:00:45 +08003370 req->rw.kiocb.ki_flags &= ~IOCB_WAITQ;
Jens Axboebcf5a062020-05-22 09:24:42 -06003371 list_del_init(&wait->entry);
Pavel Begunkov921b9052021-02-12 03:23:53 +00003372 io_req_task_queue(req);
Jens Axboebcf5a062020-05-22 09:24:42 -06003373 return 1;
3374}
3375
Jens Axboec1dd91d2020-08-03 16:43:59 -06003376/*
3377 * This controls whether a given IO request should be armed for async page
3378 * based retry. If we return false here, the request is handed to the async
3379 * worker threads for retry. If we're doing buffered reads on a regular file,
3380 * we prepare a private wait_page_queue entry and retry the operation. This
3381 * will either succeed because the page is now uptodate and unlocked, or it
3382 * will register a callback when the page is unlocked at IO completion. Through
3383 * that callback, io_uring uses task_work to setup a retry of the operation.
3384 * That retry will attempt the buffered read again. The retry will generally
3385 * succeed, or in rare cases where it fails, we then fall back to using the
3386 * async worker threads for a blocking retry.
3387 */
Jens Axboe227c0c92020-08-13 11:51:40 -06003388static bool io_rw_should_retry(struct io_kiocb *req)
Jens Axboebcf5a062020-05-22 09:24:42 -06003389{
Jens Axboee8c2bc12020-08-15 18:44:09 -07003390 struct io_async_rw *rw = req->async_data;
3391 struct wait_page_queue *wait = &rw->wpq;
Jens Axboebcf5a062020-05-22 09:24:42 -06003392 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboebcf5a062020-05-22 09:24:42 -06003393
3394 /* never retry for NOWAIT, we just complete with -EAGAIN */
3395 if (req->flags & REQ_F_NOWAIT)
3396 return false;
3397
Jens Axboe227c0c92020-08-13 11:51:40 -06003398 /* Only for buffered IO */
Jens Axboe3b2a4432020-08-16 10:58:43 -07003399 if (kiocb->ki_flags & (IOCB_DIRECT | IOCB_HIPRI))
Jens Axboebcf5a062020-05-22 09:24:42 -06003400 return false;
Jens Axboe3b2a4432020-08-16 10:58:43 -07003401
Jens Axboebcf5a062020-05-22 09:24:42 -06003402 /*
3403 * just use poll if we can, and don't attempt if the fs doesn't
3404 * support callback based unlocks
3405 */
3406 if (file_can_poll(req->file) || !(req->file->f_mode & FMODE_BUF_RASYNC))
3407 return false;
3408
Jens Axboe3b2a4432020-08-16 10:58:43 -07003409 wait->wait.func = io_async_buf_func;
3410 wait->wait.private = req;
3411 wait->wait.flags = 0;
3412 INIT_LIST_HEAD(&wait->wait.entry);
3413 kiocb->ki_flags |= IOCB_WAITQ;
Hao Xuc8d317a2020-09-29 20:00:45 +08003414 kiocb->ki_flags &= ~IOCB_NOWAIT;
Jens Axboe3b2a4432020-08-16 10:58:43 -07003415 kiocb->ki_waitq = wait;
Jens Axboe3b2a4432020-08-16 10:58:43 -07003416 return true;
Jens Axboebcf5a062020-05-22 09:24:42 -06003417}
3418
Pavel Begunkovaeab9502021-06-14 02:36:24 +01003419static inline int io_iter_do_read(struct io_kiocb *req, struct iov_iter *iter)
Jens Axboebcf5a062020-05-22 09:24:42 -06003420{
3421 if (req->file->f_op->read_iter)
3422 return call_read_iter(req->file, &req->rw.kiocb, iter);
Guoyu Huang2dd21112020-08-05 03:53:50 -07003423 else if (req->file->f_op->read)
Jens Axboe4017eb92020-10-22 14:14:12 -06003424 return loop_rw_iter(READ, req, iter);
Guoyu Huang2dd21112020-08-05 03:53:50 -07003425 else
3426 return -EINVAL;
Jens Axboebcf5a062020-05-22 09:24:42 -06003427}
3428
Ming Lei7db30432021-08-21 23:07:51 +08003429static bool need_read_all(struct io_kiocb *req)
3430{
3431 return req->flags & REQ_F_ISREG ||
3432 S_ISBLK(file_inode(req->file)->i_mode);
3433}
3434
Pavel Begunkov889fca72021-02-10 00:03:09 +00003435static int io_read(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003436{
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003437 struct io_rw_state __s, *s;
3438 struct iovec *iovec;
Jens Axboe9adbd452019-12-20 08:45:55 -07003439 struct kiocb *kiocb = &req->rw.kiocb;
Pavel Begunkov45d189c2021-02-10 00:03:07 +00003440 bool force_nonblock = issue_flags & IO_URING_F_NONBLOCK;
Pavel Begunkovd886e182021-10-04 20:02:56 +01003441 struct io_async_rw *rw;
Jens Axboecd658692021-09-10 11:19:14 -06003442 ssize_t ret, ret2;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003443
Pavel Begunkovd886e182021-10-04 20:02:56 +01003444 if (req_has_async_data(req)) {
3445 rw = req->async_data;
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003446 s = &rw->s;
Jens Axboecd658692021-09-10 11:19:14 -06003447 /*
3448 * We come here from an earlier attempt, restore our state to
3449 * match in case it doesn't. It's cheap enough that we don't
3450 * need to make this conditional.
3451 */
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003452 iov_iter_restore(&s->iter, &s->iter_state);
Pavel Begunkov2846c482020-11-07 13:16:27 +00003453 iovec = NULL;
3454 } else {
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003455 s = &__s;
3456 iovec = s->fast_iov;
Pavel Begunkov51aac422021-10-14 16:10:17 +01003457 ret = io_import_iovec(READ, req, &iovec, &s->iter, issue_flags);
Pavel Begunkov2846c482020-11-07 13:16:27 +00003458 if (ret < 0)
3459 return ret;
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003460
3461 iov_iter_save_state(&s->iter, &s->iter_state);
Pavel Begunkov2846c482020-11-07 13:16:27 +00003462 }
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003463 req->result = iov_iter_count(&s->iter);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003464
Jens Axboefd6c2e42019-12-18 12:19:41 -07003465 /* Ensure we clear previously set non-block flag */
3466 if (!force_nonblock)
Jens Axboe29de5f62020-02-20 09:56:08 -07003467 kiocb->ki_flags &= ~IOCB_NOWAIT;
Pavel Begunkova88fc402020-09-30 22:57:53 +03003468 else
3469 kiocb->ki_flags |= IOCB_NOWAIT;
3470
Pavel Begunkov24c74672020-06-21 13:09:51 +03003471 /* If the file doesn't support async, just async punt */
Pavel Begunkovb191e2d2021-08-09 13:04:03 +01003472 if (force_nonblock && !io_file_supports_nowait(req, READ)) {
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003473 ret = io_setup_async_rw(req, iovec, s, true);
Pavel Begunkov6bf985d2021-02-04 13:52:01 +00003474 return ret ?: -EAGAIN;
Pavel Begunkov6713e7a2021-02-04 13:51:59 +00003475 }
Jens Axboe9e645e112019-05-10 16:07:28 -06003476
Jens Axboecd658692021-09-10 11:19:14 -06003477 ret = rw_verify_area(READ, req->file, io_kiocb_ppos(kiocb), req->result);
Pavel Begunkov5ea5dd42021-02-04 13:52:03 +00003478 if (unlikely(ret)) {
3479 kfree(iovec);
3480 return ret;
3481 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07003482
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003483 ret = io_iter_do_read(req, &s->iter);
Jens Axboe32960612019-09-23 11:05:34 -06003484
Jens Axboe230d50d2021-04-01 20:41:15 -06003485 if (ret == -EAGAIN || (req->flags & REQ_F_REISSUE)) {
Pavel Begunkov6ad7f232021-04-08 01:54:39 +01003486 req->flags &= ~REQ_F_REISSUE;
Jens Axboeeefdf302020-08-27 16:40:19 -06003487 /* IOPOLL retry should happen for io-wq threads */
3488 if (!force_nonblock && !(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboef91daf52020-08-15 15:58:42 -07003489 goto done;
Pavel Begunkov75c668c2021-02-04 13:52:05 +00003490 /* no retry on NONBLOCK nor RWF_NOWAIT */
3491 if (req->flags & REQ_F_NOWAIT)
Jens Axboe355afae2020-09-02 09:30:31 -06003492 goto done;
Jens Axboef38c7e32020-09-25 15:23:43 -06003493 ret = 0;
Jens Axboe230d50d2021-04-01 20:41:15 -06003494 } else if (ret == -EIOCBQUEUED) {
3495 goto out_free;
Pavel Begunkovf80a50a2021-10-14 16:10:13 +01003496 } else if (ret == req->result || ret <= 0 || !force_nonblock ||
Ming Lei7db30432021-08-21 23:07:51 +08003497 (req->flags & REQ_F_NOWAIT) || !need_read_all(req)) {
Pavel Begunkov7335e3b2021-02-04 13:52:02 +00003498 /* read all, failed, already did sync or don't want to retry */
Jens Axboe00d23d52020-08-25 12:59:22 -06003499 goto done;
Jens Axboe227c0c92020-08-13 11:51:40 -06003500 }
3501
Jens Axboecd658692021-09-10 11:19:14 -06003502 /*
3503 * Don't depend on the iter state matching what was consumed, or being
3504 * untouched in case of error. Restore it and we'll advance it
3505 * manually if we need to.
3506 */
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003507 iov_iter_restore(&s->iter, &s->iter_state);
Jens Axboecd658692021-09-10 11:19:14 -06003508
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003509 ret2 = io_setup_async_rw(req, iovec, s, true);
Pavel Begunkov6bf985d2021-02-04 13:52:01 +00003510 if (ret2)
3511 return ret2;
3512
Pavel Begunkovfe1cdd52021-02-17 21:02:36 +00003513 iovec = NULL;
Jens Axboee8c2bc12020-08-15 18:44:09 -07003514 rw = req->async_data;
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003515 s = &rw->s;
Jens Axboecd658692021-09-10 11:19:14 -06003516 /*
3517 * Now use our persistent iterator and state, if we aren't already.
3518 * We've restored and mapped the iter to match.
3519 */
Jens Axboe227c0c92020-08-13 11:51:40 -06003520
Pavel Begunkovb23df912021-02-04 13:52:04 +00003521 do {
Jens Axboecd658692021-09-10 11:19:14 -06003522 /*
3523 * We end up here because of a partial read, either from
3524 * above or inside this loop. Advance the iter by the bytes
3525 * that were consumed.
3526 */
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003527 iov_iter_advance(&s->iter, ret);
3528 if (!iov_iter_count(&s->iter))
Jens Axboecd658692021-09-10 11:19:14 -06003529 break;
Pavel Begunkovb23df912021-02-04 13:52:04 +00003530 rw->bytes_done += ret;
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003531 iov_iter_save_state(&s->iter, &s->iter_state);
Jens Axboecd658692021-09-10 11:19:14 -06003532
Pavel Begunkovb23df912021-02-04 13:52:04 +00003533 /* if we can retry, do so with the callbacks armed */
3534 if (!io_rw_should_retry(req)) {
3535 kiocb->ki_flags &= ~IOCB_WAITQ;
3536 return -EAGAIN;
3537 }
3538
3539 /*
3540 * Now retry read with the IOCB_WAITQ parts set in the iocb. If
3541 * we get -EIOCBQUEUED, then we'll get a notification when the
3542 * desired page gets unlocked. We can also get a partial read
3543 * here, and if we do, then just retry at the new offset.
3544 */
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003545 ret = io_iter_do_read(req, &s->iter);
Pavel Begunkovb23df912021-02-04 13:52:04 +00003546 if (ret == -EIOCBQUEUED)
3547 return 0;
Jens Axboe227c0c92020-08-13 11:51:40 -06003548 /* we got some bytes, but not all. retry. */
Jens Axboeb5b0ecb2021-03-04 21:02:58 -07003549 kiocb->ki_flags &= ~IOCB_WAITQ;
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003550 iov_iter_restore(&s->iter, &s->iter_state);
Jens Axboecd658692021-09-10 11:19:14 -06003551 } while (ret > 0);
Jens Axboe227c0c92020-08-13 11:51:40 -06003552done:
Pavel Begunkov889fca72021-02-10 00:03:09 +00003553 kiocb_done(kiocb, ret, issue_flags);
Pavel Begunkovfe1cdd52021-02-17 21:02:36 +00003554out_free:
3555 /* it's faster to check here then delegate to kfree */
3556 if (iovec)
3557 kfree(iovec);
Pavel Begunkov5ea5dd42021-02-04 13:52:03 +00003558 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003559}
3560
Pavel Begunkov73debe62020-09-30 22:57:54 +03003561static int io_write_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07003562{
Jens Axboe3529d8c2019-12-19 18:24:38 -07003563 if (unlikely(!(req->file->f_mode & FMODE_WRITE)))
3564 return -EBADF;
Jens Axboe5d329e12021-09-14 11:08:37 -06003565 return io_prep_rw(req, sqe, WRITE);
Jens Axboef67676d2019-12-02 11:03:47 -07003566}
3567
Pavel Begunkov889fca72021-02-10 00:03:09 +00003568static int io_write(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07003569{
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003570 struct io_rw_state __s, *s;
Pavel Begunkovd886e182021-10-04 20:02:56 +01003571 struct io_async_rw *rw;
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003572 struct iovec *iovec;
3573 struct kiocb *kiocb = &req->rw.kiocb;
3574 bool force_nonblock = issue_flags & IO_URING_F_NONBLOCK;
Jens Axboecd658692021-09-10 11:19:14 -06003575 ssize_t ret, ret2;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003576
Pavel Begunkovd886e182021-10-04 20:02:56 +01003577 if (req_has_async_data(req)) {
3578 rw = req->async_data;
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003579 s = &rw->s;
3580 iov_iter_restore(&s->iter, &s->iter_state);
Pavel Begunkov2846c482020-11-07 13:16:27 +00003581 iovec = NULL;
3582 } else {
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003583 s = &__s;
3584 iovec = s->fast_iov;
Pavel Begunkov51aac422021-10-14 16:10:17 +01003585 ret = io_import_iovec(WRITE, req, &iovec, &s->iter, issue_flags);
Pavel Begunkov2846c482020-11-07 13:16:27 +00003586 if (ret < 0)
3587 return ret;
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003588 iov_iter_save_state(&s->iter, &s->iter_state);
Pavel Begunkov2846c482020-11-07 13:16:27 +00003589 }
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003590 req->result = iov_iter_count(&s->iter);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003591
Jens Axboefd6c2e42019-12-18 12:19:41 -07003592 /* Ensure we clear previously set non-block flag */
3593 if (!force_nonblock)
Pavel Begunkova88fc402020-09-30 22:57:53 +03003594 kiocb->ki_flags &= ~IOCB_NOWAIT;
3595 else
3596 kiocb->ki_flags |= IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07003597
Pavel Begunkov24c74672020-06-21 13:09:51 +03003598 /* If the file doesn't support async, just async punt */
Pavel Begunkovb191e2d2021-08-09 13:04:03 +01003599 if (force_nonblock && !io_file_supports_nowait(req, WRITE))
Jens Axboef67676d2019-12-02 11:03:47 -07003600 goto copy_iov;
Jens Axboef67676d2019-12-02 11:03:47 -07003601
Jens Axboe10d59342019-12-09 20:16:22 -07003602 /* file path doesn't support NOWAIT for non-direct_IO */
3603 if (force_nonblock && !(kiocb->ki_flags & IOCB_DIRECT) &&
3604 (req->flags & REQ_F_ISREG))
Jens Axboef67676d2019-12-02 11:03:47 -07003605 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06003606
Jens Axboecd658692021-09-10 11:19:14 -06003607 ret = rw_verify_area(WRITE, req->file, io_kiocb_ppos(kiocb), req->result);
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003608 if (unlikely(ret))
3609 goto out_free;
Roman Penyaev9bf79332019-03-25 20:09:24 +01003610
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003611 /*
3612 * Open-code file_start_write here to grab freeze protection,
3613 * which will be released by another thread in
3614 * io_complete_rw(). Fool lockdep by telling it the lock got
3615 * released so that it doesn't complain about the held lock when
3616 * we return to userspace.
3617 */
3618 if (req->flags & REQ_F_ISREG) {
Darrick J. Wong8a3c84b2020-11-10 16:50:21 -08003619 sb_start_write(file_inode(req->file)->i_sb);
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003620 __sb_writers_release(file_inode(req->file)->i_sb,
3621 SB_FREEZE_WRITE);
3622 }
3623 kiocb->ki_flags |= IOCB_WRITE;
Roman Penyaev9bf79332019-03-25 20:09:24 +01003624
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003625 if (req->file->f_op->write_iter)
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003626 ret2 = call_write_iter(req->file, kiocb, &s->iter);
Guoyu Huang2dd21112020-08-05 03:53:50 -07003627 else if (req->file->f_op->write)
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003628 ret2 = loop_rw_iter(WRITE, req, &s->iter);
Guoyu Huang2dd21112020-08-05 03:53:50 -07003629 else
3630 ret2 = -EINVAL;
Jens Axboe4ed734b2020-03-20 11:23:41 -06003631
Pavel Begunkov6ad7f232021-04-08 01:54:39 +01003632 if (req->flags & REQ_F_REISSUE) {
3633 req->flags &= ~REQ_F_REISSUE;
Jens Axboe230d50d2021-04-01 20:41:15 -06003634 ret2 = -EAGAIN;
Pavel Begunkov6ad7f232021-04-08 01:54:39 +01003635 }
Jens Axboe230d50d2021-04-01 20:41:15 -06003636
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003637 /*
3638 * Raw bdev writes will return -EOPNOTSUPP for IOCB_NOWAIT. Just
3639 * retry them without IOCB_NOWAIT.
3640 */
3641 if (ret2 == -EOPNOTSUPP && (kiocb->ki_flags & IOCB_NOWAIT))
3642 ret2 = -EAGAIN;
Pavel Begunkov75c668c2021-02-04 13:52:05 +00003643 /* no retry on NONBLOCK nor RWF_NOWAIT */
3644 if (ret2 == -EAGAIN && (req->flags & REQ_F_NOWAIT))
Jens Axboe355afae2020-09-02 09:30:31 -06003645 goto done;
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003646 if (!force_nonblock || ret2 != -EAGAIN) {
Jens Axboeeefdf302020-08-27 16:40:19 -06003647 /* IOPOLL retry should happen for io-wq threads */
3648 if ((req->ctx->flags & IORING_SETUP_IOPOLL) && ret2 == -EAGAIN)
3649 goto copy_iov;
Jens Axboe355afae2020-09-02 09:30:31 -06003650done:
Pavel Begunkov889fca72021-02-10 00:03:09 +00003651 kiocb_done(kiocb, ret2, issue_flags);
Pavel Begunkovfa15baf2020-08-01 13:50:02 +03003652 } else {
Jens Axboef67676d2019-12-02 11:03:47 -07003653copy_iov:
Pavel Begunkovc88598a2021-10-14 16:10:16 +01003654 iov_iter_restore(&s->iter, &s->iter_state);
3655 ret = io_setup_async_rw(req, iovec, s, false);
Pavel Begunkov6bf985d2021-02-04 13:52:01 +00003656 return ret ?: -EAGAIN;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003657 }
Jens Axboe31b51512019-01-18 22:56:34 -07003658out_free:
Pavel Begunkovf261c162020-08-20 11:34:10 +03003659 /* it's reportedly faster than delegating the null check to kfree() */
Pavel Begunkov252917c2020-07-13 22:59:20 +03003660 if (iovec)
Xiaoguang Wang6f2cc162020-06-18 15:01:56 +08003661 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07003662 return ret;
3663}
3664
Jens Axboe80a261f2020-09-28 14:23:58 -06003665static int io_renameat_prep(struct io_kiocb *req,
3666 const struct io_uring_sqe *sqe)
3667{
3668 struct io_rename *ren = &req->rename;
3669 const char __user *oldf, *newf;
3670
Jens Axboeed7eb252021-06-23 09:04:13 -06003671 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3672 return -EINVAL;
Pavel Begunkov26578cd2021-08-20 10:36:37 +01003673 if (sqe->ioprio || sqe->buf_index || sqe->splice_fd_in)
Jens Axboeed7eb252021-06-23 09:04:13 -06003674 return -EINVAL;
Jens Axboe80a261f2020-09-28 14:23:58 -06003675 if (unlikely(req->flags & REQ_F_FIXED_FILE))
3676 return -EBADF;
3677
3678 ren->old_dfd = READ_ONCE(sqe->fd);
3679 oldf = u64_to_user_ptr(READ_ONCE(sqe->addr));
3680 newf = u64_to_user_ptr(READ_ONCE(sqe->addr2));
3681 ren->new_dfd = READ_ONCE(sqe->len);
3682 ren->flags = READ_ONCE(sqe->rename_flags);
3683
3684 ren->oldpath = getname(oldf);
3685 if (IS_ERR(ren->oldpath))
3686 return PTR_ERR(ren->oldpath);
3687
3688 ren->newpath = getname(newf);
3689 if (IS_ERR(ren->newpath)) {
3690 putname(ren->oldpath);
3691 return PTR_ERR(ren->newpath);
3692 }
3693
3694 req->flags |= REQ_F_NEED_CLEANUP;
3695 return 0;
3696}
3697
Pavel Begunkov45d189c2021-02-10 00:03:07 +00003698static int io_renameat(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe80a261f2020-09-28 14:23:58 -06003699{
3700 struct io_rename *ren = &req->rename;
3701 int ret;
3702
Pavel Begunkov45d189c2021-02-10 00:03:07 +00003703 if (issue_flags & IO_URING_F_NONBLOCK)
Jens Axboe80a261f2020-09-28 14:23:58 -06003704 return -EAGAIN;
3705
3706 ret = do_renameat2(ren->old_dfd, ren->oldpath, ren->new_dfd,
3707 ren->newpath, ren->flags);
3708
3709 req->flags &= ~REQ_F_NEED_CLEANUP;
3710 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01003711 req_set_fail(req);
Jens Axboe80a261f2020-09-28 14:23:58 -06003712 io_req_complete(req, ret);
3713 return 0;
3714}
3715
Jens Axboe14a11432020-09-28 14:27:37 -06003716static int io_unlinkat_prep(struct io_kiocb *req,
3717 const struct io_uring_sqe *sqe)
3718{
3719 struct io_unlink *un = &req->unlink;
3720 const char __user *fname;
3721
Jens Axboe22634bc2021-06-23 09:07:45 -06003722 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3723 return -EINVAL;
Pavel Begunkov26578cd2021-08-20 10:36:37 +01003724 if (sqe->ioprio || sqe->off || sqe->len || sqe->buf_index ||
3725 sqe->splice_fd_in)
Jens Axboe22634bc2021-06-23 09:07:45 -06003726 return -EINVAL;
Jens Axboe14a11432020-09-28 14:27:37 -06003727 if (unlikely(req->flags & REQ_F_FIXED_FILE))
3728 return -EBADF;
3729
3730 un->dfd = READ_ONCE(sqe->fd);
3731
3732 un->flags = READ_ONCE(sqe->unlink_flags);
3733 if (un->flags & ~AT_REMOVEDIR)
3734 return -EINVAL;
3735
3736 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
3737 un->filename = getname(fname);
3738 if (IS_ERR(un->filename))
3739 return PTR_ERR(un->filename);
3740
3741 req->flags |= REQ_F_NEED_CLEANUP;
3742 return 0;
3743}
3744
Pavel Begunkov45d189c2021-02-10 00:03:07 +00003745static int io_unlinkat(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe14a11432020-09-28 14:27:37 -06003746{
3747 struct io_unlink *un = &req->unlink;
3748 int ret;
3749
Pavel Begunkov45d189c2021-02-10 00:03:07 +00003750 if (issue_flags & IO_URING_F_NONBLOCK)
Jens Axboe14a11432020-09-28 14:27:37 -06003751 return -EAGAIN;
3752
3753 if (un->flags & AT_REMOVEDIR)
3754 ret = do_rmdir(un->dfd, un->filename);
3755 else
3756 ret = do_unlinkat(un->dfd, un->filename);
3757
3758 req->flags &= ~REQ_F_NEED_CLEANUP;
3759 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01003760 req_set_fail(req);
Jens Axboe14a11432020-09-28 14:27:37 -06003761 io_req_complete(req, ret);
3762 return 0;
3763}
3764
Dmitry Kadasheve34a02d2021-07-08 13:34:45 +07003765static int io_mkdirat_prep(struct io_kiocb *req,
3766 const struct io_uring_sqe *sqe)
3767{
3768 struct io_mkdir *mkd = &req->mkdir;
3769 const char __user *fname;
3770
3771 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3772 return -EINVAL;
3773 if (sqe->ioprio || sqe->off || sqe->rw_flags || sqe->buf_index ||
3774 sqe->splice_fd_in)
3775 return -EINVAL;
3776 if (unlikely(req->flags & REQ_F_FIXED_FILE))
3777 return -EBADF;
3778
3779 mkd->dfd = READ_ONCE(sqe->fd);
3780 mkd->mode = READ_ONCE(sqe->len);
3781
3782 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
3783 mkd->filename = getname(fname);
3784 if (IS_ERR(mkd->filename))
3785 return PTR_ERR(mkd->filename);
3786
3787 req->flags |= REQ_F_NEED_CLEANUP;
3788 return 0;
3789}
3790
Pavel Begunkov04f34082021-10-14 16:10:12 +01003791static int io_mkdirat(struct io_kiocb *req, unsigned int issue_flags)
Dmitry Kadasheve34a02d2021-07-08 13:34:45 +07003792{
3793 struct io_mkdir *mkd = &req->mkdir;
3794 int ret;
3795
3796 if (issue_flags & IO_URING_F_NONBLOCK)
3797 return -EAGAIN;
3798
3799 ret = do_mkdirat(mkd->dfd, mkd->filename, mkd->mode);
3800
3801 req->flags &= ~REQ_F_NEED_CLEANUP;
3802 if (ret < 0)
3803 req_set_fail(req);
3804 io_req_complete(req, ret);
3805 return 0;
3806}
3807
Dmitry Kadashev7a8721f2021-07-08 13:34:46 +07003808static int io_symlinkat_prep(struct io_kiocb *req,
3809 const struct io_uring_sqe *sqe)
3810{
3811 struct io_symlink *sl = &req->symlink;
3812 const char __user *oldpath, *newpath;
3813
3814 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3815 return -EINVAL;
3816 if (sqe->ioprio || sqe->len || sqe->rw_flags || sqe->buf_index ||
3817 sqe->splice_fd_in)
3818 return -EINVAL;
3819 if (unlikely(req->flags & REQ_F_FIXED_FILE))
3820 return -EBADF;
3821
3822 sl->new_dfd = READ_ONCE(sqe->fd);
3823 oldpath = u64_to_user_ptr(READ_ONCE(sqe->addr));
3824 newpath = u64_to_user_ptr(READ_ONCE(sqe->addr2));
3825
3826 sl->oldpath = getname(oldpath);
3827 if (IS_ERR(sl->oldpath))
3828 return PTR_ERR(sl->oldpath);
3829
3830 sl->newpath = getname(newpath);
3831 if (IS_ERR(sl->newpath)) {
3832 putname(sl->oldpath);
3833 return PTR_ERR(sl->newpath);
3834 }
3835
3836 req->flags |= REQ_F_NEED_CLEANUP;
3837 return 0;
3838}
3839
Pavel Begunkov04f34082021-10-14 16:10:12 +01003840static int io_symlinkat(struct io_kiocb *req, unsigned int issue_flags)
Dmitry Kadashev7a8721f2021-07-08 13:34:46 +07003841{
3842 struct io_symlink *sl = &req->symlink;
3843 int ret;
3844
3845 if (issue_flags & IO_URING_F_NONBLOCK)
3846 return -EAGAIN;
3847
3848 ret = do_symlinkat(sl->oldpath, sl->new_dfd, sl->newpath);
3849
3850 req->flags &= ~REQ_F_NEED_CLEANUP;
3851 if (ret < 0)
3852 req_set_fail(req);
3853 io_req_complete(req, ret);
3854 return 0;
3855}
3856
Dmitry Kadashevcf30da92021-07-08 13:34:47 +07003857static int io_linkat_prep(struct io_kiocb *req,
3858 const struct io_uring_sqe *sqe)
3859{
3860 struct io_hardlink *lnk = &req->hardlink;
3861 const char __user *oldf, *newf;
3862
3863 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3864 return -EINVAL;
3865 if (sqe->ioprio || sqe->rw_flags || sqe->buf_index || sqe->splice_fd_in)
3866 return -EINVAL;
3867 if (unlikely(req->flags & REQ_F_FIXED_FILE))
3868 return -EBADF;
3869
3870 lnk->old_dfd = READ_ONCE(sqe->fd);
3871 lnk->new_dfd = READ_ONCE(sqe->len);
3872 oldf = u64_to_user_ptr(READ_ONCE(sqe->addr));
3873 newf = u64_to_user_ptr(READ_ONCE(sqe->addr2));
3874 lnk->flags = READ_ONCE(sqe->hardlink_flags);
3875
3876 lnk->oldpath = getname(oldf);
3877 if (IS_ERR(lnk->oldpath))
3878 return PTR_ERR(lnk->oldpath);
3879
3880 lnk->newpath = getname(newf);
3881 if (IS_ERR(lnk->newpath)) {
3882 putname(lnk->oldpath);
3883 return PTR_ERR(lnk->newpath);
3884 }
3885
3886 req->flags |= REQ_F_NEED_CLEANUP;
3887 return 0;
3888}
3889
Pavel Begunkov04f34082021-10-14 16:10:12 +01003890static int io_linkat(struct io_kiocb *req, unsigned int issue_flags)
Dmitry Kadashevcf30da92021-07-08 13:34:47 +07003891{
3892 struct io_hardlink *lnk = &req->hardlink;
3893 int ret;
3894
3895 if (issue_flags & IO_URING_F_NONBLOCK)
3896 return -EAGAIN;
3897
3898 ret = do_linkat(lnk->old_dfd, lnk->oldpath, lnk->new_dfd,
3899 lnk->newpath, lnk->flags);
3900
3901 req->flags &= ~REQ_F_NEED_CLEANUP;
3902 if (ret < 0)
3903 req_set_fail(req);
3904 io_req_complete(req, ret);
3905 return 0;
3906}
3907
Jens Axboe36f4fa62020-09-05 11:14:22 -06003908static int io_shutdown_prep(struct io_kiocb *req,
3909 const struct io_uring_sqe *sqe)
3910{
3911#if defined(CONFIG_NET)
3912 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3913 return -EINVAL;
Pavel Begunkov26578cd2021-08-20 10:36:37 +01003914 if (unlikely(sqe->ioprio || sqe->off || sqe->addr || sqe->rw_flags ||
3915 sqe->buf_index || sqe->splice_fd_in))
Jens Axboe36f4fa62020-09-05 11:14:22 -06003916 return -EINVAL;
3917
3918 req->shutdown.how = READ_ONCE(sqe->len);
3919 return 0;
3920#else
3921 return -EOPNOTSUPP;
3922#endif
3923}
3924
Pavel Begunkov45d189c2021-02-10 00:03:07 +00003925static int io_shutdown(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe36f4fa62020-09-05 11:14:22 -06003926{
3927#if defined(CONFIG_NET)
3928 struct socket *sock;
3929 int ret;
3930
Pavel Begunkov45d189c2021-02-10 00:03:07 +00003931 if (issue_flags & IO_URING_F_NONBLOCK)
Jens Axboe36f4fa62020-09-05 11:14:22 -06003932 return -EAGAIN;
3933
Linus Torvalds48aba792020-12-16 12:44:05 -08003934 sock = sock_from_file(req->file);
Jens Axboe36f4fa62020-09-05 11:14:22 -06003935 if (unlikely(!sock))
Linus Torvalds48aba792020-12-16 12:44:05 -08003936 return -ENOTSOCK;
Jens Axboe36f4fa62020-09-05 11:14:22 -06003937
3938 ret = __sys_shutdown_sock(sock, req->shutdown.how);
Jens Axboea1464682020-12-14 20:57:27 -07003939 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01003940 req_set_fail(req);
Jens Axboe36f4fa62020-09-05 11:14:22 -06003941 io_req_complete(req, ret);
3942 return 0;
3943#else
3944 return -EOPNOTSUPP;
3945#endif
3946}
3947
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03003948static int __io_splice_prep(struct io_kiocb *req,
3949 const struct io_uring_sqe *sqe)
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003950{
Pavel Begunkovfe7e3252021-06-24 15:09:57 +01003951 struct io_splice *sp = &req->splice;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003952 unsigned int valid_flags = SPLICE_F_FD_IN_FIXED | SPLICE_F_ALL;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003953
Pavel Begunkov3232dd02020-06-03 18:03:22 +03003954 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3955 return -EINVAL;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003956
3957 sp->file_in = NULL;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003958 sp->len = READ_ONCE(sqe->len);
3959 sp->flags = READ_ONCE(sqe->splice_flags);
3960
3961 if (unlikely(sp->flags & ~valid_flags))
3962 return -EINVAL;
3963
Pavel Begunkov62906e82021-08-10 14:52:47 +01003964 sp->file_in = io_file_get(req->ctx, req, READ_ONCE(sqe->splice_fd_in),
Pavel Begunkov8371adf2020-10-10 18:34:08 +01003965 (sp->flags & SPLICE_F_FD_IN_FIXED));
3966 if (!sp->file_in)
3967 return -EBADF;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003968 req->flags |= REQ_F_NEED_CLEANUP;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03003969 return 0;
3970}
3971
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03003972static int io_tee_prep(struct io_kiocb *req,
3973 const struct io_uring_sqe *sqe)
3974{
3975 if (READ_ONCE(sqe->splice_off_in) || READ_ONCE(sqe->off))
3976 return -EINVAL;
3977 return __io_splice_prep(req, sqe);
3978}
3979
Pavel Begunkov45d189c2021-02-10 00:03:07 +00003980static int io_tee(struct io_kiocb *req, unsigned int issue_flags)
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03003981{
3982 struct io_splice *sp = &req->splice;
3983 struct file *in = sp->file_in;
3984 struct file *out = sp->file_out;
3985 unsigned int flags = sp->flags & ~SPLICE_F_FD_IN_FIXED;
3986 long ret = 0;
3987
Pavel Begunkov45d189c2021-02-10 00:03:07 +00003988 if (issue_flags & IO_URING_F_NONBLOCK)
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03003989 return -EAGAIN;
3990 if (sp->len)
3991 ret = do_tee(in, out, sp->len, flags);
3992
Pavel Begunkove1d767f2021-03-19 17:22:43 +00003993 if (!(sp->flags & SPLICE_F_FD_IN_FIXED))
3994 io_put_file(in);
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03003995 req->flags &= ~REQ_F_NEED_CLEANUP;
3996
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03003997 if (ret != sp->len)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01003998 req_set_fail(req);
Jens Axboee1e16092020-06-22 09:17:17 -06003999 io_req_complete(req, ret);
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03004000 return 0;
4001}
4002
4003static int io_splice_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4004{
Pavel Begunkovfe7e3252021-06-24 15:09:57 +01004005 struct io_splice *sp = &req->splice;
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03004006
4007 sp->off_in = READ_ONCE(sqe->splice_off_in);
4008 sp->off_out = READ_ONCE(sqe->off);
4009 return __io_splice_prep(req, sqe);
4010}
4011
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004012static int io_splice(struct io_kiocb *req, unsigned int issue_flags)
Pavel Begunkov7d67af22020-02-24 11:32:45 +03004013{
4014 struct io_splice *sp = &req->splice;
4015 struct file *in = sp->file_in;
4016 struct file *out = sp->file_out;
4017 unsigned int flags = sp->flags & ~SPLICE_F_FD_IN_FIXED;
4018 loff_t *poff_in, *poff_out;
Pavel Begunkovc9687422020-05-04 23:00:54 +03004019 long ret = 0;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03004020
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004021 if (issue_flags & IO_URING_F_NONBLOCK)
Pavel Begunkov2fb3e822020-05-01 17:09:38 +03004022 return -EAGAIN;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03004023
4024 poff_in = (sp->off_in == -1) ? NULL : &sp->off_in;
4025 poff_out = (sp->off_out == -1) ? NULL : &sp->off_out;
Pavel Begunkovc9687422020-05-04 23:00:54 +03004026
Jens Axboe948a7742020-05-17 14:21:38 -06004027 if (sp->len)
Pavel Begunkovc9687422020-05-04 23:00:54 +03004028 ret = do_splice(in, poff_in, out, poff_out, sp->len, flags);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03004029
Pavel Begunkove1d767f2021-03-19 17:22:43 +00004030 if (!(sp->flags & SPLICE_F_FD_IN_FIXED))
4031 io_put_file(in);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03004032 req->flags &= ~REQ_F_NEED_CLEANUP;
4033
Pavel Begunkov7d67af22020-02-24 11:32:45 +03004034 if (ret != sp->len)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004035 req_set_fail(req);
Jens Axboee1e16092020-06-22 09:17:17 -06004036 io_req_complete(req, ret);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03004037 return 0;
4038}
4039
Jens Axboe2b188cc2019-01-07 10:46:33 -07004040/*
4041 * IORING_OP_NOP just posts a completion event, nothing else.
4042 */
Pavel Begunkov889fca72021-02-10 00:03:09 +00004043static int io_nop(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004044{
4045 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004046
Jens Axboedef596e2019-01-09 08:59:42 -07004047 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
4048 return -EINVAL;
4049
Pavel Begunkov889fca72021-02-10 00:03:09 +00004050 __io_req_complete(req, issue_flags, 0, 0);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004051 return 0;
4052}
4053
Pavel Begunkov1155c762021-02-18 18:29:38 +00004054static int io_fsync_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07004055{
Jens Axboe6b063142019-01-10 22:13:58 -07004056 struct io_ring_ctx *ctx = req->ctx;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07004057
Jens Axboe09bb8392019-03-13 12:39:28 -06004058 if (!req->file)
4059 return -EBADF;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07004060
Jens Axboe6b063142019-01-10 22:13:58 -07004061 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboedef596e2019-01-09 08:59:42 -07004062 return -EINVAL;
Pavel Begunkov26578cd2021-08-20 10:36:37 +01004063 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index ||
4064 sqe->splice_fd_in))
Christoph Hellwigc992fe22019-01-11 09:43:02 -07004065 return -EINVAL;
4066
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004067 req->sync.flags = READ_ONCE(sqe->fsync_flags);
4068 if (unlikely(req->sync.flags & ~IORING_FSYNC_DATASYNC))
4069 return -EINVAL;
4070
4071 req->sync.off = READ_ONCE(sqe->off);
4072 req->sync.len = READ_ONCE(sqe->len);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07004073 return 0;
4074}
4075
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004076static int io_fsync(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe78912932020-01-14 22:09:06 -07004077{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004078 loff_t end = req->sync.off + req->sync.len;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004079 int ret;
4080
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004081 /* fsync always requires a blocking context */
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004082 if (issue_flags & IO_URING_F_NONBLOCK)
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004083 return -EAGAIN;
4084
Jens Axboe9adbd452019-12-20 08:45:55 -07004085 ret = vfs_fsync_range(req->file, req->sync.off,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004086 end > 0 ? end : LLONG_MAX,
4087 req->sync.flags & IORING_FSYNC_DATASYNC);
4088 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004089 req_set_fail(req);
Jens Axboee1e16092020-06-22 09:17:17 -06004090 io_req_complete(req, ret);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07004091 return 0;
4092}
4093
Jens Axboed63d1b52019-12-10 10:38:56 -07004094static int io_fallocate_prep(struct io_kiocb *req,
4095 const struct io_uring_sqe *sqe)
4096{
Pavel Begunkov26578cd2021-08-20 10:36:37 +01004097 if (sqe->ioprio || sqe->buf_index || sqe->rw_flags ||
4098 sqe->splice_fd_in)
Jens Axboed63d1b52019-12-10 10:38:56 -07004099 return -EINVAL;
Pavel Begunkov3232dd02020-06-03 18:03:22 +03004100 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4101 return -EINVAL;
Jens Axboed63d1b52019-12-10 10:38:56 -07004102
4103 req->sync.off = READ_ONCE(sqe->off);
4104 req->sync.len = READ_ONCE(sqe->addr);
4105 req->sync.mode = READ_ONCE(sqe->len);
4106 return 0;
4107}
4108
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004109static int io_fallocate(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboed63d1b52019-12-10 10:38:56 -07004110{
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004111 int ret;
Jens Axboed63d1b52019-12-10 10:38:56 -07004112
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004113 /* fallocate always requiring blocking context */
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004114 if (issue_flags & IO_URING_F_NONBLOCK)
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004115 return -EAGAIN;
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004116 ret = vfs_fallocate(req->file, req->sync.mode, req->sync.off,
4117 req->sync.len);
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004118 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004119 req_set_fail(req);
Jens Axboee1e16092020-06-22 09:17:17 -06004120 io_req_complete(req, ret);
Jens Axboed63d1b52019-12-10 10:38:56 -07004121 return 0;
4122}
4123
Pavel Begunkovec65fea2020-06-03 18:03:24 +03004124static int __io_openat_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe15b71ab2019-12-11 11:20:36 -07004125{
Jens Axboef8748882020-01-08 17:47:02 -07004126 const char __user *fname;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004127 int ret;
4128
Pavel Begunkovd3fddf62021-08-09 13:04:16 +01004129 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4130 return -EINVAL;
Pavel Begunkovb9445592021-08-25 12:25:45 +01004131 if (unlikely(sqe->ioprio || sqe->buf_index))
Jens Axboe15b71ab2019-12-11 11:20:36 -07004132 return -EINVAL;
Pavel Begunkovec65fea2020-06-03 18:03:24 +03004133 if (unlikely(req->flags & REQ_F_FIXED_FILE))
Jens Axboecf3040c2020-02-06 21:31:40 -07004134 return -EBADF;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004135
Pavel Begunkovec65fea2020-06-03 18:03:24 +03004136 /* open.how should be already initialised */
4137 if (!(req->open.how.flags & O_PATH) && force_o_largefile())
Jens Axboe08a1d26eb2020-04-08 09:20:54 -06004138 req->open.how.flags |= O_LARGEFILE;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004139
Pavel Begunkov25e72d12020-06-03 18:03:23 +03004140 req->open.dfd = READ_ONCE(sqe->fd);
4141 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboef8748882020-01-08 17:47:02 -07004142 req->open.filename = getname(fname);
Jens Axboe15b71ab2019-12-11 11:20:36 -07004143 if (IS_ERR(req->open.filename)) {
4144 ret = PTR_ERR(req->open.filename);
4145 req->open.filename = NULL;
4146 return ret;
4147 }
Pavel Begunkovb9445592021-08-25 12:25:45 +01004148
4149 req->open.file_slot = READ_ONCE(sqe->file_index);
4150 if (req->open.file_slot && (req->open.how.flags & O_CLOEXEC))
4151 return -EINVAL;
4152
Jens Axboe4022e7a2020-03-19 19:23:18 -06004153 req->open.nofile = rlimit(RLIMIT_NOFILE);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03004154 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004155 return 0;
4156}
4157
Pavel Begunkovec65fea2020-06-03 18:03:24 +03004158static int io_openat_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4159{
Pavel Begunkovd3fddf62021-08-09 13:04:16 +01004160 u64 mode = READ_ONCE(sqe->len);
4161 u64 flags = READ_ONCE(sqe->open_flags);
Pavel Begunkovec65fea2020-06-03 18:03:24 +03004162
Pavel Begunkovec65fea2020-06-03 18:03:24 +03004163 req->open.how = build_open_how(flags, mode);
4164 return __io_openat_prep(req, sqe);
4165}
4166
Jens Axboecebdb982020-01-08 17:59:24 -07004167static int io_openat2_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4168{
4169 struct open_how __user *how;
Jens Axboecebdb982020-01-08 17:59:24 -07004170 size_t len;
4171 int ret;
4172
Jens Axboecebdb982020-01-08 17:59:24 -07004173 how = u64_to_user_ptr(READ_ONCE(sqe->addr2));
4174 len = READ_ONCE(sqe->len);
Jens Axboecebdb982020-01-08 17:59:24 -07004175 if (len < OPEN_HOW_SIZE_VER0)
4176 return -EINVAL;
4177
4178 ret = copy_struct_from_user(&req->open.how, sizeof(req->open.how), how,
4179 len);
4180 if (ret)
4181 return ret;
4182
Pavel Begunkovec65fea2020-06-03 18:03:24 +03004183 return __io_openat_prep(req, sqe);
Jens Axboecebdb982020-01-08 17:59:24 -07004184}
4185
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004186static int io_openat2(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe15b71ab2019-12-11 11:20:36 -07004187{
4188 struct open_flags op;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004189 struct file *file;
Pavel Begunkovb9445592021-08-25 12:25:45 +01004190 bool resolve_nonblock, nonblock_set;
4191 bool fixed = !!req->open.file_slot;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004192 int ret;
4193
Jens Axboecebdb982020-01-08 17:59:24 -07004194 ret = build_open_flags(&req->open.how, &op);
Jens Axboe15b71ab2019-12-11 11:20:36 -07004195 if (ret)
4196 goto err;
Jens Axboe3a81fd02020-12-10 12:25:36 -07004197 nonblock_set = op.open_flag & O_NONBLOCK;
4198 resolve_nonblock = req->open.how.resolve & RESOLVE_CACHED;
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004199 if (issue_flags & IO_URING_F_NONBLOCK) {
Jens Axboe3a81fd02020-12-10 12:25:36 -07004200 /*
4201 * Don't bother trying for O_TRUNC, O_CREAT, or O_TMPFILE open,
4202 * it'll always -EAGAIN
4203 */
4204 if (req->open.how.flags & (O_TRUNC | O_CREAT | O_TMPFILE))
4205 return -EAGAIN;
4206 op.lookup_flags |= LOOKUP_CACHED;
4207 op.open_flag |= O_NONBLOCK;
4208 }
Jens Axboe15b71ab2019-12-11 11:20:36 -07004209
Pavel Begunkovb9445592021-08-25 12:25:45 +01004210 if (!fixed) {
4211 ret = __get_unused_fd_flags(req->open.how.flags, req->open.nofile);
4212 if (ret < 0)
4213 goto err;
4214 }
Jens Axboe15b71ab2019-12-11 11:20:36 -07004215
4216 file = do_filp_open(req->open.dfd, req->open.filename, &op);
Pavel Begunkov12dcb58a2021-06-24 15:10:00 +01004217 if (IS_ERR(file)) {
Jens Axboe3a81fd02020-12-10 12:25:36 -07004218 /*
Pavel Begunkov12dcb58a2021-06-24 15:10:00 +01004219 * We could hang on to this 'fd' on retrying, but seems like
4220 * marginal gain for something that is now known to be a slower
4221 * path. So just put it, and we'll get a new one when we retry.
Jens Axboe3a81fd02020-12-10 12:25:36 -07004222 */
Pavel Begunkovb9445592021-08-25 12:25:45 +01004223 if (!fixed)
4224 put_unused_fd(ret);
Pavel Begunkov12dcb58a2021-06-24 15:10:00 +01004225
4226 ret = PTR_ERR(file);
4227 /* only retry if RESOLVE_CACHED wasn't already set by application */
4228 if (ret == -EAGAIN &&
4229 (!resolve_nonblock && (issue_flags & IO_URING_F_NONBLOCK)))
4230 return -EAGAIN;
4231 goto err;
Jens Axboe3a81fd02020-12-10 12:25:36 -07004232 }
4233
Pavel Begunkov12dcb58a2021-06-24 15:10:00 +01004234 if ((issue_flags & IO_URING_F_NONBLOCK) && !nonblock_set)
4235 file->f_flags &= ~O_NONBLOCK;
4236 fsnotify_open(file);
Pavel Begunkovb9445592021-08-25 12:25:45 +01004237
4238 if (!fixed)
4239 fd_install(ret, file);
4240 else
4241 ret = io_install_fixed_file(req, file, issue_flags,
4242 req->open.file_slot - 1);
Jens Axboe15b71ab2019-12-11 11:20:36 -07004243err:
4244 putname(req->open.filename);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03004245 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004246 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004247 req_set_fail(req);
Pavel Begunkov0bdf3392021-04-11 01:46:29 +01004248 __io_req_complete(req, issue_flags, ret, 0);
Jens Axboe15b71ab2019-12-11 11:20:36 -07004249 return 0;
4250}
4251
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004252static int io_openat(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboecebdb982020-01-08 17:59:24 -07004253{
Pavel Begunkove45cff52021-02-28 22:35:14 +00004254 return io_openat2(req, issue_flags);
Jens Axboecebdb982020-01-08 17:59:24 -07004255}
4256
Jens Axboe067524e2020-03-02 16:32:28 -07004257static int io_remove_buffers_prep(struct io_kiocb *req,
4258 const struct io_uring_sqe *sqe)
4259{
4260 struct io_provide_buf *p = &req->pbuf;
4261 u64 tmp;
4262
Pavel Begunkov26578cd2021-08-20 10:36:37 +01004263 if (sqe->ioprio || sqe->rw_flags || sqe->addr || sqe->len || sqe->off ||
4264 sqe->splice_fd_in)
Jens Axboe067524e2020-03-02 16:32:28 -07004265 return -EINVAL;
4266
4267 tmp = READ_ONCE(sqe->fd);
4268 if (!tmp || tmp > USHRT_MAX)
4269 return -EINVAL;
4270
4271 memset(p, 0, sizeof(*p));
4272 p->nbufs = tmp;
4273 p->bgid = READ_ONCE(sqe->buf_group);
4274 return 0;
4275}
4276
4277static int __io_remove_buffers(struct io_ring_ctx *ctx, struct io_buffer *buf,
4278 int bgid, unsigned nbufs)
4279{
4280 unsigned i = 0;
4281
4282 /* shouldn't happen */
4283 if (!nbufs)
4284 return 0;
4285
4286 /* the head kbuf is the list itself */
4287 while (!list_empty(&buf->list)) {
4288 struct io_buffer *nxt;
4289
4290 nxt = list_first_entry(&buf->list, struct io_buffer, list);
4291 list_del(&nxt->list);
4292 kfree(nxt);
4293 if (++i == nbufs)
4294 return i;
4295 }
4296 i++;
4297 kfree(buf);
Jens Axboe9e15c3a2021-03-13 12:29:43 -07004298 xa_erase(&ctx->io_buffers, bgid);
Jens Axboe067524e2020-03-02 16:32:28 -07004299
4300 return i;
4301}
4302
Pavel Begunkov889fca72021-02-10 00:03:09 +00004303static int io_remove_buffers(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe067524e2020-03-02 16:32:28 -07004304{
4305 struct io_provide_buf *p = &req->pbuf;
4306 struct io_ring_ctx *ctx = req->ctx;
4307 struct io_buffer *head;
4308 int ret = 0;
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004309 bool force_nonblock = issue_flags & IO_URING_F_NONBLOCK;
Jens Axboe067524e2020-03-02 16:32:28 -07004310
4311 io_ring_submit_lock(ctx, !force_nonblock);
4312
4313 lockdep_assert_held(&ctx->uring_lock);
4314
4315 ret = -ENOENT;
Jens Axboe9e15c3a2021-03-13 12:29:43 -07004316 head = xa_load(&ctx->io_buffers, p->bgid);
Jens Axboe067524e2020-03-02 16:32:28 -07004317 if (head)
4318 ret = __io_remove_buffers(ctx, head, p->bgid, p->nbufs);
Jens Axboe067524e2020-03-02 16:32:28 -07004319 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004320 req_set_fail(req);
Pavel Begunkov31bff9a2020-12-06 22:22:43 +00004321
Pavel Begunkov9fb8cb42021-02-28 22:35:13 +00004322 /* complete before unlock, IOPOLL may need the lock */
4323 __io_req_complete(req, issue_flags, ret, 0);
4324 io_ring_submit_unlock(ctx, !force_nonblock);
Jens Axboe067524e2020-03-02 16:32:28 -07004325 return 0;
4326}
4327
Jens Axboeddf0322d2020-02-23 16:41:33 -07004328static int io_provide_buffers_prep(struct io_kiocb *req,
4329 const struct io_uring_sqe *sqe)
4330{
Pavel Begunkov38134ad2021-04-15 13:07:39 +01004331 unsigned long size, tmp_check;
Jens Axboeddf0322d2020-02-23 16:41:33 -07004332 struct io_provide_buf *p = &req->pbuf;
4333 u64 tmp;
4334
Pavel Begunkov26578cd2021-08-20 10:36:37 +01004335 if (sqe->ioprio || sqe->rw_flags || sqe->splice_fd_in)
Jens Axboeddf0322d2020-02-23 16:41:33 -07004336 return -EINVAL;
4337
4338 tmp = READ_ONCE(sqe->fd);
4339 if (!tmp || tmp > USHRT_MAX)
4340 return -E2BIG;
4341 p->nbufs = tmp;
4342 p->addr = READ_ONCE(sqe->addr);
4343 p->len = READ_ONCE(sqe->len);
4344
Pavel Begunkov38134ad2021-04-15 13:07:39 +01004345 if (check_mul_overflow((unsigned long)p->len, (unsigned long)p->nbufs,
4346 &size))
4347 return -EOVERFLOW;
4348 if (check_add_overflow((unsigned long)p->addr, size, &tmp_check))
4349 return -EOVERFLOW;
4350
Pavel Begunkovd81269f2021-03-19 10:21:19 +00004351 size = (unsigned long)p->len * p->nbufs;
4352 if (!access_ok(u64_to_user_ptr(p->addr), size))
Jens Axboeddf0322d2020-02-23 16:41:33 -07004353 return -EFAULT;
4354
4355 p->bgid = READ_ONCE(sqe->buf_group);
4356 tmp = READ_ONCE(sqe->off);
4357 if (tmp > USHRT_MAX)
4358 return -E2BIG;
4359 p->bid = tmp;
4360 return 0;
4361}
4362
4363static int io_add_buffers(struct io_provide_buf *pbuf, struct io_buffer **head)
4364{
4365 struct io_buffer *buf;
4366 u64 addr = pbuf->addr;
4367 int i, bid = pbuf->bid;
4368
4369 for (i = 0; i < pbuf->nbufs; i++) {
Jens Axboe9990da92021-09-24 07:39:08 -06004370 buf = kmalloc(sizeof(*buf), GFP_KERNEL_ACCOUNT);
Jens Axboeddf0322d2020-02-23 16:41:33 -07004371 if (!buf)
4372 break;
4373
4374 buf->addr = addr;
Thadeu Lima de Souza Cascardod1f82802021-05-05 09:47:06 -03004375 buf->len = min_t(__u32, pbuf->len, MAX_RW_COUNT);
Jens Axboeddf0322d2020-02-23 16:41:33 -07004376 buf->bid = bid;
4377 addr += pbuf->len;
4378 bid++;
4379 if (!*head) {
4380 INIT_LIST_HEAD(&buf->list);
4381 *head = buf;
4382 } else {
4383 list_add_tail(&buf->list, &(*head)->list);
4384 }
4385 }
4386
4387 return i ? i : -ENOMEM;
4388}
4389
Pavel Begunkov889fca72021-02-10 00:03:09 +00004390static int io_provide_buffers(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboeddf0322d2020-02-23 16:41:33 -07004391{
4392 struct io_provide_buf *p = &req->pbuf;
4393 struct io_ring_ctx *ctx = req->ctx;
4394 struct io_buffer *head, *list;
4395 int ret = 0;
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004396 bool force_nonblock = issue_flags & IO_URING_F_NONBLOCK;
Jens Axboeddf0322d2020-02-23 16:41:33 -07004397
4398 io_ring_submit_lock(ctx, !force_nonblock);
4399
4400 lockdep_assert_held(&ctx->uring_lock);
4401
Jens Axboe9e15c3a2021-03-13 12:29:43 -07004402 list = head = xa_load(&ctx->io_buffers, p->bgid);
Jens Axboeddf0322d2020-02-23 16:41:33 -07004403
4404 ret = io_add_buffers(p, &head);
Jens Axboe9e15c3a2021-03-13 12:29:43 -07004405 if (ret >= 0 && !list) {
4406 ret = xa_insert(&ctx->io_buffers, p->bgid, head, GFP_KERNEL);
4407 if (ret < 0)
Jens Axboe067524e2020-03-02 16:32:28 -07004408 __io_remove_buffers(ctx, head, p->bgid, -1U);
Jens Axboeddf0322d2020-02-23 16:41:33 -07004409 }
Jens Axboeddf0322d2020-02-23 16:41:33 -07004410 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004411 req_set_fail(req);
Pavel Begunkov9fb8cb42021-02-28 22:35:13 +00004412 /* complete before unlock, IOPOLL may need the lock */
4413 __io_req_complete(req, issue_flags, ret, 0);
4414 io_ring_submit_unlock(ctx, !force_nonblock);
Jens Axboeddf0322d2020-02-23 16:41:33 -07004415 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004416}
4417
Jens Axboe3e4827b2020-01-08 15:18:09 -07004418static int io_epoll_ctl_prep(struct io_kiocb *req,
4419 const struct io_uring_sqe *sqe)
4420{
4421#if defined(CONFIG_EPOLL)
Pavel Begunkov26578cd2021-08-20 10:36:37 +01004422 if (sqe->ioprio || sqe->buf_index || sqe->splice_fd_in)
Jens Axboe3e4827b2020-01-08 15:18:09 -07004423 return -EINVAL;
Pavel Begunkov2d74d042021-05-14 12:05:46 +01004424 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Pavel Begunkov3232dd02020-06-03 18:03:22 +03004425 return -EINVAL;
Jens Axboe3e4827b2020-01-08 15:18:09 -07004426
4427 req->epoll.epfd = READ_ONCE(sqe->fd);
4428 req->epoll.op = READ_ONCE(sqe->len);
4429 req->epoll.fd = READ_ONCE(sqe->off);
4430
4431 if (ep_op_has_event(req->epoll.op)) {
4432 struct epoll_event __user *ev;
4433
4434 ev = u64_to_user_ptr(READ_ONCE(sqe->addr));
4435 if (copy_from_user(&req->epoll.event, ev, sizeof(*ev)))
4436 return -EFAULT;
4437 }
4438
4439 return 0;
4440#else
4441 return -EOPNOTSUPP;
4442#endif
4443}
4444
Pavel Begunkov889fca72021-02-10 00:03:09 +00004445static int io_epoll_ctl(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe3e4827b2020-01-08 15:18:09 -07004446{
4447#if defined(CONFIG_EPOLL)
4448 struct io_epoll *ie = &req->epoll;
4449 int ret;
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004450 bool force_nonblock = issue_flags & IO_URING_F_NONBLOCK;
Jens Axboe3e4827b2020-01-08 15:18:09 -07004451
4452 ret = do_epoll_ctl(ie->epfd, ie->op, ie->fd, &ie->event, force_nonblock);
4453 if (force_nonblock && ret == -EAGAIN)
4454 return -EAGAIN;
4455
4456 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004457 req_set_fail(req);
Pavel Begunkov889fca72021-02-10 00:03:09 +00004458 __io_req_complete(req, issue_flags, ret, 0);
Jens Axboe3e4827b2020-01-08 15:18:09 -07004459 return 0;
4460#else
4461 return -EOPNOTSUPP;
4462#endif
4463}
4464
Jens Axboec1ca7572019-12-25 22:18:28 -07004465static int io_madvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4466{
4467#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
Pavel Begunkov26578cd2021-08-20 10:36:37 +01004468 if (sqe->ioprio || sqe->buf_index || sqe->off || sqe->splice_fd_in)
Jens Axboec1ca7572019-12-25 22:18:28 -07004469 return -EINVAL;
Pavel Begunkov3232dd02020-06-03 18:03:22 +03004470 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4471 return -EINVAL;
Jens Axboec1ca7572019-12-25 22:18:28 -07004472
4473 req->madvise.addr = READ_ONCE(sqe->addr);
4474 req->madvise.len = READ_ONCE(sqe->len);
4475 req->madvise.advice = READ_ONCE(sqe->fadvise_advice);
4476 return 0;
4477#else
4478 return -EOPNOTSUPP;
4479#endif
4480}
4481
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004482static int io_madvise(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboec1ca7572019-12-25 22:18:28 -07004483{
4484#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
4485 struct io_madvise *ma = &req->madvise;
4486 int ret;
4487
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004488 if (issue_flags & IO_URING_F_NONBLOCK)
Jens Axboec1ca7572019-12-25 22:18:28 -07004489 return -EAGAIN;
4490
Minchan Kim0726b012020-10-17 16:14:50 -07004491 ret = do_madvise(current->mm, ma->addr, ma->len, ma->advice);
Jens Axboec1ca7572019-12-25 22:18:28 -07004492 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004493 req_set_fail(req);
Jens Axboee1e16092020-06-22 09:17:17 -06004494 io_req_complete(req, ret);
Jens Axboec1ca7572019-12-25 22:18:28 -07004495 return 0;
4496#else
4497 return -EOPNOTSUPP;
4498#endif
4499}
4500
Jens Axboe4840e412019-12-25 22:03:45 -07004501static int io_fadvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4502{
Pavel Begunkov26578cd2021-08-20 10:36:37 +01004503 if (sqe->ioprio || sqe->buf_index || sqe->addr || sqe->splice_fd_in)
Jens Axboe4840e412019-12-25 22:03:45 -07004504 return -EINVAL;
Pavel Begunkov3232dd02020-06-03 18:03:22 +03004505 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4506 return -EINVAL;
Jens Axboe4840e412019-12-25 22:03:45 -07004507
4508 req->fadvise.offset = READ_ONCE(sqe->off);
4509 req->fadvise.len = READ_ONCE(sqe->len);
4510 req->fadvise.advice = READ_ONCE(sqe->fadvise_advice);
4511 return 0;
4512}
4513
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004514static int io_fadvise(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe4840e412019-12-25 22:03:45 -07004515{
4516 struct io_fadvise *fa = &req->fadvise;
4517 int ret;
4518
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004519 if (issue_flags & IO_URING_F_NONBLOCK) {
Jens Axboe3e694262020-02-01 09:22:49 -07004520 switch (fa->advice) {
4521 case POSIX_FADV_NORMAL:
4522 case POSIX_FADV_RANDOM:
4523 case POSIX_FADV_SEQUENTIAL:
4524 break;
4525 default:
4526 return -EAGAIN;
4527 }
4528 }
Jens Axboe4840e412019-12-25 22:03:45 -07004529
4530 ret = vfs_fadvise(req->file, fa->offset, fa->len, fa->advice);
4531 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004532 req_set_fail(req);
Pavel Begunkov0bdf3392021-04-11 01:46:29 +01004533 __io_req_complete(req, issue_flags, ret, 0);
Jens Axboe4840e412019-12-25 22:03:45 -07004534 return 0;
4535}
4536
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004537static int io_statx_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4538{
Pavel Begunkov2d74d042021-05-14 12:05:46 +01004539 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Pavel Begunkov3232dd02020-06-03 18:03:22 +03004540 return -EINVAL;
Pavel Begunkov26578cd2021-08-20 10:36:37 +01004541 if (sqe->ioprio || sqe->buf_index || sqe->splice_fd_in)
Jens Axboeeddc7ef2019-12-13 21:18:10 -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 Axboeeddc7ef2019-12-13 21:18:10 -07004545
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -07004546 req->statx.dfd = READ_ONCE(sqe->fd);
4547 req->statx.mask = READ_ONCE(sqe->len);
Bijan Mottahedehe62753e2020-05-22 21:31:18 -07004548 req->statx.filename = u64_to_user_ptr(READ_ONCE(sqe->addr));
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -07004549 req->statx.buffer = u64_to_user_ptr(READ_ONCE(sqe->addr2));
4550 req->statx.flags = READ_ONCE(sqe->statx_flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004551
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004552 return 0;
4553}
4554
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004555static int io_statx(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004556{
Bijan Mottahedeh1d9e1282020-05-22 21:31:16 -07004557 struct io_statx *ctx = &req->statx;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004558 int ret;
4559
Pavel Begunkov59d70012021-03-22 01:58:30 +00004560 if (issue_flags & IO_URING_F_NONBLOCK)
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004561 return -EAGAIN;
4562
Bijan Mottahedehe62753e2020-05-22 21:31:18 -07004563 ret = do_statx(ctx->dfd, ctx->filename, ctx->flags, ctx->mask,
4564 ctx->buffer);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004565
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004566 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004567 req_set_fail(req);
Jens Axboee1e16092020-06-22 09:17:17 -06004568 io_req_complete(req, ret);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004569 return 0;
4570}
4571
Jens Axboeb5dba592019-12-11 14:02:38 -07004572static int io_close_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4573{
Jens Axboe14587a462020-09-05 11:36:08 -06004574 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Pavel Begunkov3232dd02020-06-03 18:03:22 +03004575 return -EINVAL;
Jens Axboeb5dba592019-12-11 14:02:38 -07004576 if (sqe->ioprio || sqe->off || sqe->addr || sqe->len ||
Pavel Begunkov7df778b2021-09-24 20:04:29 +01004577 sqe->rw_flags || sqe->buf_index)
Jens Axboeb5dba592019-12-11 14:02:38 -07004578 return -EINVAL;
Pavel Begunkov9c280f92020-04-08 08:58:46 +03004579 if (req->flags & REQ_F_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07004580 return -EBADF;
Jens Axboeb5dba592019-12-11 14:02:38 -07004581
4582 req->close.fd = READ_ONCE(sqe->fd);
Pavel Begunkov7df778b2021-09-24 20:04:29 +01004583 req->close.file_slot = READ_ONCE(sqe->file_index);
4584 if (req->close.file_slot && req->close.fd)
4585 return -EINVAL;
4586
Jens Axboeb5dba592019-12-11 14:02:38 -07004587 return 0;
4588}
4589
Pavel Begunkov889fca72021-02-10 00:03:09 +00004590static int io_close(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboeb5dba592019-12-11 14:02:38 -07004591{
Jens Axboe9eac1902021-01-19 15:50:37 -07004592 struct files_struct *files = current->files;
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004593 struct io_close *close = &req->close;
Jens Axboe9eac1902021-01-19 15:50:37 -07004594 struct fdtable *fdt;
Pavel Begunkova1fde922021-04-11 01:46:28 +01004595 struct file *file = NULL;
4596 int ret = -EBADF;
Jens Axboeb5dba592019-12-11 14:02:38 -07004597
Pavel Begunkov7df778b2021-09-24 20:04:29 +01004598 if (req->close.file_slot) {
4599 ret = io_close_fixed(req, issue_flags);
4600 goto err;
4601 }
4602
Jens Axboe9eac1902021-01-19 15:50:37 -07004603 spin_lock(&files->file_lock);
4604 fdt = files_fdtable(files);
4605 if (close->fd >= fdt->max_fds) {
4606 spin_unlock(&files->file_lock);
4607 goto err;
4608 }
4609 file = fdt->fd[close->fd];
Pavel Begunkova1fde922021-04-11 01:46:28 +01004610 if (!file || file->f_op == &io_uring_fops) {
Jens Axboe9eac1902021-01-19 15:50:37 -07004611 spin_unlock(&files->file_lock);
4612 file = NULL;
4613 goto err;
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004614 }
Jens Axboeb5dba592019-12-11 14:02:38 -07004615
4616 /* if the file has a flush method, be safe and punt to async */
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004617 if (file->f_op->flush && (issue_flags & IO_URING_F_NONBLOCK)) {
Jens Axboe9eac1902021-01-19 15:50:37 -07004618 spin_unlock(&files->file_lock);
Pavel Begunkov0bf0eef2020-05-26 20:34:06 +03004619 return -EAGAIN;
Pavel Begunkova2100672020-03-02 23:45:16 +03004620 }
Jens Axboeb5dba592019-12-11 14:02:38 -07004621
Jens Axboe9eac1902021-01-19 15:50:37 -07004622 ret = __close_fd_get_file(close->fd, &file);
4623 spin_unlock(&files->file_lock);
4624 if (ret < 0) {
4625 if (ret == -ENOENT)
4626 ret = -EBADF;
4627 goto err;
4628 }
4629
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004630 /* No ->flush() or already async, safely close from here */
Jens Axboe9eac1902021-01-19 15:50:37 -07004631 ret = filp_close(file, current->files);
4632err:
Pavel Begunkov3af73b22020-06-08 21:08:17 +03004633 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004634 req_set_fail(req);
Jens Axboe9eac1902021-01-19 15:50:37 -07004635 if (file)
4636 fput(file);
Pavel Begunkov889fca72021-02-10 00:03:09 +00004637 __io_req_complete(req, issue_flags, ret, 0);
Jens Axboe1a417f42020-01-31 17:16:48 -07004638 return 0;
Jens Axboeb5dba592019-12-11 14:02:38 -07004639}
4640
Pavel Begunkov1155c762021-02-18 18:29:38 +00004641static int io_sfr_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004642{
4643 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004644
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004645 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
4646 return -EINVAL;
Pavel Begunkov26578cd2021-08-20 10:36:37 +01004647 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index ||
4648 sqe->splice_fd_in))
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004649 return -EINVAL;
4650
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004651 req->sync.off = READ_ONCE(sqe->off);
4652 req->sync.len = READ_ONCE(sqe->len);
4653 req->sync.flags = READ_ONCE(sqe->sync_range_flags);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004654 return 0;
4655}
4656
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004657static int io_sync_file_range(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004658{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004659 int ret;
4660
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004661 /* sync_file_range always requires a blocking context */
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004662 if (issue_flags & IO_URING_F_NONBLOCK)
Pavel Begunkovac45abc2020-06-08 21:08:18 +03004663 return -EAGAIN;
4664
Jens Axboe9adbd452019-12-20 08:45:55 -07004665 ret = sync_file_range(req->file, req->sync.off, req->sync.len,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004666 req->sync.flags);
4667 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004668 req_set_fail(req);
Jens Axboee1e16092020-06-22 09:17:17 -06004669 io_req_complete(req, ret);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004670 return 0;
4671}
4672
YueHaibing469956e2020-03-04 15:53:52 +08004673#if defined(CONFIG_NET)
Pavel Begunkov02d27d82020-02-28 10:36:36 +03004674static int io_setup_async_msg(struct io_kiocb *req,
4675 struct io_async_msghdr *kmsg)
4676{
Jens Axboee8c2bc12020-08-15 18:44:09 -07004677 struct io_async_msghdr *async_msg = req->async_data;
4678
4679 if (async_msg)
Pavel Begunkov02d27d82020-02-28 10:36:36 +03004680 return -EAGAIN;
Jens Axboee8c2bc12020-08-15 18:44:09 -07004681 if (io_alloc_async_data(req)) {
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004682 kfree(kmsg->free_iov);
Pavel Begunkov02d27d82020-02-28 10:36:36 +03004683 return -ENOMEM;
4684 }
Jens Axboee8c2bc12020-08-15 18:44:09 -07004685 async_msg = req->async_data;
Pavel Begunkov02d27d82020-02-28 10:36:36 +03004686 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboee8c2bc12020-08-15 18:44:09 -07004687 memcpy(async_msg, kmsg, sizeof(*kmsg));
Pavel Begunkov2a780802021-02-05 00:57:58 +00004688 async_msg->msg.msg_name = &async_msg->addr;
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004689 /* if were using fast_iov, set it to the new one */
4690 if (!async_msg->free_iov)
4691 async_msg->msg.msg_iter.iov = async_msg->fast_iov;
4692
Pavel Begunkov02d27d82020-02-28 10:36:36 +03004693 return -EAGAIN;
4694}
4695
Pavel Begunkov2ae523e2020-07-12 20:41:06 +03004696static int io_sendmsg_copy_hdr(struct io_kiocb *req,
4697 struct io_async_msghdr *iomsg)
4698{
Pavel Begunkov2ae523e2020-07-12 20:41:06 +03004699 iomsg->msg.msg_name = &iomsg->addr;
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004700 iomsg->free_iov = iomsg->fast_iov;
Pavel Begunkov2ae523e2020-07-12 20:41:06 +03004701 return sendmsg_copy_msghdr(&iomsg->msg, req->sr_msg.umsg,
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004702 req->sr_msg.msg_flags, &iomsg->free_iov);
Pavel Begunkov2ae523e2020-07-12 20:41:06 +03004703}
4704
Pavel Begunkov93642ef2021-02-18 18:29:44 +00004705static int io_sendmsg_prep_async(struct io_kiocb *req)
4706{
4707 int ret;
4708
Pavel Begunkov93642ef2021-02-18 18:29:44 +00004709 ret = io_sendmsg_copy_hdr(req, req->async_data);
4710 if (!ret)
4711 req->flags |= REQ_F_NEED_CLEANUP;
4712 return ret;
4713}
4714
Jens Axboe3529d8c2019-12-19 18:24:38 -07004715static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboeaa1fa282019-04-19 13:38:09 -06004716{
Jens Axboee47293f2019-12-20 08:58:21 -07004717 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe03b12302019-12-02 18:50:25 -07004718
Pavel Begunkovd2b6f482020-06-03 18:03:25 +03004719 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4720 return -EINVAL;
4721
Pavel Begunkov270a5942020-07-12 20:41:04 +03004722 sr->umsg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboefddafac2020-01-04 20:19:44 -07004723 sr->len = READ_ONCE(sqe->len);
Pavel Begunkov04411802021-04-01 15:44:00 +01004724 sr->msg_flags = READ_ONCE(sqe->msg_flags) | MSG_NOSIGNAL;
4725 if (sr->msg_flags & MSG_DONTWAIT)
4726 req->flags |= REQ_F_NOWAIT;
Jens Axboe3529d8c2019-12-19 18:24:38 -07004727
Jens Axboed8768362020-02-27 14:17:49 -07004728#ifdef CONFIG_COMPAT
4729 if (req->ctx->compat)
4730 sr->msg_flags |= MSG_CMSG_COMPAT;
4731#endif
Pavel Begunkov93642ef2021-02-18 18:29:44 +00004732 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07004733}
4734
Pavel Begunkov889fca72021-02-10 00:03:09 +00004735static int io_sendmsg(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe03b12302019-12-02 18:50:25 -07004736{
Pavel Begunkov6b754c82020-07-16 23:28:00 +03004737 struct io_async_msghdr iomsg, *kmsg;
Jens Axboe03b12302019-12-02 18:50:25 -07004738 struct socket *sock;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004739 unsigned flags;
Stefan Metzmacher00312752021-03-20 20:33:36 +01004740 int min_ret = 0;
Jens Axboe03b12302019-12-02 18:50:25 -07004741 int ret;
4742
Florent Revestdba4a922020-12-04 12:36:04 +01004743 sock = sock_from_file(req->file);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004744 if (unlikely(!sock))
Florent Revestdba4a922020-12-04 12:36:04 +01004745 return -ENOTSOCK;
Jens Axboe03b12302019-12-02 18:50:25 -07004746
Pavel Begunkovd886e182021-10-04 20:02:56 +01004747 if (req_has_async_data(req)) {
4748 kmsg = req->async_data;
4749 } else {
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004750 ret = io_sendmsg_copy_hdr(req, &iomsg);
Jens Axboefddafac2020-01-04 20:19:44 -07004751 if (ret)
4752 return ret;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004753 kmsg = &iomsg;
Jens Axboefddafac2020-01-04 20:19:44 -07004754 }
4755
Pavel Begunkov04411802021-04-01 15:44:00 +01004756 flags = req->sr_msg.msg_flags;
4757 if (issue_flags & IO_URING_F_NONBLOCK)
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004758 flags |= MSG_DONTWAIT;
Stefan Metzmacher00312752021-03-20 20:33:36 +01004759 if (flags & MSG_WAITALL)
4760 min_ret = iov_iter_count(&kmsg->msg.msg_iter);
4761
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004762 ret = __sys_sendmsg_sock(sock, &kmsg->msg, flags);
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004763 if ((issue_flags & IO_URING_F_NONBLOCK) && ret == -EAGAIN)
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004764 return io_setup_async_msg(req, kmsg);
4765 if (ret == -ERESTARTSYS)
4766 ret = -EINTR;
4767
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004768 /* fast path, check for non-NULL to avoid function call */
4769 if (kmsg->free_iov)
4770 kfree(kmsg->free_iov);
Jens Axboe03b12302019-12-02 18:50:25 -07004771 req->flags &= ~REQ_F_NEED_CLEANUP;
Stefan Metzmacher00312752021-03-20 20:33:36 +01004772 if (ret < min_ret)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004773 req_set_fail(req);
Pavel Begunkov889fca72021-02-10 00:03:09 +00004774 __io_req_complete(req, issue_flags, ret, 0);
Jens Axboefddafac2020-01-04 20:19:44 -07004775 return 0;
Jens Axboefddafac2020-01-04 20:19:44 -07004776}
4777
Pavel Begunkov889fca72021-02-10 00:03:09 +00004778static int io_send(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe03b12302019-12-02 18:50:25 -07004779{
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004780 struct io_sr_msg *sr = &req->sr_msg;
4781 struct msghdr msg;
4782 struct iovec iov;
Jens Axboe03b12302019-12-02 18:50:25 -07004783 struct socket *sock;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004784 unsigned flags;
Stefan Metzmacher00312752021-03-20 20:33:36 +01004785 int min_ret = 0;
Jens Axboe03b12302019-12-02 18:50:25 -07004786 int ret;
4787
Florent Revestdba4a922020-12-04 12:36:04 +01004788 sock = sock_from_file(req->file);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004789 if (unlikely(!sock))
Florent Revestdba4a922020-12-04 12:36:04 +01004790 return -ENOTSOCK;
Jens Axboe03b12302019-12-02 18:50:25 -07004791
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004792 ret = import_single_range(WRITE, sr->buf, sr->len, &iov, &msg.msg_iter);
4793 if (unlikely(ret))
Zheng Bin14db8412020-09-09 20:12:37 +08004794 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07004795
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004796 msg.msg_name = NULL;
4797 msg.msg_control = NULL;
4798 msg.msg_controllen = 0;
4799 msg.msg_namelen = 0;
Jens Axboe03b12302019-12-02 18:50:25 -07004800
Pavel Begunkov04411802021-04-01 15:44:00 +01004801 flags = req->sr_msg.msg_flags;
4802 if (issue_flags & IO_URING_F_NONBLOCK)
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004803 flags |= MSG_DONTWAIT;
Stefan Metzmacher00312752021-03-20 20:33:36 +01004804 if (flags & MSG_WAITALL)
4805 min_ret = iov_iter_count(&msg.msg_iter);
4806
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004807 msg.msg_flags = flags;
4808 ret = sock_sendmsg(sock, &msg);
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004809 if ((issue_flags & IO_URING_F_NONBLOCK) && ret == -EAGAIN)
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004810 return -EAGAIN;
4811 if (ret == -ERESTARTSYS)
4812 ret = -EINTR;
Jens Axboe03b12302019-12-02 18:50:25 -07004813
Stefan Metzmacher00312752021-03-20 20:33:36 +01004814 if (ret < min_ret)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01004815 req_set_fail(req);
Pavel Begunkov889fca72021-02-10 00:03:09 +00004816 __io_req_complete(req, issue_flags, ret, 0);
Jens Axboe03b12302019-12-02 18:50:25 -07004817 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07004818}
4819
Pavel Begunkov1400e692020-07-12 20:41:05 +03004820static int __io_recvmsg_copy_hdr(struct io_kiocb *req,
4821 struct io_async_msghdr *iomsg)
Jens Axboe52de1fe2020-02-27 10:15:42 -07004822{
4823 struct io_sr_msg *sr = &req->sr_msg;
4824 struct iovec __user *uiov;
4825 size_t iov_len;
4826 int ret;
4827
Pavel Begunkov1400e692020-07-12 20:41:05 +03004828 ret = __copy_msghdr_from_user(&iomsg->msg, sr->umsg,
4829 &iomsg->uaddr, &uiov, &iov_len);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004830 if (ret)
4831 return ret;
4832
4833 if (req->flags & REQ_F_BUFFER_SELECT) {
4834 if (iov_len > 1)
4835 return -EINVAL;
Pavel Begunkov5476dfe2021-02-05 00:57:59 +00004836 if (copy_from_user(iomsg->fast_iov, uiov, sizeof(*uiov)))
Jens Axboe52de1fe2020-02-27 10:15:42 -07004837 return -EFAULT;
Pavel Begunkov5476dfe2021-02-05 00:57:59 +00004838 sr->len = iomsg->fast_iov[0].iov_len;
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004839 iomsg->free_iov = NULL;
Jens Axboe52de1fe2020-02-27 10:15:42 -07004840 } else {
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004841 iomsg->free_iov = iomsg->fast_iov;
Christoph Hellwig89cd35c2020-09-25 06:51:41 +02004842 ret = __import_iovec(READ, uiov, iov_len, UIO_FASTIOV,
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004843 &iomsg->free_iov, &iomsg->msg.msg_iter,
Christoph Hellwig89cd35c2020-09-25 06:51:41 +02004844 false);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004845 if (ret > 0)
4846 ret = 0;
4847 }
4848
4849 return ret;
4850}
4851
4852#ifdef CONFIG_COMPAT
4853static int __io_compat_recvmsg_copy_hdr(struct io_kiocb *req,
Pavel Begunkov1400e692020-07-12 20:41:05 +03004854 struct io_async_msghdr *iomsg)
Jens Axboe52de1fe2020-02-27 10:15:42 -07004855{
Jens Axboe52de1fe2020-02-27 10:15:42 -07004856 struct io_sr_msg *sr = &req->sr_msg;
4857 struct compat_iovec __user *uiov;
4858 compat_uptr_t ptr;
4859 compat_size_t len;
4860 int ret;
4861
Pavel Begunkov4af34172021-04-11 01:46:30 +01004862 ret = __get_compat_msghdr(&iomsg->msg, sr->umsg_compat, &iomsg->uaddr,
4863 &ptr, &len);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004864 if (ret)
4865 return ret;
4866
4867 uiov = compat_ptr(ptr);
4868 if (req->flags & REQ_F_BUFFER_SELECT) {
4869 compat_ssize_t clen;
4870
4871 if (len > 1)
4872 return -EINVAL;
4873 if (!access_ok(uiov, sizeof(*uiov)))
4874 return -EFAULT;
4875 if (__get_user(clen, &uiov->iov_len))
4876 return -EFAULT;
4877 if (clen < 0)
4878 return -EINVAL;
Pavel Begunkov2d280bc2020-11-29 18:33:32 +00004879 sr->len = clen;
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004880 iomsg->free_iov = NULL;
Jens Axboe52de1fe2020-02-27 10:15:42 -07004881 } else {
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004882 iomsg->free_iov = iomsg->fast_iov;
Christoph Hellwig89cd35c2020-09-25 06:51:41 +02004883 ret = __import_iovec(READ, (struct iovec __user *)uiov, len,
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004884 UIO_FASTIOV, &iomsg->free_iov,
Christoph Hellwig89cd35c2020-09-25 06:51:41 +02004885 &iomsg->msg.msg_iter, true);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004886 if (ret < 0)
4887 return ret;
4888 }
4889
4890 return 0;
4891}
Jens Axboe03b12302019-12-02 18:50:25 -07004892#endif
Jens Axboe52de1fe2020-02-27 10:15:42 -07004893
Pavel Begunkov1400e692020-07-12 20:41:05 +03004894static int io_recvmsg_copy_hdr(struct io_kiocb *req,
4895 struct io_async_msghdr *iomsg)
Jens Axboe52de1fe2020-02-27 10:15:42 -07004896{
Pavel Begunkov1400e692020-07-12 20:41:05 +03004897 iomsg->msg.msg_name = &iomsg->addr;
Jens Axboe52de1fe2020-02-27 10:15:42 -07004898
4899#ifdef CONFIG_COMPAT
4900 if (req->ctx->compat)
Pavel Begunkov1400e692020-07-12 20:41:05 +03004901 return __io_compat_recvmsg_copy_hdr(req, iomsg);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004902#endif
4903
Pavel Begunkov1400e692020-07-12 20:41:05 +03004904 return __io_recvmsg_copy_hdr(req, iomsg);
Jens Axboe52de1fe2020-02-27 10:15:42 -07004905}
4906
Jens Axboebcda7ba2020-02-23 16:42:51 -07004907static struct io_buffer *io_recv_buffer_select(struct io_kiocb *req,
Pavel Begunkov51aac422021-10-14 16:10:17 +01004908 unsigned int issue_flags)
Jens Axboebcda7ba2020-02-23 16:42:51 -07004909{
4910 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboebcda7ba2020-02-23 16:42:51 -07004911
Pavel Begunkov51aac422021-10-14 16:10:17 +01004912 return io_buffer_select(req, &sr->len, sr->bgid, issue_flags);
Jens Axboe03b12302019-12-02 18:50:25 -07004913}
4914
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004915static inline unsigned int io_put_recv_kbuf(struct io_kiocb *req)
4916{
Pavel Begunkov30d51dd2021-10-01 18:07:03 +01004917 return io_put_kbuf(req, req->kbuf);
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004918}
4919
Pavel Begunkov93642ef2021-02-18 18:29:44 +00004920static int io_recvmsg_prep_async(struct io_kiocb *req)
Jens Axboe03b12302019-12-02 18:50:25 -07004921{
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004922 int ret;
Jens Axboe06b76d42019-12-19 14:44:26 -07004923
Pavel Begunkov93642ef2021-02-18 18:29:44 +00004924 ret = io_recvmsg_copy_hdr(req, req->async_data);
4925 if (!ret)
4926 req->flags |= REQ_F_NEED_CLEANUP;
4927 return ret;
4928}
4929
4930static int io_recvmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4931{
4932 struct io_sr_msg *sr = &req->sr_msg;
4933
Pavel Begunkovd2b6f482020-06-03 18:03:25 +03004934 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4935 return -EINVAL;
4936
Pavel Begunkov270a5942020-07-12 20:41:04 +03004937 sr->umsg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboe0b7b21e2020-01-31 08:34:59 -07004938 sr->len = READ_ONCE(sqe->len);
Jens Axboebcda7ba2020-02-23 16:42:51 -07004939 sr->bgid = READ_ONCE(sqe->buf_group);
Pavel Begunkov04411802021-04-01 15:44:00 +01004940 sr->msg_flags = READ_ONCE(sqe->msg_flags) | MSG_NOSIGNAL;
4941 if (sr->msg_flags & MSG_DONTWAIT)
4942 req->flags |= REQ_F_NOWAIT;
Jens Axboe3529d8c2019-12-19 18:24:38 -07004943
Jens Axboed8768362020-02-27 14:17:49 -07004944#ifdef CONFIG_COMPAT
4945 if (req->ctx->compat)
4946 sr->msg_flags |= MSG_CMSG_COMPAT;
4947#endif
Pavel Begunkov93642ef2021-02-18 18:29:44 +00004948 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07004949}
4950
Pavel Begunkov889fca72021-02-10 00:03:09 +00004951static int io_recvmsg(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe03b12302019-12-02 18:50:25 -07004952{
Pavel Begunkov6b754c82020-07-16 23:28:00 +03004953 struct io_async_msghdr iomsg, *kmsg;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004954 struct socket *sock;
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004955 struct io_buffer *kbuf;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004956 unsigned flags;
Stefan Metzmacher00312752021-03-20 20:33:36 +01004957 int min_ret = 0;
Jens Axboe52de1fe2020-02-27 10:15:42 -07004958 int ret, cflags = 0;
Pavel Begunkov45d189c2021-02-10 00:03:07 +00004959 bool force_nonblock = issue_flags & IO_URING_F_NONBLOCK;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004960
Florent Revestdba4a922020-12-04 12:36:04 +01004961 sock = sock_from_file(req->file);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004962 if (unlikely(!sock))
Florent Revestdba4a922020-12-04 12:36:04 +01004963 return -ENOTSOCK;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004964
Pavel Begunkovd886e182021-10-04 20:02:56 +01004965 if (req_has_async_data(req)) {
4966 kmsg = req->async_data;
4967 } else {
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004968 ret = io_recvmsg_copy_hdr(req, &iomsg);
4969 if (ret)
Pavel Begunkov681fda82020-07-15 22:20:45 +03004970 return ret;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004971 kmsg = &iomsg;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004972 }
4973
Pavel Begunkovbc02ef32020-07-16 23:28:03 +03004974 if (req->flags & REQ_F_BUFFER_SELECT) {
Pavel Begunkov51aac422021-10-14 16:10:17 +01004975 kbuf = io_recv_buffer_select(req, issue_flags);
Pavel Begunkovbc02ef32020-07-16 23:28:03 +03004976 if (IS_ERR(kbuf))
4977 return PTR_ERR(kbuf);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004978 kmsg->fast_iov[0].iov_base = u64_to_user_ptr(kbuf->addr);
Pavel Begunkov5476dfe2021-02-05 00:57:59 +00004979 kmsg->fast_iov[0].iov_len = req->sr_msg.len;
4980 iov_iter_init(&kmsg->msg.msg_iter, READ, kmsg->fast_iov,
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004981 1, req->sr_msg.len);
4982 }
4983
Pavel Begunkov04411802021-04-01 15:44:00 +01004984 flags = req->sr_msg.msg_flags;
4985 if (force_nonblock)
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004986 flags |= MSG_DONTWAIT;
Stefan Metzmacher00312752021-03-20 20:33:36 +01004987 if (flags & MSG_WAITALL)
4988 min_ret = iov_iter_count(&kmsg->msg.msg_iter);
4989
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004990 ret = __sys_recvmsg_sock(sock, &kmsg->msg, req->sr_msg.umsg,
4991 kmsg->uaddr, flags);
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03004992 if (force_nonblock && ret == -EAGAIN)
4993 return io_setup_async_msg(req, kmsg);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03004994 if (ret == -ERESTARTSYS)
4995 ret = -EINTR;
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03004996
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03004997 if (req->flags & REQ_F_BUFFER_SELECTED)
4998 cflags = io_put_recv_kbuf(req);
Pavel Begunkov257e84a2021-02-05 00:58:00 +00004999 /* fast path, check for non-NULL to avoid function call */
5000 if (kmsg->free_iov)
5001 kfree(kmsg->free_iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005002 req->flags &= ~REQ_F_NEED_CLEANUP;
Stefan Metzmacher00312752021-03-20 20:33:36 +01005003 if (ret < min_ret || ((flags & MSG_WAITALL) && (kmsg->msg.msg_flags & (MSG_TRUNC | MSG_CTRUNC))))
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01005004 req_set_fail(req);
Pavel Begunkov889fca72021-02-10 00:03:09 +00005005 __io_req_complete(req, issue_flags, ret, cflags);
Jens Axboe0fa03c62019-04-19 13:34:07 -06005006 return 0;
Jens Axboe0fa03c62019-04-19 13:34:07 -06005007}
5008
Pavel Begunkov889fca72021-02-10 00:03:09 +00005009static int io_recv(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboefddafac2020-01-04 20:19:44 -07005010{
Pavel Begunkov6b754c82020-07-16 23:28:00 +03005011 struct io_buffer *kbuf;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03005012 struct io_sr_msg *sr = &req->sr_msg;
5013 struct msghdr msg;
5014 void __user *buf = sr->buf;
Jens Axboefddafac2020-01-04 20:19:44 -07005015 struct socket *sock;
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03005016 struct iovec iov;
5017 unsigned flags;
Stefan Metzmacher00312752021-03-20 20:33:36 +01005018 int min_ret = 0;
Jens Axboebcda7ba2020-02-23 16:42:51 -07005019 int ret, cflags = 0;
Pavel Begunkov45d189c2021-02-10 00:03:07 +00005020 bool force_nonblock = issue_flags & IO_URING_F_NONBLOCK;
Jens Axboefddafac2020-01-04 20:19:44 -07005021
Florent Revestdba4a922020-12-04 12:36:04 +01005022 sock = sock_from_file(req->file);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03005023 if (unlikely(!sock))
Florent Revestdba4a922020-12-04 12:36:04 +01005024 return -ENOTSOCK;
Jens Axboefddafac2020-01-04 20:19:44 -07005025
Pavel Begunkovbc02ef32020-07-16 23:28:03 +03005026 if (req->flags & REQ_F_BUFFER_SELECT) {
Pavel Begunkov51aac422021-10-14 16:10:17 +01005027 kbuf = io_recv_buffer_select(req, issue_flags);
Jens Axboebcda7ba2020-02-23 16:42:51 -07005028 if (IS_ERR(kbuf))
5029 return PTR_ERR(kbuf);
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03005030 buf = u64_to_user_ptr(kbuf->addr);
Jens Axboefddafac2020-01-04 20:19:44 -07005031 }
5032
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03005033 ret = import_single_range(READ, buf, sr->len, &iov, &msg.msg_iter);
Pavel Begunkov14c32ee2020-07-16 23:28:01 +03005034 if (unlikely(ret))
5035 goto out_free;
Jens Axboefddafac2020-01-04 20:19:44 -07005036
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03005037 msg.msg_name = NULL;
5038 msg.msg_control = NULL;
5039 msg.msg_controllen = 0;
5040 msg.msg_namelen = 0;
5041 msg.msg_iocb = NULL;
5042 msg.msg_flags = 0;
5043
Pavel Begunkov04411802021-04-01 15:44:00 +01005044 flags = req->sr_msg.msg_flags;
5045 if (force_nonblock)
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03005046 flags |= MSG_DONTWAIT;
Stefan Metzmacher00312752021-03-20 20:33:36 +01005047 if (flags & MSG_WAITALL)
5048 min_ret = iov_iter_count(&msg.msg_iter);
5049
Pavel Begunkov7a7cacb2020-07-16 23:27:59 +03005050 ret = sock_recvmsg(sock, &msg, flags);
5051 if (force_nonblock && ret == -EAGAIN)
5052 return -EAGAIN;
5053 if (ret == -ERESTARTSYS)
5054 ret = -EINTR;
Pavel Begunkov14c32ee2020-07-16 23:28:01 +03005055out_free:
Pavel Begunkov7fbb1b52020-07-16 23:28:05 +03005056 if (req->flags & REQ_F_BUFFER_SELECTED)
5057 cflags = io_put_recv_kbuf(req);
Stefan Metzmacher00312752021-03-20 20:33:36 +01005058 if (ret < min_ret || ((flags & MSG_WAITALL) && (msg.msg_flags & (MSG_TRUNC | MSG_CTRUNC))))
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01005059 req_set_fail(req);
Pavel Begunkov889fca72021-02-10 00:03:09 +00005060 __io_req_complete(req, issue_flags, ret, cflags);
Jens Axboefddafac2020-01-04 20:19:44 -07005061 return 0;
Jens Axboefddafac2020-01-04 20:19:44 -07005062}
5063
Jens Axboe3529d8c2019-12-19 18:24:38 -07005064static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe17f2fe32019-10-17 14:42:58 -06005065{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005066 struct io_accept *accept = &req->accept;
5067
Jens Axboe14587a462020-09-05 11:36:08 -06005068 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe17f2fe32019-10-17 14:42:58 -06005069 return -EINVAL;
Pavel Begunkovaaa4db12021-08-25 12:25:47 +01005070 if (sqe->ioprio || sqe->len || sqe->buf_index)
Jens Axboe17f2fe32019-10-17 14:42:58 -06005071 return -EINVAL;
5072
Jens Axboed55e5f52019-12-11 16:12:15 -07005073 accept->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
5074 accept->addr_len = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005075 accept->flags = READ_ONCE(sqe->accept_flags);
Jens Axboe09952e32020-03-19 20:16:56 -06005076 accept->nofile = rlimit(RLIMIT_NOFILE);
Pavel Begunkova7083ad2021-08-25 12:25:46 +01005077
Pavel Begunkovaaa4db12021-08-25 12:25:47 +01005078 accept->file_slot = READ_ONCE(sqe->file_index);
5079 if (accept->file_slot && ((req->open.how.flags & O_CLOEXEC) ||
5080 (accept->flags & SOCK_CLOEXEC)))
5081 return -EINVAL;
Pavel Begunkova7083ad2021-08-25 12:25:46 +01005082 if (accept->flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
5083 return -EINVAL;
5084 if (SOCK_NONBLOCK != O_NONBLOCK && (accept->flags & SOCK_NONBLOCK))
5085 accept->flags = (accept->flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005086 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005087}
Jens Axboe17f2fe32019-10-17 14:42:58 -06005088
Pavel Begunkov889fca72021-02-10 00:03:09 +00005089static int io_accept(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005090{
5091 struct io_accept *accept = &req->accept;
Pavel Begunkov45d189c2021-02-10 00:03:07 +00005092 bool force_nonblock = issue_flags & IO_URING_F_NONBLOCK;
Pavel Begunkovac45abc2020-06-08 21:08:18 +03005093 unsigned int file_flags = force_nonblock ? O_NONBLOCK : 0;
Pavel Begunkovaaa4db12021-08-25 12:25:47 +01005094 bool fixed = !!accept->file_slot;
Pavel Begunkova7083ad2021-08-25 12:25:46 +01005095 struct file *file;
5096 int ret, fd;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005097
Jiufei Xuee697dee2020-06-10 13:41:59 +08005098 if (req->file->f_flags & O_NONBLOCK)
5099 req->flags |= REQ_F_NOWAIT;
5100
Pavel Begunkovaaa4db12021-08-25 12:25:47 +01005101 if (!fixed) {
5102 fd = __get_unused_fd_flags(accept->flags, accept->nofile);
5103 if (unlikely(fd < 0))
5104 return fd;
5105 }
Pavel Begunkova7083ad2021-08-25 12:25:46 +01005106 file = do_accept(req->file, file_flags, accept->addr, accept->addr_len,
5107 accept->flags);
5108 if (IS_ERR(file)) {
Pavel Begunkovaaa4db12021-08-25 12:25:47 +01005109 if (!fixed)
5110 put_unused_fd(fd);
Pavel Begunkova7083ad2021-08-25 12:25:46 +01005111 ret = PTR_ERR(file);
5112 if (ret == -EAGAIN && force_nonblock)
5113 return -EAGAIN;
Pavel Begunkovac45abc2020-06-08 21:08:18 +03005114 if (ret == -ERESTARTSYS)
5115 ret = -EINTR;
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01005116 req_set_fail(req);
Pavel Begunkovaaa4db12021-08-25 12:25:47 +01005117 } else if (!fixed) {
Pavel Begunkova7083ad2021-08-25 12:25:46 +01005118 fd_install(fd, file);
5119 ret = fd;
Pavel Begunkovaaa4db12021-08-25 12:25:47 +01005120 } else {
5121 ret = io_install_fixed_file(req, file, issue_flags,
5122 accept->file_slot - 1);
Pavel Begunkovac45abc2020-06-08 21:08:18 +03005123 }
Pavel Begunkov889fca72021-02-10 00:03:09 +00005124 __io_req_complete(req, issue_flags, ret, 0);
Jens Axboe17f2fe32019-10-17 14:42:58 -06005125 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005126}
5127
Pavel Begunkov93642ef2021-02-18 18:29:44 +00005128static int io_connect_prep_async(struct io_kiocb *req)
5129{
5130 struct io_async_connect *io = req->async_data;
5131 struct io_connect *conn = &req->connect;
5132
5133 return move_addr_to_kernel(conn->addr, conn->addr_len, &io->address);
5134}
5135
Jens Axboe3529d8c2019-12-19 18:24:38 -07005136static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef499a022019-12-02 16:28:46 -07005137{
Jens Axboe3529d8c2019-12-19 18:24:38 -07005138 struct io_connect *conn = &req->connect;
Jens Axboef499a022019-12-02 16:28:46 -07005139
Jens Axboe14587a462020-09-05 11:36:08 -06005140 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe3fbb51c2019-12-20 08:51:52 -07005141 return -EINVAL;
Pavel Begunkov26578cd2021-08-20 10:36:37 +01005142 if (sqe->ioprio || sqe->len || sqe->buf_index || sqe->rw_flags ||
5143 sqe->splice_fd_in)
Jens Axboe3fbb51c2019-12-20 08:51:52 -07005144 return -EINVAL;
5145
Jens Axboe3529d8c2019-12-19 18:24:38 -07005146 conn->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
5147 conn->addr_len = READ_ONCE(sqe->addr2);
Pavel Begunkov93642ef2021-02-18 18:29:44 +00005148 return 0;
Jens Axboef499a022019-12-02 16:28:46 -07005149}
5150
Pavel Begunkov889fca72021-02-10 00:03:09 +00005151static int io_connect(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboef8e85cf2019-11-23 14:24:24 -07005152{
Jens Axboee8c2bc12020-08-15 18:44:09 -07005153 struct io_async_connect __io, *io;
Jens Axboef8e85cf2019-11-23 14:24:24 -07005154 unsigned file_flags;
Jens Axboe3fbb51c2019-12-20 08:51:52 -07005155 int ret;
Pavel Begunkov45d189c2021-02-10 00:03:07 +00005156 bool force_nonblock = issue_flags & IO_URING_F_NONBLOCK;
Jens Axboef8e85cf2019-11-23 14:24:24 -07005157
Pavel Begunkovd886e182021-10-04 20:02:56 +01005158 if (req_has_async_data(req)) {
Jens Axboee8c2bc12020-08-15 18:44:09 -07005159 io = req->async_data;
Jens Axboef499a022019-12-02 16:28:46 -07005160 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07005161 ret = move_addr_to_kernel(req->connect.addr,
5162 req->connect.addr_len,
Jens Axboee8c2bc12020-08-15 18:44:09 -07005163 &__io.address);
Jens Axboef499a022019-12-02 16:28:46 -07005164 if (ret)
5165 goto out;
5166 io = &__io;
5167 }
5168
Jens Axboe3fbb51c2019-12-20 08:51:52 -07005169 file_flags = force_nonblock ? O_NONBLOCK : 0;
5170
Jens Axboee8c2bc12020-08-15 18:44:09 -07005171 ret = __sys_connect_file(req->file, &io->address,
Jens Axboe3fbb51c2019-12-20 08:51:52 -07005172 req->connect.addr_len, file_flags);
Jens Axboe87f80d62019-12-03 11:23:54 -07005173 if ((ret == -EAGAIN || ret == -EINPROGRESS) && force_nonblock) {
Pavel Begunkovd886e182021-10-04 20:02:56 +01005174 if (req_has_async_data(req))
Jens Axboeb7bb4f72019-12-15 22:13:43 -07005175 return -EAGAIN;
Jens Axboee8c2bc12020-08-15 18:44:09 -07005176 if (io_alloc_async_data(req)) {
Jens Axboef499a022019-12-02 16:28:46 -07005177 ret = -ENOMEM;
5178 goto out;
5179 }
Jens Axboee8c2bc12020-08-15 18:44:09 -07005180 memcpy(req->async_data, &__io, sizeof(__io));
Jens Axboef8e85cf2019-11-23 14:24:24 -07005181 return -EAGAIN;
Jens Axboef499a022019-12-02 16:28:46 -07005182 }
Jens Axboef8e85cf2019-11-23 14:24:24 -07005183 if (ret == -ERESTARTSYS)
5184 ret = -EINTR;
Jens Axboef499a022019-12-02 16:28:46 -07005185out:
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005186 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01005187 req_set_fail(req);
Pavel Begunkov889fca72021-02-10 00:03:09 +00005188 __io_req_complete(req, issue_flags, ret, 0);
Jens Axboef8e85cf2019-11-23 14:24:24 -07005189 return 0;
Jens Axboef8e85cf2019-11-23 14:24:24 -07005190}
YueHaibing469956e2020-03-04 15:53:52 +08005191#else /* !CONFIG_NET */
Jens Axboe99a10082021-02-19 09:35:19 -07005192#define IO_NETOP_FN(op) \
5193static int io_##op(struct io_kiocb *req, unsigned int issue_flags) \
5194{ \
5195 return -EOPNOTSUPP; \
Jens Axboef8e85cf2019-11-23 14:24:24 -07005196}
5197
Jens Axboe99a10082021-02-19 09:35:19 -07005198#define IO_NETOP_PREP(op) \
5199IO_NETOP_FN(op) \
5200static int io_##op##_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe) \
5201{ \
5202 return -EOPNOTSUPP; \
5203} \
5204
5205#define IO_NETOP_PREP_ASYNC(op) \
5206IO_NETOP_PREP(op) \
5207static int io_##op##_prep_async(struct io_kiocb *req) \
5208{ \
5209 return -EOPNOTSUPP; \
YueHaibing469956e2020-03-04 15:53:52 +08005210}
5211
Jens Axboe99a10082021-02-19 09:35:19 -07005212IO_NETOP_PREP_ASYNC(sendmsg);
5213IO_NETOP_PREP_ASYNC(recvmsg);
5214IO_NETOP_PREP_ASYNC(connect);
5215IO_NETOP_PREP(accept);
5216IO_NETOP_FN(send);
5217IO_NETOP_FN(recv);
YueHaibing469956e2020-03-04 15:53:52 +08005218#endif /* CONFIG_NET */
Jens Axboe17f2fe32019-10-17 14:42:58 -06005219
Jens Axboed7718a92020-02-14 22:23:12 -07005220struct io_poll_table {
5221 struct poll_table_struct pt;
5222 struct io_kiocb *req;
Pavel Begunkov68b11e82021-07-20 10:50:43 +01005223 int nr_entries;
Jens Axboed7718a92020-02-14 22:23:12 -07005224 int error;
5225};
5226
Jens Axboed7718a92020-02-14 22:23:12 -07005227static int __io_async_wake(struct io_kiocb *req, struct io_poll_iocb *poll,
Pavel Begunkov5b0a6ac2021-06-30 21:54:04 +01005228 __poll_t mask, io_req_tw_func_t func)
Jens Axboed7718a92020-02-14 22:23:12 -07005229{
Jens Axboed7718a92020-02-14 22:23:12 -07005230 /* for instances that support it check for an event match first: */
5231 if (mask && !(mask & poll->events))
5232 return 0;
5233
5234 trace_io_uring_task_add(req->ctx, req->opcode, req->user_data, mask);
5235
5236 list_del_init(&poll->wait.entry);
5237
Jens Axboed7718a92020-02-14 22:23:12 -07005238 req->result = mask;
Pavel Begunkov5b0a6ac2021-06-30 21:54:04 +01005239 req->io_task_work.func = func;
Jens Axboe6d816e02020-08-11 08:04:14 -06005240
Jens Axboed7718a92020-02-14 22:23:12 -07005241 /*
Jens Axboee3aabf92020-05-18 11:04:17 -06005242 * If this fails, then the task is exiting. When a task exits, the
5243 * work gets canceled, so just cancel this request as well instead
5244 * of executing it. We can't safely execute it anyway, as we may not
5245 * have the needed state needed for it anyway.
Jens Axboed7718a92020-02-14 22:23:12 -07005246 */
Pavel Begunkove09ee512021-07-01 13:26:05 +01005247 io_req_task_work_add(req);
Jens Axboed7718a92020-02-14 22:23:12 -07005248 return 1;
5249}
5250
Jens Axboe74ce6ce2020-04-13 11:09:12 -06005251static bool io_poll_rewait(struct io_kiocb *req, struct io_poll_iocb *poll)
5252 __acquires(&req->ctx->completion_lock)
5253{
5254 struct io_ring_ctx *ctx = req->ctx;
5255
Jens Axboe316319e2021-08-19 09:41:42 -06005256 /* req->task == current here, checking PF_EXITING is safe */
Pavel Begunkove09ee512021-07-01 13:26:05 +01005257 if (unlikely(req->task->flags & PF_EXITING))
5258 WRITE_ONCE(poll->canceled, true);
5259
Jens Axboe74ce6ce2020-04-13 11:09:12 -06005260 if (!req->result && !READ_ONCE(poll->canceled)) {
5261 struct poll_table_struct pt = { ._key = poll->events };
5262
5263 req->result = vfs_poll(req->file, &pt) & poll->events;
5264 }
5265
Jens Axboe79ebeae2021-08-10 15:18:27 -06005266 spin_lock(&ctx->completion_lock);
Jens Axboe74ce6ce2020-04-13 11:09:12 -06005267 if (!req->result && !READ_ONCE(poll->canceled)) {
5268 add_wait_queue(poll->head, &poll->wait);
5269 return true;
5270 }
5271
5272 return false;
5273}
5274
Jens Axboed4e7cd32020-08-15 11:44:50 -07005275static struct io_poll_iocb *io_poll_get_double(struct io_kiocb *req)
Jens Axboe18bceab2020-05-15 11:56:54 -06005276{
Jens Axboee8c2bc12020-08-15 18:44:09 -07005277 /* pure poll stashes this in ->async_data, poll driven retry elsewhere */
Jens Axboed4e7cd32020-08-15 11:44:50 -07005278 if (req->opcode == IORING_OP_POLL_ADD)
Jens Axboee8c2bc12020-08-15 18:44:09 -07005279 return req->async_data;
Jens Axboed4e7cd32020-08-15 11:44:50 -07005280 return req->apoll->double_poll;
5281}
5282
5283static struct io_poll_iocb *io_poll_get_single(struct io_kiocb *req)
5284{
5285 if (req->opcode == IORING_OP_POLL_ADD)
5286 return &req->poll;
5287 return &req->apoll->poll;
5288}
5289
5290static void io_poll_remove_double(struct io_kiocb *req)
Pavel Begunkove07785b2021-04-01 15:43:57 +01005291 __must_hold(&req->ctx->completion_lock)
Jens Axboed4e7cd32020-08-15 11:44:50 -07005292{
5293 struct io_poll_iocb *poll = io_poll_get_double(req);
Jens Axboe18bceab2020-05-15 11:56:54 -06005294
5295 lockdep_assert_held(&req->ctx->completion_lock);
5296
5297 if (poll && poll->head) {
5298 struct wait_queue_head *head = poll->head;
5299
Jens Axboe79ebeae2021-08-10 15:18:27 -06005300 spin_lock_irq(&head->lock);
Jens Axboe18bceab2020-05-15 11:56:54 -06005301 list_del_init(&poll->wait.entry);
5302 if (poll->wait.private)
Jens Axboede9b4cc2021-02-24 13:28:27 -07005303 req_ref_put(req);
Jens Axboe18bceab2020-05-15 11:56:54 -06005304 poll->head = NULL;
Jens Axboe79ebeae2021-08-10 15:18:27 -06005305 spin_unlock_irq(&head->lock);
Jens Axboe18bceab2020-05-15 11:56:54 -06005306 }
5307}
5308
Xiaoguang Wang31efe482021-09-03 22:24:36 +08005309static bool __io_poll_complete(struct io_kiocb *req, __poll_t mask)
Pavel Begunkove07785b2021-04-01 15:43:57 +01005310 __must_hold(&req->ctx->completion_lock)
Jens Axboe18bceab2020-05-15 11:56:54 -06005311{
5312 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe88e41cf2021-02-22 22:08:01 -07005313 unsigned flags = IORING_CQE_F_MORE;
Pavel Begunkove27414b2021-04-09 09:13:20 +01005314 int error;
Jens Axboe18bceab2020-05-15 11:56:54 -06005315
Pavel Begunkove27414b2021-04-09 09:13:20 +01005316 if (READ_ONCE(req->poll.canceled)) {
Jens Axboe45ab03b2021-02-23 08:19:33 -07005317 error = -ECANCELED;
Jens Axboe88e41cf2021-02-22 22:08:01 -07005318 req->poll.events |= EPOLLONESHOT;
Pavel Begunkove27414b2021-04-09 09:13:20 +01005319 } else {
Jens Axboe50826202021-02-23 09:02:26 -07005320 error = mangle_poll(mask);
Pavel Begunkove27414b2021-04-09 09:13:20 +01005321 }
Jens Axboeb69de282021-03-17 08:37:41 -06005322 if (req->poll.events & EPOLLONESHOT)
5323 flags = 0;
Hao Xua62682f2021-09-22 18:12:37 +08005324 if (!io_cqring_fill_event(ctx, req->user_data, error, flags)) {
5325 req->poll.events |= EPOLLONESHOT;
Jens Axboe88e41cf2021-02-22 22:08:01 -07005326 flags = 0;
Hao Xua62682f2021-09-22 18:12:37 +08005327 }
Hao Xu7b289c32021-04-13 15:20:39 +08005328 if (flags & IORING_CQE_F_MORE)
5329 ctx->cq_extra++;
5330
Jens Axboe88e41cf2021-02-22 22:08:01 -07005331 return !(flags & IORING_CQE_F_MORE);
Jens Axboe18bceab2020-05-15 11:56:54 -06005332}
5333
Pavel Begunkovf237c302021-08-18 12:42:46 +01005334static void io_poll_task_func(struct io_kiocb *req, bool *locked)
Jens Axboe18bceab2020-05-15 11:56:54 -06005335{
Jens Axboe6d816e02020-08-11 08:04:14 -06005336 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovdd221f462020-10-18 10:17:42 +01005337 struct io_kiocb *nxt;
Jens Axboe18bceab2020-05-15 11:56:54 -06005338
Pavel Begunkovdd221f462020-10-18 10:17:42 +01005339 if (io_poll_rewait(req, &req->poll)) {
Jens Axboe79ebeae2021-08-10 15:18:27 -06005340 spin_unlock(&ctx->completion_lock);
Pavel Begunkovdd221f462020-10-18 10:17:42 +01005341 } else {
Pavel Begunkovf40b9642021-04-09 09:13:19 +01005342 bool done;
Jens Axboe88e41cf2021-02-22 22:08:01 -07005343
Hao Xu5b7aa382021-09-22 18:12:38 +08005344 if (req->poll.done) {
5345 spin_unlock(&ctx->completion_lock);
5346 return;
5347 }
Xiaoguang Wang31efe482021-09-03 22:24:36 +08005348 done = __io_poll_complete(req, req->result);
Jens Axboe88e41cf2021-02-22 22:08:01 -07005349 if (done) {
Hao Xua890d012021-07-28 11:03:22 +08005350 io_poll_remove_double(req);
Jens Axboe88e41cf2021-02-22 22:08:01 -07005351 hash_del(&req->hash_node);
Hao Xubd99c712021-09-22 18:12:36 +08005352 req->poll.done = true;
Pavel Begunkovf40b9642021-04-09 09:13:19 +01005353 } else {
Jens Axboe88e41cf2021-02-22 22:08:01 -07005354 req->result = 0;
5355 add_wait_queue(req->poll.head, &req->poll.wait);
5356 }
Xiaoguang Wang31efe482021-09-03 22:24:36 +08005357 io_commit_cqring(ctx);
Jens Axboe79ebeae2021-08-10 15:18:27 -06005358 spin_unlock(&ctx->completion_lock);
Pavel Begunkovdd221f462020-10-18 10:17:42 +01005359 io_cqring_ev_posted(ctx);
Pavel Begunkovdd221f462020-10-18 10:17:42 +01005360
Jens Axboe88e41cf2021-02-22 22:08:01 -07005361 if (done) {
5362 nxt = io_put_req_find_next(req);
5363 if (nxt)
Pavel Begunkovf237c302021-08-18 12:42:46 +01005364 io_req_task_submit(nxt, locked);
Jens Axboe88e41cf2021-02-22 22:08:01 -07005365 }
Pavel Begunkovea1164e2020-06-30 15:20:41 +03005366 }
Jens Axboe18bceab2020-05-15 11:56:54 -06005367}
5368
5369static int io_poll_double_wake(struct wait_queue_entry *wait, unsigned mode,
5370 int sync, void *key)
5371{
5372 struct io_kiocb *req = wait->private;
Jens Axboed4e7cd32020-08-15 11:44:50 -07005373 struct io_poll_iocb *poll = io_poll_get_single(req);
Jens Axboe18bceab2020-05-15 11:56:54 -06005374 __poll_t mask = key_to_poll(key);
Jens Axboe79ebeae2021-08-10 15:18:27 -06005375 unsigned long flags;
Jens Axboe18bceab2020-05-15 11:56:54 -06005376
5377 /* for instances that support it check for an event match first: */
5378 if (mask && !(mask & poll->events))
5379 return 0;
Jens Axboe88e41cf2021-02-22 22:08:01 -07005380 if (!(poll->events & EPOLLONESHOT))
5381 return poll->wait.func(&poll->wait, mode, sync, key);
Jens Axboe18bceab2020-05-15 11:56:54 -06005382
Jens Axboe8706e042020-09-28 08:38:54 -06005383 list_del_init(&wait->entry);
5384
Jens Axboe9ce85ef2021-07-09 08:20:28 -06005385 if (poll->head) {
Jens Axboe18bceab2020-05-15 11:56:54 -06005386 bool done;
5387
Jens Axboe79ebeae2021-08-10 15:18:27 -06005388 spin_lock_irqsave(&poll->head->lock, flags);
Jens Axboe807abcb2020-07-17 17:09:27 -06005389 done = list_empty(&poll->wait.entry);
Jens Axboe18bceab2020-05-15 11:56:54 -06005390 if (!done)
Jens Axboe807abcb2020-07-17 17:09:27 -06005391 list_del_init(&poll->wait.entry);
Jens Axboed4e7cd32020-08-15 11:44:50 -07005392 /* make sure double remove sees this as being gone */
5393 wait->private = NULL;
Jens Axboe79ebeae2021-08-10 15:18:27 -06005394 spin_unlock_irqrestore(&poll->head->lock, flags);
Jens Axboec8b5e262020-10-25 13:53:26 -06005395 if (!done) {
5396 /* use wait func handler, so it matches the rq type */
5397 poll->wait.func(&poll->wait, mode, sync, key);
5398 }
Jens Axboe18bceab2020-05-15 11:56:54 -06005399 }
Jens Axboede9b4cc2021-02-24 13:28:27 -07005400 req_ref_put(req);
Jens Axboe18bceab2020-05-15 11:56:54 -06005401 return 1;
5402}
5403
5404static void io_init_poll_iocb(struct io_poll_iocb *poll, __poll_t events,
5405 wait_queue_func_t wake_func)
5406{
5407 poll->head = NULL;
5408 poll->done = false;
5409 poll->canceled = false;
Jens Axboe464dca62021-03-19 14:06:24 -06005410#define IO_POLL_UNMASK (EPOLLERR|EPOLLHUP|EPOLLNVAL|EPOLLRDHUP)
5411 /* mask in events that we always want/need */
5412 poll->events = events | IO_POLL_UNMASK;
Jens Axboe18bceab2020-05-15 11:56:54 -06005413 INIT_LIST_HEAD(&poll->wait.entry);
5414 init_waitqueue_func_entry(&poll->wait, wake_func);
5415}
5416
5417static void __io_queue_proc(struct io_poll_iocb *poll, struct io_poll_table *pt,
Jens Axboe807abcb2020-07-17 17:09:27 -06005418 struct wait_queue_head *head,
5419 struct io_poll_iocb **poll_ptr)
Jens Axboe18bceab2020-05-15 11:56:54 -06005420{
5421 struct io_kiocb *req = pt->req;
5422
5423 /*
Pavel Begunkov68b11e82021-07-20 10:50:43 +01005424 * The file being polled uses multiple waitqueues for poll handling
5425 * (e.g. one for read, one for write). Setup a separate io_poll_iocb
5426 * if this happens.
Jens Axboe18bceab2020-05-15 11:56:54 -06005427 */
Pavel Begunkov68b11e82021-07-20 10:50:43 +01005428 if (unlikely(pt->nr_entries)) {
Pavel Begunkov58852d42020-10-16 20:55:56 +01005429 struct io_poll_iocb *poll_one = poll;
5430
Pavel Begunkov23a65db2021-08-17 20:28:11 +01005431 /* double add on the same waitqueue head, ignore */
5432 if (poll_one->head == head)
5433 return;
Jens Axboe18bceab2020-05-15 11:56:54 -06005434 /* already have a 2nd entry, fail a third attempt */
Jens Axboe807abcb2020-07-17 17:09:27 -06005435 if (*poll_ptr) {
Pavel Begunkov23a65db2021-08-17 20:28:11 +01005436 if ((*poll_ptr)->head == head)
5437 return;
Jens Axboe18bceab2020-05-15 11:56:54 -06005438 pt->error = -EINVAL;
5439 return;
5440 }
Jens Axboeea6a693d2021-04-15 09:47:13 -06005441 /*
5442 * Can't handle multishot for double wait for now, turn it
5443 * into one-shot mode.
5444 */
Pavel Begunkov7a274722021-05-17 12:43:34 +01005445 if (!(poll_one->events & EPOLLONESHOT))
5446 poll_one->events |= EPOLLONESHOT;
Jens Axboe18bceab2020-05-15 11:56:54 -06005447 poll = kmalloc(sizeof(*poll), GFP_ATOMIC);
5448 if (!poll) {
5449 pt->error = -ENOMEM;
5450 return;
5451 }
Pavel Begunkov58852d42020-10-16 20:55:56 +01005452 io_init_poll_iocb(poll, poll_one->events, io_poll_double_wake);
Jens Axboede9b4cc2021-02-24 13:28:27 -07005453 req_ref_get(req);
Jens Axboe18bceab2020-05-15 11:56:54 -06005454 poll->wait.private = req;
Pavel Begunkovd886e182021-10-04 20:02:56 +01005455
Jens Axboe807abcb2020-07-17 17:09:27 -06005456 *poll_ptr = poll;
Pavel Begunkovd886e182021-10-04 20:02:56 +01005457 if (req->opcode == IORING_OP_POLL_ADD)
5458 req->flags |= REQ_F_ASYNC_DATA;
Jens Axboe18bceab2020-05-15 11:56:54 -06005459 }
5460
Pavel Begunkov68b11e82021-07-20 10:50:43 +01005461 pt->nr_entries++;
Jens Axboe18bceab2020-05-15 11:56:54 -06005462 poll->head = head;
Jiufei Xuea31eb4a2020-06-17 17:53:56 +08005463
5464 if (poll->events & EPOLLEXCLUSIVE)
5465 add_wait_queue_exclusive(head, &poll->wait);
5466 else
5467 add_wait_queue(head, &poll->wait);
Jens Axboe18bceab2020-05-15 11:56:54 -06005468}
5469
5470static void io_async_queue_proc(struct file *file, struct wait_queue_head *head,
5471 struct poll_table_struct *p)
5472{
5473 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
Jens Axboe807abcb2020-07-17 17:09:27 -06005474 struct async_poll *apoll = pt->req->apoll;
Jens Axboe18bceab2020-05-15 11:56:54 -06005475
Jens Axboe807abcb2020-07-17 17:09:27 -06005476 __io_queue_proc(&apoll->poll, pt, head, &apoll->double_poll);
Jens Axboe18bceab2020-05-15 11:56:54 -06005477}
5478
Pavel Begunkovf237c302021-08-18 12:42:46 +01005479static void io_async_task_func(struct io_kiocb *req, bool *locked)
Jens Axboed7718a92020-02-14 22:23:12 -07005480{
Jens Axboed7718a92020-02-14 22:23:12 -07005481 struct async_poll *apoll = req->apoll;
5482 struct io_ring_ctx *ctx = req->ctx;
5483
Olivier Langlois236daeae2021-05-31 02:36:37 -04005484 trace_io_uring_task_run(req->ctx, req, req->opcode, req->user_data);
Jens Axboed7718a92020-02-14 22:23:12 -07005485
Jens Axboe74ce6ce2020-04-13 11:09:12 -06005486 if (io_poll_rewait(req, &apoll->poll)) {
Jens Axboe79ebeae2021-08-10 15:18:27 -06005487 spin_unlock(&ctx->completion_lock);
Jens Axboe74ce6ce2020-04-13 11:09:12 -06005488 return;
Jens Axboed7718a92020-02-14 22:23:12 -07005489 }
5490
Pavel Begunkov0ea13b42021-04-09 09:13:21 +01005491 hash_del(&req->hash_node);
Jens Axboed4e7cd32020-08-15 11:44:50 -07005492 io_poll_remove_double(req);
Hao Xubd99c712021-09-22 18:12:36 +08005493 apoll->poll.done = true;
Jens Axboe79ebeae2021-08-10 15:18:27 -06005494 spin_unlock(&ctx->completion_lock);
Jens Axboe74ce6ce2020-04-13 11:09:12 -06005495
Pavel Begunkov0be0b0e2020-06-30 15:20:42 +03005496 if (!READ_ONCE(apoll->poll.canceled))
Pavel Begunkovf237c302021-08-18 12:42:46 +01005497 io_req_task_submit(req, locked);
Pavel Begunkov0be0b0e2020-06-30 15:20:42 +03005498 else
Pavel Begunkov25935532021-03-19 17:22:40 +00005499 io_req_complete_failed(req, -ECANCELED);
Jens Axboed7718a92020-02-14 22:23:12 -07005500}
5501
5502static int io_async_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
5503 void *key)
5504{
5505 struct io_kiocb *req = wait->private;
5506 struct io_poll_iocb *poll = &req->apoll->poll;
5507
5508 trace_io_uring_poll_wake(req->ctx, req->opcode, req->user_data,
5509 key_to_poll(key));
5510
5511 return __io_async_wake(req, poll, key_to_poll(key), io_async_task_func);
5512}
5513
5514static void io_poll_req_insert(struct io_kiocb *req)
5515{
5516 struct io_ring_ctx *ctx = req->ctx;
5517 struct hlist_head *list;
5518
5519 list = &ctx->cancel_hash[hash_long(req->user_data, ctx->cancel_hash_bits)];
5520 hlist_add_head(&req->hash_node, list);
5521}
5522
5523static __poll_t __io_arm_poll_handler(struct io_kiocb *req,
5524 struct io_poll_iocb *poll,
5525 struct io_poll_table *ipt, __poll_t mask,
5526 wait_queue_func_t wake_func)
5527 __acquires(&ctx->completion_lock)
5528{
5529 struct io_ring_ctx *ctx = req->ctx;
5530 bool cancel = false;
5531
Pavel Begunkov4d52f332020-10-18 10:17:43 +01005532 INIT_HLIST_NODE(&req->hash_node);
Jens Axboe18bceab2020-05-15 11:56:54 -06005533 io_init_poll_iocb(poll, mask, wake_func);
Pavel Begunkovb90cd192020-06-21 13:09:52 +03005534 poll->file = req->file;
Jens Axboe18bceab2020-05-15 11:56:54 -06005535 poll->wait.private = req;
Jens Axboed7718a92020-02-14 22:23:12 -07005536
5537 ipt->pt._key = mask;
5538 ipt->req = req;
Pavel Begunkov68b11e82021-07-20 10:50:43 +01005539 ipt->error = 0;
5540 ipt->nr_entries = 0;
Jens Axboed7718a92020-02-14 22:23:12 -07005541
Jens Axboed7718a92020-02-14 22:23:12 -07005542 mask = vfs_poll(req->file, &ipt->pt) & poll->events;
Pavel Begunkov68b11e82021-07-20 10:50:43 +01005543 if (unlikely(!ipt->nr_entries) && !ipt->error)
5544 ipt->error = -EINVAL;
Jens Axboed7718a92020-02-14 22:23:12 -07005545
Jens Axboe79ebeae2021-08-10 15:18:27 -06005546 spin_lock(&ctx->completion_lock);
Hao Xua890d012021-07-28 11:03:22 +08005547 if (ipt->error || (mask && (poll->events & EPOLLONESHOT)))
Pavel Begunkov46fee9a2021-07-20 10:50:44 +01005548 io_poll_remove_double(req);
Jens Axboed7718a92020-02-14 22:23:12 -07005549 if (likely(poll->head)) {
Jens Axboe79ebeae2021-08-10 15:18:27 -06005550 spin_lock_irq(&poll->head->lock);
Jens Axboed7718a92020-02-14 22:23:12 -07005551 if (unlikely(list_empty(&poll->wait.entry))) {
5552 if (ipt->error)
5553 cancel = true;
5554 ipt->error = 0;
5555 mask = 0;
5556 }
Jens Axboe88e41cf2021-02-22 22:08:01 -07005557 if ((mask && (poll->events & EPOLLONESHOT)) || ipt->error)
Jens Axboed7718a92020-02-14 22:23:12 -07005558 list_del_init(&poll->wait.entry);
5559 else if (cancel)
5560 WRITE_ONCE(poll->canceled, true);
5561 else if (!poll->done) /* actually waiting for an event */
5562 io_poll_req_insert(req);
Jens Axboe79ebeae2021-08-10 15:18:27 -06005563 spin_unlock_irq(&poll->head->lock);
Jens Axboed7718a92020-02-14 22:23:12 -07005564 }
5565
5566 return mask;
5567}
5568
Olivier Langlois59b735a2021-06-22 05:17:39 -07005569enum {
5570 IO_APOLL_OK,
5571 IO_APOLL_ABORTED,
5572 IO_APOLL_READY
5573};
5574
5575static int io_arm_poll_handler(struct io_kiocb *req)
Jens Axboed7718a92020-02-14 22:23:12 -07005576{
5577 const struct io_op_def *def = &io_op_defs[req->opcode];
5578 struct io_ring_ctx *ctx = req->ctx;
5579 struct async_poll *apoll;
5580 struct io_poll_table ipt;
Pavel Begunkovb2d9c3d2021-06-26 21:40:44 +01005581 __poll_t ret, mask = EPOLLONESHOT | POLLERR | POLLPRI;
Jens Axboe9dab14b2020-08-25 12:27:50 -06005582 int rw;
Jens Axboed7718a92020-02-14 22:23:12 -07005583
5584 if (!req->file || !file_can_poll(req->file))
Olivier Langlois59b735a2021-06-22 05:17:39 -07005585 return IO_APOLL_ABORTED;
Pavel Begunkov24c74672020-06-21 13:09:51 +03005586 if (req->flags & REQ_F_POLLED)
Olivier Langlois59b735a2021-06-22 05:17:39 -07005587 return IO_APOLL_ABORTED;
Pavel Begunkovb2d9c3d2021-06-26 21:40:44 +01005588 if (!def->pollin && !def->pollout)
Olivier Langlois59b735a2021-06-22 05:17:39 -07005589 return IO_APOLL_ABORTED;
Pavel Begunkovb2d9c3d2021-06-26 21:40:44 +01005590
5591 if (def->pollin) {
5592 rw = READ;
5593 mask |= POLLIN | POLLRDNORM;
5594
5595 /* If reading from MSG_ERRQUEUE using recvmsg, ignore POLLIN */
5596 if ((req->opcode == IORING_OP_RECVMSG) &&
5597 (req->sr_msg.msg_flags & MSG_ERRQUEUE))
5598 mask &= ~POLLIN;
5599 } else {
5600 rw = WRITE;
5601 mask |= POLLOUT | POLLWRNORM;
5602 }
5603
Jens Axboe9dab14b2020-08-25 12:27:50 -06005604 /* if we can't nonblock try, then no point in arming a poll handler */
Pavel Begunkovb191e2d2021-08-09 13:04:03 +01005605 if (!io_file_supports_nowait(req, rw))
Olivier Langlois59b735a2021-06-22 05:17:39 -07005606 return IO_APOLL_ABORTED;
Jens Axboed7718a92020-02-14 22:23:12 -07005607
5608 apoll = kmalloc(sizeof(*apoll), GFP_ATOMIC);
5609 if (unlikely(!apoll))
Olivier Langlois59b735a2021-06-22 05:17:39 -07005610 return IO_APOLL_ABORTED;
Jens Axboe807abcb2020-07-17 17:09:27 -06005611 apoll->double_poll = NULL;
Jens Axboed7718a92020-02-14 22:23:12 -07005612 req->apoll = apoll;
Pavel Begunkovb2d9c3d2021-06-26 21:40:44 +01005613 req->flags |= REQ_F_POLLED;
Jens Axboed7718a92020-02-14 22:23:12 -07005614 ipt.pt._qproc = io_async_queue_proc;
Pavel Begunkov48dcd382021-08-15 10:40:18 +01005615 io_req_set_refcount(req);
Jens Axboed7718a92020-02-14 22:23:12 -07005616
5617 ret = __io_arm_poll_handler(req, &apoll->poll, &ipt, mask,
5618 io_async_wake);
Jens Axboe79ebeae2021-08-10 15:18:27 -06005619 spin_unlock(&ctx->completion_lock);
Hao Xu41a51692021-08-12 15:47:02 +08005620 if (ret || ipt.error)
5621 return ret ? IO_APOLL_READY : IO_APOLL_ABORTED;
5622
Olivier Langlois236daeae2021-05-31 02:36:37 -04005623 trace_io_uring_poll_arm(ctx, req, req->opcode, req->user_data,
5624 mask, apoll->poll.events);
Olivier Langlois59b735a2021-06-22 05:17:39 -07005625 return IO_APOLL_OK;
Jens Axboed7718a92020-02-14 22:23:12 -07005626}
5627
5628static bool __io_poll_remove_one(struct io_kiocb *req,
Jens Axboeb2e720a2021-03-31 09:03:03 -06005629 struct io_poll_iocb *poll, bool do_cancel)
Pavel Begunkove07785b2021-04-01 15:43:57 +01005630 __must_hold(&req->ctx->completion_lock)
Jens Axboed7718a92020-02-14 22:23:12 -07005631{
Jens Axboeb41e9852020-02-17 09:52:41 -07005632 bool do_complete = false;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005633
Jens Axboe50826202021-02-23 09:02:26 -07005634 if (!poll->head)
5635 return false;
Jens Axboe79ebeae2021-08-10 15:18:27 -06005636 spin_lock_irq(&poll->head->lock);
Jens Axboeb2e720a2021-03-31 09:03:03 -06005637 if (do_cancel)
5638 WRITE_ONCE(poll->canceled, true);
Jens Axboe392edb42019-12-09 17:52:20 -07005639 if (!list_empty(&poll->wait.entry)) {
5640 list_del_init(&poll->wait.entry);
Jens Axboeb41e9852020-02-17 09:52:41 -07005641 do_complete = true;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005642 }
Jens Axboe79ebeae2021-08-10 15:18:27 -06005643 spin_unlock_irq(&poll->head->lock);
Jens Axboe3bfa5bc2020-05-17 13:54:12 -06005644 hash_del(&req->hash_node);
Jens Axboed7718a92020-02-14 22:23:12 -07005645 return do_complete;
5646}
5647
Pavel Begunkov5d709042021-08-09 20:18:13 +01005648static bool io_poll_remove_one(struct io_kiocb *req)
Pavel Begunkove07785b2021-04-01 15:43:57 +01005649 __must_hold(&req->ctx->completion_lock)
Jens Axboed7718a92020-02-14 22:23:12 -07005650{
5651 bool do_complete;
5652
Jens Axboed4e7cd32020-08-15 11:44:50 -07005653 io_poll_remove_double(req);
Pavel Begunkove31001a2021-04-13 02:58:43 +01005654 do_complete = __io_poll_remove_one(req, io_poll_get_single(req), true);
Jens Axboed4e7cd32020-08-15 11:44:50 -07005655
Jens Axboeb41e9852020-02-17 09:52:41 -07005656 if (do_complete) {
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01005657 io_cqring_fill_event(req->ctx, req->user_data, -ECANCELED, 0);
Jens Axboeb41e9852020-02-17 09:52:41 -07005658 io_commit_cqring(req->ctx);
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01005659 req_set_fail(req);
Pavel Begunkov91c2f692021-08-11 19:28:28 +01005660 io_put_req_deferred(req);
Pavel Begunkov5d709042021-08-09 20:18:13 +01005661 }
Jens Axboeb41e9852020-02-17 09:52:41 -07005662 return do_complete;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005663}
5664
Jens Axboe76e1b642020-09-26 15:05:03 -06005665/*
5666 * Returns true if we found and killed one or more poll requests
5667 */
Pavel Begunkovc0724812021-10-04 20:02:54 +01005668static __cold bool io_poll_remove_all(struct io_ring_ctx *ctx,
5669 struct task_struct *tsk, bool cancel_all)
Jens Axboe221c5eb2019-01-17 09:41:58 -07005670{
Jens Axboe78076bb2019-12-04 19:56:40 -07005671 struct hlist_node *tmp;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005672 struct io_kiocb *req;
Jens Axboe8e2e1fa2020-04-13 17:05:14 -06005673 int posted = 0, i;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005674
Jens Axboe79ebeae2021-08-10 15:18:27 -06005675 spin_lock(&ctx->completion_lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07005676 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
5677 struct hlist_head *list;
5678
5679 list = &ctx->cancel_hash[i];
Jens Axboef3606e32020-09-22 08:18:24 -06005680 hlist_for_each_entry_safe(req, tmp, list, hash_node) {
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01005681 if (io_match_task(req, tsk, cancel_all))
Jens Axboef3606e32020-09-22 08:18:24 -06005682 posted += io_poll_remove_one(req);
5683 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07005684 }
Jens Axboe79ebeae2021-08-10 15:18:27 -06005685 spin_unlock(&ctx->completion_lock);
Jens Axboeb41e9852020-02-17 09:52:41 -07005686
Jens Axboe8e2e1fa2020-04-13 17:05:14 -06005687 if (posted)
5688 io_cqring_ev_posted(ctx);
Jens Axboe76e1b642020-09-26 15:05:03 -06005689
5690 return posted != 0;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005691}
5692
Pavel Begunkov9ba5fac2021-04-14 13:38:35 +01005693static struct io_kiocb *io_poll_find(struct io_ring_ctx *ctx, __u64 sqe_addr,
5694 bool poll_only)
Pavel Begunkove07785b2021-04-01 15:43:57 +01005695 __must_hold(&ctx->completion_lock)
Jens Axboe47f46762019-11-09 17:43:02 -07005696{
Jens Axboe78076bb2019-12-04 19:56:40 -07005697 struct hlist_head *list;
Jens Axboe47f46762019-11-09 17:43:02 -07005698 struct io_kiocb *req;
5699
Jens Axboe78076bb2019-12-04 19:56:40 -07005700 list = &ctx->cancel_hash[hash_long(sqe_addr, ctx->cancel_hash_bits)];
5701 hlist_for_each_entry(req, list, hash_node) {
Jens Axboeb41e9852020-02-17 09:52:41 -07005702 if (sqe_addr != req->user_data)
5703 continue;
Pavel Begunkov9ba5fac2021-04-14 13:38:35 +01005704 if (poll_only && req->opcode != IORING_OP_POLL_ADD)
5705 continue;
Jens Axboeb2cb8052021-03-17 08:17:19 -06005706 return req;
Jens Axboe47f46762019-11-09 17:43:02 -07005707 }
Jens Axboeb2cb8052021-03-17 08:17:19 -06005708 return NULL;
Jens Axboe47f46762019-11-09 17:43:02 -07005709}
5710
Pavel Begunkov9ba5fac2021-04-14 13:38:35 +01005711static int io_poll_cancel(struct io_ring_ctx *ctx, __u64 sqe_addr,
5712 bool poll_only)
Pavel Begunkove07785b2021-04-01 15:43:57 +01005713 __must_hold(&ctx->completion_lock)
Jens Axboeb2cb8052021-03-17 08:17:19 -06005714{
5715 struct io_kiocb *req;
5716
Pavel Begunkov9ba5fac2021-04-14 13:38:35 +01005717 req = io_poll_find(ctx, sqe_addr, poll_only);
Jens Axboeb2cb8052021-03-17 08:17:19 -06005718 if (!req)
5719 return -ENOENT;
5720 if (io_poll_remove_one(req))
5721 return 0;
5722
5723 return -EALREADY;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005724}
5725
Pavel Begunkov9096af32021-04-14 13:38:36 +01005726static __poll_t io_poll_parse_events(const struct io_uring_sqe *sqe,
5727 unsigned int flags)
5728{
5729 u32 events;
5730
5731 events = READ_ONCE(sqe->poll32_events);
5732#ifdef __BIG_ENDIAN
5733 events = swahw32(events);
5734#endif
5735 if (!(flags & IORING_POLL_ADD_MULTI))
5736 events |= EPOLLONESHOT;
5737 return demangle_poll(events) | (events & (EPOLLEXCLUSIVE|EPOLLONESHOT));
5738}
5739
Pavel Begunkovc5de0032021-04-14 13:38:37 +01005740static int io_poll_update_prep(struct io_kiocb *req,
Jens Axboe3529d8c2019-12-19 18:24:38 -07005741 const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07005742{
Pavel Begunkovc5de0032021-04-14 13:38:37 +01005743 struct io_poll_update *upd = &req->poll_update;
5744 u32 flags;
5745
Jens Axboe221c5eb2019-01-17 09:41:58 -07005746 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
5747 return -EINVAL;
Pavel Begunkov26578cd2021-08-20 10:36:37 +01005748 if (sqe->ioprio || sqe->buf_index || sqe->splice_fd_in)
Pavel Begunkovc5de0032021-04-14 13:38:37 +01005749 return -EINVAL;
5750 flags = READ_ONCE(sqe->len);
5751 if (flags & ~(IORING_POLL_UPDATE_EVENTS | IORING_POLL_UPDATE_USER_DATA |
5752 IORING_POLL_ADD_MULTI))
5753 return -EINVAL;
5754 /* meaningless without update */
5755 if (flags == IORING_POLL_ADD_MULTI)
Jens Axboe221c5eb2019-01-17 09:41:58 -07005756 return -EINVAL;
5757
Pavel Begunkovc5de0032021-04-14 13:38:37 +01005758 upd->old_user_data = READ_ONCE(sqe->addr);
5759 upd->update_events = flags & IORING_POLL_UPDATE_EVENTS;
5760 upd->update_user_data = flags & IORING_POLL_UPDATE_USER_DATA;
Jens Axboe0969e782019-12-17 18:40:57 -07005761
Pavel Begunkovc5de0032021-04-14 13:38:37 +01005762 upd->new_user_data = READ_ONCE(sqe->off);
5763 if (!upd->update_user_data && upd->new_user_data)
5764 return -EINVAL;
5765 if (upd->update_events)
5766 upd->events = io_poll_parse_events(sqe, flags);
5767 else if (sqe->poll32_events)
5768 return -EINVAL;
Jens Axboe0969e782019-12-17 18:40:57 -07005769
Jens Axboe221c5eb2019-01-17 09:41:58 -07005770 return 0;
5771}
5772
Jens Axboe221c5eb2019-01-17 09:41:58 -07005773static int io_poll_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
5774 void *key)
5775{
Jens Axboec2f2eb72020-02-10 09:07:05 -07005776 struct io_kiocb *req = wait->private;
5777 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005778
Jens Axboed7718a92020-02-14 22:23:12 -07005779 return __io_async_wake(req, poll, key_to_poll(key), io_poll_task_func);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005780}
5781
Jens Axboe221c5eb2019-01-17 09:41:58 -07005782static void io_poll_queue_proc(struct file *file, struct wait_queue_head *head,
5783 struct poll_table_struct *p)
5784{
5785 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
5786
Jens Axboee8c2bc12020-08-15 18:44:09 -07005787 __io_queue_proc(&pt->req->poll, pt, head, (struct io_poll_iocb **) &pt->req->async_data);
Jens Axboeeac406c2019-11-14 12:09:58 -07005788}
5789
Jens Axboe3529d8c2019-12-19 18:24:38 -07005790static int io_poll_add_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07005791{
5792 struct io_poll_iocb *poll = &req->poll;
Pavel Begunkovc5de0032021-04-14 13:38:37 +01005793 u32 flags;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005794
5795 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
5796 return -EINVAL;
Pavel Begunkovc5de0032021-04-14 13:38:37 +01005797 if (sqe->ioprio || sqe->buf_index || sqe->off || sqe->addr)
Jens Axboe88e41cf2021-02-22 22:08:01 -07005798 return -EINVAL;
5799 flags = READ_ONCE(sqe->len);
Pavel Begunkovc5de0032021-04-14 13:38:37 +01005800 if (flags & ~IORING_POLL_ADD_MULTI)
Jens Axboe221c5eb2019-01-17 09:41:58 -07005801 return -EINVAL;
5802
Pavel Begunkov48dcd382021-08-15 10:40:18 +01005803 io_req_set_refcount(req);
Pavel Begunkovc5de0032021-04-14 13:38:37 +01005804 poll->events = io_poll_parse_events(sqe, flags);
Jens Axboe0969e782019-12-17 18:40:57 -07005805 return 0;
5806}
5807
Pavel Begunkov61e98202021-02-10 00:03:08 +00005808static int io_poll_add(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe0969e782019-12-17 18:40:57 -07005809{
5810 struct io_poll_iocb *poll = &req->poll;
5811 struct io_ring_ctx *ctx = req->ctx;
5812 struct io_poll_table ipt;
Jens Axboe0969e782019-12-17 18:40:57 -07005813 __poll_t mask;
Hao Xu5b7aa382021-09-22 18:12:38 +08005814 bool done;
Jens Axboe0969e782019-12-17 18:40:57 -07005815
Jens Axboed7718a92020-02-14 22:23:12 -07005816 ipt.pt._qproc = io_poll_queue_proc;
Jens Axboe36703242019-07-25 10:20:18 -06005817
Jens Axboed7718a92020-02-14 22:23:12 -07005818 mask = __io_arm_poll_handler(req, &req->poll, &ipt, poll->events,
5819 io_poll_wake);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005820
Jens Axboe8c838782019-03-12 15:48:16 -06005821 if (mask) { /* no async, we'd stolen it */
Jens Axboe8c838782019-03-12 15:48:16 -06005822 ipt.error = 0;
Pavel Begunkoveb6e6f02021-10-04 20:02:59 +01005823 done = __io_poll_complete(req, mask);
5824 io_commit_cqring(req->ctx);
Jens Axboe8c838782019-03-12 15:48:16 -06005825 }
Jens Axboe79ebeae2021-08-10 15:18:27 -06005826 spin_unlock(&ctx->completion_lock);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005827
Jens Axboe8c838782019-03-12 15:48:16 -06005828 if (mask) {
5829 io_cqring_ev_posted(ctx);
Hao Xu5b7aa382021-09-22 18:12:38 +08005830 if (done)
Jens Axboe88e41cf2021-02-22 22:08:01 -07005831 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005832 }
Jens Axboe8c838782019-03-12 15:48:16 -06005833 return ipt.error;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005834}
5835
Pavel Begunkovc5de0032021-04-14 13:38:37 +01005836static int io_poll_update(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboeb69de282021-03-17 08:37:41 -06005837{
5838 struct io_ring_ctx *ctx = req->ctx;
5839 struct io_kiocb *preq;
Jens Axboecb3b200e2021-04-06 09:49:31 -06005840 bool completing;
Jens Axboeb69de282021-03-17 08:37:41 -06005841 int ret;
5842
Jens Axboe79ebeae2021-08-10 15:18:27 -06005843 spin_lock(&ctx->completion_lock);
Pavel Begunkov9ba5fac2021-04-14 13:38:35 +01005844 preq = io_poll_find(ctx, req->poll_update.old_user_data, true);
Jens Axboeb69de282021-03-17 08:37:41 -06005845 if (!preq) {
5846 ret = -ENOENT;
5847 goto err;
Jens Axboeb69de282021-03-17 08:37:41 -06005848 }
Jens Axboecb3b200e2021-04-06 09:49:31 -06005849
Pavel Begunkovc5de0032021-04-14 13:38:37 +01005850 if (!req->poll_update.update_events && !req->poll_update.update_user_data) {
5851 completing = true;
5852 ret = io_poll_remove_one(preq) ? 0 : -EALREADY;
5853 goto err;
5854 }
5855
Jens Axboecb3b200e2021-04-06 09:49:31 -06005856 /*
5857 * Don't allow racy completion with singleshot, as we cannot safely
5858 * update those. For multishot, if we're racing with completion, just
5859 * let completion re-add it.
5860 */
5861 completing = !__io_poll_remove_one(preq, &preq->poll, false);
5862 if (completing && (preq->poll.events & EPOLLONESHOT)) {
5863 ret = -EALREADY;
5864 goto err;
Jens Axboeb69de282021-03-17 08:37:41 -06005865 }
5866 /* we now have a detached poll request. reissue. */
5867 ret = 0;
5868err:
Jens Axboeb69de282021-03-17 08:37:41 -06005869 if (ret < 0) {
Jens Axboe79ebeae2021-08-10 15:18:27 -06005870 spin_unlock(&ctx->completion_lock);
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01005871 req_set_fail(req);
Jens Axboeb69de282021-03-17 08:37:41 -06005872 io_req_complete(req, ret);
5873 return 0;
5874 }
5875 /* only mask one event flags, keep behavior flags */
Pavel Begunkov9d805892021-04-13 02:58:40 +01005876 if (req->poll_update.update_events) {
Jens Axboeb69de282021-03-17 08:37:41 -06005877 preq->poll.events &= ~0xffff;
Pavel Begunkov9d805892021-04-13 02:58:40 +01005878 preq->poll.events |= req->poll_update.events & 0xffff;
Jens Axboeb69de282021-03-17 08:37:41 -06005879 preq->poll.events |= IO_POLL_UNMASK;
5880 }
Pavel Begunkov9d805892021-04-13 02:58:40 +01005881 if (req->poll_update.update_user_data)
5882 preq->user_data = req->poll_update.new_user_data;
Jens Axboe79ebeae2021-08-10 15:18:27 -06005883 spin_unlock(&ctx->completion_lock);
Jens Axboecb3b200e2021-04-06 09:49:31 -06005884
Jens Axboeb69de282021-03-17 08:37:41 -06005885 /* complete update request, we're done with it */
5886 io_req_complete(req, ret);
5887
Jens Axboecb3b200e2021-04-06 09:49:31 -06005888 if (!completing) {
Pavel Begunkovc5de0032021-04-14 13:38:37 +01005889 ret = io_poll_add(preq, issue_flags);
Jens Axboecb3b200e2021-04-06 09:49:31 -06005890 if (ret < 0) {
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01005891 req_set_fail(preq);
Jens Axboecb3b200e2021-04-06 09:49:31 -06005892 io_req_complete(preq, ret);
5893 }
Jens Axboeb69de282021-03-17 08:37:41 -06005894 }
5895 return 0;
5896}
5897
Pavel Begunkovf237c302021-08-18 12:42:46 +01005898static void io_req_task_timeout(struct io_kiocb *req, bool *locked)
Jens Axboe89850fc2021-08-10 15:11:51 -06005899{
Pavel Begunkov62245902021-10-02 19:36:14 +01005900 struct io_timeout_data *data = req->async_data;
5901
5902 if (!(data->flags & IORING_TIMEOUT_ETIME_SUCCESS))
5903 req_set_fail(req);
Pavel Begunkov505657b2021-08-17 20:28:09 +01005904 io_req_complete_post(req, -ETIME, 0);
Jens Axboe89850fc2021-08-10 15:11:51 -06005905}
5906
Jens Axboe5262f562019-09-17 12:26:57 -06005907static enum hrtimer_restart io_timeout_fn(struct hrtimer *timer)
5908{
Jens Axboead8a48a2019-11-15 08:49:11 -07005909 struct io_timeout_data *data = container_of(timer,
5910 struct io_timeout_data, timer);
5911 struct io_kiocb *req = data->req;
5912 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5262f562019-09-17 12:26:57 -06005913 unsigned long flags;
5914
Jens Axboe89850fc2021-08-10 15:11:51 -06005915 spin_lock_irqsave(&ctx->timeout_lock, flags);
Pavel Begunkova71976f2020-10-10 18:34:11 +01005916 list_del_init(&req->timeout.list);
Pavel Begunkov01cec8c2020-07-30 18:43:50 +03005917 atomic_set(&req->ctx->cq_timeouts,
5918 atomic_read(&req->ctx->cq_timeouts) + 1);
Jens Axboe89850fc2021-08-10 15:11:51 -06005919 spin_unlock_irqrestore(&ctx->timeout_lock, flags);
Pavel Begunkov01cec8c2020-07-30 18:43:50 +03005920
Jens Axboe89850fc2021-08-10 15:11:51 -06005921 req->io_task_work.func = io_req_task_timeout;
5922 io_req_task_work_add(req);
Jens Axboe5262f562019-09-17 12:26:57 -06005923 return HRTIMER_NORESTART;
5924}
5925
Pavel Begunkovfbd15842020-11-30 19:11:15 +00005926static struct io_kiocb *io_timeout_extract(struct io_ring_ctx *ctx,
5927 __u64 user_data)
Jens Axboe89850fc2021-08-10 15:11:51 -06005928 __must_hold(&ctx->timeout_lock)
Jens Axboe47f46762019-11-09 17:43:02 -07005929{
Pavel Begunkovfbd15842020-11-30 19:11:15 +00005930 struct io_timeout_data *io;
Jens Axboef254ac02020-08-12 17:33:30 -06005931 struct io_kiocb *req;
Pavel Begunkovfd9c7bc2021-04-13 02:58:42 +01005932 bool found = false;
Jens Axboef254ac02020-08-12 17:33:30 -06005933
5934 list_for_each_entry(req, &ctx->timeout_list, timeout.list) {
Pavel Begunkovfd9c7bc2021-04-13 02:58:42 +01005935 found = user_data == req->user_data;
5936 if (found)
Jens Axboef254ac02020-08-12 17:33:30 -06005937 break;
Jens Axboef254ac02020-08-12 17:33:30 -06005938 }
Pavel Begunkovfd9c7bc2021-04-13 02:58:42 +01005939 if (!found)
5940 return ERR_PTR(-ENOENT);
Jens Axboef254ac02020-08-12 17:33:30 -06005941
Pavel Begunkovfbd15842020-11-30 19:11:15 +00005942 io = req->async_data;
Pavel Begunkovfd9c7bc2021-04-13 02:58:42 +01005943 if (hrtimer_try_to_cancel(&io->timer) == -1)
Pavel Begunkovfbd15842020-11-30 19:11:15 +00005944 return ERR_PTR(-EALREADY);
5945 list_del_init(&req->timeout.list);
5946 return req;
5947}
5948
5949static int io_timeout_cancel(struct io_ring_ctx *ctx, __u64 user_data)
Pavel Begunkovec3c3d02021-08-18 10:50:52 +01005950 __must_hold(&ctx->completion_lock)
Jens Axboe89850fc2021-08-10 15:11:51 -06005951 __must_hold(&ctx->timeout_lock)
Pavel Begunkovfbd15842020-11-30 19:11:15 +00005952{
5953 struct io_kiocb *req = io_timeout_extract(ctx, user_data);
5954
5955 if (IS_ERR(req))
5956 return PTR_ERR(req);
5957
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01005958 req_set_fail(req);
Pavel Begunkovd4d19c12021-04-25 14:32:17 +01005959 io_cqring_fill_event(ctx, req->user_data, -ECANCELED, 0);
Pavel Begunkov91c2f692021-08-11 19:28:28 +01005960 io_put_req_deferred(req);
Pavel Begunkovfbd15842020-11-30 19:11:15 +00005961 return 0;
Jens Axboef254ac02020-08-12 17:33:30 -06005962}
5963
Jens Axboe50c1df22021-08-27 17:11:06 -06005964static clockid_t io_timeout_get_clock(struct io_timeout_data *data)
5965{
5966 switch (data->flags & IORING_TIMEOUT_CLOCK_MASK) {
5967 case IORING_TIMEOUT_BOOTTIME:
5968 return CLOCK_BOOTTIME;
5969 case IORING_TIMEOUT_REALTIME:
5970 return CLOCK_REALTIME;
5971 default:
5972 /* can't happen, vetted at prep time */
5973 WARN_ON_ONCE(1);
5974 fallthrough;
5975 case 0:
5976 return CLOCK_MONOTONIC;
5977 }
5978}
5979
Pavel Begunkovf1042b62021-08-28 19:54:39 -06005980static int io_linked_timeout_update(struct io_ring_ctx *ctx, __u64 user_data,
5981 struct timespec64 *ts, enum hrtimer_mode mode)
5982 __must_hold(&ctx->timeout_lock)
5983{
5984 struct io_timeout_data *io;
5985 struct io_kiocb *req;
5986 bool found = false;
5987
5988 list_for_each_entry(req, &ctx->ltimeout_list, timeout.list) {
5989 found = user_data == req->user_data;
5990 if (found)
5991 break;
5992 }
5993 if (!found)
5994 return -ENOENT;
5995
5996 io = req->async_data;
5997 if (hrtimer_try_to_cancel(&io->timer) == -1)
5998 return -EALREADY;
5999 hrtimer_init(&io->timer, io_timeout_get_clock(io), mode);
6000 io->timer.function = io_link_timeout_fn;
6001 hrtimer_start(&io->timer, timespec64_to_ktime(*ts), mode);
6002 return 0;
6003}
6004
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +00006005static int io_timeout_update(struct io_ring_ctx *ctx, __u64 user_data,
6006 struct timespec64 *ts, enum hrtimer_mode mode)
Jens Axboe89850fc2021-08-10 15:11:51 -06006007 __must_hold(&ctx->timeout_lock)
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +00006008{
6009 struct io_kiocb *req = io_timeout_extract(ctx, user_data);
6010 struct io_timeout_data *data;
6011
6012 if (IS_ERR(req))
6013 return PTR_ERR(req);
6014
6015 req->timeout.off = 0; /* noseq */
6016 data = req->async_data;
6017 list_add_tail(&req->timeout.list, &ctx->timeout_list);
Jens Axboe50c1df22021-08-27 17:11:06 -06006018 hrtimer_init(&data->timer, io_timeout_get_clock(data), mode);
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +00006019 data->timer.function = io_timeout_fn;
6020 hrtimer_start(&data->timer, timespec64_to_ktime(*ts), mode);
6021 return 0;
Jens Axboe47f46762019-11-09 17:43:02 -07006022}
6023
Jens Axboe3529d8c2019-12-19 18:24:38 -07006024static int io_timeout_remove_prep(struct io_kiocb *req,
6025 const struct io_uring_sqe *sqe)
Jens Axboeb29472e2019-12-17 18:50:29 -07006026{
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +00006027 struct io_timeout_rem *tr = &req->timeout_rem;
6028
Jens Axboeb29472e2019-12-17 18:50:29 -07006029 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
6030 return -EINVAL;
Daniele Albano61710e42020-07-18 14:15:16 -06006031 if (unlikely(req->flags & (REQ_F_FIXED_FILE | REQ_F_BUFFER_SELECT)))
6032 return -EINVAL;
Pavel Begunkov26578cd2021-08-20 10:36:37 +01006033 if (sqe->ioprio || sqe->buf_index || sqe->len || sqe->splice_fd_in)
Jens Axboeb29472e2019-12-17 18:50:29 -07006034 return -EINVAL;
6035
Pavel Begunkovf1042b62021-08-28 19:54:39 -06006036 tr->ltimeout = false;
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +00006037 tr->addr = READ_ONCE(sqe->addr);
6038 tr->flags = READ_ONCE(sqe->timeout_flags);
Pavel Begunkovf1042b62021-08-28 19:54:39 -06006039 if (tr->flags & IORING_TIMEOUT_UPDATE_MASK) {
6040 if (hweight32(tr->flags & IORING_TIMEOUT_CLOCK_MASK) > 1)
6041 return -EINVAL;
6042 if (tr->flags & IORING_LINK_TIMEOUT_UPDATE)
6043 tr->ltimeout = true;
6044 if (tr->flags & ~(IORING_TIMEOUT_UPDATE_MASK|IORING_TIMEOUT_ABS))
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +00006045 return -EINVAL;
6046 if (get_timespec64(&tr->ts, u64_to_user_ptr(sqe->addr2)))
6047 return -EFAULT;
6048 } else if (tr->flags) {
6049 /* timeout removal doesn't support flags */
6050 return -EINVAL;
6051 }
6052
Jens Axboeb29472e2019-12-17 18:50:29 -07006053 return 0;
6054}
6055
Pavel Begunkov8662dae2021-01-19 13:32:44 +00006056static inline enum hrtimer_mode io_translate_timeout_mode(unsigned int flags)
6057{
6058 return (flags & IORING_TIMEOUT_ABS) ? HRTIMER_MODE_ABS
6059 : HRTIMER_MODE_REL;
6060}
6061
Jens Axboe11365042019-10-16 09:08:32 -06006062/*
6063 * Remove or update an existing timeout command
6064 */
Pavel Begunkov61e98202021-02-10 00:03:08 +00006065static int io_timeout_remove(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe11365042019-10-16 09:08:32 -06006066{
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +00006067 struct io_timeout_rem *tr = &req->timeout_rem;
Jens Axboe11365042019-10-16 09:08:32 -06006068 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe47f46762019-11-09 17:43:02 -07006069 int ret;
Jens Axboe11365042019-10-16 09:08:32 -06006070
Pavel Begunkovec3c3d02021-08-18 10:50:52 +01006071 if (!(req->timeout_rem.flags & IORING_TIMEOUT_UPDATE)) {
6072 spin_lock(&ctx->completion_lock);
6073 spin_lock_irq(&ctx->timeout_lock);
Pavel Begunkov9c8e11b2020-11-30 19:11:16 +00006074 ret = io_timeout_cancel(ctx, tr->addr);
Pavel Begunkovec3c3d02021-08-18 10:50:52 +01006075 spin_unlock_irq(&ctx->timeout_lock);
6076 spin_unlock(&ctx->completion_lock);
6077 } else {
Pavel Begunkovf1042b62021-08-28 19:54:39 -06006078 enum hrtimer_mode mode = io_translate_timeout_mode(tr->flags);
6079
Pavel Begunkovec3c3d02021-08-18 10:50:52 +01006080 spin_lock_irq(&ctx->timeout_lock);
Pavel Begunkovf1042b62021-08-28 19:54:39 -06006081 if (tr->ltimeout)
6082 ret = io_linked_timeout_update(ctx, tr->addr, &tr->ts, mode);
6083 else
6084 ret = io_timeout_update(ctx, tr->addr, &tr->ts, mode);
Pavel Begunkovec3c3d02021-08-18 10:50:52 +01006085 spin_unlock_irq(&ctx->timeout_lock);
6086 }
Jens Axboe11365042019-10-16 09:08:32 -06006087
Jens Axboe4e88d6e2019-12-07 20:59:47 -07006088 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01006089 req_set_fail(req);
Pavel Begunkov505657b2021-08-17 20:28:09 +01006090 io_req_complete_post(req, ret, 0);
Jens Axboe11365042019-10-16 09:08:32 -06006091 return 0;
Jens Axboe5262f562019-09-17 12:26:57 -06006092}
6093
Jens Axboe3529d8c2019-12-19 18:24:38 -07006094static int io_timeout_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboe2d283902019-12-04 11:08:05 -07006095 bool is_timeout_link)
Jens Axboe5262f562019-09-17 12:26:57 -06006096{
Jens Axboead8a48a2019-11-15 08:49:11 -07006097 struct io_timeout_data *data;
Jens Axboea41525a2019-10-15 16:48:15 -06006098 unsigned flags;
Pavel Begunkov56080b02020-05-26 20:34:04 +03006099 u32 off = READ_ONCE(sqe->off);
Jens Axboe5262f562019-09-17 12:26:57 -06006100
Jens Axboead8a48a2019-11-15 08:49:11 -07006101 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe5262f562019-09-17 12:26:57 -06006102 return -EINVAL;
Pavel Begunkov26578cd2021-08-20 10:36:37 +01006103 if (sqe->ioprio || sqe->buf_index || sqe->len != 1 ||
6104 sqe->splice_fd_in)
Jens Axboea41525a2019-10-15 16:48:15 -06006105 return -EINVAL;
Pavel Begunkov56080b02020-05-26 20:34:04 +03006106 if (off && is_timeout_link)
Jens Axboe2d283902019-12-04 11:08:05 -07006107 return -EINVAL;
Jens Axboea41525a2019-10-15 16:48:15 -06006108 flags = READ_ONCE(sqe->timeout_flags);
Pavel Begunkov62245902021-10-02 19:36:14 +01006109 if (flags & ~(IORING_TIMEOUT_ABS | IORING_TIMEOUT_CLOCK_MASK |
6110 IORING_TIMEOUT_ETIME_SUCCESS))
Jens Axboe50c1df22021-08-27 17:11:06 -06006111 return -EINVAL;
6112 /* more than one clock specified is invalid, obviously */
6113 if (hweight32(flags & IORING_TIMEOUT_CLOCK_MASK) > 1)
Jens Axboe5262f562019-09-17 12:26:57 -06006114 return -EINVAL;
Arnd Bergmannbdf20072019-10-01 09:53:29 -06006115
Pavel Begunkovef9dd632021-08-28 19:54:38 -06006116 INIT_LIST_HEAD(&req->timeout.list);
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03006117 req->timeout.off = off;
Pavel Begunkovf18ee4c2021-06-14 23:37:25 +01006118 if (unlikely(off && !req->ctx->off_timeout_used))
6119 req->ctx->off_timeout_used = true;
Jens Axboe26a61672019-12-20 09:02:01 -07006120
Pavel Begunkovd886e182021-10-04 20:02:56 +01006121 if (!req_has_async_data(req) && io_alloc_async_data(req))
Jens Axboe26a61672019-12-20 09:02:01 -07006122 return -ENOMEM;
6123
Jens Axboee8c2bc12020-08-15 18:44:09 -07006124 data = req->async_data;
Jens Axboead8a48a2019-11-15 08:49:11 -07006125 data->req = req;
Jens Axboe50c1df22021-08-27 17:11:06 -06006126 data->flags = flags;
Jens Axboead8a48a2019-11-15 08:49:11 -07006127
6128 if (get_timespec64(&data->ts, u64_to_user_ptr(sqe->addr)))
Jens Axboe5262f562019-09-17 12:26:57 -06006129 return -EFAULT;
6130
Pavel Begunkov8662dae2021-01-19 13:32:44 +00006131 data->mode = io_translate_timeout_mode(flags);
Jens Axboe50c1df22021-08-27 17:11:06 -06006132 hrtimer_init(&data->timer, io_timeout_get_clock(data), data->mode);
Pavel Begunkovb97e7362021-08-15 10:40:23 +01006133
6134 if (is_timeout_link) {
6135 struct io_submit_link *link = &req->ctx->submit_state.link;
6136
6137 if (!link->head)
6138 return -EINVAL;
6139 if (link->last->opcode == IORING_OP_LINK_TIMEOUT)
6140 return -EINVAL;
Pavel Begunkov4d13d1a2021-08-15 10:40:24 +01006141 req->timeout.head = link->last;
6142 link->last->flags |= REQ_F_ARM_LTIMEOUT;
Pavel Begunkovb97e7362021-08-15 10:40:23 +01006143 }
Jens Axboead8a48a2019-11-15 08:49:11 -07006144 return 0;
6145}
6146
Pavel Begunkov61e98202021-02-10 00:03:08 +00006147static int io_timeout(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboead8a48a2019-11-15 08:49:11 -07006148{
Jens Axboead8a48a2019-11-15 08:49:11 -07006149 struct io_ring_ctx *ctx = req->ctx;
Jens Axboee8c2bc12020-08-15 18:44:09 -07006150 struct io_timeout_data *data = req->async_data;
Jens Axboead8a48a2019-11-15 08:49:11 -07006151 struct list_head *entry;
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03006152 u32 tail, off = req->timeout.off;
Jens Axboead8a48a2019-11-15 08:49:11 -07006153
Jens Axboe89850fc2021-08-10 15:11:51 -06006154 spin_lock_irq(&ctx->timeout_lock);
Jens Axboe93bd25b2019-11-11 23:34:31 -07006155
Jens Axboe5262f562019-09-17 12:26:57 -06006156 /*
6157 * sqe->off holds how many events that need to occur for this
Jens Axboe93bd25b2019-11-11 23:34:31 -07006158 * timeout event to be satisfied. If it isn't set, then this is
6159 * a pure timeout request, sequence isn't used.
Jens Axboe5262f562019-09-17 12:26:57 -06006160 */
Pavel Begunkov8eb7e2d2020-06-29 13:13:02 +03006161 if (io_is_timeout_noseq(req)) {
Jens Axboe93bd25b2019-11-11 23:34:31 -07006162 entry = ctx->timeout_list.prev;
6163 goto add;
6164 }
Jens Axboe5262f562019-09-17 12:26:57 -06006165
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03006166 tail = ctx->cached_cq_tail - atomic_read(&ctx->cq_timeouts);
6167 req->timeout.target_seq = tail + off;
Jens Axboe5262f562019-09-17 12:26:57 -06006168
Marcelo Diop-Gonzalezf0105052021-01-15 11:54:40 -05006169 /* Update the last seq here in case io_flush_timeouts() hasn't.
6170 * This is safe because ->completion_lock is held, and submissions
6171 * and completions are never mixed in the same ->completion_lock section.
6172 */
6173 ctx->cq_last_tm_flush = tail;
6174
Jens Axboe5262f562019-09-17 12:26:57 -06006175 /*
6176 * Insertion sort, ensuring the first entry in the list is always
6177 * the one we need first.
6178 */
Jens Axboe5262f562019-09-17 12:26:57 -06006179 list_for_each_prev(entry, &ctx->timeout_list) {
Pavel Begunkov135fcde2020-07-13 23:37:12 +03006180 struct io_kiocb *nxt = list_entry(entry, struct io_kiocb,
6181 timeout.list);
Jens Axboe5262f562019-09-17 12:26:57 -06006182
Pavel Begunkov8eb7e2d2020-06-29 13:13:02 +03006183 if (io_is_timeout_noseq(nxt))
Jens Axboe93bd25b2019-11-11 23:34:31 -07006184 continue;
Pavel Begunkovbfe68a22020-05-30 14:54:18 +03006185 /* nxt.seq is behind @tail, otherwise would've been completed */
6186 if (off >= nxt->timeout.target_seq - tail)
Jens Axboe5262f562019-09-17 12:26:57 -06006187 break;
6188 }
Jens Axboe93bd25b2019-11-11 23:34:31 -07006189add:
Pavel Begunkov135fcde2020-07-13 23:37:12 +03006190 list_add(&req->timeout.list, entry);
Jens Axboead8a48a2019-11-15 08:49:11 -07006191 data->timer.function = io_timeout_fn;
6192 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts), data->mode);
Jens Axboe89850fc2021-08-10 15:11:51 -06006193 spin_unlock_irq(&ctx->timeout_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06006194 return 0;
6195}
6196
Pavel Begunkovf458dd842021-03-08 12:14:14 +00006197struct io_cancel_data {
6198 struct io_ring_ctx *ctx;
6199 u64 user_data;
6200};
6201
Jens Axboe62755e32019-10-28 21:49:21 -06006202static bool io_cancel_cb(struct io_wq_work *work, void *data)
Jens Axboede0617e2019-04-06 21:51:27 -06006203{
Jens Axboe62755e32019-10-28 21:49:21 -06006204 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Pavel Begunkovf458dd842021-03-08 12:14:14 +00006205 struct io_cancel_data *cd = data;
Jens Axboede0617e2019-04-06 21:51:27 -06006206
Pavel Begunkovf458dd842021-03-08 12:14:14 +00006207 return req->ctx == cd->ctx && req->user_data == cd->user_data;
Jens Axboe62755e32019-10-28 21:49:21 -06006208}
6209
Pavel Begunkovf458dd842021-03-08 12:14:14 +00006210static int io_async_cancel_one(struct io_uring_task *tctx, u64 user_data,
6211 struct io_ring_ctx *ctx)
Jens Axboe62755e32019-10-28 21:49:21 -06006212{
Pavel Begunkovf458dd842021-03-08 12:14:14 +00006213 struct io_cancel_data data = { .ctx = ctx, .user_data = user_data, };
Jens Axboe62755e32019-10-28 21:49:21 -06006214 enum io_wq_cancel cancel_ret;
Jens Axboe62755e32019-10-28 21:49:21 -06006215 int ret = 0;
6216
Pavel Begunkovf458dd842021-03-08 12:14:14 +00006217 if (!tctx || !tctx->io_wq)
Jens Axboe5aa75ed2021-02-16 12:56:50 -07006218 return -ENOENT;
6219
Pavel Begunkovf458dd842021-03-08 12:14:14 +00006220 cancel_ret = io_wq_cancel_cb(tctx->io_wq, io_cancel_cb, &data, false);
Jens Axboe62755e32019-10-28 21:49:21 -06006221 switch (cancel_ret) {
6222 case IO_WQ_CANCEL_OK:
6223 ret = 0;
6224 break;
6225 case IO_WQ_CANCEL_RUNNING:
6226 ret = -EALREADY;
6227 break;
6228 case IO_WQ_CANCEL_NOTFOUND:
6229 ret = -ENOENT;
6230 break;
6231 }
6232
Jens Axboee977d6d2019-11-05 12:39:45 -07006233 return ret;
6234}
6235
Pavel Begunkov8cb01fa2021-08-15 10:40:22 +01006236static int io_try_cancel_userdata(struct io_kiocb *req, u64 sqe_addr)
Jens Axboe47f46762019-11-09 17:43:02 -07006237{
Pavel Begunkov8cb01fa2021-08-15 10:40:22 +01006238 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe47f46762019-11-09 17:43:02 -07006239 int ret;
6240
Pavel Begunkovdadebc32021-08-23 13:30:44 +01006241 WARN_ON_ONCE(!io_wq_current_is_worker() && req->task != current);
Pavel Begunkov8cb01fa2021-08-15 10:40:22 +01006242
Pavel Begunkovf458dd842021-03-08 12:14:14 +00006243 ret = io_async_cancel_one(req->task->io_uring, sqe_addr, ctx);
Pavel Begunkovdf9727a2021-04-01 15:43:59 +01006244 if (ret != -ENOENT)
Pavel Begunkov8cb01fa2021-08-15 10:40:22 +01006245 return ret;
Pavel Begunkov505657b2021-08-17 20:28:09 +01006246
6247 spin_lock(&ctx->completion_lock);
Jens Axboe79ebeae2021-08-10 15:18:27 -06006248 spin_lock_irq(&ctx->timeout_lock);
Jens Axboe47f46762019-11-09 17:43:02 -07006249 ret = io_timeout_cancel(ctx, sqe_addr);
Jens Axboe79ebeae2021-08-10 15:18:27 -06006250 spin_unlock_irq(&ctx->timeout_lock);
Jens Axboe47f46762019-11-09 17:43:02 -07006251 if (ret != -ENOENT)
Pavel Begunkov505657b2021-08-17 20:28:09 +01006252 goto out;
6253 ret = io_poll_cancel(ctx, sqe_addr, false);
6254out:
6255 spin_unlock(&ctx->completion_lock);
6256 return ret;
Jens Axboe47f46762019-11-09 17:43:02 -07006257}
6258
Jens Axboe3529d8c2019-12-19 18:24:38 -07006259static int io_async_cancel_prep(struct io_kiocb *req,
6260 const struct io_uring_sqe *sqe)
Jens Axboee977d6d2019-11-05 12:39:45 -07006261{
Jens Axboefbf23842019-12-17 18:45:56 -07006262 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboee977d6d2019-11-05 12:39:45 -07006263 return -EINVAL;
Daniele Albano61710e42020-07-18 14:15:16 -06006264 if (unlikely(req->flags & (REQ_F_FIXED_FILE | REQ_F_BUFFER_SELECT)))
6265 return -EINVAL;
Pavel Begunkov26578cd2021-08-20 10:36:37 +01006266 if (sqe->ioprio || sqe->off || sqe->len || sqe->cancel_flags ||
6267 sqe->splice_fd_in)
Jens Axboee977d6d2019-11-05 12:39:45 -07006268 return -EINVAL;
6269
Jens Axboefbf23842019-12-17 18:45:56 -07006270 req->cancel.addr = READ_ONCE(sqe->addr);
6271 return 0;
6272}
6273
Pavel Begunkov61e98202021-02-10 00:03:08 +00006274static int io_async_cancel(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboefbf23842019-12-17 18:45:56 -07006275{
6276 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkov58f99372021-03-12 16:25:55 +00006277 u64 sqe_addr = req->cancel.addr;
6278 struct io_tctx_node *node;
6279 int ret;
Jens Axboefbf23842019-12-17 18:45:56 -07006280
Pavel Begunkov8cb01fa2021-08-15 10:40:22 +01006281 ret = io_try_cancel_userdata(req, sqe_addr);
Pavel Begunkov58f99372021-03-12 16:25:55 +00006282 if (ret != -ENOENT)
6283 goto done;
Pavel Begunkov58f99372021-03-12 16:25:55 +00006284
6285 /* slow path, try all io-wq's */
6286 io_ring_submit_lock(ctx, !(issue_flags & IO_URING_F_NONBLOCK));
6287 ret = -ENOENT;
6288 list_for_each_entry(node, &ctx->tctx_list, ctx_node) {
6289 struct io_uring_task *tctx = node->task->io_uring;
6290
Pavel Begunkov58f99372021-03-12 16:25:55 +00006291 ret = io_async_cancel_one(tctx, req->cancel.addr, ctx);
6292 if (ret != -ENOENT)
6293 break;
6294 }
6295 io_ring_submit_unlock(ctx, !(issue_flags & IO_URING_F_NONBLOCK));
Pavel Begunkov58f99372021-03-12 16:25:55 +00006296done:
Pavel Begunkov58f99372021-03-12 16:25:55 +00006297 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01006298 req_set_fail(req);
Pavel Begunkov505657b2021-08-17 20:28:09 +01006299 io_req_complete_post(req, ret, 0);
Jens Axboe62755e32019-10-28 21:49:21 -06006300 return 0;
6301}
6302
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00006303static int io_rsrc_update_prep(struct io_kiocb *req,
Jens Axboe05f3fb32019-12-09 11:22:50 -07006304 const struct io_uring_sqe *sqe)
6305{
Daniele Albano61710e42020-07-18 14:15:16 -06006306 if (unlikely(req->flags & (REQ_F_FIXED_FILE | REQ_F_BUFFER_SELECT)))
6307 return -EINVAL;
Pavel Begunkov26578cd2021-08-20 10:36:37 +01006308 if (sqe->ioprio || sqe->rw_flags || sqe->splice_fd_in)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006309 return -EINVAL;
6310
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00006311 req->rsrc_update.offset = READ_ONCE(sqe->off);
6312 req->rsrc_update.nr_args = READ_ONCE(sqe->len);
6313 if (!req->rsrc_update.nr_args)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006314 return -EINVAL;
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00006315 req->rsrc_update.arg = READ_ONCE(sqe->addr);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006316 return 0;
6317}
6318
Pavel Begunkov889fca72021-02-10 00:03:09 +00006319static int io_files_update(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006320{
6321 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovc3bdad02021-04-25 14:32:22 +01006322 struct io_uring_rsrc_update2 up;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006323 int ret;
6324
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00006325 up.offset = req->rsrc_update.offset;
6326 up.data = req->rsrc_update.arg;
Pavel Begunkovc3bdad02021-04-25 14:32:22 +01006327 up.nr = 0;
6328 up.tags = 0;
Colin Ian King615cee42021-04-26 10:47:35 +01006329 up.resv = 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006330
Jens Axboecdb31c22021-09-24 08:43:54 -06006331 io_ring_submit_lock(ctx, !(issue_flags & IO_URING_F_NONBLOCK));
Pavel Begunkovfdecb662021-04-25 14:32:20 +01006332 ret = __io_register_rsrc_update(ctx, IORING_RSRC_FILE,
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +01006333 &up, req->rsrc_update.nr_args);
Jens Axboecdb31c22021-09-24 08:43:54 -06006334 io_ring_submit_unlock(ctx, !(issue_flags & IO_URING_F_NONBLOCK));
Jens Axboe05f3fb32019-12-09 11:22:50 -07006335
6336 if (ret < 0)
Pavel Begunkov93d2bcd2021-05-16 22:58:05 +01006337 req_set_fail(req);
Pavel Begunkov889fca72021-02-10 00:03:09 +00006338 __io_req_complete(req, issue_flags, ret, 0);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006339 return 0;
6340}
6341
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006342static int io_req_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07006343{
Jens Axboed625c6e2019-12-17 19:53:05 -07006344 switch (req->opcode) {
Jens Axboee7815732019-12-17 19:45:06 -07006345 case IORING_OP_NOP:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006346 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07006347 case IORING_OP_READV:
6348 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07006349 case IORING_OP_READ:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006350 return io_read_prep(req, sqe);
Jens Axboef67676d2019-12-02 11:03:47 -07006351 case IORING_OP_WRITEV:
6352 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07006353 case IORING_OP_WRITE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006354 return io_write_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07006355 case IORING_OP_POLL_ADD:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006356 return io_poll_add_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07006357 case IORING_OP_POLL_REMOVE:
Pavel Begunkovc5de0032021-04-14 13:38:37 +01006358 return io_poll_update_prep(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07006359 case IORING_OP_FSYNC:
Pavel Begunkov1155c762021-02-18 18:29:38 +00006360 return io_fsync_prep(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07006361 case IORING_OP_SYNC_FILE_RANGE:
Pavel Begunkov1155c762021-02-18 18:29:38 +00006362 return io_sfr_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07006363 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07006364 case IORING_OP_SEND:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006365 return io_sendmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07006366 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07006367 case IORING_OP_RECV:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006368 return io_recvmsg_prep(req, sqe);
Jens Axboef499a022019-12-02 16:28:46 -07006369 case IORING_OP_CONNECT:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006370 return io_connect_prep(req, sqe);
Jens Axboe2d283902019-12-04 11:08:05 -07006371 case IORING_OP_TIMEOUT:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006372 return io_timeout_prep(req, sqe, false);
Jens Axboeb29472e2019-12-17 18:50:29 -07006373 case IORING_OP_TIMEOUT_REMOVE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006374 return io_timeout_remove_prep(req, sqe);
Jens Axboefbf23842019-12-17 18:45:56 -07006375 case IORING_OP_ASYNC_CANCEL:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006376 return io_async_cancel_prep(req, sqe);
Jens Axboe2d283902019-12-04 11:08:05 -07006377 case IORING_OP_LINK_TIMEOUT:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006378 return io_timeout_prep(req, sqe, true);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07006379 case IORING_OP_ACCEPT:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006380 return io_accept_prep(req, sqe);
Jens Axboed63d1b52019-12-10 10:38:56 -07006381 case IORING_OP_FALLOCATE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006382 return io_fallocate_prep(req, sqe);
Jens Axboe15b71ab2019-12-11 11:20:36 -07006383 case IORING_OP_OPENAT:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006384 return io_openat_prep(req, sqe);
Jens Axboeb5dba592019-12-11 14:02:38 -07006385 case IORING_OP_CLOSE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006386 return io_close_prep(req, sqe);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006387 case IORING_OP_FILES_UPDATE:
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00006388 return io_rsrc_update_prep(req, sqe);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07006389 case IORING_OP_STATX:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006390 return io_statx_prep(req, sqe);
Jens Axboe4840e412019-12-25 22:03:45 -07006391 case IORING_OP_FADVISE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006392 return io_fadvise_prep(req, sqe);
Jens Axboec1ca7572019-12-25 22:18:28 -07006393 case IORING_OP_MADVISE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006394 return io_madvise_prep(req, sqe);
Jens Axboecebdb982020-01-08 17:59:24 -07006395 case IORING_OP_OPENAT2:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006396 return io_openat2_prep(req, sqe);
Jens Axboe3e4827b2020-01-08 15:18:09 -07006397 case IORING_OP_EPOLL_CTL:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006398 return io_epoll_ctl_prep(req, sqe);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03006399 case IORING_OP_SPLICE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006400 return io_splice_prep(req, sqe);
Jens Axboeddf0322d2020-02-23 16:41:33 -07006401 case IORING_OP_PROVIDE_BUFFERS:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006402 return io_provide_buffers_prep(req, sqe);
Jens Axboe067524e2020-03-02 16:32:28 -07006403 case IORING_OP_REMOVE_BUFFERS:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006404 return io_remove_buffers_prep(req, sqe);
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03006405 case IORING_OP_TEE:
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006406 return io_tee_prep(req, sqe);
Jens Axboe36f4fa62020-09-05 11:14:22 -06006407 case IORING_OP_SHUTDOWN:
6408 return io_shutdown_prep(req, sqe);
Jens Axboe80a261f2020-09-28 14:23:58 -06006409 case IORING_OP_RENAMEAT:
6410 return io_renameat_prep(req, sqe);
Jens Axboe14a11432020-09-28 14:27:37 -06006411 case IORING_OP_UNLINKAT:
6412 return io_unlinkat_prep(req, sqe);
Dmitry Kadasheve34a02d2021-07-08 13:34:45 +07006413 case IORING_OP_MKDIRAT:
6414 return io_mkdirat_prep(req, sqe);
Dmitry Kadashev7a8721f2021-07-08 13:34:46 +07006415 case IORING_OP_SYMLINKAT:
6416 return io_symlinkat_prep(req, sqe);
Dmitry Kadashevcf30da92021-07-08 13:34:47 +07006417 case IORING_OP_LINKAT:
6418 return io_linkat_prep(req, sqe);
Jens Axboef67676d2019-12-02 11:03:47 -07006419 }
6420
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006421 printk_once(KERN_WARNING "io_uring: unhandled opcode %d\n",
6422 req->opcode);
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01006423 return -EINVAL;
Pavel Begunkovbfe76552020-09-30 22:57:55 +03006424}
6425
Pavel Begunkov93642ef2021-02-18 18:29:44 +00006426static int io_req_prep_async(struct io_kiocb *req)
Jens Axboedef596e2019-01-09 08:59:42 -07006427{
Pavel Begunkovb7e298d2021-02-28 22:35:19 +00006428 if (!io_op_defs[req->opcode].needs_async_setup)
6429 return 0;
Pavel Begunkovd886e182021-10-04 20:02:56 +01006430 if (WARN_ON_ONCE(req_has_async_data(req)))
Pavel Begunkovb7e298d2021-02-28 22:35:19 +00006431 return -EFAULT;
6432 if (io_alloc_async_data(req))
6433 return -EAGAIN;
6434
Pavel Begunkov93642ef2021-02-18 18:29:44 +00006435 switch (req->opcode) {
6436 case IORING_OP_READV:
Pavel Begunkov93642ef2021-02-18 18:29:44 +00006437 return io_rw_prep_async(req, READ);
6438 case IORING_OP_WRITEV:
Pavel Begunkov93642ef2021-02-18 18:29:44 +00006439 return io_rw_prep_async(req, WRITE);
6440 case IORING_OP_SENDMSG:
Pavel Begunkov93642ef2021-02-18 18:29:44 +00006441 return io_sendmsg_prep_async(req);
6442 case IORING_OP_RECVMSG:
Pavel Begunkov93642ef2021-02-18 18:29:44 +00006443 return io_recvmsg_prep_async(req);
6444 case IORING_OP_CONNECT:
6445 return io_connect_prep_async(req);
6446 }
Pavel Begunkovb7e298d2021-02-28 22:35:19 +00006447 printk_once(KERN_WARNING "io_uring: prep_async() bad opcode %d\n",
6448 req->opcode);
6449 return -EFAULT;
Jens Axboedef596e2019-01-09 08:59:42 -07006450}
6451
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03006452static u32 io_get_sequence(struct io_kiocb *req)
6453{
Pavel Begunkova3dbdf52021-06-17 18:14:05 +01006454 u32 seq = req->ctx->cached_sq_head;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03006455
Pavel Begunkova3dbdf52021-06-17 18:14:05 +01006456 /* need original cached_sq_head, but it was increased for each req */
6457 io_for_each_link(req, req)
6458 seq--;
6459 return seq;
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03006460}
6461
Pavel Begunkovc0724812021-10-04 20:02:54 +01006462static __cold void io_drain_req(struct io_kiocb *req)
Jens Axboedef596e2019-01-09 08:59:42 -07006463{
6464 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkov27dc8332020-07-13 23:37:14 +03006465 struct io_defer_entry *de;
Jens Axboedef596e2019-01-09 08:59:42 -07006466 int ret;
Pavel Begunkove0eb71d2021-10-01 18:07:01 +01006467 u32 seq = io_get_sequence(req);
Jens Axboedef596e2019-01-09 08:59:42 -07006468
6469 /* Still need defer if there is pending req in defer list. */
Pavel Begunkov5e371262021-09-24 22:00:04 +01006470 if (!req_need_defer(req, seq) && list_empty_careful(&ctx->defer_list)) {
Pavel Begunkove0eb71d2021-10-01 18:07:01 +01006471queue:
Pavel Begunkov5e371262021-09-24 22:00:04 +01006472 ctx->drain_active = false;
Pavel Begunkove0eb71d2021-10-01 18:07:01 +01006473 io_req_task_queue(req);
6474 return;
Pavel Begunkov5e371262021-09-24 22:00:04 +01006475 }
Jens Axboedef596e2019-01-09 08:59:42 -07006476
Pavel Begunkovb7e298d2021-02-28 22:35:19 +00006477 ret = io_req_prep_async(req);
Pavel Begunkove0eb71d2021-10-01 18:07:01 +01006478 if (ret) {
6479fail:
6480 io_req_complete_failed(req, ret);
6481 return;
6482 }
Pavel Begunkovcbdcb432020-06-29 19:18:43 +03006483 io_prep_async_link(req);
Pavel Begunkov27dc8332020-07-13 23:37:14 +03006484 de = kmalloc(sizeof(*de), GFP_KERNEL);
Pavel Begunkov76cc33d2021-06-14 23:37:30 +01006485 if (!de) {
Pavel Begunkov1b487732021-07-11 22:41:13 +01006486 ret = -ENOMEM;
Pavel Begunkove0eb71d2021-10-01 18:07:01 +01006487 goto fail;
Pavel Begunkov76cc33d2021-06-14 23:37:30 +01006488 }
Jens Axboe31b51512019-01-18 22:56:34 -07006489
Jens Axboe79ebeae2021-08-10 15:18:27 -06006490 spin_lock(&ctx->completion_lock);
Pavel Begunkov9cf7c102020-07-13 23:37:15 +03006491 if (!req_need_defer(req, seq) && list_empty(&ctx->defer_list)) {
Jens Axboe79ebeae2021-08-10 15:18:27 -06006492 spin_unlock(&ctx->completion_lock);
Pavel Begunkov27dc8332020-07-13 23:37:14 +03006493 kfree(de);
Pavel Begunkove0eb71d2021-10-01 18:07:01 +01006494 goto queue;
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);
Jens Axboe31b51512019-01-18 22:56:34 -07006502}
6503
Pavel Begunkov68fb8972021-03-19 17:22:41 +00006504static void io_clean_op(struct io_kiocb *req)
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03006505{
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006506 if (req->flags & REQ_F_BUFFER_SELECTED) {
Pavel Begunkov30d51dd2021-10-01 18:07:03 +01006507 kfree(req->kbuf);
6508 req->kbuf = NULL;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03006509 }
6510
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006511 if (req->flags & REQ_F_NEED_CLEANUP) {
6512 switch (req->opcode) {
6513 case IORING_OP_READV:
6514 case IORING_OP_READ_FIXED:
6515 case IORING_OP_READ:
6516 case IORING_OP_WRITEV:
6517 case IORING_OP_WRITE_FIXED:
Jens Axboee8c2bc12020-08-15 18:44:09 -07006518 case IORING_OP_WRITE: {
6519 struct io_async_rw *io = req->async_data;
Pavel Begunkov1dacb4d2021-06-17 18:14:03 +01006520
6521 kfree(io->free_iovec);
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006522 break;
Jens Axboee8c2bc12020-08-15 18:44:09 -07006523 }
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006524 case IORING_OP_RECVMSG:
Jens Axboee8c2bc12020-08-15 18:44:09 -07006525 case IORING_OP_SENDMSG: {
6526 struct io_async_msghdr *io = req->async_data;
Pavel Begunkov257e84a2021-02-05 00:58:00 +00006527
6528 kfree(io->free_iov);
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006529 break;
Jens Axboee8c2bc12020-08-15 18:44:09 -07006530 }
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006531 case IORING_OP_SPLICE:
6532 case IORING_OP_TEE:
Pavel Begunkove1d767f2021-03-19 17:22:43 +00006533 if (!(req->splice.flags & SPLICE_F_FD_IN_FIXED))
6534 io_put_file(req->splice.file_in);
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006535 break;
Jens Axboef3cd48502020-09-24 14:55:54 -06006536 case IORING_OP_OPENAT:
6537 case IORING_OP_OPENAT2:
6538 if (req->open.filename)
6539 putname(req->open.filename);
6540 break;
Jens Axboe80a261f2020-09-28 14:23:58 -06006541 case IORING_OP_RENAMEAT:
6542 putname(req->rename.oldpath);
6543 putname(req->rename.newpath);
6544 break;
Jens Axboe14a11432020-09-28 14:27:37 -06006545 case IORING_OP_UNLINKAT:
6546 putname(req->unlink.filename);
6547 break;
Dmitry Kadasheve34a02d2021-07-08 13:34:45 +07006548 case IORING_OP_MKDIRAT:
6549 putname(req->mkdir.filename);
6550 break;
Dmitry Kadashev7a8721f2021-07-08 13:34:46 +07006551 case IORING_OP_SYMLINKAT:
6552 putname(req->symlink.oldpath);
6553 putname(req->symlink.newpath);
6554 break;
Dmitry Kadashevcf30da92021-07-08 13:34:47 +07006555 case IORING_OP_LINKAT:
6556 putname(req->hardlink.oldpath);
6557 putname(req->hardlink.newpath);
6558 break;
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006559 }
Pavel Begunkov0e1b6fe32020-07-16 23:28:02 +03006560 }
Jens Axboe75652a302021-04-15 09:52:40 -06006561 if ((req->flags & REQ_F_POLLED) && req->apoll) {
6562 kfree(req->apoll->double_poll);
6563 kfree(req->apoll);
6564 req->apoll = NULL;
6565 }
Pavel Begunkov3a0a6902021-04-20 12:03:31 +01006566 if (req->flags & REQ_F_INFLIGHT) {
6567 struct io_uring_task *tctx = req->task->io_uring;
6568
6569 atomic_dec(&tctx->inflight_tracked);
Pavel Begunkov3a0a6902021-04-20 12:03:31 +01006570 }
Pavel Begunkovc8543572021-06-17 18:14:04 +01006571 if (req->flags & REQ_F_CREDS)
Pavel Begunkovb8e64b52021-06-17 18:14:02 +01006572 put_cred(req->creds);
Pavel Begunkovd886e182021-10-04 20:02:56 +01006573 if (req->flags & REQ_F_ASYNC_DATA) {
6574 kfree(req->async_data);
6575 req->async_data = NULL;
6576 }
Pavel Begunkovc8543572021-06-17 18:14:04 +01006577 req->flags &= ~IO_REQ_CLEAN_FLAGS;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03006578}
6579
Pavel Begunkov889fca72021-02-10 00:03:09 +00006580static int io_issue_sqe(struct io_kiocb *req, unsigned int issue_flags)
Jens Axboeedafcce2019-01-09 09:16:05 -07006581{
Jens Axboeedafcce2019-01-09 09:16:05 -07006582 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5730b272021-02-27 15:57:30 -07006583 const struct cred *creds = NULL;
Jens Axboed625c6e2019-12-17 19:53:05 -07006584 int ret;
Jens Axboeedafcce2019-01-09 09:16:05 -07006585
Pavel Begunkov6878b402021-09-24 21:59:41 +01006586 if (unlikely((req->flags & REQ_F_CREDS) && req->creds != current_cred()))
Pavel Begunkovc10d1f92021-06-17 18:14:01 +01006587 creds = override_creds(req->creds);
Jens Axboe5730b272021-02-27 15:57:30 -07006588
Jens Axboed625c6e2019-12-17 19:53:05 -07006589 switch (req->opcode) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07006590 case IORING_OP_NOP:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006591 ret = io_nop(req, issue_flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006592 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006593 case IORING_OP_READV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07006594 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07006595 case IORING_OP_READ:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006596 ret = io_read(req, issue_flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006597 break;
6598 case IORING_OP_WRITEV:
Jens Axboe2b188cc2019-01-07 10:46:33 -07006599 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07006600 case IORING_OP_WRITE:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006601 ret = io_write(req, issue_flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006602 break;
6603 case IORING_OP_FSYNC:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006604 ret = io_fsync(req, issue_flags);
Jackie Liuba5290c2019-10-09 09:19:59 +08006605 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006606 case IORING_OP_POLL_ADD:
Pavel Begunkov61e98202021-02-10 00:03:08 +00006607 ret = io_poll_add(req, issue_flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006608 break;
6609 case IORING_OP_POLL_REMOVE:
Pavel Begunkovc5de0032021-04-14 13:38:37 +01006610 ret = io_poll_update(req, issue_flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006611 break;
Jens Axboeb76da702019-11-20 13:05:32 -07006612 case IORING_OP_SYNC_FILE_RANGE:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006613 ret = io_sync_file_range(req, issue_flags);
Jens Axboeb76da702019-11-20 13:05:32 -07006614 break;
6615 case IORING_OP_SENDMSG:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006616 ret = io_sendmsg(req, issue_flags);
Pavel Begunkov062d04d2020-10-10 18:34:12 +01006617 break;
Jens Axboefddafac2020-01-04 20:19:44 -07006618 case IORING_OP_SEND:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006619 ret = io_send(req, issue_flags);
Jens Axboeb76da702019-11-20 13:05:32 -07006620 break;
6621 case IORING_OP_RECVMSG:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006622 ret = io_recvmsg(req, issue_flags);
Pavel Begunkov062d04d2020-10-10 18:34:12 +01006623 break;
Jens Axboefddafac2020-01-04 20:19:44 -07006624 case IORING_OP_RECV:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006625 ret = io_recv(req, issue_flags);
Jens Axboeb76da702019-11-20 13:05:32 -07006626 break;
Jens Axboe561fb042019-10-24 07:25:42 -06006627 case IORING_OP_TIMEOUT:
Pavel Begunkov61e98202021-02-10 00:03:08 +00006628 ret = io_timeout(req, issue_flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006629 break;
6630 case IORING_OP_TIMEOUT_REMOVE:
Pavel Begunkov61e98202021-02-10 00:03:08 +00006631 ret = io_timeout_remove(req, issue_flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006632 break;
6633 case IORING_OP_ACCEPT:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006634 ret = io_accept(req, issue_flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006635 break;
6636 case IORING_OP_CONNECT:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006637 ret = io_connect(req, issue_flags);
Jens Axboe31b51512019-01-18 22:56:34 -07006638 break;
6639 case IORING_OP_ASYNC_CANCEL:
Pavel Begunkov61e98202021-02-10 00:03:08 +00006640 ret = io_async_cancel(req, issue_flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006641 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07006642 case IORING_OP_FALLOCATE:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006643 ret = io_fallocate(req, issue_flags);
Jens Axboed63d1b52019-12-10 10:38:56 -07006644 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07006645 case IORING_OP_OPENAT:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006646 ret = io_openat(req, issue_flags);
Jens Axboe15b71ab2019-12-11 11:20:36 -07006647 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07006648 case IORING_OP_CLOSE:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006649 ret = io_close(req, issue_flags);
Jens Axboeb5dba592019-12-11 14:02:38 -07006650 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006651 case IORING_OP_FILES_UPDATE:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006652 ret = io_files_update(req, issue_flags);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006653 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07006654 case IORING_OP_STATX:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006655 ret = io_statx(req, issue_flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07006656 break;
Jens Axboe4840e412019-12-25 22:03:45 -07006657 case IORING_OP_FADVISE:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006658 ret = io_fadvise(req, issue_flags);
Jens Axboe4840e412019-12-25 22:03:45 -07006659 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07006660 case IORING_OP_MADVISE:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006661 ret = io_madvise(req, issue_flags);
Jens Axboec1ca7572019-12-25 22:18:28 -07006662 break;
Jens Axboecebdb982020-01-08 17:59:24 -07006663 case IORING_OP_OPENAT2:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006664 ret = io_openat2(req, issue_flags);
Jens Axboecebdb982020-01-08 17:59:24 -07006665 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07006666 case IORING_OP_EPOLL_CTL:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006667 ret = io_epoll_ctl(req, issue_flags);
Jens Axboe3e4827b2020-01-08 15:18:09 -07006668 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03006669 case IORING_OP_SPLICE:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006670 ret = io_splice(req, issue_flags);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03006671 break;
Jens Axboeddf0322d2020-02-23 16:41:33 -07006672 case IORING_OP_PROVIDE_BUFFERS:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006673 ret = io_provide_buffers(req, issue_flags);
Jens Axboeddf0322d2020-02-23 16:41:33 -07006674 break;
Jens Axboe067524e2020-03-02 16:32:28 -07006675 case IORING_OP_REMOVE_BUFFERS:
Pavel Begunkov889fca72021-02-10 00:03:09 +00006676 ret = io_remove_buffers(req, issue_flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006677 break;
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03006678 case IORING_OP_TEE:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006679 ret = io_tee(req, issue_flags);
Pavel Begunkovf2a8d5c2020-05-17 14:18:06 +03006680 break;
Jens Axboe36f4fa62020-09-05 11:14:22 -06006681 case IORING_OP_SHUTDOWN:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006682 ret = io_shutdown(req, issue_flags);
Jens Axboe36f4fa62020-09-05 11:14:22 -06006683 break;
Jens Axboe80a261f2020-09-28 14:23:58 -06006684 case IORING_OP_RENAMEAT:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006685 ret = io_renameat(req, issue_flags);
Jens Axboe80a261f2020-09-28 14:23:58 -06006686 break;
Jens Axboe14a11432020-09-28 14:27:37 -06006687 case IORING_OP_UNLINKAT:
Pavel Begunkov45d189c2021-02-10 00:03:07 +00006688 ret = io_unlinkat(req, issue_flags);
Jens Axboe14a11432020-09-28 14:27:37 -06006689 break;
Dmitry Kadasheve34a02d2021-07-08 13:34:45 +07006690 case IORING_OP_MKDIRAT:
6691 ret = io_mkdirat(req, issue_flags);
6692 break;
Dmitry Kadashev7a8721f2021-07-08 13:34:46 +07006693 case IORING_OP_SYMLINKAT:
6694 ret = io_symlinkat(req, issue_flags);
6695 break;
Dmitry Kadashevcf30da92021-07-08 13:34:47 +07006696 case IORING_OP_LINKAT:
6697 ret = io_linkat(req, issue_flags);
6698 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006699 default:
6700 ret = -EINVAL;
6701 break;
6702 }
Jens Axboe31b51512019-01-18 22:56:34 -07006703
Jens Axboe5730b272021-02-27 15:57:30 -07006704 if (creds)
6705 revert_creds(creds);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006706 if (ret)
6707 return ret;
Jens Axboeb5325762020-05-19 21:20:27 -06006708 /* If the op doesn't have a file, we're not polling for it */
Pavel Begunkovcb3d8972021-06-14 02:36:14 +01006709 if ((ctx->flags & IORING_SETUP_IOPOLL) && req->file)
6710 io_iopoll_req_issued(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006711
6712 return 0;
6713}
6714
Pavel Begunkovebc11b62021-08-09 13:04:05 +01006715static struct io_wq_work *io_wq_free_work(struct io_wq_work *work)
6716{
6717 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
6718
6719 req = io_put_req_find_next(req);
6720 return req ? &req->work : NULL;
6721}
6722
Pavel Begunkov5280f7e2021-02-04 13:52:08 +00006723static void io_wq_submit_work(struct io_wq_work *work)
Pavel Begunkovd4c81f32020-06-08 21:08:19 +03006724{
Jens Axboe2b188cc2019-01-07 10:46:33 -07006725 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Pavel Begunkov6df1db62020-07-03 22:15:06 +03006726 struct io_kiocb *timeout;
Jens Axboe561fb042019-10-24 07:25:42 -06006727 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006728
Pavel Begunkov48dcd382021-08-15 10:40:18 +01006729 /* one will be dropped by ->io_free_work() after returning to io-wq */
6730 if (!(req->flags & REQ_F_REFCOUNT))
6731 __io_req_set_refcount(req, 2);
6732 else
6733 req_ref_get(req);
Pavel Begunkov5d5901a2021-08-11 19:28:29 +01006734
Pavel Begunkov6df1db62020-07-03 22:15:06 +03006735 timeout = io_prep_linked_timeout(req);
6736 if (timeout)
6737 io_queue_linked_timeout(timeout);
Pavel Begunkovd4c81f32020-06-08 21:08:19 +03006738
Pavel Begunkovdadebc32021-08-23 13:30:44 +01006739 /* either cancelled or io-wq is dying, so don't touch tctx->iowq */
Jens Axboe4014d942021-01-19 15:53:54 -07006740 if (work->flags & IO_WQ_WORK_CANCEL)
Jens Axboe561fb042019-10-24 07:25:42 -06006741 ret = -ECANCELED;
Jens Axboe31b51512019-01-18 22:56:34 -07006742
Jens Axboe561fb042019-10-24 07:25:42 -06006743 if (!ret) {
Jens Axboe561fb042019-10-24 07:25:42 -06006744 do {
Pavel Begunkov889fca72021-02-10 00:03:09 +00006745 ret = io_issue_sqe(req, 0);
Jens Axboe561fb042019-10-24 07:25:42 -06006746 /*
6747 * We can get EAGAIN for polled IO even though we're
6748 * forcing a sync submission from here, since we can't
6749 * wait for request slots on the block side.
6750 */
6751 if (ret != -EAGAIN)
6752 break;
6753 cond_resched();
6754 } while (1);
6755 }
Jens Axboe31b51512019-01-18 22:56:34 -07006756
Pavel Begunkova3df76982021-02-18 22:32:52 +00006757 /* avoid locking problems by failing it from a clean context */
Pavel Begunkov5d5901a2021-08-11 19:28:29 +01006758 if (ret)
Pavel Begunkova3df76982021-02-18 22:32:52 +00006759 io_req_task_queue_fail(req, ret);
Jens Axboe31b51512019-01-18 22:56:34 -07006760}
Jens Axboe2b188cc2019-01-07 10:46:33 -07006761
Pavel Begunkovaeca2412021-04-11 01:46:37 +01006762static inline struct io_fixed_file *io_fixed_file_slot(struct io_file_table *table,
Pavel Begunkov042b0d82021-08-09 13:04:01 +01006763 unsigned i)
Jens Axboe09bb8392019-03-13 12:39:28 -06006764{
Pavel Begunkov042b0d82021-08-09 13:04:01 +01006765 return &table->files[i];
Pavel Begunkovdafecf12021-02-28 22:35:11 +00006766}
6767
Jens Axboe09bb8392019-03-13 12:39:28 -06006768static inline struct file *io_file_from_index(struct io_ring_ctx *ctx,
6769 int index)
6770{
Pavel Begunkovaeca2412021-04-11 01:46:37 +01006771 struct io_fixed_file *slot = io_fixed_file_slot(&ctx->file_table, index);
Jens Axboe65e19f52019-10-26 07:20:21 -06006772
Pavel Begunkova04b0ac2021-04-01 15:44:04 +01006773 return (struct file *) (slot->file_ptr & FFS_MASK);
Jens Axboe65e19f52019-10-26 07:20:21 -06006774}
6775
Pavel Begunkova04b0ac2021-04-01 15:44:04 +01006776static void io_fixed_file_set(struct io_fixed_file *file_slot, struct file *file)
Pavel Begunkov9a321c92021-04-01 15:44:01 +01006777{
6778 unsigned long file_ptr = (unsigned long) file;
6779
Pavel Begunkovb191e2d2021-08-09 13:04:03 +01006780 if (__io_file_supports_nowait(file, READ))
Pavel Begunkov9a321c92021-04-01 15:44:01 +01006781 file_ptr |= FFS_ASYNC_READ;
Pavel Begunkovb191e2d2021-08-09 13:04:03 +01006782 if (__io_file_supports_nowait(file, WRITE))
Pavel Begunkov9a321c92021-04-01 15:44:01 +01006783 file_ptr |= FFS_ASYNC_WRITE;
6784 if (S_ISREG(file_inode(file)->i_mode))
6785 file_ptr |= FFS_ISREG;
Pavel Begunkova04b0ac2021-04-01 15:44:04 +01006786 file_slot->file_ptr = file_ptr;
Jens Axboe09bb8392019-03-13 12:39:28 -06006787}
6788
Pavel Begunkovac177052021-08-09 13:04:02 +01006789static inline struct file *io_file_get_fixed(struct io_ring_ctx *ctx,
6790 struct io_kiocb *req, int fd)
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006791{
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006792 struct file *file;
Pavel Begunkovac177052021-08-09 13:04:02 +01006793 unsigned long file_ptr;
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006794
Pavel Begunkovac177052021-08-09 13:04:02 +01006795 if (unlikely((unsigned int)fd >= ctx->nr_user_files))
6796 return NULL;
6797 fd = array_index_nospec(fd, ctx->nr_user_files);
6798 file_ptr = io_fixed_file_slot(&ctx->file_table, fd)->file_ptr;
6799 file = (struct file *) (file_ptr & FFS_MASK);
6800 file_ptr &= ~FFS_MASK;
6801 /* mask in overlapping REQ_F and FFS bits */
Pavel Begunkovb191e2d2021-08-09 13:04:03 +01006802 req->flags |= (file_ptr << REQ_F_NOWAIT_READ_BIT);
Pavel Begunkova46be972021-10-09 23:14:40 +01006803 io_req_set_rsrc_node(req, ctx);
Pavel Begunkov8371adf2020-10-10 18:34:08 +01006804 return file;
Pavel Begunkov8da11c12020-02-24 11:32:44 +03006805}
6806
Pavel Begunkovac177052021-08-09 13:04:02 +01006807static struct file *io_file_get_normal(struct io_ring_ctx *ctx,
Pavel Begunkovac177052021-08-09 13:04:02 +01006808 struct io_kiocb *req, int fd)
6809{
Pavel Begunkov62906e82021-08-10 14:52:47 +01006810 struct file *file = fget(fd);
Pavel Begunkovac177052021-08-09 13:04:02 +01006811
6812 trace_io_uring_file_get(ctx, fd);
6813
6814 /* we don't allow fixed io_uring files */
6815 if (file && unlikely(file->f_op == &io_uring_fops))
6816 io_req_track_inflight(req);
6817 return file;
6818}
6819
6820static inline struct file *io_file_get(struct io_ring_ctx *ctx,
Pavel Begunkovac177052021-08-09 13:04:02 +01006821 struct io_kiocb *req, int fd, bool fixed)
6822{
6823 if (fixed)
6824 return io_file_get_fixed(ctx, req, fd);
6825 else
Pavel Begunkov62906e82021-08-10 14:52:47 +01006826 return io_file_get_normal(ctx, req, fd);
Pavel Begunkovac177052021-08-09 13:04:02 +01006827}
6828
Pavel Begunkovf237c302021-08-18 12:42:46 +01006829static void io_req_task_link_timeout(struct io_kiocb *req, bool *locked)
Jens Axboe89b263f2021-08-10 15:14:18 -06006830{
6831 struct io_kiocb *prev = req->timeout.prev;
Pavel Begunkov8cb01fa2021-08-15 10:40:22 +01006832 int ret;
Jens Axboe89b263f2021-08-10 15:14:18 -06006833
6834 if (prev) {
Pavel Begunkov8cb01fa2021-08-15 10:40:22 +01006835 ret = io_try_cancel_userdata(req, prev->user_data);
Pavel Begunkov505657b2021-08-17 20:28:09 +01006836 io_req_complete_post(req, ret ?: -ETIME, 0);
Jens Axboe89b263f2021-08-10 15:14:18 -06006837 io_put_req(prev);
Jens Axboe89b263f2021-08-10 15:14:18 -06006838 } else {
6839 io_req_complete_post(req, -ETIME, 0);
6840 }
6841}
6842
Jens Axboe2665abf2019-11-05 12:40:47 -07006843static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer)
6844{
Jens Axboead8a48a2019-11-15 08:49:11 -07006845 struct io_timeout_data *data = container_of(timer,
6846 struct io_timeout_data, timer);
Pavel Begunkov90cd7e42020-10-27 23:25:36 +00006847 struct io_kiocb *prev, *req = data->req;
Jens Axboe2665abf2019-11-05 12:40:47 -07006848 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07006849 unsigned long flags;
Jens Axboe2665abf2019-11-05 12:40:47 -07006850
Jens Axboe89b263f2021-08-10 15:14:18 -06006851 spin_lock_irqsave(&ctx->timeout_lock, flags);
Pavel Begunkov90cd7e42020-10-27 23:25:36 +00006852 prev = req->timeout.head;
6853 req->timeout.head = NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07006854
6855 /*
6856 * We don't expect the list to be empty, that will only happen if we
6857 * race with the completion of the linked work.
6858 */
Pavel Begunkov447c19f2021-05-14 12:02:50 +01006859 if (prev) {
Pavel Begunkovf2f87372020-10-27 23:25:37 +00006860 io_remove_next_linked(prev);
Pavel Begunkov447c19f2021-05-14 12:02:50 +01006861 if (!req_ref_inc_not_zero(prev))
6862 prev = NULL;
6863 }
Pavel Begunkovef9dd632021-08-28 19:54:38 -06006864 list_del(&req->timeout.list);
Jens Axboe89b263f2021-08-10 15:14:18 -06006865 req->timeout.prev = prev;
6866 spin_unlock_irqrestore(&ctx->timeout_lock, flags);
Jens Axboe2665abf2019-11-05 12:40:47 -07006867
Jens Axboe89b263f2021-08-10 15:14:18 -06006868 req->io_task_work.func = io_req_task_link_timeout;
6869 io_req_task_work_add(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07006870 return HRTIMER_NORESTART;
6871}
6872
Pavel Begunkovde968c12021-03-19 17:22:33 +00006873static void io_queue_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07006874{
Pavel Begunkovde968c12021-03-19 17:22:33 +00006875 struct io_ring_ctx *ctx = req->ctx;
6876
Jens Axboe89b263f2021-08-10 15:14:18 -06006877 spin_lock_irq(&ctx->timeout_lock);
Jens Axboe76a46e02019-11-10 23:34:16 -07006878 /*
Pavel Begunkovf2f87372020-10-27 23:25:37 +00006879 * If the back reference is NULL, then our linked request finished
6880 * before we got a chance to setup the timer
Jens Axboe76a46e02019-11-10 23:34:16 -07006881 */
Pavel Begunkov90cd7e42020-10-27 23:25:36 +00006882 if (req->timeout.head) {
Jens Axboee8c2bc12020-08-15 18:44:09 -07006883 struct io_timeout_data *data = req->async_data;
Jens Axboe94ae5e72019-11-14 19:39:52 -07006884
Jens Axboead8a48a2019-11-15 08:49:11 -07006885 data->timer.function = io_link_timeout_fn;
6886 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts),
6887 data->mode);
Pavel Begunkovef9dd632021-08-28 19:54:38 -06006888 list_add_tail(&req->timeout.list, &ctx->ltimeout_list);
Jens Axboe2665abf2019-11-05 12:40:47 -07006889 }
Jens Axboe89b263f2021-08-10 15:14:18 -06006890 spin_unlock_irq(&ctx->timeout_lock);
Jens Axboe2665abf2019-11-05 12:40:47 -07006891 /* drop submission reference */
Jens Axboe76a46e02019-11-10 23:34:16 -07006892 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07006893}
6894
Pavel Begunkovd475a9a2021-09-24 21:59:59 +01006895static void io_queue_sqe_arm_apoll(struct io_kiocb *req)
6896 __must_hold(&req->ctx->uring_lock)
6897{
6898 struct io_kiocb *linked_timeout = io_prep_linked_timeout(req);
6899
6900 switch (io_arm_poll_handler(req)) {
6901 case IO_APOLL_READY:
6902 if (linked_timeout) {
6903 io_unprep_linked_timeout(req);
6904 linked_timeout = NULL;
6905 }
6906 io_req_task_queue(req);
6907 break;
6908 case IO_APOLL_ABORTED:
6909 /*
6910 * Queued up for async execution, worker will release
6911 * submit reference when the iocb is actually submitted.
6912 */
6913 io_queue_async_work(req, NULL);
6914 break;
6915 }
6916
6917 if (linked_timeout)
6918 io_queue_linked_timeout(linked_timeout);
6919}
6920
6921static inline void __io_queue_sqe(struct io_kiocb *req)
Pavel Begunkov282cdc82021-08-09 13:04:10 +01006922 __must_hold(&req->ctx->uring_lock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006923{
Pavel Begunkov906c6ca2021-08-15 10:40:26 +01006924 struct io_kiocb *linked_timeout;
Jens Axboee0c5c572019-03-12 10:18:47 -06006925 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006926
Pavel Begunkovc5eef2b2021-02-10 00:03:22 +00006927 ret = io_issue_sqe(req, IO_URING_F_NONBLOCK|IO_URING_F_COMPLETE_DEFER);
Jens Axboe491381ce2019-10-17 09:20:46 -06006928
Pavel Begunkovfff4e402021-10-04 20:02:48 +01006929 if (req->flags & REQ_F_COMPLETE_INLINE) {
6930 io_req_add_compl_list(req);
Pavel Begunkovd9f9d282021-09-24 22:00:00 +01006931 return;
Pavel Begunkovfff4e402021-10-04 20:02:48 +01006932 }
Jens Axboe491381ce2019-10-17 09:20:46 -06006933 /*
6934 * We async punt it if the file wasn't marked NOWAIT, or if the file
6935 * doesn't support non-blocking read/write attempts
6936 */
Pavel Begunkov18400382021-03-19 17:22:34 +00006937 if (likely(!ret)) {
Pavel Begunkov906c6ca2021-08-15 10:40:26 +01006938 linked_timeout = io_prep_linked_timeout(req);
6939 if (linked_timeout)
6940 io_queue_linked_timeout(linked_timeout);
Pavel Begunkov18400382021-03-19 17:22:34 +00006941 } else if (ret == -EAGAIN && !(req->flags & REQ_F_NOWAIT)) {
Pavel Begunkovd475a9a2021-09-24 21:59:59 +01006942 io_queue_sqe_arm_apoll(req);
Pavel Begunkov0d63c142020-10-22 16:47:18 +01006943 } else {
Pavel Begunkovf41db2732021-02-28 22:35:12 +00006944 io_req_complete_failed(req, ret);
Jens Axboe9e645e112019-05-10 16:07:28 -06006945 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006946}
6947
Pavel Begunkov4652fe32021-09-24 21:59:58 +01006948static void io_queue_sqe_fallback(struct io_kiocb *req)
Pavel Begunkov282cdc82021-08-09 13:04:10 +01006949 __must_hold(&req->ctx->uring_lock)
Jackie Liu4fe2c962019-09-09 20:50:40 +08006950{
Pavel Begunkov4652fe32021-09-24 21:59:58 +01006951 if (req->flags & REQ_F_FAIL) {
Pavel Begunkovc6d3d9c2021-08-31 14:13:10 +01006952 io_req_complete_fail_submit(req);
Pavel Begunkove0eb71d2021-10-01 18:07:01 +01006953 } else if (unlikely(req->ctx->drain_active)) {
6954 io_drain_req(req);
Pavel Begunkov76cc33d2021-06-14 23:37:30 +01006955 } else {
6956 int ret = io_req_prep_async(req);
6957
6958 if (unlikely(ret))
6959 io_req_complete_failed(req, ret);
6960 else
Pavel Begunkovf237c302021-08-18 12:42:46 +01006961 io_queue_async_work(req, NULL);
Jens Axboece35a472019-12-17 08:04:44 -07006962 }
Jackie Liu4fe2c962019-09-09 20:50:40 +08006963}
6964
Pavel Begunkov4652fe32021-09-24 21:59:58 +01006965static inline void io_queue_sqe(struct io_kiocb *req)
6966 __must_hold(&req->ctx->uring_lock)
6967{
6968 if (likely(!(req->flags & (REQ_F_FORCE_ASYNC | REQ_F_FAIL))))
6969 __io_queue_sqe(req);
6970 else
6971 io_queue_sqe_fallback(req);
6972}
6973
Stefano Garzarella21b55db2020-08-27 16:58:30 +02006974/*
6975 * Check SQE restrictions (opcode and flags).
6976 *
6977 * Returns 'true' if SQE is allowed, 'false' otherwise.
6978 */
6979static inline bool io_check_restriction(struct io_ring_ctx *ctx,
6980 struct io_kiocb *req,
6981 unsigned int sqe_flags)
6982{
Stefano Garzarella21b55db2020-08-27 16:58:30 +02006983 if (!test_bit(req->opcode, ctx->restrictions.sqe_op))
6984 return false;
6985
6986 if ((sqe_flags & ctx->restrictions.sqe_flags_required) !=
6987 ctx->restrictions.sqe_flags_required)
6988 return false;
6989
6990 if (sqe_flags & ~(ctx->restrictions.sqe_flags_allowed |
6991 ctx->restrictions.sqe_flags_required))
6992 return false;
6993
6994 return true;
6995}
6996
Pavel Begunkov22b2ca32021-10-01 18:07:00 +01006997static void io_init_req_drain(struct io_kiocb *req)
6998{
6999 struct io_ring_ctx *ctx = req->ctx;
7000 struct io_kiocb *head = ctx->submit_state.link.head;
7001
7002 ctx->drain_active = true;
7003 if (head) {
7004 /*
7005 * If we need to drain a request in the middle of a link, drain
7006 * the head request and the next request/link after the current
7007 * link. Considering sequential execution of links,
7008 * IOSQE_IO_DRAIN will be maintained for every request of our
7009 * link.
7010 */
7011 head->flags |= IOSQE_IO_DRAIN | REQ_F_FORCE_ASYNC;
7012 ctx->drain_next = true;
7013 }
7014}
7015
Pavel Begunkovef4ff582020-04-12 02:05:05 +03007016static int io_init_req(struct io_ring_ctx *ctx, struct io_kiocb *req,
Pavel Begunkov258b29a2021-02-10 00:03:10 +00007017 const struct io_uring_sqe *sqe)
Pavel Begunkov282cdc82021-08-09 13:04:10 +01007018 __must_hold(&ctx->uring_lock)
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03007019{
Pavel Begunkovef4ff582020-04-12 02:05:05 +03007020 unsigned int sqe_flags;
Pavel Begunkovfc0ae022021-10-01 18:07:02 +01007021 int personality;
Pavel Begunkov4a04d1d2021-10-06 16:06:49 +01007022 u8 opcode;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03007023
Pavel Begunkov864ea922021-08-09 13:04:08 +01007024 /* req is partially pre-initialised, see io_preinit_req() */
Pavel Begunkov4a04d1d2021-10-06 16:06:49 +01007025 req->opcode = opcode = READ_ONCE(sqe->opcode);
Pavel Begunkov5be9ad12021-02-12 18:41:17 +00007026 /* same numerical values with corresponding REQ_F_*, safe to copy */
7027 req->flags = sqe_flags = READ_ONCE(sqe->flags);
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03007028 req->user_data = READ_ONCE(sqe->user_data);
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03007029 req->file = NULL;
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00007030 req->fixed_rsrc_refs = NULL;
Pavel Begunkov4dd28242020-06-15 10:33:13 +03007031 req->task = current;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03007032
Pavel Begunkov4a04d1d2021-10-06 16:06:49 +01007033 if (unlikely(opcode >= IORING_OP_LAST)) {
7034 req->opcode = 0;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03007035 return -EINVAL;
Pavel Begunkov4a04d1d2021-10-06 16:06:49 +01007036 }
Pavel Begunkov68fe2562021-09-15 12:03:38 +01007037 if (unlikely(sqe_flags & ~SQE_COMMON_FLAGS)) {
7038 /* enforce forwards compatibility on users */
7039 if (sqe_flags & ~SQE_VALID_FLAGS)
7040 return -EINVAL;
7041 if ((sqe_flags & IOSQE_BUFFER_SELECT) &&
Pavel Begunkov4a04d1d2021-10-06 16:06:49 +01007042 !io_op_defs[opcode].buffer_select)
Pavel Begunkov68fe2562021-09-15 12:03:38 +01007043 return -EOPNOTSUPP;
Pavel Begunkov22b2ca32021-10-01 18:07:00 +01007044 if (sqe_flags & IOSQE_IO_DRAIN)
7045 io_init_req_drain(req);
Pavel Begunkov68fe2562021-09-15 12:03:38 +01007046 }
Pavel Begunkov2a56a9b2021-09-24 21:59:57 +01007047 if (unlikely(ctx->restricted || ctx->drain_active || ctx->drain_next)) {
7048 if (ctx->restricted && !io_check_restriction(ctx, req, sqe_flags))
7049 return -EACCES;
7050 /* knock it to the slow queue path, will be drained there */
7051 if (ctx->drain_active)
7052 req->flags |= REQ_F_FORCE_ASYNC;
7053 /* if there is no link, we're at "next" request and need to drain */
7054 if (unlikely(ctx->drain_next) && !ctx->submit_state.link.head) {
7055 ctx->drain_next = false;
7056 ctx->drain_active = true;
Pavel Begunkov22b2ca32021-10-01 18:07:00 +01007057 req->flags |= IOSQE_IO_DRAIN | REQ_F_FORCE_ASYNC;
Pavel Begunkov2a56a9b2021-09-24 21:59:57 +01007058 }
7059 }
Stefano Garzarella21b55db2020-08-27 16:58:30 +02007060
Pavel Begunkov4a04d1d2021-10-06 16:06:49 +01007061 if (io_op_defs[opcode].needs_file) {
Pavel Begunkov6d634162021-10-06 16:06:46 +01007062 struct io_submit_state *state = &ctx->submit_state;
7063
7064 /*
7065 * Plug now if we have more than 2 IO left after this, and the
7066 * target is potentially a read/write to block based storage.
7067 */
Pavel Begunkov4a04d1d2021-10-06 16:06:49 +01007068 if (state->need_plug && io_op_defs[opcode].plug) {
Pavel Begunkov6d634162021-10-06 16:06:46 +01007069 state->plug_started = true;
7070 state->need_plug = false;
7071 blk_start_plug(&state->plug);
7072 }
7073
Pavel Begunkov62906e82021-08-10 14:52:47 +01007074 req->file = io_file_get(ctx, req, READ_ONCE(sqe->fd),
Pavel Begunkovac177052021-08-09 13:04:02 +01007075 (sqe_flags & IOSQE_FIXED_FILE));
Pavel Begunkovba13e232021-02-01 18:59:52 +00007076 if (unlikely(!req->file))
Pavel Begunkovfc0ae022021-10-01 18:07:02 +01007077 return -EBADF;
Pavel Begunkovbd5bbda2020-11-20 15:50:51 +00007078 }
Pavel Begunkovfc0ae022021-10-01 18:07:02 +01007079
Pavel Begunkov4a04d1d2021-10-06 16:06:49 +01007080 personality = READ_ONCE(sqe->personality);
7081 if (personality) {
7082 req->creds = xa_load(&ctx->personalities, personality);
7083 if (!req->creds)
7084 return -EINVAL;
7085 get_cred(req->creds);
7086 req->flags |= REQ_F_CREDS;
7087 }
7088
Pavel Begunkovfc0ae022021-10-01 18:07:02 +01007089 return io_req_prep(req, sqe);
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03007090}
7091
Pavel Begunkova6b8cadc2021-02-18 18:29:41 +00007092static int io_submit_sqe(struct io_ring_ctx *ctx, struct io_kiocb *req,
Pavel Begunkova1ab7b32021-02-18 18:29:42 +00007093 const struct io_uring_sqe *sqe)
Pavel Begunkov282cdc82021-08-09 13:04:10 +01007094 __must_hold(&ctx->uring_lock)
Jens Axboe6c271ce2019-01-10 11:22:30 -07007095{
Pavel Begunkova1ab7b32021-02-18 18:29:42 +00007096 struct io_submit_link *link = &ctx->submit_state.link;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007097 int ret;
7098
Pavel Begunkova6b8cadc2021-02-18 18:29:41 +00007099 ret = io_init_req(ctx, req, sqe);
7100 if (unlikely(ret)) {
Jens Axboea87acfd2021-09-11 16:04:50 -06007101 trace_io_uring_req_failed(sqe, ret);
7102
Hao Xua8295b92021-08-27 17:46:09 +08007103 /* fail even hard links since we don't submit */
Pavel Begunkovde59bc12021-02-18 18:29:47 +00007104 if (link->head) {
Hao Xua8295b92021-08-27 17:46:09 +08007105 /*
7106 * we can judge a link req is failed or cancelled by if
7107 * REQ_F_FAIL is set, but the head is an exception since
7108 * it may be set REQ_F_FAIL because of other req's failure
7109 * so let's leverage req->result to distinguish if a head
7110 * is set REQ_F_FAIL because of its failure or other req's
7111 * failure so that we can set the correct ret code for it.
7112 * init result here to avoid affecting the normal path.
7113 */
7114 if (!(link->head->flags & REQ_F_FAIL))
7115 req_fail_link_node(link->head, -ECANCELED);
7116 } else if (!(req->flags & (REQ_F_LINK | REQ_F_HARDLINK))) {
7117 /*
7118 * the current req is a normal req, we should return
7119 * error and thus break the submittion loop.
7120 */
7121 io_req_complete_failed(req, ret);
7122 return ret;
Pavel Begunkovde59bc12021-02-18 18:29:47 +00007123 }
Hao Xua8295b92021-08-27 17:46:09 +08007124 req_fail_link_node(req, ret);
Pavel Begunkova6b8cadc2021-02-18 18:29:41 +00007125 }
Pavel Begunkov441b8a72021-06-14 23:37:31 +01007126
Pavel Begunkovbe7053b2021-02-18 18:29:45 +00007127 /* don't need @sqe from now on */
Olivier Langlois236daeae2021-05-31 02:36:37 -04007128 trace_io_uring_submit_sqe(ctx, req, req->opcode, req->user_data,
7129 req->flags, true,
7130 ctx->flags & IORING_SETUP_SQPOLL);
Pavel Begunkova6b8cadc2021-02-18 18:29:41 +00007131
Jens Axboe6c271ce2019-01-10 11:22:30 -07007132 /*
7133 * If we already have a head request, queue this one for async
7134 * submittal once the head completes. If we don't have a head but
7135 * IOSQE_IO_LINK is set in the sqe, start a new head. This one will be
7136 * submitted sync once the chain is complete. If none of those
7137 * conditions are true (normal request), then just queue it.
7138 */
7139 if (link->head) {
7140 struct io_kiocb *head = link->head;
7141
Hao Xua8295b92021-08-27 17:46:09 +08007142 if (!(req->flags & REQ_F_FAIL)) {
7143 ret = io_req_prep_async(req);
7144 if (unlikely(ret)) {
7145 req_fail_link_node(req, ret);
7146 if (!(head->flags & REQ_F_FAIL))
7147 req_fail_link_node(head, -ECANCELED);
7148 }
7149 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07007150 trace_io_uring_link(ctx, req, head);
7151 link->last->link = req;
7152 link->last = req;
7153
Pavel Begunkovf15a3432021-09-24 21:59:56 +01007154 if (req->flags & (REQ_F_LINK | REQ_F_HARDLINK))
7155 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007156 /* last request of a link, enqueue the link */
Pavel Begunkovf15a3432021-09-24 21:59:56 +01007157 link->head = NULL;
7158 req = head;
7159 } else if (req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) {
7160 link->head = req;
7161 link->last = req;
7162 return 0;
Jackie Liu4fe2c962019-09-09 20:50:40 +08007163 }
7164
Pavel Begunkovf15a3432021-09-24 21:59:56 +01007165 io_queue_sqe(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08007166 return 0;
7167}
7168
7169/*
7170 * Batched submission is done, ensure local IO is flushed out.
7171 */
Pavel Begunkov553deff2021-09-24 21:59:55 +01007172static void io_submit_state_end(struct io_ring_ctx *ctx)
Jens Axboe3529d8c2019-12-19 18:24:38 -07007173{
Pavel Begunkov553deff2021-09-24 21:59:55 +01007174 struct io_submit_state *state = &ctx->submit_state;
7175
Pavel Begunkova1ab7b32021-02-18 18:29:42 +00007176 if (state->link.head)
Pavel Begunkovde59bc12021-02-18 18:29:47 +00007177 io_queue_sqe(state->link.head);
Pavel Begunkov553deff2021-09-24 21:59:55 +01007178 /* flush only after queuing links as they can generate completions */
Pavel Begunkovc4501782021-09-08 16:40:52 +01007179 io_submit_flush_completions(ctx);
Jackie Liua197f662019-11-08 08:09:12 -07007180 if (state->plug_started)
Pavel Begunkov32fe5252019-12-17 22:26:58 +03007181 blk_finish_plug(&state->plug);
Jens Axboe9e645e112019-05-10 16:07:28 -06007182}
Pavel Begunkov32fe5252019-12-17 22:26:58 +03007183
Jens Axboe9e645e112019-05-10 16:07:28 -06007184/*
7185 * Start submission side cache.
Pavel Begunkov32fe5252019-12-17 22:26:58 +03007186 */
Jens Axboe9e645e112019-05-10 16:07:28 -06007187static void io_submit_state_start(struct io_submit_state *state,
Pavel Begunkov196be952019-11-07 01:41:06 +03007188 unsigned int max_ios)
Jens Axboe9e645e112019-05-10 16:07:28 -06007189{
7190 state->plug_started = false;
Pavel Begunkov4b628ae2021-09-08 16:40:49 +01007191 state->need_plug = max_ios > 2;
Pavel Begunkova1ab7b32021-02-18 18:29:42 +00007192 /* set only head, no need to init link_last in advance */
7193 state->link.head = NULL;
Jens Axboe75c6a032020-01-28 10:15:23 -07007194}
7195
Jens Axboe193155c2020-02-22 23:22:19 -07007196static void io_commit_sqring(struct io_ring_ctx *ctx)
7197{
Jens Axboe75c6a032020-01-28 10:15:23 -07007198 struct io_rings *rings = ctx->rings;
7199
7200 /*
Jens Axboe193155c2020-02-22 23:22:19 -07007201 * Ensure any loads from the SQEs are done at this point,
Jens Axboe75c6a032020-01-28 10:15:23 -07007202 * since once we write the new head, the application could
7203 * write new data to them.
Pavel Begunkov6b47ee62020-01-18 20:22:41 +03007204 */
Pavel Begunkov8da11c12020-02-24 11:32:44 +03007205 smp_store_release(&rings->sq.head, ctx->cached_sq_head);
Jens Axboebcda7ba2020-02-23 16:42:51 -07007206}
7207
Jens Axboe9e645e112019-05-10 16:07:28 -06007208/*
Fam Zhengdd9ae8a2021-06-04 17:42:56 +01007209 * Fetch an sqe, if one is available. Note this returns a pointer to memory
Jens Axboe9e645e112019-05-10 16:07:28 -06007210 * that is mapped by userspace. This means that care needs to be taken to
7211 * ensure that reads are stable, as we cannot rely on userspace always
Jens Axboe78e19bb2019-11-06 15:21:34 -07007212 * being a good citizen. If members of the sqe are validated and then later
7213 * used, it's important that those reads are done through READ_ONCE() to
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03007214 * prevent a re-load down the line.
Jens Axboe9e645e112019-05-10 16:07:28 -06007215 */
7216static const struct io_uring_sqe *io_get_sqe(struct io_ring_ctx *ctx)
Jens Axboe9e645e112019-05-10 16:07:28 -06007217{
Pavel Begunkovea5ab3b2021-05-16 22:58:09 +01007218 unsigned head, mask = ctx->sq_entries - 1;
Pavel Begunkov17d3aeb2021-06-14 23:37:23 +01007219 unsigned sq_idx = ctx->cached_sq_head++ & mask;
Jens Axboe9e645e112019-05-10 16:07:28 -06007220
7221 /*
7222 * The cached sq head (or cq tail) serves two purposes:
7223 *
7224 * 1) allows us to batch the cost of updating the user visible
Pavel Begunkov9d763772019-12-17 02:22:07 +03007225 * head updates.
Jens Axboe9e645e112019-05-10 16:07:28 -06007226 * 2) allows the kernel side to track the head on its own, even
Pavel Begunkov8cdf2192020-01-25 00:40:24 +03007227 * though the application is the one updating it.
7228 */
Pavel Begunkov17d3aeb2021-06-14 23:37:23 +01007229 head = READ_ONCE(ctx->sq_array[sq_idx]);
Pavel Begunkov8cdf2192020-01-25 00:40:24 +03007230 if (likely(head < ctx->sq_entries))
7231 return &ctx->sq_sqes[head];
7232
7233 /* drop invalid entries */
Pavel Begunkov15641e42021-06-14 23:37:24 +01007234 ctx->cq_extra--;
7235 WRITE_ONCE(ctx->rings->sq_dropped,
7236 READ_ONCE(ctx->rings->sq_dropped) + 1);
Pavel Begunkov711be032020-01-17 03:57:59 +03007237 return NULL;
7238}
Jens Axboeb7bb4f72019-12-15 22:13:43 -07007239
Jens Axboe0f212202020-09-13 13:09:39 -06007240static int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr)
Pavel Begunkov282cdc82021-08-09 13:04:10 +01007241 __must_hold(&ctx->uring_lock)
Jens Axboe6c271ce2019-01-10 11:22:30 -07007242{
Pavel Begunkov69629802021-09-24 22:00:01 +01007243 unsigned int entries = io_sqring_entries(ctx);
Pavel Begunkov46c4e162021-02-18 18:29:37 +00007244 int submitted = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007245
Pavel Begunkov51d48da2021-10-04 20:02:47 +01007246 if (unlikely(!entries))
Pavel Begunkov69629802021-09-24 22:00:01 +01007247 return 0;
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03007248 /* make sure SQ entry isn't read before tail */
Pavel Begunkov69629802021-09-24 22:00:01 +01007249 nr = min3(nr, ctx->sq_entries, entries);
Pavel Begunkov9a108672021-08-27 11:55:01 +01007250 io_get_task_refs(nr);
Jens Axboe6c271ce2019-01-10 11:22:30 -07007251
Pavel Begunkovba88ff12021-02-10 00:03:11 +00007252 io_submit_state_start(&ctx->submit_state, nr);
Pavel Begunkov69629802021-09-24 22:00:01 +01007253 do {
Jens Axboe3529d8c2019-12-19 18:24:38 -07007254 const struct io_uring_sqe *sqe;
Pavel Begunkov196be952019-11-07 01:41:06 +03007255 struct io_kiocb *req;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03007256
Pavel Begunkova33ae9c2021-10-04 20:02:49 +01007257 if (unlikely(!io_alloc_req_refill(ctx))) {
Pavel Begunkov196be952019-11-07 01:41:06 +03007258 if (!submitted)
7259 submitted = -EAGAIN;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03007260 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06007261 }
Pavel Begunkova33ae9c2021-10-04 20:02:49 +01007262 req = io_alloc_req(ctx);
Pavel Begunkov4fccfcb2021-02-12 11:55:17 +00007263 sqe = io_get_sqe(ctx);
7264 if (unlikely(!sqe)) {
Pavel Begunkovc2b6c6b2021-09-24 21:59:47 +01007265 wq_stack_add_head(&req->comp_list, &ctx->submit_state.free_list);
Pavel Begunkov4fccfcb2021-02-12 11:55:17 +00007266 break;
7267 }
Jens Axboed3656342019-12-18 09:50:26 -07007268 /* will complete beyond this point, count as submitted */
7269 submitted++;
Pavel Begunkova1ab7b32021-02-18 18:29:42 +00007270 if (io_submit_sqe(ctx, req, sqe))
Jens Axboed3656342019-12-18 09:50:26 -07007271 break;
Pavel Begunkov69629802021-09-24 22:00:01 +01007272 } while (submitted < nr);
Jens Axboe6c271ce2019-01-10 11:22:30 -07007273
Pavel Begunkov9466f432020-01-25 22:34:01 +03007274 if (unlikely(submitted != nr)) {
7275 int ref_used = (submitted == -EAGAIN) ? 0 : submitted;
Jens Axboed8a6df12020-10-15 16:24:45 -06007276 int unused = nr - ref_used;
Pavel Begunkov9466f432020-01-25 22:34:01 +03007277
Pavel Begunkov09899b12021-06-14 02:36:22 +01007278 current->io_uring->cached_refs += unused;
Pavel Begunkov9466f432020-01-25 22:34:01 +03007279 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07007280
Pavel Begunkov553deff2021-09-24 21:59:55 +01007281 io_submit_state_end(ctx);
Pavel Begunkovae9428c2019-11-06 00:22:14 +03007282 /* Commit SQ ring head once we've consumed and submitted all SQEs */
7283 io_commit_sqring(ctx);
7284
Jens Axboe6c271ce2019-01-10 11:22:30 -07007285 return submitted;
7286}
7287
Pavel Begunkove4b6d902021-05-16 22:58:00 +01007288static inline bool io_sqd_events_pending(struct io_sq_data *sqd)
7289{
7290 return READ_ONCE(sqd->state);
7291}
7292
Xiaoguang Wang23b36282020-07-23 20:57:24 +08007293static inline void io_ring_set_wakeup_flag(struct io_ring_ctx *ctx)
7294{
7295 /* Tell userspace we may need a wakeup call */
Jens Axboe79ebeae2021-08-10 15:18:27 -06007296 spin_lock(&ctx->completion_lock);
Nadav Amit20c0b382021-08-07 17:13:42 -07007297 WRITE_ONCE(ctx->rings->sq_flags,
7298 ctx->rings->sq_flags | IORING_SQ_NEED_WAKEUP);
Jens Axboe79ebeae2021-08-10 15:18:27 -06007299 spin_unlock(&ctx->completion_lock);
Xiaoguang Wang23b36282020-07-23 20:57:24 +08007300}
7301
7302static inline void io_ring_clear_wakeup_flag(struct io_ring_ctx *ctx)
7303{
Jens Axboe79ebeae2021-08-10 15:18:27 -06007304 spin_lock(&ctx->completion_lock);
Nadav Amit20c0b382021-08-07 17:13:42 -07007305 WRITE_ONCE(ctx->rings->sq_flags,
7306 ctx->rings->sq_flags & ~IORING_SQ_NEED_WAKEUP);
Jens Axboe79ebeae2021-08-10 15:18:27 -06007307 spin_unlock(&ctx->completion_lock);
Xiaoguang Wang23b36282020-07-23 20:57:24 +08007308}
7309
Xiaoguang Wang08369242020-11-03 14:15:59 +08007310static int __io_sq_thread(struct io_ring_ctx *ctx, bool cap_entries)
Jens Axboe6c271ce2019-01-10 11:22:30 -07007311{
Jens Axboec8d1ba52020-09-14 11:07:26 -06007312 unsigned int to_submit;
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08007313 int ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007314
Jens Axboec8d1ba52020-09-14 11:07:26 -06007315 to_submit = io_sqring_entries(ctx);
Jens Axboee95eee22020-09-08 09:11:32 -06007316 /* if we're handling multiple rings, cap submit size for fairness */
Olivier Langlois4ce8ad92021-06-23 11:50:18 -07007317 if (cap_entries && to_submit > IORING_SQPOLL_CAP_ENTRIES_VALUE)
7318 to_submit = IORING_SQPOLL_CAP_ENTRIES_VALUE;
Jens Axboee95eee22020-09-08 09:11:32 -06007319
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01007320 if (!wq_list_empty(&ctx->iopoll_list) || to_submit) {
Pavel Begunkov948e1942021-06-24 15:09:55 +01007321 const struct cred *creds = NULL;
7322
7323 if (ctx->sq_creds != current_cred())
7324 creds = override_creds(ctx->sq_creds);
Xiaoguang Wang906a3c62020-11-12 14:56:00 +08007325
Xiaoguang Wang08369242020-11-03 14:15:59 +08007326 mutex_lock(&ctx->uring_lock);
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01007327 if (!wq_list_empty(&ctx->iopoll_list))
Pavel Begunkov5ba3c872021-09-24 21:59:43 +01007328 io_do_iopoll(ctx, true);
Xiaoguang Wang906a3c62020-11-12 14:56:00 +08007329
Pavel Begunkov3b763ba2021-04-18 14:52:08 +01007330 /*
7331 * Don't submit if refs are dying, good for io_uring_register(),
7332 * but also it is relied upon by io_ring_exit_work()
7333 */
Pavel Begunkov0298ef92021-03-08 13:20:57 +00007334 if (to_submit && likely(!percpu_ref_is_dying(&ctx->refs)) &&
7335 !(ctx->flags & IORING_SETUP_R_DISABLED))
Xiaoguang Wang08369242020-11-03 14:15:59 +08007336 ret = io_submit_sqes(ctx, to_submit);
7337 mutex_unlock(&ctx->uring_lock);
Jens Axboe90554202020-09-03 12:12:41 -06007338
Pavel Begunkovacfb3812021-05-16 22:58:03 +01007339 if (to_submit && wq_has_sleeper(&ctx->sqo_sq_wait))
7340 wake_up(&ctx->sqo_sq_wait);
Pavel Begunkov948e1942021-06-24 15:09:55 +01007341 if (creds)
7342 revert_creds(creds);
Pavel Begunkovacfb3812021-05-16 22:58:03 +01007343 }
Jens Axboe90554202020-09-03 12:12:41 -06007344
Xiaoguang Wang08369242020-11-03 14:15:59 +08007345 return ret;
7346}
7347
Pavel Begunkovc0724812021-10-04 20:02:54 +01007348static __cold void io_sqd_update_thread_idle(struct io_sq_data *sqd)
Xiaoguang Wang08369242020-11-03 14:15:59 +08007349{
7350 struct io_ring_ctx *ctx;
7351 unsigned sq_thread_idle = 0;
7352
Pavel Begunkovc9dca272021-03-10 13:13:55 +00007353 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list)
7354 sq_thread_idle = max(sq_thread_idle, ctx->sq_thread_idle);
Xiaoguang Wang08369242020-11-03 14:15:59 +08007355 sqd->sq_thread_idle = sq_thread_idle;
Jens Axboec8d1ba52020-09-14 11:07:26 -06007356}
7357
Pavel Begunkove4b6d902021-05-16 22:58:00 +01007358static bool io_sqd_handle_event(struct io_sq_data *sqd)
7359{
7360 bool did_sig = false;
7361 struct ksignal ksig;
7362
7363 if (test_bit(IO_SQ_THREAD_SHOULD_PARK, &sqd->state) ||
7364 signal_pending(current)) {
7365 mutex_unlock(&sqd->lock);
7366 if (signal_pending(current))
7367 did_sig = get_signal(&ksig);
7368 cond_resched();
7369 mutex_lock(&sqd->lock);
7370 }
Pavel Begunkove4b6d902021-05-16 22:58:00 +01007371 return did_sig || test_bit(IO_SQ_THREAD_SHOULD_STOP, &sqd->state);
7372}
7373
Jens Axboe6c271ce2019-01-10 11:22:30 -07007374static int io_sq_thread(void *data)
7375{
Jens Axboe69fb2132020-09-14 11:16:23 -06007376 struct io_sq_data *sqd = data;
7377 struct io_ring_ctx *ctx;
Xiaoguang Wanga0d92052020-11-12 14:55:59 +08007378 unsigned long timeout = 0;
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007379 char buf[TASK_COMM_LEN];
Xiaoguang Wang08369242020-11-03 14:15:59 +08007380 DEFINE_WAIT(wait);
Jens Axboe6c271ce2019-01-10 11:22:30 -07007381
Pavel Begunkov696ee882021-04-01 09:55:04 +01007382 snprintf(buf, sizeof(buf), "iou-sqp-%d", sqd->task_pid);
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007383 set_task_comm(current, buf);
Jens Axboe28cea78a2020-09-14 10:51:17 -06007384
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007385 if (sqd->sq_cpu != -1)
7386 set_cpus_allowed_ptr(current, cpumask_of(sqd->sq_cpu));
7387 else
7388 set_cpus_allowed_ptr(current, cpu_online_mask);
7389 current->flags |= PF_NO_SETAFFINITY;
7390
Pavel Begunkov09a6f4e2021-03-14 20:57:10 +00007391 mutex_lock(&sqd->lock);
Pavel Begunkove4b6d902021-05-16 22:58:00 +01007392 while (1) {
Pavel Begunkov1a924a82021-06-24 15:09:56 +01007393 bool cap_entries, sqt_spin = false;
Jens Axboec1edbf52019-11-10 16:56:04 -07007394
Pavel Begunkove4b6d902021-05-16 22:58:00 +01007395 if (io_sqd_events_pending(sqd) || signal_pending(current)) {
7396 if (io_sqd_handle_event(sqd))
Pavel Begunkovc7d95612021-04-13 11:43:00 +01007397 break;
Xiaoguang Wang08369242020-11-03 14:15:59 +08007398 timeout = jiffies + sqd->sq_thread_idle;
7399 }
Pavel Begunkove4b6d902021-05-16 22:58:00 +01007400
Jens Axboee95eee22020-09-08 09:11:32 -06007401 cap_entries = !list_is_singular(&sqd->ctx_list);
Jens Axboe69fb2132020-09-14 11:16:23 -06007402 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list) {
Pavel Begunkov948e1942021-06-24 15:09:55 +01007403 int ret = __io_sq_thread(ctx, cap_entries);
Stefan Metzmacher7c30f36a2021-03-07 11:54:28 +01007404
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01007405 if (!sqt_spin && (ret > 0 || !wq_list_empty(&ctx->iopoll_list)))
Xiaoguang Wang08369242020-11-03 14:15:59 +08007406 sqt_spin = true;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007407 }
Pavel Begunkovdd432ea52021-06-26 21:40:45 +01007408 if (io_run_task_work())
7409 sqt_spin = true;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007410
Xiaoguang Wang08369242020-11-03 14:15:59 +08007411 if (sqt_spin || !time_after(jiffies, timeout)) {
Jens Axboec8d1ba52020-09-14 11:07:26 -06007412 cond_resched();
Xiaoguang Wang08369242020-11-03 14:15:59 +08007413 if (sqt_spin)
7414 timeout = jiffies + sqd->sq_thread_idle;
7415 continue;
7416 }
7417
Xiaoguang Wang08369242020-11-03 14:15:59 +08007418 prepare_to_wait(&sqd->wait, &wait, TASK_INTERRUPTIBLE);
Pavel Begunkovdd432ea52021-06-26 21:40:45 +01007419 if (!io_sqd_events_pending(sqd) && !current->task_works) {
Pavel Begunkov1a924a82021-06-24 15:09:56 +01007420 bool needs_sched = true;
7421
Hao Xu724cb4f2021-04-21 23:19:11 +08007422 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list) {
Pavel Begunkovaaa9f0f2021-05-16 22:58:01 +01007423 io_ring_set_wakeup_flag(ctx);
7424
Hao Xu724cb4f2021-04-21 23:19:11 +08007425 if ((ctx->flags & IORING_SETUP_IOPOLL) &&
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01007426 !wq_list_empty(&ctx->iopoll_list)) {
Hao Xu724cb4f2021-04-21 23:19:11 +08007427 needs_sched = false;
7428 break;
7429 }
7430 if (io_sqring_entries(ctx)) {
7431 needs_sched = false;
7432 break;
7433 }
7434 }
7435
7436 if (needs_sched) {
7437 mutex_unlock(&sqd->lock);
7438 schedule();
7439 mutex_lock(&sqd->lock);
7440 }
Jens Axboe69fb2132020-09-14 11:16:23 -06007441 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list)
7442 io_ring_clear_wakeup_flag(ctx);
Jens Axboe6c271ce2019-01-10 11:22:30 -07007443 }
Xiaoguang Wang08369242020-11-03 14:15:59 +08007444
7445 finish_wait(&sqd->wait, &wait);
7446 timeout = jiffies + sqd->sq_thread_idle;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007447 }
7448
Pavel Begunkov78cc6872021-06-14 02:36:23 +01007449 io_uring_cancel_generic(true, sqd);
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007450 sqd->thread = NULL;
Jens Axboe05962f92021-03-06 13:58:48 -07007451 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list)
Jens Axboe5f3f26f2021-02-25 10:17:46 -07007452 io_ring_set_wakeup_flag(ctx);
Pavel Begunkov521d6a72021-03-11 23:29:38 +00007453 io_run_task_work();
Pavel Begunkov734551d2021-04-18 14:52:09 +01007454 mutex_unlock(&sqd->lock);
7455
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007456 complete(&sqd->exited);
7457 do_exit(0);
Jens Axboe6c271ce2019-01-10 11:22:30 -07007458}
7459
Jens Axboebda52162019-09-24 13:47:15 -06007460struct io_wait_queue {
7461 struct wait_queue_entry wq;
7462 struct io_ring_ctx *ctx;
Jens Axboe5fd46172021-08-06 14:04:31 -06007463 unsigned cq_tail;
Jens Axboebda52162019-09-24 13:47:15 -06007464 unsigned nr_timeouts;
7465};
7466
Pavel Begunkov6c503152021-01-04 20:36:36 +00007467static inline bool io_should_wake(struct io_wait_queue *iowq)
Jens Axboebda52162019-09-24 13:47:15 -06007468{
7469 struct io_ring_ctx *ctx = iowq->ctx;
Jens Axboe5fd46172021-08-06 14:04:31 -06007470 int dist = ctx->cached_cq_tail - (int) iowq->cq_tail;
Jens Axboebda52162019-09-24 13:47:15 -06007471
7472 /*
Brian Gianforcarod195a662019-12-13 03:09:50 -08007473 * Wake up if we have enough events, or if a timeout occurred since we
Jens Axboebda52162019-09-24 13:47:15 -06007474 * started waiting. For timeouts, we always want to return to userspace,
7475 * regardless of event count.
7476 */
Jens Axboe5fd46172021-08-06 14:04:31 -06007477 return dist >= 0 || atomic_read(&ctx->cq_timeouts) != iowq->nr_timeouts;
Jens Axboebda52162019-09-24 13:47:15 -06007478}
7479
7480static int io_wake_function(struct wait_queue_entry *curr, unsigned int mode,
7481 int wake_flags, void *key)
7482{
7483 struct io_wait_queue *iowq = container_of(curr, struct io_wait_queue,
7484 wq);
7485
Pavel Begunkov6c503152021-01-04 20:36:36 +00007486 /*
7487 * Cannot safely flush overflowed CQEs from here, ensure we wake up
7488 * the task, and the next invocation will do it.
7489 */
Pavel Begunkov5ed7a372021-06-14 23:37:27 +01007490 if (io_should_wake(iowq) || test_bit(0, &iowq->ctx->check_cq_overflow))
Pavel Begunkov6c503152021-01-04 20:36:36 +00007491 return autoremove_wake_function(curr, mode, wake_flags, key);
7492 return -1;
Jens Axboebda52162019-09-24 13:47:15 -06007493}
7494
Jens Axboeaf9c1a42020-09-24 13:32:18 -06007495static int io_run_task_work_sig(void)
7496{
7497 if (io_run_task_work())
7498 return 1;
7499 if (!signal_pending(current))
7500 return 0;
Jens Axboe0b8cfa92021-03-21 14:16:08 -06007501 if (test_thread_flag(TIF_NOTIFY_SIGNAL))
Jens Axboe792ee0f62020-10-22 20:17:18 -06007502 return -ERESTARTSYS;
Jens Axboeaf9c1a42020-09-24 13:32:18 -06007503 return -EINTR;
7504}
7505
Pavel Begunkoveeb60b92021-02-04 13:51:58 +00007506/* when returns >0, the caller should retry */
7507static inline int io_cqring_wait_schedule(struct io_ring_ctx *ctx,
7508 struct io_wait_queue *iowq,
7509 signed long *timeout)
7510{
7511 int ret;
7512
7513 /* make sure we run task_work before checking for signals */
7514 ret = io_run_task_work_sig();
7515 if (ret || io_should_wake(iowq))
7516 return ret;
7517 /* let the caller flush overflows, retry */
Pavel Begunkov5ed7a372021-06-14 23:37:27 +01007518 if (test_bit(0, &ctx->check_cq_overflow))
Pavel Begunkoveeb60b92021-02-04 13:51:58 +00007519 return 1;
7520
7521 *timeout = schedule_timeout(*timeout);
7522 return !*timeout ? -ETIME : 1;
7523}
7524
Jens Axboe2b188cc2019-01-07 10:46:33 -07007525/*
7526 * Wait until events become available, if we don't already have some. The
7527 * application must reap them itself, as they reside on the shared cq ring.
7528 */
7529static int io_cqring_wait(struct io_ring_ctx *ctx, int min_events,
Hao Xuc73ebb62020-11-03 10:54:37 +08007530 const sigset_t __user *sig, size_t sigsz,
7531 struct __kernel_timespec __user *uts)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007532{
Pavel Begunkov902910992021-08-09 09:07:32 -06007533 struct io_wait_queue iowq;
Hristo Venev75b28af2019-08-26 17:23:46 +00007534 struct io_rings *rings = ctx->rings;
Pavel Begunkovc1d5a222021-02-04 13:51:57 +00007535 signed long timeout = MAX_SCHEDULE_TIMEOUT;
7536 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007537
Jens Axboeb41e9852020-02-17 09:52:41 -07007538 do {
Pavel Begunkov90f67362021-08-09 20:18:12 +01007539 io_cqring_overflow_flush(ctx);
Pavel Begunkov6c503152021-01-04 20:36:36 +00007540 if (io_cqring_events(ctx) >= min_events)
Jens Axboeb41e9852020-02-17 09:52:41 -07007541 return 0;
Jens Axboe4c6e2772020-07-01 11:29:10 -06007542 if (!io_run_task_work())
Jens Axboeb41e9852020-02-17 09:52:41 -07007543 break;
Jens Axboeb41e9852020-02-17 09:52:41 -07007544 } while (1);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007545
Xiaoguang Wang44df58d2021-09-14 22:38:52 +08007546 if (uts) {
7547 struct timespec64 ts;
7548
7549 if (get_timespec64(&ts, uts))
7550 return -EFAULT;
7551 timeout = timespec64_to_jiffies(&ts);
7552 }
7553
Jens Axboe2b188cc2019-01-07 10:46:33 -07007554 if (sig) {
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01007555#ifdef CONFIG_COMPAT
7556 if (in_compat_syscall())
7557 ret = set_compat_user_sigmask((const compat_sigset_t __user *)sig,
Oleg Nesterovb7724342019-07-16 16:29:53 -07007558 sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01007559 else
7560#endif
Oleg Nesterovb7724342019-07-16 16:29:53 -07007561 ret = set_user_sigmask(sig, sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01007562
Jens Axboe2b188cc2019-01-07 10:46:33 -07007563 if (ret)
7564 return ret;
7565 }
7566
Pavel Begunkov902910992021-08-09 09:07:32 -06007567 init_waitqueue_func_entry(&iowq.wq, io_wake_function);
7568 iowq.wq.private = current;
7569 INIT_LIST_HEAD(&iowq.wq.entry);
7570 iowq.ctx = ctx;
Jens Axboebda52162019-09-24 13:47:15 -06007571 iowq.nr_timeouts = atomic_read(&ctx->cq_timeouts);
Jens Axboe5fd46172021-08-06 14:04:31 -06007572 iowq.cq_tail = READ_ONCE(ctx->rings->cq.head) + min_events;
Pavel Begunkov902910992021-08-09 09:07:32 -06007573
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02007574 trace_io_uring_cqring_wait(ctx, min_events);
Jens Axboebda52162019-09-24 13:47:15 -06007575 do {
Jens Axboeca0a2652021-03-04 17:15:48 -07007576 /* if we can't even flush overflow, don't wait for more */
Pavel Begunkov90f67362021-08-09 20:18:12 +01007577 if (!io_cqring_overflow_flush(ctx)) {
Jens Axboeca0a2652021-03-04 17:15:48 -07007578 ret = -EBUSY;
7579 break;
7580 }
Pavel Begunkov311997b2021-06-14 23:37:28 +01007581 prepare_to_wait_exclusive(&ctx->cq_wait, &iowq.wq,
Jens Axboebda52162019-09-24 13:47:15 -06007582 TASK_INTERRUPTIBLE);
Pavel Begunkoveeb60b92021-02-04 13:51:58 +00007583 ret = io_cqring_wait_schedule(ctx, &iowq, &timeout);
Pavel Begunkov311997b2021-06-14 23:37:28 +01007584 finish_wait(&ctx->cq_wait, &iowq.wq);
Jens Axboeca0a2652021-03-04 17:15:48 -07007585 cond_resched();
Pavel Begunkoveeb60b92021-02-04 13:51:58 +00007586 } while (ret > 0);
Jens Axboebda52162019-09-24 13:47:15 -06007587
Jens Axboeb7db41c2020-07-04 08:55:50 -06007588 restore_saved_sigmask_unless(ret == -EINTR);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007589
Hristo Venev75b28af2019-08-26 17:23:46 +00007590 return READ_ONCE(rings->cq.head) == READ_ONCE(rings->cq.tail) ? ret : 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007591}
7592
Pavel Begunkov9123c8f2021-06-14 02:36:20 +01007593static void io_free_page_table(void **table, size_t size)
Pavel Begunkov846a4ef2021-04-01 15:44:03 +01007594{
Pavel Begunkov9123c8f2021-06-14 02:36:20 +01007595 unsigned i, nr_tables = DIV_ROUND_UP(size, PAGE_SIZE);
Pavel Begunkov846a4ef2021-04-01 15:44:03 +01007596
7597 for (i = 0; i < nr_tables; i++)
Pavel Begunkov9123c8f2021-06-14 02:36:20 +01007598 kfree(table[i]);
7599 kfree(table);
7600}
7601
Pavel Begunkovc0724812021-10-04 20:02:54 +01007602static __cold void **io_alloc_page_table(size_t size)
Pavel Begunkov9123c8f2021-06-14 02:36:20 +01007603{
7604 unsigned i, nr_tables = DIV_ROUND_UP(size, PAGE_SIZE);
7605 size_t init_size = size;
7606 void **table;
7607
Pavel Begunkov0bea96f2021-08-20 10:36:36 +01007608 table = kcalloc(nr_tables, sizeof(*table), GFP_KERNEL_ACCOUNT);
Pavel Begunkov9123c8f2021-06-14 02:36:20 +01007609 if (!table)
7610 return NULL;
7611
7612 for (i = 0; i < nr_tables; i++) {
Pavel Begunkov27f6b312021-06-15 13:20:13 +01007613 unsigned int this_size = min_t(size_t, size, PAGE_SIZE);
Pavel Begunkov9123c8f2021-06-14 02:36:20 +01007614
Pavel Begunkov0bea96f2021-08-20 10:36:36 +01007615 table[i] = kzalloc(this_size, GFP_KERNEL_ACCOUNT);
Pavel Begunkov9123c8f2021-06-14 02:36:20 +01007616 if (!table[i]) {
7617 io_free_page_table(table, init_size);
7618 return NULL;
7619 }
7620 size -= this_size;
7621 }
7622 return table;
Pavel Begunkov846a4ef2021-04-01 15:44:03 +01007623}
7624
Pavel Begunkov28a9fe22021-04-01 15:43:47 +01007625static void io_rsrc_node_destroy(struct io_rsrc_node *ref_node)
7626{
7627 percpu_ref_exit(&ref_node->refs);
7628 kfree(ref_node);
7629}
7630
Pavel Begunkovc0724812021-10-04 20:02:54 +01007631static __cold void io_rsrc_node_ref_zero(struct percpu_ref *ref)
Pavel Begunkovb9bd2be2021-08-09 09:09:47 -06007632{
7633 struct io_rsrc_node *node = container_of(ref, struct io_rsrc_node, refs);
7634 struct io_ring_ctx *ctx = node->rsrc_data->ctx;
7635 unsigned long flags;
7636 bool first_add = false;
7637
7638 spin_lock_irqsave(&ctx->rsrc_ref_lock, flags);
7639 node->done = true;
7640
7641 while (!list_empty(&ctx->rsrc_ref_list)) {
7642 node = list_first_entry(&ctx->rsrc_ref_list,
7643 struct io_rsrc_node, node);
7644 /* recycle ref nodes in order */
7645 if (!node->done)
7646 break;
7647 list_del(&node->node);
7648 first_add |= llist_add(&node->llist, &ctx->rsrc_put_llist);
7649 }
7650 spin_unlock_irqrestore(&ctx->rsrc_ref_lock, flags);
7651
7652 if (first_add)
7653 mod_delayed_work(system_wq, &ctx->rsrc_put_work, HZ);
7654}
7655
7656static struct io_rsrc_node *io_rsrc_node_alloc(struct io_ring_ctx *ctx)
7657{
7658 struct io_rsrc_node *ref_node;
7659
7660 ref_node = kzalloc(sizeof(*ref_node), GFP_KERNEL);
7661 if (!ref_node)
7662 return NULL;
7663
7664 if (percpu_ref_init(&ref_node->refs, io_rsrc_node_ref_zero,
7665 0, GFP_KERNEL)) {
7666 kfree(ref_node);
7667 return NULL;
7668 }
7669 INIT_LIST_HEAD(&ref_node->node);
7670 INIT_LIST_HEAD(&ref_node->rsrc_list);
7671 ref_node->done = false;
7672 return ref_node;
7673}
7674
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01007675static void io_rsrc_node_switch(struct io_ring_ctx *ctx,
7676 struct io_rsrc_data *data_to_kill)
Pavel Begunkovab409402021-10-09 23:14:41 +01007677 __must_hold(&ctx->uring_lock)
Pavel Begunkov1642b442020-12-30 21:34:14 +00007678{
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01007679 WARN_ON_ONCE(!ctx->rsrc_backup_node);
7680 WARN_ON_ONCE(data_to_kill && !ctx->rsrc_node);
Pavel Begunkov82fbcfa2021-04-01 15:43:43 +01007681
Pavel Begunkovab409402021-10-09 23:14:41 +01007682 io_rsrc_refs_drop(ctx);
7683
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01007684 if (data_to_kill) {
7685 struct io_rsrc_node *rsrc_node = ctx->rsrc_node;
Pavel Begunkov82fbcfa2021-04-01 15:43:43 +01007686
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01007687 rsrc_node->rsrc_data = data_to_kill;
Jens Axboe4956b9e2021-08-09 07:49:41 -06007688 spin_lock_irq(&ctx->rsrc_ref_lock);
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01007689 list_add_tail(&rsrc_node->node, &ctx->rsrc_ref_list);
Jens Axboe4956b9e2021-08-09 07:49:41 -06007690 spin_unlock_irq(&ctx->rsrc_ref_lock);
Pavel Begunkov82fbcfa2021-04-01 15:43:43 +01007691
Pavel Begunkov3e942492021-04-11 01:46:34 +01007692 atomic_inc(&data_to_kill->refs);
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01007693 percpu_ref_kill(&rsrc_node->refs);
7694 ctx->rsrc_node = NULL;
7695 }
7696
7697 if (!ctx->rsrc_node) {
7698 ctx->rsrc_node = ctx->rsrc_backup_node;
7699 ctx->rsrc_backup_node = NULL;
7700 }
Pavel Begunkov1642b442020-12-30 21:34:14 +00007701}
7702
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01007703static int io_rsrc_node_switch_start(struct io_ring_ctx *ctx)
Pavel Begunkov8dd03af2021-03-19 17:22:36 +00007704{
7705 if (ctx->rsrc_backup_node)
7706 return 0;
Pavel Begunkovb895c9a2021-04-01 15:43:40 +01007707 ctx->rsrc_backup_node = io_rsrc_node_alloc(ctx);
Pavel Begunkov8dd03af2021-03-19 17:22:36 +00007708 return ctx->rsrc_backup_node ? 0 : -ENOMEM;
7709}
7710
Pavel Begunkovc0724812021-10-04 20:02:54 +01007711static __cold int io_rsrc_ref_quiesce(struct io_rsrc_data *data,
7712 struct io_ring_ctx *ctx)
Hao Xu8bad28d2021-02-19 17:19:36 +08007713{
7714 int ret;
Xiaoguang Wang05589552020-03-31 14:05:18 +08007715
Pavel Begunkov215c3902021-04-01 15:43:48 +01007716 /* As we may drop ->uring_lock, other task may have started quiesce */
Hao Xu8bad28d2021-02-19 17:19:36 +08007717 if (data->quiesce)
7718 return -ENXIO;
7719
7720 data->quiesce = true;
Pavel Begunkov1ffc5422020-12-30 21:34:15 +00007721 do {
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01007722 ret = io_rsrc_node_switch_start(ctx);
Pavel Begunkov8dd03af2021-03-19 17:22:36 +00007723 if (ret)
Pavel Begunkovf2303b12021-02-20 18:03:49 +00007724 break;
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01007725 io_rsrc_node_switch(ctx, data);
7726
Pavel Begunkov3e942492021-04-11 01:46:34 +01007727 /* kill initial ref, already quiesced if zero */
7728 if (atomic_dec_and_test(&data->refs))
7729 break;
Jens Axboec018db42021-08-09 08:15:50 -06007730 mutex_unlock(&ctx->uring_lock);
Hao Xu8bad28d2021-02-19 17:19:36 +08007731 flush_delayed_work(&ctx->rsrc_put_work);
Pavel Begunkov1ffc5422020-12-30 21:34:15 +00007732 ret = wait_for_completion_interruptible(&data->done);
Jens Axboec018db42021-08-09 08:15:50 -06007733 if (!ret) {
7734 mutex_lock(&ctx->uring_lock);
Pavel Begunkov1ffc5422020-12-30 21:34:15 +00007735 break;
Jens Axboec018db42021-08-09 08:15:50 -06007736 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07007737
Pavel Begunkov3e942492021-04-11 01:46:34 +01007738 atomic_inc(&data->refs);
7739 /* wait for all works potentially completing data->done */
7740 flush_delayed_work(&ctx->rsrc_put_work);
Jens Axboecb5e1b82021-02-25 07:37:35 -07007741 reinit_completion(&data->done);
Pavel Begunkov8dd03af2021-03-19 17:22:36 +00007742
Hao Xu8bad28d2021-02-19 17:19:36 +08007743 ret = io_run_task_work_sig();
7744 mutex_lock(&ctx->uring_lock);
Pavel Begunkovf2303b12021-02-20 18:03:49 +00007745 } while (ret >= 0);
Hao Xu8bad28d2021-02-19 17:19:36 +08007746 data->quiesce = false;
7747
Hao Xu8bad28d2021-02-19 17:19:36 +08007748 return ret;
Bijan Mottahedehd7954b22021-01-15 17:37:50 +00007749}
7750
Pavel Begunkov2d091d62021-06-14 02:36:21 +01007751static u64 *io_get_tag_slot(struct io_rsrc_data *data, unsigned int idx)
7752{
7753 unsigned int off = idx & IO_RSRC_TAG_TABLE_MASK;
7754 unsigned int table_idx = idx >> IO_RSRC_TAG_TABLE_SHIFT;
7755
7756 return &data->tags[table_idx][off];
7757}
7758
Pavel Begunkov44b31f22021-04-25 14:32:16 +01007759static void io_rsrc_data_free(struct io_rsrc_data *data)
7760{
Pavel Begunkov2d091d62021-06-14 02:36:21 +01007761 size_t size = data->nr * sizeof(data->tags[0][0]);
7762
7763 if (data->tags)
7764 io_free_page_table((void **)data->tags, size);
Pavel Begunkov44b31f22021-04-25 14:32:16 +01007765 kfree(data);
7766}
7767
Pavel Begunkovc0724812021-10-04 20:02:54 +01007768static __cold int io_rsrc_data_alloc(struct io_ring_ctx *ctx, rsrc_put_fn *do_put,
7769 u64 __user *utags, unsigned nr,
7770 struct io_rsrc_data **pdata)
Bijan Mottahedeh1ad555c2021-01-15 17:37:51 +00007771{
Pavel Begunkovb895c9a2021-04-01 15:43:40 +01007772 struct io_rsrc_data *data;
Pavel Begunkov2d091d62021-06-14 02:36:21 +01007773 int ret = -ENOMEM;
Pavel Begunkovd878c812021-06-14 02:36:18 +01007774 unsigned i;
Bijan Mottahedeh1ad555c2021-01-15 17:37:51 +00007775
7776 data = kzalloc(sizeof(*data), GFP_KERNEL);
7777 if (!data)
Pavel Begunkovd878c812021-06-14 02:36:18 +01007778 return -ENOMEM;
Pavel Begunkov2d091d62021-06-14 02:36:21 +01007779 data->tags = (u64 **)io_alloc_page_table(nr * sizeof(data->tags[0][0]));
Pavel Begunkovb60c8dc2021-04-25 14:32:18 +01007780 if (!data->tags) {
7781 kfree(data);
Pavel Begunkovd878c812021-06-14 02:36:18 +01007782 return -ENOMEM;
7783 }
Pavel Begunkov2d091d62021-06-14 02:36:21 +01007784
7785 data->nr = nr;
7786 data->ctx = ctx;
7787 data->do_put = do_put;
Pavel Begunkovd878c812021-06-14 02:36:18 +01007788 if (utags) {
Pavel Begunkov2d091d62021-06-14 02:36:21 +01007789 ret = -EFAULT;
Pavel Begunkovd878c812021-06-14 02:36:18 +01007790 for (i = 0; i < nr; i++) {
Colin Ian Kingfdd1dc32021-06-15 14:00:11 +01007791 u64 *tag_slot = io_get_tag_slot(data, i);
7792
7793 if (copy_from_user(tag_slot, &utags[i],
7794 sizeof(*tag_slot)))
Pavel Begunkov2d091d62021-06-14 02:36:21 +01007795 goto fail;
Pavel Begunkovd878c812021-06-14 02:36:18 +01007796 }
Pavel Begunkovb60c8dc2021-04-25 14:32:18 +01007797 }
7798
Pavel Begunkov3e942492021-04-11 01:46:34 +01007799 atomic_set(&data->refs, 1);
Bijan Mottahedeh1ad555c2021-01-15 17:37:51 +00007800 init_completion(&data->done);
Pavel Begunkovd878c812021-06-14 02:36:18 +01007801 *pdata = data;
7802 return 0;
Pavel Begunkov2d091d62021-06-14 02:36:21 +01007803fail:
7804 io_rsrc_data_free(data);
7805 return ret;
Bijan Mottahedeh1ad555c2021-01-15 17:37:51 +00007806}
7807
Pavel Begunkov9123c8f2021-06-14 02:36:20 +01007808static bool io_alloc_file_tables(struct io_file_table *table, unsigned nr_files)
7809{
Pavel Begunkov0bea96f2021-08-20 10:36:36 +01007810 table->files = kvcalloc(nr_files, sizeof(table->files[0]),
7811 GFP_KERNEL_ACCOUNT);
Pavel Begunkov9123c8f2021-06-14 02:36:20 +01007812 return !!table->files;
7813}
7814
Pavel Begunkov042b0d82021-08-09 13:04:01 +01007815static void io_free_file_tables(struct io_file_table *table)
Pavel Begunkov9123c8f2021-06-14 02:36:20 +01007816{
Pavel Begunkov042b0d82021-08-09 13:04:01 +01007817 kvfree(table->files);
Pavel Begunkov9123c8f2021-06-14 02:36:20 +01007818 table->files = NULL;
7819}
7820
Jens Axboe2b188cc2019-01-07 10:46:33 -07007821static void __io_sqe_files_unregister(struct io_ring_ctx *ctx)
7822{
7823#if defined(CONFIG_UNIX)
7824 if (ctx->ring_sock) {
7825 struct sock *sock = ctx->ring_sock->sk;
7826 struct sk_buff *skb;
7827
7828 while ((skb = skb_dequeue(&sock->sk_receive_queue)) != NULL)
7829 kfree_skb(skb);
7830 }
7831#else
7832 int i;
7833
7834 for (i = 0; i < ctx->nr_user_files; i++) {
7835 struct file *file;
7836
7837 file = io_file_from_index(ctx, i);
7838 if (file)
7839 fput(file);
7840 }
7841#endif
Pavel Begunkov042b0d82021-08-09 13:04:01 +01007842 io_free_file_tables(&ctx->file_table);
Pavel Begunkov44b31f22021-04-25 14:32:16 +01007843 io_rsrc_data_free(ctx->file_data);
Pavel Begunkovfff4db72021-04-25 14:32:15 +01007844 ctx->file_data = NULL;
7845 ctx->nr_user_files = 0;
Bijan Mottahedeh1ad555c2021-01-15 17:37:51 +00007846}
7847
Bijan Mottahedehd7954b22021-01-15 17:37:50 +00007848static int io_sqe_files_unregister(struct io_ring_ctx *ctx)
7849{
Bijan Mottahedehd7954b22021-01-15 17:37:50 +00007850 int ret;
7851
Pavel Begunkov08480402021-04-13 02:58:38 +01007852 if (!ctx->file_data)
Bijan Mottahedehd7954b22021-01-15 17:37:50 +00007853 return -ENXIO;
Pavel Begunkov08480402021-04-13 02:58:38 +01007854 ret = io_rsrc_ref_quiesce(ctx->file_data, ctx);
7855 if (!ret)
7856 __io_sqe_files_unregister(ctx);
7857 return ret;
Jens Axboe6b063142019-01-10 22:13:58 -07007858}
7859
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007860static void io_sq_thread_unpark(struct io_sq_data *sqd)
Pavel Begunkov09a6f4e2021-03-14 20:57:10 +00007861 __releases(&sqd->lock)
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007862{
Pavel Begunkov521d6a72021-03-11 23:29:38 +00007863 WARN_ON_ONCE(sqd->thread == current);
7864
Pavel Begunkov9e138a42021-03-14 20:57:12 +00007865 /*
7866 * Do the dance but not conditional clear_bit() because it'd race with
7867 * other threads incrementing park_pending and setting the bit.
7868 */
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007869 clear_bit(IO_SQ_THREAD_SHOULD_PARK, &sqd->state);
Pavel Begunkov9e138a42021-03-14 20:57:12 +00007870 if (atomic_dec_return(&sqd->park_pending))
7871 set_bit(IO_SQ_THREAD_SHOULD_PARK, &sqd->state);
Pavel Begunkov09a6f4e2021-03-14 20:57:10 +00007872 mutex_unlock(&sqd->lock);
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007873}
7874
Jens Axboe86e0d672021-03-05 08:44:39 -07007875static void io_sq_thread_park(struct io_sq_data *sqd)
Pavel Begunkov09a6f4e2021-03-14 20:57:10 +00007876 __acquires(&sqd->lock)
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007877{
Pavel Begunkov521d6a72021-03-11 23:29:38 +00007878 WARN_ON_ONCE(sqd->thread == current);
7879
Pavel Begunkov9e138a42021-03-14 20:57:12 +00007880 atomic_inc(&sqd->park_pending);
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007881 set_bit(IO_SQ_THREAD_SHOULD_PARK, &sqd->state);
Pavel Begunkov09a6f4e2021-03-14 20:57:10 +00007882 mutex_lock(&sqd->lock);
Jens Axboe05962f92021-03-06 13:58:48 -07007883 if (sqd->thread)
Jens Axboe86e0d672021-03-05 08:44:39 -07007884 wake_up_process(sqd->thread);
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007885}
7886
7887static void io_sq_thread_stop(struct io_sq_data *sqd)
7888{
Pavel Begunkov521d6a72021-03-11 23:29:38 +00007889 WARN_ON_ONCE(sqd->thread == current);
Pavel Begunkov88885f62021-04-11 01:46:38 +01007890 WARN_ON_ONCE(test_bit(IO_SQ_THREAD_SHOULD_STOP, &sqd->state));
Pavel Begunkov521d6a72021-03-11 23:29:38 +00007891
Jens Axboe05962f92021-03-06 13:58:48 -07007892 set_bit(IO_SQ_THREAD_SHOULD_STOP, &sqd->state);
Pavel Begunkov88885f62021-04-11 01:46:38 +01007893 mutex_lock(&sqd->lock);
Jens Axboee8f98f242021-03-09 16:32:13 -07007894 if (sqd->thread)
7895 wake_up_process(sqd->thread);
Pavel Begunkov09a6f4e2021-03-14 20:57:10 +00007896 mutex_unlock(&sqd->lock);
Jens Axboe05962f92021-03-06 13:58:48 -07007897 wait_for_completion(&sqd->exited);
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007898}
7899
Jens Axboe534ca6d2020-09-02 13:52:19 -06007900static void io_put_sq_data(struct io_sq_data *sqd)
Jens Axboe6c271ce2019-01-10 11:22:30 -07007901{
Jens Axboe534ca6d2020-09-02 13:52:19 -06007902 if (refcount_dec_and_test(&sqd->refs)) {
Pavel Begunkov9e138a42021-03-14 20:57:12 +00007903 WARN_ON_ONCE(atomic_read(&sqd->park_pending));
7904
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007905 io_sq_thread_stop(sqd);
7906 kfree(sqd);
7907 }
7908}
7909
7910static void io_sq_thread_finish(struct io_ring_ctx *ctx)
7911{
7912 struct io_sq_data *sqd = ctx->sq_data;
7913
7914 if (sqd) {
Jens Axboe05962f92021-03-06 13:58:48 -07007915 io_sq_thread_park(sqd);
Pavel Begunkov521d6a72021-03-11 23:29:38 +00007916 list_del_init(&ctx->sqd_list);
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007917 io_sqd_update_thread_idle(sqd);
Jens Axboe05962f92021-03-06 13:58:48 -07007918 io_sq_thread_unpark(sqd);
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007919
7920 io_put_sq_data(sqd);
7921 ctx->sq_data = NULL;
Jens Axboe534ca6d2020-09-02 13:52:19 -06007922 }
7923}
7924
Jens Axboeaa061652020-09-02 14:50:27 -06007925static struct io_sq_data *io_attach_sq_data(struct io_uring_params *p)
7926{
7927 struct io_ring_ctx *ctx_attach;
7928 struct io_sq_data *sqd;
7929 struct fd f;
7930
7931 f = fdget(p->wq_fd);
7932 if (!f.file)
7933 return ERR_PTR(-ENXIO);
7934 if (f.file->f_op != &io_uring_fops) {
7935 fdput(f);
7936 return ERR_PTR(-EINVAL);
7937 }
7938
7939 ctx_attach = f.file->private_data;
7940 sqd = ctx_attach->sq_data;
7941 if (!sqd) {
7942 fdput(f);
7943 return ERR_PTR(-EINVAL);
7944 }
Jens Axboe5c2469e2021-03-11 10:17:56 -07007945 if (sqd->task_tgid != current->tgid) {
7946 fdput(f);
7947 return ERR_PTR(-EPERM);
7948 }
Jens Axboeaa061652020-09-02 14:50:27 -06007949
7950 refcount_inc(&sqd->refs);
7951 fdput(f);
7952 return sqd;
7953}
7954
Pavel Begunkov26984fb2021-03-11 23:29:37 +00007955static struct io_sq_data *io_get_sq_data(struct io_uring_params *p,
7956 bool *attached)
Jens Axboe534ca6d2020-09-02 13:52:19 -06007957{
7958 struct io_sq_data *sqd;
7959
Pavel Begunkov26984fb2021-03-11 23:29:37 +00007960 *attached = false;
Jens Axboe5c2469e2021-03-11 10:17:56 -07007961 if (p->flags & IORING_SETUP_ATTACH_WQ) {
7962 sqd = io_attach_sq_data(p);
Pavel Begunkov26984fb2021-03-11 23:29:37 +00007963 if (!IS_ERR(sqd)) {
7964 *attached = true;
Jens Axboe5c2469e2021-03-11 10:17:56 -07007965 return sqd;
Pavel Begunkov26984fb2021-03-11 23:29:37 +00007966 }
Jens Axboe5c2469e2021-03-11 10:17:56 -07007967 /* fall through for EPERM case, setup new sqd/task */
7968 if (PTR_ERR(sqd) != -EPERM)
7969 return sqd;
7970 }
Jens Axboeaa061652020-09-02 14:50:27 -06007971
Jens Axboe534ca6d2020-09-02 13:52:19 -06007972 sqd = kzalloc(sizeof(*sqd), GFP_KERNEL);
7973 if (!sqd)
7974 return ERR_PTR(-ENOMEM);
7975
Pavel Begunkov9e138a42021-03-14 20:57:12 +00007976 atomic_set(&sqd->park_pending, 0);
Jens Axboe534ca6d2020-09-02 13:52:19 -06007977 refcount_set(&sqd->refs, 1);
Jens Axboe69fb2132020-09-14 11:16:23 -06007978 INIT_LIST_HEAD(&sqd->ctx_list);
Pavel Begunkov09a6f4e2021-03-14 20:57:10 +00007979 mutex_init(&sqd->lock);
Jens Axboe534ca6d2020-09-02 13:52:19 -06007980 init_waitqueue_head(&sqd->wait);
Jens Axboe37d1e2e2021-02-17 21:03:43 -07007981 init_completion(&sqd->exited);
Jens Axboe534ca6d2020-09-02 13:52:19 -06007982 return sqd;
7983}
7984
Jens Axboe6b063142019-01-10 22:13:58 -07007985#if defined(CONFIG_UNIX)
Jens Axboe6b063142019-01-10 22:13:58 -07007986/*
7987 * Ensure the UNIX gc is aware of our file set, so we are certain that
7988 * the io_uring can be safely unregistered on process exit, even if we have
7989 * loops in the file referencing.
7990 */
7991static int __io_sqe_files_scm(struct io_ring_ctx *ctx, int nr, int offset)
7992{
7993 struct sock *sk = ctx->ring_sock->sk;
7994 struct scm_fp_list *fpl;
7995 struct sk_buff *skb;
Jens Axboe08a45172019-10-03 08:11:03 -06007996 int i, nr_files;
Jens Axboe6b063142019-01-10 22:13:58 -07007997
Jens Axboe6b063142019-01-10 22:13:58 -07007998 fpl = kzalloc(sizeof(*fpl), GFP_KERNEL);
7999 if (!fpl)
8000 return -ENOMEM;
8001
8002 skb = alloc_skb(0, GFP_KERNEL);
8003 if (!skb) {
8004 kfree(fpl);
8005 return -ENOMEM;
8006 }
8007
8008 skb->sk = sk;
Jens Axboe6b063142019-01-10 22:13:58 -07008009
Jens Axboe08a45172019-10-03 08:11:03 -06008010 nr_files = 0;
Jens Axboe62e398b2021-02-21 16:19:37 -07008011 fpl->user = get_uid(current_user());
Jens Axboe6b063142019-01-10 22:13:58 -07008012 for (i = 0; i < nr; i++) {
Jens Axboe65e19f52019-10-26 07:20:21 -06008013 struct file *file = io_file_from_index(ctx, i + offset);
8014
8015 if (!file)
Jens Axboe08a45172019-10-03 08:11:03 -06008016 continue;
Jens Axboe65e19f52019-10-26 07:20:21 -06008017 fpl->fp[nr_files] = get_file(file);
Jens Axboe08a45172019-10-03 08:11:03 -06008018 unix_inflight(fpl->user, fpl->fp[nr_files]);
8019 nr_files++;
Jens Axboe6b063142019-01-10 22:13:58 -07008020 }
8021
Jens Axboe08a45172019-10-03 08:11:03 -06008022 if (nr_files) {
8023 fpl->max = SCM_MAX_FD;
8024 fpl->count = nr_files;
8025 UNIXCB(skb).fp = fpl;
Jens Axboe05f3fb32019-12-09 11:22:50 -07008026 skb->destructor = unix_destruct_scm;
Jens Axboe08a45172019-10-03 08:11:03 -06008027 refcount_add(skb->truesize, &sk->sk_wmem_alloc);
8028 skb_queue_head(&sk->sk_receive_queue, skb);
Jens Axboe6b063142019-01-10 22:13:58 -07008029
Jens Axboe08a45172019-10-03 08:11:03 -06008030 for (i = 0; i < nr_files; i++)
8031 fput(fpl->fp[i]);
8032 } else {
8033 kfree_skb(skb);
8034 kfree(fpl);
8035 }
Jens Axboe6b063142019-01-10 22:13:58 -07008036
8037 return 0;
8038}
8039
8040/*
8041 * If UNIX sockets are enabled, fd passing can cause a reference cycle which
8042 * causes regular reference counting to break down. We rely on the UNIX
8043 * garbage collection to take care of this problem for us.
8044 */
8045static int io_sqe_files_scm(struct io_ring_ctx *ctx)
8046{
8047 unsigned left, total;
8048 int ret = 0;
8049
8050 total = 0;
8051 left = ctx->nr_user_files;
8052 while (left) {
8053 unsigned this_files = min_t(unsigned, left, SCM_MAX_FD);
Jens Axboe6b063142019-01-10 22:13:58 -07008054
8055 ret = __io_sqe_files_scm(ctx, this_files, total);
8056 if (ret)
8057 break;
8058 left -= this_files;
8059 total += this_files;
8060 }
8061
8062 if (!ret)
8063 return 0;
8064
8065 while (total < ctx->nr_user_files) {
Jens Axboe65e19f52019-10-26 07:20:21 -06008066 struct file *file = io_file_from_index(ctx, total);
8067
8068 if (file)
8069 fput(file);
Jens Axboe6b063142019-01-10 22:13:58 -07008070 total++;
8071 }
8072
8073 return ret;
8074}
8075#else
8076static int io_sqe_files_scm(struct io_ring_ctx *ctx)
8077{
8078 return 0;
8079}
8080#endif
8081
Pavel Begunkov47e90392021-04-01 15:43:56 +01008082static void io_rsrc_file_put(struct io_ring_ctx *ctx, struct io_rsrc_put *prsrc)
Jens Axboec3a31e62019-10-03 13:59:56 -06008083{
Bijan Mottahedeh50238532021-01-15 17:37:45 +00008084 struct file *file = prsrc->file;
Jens Axboec3a31e62019-10-03 13:59:56 -06008085#if defined(CONFIG_UNIX)
Jens Axboec3a31e62019-10-03 13:59:56 -06008086 struct sock *sock = ctx->ring_sock->sk;
8087 struct sk_buff_head list, *head = &sock->sk_receive_queue;
8088 struct sk_buff *skb;
8089 int i;
8090
8091 __skb_queue_head_init(&list);
8092
8093 /*
8094 * Find the skb that holds this file in its SCM_RIGHTS. When found,
8095 * remove this entry and rearrange the file array.
8096 */
8097 skb = skb_dequeue(head);
8098 while (skb) {
8099 struct scm_fp_list *fp;
8100
8101 fp = UNIXCB(skb).fp;
8102 for (i = 0; i < fp->count; i++) {
8103 int left;
8104
8105 if (fp->fp[i] != file)
8106 continue;
8107
8108 unix_notinflight(fp->user, fp->fp[i]);
8109 left = fp->count - 1 - i;
8110 if (left) {
8111 memmove(&fp->fp[i], &fp->fp[i + 1],
8112 left * sizeof(struct file *));
8113 }
8114 fp->count--;
8115 if (!fp->count) {
8116 kfree_skb(skb);
8117 skb = NULL;
8118 } else {
8119 __skb_queue_tail(&list, skb);
8120 }
8121 fput(file);
8122 file = NULL;
8123 break;
8124 }
8125
8126 if (!file)
8127 break;
8128
8129 __skb_queue_tail(&list, skb);
8130
8131 skb = skb_dequeue(head);
8132 }
8133
8134 if (skb_peek(&list)) {
8135 spin_lock_irq(&head->lock);
8136 while ((skb = __skb_dequeue(&list)) != NULL)
8137 __skb_queue_tail(head, skb);
8138 spin_unlock_irq(&head->lock);
8139 }
8140#else
Jens Axboe05f3fb32019-12-09 11:22:50 -07008141 fput(file);
Jens Axboec3a31e62019-10-03 13:59:56 -06008142#endif
8143}
8144
Pavel Begunkovb895c9a2021-04-01 15:43:40 +01008145static void __io_rsrc_put_work(struct io_rsrc_node *ref_node)
Jens Axboe05f3fb32019-12-09 11:22:50 -07008146{
Pavel Begunkovb895c9a2021-04-01 15:43:40 +01008147 struct io_rsrc_data *rsrc_data = ref_node->rsrc_data;
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00008148 struct io_ring_ctx *ctx = rsrc_data->ctx;
8149 struct io_rsrc_put *prsrc, *tmp;
Xiaoguang Wang05589552020-03-31 14:05:18 +08008150
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00008151 list_for_each_entry_safe(prsrc, tmp, &ref_node->rsrc_list, list) {
8152 list_del(&prsrc->list);
Pavel Begunkovb60c8dc2021-04-25 14:32:18 +01008153
8154 if (prsrc->tag) {
8155 bool lock_ring = ctx->flags & IORING_SETUP_IOPOLL;
Pavel Begunkovb60c8dc2021-04-25 14:32:18 +01008156
8157 io_ring_submit_lock(ctx, lock_ring);
Jens Axboe79ebeae2021-08-10 15:18:27 -06008158 spin_lock(&ctx->completion_lock);
Pavel Begunkovb60c8dc2021-04-25 14:32:18 +01008159 io_cqring_fill_event(ctx, prsrc->tag, 0, 0);
Pavel Begunkov2840f712021-04-27 16:13:51 +01008160 ctx->cq_extra++;
Pavel Begunkovb60c8dc2021-04-25 14:32:18 +01008161 io_commit_cqring(ctx);
Jens Axboe79ebeae2021-08-10 15:18:27 -06008162 spin_unlock(&ctx->completion_lock);
Pavel Begunkovb60c8dc2021-04-25 14:32:18 +01008163 io_cqring_ev_posted(ctx);
8164 io_ring_submit_unlock(ctx, lock_ring);
8165 }
8166
Pavel Begunkov40ae0ff2021-04-01 15:43:44 +01008167 rsrc_data->do_put(ctx, prsrc);
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00008168 kfree(prsrc);
Jens Axboe05f3fb32019-12-09 11:22:50 -07008169 }
8170
Pavel Begunkov28a9fe22021-04-01 15:43:47 +01008171 io_rsrc_node_destroy(ref_node);
Pavel Begunkov3e942492021-04-11 01:46:34 +01008172 if (atomic_dec_and_test(&rsrc_data->refs))
8173 complete(&rsrc_data->done);
Jens Axboe05f3fb32019-12-09 11:22:50 -07008174}
8175
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00008176static void io_rsrc_put_work(struct work_struct *work)
Jens Axboe4a38aed22020-05-14 17:21:15 -06008177{
8178 struct io_ring_ctx *ctx;
8179 struct llist_node *node;
8180
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00008181 ctx = container_of(work, struct io_ring_ctx, rsrc_put_work.work);
8182 node = llist_del_all(&ctx->rsrc_put_llist);
Jens Axboe4a38aed22020-05-14 17:21:15 -06008183
8184 while (node) {
Pavel Begunkovb895c9a2021-04-01 15:43:40 +01008185 struct io_rsrc_node *ref_node;
Jens Axboe4a38aed22020-05-14 17:21:15 -06008186 struct llist_node *next = node->next;
8187
Pavel Begunkovb895c9a2021-04-01 15:43:40 +01008188 ref_node = llist_entry(node, struct io_rsrc_node, llist);
Bijan Mottahedeh269bbe52021-01-15 17:37:44 +00008189 __io_rsrc_put_work(ref_node);
Jens Axboe4a38aed22020-05-14 17:21:15 -06008190 node = next;
8191 }
8192}
8193
Jens Axboe05f3fb32019-12-09 11:22:50 -07008194static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
Pavel Begunkov792e3582021-04-25 14:32:21 +01008195 unsigned nr_args, u64 __user *tags)
Jens Axboe05f3fb32019-12-09 11:22:50 -07008196{
8197 __s32 __user *fds = (__s32 __user *) arg;
Jens Axboe05f3fb32019-12-09 11:22:50 -07008198 struct file *file;
Pavel Begunkovf3baed32021-04-01 15:43:42 +01008199 int fd, ret;
Pavel Begunkov846a4ef2021-04-01 15:44:03 +01008200 unsigned i;
Jens Axboe05f3fb32019-12-09 11:22:50 -07008201
8202 if (ctx->file_data)
8203 return -EBUSY;
8204 if (!nr_args)
8205 return -EINVAL;
8206 if (nr_args > IORING_MAX_FIXED_FILES)
8207 return -EMFILE;
Pavel Begunkov3a1b8a42021-08-20 10:36:35 +01008208 if (nr_args > rlimit(RLIMIT_NOFILE))
8209 return -EMFILE;
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01008210 ret = io_rsrc_node_switch_start(ctx);
Pavel Begunkovf3baed32021-04-01 15:43:42 +01008211 if (ret)
8212 return ret;
Pavel Begunkovd878c812021-06-14 02:36:18 +01008213 ret = io_rsrc_data_alloc(ctx, io_rsrc_file_put, tags, nr_args,
8214 &ctx->file_data);
8215 if (ret)
8216 return ret;
Jens Axboe05f3fb32019-12-09 11:22:50 -07008217
Pavel Begunkovf3baed32021-04-01 15:43:42 +01008218 ret = -ENOMEM;
Pavel Begunkovaeca2412021-04-11 01:46:37 +01008219 if (!io_alloc_file_tables(&ctx->file_table, nr_args))
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01008220 goto out_free;
Jens Axboe05f3fb32019-12-09 11:22:50 -07008221
Jens Axboe05f3fb32019-12-09 11:22:50 -07008222 for (i = 0; i < nr_args; i++, ctx->nr_user_files++) {
Pavel Begunkovd878c812021-06-14 02:36:18 +01008223 if (copy_from_user(&fd, &fds[i], sizeof(fd))) {
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01008224 ret = -EFAULT;
8225 goto out_fput;
Jens Axboe05f3fb32019-12-09 11:22:50 -07008226 }
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01008227 /* allow sparse sets */
Pavel Begunkov792e3582021-04-25 14:32:21 +01008228 if (fd == -1) {
8229 ret = -EINVAL;
Pavel Begunkov2d091d62021-06-14 02:36:21 +01008230 if (unlikely(*io_get_tag_slot(ctx->file_data, i)))
Pavel Begunkov792e3582021-04-25 14:32:21 +01008231 goto out_fput;
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01008232 continue;
Pavel Begunkov792e3582021-04-25 14:32:21 +01008233 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07008234
Jens Axboe05f3fb32019-12-09 11:22:50 -07008235 file = fget(fd);
Jens Axboe05f3fb32019-12-09 11:22:50 -07008236 ret = -EBADF;
Pavel Begunkov792e3582021-04-25 14:32:21 +01008237 if (unlikely(!file))
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01008238 goto out_fput;
Jens Axboe05f3fb32019-12-09 11:22:50 -07008239
8240 /*
8241 * Don't allow io_uring instances to be registered. If UNIX
8242 * isn't enabled, then this causes a reference cycle and this
8243 * instance can never get freed. If UNIX is enabled we'll
8244 * handle it just fine, but there's still no point in allowing
8245 * a ring fd as it doesn't support regular read/write anyway.
8246 */
8247 if (file->f_op == &io_uring_fops) {
8248 fput(file);
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01008249 goto out_fput;
Jens Axboe05f3fb32019-12-09 11:22:50 -07008250 }
Pavel Begunkovaeca2412021-04-11 01:46:37 +01008251 io_fixed_file_set(io_fixed_file_slot(&ctx->file_table, i), file);
Jens Axboe05f3fb32019-12-09 11:22:50 -07008252 }
8253
Jens Axboe05f3fb32019-12-09 11:22:50 -07008254 ret = io_sqe_files_scm(ctx);
Xiaoguang Wang05589552020-03-31 14:05:18 +08008255 if (ret) {
Pavel Begunkov08480402021-04-13 02:58:38 +01008256 __io_sqe_files_unregister(ctx);
Xiaoguang Wang05589552020-03-31 14:05:18 +08008257 return ret;
8258 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07008259
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01008260 io_rsrc_node_switch(ctx, NULL);
Jens Axboe05f3fb32019-12-09 11:22:50 -07008261 return ret;
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01008262out_fput:
8263 for (i = 0; i < ctx->nr_user_files; i++) {
8264 file = io_file_from_index(ctx, i);
8265 if (file)
8266 fput(file);
8267 }
Pavel Begunkov042b0d82021-08-09 13:04:01 +01008268 io_free_file_tables(&ctx->file_table);
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01008269 ctx->nr_user_files = 0;
Pavel Begunkov600cf3f2020-10-10 18:34:15 +01008270out_free:
Pavel Begunkov44b31f22021-04-25 14:32:16 +01008271 io_rsrc_data_free(ctx->file_data);
Jens Axboe55cbc252020-10-14 07:35:57 -06008272 ctx->file_data = NULL;
Jens Axboe05f3fb32019-12-09 11:22:50 -07008273 return ret;
8274}
8275
Jens Axboec3a31e62019-10-03 13:59:56 -06008276static int io_sqe_file_register(struct io_ring_ctx *ctx, struct file *file,
8277 int index)
8278{
8279#if defined(CONFIG_UNIX)
8280 struct sock *sock = ctx->ring_sock->sk;
8281 struct sk_buff_head *head = &sock->sk_receive_queue;
8282 struct sk_buff *skb;
8283
8284 /*
8285 * See if we can merge this file into an existing skb SCM_RIGHTS
8286 * file set. If there's no room, fall back to allocating a new skb
8287 * and filling it in.
8288 */
8289 spin_lock_irq(&head->lock);
8290 skb = skb_peek(head);
8291 if (skb) {
8292 struct scm_fp_list *fpl = UNIXCB(skb).fp;
8293
8294 if (fpl->count < SCM_MAX_FD) {
8295 __skb_unlink(skb, head);
8296 spin_unlock_irq(&head->lock);
8297 fpl->fp[fpl->count] = get_file(file);
8298 unix_inflight(fpl->user, fpl->fp[fpl->count]);
8299 fpl->count++;
8300 spin_lock_irq(&head->lock);
8301 __skb_queue_head(head, skb);
8302 } else {
8303 skb = NULL;
8304 }
8305 }
8306 spin_unlock_irq(&head->lock);
8307
8308 if (skb) {
8309 fput(file);
8310 return 0;
8311 }
8312
8313 return __io_sqe_files_scm(ctx, 1, index);
8314#else
8315 return 0;
8316#endif
8317}
8318
Pavel Begunkov9c7b0ba2021-09-14 16:12:52 +01008319static int io_queue_rsrc_removal(struct io_rsrc_data *data, unsigned idx,
8320 struct io_rsrc_node *node, void *rsrc)
8321{
8322 struct io_rsrc_put *prsrc;
8323
8324 prsrc = kzalloc(sizeof(*prsrc), GFP_KERNEL);
8325 if (!prsrc)
8326 return -ENOMEM;
8327
8328 prsrc->tag = *io_get_tag_slot(data, idx);
8329 prsrc->rsrc = rsrc;
8330 list_add(&prsrc->list, &node->rsrc_list);
8331 return 0;
8332}
8333
Pavel Begunkovb9445592021-08-25 12:25:45 +01008334static int io_install_fixed_file(struct io_kiocb *req, struct file *file,
8335 unsigned int issue_flags, u32 slot_index)
8336{
8337 struct io_ring_ctx *ctx = req->ctx;
8338 bool force_nonblock = issue_flags & IO_URING_F_NONBLOCK;
Pavel Begunkov9c7b0ba2021-09-14 16:12:52 +01008339 bool needs_switch = false;
Pavel Begunkovb9445592021-08-25 12:25:45 +01008340 struct io_fixed_file *file_slot;
8341 int ret = -EBADF;
8342
8343 io_ring_submit_lock(ctx, !force_nonblock);
8344 if (file->f_op == &io_uring_fops)
8345 goto err;
8346 ret = -ENXIO;
8347 if (!ctx->file_data)
8348 goto err;
8349 ret = -EINVAL;
8350 if (slot_index >= ctx->nr_user_files)
8351 goto err;
8352
8353 slot_index = array_index_nospec(slot_index, ctx->nr_user_files);
8354 file_slot = io_fixed_file_slot(&ctx->file_table, slot_index);
Pavel Begunkov9c7b0ba2021-09-14 16:12:52 +01008355
8356 if (file_slot->file_ptr) {
8357 struct file *old_file;
8358
8359 ret = io_rsrc_node_switch_start(ctx);
8360 if (ret)
8361 goto err;
8362
8363 old_file = (struct file *)(file_slot->file_ptr & FFS_MASK);
8364 ret = io_queue_rsrc_removal(ctx->file_data, slot_index,
8365 ctx->rsrc_node, old_file);
8366 if (ret)
8367 goto err;
8368 file_slot->file_ptr = 0;
8369 needs_switch = true;
8370 }
Pavel Begunkovb9445592021-08-25 12:25:45 +01008371
8372 *io_get_tag_slot(ctx->file_data, slot_index) = 0;
8373 io_fixed_file_set(file_slot, file);
8374 ret = io_sqe_file_register(ctx, file, slot_index);
8375 if (ret) {
8376 file_slot->file_ptr = 0;
8377 goto err;
8378 }
8379
8380 ret = 0;
8381err:
Pavel Begunkov9c7b0ba2021-09-14 16:12:52 +01008382 if (needs_switch)
8383 io_rsrc_node_switch(ctx, ctx->file_data);
Pavel Begunkovb9445592021-08-25 12:25:45 +01008384 io_ring_submit_unlock(ctx, !force_nonblock);
8385 if (ret)
8386 fput(file);
8387 return ret;
8388}
8389
Pavel Begunkov7df778b2021-09-24 20:04:29 +01008390static int io_close_fixed(struct io_kiocb *req, unsigned int issue_flags)
8391{
8392 unsigned int offset = req->close.file_slot - 1;
8393 struct io_ring_ctx *ctx = req->ctx;
8394 struct io_fixed_file *file_slot;
8395 struct file *file;
8396 int ret, i;
8397
8398 io_ring_submit_lock(ctx, !(issue_flags & IO_URING_F_NONBLOCK));
8399 ret = -ENXIO;
8400 if (unlikely(!ctx->file_data))
8401 goto out;
8402 ret = -EINVAL;
8403 if (offset >= ctx->nr_user_files)
8404 goto out;
8405 ret = io_rsrc_node_switch_start(ctx);
8406 if (ret)
8407 goto out;
8408
8409 i = array_index_nospec(offset, ctx->nr_user_files);
8410 file_slot = io_fixed_file_slot(&ctx->file_table, i);
8411 ret = -EBADF;
8412 if (!file_slot->file_ptr)
8413 goto out;
8414
8415 file = (struct file *)(file_slot->file_ptr & FFS_MASK);
8416 ret = io_queue_rsrc_removal(ctx->file_data, offset, ctx->rsrc_node, file);
8417 if (ret)
8418 goto out;
8419
8420 file_slot->file_ptr = 0;
8421 io_rsrc_node_switch(ctx, ctx->file_data);
8422 ret = 0;
8423out:
8424 io_ring_submit_unlock(ctx, !(issue_flags & IO_URING_F_NONBLOCK));
8425 return ret;
8426}
8427
Jens Axboe05f3fb32019-12-09 11:22:50 -07008428static int __io_sqe_files_update(struct io_ring_ctx *ctx,
Pavel Begunkovc3bdad02021-04-25 14:32:22 +01008429 struct io_uring_rsrc_update2 *up,
Jens Axboe05f3fb32019-12-09 11:22:50 -07008430 unsigned nr_args)
8431{
Pavel Begunkovc3bdad02021-04-25 14:32:22 +01008432 u64 __user *tags = u64_to_user_ptr(up->tags);
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +01008433 __s32 __user *fds = u64_to_user_ptr(up->data);
Pavel Begunkovb895c9a2021-04-01 15:43:40 +01008434 struct io_rsrc_data *data = ctx->file_data;
Pavel Begunkova04b0ac2021-04-01 15:44:04 +01008435 struct io_fixed_file *file_slot;
8436 struct file *file;
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +01008437 int fd, i, err = 0;
8438 unsigned int done;
Xiaoguang Wang05589552020-03-31 14:05:18 +08008439 bool needs_switch = false;
Jens Axboec3a31e62019-10-03 13:59:56 -06008440
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +01008441 if (!ctx->file_data)
8442 return -ENXIO;
8443 if (up->offset + nr_args > ctx->nr_user_files)
Jens Axboec3a31e62019-10-03 13:59:56 -06008444 return -EINVAL;
8445
Pavel Begunkov67973b92021-01-26 13:51:09 +00008446 for (done = 0; done < nr_args; done++) {
Pavel Begunkovc3bdad02021-04-25 14:32:22 +01008447 u64 tag = 0;
8448
8449 if ((tags && copy_from_user(&tag, &tags[done], sizeof(tag))) ||
8450 copy_from_user(&fd, &fds[done], sizeof(fd))) {
Jens Axboec3a31e62019-10-03 13:59:56 -06008451 err = -EFAULT;
8452 break;
8453 }
Pavel Begunkovc3bdad02021-04-25 14:32:22 +01008454 if ((fd == IORING_REGISTER_FILES_SKIP || fd == -1) && tag) {
8455 err = -EINVAL;
8456 break;
8457 }
noah4e0377a2021-01-26 15:23:28 -05008458 if (fd == IORING_REGISTER_FILES_SKIP)
8459 continue;
8460
Pavel Begunkov67973b92021-01-26 13:51:09 +00008461 i = array_index_nospec(up->offset + done, ctx->nr_user_files);
Pavel Begunkovaeca2412021-04-11 01:46:37 +01008462 file_slot = io_fixed_file_slot(&ctx->file_table, i);
Pavel Begunkovea64ec022021-02-04 13:52:07 +00008463
Pavel Begunkova04b0ac2021-04-01 15:44:04 +01008464 if (file_slot->file_ptr) {
8465 file = (struct file *)(file_slot->file_ptr & FFS_MASK);
Pavel Begunkovb60c8dc2021-04-25 14:32:18 +01008466 err = io_queue_rsrc_removal(data, up->offset + done,
8467 ctx->rsrc_node, file);
Hillf Dantona5318d32020-03-23 17:47:15 +08008468 if (err)
8469 break;
Pavel Begunkova04b0ac2021-04-01 15:44:04 +01008470 file_slot->file_ptr = 0;
Xiaoguang Wang05589552020-03-31 14:05:18 +08008471 needs_switch = true;
Jens Axboec3a31e62019-10-03 13:59:56 -06008472 }
8473 if (fd != -1) {
Jens Axboec3a31e62019-10-03 13:59:56 -06008474 file = fget(fd);
8475 if (!file) {
8476 err = -EBADF;
8477 break;
8478 }
8479 /*
8480 * Don't allow io_uring instances to be registered. If
8481 * UNIX isn't enabled, then this causes a reference
8482 * cycle and this instance can never get freed. If UNIX
8483 * is enabled we'll handle it just fine, but there's
8484 * still no point in allowing a ring fd as it doesn't
8485 * support regular read/write anyway.
8486 */
8487 if (file->f_op == &io_uring_fops) {
8488 fput(file);
8489 err = -EBADF;
8490 break;
8491 }
Pavel Begunkov2d091d62021-06-14 02:36:21 +01008492 *io_get_tag_slot(data, up->offset + done) = tag;
Pavel Begunkov9a321c92021-04-01 15:44:01 +01008493 io_fixed_file_set(file_slot, file);
Jens Axboec3a31e62019-10-03 13:59:56 -06008494 err = io_sqe_file_register(ctx, file, i);
Yang Yingliangf3bd9da2020-07-09 10:11:41 +00008495 if (err) {
Pavel Begunkova04b0ac2021-04-01 15:44:04 +01008496 file_slot->file_ptr = 0;
Yang Yingliangf3bd9da2020-07-09 10:11:41 +00008497 fput(file);
Jens Axboec3a31e62019-10-03 13:59:56 -06008498 break;
Yang Yingliangf3bd9da2020-07-09 10:11:41 +00008499 }
Jens Axboec3a31e62019-10-03 13:59:56 -06008500 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07008501 }
8502
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01008503 if (needs_switch)
8504 io_rsrc_node_switch(ctx, data);
Jens Axboec3a31e62019-10-03 13:59:56 -06008505 return done ? done : err;
8506}
Xiaoguang Wang05589552020-03-31 14:05:18 +08008507
Jens Axboe685fe7f2021-03-08 09:37:51 -07008508static struct io_wq *io_init_wq_offload(struct io_ring_ctx *ctx,
8509 struct task_struct *task)
Pavel Begunkov24369c22020-01-28 03:15:48 +03008510{
Jens Axboee9418942021-02-19 12:33:30 -07008511 struct io_wq_hash *hash;
Pavel Begunkov24369c22020-01-28 03:15:48 +03008512 struct io_wq_data data;
Pavel Begunkov24369c22020-01-28 03:15:48 +03008513 unsigned int concurrency;
Pavel Begunkov24369c22020-01-28 03:15:48 +03008514
Yang Yingliang362a9e62021-07-20 16:38:05 +08008515 mutex_lock(&ctx->uring_lock);
Jens Axboee9418942021-02-19 12:33:30 -07008516 hash = ctx->hash_map;
8517 if (!hash) {
8518 hash = kzalloc(sizeof(*hash), GFP_KERNEL);
Yang Yingliang362a9e62021-07-20 16:38:05 +08008519 if (!hash) {
8520 mutex_unlock(&ctx->uring_lock);
Jens Axboee9418942021-02-19 12:33:30 -07008521 return ERR_PTR(-ENOMEM);
Yang Yingliang362a9e62021-07-20 16:38:05 +08008522 }
Jens Axboee9418942021-02-19 12:33:30 -07008523 refcount_set(&hash->refs, 1);
8524 init_waitqueue_head(&hash->wait);
8525 ctx->hash_map = hash;
8526 }
Yang Yingliang362a9e62021-07-20 16:38:05 +08008527 mutex_unlock(&ctx->uring_lock);
Jens Axboee9418942021-02-19 12:33:30 -07008528
8529 data.hash = hash;
Jens Axboe685fe7f2021-03-08 09:37:51 -07008530 data.task = task;
Pavel Begunkovebc11b62021-08-09 13:04:05 +01008531 data.free_work = io_wq_free_work;
Pavel Begunkovf5fa38c2020-06-08 21:08:20 +03008532 data.do_work = io_wq_submit_work;
Pavel Begunkov24369c22020-01-28 03:15:48 +03008533
Jens Axboed25e3a32021-02-16 11:41:41 -07008534 /* Do QD, or 4 * CPUS, whatever is smallest */
8535 concurrency = min(ctx->sq_entries, 4 * num_online_cpus());
Pavel Begunkov24369c22020-01-28 03:15:48 +03008536
Jens Axboe5aa75ed2021-02-16 12:56:50 -07008537 return io_wq_create(concurrency, &data);
Pavel Begunkov24369c22020-01-28 03:15:48 +03008538}
8539
Pavel Begunkovc0724812021-10-04 20:02:54 +01008540static __cold int io_uring_alloc_task_context(struct task_struct *task,
8541 struct io_ring_ctx *ctx)
Jens Axboe0f212202020-09-13 13:09:39 -06008542{
8543 struct io_uring_task *tctx;
Jens Axboed8a6df12020-10-15 16:24:45 -06008544 int ret;
Jens Axboe0f212202020-09-13 13:09:39 -06008545
Pavel Begunkov09899b12021-06-14 02:36:22 +01008546 tctx = kzalloc(sizeof(*tctx), GFP_KERNEL);
Jens Axboe0f212202020-09-13 13:09:39 -06008547 if (unlikely(!tctx))
8548 return -ENOMEM;
8549
Jens Axboed8a6df12020-10-15 16:24:45 -06008550 ret = percpu_counter_init(&tctx->inflight, 0, GFP_KERNEL);
8551 if (unlikely(ret)) {
8552 kfree(tctx);
8553 return ret;
8554 }
8555
Jens Axboe685fe7f2021-03-08 09:37:51 -07008556 tctx->io_wq = io_init_wq_offload(ctx, task);
Jens Axboe5aa75ed2021-02-16 12:56:50 -07008557 if (IS_ERR(tctx->io_wq)) {
8558 ret = PTR_ERR(tctx->io_wq);
8559 percpu_counter_destroy(&tctx->inflight);
8560 kfree(tctx);
8561 return ret;
8562 }
8563
Jens Axboe0f212202020-09-13 13:09:39 -06008564 xa_init(&tctx->xa);
8565 init_waitqueue_head(&tctx->wait);
Jens Axboefdaf0832020-10-30 09:37:30 -06008566 atomic_set(&tctx->in_idle, 0);
Pavel Begunkovb303fe22021-04-11 01:46:26 +01008567 atomic_set(&tctx->inflight_tracked, 0);
Jens Axboe0f212202020-09-13 13:09:39 -06008568 task->io_uring = tctx;
Jens Axboe7cbf1722021-02-10 00:03:20 +00008569 spin_lock_init(&tctx->task_lock);
8570 INIT_WQ_LIST(&tctx->task_list);
Jens Axboe7cbf1722021-02-10 00:03:20 +00008571 init_task_work(&tctx->task_work, tctx_task_work);
Jens Axboe0f212202020-09-13 13:09:39 -06008572 return 0;
8573}
8574
8575void __io_uring_free(struct task_struct *tsk)
8576{
8577 struct io_uring_task *tctx = tsk->io_uring;
8578
8579 WARN_ON_ONCE(!xa_empty(&tctx->xa));
Pavel Begunkovef8eaa42021-02-27 11:16:45 +00008580 WARN_ON_ONCE(tctx->io_wq);
Pavel Begunkov09899b12021-06-14 02:36:22 +01008581 WARN_ON_ONCE(tctx->cached_refs);
Pavel Begunkovef8eaa42021-02-27 11:16:45 +00008582
Jens Axboed8a6df12020-10-15 16:24:45 -06008583 percpu_counter_destroy(&tctx->inflight);
Jens Axboe0f212202020-09-13 13:09:39 -06008584 kfree(tctx);
8585 tsk->io_uring = NULL;
8586}
8587
Pavel Begunkovc0724812021-10-04 20:02:54 +01008588static __cold int io_sq_offload_create(struct io_ring_ctx *ctx,
8589 struct io_uring_params *p)
Jens Axboe2b188cc2019-01-07 10:46:33 -07008590{
8591 int ret;
8592
Jens Axboed25e3a32021-02-16 11:41:41 -07008593 /* Retain compatibility with failing for an invalid attach attempt */
8594 if ((ctx->flags & (IORING_SETUP_ATTACH_WQ | IORING_SETUP_SQPOLL)) ==
8595 IORING_SETUP_ATTACH_WQ) {
8596 struct fd f;
8597
8598 f = fdget(p->wq_fd);
8599 if (!f.file)
8600 return -ENXIO;
Jens Axboe0cc936f2021-07-22 17:08:07 -06008601 if (f.file->f_op != &io_uring_fops) {
8602 fdput(f);
Pavel Begunkovf2a48dd2021-04-20 12:03:33 +01008603 return -EINVAL;
Jens Axboe0cc936f2021-07-22 17:08:07 -06008604 }
8605 fdput(f);
Jens Axboed25e3a32021-02-16 11:41:41 -07008606 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07008607 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboe46fe18b2021-03-04 12:39:36 -07008608 struct task_struct *tsk;
Jens Axboe534ca6d2020-09-02 13:52:19 -06008609 struct io_sq_data *sqd;
Pavel Begunkov26984fb2021-03-11 23:29:37 +00008610 bool attached;
Jens Axboe534ca6d2020-09-02 13:52:19 -06008611
Pavel Begunkov26984fb2021-03-11 23:29:37 +00008612 sqd = io_get_sq_data(p, &attached);
Jens Axboe534ca6d2020-09-02 13:52:19 -06008613 if (IS_ERR(sqd)) {
8614 ret = PTR_ERR(sqd);
8615 goto err;
8616 }
Jens Axboe69fb2132020-09-14 11:16:23 -06008617
Stefan Metzmacher7c30f36a2021-03-07 11:54:28 +01008618 ctx->sq_creds = get_current_cred();
Jens Axboe534ca6d2020-09-02 13:52:19 -06008619 ctx->sq_data = sqd;
Jens Axboe917257d2019-04-13 09:28:55 -06008620 ctx->sq_thread_idle = msecs_to_jiffies(p->sq_thread_idle);
8621 if (!ctx->sq_thread_idle)
8622 ctx->sq_thread_idle = HZ;
8623
Pavel Begunkov78d7f6b2021-03-10 13:13:53 +00008624 io_sq_thread_park(sqd);
Pavel Begunkovde75a3d2021-03-18 11:54:35 +00008625 list_add(&ctx->sqd_list, &sqd->ctx_list);
8626 io_sqd_update_thread_idle(sqd);
Pavel Begunkov26984fb2021-03-11 23:29:37 +00008627 /* don't attach to a dying SQPOLL thread, would be racy */
Pavel Begunkovf2a48dd2021-04-20 12:03:33 +01008628 ret = (attached && !sqd->thread) ? -ENXIO : 0;
Pavel Begunkov78d7f6b2021-03-10 13:13:53 +00008629 io_sq_thread_unpark(sqd);
8630
Pavel Begunkovde75a3d2021-03-18 11:54:35 +00008631 if (ret < 0)
8632 goto err;
8633 if (attached)
Jens Axboe5aa75ed2021-02-16 12:56:50 -07008634 return 0;
Jens Axboeaa061652020-09-02 14:50:27 -06008635
Jens Axboe6c271ce2019-01-10 11:22:30 -07008636 if (p->flags & IORING_SETUP_SQ_AFF) {
Jens Axboe44a9bd12019-05-14 20:00:30 -06008637 int cpu = p->sq_thread_cpu;
Jens Axboe6c271ce2019-01-10 11:22:30 -07008638
Jens Axboe917257d2019-04-13 09:28:55 -06008639 ret = -EINVAL;
Pavel Begunkovf2a48dd2021-04-20 12:03:33 +01008640 if (cpu >= nr_cpu_ids || !cpu_online(cpu))
Jens Axboee8f98f242021-03-09 16:32:13 -07008641 goto err_sqpoll;
Jens Axboe37d1e2e2021-02-17 21:03:43 -07008642 sqd->sq_cpu = cpu;
Jens Axboe6c271ce2019-01-10 11:22:30 -07008643 } else {
Jens Axboe37d1e2e2021-02-17 21:03:43 -07008644 sqd->sq_cpu = -1;
Jens Axboe6c271ce2019-01-10 11:22:30 -07008645 }
Jens Axboe37d1e2e2021-02-17 21:03:43 -07008646
8647 sqd->task_pid = current->pid;
Jens Axboe5c2469e2021-03-11 10:17:56 -07008648 sqd->task_tgid = current->tgid;
Jens Axboe46fe18b2021-03-04 12:39:36 -07008649 tsk = create_io_thread(io_sq_thread, sqd, NUMA_NO_NODE);
8650 if (IS_ERR(tsk)) {
8651 ret = PTR_ERR(tsk);
Jens Axboee8f98f242021-03-09 16:32:13 -07008652 goto err_sqpoll;
Jens Axboe6c271ce2019-01-10 11:22:30 -07008653 }
Pavel Begunkov97a73a02021-03-08 17:30:54 +00008654
Jens Axboe46fe18b2021-03-04 12:39:36 -07008655 sqd->thread = tsk;
Pavel Begunkov97a73a02021-03-08 17:30:54 +00008656 ret = io_uring_alloc_task_context(tsk, ctx);
Jens Axboe46fe18b2021-03-04 12:39:36 -07008657 wake_up_new_task(tsk);
Jens Axboe0f212202020-09-13 13:09:39 -06008658 if (ret)
8659 goto err;
Jens Axboe6c271ce2019-01-10 11:22:30 -07008660 } else if (p->flags & IORING_SETUP_SQ_AFF) {
8661 /* Can't have SQ_AFF without SQPOLL */
8662 ret = -EINVAL;
8663 goto err;
8664 }
8665
Jens Axboe2b188cc2019-01-07 10:46:33 -07008666 return 0;
Pavel Begunkovf2a48dd2021-04-20 12:03:33 +01008667err_sqpoll:
8668 complete(&ctx->sq_data->exited);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008669err:
Jens Axboe37d1e2e2021-02-17 21:03:43 -07008670 io_sq_thread_finish(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008671 return ret;
8672}
8673
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008674static inline void __io_unaccount_mem(struct user_struct *user,
8675 unsigned long nr_pages)
Jens Axboe2b188cc2019-01-07 10:46:33 -07008676{
8677 atomic_long_sub(nr_pages, &user->locked_vm);
8678}
8679
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008680static inline int __io_account_mem(struct user_struct *user,
8681 unsigned long nr_pages)
Jens Axboe2b188cc2019-01-07 10:46:33 -07008682{
8683 unsigned long page_limit, cur_pages, new_pages;
8684
8685 /* Don't allow more pages than we can safely lock */
8686 page_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
8687
8688 do {
8689 cur_pages = atomic_long_read(&user->locked_vm);
8690 new_pages = cur_pages + nr_pages;
8691 if (new_pages > page_limit)
8692 return -ENOMEM;
8693 } while (atomic_long_cmpxchg(&user->locked_vm, cur_pages,
8694 new_pages) != cur_pages);
8695
8696 return 0;
8697}
8698
Jens Axboe26bfa89e2021-02-09 20:14:12 -07008699static void io_unaccount_mem(struct io_ring_ctx *ctx, unsigned long nr_pages)
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008700{
Jens Axboe62e398b2021-02-21 16:19:37 -07008701 if (ctx->user)
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008702 __io_unaccount_mem(ctx->user, nr_pages);
Bijan Mottahedeh30975822020-06-16 16:36:09 -07008703
Jens Axboe26bfa89e2021-02-09 20:14:12 -07008704 if (ctx->mm_account)
8705 atomic64_sub(nr_pages, &ctx->mm_account->pinned_vm);
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008706}
8707
Jens Axboe26bfa89e2021-02-09 20:14:12 -07008708static int io_account_mem(struct io_ring_ctx *ctx, unsigned long nr_pages)
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008709{
Bijan Mottahedeh30975822020-06-16 16:36:09 -07008710 int ret;
8711
Jens Axboe62e398b2021-02-21 16:19:37 -07008712 if (ctx->user) {
Bijan Mottahedeh30975822020-06-16 16:36:09 -07008713 ret = __io_account_mem(ctx->user, nr_pages);
8714 if (ret)
8715 return ret;
8716 }
8717
Jens Axboe26bfa89e2021-02-09 20:14:12 -07008718 if (ctx->mm_account)
8719 atomic64_add(nr_pages, &ctx->mm_account->pinned_vm);
Bijan Mottahedeha087e2b2020-06-16 16:36:07 -07008720
8721 return 0;
8722}
8723
Jens Axboe2b188cc2019-01-07 10:46:33 -07008724static void io_mem_free(void *ptr)
8725{
Mark Rutland52e04ef2019-04-30 17:30:21 +01008726 struct page *page;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008727
Mark Rutland52e04ef2019-04-30 17:30:21 +01008728 if (!ptr)
8729 return;
8730
8731 page = virt_to_head_page(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07008732 if (put_page_testzero(page))
8733 free_compound_page(page);
8734}
8735
8736static void *io_mem_alloc(size_t size)
8737{
8738 gfp_t gfp_flags = GFP_KERNEL | __GFP_ZERO | __GFP_NOWARN | __GFP_COMP |
Jens Axboe26bfa89e2021-02-09 20:14:12 -07008739 __GFP_NORETRY | __GFP_ACCOUNT;
Jens Axboe2b188cc2019-01-07 10:46:33 -07008740
8741 return (void *) __get_free_pages(gfp_flags, get_order(size));
8742}
8743
Hristo Venev75b28af2019-08-26 17:23:46 +00008744static unsigned long rings_size(unsigned sq_entries, unsigned cq_entries,
8745 size_t *sq_offset)
8746{
8747 struct io_rings *rings;
8748 size_t off, sq_array_size;
8749
8750 off = struct_size(rings, cqes, cq_entries);
8751 if (off == SIZE_MAX)
8752 return SIZE_MAX;
8753
8754#ifdef CONFIG_SMP
8755 off = ALIGN(off, SMP_CACHE_BYTES);
8756 if (off == 0)
8757 return SIZE_MAX;
8758#endif
8759
Dmitry Vyukovb36200f2020-07-11 11:31:11 +02008760 if (sq_offset)
8761 *sq_offset = off;
8762
Hristo Venev75b28af2019-08-26 17:23:46 +00008763 sq_array_size = array_size(sizeof(u32), sq_entries);
8764 if (sq_array_size == SIZE_MAX)
8765 return SIZE_MAX;
8766
8767 if (check_add_overflow(off, sq_array_size, &off))
8768 return SIZE_MAX;
8769
Hristo Venev75b28af2019-08-26 17:23:46 +00008770 return off;
8771}
8772
Pavel Begunkov41edf1a2021-04-25 14:32:23 +01008773static void io_buffer_unmap(struct io_ring_ctx *ctx, struct io_mapped_ubuf **slot)
Pavel Begunkov7f61a1e2021-04-11 01:46:35 +01008774{
Pavel Begunkov41edf1a2021-04-25 14:32:23 +01008775 struct io_mapped_ubuf *imu = *slot;
Pavel Begunkov7f61a1e2021-04-11 01:46:35 +01008776 unsigned int i;
8777
Pavel Begunkov62248432021-04-28 13:11:29 +01008778 if (imu != ctx->dummy_ubuf) {
8779 for (i = 0; i < imu->nr_bvecs; i++)
8780 unpin_user_page(imu->bvec[i].bv_page);
8781 if (imu->acct_pages)
8782 io_unaccount_mem(ctx, imu->acct_pages);
8783 kvfree(imu);
8784 }
Pavel Begunkov41edf1a2021-04-25 14:32:23 +01008785 *slot = NULL;
Pavel Begunkov7f61a1e2021-04-11 01:46:35 +01008786}
8787
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01008788static void io_rsrc_buf_put(struct io_ring_ctx *ctx, struct io_rsrc_put *prsrc)
8789{
Pavel Begunkov634d00d2021-04-25 14:32:26 +01008790 io_buffer_unmap(ctx, &prsrc->buf);
8791 prsrc->buf = NULL;
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01008792}
8793
8794static void __io_sqe_buffers_unregister(struct io_ring_ctx *ctx)
Jens Axboeedafcce2019-01-09 09:16:05 -07008795{
Pavel Begunkov7f61a1e2021-04-11 01:46:35 +01008796 unsigned int i;
Jens Axboeedafcce2019-01-09 09:16:05 -07008797
Pavel Begunkov7f61a1e2021-04-11 01:46:35 +01008798 for (i = 0; i < ctx->nr_user_bufs; i++)
8799 io_buffer_unmap(ctx, &ctx->user_bufs[i]);
Jens Axboeedafcce2019-01-09 09:16:05 -07008800 kfree(ctx->user_bufs);
Zqiangbb6659c2021-04-30 16:25:15 +08008801 io_rsrc_data_free(ctx->buf_data);
Jens Axboeedafcce2019-01-09 09:16:05 -07008802 ctx->user_bufs = NULL;
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01008803 ctx->buf_data = NULL;
Jens Axboeedafcce2019-01-09 09:16:05 -07008804 ctx->nr_user_bufs = 0;
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01008805}
8806
Jens Axboeedafcce2019-01-09 09:16:05 -07008807static int io_sqe_buffers_unregister(struct io_ring_ctx *ctx)
8808{
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01008809 int ret;
Jens Axboeedafcce2019-01-09 09:16:05 -07008810
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01008811 if (!ctx->buf_data)
Jens Axboeedafcce2019-01-09 09:16:05 -07008812 return -ENXIO;
8813
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01008814 ret = io_rsrc_ref_quiesce(ctx->buf_data, ctx);
8815 if (!ret)
8816 __io_sqe_buffers_unregister(ctx);
8817 return ret;
Jens Axboeedafcce2019-01-09 09:16:05 -07008818}
8819
8820static int io_copy_iov(struct io_ring_ctx *ctx, struct iovec *dst,
8821 void __user *arg, unsigned index)
8822{
8823 struct iovec __user *src;
8824
8825#ifdef CONFIG_COMPAT
8826 if (ctx->compat) {
8827 struct compat_iovec __user *ciovs;
8828 struct compat_iovec ciov;
8829
8830 ciovs = (struct compat_iovec __user *) arg;
8831 if (copy_from_user(&ciov, &ciovs[index], sizeof(ciov)))
8832 return -EFAULT;
8833
Jens Axboed55e5f52019-12-11 16:12:15 -07008834 dst->iov_base = u64_to_user_ptr((u64)ciov.iov_base);
Jens Axboeedafcce2019-01-09 09:16:05 -07008835 dst->iov_len = ciov.iov_len;
8836 return 0;
8837 }
8838#endif
8839 src = (struct iovec __user *) arg;
8840 if (copy_from_user(dst, &src[index], sizeof(*dst)))
8841 return -EFAULT;
8842 return 0;
8843}
8844
Jens Axboede293932020-09-17 16:19:16 -06008845/*
8846 * Not super efficient, but this is just a registration time. And we do cache
8847 * the last compound head, so generally we'll only do a full search if we don't
8848 * match that one.
8849 *
8850 * We check if the given compound head page has already been accounted, to
8851 * avoid double accounting it. This allows us to account the full size of the
8852 * page, not just the constituent pages of a huge page.
8853 */
8854static bool headpage_already_acct(struct io_ring_ctx *ctx, struct page **pages,
8855 int nr_pages, struct page *hpage)
8856{
8857 int i, j;
8858
8859 /* check current page array */
8860 for (i = 0; i < nr_pages; i++) {
8861 if (!PageCompound(pages[i]))
8862 continue;
8863 if (compound_head(pages[i]) == hpage)
8864 return true;
8865 }
8866
8867 /* check previously registered pages */
8868 for (i = 0; i < ctx->nr_user_bufs; i++) {
Pavel Begunkov41edf1a2021-04-25 14:32:23 +01008869 struct io_mapped_ubuf *imu = ctx->user_bufs[i];
Jens Axboede293932020-09-17 16:19:16 -06008870
8871 for (j = 0; j < imu->nr_bvecs; j++) {
8872 if (!PageCompound(imu->bvec[j].bv_page))
8873 continue;
8874 if (compound_head(imu->bvec[j].bv_page) == hpage)
8875 return true;
8876 }
8877 }
8878
8879 return false;
8880}
8881
8882static int io_buffer_account_pin(struct io_ring_ctx *ctx, struct page **pages,
8883 int nr_pages, struct io_mapped_ubuf *imu,
8884 struct page **last_hpage)
8885{
8886 int i, ret;
8887
Pavel Begunkov216e5832021-05-29 12:01:02 +01008888 imu->acct_pages = 0;
Jens Axboede293932020-09-17 16:19:16 -06008889 for (i = 0; i < nr_pages; i++) {
8890 if (!PageCompound(pages[i])) {
8891 imu->acct_pages++;
8892 } else {
8893 struct page *hpage;
8894
8895 hpage = compound_head(pages[i]);
8896 if (hpage == *last_hpage)
8897 continue;
8898 *last_hpage = hpage;
8899 if (headpage_already_acct(ctx, pages, i, hpage))
8900 continue;
8901 imu->acct_pages += page_size(hpage) >> PAGE_SHIFT;
8902 }
8903 }
8904
8905 if (!imu->acct_pages)
8906 return 0;
8907
Jens Axboe26bfa89e2021-02-09 20:14:12 -07008908 ret = io_account_mem(ctx, imu->acct_pages);
Jens Axboede293932020-09-17 16:19:16 -06008909 if (ret)
8910 imu->acct_pages = 0;
8911 return ret;
8912}
8913
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08008914static int io_sqe_buffer_register(struct io_ring_ctx *ctx, struct iovec *iov,
Pavel Begunkov41edf1a2021-04-25 14:32:23 +01008915 struct io_mapped_ubuf **pimu,
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08008916 struct page **last_hpage)
Jens Axboeedafcce2019-01-09 09:16:05 -07008917{
Pavel Begunkov41edf1a2021-04-25 14:32:23 +01008918 struct io_mapped_ubuf *imu = NULL;
Jens Axboeedafcce2019-01-09 09:16:05 -07008919 struct vm_area_struct **vmas = NULL;
8920 struct page **pages = NULL;
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08008921 unsigned long off, start, end, ubuf;
8922 size_t size;
8923 int ret, pret, nr_pages, i;
Jens Axboeedafcce2019-01-09 09:16:05 -07008924
Pavel Begunkov62248432021-04-28 13:11:29 +01008925 if (!iov->iov_base) {
8926 *pimu = ctx->dummy_ubuf;
8927 return 0;
8928 }
8929
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08008930 ubuf = (unsigned long) iov->iov_base;
8931 end = (ubuf + iov->iov_len + PAGE_SIZE - 1) >> PAGE_SHIFT;
8932 start = ubuf >> PAGE_SHIFT;
8933 nr_pages = end - start;
8934
Pavel Begunkov41edf1a2021-04-25 14:32:23 +01008935 *pimu = NULL;
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08008936 ret = -ENOMEM;
8937
8938 pages = kvmalloc_array(nr_pages, sizeof(struct page *), GFP_KERNEL);
8939 if (!pages)
8940 goto done;
8941
8942 vmas = kvmalloc_array(nr_pages, sizeof(struct vm_area_struct *),
8943 GFP_KERNEL);
8944 if (!vmas)
8945 goto done;
8946
Pavel Begunkov41edf1a2021-04-25 14:32:23 +01008947 imu = kvmalloc(struct_size(imu, bvec, nr_pages), GFP_KERNEL);
Pavel Begunkova2b41982021-04-26 00:16:31 +01008948 if (!imu)
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08008949 goto done;
8950
8951 ret = 0;
8952 mmap_read_lock(current->mm);
8953 pret = pin_user_pages(ubuf, nr_pages, FOLL_WRITE | FOLL_LONGTERM,
8954 pages, vmas);
8955 if (pret == nr_pages) {
8956 /* don't support file backed memory */
8957 for (i = 0; i < nr_pages; i++) {
8958 struct vm_area_struct *vma = vmas[i];
8959
Pavel Begunkov40dad762021-06-09 15:26:54 +01008960 if (vma_is_shmem(vma))
8961 continue;
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08008962 if (vma->vm_file &&
8963 !is_file_hugepages(vma->vm_file)) {
8964 ret = -EOPNOTSUPP;
8965 break;
8966 }
8967 }
8968 } else {
8969 ret = pret < 0 ? pret : -EFAULT;
8970 }
8971 mmap_read_unlock(current->mm);
8972 if (ret) {
8973 /*
8974 * if we did partial map, or found file backed vmas,
8975 * release any pages we did get
8976 */
8977 if (pret > 0)
8978 unpin_user_pages(pages, pret);
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08008979 goto done;
8980 }
8981
8982 ret = io_buffer_account_pin(ctx, pages, pret, imu, last_hpage);
8983 if (ret) {
8984 unpin_user_pages(pages, pret);
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08008985 goto done;
8986 }
8987
8988 off = ubuf & ~PAGE_MASK;
8989 size = iov->iov_len;
8990 for (i = 0; i < nr_pages; i++) {
8991 size_t vec_len;
8992
8993 vec_len = min_t(size_t, size, PAGE_SIZE - off);
8994 imu->bvec[i].bv_page = pages[i];
8995 imu->bvec[i].bv_len = vec_len;
8996 imu->bvec[i].bv_offset = off;
8997 off = 0;
8998 size -= vec_len;
8999 }
9000 /* store original address for later verification */
9001 imu->ubuf = ubuf;
Pavel Begunkov4751f532021-04-01 15:43:55 +01009002 imu->ubuf_end = ubuf + iov->iov_len;
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08009003 imu->nr_bvecs = nr_pages;
Pavel Begunkov41edf1a2021-04-25 14:32:23 +01009004 *pimu = imu;
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08009005 ret = 0;
9006done:
Pavel Begunkov41edf1a2021-04-25 14:32:23 +01009007 if (ret)
9008 kvfree(imu);
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08009009 kvfree(pages);
9010 kvfree(vmas);
9011 return ret;
9012}
9013
Bijan Mottahedeh2b358602021-01-06 12:39:11 -08009014static int io_buffers_map_alloc(struct io_ring_ctx *ctx, unsigned int nr_args)
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08009015{
Pavel Begunkov87094462021-04-11 01:46:36 +01009016 ctx->user_bufs = kcalloc(nr_args, sizeof(*ctx->user_bufs), GFP_KERNEL);
9017 return ctx->user_bufs ? 0 : -ENOMEM;
Bijan Mottahedeh2b358602021-01-06 12:39:11 -08009018}
9019
9020static int io_buffer_validate(struct iovec *iov)
9021{
Pavel Begunkov50e96982021-03-24 22:59:01 +00009022 unsigned long tmp, acct_len = iov->iov_len + (PAGE_SIZE - 1);
9023
Bijan Mottahedeh2b358602021-01-06 12:39:11 -08009024 /*
9025 * Don't impose further limits on the size and buffer
9026 * constraints here, we'll -EINVAL later when IO is
9027 * submitted if they are wrong.
9028 */
Pavel Begunkov62248432021-04-28 13:11:29 +01009029 if (!iov->iov_base)
9030 return iov->iov_len ? -EFAULT : 0;
9031 if (!iov->iov_len)
Bijan Mottahedeh2b358602021-01-06 12:39:11 -08009032 return -EFAULT;
9033
9034 /* arbitrary limit, but we need something */
9035 if (iov->iov_len > SZ_1G)
9036 return -EFAULT;
9037
Pavel Begunkov50e96982021-03-24 22:59:01 +00009038 if (check_add_overflow((unsigned long)iov->iov_base, acct_len, &tmp))
9039 return -EOVERFLOW;
9040
Bijan Mottahedeh2b358602021-01-06 12:39:11 -08009041 return 0;
9042}
9043
9044static int io_sqe_buffers_register(struct io_ring_ctx *ctx, void __user *arg,
Pavel Begunkov634d00d2021-04-25 14:32:26 +01009045 unsigned int nr_args, u64 __user *tags)
Bijan Mottahedeh2b358602021-01-06 12:39:11 -08009046{
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01009047 struct page *last_hpage = NULL;
9048 struct io_rsrc_data *data;
Bijan Mottahedeh2b358602021-01-06 12:39:11 -08009049 int i, ret;
9050 struct iovec iov;
Bijan Mottahedeh2b358602021-01-06 12:39:11 -08009051
Pavel Begunkov87094462021-04-11 01:46:36 +01009052 if (ctx->user_bufs)
9053 return -EBUSY;
Pavel Begunkov489809e2021-05-14 12:06:44 +01009054 if (!nr_args || nr_args > IORING_MAX_REG_BUFFERS)
Pavel Begunkov87094462021-04-11 01:46:36 +01009055 return -EINVAL;
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01009056 ret = io_rsrc_node_switch_start(ctx);
Bijan Mottahedeh2b358602021-01-06 12:39:11 -08009057 if (ret)
9058 return ret;
Pavel Begunkovd878c812021-06-14 02:36:18 +01009059 ret = io_rsrc_data_alloc(ctx, io_rsrc_buf_put, tags, nr_args, &data);
9060 if (ret)
9061 return ret;
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01009062 ret = io_buffers_map_alloc(ctx, nr_args);
9063 if (ret) {
Zqiangbb6659c2021-04-30 16:25:15 +08009064 io_rsrc_data_free(data);
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01009065 return ret;
9066 }
Bijan Mottahedeh2b358602021-01-06 12:39:11 -08009067
Pavel Begunkov87094462021-04-11 01:46:36 +01009068 for (i = 0; i < nr_args; i++, ctx->nr_user_bufs++) {
Jens Axboeedafcce2019-01-09 09:16:05 -07009069 ret = io_copy_iov(ctx, &iov, arg, i);
9070 if (ret)
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08009071 break;
Bijan Mottahedeh2b358602021-01-06 12:39:11 -08009072 ret = io_buffer_validate(&iov);
9073 if (ret)
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08009074 break;
Pavel Begunkov2d091d62021-06-14 02:36:21 +01009075 if (!iov.iov_base && *io_get_tag_slot(data, i)) {
Colin Ian Kingcf3770e2021-04-29 11:46:02 +01009076 ret = -EINVAL;
9077 break;
9078 }
Jens Axboeedafcce2019-01-09 09:16:05 -07009079
Pavel Begunkov41edf1a2021-04-25 14:32:23 +01009080 ret = io_sqe_buffer_register(ctx, &iov, &ctx->user_bufs[i],
9081 &last_hpage);
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08009082 if (ret)
9083 break;
Jens Axboeedafcce2019-01-09 09:16:05 -07009084 }
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08009085
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01009086 WARN_ON_ONCE(ctx->buf_data);
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -08009087
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01009088 ctx->buf_data = data;
9089 if (ret)
9090 __io_sqe_buffers_unregister(ctx);
9091 else
9092 io_rsrc_node_switch(ctx, NULL);
Jens Axboeedafcce2019-01-09 09:16:05 -07009093 return ret;
9094}
9095
Pavel Begunkov634d00d2021-04-25 14:32:26 +01009096static int __io_sqe_buffers_update(struct io_ring_ctx *ctx,
9097 struct io_uring_rsrc_update2 *up,
9098 unsigned int nr_args)
9099{
9100 u64 __user *tags = u64_to_user_ptr(up->tags);
9101 struct iovec iov, __user *iovs = u64_to_user_ptr(up->data);
Pavel Begunkov634d00d2021-04-25 14:32:26 +01009102 struct page *last_hpage = NULL;
9103 bool needs_switch = false;
9104 __u32 done;
9105 int i, err;
9106
9107 if (!ctx->buf_data)
9108 return -ENXIO;
9109 if (up->offset + nr_args > ctx->nr_user_bufs)
9110 return -EINVAL;
9111
9112 for (done = 0; done < nr_args; done++) {
Pavel Begunkov0b8c0e72021-04-26 15:17:38 +01009113 struct io_mapped_ubuf *imu;
9114 int offset = up->offset + done;
Pavel Begunkov634d00d2021-04-25 14:32:26 +01009115 u64 tag = 0;
9116
9117 err = io_copy_iov(ctx, &iov, iovs, done);
9118 if (err)
9119 break;
9120 if (tags && copy_from_user(&tag, &tags[done], sizeof(tag))) {
9121 err = -EFAULT;
9122 break;
9123 }
Pavel Begunkov0b8c0e72021-04-26 15:17:38 +01009124 err = io_buffer_validate(&iov);
9125 if (err)
9126 break;
Colin Ian Kingcf3770e2021-04-29 11:46:02 +01009127 if (!iov.iov_base && tag) {
9128 err = -EINVAL;
9129 break;
9130 }
Pavel Begunkov0b8c0e72021-04-26 15:17:38 +01009131 err = io_sqe_buffer_register(ctx, &iov, &imu, &last_hpage);
9132 if (err)
9133 break;
Pavel Begunkov634d00d2021-04-25 14:32:26 +01009134
Pavel Begunkov0b8c0e72021-04-26 15:17:38 +01009135 i = array_index_nospec(offset, ctx->nr_user_bufs);
Pavel Begunkov62248432021-04-28 13:11:29 +01009136 if (ctx->user_bufs[i] != ctx->dummy_ubuf) {
Pavel Begunkov0b8c0e72021-04-26 15:17:38 +01009137 err = io_queue_rsrc_removal(ctx->buf_data, offset,
9138 ctx->rsrc_node, ctx->user_bufs[i]);
9139 if (unlikely(err)) {
9140 io_buffer_unmap(ctx, &imu);
Pavel Begunkov634d00d2021-04-25 14:32:26 +01009141 break;
Pavel Begunkov0b8c0e72021-04-26 15:17:38 +01009142 }
Pavel Begunkov634d00d2021-04-25 14:32:26 +01009143 ctx->user_bufs[i] = NULL;
9144 needs_switch = true;
9145 }
9146
Pavel Begunkov0b8c0e72021-04-26 15:17:38 +01009147 ctx->user_bufs[i] = imu;
Pavel Begunkov2d091d62021-06-14 02:36:21 +01009148 *io_get_tag_slot(ctx->buf_data, offset) = tag;
Pavel Begunkov634d00d2021-04-25 14:32:26 +01009149 }
9150
9151 if (needs_switch)
9152 io_rsrc_node_switch(ctx, ctx->buf_data);
9153 return done ? done : err;
9154}
9155
Jens Axboe9b402842019-04-11 11:45:41 -06009156static int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg)
9157{
9158 __s32 __user *fds = arg;
9159 int fd;
9160
9161 if (ctx->cq_ev_fd)
9162 return -EBUSY;
9163
9164 if (copy_from_user(&fd, fds, sizeof(*fds)))
9165 return -EFAULT;
9166
9167 ctx->cq_ev_fd = eventfd_ctx_fdget(fd);
9168 if (IS_ERR(ctx->cq_ev_fd)) {
9169 int ret = PTR_ERR(ctx->cq_ev_fd);
Pavel Begunkovfe7e3252021-06-24 15:09:57 +01009170
Jens Axboe9b402842019-04-11 11:45:41 -06009171 ctx->cq_ev_fd = NULL;
9172 return ret;
9173 }
9174
9175 return 0;
9176}
9177
9178static int io_eventfd_unregister(struct io_ring_ctx *ctx)
9179{
9180 if (ctx->cq_ev_fd) {
9181 eventfd_ctx_put(ctx->cq_ev_fd);
9182 ctx->cq_ev_fd = NULL;
9183 return 0;
9184 }
9185
9186 return -ENXIO;
9187}
9188
Jens Axboe5a2e7452020-02-23 16:23:11 -07009189static void io_destroy_buffers(struct io_ring_ctx *ctx)
9190{
Jens Axboe9e15c3a2021-03-13 12:29:43 -07009191 struct io_buffer *buf;
9192 unsigned long index;
9193
Jens Axboe8bab4c02021-09-24 07:12:27 -06009194 xa_for_each(&ctx->io_buffers, index, buf) {
Jens Axboe9e15c3a2021-03-13 12:29:43 -07009195 __io_remove_buffers(ctx, buf, index, -1U);
Jens Axboe8bab4c02021-09-24 07:12:27 -06009196 cond_resched();
9197 }
Jens Axboe5a2e7452020-02-23 16:23:11 -07009198}
9199
Jens Axboe4010fec2021-02-27 15:04:18 -07009200static void io_req_caches_free(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -07009201{
Pavel Begunkovcd0ca2e2021-08-09 20:18:11 +01009202 struct io_submit_state *state = &ctx->submit_state;
Pavel Begunkov37f0e762021-10-04 20:02:53 +01009203 int nr = 0;
Pavel Begunkovbf019da2021-02-10 00:03:17 +00009204
Jens Axboe9a4fdbd2021-02-13 09:09:44 -07009205 mutex_lock(&ctx->uring_lock);
Pavel Begunkovcd0ca2e2021-08-09 20:18:11 +01009206 io_flush_cached_locked_reqs(ctx, state);
Pavel Begunkovc2b6c6b2021-09-24 21:59:47 +01009207
9208 while (state->free_list.next) {
9209 struct io_wq_work_node *node;
9210 struct io_kiocb *req;
9211
9212 node = wq_stack_extract(&state->free_list);
9213 req = container_of(node, struct io_kiocb, comp_list);
9214 kmem_cache_free(req_cachep, req);
Pavel Begunkov37f0e762021-10-04 20:02:53 +01009215 nr++;
Pavel Begunkovc2b6c6b2021-09-24 21:59:47 +01009216 }
Pavel Begunkov37f0e762021-10-04 20:02:53 +01009217 if (nr)
9218 percpu_ref_put_many(&ctx->refs, nr);
Jens Axboe9a4fdbd2021-02-13 09:09:44 -07009219 mutex_unlock(&ctx->uring_lock);
9220}
9221
Pavel Begunkov43597aa2021-08-10 02:44:23 +01009222static void io_wait_rsrc_data(struct io_rsrc_data *data)
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01009223{
Pavel Begunkov43597aa2021-08-10 02:44:23 +01009224 if (data && !atomic_dec_and_test(&data->refs))
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01009225 wait_for_completion(&data->done);
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01009226}
9227
Pavel Begunkovc0724812021-10-04 20:02:54 +01009228static __cold void io_ring_ctx_free(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -07009229{
Jens Axboe37d1e2e2021-02-17 21:03:43 -07009230 io_sq_thread_finish(ctx);
Jens Axboe2aede0e2020-09-14 10:45:53 -06009231
Jens Axboe37d1e2e2021-02-17 21:03:43 -07009232 if (ctx->mm_account) {
Jens Axboe2aede0e2020-09-14 10:45:53 -06009233 mmdrop(ctx->mm_account);
9234 ctx->mm_account = NULL;
Bijan Mottahedeh30975822020-06-16 16:36:09 -07009235 }
Jens Axboedef596e2019-01-09 08:59:42 -07009236
Pavel Begunkovab409402021-10-09 23:14:41 +01009237 io_rsrc_refs_drop(ctx);
Pavel Begunkov43597aa2021-08-10 02:44:23 +01009238 /* __io_rsrc_put_work() may need uring_lock to progress, wait w/o it */
9239 io_wait_rsrc_data(ctx->buf_data);
9240 io_wait_rsrc_data(ctx->file_data);
9241
Hao Xu8bad28d2021-02-19 17:19:36 +08009242 mutex_lock(&ctx->uring_lock);
Pavel Begunkov43597aa2021-08-10 02:44:23 +01009243 if (ctx->buf_data)
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +01009244 __io_sqe_buffers_unregister(ctx);
Pavel Begunkov43597aa2021-08-10 02:44:23 +01009245 if (ctx->file_data)
Pavel Begunkov08480402021-04-13 02:58:38 +01009246 __io_sqe_files_unregister(ctx);
Pavel Begunkovc4ea0602021-04-01 15:43:58 +01009247 if (ctx->rings)
9248 __io_cqring_overflow_flush(ctx, true);
Hao Xu8bad28d2021-02-19 17:19:36 +08009249 mutex_unlock(&ctx->uring_lock);
Jens Axboe9b402842019-04-11 11:45:41 -06009250 io_eventfd_unregister(ctx);
Jens Axboe5a2e7452020-02-23 16:23:11 -07009251 io_destroy_buffers(ctx);
Pavel Begunkov07db2982021-04-20 12:03:32 +01009252 if (ctx->sq_creds)
9253 put_cred(ctx->sq_creds);
Jens Axboedef596e2019-01-09 08:59:42 -07009254
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01009255 /* there are no registered resources left, nobody uses it */
9256 if (ctx->rsrc_node)
9257 io_rsrc_node_destroy(ctx->rsrc_node);
Pavel Begunkov8dd03af2021-03-19 17:22:36 +00009258 if (ctx->rsrc_backup_node)
Pavel Begunkovb895c9a2021-04-01 15:43:40 +01009259 io_rsrc_node_destroy(ctx->rsrc_backup_node);
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01009260 flush_delayed_work(&ctx->rsrc_put_work);
Pavel Begunkov756ab7c2021-10-06 16:06:47 +01009261 flush_delayed_work(&ctx->fallback_work);
Pavel Begunkova7f0ed52021-04-01 15:43:46 +01009262
9263 WARN_ON_ONCE(!list_empty(&ctx->rsrc_ref_list));
9264 WARN_ON_ONCE(!llist_empty(&ctx->rsrc_put_llist));
Jens Axboe2b188cc2019-01-07 10:46:33 -07009265
9266#if defined(CONFIG_UNIX)
Eric Biggers355e8d22019-06-12 14:58:43 -07009267 if (ctx->ring_sock) {
9268 ctx->ring_sock->file = NULL; /* so that iput() is called */
Jens Axboe2b188cc2019-01-07 10:46:33 -07009269 sock_release(ctx->ring_sock);
Eric Biggers355e8d22019-06-12 14:58:43 -07009270 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07009271#endif
Pavel Begunkovef9dd632021-08-28 19:54:38 -06009272 WARN_ON_ONCE(!list_empty(&ctx->ltimeout_list));
Jens Axboe2b188cc2019-01-07 10:46:33 -07009273
Hristo Venev75b28af2019-08-26 17:23:46 +00009274 io_mem_free(ctx->rings);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009275 io_mem_free(ctx->sq_sqes);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009276
9277 percpu_ref_exit(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009278 free_uid(ctx->user);
Jens Axboe4010fec2021-02-27 15:04:18 -07009279 io_req_caches_free(ctx);
Jens Axboee9418942021-02-19 12:33:30 -07009280 if (ctx->hash_map)
9281 io_wq_put_hash(ctx->hash_map);
Jens Axboe78076bb2019-12-04 19:56:40 -07009282 kfree(ctx->cancel_hash);
Pavel Begunkov62248432021-04-28 13:11:29 +01009283 kfree(ctx->dummy_ubuf);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009284 kfree(ctx);
9285}
9286
9287static __poll_t io_uring_poll(struct file *file, poll_table *wait)
9288{
9289 struct io_ring_ctx *ctx = file->private_data;
9290 __poll_t mask = 0;
9291
Pavel Begunkovd60aa652021-10-04 20:02:52 +01009292 poll_wait(file, &ctx->cq_wait, wait);
Stefan Bühler4f7067c2019-04-24 23:54:17 +02009293 /*
9294 * synchronizes with barrier from wq_has_sleeper call in
9295 * io_commit_cqring
9296 */
Jens Axboe2b188cc2019-01-07 10:46:33 -07009297 smp_rmb();
Jens Axboe90554202020-09-03 12:12:41 -06009298 if (!io_sqring_full(ctx))
Jens Axboe2b188cc2019-01-07 10:46:33 -07009299 mask |= EPOLLOUT | EPOLLWRNORM;
Hao Xued670c32021-02-05 16:34:21 +08009300
9301 /*
9302 * Don't flush cqring overflow list here, just do a simple check.
9303 * Otherwise there could possible be ABBA deadlock:
9304 * CPU0 CPU1
9305 * ---- ----
9306 * lock(&ctx->uring_lock);
9307 * lock(&ep->mtx);
9308 * lock(&ctx->uring_lock);
9309 * lock(&ep->mtx);
9310 *
9311 * Users may get EPOLLIN meanwhile seeing nothing in cqring, this
9312 * pushs them to do the flush.
9313 */
Pavel Begunkov5ed7a372021-06-14 23:37:27 +01009314 if (io_cqring_events(ctx) || test_bit(0, &ctx->check_cq_overflow))
Jens Axboe2b188cc2019-01-07 10:46:33 -07009315 mask |= EPOLLIN | EPOLLRDNORM;
9316
9317 return mask;
9318}
9319
Yejune Deng0bead8c2020-12-24 11:02:20 +08009320static int io_unregister_personality(struct io_ring_ctx *ctx, unsigned id)
Jens Axboe071698e2020-01-28 10:04:42 -07009321{
Jens Axboe4379bf82021-02-15 13:40:22 -07009322 const struct cred *creds;
Jens Axboe071698e2020-01-28 10:04:42 -07009323
Matthew Wilcox (Oracle)61cf9372021-03-08 14:16:16 +00009324 creds = xa_erase(&ctx->personalities, id);
Jens Axboe4379bf82021-02-15 13:40:22 -07009325 if (creds) {
9326 put_cred(creds);
Yejune Deng0bead8c2020-12-24 11:02:20 +08009327 return 0;
Jens Axboe1e6fa522020-10-15 08:46:24 -06009328 }
Yejune Deng0bead8c2020-12-24 11:02:20 +08009329
9330 return -EINVAL;
9331}
9332
Pavel Begunkovd56d9382021-03-06 11:02:13 +00009333struct io_tctx_exit {
9334 struct callback_head task_work;
9335 struct completion completion;
Pavel Begunkovbaf186c2021-03-06 11:02:15 +00009336 struct io_ring_ctx *ctx;
Pavel Begunkovd56d9382021-03-06 11:02:13 +00009337};
9338
Pavel Begunkovc0724812021-10-04 20:02:54 +01009339static __cold void io_tctx_exit_cb(struct callback_head *cb)
Pavel Begunkovd56d9382021-03-06 11:02:13 +00009340{
9341 struct io_uring_task *tctx = current->io_uring;
9342 struct io_tctx_exit *work;
9343
9344 work = container_of(cb, struct io_tctx_exit, task_work);
9345 /*
9346 * When @in_idle, we're in cancellation and it's racy to remove the
9347 * node. It'll be removed by the end of cancellation, just ignore it.
9348 */
9349 if (!atomic_read(&tctx->in_idle))
Pavel Begunkoveef51da2021-06-14 02:36:15 +01009350 io_uring_del_tctx_node((unsigned long)work->ctx);
Pavel Begunkovd56d9382021-03-06 11:02:13 +00009351 complete(&work->completion);
9352}
9353
Pavel Begunkovc0724812021-10-04 20:02:54 +01009354static __cold bool io_cancel_ctx_cb(struct io_wq_work *work, void *data)
Pavel Begunkov28090c12021-04-25 23:34:45 +01009355{
9356 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
9357
9358 return req->ctx == data;
9359}
9360
Pavel Begunkovc0724812021-10-04 20:02:54 +01009361static __cold void io_ring_exit_work(struct work_struct *work)
Jens Axboe85faa7b2020-04-09 18:14:00 -06009362{
Pavel Begunkovd56d9382021-03-06 11:02:13 +00009363 struct io_ring_ctx *ctx = container_of(work, struct io_ring_ctx, exit_work);
Pavel Begunkovb5bb3a22021-03-06 11:02:16 +00009364 unsigned long timeout = jiffies + HZ * 60 * 5;
Pavel Begunkov58d3be22021-08-09 13:04:17 +01009365 unsigned long interval = HZ / 20;
Pavel Begunkovd56d9382021-03-06 11:02:13 +00009366 struct io_tctx_exit exit;
9367 struct io_tctx_node *node;
9368 int ret;
Jens Axboe85faa7b2020-04-09 18:14:00 -06009369
Jens Axboe56952e92020-06-17 15:00:04 -06009370 /*
9371 * If we're doing polled IO and end up having requests being
9372 * submitted async (out-of-line), then completions can come in while
9373 * we're waiting for refs to drop. We need to reap these manually,
9374 * as nobody else will be looking for them.
9375 */
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03009376 do {
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009377 io_uring_try_cancel_requests(ctx, NULL, true);
Pavel Begunkov28090c12021-04-25 23:34:45 +01009378 if (ctx->sq_data) {
9379 struct io_sq_data *sqd = ctx->sq_data;
9380 struct task_struct *tsk;
9381
9382 io_sq_thread_park(sqd);
9383 tsk = sqd->thread;
9384 if (tsk && tsk->io_uring && tsk->io_uring->io_wq)
9385 io_wq_cancel_cb(tsk->io_uring->io_wq,
9386 io_cancel_ctx_cb, ctx, true);
9387 io_sq_thread_unpark(sqd);
9388 }
Pavel Begunkovb5bb3a22021-03-06 11:02:16 +00009389
Pavel Begunkov37f0e762021-10-04 20:02:53 +01009390 io_req_caches_free(ctx);
9391
Pavel Begunkov58d3be22021-08-09 13:04:17 +01009392 if (WARN_ON_ONCE(time_after(jiffies, timeout))) {
9393 /* there is little hope left, don't run it too often */
9394 interval = HZ * 60;
9395 }
9396 } while (!wait_for_completion_timeout(&ctx->ref_comp, interval));
Pavel Begunkovd56d9382021-03-06 11:02:13 +00009397
Pavel Begunkov7f006512021-04-14 13:38:34 +01009398 init_completion(&exit.completion);
9399 init_task_work(&exit.task_work, io_tctx_exit_cb);
9400 exit.ctx = ctx;
Pavel Begunkov89b50662021-04-01 15:43:50 +01009401 /*
9402 * Some may use context even when all refs and requests have been put,
9403 * and they are free to do so while still holding uring_lock or
Pavel Begunkov5b0a6ac2021-06-30 21:54:04 +01009404 * completion_lock, see io_req_task_submit(). Apart from other work,
Pavel Begunkov89b50662021-04-01 15:43:50 +01009405 * this lock/unlock section also waits them to finish.
9406 */
Pavel Begunkovd56d9382021-03-06 11:02:13 +00009407 mutex_lock(&ctx->uring_lock);
9408 while (!list_empty(&ctx->tctx_list)) {
Pavel Begunkovb5bb3a22021-03-06 11:02:16 +00009409 WARN_ON_ONCE(time_after(jiffies, timeout));
9410
Pavel Begunkovd56d9382021-03-06 11:02:13 +00009411 node = list_first_entry(&ctx->tctx_list, struct io_tctx_node,
9412 ctx_node);
Pavel Begunkov7f006512021-04-14 13:38:34 +01009413 /* don't spin on a single task if cancellation failed */
9414 list_rotate_left(&ctx->tctx_list);
Pavel Begunkovd56d9382021-03-06 11:02:13 +00009415 ret = task_work_add(node->task, &exit.task_work, TWA_SIGNAL);
9416 if (WARN_ON_ONCE(ret))
9417 continue;
Pavel Begunkovd56d9382021-03-06 11:02:13 +00009418
9419 mutex_unlock(&ctx->uring_lock);
9420 wait_for_completion(&exit.completion);
Pavel Begunkovd56d9382021-03-06 11:02:13 +00009421 mutex_lock(&ctx->uring_lock);
9422 }
9423 mutex_unlock(&ctx->uring_lock);
Jens Axboe79ebeae2021-08-10 15:18:27 -06009424 spin_lock(&ctx->completion_lock);
9425 spin_unlock(&ctx->completion_lock);
Pavel Begunkovd56d9382021-03-06 11:02:13 +00009426
Jens Axboe85faa7b2020-04-09 18:14:00 -06009427 io_ring_ctx_free(ctx);
9428}
9429
Pavel Begunkov80c4cbd2021-03-25 18:32:43 +00009430/* Returns true if we found and killed one or more timeouts */
Pavel Begunkovc0724812021-10-04 20:02:54 +01009431static __cold bool io_kill_timeouts(struct io_ring_ctx *ctx,
9432 struct task_struct *tsk, bool cancel_all)
Pavel Begunkov80c4cbd2021-03-25 18:32:43 +00009433{
9434 struct io_kiocb *req, *tmp;
9435 int canceled = 0;
9436
Jens Axboe79ebeae2021-08-10 15:18:27 -06009437 spin_lock(&ctx->completion_lock);
9438 spin_lock_irq(&ctx->timeout_lock);
Pavel Begunkov80c4cbd2021-03-25 18:32:43 +00009439 list_for_each_entry_safe(req, tmp, &ctx->timeout_list, timeout.list) {
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009440 if (io_match_task(req, tsk, cancel_all)) {
Pavel Begunkov80c4cbd2021-03-25 18:32:43 +00009441 io_kill_timeout(req, -ECANCELED);
9442 canceled++;
9443 }
9444 }
Jens Axboe79ebeae2021-08-10 15:18:27 -06009445 spin_unlock_irq(&ctx->timeout_lock);
Pavel Begunkov51520422021-03-29 11:39:29 +01009446 if (canceled != 0)
9447 io_commit_cqring(ctx);
Jens Axboe79ebeae2021-08-10 15:18:27 -06009448 spin_unlock(&ctx->completion_lock);
Pavel Begunkov80c4cbd2021-03-25 18:32:43 +00009449 if (canceled != 0)
9450 io_cqring_ev_posted(ctx);
9451 return canceled != 0;
9452}
9453
Pavel Begunkovc0724812021-10-04 20:02:54 +01009454static __cold void io_ring_ctx_wait_and_kill(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -07009455{
Matthew Wilcox (Oracle)61cf9372021-03-08 14:16:16 +00009456 unsigned long index;
9457 struct creds *creds;
9458
Jens Axboe2b188cc2019-01-07 10:46:33 -07009459 mutex_lock(&ctx->uring_lock);
9460 percpu_ref_kill(&ctx->refs);
Pavel Begunkov634578f2020-12-06 22:22:44 +00009461 if (ctx->rings)
Pavel Begunkov6c2450a2021-02-23 12:40:22 +00009462 __io_cqring_overflow_flush(ctx, true);
Matthew Wilcox (Oracle)61cf9372021-03-08 14:16:16 +00009463 xa_for_each(&ctx->personalities, index, creds)
9464 io_unregister_personality(ctx, index);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009465 mutex_unlock(&ctx->uring_lock);
9466
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009467 io_kill_timeouts(ctx, NULL, true);
9468 io_poll_remove_all(ctx, NULL, true);
Jens Axboe561fb042019-10-24 07:25:42 -06009469
Jens Axboe15dff282019-11-13 09:09:23 -07009470 /* if we failed setting up the ctx, we might not have any rings */
Pavel Begunkovb2edc0a2020-07-07 16:36:22 +03009471 io_iopoll_try_reap_events(ctx);
Jens Axboe309fc032020-07-10 09:13:34 -06009472
Jens Axboe85faa7b2020-04-09 18:14:00 -06009473 INIT_WORK(&ctx->exit_work, io_ring_exit_work);
Jens Axboefc666772020-08-19 11:10:51 -06009474 /*
9475 * Use system_unbound_wq to avoid spawning tons of event kworkers
9476 * if we're exiting a ton of rings at the same time. It just adds
9477 * noise and overhead, there's no discernable change in runtime
9478 * over using system_wq.
9479 */
9480 queue_work(system_unbound_wq, &ctx->exit_work);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009481}
9482
9483static int io_uring_release(struct inode *inode, struct file *file)
9484{
9485 struct io_ring_ctx *ctx = file->private_data;
9486
9487 file->private_data = NULL;
9488 io_ring_ctx_wait_and_kill(ctx);
9489 return 0;
9490}
9491
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00009492struct io_task_cancel {
9493 struct task_struct *task;
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009494 bool all;
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00009495};
Pavel Begunkov67c4d9e2020-06-15 10:24:05 +03009496
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00009497static bool io_cancel_task_cb(struct io_wq_work *work, void *data)
Jens Axboeb711d4e2020-08-16 08:23:05 -07009498{
Pavel Begunkov9a472ef2020-11-05 22:31:37 +00009499 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Pavel Begunkovf6edbab2020-11-06 13:00:26 +00009500 struct io_task_cancel *cancel = data;
Pavel Begunkov9a472ef2020-11-05 22:31:37 +00009501 bool ret;
9502
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009503 if (!cancel->all && (req->flags & REQ_F_LINK_TIMEOUT)) {
Pavel Begunkov9a472ef2020-11-05 22:31:37 +00009504 struct io_ring_ctx *ctx = req->ctx;
9505
9506 /* protect against races with linked timeouts */
Jens Axboe79ebeae2021-08-10 15:18:27 -06009507 spin_lock(&ctx->completion_lock);
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009508 ret = io_match_task(req, cancel->task, cancel->all);
Jens Axboe79ebeae2021-08-10 15:18:27 -06009509 spin_unlock(&ctx->completion_lock);
Pavel Begunkov9a472ef2020-11-05 22:31:37 +00009510 } else {
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009511 ret = io_match_task(req, cancel->task, cancel->all);
Pavel Begunkov9a472ef2020-11-05 22:31:37 +00009512 }
9513 return ret;
Jens Axboeb711d4e2020-08-16 08:23:05 -07009514}
9515
Pavel Begunkovc0724812021-10-04 20:02:54 +01009516static __cold bool io_cancel_defer_files(struct io_ring_ctx *ctx,
9517 struct task_struct *task,
9518 bool cancel_all)
Pavel Begunkovb7ddce32020-09-06 00:45:14 +03009519{
Pavel Begunkove1915f72021-03-11 23:29:35 +00009520 struct io_defer_entry *de;
Pavel Begunkovb7ddce32020-09-06 00:45:14 +03009521 LIST_HEAD(list);
9522
Jens Axboe79ebeae2021-08-10 15:18:27 -06009523 spin_lock(&ctx->completion_lock);
Pavel Begunkovb7ddce32020-09-06 00:45:14 +03009524 list_for_each_entry_reverse(de, &ctx->defer_list, list) {
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009525 if (io_match_task(de->req, task, cancel_all)) {
Pavel Begunkovb7ddce32020-09-06 00:45:14 +03009526 list_cut_position(&list, &ctx->defer_list, &de->list);
9527 break;
9528 }
9529 }
Jens Axboe79ebeae2021-08-10 15:18:27 -06009530 spin_unlock(&ctx->completion_lock);
Pavel Begunkove1915f72021-03-11 23:29:35 +00009531 if (list_empty(&list))
9532 return false;
Pavel Begunkovb7ddce32020-09-06 00:45:14 +03009533
9534 while (!list_empty(&list)) {
9535 de = list_first_entry(&list, struct io_defer_entry, list);
9536 list_del_init(&de->list);
Pavel Begunkovf41db2732021-02-28 22:35:12 +00009537 io_req_complete_failed(de->req, -ECANCELED);
Pavel Begunkovb7ddce32020-09-06 00:45:14 +03009538 kfree(de);
9539 }
Pavel Begunkove1915f72021-03-11 23:29:35 +00009540 return true;
Pavel Begunkovb7ddce32020-09-06 00:45:14 +03009541}
9542
Pavel Begunkovc0724812021-10-04 20:02:54 +01009543static __cold bool io_uring_try_cancel_iowq(struct io_ring_ctx *ctx)
Pavel Begunkov1b007642021-03-06 11:02:17 +00009544{
9545 struct io_tctx_node *node;
9546 enum io_wq_cancel cret;
9547 bool ret = false;
9548
9549 mutex_lock(&ctx->uring_lock);
9550 list_for_each_entry(node, &ctx->tctx_list, ctx_node) {
9551 struct io_uring_task *tctx = node->task->io_uring;
9552
9553 /*
9554 * io_wq will stay alive while we hold uring_lock, because it's
9555 * killed after ctx nodes, which requires to take the lock.
9556 */
9557 if (!tctx || !tctx->io_wq)
9558 continue;
9559 cret = io_wq_cancel_cb(tctx->io_wq, io_cancel_ctx_cb, ctx, true);
9560 ret |= (cret != IO_WQ_CANCEL_NOTFOUND);
9561 }
9562 mutex_unlock(&ctx->uring_lock);
9563
9564 return ret;
9565}
9566
Pavel Begunkovc0724812021-10-04 20:02:54 +01009567static __cold void io_uring_try_cancel_requests(struct io_ring_ctx *ctx,
9568 struct task_struct *task,
9569 bool cancel_all)
Pavel Begunkov9936c7c2021-02-04 13:51:56 +00009570{
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009571 struct io_task_cancel cancel = { .task = task, .all = cancel_all, };
Pavel Begunkov1b007642021-03-06 11:02:17 +00009572 struct io_uring_task *tctx = task ? task->io_uring : NULL;
Pavel Begunkov9936c7c2021-02-04 13:51:56 +00009573
9574 while (1) {
9575 enum io_wq_cancel cret;
9576 bool ret = false;
9577
Pavel Begunkov1b007642021-03-06 11:02:17 +00009578 if (!task) {
9579 ret |= io_uring_try_cancel_iowq(ctx);
9580 } else if (tctx && tctx->io_wq) {
9581 /*
9582 * Cancels requests of all rings, not only @ctx, but
9583 * it's fine as the task is in exit/exec.
9584 */
Jens Axboe5aa75ed2021-02-16 12:56:50 -07009585 cret = io_wq_cancel_cb(tctx->io_wq, io_cancel_task_cb,
Pavel Begunkov9936c7c2021-02-04 13:51:56 +00009586 &cancel, true);
9587 ret |= (cret != IO_WQ_CANCEL_NOTFOUND);
9588 }
9589
9590 /* SQPOLL thread does its own polling */
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009591 if ((!(ctx->flags & IORING_SETUP_SQPOLL) && cancel_all) ||
Jens Axboed052d1d2021-03-11 10:49:20 -07009592 (ctx->sq_data && ctx->sq_data->thread == current)) {
Pavel Begunkov5eef4e82021-09-24 21:59:49 +01009593 while (!wq_list_empty(&ctx->iopoll_list)) {
Pavel Begunkov9936c7c2021-02-04 13:51:56 +00009594 io_iopoll_try_reap_events(ctx);
9595 ret = true;
9596 }
9597 }
9598
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009599 ret |= io_cancel_defer_files(ctx, task, cancel_all);
9600 ret |= io_poll_remove_all(ctx, task, cancel_all);
9601 ret |= io_kill_timeouts(ctx, task, cancel_all);
Pavel Begunkove5dc4802021-06-26 21:40:46 +01009602 if (task)
9603 ret |= io_run_task_work();
Pavel Begunkov9936c7c2021-02-04 13:51:56 +00009604 if (!ret)
9605 break;
9606 cond_resched();
9607 }
9608}
9609
Pavel Begunkoveef51da2021-06-14 02:36:15 +01009610static int __io_uring_add_tctx_node(struct io_ring_ctx *ctx)
Jens Axboe0f212202020-09-13 13:09:39 -06009611{
Matthew Wilcox (Oracle)236434c2020-10-09 13:49:52 +01009612 struct io_uring_task *tctx = current->io_uring;
Pavel Begunkov13bf43f2021-03-06 11:02:12 +00009613 struct io_tctx_node *node;
Pavel Begunkova528b042020-12-21 18:34:04 +00009614 int ret;
Matthew Wilcox (Oracle)236434c2020-10-09 13:49:52 +01009615
9616 if (unlikely(!tctx)) {
Jens Axboe5aa75ed2021-02-16 12:56:50 -07009617 ret = io_uring_alloc_task_context(current, ctx);
Jens Axboe0f212202020-09-13 13:09:39 -06009618 if (unlikely(ret))
9619 return ret;
Matthew Wilcox (Oracle)236434c2020-10-09 13:49:52 +01009620 tctx = current->io_uring;
Jens Axboe0f212202020-09-13 13:09:39 -06009621 }
Pavel Begunkovcf27f3b2021-03-19 17:22:31 +00009622 if (!xa_load(&tctx->xa, (unsigned long)ctx)) {
9623 node = kmalloc(sizeof(*node), GFP_KERNEL);
9624 if (!node)
9625 return -ENOMEM;
9626 node->ctx = ctx;
9627 node->task = current;
Jens Axboe0f212202020-09-13 13:09:39 -06009628
Pavel Begunkovcf27f3b2021-03-19 17:22:31 +00009629 ret = xa_err(xa_store(&tctx->xa, (unsigned long)ctx,
9630 node, GFP_KERNEL));
9631 if (ret) {
9632 kfree(node);
9633 return ret;
Jens Axboe0f212202020-09-13 13:09:39 -06009634 }
Pavel Begunkovcf27f3b2021-03-19 17:22:31 +00009635
9636 mutex_lock(&ctx->uring_lock);
9637 list_add(&node->ctx_node, &ctx->tctx_list);
9638 mutex_unlock(&ctx->uring_lock);
Jens Axboe0f212202020-09-13 13:09:39 -06009639 }
Pavel Begunkovcf27f3b2021-03-19 17:22:31 +00009640 tctx->last = ctx;
Jens Axboe0f212202020-09-13 13:09:39 -06009641 return 0;
9642}
9643
9644/*
Pavel Begunkovcf27f3b2021-03-19 17:22:31 +00009645 * Note that this task has used io_uring. We use it for cancelation purposes.
9646 */
Pavel Begunkoveef51da2021-06-14 02:36:15 +01009647static inline int io_uring_add_tctx_node(struct io_ring_ctx *ctx)
Pavel Begunkovcf27f3b2021-03-19 17:22:31 +00009648{
9649 struct io_uring_task *tctx = current->io_uring;
9650
9651 if (likely(tctx && tctx->last == ctx))
9652 return 0;
Pavel Begunkoveef51da2021-06-14 02:36:15 +01009653 return __io_uring_add_tctx_node(ctx);
Pavel Begunkovcf27f3b2021-03-19 17:22:31 +00009654}
9655
9656/*
Jens Axboe0f212202020-09-13 13:09:39 -06009657 * Remove this io_uring_file -> task mapping.
9658 */
Pavel Begunkovc0724812021-10-04 20:02:54 +01009659static __cold void io_uring_del_tctx_node(unsigned long index)
Jens Axboe0f212202020-09-13 13:09:39 -06009660{
9661 struct io_uring_task *tctx = current->io_uring;
Pavel Begunkov13bf43f2021-03-06 11:02:12 +00009662 struct io_tctx_node *node;
Pavel Begunkov29412672021-03-06 11:02:11 +00009663
Pavel Begunkoveebd2e32021-03-06 11:02:14 +00009664 if (!tctx)
9665 return;
Pavel Begunkov13bf43f2021-03-06 11:02:12 +00009666 node = xa_erase(&tctx->xa, index);
9667 if (!node)
Pavel Begunkov29412672021-03-06 11:02:11 +00009668 return;
Jens Axboe0f212202020-09-13 13:09:39 -06009669
Pavel Begunkov13bf43f2021-03-06 11:02:12 +00009670 WARN_ON_ONCE(current != node->task);
9671 WARN_ON_ONCE(list_empty(&node->ctx_node));
9672
9673 mutex_lock(&node->ctx->uring_lock);
9674 list_del(&node->ctx_node);
9675 mutex_unlock(&node->ctx->uring_lock);
9676
Pavel Begunkovbaf186c2021-03-06 11:02:15 +00009677 if (tctx->last == node->ctx)
Jens Axboe0f212202020-09-13 13:09:39 -06009678 tctx->last = NULL;
Pavel Begunkov13bf43f2021-03-06 11:02:12 +00009679 kfree(node);
Jens Axboe0f212202020-09-13 13:09:39 -06009680}
9681
Pavel Begunkovc0724812021-10-04 20:02:54 +01009682static __cold void io_uring_clean_tctx(struct io_uring_task *tctx)
Pavel Begunkovde7f1d92021-01-04 20:43:29 +00009683{
Pavel Begunkovba5ef6d2021-05-20 13:21:20 +01009684 struct io_wq *wq = tctx->io_wq;
Pavel Begunkov13bf43f2021-03-06 11:02:12 +00009685 struct io_tctx_node *node;
Pavel Begunkovde7f1d92021-01-04 20:43:29 +00009686 unsigned long index;
9687
Jens Axboe8bab4c02021-09-24 07:12:27 -06009688 xa_for_each(&tctx->xa, index, node) {
Pavel Begunkoveef51da2021-06-14 02:36:15 +01009689 io_uring_del_tctx_node(index);
Jens Axboe8bab4c02021-09-24 07:12:27 -06009690 cond_resched();
9691 }
Marco Elverb16ef422021-05-27 11:25:48 +02009692 if (wq) {
9693 /*
9694 * Must be after io_uring_del_task_file() (removes nodes under
9695 * uring_lock) to avoid race with io_uring_try_cancel_iowq().
9696 */
Pavel Begunkovba5ef6d2021-05-20 13:21:20 +01009697 io_wq_put_and_exit(wq);
Pavel Begunkovdadebc32021-08-23 13:30:44 +01009698 tctx->io_wq = NULL;
Marco Elverb16ef422021-05-27 11:25:48 +02009699 }
Pavel Begunkovde7f1d92021-01-04 20:43:29 +00009700}
9701
Pavel Begunkov3f48cf12021-04-11 01:46:27 +01009702static s64 tctx_inflight(struct io_uring_task *tctx, bool tracked)
Pavel Begunkov521d6a72021-03-11 23:29:38 +00009703{
Pavel Begunkov3f48cf12021-04-11 01:46:27 +01009704 if (tracked)
9705 return atomic_read(&tctx->inflight_tracked);
Pavel Begunkov521d6a72021-03-11 23:29:38 +00009706 return percpu_counter_sum(&tctx->inflight);
9707}
9708
Pavel Begunkovc0724812021-10-04 20:02:54 +01009709static __cold void io_uring_drop_tctx_refs(struct task_struct *task)
Pavel Begunkov09899b12021-06-14 02:36:22 +01009710{
9711 struct io_uring_task *tctx = task->io_uring;
9712 unsigned int refs = tctx->cached_refs;
9713
Pavel Begunkove9dbe222021-08-09 13:04:20 +01009714 if (refs) {
9715 tctx->cached_refs = 0;
9716 percpu_counter_sub(&tctx->inflight, refs);
9717 put_task_struct_many(task, refs);
9718 }
Pavel Begunkov09899b12021-06-14 02:36:22 +01009719}
9720
Pavel Begunkov78cc6872021-06-14 02:36:23 +01009721/*
9722 * Find any io_uring ctx that this task has registered or done IO on, and cancel
9723 * requests. @sqd should be not-null IIF it's an SQPOLL thread cancellation.
9724 */
Pavel Begunkovc0724812021-10-04 20:02:54 +01009725static __cold void io_uring_cancel_generic(bool cancel_all,
9726 struct io_sq_data *sqd)
Pavel Begunkov0e9ddb32021-02-07 22:34:26 +00009727{
Pavel Begunkov521d6a72021-03-11 23:29:38 +00009728 struct io_uring_task *tctx = current->io_uring;
Pavel Begunkov734551d2021-04-18 14:52:09 +01009729 struct io_ring_ctx *ctx;
Jens Axboefdaf0832020-10-30 09:37:30 -06009730 s64 inflight;
Pavel Begunkov0e9ddb32021-02-07 22:34:26 +00009731 DEFINE_WAIT(wait);
Jens Axboefdaf0832020-10-30 09:37:30 -06009732
Pavel Begunkov78cc6872021-06-14 02:36:23 +01009733 WARN_ON_ONCE(sqd && sqd->thread != current);
9734
Palash Oswal6d042ff2021-04-27 18:21:49 +05309735 if (!current->io_uring)
9736 return;
Pavel Begunkov17a91052021-05-23 15:48:39 +01009737 if (tctx->io_wq)
9738 io_wq_exit_start(tctx->io_wq);
9739
Jens Axboefdaf0832020-10-30 09:37:30 -06009740 atomic_inc(&tctx->in_idle);
Jens Axboed8a6df12020-10-15 16:24:45 -06009741 do {
Pavel Begunkove9dbe222021-08-09 13:04:20 +01009742 io_uring_drop_tctx_refs(current);
Jens Axboe0f212202020-09-13 13:09:39 -06009743 /* read completions before cancelations */
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009744 inflight = tctx_inflight(tctx, !cancel_all);
Jens Axboed8a6df12020-10-15 16:24:45 -06009745 if (!inflight)
9746 break;
Jens Axboe0f212202020-09-13 13:09:39 -06009747
Pavel Begunkov78cc6872021-06-14 02:36:23 +01009748 if (!sqd) {
9749 struct io_tctx_node *node;
9750 unsigned long index;
9751
9752 xa_for_each(&tctx->xa, index, node) {
9753 /* sqpoll task will cancel all its requests */
9754 if (node->ctx->sq_data)
9755 continue;
9756 io_uring_try_cancel_requests(node->ctx, current,
9757 cancel_all);
9758 }
9759 } else {
9760 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list)
9761 io_uring_try_cancel_requests(ctx, current,
9762 cancel_all);
9763 }
9764
9765 prepare_to_wait(&tctx->wait, &wait, TASK_UNINTERRUPTIBLE);
Pavel Begunkove9dbe222021-08-09 13:04:20 +01009766 io_uring_drop_tctx_refs(current);
Jens Axboe0f212202020-09-13 13:09:39 -06009767 /*
Pavel Begunkova1bb3cd2021-01-26 15:28:26 +00009768 * If we've seen completions, retry without waiting. This
9769 * avoids a race where a completion comes in before we did
9770 * prepare_to_wait().
Jens Axboe0f212202020-09-13 13:09:39 -06009771 */
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009772 if (inflight == tctx_inflight(tctx, !cancel_all))
Pavel Begunkova1bb3cd2021-01-26 15:28:26 +00009773 schedule();
Pavel Begunkovf57555e2020-12-20 13:21:44 +00009774 finish_wait(&tctx->wait, &wait);
Jens Axboed8a6df12020-10-15 16:24:45 -06009775 } while (1);
Jens Axboefdaf0832020-10-30 09:37:30 -06009776 atomic_dec(&tctx->in_idle);
Pavel Begunkovde7f1d92021-01-04 20:43:29 +00009777
Pavel Begunkov8452d4a2021-02-27 11:16:46 +00009778 io_uring_clean_tctx(tctx);
Pavel Begunkov3dd0c972021-05-16 22:58:04 +01009779 if (cancel_all) {
Pavel Begunkov3f48cf12021-04-11 01:46:27 +01009780 /* for exec all current's requests should be gone, kill tctx */
9781 __io_uring_free(current);
9782 }
Pavel Begunkov44e728b2020-06-15 10:24:04 +03009783}
9784
Hao Xuf552a272021-08-12 12:14:35 +08009785void __io_uring_cancel(bool cancel_all)
Pavel Begunkov78cc6872021-06-14 02:36:23 +01009786{
Hao Xuf552a272021-08-12 12:14:35 +08009787 io_uring_cancel_generic(cancel_all, NULL);
Pavel Begunkov78cc6872021-06-14 02:36:23 +01009788}
9789
Roman Penyaev6c5c2402019-11-28 12:53:22 +01009790static void *io_uring_validate_mmap_request(struct file *file,
9791 loff_t pgoff, size_t sz)
Jens Axboe2b188cc2019-01-07 10:46:33 -07009792{
Jens Axboe2b188cc2019-01-07 10:46:33 -07009793 struct io_ring_ctx *ctx = file->private_data;
Roman Penyaev6c5c2402019-11-28 12:53:22 +01009794 loff_t offset = pgoff << PAGE_SHIFT;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009795 struct page *page;
9796 void *ptr;
9797
9798 switch (offset) {
9799 case IORING_OFF_SQ_RING:
Hristo Venev75b28af2019-08-26 17:23:46 +00009800 case IORING_OFF_CQ_RING:
9801 ptr = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009802 break;
9803 case IORING_OFF_SQES:
9804 ptr = ctx->sq_sqes;
9805 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009806 default:
Roman Penyaev6c5c2402019-11-28 12:53:22 +01009807 return ERR_PTR(-EINVAL);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009808 }
9809
9810 page = virt_to_head_page(ptr);
Matthew Wilcox (Oracle)a50b8542019-09-23 15:34:25 -07009811 if (sz > page_size(page))
Roman Penyaev6c5c2402019-11-28 12:53:22 +01009812 return ERR_PTR(-EINVAL);
9813
9814 return ptr;
9815}
9816
9817#ifdef CONFIG_MMU
9818
Pavel Begunkovc0724812021-10-04 20:02:54 +01009819static __cold int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
Roman Penyaev6c5c2402019-11-28 12:53:22 +01009820{
9821 size_t sz = vma->vm_end - vma->vm_start;
9822 unsigned long pfn;
9823 void *ptr;
9824
9825 ptr = io_uring_validate_mmap_request(file, vma->vm_pgoff, sz);
9826 if (IS_ERR(ptr))
9827 return PTR_ERR(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009828
9829 pfn = virt_to_phys(ptr) >> PAGE_SHIFT;
9830 return remap_pfn_range(vma, vma->vm_start, pfn, sz, vma->vm_page_prot);
9831}
9832
Roman Penyaev6c5c2402019-11-28 12:53:22 +01009833#else /* !CONFIG_MMU */
9834
9835static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
9836{
9837 return vma->vm_flags & (VM_SHARED | VM_MAYSHARE) ? 0 : -EINVAL;
9838}
9839
9840static unsigned int io_uring_nommu_mmap_capabilities(struct file *file)
9841{
9842 return NOMMU_MAP_DIRECT | NOMMU_MAP_READ | NOMMU_MAP_WRITE;
9843}
9844
9845static unsigned long io_uring_nommu_get_unmapped_area(struct file *file,
9846 unsigned long addr, unsigned long len,
9847 unsigned long pgoff, unsigned long flags)
9848{
9849 void *ptr;
9850
9851 ptr = io_uring_validate_mmap_request(file, pgoff, len);
9852 if (IS_ERR(ptr))
9853 return PTR_ERR(ptr);
9854
9855 return (unsigned long) ptr;
9856}
9857
9858#endif /* !CONFIG_MMU */
9859
Pavel Begunkovd9d05212021-01-08 20:57:25 +00009860static int io_sqpoll_wait_sq(struct io_ring_ctx *ctx)
Jens Axboe90554202020-09-03 12:12:41 -06009861{
9862 DEFINE_WAIT(wait);
9863
9864 do {
9865 if (!io_sqring_full(ctx))
9866 break;
Jens Axboe90554202020-09-03 12:12:41 -06009867 prepare_to_wait(&ctx->sqo_sq_wait, &wait, TASK_INTERRUPTIBLE);
9868
9869 if (!io_sqring_full(ctx))
9870 break;
Jens Axboe90554202020-09-03 12:12:41 -06009871 schedule();
9872 } while (!signal_pending(current));
9873
9874 finish_wait(&ctx->sqo_sq_wait, &wait);
Yang Li51993282021-03-09 14:30:41 +08009875 return 0;
Jens Axboe90554202020-09-03 12:12:41 -06009876}
9877
Hao Xuc73ebb62020-11-03 10:54:37 +08009878static int io_get_ext_arg(unsigned flags, const void __user *argp, size_t *argsz,
9879 struct __kernel_timespec __user **ts,
9880 const sigset_t __user **sig)
9881{
9882 struct io_uring_getevents_arg arg;
9883
9884 /*
9885 * If EXT_ARG isn't set, then we have no timespec and the argp pointer
9886 * is just a pointer to the sigset_t.
9887 */
9888 if (!(flags & IORING_ENTER_EXT_ARG)) {
9889 *sig = (const sigset_t __user *) argp;
9890 *ts = NULL;
9891 return 0;
9892 }
9893
9894 /*
9895 * EXT_ARG is set - ensure we agree on the size of it and copy in our
9896 * timespec and sigset_t pointers if good.
9897 */
9898 if (*argsz != sizeof(arg))
9899 return -EINVAL;
9900 if (copy_from_user(&arg, argp, sizeof(arg)))
9901 return -EFAULT;
9902 *sig = u64_to_user_ptr(arg.sigmask);
9903 *argsz = arg.sigmask_sz;
9904 *ts = u64_to_user_ptr(arg.ts);
9905 return 0;
9906}
9907
Jens Axboe2b188cc2019-01-07 10:46:33 -07009908SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
Hao Xuc73ebb62020-11-03 10:54:37 +08009909 u32, min_complete, u32, flags, const void __user *, argp,
9910 size_t, argsz)
Jens Axboe2b188cc2019-01-07 10:46:33 -07009911{
9912 struct io_ring_ctx *ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009913 int submitted = 0;
9914 struct fd f;
Pavel Begunkov33f993d2021-03-19 17:22:30 +00009915 long ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009916
Jens Axboe4c6e2772020-07-01 11:29:10 -06009917 io_run_task_work();
Jens Axboeb41e9852020-02-17 09:52:41 -07009918
Pavel Begunkov33f993d2021-03-19 17:22:30 +00009919 if (unlikely(flags & ~(IORING_ENTER_GETEVENTS | IORING_ENTER_SQ_WAKEUP |
9920 IORING_ENTER_SQ_WAIT | IORING_ENTER_EXT_ARG)))
Jens Axboe2b188cc2019-01-07 10:46:33 -07009921 return -EINVAL;
9922
9923 f = fdget(fd);
Pavel Begunkov33f993d2021-03-19 17:22:30 +00009924 if (unlikely(!f.file))
Jens Axboe2b188cc2019-01-07 10:46:33 -07009925 return -EBADF;
9926
9927 ret = -EOPNOTSUPP;
Pavel Begunkov33f993d2021-03-19 17:22:30 +00009928 if (unlikely(f.file->f_op != &io_uring_fops))
Jens Axboe2b188cc2019-01-07 10:46:33 -07009929 goto out_fput;
9930
9931 ret = -ENXIO;
9932 ctx = f.file->private_data;
Pavel Begunkov33f993d2021-03-19 17:22:30 +00009933 if (unlikely(!percpu_ref_tryget(&ctx->refs)))
Jens Axboe2b188cc2019-01-07 10:46:33 -07009934 goto out_fput;
9935
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02009936 ret = -EBADFD;
Pavel Begunkov33f993d2021-03-19 17:22:30 +00009937 if (unlikely(ctx->flags & IORING_SETUP_R_DISABLED))
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +02009938 goto out;
9939
Jens Axboe6c271ce2019-01-10 11:22:30 -07009940 /*
9941 * For SQ polling, the thread will do all submissions and completions.
9942 * Just return the requested submit count, and wake the thread if
9943 * we were asked to.
9944 */
Jens Axboeb2a9ead2019-09-12 14:19:16 -06009945 ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07009946 if (ctx->flags & IORING_SETUP_SQPOLL) {
Pavel Begunkov90f67362021-08-09 20:18:12 +01009947 io_cqring_overflow_flush(ctx);
Pavel Begunkov89448c42020-12-17 00:24:39 +00009948
Jens Axboe21f96522021-08-14 09:04:40 -06009949 if (unlikely(ctx->sq_data->thread == NULL)) {
9950 ret = -EOWNERDEAD;
Stefan Metzmacher04147482021-03-07 11:54:29 +01009951 goto out;
Jens Axboe21f96522021-08-14 09:04:40 -06009952 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07009953 if (flags & IORING_ENTER_SQ_WAKEUP)
Jens Axboe534ca6d2020-09-02 13:52:19 -06009954 wake_up(&ctx->sq_data->wait);
Pavel Begunkovd9d05212021-01-08 20:57:25 +00009955 if (flags & IORING_ENTER_SQ_WAIT) {
9956 ret = io_sqpoll_wait_sq(ctx);
9957 if (ret)
9958 goto out;
9959 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07009960 submitted = to_submit;
Jens Axboeb2a9ead2019-09-12 14:19:16 -06009961 } else if (to_submit) {
Pavel Begunkoveef51da2021-06-14 02:36:15 +01009962 ret = io_uring_add_tctx_node(ctx);
Jens Axboe0f212202020-09-13 13:09:39 -06009963 if (unlikely(ret))
9964 goto out;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009965 mutex_lock(&ctx->uring_lock);
Jens Axboe0f212202020-09-13 13:09:39 -06009966 submitted = io_submit_sqes(ctx, to_submit);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009967 mutex_unlock(&ctx->uring_lock);
Pavel Begunkov7c504e652019-12-18 19:53:45 +03009968
9969 if (submitted != to_submit)
9970 goto out;
Jens Axboe2b188cc2019-01-07 10:46:33 -07009971 }
9972 if (flags & IORING_ENTER_GETEVENTS) {
Hao Xuc73ebb62020-11-03 10:54:37 +08009973 const sigset_t __user *sig;
9974 struct __kernel_timespec __user *ts;
9975
9976 ret = io_get_ext_arg(flags, argp, &argsz, &ts, &sig);
9977 if (unlikely(ret))
9978 goto out;
9979
Jens Axboe2b188cc2019-01-07 10:46:33 -07009980 min_complete = min(min_complete, ctx->cq_entries);
9981
Xiaoguang Wang32b22442020-03-11 09:26:09 +08009982 /*
9983 * When SETUP_IOPOLL and SETUP_SQPOLL are both enabled, user
9984 * space applications don't need to do io completion events
9985 * polling again, they can rely on io_sq_thread to do polling
9986 * work, which can reduce cpu usage and uring_lock contention.
9987 */
9988 if (ctx->flags & IORING_SETUP_IOPOLL &&
9989 !(ctx->flags & IORING_SETUP_SQPOLL)) {
Pavel Begunkov7668b922020-07-07 16:36:21 +03009990 ret = io_iopoll_check(ctx, min_complete);
Jens Axboedef596e2019-01-09 08:59:42 -07009991 } else {
Hao Xuc73ebb62020-11-03 10:54:37 +08009992 ret = io_cqring_wait(ctx, min_complete, sig, argsz, ts);
Jens Axboedef596e2019-01-09 08:59:42 -07009993 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07009994 }
9995
Pavel Begunkov7c504e652019-12-18 19:53:45 +03009996out:
Pavel Begunkov6805b322019-10-08 02:18:42 +03009997 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07009998out_fput:
9999 fdput(f);
10000 return submitted ? submitted : ret;
10001}
10002
Tobias Klauserbebdb652020-02-26 18:38:32 +010010003#ifdef CONFIG_PROC_FS
Pavel Begunkovc0724812021-10-04 20:02:54 +010010004static __cold int io_uring_show_cred(struct seq_file *m, unsigned int id,
Matthew Wilcox (Oracle)61cf9372021-03-08 14:16:16 +000010005 const struct cred *cred)
Jens Axboe87ce9552020-01-30 08:25:34 -070010006{
Jens Axboe87ce9552020-01-30 08:25:34 -070010007 struct user_namespace *uns = seq_user_ns(m);
10008 struct group_info *gi;
10009 kernel_cap_t cap;
10010 unsigned __capi;
10011 int g;
10012
10013 seq_printf(m, "%5d\n", id);
10014 seq_put_decimal_ull(m, "\tUid:\t", from_kuid_munged(uns, cred->uid));
10015 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->euid));
10016 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->suid));
10017 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->fsuid));
10018 seq_put_decimal_ull(m, "\n\tGid:\t", from_kgid_munged(uns, cred->gid));
10019 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->egid));
10020 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->sgid));
10021 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->fsgid));
10022 seq_puts(m, "\n\tGroups:\t");
10023 gi = cred->group_info;
10024 for (g = 0; g < gi->ngroups; g++) {
10025 seq_put_decimal_ull(m, g ? " " : "",
10026 from_kgid_munged(uns, gi->gid[g]));
10027 }
10028 seq_puts(m, "\n\tCapEff:\t");
10029 cap = cred->cap_effective;
10030 CAP_FOR_EACH_U32(__capi)
10031 seq_put_hex_ll(m, NULL, cap.cap[CAP_LAST_U32 - __capi], 8);
10032 seq_putc(m, '\n');
10033 return 0;
10034}
10035
Pavel Begunkovc0724812021-10-04 20:02:54 +010010036static __cold void __io_uring_show_fdinfo(struct io_ring_ctx *ctx,
10037 struct seq_file *m)
Jens Axboe87ce9552020-01-30 08:25:34 -070010038{
Joseph Qidbbe9c62020-09-29 09:01:22 -060010039 struct io_sq_data *sq = NULL;
Hao Xu83f84352021-09-13 21:08:54 +080010040 struct io_overflow_cqe *ocqe;
10041 struct io_rings *r = ctx->rings;
10042 unsigned int sq_mask = ctx->sq_entries - 1, cq_mask = ctx->cq_entries - 1;
10043 unsigned int cached_sq_head = ctx->cached_sq_head;
10044 unsigned int cached_cq_tail = ctx->cached_cq_tail;
10045 unsigned int sq_head = READ_ONCE(r->sq.head);
10046 unsigned int sq_tail = READ_ONCE(r->sq.tail);
10047 unsigned int cq_head = READ_ONCE(r->cq.head);
10048 unsigned int cq_tail = READ_ONCE(r->cq.tail);
Jens Axboefad8e0d2020-09-28 08:57:48 -060010049 bool has_lock;
Hao Xu83f84352021-09-13 21:08:54 +080010050 unsigned int i;
10051
10052 /*
10053 * we may get imprecise sqe and cqe info if uring is actively running
10054 * since we get cached_sq_head and cached_cq_tail without uring_lock
10055 * and sq_tail and cq_head are changed by userspace. But it's ok since
10056 * we usually use these info when it is stuck.
10057 */
10058 seq_printf(m, "SqHead:\t%u\n", sq_head & sq_mask);
10059 seq_printf(m, "SqTail:\t%u\n", sq_tail & sq_mask);
10060 seq_printf(m, "CachedSqHead:\t%u\n", cached_sq_head & sq_mask);
10061 seq_printf(m, "CqHead:\t%u\n", cq_head & cq_mask);
10062 seq_printf(m, "CqTail:\t%u\n", cq_tail & cq_mask);
10063 seq_printf(m, "CachedCqTail:\t%u\n", cached_cq_tail & cq_mask);
10064 seq_printf(m, "SQEs:\t%u\n", sq_tail - cached_sq_head);
10065 for (i = cached_sq_head; i < sq_tail; i++) {
10066 unsigned int sq_idx = READ_ONCE(ctx->sq_array[i & sq_mask]);
10067
10068 if (likely(sq_idx <= sq_mask)) {
10069 struct io_uring_sqe *sqe = &ctx->sq_sqes[sq_idx];
10070
10071 seq_printf(m, "%5u: opcode:%d, fd:%d, flags:%x, user_data:%llu\n",
10072 sq_idx, sqe->opcode, sqe->fd, sqe->flags, sqe->user_data);
10073 }
10074 }
10075 seq_printf(m, "CQEs:\t%u\n", cached_cq_tail - cq_head);
10076 for (i = cq_head; i < cached_cq_tail; i++) {
10077 struct io_uring_cqe *cqe = &r->cqes[i & cq_mask];
10078
10079 seq_printf(m, "%5u: user_data:%llu, res:%d, flag:%x\n",
10080 i & cq_mask, cqe->user_data, cqe->res, cqe->flags);
10081 }
Jens Axboe87ce9552020-01-30 08:25:34 -070010082
Jens Axboefad8e0d2020-09-28 08:57:48 -060010083 /*
10084 * Avoid ABBA deadlock between the seq lock and the io_uring mutex,
10085 * since fdinfo case grabs it in the opposite direction of normal use
10086 * cases. If we fail to get the lock, we just don't iterate any
10087 * structures that could be going away outside the io_uring mutex.
10088 */
10089 has_lock = mutex_trylock(&ctx->uring_lock);
10090
Jens Axboe5f3f26f2021-02-25 10:17:46 -070010091 if (has_lock && (ctx->flags & IORING_SETUP_SQPOLL)) {
Joseph Qidbbe9c62020-09-29 09:01:22 -060010092 sq = ctx->sq_data;
Jens Axboe5f3f26f2021-02-25 10:17:46 -070010093 if (!sq->thread)
10094 sq = NULL;
10095 }
Joseph Qidbbe9c62020-09-29 09:01:22 -060010096
10097 seq_printf(m, "SqThread:\t%d\n", sq ? task_pid_nr(sq->thread) : -1);
10098 seq_printf(m, "SqThreadCpu:\t%d\n", sq ? task_cpu(sq->thread) : -1);
Jens Axboe87ce9552020-01-30 08:25:34 -070010099 seq_printf(m, "UserFiles:\t%u\n", ctx->nr_user_files);
Jens Axboefad8e0d2020-09-28 08:57:48 -060010100 for (i = 0; has_lock && i < ctx->nr_user_files; i++) {
Jens Axboe7b29f922021-03-12 08:30:14 -070010101 struct file *f = io_file_from_index(ctx, i);
Jens Axboe87ce9552020-01-30 08:25:34 -070010102
Jens Axboe87ce9552020-01-30 08:25:34 -070010103 if (f)
10104 seq_printf(m, "%5u: %s\n", i, file_dentry(f)->d_iname);
10105 else
10106 seq_printf(m, "%5u: <none>\n", i);
10107 }
10108 seq_printf(m, "UserBufs:\t%u\n", ctx->nr_user_bufs);
Jens Axboefad8e0d2020-09-28 08:57:48 -060010109 for (i = 0; has_lock && i < ctx->nr_user_bufs; i++) {
Pavel Begunkov41edf1a2021-04-25 14:32:23 +010010110 struct io_mapped_ubuf *buf = ctx->user_bufs[i];
Pavel Begunkov4751f532021-04-01 15:43:55 +010010111 unsigned int len = buf->ubuf_end - buf->ubuf;
Jens Axboe87ce9552020-01-30 08:25:34 -070010112
Pavel Begunkov4751f532021-04-01 15:43:55 +010010113 seq_printf(m, "%5u: 0x%llx/%u\n", i, buf->ubuf, len);
Jens Axboe87ce9552020-01-30 08:25:34 -070010114 }
Matthew Wilcox (Oracle)61cf9372021-03-08 14:16:16 +000010115 if (has_lock && !xa_empty(&ctx->personalities)) {
10116 unsigned long index;
10117 const struct cred *cred;
10118
Jens Axboe87ce9552020-01-30 08:25:34 -070010119 seq_printf(m, "Personalities:\n");
Matthew Wilcox (Oracle)61cf9372021-03-08 14:16:16 +000010120 xa_for_each(&ctx->personalities, index, cred)
10121 io_uring_show_cred(m, index, cred);
Jens Axboe87ce9552020-01-30 08:25:34 -070010122 }
Hao Xu83f84352021-09-13 21:08:54 +080010123 if (has_lock)
10124 mutex_unlock(&ctx->uring_lock);
10125
10126 seq_puts(m, "PollList:\n");
Jens Axboe79ebeae2021-08-10 15:18:27 -060010127 spin_lock(&ctx->completion_lock);
Jens Axboed7718a92020-02-14 22:23:12 -070010128 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
10129 struct hlist_head *list = &ctx->cancel_hash[i];
10130 struct io_kiocb *req;
10131
10132 hlist_for_each_entry(req, list, hash_node)
10133 seq_printf(m, " op=%d, task_works=%d\n", req->opcode,
10134 req->task->task_works != NULL);
10135 }
Hao Xu83f84352021-09-13 21:08:54 +080010136
10137 seq_puts(m, "CqOverflowList:\n");
10138 list_for_each_entry(ocqe, &ctx->cq_overflow_list, list) {
10139 struct io_uring_cqe *cqe = &ocqe->cqe;
10140
10141 seq_printf(m, " user_data=%llu, res=%d, flags=%x\n",
10142 cqe->user_data, cqe->res, cqe->flags);
10143
10144 }
10145
Jens Axboe79ebeae2021-08-10 15:18:27 -060010146 spin_unlock(&ctx->completion_lock);
Jens Axboe87ce9552020-01-30 08:25:34 -070010147}
10148
Pavel Begunkovc0724812021-10-04 20:02:54 +010010149static __cold void io_uring_show_fdinfo(struct seq_file *m, struct file *f)
Jens Axboe87ce9552020-01-30 08:25:34 -070010150{
10151 struct io_ring_ctx *ctx = f->private_data;
10152
10153 if (percpu_ref_tryget(&ctx->refs)) {
10154 __io_uring_show_fdinfo(ctx, m);
10155 percpu_ref_put(&ctx->refs);
10156 }
10157}
Tobias Klauserbebdb652020-02-26 18:38:32 +010010158#endif
Jens Axboe87ce9552020-01-30 08:25:34 -070010159
Jens Axboe2b188cc2019-01-07 10:46:33 -070010160static const struct file_operations io_uring_fops = {
10161 .release = io_uring_release,
10162 .mmap = io_uring_mmap,
Roman Penyaev6c5c2402019-11-28 12:53:22 +010010163#ifndef CONFIG_MMU
10164 .get_unmapped_area = io_uring_nommu_get_unmapped_area,
10165 .mmap_capabilities = io_uring_nommu_mmap_capabilities,
10166#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -070010167 .poll = io_uring_poll,
Tobias Klauserbebdb652020-02-26 18:38:32 +010010168#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -070010169 .show_fdinfo = io_uring_show_fdinfo,
Tobias Klauserbebdb652020-02-26 18:38:32 +010010170#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -070010171};
10172
Pavel Begunkovc0724812021-10-04 20:02:54 +010010173static __cold int io_allocate_scq_urings(struct io_ring_ctx *ctx,
10174 struct io_uring_params *p)
Jens Axboe2b188cc2019-01-07 10:46:33 -070010175{
Hristo Venev75b28af2019-08-26 17:23:46 +000010176 struct io_rings *rings;
10177 size_t size, sq_array_offset;
Jens Axboe2b188cc2019-01-07 10:46:33 -070010178
Jens Axboebd740482020-08-05 12:58:23 -060010179 /* make sure these are sane, as we already accounted them */
10180 ctx->sq_entries = p->sq_entries;
10181 ctx->cq_entries = p->cq_entries;
10182
Hristo Venev75b28af2019-08-26 17:23:46 +000010183 size = rings_size(p->sq_entries, p->cq_entries, &sq_array_offset);
10184 if (size == SIZE_MAX)
10185 return -EOVERFLOW;
10186
10187 rings = io_mem_alloc(size);
10188 if (!rings)
Jens Axboe2b188cc2019-01-07 10:46:33 -070010189 return -ENOMEM;
10190
Hristo Venev75b28af2019-08-26 17:23:46 +000010191 ctx->rings = rings;
10192 ctx->sq_array = (u32 *)((char *)rings + sq_array_offset);
10193 rings->sq_ring_mask = p->sq_entries - 1;
10194 rings->cq_ring_mask = p->cq_entries - 1;
10195 rings->sq_ring_entries = p->sq_entries;
10196 rings->cq_ring_entries = p->cq_entries;
Jens Axboe2b188cc2019-01-07 10:46:33 -070010197
10198 size = array_size(sizeof(struct io_uring_sqe), p->sq_entries);
Jens Axboeeb065d32019-11-20 09:26:29 -070010199 if (size == SIZE_MAX) {
10200 io_mem_free(ctx->rings);
10201 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -070010202 return -EOVERFLOW;
Jens Axboeeb065d32019-11-20 09:26:29 -070010203 }
Jens Axboe2b188cc2019-01-07 10:46:33 -070010204
10205 ctx->sq_sqes = io_mem_alloc(size);
Jens Axboeeb065d32019-11-20 09:26:29 -070010206 if (!ctx->sq_sqes) {
10207 io_mem_free(ctx->rings);
10208 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -070010209 return -ENOMEM;
Jens Axboeeb065d32019-11-20 09:26:29 -070010210 }
Jens Axboe2b188cc2019-01-07 10:46:33 -070010211
Jens Axboe2b188cc2019-01-07 10:46:33 -070010212 return 0;
10213}
10214
Pavel Begunkov9faadcc2020-12-21 18:34:05 +000010215static int io_uring_install_fd(struct io_ring_ctx *ctx, struct file *file)
10216{
10217 int ret, fd;
10218
10219 fd = get_unused_fd_flags(O_RDWR | O_CLOEXEC);
10220 if (fd < 0)
10221 return fd;
10222
Pavel Begunkoveef51da2021-06-14 02:36:15 +010010223 ret = io_uring_add_tctx_node(ctx);
Pavel Begunkov9faadcc2020-12-21 18:34:05 +000010224 if (ret) {
10225 put_unused_fd(fd);
10226 return ret;
10227 }
10228 fd_install(fd, file);
10229 return fd;
10230}
10231
Jens Axboe2b188cc2019-01-07 10:46:33 -070010232/*
10233 * Allocate an anonymous fd, this is what constitutes the application
10234 * visible backing of an io_uring instance. The application mmaps this
10235 * fd to gain access to the SQ/CQ ring details. If UNIX sockets are enabled,
10236 * we have to tie this fd to a socket for file garbage collection purposes.
10237 */
Pavel Begunkov9faadcc2020-12-21 18:34:05 +000010238static struct file *io_uring_get_file(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -070010239{
10240 struct file *file;
Jens Axboe2b188cc2019-01-07 10:46:33 -070010241#if defined(CONFIG_UNIX)
Pavel Begunkov9faadcc2020-12-21 18:34:05 +000010242 int ret;
10243
Jens Axboe2b188cc2019-01-07 10:46:33 -070010244 ret = sock_create_kern(&init_net, PF_UNIX, SOCK_RAW, IPPROTO_IP,
10245 &ctx->ring_sock);
10246 if (ret)
Pavel Begunkov9faadcc2020-12-21 18:34:05 +000010247 return ERR_PTR(ret);
Jens Axboe2b188cc2019-01-07 10:46:33 -070010248#endif
10249
Jens Axboe2b188cc2019-01-07 10:46:33 -070010250 file = anon_inode_getfile("[io_uring]", &io_uring_fops, ctx,
10251 O_RDWR | O_CLOEXEC);
Pavel Begunkov9faadcc2020-12-21 18:34:05 +000010252#if defined(CONFIG_UNIX)
Jens Axboe2b188cc2019-01-07 10:46:33 -070010253 if (IS_ERR(file)) {
Pavel Begunkov9faadcc2020-12-21 18:34:05 +000010254 sock_release(ctx->ring_sock);
10255 ctx->ring_sock = NULL;
10256 } else {
10257 ctx->ring_sock->file = file;
Jens Axboe2b188cc2019-01-07 10:46:33 -070010258 }
Jens Axboe2b188cc2019-01-07 10:46:33 -070010259#endif
Pavel Begunkov9faadcc2020-12-21 18:34:05 +000010260 return file;
Jens Axboe2b188cc2019-01-07 10:46:33 -070010261}
10262
Pavel Begunkovc0724812021-10-04 20:02:54 +010010263static __cold int io_uring_create(unsigned entries, struct io_uring_params *p,
10264 struct io_uring_params __user *params)
Jens Axboe2b188cc2019-01-07 10:46:33 -070010265{
Jens Axboe2b188cc2019-01-07 10:46:33 -070010266 struct io_ring_ctx *ctx;
Pavel Begunkov9faadcc2020-12-21 18:34:05 +000010267 struct file *file;
Jens Axboe2b188cc2019-01-07 10:46:33 -070010268 int ret;
10269
Jens Axboe8110c1a2019-12-28 15:39:54 -070010270 if (!entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -070010271 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -070010272 if (entries > IORING_MAX_ENTRIES) {
10273 if (!(p->flags & IORING_SETUP_CLAMP))
10274 return -EINVAL;
10275 entries = IORING_MAX_ENTRIES;
10276 }
Jens Axboe2b188cc2019-01-07 10:46:33 -070010277
10278 /*
10279 * Use twice as many entries for the CQ ring. It's possible for the
10280 * application to drive a higher depth than the size of the SQ ring,
10281 * since the sqes are only used at submission time. This allows for
Jens Axboe33a107f2019-10-04 12:10:03 -060010282 * some flexibility in overcommitting a bit. If the application has
10283 * set IORING_SETUP_CQSIZE, it will have passed in the desired number
10284 * of CQ ring entries manually.
Jens Axboe2b188cc2019-01-07 10:46:33 -070010285 */
10286 p->sq_entries = roundup_pow_of_two(entries);
Jens Axboe33a107f2019-10-04 12:10:03 -060010287 if (p->flags & IORING_SETUP_CQSIZE) {
10288 /*
10289 * If IORING_SETUP_CQSIZE is set, we do the same roundup
10290 * to a power-of-two, if it isn't already. We do NOT impose
10291 * any cq vs sq ring sizing.
10292 */
Joseph Qieb2667b32020-11-24 15:03:03 +080010293 if (!p->cq_entries)
Jens Axboe33a107f2019-10-04 12:10:03 -060010294 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -070010295 if (p->cq_entries > IORING_MAX_CQ_ENTRIES) {
10296 if (!(p->flags & IORING_SETUP_CLAMP))
10297 return -EINVAL;
10298 p->cq_entries = IORING_MAX_CQ_ENTRIES;
10299 }
Joseph Qieb2667b32020-11-24 15:03:03 +080010300 p->cq_entries = roundup_pow_of_two(p->cq_entries);
10301 if (p->cq_entries < p->sq_entries)
10302 return -EINVAL;
Jens Axboe33a107f2019-10-04 12:10:03 -060010303 } else {
10304 p->cq_entries = 2 * p->sq_entries;
10305 }
Jens Axboe2b188cc2019-01-07 10:46:33 -070010306
Jens Axboe2b188cc2019-01-07 10:46:33 -070010307 ctx = io_ring_ctx_alloc(p);
Jens Axboe62e398b2021-02-21 16:19:37 -070010308 if (!ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -070010309 return -ENOMEM;
Jens Axboe2b188cc2019-01-07 10:46:33 -070010310 ctx->compat = in_compat_syscall();
Jens Axboe62e398b2021-02-21 16:19:37 -070010311 if (!capable(CAP_IPC_LOCK))
10312 ctx->user = get_uid(current_user());
Jens Axboe2aede0e2020-09-14 10:45:53 -060010313
10314 /*
10315 * This is just grabbed for accounting purposes. When a process exits,
10316 * the mm is exited and dropped before the files, hence we need to hang
10317 * on to this mm purely for the purposes of being able to unaccount
10318 * memory (locked/pinned vm). It's not used for anything else.
10319 */
Jens Axboe6b7898e2020-08-25 07:58:00 -060010320 mmgrab(current->mm);
Jens Axboe2aede0e2020-09-14 10:45:53 -060010321 ctx->mm_account = current->mm;
Jens Axboe6b7898e2020-08-25 07:58:00 -060010322
Jens Axboe2b188cc2019-01-07 10:46:33 -070010323 ret = io_allocate_scq_urings(ctx, p);
10324 if (ret)
10325 goto err;
10326
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +020010327 ret = io_sq_offload_create(ctx, p);
Jens Axboe2b188cc2019-01-07 10:46:33 -070010328 if (ret)
10329 goto err;
Pavel Begunkoveae071c2021-04-25 14:32:24 +010010330 /* always set a rsrc node */
Pavel Begunkov47b228c2021-04-29 11:46:48 +010010331 ret = io_rsrc_node_switch_start(ctx);
10332 if (ret)
10333 goto err;
Pavel Begunkoveae071c2021-04-25 14:32:24 +010010334 io_rsrc_node_switch(ctx, NULL);
Jens Axboe2b188cc2019-01-07 10:46:33 -070010335
Jens Axboe2b188cc2019-01-07 10:46:33 -070010336 memset(&p->sq_off, 0, sizeof(p->sq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +000010337 p->sq_off.head = offsetof(struct io_rings, sq.head);
10338 p->sq_off.tail = offsetof(struct io_rings, sq.tail);
10339 p->sq_off.ring_mask = offsetof(struct io_rings, sq_ring_mask);
10340 p->sq_off.ring_entries = offsetof(struct io_rings, sq_ring_entries);
10341 p->sq_off.flags = offsetof(struct io_rings, sq_flags);
10342 p->sq_off.dropped = offsetof(struct io_rings, sq_dropped);
10343 p->sq_off.array = (char *)ctx->sq_array - (char *)ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -070010344
10345 memset(&p->cq_off, 0, sizeof(p->cq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +000010346 p->cq_off.head = offsetof(struct io_rings, cq.head);
10347 p->cq_off.tail = offsetof(struct io_rings, cq.tail);
10348 p->cq_off.ring_mask = offsetof(struct io_rings, cq_ring_mask);
10349 p->cq_off.ring_entries = offsetof(struct io_rings, cq_ring_entries);
10350 p->cq_off.overflow = offsetof(struct io_rings, cq_overflow);
10351 p->cq_off.cqes = offsetof(struct io_rings, cqes);
Stefano Garzarella0d9b5b32020-05-15 18:38:04 +020010352 p->cq_off.flags = offsetof(struct io_rings, cq_flags);
Jens Axboeac90f242019-09-06 10:26:21 -060010353
Xiaoguang Wang7f136572020-05-05 16:28:53 +080010354 p->features = IORING_FEAT_SINGLE_MMAP | IORING_FEAT_NODROP |
10355 IORING_FEAT_SUBMIT_STABLE | IORING_FEAT_RW_CUR_POS |
Jiufei Xue5769a352020-06-17 17:53:55 +080010356 IORING_FEAT_CUR_PERSONALITY | IORING_FEAT_FAST_POLL |
Hao Xuc73ebb62020-11-03 10:54:37 +080010357 IORING_FEAT_POLL_32BITS | IORING_FEAT_SQPOLL_NONFIXED |
Pavel Begunkov96905572021-06-10 16:37:38 +010010358 IORING_FEAT_EXT_ARG | IORING_FEAT_NATIVE_WORKERS |
10359 IORING_FEAT_RSRC_TAGS;
Xiaoguang Wang7f136572020-05-05 16:28:53 +080010360
10361 if (copy_to_user(params, p, sizeof(*p))) {
10362 ret = -EFAULT;
10363 goto err;
10364 }
Jens Axboed1719f72020-07-30 13:43:53 -060010365
Pavel Begunkov9faadcc2020-12-21 18:34:05 +000010366 file = io_uring_get_file(ctx);
10367 if (IS_ERR(file)) {
10368 ret = PTR_ERR(file);
10369 goto err;
10370 }
10371
Jens Axboed1719f72020-07-30 13:43:53 -060010372 /*
Jens Axboe044c1ab2019-10-28 09:15:33 -060010373 * Install ring fd as the very last thing, so we don't risk someone
10374 * having closed it before we finish setup
10375 */
Pavel Begunkov9faadcc2020-12-21 18:34:05 +000010376 ret = io_uring_install_fd(ctx, file);
10377 if (ret < 0) {
10378 /* fput will clean it up */
10379 fput(file);
10380 return ret;
10381 }
Jens Axboe044c1ab2019-10-28 09:15:33 -060010382
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +020010383 trace_io_uring_create(ret, ctx, p->sq_entries, p->cq_entries, p->flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -070010384 return ret;
10385err:
10386 io_ring_ctx_wait_and_kill(ctx);
10387 return ret;
10388}
10389
10390/*
10391 * Sets up an aio uring context, and returns the fd. Applications asks for a
10392 * ring size, we return the actual sq/cq ring sizes (among other things) in the
10393 * params structure passed in.
10394 */
10395static long io_uring_setup(u32 entries, struct io_uring_params __user *params)
10396{
10397 struct io_uring_params p;
Jens Axboe2b188cc2019-01-07 10:46:33 -070010398 int i;
10399
10400 if (copy_from_user(&p, params, sizeof(p)))
10401 return -EFAULT;
10402 for (i = 0; i < ARRAY_SIZE(p.resv); i++) {
10403 if (p.resv[i])
10404 return -EINVAL;
10405 }
10406
Jens Axboe6c271ce2019-01-10 11:22:30 -070010407 if (p.flags & ~(IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL |
Jens Axboe8110c1a2019-12-28 15:39:54 -070010408 IORING_SETUP_SQ_AFF | IORING_SETUP_CQSIZE |
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +020010409 IORING_SETUP_CLAMP | IORING_SETUP_ATTACH_WQ |
10410 IORING_SETUP_R_DISABLED))
Jens Axboe2b188cc2019-01-07 10:46:33 -070010411 return -EINVAL;
10412
Xiaoguang Wang7f136572020-05-05 16:28:53 +080010413 return io_uring_create(entries, &p, params);
Jens Axboe2b188cc2019-01-07 10:46:33 -070010414}
10415
10416SYSCALL_DEFINE2(io_uring_setup, u32, entries,
10417 struct io_uring_params __user *, params)
10418{
10419 return io_uring_setup(entries, params);
10420}
10421
Pavel Begunkovc0724812021-10-04 20:02:54 +010010422static __cold int io_probe(struct io_ring_ctx *ctx, void __user *arg,
10423 unsigned nr_args)
Jens Axboe66f4af92020-01-16 15:36:52 -070010424{
10425 struct io_uring_probe *p;
10426 size_t size;
10427 int i, ret;
10428
10429 size = struct_size(p, ops, nr_args);
10430 if (size == SIZE_MAX)
10431 return -EOVERFLOW;
10432 p = kzalloc(size, GFP_KERNEL);
10433 if (!p)
10434 return -ENOMEM;
10435
10436 ret = -EFAULT;
10437 if (copy_from_user(p, arg, size))
10438 goto out;
10439 ret = -EINVAL;
10440 if (memchr_inv(p, 0, size))
10441 goto out;
10442
10443 p->last_op = IORING_OP_LAST - 1;
10444 if (nr_args > IORING_OP_LAST)
10445 nr_args = IORING_OP_LAST;
10446
10447 for (i = 0; i < nr_args; i++) {
10448 p->ops[i].op = i;
10449 if (!io_op_defs[i].not_supported)
10450 p->ops[i].flags = IO_URING_OP_SUPPORTED;
10451 }
10452 p->ops_len = i;
10453
10454 ret = 0;
10455 if (copy_to_user(arg, p, size))
10456 ret = -EFAULT;
10457out:
10458 kfree(p);
10459 return ret;
10460}
10461
Jens Axboe071698e2020-01-28 10:04:42 -070010462static int io_register_personality(struct io_ring_ctx *ctx)
10463{
Jens Axboe4379bf82021-02-15 13:40:22 -070010464 const struct cred *creds;
Matthew Wilcox (Oracle)61cf9372021-03-08 14:16:16 +000010465 u32 id;
Jens Axboe1e6fa522020-10-15 08:46:24 -060010466 int ret;
Jens Axboe071698e2020-01-28 10:04:42 -070010467
Jens Axboe4379bf82021-02-15 13:40:22 -070010468 creds = get_current_cred();
Jens Axboe1e6fa522020-10-15 08:46:24 -060010469
Matthew Wilcox (Oracle)61cf9372021-03-08 14:16:16 +000010470 ret = xa_alloc_cyclic(&ctx->personalities, &id, (void *)creds,
10471 XA_LIMIT(0, USHRT_MAX), &ctx->pers_next, GFP_KERNEL);
Jens Axboea30f8952021-08-20 14:53:59 -060010472 if (ret < 0) {
10473 put_cred(creds);
10474 return ret;
10475 }
10476 return id;
Jens Axboe071698e2020-01-28 10:04:42 -070010477}
10478
Pavel Begunkovc0724812021-10-04 20:02:54 +010010479static __cold int io_register_restrictions(struct io_ring_ctx *ctx,
10480 void __user *arg, unsigned int nr_args)
Stefano Garzarella21b55db2020-08-27 16:58:30 +020010481{
10482 struct io_uring_restriction *res;
10483 size_t size;
10484 int i, ret;
10485
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +020010486 /* Restrictions allowed only if rings started disabled */
10487 if (!(ctx->flags & IORING_SETUP_R_DISABLED))
10488 return -EBADFD;
10489
Stefano Garzarella21b55db2020-08-27 16:58:30 +020010490 /* We allow only a single restrictions registration */
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +020010491 if (ctx->restrictions.registered)
Stefano Garzarella21b55db2020-08-27 16:58:30 +020010492 return -EBUSY;
10493
10494 if (!arg || nr_args > IORING_MAX_RESTRICTIONS)
10495 return -EINVAL;
10496
10497 size = array_size(nr_args, sizeof(*res));
10498 if (size == SIZE_MAX)
10499 return -EOVERFLOW;
10500
10501 res = memdup_user(arg, size);
10502 if (IS_ERR(res))
10503 return PTR_ERR(res);
10504
10505 ret = 0;
10506
10507 for (i = 0; i < nr_args; i++) {
10508 switch (res[i].opcode) {
10509 case IORING_RESTRICTION_REGISTER_OP:
10510 if (res[i].register_op >= IORING_REGISTER_LAST) {
10511 ret = -EINVAL;
10512 goto out;
10513 }
10514
10515 __set_bit(res[i].register_op,
10516 ctx->restrictions.register_op);
10517 break;
10518 case IORING_RESTRICTION_SQE_OP:
10519 if (res[i].sqe_op >= IORING_OP_LAST) {
10520 ret = -EINVAL;
10521 goto out;
10522 }
10523
10524 __set_bit(res[i].sqe_op, ctx->restrictions.sqe_op);
10525 break;
10526 case IORING_RESTRICTION_SQE_FLAGS_ALLOWED:
10527 ctx->restrictions.sqe_flags_allowed = res[i].sqe_flags;
10528 break;
10529 case IORING_RESTRICTION_SQE_FLAGS_REQUIRED:
10530 ctx->restrictions.sqe_flags_required = res[i].sqe_flags;
10531 break;
10532 default:
10533 ret = -EINVAL;
10534 goto out;
10535 }
10536 }
10537
10538out:
10539 /* Reset all restrictions if an error happened */
10540 if (ret != 0)
10541 memset(&ctx->restrictions, 0, sizeof(ctx->restrictions));
10542 else
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +020010543 ctx->restrictions.registered = true;
Stefano Garzarella21b55db2020-08-27 16:58:30 +020010544
10545 kfree(res);
10546 return ret;
10547}
10548
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +020010549static int io_register_enable_rings(struct io_ring_ctx *ctx)
10550{
10551 if (!(ctx->flags & IORING_SETUP_R_DISABLED))
10552 return -EBADFD;
10553
10554 if (ctx->restrictions.registered)
10555 ctx->restricted = 1;
10556
Pavel Begunkov0298ef92021-03-08 13:20:57 +000010557 ctx->flags &= ~IORING_SETUP_R_DISABLED;
10558 if (ctx->sq_data && wq_has_sleeper(&ctx->sq_data->wait))
10559 wake_up(&ctx->sq_data->wait);
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +020010560 return 0;
10561}
10562
Pavel Begunkovfdecb662021-04-25 14:32:20 +010010563static int __io_register_rsrc_update(struct io_ring_ctx *ctx, unsigned type,
Pavel Begunkovc3bdad02021-04-25 14:32:22 +010010564 struct io_uring_rsrc_update2 *up,
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +010010565 unsigned nr_args)
10566{
10567 __u32 tmp;
10568 int err;
10569
Pavel Begunkovc3bdad02021-04-25 14:32:22 +010010570 if (up->resv)
10571 return -EINVAL;
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +010010572 if (check_add_overflow(up->offset, nr_args, &tmp))
10573 return -EOVERFLOW;
10574 err = io_rsrc_node_switch_start(ctx);
10575 if (err)
10576 return err;
10577
Pavel Begunkovfdecb662021-04-25 14:32:20 +010010578 switch (type) {
10579 case IORING_RSRC_FILE:
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +010010580 return __io_sqe_files_update(ctx, up, nr_args);
Pavel Begunkov634d00d2021-04-25 14:32:26 +010010581 case IORING_RSRC_BUFFER:
10582 return __io_sqe_buffers_update(ctx, up, nr_args);
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +010010583 }
10584 return -EINVAL;
10585}
10586
Pavel Begunkovc3bdad02021-04-25 14:32:22 +010010587static int io_register_files_update(struct io_ring_ctx *ctx, void __user *arg,
10588 unsigned nr_args)
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +010010589{
Pavel Begunkovc3bdad02021-04-25 14:32:22 +010010590 struct io_uring_rsrc_update2 up;
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +010010591
10592 if (!nr_args)
10593 return -EINVAL;
Pavel Begunkovc3bdad02021-04-25 14:32:22 +010010594 memset(&up, 0, sizeof(up));
10595 if (copy_from_user(&up, arg, sizeof(struct io_uring_rsrc_update)))
10596 return -EFAULT;
10597 return __io_register_rsrc_update(ctx, IORING_RSRC_FILE, &up, nr_args);
10598}
10599
10600static int io_register_rsrc_update(struct io_ring_ctx *ctx, void __user *arg,
Pavel Begunkov992da012021-06-10 16:37:37 +010010601 unsigned size, unsigned type)
Pavel Begunkovc3bdad02021-04-25 14:32:22 +010010602{
10603 struct io_uring_rsrc_update2 up;
10604
10605 if (size != sizeof(up))
10606 return -EINVAL;
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +010010607 if (copy_from_user(&up, arg, sizeof(up)))
10608 return -EFAULT;
Pavel Begunkov992da012021-06-10 16:37:37 +010010609 if (!up.nr || up.resv)
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +010010610 return -EINVAL;
Pavel Begunkov992da012021-06-10 16:37:37 +010010611 return __io_register_rsrc_update(ctx, type, &up, up.nr);
Pavel Begunkov98f0b3b2021-04-25 14:32:19 +010010612}
10613
Pavel Begunkovc0724812021-10-04 20:02:54 +010010614static __cold int io_register_rsrc(struct io_ring_ctx *ctx, void __user *arg,
Pavel Begunkov992da012021-06-10 16:37:37 +010010615 unsigned int size, unsigned int type)
Pavel Begunkov792e3582021-04-25 14:32:21 +010010616{
10617 struct io_uring_rsrc_register rr;
10618
10619 /* keep it extendible */
10620 if (size != sizeof(rr))
10621 return -EINVAL;
10622
10623 memset(&rr, 0, sizeof(rr));
10624 if (copy_from_user(&rr, arg, size))
10625 return -EFAULT;
Pavel Begunkov992da012021-06-10 16:37:37 +010010626 if (!rr.nr || rr.resv || rr.resv2)
Pavel Begunkov792e3582021-04-25 14:32:21 +010010627 return -EINVAL;
10628
Pavel Begunkov992da012021-06-10 16:37:37 +010010629 switch (type) {
Pavel Begunkov792e3582021-04-25 14:32:21 +010010630 case IORING_RSRC_FILE:
10631 return io_sqe_files_register(ctx, u64_to_user_ptr(rr.data),
10632 rr.nr, u64_to_user_ptr(rr.tags));
Pavel Begunkov634d00d2021-04-25 14:32:26 +010010633 case IORING_RSRC_BUFFER:
10634 return io_sqe_buffers_register(ctx, u64_to_user_ptr(rr.data),
10635 rr.nr, u64_to_user_ptr(rr.tags));
Pavel Begunkov792e3582021-04-25 14:32:21 +010010636 }
10637 return -EINVAL;
10638}
10639
Pavel Begunkovc0724812021-10-04 20:02:54 +010010640static __cold int io_register_iowq_aff(struct io_ring_ctx *ctx,
10641 void __user *arg, unsigned len)
Jens Axboefe764212021-06-17 10:19:54 -060010642{
10643 struct io_uring_task *tctx = current->io_uring;
10644 cpumask_var_t new_mask;
10645 int ret;
10646
10647 if (!tctx || !tctx->io_wq)
10648 return -EINVAL;
10649
10650 if (!alloc_cpumask_var(&new_mask, GFP_KERNEL))
10651 return -ENOMEM;
10652
10653 cpumask_clear(new_mask);
10654 if (len > cpumask_size())
10655 len = cpumask_size();
10656
10657 if (copy_from_user(new_mask, arg, len)) {
10658 free_cpumask_var(new_mask);
10659 return -EFAULT;
10660 }
10661
10662 ret = io_wq_cpu_affinity(tctx->io_wq, new_mask);
10663 free_cpumask_var(new_mask);
10664 return ret;
10665}
10666
Pavel Begunkovc0724812021-10-04 20:02:54 +010010667static __cold int io_unregister_iowq_aff(struct io_ring_ctx *ctx)
Jens Axboefe764212021-06-17 10:19:54 -060010668{
10669 struct io_uring_task *tctx = current->io_uring;
10670
10671 if (!tctx || !tctx->io_wq)
10672 return -EINVAL;
10673
10674 return io_wq_cpu_affinity(tctx->io_wq, NULL);
10675}
10676
Pavel Begunkovc0724812021-10-04 20:02:54 +010010677static __cold int io_register_iowq_max_workers(struct io_ring_ctx *ctx,
10678 void __user *arg)
Jens Axboe2e480052021-08-27 11:33:19 -060010679{
Jens Axboefa846932021-09-01 14:15:59 -060010680 struct io_uring_task *tctx = NULL;
10681 struct io_sq_data *sqd = NULL;
Jens Axboe2e480052021-08-27 11:33:19 -060010682 __u32 new_count[2];
10683 int i, ret;
10684
Jens Axboe2e480052021-08-27 11:33:19 -060010685 if (copy_from_user(new_count, arg, sizeof(new_count)))
10686 return -EFAULT;
10687 for (i = 0; i < ARRAY_SIZE(new_count); i++)
10688 if (new_count[i] > INT_MAX)
10689 return -EINVAL;
10690
Jens Axboefa846932021-09-01 14:15:59 -060010691 if (ctx->flags & IORING_SETUP_SQPOLL) {
10692 sqd = ctx->sq_data;
10693 if (sqd) {
Jens Axboe009ad9f2021-09-08 19:07:26 -060010694 /*
10695 * Observe the correct sqd->lock -> ctx->uring_lock
10696 * ordering. Fine to drop uring_lock here, we hold
10697 * a ref to the ctx.
10698 */
Jens Axboe41d3a6b2021-09-13 13:08:51 -060010699 refcount_inc(&sqd->refs);
Jens Axboe009ad9f2021-09-08 19:07:26 -060010700 mutex_unlock(&ctx->uring_lock);
Jens Axboefa846932021-09-01 14:15:59 -060010701 mutex_lock(&sqd->lock);
Jens Axboe009ad9f2021-09-08 19:07:26 -060010702 mutex_lock(&ctx->uring_lock);
Jens Axboe41d3a6b2021-09-13 13:08:51 -060010703 if (sqd->thread)
10704 tctx = sqd->thread->io_uring;
Jens Axboefa846932021-09-01 14:15:59 -060010705 }
10706 } else {
10707 tctx = current->io_uring;
10708 }
10709
10710 ret = -EINVAL;
10711 if (!tctx || !tctx->io_wq)
10712 goto err;
10713
Jens Axboe2e480052021-08-27 11:33:19 -060010714 ret = io_wq_max_workers(tctx->io_wq, new_count);
10715 if (ret)
Jens Axboefa846932021-09-01 14:15:59 -060010716 goto err;
10717
Jens Axboe41d3a6b2021-09-13 13:08:51 -060010718 if (sqd) {
Jens Axboefa846932021-09-01 14:15:59 -060010719 mutex_unlock(&sqd->lock);
Jens Axboe41d3a6b2021-09-13 13:08:51 -060010720 io_put_sq_data(sqd);
10721 }
Jens Axboe2e480052021-08-27 11:33:19 -060010722
10723 if (copy_to_user(arg, new_count, sizeof(new_count)))
10724 return -EFAULT;
10725
10726 return 0;
Jens Axboefa846932021-09-01 14:15:59 -060010727err:
Jens Axboe41d3a6b2021-09-13 13:08:51 -060010728 if (sqd) {
Jens Axboefa846932021-09-01 14:15:59 -060010729 mutex_unlock(&sqd->lock);
Jens Axboe41d3a6b2021-09-13 13:08:51 -060010730 io_put_sq_data(sqd);
10731 }
Jens Axboefa846932021-09-01 14:15:59 -060010732 return ret;
Jens Axboe2e480052021-08-27 11:33:19 -060010733}
10734
Jens Axboe071698e2020-01-28 10:04:42 -070010735static bool io_register_op_must_quiesce(int op)
10736{
10737 switch (op) {
Bijan Mottahedehbd54b6f2021-04-25 14:32:25 +010010738 case IORING_REGISTER_BUFFERS:
10739 case IORING_UNREGISTER_BUFFERS:
Pavel Begunkovf4f7d212021-04-01 15:44:02 +010010740 case IORING_REGISTER_FILES:
Jens Axboe071698e2020-01-28 10:04:42 -070010741 case IORING_UNREGISTER_FILES:
10742 case IORING_REGISTER_FILES_UPDATE:
10743 case IORING_REGISTER_PROBE:
10744 case IORING_REGISTER_PERSONALITY:
10745 case IORING_UNREGISTER_PERSONALITY:
Pavel Begunkov992da012021-06-10 16:37:37 +010010746 case IORING_REGISTER_FILES2:
10747 case IORING_REGISTER_FILES_UPDATE2:
10748 case IORING_REGISTER_BUFFERS2:
10749 case IORING_REGISTER_BUFFERS_UPDATE:
Jens Axboefe764212021-06-17 10:19:54 -060010750 case IORING_REGISTER_IOWQ_AFF:
10751 case IORING_UNREGISTER_IOWQ_AFF:
Jens Axboe2e480052021-08-27 11:33:19 -060010752 case IORING_REGISTER_IOWQ_MAX_WORKERS:
Jens Axboe071698e2020-01-28 10:04:42 -070010753 return false;
10754 default:
10755 return true;
10756 }
10757}
10758
Pavel Begunkovc0724812021-10-04 20:02:54 +010010759static __cold int io_ctx_quiesce(struct io_ring_ctx *ctx)
Pavel Begunkove73c5c72021-08-09 13:04:12 +010010760{
10761 long ret;
10762
10763 percpu_ref_kill(&ctx->refs);
10764
10765 /*
10766 * Drop uring mutex before waiting for references to exit. If another
10767 * thread is currently inside io_uring_enter() it might need to grab the
10768 * uring_lock to make progress. If we hold it here across the drain
10769 * wait, then we can deadlock. It's safe to drop the mutex here, since
10770 * no new references will come in after we've killed the percpu ref.
10771 */
10772 mutex_unlock(&ctx->uring_lock);
10773 do {
Pavel Begunkov37f0e762021-10-04 20:02:53 +010010774 ret = wait_for_completion_interruptible_timeout(&ctx->ref_comp, HZ);
10775 if (ret) {
10776 ret = min(0L, ret);
Pavel Begunkove73c5c72021-08-09 13:04:12 +010010777 break;
Pavel Begunkov37f0e762021-10-04 20:02:53 +010010778 }
10779
Pavel Begunkove73c5c72021-08-09 13:04:12 +010010780 ret = io_run_task_work_sig();
Pavel Begunkov37f0e762021-10-04 20:02:53 +010010781 io_req_caches_free(ctx);
Pavel Begunkove73c5c72021-08-09 13:04:12 +010010782 } while (ret >= 0);
10783 mutex_lock(&ctx->uring_lock);
10784
10785 if (ret)
10786 io_refs_resurrect(&ctx->refs, &ctx->ref_comp);
10787 return ret;
10788}
10789
Jens Axboeedafcce2019-01-09 09:16:05 -070010790static int __io_uring_register(struct io_ring_ctx *ctx, unsigned opcode,
10791 void __user *arg, unsigned nr_args)
Jens Axboeb19062a2019-04-15 10:49:38 -060010792 __releases(ctx->uring_lock)
10793 __acquires(ctx->uring_lock)
Jens Axboeedafcce2019-01-09 09:16:05 -070010794{
10795 int ret;
10796
Jens Axboe35fa71a2019-04-22 10:23:23 -060010797 /*
10798 * We're inside the ring mutex, if the ref is already dying, then
10799 * someone else killed the ctx or is already going through
10800 * io_uring_register().
10801 */
10802 if (percpu_ref_is_dying(&ctx->refs))
10803 return -ENXIO;
10804
Pavel Begunkov75c40212021-04-15 13:07:40 +010010805 if (ctx->restricted) {
10806 if (opcode >= IORING_REGISTER_LAST)
10807 return -EINVAL;
10808 opcode = array_index_nospec(opcode, IORING_REGISTER_LAST);
10809 if (!test_bit(opcode, ctx->restrictions.register_op))
10810 return -EACCES;
10811 }
10812
Jens Axboe071698e2020-01-28 10:04:42 -070010813 if (io_register_op_must_quiesce(opcode)) {
Pavel Begunkove73c5c72021-08-09 13:04:12 +010010814 ret = io_ctx_quiesce(ctx);
10815 if (ret)
Pavel Begunkovf70865d2021-04-11 01:46:40 +010010816 return ret;
Jens Axboe05f3fb32019-12-09 11:22:50 -070010817 }
Jens Axboeedafcce2019-01-09 09:16:05 -070010818
10819 switch (opcode) {
10820 case IORING_REGISTER_BUFFERS:
Pavel Begunkov634d00d2021-04-25 14:32:26 +010010821 ret = io_sqe_buffers_register(ctx, arg, nr_args, NULL);
Jens Axboeedafcce2019-01-09 09:16:05 -070010822 break;
10823 case IORING_UNREGISTER_BUFFERS:
10824 ret = -EINVAL;
10825 if (arg || nr_args)
10826 break;
Bijan Mottahedeh0a96bbe2021-01-06 12:39:10 -080010827 ret = io_sqe_buffers_unregister(ctx);
Jens Axboeedafcce2019-01-09 09:16:05 -070010828 break;
Jens Axboe6b063142019-01-10 22:13:58 -070010829 case IORING_REGISTER_FILES:
Pavel Begunkov792e3582021-04-25 14:32:21 +010010830 ret = io_sqe_files_register(ctx, arg, nr_args, NULL);
Jens Axboe6b063142019-01-10 22:13:58 -070010831 break;
10832 case IORING_UNREGISTER_FILES:
10833 ret = -EINVAL;
10834 if (arg || nr_args)
10835 break;
10836 ret = io_sqe_files_unregister(ctx);
10837 break;
Jens Axboec3a31e62019-10-03 13:59:56 -060010838 case IORING_REGISTER_FILES_UPDATE:
Pavel Begunkovc3bdad02021-04-25 14:32:22 +010010839 ret = io_register_files_update(ctx, arg, nr_args);
Jens Axboec3a31e62019-10-03 13:59:56 -060010840 break;
Jens Axboe9b402842019-04-11 11:45:41 -060010841 case IORING_REGISTER_EVENTFD:
Jens Axboef2842ab2020-01-08 11:04:00 -070010842 case IORING_REGISTER_EVENTFD_ASYNC:
Jens Axboe9b402842019-04-11 11:45:41 -060010843 ret = -EINVAL;
10844 if (nr_args != 1)
10845 break;
10846 ret = io_eventfd_register(ctx, arg);
Jens Axboef2842ab2020-01-08 11:04:00 -070010847 if (ret)
10848 break;
10849 if (opcode == IORING_REGISTER_EVENTFD_ASYNC)
10850 ctx->eventfd_async = 1;
10851 else
10852 ctx->eventfd_async = 0;
Jens Axboe9b402842019-04-11 11:45:41 -060010853 break;
10854 case IORING_UNREGISTER_EVENTFD:
10855 ret = -EINVAL;
10856 if (arg || nr_args)
10857 break;
10858 ret = io_eventfd_unregister(ctx);
10859 break;
Jens Axboe66f4af92020-01-16 15:36:52 -070010860 case IORING_REGISTER_PROBE:
10861 ret = -EINVAL;
10862 if (!arg || nr_args > 256)
10863 break;
10864 ret = io_probe(ctx, arg, nr_args);
10865 break;
Jens Axboe071698e2020-01-28 10:04:42 -070010866 case IORING_REGISTER_PERSONALITY:
10867 ret = -EINVAL;
10868 if (arg || nr_args)
10869 break;
10870 ret = io_register_personality(ctx);
10871 break;
10872 case IORING_UNREGISTER_PERSONALITY:
10873 ret = -EINVAL;
10874 if (arg)
10875 break;
10876 ret = io_unregister_personality(ctx, nr_args);
10877 break;
Stefano Garzarella7e84e1c2020-08-27 16:58:31 +020010878 case IORING_REGISTER_ENABLE_RINGS:
10879 ret = -EINVAL;
10880 if (arg || nr_args)
10881 break;
10882 ret = io_register_enable_rings(ctx);
10883 break;
Stefano Garzarella21b55db2020-08-27 16:58:30 +020010884 case IORING_REGISTER_RESTRICTIONS:
10885 ret = io_register_restrictions(ctx, arg, nr_args);
10886 break;
Pavel Begunkov992da012021-06-10 16:37:37 +010010887 case IORING_REGISTER_FILES2:
10888 ret = io_register_rsrc(ctx, arg, nr_args, IORING_RSRC_FILE);
Pavel Begunkov792e3582021-04-25 14:32:21 +010010889 break;
Pavel Begunkov992da012021-06-10 16:37:37 +010010890 case IORING_REGISTER_FILES_UPDATE2:
10891 ret = io_register_rsrc_update(ctx, arg, nr_args,
10892 IORING_RSRC_FILE);
10893 break;
10894 case IORING_REGISTER_BUFFERS2:
10895 ret = io_register_rsrc(ctx, arg, nr_args, IORING_RSRC_BUFFER);
10896 break;
10897 case IORING_REGISTER_BUFFERS_UPDATE:
10898 ret = io_register_rsrc_update(ctx, arg, nr_args,
10899 IORING_RSRC_BUFFER);
Pavel Begunkovc3bdad02021-04-25 14:32:22 +010010900 break;
Jens Axboefe764212021-06-17 10:19:54 -060010901 case IORING_REGISTER_IOWQ_AFF:
10902 ret = -EINVAL;
10903 if (!arg || !nr_args)
10904 break;
10905 ret = io_register_iowq_aff(ctx, arg, nr_args);
10906 break;
10907 case IORING_UNREGISTER_IOWQ_AFF:
10908 ret = -EINVAL;
10909 if (arg || nr_args)
10910 break;
10911 ret = io_unregister_iowq_aff(ctx);
10912 break;
Jens Axboe2e480052021-08-27 11:33:19 -060010913 case IORING_REGISTER_IOWQ_MAX_WORKERS:
10914 ret = -EINVAL;
10915 if (!arg || nr_args != 2)
10916 break;
10917 ret = io_register_iowq_max_workers(ctx, arg);
10918 break;
Jens Axboeedafcce2019-01-09 09:16:05 -070010919 default:
10920 ret = -EINVAL;
10921 break;
10922 }
10923
Jens Axboe071698e2020-01-28 10:04:42 -070010924 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -070010925 /* bring the ctx back to life */
Jens Axboe05f3fb32019-12-09 11:22:50 -070010926 percpu_ref_reinit(&ctx->refs);
Jens Axboe0f158b42020-05-14 17:18:39 -060010927 reinit_completion(&ctx->ref_comp);
Jens Axboe05f3fb32019-12-09 11:22:50 -070010928 }
Jens Axboeedafcce2019-01-09 09:16:05 -070010929 return ret;
10930}
10931
10932SYSCALL_DEFINE4(io_uring_register, unsigned int, fd, unsigned int, opcode,
10933 void __user *, arg, unsigned int, nr_args)
10934{
10935 struct io_ring_ctx *ctx;
10936 long ret = -EBADF;
10937 struct fd f;
10938
10939 f = fdget(fd);
10940 if (!f.file)
10941 return -EBADF;
10942
10943 ret = -EOPNOTSUPP;
10944 if (f.file->f_op != &io_uring_fops)
10945 goto out_fput;
10946
10947 ctx = f.file->private_data;
10948
Pavel Begunkovb6c23dd2021-02-20 15:17:18 +000010949 io_run_task_work();
10950
Jens Axboeedafcce2019-01-09 09:16:05 -070010951 mutex_lock(&ctx->uring_lock);
10952 ret = __io_uring_register(ctx, opcode, arg, nr_args);
10953 mutex_unlock(&ctx->uring_lock);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +020010954 trace_io_uring_register(ctx, opcode, ctx->nr_user_files, ctx->nr_user_bufs,
10955 ctx->cq_ev_fd != NULL, ret);
Jens Axboeedafcce2019-01-09 09:16:05 -070010956out_fput:
10957 fdput(f);
10958 return ret;
10959}
10960
Jens Axboe2b188cc2019-01-07 10:46:33 -070010961static int __init io_uring_init(void)
10962{
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +010010963#define __BUILD_BUG_VERIFY_ELEMENT(stype, eoffset, etype, ename) do { \
10964 BUILD_BUG_ON(offsetof(stype, ename) != eoffset); \
10965 BUILD_BUG_ON(sizeof(etype) != sizeof_field(stype, ename)); \
10966} while (0)
10967
10968#define BUILD_BUG_SQE_ELEM(eoffset, etype, ename) \
10969 __BUILD_BUG_VERIFY_ELEMENT(struct io_uring_sqe, eoffset, etype, ename)
10970 BUILD_BUG_ON(sizeof(struct io_uring_sqe) != 64);
10971 BUILD_BUG_SQE_ELEM(0, __u8, opcode);
10972 BUILD_BUG_SQE_ELEM(1, __u8, flags);
10973 BUILD_BUG_SQE_ELEM(2, __u16, ioprio);
10974 BUILD_BUG_SQE_ELEM(4, __s32, fd);
10975 BUILD_BUG_SQE_ELEM(8, __u64, off);
10976 BUILD_BUG_SQE_ELEM(8, __u64, addr2);
10977 BUILD_BUG_SQE_ELEM(16, __u64, addr);
Pavel Begunkov7d67af22020-02-24 11:32:45 +030010978 BUILD_BUG_SQE_ELEM(16, __u64, splice_off_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +010010979 BUILD_BUG_SQE_ELEM(24, __u32, len);
10980 BUILD_BUG_SQE_ELEM(28, __kernel_rwf_t, rw_flags);
10981 BUILD_BUG_SQE_ELEM(28, /* compat */ int, rw_flags);
10982 BUILD_BUG_SQE_ELEM(28, /* compat */ __u32, rw_flags);
10983 BUILD_BUG_SQE_ELEM(28, __u32, fsync_flags);
Jiufei Xue5769a352020-06-17 17:53:55 +080010984 BUILD_BUG_SQE_ELEM(28, /* compat */ __u16, poll_events);
10985 BUILD_BUG_SQE_ELEM(28, __u32, poll32_events);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +010010986 BUILD_BUG_SQE_ELEM(28, __u32, sync_range_flags);
10987 BUILD_BUG_SQE_ELEM(28, __u32, msg_flags);
10988 BUILD_BUG_SQE_ELEM(28, __u32, timeout_flags);
10989 BUILD_BUG_SQE_ELEM(28, __u32, accept_flags);
10990 BUILD_BUG_SQE_ELEM(28, __u32, cancel_flags);
10991 BUILD_BUG_SQE_ELEM(28, __u32, open_flags);
10992 BUILD_BUG_SQE_ELEM(28, __u32, statx_flags);
10993 BUILD_BUG_SQE_ELEM(28, __u32, fadvise_advice);
Pavel Begunkov7d67af22020-02-24 11:32:45 +030010994 BUILD_BUG_SQE_ELEM(28, __u32, splice_flags);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +010010995 BUILD_BUG_SQE_ELEM(32, __u64, user_data);
10996 BUILD_BUG_SQE_ELEM(40, __u16, buf_index);
Pavel Begunkov16340ea2021-06-24 15:09:58 +010010997 BUILD_BUG_SQE_ELEM(40, __u16, buf_group);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +010010998 BUILD_BUG_SQE_ELEM(42, __u16, personality);
Pavel Begunkov7d67af22020-02-24 11:32:45 +030010999 BUILD_BUG_SQE_ELEM(44, __s32, splice_fd_in);
Pavel Begunkovb9445592021-08-25 12:25:45 +010011000 BUILD_BUG_SQE_ELEM(44, __u32, file_index);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +010011001
Pavel Begunkovb0d658ec2021-04-27 16:13:53 +010011002 BUILD_BUG_ON(sizeof(struct io_uring_files_update) !=
11003 sizeof(struct io_uring_rsrc_update));
11004 BUILD_BUG_ON(sizeof(struct io_uring_rsrc_update) >
11005 sizeof(struct io_uring_rsrc_update2));
Pavel Begunkov90499ad2021-08-25 20:51:40 +010011006
11007 /* ->buf_index is u16 */
11008 BUILD_BUG_ON(IORING_MAX_REG_BUFFERS >= (1u << 16));
11009
Pavel Begunkovb0d658ec2021-04-27 16:13:53 +010011010 /* should fit into one byte */
11011 BUILD_BUG_ON(SQE_VALID_FLAGS >= (1 << 8));
Pavel Begunkov68fe2562021-09-15 12:03:38 +010011012 BUILD_BUG_ON(SQE_COMMON_FLAGS >= (1 << 8));
11013 BUILD_BUG_ON((SQE_VALID_FLAGS | SQE_COMMON_FLAGS) != SQE_VALID_FLAGS);
Pavel Begunkovb0d658ec2021-04-27 16:13:53 +010011014
Jens Axboed3656342019-12-18 09:50:26 -070011015 BUILD_BUG_ON(ARRAY_SIZE(io_op_defs) != IORING_OP_LAST);
Hao Xu32c2d332021-09-07 11:22:43 +080011016 BUILD_BUG_ON(__REQ_F_LAST_BIT > 8 * sizeof(int));
Pavel Begunkov16340ea2021-06-24 15:09:58 +010011017
Jens Axboe91f245d2021-02-09 13:48:50 -070011018 req_cachep = KMEM_CACHE(io_kiocb, SLAB_HWCACHE_ALIGN | SLAB_PANIC |
11019 SLAB_ACCOUNT);
Jens Axboe2b188cc2019-01-07 10:46:33 -070011020 return 0;
11021};
11022__initcall(io_uring_init);