Merge tag 'erofs-for-6.10-rc7-fixes' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-2.6-block.git] / io_uring / io_uring.c
CommitLineData
2b188cc1
JA
1// 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
1e84b97b
SB
7 * 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
d068b506 14 * through a control-dependency in io_get_cqe (smp_store_release to
1e84b97b
SB
15 * store head will do). Failure to do so could lead to reading invalid
16 * CQ entries.
17 *
18 * Likewise, the application must use an appropriate smp_wmb() before
19 * writing the SQ tail (ordering SQ entry stores with the tail store),
20 * which pairs with smp_load_acquire in io_get_sqring (smp_store_release
21 * to store the tail will do). And it needs a barrier ordering the SQ
22 * head load before writing new SQ entries (smp_load_acquire to read
23 * head will do).
24 *
25 * When using the SQ poll thread (IORING_SETUP_SQPOLL), the application
26 * needs to check the SQ flags for IORING_SQ_NEED_WAKEUP *after*
27 * updating the SQ tail; a full memory barrier smp_mb() is needed
28 * between.
2b188cc1
JA
29 *
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
c992fe29 40 * Copyright (c) 2018-2019 Christoph Hellwig
2b188cc1
JA
41 */
42#include <linux/kernel.h>
43#include <linux/init.h>
44#include <linux/errno.h>
45#include <linux/syscalls.h>
52de1fe1 46#include <net/compat.h>
2b188cc1
JA
47#include <linux/refcount.h>
48#include <linux/uio.h>
6b47ee6e 49#include <linux/bits.h>
2b188cc1
JA
50
51#include <linux/sched/signal.h>
52#include <linux/fs.h>
53#include <linux/file.h>
54#include <linux/fdtable.h>
55#include <linux/mm.h>
56#include <linux/mman.h>
2b188cc1
JA
57#include <linux/percpu.h>
58#include <linux/slab.h>
edafccee 59#include <linux/bvec.h>
2b188cc1
JA
60#include <linux/net.h>
61#include <net/sock.h>
2b188cc1
JA
62#include <linux/anon_inodes.h>
63#include <linux/sched/mm.h>
64#include <linux/uaccess.h>
65#include <linux/nospec.h>
15b71abe 66#include <linux/fsnotify.h>
4840e418 67#include <linux/fadvise.h>
b41e9852 68#include <linux/task_work.h>
0f212204 69#include <linux/io_uring.h>
b66509b8 70#include <linux/io_uring/cmd.h>
5bd2182d 71#include <linux/audit.h>
cdc1404a 72#include <linux/security.h>
d808459b 73#include <asm/shmparam.h>
2b188cc1 74
c826bd7a
DD
75#define CREATE_TRACE_POINTS
76#include <trace/events/io_uring.h>
77
2b188cc1
JA
78#include <uapi/linux/io_uring.h>
79
561fb04a 80#include "io-wq.h"
2b188cc1 81
de23077e 82#include "io_uring.h"
329061d3 83#include "opdef.h"
e418bbc9 84#include "refs.h"
c9f06aa7 85#include "tctx.h"
c4320315 86#include "register.h"
17437f31 87#include "sqpoll.h"
a4ad4f74 88#include "fdinfo.h"
3b77495a 89#include "kbuf.h"
73572984 90#include "rsrc.h"
38513c46 91#include "cancel.h"
43e0bbbd 92#include "net.h"
eb42cebb 93#include "notif.h"
f31ecf67 94#include "waitid.h"
194bb58c 95#include "futex.h"
8d0c12a8 96#include "napi.h"
da12d9ab 97#include "uring_cmd.h"
f15ed8b4 98#include "memmap.h"
e27f928e 99
59915143 100#include "timeout.h"
329061d3 101#include "poll.h"
c92fcfc2 102#include "rw.h"
9b797a37 103#include "alloc_cache.h"
5e2a18d9 104
5277deaa 105#define IORING_MAX_ENTRIES 32768
33a107f0 106#define IORING_MAX_CQ_ENTRIES (2 * IORING_MAX_ENTRIES)
65e19f54 107
68fe256a
PB
108#define SQE_COMMON_FLAGS (IOSQE_FIXED_FILE | IOSQE_IO_LINK | \
109 IOSQE_IO_HARDLINK | IOSQE_ASYNC)
110
5562a8d7
PB
111#define SQE_VALID_FLAGS (SQE_COMMON_FLAGS | IOSQE_BUFFER_SELECT | \
112 IOSQE_IO_DRAIN | IOSQE_CQE_SKIP_SUCCESS)
68fe256a 113
c854357b 114#define IO_REQ_CLEAN_FLAGS (REQ_F_BUFFER_SELECTED | REQ_F_NEED_CLEANUP | \
9cae36a0
JA
115 REQ_F_POLLED | REQ_F_INFLIGHT | REQ_F_CREDS | \
116 REQ_F_ASYNC_DATA)
b16fed66 117
a538be5b
PB
118#define IO_REQ_CLEAN_SLOW_FLAGS (REQ_F_REFCOUNT | REQ_F_LINK | REQ_F_HARDLINK |\
119 IO_REQ_CLEAN_FLAGS)
120
09899b19
PB
121#define IO_TCTX_REFS_CACHE_NR (1U << 10)
122
6dd0be1e 123#define IO_COMPL_BATCH 32
bf019da7 124#define IO_REQ_ALLOC_BATCH 8
258b29a9 125
27dc8338
PB
126struct io_defer_entry {
127 struct list_head list;
128 struct io_kiocb *req;
9cf7c104 129 u32 seq;
2b188cc1
JA
130};
131
0756a869
PB
132/* requests with any of those set should undergo io_disarm_next() */
133#define IO_DISARM_MASK (REQ_F_ARM_LTIMEOUT | REQ_F_LINK_TIMEOUT | REQ_F_FAIL)
da1a08c5 134#define IO_REQ_LINK_FLAGS (REQ_F_LINK | REQ_F_HARDLINK)
0756a869 135
b4bc35cf
PB
136/*
137 * No waiters. It's larger than any valid value of the tw counter
138 * so that tests against ->cq_wait_nr would fail and skip wake_up().
139 */
140#define IO_CQ_WAKE_INIT (-1U)
141/* Forced wake up if there is a waiter regardless of ->cq_wait_nr */
142#define IO_CQ_WAKE_FORCE (IO_CQ_WAKE_INIT >> 1)
143
affa87db 144static bool io_uring_try_cancel_requests(struct io_ring_ctx *ctx,
9936c7c2 145 struct task_struct *task,
3dd0c97a 146 bool cancel_all);
1ffc5422 147
cbc2e203 148static void io_queue_sqe(struct io_kiocb *req);
de0617e4 149
c1755c25 150struct kmem_cache *req_cachep;
73eaa2b5 151static struct workqueue_struct *iou_wq __ro_after_init;
2b188cc1 152
76d3ccec
MR
153static int __read_mostly sysctl_io_uring_disabled;
154static int __read_mostly sysctl_io_uring_group = -1;
155
156#ifdef CONFIG_SYSCTL
157static struct ctl_table kernel_io_uring_disabled_table[] = {
158 {
159 .procname = "io_uring_disabled",
160 .data = &sysctl_io_uring_disabled,
161 .maxlen = sizeof(sysctl_io_uring_disabled),
162 .mode = 0644,
163 .proc_handler = proc_dointvec_minmax,
164 .extra1 = SYSCTL_ZERO,
165 .extra2 = SYSCTL_TWO,
166 },
167 {
168 .procname = "io_uring_group",
169 .data = &sysctl_io_uring_group,
170 .maxlen = sizeof(gid_t),
171 .mode = 0644,
172 .proc_handler = proc_dointvec,
173 },
76d3ccec
MR
174};
175#endif
176
faf88dde
PB
177static inline unsigned int __io_cqring_events(struct io_ring_ctx *ctx)
178{
179 return ctx->cached_cq_tail - READ_ONCE(ctx->rings->cq.head);
180}
181
0fc8c2ac
DY
182static inline unsigned int __io_cqring_events_user(struct io_ring_ctx *ctx)
183{
184 return READ_ONCE(ctx->rings->cq.tail) - READ_ONCE(ctx->rings->cq.head);
185}
186
9cae36a0
JA
187static bool io_match_linked(struct io_kiocb *head)
188{
189 struct io_kiocb *req;
190
191 io_for_each_link(req, head) {
192 if (req->flags & REQ_F_INFLIGHT)
193 return true;
194 }
195 return false;
6af3f48b
PB
196}
197
198/*
199 * As io_match_task() but protected against racing with linked timeouts.
200 * User must not hold timeout_lock.
201 */
329061d3
JA
202bool io_match_task_safe(struct io_kiocb *head, struct task_struct *task,
203 bool cancel_all)
6af3f48b 204{
9cae36a0
JA
205 bool matched;
206
6af3f48b
PB
207 if (task && head->task != task)
208 return false;
9cae36a0
JA
209 if (cancel_all)
210 return true;
211
212 if (head->flags & REQ_F_LINK_TIMEOUT) {
213 struct io_ring_ctx *ctx = head->ctx;
214
215 /* protect against races with linked timeouts */
216 spin_lock_irq(&ctx->timeout_lock);
217 matched = io_match_linked(head);
218 spin_unlock_irq(&ctx->timeout_lock);
219 } else {
220 matched = io_match_linked(head);
221 }
222 return matched;
6af3f48b
PB
223}
224
a8295b98
HX
225static inline void req_fail_link_node(struct io_kiocb *req, int res)
226{
227 req_set_fail(req);
97b388d7 228 io_req_set_res(req, res, 0);
a8295b98
HX
229}
230
fa05457a
PB
231static inline void io_req_add_to_cache(struct io_kiocb *req, struct io_ring_ctx *ctx)
232{
233 wq_stack_add_head(&req->comp_list, &ctx->submit_state.free_list);
a8295b98
HX
234}
235
c072481d 236static __cold void io_ring_ctx_ref_free(struct percpu_ref *ref)
2b188cc1
JA
237{
238 struct io_ring_ctx *ctx = container_of(ref, struct io_ring_ctx, refs);
239
0f158b4c 240 complete(&ctx->ref_comp);
2b188cc1
JA
241}
242
c072481d 243static __cold void io_fallback_req_func(struct work_struct *work)
f56165e6
PB
244{
245 struct io_ring_ctx *ctx = container_of(work, struct io_ring_ctx,
246 fallback_work.work);
247 struct llist_node *node = llist_del_all(&ctx->fallback_llist);
248 struct io_kiocb *req, *tmp;
8e5b3b89 249 struct io_tw_state ts = {};
f56165e6 250
f7b32e78 251 percpu_ref_get(&ctx->refs);
31f084b7 252 mutex_lock(&ctx->uring_lock);
3218e5d3 253 llist_for_each_entry_safe(req, tmp, node, io_task_work.node)
a282967c 254 req->io_task_work.func(req, &ts);
31f084b7
PB
255 io_submit_flush_completions(ctx);
256 mutex_unlock(&ctx->uring_lock);
f7b32e78 257 percpu_ref_put(&ctx->refs);
f56165e6
PB
258}
259
e6f89be6
PB
260static int io_alloc_hash_table(struct io_hash_table *table, unsigned bits)
261{
262 unsigned hash_buckets = 1U << bits;
263 size_t hash_size = hash_buckets * sizeof(table->hbs[0]);
264
265 table->hbs = kmalloc(hash_size, GFP_KERNEL);
266 if (!table->hbs)
267 return -ENOMEM;
268
269 table->hash_bits = bits;
270 init_hash_table(table, hash_buckets);
271 return 0;
272}
273
c072481d 274static __cold struct io_ring_ctx *io_ring_ctx_alloc(struct io_uring_params *p)
2b188cc1
JA
275{
276 struct io_ring_ctx *ctx;
9cfc7e94 277 int hash_bits;
414d0f45 278 bool ret;
2b188cc1
JA
279
280 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
281 if (!ctx)
282 return NULL;
283
9cfc7e94
JA
284 xa_init(&ctx->io_bl_xa);
285
78076bb6
JA
286 /*
287 * Use 5 bits less than the max cq entries, that should give us around
4a07723f
PB
288 * 32 entries per hash list if totally full and uniformly spread, but
289 * don't keep too many buckets to not overconsume memory.
78076bb6 290 */
4a07723f
PB
291 hash_bits = ilog2(p->cq_entries) - 5;
292 hash_bits = clamp(hash_bits, 1, 8);
e6f89be6 293 if (io_alloc_hash_table(&ctx->cancel_table, hash_bits))
78076bb6 294 goto err;
9ca9fb24
PB
295 if (io_alloc_hash_table(&ctx->cancel_table_locked, hash_bits))
296 goto err;
21482896 297 if (percpu_ref_init(&ctx->refs, io_ring_ctx_ref_free,
48904229 298 0, GFP_KERNEL))
206aefde 299 goto err;
2b188cc1
JA
300
301 ctx->flags = p->flags;
b4bc35cf 302 atomic_set(&ctx->cq_wait_nr, IO_CQ_WAKE_INIT);
90554200 303 init_waitqueue_head(&ctx->sqo_sq_wait);
69fb2131 304 INIT_LIST_HEAD(&ctx->sqd_list);
1d7bb1d5 305 INIT_LIST_HEAD(&ctx->cq_overflow_list);
cc3cec83 306 INIT_LIST_HEAD(&ctx->io_buffers_cache);
414d0f45 307 ret = io_alloc_cache_init(&ctx->rsrc_node_cache, IO_NODE_ALLOC_CACHE_MAX,
69bbc6ad 308 sizeof(struct io_rsrc_node));
da22bdf3 309 ret |= io_alloc_cache_init(&ctx->apoll_cache, IO_POLL_ALLOC_CACHE_MAX,
69bbc6ad 310 sizeof(struct async_poll));
414d0f45 311 ret |= io_alloc_cache_init(&ctx->netmsg_cache, IO_ALLOC_CACHE_MAX,
69bbc6ad 312 sizeof(struct io_async_msghdr));
414d0f45 313 ret |= io_alloc_cache_init(&ctx->rw_cache, IO_ALLOC_CACHE_MAX,
a9165b83 314 sizeof(struct io_async_rw));
414d0f45 315 ret |= io_alloc_cache_init(&ctx->uring_cache, IO_ALLOC_CACHE_MAX,
d10f19df 316 sizeof(struct uring_cache));
414d0f45
JA
317 ret |= io_futex_cache_init(ctx);
318 if (ret)
319 goto err;
0f158b4c 320 init_completion(&ctx->ref_comp);
61cf9370 321 xa_init_flags(&ctx->personalities, XA_FLAGS_ALLOC1);
2b188cc1 322 mutex_init(&ctx->uring_lock);
311997b3 323 init_waitqueue_head(&ctx->cq_wait);
7b235dd8 324 init_waitqueue_head(&ctx->poll_wq);
4ea15b56 325 init_waitqueue_head(&ctx->rsrc_quiesce_wq);
2b188cc1 326 spin_lock_init(&ctx->completion_lock);
89850fce 327 spin_lock_init(&ctx->timeout_lock);
5eef4e87 328 INIT_WQ_LIST(&ctx->iopoll_list);
cc3cec83 329 INIT_LIST_HEAD(&ctx->io_buffers_comp);
de0617e4 330 INIT_LIST_HEAD(&ctx->defer_list);
5262f567 331 INIT_LIST_HEAD(&ctx->timeout_list);
ef9dd637 332 INIT_LIST_HEAD(&ctx->ltimeout_list);
d67d2263 333 INIT_LIST_HEAD(&ctx->rsrc_ref_list);
c0e0d6ba 334 init_llist_head(&ctx->work_llist);
13bf43f5 335 INIT_LIST_HEAD(&ctx->tctx_list);
c2b6c6bc 336 ctx->submit_state.free_list.next = NULL;
f31ecf67 337 INIT_HLIST_HEAD(&ctx->waitid_list);
194bb58c
JA
338#ifdef CONFIG_FUTEX
339 INIT_HLIST_HEAD(&ctx->futex_list);
340#endif
9011bf9a 341 INIT_DELAYED_WORK(&ctx->fallback_work, io_fallback_req_func);
6f33b0bc 342 INIT_WQ_LIST(&ctx->submit_state.compl_reqs);
93b8cc60 343 INIT_HLIST_HEAD(&ctx->cancelable_uring_cmd);
8d0c12a8
SR
344 io_napi_init(ctx);
345
2b188cc1 346 return ctx;
206aefde 347err:
414d0f45
JA
348 io_alloc_cache_free(&ctx->rsrc_node_cache, kfree);
349 io_alloc_cache_free(&ctx->apoll_cache, kfree);
350 io_alloc_cache_free(&ctx->netmsg_cache, io_netmsg_cache_free);
351 io_alloc_cache_free(&ctx->rw_cache, io_rw_cache_free);
352 io_alloc_cache_free(&ctx->uring_cache, kfree);
353 io_futex_cache_free(ctx);
e6f89be6 354 kfree(ctx->cancel_table.hbs);
9ca9fb24 355 kfree(ctx->cancel_table_locked.hbs);
9cfc7e94 356 xa_destroy(&ctx->io_bl_xa);
206aefde
JA
357 kfree(ctx);
358 return NULL;
2b188cc1
JA
359}
360
8f6ed49a
PB
361static void io_account_cq_overflow(struct io_ring_ctx *ctx)
362{
363 struct io_rings *r = ctx->rings;
364
365 WRITE_ONCE(r->cq_overflow, READ_ONCE(r->cq_overflow) + 1);
366 ctx->cq_extra--;
367}
368
9cf7c104 369static bool req_need_defer(struct io_kiocb *req, u32 seq)
7adf4eaf 370{
2bc9930e
JA
371 if (unlikely(req->flags & REQ_F_IO_DRAIN)) {
372 struct io_ring_ctx *ctx = req->ctx;
a197f664 373
8f6ed49a 374 return seq + READ_ONCE(ctx->cq_extra) != ctx->cached_cq_tail;
2bc9930e 375 }
de0617e4 376
9d858b21 377 return false;
de0617e4
JA
378}
379
5a754dea
PB
380static void io_clean_op(struct io_kiocb *req)
381{
382 if (req->flags & REQ_F_BUFFER_SELECTED) {
383 spin_lock(&req->ctx->completion_lock);
bbbef3e9 384 io_kbuf_drop(req);
5a754dea
PB
385 spin_unlock(&req->ctx->completion_lock);
386 }
387
388 if (req->flags & REQ_F_NEED_CLEANUP) {
389 const struct io_cold_def *def = &io_cold_defs[req->opcode];
390
391 if (def->cleanup)
392 def->cleanup(req);
393 }
394 if ((req->flags & REQ_F_POLLED) && req->apoll) {
395 kfree(req->apoll->double_poll);
396 kfree(req->apoll);
397 req->apoll = NULL;
398 }
399 if (req->flags & REQ_F_INFLIGHT) {
400 struct io_uring_task *tctx = req->task->io_uring;
401
402 atomic_dec(&tctx->inflight_tracked);
403 }
404 if (req->flags & REQ_F_CREDS)
405 put_cred(req->creds);
406 if (req->flags & REQ_F_ASYNC_DATA) {
407 kfree(req->async_data);
408 req->async_data = NULL;
409 }
410 req->flags &= ~IO_REQ_CLEAN_FLAGS;
411}
412
9cae36a0
JA
413static inline void io_req_track_inflight(struct io_kiocb *req)
414{
415 if (!(req->flags & REQ_F_INFLIGHT)) {
416 req->flags |= REQ_F_INFLIGHT;
386e4fb6 417 atomic_inc(&req->task->io_uring->inflight_tracked);
9cae36a0
JA
418 }
419}
420
fd08e530
PB
421static struct io_kiocb *__io_prep_linked_timeout(struct io_kiocb *req)
422{
906c6caa
PB
423 if (WARN_ON_ONCE(!req->link))
424 return NULL;
425
4d13d1a4
PB
426 req->flags &= ~REQ_F_ARM_LTIMEOUT;
427 req->flags |= REQ_F_LINK_TIMEOUT;
fd08e530
PB
428
429 /* linked timeouts should have two refs once prep'ed */
48dcd38d 430 io_req_set_refcount(req);
4d13d1a4
PB
431 __io_req_set_refcount(req->link, 2);
432 return req->link;
fd08e530
PB
433}
434
435static inline struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req)
436{
4d13d1a4 437 if (likely(!(req->flags & REQ_F_ARM_LTIMEOUT)))
fd08e530
PB
438 return NULL;
439 return __io_prep_linked_timeout(req);
440}
441
cb2d344c
PB
442static noinline void __io_arm_ltimeout(struct io_kiocb *req)
443{
444 io_queue_linked_timeout(__io_prep_linked_timeout(req));
445}
446
447static inline void io_arm_ltimeout(struct io_kiocb *req)
448{
449 if (unlikely(req->flags & REQ_F_ARM_LTIMEOUT))
450 __io_arm_ltimeout(req);
451}
452
1e6fa521
JA
453static void io_prep_async_work(struct io_kiocb *req)
454{
a7dd2782 455 const struct io_issue_def *def = &io_issue_defs[req->opcode];
1e6fa521
JA
456 struct io_ring_ctx *ctx = req->ctx;
457
b8e64b53
PB
458 if (!(req->flags & REQ_F_CREDS)) {
459 req->flags |= REQ_F_CREDS;
c10d1f98 460 req->creds = get_current_cred();
b8e64b53 461 }
003e8dcc 462
e1d675df
PB
463 req->work.list.next = NULL;
464 req->work.flags = 0;
feaadc4f
PB
465 if (req->flags & REQ_F_FORCE_ASYNC)
466 req->work.flags |= IO_WQ_WORK_CONCURRENT;
467
3beed235 468 if (req->file && !(req->flags & REQ_F_FIXED_FILE))
8487f083 469 req->flags |= io_file_get_flags(req->file);
f6b543fd 470
8b1df11f 471 if (req->file && (req->flags & REQ_F_ISREG)) {
d4755e15
JA
472 bool should_hash = def->hash_reg_file;
473
474 /* don't serialize this request if the fs doesn't need it */
475 if (should_hash && (req->file->f_flags & O_DIRECT) &&
210a03c9 476 (req->file->f_op->fop_flags & FOP_DIO_PARALLEL_WRITE))
d4755e15
JA
477 should_hash = false;
478 if (should_hash || (ctx->flags & IORING_SETUP_IOPOLL))
1e6fa521 479 io_wq_hash_work(&req->work, file_inode(req->file));
4b982bd0 480 } else if (!req->file || !S_ISBLK(file_inode(req->file)->i_mode)) {
1e6fa521
JA
481 if (def->unbound_nonreg_file)
482 req->work.flags |= IO_WQ_WORK_UNBOUND;
483 }
561fb04a 484}
cccf0ee8 485
cbdcb435 486static void io_prep_async_link(struct io_kiocb *req)
561fb04a 487{
cbdcb435 488 struct io_kiocb *cur;
54a91f3b 489
44eff40a
PB
490 if (req->flags & REQ_F_LINK_TIMEOUT) {
491 struct io_ring_ctx *ctx = req->ctx;
492
674ee8e1 493 spin_lock_irq(&ctx->timeout_lock);
44eff40a
PB
494 io_for_each_link(cur, req)
495 io_prep_async_work(cur);
674ee8e1 496 spin_unlock_irq(&ctx->timeout_lock);
44eff40a
PB
497 } else {
498 io_for_each_link(cur, req)
499 io_prep_async_work(cur);
500 }
561fb04a
JA
501}
502
6e6b8c62 503static void io_queue_iowq(struct io_kiocb *req)
561fb04a 504{
cbdcb435 505 struct io_kiocb *link = io_prep_linked_timeout(req);
5aa75ed5 506 struct io_uring_task *tctx = req->task->io_uring;
561fb04a 507
3bfe6106
JA
508 BUG_ON(!tctx);
509 BUG_ON(!tctx->io_wq);
561fb04a 510
cbdcb435
PB
511 /* init ->work of the whole link before punting */
512 io_prep_async_link(req);
991468dc
JA
513
514 /*
515 * Not expected to happen, but if we do have a bug where this _can_
516 * happen, catch it here and ensure the request is marked as
517 * canceled. That will make io-wq go through the usual work cancel
518 * procedure rather than attempt to run this request (or create a new
519 * worker for it).
520 */
521 if (WARN_ON_ONCE(!same_thread_group(req->task, current)))
522 req->work.flags |= IO_WQ_WORK_CANCEL;
523
48863ffd 524 trace_io_uring_queue_async_work(req, io_wq_is_hashed(&req->work));
ebf93667 525 io_wq_enqueue(tctx->io_wq, &req->work);
7271ef3a
JA
526 if (link)
527 io_queue_linked_timeout(link);
cbdcb435
PB
528}
529
c072481d 530static __cold void io_queue_deferred(struct io_ring_ctx *ctx)
de0617e4 531{
441b8a78 532 while (!list_empty(&ctx->defer_list)) {
27dc8338
PB
533 struct io_defer_entry *de = list_first_entry(&ctx->defer_list,
534 struct io_defer_entry, list);
de0617e4 535
9cf7c104 536 if (req_need_defer(de->req, de->seq))
04518945 537 break;
27dc8338 538 list_del_init(&de->list);
907d1df3 539 io_req_task_queue(de->req);
27dc8338 540 kfree(de);
441b8a78 541 }
04518945
PB
542}
543
c4320315 544void io_eventfd_ops(struct rcu_head *rcu)
f2842ab5 545{
d8e9214f 546 struct io_ev_fd *ev_fd = container_of(rcu, struct io_ev_fd, rcu);
21a091b9 547 int ops = atomic_xchg(&ev_fd->ops, 0);
305bef98 548
21a091b9 549 if (ops & BIT(IO_EVENTFD_OP_SIGNAL_BIT))
120ae585 550 eventfd_signal_mask(ev_fd->cq_ev_fd, EPOLL_URING_WAKE);
d8e9214f 551
21a091b9
DY
552 /* IO_EVENTFD_OP_FREE_BIT may not be set here depending on callback
553 * ordering in a race but if references are 0 we know we have to free
554 * it regardless.
305bef98 555 */
21a091b9
DY
556 if (atomic_dec_and_test(&ev_fd->refs)) {
557 eventfd_ctx_put(ev_fd->cq_ev_fd);
558 kfree(ev_fd);
559 }
d8e9214f
DY
560}
561
77bc59b4 562static void io_eventfd_signal(struct io_ring_ctx *ctx)
f2842ab5 563{
21a091b9 564 struct io_ev_fd *ev_fd = NULL;
77bc59b4 565
77bc59b4
UA
566 rcu_read_lock();
567 /*
568 * rcu_dereference ctx->io_ev_fd once and use it for both for checking
569 * and eventfd_signal
570 */
571 ev_fd = rcu_dereference(ctx->io_ev_fd);
572
573 /*
574 * Check again if ev_fd exists incase an io_eventfd_unregister call
575 * completed between the NULL check of ctx->io_ev_fd at the start of
576 * the function and rcu_read_lock.
577 */
578 if (unlikely(!ev_fd))
579 goto out;
7e55a19c 580 if (READ_ONCE(ctx->rings->cq_flags) & IORING_CQ_EVENTFD_DISABLED)
77bc59b4 581 goto out;
21a091b9
DY
582 if (ev_fd->eventfd_async && !io_wq_current_is_worker())
583 goto out;
77bc59b4 584
21a091b9 585 if (likely(eventfd_signal_allowed())) {
120ae585 586 eventfd_signal_mask(ev_fd->cq_ev_fd, EPOLL_URING_WAKE);
21a091b9
DY
587 } else {
588 atomic_inc(&ev_fd->refs);
589 if (!atomic_fetch_or(BIT(IO_EVENTFD_OP_SIGNAL_BIT), &ev_fd->ops))
44a84da4 590 call_rcu_hurry(&ev_fd->rcu, io_eventfd_ops);
21a091b9
DY
591 else
592 atomic_dec(&ev_fd->refs);
593 }
594
77bc59b4
UA
595out:
596 rcu_read_unlock();
f2842ab5
JA
597}
598
21a091b9
DY
599static void io_eventfd_flush_signal(struct io_ring_ctx *ctx)
600{
601 bool skip;
602
603 spin_lock(&ctx->completion_lock);
604
605 /*
606 * Eventfd should only get triggered when at least one event has been
607 * posted. Some applications rely on the eventfd notification count
608 * only changing IFF a new CQE has been added to the CQ ring. There's
609 * no depedency on 1:1 relationship between how many times this
610 * function is called (and hence the eventfd count) and number of CQEs
611 * posted to the CQ ring.
612 */
613 skip = ctx->cached_cq_tail == ctx->evfd_last_cq_tail;
614 ctx->evfd_last_cq_tail = ctx->cached_cq_tail;
615 spin_unlock(&ctx->completion_lock);
616 if (skip)
617 return;
618
619 io_eventfd_signal(ctx);
620}
621
a830ffd2
PB
622void __io_commit_cqring_flush(struct io_ring_ctx *ctx)
623{
bca39f39
PB
624 if (ctx->poll_activated)
625 io_poll_wq_wake(ctx);
e5f30f6f
PB
626 if (ctx->off_timeout_used)
627 io_flush_timeouts(ctx);
628 if (ctx->drain_active) {
a830ffd2 629 spin_lock(&ctx->completion_lock);
e5f30f6f 630 io_queue_deferred(ctx);
a830ffd2
PB
631 spin_unlock(&ctx->completion_lock);
632 }
633 if (ctx->has_evfd)
21a091b9 634 io_eventfd_flush_signal(ctx);
a830ffd2
PB
635}
636
f66f7342 637static inline void __io_cq_lock(struct io_ring_ctx *ctx)
f66f7342 638{
ec26c225 639 if (!ctx->lockless_cq)
f66f7342
PB
640 spin_lock(&ctx->completion_lock);
641}
642
6971253f
PB
643static inline void io_cq_lock(struct io_ring_ctx *ctx)
644 __acquires(ctx->completion_lock)
645{
646 spin_lock(&ctx->completion_lock);
647}
648
f66f7342 649static inline void __io_cq_unlock_post(struct io_ring_ctx *ctx)
3181e22f
PB
650{
651 io_commit_cqring(ctx);
54927baf 652 if (!ctx->task_complete) {
ec26c225
PB
653 if (!ctx->lockless_cq)
654 spin_unlock(&ctx->completion_lock);
655 /* IOPOLL rings only need to wake up if it's also SQPOLL */
656 if (!ctx->syscall_iopoll)
657 io_cqring_wake(ctx);
3181e22f 658 }
54927baf 659 io_commit_cqring_flush(ctx);
3181e22f
PB
660}
661
0fdb9a19 662static void io_cq_unlock_post(struct io_ring_ctx *ctx)
5d772916 663 __releases(ctx->completion_lock)
25399321 664{
f66f7342
PB
665 io_commit_cqring(ctx);
666 spin_unlock(&ctx->completion_lock);
f66f7342 667 io_cqring_wake(ctx);
54927baf 668 io_commit_cqring_flush(ctx);
25399321
PB
669}
670
6b231248 671static void __io_cqring_overflow_flush(struct io_ring_ctx *ctx, bool dying)
1d7bb1d5 672{
e45a3e05 673 size_t cqe_size = sizeof(struct io_uring_cqe);
1d7bb1d5 674
8d09a88e
PB
675 lockdep_assert_held(&ctx->uring_lock);
676
686b56cb
JA
677 /* don't abort if we're dying, entries must get freed */
678 if (!dying && __io_cqring_events(ctx) == ctx->cq_entries)
1b346e4a 679 return;
1d7bb1d5 680
e45a3e05
SR
681 if (ctx->flags & IORING_SETUP_CQE32)
682 cqe_size <<= 1;
683
25399321 684 io_cq_lock(ctx);
6c2450ae 685 while (!list_empty(&ctx->cq_overflow_list)) {
59fbc409 686 struct io_uring_cqe *cqe;
6c2450ae 687 struct io_overflow_cqe *ocqe;
e6c8aa9a 688
6c2450ae
PB
689 ocqe = list_first_entry(&ctx->cq_overflow_list,
690 struct io_overflow_cqe, list);
6b231248
PB
691
692 if (!dying) {
693 if (!io_get_cqe_overflow(ctx, &cqe, true))
694 break;
695 memcpy(cqe, &ocqe->cqe, cqe_size);
696 }
6c2450ae
PB
697 list_del(&ocqe->list);
698 kfree(ocqe);
1d7bb1d5
JA
699 }
700
1b346e4a 701 if (list_empty(&ctx->cq_overflow_list)) {
10988a0a 702 clear_bit(IO_CHECK_CQ_OVERFLOW_BIT, &ctx->check_cq);
3a4b89a2 703 atomic_andnot(IORING_SQ_CQ_OVERFLOW, &ctx->rings->sq_flags);
09e88404 704 }
25399321 705 io_cq_unlock_post(ctx);
1d7bb1d5
JA
706}
707
6b231248 708static void io_cqring_overflow_kill(struct io_ring_ctx *ctx)
52ea806a 709{
6b231248
PB
710 if (ctx->rings)
711 __io_cqring_overflow_flush(ctx, true);
52ea806a
JA
712}
713
52ea806a 714static void io_cqring_do_overflow_flush(struct io_ring_ctx *ctx)
6c503150 715{
8d09a88e 716 mutex_lock(&ctx->uring_lock);
6b231248 717 __io_cqring_overflow_flush(ctx, false);
8d09a88e 718 mutex_unlock(&ctx->uring_lock);
6c503150
PB
719}
720
5afa4650 721/* can be called by any task */
2fdd6fb5 722static void io_put_task_remote(struct task_struct *task)
6a290a14
PB
723{
724 struct io_uring_task *tctx = task->io_uring;
725
2fdd6fb5 726 percpu_counter_sub(&tctx->inflight, 1);
8d664282 727 if (unlikely(atomic_read(&tctx->in_cancel)))
9d170164 728 wake_up(&tctx->wait);
2fdd6fb5 729 put_task_struct(task);
9d170164
PB
730}
731
5afa4650 732/* used by a task to put its own references */
2fdd6fb5 733static void io_put_task_local(struct task_struct *task)
5afa4650 734{
2fdd6fb5 735 task->io_uring->cached_refs++;
5afa4650
PB
736}
737
89800a2d 738/* must to be called somewhat shortly after putting a request */
2fdd6fb5 739static inline void io_put_task(struct task_struct *task)
89800a2d
PB
740{
741 if (likely(task == current))
2fdd6fb5 742 io_put_task_local(task);
89800a2d 743 else
2fdd6fb5 744 io_put_task_remote(task);
89800a2d
PB
745}
746
63809137 747void io_task_refs_refill(struct io_uring_task *tctx)
9a10867a
PB
748{
749 unsigned int refill = -tctx->cached_refs + IO_TCTX_REFS_CACHE_NR;
750
751 percpu_counter_add(&tctx->inflight, refill);
752 refcount_add(refill, &current->usage);
753 tctx->cached_refs += refill;
754}
755
3cc7fdb9
PB
756static __cold void io_uring_drop_tctx_refs(struct task_struct *task)
757{
758 struct io_uring_task *tctx = task->io_uring;
759 unsigned int refs = tctx->cached_refs;
760
761 if (refs) {
762 tctx->cached_refs = 0;
763 percpu_counter_sub(&tctx->inflight, refs);
764 put_task_struct_many(task, refs);
765 }
766}
767
68494a65
PB
768static bool io_cqring_event_overflow(struct io_ring_ctx *ctx, u64 user_data,
769 s32 res, u32 cflags, u64 extra1, u64 extra2)
2b188cc1 770{
cce4b8b0 771 struct io_overflow_cqe *ocqe;
e45a3e05
SR
772 size_t ocq_size = sizeof(struct io_overflow_cqe);
773 bool is_cqe32 = (ctx->flags & IORING_SETUP_CQE32);
2b188cc1 774
f26cc959
PB
775 lockdep_assert_held(&ctx->completion_lock);
776
e45a3e05
SR
777 if (is_cqe32)
778 ocq_size += sizeof(struct io_uring_cqe);
2b188cc1 779
e45a3e05 780 ocqe = kmalloc(ocq_size, GFP_ATOMIC | __GFP_ACCOUNT);
08dcd028 781 trace_io_uring_cqe_overflow(ctx, user_data, res, cflags, ocqe);
cce4b8b0
PB
782 if (!ocqe) {
783 /*
784 * If we're in ring overflow flush mode, or in task cancel mode,
785 * or cannot allocate an overflow entry, then we need to drop it
786 * on the floor.
787 */
8f6ed49a 788 io_account_cq_overflow(ctx);
155bc950 789 set_bit(IO_CHECK_CQ_DROPPED_BIT, &ctx->check_cq);
cce4b8b0 790 return false;
2b188cc1 791 }
cce4b8b0 792 if (list_empty(&ctx->cq_overflow_list)) {
10988a0a 793 set_bit(IO_CHECK_CQ_OVERFLOW_BIT, &ctx->check_cq);
3a4b89a2 794 atomic_or(IORING_SQ_CQ_OVERFLOW, &ctx->rings->sq_flags);
20c0b380 795
cce4b8b0 796 }
d4d19c19 797 ocqe->cqe.user_data = user_data;
cce4b8b0
PB
798 ocqe->cqe.res = res;
799 ocqe->cqe.flags = cflags;
e45a3e05
SR
800 if (is_cqe32) {
801 ocqe->cqe.big_cqe[0] = extra1;
802 ocqe->cqe.big_cqe[1] = extra2;
803 }
cce4b8b0
PB
804 list_add_tail(&ocqe->list, &ctx->cq_overflow_list);
805 return true;
2b188cc1
JA
806}
807
a5bff518 808static void io_req_cqe_overflow(struct io_kiocb *req)
68494a65 809{
056695bf
PB
810 io_cqring_event_overflow(req->ctx, req->cqe.user_data,
811 req->cqe.res, req->cqe.flags,
b24c5d75
PB
812 req->big_cqe.extra1, req->big_cqe.extra2);
813 memset(&req->big_cqe, 0, sizeof(req->big_cqe));
68494a65
PB
814}
815
faf88dde
PB
816/*
817 * writes to the cq entry need to come after reading head; the
818 * control dependency is enough as we're using WRITE_ONCE to
819 * fill the cq entry
820 */
20d6b633 821bool io_cqe_cache_refill(struct io_ring_ctx *ctx, bool overflow)
faf88dde
PB
822{
823 struct io_rings *rings = ctx->rings;
824 unsigned int off = ctx->cached_cq_tail & (ctx->cq_entries - 1);
faf88dde
PB
825 unsigned int free, queued, len;
826
aa1df3a3
PB
827 /*
828 * Posting into the CQ when there are pending overflowed CQEs may break
829 * ordering guarantees, which will affect links, F_MORE users and more.
830 * Force overflow the completion.
831 */
832 if (!overflow && (ctx->check_cq & BIT(IO_CHECK_CQ_OVERFLOW_BIT)))
20d6b633 833 return false;
faf88dde
PB
834
835 /* userspace may cheat modifying the tail, be safe and do min */
836 queued = min(__io_cqring_events(ctx), ctx->cq_entries);
837 free = ctx->cq_entries - queued;
838 /* we need a contiguous range, limit based on the current array offset */
839 len = min(free, ctx->cq_entries - off);
840 if (!len)
20d6b633 841 return false;
faf88dde 842
b3659a65
PB
843 if (ctx->flags & IORING_SETUP_CQE32) {
844 off <<= 1;
845 len <<= 1;
846 }
847
faf88dde
PB
848 ctx->cqe_cached = &rings->cqes[off];
849 ctx->cqe_sentinel = ctx->cqe_cached + len;
20d6b633 850 return true;
faf88dde
PB
851}
852
f66f7342
PB
853static bool io_fill_cqe_aux(struct io_ring_ctx *ctx, u64 user_data, s32 res,
854 u32 cflags)
bcda7baa 855{
cd94903d
PB
856 struct io_uring_cqe *cqe;
857
913a571a 858 ctx->cq_extra++;
cd94903d
PB
859
860 /*
861 * If we can't get a cq entry, userspace overflowed the
862 * submission (by quite a lot). Increment the overflow count in
863 * the ring.
864 */
59fbc409 865 if (likely(io_get_cqe(ctx, &cqe))) {
e0486f3f
DY
866 trace_io_uring_complete(ctx, NULL, user_data, res, cflags, 0, 0);
867
cd94903d
PB
868 WRITE_ONCE(cqe->user_data, user_data);
869 WRITE_ONCE(cqe->res, res);
870 WRITE_ONCE(cqe->flags, cflags);
c5595975
PB
871
872 if (ctx->flags & IORING_SETUP_CQE32) {
873 WRITE_ONCE(cqe->big_cqe[0], 0);
874 WRITE_ONCE(cqe->big_cqe[1], 0);
875 }
cd94903d
PB
876 return true;
877 }
52120f0f 878 return false;
bcda7baa
JA
879}
880
e5c12945 881bool io_post_aux_cqe(struct io_ring_ctx *ctx, u64 user_data, s32 res, u32 cflags)
d245bca6
PB
882{
883 bool filled;
884
25399321 885 io_cq_lock(ctx);
f66f7342 886 filled = io_fill_cqe_aux(ctx, user_data, res, cflags);
e5c12945 887 if (!filled)
f66f7342
PB
888 filled = io_cqring_event_overflow(ctx, user_data, res, cflags, 0, 0);
889
25399321 890 io_cq_unlock_post(ctx);
d245bca6
PB
891 return filled;
892}
893
b6b2bb58
PB
894/*
895 * A helper for multishot requests posting additional CQEs.
896 * Should only be used from a task_work including IO_URING_F_MULTISHOT.
897 */
e5c12945 898bool io_req_post_cqe(struct io_kiocb *req, s32 res, u32 cflags)
2b188cc1 899{
d86eaed1 900 struct io_ring_ctx *ctx = req->ctx;
902ce82c 901 bool posted;
9b8c5475 902
e0e4ab52 903 lockdep_assert(!io_wq_current_is_worker());
9b8c5475
DY
904 lockdep_assert_held(&ctx->uring_lock);
905
902ce82c
PB
906 __io_cq_lock(ctx);
907 posted = io_fill_cqe_aux(ctx, req->cqe.user_data, res, cflags);
908 ctx->submit_state.cq_flush = true;
909 __io_cq_unlock_post(ctx);
910 return posted;
9b8c5475
DY
911}
912
0667db14 913static void io_req_complete_post(struct io_kiocb *req, unsigned issue_flags)
2b188cc1 914{
fa18fa22
PB
915 struct io_ring_ctx *ctx = req->ctx;
916
de96e9ae
PB
917 /*
918 * All execution paths but io-wq use the deferred completions by
919 * passing IO_URING_F_COMPLETE_DEFER and thus should not end up here.
920 */
921 if (WARN_ON_ONCE(!(issue_flags & IO_URING_F_IOWQ)))
922 return;
923
0667db14
PB
924 /*
925 * Handle special CQ sync cases via task_work. DEFER_TASKRUN requires
926 * the submitter task context, IOPOLL protects with uring_lock.
927 */
928 if (ctx->task_complete || (ctx->flags & IORING_SETUP_IOPOLL)) {
929 req->io_task_work.func = io_req_task_complete;
930 io_req_task_work_add(req);
931 return;
932 }
fa18fa22
PB
933
934 io_cq_lock(ctx);
00b0db56
PB
935 if (!(req->flags & REQ_F_CQE_SKIP)) {
936 if (!io_fill_cqe_req(ctx, req))
937 io_req_cqe_overflow(req);
938 }
25399321 939 io_cq_unlock_post(ctx);
fa18fa22 940
c7dae4ba 941 /*
de96e9ae
PB
942 * We don't free the request here because we know it's called from
943 * io-wq only, which holds a reference, so it cannot be the last put.
c7dae4ba 944 */
f3913000 945 req_ref_put(req);
0ddf92e8
JA
946}
947
973fc83f 948void io_req_defer_failed(struct io_kiocb *req, s32 res)
e276ae34 949 __must_hold(&ctx->uring_lock)
f41db273 950{
f30bd4d0 951 const struct io_cold_def *def = &io_cold_defs[req->opcode];
a47b255e 952
e276ae34
PB
953 lockdep_assert_held(&req->ctx->uring_lock);
954
93d2bcd2 955 req_set_fail(req);
97b388d7 956 io_req_set_res(req, res, io_put_kbuf(req, IO_URING_F_UNLOCKED));
a47b255e
PB
957 if (def->fail)
958 def->fail(req);
973fc83f 959 io_req_complete_defer(req);
f41db273
PB
960}
961
864ea921
PB
962/*
963 * Don't initialise the fields below on every allocation, but do that in
964 * advance and keep them valid across allocations.
965 */
966static void io_preinit_req(struct io_kiocb *req, struct io_ring_ctx *ctx)
967{
968 req->ctx = ctx;
969 req->link = NULL;
970 req->async_data = NULL;
971 /* not necessary, but safer to zero */
31d3ba92 972 memset(&req->cqe, 0, sizeof(req->cqe));
b24c5d75 973 memset(&req->big_cqe, 0, sizeof(req->big_cqe));
864ea921
PB
974}
975
5d5901a3
PB
976/*
977 * A request might get retired back into the request caches even before opcode
978 * handlers and io_issue_sqe() are done with it, e.g. inline completion path.
979 * Because of that, io_alloc_req() should be called only under ->uring_lock
980 * and with extra caution to not get a request that is still worked on.
981 */
bd1a3783 982__cold bool __io_alloc_req_refill(struct io_ring_ctx *ctx)
5d5901a3 983 __must_hold(&ctx->uring_lock)
2b188cc1 984{
864ea921 985 gfp_t gfp = GFP_KERNEL | __GFP_NOWARN;
3ab665b7 986 void *reqs[IO_REQ_ALLOC_BATCH];
05eb5fe2 987 int ret;
e5d1bc0a 988
3ab665b7 989 ret = kmem_cache_alloc_bulk(req_cachep, gfp, ARRAY_SIZE(reqs), reqs);
fd6fab2c 990
864ea921
PB
991 /*
992 * Bulk alloc is all-or-nothing. If we fail to get a batch,
993 * retry single alloc to be on the safe side.
994 */
995 if (unlikely(ret <= 0)) {
3ab665b7
PB
996 reqs[0] = kmem_cache_alloc(req_cachep, gfp);
997 if (!reqs[0])
a33ae9ce 998 return false;
864ea921 999 ret = 1;
2b188cc1 1000 }
864ea921 1001
37f0e767 1002 percpu_ref_get_many(&ctx->refs, ret);
05eb5fe2
JA
1003 while (ret--) {
1004 struct io_kiocb *req = reqs[ret];
3ab665b7
PB
1005
1006 io_preinit_req(req, ctx);
fa05457a 1007 io_req_add_to_cache(req, ctx);
3ab665b7 1008 }
a33ae9ce
PB
1009 return true;
1010}
1011
03adabe8
PB
1012__cold void io_free_req(struct io_kiocb *req)
1013{
6ec9afc7
PB
1014 /* refs were already put, restore them for io_req_task_complete() */
1015 req->flags &= ~REQ_F_REFCOUNT;
1016 /* we only want to free it, don't post CQEs */
1017 req->flags |= REQ_F_CQE_SKIP;
1018 req->io_task_work.func = io_req_task_complete;
03adabe8
PB
1019 io_req_task_work_add(req);
1020}
1021
d81499bf
PB
1022static void __io_req_find_next_prep(struct io_kiocb *req)
1023{
1024 struct io_ring_ctx *ctx = req->ctx;
d81499bf 1025
6971253f 1026 spin_lock(&ctx->completion_lock);
305bef98 1027 io_disarm_next(req);
6971253f 1028 spin_unlock(&ctx->completion_lock);
d81499bf
PB
1029}
1030
1031static inline struct io_kiocb *io_req_find_next(struct io_kiocb *req)
c69f8dbe 1032{
33cc89a9 1033 struct io_kiocb *nxt;
944e58bf 1034
9e645e11
JA
1035 /*
1036 * If LINK is set, we have dependent requests in this chain. If we
1037 * didn't fail this request, queue the first one up, moving any other
1038 * dependencies to the next request. In case of failure, fail the rest
1039 * of the chain.
1040 */
d81499bf
PB
1041 if (unlikely(req->flags & IO_DISARM_MASK))
1042 __io_req_find_next_prep(req);
33cc89a9
PB
1043 nxt = req->link;
1044 req->link = NULL;
1045 return nxt;
4d7dd462 1046}
9e645e11 1047
a282967c 1048static void ctx_flush_and_put(struct io_ring_ctx *ctx, struct io_tw_state *ts)
2c32395d
PB
1049{
1050 if (!ctx)
1051 return;
ef060ea9
JA
1052 if (ctx->flags & IORING_SETUP_TASKRUN_FLAG)
1053 atomic_andnot(IORING_SQ_TASKRUN, &ctx->rings->sq_flags);
8e5b3b89
PB
1054
1055 io_submit_flush_completions(ctx);
1056 mutex_unlock(&ctx->uring_lock);
2c32395d
PB
1057 percpu_ref_put(&ctx->refs);
1058}
1059
af5d68f8
JA
1060/*
1061 * Run queued task_work, returning the number of entries processed in *count.
1062 * If more entries than max_entries are available, stop processing once this
1063 * is reached and return the rest of the list.
1064 */
1065struct llist_node *io_handle_tw_list(struct llist_node *node,
1066 unsigned int *count,
1067 unsigned int max_entries)
9f8d032a 1068{
42c0905f
JA
1069 struct io_ring_ctx *ctx = NULL;
1070 struct io_tw_state ts = { };
c6dd763c 1071
592b4805 1072 do {
f88262e6 1073 struct llist_node *next = node->next;
9f8d032a
HX
1074 struct io_kiocb *req = container_of(node, struct io_kiocb,
1075 io_task_work.node);
1076
42c0905f
JA
1077 if (req->ctx != ctx) {
1078 ctx_flush_and_put(ctx, &ts);
1079 ctx = req->ctx;
92219afb 1080 mutex_lock(&ctx->uring_lock);
42c0905f 1081 percpu_ref_get(&ctx->refs);
13bfa6f1 1082 }
c92fcfc2
JA
1083 INDIRECT_CALL_2(req->io_task_work.func,
1084 io_poll_task_func, io_req_rw_complete,
42c0905f 1085 req, &ts);
9f8d032a 1086 node = next;
2708af1a 1087 (*count)++;
f5868008 1088 if (unlikely(need_resched())) {
42c0905f
JA
1089 ctx_flush_and_put(ctx, &ts);
1090 ctx = NULL;
f5868008
JA
1091 cond_resched();
1092 }
af5d68f8 1093 } while (node && *count < max_entries);
c6dd763c 1094
42c0905f 1095 ctx_flush_and_put(ctx, &ts);
af5d68f8 1096 return node;
9f8d032a
HX
1097}
1098
923d1592
DY
1099/**
1100 * io_llist_xchg - swap all entries in a lock-less list
1101 * @head: the head of lock-less list to delete all entries
1102 * @new: new entry as the head of the list
1103 *
1104 * If list is empty, return NULL, otherwise, return the pointer to the first entry.
1105 * The order of entries returned is from the newest to the oldest added one.
1106 */
1107static inline struct llist_node *io_llist_xchg(struct llist_head *head,
1108 struct llist_node *new)
1109{
1110 return xchg(&head->first, new);
1111}
1112
dfbe5561 1113static __cold void io_fallback_tw(struct io_uring_task *tctx, bool sync)
10e1c0d5
JA
1114{
1115 struct llist_node *node = llist_del_all(&tctx->task_list);
dfbe5561 1116 struct io_ring_ctx *last_ctx = NULL;
10e1c0d5
JA
1117 struct io_kiocb *req;
1118
1119 while (node) {
1120 req = container_of(node, struct io_kiocb, io_task_work.node);
1121 node = node->next;
dfbe5561
JA
1122 if (sync && last_ctx != req->ctx) {
1123 if (last_ctx) {
1124 flush_delayed_work(&last_ctx->fallback_work);
1125 percpu_ref_put(&last_ctx->refs);
1126 }
1127 last_ctx = req->ctx;
1128 percpu_ref_get(&last_ctx->refs);
1129 }
10e1c0d5
JA
1130 if (llist_add(&req->io_task_work.node,
1131 &req->ctx->fallback_llist))
1132 schedule_delayed_work(&req->ctx->fallback_work, 1);
1133 }
dfbe5561
JA
1134
1135 if (last_ctx) {
1136 flush_delayed_work(&last_ctx->fallback_work);
1137 percpu_ref_put(&last_ctx->refs);
1138 }
10e1c0d5
JA
1139}
1140
af5d68f8
JA
1141struct llist_node *tctx_task_work_run(struct io_uring_task *tctx,
1142 unsigned int max_entries,
1143 unsigned int *count)
c40f6379 1144{
77e443ab 1145 struct llist_node *node;
3a0c037b 1146
77e443ab 1147 if (unlikely(current->flags & PF_EXITING)) {
dfbe5561 1148 io_fallback_tw(tctx, true);
af5d68f8 1149 return NULL;
77e443ab 1150 }
3a0c037b 1151
592b4805 1152 node = llist_del_all(&tctx->task_list);
af5d68f8
JA
1153 if (node) {
1154 node = llist_reverse_order(node);
1155 node = io_handle_tw_list(node, count, max_entries);
1156 }
3cc7fdb9 1157
8d664282
JA
1158 /* relaxed read is enough as only the task itself sets ->in_cancel */
1159 if (unlikely(atomic_read(&tctx->in_cancel)))
3cc7fdb9 1160 io_uring_drop_tctx_refs(current);
c6dd763c 1161
af5d68f8
JA
1162 trace_io_uring_task_work_run(tctx, *count);
1163 return node;
1164}
1165
1166void tctx_task_work(struct callback_head *cb)
1167{
1168 struct io_uring_task *tctx;
1169 struct llist_node *ret;
1170 unsigned int count = 0;
1171
1172 tctx = container_of(cb, struct io_uring_task, task_work);
1173 ret = tctx_task_work_run(tctx, UINT_MAX, &count);
1174 /* can't happen */
1175 WARN_ON_ONCE(ret);
7cbf1722
JA
1176}
1177
91c7884a 1178static inline void io_req_local_work_add(struct io_kiocb *req, unsigned flags)
c0e0d6ba
DY
1179{
1180 struct io_ring_ctx *ctx = req->ctx;
8751d154 1181 unsigned nr_wait, nr_tw, nr_tw_prev;
e8c40771 1182 struct llist_node *head;
c0e0d6ba 1183
b4bc35cf
PB
1184 /* See comment above IO_CQ_WAKE_INIT */
1185 BUILD_BUG_ON(IO_CQ_WAKE_FORCE <= IORING_MAX_CQ_ENTRIES);
c0e0d6ba 1186
b4bc35cf
PB
1187 /*
1188 * We don't know how many reuqests is there in the link and whether
1189 * they can even be queued lazily, fall back to non-lazy.
1190 */
8751d154
PB
1191 if (req->flags & (REQ_F_LINK | REQ_F_HARDLINK))
1192 flags &= ~IOU_F_TWQ_LAZY_WAKE;
ce8e04f6 1193
e8c40771 1194 head = READ_ONCE(ctx->work_llist.first);
51509400 1195 do {
8751d154 1196 nr_tw_prev = 0;
e8c40771
PB
1197 if (head) {
1198 struct io_kiocb *first_req = container_of(head,
8751d154
PB
1199 struct io_kiocb,
1200 io_task_work.node);
1201 /*
1202 * Might be executed at any moment, rely on
1203 * SLAB_TYPESAFE_BY_RCU to keep it alive.
1204 */
1205 nr_tw_prev = READ_ONCE(first_req->nr_tw);
1206 }
b4bc35cf
PB
1207
1208 /*
1209 * Theoretically, it can overflow, but that's fine as one of
1210 * previous adds should've tried to wake the task.
1211 */
8751d154 1212 nr_tw = nr_tw_prev + 1;
8751d154 1213 if (!(flags & IOU_F_TWQ_LAZY_WAKE))
b4bc35cf 1214 nr_tw = IO_CQ_WAKE_FORCE;
8751d154
PB
1215
1216 req->nr_tw = nr_tw;
e8c40771
PB
1217 req->io_task_work.node.next = head;
1218 } while (!try_cmpxchg(&ctx->work_llist.first, &head,
51509400
PB
1219 &req->io_task_work.node));
1220
d381099f
PB
1221 /*
1222 * cmpxchg implies a full barrier, which pairs with the barrier
1223 * in set_current_state() on the io_cqring_wait() side. It's used
1224 * to ensure that either we see updated ->cq_wait_nr, or waiters
1225 * going to sleep will observe the work added to the list, which
1226 * is similar to the wait/wawke task state sync.
1227 */
1228
e8c40771 1229 if (!head) {
8751d154
PB
1230 if (ctx->flags & IORING_SETUP_TASKRUN_FLAG)
1231 atomic_or(IORING_SQ_TASKRUN, &ctx->rings->sq_flags);
1232 if (ctx->has_evfd)
1233 io_eventfd_signal(ctx);
c0e0d6ba
DY
1234 }
1235
8751d154 1236 nr_wait = atomic_read(&ctx->cq_wait_nr);
b4bc35cf
PB
1237 /* not enough or no one is waiting */
1238 if (nr_tw < nr_wait)
8751d154 1239 return;
b4bc35cf
PB
1240 /* the previous add has already woken it up */
1241 if (nr_tw_prev >= nr_wait)
8751d154 1242 return;
8751d154 1243 wake_up_state(ctx->submitter_task, TASK_INTERRUPTIBLE);
c0e0d6ba
DY
1244}
1245
91c7884a 1246static void io_req_normal_work_add(struct io_kiocb *req)
7cbf1722 1247{
c34398a8 1248 struct io_uring_task *tctx = req->task->io_uring;
9f010507 1249 struct io_ring_ctx *ctx = req->ctx;
7cbf1722 1250
7cbf1722 1251 /* task_work already pending, we're done */
32d91f05 1252 if (!llist_add(&req->io_task_work.node, &tctx->task_list))
e09ee510 1253 return;
7cbf1722 1254
ef060ea9
JA
1255 if (ctx->flags & IORING_SETUP_TASKRUN_FLAG)
1256 atomic_or(IORING_SQ_TASKRUN, &ctx->rings->sq_flags);
1257
af5d68f8 1258 /* SQPOLL doesn't need the task_work added, it'll run it itself */
78f9b61b
JA
1259 if (ctx->flags & IORING_SETUP_SQPOLL) {
1260 struct io_sq_data *sqd = ctx->sq_data;
1261
dbcabac1
JA
1262 if (sqd->thread)
1263 __set_notify_signal(sqd->thread);
af5d68f8 1264 return;
78f9b61b 1265 }
af5d68f8 1266
3fe07bcd 1267 if (likely(!task_work_add(req->task, &tctx->task_work, ctx->notify_method)))
e09ee510 1268 return;
2215bed9 1269
dfbe5561 1270 io_fallback_tw(tctx, false);
c0e0d6ba
DY
1271}
1272
91c7884a
PB
1273void __io_req_task_work_add(struct io_kiocb *req, unsigned flags)
1274{
1275 if (req->ctx->flags & IORING_SETUP_DEFER_TASKRUN) {
1276 rcu_read_lock();
1277 io_req_local_work_add(req, flags);
1278 rcu_read_unlock();
1279 } else {
1280 io_req_normal_work_add(req);
1281 }
1282}
1283
c0e0d6ba
DY
1284static void __cold io_move_task_work_from_local(struct io_ring_ctx *ctx)
1285{
1286 struct llist_node *node;
1287
1288 node = llist_del_all(&ctx->work_llist);
1289 while (node) {
1290 struct io_kiocb *req = container_of(node, struct io_kiocb,
1291 io_task_work.node);
1292
1293 node = node->next;
91c7884a 1294 io_req_normal_work_add(req);
c0e0d6ba
DY
1295 }
1296}
1297
9fe3eaea
JA
1298static bool io_run_local_work_continue(struct io_ring_ctx *ctx, int events,
1299 int min_events)
1300{
1301 if (llist_empty(&ctx->work_llist))
1302 return false;
1303 if (events < min_events)
1304 return true;
1305 if (ctx->flags & IORING_SETUP_TASKRUN_FLAG)
1306 atomic_or(IORING_SQ_TASKRUN, &ctx->rings->sq_flags);
1307 return false;
1308}
1309
1310static int __io_run_local_work(struct io_ring_ctx *ctx, struct io_tw_state *ts,
1311 int min_events)
c0e0d6ba 1312{
c0e0d6ba 1313 struct llist_node *node;
c3f4d39e 1314 unsigned int loops = 0;
140102ae 1315 int ret = 0;
c0e0d6ba 1316
140102ae 1317 if (WARN_ON_ONCE(ctx->submitter_task != current))
c0e0d6ba 1318 return -EEXIST;
c3f4d39e
PB
1319 if (ctx->flags & IORING_SETUP_TASKRUN_FLAG)
1320 atomic_andnot(IORING_SQ_TASKRUN, &ctx->rings->sq_flags);
c0e0d6ba 1321again:
3af0356c
JA
1322 /*
1323 * llists are in reverse order, flip it back the right way before
1324 * running the pending items.
1325 */
1326 node = llist_reverse_order(io_llist_xchg(&ctx->work_llist, NULL));
c3f4d39e 1327 while (node) {
c0e0d6ba
DY
1328 struct llist_node *next = node->next;
1329 struct io_kiocb *req = container_of(node, struct io_kiocb,
1330 io_task_work.node);
c92fcfc2
JA
1331 INDIRECT_CALL_2(req->io_task_work.func,
1332 io_poll_task_func, io_req_rw_complete,
1333 req, ts);
c0e0d6ba
DY
1334 ret++;
1335 node = next;
1336 }
c3f4d39e 1337 loops++;
c0e0d6ba 1338
9fe3eaea 1339 if (io_run_local_work_continue(ctx, ret, min_events))
c0e0d6ba 1340 goto again;
92219afb
PB
1341 io_submit_flush_completions(ctx);
1342 if (io_run_local_work_continue(ctx, ret, min_events))
1343 goto again;
9fe3eaea 1344
f75d5036 1345 trace_io_uring_local_work_run(ctx, ret, loops);
c0e0d6ba 1346 return ret;
8ac5d85a
JA
1347}
1348
9fe3eaea
JA
1349static inline int io_run_local_work_locked(struct io_ring_ctx *ctx,
1350 int min_events)
360173ab 1351{
8e5b3b89 1352 struct io_tw_state ts = {};
360173ab
PB
1353
1354 if (llist_empty(&ctx->work_llist))
1355 return 0;
8e5b3b89 1356 return __io_run_local_work(ctx, &ts, min_events);
360173ab
PB
1357}
1358
9fe3eaea 1359static int io_run_local_work(struct io_ring_ctx *ctx, int min_events)
8ac5d85a 1360{
a282967c 1361 struct io_tw_state ts = {};
8ac5d85a
JA
1362 int ret;
1363
92219afb 1364 mutex_lock(&ctx->uring_lock);
9fe3eaea 1365 ret = __io_run_local_work(ctx, &ts, min_events);
92219afb 1366 mutex_unlock(&ctx->uring_lock);
8ac5d85a 1367 return ret;
c0e0d6ba
DY
1368}
1369
a282967c 1370static void io_req_task_cancel(struct io_kiocb *req, struct io_tw_state *ts)
c40f6379 1371{
a282967c 1372 io_tw_lock(req->ctx, ts);
973fc83f 1373 io_req_defer_failed(req, req->cqe.res);
c40f6379
JA
1374}
1375
a282967c 1376void io_req_task_submit(struct io_kiocb *req, struct io_tw_state *ts)
c40f6379 1377{
a282967c 1378 io_tw_lock(req->ctx, ts);
316319e8 1379 /* req->task == current here, checking PF_EXITING is safe */
6bb30855 1380 if (unlikely(req->task->flags & PF_EXITING))
973fc83f 1381 io_req_defer_failed(req, -EFAULT);
6bb30855 1382 else if (req->flags & REQ_F_FORCE_ASYNC)
6e6b8c62 1383 io_queue_iowq(req);
6bb30855
DY
1384 else
1385 io_queue_sqe(req);
c40f6379
JA
1386}
1387
59915143 1388void io_req_task_queue_fail(struct io_kiocb *req, int ret)
c40f6379 1389{
97b388d7 1390 io_req_set_res(req, ret, 0);
5b0a6acc 1391 req->io_task_work.func = io_req_task_cancel;
3fe07bcd 1392 io_req_task_work_add(req);
c40f6379
JA
1393}
1394
f3b44f92 1395void io_req_task_queue(struct io_kiocb *req)
a3df7698 1396{
5b0a6acc 1397 req->io_task_work.func = io_req_task_submit;
3fe07bcd 1398 io_req_task_work_add(req);
a3df7698
PB
1399}
1400
59915143 1401void io_queue_next(struct io_kiocb *req)
c69f8dbe 1402{
9b5f7bd9 1403 struct io_kiocb *nxt = io_req_find_next(req);
944e58bf
PB
1404
1405 if (nxt)
906a8c3f 1406 io_req_task_queue(nxt);
c69f8dbe
JL
1407}
1408
ec26c225
PB
1409static void io_free_batch_list(struct io_ring_ctx *ctx,
1410 struct io_wq_work_node *node)
3aa83bfb 1411 __must_hold(&ctx->uring_lock)
5af1d13e 1412{
3aa83bfb
PB
1413 do {
1414 struct io_kiocb *req = container_of(node, struct io_kiocb,
1415 comp_list);
2d6500d4 1416
a538be5b
PB
1417 if (unlikely(req->flags & IO_REQ_CLEAN_SLOW_FLAGS)) {
1418 if (req->flags & REQ_F_REFCOUNT) {
1419 node = req->comp_list.next;
1420 if (!req_ref_put_and_test(req))
1421 continue;
1422 }
b605a7fa
PB
1423 if ((req->flags & REQ_F_POLLED) && req->apoll) {
1424 struct async_poll *apoll = req->apoll;
1425
1426 if (apoll->double_poll)
1427 kfree(apoll->double_poll);
414d0f45 1428 if (!io_alloc_cache_put(&ctx->apoll_cache, apoll))
9731bc98 1429 kfree(apoll);
b605a7fa
PB
1430 req->flags &= ~REQ_F_POLLED;
1431 }
da1a08c5 1432 if (req->flags & IO_REQ_LINK_FLAGS)
57859f4d 1433 io_queue_next(req);
a538be5b
PB
1434 if (unlikely(req->flags & IO_REQ_CLEAN_FLAGS))
1435 io_clean_op(req);
c1e53a69 1436 }
17bc2837 1437 io_put_file(req);
c29006a2 1438 io_put_rsrc_node(ctx, req->rsrc_node);
2fdd6fb5 1439 io_put_task(req->task);
c29006a2 1440
c1e53a69 1441 node = req->comp_list.next;
fa05457a 1442 io_req_add_to_cache(req, ctx);
3aa83bfb 1443 } while (node);
7a743e22
PB
1444}
1445
ec26c225 1446void __io_submit_flush_completions(struct io_ring_ctx *ctx)
a141dd89 1447 __must_hold(&ctx->uring_lock)
905c172f 1448{
cd0ca2e0 1449 struct io_submit_state *state = &ctx->submit_state;
fa780334 1450 struct io_wq_work_node *node;
905c172f 1451
f66f7342 1452 __io_cq_lock(ctx);
fa780334 1453 __wq_list_for_each(node, &state->compl_reqs) {
d9dee430
PB
1454 struct io_kiocb *req = container_of(node, struct io_kiocb,
1455 comp_list);
3d4aeb9f 1456
f66f7342 1457 if (!(req->flags & REQ_F_CQE_SKIP) &&
00b0db56 1458 unlikely(!io_fill_cqe_req(ctx, req))) {
27122c07 1459 if (ctx->lockless_cq) {
f66f7342
PB
1460 spin_lock(&ctx->completion_lock);
1461 io_req_cqe_overflow(req);
1462 spin_unlock(&ctx->completion_lock);
1463 } else {
1464 io_req_cqe_overflow(req);
1465 }
1466 }
905c172f 1467 }
c98c81a4 1468 __io_cq_unlock_post(ctx);
d9dee430 1469
931147dd
DY
1470 if (!wq_list_empty(&ctx->submit_state.compl_reqs)) {
1471 io_free_batch_list(ctx, state->compl_reqs.first);
1472 INIT_WQ_LIST(&state->compl_reqs);
1473 }
902ce82c 1474 ctx->submit_state.cq_flush = false;
7a743e22
PB
1475}
1476
6c503150 1477static unsigned io_cqring_events(struct io_ring_ctx *ctx)
a3a0e43f
JA
1478{
1479 /* See comment at the top of this file */
1480 smp_rmb();
e23de15f 1481 return __io_cqring_events(ctx);
a3a0e43f
JA
1482}
1483
def596e9
JA
1484/*
1485 * We can't just wait for polled events to come to us, we have to actively
1486 * find and complete them.
1487 */
c072481d 1488static __cold void io_iopoll_try_reap_events(struct io_ring_ctx *ctx)
def596e9
JA
1489{
1490 if (!(ctx->flags & IORING_SETUP_IOPOLL))
1491 return;
1492
1493 mutex_lock(&ctx->uring_lock);
5eef4e87 1494 while (!wq_list_empty(&ctx->iopoll_list)) {
b2edc0a7 1495 /* let it sleep and repeat later if can't complete a request */
5ba3c874 1496 if (io_do_iopoll(ctx, true) == 0)
b2edc0a7 1497 break;
08f5439f
JA
1498 /*
1499 * Ensure we allow local-to-the-cpu processing to take place,
1500 * in this case we need to ensure that we reap all events.
3fcee5a6 1501 * Also let task_work, etc. to progress by releasing the mutex
08f5439f 1502 */
3fcee5a6
PB
1503 if (need_resched()) {
1504 mutex_unlock(&ctx->uring_lock);
1505 cond_resched();
1506 mutex_lock(&ctx->uring_lock);
1507 }
def596e9
JA
1508 }
1509 mutex_unlock(&ctx->uring_lock);
1510}
1511
7668b92a 1512static int io_iopoll_check(struct io_ring_ctx *ctx, long min)
def596e9 1513{
7668b92a 1514 unsigned int nr_events = 0;
155bc950 1515 unsigned long check_cq;
500f9fba 1516
8d09a88e
PB
1517 lockdep_assert_held(&ctx->uring_lock);
1518
76de6749
PB
1519 if (!io_allowed_run_tw(ctx))
1520 return -EEXIST;
1521
3a08576b
PB
1522 check_cq = READ_ONCE(ctx->check_cq);
1523 if (unlikely(check_cq)) {
1524 if (check_cq & BIT(IO_CHECK_CQ_OVERFLOW_BIT))
6b231248 1525 __io_cqring_overflow_flush(ctx, false);
3a08576b
PB
1526 /*
1527 * Similarly do not spin if we have not informed the user of any
1528 * dropped CQE.
1529 */
1530 if (check_cq & BIT(IO_CHECK_CQ_DROPPED_BIT))
1531 return -EBADR;
1532 }
f39c8a5b
PB
1533 /*
1534 * Don't enter poll loop if we already have events pending.
1535 * If we do, we can potentially be spinning for commands that
1536 * already triggered a CQE (eg in error).
1537 */
f39c8a5b 1538 if (io_cqring_events(ctx))
d487b43c 1539 return 0;
155bc950 1540
def596e9 1541 do {
9e4bef2b
JA
1542 int ret = 0;
1543
500f9fba
JA
1544 /*
1545 * If a submit got punted to a workqueue, we can have the
1546 * application entering polling for a command before it gets
1547 * issued. That app will hold the uring_lock for the duration
1548 * of the poll right here, so we need to take a breather every
1549 * now and then to ensure that the issue has a chance to add
1550 * the poll to the issued list. Otherwise we can spin here
1551 * forever, while the workqueue is stuck trying to acquire the
1552 * very same mutex.
1553 */
dac6a0ea
JA
1554 if (wq_list_empty(&ctx->iopoll_list) ||
1555 io_task_work_pending(ctx)) {
8f487ef2
PB
1556 u32 tail = ctx->cached_cq_tail;
1557
9fe3eaea 1558 (void) io_run_local_work_locked(ctx, min);
def596e9 1559
dac6a0ea
JA
1560 if (task_work_pending(current) ||
1561 wq_list_empty(&ctx->iopoll_list)) {
dac6a0ea 1562 mutex_unlock(&ctx->uring_lock);
9d54bd6a 1563 io_run_task_work();
dac6a0ea 1564 mutex_lock(&ctx->uring_lock);
dac6a0ea 1565 }
8f487ef2
PB
1566 /* some requests don't go through iopoll_list */
1567 if (tail != ctx->cached_cq_tail ||
5eef4e87 1568 wq_list_empty(&ctx->iopoll_list))
e9979b36 1569 break;
500f9fba 1570 }
5ba3c874 1571 ret = io_do_iopoll(ctx, !min);
9e4bef2b
JA
1572 if (unlikely(ret < 0))
1573 return ret;
dc314886
PB
1574
1575 if (task_sigpending(current))
1576 return -EINTR;
9e4bef2b 1577 if (need_resched())
5ba3c874 1578 break;
d487b43c 1579
5ba3c874 1580 nr_events += ret;
9e4bef2b 1581 } while (nr_events < min);
d487b43c 1582
9e4bef2b 1583 return 0;
def596e9 1584}
7012c815 1585
a282967c 1586void io_req_task_complete(struct io_kiocb *req, struct io_tw_state *ts)
8ef12efe 1587{
8e5b3b89 1588 io_req_complete_defer(req);
8ef12efe
JA
1589}
1590
def596e9
JA
1591/*
1592 * After the iocb has been issued, it's safe to be found on the poll list.
1593 * Adding the kiocb to the list AFTER submission ensures that we don't
f39c8a5b 1594 * find it from a io_do_iopoll() thread before the issuer is done
def596e9
JA
1595 * accessing the kiocb cookie.
1596 */
9882131c 1597static void io_iopoll_req_issued(struct io_kiocb *req, unsigned int issue_flags)
def596e9
JA
1598{
1599 struct io_ring_ctx *ctx = req->ctx;
3b44b371 1600 const bool needs_lock = issue_flags & IO_URING_F_UNLOCKED;
cb3d8972
PB
1601
1602 /* workqueue context doesn't hold uring_lock, grab it now */
3b44b371 1603 if (unlikely(needs_lock))
cb3d8972 1604 mutex_lock(&ctx->uring_lock);
def596e9
JA
1605
1606 /*
1607 * Track whether we have multiple files in our lists. This will impact
1608 * how we do polling eventually, not spinning if we're on potentially
1609 * different devices.
1610 */
5eef4e87 1611 if (wq_list_empty(&ctx->iopoll_list)) {
915b3dde
HX
1612 ctx->poll_multi_queue = false;
1613 } else if (!ctx->poll_multi_queue) {
def596e9
JA
1614 struct io_kiocb *list_req;
1615
5eef4e87
PB
1616 list_req = container_of(ctx->iopoll_list.first, struct io_kiocb,
1617 comp_list);
30da1b45 1618 if (list_req->file != req->file)
915b3dde 1619 ctx->poll_multi_queue = true;
def596e9
JA
1620 }
1621
1622 /*
1623 * For fast devices, IO may have already completed. If it has, add
1624 * it to the front so we find it first.
1625 */
65a6543d 1626 if (READ_ONCE(req->iopoll_completed))
5eef4e87 1627 wq_list_add_head(&req->comp_list, &ctx->iopoll_list);
def596e9 1628 else
5eef4e87 1629 wq_list_add_tail(&req->comp_list, &ctx->iopoll_list);
bdcd3eab 1630
3b44b371 1631 if (unlikely(needs_lock)) {
cb3d8972
PB
1632 /*
1633 * If IORING_SETUP_SQPOLL is enabled, sqes are either handle
1634 * in sq thread task context or in io worker task context. If
1635 * current task context is sq thread, we don't need to check
1636 * whether should wake up sq thread.
1637 */
1638 if ((ctx->flags & IORING_SETUP_SQPOLL) &&
1639 wq_has_sleeper(&ctx->sq_data->wait))
1640 wake_up(&ctx->sq_data->wait);
1641
1642 mutex_unlock(&ctx->uring_lock);
1643 }
def596e9
JA
1644}
1645
4bcb982c 1646io_req_flags_t io_file_get_flags(struct file *file)
88459b50 1647{
4bcb982c 1648 io_req_flags_t res = 0;
af197f50 1649
53cfd5ce 1650 if (S_ISREG(file_inode(file)->i_mode))
8487f083 1651 res |= REQ_F_ISREG;
b9a6c945 1652 if ((file->f_flags & O_NONBLOCK) || (file->f_mode & FMODE_NOWAIT))
8487f083 1653 res |= REQ_F_SUPPORT_NOWAIT;
88459b50 1654 return res;
2b188cc1
JA
1655}
1656
99f15d8d 1657bool io_alloc_async_data(struct io_kiocb *req)
3d9932a8 1658{
e10677a8
JA
1659 const struct io_issue_def *def = &io_issue_defs[req->opcode];
1660
1661 WARN_ON_ONCE(!def->async_size);
1662 req->async_data = kmalloc(def->async_size, GFP_KERNEL);
d886e185
PB
1663 if (req->async_data) {
1664 req->flags |= REQ_F_ASYNC_DATA;
1665 return false;
1666 }
1667 return true;
3d9932a8
XW
1668}
1669
9cf7c104
PB
1670static u32 io_get_sequence(struct io_kiocb *req)
1671{
a3dbdf54 1672 u32 seq = req->ctx->cached_sq_head;
963c6abb 1673 struct io_kiocb *cur;
9cf7c104 1674
a3dbdf54 1675 /* need original cached_sq_head, but it was increased for each req */
963c6abb 1676 io_for_each_link(cur, req)
a3dbdf54
PB
1677 seq--;
1678 return seq;
9cf7c104
PB
1679}
1680
c072481d 1681static __cold void io_drain_req(struct io_kiocb *req)
e276ae34 1682 __must_hold(&ctx->uring_lock)
de0617e4 1683{
a197f664 1684 struct io_ring_ctx *ctx = req->ctx;
27dc8338 1685 struct io_defer_entry *de;
f67676d1 1686 int ret;
e0eb71dc 1687 u32 seq = io_get_sequence(req);
3c19966d 1688
9d858b21 1689 /* Still need defer if there is pending req in defer list. */
e302f104 1690 spin_lock(&ctx->completion_lock);
5e371265 1691 if (!req_need_defer(req, seq) && list_empty_careful(&ctx->defer_list)) {
e302f104 1692 spin_unlock(&ctx->completion_lock);
e0eb71dc 1693queue:
10c66904 1694 ctx->drain_active = false;
e0eb71dc
PB
1695 io_req_task_queue(req);
1696 return;
10c66904 1697 }
e302f104 1698 spin_unlock(&ctx->completion_lock);
9cf7c104 1699
cbdcb435 1700 io_prep_async_link(req);
27dc8338 1701 de = kmalloc(sizeof(*de), GFP_KERNEL);
76cc33d7 1702 if (!de) {
1b48773f 1703 ret = -ENOMEM;
ef5c600a
DY
1704 io_req_defer_failed(req, ret);
1705 return;
76cc33d7 1706 }
2d28390a 1707
79ebeaee 1708 spin_lock(&ctx->completion_lock);
9cf7c104 1709 if (!req_need_defer(req, seq) && list_empty(&ctx->defer_list)) {
79ebeaee 1710 spin_unlock(&ctx->completion_lock);
27dc8338 1711 kfree(de);
e0eb71dc 1712 goto queue;
de0617e4
JA
1713 }
1714
48863ffd 1715 trace_io_uring_defer(req);
27dc8338 1716 de->req = req;
9cf7c104 1717 de->seq = seq;
27dc8338 1718 list_add_tail(&de->list, &ctx->defer_list);
79ebeaee 1719 spin_unlock(&ctx->completion_lock);
de0617e4
JA
1720}
1721
f4992544
JA
1722static bool io_assign_file(struct io_kiocb *req, const struct io_issue_def *def,
1723 unsigned int issue_flags)
6bf9c47a 1724{
f4992544 1725 if (req->file || !def->needs_file)
6bf9c47a
JA
1726 return true;
1727
1728 if (req->flags & REQ_F_FIXED_FILE)
cef216fc 1729 req->file = io_file_get_fixed(req, req->cqe.fd, issue_flags);
6bf9c47a 1730 else
cef216fc 1731 req->file = io_file_get_normal(req, req->cqe.fd);
6bf9c47a 1732
772f5e00 1733 return !!req->file;
6bf9c47a
JA
1734}
1735
889fca73 1736static int io_issue_sqe(struct io_kiocb *req, unsigned int issue_flags)
2b188cc1 1737{
a7dd2782 1738 const struct io_issue_def *def = &io_issue_defs[req->opcode];
5730b27e 1739 const struct cred *creds = NULL;
d625c6ee 1740 int ret;
2b188cc1 1741
f4992544 1742 if (unlikely(!io_assign_file(req, def, issue_flags)))
70152140
JA
1743 return -EBADF;
1744
6878b40e 1745 if (unlikely((req->flags & REQ_F_CREDS) && req->creds != current_cred()))
c10d1f98 1746 creds = override_creds(req->creds);
5730b27e 1747
fcde59fe 1748 if (!def->audit_skip)
5bd2182d
PM
1749 audit_uring_entry(req->opcode);
1750
0702e536 1751 ret = def->issue(req, issue_flags);
2b188cc1 1752
fcde59fe 1753 if (!def->audit_skip)
5bd2182d
PM
1754 audit_uring_exit(!ret, ret);
1755
5730b27e
JA
1756 if (creds)
1757 revert_creds(creds);
97b388d7 1758
75d7b3ae
PB
1759 if (ret == IOU_OK) {
1760 if (issue_flags & IO_URING_F_COMPLETE_DEFER)
9da070b1 1761 io_req_complete_defer(req);
75d7b3ae 1762 else
1bec951c 1763 io_req_complete_post(req, issue_flags);
97b388d7 1764
9b43ef3d
PB
1765 return 0;
1766 }
def596e9 1767
e0b23d99
PB
1768 if (ret == IOU_ISSUE_SKIP_COMPLETE) {
1769 ret = 0;
1770 io_arm_ltimeout(req);
def596e9 1771
e0b23d99
PB
1772 /* If the op doesn't have a file, we're not polling for it */
1773 if ((req->ctx->flags & IORING_SETUP_IOPOLL) && def->iopoll_queue)
1774 io_iopoll_req_issued(req, issue_flags);
1775 }
1776 return ret;
2b188cc1
JA
1777}
1778
a282967c 1779int io_poll_issue(struct io_kiocb *req, struct io_tw_state *ts)
329061d3 1780{
a282967c 1781 io_tw_lock(req->ctx, ts);
9a692451
DY
1782 return io_issue_sqe(req, IO_URING_F_NONBLOCK|IO_URING_F_MULTISHOT|
1783 IO_URING_F_COMPLETE_DEFER);
329061d3
JA
1784}
1785
c9f06aa7 1786struct io_wq_work *io_wq_free_work(struct io_wq_work *work)
ebc11b6c
PB
1787{
1788 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
247f97a5 1789 struct io_kiocb *nxt = NULL;
ebc11b6c 1790
247f97a5
PB
1791 if (req_ref_put_and_test(req)) {
1792 if (req->flags & IO_REQ_LINK_FLAGS)
1793 nxt = io_req_find_next(req);
1794 io_free_req(req);
1795 }
1796 return nxt ? &nxt->work : NULL;
ebc11b6c
PB
1797}
1798
c9f06aa7 1799void io_wq_submit_work(struct io_wq_work *work)
2b188cc1
JA
1800{
1801 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
a7dd2782 1802 const struct io_issue_def *def = &io_issue_defs[req->opcode];
e6aeb272 1803 unsigned int issue_flags = IO_URING_F_UNLOCKED | IO_URING_F_IOWQ;
d01905db 1804 bool needs_poll = false;
6bf9c47a 1805 int ret = 0, err = -ECANCELED;
2b188cc1 1806
23a6c9ac 1807 /* one will be dropped by ->io_wq_free_work() after returning to io-wq */
48dcd38d
PB
1808 if (!(req->flags & REQ_F_REFCOUNT))
1809 __io_req_set_refcount(req, 2);
1810 else
1811 req_ref_get(req);
5d5901a3 1812
cb2d344c 1813 io_arm_ltimeout(req);
6bf9c47a 1814
dadebc35 1815 /* either cancelled or io-wq is dying, so don't touch tctx->iowq */
d01905db 1816 if (work->flags & IO_WQ_WORK_CANCEL) {
0f8da75b 1817fail:
6bf9c47a 1818 io_req_task_queue_fail(req, err);
d01905db
PB
1819 return;
1820 }
f4992544 1821 if (!io_assign_file(req, def, issue_flags)) {
0f8da75b
PB
1822 err = -EBADF;
1823 work->flags |= IO_WQ_WORK_CANCEL;
1824 goto fail;
1825 }
31b51510 1826
e0e4ab52
PB
1827 /*
1828 * If DEFER_TASKRUN is set, it's only allowed to post CQEs from the
1829 * submitter task context. Final request completions are handed to the
1830 * right context, however this is not the case of auxiliary CQEs,
1831 * which is the main mean of operation for multishot requests.
1832 * Don't allow any multishot execution from io-wq. It's more restrictive
1833 * than necessary and also cleaner.
1834 */
1835 if (req->flags & REQ_F_APOLL_MULTISHOT) {
1836 err = -EBADFD;
1837 if (!io_file_can_poll(req))
1838 goto fail;
bee1d5be
JA
1839 if (req->file->f_flags & O_NONBLOCK ||
1840 req->file->f_mode & FMODE_NOWAIT) {
1841 err = -ECANCELED;
1842 if (io_arm_poll_handler(req, issue_flags) != IO_APOLL_OK)
1843 goto fail;
1844 return;
1845 } else {
1846 req->flags &= ~REQ_F_APOLL_MULTISHOT;
1847 }
e0e4ab52
PB
1848 }
1849
d01905db 1850 if (req->flags & REQ_F_FORCE_ASYNC) {
afb7f56f
PB
1851 bool opcode_poll = def->pollin || def->pollout;
1852
95041b93 1853 if (opcode_poll && io_file_can_poll(req)) {
afb7f56f 1854 needs_poll = true;
d01905db 1855 issue_flags |= IO_URING_F_NONBLOCK;
afb7f56f 1856 }
561fb04a 1857 }
31b51510 1858
d01905db
PB
1859 do {
1860 ret = io_issue_sqe(req, issue_flags);
1861 if (ret != -EAGAIN)
1862 break;
a9be2022
JA
1863
1864 /*
1865 * If REQ_F_NOWAIT is set, then don't wait or retry with
1866 * poll. -EAGAIN is final for that case.
1867 */
1868 if (req->flags & REQ_F_NOWAIT)
1869 break;
1870
d01905db
PB
1871 /*
1872 * We can get EAGAIN for iopolled IO even though we're
1873 * forcing a sync submission from here, since we can't
1874 * wait for request slots on the block side.
1875 */
1876 if (!needs_poll) {
e0deb6a0
PB
1877 if (!(req->ctx->flags & IORING_SETUP_IOPOLL))
1878 break;
45500dc4
PB
1879 if (io_wq_worker_stopped())
1880 break;
d01905db
PB
1881 cond_resched();
1882 continue;
90fa0288
HX
1883 }
1884
4d9237e3 1885 if (io_arm_poll_handler(req, issue_flags) == IO_APOLL_OK)
d01905db
PB
1886 return;
1887 /* aborted or ready, in either case retry blocking */
1888 needs_poll = false;
1889 issue_flags &= ~IO_URING_F_NONBLOCK;
1890 } while (1);
31b51510 1891
a3df7698 1892 /* avoid locking problems by failing it from a clean context */
97b388d7 1893 if (ret < 0)
a3df7698 1894 io_req_task_queue_fail(req, ret);
2b188cc1
JA
1895}
1896
531113bb
JA
1897inline struct file *io_file_get_fixed(struct io_kiocb *req, int fd,
1898 unsigned int issue_flags)
09bb8394 1899{
5106dd6e 1900 struct io_ring_ctx *ctx = req->ctx;
4bfb0c9a 1901 struct io_fixed_file *slot;
5106dd6e 1902 struct file *file = NULL;
09bb8394 1903
93f052cb 1904 io_ring_submit_lock(ctx, issue_flags);
5106dd6e 1905
ac177053 1906 if (unlikely((unsigned int)fd >= ctx->nr_user_files))
5106dd6e 1907 goto out;
ac177053 1908 fd = array_index_nospec(fd, ctx->nr_user_files);
4bfb0c9a 1909 slot = io_fixed_file_slot(&ctx->file_table, fd);
3f302388
JA
1910 if (!req->rsrc_node)
1911 __io_req_set_rsrc_node(req, ctx);
4bfb0c9a 1912 req->flags |= io_slot_flags(slot);
3f302388 1913 file = io_slot_file(slot);
5106dd6e 1914out:
93f052cb 1915 io_ring_submit_unlock(ctx, issue_flags);
ac177053
PB
1916 return file;
1917}
d44f554e 1918
531113bb 1919struct file *io_file_get_normal(struct io_kiocb *req, int fd)
ac177053 1920{
62906e89 1921 struct file *file = fget(fd);
ac177053 1922
48863ffd 1923 trace_io_uring_file_get(req, fd);
09bb8394 1924
ac177053 1925 /* we don't allow fixed io_uring files */
e5550a14 1926 if (file && io_is_uring_fops(file))
9cae36a0 1927 io_req_track_inflight(req);
8371adf5 1928 return file;
09bb8394
JA
1929}
1930
7bfa9bad 1931static void io_queue_async(struct io_kiocb *req, int ret)
d475a9a6
PB
1932 __must_hold(&req->ctx->uring_lock)
1933{
7bfa9bad
PB
1934 struct io_kiocb *linked_timeout;
1935
1936 if (ret != -EAGAIN || (req->flags & REQ_F_NOWAIT)) {
973fc83f 1937 io_req_defer_failed(req, ret);
7bfa9bad
PB
1938 return;
1939 }
1940
1941 linked_timeout = io_prep_linked_timeout(req);
d475a9a6 1942
4d9237e3 1943 switch (io_arm_poll_handler(req, 0)) {
d475a9a6 1944 case IO_APOLL_READY:
336d28a8 1945 io_kbuf_recycle(req, 0);
d475a9a6
PB
1946 io_req_task_queue(req);
1947 break;
1948 case IO_APOLL_ABORTED:
6436c770 1949 io_kbuf_recycle(req, 0);
6e6b8c62 1950 io_queue_iowq(req);
d475a9a6 1951 break;
b1c62645 1952 case IO_APOLL_OK:
b1c62645 1953 break;
d475a9a6
PB
1954 }
1955
1956 if (linked_timeout)
1957 io_queue_linked_timeout(linked_timeout);
1958}
1959
cbc2e203 1960static inline void io_queue_sqe(struct io_kiocb *req)
282cdc86 1961 __must_hold(&req->ctx->uring_lock)
2b188cc1 1962{
e0c5c576 1963 int ret;
2b188cc1 1964
c5eef2b9 1965 ret = io_issue_sqe(req, IO_URING_F_NONBLOCK|IO_URING_F_COMPLETE_DEFER);
193155c8 1966
491381ce
JA
1967 /*
1968 * We async punt it if the file wasn't marked NOWAIT, or if the file
1969 * doesn't support non-blocking read/write attempts
1970 */
e0b23d99 1971 if (unlikely(ret))
7bfa9bad 1972 io_queue_async(req, ret);
2b188cc1
JA
1973}
1974
4652fe3f 1975static void io_queue_sqe_fallback(struct io_kiocb *req)
282cdc86 1976 __must_hold(&req->ctx->uring_lock)
4fe2c963 1977{
17b147f6
PB
1978 if (unlikely(req->flags & REQ_F_FAIL)) {
1979 /*
1980 * We don't submit, fail them all, for that replace hardlinks
1981 * with normal links. Extra REQ_F_LINK is tolerated.
1982 */
1983 req->flags &= ~REQ_F_HARDLINK;
1984 req->flags |= REQ_F_LINK;
973fc83f 1985 io_req_defer_failed(req, req->cqe.res);
76cc33d7 1986 } else {
ef5c600a
DY
1987 if (unlikely(req->ctx->drain_active))
1988 io_drain_req(req);
76cc33d7 1989 else
6e6b8c62 1990 io_queue_iowq(req);
ce35a47a 1991 }
4fe2c963
JL
1992}
1993
b16fed66
PB
1994/*
1995 * Check SQE restrictions (opcode and flags).
1996 *
1997 * Returns 'true' if SQE is allowed, 'false' otherwise.
1998 */
1999static inline bool io_check_restriction(struct io_ring_ctx *ctx,
2000 struct io_kiocb *req,
2001 unsigned int sqe_flags)
4fe2c963 2002{
b16fed66
PB
2003 if (!test_bit(req->opcode, ctx->restrictions.sqe_op))
2004 return false;
2005
2006 if ((sqe_flags & ctx->restrictions.sqe_flags_required) !=
2007 ctx->restrictions.sqe_flags_required)
2008 return false;
2009
2010 if (sqe_flags & ~(ctx->restrictions.sqe_flags_allowed |
2011 ctx->restrictions.sqe_flags_required))
2012 return false;
2013
2014 return true;
4fe2c963
JL
2015}
2016
22b2ca31
PB
2017static void io_init_req_drain(struct io_kiocb *req)
2018{
2019 struct io_ring_ctx *ctx = req->ctx;
2020 struct io_kiocb *head = ctx->submit_state.link.head;
2021
2022 ctx->drain_active = true;
2023 if (head) {
2024 /*
2025 * If we need to drain a request in the middle of a link, drain
2026 * the head request and the next request/link after the current
2027 * link. Considering sequential execution of links,
b6c7db32 2028 * REQ_F_IO_DRAIN will be maintained for every request of our
22b2ca31
PB
2029 * link.
2030 */
b6c7db32 2031 head->flags |= REQ_F_IO_DRAIN | REQ_F_FORCE_ASYNC;
22b2ca31
PB
2032 ctx->drain_next = true;
2033 }
2034}
2035
e21e1c45
JA
2036static __cold int io_init_fail_req(struct io_kiocb *req, int err)
2037{
2038 /* ensure per-opcode data is cleared if we fail before prep */
2039 memset(&req->cmd.data, 0, sizeof(req->cmd.data));
2040 return err;
2041}
2042
b16fed66
PB
2043static int io_init_req(struct io_ring_ctx *ctx, struct io_kiocb *req,
2044 const struct io_uring_sqe *sqe)
282cdc86 2045 __must_hold(&ctx->uring_lock)
b16fed66 2046{
a7dd2782 2047 const struct io_issue_def *def;
b16fed66 2048 unsigned int sqe_flags;
fc0ae024 2049 int personality;
4a04d1d1 2050 u8 opcode;
b16fed66 2051
864ea921 2052 /* req is partially pre-initialised, see io_preinit_req() */
4a04d1d1 2053 req->opcode = opcode = READ_ONCE(sqe->opcode);
b16fed66 2054 /* same numerical values with corresponding REQ_F_*, safe to copy */
4bcb982c
JA
2055 sqe_flags = READ_ONCE(sqe->flags);
2056 req->flags = (io_req_flags_t) sqe_flags;
cef216fc 2057 req->cqe.user_data = READ_ONCE(sqe->user_data);
b16fed66 2058 req->file = NULL;
c1bdf8ed 2059 req->rsrc_node = NULL;
b16fed66 2060 req->task = current;
f4a1254f 2061 req->cancel_seq_set = false;
b16fed66 2062
4a04d1d1
PB
2063 if (unlikely(opcode >= IORING_OP_LAST)) {
2064 req->opcode = 0;
e21e1c45 2065 return io_init_fail_req(req, -EINVAL);
4a04d1d1 2066 }
a7dd2782 2067 def = &io_issue_defs[opcode];
68fe256a
PB
2068 if (unlikely(sqe_flags & ~SQE_COMMON_FLAGS)) {
2069 /* enforce forwards compatibility on users */
2070 if (sqe_flags & ~SQE_VALID_FLAGS)
e21e1c45 2071 return io_init_fail_req(req, -EINVAL);
4e906702 2072 if (sqe_flags & IOSQE_BUFFER_SELECT) {
fcde59fe 2073 if (!def->buffer_select)
e21e1c45 2074 return io_init_fail_req(req, -EOPNOTSUPP);
4e906702
JA
2075 req->buf_index = READ_ONCE(sqe->buf_group);
2076 }
5562a8d7
PB
2077 if (sqe_flags & IOSQE_CQE_SKIP_SUCCESS)
2078 ctx->drain_disabled = true;
2079 if (sqe_flags & IOSQE_IO_DRAIN) {
2080 if (ctx->drain_disabled)
e21e1c45 2081 return io_init_fail_req(req, -EOPNOTSUPP);
22b2ca31 2082 io_init_req_drain(req);
5562a8d7 2083 }
2a56a9bd
PB
2084 }
2085 if (unlikely(ctx->restricted || ctx->drain_active || ctx->drain_next)) {
2086 if (ctx->restricted && !io_check_restriction(ctx, req, sqe_flags))
e21e1c45 2087 return io_init_fail_req(req, -EACCES);
2a56a9bd
PB
2088 /* knock it to the slow queue path, will be drained there */
2089 if (ctx->drain_active)
2090 req->flags |= REQ_F_FORCE_ASYNC;
2091 /* if there is no link, we're at "next" request and need to drain */
2092 if (unlikely(ctx->drain_next) && !ctx->submit_state.link.head) {
2093 ctx->drain_next = false;
2094 ctx->drain_active = true;
b6c7db32 2095 req->flags |= REQ_F_IO_DRAIN | REQ_F_FORCE_ASYNC;
2a56a9bd 2096 }
68fe256a 2097 }
b16fed66 2098
fcde59fe 2099 if (!def->ioprio && sqe->ioprio)
e21e1c45 2100 return io_init_fail_req(req, -EINVAL);
fcde59fe 2101 if (!def->iopoll && (ctx->flags & IORING_SETUP_IOPOLL))
e21e1c45 2102 return io_init_fail_req(req, -EINVAL);
73911426 2103
fcde59fe 2104 if (def->needs_file) {
6d63416d
PB
2105 struct io_submit_state *state = &ctx->submit_state;
2106
cef216fc 2107 req->cqe.fd = READ_ONCE(sqe->fd);
6bf9c47a 2108
6d63416d
PB
2109 /*
2110 * Plug now if we have more than 2 IO left after this, and the
2111 * target is potentially a read/write to block based storage.
2112 */
fcde59fe 2113 if (state->need_plug && def->plug) {
6d63416d
PB
2114 state->plug_started = true;
2115 state->need_plug = false;
5ca7a8b3 2116 blk_start_plug_nr_ios(&state->plug, state->submit_nr);
6d63416d 2117 }
b16fed66 2118 }
863e0560 2119
003e8dcc
JA
2120 personality = READ_ONCE(sqe->personality);
2121 if (personality) {
cdab10bf
LT
2122 int ret;
2123
c10d1f98
PB
2124 req->creds = xa_load(&ctx->personalities, personality);
2125 if (!req->creds)
e21e1c45 2126 return io_init_fail_req(req, -EINVAL);
c10d1f98 2127 get_cred(req->creds);
cdc1404a
PM
2128 ret = security_uring_override_creds(req->creds);
2129 if (ret) {
2130 put_cred(req->creds);
e21e1c45 2131 return io_init_fail_req(req, ret);
cdc1404a 2132 }
b8e64b53 2133 req->flags |= REQ_F_CREDS;
003e8dcc 2134 }
b16fed66 2135
0702e536 2136 return def->prep(req, sqe);
b16fed66
PB
2137}
2138
df3becde
PB
2139static __cold int io_submit_fail_init(const struct io_uring_sqe *sqe,
2140 struct io_kiocb *req, int ret)
2141{
2142 struct io_ring_ctx *ctx = req->ctx;
2143 struct io_submit_link *link = &ctx->submit_state.link;
2144 struct io_kiocb *head = link->head;
2145
48863ffd 2146 trace_io_uring_req_failed(sqe, req, ret);
df3becde
PB
2147
2148 /*
2149 * Avoid breaking links in the middle as it renders links with SQPOLL
2150 * unusable. Instead of failing eagerly, continue assembling the link if
2151 * applicable and mark the head with REQ_F_FAIL. The link flushing code
2152 * should find the flag and handle the rest.
2153 */
2154 req_fail_link_node(req, ret);
2155 if (head && !(head->flags & REQ_F_FAIL))
2156 req_fail_link_node(head, -ECANCELED);
2157
2158 if (!(req->flags & IO_REQ_LINK_FLAGS)) {
2159 if (head) {
2160 link->last->link = req;
2161 link->head = NULL;
2162 req = head;
2163 }
2164 io_queue_sqe_fallback(req);
2165 return ret;
2166 }
2167
2168 if (head)
2169 link->last->link = req;
2170 else
2171 link->head = req;
2172 link->last = req;
2173 return 0;
2174}
2175
2176static inline int io_submit_sqe(struct io_ring_ctx *ctx, struct io_kiocb *req,
a1ab7b35 2177 const struct io_uring_sqe *sqe)
282cdc86 2178 __must_hold(&ctx->uring_lock)
9e645e11 2179{
a1ab7b35 2180 struct io_submit_link *link = &ctx->submit_state.link;
ef4ff581 2181 int ret;
9e645e11 2182
a6b8cadc 2183 ret = io_init_req(ctx, req, sqe);
df3becde
PB
2184 if (unlikely(ret))
2185 return io_submit_fail_init(sqe, req, ret);
441b8a78 2186
2ad57931 2187 trace_io_uring_submit_req(req);
a6b8cadc 2188
9e645e11
JA
2189 /*
2190 * If we already have a head request, queue this one for async
2191 * submittal once the head completes. If we don't have a head but
2192 * IOSQE_IO_LINK is set in the sqe, start a new head. This one will be
2193 * submitted sync once the chain is complete. If none of those
2194 * conditions are true (normal request), then just queue it.
2195 */
924a07e4 2196 if (unlikely(link->head)) {
48863ffd 2197 trace_io_uring_link(req, link->head);
f2f87370 2198 link->last->link = req;
863e0560 2199 link->last = req;
32fe525b 2200
da1a08c5 2201 if (req->flags & IO_REQ_LINK_FLAGS)
f15a3431 2202 return 0;
df3becde
PB
2203 /* last request of the link, flush it */
2204 req = link->head;
f15a3431 2205 link->head = NULL;
924a07e4
PB
2206 if (req->flags & (REQ_F_FORCE_ASYNC | REQ_F_FAIL))
2207 goto fallback;
2208
2209 } else if (unlikely(req->flags & (IO_REQ_LINK_FLAGS |
2210 REQ_F_FORCE_ASYNC | REQ_F_FAIL))) {
2211 if (req->flags & IO_REQ_LINK_FLAGS) {
2212 link->head = req;
2213 link->last = req;
2214 } else {
2215fallback:
2216 io_queue_sqe_fallback(req);
2217 }
f15a3431 2218 return 0;
9e645e11 2219 }
2e6e1fde 2220
f15a3431 2221 io_queue_sqe(req);
1d4240cc 2222 return 0;
9e645e11
JA
2223}
2224
9a56a232
JA
2225/*
2226 * Batched submission is done, ensure local IO is flushed out.
2227 */
553deffd 2228static void io_submit_state_end(struct io_ring_ctx *ctx)
9a56a232 2229{
553deffd
PB
2230 struct io_submit_state *state = &ctx->submit_state;
2231
e126391c
PB
2232 if (unlikely(state->link.head))
2233 io_queue_sqe_fallback(state->link.head);
553deffd 2234 /* flush only after queuing links as they can generate completions */
c450178d 2235 io_submit_flush_completions(ctx);
27926b68
JA
2236 if (state->plug_started)
2237 blk_finish_plug(&state->plug);
9a56a232
JA
2238}
2239
2240/*
2241 * Start submission side cache.
2242 */
2243static void io_submit_state_start(struct io_submit_state *state,
ba88ff11 2244 unsigned int max_ios)
9a56a232 2245{
27926b68 2246 state->plug_started = false;
4b628aeb 2247 state->need_plug = max_ios > 2;
5ca7a8b3 2248 state->submit_nr = max_ios;
a1ab7b35
PB
2249 /* set only head, no need to init link_last in advance */
2250 state->link.head = NULL;
9a56a232
JA
2251}
2252
2b188cc1
JA
2253static void io_commit_sqring(struct io_ring_ctx *ctx)
2254{
75b28aff 2255 struct io_rings *rings = ctx->rings;
2b188cc1 2256
caf582c6
PB
2257 /*
2258 * Ensure any loads from the SQEs are done at this point,
2259 * since once we write the new head, the application could
2260 * write new data to them.
2261 */
2262 smp_store_release(&rings->sq.head, ctx->cached_sq_head);
2b188cc1
JA
2263}
2264
2b188cc1 2265/*
dd9ae8a0 2266 * Fetch an sqe, if one is available. Note this returns a pointer to memory
2b188cc1
JA
2267 * that is mapped by userspace. This means that care needs to be taken to
2268 * ensure that reads are stable, as we cannot rely on userspace always
2269 * being a good citizen. If members of the sqe are validated and then later
2270 * used, it's important that those reads are done through READ_ONCE() to
2271 * prevent a re-load down the line.
2272 */
b5083dfa 2273static bool io_get_sqe(struct io_ring_ctx *ctx, const struct io_uring_sqe **sqe)
2b188cc1 2274{
2af89abd
PB
2275 unsigned mask = ctx->sq_entries - 1;
2276 unsigned head = ctx->cached_sq_head++ & mask;
2277
2278 if (!(ctx->flags & IORING_SETUP_NO_SQARRAY)) {
2279 head = READ_ONCE(ctx->sq_array[head]);
2280 if (unlikely(head >= ctx->sq_entries)) {
2281 /* drop invalid entries */
2282 spin_lock(&ctx->completion_lock);
2283 ctx->cq_extra--;
2284 spin_unlock(&ctx->completion_lock);
2285 WRITE_ONCE(ctx->rings->sq_dropped,
2286 READ_ONCE(ctx->rings->sq_dropped) + 1);
2287 return false;
2288 }
2289 }
2b188cc1
JA
2290
2291 /*
2292 * The cached sq head (or cq tail) serves two purposes:
2293 *
2294 * 1) allows us to batch the cost of updating the user visible
2295 * head updates.
2296 * 2) allows the kernel side to track the head on its own, even
2297 * though the application is the one updating it.
2298 */
2b188cc1 2299
2af89abd
PB
2300 /* double index for 128-byte SQEs, twice as long */
2301 if (ctx->flags & IORING_SETUP_SQE128)
2302 head <<= 1;
2303 *sqe = &ctx->sq_sqes[head];
2304 return true;
709b302f
PB
2305}
2306
17437f31 2307int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr)
282cdc86 2308 __must_hold(&ctx->uring_lock)
6c271ce2 2309{
69629809 2310 unsigned int entries = io_sqring_entries(ctx);
8e6971a8
PB
2311 unsigned int left;
2312 int ret;
6c271ce2 2313
51d48dab 2314 if (unlikely(!entries))
69629809 2315 return 0;
ee7d46d9 2316 /* make sure SQ entry isn't read before tail */
e3ef728f 2317 ret = left = min(nr, entries);
8e6971a8
PB
2318 io_get_task_refs(left);
2319 io_submit_state_start(&ctx->submit_state, left);
6c271ce2 2320
69629809 2321 do {
3529d8c2 2322 const struct io_uring_sqe *sqe;
196be95c 2323 struct io_kiocb *req;
fb5ccc98 2324
c8576f3e 2325 if (unlikely(!io_alloc_req(ctx, &req)))
fb5ccc98 2326 break;
b5083dfa 2327 if (unlikely(!io_get_sqe(ctx, &sqe))) {
fa05457a 2328 io_req_add_to_cache(req, ctx);
4fccfcbb
PB
2329 break;
2330 }
6c271ce2 2331
1cd15904
PB
2332 /*
2333 * Continue submitting even for sqe failure if the
2334 * ring was setup with IORING_SETUP_SUBMIT_ALL
2335 */
2336 if (unlikely(io_submit_sqe(ctx, req, sqe)) &&
2337 !(ctx->flags & IORING_SETUP_SUBMIT_ALL)) {
2338 left--;
2339 break;
bcbb7bf6 2340 }
1cd15904 2341 } while (--left);
9466f437 2342
8e6971a8
PB
2343 if (unlikely(left)) {
2344 ret -= left;
2345 /* try again if it submitted nothing and can't allocate a req */
2346 if (!ret && io_req_cache_empty(ctx))
2347 ret = -EAGAIN;
2348 current->io_uring->cached_refs += left;
9466f437 2349 }
6c271ce2 2350
553deffd 2351 io_submit_state_end(ctx);
ae9428ca
PB
2352 /* Commit SQ ring head once we've consumed and submitted all SQEs */
2353 io_commit_sqring(ctx);
8e6971a8 2354 return ret;
6c271ce2
JA
2355}
2356
bda52162
JA
2357static int io_wake_function(struct wait_queue_entry *curr, unsigned int mode,
2358 int wake_flags, void *key)
2359{
bd550173 2360 struct io_wait_queue *iowq = container_of(curr, struct io_wait_queue, wq);
bda52162 2361
6c503150
PB
2362 /*
2363 * Cannot safely flush overflowed CQEs from here, ensure we wake up
2364 * the task, and the next invocation will do it.
2365 */
bd550173 2366 if (io_should_wake(iowq) || io_has_work(iowq->ctx))
6c503150
PB
2367 return autoremove_wake_function(curr, mode, wake_flags, key);
2368 return -1;
bda52162
JA
2369}
2370
c0e0d6ba 2371int io_run_task_work_sig(struct io_ring_ctx *ctx)
af9c1a44 2372{
1414d629 2373 if (!llist_empty(&ctx->work_llist)) {
2f413956 2374 __set_current_state(TASK_RUNNING);
9fe3eaea 2375 if (io_run_local_work(ctx, INT_MAX) > 0)
d246c759 2376 return 0;
1414d629
PB
2377 }
2378 if (io_run_task_work() > 0)
d246c759 2379 return 0;
c5020bc8
OL
2380 if (task_sigpending(current))
2381 return -EINTR;
2382 return 0;
af9c1a44
JA
2383}
2384
7b72d661
JA
2385static bool current_pending_io(void)
2386{
2387 struct io_uring_task *tctx = current->io_uring;
2388
2389 if (!tctx)
2390 return false;
2391 return percpu_counter_read_positive(&tctx->inflight);
2392}
2393
eeb60b9a
PB
2394/* when returns >0, the caller should retry */
2395static inline int io_cqring_wait_schedule(struct io_ring_ctx *ctx,
d33a39e5 2396 struct io_wait_queue *iowq)
eeb60b9a 2397{
6f0974ec 2398 int ret;
8a796565 2399
3fcf19d5
PB
2400 if (unlikely(READ_ONCE(ctx->check_cq)))
2401 return 1;
846072f1
PB
2402 if (unlikely(!llist_empty(&ctx->work_llist)))
2403 return 1;
2404 if (unlikely(test_thread_flag(TIF_NOTIFY_SIGNAL)))
2405 return 1;
2406 if (unlikely(task_sigpending(current)))
2407 return -EINTR;
2408 if (unlikely(io_should_wake(iowq)))
2409 return 0;
8a796565
AF
2410
2411 /*
7b72d661
JA
2412 * Mark us as being in io_wait if we have pending requests, so cpufreq
2413 * can take into account that the task is waiting for IO - turns out
2414 * to be important for low QD IO.
8a796565 2415 */
7b72d661
JA
2416 if (current_pending_io())
2417 current->in_iowait = 1;
8a796565 2418 ret = 0;
d33a39e5 2419 if (iowq->timeout == KTIME_MAX)
46ae7eef 2420 schedule();
d33a39e5 2421 else if (!schedule_hrtimeout(&iowq->timeout, HRTIMER_MODE_ABS))
8a796565 2422 ret = -ETIME;
6f0974ec 2423 current->in_iowait = 0;
8a796565 2424 return ret;
eeb60b9a
PB
2425}
2426
2b188cc1
JA
2427/*
2428 * Wait until events become available, if we don't already have some. The
2429 * application must reap them itself, as they reside on the shared cq ring.
2430 */
2431static int io_cqring_wait(struct io_ring_ctx *ctx, int min_events,
c73ebb68
HX
2432 const sigset_t __user *sig, size_t sigsz,
2433 struct __kernel_timespec __user *uts)
2b188cc1 2434{
90291099 2435 struct io_wait_queue iowq;
75b28aff 2436 struct io_rings *rings = ctx->rings;
c1d5a224 2437 int ret;
2b188cc1 2438
76de6749
PB
2439 if (!io_allowed_run_tw(ctx))
2440 return -EEXIST;
140102ae 2441 if (!llist_empty(&ctx->work_llist))
9fe3eaea 2442 io_run_local_work(ctx, min_events);
f36ba6cf 2443 io_run_task_work();
408024b9
PB
2444
2445 if (unlikely(test_bit(IO_CHECK_CQ_OVERFLOW_BIT, &ctx->check_cq)))
2446 io_cqring_do_overflow_flush(ctx);
f36ba6cf
PB
2447 if (__io_cqring_events_user(ctx) >= min_events)
2448 return 0;
2b188cc1 2449
90291099
PB
2450 init_waitqueue_func_entry(&iowq.wq, io_wake_function);
2451 iowq.wq.private = current;
2452 INIT_LIST_HEAD(&iowq.wq.entry);
2453 iowq.ctx = ctx;
bda52162 2454 iowq.nr_timeouts = atomic_read(&ctx->cq_timeouts);
5fd46178 2455 iowq.cq_tail = READ_ONCE(ctx->rings->cq.head) + min_events;
d33a39e5
PB
2456 iowq.timeout = KTIME_MAX;
2457
2458 if (uts) {
2459 struct timespec64 ts;
2460
2461 if (get_timespec64(&ts, uts))
2462 return -EFAULT;
8d0c12a8 2463
d33a39e5 2464 iowq.timeout = ktime_add_ns(timespec64_to_ktime(ts), ktime_get_ns());
8d0c12a8 2465 io_napi_adjust_timeout(ctx, &iowq, &ts);
d33a39e5 2466 }
90291099 2467
978e5c19
AI
2468 if (sig) {
2469#ifdef CONFIG_COMPAT
2470 if (in_compat_syscall())
2471 ret = set_compat_user_sigmask((const compat_sigset_t __user *)sig,
2472 sigsz);
2473 else
2474#endif
2475 ret = set_user_sigmask(sig, sigsz);
2476
2477 if (ret)
2478 return ret;
2479 }
2480
8d0c12a8
SR
2481 io_napi_busy_loop(ctx, &iowq);
2482
c826bd7a 2483 trace_io_uring_cqring_wait(ctx, min_events);
bda52162 2484 do {
9fe3eaea 2485 int nr_wait = (int) iowq.cq_tail - READ_ONCE(ctx->rings->cq.tail);
3fcf19d5
PB
2486 unsigned long check_cq;
2487
130bd686 2488 if (ctx->flags & IORING_SETUP_DEFER_TASKRUN) {
8751d154 2489 atomic_set(&ctx->cq_wait_nr, nr_wait);
130bd686
PB
2490 set_current_state(TASK_INTERRUPTIBLE);
2491 } else {
2492 prepare_to_wait_exclusive(&ctx->cq_wait, &iowq.wq,
2493 TASK_INTERRUPTIBLE);
2494 }
2495
d33a39e5 2496 ret = io_cqring_wait_schedule(ctx, &iowq);
130bd686 2497 __set_current_state(TASK_RUNNING);
b4bc35cf 2498 atomic_set(&ctx->cq_wait_nr, IO_CQ_WAKE_INIT);
d80c0f00 2499
846072f1
PB
2500 /*
2501 * Run task_work after scheduling and before io_should_wake().
2502 * If we got woken because of task_work being processed, run it
2503 * now rather than let the caller do another wait loop.
2504 */
2505 io_run_task_work();
2506 if (!llist_empty(&ctx->work_llist))
9fe3eaea 2507 io_run_local_work(ctx, nr_wait);
3fcf19d5 2508
6ff1407e
JA
2509 /*
2510 * Non-local task_work will be run on exit to userspace, but
2511 * if we're using DEFER_TASKRUN, then we could have waited
2512 * with a timeout for a number of requests. If the timeout
2513 * hits, we could have some requests ready to process. Ensure
2514 * this break is _after_ we have run task_work, to avoid
2515 * deferring running potentially pending requests until the
2516 * next time we wait for events.
2517 */
2518 if (ret < 0)
2519 break;
2520
3fcf19d5
PB
2521 check_cq = READ_ONCE(ctx->check_cq);
2522 if (unlikely(check_cq)) {
2523 /* let the caller flush overflows, retry */
326a9e48 2524 if (check_cq & BIT(IO_CHECK_CQ_OVERFLOW_BIT))
3fcf19d5 2525 io_cqring_do_overflow_flush(ctx);
3fcf19d5
PB
2526 if (check_cq & BIT(IO_CHECK_CQ_DROPPED_BIT)) {
2527 ret = -EBADR;
2528 break;
2529 }
2530 }
2531
846072f1
PB
2532 if (io_should_wake(&iowq)) {
2533 ret = 0;
35d90f95 2534 break;
846072f1 2535 }
ca0a2651 2536 cond_resched();
846072f1 2537 } while (1);
bda52162 2538
130bd686
PB
2539 if (!(ctx->flags & IORING_SETUP_DEFER_TASKRUN))
2540 finish_wait(&ctx->cq_wait, &iowq.wq);
b7db41c9 2541 restore_saved_sigmask_unless(ret == -EINTR);
2b188cc1 2542
75b28aff 2543 return READ_ONCE(rings->cq.head) == READ_ONCE(rings->cq.tail) ? ret : 0;
2b188cc1
JA
2544}
2545
03d89a2d
JA
2546static void *io_rings_map(struct io_ring_ctx *ctx, unsigned long uaddr,
2547 size_t size)
2548{
2549 return __io_uaddr_map(&ctx->ring_pages, &ctx->n_ring_pages, uaddr,
2550 size);
2551}
2552
2553static void *io_sqes_map(struct io_ring_ctx *ctx, unsigned long uaddr,
2554 size_t size)
2555{
2556 return __io_uaddr_map(&ctx->sqe_pages, &ctx->n_sqe_pages, uaddr,
2557 size);
2558}
2559
9c189eee
JA
2560static void io_rings_free(struct io_ring_ctx *ctx)
2561{
03d89a2d 2562 if (!(ctx->flags & IORING_SETUP_NO_MMAP)) {
87585b05
JA
2563 io_pages_unmap(ctx->rings, &ctx->ring_pages, &ctx->n_ring_pages,
2564 true);
2565 io_pages_unmap(ctx->sq_sqes, &ctx->sqe_pages, &ctx->n_sqe_pages,
2566 true);
03d89a2d
JA
2567 } else {
2568 io_pages_free(&ctx->ring_pages, ctx->n_ring_pages);
8b51a395 2569 ctx->n_ring_pages = 0;
03d89a2d 2570 io_pages_free(&ctx->sqe_pages, ctx->n_sqe_pages);
8b51a395 2571 ctx->n_sqe_pages = 0;
09fc75e0
JA
2572 vunmap(ctx->rings);
2573 vunmap(ctx->sq_sqes);
03d89a2d 2574 }
cef59d1e
PB
2575
2576 ctx->rings = NULL;
2577 ctx->sq_sqes = NULL;
9c189eee
JA
2578}
2579
73572984
JA
2580static unsigned long rings_size(struct io_ring_ctx *ctx, unsigned int sq_entries,
2581 unsigned int cq_entries, size_t *sq_offset)
6b06314c 2582{
73572984
JA
2583 struct io_rings *rings;
2584 size_t off, sq_array_size;
6b06314c 2585
73572984
JA
2586 off = struct_size(rings, cqes, cq_entries);
2587 if (off == SIZE_MAX)
2588 return SIZE_MAX;
2589 if (ctx->flags & IORING_SETUP_CQE32) {
2590 if (check_shl_overflow(off, 1, &off))
2591 return SIZE_MAX;
2592 }
ab409402 2593
73572984
JA
2594#ifdef CONFIG_SMP
2595 off = ALIGN(off, SMP_CACHE_BYTES);
2596 if (off == 0)
2597 return SIZE_MAX;
2598#endif
82fbcfa9 2599
2af89abd 2600 if (ctx->flags & IORING_SETUP_NO_SQARRAY) {
547988ad 2601 *sq_offset = SIZE_MAX;
2af89abd
PB
2602 return off;
2603 }
2604
547988ad 2605 *sq_offset = off;
82fbcfa9 2606
73572984
JA
2607 sq_array_size = array_size(sizeof(u32), sq_entries);
2608 if (sq_array_size == SIZE_MAX)
2609 return SIZE_MAX;
6b06314c 2610
73572984
JA
2611 if (check_add_overflow(off, sq_array_size, &off))
2612 return SIZE_MAX;
8bad28d8 2613
73572984 2614 return off;
8bad28d8
HX
2615}
2616
73572984 2617static void io_req_caches_free(struct io_ring_ctx *ctx)
2b188cc1 2618{
c8576f3e 2619 struct io_kiocb *req;
37f0e767 2620 int nr = 0;
bf019da7 2621
9a4fdbd8
JA
2622 mutex_lock(&ctx->uring_lock);
2623
88ab95be 2624 while (!io_req_cache_empty(ctx)) {
c8576f3e 2625 req = io_extract_req(ctx);
c2b6c6bc 2626 kmem_cache_free(req_cachep, req);
37f0e767 2627 nr++;
c2b6c6bc 2628 }
37f0e767
PB
2629 if (nr)
2630 percpu_ref_put_many(&ctx->refs, nr);
9a4fdbd8
JA
2631 mutex_unlock(&ctx->uring_lock);
2632}
2633
c072481d 2634static __cold void io_ring_ctx_free(struct io_ring_ctx *ctx)
2b188cc1 2635{
37d1e2e3 2636 io_sq_thread_finish(ctx);
43597aac 2637 /* __io_rsrc_put_work() may need uring_lock to progress, wait w/o it */
0b222eeb
PB
2638 if (WARN_ON_ONCE(!list_empty(&ctx->rsrc_ref_list)))
2639 return;
43597aac 2640
8bad28d8 2641 mutex_lock(&ctx->uring_lock);
43597aac 2642 if (ctx->buf_data)
bd54b6fe 2643 __io_sqe_buffers_unregister(ctx);
43597aac 2644 if (ctx->file_data)
08480400 2645 __io_sqe_files_unregister(ctx);
a85381d8 2646 io_cqring_overflow_kill(ctx);
9b402849 2647 io_eventfd_unregister(ctx);
414d0f45 2648 io_alloc_cache_free(&ctx->apoll_cache, kfree);
43e0bbbd 2649 io_alloc_cache_free(&ctx->netmsg_cache, io_netmsg_cache_free);
a9165b83 2650 io_alloc_cache_free(&ctx->rw_cache, io_rw_cache_free);
414d0f45 2651 io_alloc_cache_free(&ctx->uring_cache, kfree);
194bb58c 2652 io_futex_cache_free(ctx);
5a2e745d 2653 io_destroy_buffers(ctx);
b4a72c05 2654 mutex_unlock(&ctx->uring_lock);
07db298a
PB
2655 if (ctx->sq_creds)
2656 put_cred(ctx->sq_creds);
97bbdc06
PB
2657 if (ctx->submitter_task)
2658 put_task_struct(ctx->submitter_task);
def596e9 2659
a7f0ed5a
PB
2660 /* there are no registered resources left, nobody uses it */
2661 if (ctx->rsrc_node)
9eae8655 2662 io_rsrc_node_destroy(ctx, ctx->rsrc_node);
a7f0ed5a
PB
2663
2664 WARN_ON_ONCE(!list_empty(&ctx->rsrc_ref_list));
ef9dd637 2665 WARN_ON_ONCE(!list_empty(&ctx->ltimeout_list));
2b188cc1 2666
414d0f45 2667 io_alloc_cache_free(&ctx->rsrc_node_cache, kfree);
42b6419d
PB
2668 if (ctx->mm_account) {
2669 mmdrop(ctx->mm_account);
2670 ctx->mm_account = NULL;
2671 }
9c189eee 2672 io_rings_free(ctx);
2b188cc1
JA
2673
2674 percpu_ref_exit(&ctx->refs);
2b188cc1 2675 free_uid(ctx->user);
4010fec4 2676 io_req_caches_free(ctx);
e941894e
JA
2677 if (ctx->hash_map)
2678 io_wq_put_hash(ctx->hash_map);
8d0c12a8 2679 io_napi_free(ctx);
e6f89be6 2680 kfree(ctx->cancel_table.hbs);
9ca9fb24 2681 kfree(ctx->cancel_table_locked.hbs);
9cfc7e94 2682 xa_destroy(&ctx->io_bl_xa);
2b188cc1
JA
2683 kfree(ctx);
2684}
2685
bca39f39
PB
2686static __cold void io_activate_pollwq_cb(struct callback_head *cb)
2687{
2688 struct io_ring_ctx *ctx = container_of(cb, struct io_ring_ctx,
2689 poll_wq_task_work);
2690
2691 mutex_lock(&ctx->uring_lock);
2692 ctx->poll_activated = true;
2693 mutex_unlock(&ctx->uring_lock);
2694
2695 /*
2696 * Wake ups for some events between start of polling and activation
2697 * might've been lost due to loose synchronisation.
2698 */
2699 wake_up_all(&ctx->poll_wq);
2700 percpu_ref_put(&ctx->refs);
2701}
2702
c4320315 2703__cold void io_activate_pollwq(struct io_ring_ctx *ctx)
bca39f39
PB
2704{
2705 spin_lock(&ctx->completion_lock);
2706 /* already activated or in progress */
2707 if (ctx->poll_activated || ctx->poll_wq_task_work.func)
2708 goto out;
2709 if (WARN_ON_ONCE(!ctx->task_complete))
2710 goto out;
2711 if (!ctx->submitter_task)
2712 goto out;
2713 /*
2714 * with ->submitter_task only the submitter task completes requests, we
2715 * only need to sync with it, which is done by injecting a tw
2716 */
2717 init_task_work(&ctx->poll_wq_task_work, io_activate_pollwq_cb);
2718 percpu_ref_get(&ctx->refs);
2719 if (task_work_add(ctx->submitter_task, &ctx->poll_wq_task_work, TWA_SIGNAL))
2720 percpu_ref_put(&ctx->refs);
2721out:
2722 spin_unlock(&ctx->completion_lock);
2723}
2724
2b188cc1
JA
2725static __poll_t io_uring_poll(struct file *file, poll_table *wait)
2726{
2727 struct io_ring_ctx *ctx = file->private_data;
2728 __poll_t mask = 0;
2729
bca39f39
PB
2730 if (unlikely(!ctx->poll_activated))
2731 io_activate_pollwq(ctx);
2732
7b235dd8 2733 poll_wait(file, &ctx->poll_wq, wait);
4f7067c3
SB
2734 /*
2735 * synchronizes with barrier from wq_has_sleeper call in
2736 * io_commit_cqring
2737 */
2b188cc1 2738 smp_rmb();
90554200 2739 if (!io_sqring_full(ctx))
2b188cc1 2740 mask |= EPOLLOUT | EPOLLWRNORM;
ed670c3f
HX
2741
2742 /*
2743 * Don't flush cqring overflow list here, just do a simple check.
2744 * Otherwise there could possible be ABBA deadlock:
2745 * CPU0 CPU1
2746 * ---- ----
2747 * lock(&ctx->uring_lock);
2748 * lock(&ep->mtx);
2749 * lock(&ctx->uring_lock);
2750 * lock(&ep->mtx);
2751 *
2752 * Users may get EPOLLIN meanwhile seeing nothing in cqring, this
10d8bc35 2753 * pushes them to do the flush.
ed670c3f 2754 */
b4c98d59 2755
c10bb646 2756 if (__io_cqring_events_user(ctx) || io_has_work(ctx))
2b188cc1
JA
2757 mask |= EPOLLIN | EPOLLRDNORM;
2758
2759 return mask;
2760}
2761
d56d938b
PB
2762struct io_tctx_exit {
2763 struct callback_head task_work;
2764 struct completion completion;
baf186c4 2765 struct io_ring_ctx *ctx;
d56d938b
PB
2766};
2767
c072481d 2768static __cold void io_tctx_exit_cb(struct callback_head *cb)
d56d938b
PB
2769{
2770 struct io_uring_task *tctx = current->io_uring;
2771 struct io_tctx_exit *work;
2772
2773 work = container_of(cb, struct io_tctx_exit, task_work);
2774 /*
8d664282 2775 * When @in_cancel, we're in cancellation and it's racy to remove the
d56d938b 2776 * node. It'll be removed by the end of cancellation, just ignore it.
998b30c3
HM
2777 * tctx can be NULL if the queueing of this task_work raced with
2778 * work cancelation off the exec path.
d56d938b 2779 */
8d664282 2780 if (tctx && !atomic_read(&tctx->in_cancel))
eef51daa 2781 io_uring_del_tctx_node((unsigned long)work->ctx);
d56d938b
PB
2782 complete(&work->completion);
2783}
2784
c072481d 2785static __cold bool io_cancel_ctx_cb(struct io_wq_work *work, void *data)
28090c13
PB
2786{
2787 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
2788
2789 return req->ctx == data;
2790}
2791
c072481d 2792static __cold void io_ring_exit_work(struct work_struct *work)
85faa7b8 2793{
d56d938b 2794 struct io_ring_ctx *ctx = container_of(work, struct io_ring_ctx, exit_work);
b5bb3a24 2795 unsigned long timeout = jiffies + HZ * 60 * 5;
58d3be2c 2796 unsigned long interval = HZ / 20;
d56d938b
PB
2797 struct io_tctx_exit exit;
2798 struct io_tctx_node *node;
2799 int ret;
85faa7b8 2800
56952e91
JA
2801 /*
2802 * If we're doing polled IO and end up having requests being
2803 * submitted async (out-of-line), then completions can come in while
2804 * we're waiting for refs to drop. We need to reap these manually,
2805 * as nobody else will be looking for them.
2806 */
b2edc0a7 2807 do {
a85381d8
PB
2808 if (test_bit(IO_CHECK_CQ_OVERFLOW_BIT, &ctx->check_cq)) {
2809 mutex_lock(&ctx->uring_lock);
2810 io_cqring_overflow_kill(ctx);
2811 mutex_unlock(&ctx->uring_lock);
2812 }
2813
c0e0d6ba
DY
2814 if (ctx->flags & IORING_SETUP_DEFER_TASKRUN)
2815 io_move_task_work_from_local(ctx);
2816
affa87db
PB
2817 while (io_uring_try_cancel_requests(ctx, NULL, true))
2818 cond_resched();
2819
28090c13
PB
2820 if (ctx->sq_data) {
2821 struct io_sq_data *sqd = ctx->sq_data;
2822 struct task_struct *tsk;
2823
2824 io_sq_thread_park(sqd);
2825 tsk = sqd->thread;
2826 if (tsk && tsk->io_uring && tsk->io_uring->io_wq)
2827 io_wq_cancel_cb(tsk->io_uring->io_wq,
2828 io_cancel_ctx_cb, ctx, true);
2829 io_sq_thread_unpark(sqd);
2830 }
b5bb3a24 2831
37f0e767
PB
2832 io_req_caches_free(ctx);
2833
58d3be2c
PB
2834 if (WARN_ON_ONCE(time_after(jiffies, timeout))) {
2835 /* there is little hope left, don't run it too often */
2836 interval = HZ * 60;
2837 }
4826c594
JA
2838 /*
2839 * This is really an uninterruptible wait, as it has to be
2840 * complete. But it's also run from a kworker, which doesn't
2841 * take signals, so it's fine to make it interruptible. This
2842 * avoids scenarios where we knowingly can wait much longer
2843 * on completions, for example if someone does a SIGSTOP on
2844 * a task that needs to finish task_work to make this loop
2845 * complete. That's a synthetic situation that should not
2846 * cause a stuck task backtrace, and hence a potential panic
2847 * on stuck tasks if that is enabled.
2848 */
2849 } while (!wait_for_completion_interruptible_timeout(&ctx->ref_comp, interval));
d56d938b 2850
7f00651a
PB
2851 init_completion(&exit.completion);
2852 init_task_work(&exit.task_work, io_tctx_exit_cb);
2853 exit.ctx = ctx;
f7b32e78 2854
d56d938b
PB
2855 mutex_lock(&ctx->uring_lock);
2856 while (!list_empty(&ctx->tctx_list)) {
b5bb3a24
PB
2857 WARN_ON_ONCE(time_after(jiffies, timeout));
2858
d56d938b
PB
2859 node = list_first_entry(&ctx->tctx_list, struct io_tctx_node,
2860 ctx_node);
7f00651a
PB
2861 /* don't spin on a single task if cancellation failed */
2862 list_rotate_left(&ctx->tctx_list);
d56d938b
PB
2863 ret = task_work_add(node->task, &exit.task_work, TWA_SIGNAL);
2864 if (WARN_ON_ONCE(ret))
2865 continue;
d56d938b
PB
2866
2867 mutex_unlock(&ctx->uring_lock);
4826c594
JA
2868 /*
2869 * See comment above for
2870 * wait_for_completion_interruptible_timeout() on why this
2871 * wait is marked as interruptible.
2872 */
2873 wait_for_completion_interruptible(&exit.completion);
d56d938b
PB
2874 mutex_lock(&ctx->uring_lock);
2875 }
2876 mutex_unlock(&ctx->uring_lock);
79ebeaee
JA
2877 spin_lock(&ctx->completion_lock);
2878 spin_unlock(&ctx->completion_lock);
d56d938b 2879
d73a572d
PB
2880 /* pairs with RCU read section in io_req_local_work_add() */
2881 if (ctx->flags & IORING_SETUP_DEFER_TASKRUN)
2882 synchronize_rcu();
2883
85faa7b8
JA
2884 io_ring_ctx_free(ctx);
2885}
2886
c072481d 2887static __cold void io_ring_ctx_wait_and_kill(struct io_ring_ctx *ctx)
2b188cc1 2888{
61cf9370
MWO
2889 unsigned long index;
2890 struct creds *creds;
2891
2b188cc1
JA
2892 mutex_lock(&ctx->uring_lock);
2893 percpu_ref_kill(&ctx->refs);
61cf9370
MWO
2894 xa_for_each(&ctx->personalities, index, creds)
2895 io_unregister_personality(ctx, index);
2b188cc1
JA
2896 mutex_unlock(&ctx->uring_lock);
2897
dfbe5561
JA
2898 flush_delayed_work(&ctx->fallback_work);
2899
85faa7b8 2900 INIT_WORK(&ctx->exit_work, io_ring_exit_work);
fc666777
JA
2901 /*
2902 * Use system_unbound_wq to avoid spawning tons of event kworkers
2903 * if we're exiting a ton of rings at the same time. It just adds
2904 * noise and overhead, there's no discernable change in runtime
2905 * over using system_wq.
2906 */
73eaa2b5 2907 queue_work(iou_wq, &ctx->exit_work);
2b188cc1
JA
2908}
2909
2910static int io_uring_release(struct inode *inode, struct file *file)
2911{
2912 struct io_ring_ctx *ctx = file->private_data;
2913
2914 file->private_data = NULL;
2915 io_ring_ctx_wait_and_kill(ctx);
2916 return 0;
2917}
2918
f6edbabb
PB
2919struct io_task_cancel {
2920 struct task_struct *task;
3dd0c97a 2921 bool all;
f6edbabb 2922};
f254ac04 2923
f6edbabb 2924static bool io_cancel_task_cb(struct io_wq_work *work, void *data)
b711d4ea 2925{
9a472ef7 2926 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
f6edbabb 2927 struct io_task_cancel *cancel = data;
9a472ef7 2928
6af3f48b 2929 return io_match_task_safe(req, cancel->task, cancel->all);
b711d4ea
JA
2930}
2931
c072481d
PB
2932static __cold bool io_cancel_defer_files(struct io_ring_ctx *ctx,
2933 struct task_struct *task,
2934 bool cancel_all)
b7ddce3c 2935{
e1915f76 2936 struct io_defer_entry *de;
b7ddce3c
PB
2937 LIST_HEAD(list);
2938
79ebeaee 2939 spin_lock(&ctx->completion_lock);
b7ddce3c 2940 list_for_each_entry_reverse(de, &ctx->defer_list, list) {
6af3f48b 2941 if (io_match_task_safe(de->req, task, cancel_all)) {
b7ddce3c
PB
2942 list_cut_position(&list, &ctx->defer_list, &de->list);
2943 break;
2944 }
2945 }
79ebeaee 2946 spin_unlock(&ctx->completion_lock);
e1915f76
PB
2947 if (list_empty(&list))
2948 return false;
b7ddce3c
PB
2949
2950 while (!list_empty(&list)) {
2951 de = list_first_entry(&list, struct io_defer_entry, list);
2952 list_del_init(&de->list);
e276ae34 2953 io_req_task_queue_fail(de->req, -ECANCELED);
b7ddce3c
PB
2954 kfree(de);
2955 }
e1915f76 2956 return true;
b7ddce3c
PB
2957}
2958
c072481d 2959static __cold bool io_uring_try_cancel_iowq(struct io_ring_ctx *ctx)
1b00764f
PB
2960{
2961 struct io_tctx_node *node;
2962 enum io_wq_cancel cret;
2963 bool ret = false;
2964
2965 mutex_lock(&ctx->uring_lock);
2966 list_for_each_entry(node, &ctx->tctx_list, ctx_node) {
2967 struct io_uring_task *tctx = node->task->io_uring;
2968
2969 /*
2970 * io_wq will stay alive while we hold uring_lock, because it's
2971 * killed after ctx nodes, which requires to take the lock.
2972 */
2973 if (!tctx || !tctx->io_wq)
2974 continue;
2975 cret = io_wq_cancel_cb(tctx->io_wq, io_cancel_ctx_cb, ctx, true);
2976 ret |= (cret != IO_WQ_CANCEL_NOTFOUND);
2977 }
2978 mutex_unlock(&ctx->uring_lock);
2979
2980 return ret;
2981}
2982
affa87db 2983static __cold bool io_uring_try_cancel_requests(struct io_ring_ctx *ctx,
c072481d
PB
2984 struct task_struct *task,
2985 bool cancel_all)
9936c7c2 2986{
3dd0c97a 2987 struct io_task_cancel cancel = { .task = task, .all = cancel_all, };
1b00764f 2988 struct io_uring_task *tctx = task ? task->io_uring : NULL;
affa87db
PB
2989 enum io_wq_cancel cret;
2990 bool ret = false;
9936c7c2 2991
360cd42c
PB
2992 /* set it so io_req_local_work_add() would wake us up */
2993 if (ctx->flags & IORING_SETUP_DEFER_TASKRUN) {
2994 atomic_set(&ctx->cq_wait_nr, 1);
2995 smp_mb();
2996 }
2997
60053be8
PB
2998 /* failed during ring init, it couldn't have issued any requests */
2999 if (!ctx->rings)
affa87db 3000 return false;
60053be8 3001
affa87db
PB
3002 if (!task) {
3003 ret |= io_uring_try_cancel_iowq(ctx);
3004 } else if (tctx && tctx->io_wq) {
3005 /*
3006 * Cancels requests of all rings, not only @ctx, but
3007 * it's fine as the task is in exit/exec.
3008 */
3009 cret = io_wq_cancel_cb(tctx->io_wq, io_cancel_task_cb,
3010 &cancel, true);
3011 ret |= (cret != IO_WQ_CANCEL_NOTFOUND);
3012 }
9936c7c2 3013
affa87db
PB
3014 /* SQPOLL thread does its own polling */
3015 if ((!(ctx->flags & IORING_SETUP_SQPOLL) && cancel_all) ||
3016 (ctx->sq_data && ctx->sq_data->thread == current)) {
3017 while (!wq_list_empty(&ctx->iopoll_list)) {
3018 io_iopoll_try_reap_events(ctx);
3019 ret = true;
fcc926bb 3020 cond_resched();
9936c7c2 3021 }
9936c7c2 3022 }
affa87db 3023
140102ae
PB
3024 if ((ctx->flags & IORING_SETUP_DEFER_TASKRUN) &&
3025 io_allowed_defer_tw_run(ctx))
9fe3eaea 3026 ret |= io_run_local_work(ctx, INT_MAX) > 0;
affa87db
PB
3027 ret |= io_cancel_defer_files(ctx, task, cancel_all);
3028 mutex_lock(&ctx->uring_lock);
3029 ret |= io_poll_remove_all(ctx, task, cancel_all);
f31ecf67 3030 ret |= io_waitid_remove_all(ctx, task, cancel_all);
194bb58c 3031 ret |= io_futex_remove_all(ctx, task, cancel_all);
93b8cc60 3032 ret |= io_uring_try_cancel_uring_cmd(ctx, task, cancel_all);
affa87db
PB
3033 mutex_unlock(&ctx->uring_lock);
3034 ret |= io_kill_timeouts(ctx, task, cancel_all);
3035 if (task)
c0e0d6ba 3036 ret |= io_run_task_work() > 0;
25417623
JA
3037 else
3038 ret |= flush_delayed_work(&ctx->fallback_work);
affa87db 3039 return ret;
9936c7c2
PB
3040}
3041
3f48cf18 3042static s64 tctx_inflight(struct io_uring_task *tctx, bool tracked)
521d6a73 3043{
3f48cf18 3044 if (tracked)
9cae36a0 3045 return atomic_read(&tctx->inflight_tracked);
521d6a73
PB
3046 return percpu_counter_sum(&tctx->inflight);
3047}
3048
78cc687b
PB
3049/*
3050 * Find any io_uring ctx that this task has registered or done IO on, and cancel
78a78060 3051 * requests. @sqd should be not-null IFF it's an SQPOLL thread cancellation.
78cc687b 3052 */
17437f31 3053__cold void io_uring_cancel_generic(bool cancel_all, struct io_sq_data *sqd)
0e9ddb39 3054{
521d6a73 3055 struct io_uring_task *tctx = current->io_uring;
734551df 3056 struct io_ring_ctx *ctx;
360cd42c
PB
3057 struct io_tctx_node *node;
3058 unsigned long index;
0e9ddb39
PB
3059 s64 inflight;
3060 DEFINE_WAIT(wait);
fdaf083c 3061
78cc687b
PB
3062 WARN_ON_ONCE(sqd && sqd->thread != current);
3063
6d042ffb
PO
3064 if (!current->io_uring)
3065 return;
17a91051
PB
3066 if (tctx->io_wq)
3067 io_wq_exit_start(tctx->io_wq);
3068
8d664282 3069 atomic_inc(&tctx->in_cancel);
0e9ddb39 3070 do {
affa87db
PB
3071 bool loop = false;
3072
e9dbe221 3073 io_uring_drop_tctx_refs(current);
0e9ddb39 3074 /* read completions before cancelations */
78cc687b 3075 inflight = tctx_inflight(tctx, !cancel_all);
0e9ddb39
PB
3076 if (!inflight)
3077 break;
fdaf083c 3078
78cc687b 3079 if (!sqd) {
78cc687b
PB
3080 xa_for_each(&tctx->xa, index, node) {
3081 /* sqpoll task will cancel all its requests */
3082 if (node->ctx->sq_data)
3083 continue;
affa87db
PB
3084 loop |= io_uring_try_cancel_requests(node->ctx,
3085 current, cancel_all);
78cc687b
PB
3086 }
3087 } else {
3088 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list)
affa87db
PB
3089 loop |= io_uring_try_cancel_requests(ctx,
3090 current,
3091 cancel_all);
3092 }
3093
3094 if (loop) {
3095 cond_resched();
3096 continue;
78cc687b 3097 }
17a91051 3098
78a78060
JA
3099 prepare_to_wait(&tctx->wait, &wait, TASK_INTERRUPTIBLE);
3100 io_run_task_work();
e9dbe221 3101 io_uring_drop_tctx_refs(current);
360cd42c
PB
3102 xa_for_each(&tctx->xa, index, node) {
3103 if (!llist_empty(&node->ctx->work_llist)) {
3104 WARN_ON_ONCE(node->ctx->submitter_task &&
3105 node->ctx->submitter_task != current);
3106 goto end_wait;
3107 }
3108 }
0f212204 3109 /*
a1bb3cd5
PB
3110 * If we've seen completions, retry without waiting. This
3111 * avoids a race where a completion comes in before we did
3112 * prepare_to_wait().
0f212204 3113 */
3dd0c97a 3114 if (inflight == tctx_inflight(tctx, !cancel_all))
a1bb3cd5 3115 schedule();
360cd42c 3116end_wait:
f57555ed 3117 finish_wait(&tctx->wait, &wait);
d8a6df10 3118 } while (1);
de7f1d9e 3119
8452d4a6 3120 io_uring_clean_tctx(tctx);
3dd0c97a 3121 if (cancel_all) {
3cc7fdb9
PB
3122 /*
3123 * We shouldn't run task_works after cancel, so just leave
8d664282 3124 * ->in_cancel set for normal exit.
3cc7fdb9 3125 */
8d664282 3126 atomic_dec(&tctx->in_cancel);
3f48cf18
PB
3127 /* for exec all current's requests should be gone, kill tctx */
3128 __io_uring_free(current);
3129 }
44e728b8
PB
3130}
3131
f552a27a 3132void __io_uring_cancel(bool cancel_all)
78cc687b 3133{
f552a27a 3134 io_uring_cancel_generic(cancel_all, NULL);
78cc687b
PB
3135}
3136
f81440d3
PB
3137static int io_validate_ext_arg(unsigned flags, const void __user *argp, size_t argsz)
3138{
3139 if (flags & IORING_ENTER_EXT_ARG) {
3140 struct io_uring_getevents_arg arg;
3141
3142 if (argsz != sizeof(arg))
3143 return -EINVAL;
3144 if (copy_from_user(&arg, argp, sizeof(arg)))
3145 return -EFAULT;
3146 }
3147 return 0;
3148}
3149
c73ebb68
HX
3150static int io_get_ext_arg(unsigned flags, const void __user *argp, size_t *argsz,
3151 struct __kernel_timespec __user **ts,
3152 const sigset_t __user **sig)
3153{
3154 struct io_uring_getevents_arg arg;
3155
3156 /*
3157 * If EXT_ARG isn't set, then we have no timespec and the argp pointer
3158 * is just a pointer to the sigset_t.
3159 */
3160 if (!(flags & IORING_ENTER_EXT_ARG)) {
3161 *sig = (const sigset_t __user *) argp;
3162 *ts = NULL;
3163 return 0;
3164 }
3165
3166 /*
3167 * EXT_ARG is set - ensure we agree on the size of it and copy in our
3168 * timespec and sigset_t pointers if good.
3169 */
3170 if (*argsz != sizeof(arg))
3171 return -EINVAL;
3172 if (copy_from_user(&arg, argp, sizeof(arg)))
3173 return -EFAULT;
d2347b96
DY
3174 if (arg.pad)
3175 return -EINVAL;
c73ebb68
HX
3176 *sig = u64_to_user_ptr(arg.sigmask);
3177 *argsz = arg.sigmask_sz;
3178 *ts = u64_to_user_ptr(arg.ts);
3179 return 0;
3180}
3181
2b188cc1 3182SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
c73ebb68
HX
3183 u32, min_complete, u32, flags, const void __user *, argp,
3184 size_t, argsz)
2b188cc1
JA
3185{
3186 struct io_ring_ctx *ctx;
73363c26 3187 struct file *file;
33f993da 3188 long ret;
2b188cc1 3189
33f993da 3190 if (unlikely(flags & ~(IORING_ENTER_GETEVENTS | IORING_ENTER_SQ_WAKEUP |
e7a6c00d
JA
3191 IORING_ENTER_SQ_WAIT | IORING_ENTER_EXT_ARG |
3192 IORING_ENTER_REGISTERED_RING)))
2b188cc1
JA
3193 return -EINVAL;
3194
e7a6c00d
JA
3195 /*
3196 * Ring fd has been registered via IORING_REGISTER_RING_FDS, we
3197 * need only dereference our task private array to find it.
3198 */
3199 if (flags & IORING_ENTER_REGISTERED_RING) {
3200 struct io_uring_task *tctx = current->io_uring;
3201
3273c440 3202 if (unlikely(!tctx || fd >= IO_RINGFD_REG_MAX))
e7a6c00d
JA
3203 return -EINVAL;
3204 fd = array_index_nospec(fd, IO_RINGFD_REG_MAX);
73363c26
JA
3205 file = tctx->registered_rings[fd];
3206 if (unlikely(!file))
3273c440 3207 return -EBADF;
e7a6c00d 3208 } else {
73363c26
JA
3209 file = fget(fd);
3210 if (unlikely(!file))
3273c440
PB
3211 return -EBADF;
3212 ret = -EOPNOTSUPP;
73363c26 3213 if (unlikely(!io_is_uring_fops(file)))
fbb8bb02 3214 goto out;
e7a6c00d 3215 }
2b188cc1 3216
73363c26 3217 ctx = file->private_data;
7e84e1c7 3218 ret = -EBADFD;
33f993da 3219 if (unlikely(ctx->flags & IORING_SETUP_R_DISABLED))
7e84e1c7
SG
3220 goto out;
3221
6c271ce2
JA
3222 /*
3223 * For SQ polling, the thread will do all submissions and completions.
3224 * Just return the requested submit count, and wake the thread if
3225 * we were asked to.
3226 */
b2a9eada 3227 ret = 0;
6c271ce2 3228 if (ctx->flags & IORING_SETUP_SQPOLL) {
21f96522
JA
3229 if (unlikely(ctx->sq_data->thread == NULL)) {
3230 ret = -EOWNERDEAD;
04147488 3231 goto out;
21f96522 3232 }
6c271ce2 3233 if (flags & IORING_ENTER_SQ_WAKEUP)
534ca6d6 3234 wake_up(&ctx->sq_data->wait);
88b80534
QF
3235 if (flags & IORING_ENTER_SQ_WAIT)
3236 io_sqpoll_wait_sq(ctx);
3237
3e813c90 3238 ret = to_submit;
b2a9eada 3239 } else if (to_submit) {
eef51daa 3240 ret = io_uring_add_tctx_node(ctx);
0f212204
JA
3241 if (unlikely(ret))
3242 goto out;
7c504e65 3243
2b188cc1 3244 mutex_lock(&ctx->uring_lock);
3e813c90
DY
3245 ret = io_submit_sqes(ctx, to_submit);
3246 if (ret != to_submit) {
d487b43c 3247 mutex_unlock(&ctx->uring_lock);
7c504e65 3248 goto out;
d487b43c 3249 }
44f87745
PB
3250 if (flags & IORING_ENTER_GETEVENTS) {
3251 if (ctx->syscall_iopoll)
3252 goto iopoll_locked;
3253 /*
3254 * Ignore errors, we'll soon call io_cqring_wait() and
3255 * it should handle ownership problems if any.
3256 */
3257 if (ctx->flags & IORING_SETUP_DEFER_TASKRUN)
9fe3eaea 3258 (void)io_run_local_work_locked(ctx, min_complete);
44f87745 3259 }
d487b43c 3260 mutex_unlock(&ctx->uring_lock);
2b188cc1 3261 }
c0e0d6ba 3262
2b188cc1 3263 if (flags & IORING_ENTER_GETEVENTS) {
3e813c90 3264 int ret2;
c0e0d6ba 3265
773697b6 3266 if (ctx->syscall_iopoll) {
d487b43c
PB
3267 /*
3268 * We disallow the app entering submit/complete with
3269 * polling, but we still need to lock the ring to
3270 * prevent racing with polled issue that got punted to
3271 * a workqueue.
3272 */
3273 mutex_lock(&ctx->uring_lock);
3274iopoll_locked:
3e813c90
DY
3275 ret2 = io_validate_ext_arg(flags, argp, argsz);
3276 if (likely(!ret2)) {
3277 min_complete = min(min_complete,
3278 ctx->cq_entries);
3279 ret2 = io_iopoll_check(ctx, min_complete);
d487b43c
PB
3280 }
3281 mutex_unlock(&ctx->uring_lock);
def596e9 3282 } else {
f81440d3
PB
3283 const sigset_t __user *sig;
3284 struct __kernel_timespec __user *ts;
3285
3e813c90
DY
3286 ret2 = io_get_ext_arg(flags, argp, &argsz, &ts, &sig);
3287 if (likely(!ret2)) {
3288 min_complete = min(min_complete,
3289 ctx->cq_entries);
3290 ret2 = io_cqring_wait(ctx, min_complete, sig,
3291 argsz, ts);
3292 }
def596e9 3293 }
c73ebb68 3294
155bc950 3295 if (!ret) {
3e813c90 3296 ret = ret2;
2b188cc1 3297
155bc950
DY
3298 /*
3299 * EBADR indicates that one or more CQE were dropped.
3300 * Once the user has been informed we can clear the bit
3301 * as they are obviously ok with those drops.
3302 */
3303 if (unlikely(ret2 == -EBADR))
3304 clear_bit(IO_CHECK_CQ_DROPPED_BIT,
3305 &ctx->check_cq);
def596e9 3306 }
2b188cc1 3307 }
7c504e65 3308out:
73363c26
JA
3309 if (!(flags & IORING_ENTER_REGISTERED_RING))
3310 fput(file);
3e813c90 3311 return ret;
2b188cc1
JA
3312}
3313
3314static const struct file_operations io_uring_fops = {
3315 .release = io_uring_release,
3316 .mmap = io_uring_mmap,
f15ed8b4 3317 .get_unmapped_area = io_uring_get_unmapped_area,
6c5c240e 3318#ifndef CONFIG_MMU
6c5c240e
RP
3319 .mmap_capabilities = io_uring_nommu_mmap_capabilities,
3320#endif
2b188cc1 3321 .poll = io_uring_poll,
bebdb65e 3322#ifdef CONFIG_PROC_FS
87ce955b 3323 .show_fdinfo = io_uring_show_fdinfo,
bebdb65e 3324#endif
2b188cc1
JA
3325};
3326
92ac8bea
JA
3327bool io_is_uring_fops(struct file *file)
3328{
3329 return file->f_op == &io_uring_fops;
3330}
3331
c072481d
PB
3332static __cold int io_allocate_scq_urings(struct io_ring_ctx *ctx,
3333 struct io_uring_params *p)
2b188cc1 3334{
75b28aff
HV
3335 struct io_rings *rings;
3336 size_t size, sq_array_offset;
e27cef86 3337 void *ptr;
2b188cc1 3338
bd740481
JA
3339 /* make sure these are sane, as we already accounted them */
3340 ctx->sq_entries = p->sq_entries;
3341 ctx->cq_entries = p->cq_entries;
3342
baf9cb64 3343 size = rings_size(ctx, p->sq_entries, p->cq_entries, &sq_array_offset);
75b28aff
HV
3344 if (size == SIZE_MAX)
3345 return -EOVERFLOW;
3346
03d89a2d 3347 if (!(ctx->flags & IORING_SETUP_NO_MMAP))
3ab1db3c 3348 rings = io_pages_map(&ctx->ring_pages, &ctx->n_ring_pages, size);
03d89a2d
JA
3349 else
3350 rings = io_rings_map(ctx, p->cq_off.user_addr, size);
3351
e27cef86
JA
3352 if (IS_ERR(rings))
3353 return PTR_ERR(rings);
2b188cc1 3354
75b28aff 3355 ctx->rings = rings;
2af89abd
PB
3356 if (!(ctx->flags & IORING_SETUP_NO_SQARRAY))
3357 ctx->sq_array = (u32 *)((char *)rings + sq_array_offset);
75b28aff
HV
3358 rings->sq_ring_mask = p->sq_entries - 1;
3359 rings->cq_ring_mask = p->cq_entries - 1;
3360 rings->sq_ring_entries = p->sq_entries;
3361 rings->cq_ring_entries = p->cq_entries;
2b188cc1 3362
ebdeb7c0
JA
3363 if (p->flags & IORING_SETUP_SQE128)
3364 size = array_size(2 * sizeof(struct io_uring_sqe), p->sq_entries);
3365 else
3366 size = array_size(sizeof(struct io_uring_sqe), p->sq_entries);
eb065d30 3367 if (size == SIZE_MAX) {
9c189eee 3368 io_rings_free(ctx);
2b188cc1 3369 return -EOVERFLOW;
eb065d30 3370 }
2b188cc1 3371
03d89a2d 3372 if (!(ctx->flags & IORING_SETUP_NO_MMAP))
3ab1db3c 3373 ptr = io_pages_map(&ctx->sqe_pages, &ctx->n_sqe_pages, size);
03d89a2d
JA
3374 else
3375 ptr = io_sqes_map(ctx, p->sq_off.user_addr, size);
3376
e27cef86 3377 if (IS_ERR(ptr)) {
9c189eee 3378 io_rings_free(ctx);
e27cef86 3379 return PTR_ERR(ptr);
eb065d30 3380 }
2b188cc1 3381
e27cef86 3382 ctx->sq_sqes = ptr;
2b188cc1
JA
3383 return 0;
3384}
3385
6e76ac59 3386static int io_uring_install_fd(struct file *file)
9faadcc8 3387{
6e76ac59 3388 int fd;
9faadcc8
PB
3389
3390 fd = get_unused_fd_flags(O_RDWR | O_CLOEXEC);
3391 if (fd < 0)
3392 return fd;
9faadcc8
PB
3393 fd_install(fd, file);
3394 return fd;
3395}
3396
2b188cc1
JA
3397/*
3398 * Allocate an anonymous fd, this is what constitutes the application
3399 * visible backing of an io_uring instance. The application mmaps this
6e5e6d27 3400 * fd to gain access to the SQ/CQ ring details.
2b188cc1 3401 */
9faadcc8 3402static struct file *io_uring_get_file(struct io_ring_ctx *ctx)
2b188cc1 3403{
4f0b9194 3404 /* Create a new inode so that the LSM can block the creation. */
09d1c6a8 3405 return anon_inode_create_getfile("[io_uring]", &io_uring_fops, ctx,
91a9ab7c 3406 O_RDWR | O_CLOEXEC, NULL);
2b188cc1
JA
3407}
3408
c072481d
PB
3409static __cold int io_uring_create(unsigned entries, struct io_uring_params *p,
3410 struct io_uring_params __user *params)
2b188cc1 3411{
2b188cc1 3412 struct io_ring_ctx *ctx;
6e76ac59 3413 struct io_uring_task *tctx;
9faadcc8 3414 struct file *file;
2b188cc1
JA
3415 int ret;
3416
8110c1a6 3417 if (!entries)
2b188cc1 3418 return -EINVAL;
8110c1a6
JA
3419 if (entries > IORING_MAX_ENTRIES) {
3420 if (!(p->flags & IORING_SETUP_CLAMP))
3421 return -EINVAL;
3422 entries = IORING_MAX_ENTRIES;
3423 }
2b188cc1 3424
6e76ac59
JT
3425 if ((p->flags & IORING_SETUP_REGISTERED_FD_ONLY)
3426 && !(p->flags & IORING_SETUP_NO_MMAP))
3427 return -EINVAL;
3428
2b188cc1
JA
3429 /*
3430 * Use twice as many entries for the CQ ring. It's possible for the
3431 * application to drive a higher depth than the size of the SQ ring,
3432 * since the sqes are only used at submission time. This allows for
33a107f0
JA
3433 * some flexibility in overcommitting a bit. If the application has
3434 * set IORING_SETUP_CQSIZE, it will have passed in the desired number
3435 * of CQ ring entries manually.
2b188cc1
JA
3436 */
3437 p->sq_entries = roundup_pow_of_two(entries);
33a107f0
JA
3438 if (p->flags & IORING_SETUP_CQSIZE) {
3439 /*
3440 * If IORING_SETUP_CQSIZE is set, we do the same roundup
3441 * to a power-of-two, if it isn't already. We do NOT impose
3442 * any cq vs sq ring sizing.
3443 */
eb2667b3 3444 if (!p->cq_entries)
33a107f0 3445 return -EINVAL;
8110c1a6
JA
3446 if (p->cq_entries > IORING_MAX_CQ_ENTRIES) {
3447 if (!(p->flags & IORING_SETUP_CLAMP))
3448 return -EINVAL;
3449 p->cq_entries = IORING_MAX_CQ_ENTRIES;
3450 }
eb2667b3
JQ
3451 p->cq_entries = roundup_pow_of_two(p->cq_entries);
3452 if (p->cq_entries < p->sq_entries)
3453 return -EINVAL;
33a107f0
JA
3454 } else {
3455 p->cq_entries = 2 * p->sq_entries;
3456 }
2b188cc1 3457
2b188cc1 3458 ctx = io_ring_ctx_alloc(p);
62e398be 3459 if (!ctx)
2b188cc1 3460 return -ENOMEM;
773697b6 3461
e6aeb272
PB
3462 if ((ctx->flags & IORING_SETUP_DEFER_TASKRUN) &&
3463 !(ctx->flags & IORING_SETUP_IOPOLL) &&
3464 !(ctx->flags & IORING_SETUP_SQPOLL))
3465 ctx->task_complete = true;
3466
ec26c225
PB
3467 if (ctx->task_complete || (ctx->flags & IORING_SETUP_IOPOLL))
3468 ctx->lockless_cq = true;
3469
bca39f39
PB
3470 /*
3471 * lazy poll_wq activation relies on ->task_complete for synchronisation
3472 * purposes, see io_activate_pollwq()
3473 */
3474 if (!ctx->task_complete)
3475 ctx->poll_activated = true;
3476
773697b6
PB
3477 /*
3478 * When SETUP_IOPOLL and SETUP_SQPOLL are both enabled, user
3479 * space applications don't need to do io completion events
3480 * polling again, they can rely on io_sq_thread to do polling
3481 * work, which can reduce cpu usage and uring_lock contention.
3482 */
3483 if (ctx->flags & IORING_SETUP_IOPOLL &&
3484 !(ctx->flags & IORING_SETUP_SQPOLL))
3485 ctx->syscall_iopoll = 1;
3486
2b188cc1 3487 ctx->compat = in_compat_syscall();
6adc2272 3488 if (!ns_capable_noaudit(&init_user_ns, CAP_IPC_LOCK))
62e398be 3489 ctx->user = get_uid(current_user());
2aede0e4 3490
9f010507 3491 /*
e1169f06
JA
3492 * For SQPOLL, we just need a wakeup, always. For !SQPOLL, if
3493 * COOP_TASKRUN is set, then IPIs are never needed by the app.
9f010507 3494 */
e1169f06
JA
3495 ret = -EINVAL;
3496 if (ctx->flags & IORING_SETUP_SQPOLL) {
3497 /* IPI related flags don't make sense with SQPOLL */
ef060ea9 3498 if (ctx->flags & (IORING_SETUP_COOP_TASKRUN |
c0e0d6ba
DY
3499 IORING_SETUP_TASKRUN_FLAG |
3500 IORING_SETUP_DEFER_TASKRUN))
e1169f06 3501 goto err;
9f010507 3502 ctx->notify_method = TWA_SIGNAL_NO_IPI;
e1169f06
JA
3503 } else if (ctx->flags & IORING_SETUP_COOP_TASKRUN) {
3504 ctx->notify_method = TWA_SIGNAL_NO_IPI;
3505 } else {
c0e0d6ba
DY
3506 if (ctx->flags & IORING_SETUP_TASKRUN_FLAG &&
3507 !(ctx->flags & IORING_SETUP_DEFER_TASKRUN))
ef060ea9 3508 goto err;
9f010507 3509 ctx->notify_method = TWA_SIGNAL;
e1169f06 3510 }
9f010507 3511
c0e0d6ba
DY
3512 /*
3513 * For DEFER_TASKRUN we require the completion task to be the same as the
3514 * submission task. This implies that there is only one submitter, so enforce
3515 * that.
3516 */
3517 if (ctx->flags & IORING_SETUP_DEFER_TASKRUN &&
3518 !(ctx->flags & IORING_SETUP_SINGLE_ISSUER)) {
3519 goto err;
3520 }
3521
2aede0e4
JA
3522 /*
3523 * This is just grabbed for accounting purposes. When a process exits,
3524 * the mm is exited and dropped before the files, hence we need to hang
3525 * on to this mm purely for the purposes of being able to unaccount
3526 * memory (locked/pinned vm). It's not used for anything else.
3527 */
6b7898eb 3528 mmgrab(current->mm);
2aede0e4 3529 ctx->mm_account = current->mm;
6b7898eb 3530
2b188cc1
JA
3531 ret = io_allocate_scq_urings(ctx, p);
3532 if (ret)
3533 goto err;
3534
7e84e1c7 3535 ret = io_sq_offload_create(ctx, p);
2b188cc1
JA
3536 if (ret)
3537 goto err;
2933ae6e
PB
3538
3539 ret = io_rsrc_init(ctx);
47b228ce
PB
3540 if (ret)
3541 goto err;
2b188cc1 3542
75b28aff
HV
3543 p->sq_off.head = offsetof(struct io_rings, sq.head);
3544 p->sq_off.tail = offsetof(struct io_rings, sq.tail);
3545 p->sq_off.ring_mask = offsetof(struct io_rings, sq_ring_mask);
3546 p->sq_off.ring_entries = offsetof(struct io_rings, sq_ring_entries);
3547 p->sq_off.flags = offsetof(struct io_rings, sq_flags);
3548 p->sq_off.dropped = offsetof(struct io_rings, sq_dropped);
2af89abd
PB
3549 if (!(ctx->flags & IORING_SETUP_NO_SQARRAY))
3550 p->sq_off.array = (char *)ctx->sq_array - (char *)ctx->rings;
9b1b58ca 3551 p->sq_off.resv1 = 0;
03d89a2d
JA
3552 if (!(ctx->flags & IORING_SETUP_NO_MMAP))
3553 p->sq_off.user_addr = 0;
2b188cc1 3554
75b28aff
HV
3555 p->cq_off.head = offsetof(struct io_rings, cq.head);
3556 p->cq_off.tail = offsetof(struct io_rings, cq.tail);
3557 p->cq_off.ring_mask = offsetof(struct io_rings, cq_ring_mask);
3558 p->cq_off.ring_entries = offsetof(struct io_rings, cq_ring_entries);
3559 p->cq_off.overflow = offsetof(struct io_rings, cq_overflow);
3560 p->cq_off.cqes = offsetof(struct io_rings, cqes);
0d9b5b3a 3561 p->cq_off.flags = offsetof(struct io_rings, cq_flags);
9b1b58ca 3562 p->cq_off.resv1 = 0;
03d89a2d
JA
3563 if (!(ctx->flags & IORING_SETUP_NO_MMAP))
3564 p->cq_off.user_addr = 0;
ac90f249 3565
7f13657d
XW
3566 p->features = IORING_FEAT_SINGLE_MMAP | IORING_FEAT_NODROP |
3567 IORING_FEAT_SUBMIT_STABLE | IORING_FEAT_RW_CUR_POS |
5769a351 3568 IORING_FEAT_CUR_PERSONALITY | IORING_FEAT_FAST_POLL |
c73ebb68 3569 IORING_FEAT_POLL_32BITS | IORING_FEAT_SQPOLL_NONFIXED |
9690557e 3570 IORING_FEAT_EXT_ARG | IORING_FEAT_NATIVE_WORKERS |
c4212f3e 3571 IORING_FEAT_RSRC_TAGS | IORING_FEAT_CQE_SKIP |
2f9c9515
JA
3572 IORING_FEAT_LINKED_FILE | IORING_FEAT_REG_REG_RING |
3573 IORING_FEAT_RECVSEND_BUNDLE;
7f13657d
XW
3574
3575 if (copy_to_user(params, p, sizeof(*p))) {
3576 ret = -EFAULT;
3577 goto err;
3578 }
d1719f70 3579
7cae596b
DY
3580 if (ctx->flags & IORING_SETUP_SINGLE_ISSUER
3581 && !(ctx->flags & IORING_SETUP_R_DISABLED))
8579538c 3582 WRITE_ONCE(ctx->submitter_task, get_task_struct(current));
7cae596b 3583
9faadcc8
PB
3584 file = io_uring_get_file(ctx);
3585 if (IS_ERR(file)) {
3586 ret = PTR_ERR(file);
3587 goto err;
3588 }
3589
6e76ac59
JT
3590 ret = __io_uring_add_tctx_node(ctx);
3591 if (ret)
3592 goto err_fput;
3593 tctx = current->io_uring;
3594
044c1ab3
JA
3595 /*
3596 * Install ring fd as the very last thing, so we don't risk someone
3597 * having closed it before we finish setup
3598 */
6e76ac59
JT
3599 if (p->flags & IORING_SETUP_REGISTERED_FD_ONLY)
3600 ret = io_ring_add_registered_file(tctx, file, 0, IO_RINGFD_REG_MAX);
3601 else
3602 ret = io_uring_install_fd(file);
3603 if (ret < 0)
3604 goto err_fput;
044c1ab3 3605
c826bd7a 3606 trace_io_uring_create(ret, ctx, p->sq_entries, p->cq_entries, p->flags);
2b188cc1
JA
3607 return ret;
3608err:
3609 io_ring_ctx_wait_and_kill(ctx);
3610 return ret;
6e76ac59
JT
3611err_fput:
3612 fput(file);
3613 return ret;
2b188cc1
JA
3614}
3615
3616/*
3617 * Sets up an aio uring context, and returns the fd. Applications asks for a
3618 * ring size, we return the actual sq/cq ring sizes (among other things) in the
3619 * params structure passed in.
3620 */
3621static long io_uring_setup(u32 entries, struct io_uring_params __user *params)
3622{
3623 struct io_uring_params p;
2b188cc1
JA
3624 int i;
3625
3626 if (copy_from_user(&p, params, sizeof(p)))
3627 return -EFAULT;
3628 for (i = 0; i < ARRAY_SIZE(p.resv); i++) {
3629 if (p.resv[i])
3630 return -EINVAL;
3631 }
3632
6c271ce2 3633 if (p.flags & ~(IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL |
8110c1a6 3634 IORING_SETUP_SQ_AFF | IORING_SETUP_CQSIZE |
7e84e1c7 3635 IORING_SETUP_CLAMP | IORING_SETUP_ATTACH_WQ |
e1169f06 3636 IORING_SETUP_R_DISABLED | IORING_SETUP_SUBMIT_ALL |
ebdeb7c0 3637 IORING_SETUP_COOP_TASKRUN | IORING_SETUP_TASKRUN_FLAG |
97bbdc06 3638 IORING_SETUP_SQE128 | IORING_SETUP_CQE32 |
03d89a2d 3639 IORING_SETUP_SINGLE_ISSUER | IORING_SETUP_DEFER_TASKRUN |
2af89abd
PB
3640 IORING_SETUP_NO_MMAP | IORING_SETUP_REGISTERED_FD_ONLY |
3641 IORING_SETUP_NO_SQARRAY))
2b188cc1
JA
3642 return -EINVAL;
3643
ef060ea9 3644 return io_uring_create(entries, &p, params);
2b188cc1
JA
3645}
3646
76d3ccec
MR
3647static inline bool io_uring_allowed(void)
3648{
3649 int disabled = READ_ONCE(sysctl_io_uring_disabled);
3650 kgid_t io_uring_group;
3651
3652 if (disabled == 2)
3653 return false;
3654
3655 if (disabled == 0 || capable(CAP_SYS_ADMIN))
3656 return true;
3657
3658 io_uring_group = make_kgid(&init_user_ns, sysctl_io_uring_group);
3659 if (!gid_valid(io_uring_group))
3660 return false;
3661
3662 return in_group_p(io_uring_group);
3663}
3664
2b188cc1
JA
3665SYSCALL_DEFINE2(io_uring_setup, u32, entries,
3666 struct io_uring_params __user *, params)
3667{
76d3ccec
MR
3668 if (!io_uring_allowed())
3669 return -EPERM;
3670
2b188cc1
JA
3671 return io_uring_setup(entries, params);
3672}
3673
3674static int __init io_uring_init(void)
3675{
9c71d39a 3676#define __BUILD_BUG_VERIFY_OFFSET_SIZE(stype, eoffset, esize, ename) do { \
d7f62e82 3677 BUILD_BUG_ON(offsetof(stype, ename) != eoffset); \
9c71d39a 3678 BUILD_BUG_ON(sizeof_field(stype, ename) != esize); \
d7f62e82
SM
3679} while (0)
3680
3681#define BUILD_BUG_SQE_ELEM(eoffset, etype, ename) \
9c71d39a
SM
3682 __BUILD_BUG_VERIFY_OFFSET_SIZE(struct io_uring_sqe, eoffset, sizeof(etype), ename)
3683#define BUILD_BUG_SQE_ELEM_SIZE(eoffset, esize, ename) \
3684 __BUILD_BUG_VERIFY_OFFSET_SIZE(struct io_uring_sqe, eoffset, esize, ename)
d7f62e82
SM
3685 BUILD_BUG_ON(sizeof(struct io_uring_sqe) != 64);
3686 BUILD_BUG_SQE_ELEM(0, __u8, opcode);
3687 BUILD_BUG_SQE_ELEM(1, __u8, flags);
3688 BUILD_BUG_SQE_ELEM(2, __u16, ioprio);
3689 BUILD_BUG_SQE_ELEM(4, __s32, fd);
3690 BUILD_BUG_SQE_ELEM(8, __u64, off);
3691 BUILD_BUG_SQE_ELEM(8, __u64, addr2);
9c71d39a
SM
3692 BUILD_BUG_SQE_ELEM(8, __u32, cmd_op);
3693 BUILD_BUG_SQE_ELEM(12, __u32, __pad1);
d7f62e82 3694 BUILD_BUG_SQE_ELEM(16, __u64, addr);
7d67af2c 3695 BUILD_BUG_SQE_ELEM(16, __u64, splice_off_in);
d7f62e82
SM
3696 BUILD_BUG_SQE_ELEM(24, __u32, len);
3697 BUILD_BUG_SQE_ELEM(28, __kernel_rwf_t, rw_flags);
3698 BUILD_BUG_SQE_ELEM(28, /* compat */ int, rw_flags);
3699 BUILD_BUG_SQE_ELEM(28, /* compat */ __u32, rw_flags);
3700 BUILD_BUG_SQE_ELEM(28, __u32, fsync_flags);
5769a351
JX
3701 BUILD_BUG_SQE_ELEM(28, /* compat */ __u16, poll_events);
3702 BUILD_BUG_SQE_ELEM(28, __u32, poll32_events);
d7f62e82
SM
3703 BUILD_BUG_SQE_ELEM(28, __u32, sync_range_flags);
3704 BUILD_BUG_SQE_ELEM(28, __u32, msg_flags);
3705 BUILD_BUG_SQE_ELEM(28, __u32, timeout_flags);
3706 BUILD_BUG_SQE_ELEM(28, __u32, accept_flags);
3707 BUILD_BUG_SQE_ELEM(28, __u32, cancel_flags);
3708 BUILD_BUG_SQE_ELEM(28, __u32, open_flags);
3709 BUILD_BUG_SQE_ELEM(28, __u32, statx_flags);
3710 BUILD_BUG_SQE_ELEM(28, __u32, fadvise_advice);
7d67af2c 3711 BUILD_BUG_SQE_ELEM(28, __u32, splice_flags);
9c71d39a
SM
3712 BUILD_BUG_SQE_ELEM(28, __u32, rename_flags);
3713 BUILD_BUG_SQE_ELEM(28, __u32, unlink_flags);
3714 BUILD_BUG_SQE_ELEM(28, __u32, hardlink_flags);
3715 BUILD_BUG_SQE_ELEM(28, __u32, xattr_flags);
3716 BUILD_BUG_SQE_ELEM(28, __u32, msg_ring_flags);
d7f62e82
SM
3717 BUILD_BUG_SQE_ELEM(32, __u64, user_data);
3718 BUILD_BUG_SQE_ELEM(40, __u16, buf_index);
16340eab 3719 BUILD_BUG_SQE_ELEM(40, __u16, buf_group);
d7f62e82 3720 BUILD_BUG_SQE_ELEM(42, __u16, personality);
7d67af2c 3721 BUILD_BUG_SQE_ELEM(44, __s32, splice_fd_in);
b9445598 3722 BUILD_BUG_SQE_ELEM(44, __u32, file_index);
b48c312b
PB
3723 BUILD_BUG_SQE_ELEM(44, __u16, addr_len);
3724 BUILD_BUG_SQE_ELEM(46, __u16, __pad3[0]);
e9621e2b 3725 BUILD_BUG_SQE_ELEM(48, __u64, addr3);
9c71d39a
SM
3726 BUILD_BUG_SQE_ELEM_SIZE(48, 0, cmd);
3727 BUILD_BUG_SQE_ELEM(56, __u64, __pad2);
d7f62e82 3728
b0d658ec
PB
3729 BUILD_BUG_ON(sizeof(struct io_uring_files_update) !=
3730 sizeof(struct io_uring_rsrc_update));
3731 BUILD_BUG_ON(sizeof(struct io_uring_rsrc_update) >
3732 sizeof(struct io_uring_rsrc_update2));
90499ad0
PB
3733
3734 /* ->buf_index is u16 */
c7fb1942
JA
3735 BUILD_BUG_ON(offsetof(struct io_uring_buf_ring, bufs) != 0);
3736 BUILD_BUG_ON(offsetof(struct io_uring_buf, resv) !=
3737 offsetof(struct io_uring_buf_ring, tail));
90499ad0 3738
b0d658ec
PB
3739 /* should fit into one byte */
3740 BUILD_BUG_ON(SQE_VALID_FLAGS >= (1 << 8));
68fe256a
PB
3741 BUILD_BUG_ON(SQE_COMMON_FLAGS >= (1 << 8));
3742 BUILD_BUG_ON((SQE_VALID_FLAGS | SQE_COMMON_FLAGS) != SQE_VALID_FLAGS);
b0d658ec 3743
4bcb982c 3744 BUILD_BUG_ON(__REQ_F_LAST_BIT > 8 * sizeof_field(struct io_kiocb, flags));
16340eab 3745
3a4b89a2
JA
3746 BUILD_BUG_ON(sizeof(atomic_t) != sizeof(u32));
3747
528ce678
ML
3748 /* top 8bits are for internal use */
3749 BUILD_BUG_ON((IORING_URING_CMD_MASK & 0xff000000) != 0);
3750
d9b57aa3 3751 io_uring_optable_init();
0702e536 3752
b97f96e2
JA
3753 /*
3754 * Allow user copy in the per-command field, which starts after the
3755 * file in io_kiocb and until the opcode field. The openat2 handling
3756 * requires copying in user memory into the io_kiocb object in that
3757 * range, and HARDENED_USERCOPY will complain if we haven't
3758 * correctly annotated this range.
3759 */
3760 req_cachep = kmem_cache_create_usercopy("io_kiocb",
3761 sizeof(struct io_kiocb), 0,
3762 SLAB_HWCACHE_ALIGN | SLAB_PANIC |
3763 SLAB_ACCOUNT | SLAB_TYPESAFE_BY_RCU,
3764 offsetof(struct io_kiocb, cmd.data),
3765 sizeof_field(struct io_kiocb, cmd.data), NULL);
a6e959bd
KC
3766 io_buf_cachep = KMEM_CACHE(io_buffer,
3767 SLAB_HWCACHE_ALIGN | SLAB_PANIC | SLAB_ACCOUNT);
b97f96e2 3768
73eaa2b5
JA
3769 iou_wq = alloc_workqueue("iou_exit", WQ_UNBOUND, 64);
3770
76d3ccec
MR
3771#ifdef CONFIG_SYSCTL
3772 register_sysctl_init("kernel", kernel_io_uring_disabled_table);
3773#endif
3774
2b188cc1
JA
3775 return 0;
3776};
3777__initcall(io_uring_init);