io_uring: consolidate the put_ref-and-return section of adding work
[linux-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>
62#include <net/af_unix.h>
6b06314c 63#include <net/scm.h>
2b188cc1
JA
64#include <linux/anon_inodes.h>
65#include <linux/sched/mm.h>
66#include <linux/uaccess.h>
67#include <linux/nospec.h>
aa4c3967 68#include <linux/highmem.h>
15b71abe 69#include <linux/fsnotify.h>
4840e418 70#include <linux/fadvise.h>
b41e9852 71#include <linux/task_work.h>
0f212204 72#include <linux/io_uring.h>
5bd2182d 73#include <linux/audit.h>
cdc1404a 74#include <linux/security.h>
2b188cc1 75
c826bd7a
DD
76#define CREATE_TRACE_POINTS
77#include <trace/events/io_uring.h>
78
2b188cc1
JA
79#include <uapi/linux/io_uring.h>
80
561fb04a 81#include "io-wq.h"
2b188cc1 82
de23077e 83#include "io_uring.h"
329061d3 84#include "opdef.h"
e418bbc9 85#include "refs.h"
c9f06aa7 86#include "tctx.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"
e27f928e 94
59915143 95#include "timeout.h"
329061d3 96#include "poll.h"
9b797a37 97#include "alloc_cache.h"
5e2a18d9 98
5277deaa 99#define IORING_MAX_ENTRIES 32768
33a107f0 100#define IORING_MAX_CQ_ENTRIES (2 * IORING_MAX_ENTRIES)
65e19f54 101
21b55dbc
SG
102#define IORING_MAX_RESTRICTIONS (IORING_RESTRICTION_LAST + \
103 IORING_REGISTER_LAST + IORING_OP_LAST)
2b188cc1 104
68fe256a
PB
105#define SQE_COMMON_FLAGS (IOSQE_FIXED_FILE | IOSQE_IO_LINK | \
106 IOSQE_IO_HARDLINK | IOSQE_ASYNC)
107
5562a8d7
PB
108#define SQE_VALID_FLAGS (SQE_COMMON_FLAGS | IOSQE_BUFFER_SELECT | \
109 IOSQE_IO_DRAIN | IOSQE_CQE_SKIP_SUCCESS)
68fe256a 110
c854357b 111#define IO_REQ_CLEAN_FLAGS (REQ_F_BUFFER_SELECTED | REQ_F_NEED_CLEANUP | \
9cae36a0
JA
112 REQ_F_POLLED | REQ_F_INFLIGHT | REQ_F_CREDS | \
113 REQ_F_ASYNC_DATA)
b16fed66 114
a538be5b
PB
115#define IO_REQ_CLEAN_SLOW_FLAGS (REQ_F_REFCOUNT | REQ_F_LINK | REQ_F_HARDLINK |\
116 IO_REQ_CLEAN_FLAGS)
117
09899b19
PB
118#define IO_TCTX_REFS_CACHE_NR (1U << 10)
119
6dd0be1e 120#define IO_COMPL_BATCH 32
bf019da7 121#define IO_REQ_ALLOC_BATCH 8
258b29a9 122
10988a0a
DY
123enum {
124 IO_CHECK_CQ_OVERFLOW_BIT,
155bc950 125 IO_CHECK_CQ_DROPPED_BIT,
10988a0a
DY
126};
127
21a091b9
DY
128enum {
129 IO_EVENTFD_OP_SIGNAL_BIT,
130 IO_EVENTFD_OP_FREE_BIT,
131};
132
27dc8338
PB
133struct io_defer_entry {
134 struct list_head list;
135 struct io_kiocb *req;
9cf7c104 136 u32 seq;
2b188cc1
JA
137};
138
0756a869
PB
139/* requests with any of those set should undergo io_disarm_next() */
140#define IO_DISARM_MASK (REQ_F_ARM_LTIMEOUT | REQ_F_LINK_TIMEOUT | REQ_F_FAIL)
da1a08c5 141#define IO_REQ_LINK_FLAGS (REQ_F_LINK | REQ_F_HARDLINK)
0756a869 142
affa87db 143static bool io_uring_try_cancel_requests(struct io_ring_ctx *ctx,
9936c7c2 144 struct task_struct *task,
3dd0c97a 145 bool cancel_all);
1ffc5422 146
c7dae4ba 147static void io_dismantle_req(struct io_kiocb *req);
68fb8979 148static void io_clean_op(struct io_kiocb *req);
cbc2e203 149static void io_queue_sqe(struct io_kiocb *req);
c0e0d6ba 150static void io_move_task_work_from_local(struct io_ring_ctx *ctx);
c450178d 151static void __io_submit_flush_completions(struct io_ring_ctx *ctx);
77e443ab 152static __cold void io_fallback_tw(struct io_uring_task *tctx);
de0617e4 153
c1755c25 154struct kmem_cache *req_cachep;
2b188cc1 155
2b188cc1
JA
156struct sock *io_uring_get_socket(struct file *file)
157{
158#if defined(CONFIG_UNIX)
cd40cae2 159 if (io_is_uring_fops(file)) {
2b188cc1
JA
160 struct io_ring_ctx *ctx = file->private_data;
161
162 return ctx->ring_sock->sk;
163 }
164#endif
165 return NULL;
166}
167EXPORT_SYMBOL(io_uring_get_socket);
168
c450178d
PB
169static inline void io_submit_flush_completions(struct io_ring_ctx *ctx)
170{
931147dd
DY
171 if (!wq_list_empty(&ctx->submit_state.compl_reqs) ||
172 ctx->submit_state.cqes_count)
c450178d
PB
173 __io_submit_flush_completions(ctx);
174}
175
faf88dde
PB
176static inline unsigned int __io_cqring_events(struct io_ring_ctx *ctx)
177{
178 return ctx->cached_cq_tail - READ_ONCE(ctx->rings->cq.head);
179}
180
0fc8c2ac
DY
181static inline unsigned int __io_cqring_events_user(struct io_ring_ctx *ctx)
182{
183 return READ_ONCE(ctx->rings->cq.tail) - READ_ONCE(ctx->rings->cq.head);
184}
185
9cae36a0
JA
186static bool io_match_linked(struct io_kiocb *head)
187{
188 struct io_kiocb *req;
189
190 io_for_each_link(req, head) {
191 if (req->flags & REQ_F_INFLIGHT)
192 return true;
193 }
194 return false;
6af3f48b
PB
195}
196
197/*
198 * As io_match_task() but protected against racing with linked timeouts.
199 * User must not hold timeout_lock.
200 */
329061d3
JA
201bool io_match_task_safe(struct io_kiocb *head, struct task_struct *task,
202 bool cancel_all)
6af3f48b 203{
9cae36a0
JA
204 bool matched;
205
6af3f48b
PB
206 if (task && head->task != task)
207 return false;
9cae36a0
JA
208 if (cancel_all)
209 return true;
210
211 if (head->flags & REQ_F_LINK_TIMEOUT) {
212 struct io_ring_ctx *ctx = head->ctx;
213
214 /* protect against races with linked timeouts */
215 spin_lock_irq(&ctx->timeout_lock);
216 matched = io_match_linked(head);
217 spin_unlock_irq(&ctx->timeout_lock);
218 } else {
219 matched = io_match_linked(head);
220 }
221 return matched;
6af3f48b
PB
222}
223
a8295b98
HX
224static inline void req_fail_link_node(struct io_kiocb *req, int res)
225{
226 req_set_fail(req);
97b388d7 227 io_req_set_res(req, res, 0);
a8295b98
HX
228}
229
fa05457a
PB
230static inline void io_req_add_to_cache(struct io_kiocb *req, struct io_ring_ctx *ctx)
231{
232 wq_stack_add_head(&req->comp_list, &ctx->submit_state.free_list);
c1755c25 233 kasan_poison_object_data(req_cachep, req);
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;
31f084b7 249 bool locked = true;
f56165e6 250
31f084b7 251 mutex_lock(&ctx->uring_lock);
3218e5d3 252 llist_for_each_entry_safe(req, tmp, node, io_task_work.node)
f237c30a 253 req->io_task_work.func(req, &locked);
31f084b7
PB
254 if (WARN_ON_ONCE(!locked))
255 return;
256 io_submit_flush_completions(ctx);
257 mutex_unlock(&ctx->uring_lock);
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;
2b188cc1
JA
278
279 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
280 if (!ctx)
281 return NULL;
282
9cfc7e94
JA
283 xa_init(&ctx->io_bl_xa);
284
78076bb6
JA
285 /*
286 * Use 5 bits less than the max cq entries, that should give us around
4a07723f
PB
287 * 32 entries per hash list if totally full and uniformly spread, but
288 * don't keep too many buckets to not overconsume memory.
78076bb6 289 */
4a07723f
PB
290 hash_bits = ilog2(p->cq_entries) - 5;
291 hash_bits = clamp(hash_bits, 1, 8);
e6f89be6 292 if (io_alloc_hash_table(&ctx->cancel_table, hash_bits))
78076bb6 293 goto err;
9ca9fb24
PB
294 if (io_alloc_hash_table(&ctx->cancel_table_locked, hash_bits))
295 goto err;
38513c46 296
6224843d
PB
297 ctx->dummy_ubuf = kzalloc(sizeof(*ctx->dummy_ubuf), GFP_KERNEL);
298 if (!ctx->dummy_ubuf)
299 goto err;
300 /* set invalid range, so io_import_fixed() fails meeting it */
301 ctx->dummy_ubuf->ubuf = -1UL;
302
21482896 303 if (percpu_ref_init(&ctx->refs, io_ring_ctx_ref_free,
48904229 304 0, GFP_KERNEL))
206aefde 305 goto err;
2b188cc1
JA
306
307 ctx->flags = p->flags;
90554200 308 init_waitqueue_head(&ctx->sqo_sq_wait);
69fb2131 309 INIT_LIST_HEAD(&ctx->sqd_list);
1d7bb1d5 310 INIT_LIST_HEAD(&ctx->cq_overflow_list);
cc3cec83 311 INIT_LIST_HEAD(&ctx->io_buffers_cache);
9b797a37 312 io_alloc_cache_init(&ctx->apoll_cache);
43e0bbbd 313 io_alloc_cache_init(&ctx->netmsg_cache);
0f158b4c 314 init_completion(&ctx->ref_comp);
61cf9370 315 xa_init_flags(&ctx->personalities, XA_FLAGS_ALLOC1);
2b188cc1 316 mutex_init(&ctx->uring_lock);
311997b3 317 init_waitqueue_head(&ctx->cq_wait);
7b235dd8 318 init_waitqueue_head(&ctx->poll_wq);
2b188cc1 319 spin_lock_init(&ctx->completion_lock);
89850fce 320 spin_lock_init(&ctx->timeout_lock);
5eef4e87 321 INIT_WQ_LIST(&ctx->iopoll_list);
cc3cec83
JA
322 INIT_LIST_HEAD(&ctx->io_buffers_pages);
323 INIT_LIST_HEAD(&ctx->io_buffers_comp);
de0617e4 324 INIT_LIST_HEAD(&ctx->defer_list);
5262f567 325 INIT_LIST_HEAD(&ctx->timeout_list);
ef9dd637 326 INIT_LIST_HEAD(&ctx->ltimeout_list);
d67d2263
BM
327 spin_lock_init(&ctx->rsrc_ref_lock);
328 INIT_LIST_HEAD(&ctx->rsrc_ref_list);
269bbe5f 329 INIT_DELAYED_WORK(&ctx->rsrc_put_work, io_rsrc_put_work);
d34b1b0b 330 init_task_work(&ctx->rsrc_put_tw, io_rsrc_put_tw);
269bbe5f 331 init_llist_head(&ctx->rsrc_put_llist);
c0e0d6ba 332 init_llist_head(&ctx->work_llist);
13bf43f5 333 INIT_LIST_HEAD(&ctx->tctx_list);
c2b6c6bc
PB
334 ctx->submit_state.free_list.next = NULL;
335 INIT_WQ_LIST(&ctx->locked_free_list);
9011bf9a 336 INIT_DELAYED_WORK(&ctx->fallback_work, io_fallback_req_func);
6f33b0bc 337 INIT_WQ_LIST(&ctx->submit_state.compl_reqs);
2b188cc1 338 return ctx;
206aefde 339err:
6224843d 340 kfree(ctx->dummy_ubuf);
e6f89be6 341 kfree(ctx->cancel_table.hbs);
9ca9fb24 342 kfree(ctx->cancel_table_locked.hbs);
9cfc7e94
JA
343 kfree(ctx->io_bl);
344 xa_destroy(&ctx->io_bl_xa);
206aefde
JA
345 kfree(ctx);
346 return NULL;
2b188cc1
JA
347}
348
8f6ed49a
PB
349static void io_account_cq_overflow(struct io_ring_ctx *ctx)
350{
351 struct io_rings *r = ctx->rings;
352
353 WRITE_ONCE(r->cq_overflow, READ_ONCE(r->cq_overflow) + 1);
354 ctx->cq_extra--;
355}
356
9cf7c104 357static bool req_need_defer(struct io_kiocb *req, u32 seq)
7adf4eaf 358{
2bc9930e
JA
359 if (unlikely(req->flags & REQ_F_IO_DRAIN)) {
360 struct io_ring_ctx *ctx = req->ctx;
a197f664 361
8f6ed49a 362 return seq + READ_ONCE(ctx->cq_extra) != ctx->cached_cq_tail;
2bc9930e 363 }
de0617e4 364
9d858b21 365 return false;
de0617e4
JA
366}
367
9cae36a0
JA
368static inline void io_req_track_inflight(struct io_kiocb *req)
369{
370 if (!(req->flags & REQ_F_INFLIGHT)) {
371 req->flags |= REQ_F_INFLIGHT;
386e4fb6 372 atomic_inc(&req->task->io_uring->inflight_tracked);
9cae36a0
JA
373 }
374}
375
fd08e530
PB
376static struct io_kiocb *__io_prep_linked_timeout(struct io_kiocb *req)
377{
906c6caa
PB
378 if (WARN_ON_ONCE(!req->link))
379 return NULL;
380
4d13d1a4
PB
381 req->flags &= ~REQ_F_ARM_LTIMEOUT;
382 req->flags |= REQ_F_LINK_TIMEOUT;
fd08e530
PB
383
384 /* linked timeouts should have two refs once prep'ed */
48dcd38d 385 io_req_set_refcount(req);
4d13d1a4
PB
386 __io_req_set_refcount(req->link, 2);
387 return req->link;
fd08e530
PB
388}
389
390static inline struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req)
391{
4d13d1a4 392 if (likely(!(req->flags & REQ_F_ARM_LTIMEOUT)))
fd08e530
PB
393 return NULL;
394 return __io_prep_linked_timeout(req);
395}
396
cb2d344c
PB
397static noinline void __io_arm_ltimeout(struct io_kiocb *req)
398{
399 io_queue_linked_timeout(__io_prep_linked_timeout(req));
400}
401
402static inline void io_arm_ltimeout(struct io_kiocb *req)
403{
404 if (unlikely(req->flags & REQ_F_ARM_LTIMEOUT))
405 __io_arm_ltimeout(req);
406}
407
1e6fa521
JA
408static void io_prep_async_work(struct io_kiocb *req)
409{
a7dd2782 410 const struct io_issue_def *def = &io_issue_defs[req->opcode];
1e6fa521
JA
411 struct io_ring_ctx *ctx = req->ctx;
412
b8e64b53
PB
413 if (!(req->flags & REQ_F_CREDS)) {
414 req->flags |= REQ_F_CREDS;
c10d1f98 415 req->creds = get_current_cred();
b8e64b53 416 }
003e8dcc 417
e1d675df
PB
418 req->work.list.next = NULL;
419 req->work.flags = 0;
8e29da69 420 req->work.cancel_seq = atomic_read(&ctx->cancel_seq);
feaadc4f
PB
421 if (req->flags & REQ_F_FORCE_ASYNC)
422 req->work.flags |= IO_WQ_WORK_CONCURRENT;
423
f6b543fd
JA
424 if (req->file && !io_req_ffs_set(req))
425 req->flags |= io_file_get_flags(req->file) << REQ_F_SUPPORT_NOWAIT_BIT;
426
1e6fa521
JA
427 if (req->flags & REQ_F_ISREG) {
428 if (def->hash_reg_file || (ctx->flags & IORING_SETUP_IOPOLL))
429 io_wq_hash_work(&req->work, file_inode(req->file));
4b982bd0 430 } else if (!req->file || !S_ISBLK(file_inode(req->file)->i_mode)) {
1e6fa521
JA
431 if (def->unbound_nonreg_file)
432 req->work.flags |= IO_WQ_WORK_UNBOUND;
433 }
561fb04a 434}
cccf0ee8 435
cbdcb435 436static void io_prep_async_link(struct io_kiocb *req)
561fb04a 437{
cbdcb435 438 struct io_kiocb *cur;
54a91f3b 439
44eff40a
PB
440 if (req->flags & REQ_F_LINK_TIMEOUT) {
441 struct io_ring_ctx *ctx = req->ctx;
442
674ee8e1 443 spin_lock_irq(&ctx->timeout_lock);
44eff40a
PB
444 io_for_each_link(cur, req)
445 io_prep_async_work(cur);
674ee8e1 446 spin_unlock_irq(&ctx->timeout_lock);
44eff40a
PB
447 } else {
448 io_for_each_link(cur, req)
449 io_prep_async_work(cur);
450 }
561fb04a
JA
451}
452
f3b44f92 453void io_queue_iowq(struct io_kiocb *req, bool *dont_use)
561fb04a 454{
cbdcb435 455 struct io_kiocb *link = io_prep_linked_timeout(req);
5aa75ed5 456 struct io_uring_task *tctx = req->task->io_uring;
561fb04a 457
3bfe6106
JA
458 BUG_ON(!tctx);
459 BUG_ON(!tctx->io_wq);
561fb04a 460
cbdcb435
PB
461 /* init ->work of the whole link before punting */
462 io_prep_async_link(req);
991468dc
JA
463
464 /*
465 * Not expected to happen, but if we do have a bug where this _can_
466 * happen, catch it here and ensure the request is marked as
467 * canceled. That will make io-wq go through the usual work cancel
468 * procedure rather than attempt to run this request (or create a new
469 * worker for it).
470 */
471 if (WARN_ON_ONCE(!same_thread_group(req->task, current)))
472 req->work.flags |= IO_WQ_WORK_CANCEL;
473
48863ffd 474 trace_io_uring_queue_async_work(req, io_wq_is_hashed(&req->work));
ebf93667 475 io_wq_enqueue(tctx->io_wq, &req->work);
7271ef3a
JA
476 if (link)
477 io_queue_linked_timeout(link);
cbdcb435
PB
478}
479
c072481d 480static __cold void io_queue_deferred(struct io_ring_ctx *ctx)
de0617e4 481{
441b8a78 482 while (!list_empty(&ctx->defer_list)) {
27dc8338
PB
483 struct io_defer_entry *de = list_first_entry(&ctx->defer_list,
484 struct io_defer_entry, list);
de0617e4 485
9cf7c104 486 if (req_need_defer(de->req, de->seq))
04518945 487 break;
27dc8338 488 list_del_init(&de->list);
907d1df3 489 io_req_task_queue(de->req);
27dc8338 490 kfree(de);
441b8a78 491 }
04518945
PB
492}
493
21a091b9
DY
494
495static void io_eventfd_ops(struct rcu_head *rcu)
f2842ab5 496{
d8e9214f 497 struct io_ev_fd *ev_fd = container_of(rcu, struct io_ev_fd, rcu);
21a091b9 498 int ops = atomic_xchg(&ev_fd->ops, 0);
305bef98 499
21a091b9 500 if (ops & BIT(IO_EVENTFD_OP_SIGNAL_BIT))
44648532 501 eventfd_signal_mask(ev_fd->cq_ev_fd, 1, EPOLL_URING_WAKE);
d8e9214f 502
21a091b9
DY
503 /* IO_EVENTFD_OP_FREE_BIT may not be set here depending on callback
504 * ordering in a race but if references are 0 we know we have to free
505 * it regardless.
305bef98 506 */
21a091b9
DY
507 if (atomic_dec_and_test(&ev_fd->refs)) {
508 eventfd_ctx_put(ev_fd->cq_ev_fd);
509 kfree(ev_fd);
510 }
d8e9214f
DY
511}
512
77bc59b4 513static void io_eventfd_signal(struct io_ring_ctx *ctx)
f2842ab5 514{
21a091b9 515 struct io_ev_fd *ev_fd = NULL;
77bc59b4 516
77bc59b4
UA
517 rcu_read_lock();
518 /*
519 * rcu_dereference ctx->io_ev_fd once and use it for both for checking
520 * and eventfd_signal
521 */
522 ev_fd = rcu_dereference(ctx->io_ev_fd);
523
524 /*
525 * Check again if ev_fd exists incase an io_eventfd_unregister call
526 * completed between the NULL check of ctx->io_ev_fd at the start of
527 * the function and rcu_read_lock.
528 */
529 if (unlikely(!ev_fd))
530 goto out;
7e55a19c 531 if (READ_ONCE(ctx->rings->cq_flags) & IORING_CQ_EVENTFD_DISABLED)
77bc59b4 532 goto out;
21a091b9
DY
533 if (ev_fd->eventfd_async && !io_wq_current_is_worker())
534 goto out;
77bc59b4 535
21a091b9 536 if (likely(eventfd_signal_allowed())) {
44648532 537 eventfd_signal_mask(ev_fd->cq_ev_fd, 1, EPOLL_URING_WAKE);
21a091b9
DY
538 } else {
539 atomic_inc(&ev_fd->refs);
540 if (!atomic_fetch_or(BIT(IO_EVENTFD_OP_SIGNAL_BIT), &ev_fd->ops))
44a84da4 541 call_rcu_hurry(&ev_fd->rcu, io_eventfd_ops);
21a091b9
DY
542 else
543 atomic_dec(&ev_fd->refs);
544 }
545
77bc59b4
UA
546out:
547 rcu_read_unlock();
f2842ab5
JA
548}
549
21a091b9
DY
550static void io_eventfd_flush_signal(struct io_ring_ctx *ctx)
551{
552 bool skip;
553
554 spin_lock(&ctx->completion_lock);
555
556 /*
557 * Eventfd should only get triggered when at least one event has been
558 * posted. Some applications rely on the eventfd notification count
559 * only changing IFF a new CQE has been added to the CQ ring. There's
560 * no depedency on 1:1 relationship between how many times this
561 * function is called (and hence the eventfd count) and number of CQEs
562 * posted to the CQ ring.
563 */
564 skip = ctx->cached_cq_tail == ctx->evfd_last_cq_tail;
565 ctx->evfd_last_cq_tail = ctx->cached_cq_tail;
566 spin_unlock(&ctx->completion_lock);
567 if (skip)
568 return;
569
570 io_eventfd_signal(ctx);
571}
572
a830ffd2
PB
573void __io_commit_cqring_flush(struct io_ring_ctx *ctx)
574{
bca39f39
PB
575 if (ctx->poll_activated)
576 io_poll_wq_wake(ctx);
e5f30f6f
PB
577 if (ctx->off_timeout_used)
578 io_flush_timeouts(ctx);
579 if (ctx->drain_active) {
a830ffd2 580 spin_lock(&ctx->completion_lock);
e5f30f6f 581 io_queue_deferred(ctx);
a830ffd2
PB
582 spin_unlock(&ctx->completion_lock);
583 }
584 if (ctx->has_evfd)
21a091b9 585 io_eventfd_flush_signal(ctx);
a830ffd2
PB
586}
587
f66f7342
PB
588static inline void __io_cq_lock(struct io_ring_ctx *ctx)
589 __acquires(ctx->completion_lock)
590{
591 if (!ctx->task_complete)
592 spin_lock(&ctx->completion_lock);
593}
594
595static inline void __io_cq_unlock(struct io_ring_ctx *ctx)
596{
597 if (!ctx->task_complete)
598 spin_unlock(&ctx->completion_lock);
599}
600
6971253f
PB
601static inline void io_cq_lock(struct io_ring_ctx *ctx)
602 __acquires(ctx->completion_lock)
603{
604 spin_lock(&ctx->completion_lock);
605}
606
607static inline void io_cq_unlock(struct io_ring_ctx *ctx)
608 __releases(ctx->completion_lock)
609{
610 spin_unlock(&ctx->completion_lock);
611}
612
5d772916 613/* keep it inlined for io_submit_flush_completions() */
f66f7342 614static inline void __io_cq_unlock_post(struct io_ring_ctx *ctx)
25399321
PB
615 __releases(ctx->completion_lock)
616{
617 io_commit_cqring(ctx);
f66f7342 618 __io_cq_unlock(ctx);
6c16fe3c
JA
619 io_commit_cqring_flush(ctx);
620 io_cqring_wake(ctx);
25399321
PB
621}
622
3181e22f
PB
623static inline void __io_cq_unlock_post_flush(struct io_ring_ctx *ctx)
624 __releases(ctx->completion_lock)
625{
626 io_commit_cqring(ctx);
627 __io_cq_unlock(ctx);
628 io_commit_cqring_flush(ctx);
629
630 /*
631 * As ->task_complete implies that the ring is single tasked, cq_wait
632 * may only be waited on by the current in io_cqring_wait(), but since
633 * it will re-check the wakeup conditions once we return we can safely
634 * skip waking it up.
635 */
636 if (!(ctx->flags & IORING_SETUP_DEFER_TASKRUN)) {
637 smp_mb();
638 __io_cqring_wake(ctx);
639 }
640}
641
25399321 642void io_cq_unlock_post(struct io_ring_ctx *ctx)
5d772916 643 __releases(ctx->completion_lock)
25399321 644{
f66f7342
PB
645 io_commit_cqring(ctx);
646 spin_unlock(&ctx->completion_lock);
647 io_commit_cqring_flush(ctx);
648 io_cqring_wake(ctx);
25399321
PB
649}
650
c4a2ed72 651/* Returns true if there are no backlogged entries after the flush */
a85381d8
PB
652static void io_cqring_overflow_kill(struct io_ring_ctx *ctx)
653{
654 struct io_overflow_cqe *ocqe;
655 LIST_HEAD(list);
656
657 io_cq_lock(ctx);
658 list_splice_init(&ctx->cq_overflow_list, &list);
659 clear_bit(IO_CHECK_CQ_OVERFLOW_BIT, &ctx->check_cq);
660 io_cq_unlock(ctx);
661
662 while (!list_empty(&list)) {
663 ocqe = list_first_entry(&list, struct io_overflow_cqe, list);
664 list_del(&ocqe->list);
665 kfree(ocqe);
666 }
667}
668
1b346e4a 669static void __io_cqring_overflow_flush(struct io_ring_ctx *ctx)
1d7bb1d5 670{
e45a3e05 671 size_t cqe_size = sizeof(struct io_uring_cqe);
1d7bb1d5 672
a85381d8 673 if (__io_cqring_events(ctx) == ctx->cq_entries)
1b346e4a 674 return;
1d7bb1d5 675
e45a3e05
SR
676 if (ctx->flags & IORING_SETUP_CQE32)
677 cqe_size <<= 1;
678
25399321 679 io_cq_lock(ctx);
6c2450ae 680 while (!list_empty(&ctx->cq_overflow_list)) {
aa1df3a3 681 struct io_uring_cqe *cqe = io_get_cqe_overflow(ctx, true);
6c2450ae 682 struct io_overflow_cqe *ocqe;
e6c8aa9a 683
a85381d8 684 if (!cqe)
1d7bb1d5 685 break;
6c2450ae
PB
686 ocqe = list_first_entry(&ctx->cq_overflow_list,
687 struct io_overflow_cqe, list);
a85381d8 688 memcpy(cqe, &ocqe->cqe, cqe_size);
6c2450ae
PB
689 list_del(&ocqe->list);
690 kfree(ocqe);
1d7bb1d5
JA
691 }
692
1b346e4a 693 if (list_empty(&ctx->cq_overflow_list)) {
10988a0a 694 clear_bit(IO_CHECK_CQ_OVERFLOW_BIT, &ctx->check_cq);
3a4b89a2 695 atomic_andnot(IORING_SQ_CQ_OVERFLOW, &ctx->rings->sq_flags);
09e88404 696 }
25399321 697 io_cq_unlock_post(ctx);
1d7bb1d5
JA
698}
699
52ea806a
JA
700static void io_cqring_do_overflow_flush(struct io_ring_ctx *ctx)
701{
702 /* iopoll syncs against uring_lock, not completion_lock */
703 if (ctx->flags & IORING_SETUP_IOPOLL)
704 mutex_lock(&ctx->uring_lock);
705 __io_cqring_overflow_flush(ctx);
706 if (ctx->flags & IORING_SETUP_IOPOLL)
707 mutex_unlock(&ctx->uring_lock);
708}
709
1b346e4a 710static void io_cqring_overflow_flush(struct io_ring_ctx *ctx)
6c503150 711{
52ea806a
JA
712 if (test_bit(IO_CHECK_CQ_OVERFLOW_BIT, &ctx->check_cq))
713 io_cqring_do_overflow_flush(ctx);
6c503150
PB
714}
715
5afa4650
PB
716/* can be called by any task */
717static void io_put_task_remote(struct task_struct *task, int nr)
6a290a14
PB
718{
719 struct io_uring_task *tctx = task->io_uring;
720
9d170164
PB
721 percpu_counter_sub(&tctx->inflight, nr);
722 if (unlikely(atomic_read(&tctx->in_idle)))
723 wake_up(&tctx->wait);
724 put_task_struct_many(task, nr);
725}
726
5afa4650
PB
727/* used by a task to put its own references */
728static void io_put_task_local(struct task_struct *task, int nr)
729{
730 task->io_uring->cached_refs += nr;
731}
732
89800a2d
PB
733/* must to be called somewhat shortly after putting a request */
734static inline void io_put_task(struct task_struct *task, int nr)
735{
736 if (likely(task == current))
5afa4650 737 io_put_task_local(task, nr);
89800a2d 738 else
5afa4650 739 io_put_task_remote(task, nr);
89800a2d
PB
740}
741
63809137 742void io_task_refs_refill(struct io_uring_task *tctx)
9a10867a
PB
743{
744 unsigned int refill = -tctx->cached_refs + IO_TCTX_REFS_CACHE_NR;
745
746 percpu_counter_add(&tctx->inflight, refill);
747 refcount_add(refill, &current->usage);
748 tctx->cached_refs += refill;
749}
750
3cc7fdb9
PB
751static __cold void io_uring_drop_tctx_refs(struct task_struct *task)
752{
753 struct io_uring_task *tctx = task->io_uring;
754 unsigned int refs = tctx->cached_refs;
755
756 if (refs) {
757 tctx->cached_refs = 0;
758 percpu_counter_sub(&tctx->inflight, refs);
759 put_task_struct_many(task, refs);
760 }
761}
762
68494a65
PB
763static bool io_cqring_event_overflow(struct io_ring_ctx *ctx, u64 user_data,
764 s32 res, u32 cflags, u64 extra1, u64 extra2)
2b188cc1 765{
cce4b8b0 766 struct io_overflow_cqe *ocqe;
e45a3e05
SR
767 size_t ocq_size = sizeof(struct io_overflow_cqe);
768 bool is_cqe32 = (ctx->flags & IORING_SETUP_CQE32);
2b188cc1 769
f26cc959
PB
770 lockdep_assert_held(&ctx->completion_lock);
771
e45a3e05
SR
772 if (is_cqe32)
773 ocq_size += sizeof(struct io_uring_cqe);
2b188cc1 774
e45a3e05 775 ocqe = kmalloc(ocq_size, GFP_ATOMIC | __GFP_ACCOUNT);
08dcd028 776 trace_io_uring_cqe_overflow(ctx, user_data, res, cflags, ocqe);
cce4b8b0
PB
777 if (!ocqe) {
778 /*
779 * If we're in ring overflow flush mode, or in task cancel mode,
780 * or cannot allocate an overflow entry, then we need to drop it
781 * on the floor.
782 */
8f6ed49a 783 io_account_cq_overflow(ctx);
155bc950 784 set_bit(IO_CHECK_CQ_DROPPED_BIT, &ctx->check_cq);
cce4b8b0 785 return false;
2b188cc1 786 }
cce4b8b0 787 if (list_empty(&ctx->cq_overflow_list)) {
10988a0a 788 set_bit(IO_CHECK_CQ_OVERFLOW_BIT, &ctx->check_cq);
3a4b89a2 789 atomic_or(IORING_SQ_CQ_OVERFLOW, &ctx->rings->sq_flags);
20c0b380 790
cce4b8b0 791 }
d4d19c19 792 ocqe->cqe.user_data = user_data;
cce4b8b0
PB
793 ocqe->cqe.res = res;
794 ocqe->cqe.flags = cflags;
e45a3e05
SR
795 if (is_cqe32) {
796 ocqe->cqe.big_cqe[0] = extra1;
797 ocqe->cqe.big_cqe[1] = extra2;
798 }
cce4b8b0
PB
799 list_add_tail(&ocqe->list, &ctx->cq_overflow_list);
800 return true;
2b188cc1
JA
801}
802
68494a65
PB
803bool io_req_cqe_overflow(struct io_kiocb *req)
804{
805 if (!(req->flags & REQ_F_CQE32_INIT)) {
806 req->extra1 = 0;
807 req->extra2 = 0;
808 }
809 return io_cqring_event_overflow(req->ctx, req->cqe.user_data,
810 req->cqe.res, req->cqe.flags,
811 req->extra1, req->extra2);
812}
813
faf88dde
PB
814/*
815 * writes to the cq entry need to come after reading head; the
816 * control dependency is enough as we're using WRITE_ONCE to
817 * fill the cq entry
818 */
aa1df3a3 819struct io_uring_cqe *__io_get_cqe(struct io_ring_ctx *ctx, bool overflow)
faf88dde
PB
820{
821 struct io_rings *rings = ctx->rings;
822 unsigned int off = ctx->cached_cq_tail & (ctx->cq_entries - 1);
faf88dde
PB
823 unsigned int free, queued, len;
824
aa1df3a3
PB
825 /*
826 * Posting into the CQ when there are pending overflowed CQEs may break
827 * ordering guarantees, which will affect links, F_MORE users and more.
828 * Force overflow the completion.
829 */
830 if (!overflow && (ctx->check_cq & BIT(IO_CHECK_CQ_OVERFLOW_BIT)))
831 return NULL;
faf88dde
PB
832
833 /* userspace may cheat modifying the tail, be safe and do min */
834 queued = min(__io_cqring_events(ctx), ctx->cq_entries);
835 free = ctx->cq_entries - queued;
836 /* we need a contiguous range, limit based on the current array offset */
837 len = min(free, ctx->cq_entries - off);
838 if (!len)
839 return NULL;
840
b3659a65
PB
841 if (ctx->flags & IORING_SETUP_CQE32) {
842 off <<= 1;
843 len <<= 1;
844 }
845
faf88dde
PB
846 ctx->cqe_cached = &rings->cqes[off];
847 ctx->cqe_sentinel = ctx->cqe_cached + len;
b3659a65
PB
848
849 ctx->cached_cq_tail++;
faf88dde 850 ctx->cqe_cached++;
b3659a65
PB
851 if (ctx->flags & IORING_SETUP_CQE32)
852 ctx->cqe_cached++;
853 return &rings->cqes[off];
faf88dde
PB
854}
855
f66f7342
PB
856static bool io_fill_cqe_aux(struct io_ring_ctx *ctx, u64 user_data, s32 res,
857 u32 cflags)
bcda7baa 858{
cd94903d
PB
859 struct io_uring_cqe *cqe;
860
913a571a 861 ctx->cq_extra++;
cd94903d
PB
862
863 /*
864 * If we can't get a cq entry, userspace overflowed the
865 * submission (by quite a lot). Increment the overflow count in
866 * the ring.
867 */
868 cqe = io_get_cqe(ctx);
869 if (likely(cqe)) {
e0486f3f
DY
870 trace_io_uring_complete(ctx, NULL, user_data, res, cflags, 0, 0);
871
cd94903d
PB
872 WRITE_ONCE(cqe->user_data, user_data);
873 WRITE_ONCE(cqe->res, res);
874 WRITE_ONCE(cqe->flags, cflags);
c5595975
PB
875
876 if (ctx->flags & IORING_SETUP_CQE32) {
877 WRITE_ONCE(cqe->big_cqe[0], 0);
878 WRITE_ONCE(cqe->big_cqe[1], 0);
879 }
cd94903d
PB
880 return true;
881 }
52120f0f 882 return false;
bcda7baa
JA
883}
884
931147dd
DY
885static void __io_flush_post_cqes(struct io_ring_ctx *ctx)
886 __must_hold(&ctx->uring_lock)
887{
888 struct io_submit_state *state = &ctx->submit_state;
889 unsigned int i;
890
891 lockdep_assert_held(&ctx->uring_lock);
892 for (i = 0; i < state->cqes_count; i++) {
893 struct io_uring_cqe *cqe = &state->cqes[i];
894
f66f7342
PB
895 if (!io_fill_cqe_aux(ctx, cqe->user_data, cqe->res, cqe->flags)) {
896 if (ctx->task_complete) {
897 spin_lock(&ctx->completion_lock);
898 io_cqring_event_overflow(ctx, cqe->user_data,
899 cqe->res, cqe->flags, 0, 0);
900 spin_unlock(&ctx->completion_lock);
901 } else {
902 io_cqring_event_overflow(ctx, cqe->user_data,
903 cqe->res, cqe->flags, 0, 0);
904 }
905 }
931147dd
DY
906 }
907 state->cqes_count = 0;
908}
909
b529c96a
DY
910static bool __io_post_aux_cqe(struct io_ring_ctx *ctx, u64 user_data, s32 res, u32 cflags,
911 bool allow_overflow)
d245bca6
PB
912{
913 bool filled;
914
25399321 915 io_cq_lock(ctx);
f66f7342
PB
916 filled = io_fill_cqe_aux(ctx, user_data, res, cflags);
917 if (!filled && allow_overflow)
918 filled = io_cqring_event_overflow(ctx, user_data, res, cflags, 0, 0);
919
25399321 920 io_cq_unlock_post(ctx);
d245bca6
PB
921 return filled;
922}
923
b529c96a
DY
924bool io_post_aux_cqe(struct io_ring_ctx *ctx, u64 user_data, s32 res, u32 cflags)
925{
926 return __io_post_aux_cqe(ctx, user_data, res, cflags, true);
927}
928
9b8c5475
DY
929bool io_aux_cqe(struct io_ring_ctx *ctx, bool defer, u64 user_data, s32 res, u32 cflags,
930 bool allow_overflow)
2b188cc1 931{
9b8c5475
DY
932 struct io_uring_cqe *cqe;
933 unsigned int length;
934
935 if (!defer)
b529c96a 936 return __io_post_aux_cqe(ctx, user_data, res, cflags, allow_overflow);
9b8c5475
DY
937
938 length = ARRAY_SIZE(ctx->submit_state.cqes);
939
940 lockdep_assert_held(&ctx->uring_lock);
941
942 if (ctx->submit_state.cqes_count == length) {
f66f7342 943 __io_cq_lock(ctx);
9b8c5475
DY
944 __io_flush_post_cqes(ctx);
945 /* no need to flush - flush is deferred */
f66f7342 946 __io_cq_unlock_post(ctx);
9b8c5475
DY
947 }
948
949 /* For defered completions this is not as strict as it is otherwise,
950 * however it's main job is to prevent unbounded posted completions,
951 * and in that it works just as well.
952 */
953 if (!allow_overflow && test_bit(IO_CHECK_CQ_OVERFLOW_BIT, &ctx->check_cq))
954 return false;
955
956 cqe = &ctx->submit_state.cqes[ctx->submit_state.cqes_count++];
957 cqe->user_data = user_data;
958 cqe->res = res;
959 cqe->flags = cflags;
960 return true;
961}
962
1bec951c 963static void __io_req_complete_post(struct io_kiocb *req)
2b188cc1 964{
fa18fa22
PB
965 struct io_ring_ctx *ctx = req->ctx;
966
967 io_cq_lock(ctx);
968 if (!(req->flags & REQ_F_CQE_SKIP))
a8cf95f9 969 io_fill_cqe_req(ctx, req);
fa18fa22 970
c7dae4ba
JA
971 /*
972 * If we're the last reference to this request, add to our locked
973 * free_list cache.
974 */
de9b4cca 975 if (req_ref_put_and_test(req)) {
da1a08c5 976 if (req->flags & IO_REQ_LINK_FLAGS) {
0756a869 977 if (req->flags & IO_DISARM_MASK)
7a612350
PB
978 io_disarm_next(req);
979 if (req->link) {
980 io_req_task_queue(req->link);
981 req->link = NULL;
982 }
983 }
68a2cc1b
PB
984 io_put_kbuf_comp(req);
985 io_dismantle_req(req);
7ac1edc4 986 io_req_put_rsrc(req);
8197b053
PB
987 /*
988 * Selected buffer deallocation in io_clean_op() assumes that
989 * we don't hold ->completion_lock. Clean them here to avoid
990 * deadlocks.
991 */
5afa4650 992 io_put_task_remote(req->task, 1);
c2b6c6bc 993 wq_list_add_head(&req->comp_list, &ctx->locked_free_list);
d0acdee2 994 ctx->locked_free_nr++;
180f829f 995 }
25399321 996 io_cq_unlock_post(ctx);
4e3d9ff9
JA
997}
998
1bec951c 999void io_req_complete_post(struct io_kiocb *req, unsigned issue_flags)
bcda7baa 1000{
e6aeb272
PB
1001 if (req->ctx->task_complete && (issue_flags & IO_URING_F_IOWQ)) {
1002 req->io_task_work.func = io_req_task_complete;
1003 io_req_task_work_add(req);
1004 } else if (!(issue_flags & IO_URING_F_UNLOCKED) ||
1005 !(req->ctx->flags & IORING_SETUP_IOPOLL)) {
1bec951c
PB
1006 __io_req_complete_post(req);
1007 } else {
1008 struct io_ring_ctx *ctx = req->ctx;
1009
1010 mutex_lock(&ctx->uring_lock);
1011 __io_req_complete_post(req);
1012 mutex_unlock(&ctx->uring_lock);
1013 }
0ddf92e8
JA
1014}
1015
973fc83f 1016void io_req_defer_failed(struct io_kiocb *req, s32 res)
e276ae34 1017 __must_hold(&ctx->uring_lock)
f41db273 1018{
f30bd4d0 1019 const struct io_cold_def *def = &io_cold_defs[req->opcode];
a47b255e 1020
e276ae34
PB
1021 lockdep_assert_held(&req->ctx->uring_lock);
1022
93d2bcd2 1023 req_set_fail(req);
97b388d7 1024 io_req_set_res(req, res, io_put_kbuf(req, IO_URING_F_UNLOCKED));
a47b255e
PB
1025 if (def->fail)
1026 def->fail(req);
973fc83f 1027 io_req_complete_defer(req);
f41db273
PB
1028}
1029
864ea921
PB
1030/*
1031 * Don't initialise the fields below on every allocation, but do that in
1032 * advance and keep them valid across allocations.
1033 */
1034static void io_preinit_req(struct io_kiocb *req, struct io_ring_ctx *ctx)
1035{
1036 req->ctx = ctx;
1037 req->link = NULL;
1038 req->async_data = NULL;
1039 /* not necessary, but safer to zero */
cef216fc 1040 req->cqe.res = 0;
864ea921
PB
1041}
1042
dac7a098 1043static void io_flush_cached_locked_reqs(struct io_ring_ctx *ctx,
cd0ca2e0 1044 struct io_submit_state *state)
dac7a098 1045{
79ebeaee 1046 spin_lock(&ctx->completion_lock);
c2b6c6bc 1047 wq_list_splice(&ctx->locked_free_list, &state->free_list);
d0acdee2 1048 ctx->locked_free_nr = 0;
79ebeaee 1049 spin_unlock(&ctx->completion_lock);
dac7a098
PB
1050}
1051
5d5901a3
PB
1052/*
1053 * A request might get retired back into the request caches even before opcode
1054 * handlers and io_issue_sqe() are done with it, e.g. inline completion path.
1055 * Because of that, io_alloc_req() should be called only under ->uring_lock
1056 * and with extra caution to not get a request that is still worked on.
1057 */
bd1a3783 1058__cold bool __io_alloc_req_refill(struct io_ring_ctx *ctx)
5d5901a3 1059 __must_hold(&ctx->uring_lock)
2b188cc1 1060{
864ea921 1061 gfp_t gfp = GFP_KERNEL | __GFP_NOWARN;
3ab665b7 1062 void *reqs[IO_REQ_ALLOC_BATCH];
864ea921 1063 int ret, i;
e5d1bc0a 1064
23a5c43b
PB
1065 /*
1066 * If we have more than a batch's worth of requests in our IRQ side
1067 * locked cache, grab the lock and move them over to our submission
1068 * side cache.
1069 */
a6d97a8a 1070 if (data_race(ctx->locked_free_nr) > IO_COMPL_BATCH) {
23a5c43b 1071 io_flush_cached_locked_reqs(ctx, &ctx->submit_state);
88ab95be 1072 if (!io_req_cache_empty(ctx))
23a5c43b
PB
1073 return true;
1074 }
e5d1bc0a 1075
3ab665b7 1076 ret = kmem_cache_alloc_bulk(req_cachep, gfp, ARRAY_SIZE(reqs), reqs);
fd6fab2c 1077
864ea921
PB
1078 /*
1079 * Bulk alloc is all-or-nothing. If we fail to get a batch,
1080 * retry single alloc to be on the safe side.
1081 */
1082 if (unlikely(ret <= 0)) {
3ab665b7
PB
1083 reqs[0] = kmem_cache_alloc(req_cachep, gfp);
1084 if (!reqs[0])
a33ae9ce 1085 return false;
864ea921 1086 ret = 1;
2b188cc1 1087 }
864ea921 1088
37f0e767 1089 percpu_ref_get_many(&ctx->refs, ret);
3ab665b7 1090 for (i = 0; i < ret; i++) {
23a5c43b 1091 struct io_kiocb *req = reqs[i];
3ab665b7
PB
1092
1093 io_preinit_req(req, ctx);
fa05457a 1094 io_req_add_to_cache(req, ctx);
3ab665b7 1095 }
a33ae9ce
PB
1096 return true;
1097}
1098
6b639522 1099static inline void io_dismantle_req(struct io_kiocb *req)
2b188cc1 1100{
094bae49 1101 unsigned int flags = req->flags;
929a3af9 1102
867f8fa5 1103 if (unlikely(flags & IO_REQ_CLEAN_FLAGS))
3a0a6902 1104 io_clean_op(req);
e1d767f0
PB
1105 if (!(flags & REQ_F_FIXED_FILE))
1106 io_put_file(req->file);
e65ef56d
JA
1107}
1108
59915143 1109__cold void io_free_req(struct io_kiocb *req)
c6ca97b3 1110{
51a4cc11 1111 struct io_ring_ctx *ctx = req->ctx;
c6ca97b3 1112
7ac1edc4 1113 io_req_put_rsrc(req);
216578e5 1114 io_dismantle_req(req);
5afa4650 1115 io_put_task_remote(req->task, 1);
c6ca97b3 1116
79ebeaee 1117 spin_lock(&ctx->completion_lock);
c2b6c6bc 1118 wq_list_add_head(&req->comp_list, &ctx->locked_free_list);
c34b025f 1119 ctx->locked_free_nr++;
79ebeaee 1120 spin_unlock(&ctx->completion_lock);
e65ef56d
JA
1121}
1122
d81499bf
PB
1123static void __io_req_find_next_prep(struct io_kiocb *req)
1124{
1125 struct io_ring_ctx *ctx = req->ctx;
d81499bf 1126
6971253f 1127 spin_lock(&ctx->completion_lock);
305bef98 1128 io_disarm_next(req);
6971253f 1129 spin_unlock(&ctx->completion_lock);
d81499bf
PB
1130}
1131
1132static inline struct io_kiocb *io_req_find_next(struct io_kiocb *req)
c69f8dbe 1133{
33cc89a9 1134 struct io_kiocb *nxt;
944e58bf 1135
9e645e11
JA
1136 /*
1137 * If LINK is set, we have dependent requests in this chain. If we
1138 * didn't fail this request, queue the first one up, moving any other
1139 * dependencies to the next request. In case of failure, fail the rest
1140 * of the chain.
1141 */
d81499bf
PB
1142 if (unlikely(req->flags & IO_DISARM_MASK))
1143 __io_req_find_next_prep(req);
33cc89a9
PB
1144 nxt = req->link;
1145 req->link = NULL;
1146 return nxt;
4d7dd462 1147}
9e645e11 1148
f237c30a 1149static void ctx_flush_and_put(struct io_ring_ctx *ctx, bool *locked)
2c32395d
PB
1150{
1151 if (!ctx)
1152 return;
ef060ea9
JA
1153 if (ctx->flags & IORING_SETUP_TASKRUN_FLAG)
1154 atomic_andnot(IORING_SQ_TASKRUN, &ctx->rings->sq_flags);
f237c30a 1155 if (*locked) {
c450178d 1156 io_submit_flush_completions(ctx);
2c32395d 1157 mutex_unlock(&ctx->uring_lock);
f237c30a 1158 *locked = false;
2c32395d
PB
1159 }
1160 percpu_ref_put(&ctx->refs);
1161}
1162
c6dd763c
DY
1163static unsigned int handle_tw_list(struct llist_node *node,
1164 struct io_ring_ctx **ctx, bool *locked,
1165 struct llist_node *last)
9f8d032a 1166{
c6dd763c
DY
1167 unsigned int count = 0;
1168
cb6bf7f2 1169 while (node && node != last) {
f88262e6 1170 struct llist_node *next = node->next;
9f8d032a
HX
1171 struct io_kiocb *req = container_of(node, struct io_kiocb,
1172 io_task_work.node);
1173
34d2bfe7
JA
1174 prefetch(container_of(next, struct io_kiocb, io_task_work.node));
1175
9f8d032a
HX
1176 if (req->ctx != *ctx) {
1177 ctx_flush_and_put(*ctx, locked);
1178 *ctx = req->ctx;
1179 /* if not contended, grab and improve batching */
1180 *locked = mutex_trylock(&(*ctx)->uring_lock);
1181 percpu_ref_get(&(*ctx)->refs);
f5868008
JA
1182 } else if (!*locked)
1183 *locked = mutex_trylock(&(*ctx)->uring_lock);
9f8d032a
HX
1184 req->io_task_work.func(req, locked);
1185 node = next;
c6dd763c 1186 count++;
f5868008
JA
1187 if (unlikely(need_resched())) {
1188 ctx_flush_and_put(*ctx, locked);
1189 *ctx = NULL;
1190 cond_resched();
1191 }
3a0c037b 1192 }
c6dd763c
DY
1193
1194 return count;
9f8d032a
HX
1195}
1196
923d1592
DY
1197/**
1198 * io_llist_xchg - swap all entries in a lock-less list
1199 * @head: the head of lock-less list to delete all entries
1200 * @new: new entry as the head of the list
1201 *
1202 * If list is empty, return NULL, otherwise, return the pointer to the first entry.
1203 * The order of entries returned is from the newest to the oldest added one.
1204 */
1205static inline struct llist_node *io_llist_xchg(struct llist_head *head,
1206 struct llist_node *new)
1207{
1208 return xchg(&head->first, new);
1209}
1210
1211/**
1212 * io_llist_cmpxchg - possibly swap all entries in a lock-less list
1213 * @head: the head of lock-less list to delete all entries
1214 * @old: expected old value of the first entry of the list
1215 * @new: new entry as the head of the list
1216 *
1217 * perform a cmpxchg on the first entry of the list.
1218 */
1219
1220static inline struct llist_node *io_llist_cmpxchg(struct llist_head *head,
1221 struct llist_node *old,
1222 struct llist_node *new)
1223{
1224 return cmpxchg(&head->first, old, new);
1225}
1226
c9f06aa7 1227void tctx_task_work(struct callback_head *cb)
c40f6379 1228{
f28c240e 1229 bool uring_locked = false;
ebd0df2e 1230 struct io_ring_ctx *ctx = NULL;
3f18407d
PB
1231 struct io_uring_task *tctx = container_of(cb, struct io_uring_task,
1232 task_work);
3a0c037b 1233 struct llist_node fake = {};
77e443ab 1234 struct llist_node *node;
cb6bf7f2
PB
1235 unsigned int loops = 0;
1236 unsigned int count = 0;
3a0c037b 1237
77e443ab
PB
1238 if (unlikely(current->flags & PF_EXITING)) {
1239 io_fallback_tw(tctx);
1240 return;
1241 }
3a0c037b 1242
cb6bf7f2 1243 do {
c6dd763c 1244 loops++;
3a0c037b 1245 node = io_llist_xchg(&tctx->task_list, &fake);
c6dd763c 1246 count += handle_tw_list(node, &ctx, &uring_locked, &fake);
50470fc5
PB
1247
1248 /* skip expensive cmpxchg if there are items in the list */
1249 if (READ_ONCE(tctx->task_list.first) != &fake)
1250 continue;
1251 if (uring_locked && !wq_list_empty(&ctx->submit_state.compl_reqs)) {
1252 io_submit_flush_completions(ctx);
1253 if (READ_ONCE(tctx->task_list.first) != &fake)
1254 continue;
1255 }
3a0c037b 1256 node = io_llist_cmpxchg(&tctx->task_list, &fake, NULL);
cb6bf7f2 1257 } while (node != &fake);
ebd0df2e 1258
f28c240e 1259 ctx_flush_and_put(ctx, &uring_locked);
3cc7fdb9
PB
1260
1261 /* relaxed read is enough as only the task itself sets ->in_idle */
1262 if (unlikely(atomic_read(&tctx->in_idle)))
1263 io_uring_drop_tctx_refs(current);
c6dd763c
DY
1264
1265 trace_io_uring_task_work_run(tctx, count, loops);
7cbf1722
JA
1266}
1267
d7593606
PB
1268static __cold void io_fallback_tw(struct io_uring_task *tctx)
1269{
1270 struct llist_node *node = llist_del_all(&tctx->task_list);
1271 struct io_kiocb *req;
1272
1273 while (node) {
1274 req = container_of(node, struct io_kiocb, io_task_work.node);
1275 node = node->next;
1276 if (llist_add(&req->io_task_work.node,
1277 &req->ctx->fallback_llist))
1278 schedule_delayed_work(&req->ctx->fallback_work, 1);
1279 }
1280}
1281
c0e0d6ba
DY
1282static void io_req_local_work_add(struct io_kiocb *req)
1283{
1284 struct io_ring_ctx *ctx = req->ctx;
1285
9ffa13ff
PB
1286 percpu_ref_get(&ctx->refs);
1287
ce8e04f6
JA
1288 if (!llist_add(&req->io_task_work.node, &ctx->work_llist))
1289 goto put_ref;
1290
130bd686 1291 /* needed for the following wake up */
fc86f9d3 1292 smp_mb__after_atomic();
c0e0d6ba
DY
1293
1294 if (unlikely(atomic_read(&req->task->io_uring->in_idle))) {
1295 io_move_task_work_from_local(ctx);
ce8e04f6 1296 goto put_ref;
c0e0d6ba
DY
1297 }
1298
1299 if (ctx->flags & IORING_SETUP_TASKRUN_FLAG)
1300 atomic_or(IORING_SQ_TASKRUN, &ctx->rings->sq_flags);
21a091b9
DY
1301 if (ctx->has_evfd)
1302 io_eventfd_signal(ctx);
d80c0f00
PB
1303
1304 if (READ_ONCE(ctx->cq_waiting))
1305 wake_up_state(ctx->submitter_task, TASK_INTERRUPTIBLE);
ce8e04f6
JA
1306
1307put_ref:
9ffa13ff 1308 percpu_ref_put(&ctx->refs);
c0e0d6ba
DY
1309}
1310
e52d2e58 1311void __io_req_task_work_add(struct io_kiocb *req, bool allow_local)
7cbf1722 1312{
c34398a8 1313 struct io_uring_task *tctx = req->task->io_uring;
9f010507 1314 struct io_ring_ctx *ctx = req->ctx;
7cbf1722 1315
c0e0d6ba
DY
1316 if (allow_local && ctx->flags & IORING_SETUP_DEFER_TASKRUN) {
1317 io_req_local_work_add(req);
1318 return;
1319 }
7cbf1722
JA
1320
1321 /* task_work already pending, we're done */
32d91f05 1322 if (!llist_add(&req->io_task_work.node, &tctx->task_list))
e09ee510 1323 return;
7cbf1722 1324
ef060ea9
JA
1325 if (ctx->flags & IORING_SETUP_TASKRUN_FLAG)
1326 atomic_or(IORING_SQ_TASKRUN, &ctx->rings->sq_flags);
1327
3fe07bcd 1328 if (likely(!task_work_add(req->task, &tctx->task_work, ctx->notify_method)))
e09ee510 1329 return;
2215bed9 1330
d7593606 1331 io_fallback_tw(tctx);
c0e0d6ba
DY
1332}
1333
1334static void __cold io_move_task_work_from_local(struct io_ring_ctx *ctx)
1335{
1336 struct llist_node *node;
1337
1338 node = llist_del_all(&ctx->work_llist);
1339 while (node) {
1340 struct io_kiocb *req = container_of(node, struct io_kiocb,
1341 io_task_work.node);
1342
1343 node = node->next;
1344 __io_req_task_work_add(req, false);
1345 }
1346}
1347
360173ab 1348static int __io_run_local_work(struct io_ring_ctx *ctx, bool *locked)
c0e0d6ba 1349{
c0e0d6ba 1350 struct llist_node *node;
c3f4d39e 1351 unsigned int loops = 0;
140102ae 1352 int ret = 0;
c0e0d6ba 1353
140102ae 1354 if (WARN_ON_ONCE(ctx->submitter_task != current))
c0e0d6ba 1355 return -EEXIST;
c3f4d39e
PB
1356 if (ctx->flags & IORING_SETUP_TASKRUN_FLAG)
1357 atomic_andnot(IORING_SQ_TASKRUN, &ctx->rings->sq_flags);
c0e0d6ba 1358again:
c3f4d39e
PB
1359 node = io_llist_xchg(&ctx->work_llist, NULL);
1360 while (node) {
c0e0d6ba
DY
1361 struct llist_node *next = node->next;
1362 struct io_kiocb *req = container_of(node, struct io_kiocb,
1363 io_task_work.node);
1364 prefetch(container_of(next, struct io_kiocb, io_task_work.node));
b3026767 1365 req->io_task_work.func(req, locked);
c0e0d6ba
DY
1366 ret++;
1367 node = next;
1368 }
c3f4d39e 1369 loops++;
c0e0d6ba 1370
c3f4d39e 1371 if (!llist_empty(&ctx->work_llist))
c0e0d6ba 1372 goto again;
b0b7a7d2 1373 if (*locked) {
c0e0d6ba 1374 io_submit_flush_completions(ctx);
b0b7a7d2
PB
1375 if (!llist_empty(&ctx->work_llist))
1376 goto again;
1377 }
f75d5036 1378 trace_io_uring_local_work_run(ctx, ret, loops);
c0e0d6ba 1379 return ret;
8ac5d85a
JA
1380}
1381
360173ab
PB
1382static inline int io_run_local_work_locked(struct io_ring_ctx *ctx)
1383{
1384 bool locked;
1385 int ret;
1386
1387 if (llist_empty(&ctx->work_llist))
1388 return 0;
1389
1390 locked = true;
1391 ret = __io_run_local_work(ctx, &locked);
1392 /* shouldn't happen! */
1393 if (WARN_ON_ONCE(!locked))
1394 mutex_lock(&ctx->uring_lock);
1395 return ret;
1396}
1397
3e565555 1398static int io_run_local_work(struct io_ring_ctx *ctx)
8ac5d85a 1399{
2f413956 1400 bool locked = mutex_trylock(&ctx->uring_lock);
8ac5d85a
JA
1401 int ret;
1402
b3026767 1403 ret = __io_run_local_work(ctx, &locked);
8ac5d85a
JA
1404 if (locked)
1405 mutex_unlock(&ctx->uring_lock);
1406
1407 return ret;
c0e0d6ba
DY
1408}
1409
f237c30a 1410static void io_req_task_cancel(struct io_kiocb *req, bool *locked)
c40f6379 1411{
971cf9c1 1412 io_tw_lock(req->ctx, locked);
973fc83f 1413 io_req_defer_failed(req, req->cqe.res);
c40f6379
JA
1414}
1415
329061d3 1416void io_req_task_submit(struct io_kiocb *req, bool *locked)
c40f6379 1417{
971cf9c1 1418 io_tw_lock(req->ctx, locked);
316319e8 1419 /* req->task == current here, checking PF_EXITING is safe */
6bb30855 1420 if (unlikely(req->task->flags & PF_EXITING))
973fc83f 1421 io_req_defer_failed(req, -EFAULT);
6bb30855
DY
1422 else if (req->flags & REQ_F_FORCE_ASYNC)
1423 io_queue_iowq(req, locked);
1424 else
1425 io_queue_sqe(req);
c40f6379
JA
1426}
1427
59915143 1428void io_req_task_queue_fail(struct io_kiocb *req, int ret)
c40f6379 1429{
97b388d7 1430 io_req_set_res(req, ret, 0);
5b0a6acc 1431 req->io_task_work.func = io_req_task_cancel;
3fe07bcd 1432 io_req_task_work_add(req);
c40f6379
JA
1433}
1434
f3b44f92 1435void io_req_task_queue(struct io_kiocb *req)
a3df7698 1436{
5b0a6acc 1437 req->io_task_work.func = io_req_task_submit;
3fe07bcd 1438 io_req_task_work_add(req);
a3df7698
PB
1439}
1440
59915143 1441void io_queue_next(struct io_kiocb *req)
c69f8dbe 1442{
9b5f7bd9 1443 struct io_kiocb *nxt = io_req_find_next(req);
944e58bf
PB
1444
1445 if (nxt)
906a8c3f 1446 io_req_task_queue(nxt);
c69f8dbe
JL
1447}
1448
f3b44f92 1449void io_free_batch_list(struct io_ring_ctx *ctx, struct io_wq_work_node *node)
3aa83bfb 1450 __must_hold(&ctx->uring_lock)
5af1d13e 1451{
d4b7a5ef 1452 struct task_struct *task = NULL;
37f0e767 1453 int task_refs = 0;
5af1d13e 1454
3aa83bfb
PB
1455 do {
1456 struct io_kiocb *req = container_of(node, struct io_kiocb,
1457 comp_list);
2d6500d4 1458
a538be5b
PB
1459 if (unlikely(req->flags & IO_REQ_CLEAN_SLOW_FLAGS)) {
1460 if (req->flags & REQ_F_REFCOUNT) {
1461 node = req->comp_list.next;
1462 if (!req_ref_put_and_test(req))
1463 continue;
1464 }
b605a7fa
PB
1465 if ((req->flags & REQ_F_POLLED) && req->apoll) {
1466 struct async_poll *apoll = req->apoll;
1467
1468 if (apoll->double_poll)
1469 kfree(apoll->double_poll);
9731bc98
JA
1470 if (!io_alloc_cache_put(&ctx->apoll_cache, &apoll->cache))
1471 kfree(apoll);
b605a7fa
PB
1472 req->flags &= ~REQ_F_POLLED;
1473 }
da1a08c5 1474 if (req->flags & IO_REQ_LINK_FLAGS)
57859f4d 1475 io_queue_next(req);
a538be5b
PB
1476 if (unlikely(req->flags & IO_REQ_CLEAN_FLAGS))
1477 io_clean_op(req);
c1e53a69 1478 }
a538be5b
PB
1479 if (!(req->flags & REQ_F_FIXED_FILE))
1480 io_put_file(req->file);
2d6500d4 1481
ab409402 1482 io_req_put_rsrc_locked(req, ctx);
5af1d13e 1483
d4b7a5ef
PB
1484 if (req->task != task) {
1485 if (task)
1486 io_put_task(task, task_refs);
1487 task = req->task;
1488 task_refs = 0;
1489 }
1490 task_refs++;
c1e53a69 1491 node = req->comp_list.next;
fa05457a 1492 io_req_add_to_cache(req, ctx);
3aa83bfb 1493 } while (node);
d4b7a5ef 1494
d4b7a5ef
PB
1495 if (task)
1496 io_put_task(task, task_refs);
7a743e22
PB
1497}
1498
c450178d 1499static void __io_submit_flush_completions(struct io_ring_ctx *ctx)
a141dd89 1500 __must_hold(&ctx->uring_lock)
905c172f 1501{
6f33b0bc 1502 struct io_wq_work_node *node, *prev;
cd0ca2e0 1503 struct io_submit_state *state = &ctx->submit_state;
905c172f 1504
f66f7342 1505 __io_cq_lock(ctx);
931147dd
DY
1506 /* must come first to preserve CQE ordering in failure cases */
1507 if (state->cqes_count)
1508 __io_flush_post_cqes(ctx);
d9dee430
PB
1509 wq_list_for_each(node, prev, &state->compl_reqs) {
1510 struct io_kiocb *req = container_of(node, struct io_kiocb,
1511 comp_list);
3d4aeb9f 1512
f66f7342
PB
1513 if (!(req->flags & REQ_F_CQE_SKIP) &&
1514 unlikely(!__io_fill_cqe_req(ctx, req))) {
1515 if (ctx->task_complete) {
1516 spin_lock(&ctx->completion_lock);
1517 io_req_cqe_overflow(req);
1518 spin_unlock(&ctx->completion_lock);
1519 } else {
1520 io_req_cqe_overflow(req);
1521 }
1522 }
905c172f 1523 }
3181e22f 1524 __io_cq_unlock_post_flush(ctx);
d9dee430 1525
931147dd
DY
1526 if (!wq_list_empty(&ctx->submit_state.compl_reqs)) {
1527 io_free_batch_list(ctx, state->compl_reqs.first);
1528 INIT_WQ_LIST(&state->compl_reqs);
1529 }
7a743e22
PB
1530}
1531
ba816ad6
JA
1532/*
1533 * Drop reference to request, return next in chain (if there is one) if this
1534 * was the last reference to this request.
1535 */
0d85035a 1536static inline struct io_kiocb *io_put_req_find_next(struct io_kiocb *req)
e65ef56d 1537{
9b5f7bd9
PB
1538 struct io_kiocb *nxt = NULL;
1539
de9b4cca 1540 if (req_ref_put_and_test(req)) {
da1a08c5 1541 if (unlikely(req->flags & IO_REQ_LINK_FLAGS))
7819a1f6 1542 nxt = io_req_find_next(req);
f5c6cf2a 1543 io_free_req(req);
2a44f467 1544 }
9b5f7bd9 1545 return nxt;
2b188cc1
JA
1546}
1547
6c503150 1548static unsigned io_cqring_events(struct io_ring_ctx *ctx)
a3a0e43f
JA
1549{
1550 /* See comment at the top of this file */
1551 smp_rmb();
e23de15f 1552 return __io_cqring_events(ctx);
a3a0e43f
JA
1553}
1554
def596e9
JA
1555/*
1556 * We can't just wait for polled events to come to us, we have to actively
1557 * find and complete them.
1558 */
c072481d 1559static __cold void io_iopoll_try_reap_events(struct io_ring_ctx *ctx)
def596e9
JA
1560{
1561 if (!(ctx->flags & IORING_SETUP_IOPOLL))
1562 return;
1563
1564 mutex_lock(&ctx->uring_lock);
5eef4e87 1565 while (!wq_list_empty(&ctx->iopoll_list)) {
b2edc0a7 1566 /* let it sleep and repeat later if can't complete a request */
5ba3c874 1567 if (io_do_iopoll(ctx, true) == 0)
b2edc0a7 1568 break;
08f5439f
JA
1569 /*
1570 * Ensure we allow local-to-the-cpu processing to take place,
1571 * in this case we need to ensure that we reap all events.
3fcee5a6 1572 * Also let task_work, etc. to progress by releasing the mutex
08f5439f 1573 */
3fcee5a6
PB
1574 if (need_resched()) {
1575 mutex_unlock(&ctx->uring_lock);
1576 cond_resched();
1577 mutex_lock(&ctx->uring_lock);
1578 }
def596e9
JA
1579 }
1580 mutex_unlock(&ctx->uring_lock);
1581}
1582
7668b92a 1583static int io_iopoll_check(struct io_ring_ctx *ctx, long min)
def596e9 1584{
7668b92a 1585 unsigned int nr_events = 0;
e9979b36 1586 int ret = 0;
155bc950 1587 unsigned long check_cq;
500f9fba 1588
76de6749
PB
1589 if (!io_allowed_run_tw(ctx))
1590 return -EEXIST;
1591
3a08576b
PB
1592 check_cq = READ_ONCE(ctx->check_cq);
1593 if (unlikely(check_cq)) {
1594 if (check_cq & BIT(IO_CHECK_CQ_OVERFLOW_BIT))
a85381d8 1595 __io_cqring_overflow_flush(ctx);
3a08576b
PB
1596 /*
1597 * Similarly do not spin if we have not informed the user of any
1598 * dropped CQE.
1599 */
1600 if (check_cq & BIT(IO_CHECK_CQ_DROPPED_BIT))
1601 return -EBADR;
1602 }
f39c8a5b
PB
1603 /*
1604 * Don't enter poll loop if we already have events pending.
1605 * If we do, we can potentially be spinning for commands that
1606 * already triggered a CQE (eg in error).
1607 */
f39c8a5b 1608 if (io_cqring_events(ctx))
d487b43c 1609 return 0;
155bc950 1610
def596e9 1611 do {
500f9fba
JA
1612 /*
1613 * If a submit got punted to a workqueue, we can have the
1614 * application entering polling for a command before it gets
1615 * issued. That app will hold the uring_lock for the duration
1616 * of the poll right here, so we need to take a breather every
1617 * now and then to ensure that the issue has a chance to add
1618 * the poll to the issued list. Otherwise we can spin here
1619 * forever, while the workqueue is stuck trying to acquire the
1620 * very same mutex.
1621 */
dac6a0ea
JA
1622 if (wq_list_empty(&ctx->iopoll_list) ||
1623 io_task_work_pending(ctx)) {
8f487ef2
PB
1624 u32 tail = ctx->cached_cq_tail;
1625
8de11cdc 1626 (void) io_run_local_work_locked(ctx);
def596e9 1627
dac6a0ea
JA
1628 if (task_work_pending(current) ||
1629 wq_list_empty(&ctx->iopoll_list)) {
dac6a0ea 1630 mutex_unlock(&ctx->uring_lock);
9d54bd6a 1631 io_run_task_work();
dac6a0ea 1632 mutex_lock(&ctx->uring_lock);
dac6a0ea 1633 }
8f487ef2
PB
1634 /* some requests don't go through iopoll_list */
1635 if (tail != ctx->cached_cq_tail ||
5eef4e87 1636 wq_list_empty(&ctx->iopoll_list))
e9979b36 1637 break;
500f9fba 1638 }
5ba3c874
PB
1639 ret = io_do_iopoll(ctx, !min);
1640 if (ret < 0)
1641 break;
1642 nr_events += ret;
1643 ret = 0;
1644 } while (nr_events < min && !need_resched());
d487b43c 1645
def596e9
JA
1646 return ret;
1647}
7012c815
PB
1648
1649void io_req_task_complete(struct io_kiocb *req, bool *locked)
8ef12efe 1650{
7012c815 1651 if (*locked)
9da070b1 1652 io_req_complete_defer(req);
7012c815 1653 else
27f35fe9 1654 io_req_complete_post(req, IO_URING_F_UNLOCKED);
8ef12efe
JA
1655}
1656
def596e9
JA
1657/*
1658 * After the iocb has been issued, it's safe to be found on the poll list.
1659 * Adding the kiocb to the list AFTER submission ensures that we don't
f39c8a5b 1660 * find it from a io_do_iopoll() thread before the issuer is done
def596e9
JA
1661 * accessing the kiocb cookie.
1662 */
9882131c 1663static void io_iopoll_req_issued(struct io_kiocb *req, unsigned int issue_flags)
def596e9
JA
1664{
1665 struct io_ring_ctx *ctx = req->ctx;
3b44b371 1666 const bool needs_lock = issue_flags & IO_URING_F_UNLOCKED;
cb3d8972
PB
1667
1668 /* workqueue context doesn't hold uring_lock, grab it now */
3b44b371 1669 if (unlikely(needs_lock))
cb3d8972 1670 mutex_lock(&ctx->uring_lock);
def596e9
JA
1671
1672 /*
1673 * Track whether we have multiple files in our lists. This will impact
1674 * how we do polling eventually, not spinning if we're on potentially
1675 * different devices.
1676 */
5eef4e87 1677 if (wq_list_empty(&ctx->iopoll_list)) {
915b3dde
HX
1678 ctx->poll_multi_queue = false;
1679 } else if (!ctx->poll_multi_queue) {
def596e9
JA
1680 struct io_kiocb *list_req;
1681
5eef4e87
PB
1682 list_req = container_of(ctx->iopoll_list.first, struct io_kiocb,
1683 comp_list);
30da1b45 1684 if (list_req->file != req->file)
915b3dde 1685 ctx->poll_multi_queue = true;
def596e9
JA
1686 }
1687
1688 /*
1689 * For fast devices, IO may have already completed. If it has, add
1690 * it to the front so we find it first.
1691 */
65a6543d 1692 if (READ_ONCE(req->iopoll_completed))
5eef4e87 1693 wq_list_add_head(&req->comp_list, &ctx->iopoll_list);
def596e9 1694 else
5eef4e87 1695 wq_list_add_tail(&req->comp_list, &ctx->iopoll_list);
bdcd3eab 1696
3b44b371 1697 if (unlikely(needs_lock)) {
cb3d8972
PB
1698 /*
1699 * If IORING_SETUP_SQPOLL is enabled, sqes are either handle
1700 * in sq thread task context or in io worker task context. If
1701 * current task context is sq thread, we don't need to check
1702 * whether should wake up sq thread.
1703 */
1704 if ((ctx->flags & IORING_SETUP_SQPOLL) &&
1705 wq_has_sleeper(&ctx->sq_data->wait))
1706 wake_up(&ctx->sq_data->wait);
1707
1708 mutex_unlock(&ctx->uring_lock);
1709 }
def596e9
JA
1710}
1711
4503b767
JA
1712static bool io_bdev_nowait(struct block_device *bdev)
1713{
568ec936 1714 return !bdev || bdev_nowait(bdev);
4503b767
JA
1715}
1716
2b188cc1
JA
1717/*
1718 * If we tracked the file through the SCM inflight mechanism, we could support
1719 * any file. For now, just ensure that anything potentially problematic is done
1720 * inline.
1721 */
88459b50 1722static bool __io_file_supports_nowait(struct file *file, umode_t mode)
2b188cc1 1723{
4503b767 1724 if (S_ISBLK(mode)) {
4e7b5671
CH
1725 if (IS_ENABLED(CONFIG_BLOCK) &&
1726 io_bdev_nowait(I_BDEV(file->f_mapping->host)))
4503b767
JA
1727 return true;
1728 return false;
1729 }
976517f1 1730 if (S_ISSOCK(mode))
2b188cc1 1731 return true;
4503b767 1732 if (S_ISREG(mode)) {
4e7b5671
CH
1733 if (IS_ENABLED(CONFIG_BLOCK) &&
1734 io_bdev_nowait(file->f_inode->i_sb->s_bdev) &&
e5550a14 1735 !io_is_uring_fops(file))
4503b767
JA
1736 return true;
1737 return false;
1738 }
2b188cc1 1739
c5b85625
JA
1740 /* any ->read/write should understand O_NONBLOCK */
1741 if (file->f_flags & O_NONBLOCK)
1742 return true;
35645ac3 1743 return file->f_mode & FMODE_NOWAIT;
2b188cc1 1744}
c5b85625 1745
88459b50
PB
1746/*
1747 * If we tracked the file through the SCM inflight mechanism, we could support
1748 * any file. For now, just ensure that anything potentially problematic is done
1749 * inline.
1750 */
a4ad4f74 1751unsigned int io_file_get_flags(struct file *file)
88459b50
PB
1752{
1753 umode_t mode = file_inode(file)->i_mode;
1754 unsigned int res = 0;
af197f50 1755
88459b50
PB
1756 if (S_ISREG(mode))
1757 res |= FFS_ISREG;
1758 if (__io_file_supports_nowait(file, mode))
1759 res |= FFS_NOWAIT;
1760 return res;
2b188cc1
JA
1761}
1762
99f15d8d 1763bool io_alloc_async_data(struct io_kiocb *req)
3d9932a8 1764{
f30bd4d0
BL
1765 WARN_ON_ONCE(!io_cold_defs[req->opcode].async_size);
1766 req->async_data = kmalloc(io_cold_defs[req->opcode].async_size, GFP_KERNEL);
d886e185
PB
1767 if (req->async_data) {
1768 req->flags |= REQ_F_ASYNC_DATA;
1769 return false;
1770 }
1771 return true;
3d9932a8
XW
1772}
1773
f3b44f92 1774int io_req_prep_async(struct io_kiocb *req)
f67676d1 1775{
f30bd4d0 1776 const struct io_cold_def *cdef = &io_cold_defs[req->opcode];
a7dd2782 1777 const struct io_issue_def *def = &io_issue_defs[req->opcode];
0702e536
JA
1778
1779 /* assign early for deferred execution for non-fixed file */
1780 if (def->needs_file && !(req->flags & REQ_F_FIXED_FILE))
1781 req->file = io_file_get_normal(req, req->cqe.fd);
f30bd4d0 1782 if (!cdef->prep_async)
0702e536
JA
1783 return 0;
1784 if (WARN_ON_ONCE(req_has_async_data(req)))
1785 return -EFAULT;
f30bd4d0 1786 if (!def->manual_alloc) {
59169439
PB
1787 if (io_alloc_async_data(req))
1788 return -EAGAIN;
1789 }
f30bd4d0 1790 return cdef->prep_async(req);
bfe76559
PB
1791}
1792
9cf7c104
PB
1793static u32 io_get_sequence(struct io_kiocb *req)
1794{
a3dbdf54 1795 u32 seq = req->ctx->cached_sq_head;
963c6abb 1796 struct io_kiocb *cur;
9cf7c104 1797
a3dbdf54 1798 /* need original cached_sq_head, but it was increased for each req */
963c6abb 1799 io_for_each_link(cur, req)
a3dbdf54
PB
1800 seq--;
1801 return seq;
9cf7c104
PB
1802}
1803
c072481d 1804static __cold void io_drain_req(struct io_kiocb *req)
e276ae34 1805 __must_hold(&ctx->uring_lock)
de0617e4 1806{
a197f664 1807 struct io_ring_ctx *ctx = req->ctx;
27dc8338 1808 struct io_defer_entry *de;
f67676d1 1809 int ret;
e0eb71dc 1810 u32 seq = io_get_sequence(req);
3c19966d 1811
9d858b21 1812 /* Still need defer if there is pending req in defer list. */
e302f104 1813 spin_lock(&ctx->completion_lock);
5e371265 1814 if (!req_need_defer(req, seq) && list_empty_careful(&ctx->defer_list)) {
e302f104 1815 spin_unlock(&ctx->completion_lock);
e0eb71dc 1816queue:
10c66904 1817 ctx->drain_active = false;
e0eb71dc
PB
1818 io_req_task_queue(req);
1819 return;
10c66904 1820 }
e302f104 1821 spin_unlock(&ctx->completion_lock);
9cf7c104 1822
cbdcb435 1823 io_prep_async_link(req);
27dc8338 1824 de = kmalloc(sizeof(*de), GFP_KERNEL);
76cc33d7 1825 if (!de) {
1b48773f 1826 ret = -ENOMEM;
ef5c600a
DY
1827 io_req_defer_failed(req, ret);
1828 return;
76cc33d7 1829 }
2d28390a 1830
79ebeaee 1831 spin_lock(&ctx->completion_lock);
9cf7c104 1832 if (!req_need_defer(req, seq) && list_empty(&ctx->defer_list)) {
79ebeaee 1833 spin_unlock(&ctx->completion_lock);
27dc8338 1834 kfree(de);
e0eb71dc 1835 goto queue;
de0617e4
JA
1836 }
1837
48863ffd 1838 trace_io_uring_defer(req);
27dc8338 1839 de->req = req;
9cf7c104 1840 de->seq = seq;
27dc8338 1841 list_add_tail(&de->list, &ctx->defer_list);
79ebeaee 1842 spin_unlock(&ctx->completion_lock);
de0617e4
JA
1843}
1844
68fb8979 1845static void io_clean_op(struct io_kiocb *req)
99bc4c38 1846{
8197b053
PB
1847 if (req->flags & REQ_F_BUFFER_SELECTED) {
1848 spin_lock(&req->ctx->completion_lock);
cc3cec83 1849 io_put_kbuf_comp(req);
8197b053
PB
1850 spin_unlock(&req->ctx->completion_lock);
1851 }
99bc4c38 1852
0e1b6fe3 1853 if (req->flags & REQ_F_NEED_CLEANUP) {
f30bd4d0 1854 const struct io_cold_def *def = &io_cold_defs[req->opcode];
bb040a21 1855
4d4c9cff
JA
1856 if (def->cleanup)
1857 def->cleanup(req);
99bc4c38 1858 }
75652a30
JA
1859 if ((req->flags & REQ_F_POLLED) && req->apoll) {
1860 kfree(req->apoll->double_poll);
1861 kfree(req->apoll);
1862 req->apoll = NULL;
1863 }
9cae36a0
JA
1864 if (req->flags & REQ_F_INFLIGHT) {
1865 struct io_uring_task *tctx = req->task->io_uring;
1866
1867 atomic_dec(&tctx->inflight_tracked);
1868 }
c854357b 1869 if (req->flags & REQ_F_CREDS)
b8e64b53 1870 put_cred(req->creds);
d886e185
PB
1871 if (req->flags & REQ_F_ASYNC_DATA) {
1872 kfree(req->async_data);
1873 req->async_data = NULL;
1874 }
c854357b 1875 req->flags &= ~IO_REQ_CLEAN_FLAGS;
99bc4c38
PB
1876}
1877
f4992544
JA
1878static bool io_assign_file(struct io_kiocb *req, const struct io_issue_def *def,
1879 unsigned int issue_flags)
6bf9c47a 1880{
f4992544 1881 if (req->file || !def->needs_file)
6bf9c47a
JA
1882 return true;
1883
1884 if (req->flags & REQ_F_FIXED_FILE)
cef216fc 1885 req->file = io_file_get_fixed(req, req->cqe.fd, issue_flags);
6bf9c47a 1886 else
cef216fc 1887 req->file = io_file_get_normal(req, req->cqe.fd);
6bf9c47a 1888
772f5e00 1889 return !!req->file;
6bf9c47a
JA
1890}
1891
889fca73 1892static int io_issue_sqe(struct io_kiocb *req, unsigned int issue_flags)
2b188cc1 1893{
a7dd2782 1894 const struct io_issue_def *def = &io_issue_defs[req->opcode];
5730b27e 1895 const struct cred *creds = NULL;
d625c6ee 1896 int ret;
2b188cc1 1897
f4992544 1898 if (unlikely(!io_assign_file(req, def, issue_flags)))
70152140
JA
1899 return -EBADF;
1900
6878b40e 1901 if (unlikely((req->flags & REQ_F_CREDS) && req->creds != current_cred()))
c10d1f98 1902 creds = override_creds(req->creds);
5730b27e 1903
fcde59fe 1904 if (!def->audit_skip)
5bd2182d
PM
1905 audit_uring_entry(req->opcode);
1906
0702e536 1907 ret = def->issue(req, issue_flags);
2b188cc1 1908
fcde59fe 1909 if (!def->audit_skip)
5bd2182d
PM
1910 audit_uring_exit(!ret, ret);
1911
5730b27e
JA
1912 if (creds)
1913 revert_creds(creds);
97b388d7 1914
75d7b3ae
PB
1915 if (ret == IOU_OK) {
1916 if (issue_flags & IO_URING_F_COMPLETE_DEFER)
9da070b1 1917 io_req_complete_defer(req);
75d7b3ae 1918 else
1bec951c 1919 io_req_complete_post(req, issue_flags);
75d7b3ae 1920 } else if (ret != IOU_ISSUE_SKIP_COMPLETE)
def596e9 1921 return ret;
97b388d7 1922
b532576e 1923 /* If the op doesn't have a file, we're not polling for it */
ef0ec1ad 1924 if ((req->ctx->flags & IORING_SETUP_IOPOLL) && def->iopoll_queue)
9882131c 1925 io_iopoll_req_issued(req, issue_flags);
def596e9
JA
1926
1927 return 0;
2b188cc1
JA
1928}
1929
329061d3
JA
1930int io_poll_issue(struct io_kiocb *req, bool *locked)
1931{
1932 io_tw_lock(req->ctx, locked);
9a692451
DY
1933 return io_issue_sqe(req, IO_URING_F_NONBLOCK|IO_URING_F_MULTISHOT|
1934 IO_URING_F_COMPLETE_DEFER);
329061d3
JA
1935}
1936
c9f06aa7 1937struct io_wq_work *io_wq_free_work(struct io_wq_work *work)
ebc11b6c
PB
1938{
1939 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
1940
1941 req = io_put_req_find_next(req);
1942 return req ? &req->work : NULL;
1943}
1944
c9f06aa7 1945void io_wq_submit_work(struct io_wq_work *work)
2b188cc1
JA
1946{
1947 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
a7dd2782 1948 const struct io_issue_def *def = &io_issue_defs[req->opcode];
e6aeb272 1949 unsigned int issue_flags = IO_URING_F_UNLOCKED | IO_URING_F_IOWQ;
d01905db 1950 bool needs_poll = false;
6bf9c47a 1951 int ret = 0, err = -ECANCELED;
2b188cc1 1952
23a6c9ac 1953 /* one will be dropped by ->io_wq_free_work() after returning to io-wq */
48dcd38d
PB
1954 if (!(req->flags & REQ_F_REFCOUNT))
1955 __io_req_set_refcount(req, 2);
1956 else
1957 req_ref_get(req);
5d5901a3 1958
cb2d344c 1959 io_arm_ltimeout(req);
6bf9c47a 1960
dadebc35 1961 /* either cancelled or io-wq is dying, so don't touch tctx->iowq */
d01905db 1962 if (work->flags & IO_WQ_WORK_CANCEL) {
0f8da75b 1963fail:
6bf9c47a 1964 io_req_task_queue_fail(req, err);
d01905db
PB
1965 return;
1966 }
f4992544 1967 if (!io_assign_file(req, def, issue_flags)) {
0f8da75b
PB
1968 err = -EBADF;
1969 work->flags |= IO_WQ_WORK_CANCEL;
1970 goto fail;
1971 }
31b51510 1972
d01905db 1973 if (req->flags & REQ_F_FORCE_ASYNC) {
afb7f56f
PB
1974 bool opcode_poll = def->pollin || def->pollout;
1975
1976 if (opcode_poll && file_can_poll(req->file)) {
1977 needs_poll = true;
d01905db 1978 issue_flags |= IO_URING_F_NONBLOCK;
afb7f56f 1979 }
561fb04a 1980 }
31b51510 1981
d01905db
PB
1982 do {
1983 ret = io_issue_sqe(req, issue_flags);
1984 if (ret != -EAGAIN)
1985 break;
1986 /*
1987 * We can get EAGAIN for iopolled IO even though we're
1988 * forcing a sync submission from here, since we can't
1989 * wait for request slots on the block side.
1990 */
1991 if (!needs_poll) {
e0deb6a0
PB
1992 if (!(req->ctx->flags & IORING_SETUP_IOPOLL))
1993 break;
d01905db
PB
1994 cond_resched();
1995 continue;
90fa0288
HX
1996 }
1997
4d9237e3 1998 if (io_arm_poll_handler(req, issue_flags) == IO_APOLL_OK)
d01905db
PB
1999 return;
2000 /* aborted or ready, in either case retry blocking */
2001 needs_poll = false;
2002 issue_flags &= ~IO_URING_F_NONBLOCK;
2003 } while (1);
31b51510 2004
a3df7698 2005 /* avoid locking problems by failing it from a clean context */
97b388d7 2006 if (ret < 0)
a3df7698 2007 io_req_task_queue_fail(req, ret);
2b188cc1
JA
2008}
2009
531113bb
JA
2010inline struct file *io_file_get_fixed(struct io_kiocb *req, int fd,
2011 unsigned int issue_flags)
09bb8394 2012{
5106dd6e
JA
2013 struct io_ring_ctx *ctx = req->ctx;
2014 struct file *file = NULL;
ac177053 2015 unsigned long file_ptr;
09bb8394 2016
93f052cb 2017 io_ring_submit_lock(ctx, issue_flags);
5106dd6e 2018
ac177053 2019 if (unlikely((unsigned int)fd >= ctx->nr_user_files))
5106dd6e 2020 goto out;
ac177053
PB
2021 fd = array_index_nospec(fd, ctx->nr_user_files);
2022 file_ptr = io_fixed_file_slot(&ctx->file_table, fd)->file_ptr;
2023 file = (struct file *) (file_ptr & FFS_MASK);
2024 file_ptr &= ~FFS_MASK;
2025 /* mask in overlapping REQ_F and FFS bits */
35645ac3 2026 req->flags |= (file_ptr << REQ_F_SUPPORT_NOWAIT_BIT);
5106dd6e
JA
2027 io_req_set_rsrc_node(req, ctx, 0);
2028out:
93f052cb 2029 io_ring_submit_unlock(ctx, issue_flags);
ac177053
PB
2030 return file;
2031}
d44f554e 2032
531113bb 2033struct file *io_file_get_normal(struct io_kiocb *req, int fd)
ac177053 2034{
62906e89 2035 struct file *file = fget(fd);
ac177053 2036
48863ffd 2037 trace_io_uring_file_get(req, fd);
09bb8394 2038
ac177053 2039 /* we don't allow fixed io_uring files */
e5550a14 2040 if (file && io_is_uring_fops(file))
9cae36a0 2041 io_req_track_inflight(req);
8371adf5 2042 return file;
09bb8394
JA
2043}
2044
7bfa9bad 2045static void io_queue_async(struct io_kiocb *req, int ret)
d475a9a6
PB
2046 __must_hold(&req->ctx->uring_lock)
2047{
7bfa9bad
PB
2048 struct io_kiocb *linked_timeout;
2049
2050 if (ret != -EAGAIN || (req->flags & REQ_F_NOWAIT)) {
973fc83f 2051 io_req_defer_failed(req, ret);
7bfa9bad
PB
2052 return;
2053 }
2054
2055 linked_timeout = io_prep_linked_timeout(req);
d475a9a6 2056
4d9237e3 2057 switch (io_arm_poll_handler(req, 0)) {
d475a9a6 2058 case IO_APOLL_READY:
336d28a8 2059 io_kbuf_recycle(req, 0);
d475a9a6
PB
2060 io_req_task_queue(req);
2061 break;
2062 case IO_APOLL_ABORTED:
6436c770 2063 io_kbuf_recycle(req, 0);
77955efb 2064 io_queue_iowq(req, NULL);
d475a9a6 2065 break;
b1c62645 2066 case IO_APOLL_OK:
b1c62645 2067 break;
d475a9a6
PB
2068 }
2069
2070 if (linked_timeout)
2071 io_queue_linked_timeout(linked_timeout);
2072}
2073
cbc2e203 2074static inline void io_queue_sqe(struct io_kiocb *req)
282cdc86 2075 __must_hold(&req->ctx->uring_lock)
2b188cc1 2076{
e0c5c576 2077 int ret;
2b188cc1 2078
c5eef2b9 2079 ret = io_issue_sqe(req, IO_URING_F_NONBLOCK|IO_URING_F_COMPLETE_DEFER);
193155c8 2080
491381ce
JA
2081 /*
2082 * We async punt it if the file wasn't marked NOWAIT, or if the file
2083 * doesn't support non-blocking read/write attempts
2084 */
7bfa9bad 2085 if (likely(!ret))
cb2d344c 2086 io_arm_ltimeout(req);
7bfa9bad
PB
2087 else
2088 io_queue_async(req, ret);
2b188cc1
JA
2089}
2090
4652fe3f 2091static void io_queue_sqe_fallback(struct io_kiocb *req)
282cdc86 2092 __must_hold(&req->ctx->uring_lock)
4fe2c963 2093{
17b147f6
PB
2094 if (unlikely(req->flags & REQ_F_FAIL)) {
2095 /*
2096 * We don't submit, fail them all, for that replace hardlinks
2097 * with normal links. Extra REQ_F_LINK is tolerated.
2098 */
2099 req->flags &= ~REQ_F_HARDLINK;
2100 req->flags |= REQ_F_LINK;
973fc83f 2101 io_req_defer_failed(req, req->cqe.res);
76cc33d7
PB
2102 } else {
2103 int ret = io_req_prep_async(req);
2104
ef5c600a 2105 if (unlikely(ret)) {
973fc83f 2106 io_req_defer_failed(req, ret);
ef5c600a
DY
2107 return;
2108 }
2109
2110 if (unlikely(req->ctx->drain_active))
2111 io_drain_req(req);
76cc33d7 2112 else
77955efb 2113 io_queue_iowq(req, NULL);
ce35a47a 2114 }
4fe2c963
JL
2115}
2116
b16fed66
PB
2117/*
2118 * Check SQE restrictions (opcode and flags).
2119 *
2120 * Returns 'true' if SQE is allowed, 'false' otherwise.
2121 */
2122static inline bool io_check_restriction(struct io_ring_ctx *ctx,
2123 struct io_kiocb *req,
2124 unsigned int sqe_flags)
4fe2c963 2125{
b16fed66
PB
2126 if (!test_bit(req->opcode, ctx->restrictions.sqe_op))
2127 return false;
2128
2129 if ((sqe_flags & ctx->restrictions.sqe_flags_required) !=
2130 ctx->restrictions.sqe_flags_required)
2131 return false;
2132
2133 if (sqe_flags & ~(ctx->restrictions.sqe_flags_allowed |
2134 ctx->restrictions.sqe_flags_required))
2135 return false;
2136
2137 return true;
4fe2c963
JL
2138}
2139
22b2ca31
PB
2140static void io_init_req_drain(struct io_kiocb *req)
2141{
2142 struct io_ring_ctx *ctx = req->ctx;
2143 struct io_kiocb *head = ctx->submit_state.link.head;
2144
2145 ctx->drain_active = true;
2146 if (head) {
2147 /*
2148 * If we need to drain a request in the middle of a link, drain
2149 * the head request and the next request/link after the current
2150 * link. Considering sequential execution of links,
b6c7db32 2151 * REQ_F_IO_DRAIN will be maintained for every request of our
22b2ca31
PB
2152 * link.
2153 */
b6c7db32 2154 head->flags |= REQ_F_IO_DRAIN | REQ_F_FORCE_ASYNC;
22b2ca31
PB
2155 ctx->drain_next = true;
2156 }
2157}
2158
b16fed66
PB
2159static int io_init_req(struct io_ring_ctx *ctx, struct io_kiocb *req,
2160 const struct io_uring_sqe *sqe)
282cdc86 2161 __must_hold(&ctx->uring_lock)
b16fed66 2162{
a7dd2782 2163 const struct io_issue_def *def;
b16fed66 2164 unsigned int sqe_flags;
fc0ae024 2165 int personality;
4a04d1d1 2166 u8 opcode;
b16fed66 2167
864ea921 2168 /* req is partially pre-initialised, see io_preinit_req() */
4a04d1d1 2169 req->opcode = opcode = READ_ONCE(sqe->opcode);
b16fed66
PB
2170 /* same numerical values with corresponding REQ_F_*, safe to copy */
2171 req->flags = sqe_flags = READ_ONCE(sqe->flags);
cef216fc 2172 req->cqe.user_data = READ_ONCE(sqe->user_data);
b16fed66 2173 req->file = NULL;
c1bdf8ed 2174 req->rsrc_node = NULL;
b16fed66 2175 req->task = current;
b16fed66 2176
4a04d1d1
PB
2177 if (unlikely(opcode >= IORING_OP_LAST)) {
2178 req->opcode = 0;
b16fed66 2179 return -EINVAL;
4a04d1d1 2180 }
a7dd2782 2181 def = &io_issue_defs[opcode];
68fe256a
PB
2182 if (unlikely(sqe_flags & ~SQE_COMMON_FLAGS)) {
2183 /* enforce forwards compatibility on users */
2184 if (sqe_flags & ~SQE_VALID_FLAGS)
2185 return -EINVAL;
4e906702 2186 if (sqe_flags & IOSQE_BUFFER_SELECT) {
fcde59fe 2187 if (!def->buffer_select)
4e906702
JA
2188 return -EOPNOTSUPP;
2189 req->buf_index = READ_ONCE(sqe->buf_group);
2190 }
5562a8d7
PB
2191 if (sqe_flags & IOSQE_CQE_SKIP_SUCCESS)
2192 ctx->drain_disabled = true;
2193 if (sqe_flags & IOSQE_IO_DRAIN) {
2194 if (ctx->drain_disabled)
2195 return -EOPNOTSUPP;
22b2ca31 2196 io_init_req_drain(req);
5562a8d7 2197 }
2a56a9bd
PB
2198 }
2199 if (unlikely(ctx->restricted || ctx->drain_active || ctx->drain_next)) {
2200 if (ctx->restricted && !io_check_restriction(ctx, req, sqe_flags))
2201 return -EACCES;
2202 /* knock it to the slow queue path, will be drained there */
2203 if (ctx->drain_active)
2204 req->flags |= REQ_F_FORCE_ASYNC;
2205 /* if there is no link, we're at "next" request and need to drain */
2206 if (unlikely(ctx->drain_next) && !ctx->submit_state.link.head) {
2207 ctx->drain_next = false;
2208 ctx->drain_active = true;
b6c7db32 2209 req->flags |= REQ_F_IO_DRAIN | REQ_F_FORCE_ASYNC;
2a56a9bd 2210 }
68fe256a 2211 }
b16fed66 2212
fcde59fe 2213 if (!def->ioprio && sqe->ioprio)
73911426 2214 return -EINVAL;
fcde59fe 2215 if (!def->iopoll && (ctx->flags & IORING_SETUP_IOPOLL))
73911426
JA
2216 return -EINVAL;
2217
fcde59fe 2218 if (def->needs_file) {
6d63416d
PB
2219 struct io_submit_state *state = &ctx->submit_state;
2220
cef216fc 2221 req->cqe.fd = READ_ONCE(sqe->fd);
6bf9c47a 2222
6d63416d
PB
2223 /*
2224 * Plug now if we have more than 2 IO left after this, and the
2225 * target is potentially a read/write to block based storage.
2226 */
fcde59fe 2227 if (state->need_plug && def->plug) {
6d63416d
PB
2228 state->plug_started = true;
2229 state->need_plug = false;
5ca7a8b3 2230 blk_start_plug_nr_ios(&state->plug, state->submit_nr);
6d63416d 2231 }
b16fed66 2232 }
863e0560 2233
003e8dcc
JA
2234 personality = READ_ONCE(sqe->personality);
2235 if (personality) {
cdab10bf
LT
2236 int ret;
2237
c10d1f98
PB
2238 req->creds = xa_load(&ctx->personalities, personality);
2239 if (!req->creds)
003e8dcc 2240 return -EINVAL;
c10d1f98 2241 get_cred(req->creds);
cdc1404a
PM
2242 ret = security_uring_override_creds(req->creds);
2243 if (ret) {
2244 put_cred(req->creds);
2245 return ret;
2246 }
b8e64b53 2247 req->flags |= REQ_F_CREDS;
003e8dcc 2248 }
b16fed66 2249
0702e536 2250 return def->prep(req, sqe);
b16fed66
PB
2251}
2252
df3becde
PB
2253static __cold int io_submit_fail_init(const struct io_uring_sqe *sqe,
2254 struct io_kiocb *req, int ret)
2255{
2256 struct io_ring_ctx *ctx = req->ctx;
2257 struct io_submit_link *link = &ctx->submit_state.link;
2258 struct io_kiocb *head = link->head;
2259
48863ffd 2260 trace_io_uring_req_failed(sqe, req, ret);
df3becde
PB
2261
2262 /*
2263 * Avoid breaking links in the middle as it renders links with SQPOLL
2264 * unusable. Instead of failing eagerly, continue assembling the link if
2265 * applicable and mark the head with REQ_F_FAIL. The link flushing code
2266 * should find the flag and handle the rest.
2267 */
2268 req_fail_link_node(req, ret);
2269 if (head && !(head->flags & REQ_F_FAIL))
2270 req_fail_link_node(head, -ECANCELED);
2271
2272 if (!(req->flags & IO_REQ_LINK_FLAGS)) {
2273 if (head) {
2274 link->last->link = req;
2275 link->head = NULL;
2276 req = head;
2277 }
2278 io_queue_sqe_fallback(req);
2279 return ret;
2280 }
2281
2282 if (head)
2283 link->last->link = req;
2284 else
2285 link->head = req;
2286 link->last = req;
2287 return 0;
2288}
2289
2290static inline int io_submit_sqe(struct io_ring_ctx *ctx, struct io_kiocb *req,
a1ab7b35 2291 const struct io_uring_sqe *sqe)
282cdc86 2292 __must_hold(&ctx->uring_lock)
9e645e11 2293{
a1ab7b35 2294 struct io_submit_link *link = &ctx->submit_state.link;
ef4ff581 2295 int ret;
9e645e11 2296
a6b8cadc 2297 ret = io_init_req(ctx, req, sqe);
df3becde
PB
2298 if (unlikely(ret))
2299 return io_submit_fail_init(sqe, req, ret);
441b8a78 2300
be7053b7 2301 /* don't need @sqe from now on */
48863ffd 2302 trace_io_uring_submit_sqe(req, true);
a6b8cadc 2303
9e645e11
JA
2304 /*
2305 * If we already have a head request, queue this one for async
2306 * submittal once the head completes. If we don't have a head but
2307 * IOSQE_IO_LINK is set in the sqe, start a new head. This one will be
2308 * submitted sync once the chain is complete. If none of those
2309 * conditions are true (normal request), then just queue it.
2310 */
924a07e4 2311 if (unlikely(link->head)) {
df3becde
PB
2312 ret = io_req_prep_async(req);
2313 if (unlikely(ret))
2314 return io_submit_fail_init(sqe, req, ret);
2315
48863ffd 2316 trace_io_uring_link(req, link->head);
f2f87370 2317 link->last->link = req;
863e0560 2318 link->last = req;
32fe525b 2319
da1a08c5 2320 if (req->flags & IO_REQ_LINK_FLAGS)
f15a3431 2321 return 0;
df3becde
PB
2322 /* last request of the link, flush it */
2323 req = link->head;
f15a3431 2324 link->head = NULL;
924a07e4
PB
2325 if (req->flags & (REQ_F_FORCE_ASYNC | REQ_F_FAIL))
2326 goto fallback;
2327
2328 } else if (unlikely(req->flags & (IO_REQ_LINK_FLAGS |
2329 REQ_F_FORCE_ASYNC | REQ_F_FAIL))) {
2330 if (req->flags & IO_REQ_LINK_FLAGS) {
2331 link->head = req;
2332 link->last = req;
2333 } else {
2334fallback:
2335 io_queue_sqe_fallback(req);
2336 }
f15a3431 2337 return 0;
9e645e11 2338 }
2e6e1fde 2339
f15a3431 2340 io_queue_sqe(req);
1d4240cc 2341 return 0;
9e645e11
JA
2342}
2343
9a56a232
JA
2344/*
2345 * Batched submission is done, ensure local IO is flushed out.
2346 */
553deffd 2347static void io_submit_state_end(struct io_ring_ctx *ctx)
9a56a232 2348{
553deffd
PB
2349 struct io_submit_state *state = &ctx->submit_state;
2350
e126391c
PB
2351 if (unlikely(state->link.head))
2352 io_queue_sqe_fallback(state->link.head);
553deffd 2353 /* flush only after queuing links as they can generate completions */
c450178d 2354 io_submit_flush_completions(ctx);
27926b68
JA
2355 if (state->plug_started)
2356 blk_finish_plug(&state->plug);
9a56a232
JA
2357}
2358
2359/*
2360 * Start submission side cache.
2361 */
2362static void io_submit_state_start(struct io_submit_state *state,
ba88ff11 2363 unsigned int max_ios)
9a56a232 2364{
27926b68 2365 state->plug_started = false;
4b628aeb 2366 state->need_plug = max_ios > 2;
5ca7a8b3 2367 state->submit_nr = max_ios;
a1ab7b35
PB
2368 /* set only head, no need to init link_last in advance */
2369 state->link.head = NULL;
9a56a232
JA
2370}
2371
2b188cc1
JA
2372static void io_commit_sqring(struct io_ring_ctx *ctx)
2373{
75b28aff 2374 struct io_rings *rings = ctx->rings;
2b188cc1 2375
caf582c6
PB
2376 /*
2377 * Ensure any loads from the SQEs are done at this point,
2378 * since once we write the new head, the application could
2379 * write new data to them.
2380 */
2381 smp_store_release(&rings->sq.head, ctx->cached_sq_head);
2b188cc1
JA
2382}
2383
2b188cc1 2384/*
dd9ae8a0 2385 * Fetch an sqe, if one is available. Note this returns a pointer to memory
2b188cc1
JA
2386 * that is mapped by userspace. This means that care needs to be taken to
2387 * ensure that reads are stable, as we cannot rely on userspace always
2388 * being a good citizen. If members of the sqe are validated and then later
2389 * used, it's important that those reads are done through READ_ONCE() to
2390 * prevent a re-load down the line.
2391 */
b5083dfa 2392static bool io_get_sqe(struct io_ring_ctx *ctx, const struct io_uring_sqe **sqe)
2b188cc1 2393{
ea5ab3b5 2394 unsigned head, mask = ctx->sq_entries - 1;
17d3aeb3 2395 unsigned sq_idx = ctx->cached_sq_head++ & mask;
2b188cc1
JA
2396
2397 /*
2398 * The cached sq head (or cq tail) serves two purposes:
2399 *
2400 * 1) allows us to batch the cost of updating the user visible
2401 * head updates.
2402 * 2) allows the kernel side to track the head on its own, even
2403 * though the application is the one updating it.
2404 */
17d3aeb3 2405 head = READ_ONCE(ctx->sq_array[sq_idx]);
ebdeb7c0
JA
2406 if (likely(head < ctx->sq_entries)) {
2407 /* double index for 128-byte SQEs, twice as long */
2408 if (ctx->flags & IORING_SETUP_SQE128)
2409 head <<= 1;
b5083dfa
PB
2410 *sqe = &ctx->sq_sqes[head];
2411 return true;
ebdeb7c0 2412 }
2b188cc1
JA
2413
2414 /* drop invalid entries */
15641e42
PB
2415 ctx->cq_extra--;
2416 WRITE_ONCE(ctx->rings->sq_dropped,
2417 READ_ONCE(ctx->rings->sq_dropped) + 1);
b5083dfa 2418 return false;
709b302f
PB
2419}
2420
17437f31 2421int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr)
282cdc86 2422 __must_hold(&ctx->uring_lock)
6c271ce2 2423{
69629809 2424 unsigned int entries = io_sqring_entries(ctx);
8e6971a8
PB
2425 unsigned int left;
2426 int ret;
6c271ce2 2427
51d48dab 2428 if (unlikely(!entries))
69629809 2429 return 0;
ee7d46d9 2430 /* make sure SQ entry isn't read before tail */
8e6971a8
PB
2431 ret = left = min3(nr, ctx->sq_entries, entries);
2432 io_get_task_refs(left);
2433 io_submit_state_start(&ctx->submit_state, left);
6c271ce2 2434
69629809 2435 do {
3529d8c2 2436 const struct io_uring_sqe *sqe;
196be95c 2437 struct io_kiocb *req;
fb5ccc98 2438
c8576f3e 2439 if (unlikely(!io_alloc_req(ctx, &req)))
fb5ccc98 2440 break;
b5083dfa 2441 if (unlikely(!io_get_sqe(ctx, &sqe))) {
fa05457a 2442 io_req_add_to_cache(req, ctx);
4fccfcbb
PB
2443 break;
2444 }
6c271ce2 2445
1cd15904
PB
2446 /*
2447 * Continue submitting even for sqe failure if the
2448 * ring was setup with IORING_SETUP_SUBMIT_ALL
2449 */
2450 if (unlikely(io_submit_sqe(ctx, req, sqe)) &&
2451 !(ctx->flags & IORING_SETUP_SUBMIT_ALL)) {
2452 left--;
2453 break;
bcbb7bf6 2454 }
1cd15904 2455 } while (--left);
9466f437 2456
8e6971a8
PB
2457 if (unlikely(left)) {
2458 ret -= left;
2459 /* try again if it submitted nothing and can't allocate a req */
2460 if (!ret && io_req_cache_empty(ctx))
2461 ret = -EAGAIN;
2462 current->io_uring->cached_refs += left;
9466f437 2463 }
6c271ce2 2464
553deffd 2465 io_submit_state_end(ctx);
ae9428ca
PB
2466 /* Commit SQ ring head once we've consumed and submitted all SQEs */
2467 io_commit_sqring(ctx);
8e6971a8 2468 return ret;
6c271ce2
JA
2469}
2470
bda52162
JA
2471struct io_wait_queue {
2472 struct wait_queue_entry wq;
2473 struct io_ring_ctx *ctx;
5fd46178 2474 unsigned cq_tail;
bda52162 2475 unsigned nr_timeouts;
d33a39e5 2476 ktime_t timeout;
bda52162
JA
2477};
2478
b4c98d59
DY
2479static inline bool io_has_work(struct io_ring_ctx *ctx)
2480{
c0e0d6ba 2481 return test_bit(IO_CHECK_CQ_OVERFLOW_BIT, &ctx->check_cq) ||
490c00eb 2482 !llist_empty(&ctx->work_llist);
b4c98d59
DY
2483}
2484
6c503150 2485static inline bool io_should_wake(struct io_wait_queue *iowq)
bda52162
JA
2486{
2487 struct io_ring_ctx *ctx = iowq->ctx;
0fc8c2ac 2488 int dist = READ_ONCE(ctx->rings->cq.tail) - (int) iowq->cq_tail;
bda52162
JA
2489
2490 /*
d195a66e 2491 * Wake up if we have enough events, or if a timeout occurred since we
bda52162
JA
2492 * started waiting. For timeouts, we always want to return to userspace,
2493 * regardless of event count.
2494 */
5fd46178 2495 return dist >= 0 || atomic_read(&ctx->cq_timeouts) != iowq->nr_timeouts;
bda52162
JA
2496}
2497
2498static int io_wake_function(struct wait_queue_entry *curr, unsigned int mode,
2499 int wake_flags, void *key)
2500{
bd550173 2501 struct io_wait_queue *iowq = container_of(curr, struct io_wait_queue, wq);
bda52162 2502
6c503150
PB
2503 /*
2504 * Cannot safely flush overflowed CQEs from here, ensure we wake up
2505 * the task, and the next invocation will do it.
2506 */
bd550173 2507 if (io_should_wake(iowq) || io_has_work(iowq->ctx))
6c503150
PB
2508 return autoremove_wake_function(curr, mode, wake_flags, key);
2509 return -1;
bda52162
JA
2510}
2511
c0e0d6ba 2512int io_run_task_work_sig(struct io_ring_ctx *ctx)
af9c1a44 2513{
1414d629 2514 if (!llist_empty(&ctx->work_llist)) {
2f413956 2515 __set_current_state(TASK_RUNNING);
1414d629
PB
2516 if (io_run_local_work(ctx) > 0)
2517 return 1;
2518 }
2519 if (io_run_task_work() > 0)
af9c1a44 2520 return 1;
c5020bc8
OL
2521 if (task_sigpending(current))
2522 return -EINTR;
2523 return 0;
af9c1a44
JA
2524}
2525
eeb60b9a
PB
2526/* when returns >0, the caller should retry */
2527static inline int io_cqring_wait_schedule(struct io_ring_ctx *ctx,
d33a39e5 2528 struct io_wait_queue *iowq)
eeb60b9a 2529{
3fcf19d5
PB
2530 if (unlikely(READ_ONCE(ctx->check_cq)))
2531 return 1;
846072f1
PB
2532 if (unlikely(!llist_empty(&ctx->work_llist)))
2533 return 1;
2534 if (unlikely(test_thread_flag(TIF_NOTIFY_SIGNAL)))
2535 return 1;
2536 if (unlikely(task_sigpending(current)))
2537 return -EINTR;
2538 if (unlikely(io_should_wake(iowq)))
2539 return 0;
d33a39e5 2540 if (iowq->timeout == KTIME_MAX)
46ae7eef 2541 schedule();
d33a39e5 2542 else if (!schedule_hrtimeout(&iowq->timeout, HRTIMER_MODE_ABS))
22833966 2543 return -ETIME;
846072f1 2544 return 0;
eeb60b9a
PB
2545}
2546
2b188cc1
JA
2547/*
2548 * Wait until events become available, if we don't already have some. The
2549 * application must reap them itself, as they reside on the shared cq ring.
2550 */
2551static int io_cqring_wait(struct io_ring_ctx *ctx, int min_events,
c73ebb68
HX
2552 const sigset_t __user *sig, size_t sigsz,
2553 struct __kernel_timespec __user *uts)
2b188cc1 2554{
90291099 2555 struct io_wait_queue iowq;
75b28aff 2556 struct io_rings *rings = ctx->rings;
c1d5a224 2557 int ret;
2b188cc1 2558
76de6749
PB
2559 if (!io_allowed_run_tw(ctx))
2560 return -EEXIST;
140102ae
PB
2561 if (!llist_empty(&ctx->work_llist))
2562 io_run_local_work(ctx);
f36ba6cf
PB
2563 io_run_task_work();
2564 io_cqring_overflow_flush(ctx);
2565 /* if user messes with these they will just get an early return */
2566 if (__io_cqring_events_user(ctx) >= min_events)
2567 return 0;
2b188cc1
JA
2568
2569 if (sig) {
9e75ad5d
AB
2570#ifdef CONFIG_COMPAT
2571 if (in_compat_syscall())
2572 ret = set_compat_user_sigmask((const compat_sigset_t __user *)sig,
b772434b 2573 sigsz);
9e75ad5d
AB
2574 else
2575#endif
b772434b 2576 ret = set_user_sigmask(sig, sigsz);
9e75ad5d 2577
2b188cc1
JA
2578 if (ret)
2579 return ret;
2580 }
2581
90291099
PB
2582 init_waitqueue_func_entry(&iowq.wq, io_wake_function);
2583 iowq.wq.private = current;
2584 INIT_LIST_HEAD(&iowq.wq.entry);
2585 iowq.ctx = ctx;
bda52162 2586 iowq.nr_timeouts = atomic_read(&ctx->cq_timeouts);
5fd46178 2587 iowq.cq_tail = READ_ONCE(ctx->rings->cq.head) + min_events;
d33a39e5
PB
2588 iowq.timeout = KTIME_MAX;
2589
2590 if (uts) {
2591 struct timespec64 ts;
2592
2593 if (get_timespec64(&ts, uts))
2594 return -EFAULT;
2595 iowq.timeout = ktime_add_ns(timespec64_to_ktime(ts), ktime_get_ns());
2596 }
90291099 2597
c826bd7a 2598 trace_io_uring_cqring_wait(ctx, min_events);
bda52162 2599 do {
3fcf19d5
PB
2600 unsigned long check_cq;
2601
130bd686 2602 if (ctx->flags & IORING_SETUP_DEFER_TASKRUN) {
d80c0f00 2603 WRITE_ONCE(ctx->cq_waiting, 1);
130bd686
PB
2604 set_current_state(TASK_INTERRUPTIBLE);
2605 } else {
2606 prepare_to_wait_exclusive(&ctx->cq_wait, &iowq.wq,
2607 TASK_INTERRUPTIBLE);
2608 }
2609
d33a39e5 2610 ret = io_cqring_wait_schedule(ctx, &iowq);
130bd686 2611 __set_current_state(TASK_RUNNING);
d80c0f00
PB
2612 WRITE_ONCE(ctx->cq_waiting, 0);
2613
846072f1
PB
2614 if (ret < 0)
2615 break;
2616 /*
2617 * Run task_work after scheduling and before io_should_wake().
2618 * If we got woken because of task_work being processed, run it
2619 * now rather than let the caller do another wait loop.
2620 */
2621 io_run_task_work();
2622 if (!llist_empty(&ctx->work_llist))
2623 io_run_local_work(ctx);
3fcf19d5
PB
2624
2625 check_cq = READ_ONCE(ctx->check_cq);
2626 if (unlikely(check_cq)) {
2627 /* let the caller flush overflows, retry */
326a9e48 2628 if (check_cq & BIT(IO_CHECK_CQ_OVERFLOW_BIT))
3fcf19d5 2629 io_cqring_do_overflow_flush(ctx);
3fcf19d5
PB
2630 if (check_cq & BIT(IO_CHECK_CQ_DROPPED_BIT)) {
2631 ret = -EBADR;
2632 break;
2633 }
2634 }
2635
846072f1
PB
2636 if (io_should_wake(&iowq)) {
2637 ret = 0;
35d90f95 2638 break;
846072f1 2639 }
ca0a2651 2640 cond_resched();
846072f1 2641 } while (1);
bda52162 2642
130bd686
PB
2643 if (!(ctx->flags & IORING_SETUP_DEFER_TASKRUN))
2644 finish_wait(&ctx->cq_wait, &iowq.wq);
b7db41c9 2645 restore_saved_sigmask_unless(ret == -EINTR);
2b188cc1 2646
75b28aff 2647 return READ_ONCE(rings->cq.head) == READ_ONCE(rings->cq.tail) ? ret : 0;
2b188cc1
JA
2648}
2649
73572984 2650static void io_mem_free(void *ptr)
b9bd2bea 2651{
73572984 2652 struct page *page;
b36a2050 2653
73572984
JA
2654 if (!ptr)
2655 return;
b9bd2bea 2656
73572984
JA
2657 page = virt_to_head_page(ptr);
2658 if (put_page_testzero(page))
2659 free_compound_page(page);
b9bd2bea
PB
2660}
2661
73572984 2662static void *io_mem_alloc(size_t size)
b9bd2bea 2663{
73572984 2664 gfp_t gfp = GFP_KERNEL_ACCOUNT | __GFP_ZERO | __GFP_NOWARN | __GFP_COMP;
b9bd2bea 2665
73572984 2666 return (void *) __get_free_pages(gfp, get_order(size));
b9bd2bea
PB
2667}
2668
73572984
JA
2669static unsigned long rings_size(struct io_ring_ctx *ctx, unsigned int sq_entries,
2670 unsigned int cq_entries, size_t *sq_offset)
6b06314c 2671{
73572984
JA
2672 struct io_rings *rings;
2673 size_t off, sq_array_size;
6b06314c 2674
73572984
JA
2675 off = struct_size(rings, cqes, cq_entries);
2676 if (off == SIZE_MAX)
2677 return SIZE_MAX;
2678 if (ctx->flags & IORING_SETUP_CQE32) {
2679 if (check_shl_overflow(off, 1, &off))
2680 return SIZE_MAX;
2681 }
ab409402 2682
73572984
JA
2683#ifdef CONFIG_SMP
2684 off = ALIGN(off, SMP_CACHE_BYTES);
2685 if (off == 0)
2686 return SIZE_MAX;
2687#endif
82fbcfa9 2688
73572984
JA
2689 if (sq_offset)
2690 *sq_offset = off;
82fbcfa9 2691
73572984
JA
2692 sq_array_size = array_size(sizeof(u32), sq_entries);
2693 if (sq_array_size == SIZE_MAX)
2694 return SIZE_MAX;
6b06314c 2695
73572984
JA
2696 if (check_add_overflow(off, sq_array_size, &off))
2697 return SIZE_MAX;
8bad28d8 2698
73572984 2699 return off;
8bad28d8
HX
2700}
2701
73572984
JA
2702static int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg,
2703 unsigned int eventfd_async)
8bad28d8 2704{
73572984
JA
2705 struct io_ev_fd *ev_fd;
2706 __s32 __user *fds = arg;
2707 int fd;
f2303b1f 2708
73572984
JA
2709 ev_fd = rcu_dereference_protected(ctx->io_ev_fd,
2710 lockdep_is_held(&ctx->uring_lock));
2711 if (ev_fd)
2712 return -EBUSY;
8bad28d8 2713
73572984
JA
2714 if (copy_from_user(&fd, fds, sizeof(*fds)))
2715 return -EFAULT;
8dd03afe 2716
73572984
JA
2717 ev_fd = kmalloc(sizeof(*ev_fd), GFP_KERNEL);
2718 if (!ev_fd)
2719 return -ENOMEM;
05f3fb3c 2720
73572984
JA
2721 ev_fd->cq_ev_fd = eventfd_ctx_fdget(fd);
2722 if (IS_ERR(ev_fd->cq_ev_fd)) {
2723 int ret = PTR_ERR(ev_fd->cq_ev_fd);
2724 kfree(ev_fd);
2725 return ret;
2726 }
305bef98
PB
2727
2728 spin_lock(&ctx->completion_lock);
2729 ctx->evfd_last_cq_tail = ctx->cached_cq_tail;
2730 spin_unlock(&ctx->completion_lock);
2731
73572984
JA
2732 ev_fd->eventfd_async = eventfd_async;
2733 ctx->has_evfd = true;
2734 rcu_assign_pointer(ctx->io_ev_fd, ev_fd);
21a091b9
DY
2735 atomic_set(&ev_fd->refs, 1);
2736 atomic_set(&ev_fd->ops, 0);
73572984 2737 return 0;
d7954b2b
BM
2738}
2739
73572984 2740static int io_eventfd_unregister(struct io_ring_ctx *ctx)
1ad555c6 2741{
73572984
JA
2742 struct io_ev_fd *ev_fd;
2743
2744 ev_fd = rcu_dereference_protected(ctx->io_ev_fd,
2745 lockdep_is_held(&ctx->uring_lock));
2746 if (ev_fd) {
2747 ctx->has_evfd = false;
2748 rcu_assign_pointer(ctx->io_ev_fd, NULL);
21a091b9
DY
2749 if (!atomic_fetch_or(BIT(IO_EVENTFD_OP_FREE_BIT), &ev_fd->ops))
2750 call_rcu(&ev_fd->rcu, io_eventfd_ops);
73572984
JA
2751 return 0;
2752 }
2d091d62 2753
73572984 2754 return -ENXIO;
44b31f2f
PB
2755}
2756
73572984 2757static void io_req_caches_free(struct io_ring_ctx *ctx)
2b188cc1 2758{
c8576f3e 2759 struct io_kiocb *req;
37f0e767 2760 int nr = 0;
bf019da7 2761
9a4fdbd8 2762 mutex_lock(&ctx->uring_lock);
34f0bc42 2763 io_flush_cached_locked_reqs(ctx, &ctx->submit_state);
9a4fdbd8 2764
88ab95be 2765 while (!io_req_cache_empty(ctx)) {
c8576f3e 2766 req = io_extract_req(ctx);
c2b6c6bc 2767 kmem_cache_free(req_cachep, req);
37f0e767 2768 nr++;
c2b6c6bc 2769 }
37f0e767
PB
2770 if (nr)
2771 percpu_ref_put_many(&ctx->refs, nr);
9a4fdbd8
JA
2772 mutex_unlock(&ctx->uring_lock);
2773}
2774
c072481d 2775static __cold void io_ring_ctx_free(struct io_ring_ctx *ctx)
2b188cc1 2776{
37d1e2e3 2777 io_sq_thread_finish(ctx);
ab409402 2778 io_rsrc_refs_drop(ctx);
43597aac
PB
2779 /* __io_rsrc_put_work() may need uring_lock to progress, wait w/o it */
2780 io_wait_rsrc_data(ctx->buf_data);
2781 io_wait_rsrc_data(ctx->file_data);
2782
8bad28d8 2783 mutex_lock(&ctx->uring_lock);
43597aac 2784 if (ctx->buf_data)
bd54b6fe 2785 __io_sqe_buffers_unregister(ctx);
43597aac 2786 if (ctx->file_data)
08480400 2787 __io_sqe_files_unregister(ctx);
a85381d8 2788 io_cqring_overflow_kill(ctx);
9b402849 2789 io_eventfd_unregister(ctx);
9b797a37 2790 io_alloc_cache_free(&ctx->apoll_cache, io_apoll_cache_free);
43e0bbbd 2791 io_alloc_cache_free(&ctx->netmsg_cache, io_netmsg_cache_free);
77bc59b4 2792 mutex_unlock(&ctx->uring_lock);
5a2e745d 2793 io_destroy_buffers(ctx);
07db298a
PB
2794 if (ctx->sq_creds)
2795 put_cred(ctx->sq_creds);
97bbdc06
PB
2796 if (ctx->submitter_task)
2797 put_task_struct(ctx->submitter_task);
def596e9 2798
a7f0ed5a
PB
2799 /* there are no registered resources left, nobody uses it */
2800 if (ctx->rsrc_node)
2801 io_rsrc_node_destroy(ctx->rsrc_node);
8dd03afe 2802 if (ctx->rsrc_backup_node)
b895c9a6 2803 io_rsrc_node_destroy(ctx->rsrc_backup_node);
a7f0ed5a 2804 flush_delayed_work(&ctx->rsrc_put_work);
756ab7c0 2805 flush_delayed_work(&ctx->fallback_work);
a7f0ed5a
PB
2806
2807 WARN_ON_ONCE(!list_empty(&ctx->rsrc_ref_list));
2808 WARN_ON_ONCE(!llist_empty(&ctx->rsrc_put_llist));
def596e9 2809
2b188cc1 2810#if defined(CONFIG_UNIX)
355e8d26
EB
2811 if (ctx->ring_sock) {
2812 ctx->ring_sock->file = NULL; /* so that iput() is called */
2b188cc1 2813 sock_release(ctx->ring_sock);
355e8d26 2814 }
2b188cc1 2815#endif
ef9dd637 2816 WARN_ON_ONCE(!list_empty(&ctx->ltimeout_list));
2b188cc1 2817
42b6419d
PB
2818 if (ctx->mm_account) {
2819 mmdrop(ctx->mm_account);
2820 ctx->mm_account = NULL;
2821 }
75b28aff 2822 io_mem_free(ctx->rings);
2b188cc1 2823 io_mem_free(ctx->sq_sqes);
2b188cc1
JA
2824
2825 percpu_ref_exit(&ctx->refs);
2b188cc1 2826 free_uid(ctx->user);
4010fec4 2827 io_req_caches_free(ctx);
e941894e
JA
2828 if (ctx->hash_map)
2829 io_wq_put_hash(ctx->hash_map);
e6f89be6 2830 kfree(ctx->cancel_table.hbs);
9ca9fb24 2831 kfree(ctx->cancel_table_locked.hbs);
6224843d 2832 kfree(ctx->dummy_ubuf);
9cfc7e94
JA
2833 kfree(ctx->io_bl);
2834 xa_destroy(&ctx->io_bl_xa);
2b188cc1
JA
2835 kfree(ctx);
2836}
2837
bca39f39
PB
2838static __cold void io_activate_pollwq_cb(struct callback_head *cb)
2839{
2840 struct io_ring_ctx *ctx = container_of(cb, struct io_ring_ctx,
2841 poll_wq_task_work);
2842
2843 mutex_lock(&ctx->uring_lock);
2844 ctx->poll_activated = true;
2845 mutex_unlock(&ctx->uring_lock);
2846
2847 /*
2848 * Wake ups for some events between start of polling and activation
2849 * might've been lost due to loose synchronisation.
2850 */
2851 wake_up_all(&ctx->poll_wq);
2852 percpu_ref_put(&ctx->refs);
2853}
2854
2855static __cold void io_activate_pollwq(struct io_ring_ctx *ctx)
2856{
2857 spin_lock(&ctx->completion_lock);
2858 /* already activated or in progress */
2859 if (ctx->poll_activated || ctx->poll_wq_task_work.func)
2860 goto out;
2861 if (WARN_ON_ONCE(!ctx->task_complete))
2862 goto out;
2863 if (!ctx->submitter_task)
2864 goto out;
2865 /*
2866 * with ->submitter_task only the submitter task completes requests, we
2867 * only need to sync with it, which is done by injecting a tw
2868 */
2869 init_task_work(&ctx->poll_wq_task_work, io_activate_pollwq_cb);
2870 percpu_ref_get(&ctx->refs);
2871 if (task_work_add(ctx->submitter_task, &ctx->poll_wq_task_work, TWA_SIGNAL))
2872 percpu_ref_put(&ctx->refs);
2873out:
2874 spin_unlock(&ctx->completion_lock);
2875}
2876
2b188cc1
JA
2877static __poll_t io_uring_poll(struct file *file, poll_table *wait)
2878{
2879 struct io_ring_ctx *ctx = file->private_data;
2880 __poll_t mask = 0;
2881
bca39f39
PB
2882 if (unlikely(!ctx->poll_activated))
2883 io_activate_pollwq(ctx);
2884
7b235dd8 2885 poll_wait(file, &ctx->poll_wq, wait);
4f7067c3
SB
2886 /*
2887 * synchronizes with barrier from wq_has_sleeper call in
2888 * io_commit_cqring
2889 */
2b188cc1 2890 smp_rmb();
90554200 2891 if (!io_sqring_full(ctx))
2b188cc1 2892 mask |= EPOLLOUT | EPOLLWRNORM;
ed670c3f
HX
2893
2894 /*
2895 * Don't flush cqring overflow list here, just do a simple check.
2896 * Otherwise there could possible be ABBA deadlock:
2897 * CPU0 CPU1
2898 * ---- ----
2899 * lock(&ctx->uring_lock);
2900 * lock(&ep->mtx);
2901 * lock(&ctx->uring_lock);
2902 * lock(&ep->mtx);
2903 *
2904 * Users may get EPOLLIN meanwhile seeing nothing in cqring, this
10d8bc35 2905 * pushes them to do the flush.
ed670c3f 2906 */
b4c98d59 2907
c10bb646 2908 if (__io_cqring_events_user(ctx) || io_has_work(ctx))
2b188cc1
JA
2909 mask |= EPOLLIN | EPOLLRDNORM;
2910
2911 return mask;
2912}
2913
0bead8cd 2914static int io_unregister_personality(struct io_ring_ctx *ctx, unsigned id)
071698e1 2915{
4379bf8b 2916 const struct cred *creds;
071698e1 2917
61cf9370 2918 creds = xa_erase(&ctx->personalities, id);
4379bf8b
JA
2919 if (creds) {
2920 put_cred(creds);
0bead8cd 2921 return 0;
1e6fa521 2922 }
0bead8cd
YD
2923
2924 return -EINVAL;
2925}
2926
d56d938b
PB
2927struct io_tctx_exit {
2928 struct callback_head task_work;
2929 struct completion completion;
baf186c4 2930 struct io_ring_ctx *ctx;
d56d938b
PB
2931};
2932
c072481d 2933static __cold void io_tctx_exit_cb(struct callback_head *cb)
d56d938b
PB
2934{
2935 struct io_uring_task *tctx = current->io_uring;
2936 struct io_tctx_exit *work;
2937
2938 work = container_of(cb, struct io_tctx_exit, task_work);
2939 /*
2940 * When @in_idle, we're in cancellation and it's racy to remove the
2941 * node. It'll be removed by the end of cancellation, just ignore it.
998b30c3
HM
2942 * tctx can be NULL if the queueing of this task_work raced with
2943 * work cancelation off the exec path.
d56d938b 2944 */
998b30c3 2945 if (tctx && !atomic_read(&tctx->in_idle))
eef51daa 2946 io_uring_del_tctx_node((unsigned long)work->ctx);
d56d938b
PB
2947 complete(&work->completion);
2948}
2949
c072481d 2950static __cold bool io_cancel_ctx_cb(struct io_wq_work *work, void *data)
28090c13
PB
2951{
2952 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
2953
2954 return req->ctx == data;
2955}
2956
c072481d 2957static __cold void io_ring_exit_work(struct work_struct *work)
85faa7b8 2958{
d56d938b 2959 struct io_ring_ctx *ctx = container_of(work, struct io_ring_ctx, exit_work);
b5bb3a24 2960 unsigned long timeout = jiffies + HZ * 60 * 5;
58d3be2c 2961 unsigned long interval = HZ / 20;
d56d938b
PB
2962 struct io_tctx_exit exit;
2963 struct io_tctx_node *node;
2964 int ret;
85faa7b8 2965
56952e91
JA
2966 /*
2967 * If we're doing polled IO and end up having requests being
2968 * submitted async (out-of-line), then completions can come in while
2969 * we're waiting for refs to drop. We need to reap these manually,
2970 * as nobody else will be looking for them.
2971 */
b2edc0a7 2972 do {
a85381d8
PB
2973 if (test_bit(IO_CHECK_CQ_OVERFLOW_BIT, &ctx->check_cq)) {
2974 mutex_lock(&ctx->uring_lock);
2975 io_cqring_overflow_kill(ctx);
2976 mutex_unlock(&ctx->uring_lock);
2977 }
2978
c0e0d6ba
DY
2979 if (ctx->flags & IORING_SETUP_DEFER_TASKRUN)
2980 io_move_task_work_from_local(ctx);
2981
affa87db
PB
2982 while (io_uring_try_cancel_requests(ctx, NULL, true))
2983 cond_resched();
2984
28090c13
PB
2985 if (ctx->sq_data) {
2986 struct io_sq_data *sqd = ctx->sq_data;
2987 struct task_struct *tsk;
2988
2989 io_sq_thread_park(sqd);
2990 tsk = sqd->thread;
2991 if (tsk && tsk->io_uring && tsk->io_uring->io_wq)
2992 io_wq_cancel_cb(tsk->io_uring->io_wq,
2993 io_cancel_ctx_cb, ctx, true);
2994 io_sq_thread_unpark(sqd);
2995 }
b5bb3a24 2996
37f0e767
PB
2997 io_req_caches_free(ctx);
2998
58d3be2c
PB
2999 if (WARN_ON_ONCE(time_after(jiffies, timeout))) {
3000 /* there is little hope left, don't run it too often */
3001 interval = HZ * 60;
3002 }
3003 } while (!wait_for_completion_timeout(&ctx->ref_comp, interval));
d56d938b 3004
7f00651a
PB
3005 init_completion(&exit.completion);
3006 init_task_work(&exit.task_work, io_tctx_exit_cb);
3007 exit.ctx = ctx;
89b5066e
PB
3008 /*
3009 * Some may use context even when all refs and requests have been put,
3010 * and they are free to do so while still holding uring_lock or
5b0a6acc 3011 * completion_lock, see io_req_task_submit(). Apart from other work,
89b5066e
PB
3012 * this lock/unlock section also waits them to finish.
3013 */
d56d938b
PB
3014 mutex_lock(&ctx->uring_lock);
3015 while (!list_empty(&ctx->tctx_list)) {
b5bb3a24
PB
3016 WARN_ON_ONCE(time_after(jiffies, timeout));
3017
d56d938b
PB
3018 node = list_first_entry(&ctx->tctx_list, struct io_tctx_node,
3019 ctx_node);
7f00651a
PB
3020 /* don't spin on a single task if cancellation failed */
3021 list_rotate_left(&ctx->tctx_list);
d56d938b
PB
3022 ret = task_work_add(node->task, &exit.task_work, TWA_SIGNAL);
3023 if (WARN_ON_ONCE(ret))
3024 continue;
d56d938b
PB
3025
3026 mutex_unlock(&ctx->uring_lock);
3027 wait_for_completion(&exit.completion);
d56d938b
PB
3028 mutex_lock(&ctx->uring_lock);
3029 }
3030 mutex_unlock(&ctx->uring_lock);
79ebeaee
JA
3031 spin_lock(&ctx->completion_lock);
3032 spin_unlock(&ctx->completion_lock);
d56d938b 3033
85faa7b8
JA
3034 io_ring_ctx_free(ctx);
3035}
3036
c072481d 3037static __cold void io_ring_ctx_wait_and_kill(struct io_ring_ctx *ctx)
2b188cc1 3038{
61cf9370
MWO
3039 unsigned long index;
3040 struct creds *creds;
3041
2b188cc1
JA
3042 mutex_lock(&ctx->uring_lock);
3043 percpu_ref_kill(&ctx->refs);
61cf9370
MWO
3044 xa_for_each(&ctx->personalities, index, creds)
3045 io_unregister_personality(ctx, index);
9ca9fb24
PB
3046 if (ctx->rings)
3047 io_poll_remove_all(ctx, NULL, true);
2b188cc1
JA
3048 mutex_unlock(&ctx->uring_lock);
3049
02bac94b
PB
3050 /*
3051 * If we failed setting up the ctx, we might not have any rings
3052 * and therefore did not submit any requests
3053 */
3054 if (ctx->rings)
60053be8 3055 io_kill_timeouts(ctx, NULL, true);
309fc03a 3056
85faa7b8 3057 INIT_WORK(&ctx->exit_work, io_ring_exit_work);
fc666777
JA
3058 /*
3059 * Use system_unbound_wq to avoid spawning tons of event kworkers
3060 * if we're exiting a ton of rings at the same time. It just adds
3061 * noise and overhead, there's no discernable change in runtime
3062 * over using system_wq.
3063 */
3064 queue_work(system_unbound_wq, &ctx->exit_work);
2b188cc1
JA
3065}
3066
3067static int io_uring_release(struct inode *inode, struct file *file)
3068{
3069 struct io_ring_ctx *ctx = file->private_data;
3070
3071 file->private_data = NULL;
3072 io_ring_ctx_wait_and_kill(ctx);
3073 return 0;
3074}
3075
f6edbabb
PB
3076struct io_task_cancel {
3077 struct task_struct *task;
3dd0c97a 3078 bool all;
f6edbabb 3079};
f254ac04 3080
f6edbabb 3081static bool io_cancel_task_cb(struct io_wq_work *work, void *data)
b711d4ea 3082{
9a472ef7 3083 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
f6edbabb 3084 struct io_task_cancel *cancel = data;
9a472ef7 3085
6af3f48b 3086 return io_match_task_safe(req, cancel->task, cancel->all);
b711d4ea
JA
3087}
3088
c072481d
PB
3089static __cold bool io_cancel_defer_files(struct io_ring_ctx *ctx,
3090 struct task_struct *task,
3091 bool cancel_all)
b7ddce3c 3092{
e1915f76 3093 struct io_defer_entry *de;
b7ddce3c
PB
3094 LIST_HEAD(list);
3095
79ebeaee 3096 spin_lock(&ctx->completion_lock);
b7ddce3c 3097 list_for_each_entry_reverse(de, &ctx->defer_list, list) {
6af3f48b 3098 if (io_match_task_safe(de->req, task, cancel_all)) {
b7ddce3c
PB
3099 list_cut_position(&list, &ctx->defer_list, &de->list);
3100 break;
3101 }
3102 }
79ebeaee 3103 spin_unlock(&ctx->completion_lock);
e1915f76
PB
3104 if (list_empty(&list))
3105 return false;
b7ddce3c
PB
3106
3107 while (!list_empty(&list)) {
3108 de = list_first_entry(&list, struct io_defer_entry, list);
3109 list_del_init(&de->list);
e276ae34 3110 io_req_task_queue_fail(de->req, -ECANCELED);
b7ddce3c
PB
3111 kfree(de);
3112 }
e1915f76 3113 return true;
b7ddce3c
PB
3114}
3115
c072481d 3116static __cold bool io_uring_try_cancel_iowq(struct io_ring_ctx *ctx)
1b00764f
PB
3117{
3118 struct io_tctx_node *node;
3119 enum io_wq_cancel cret;
3120 bool ret = false;
3121
3122 mutex_lock(&ctx->uring_lock);
3123 list_for_each_entry(node, &ctx->tctx_list, ctx_node) {
3124 struct io_uring_task *tctx = node->task->io_uring;
3125
3126 /*
3127 * io_wq will stay alive while we hold uring_lock, because it's
3128 * killed after ctx nodes, which requires to take the lock.
3129 */
3130 if (!tctx || !tctx->io_wq)
3131 continue;
3132 cret = io_wq_cancel_cb(tctx->io_wq, io_cancel_ctx_cb, ctx, true);
3133 ret |= (cret != IO_WQ_CANCEL_NOTFOUND);
3134 }
3135 mutex_unlock(&ctx->uring_lock);
3136
3137 return ret;
3138}
3139
affa87db 3140static __cold bool io_uring_try_cancel_requests(struct io_ring_ctx *ctx,
c072481d
PB
3141 struct task_struct *task,
3142 bool cancel_all)
9936c7c2 3143{
3dd0c97a 3144 struct io_task_cancel cancel = { .task = task, .all = cancel_all, };
1b00764f 3145 struct io_uring_task *tctx = task ? task->io_uring : NULL;
affa87db
PB
3146 enum io_wq_cancel cret;
3147 bool ret = false;
9936c7c2 3148
60053be8
PB
3149 /* failed during ring init, it couldn't have issued any requests */
3150 if (!ctx->rings)
affa87db 3151 return false;
60053be8 3152
affa87db
PB
3153 if (!task) {
3154 ret |= io_uring_try_cancel_iowq(ctx);
3155 } else if (tctx && tctx->io_wq) {
3156 /*
3157 * Cancels requests of all rings, not only @ctx, but
3158 * it's fine as the task is in exit/exec.
3159 */
3160 cret = io_wq_cancel_cb(tctx->io_wq, io_cancel_task_cb,
3161 &cancel, true);
3162 ret |= (cret != IO_WQ_CANCEL_NOTFOUND);
3163 }
9936c7c2 3164
affa87db
PB
3165 /* SQPOLL thread does its own polling */
3166 if ((!(ctx->flags & IORING_SETUP_SQPOLL) && cancel_all) ||
3167 (ctx->sq_data && ctx->sq_data->thread == current)) {
3168 while (!wq_list_empty(&ctx->iopoll_list)) {
3169 io_iopoll_try_reap_events(ctx);
3170 ret = true;
fcc926bb 3171 cond_resched();
9936c7c2 3172 }
9936c7c2 3173 }
affa87db 3174
140102ae
PB
3175 if ((ctx->flags & IORING_SETUP_DEFER_TASKRUN) &&
3176 io_allowed_defer_tw_run(ctx))
c0e0d6ba 3177 ret |= io_run_local_work(ctx) > 0;
affa87db
PB
3178 ret |= io_cancel_defer_files(ctx, task, cancel_all);
3179 mutex_lock(&ctx->uring_lock);
3180 ret |= io_poll_remove_all(ctx, task, cancel_all);
3181 mutex_unlock(&ctx->uring_lock);
3182 ret |= io_kill_timeouts(ctx, task, cancel_all);
3183 if (task)
c0e0d6ba 3184 ret |= io_run_task_work() > 0;
affa87db 3185 return ret;
9936c7c2
PB
3186}
3187
3f48cf18 3188static s64 tctx_inflight(struct io_uring_task *tctx, bool tracked)
521d6a73 3189{
3f48cf18 3190 if (tracked)
9cae36a0 3191 return atomic_read(&tctx->inflight_tracked);
521d6a73
PB
3192 return percpu_counter_sum(&tctx->inflight);
3193}
3194
78cc687b
PB
3195/*
3196 * Find any io_uring ctx that this task has registered or done IO on, and cancel
78a78060 3197 * requests. @sqd should be not-null IFF it's an SQPOLL thread cancellation.
78cc687b 3198 */
17437f31 3199__cold void io_uring_cancel_generic(bool cancel_all, struct io_sq_data *sqd)
0e9ddb39 3200{
521d6a73 3201 struct io_uring_task *tctx = current->io_uring;
734551df 3202 struct io_ring_ctx *ctx;
0e9ddb39
PB
3203 s64 inflight;
3204 DEFINE_WAIT(wait);
fdaf083c 3205
78cc687b
PB
3206 WARN_ON_ONCE(sqd && sqd->thread != current);
3207
6d042ffb
PO
3208 if (!current->io_uring)
3209 return;
17a91051
PB
3210 if (tctx->io_wq)
3211 io_wq_exit_start(tctx->io_wq);
3212
0e9ddb39
PB
3213 atomic_inc(&tctx->in_idle);
3214 do {
affa87db
PB
3215 bool loop = false;
3216
e9dbe221 3217 io_uring_drop_tctx_refs(current);
0e9ddb39 3218 /* read completions before cancelations */
78cc687b 3219 inflight = tctx_inflight(tctx, !cancel_all);
0e9ddb39
PB
3220 if (!inflight)
3221 break;
fdaf083c 3222
78cc687b
PB
3223 if (!sqd) {
3224 struct io_tctx_node *node;
3225 unsigned long index;
0f212204 3226
78cc687b
PB
3227 xa_for_each(&tctx->xa, index, node) {
3228 /* sqpoll task will cancel all its requests */
3229 if (node->ctx->sq_data)
3230 continue;
affa87db
PB
3231 loop |= io_uring_try_cancel_requests(node->ctx,
3232 current, cancel_all);
78cc687b
PB
3233 }
3234 } else {
3235 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list)
affa87db
PB
3236 loop |= io_uring_try_cancel_requests(ctx,
3237 current,
3238 cancel_all);
3239 }
3240
3241 if (loop) {
3242 cond_resched();
3243 continue;
78cc687b 3244 }
17a91051 3245
78a78060
JA
3246 prepare_to_wait(&tctx->wait, &wait, TASK_INTERRUPTIBLE);
3247 io_run_task_work();
e9dbe221 3248 io_uring_drop_tctx_refs(current);
78a78060 3249
0f212204 3250 /*
a1bb3cd5
PB
3251 * If we've seen completions, retry without waiting. This
3252 * avoids a race where a completion comes in before we did
3253 * prepare_to_wait().
0f212204 3254 */
3dd0c97a 3255 if (inflight == tctx_inflight(tctx, !cancel_all))
a1bb3cd5 3256 schedule();
f57555ed 3257 finish_wait(&tctx->wait, &wait);
d8a6df10 3258 } while (1);
de7f1d9e 3259
8452d4a6 3260 io_uring_clean_tctx(tctx);
3dd0c97a 3261 if (cancel_all) {
3cc7fdb9
PB
3262 /*
3263 * We shouldn't run task_works after cancel, so just leave
3264 * ->in_idle set for normal exit.
3265 */
3266 atomic_dec(&tctx->in_idle);
3f48cf18
PB
3267 /* for exec all current's requests should be gone, kill tctx */
3268 __io_uring_free(current);
3269 }
44e728b8
PB
3270}
3271
f552a27a 3272void __io_uring_cancel(bool cancel_all)
78cc687b 3273{
f552a27a 3274 io_uring_cancel_generic(cancel_all, NULL);
78cc687b
PB
3275}
3276
6c5c240e
RP
3277static void *io_uring_validate_mmap_request(struct file *file,
3278 loff_t pgoff, size_t sz)
2b188cc1 3279{
2b188cc1 3280 struct io_ring_ctx *ctx = file->private_data;
6c5c240e 3281 loff_t offset = pgoff << PAGE_SHIFT;
2b188cc1
JA
3282 struct page *page;
3283 void *ptr;
3284
3285 switch (offset) {
3286 case IORING_OFF_SQ_RING:
75b28aff
HV
3287 case IORING_OFF_CQ_RING:
3288 ptr = ctx->rings;
2b188cc1
JA
3289 break;
3290 case IORING_OFF_SQES:
3291 ptr = ctx->sq_sqes;
3292 break;
2b188cc1 3293 default:
6c5c240e 3294 return ERR_PTR(-EINVAL);
2b188cc1
JA
3295 }
3296
3297 page = virt_to_head_page(ptr);
a50b854e 3298 if (sz > page_size(page))
6c5c240e
RP
3299 return ERR_PTR(-EINVAL);
3300
3301 return ptr;
3302}
3303
3304#ifdef CONFIG_MMU
3305
c072481d 3306static __cold int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
6c5c240e
RP
3307{
3308 size_t sz = vma->vm_end - vma->vm_start;
3309 unsigned long pfn;
3310 void *ptr;
3311
3312 ptr = io_uring_validate_mmap_request(file, vma->vm_pgoff, sz);
3313 if (IS_ERR(ptr))
3314 return PTR_ERR(ptr);
2b188cc1
JA
3315
3316 pfn = virt_to_phys(ptr) >> PAGE_SHIFT;
3317 return remap_pfn_range(vma, vma->vm_start, pfn, sz, vma->vm_page_prot);
3318}
3319
6c5c240e
RP
3320#else /* !CONFIG_MMU */
3321
3322static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
3323{
3324 return vma->vm_flags & (VM_SHARED | VM_MAYSHARE) ? 0 : -EINVAL;
3325}
3326
3327static unsigned int io_uring_nommu_mmap_capabilities(struct file *file)
3328{
3329 return NOMMU_MAP_DIRECT | NOMMU_MAP_READ | NOMMU_MAP_WRITE;
3330}
3331
3332static unsigned long io_uring_nommu_get_unmapped_area(struct file *file,
3333 unsigned long addr, unsigned long len,
3334 unsigned long pgoff, unsigned long flags)
3335{
3336 void *ptr;
3337
3338 ptr = io_uring_validate_mmap_request(file, pgoff, len);
3339 if (IS_ERR(ptr))
3340 return PTR_ERR(ptr);
3341
3342 return (unsigned long) ptr;
3343}
3344
3345#endif /* !CONFIG_MMU */
3346
f81440d3
PB
3347static int io_validate_ext_arg(unsigned flags, const void __user *argp, size_t argsz)
3348{
3349 if (flags & IORING_ENTER_EXT_ARG) {
3350 struct io_uring_getevents_arg arg;
3351
3352 if (argsz != sizeof(arg))
3353 return -EINVAL;
3354 if (copy_from_user(&arg, argp, sizeof(arg)))
3355 return -EFAULT;
3356 }
3357 return 0;
3358}
3359
c73ebb68
HX
3360static int io_get_ext_arg(unsigned flags, const void __user *argp, size_t *argsz,
3361 struct __kernel_timespec __user **ts,
3362 const sigset_t __user **sig)
3363{
3364 struct io_uring_getevents_arg arg;
3365
3366 /*
3367 * If EXT_ARG isn't set, then we have no timespec and the argp pointer
3368 * is just a pointer to the sigset_t.
3369 */
3370 if (!(flags & IORING_ENTER_EXT_ARG)) {
3371 *sig = (const sigset_t __user *) argp;
3372 *ts = NULL;
3373 return 0;
3374 }
3375
3376 /*
3377 * EXT_ARG is set - ensure we agree on the size of it and copy in our
3378 * timespec and sigset_t pointers if good.
3379 */
3380 if (*argsz != sizeof(arg))
3381 return -EINVAL;
3382 if (copy_from_user(&arg, argp, sizeof(arg)))
3383 return -EFAULT;
d2347b96
DY
3384 if (arg.pad)
3385 return -EINVAL;
c73ebb68
HX
3386 *sig = u64_to_user_ptr(arg.sigmask);
3387 *argsz = arg.sigmask_sz;
3388 *ts = u64_to_user_ptr(arg.ts);
3389 return 0;
3390}
3391
2b188cc1 3392SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
c73ebb68
HX
3393 u32, min_complete, u32, flags, const void __user *, argp,
3394 size_t, argsz)
2b188cc1
JA
3395{
3396 struct io_ring_ctx *ctx;
2b188cc1 3397 struct fd f;
33f993da 3398 long ret;
2b188cc1 3399
33f993da 3400 if (unlikely(flags & ~(IORING_ENTER_GETEVENTS | IORING_ENTER_SQ_WAKEUP |
e7a6c00d
JA
3401 IORING_ENTER_SQ_WAIT | IORING_ENTER_EXT_ARG |
3402 IORING_ENTER_REGISTERED_RING)))
2b188cc1
JA
3403 return -EINVAL;
3404
e7a6c00d
JA
3405 /*
3406 * Ring fd has been registered via IORING_REGISTER_RING_FDS, we
3407 * need only dereference our task private array to find it.
3408 */
3409 if (flags & IORING_ENTER_REGISTERED_RING) {
3410 struct io_uring_task *tctx = current->io_uring;
3411
3273c440 3412 if (unlikely(!tctx || fd >= IO_RINGFD_REG_MAX))
e7a6c00d
JA
3413 return -EINVAL;
3414 fd = array_index_nospec(fd, IO_RINGFD_REG_MAX);
3415 f.file = tctx->registered_rings[fd];
4329490a 3416 f.flags = 0;
3273c440
PB
3417 if (unlikely(!f.file))
3418 return -EBADF;
e7a6c00d
JA
3419 } else {
3420 f = fdget(fd);
3273c440
PB
3421 if (unlikely(!f.file))
3422 return -EBADF;
3423 ret = -EOPNOTSUPP;
3424 if (unlikely(!io_is_uring_fops(f.file)))
fbb8bb02 3425 goto out;
e7a6c00d 3426 }
2b188cc1 3427
2b188cc1 3428 ctx = f.file->private_data;
7e84e1c7 3429 ret = -EBADFD;
33f993da 3430 if (unlikely(ctx->flags & IORING_SETUP_R_DISABLED))
7e84e1c7
SG
3431 goto out;
3432
6c271ce2
JA
3433 /*
3434 * For SQ polling, the thread will do all submissions and completions.
3435 * Just return the requested submit count, and wake the thread if
3436 * we were asked to.
3437 */
b2a9eada 3438 ret = 0;
6c271ce2 3439 if (ctx->flags & IORING_SETUP_SQPOLL) {
90f67366 3440 io_cqring_overflow_flush(ctx);
89448c47 3441
21f96522
JA
3442 if (unlikely(ctx->sq_data->thread == NULL)) {
3443 ret = -EOWNERDEAD;
04147488 3444 goto out;
21f96522 3445 }
6c271ce2 3446 if (flags & IORING_ENTER_SQ_WAKEUP)
534ca6d6 3447 wake_up(&ctx->sq_data->wait);
88b80534
QF
3448 if (flags & IORING_ENTER_SQ_WAIT)
3449 io_sqpoll_wait_sq(ctx);
3450
3e813c90 3451 ret = to_submit;
b2a9eada 3452 } else if (to_submit) {
eef51daa 3453 ret = io_uring_add_tctx_node(ctx);
0f212204
JA
3454 if (unlikely(ret))
3455 goto out;
7c504e65 3456
2b188cc1 3457 mutex_lock(&ctx->uring_lock);
3e813c90
DY
3458 ret = io_submit_sqes(ctx, to_submit);
3459 if (ret != to_submit) {
d487b43c 3460 mutex_unlock(&ctx->uring_lock);
7c504e65 3461 goto out;
d487b43c 3462 }
44f87745
PB
3463 if (flags & IORING_ENTER_GETEVENTS) {
3464 if (ctx->syscall_iopoll)
3465 goto iopoll_locked;
3466 /*
3467 * Ignore errors, we'll soon call io_cqring_wait() and
3468 * it should handle ownership problems if any.
3469 */
3470 if (ctx->flags & IORING_SETUP_DEFER_TASKRUN)
3471 (void)io_run_local_work_locked(ctx);
3472 }
d487b43c 3473 mutex_unlock(&ctx->uring_lock);
2b188cc1 3474 }
c0e0d6ba 3475
2b188cc1 3476 if (flags & IORING_ENTER_GETEVENTS) {
3e813c90 3477 int ret2;
c0e0d6ba 3478
773697b6 3479 if (ctx->syscall_iopoll) {
d487b43c
PB
3480 /*
3481 * We disallow the app entering submit/complete with
3482 * polling, but we still need to lock the ring to
3483 * prevent racing with polled issue that got punted to
3484 * a workqueue.
3485 */
3486 mutex_lock(&ctx->uring_lock);
3487iopoll_locked:
3e813c90
DY
3488 ret2 = io_validate_ext_arg(flags, argp, argsz);
3489 if (likely(!ret2)) {
3490 min_complete = min(min_complete,
3491 ctx->cq_entries);
3492 ret2 = io_iopoll_check(ctx, min_complete);
d487b43c
PB
3493 }
3494 mutex_unlock(&ctx->uring_lock);
def596e9 3495 } else {
f81440d3
PB
3496 const sigset_t __user *sig;
3497 struct __kernel_timespec __user *ts;
3498
3e813c90
DY
3499 ret2 = io_get_ext_arg(flags, argp, &argsz, &ts, &sig);
3500 if (likely(!ret2)) {
3501 min_complete = min(min_complete,
3502 ctx->cq_entries);
3503 ret2 = io_cqring_wait(ctx, min_complete, sig,
3504 argsz, ts);
3505 }
def596e9 3506 }
c73ebb68 3507
155bc950 3508 if (!ret) {
3e813c90 3509 ret = ret2;
2b188cc1 3510
155bc950
DY
3511 /*
3512 * EBADR indicates that one or more CQE were dropped.
3513 * Once the user has been informed we can clear the bit
3514 * as they are obviously ok with those drops.
3515 */
3516 if (unlikely(ret2 == -EBADR))
3517 clear_bit(IO_CHECK_CQ_DROPPED_BIT,
3518 &ctx->check_cq);
def596e9 3519 }
2b188cc1 3520 }
7c504e65 3521out:
4329490a 3522 fdput(f);
3e813c90 3523 return ret;
2b188cc1
JA
3524}
3525
3526static const struct file_operations io_uring_fops = {
3527 .release = io_uring_release,
3528 .mmap = io_uring_mmap,
6c5c240e
RP
3529#ifndef CONFIG_MMU
3530 .get_unmapped_area = io_uring_nommu_get_unmapped_area,
3531 .mmap_capabilities = io_uring_nommu_mmap_capabilities,
3532#endif
2b188cc1 3533 .poll = io_uring_poll,
bebdb65e 3534#ifdef CONFIG_PROC_FS
87ce955b 3535 .show_fdinfo = io_uring_show_fdinfo,
bebdb65e 3536#endif
2b188cc1
JA
3537};
3538
92ac8bea
JA
3539bool io_is_uring_fops(struct file *file)
3540{
3541 return file->f_op == &io_uring_fops;
3542}
3543
c072481d
PB
3544static __cold int io_allocate_scq_urings(struct io_ring_ctx *ctx,
3545 struct io_uring_params *p)
2b188cc1 3546{
75b28aff
HV
3547 struct io_rings *rings;
3548 size_t size, sq_array_offset;
2b188cc1 3549
bd740481
JA
3550 /* make sure these are sane, as we already accounted them */
3551 ctx->sq_entries = p->sq_entries;
3552 ctx->cq_entries = p->cq_entries;
3553
baf9cb64 3554 size = rings_size(ctx, p->sq_entries, p->cq_entries, &sq_array_offset);
75b28aff
HV
3555 if (size == SIZE_MAX)
3556 return -EOVERFLOW;
3557
3558 rings = io_mem_alloc(size);
3559 if (!rings)
2b188cc1
JA
3560 return -ENOMEM;
3561
75b28aff
HV
3562 ctx->rings = rings;
3563 ctx->sq_array = (u32 *)((char *)rings + sq_array_offset);
3564 rings->sq_ring_mask = p->sq_entries - 1;
3565 rings->cq_ring_mask = p->cq_entries - 1;
3566 rings->sq_ring_entries = p->sq_entries;
3567 rings->cq_ring_entries = p->cq_entries;
2b188cc1 3568
ebdeb7c0
JA
3569 if (p->flags & IORING_SETUP_SQE128)
3570 size = array_size(2 * sizeof(struct io_uring_sqe), p->sq_entries);
3571 else
3572 size = array_size(sizeof(struct io_uring_sqe), p->sq_entries);
eb065d30
JA
3573 if (size == SIZE_MAX) {
3574 io_mem_free(ctx->rings);
3575 ctx->rings = NULL;
2b188cc1 3576 return -EOVERFLOW;
eb065d30 3577 }
2b188cc1
JA
3578
3579 ctx->sq_sqes = io_mem_alloc(size);
eb065d30
JA
3580 if (!ctx->sq_sqes) {
3581 io_mem_free(ctx->rings);
3582 ctx->rings = NULL;
2b188cc1 3583 return -ENOMEM;
eb065d30 3584 }
2b188cc1 3585
2b188cc1
JA
3586 return 0;
3587}
3588
9faadcc8
PB
3589static int io_uring_install_fd(struct io_ring_ctx *ctx, struct file *file)
3590{
3591 int ret, fd;
3592
3593 fd = get_unused_fd_flags(O_RDWR | O_CLOEXEC);
3594 if (fd < 0)
3595 return fd;
3596
97c96e9f 3597 ret = __io_uring_add_tctx_node(ctx);
9faadcc8
PB
3598 if (ret) {
3599 put_unused_fd(fd);
3600 return ret;
3601 }
3602 fd_install(fd, file);
3603 return fd;
3604}
3605
2b188cc1
JA
3606/*
3607 * Allocate an anonymous fd, this is what constitutes the application
3608 * visible backing of an io_uring instance. The application mmaps this
3609 * fd to gain access to the SQ/CQ ring details. If UNIX sockets are enabled,
3610 * we have to tie this fd to a socket for file garbage collection purposes.
3611 */
9faadcc8 3612static struct file *io_uring_get_file(struct io_ring_ctx *ctx)
2b188cc1
JA
3613{
3614 struct file *file;
9faadcc8 3615#if defined(CONFIG_UNIX)
2b188cc1
JA
3616 int ret;
3617
2b188cc1
JA
3618 ret = sock_create_kern(&init_net, PF_UNIX, SOCK_RAW, IPPROTO_IP,
3619 &ctx->ring_sock);
3620 if (ret)
9faadcc8 3621 return ERR_PTR(ret);
2b188cc1
JA
3622#endif
3623
91a9ab7c
PM
3624 file = anon_inode_getfile_secure("[io_uring]", &io_uring_fops, ctx,
3625 O_RDWR | O_CLOEXEC, NULL);
2b188cc1 3626#if defined(CONFIG_UNIX)
9faadcc8
PB
3627 if (IS_ERR(file)) {
3628 sock_release(ctx->ring_sock);
3629 ctx->ring_sock = NULL;
3630 } else {
3631 ctx->ring_sock->file = file;
0f212204 3632 }
2b188cc1 3633#endif
9faadcc8 3634 return file;
2b188cc1
JA
3635}
3636
c072481d
PB
3637static __cold int io_uring_create(unsigned entries, struct io_uring_params *p,
3638 struct io_uring_params __user *params)
2b188cc1 3639{
2b188cc1 3640 struct io_ring_ctx *ctx;
9faadcc8 3641 struct file *file;
2b188cc1
JA
3642 int ret;
3643
8110c1a6 3644 if (!entries)
2b188cc1 3645 return -EINVAL;
8110c1a6
JA
3646 if (entries > IORING_MAX_ENTRIES) {
3647 if (!(p->flags & IORING_SETUP_CLAMP))
3648 return -EINVAL;
3649 entries = IORING_MAX_ENTRIES;
3650 }
2b188cc1
JA
3651
3652 /*
3653 * Use twice as many entries for the CQ ring. It's possible for the
3654 * application to drive a higher depth than the size of the SQ ring,
3655 * since the sqes are only used at submission time. This allows for
33a107f0
JA
3656 * some flexibility in overcommitting a bit. If the application has
3657 * set IORING_SETUP_CQSIZE, it will have passed in the desired number
3658 * of CQ ring entries manually.
2b188cc1
JA
3659 */
3660 p->sq_entries = roundup_pow_of_two(entries);
33a107f0
JA
3661 if (p->flags & IORING_SETUP_CQSIZE) {
3662 /*
3663 * If IORING_SETUP_CQSIZE is set, we do the same roundup
3664 * to a power-of-two, if it isn't already. We do NOT impose
3665 * any cq vs sq ring sizing.
3666 */
eb2667b3 3667 if (!p->cq_entries)
33a107f0 3668 return -EINVAL;
8110c1a6
JA
3669 if (p->cq_entries > IORING_MAX_CQ_ENTRIES) {
3670 if (!(p->flags & IORING_SETUP_CLAMP))
3671 return -EINVAL;
3672 p->cq_entries = IORING_MAX_CQ_ENTRIES;
3673 }
eb2667b3
JQ
3674 p->cq_entries = roundup_pow_of_two(p->cq_entries);
3675 if (p->cq_entries < p->sq_entries)
3676 return -EINVAL;
33a107f0
JA
3677 } else {
3678 p->cq_entries = 2 * p->sq_entries;
3679 }
2b188cc1 3680
2b188cc1 3681 ctx = io_ring_ctx_alloc(p);
62e398be 3682 if (!ctx)
2b188cc1 3683 return -ENOMEM;
773697b6 3684
e6aeb272
PB
3685 if ((ctx->flags & IORING_SETUP_DEFER_TASKRUN) &&
3686 !(ctx->flags & IORING_SETUP_IOPOLL) &&
3687 !(ctx->flags & IORING_SETUP_SQPOLL))
3688 ctx->task_complete = true;
3689
bca39f39
PB
3690 /*
3691 * lazy poll_wq activation relies on ->task_complete for synchronisation
3692 * purposes, see io_activate_pollwq()
3693 */
3694 if (!ctx->task_complete)
3695 ctx->poll_activated = true;
3696
773697b6
PB
3697 /*
3698 * When SETUP_IOPOLL and SETUP_SQPOLL are both enabled, user
3699 * space applications don't need to do io completion events
3700 * polling again, they can rely on io_sq_thread to do polling
3701 * work, which can reduce cpu usage and uring_lock contention.
3702 */
3703 if (ctx->flags & IORING_SETUP_IOPOLL &&
3704 !(ctx->flags & IORING_SETUP_SQPOLL))
3705 ctx->syscall_iopoll = 1;
3706
2b188cc1 3707 ctx->compat = in_compat_syscall();
62e398be
JA
3708 if (!capable(CAP_IPC_LOCK))
3709 ctx->user = get_uid(current_user());
2aede0e4 3710
9f010507 3711 /*
e1169f06
JA
3712 * For SQPOLL, we just need a wakeup, always. For !SQPOLL, if
3713 * COOP_TASKRUN is set, then IPIs are never needed by the app.
9f010507 3714 */
e1169f06
JA
3715 ret = -EINVAL;
3716 if (ctx->flags & IORING_SETUP_SQPOLL) {
3717 /* IPI related flags don't make sense with SQPOLL */
ef060ea9 3718 if (ctx->flags & (IORING_SETUP_COOP_TASKRUN |
c0e0d6ba
DY
3719 IORING_SETUP_TASKRUN_FLAG |
3720 IORING_SETUP_DEFER_TASKRUN))
e1169f06 3721 goto err;
9f010507 3722 ctx->notify_method = TWA_SIGNAL_NO_IPI;
e1169f06
JA
3723 } else if (ctx->flags & IORING_SETUP_COOP_TASKRUN) {
3724 ctx->notify_method = TWA_SIGNAL_NO_IPI;
3725 } else {
c0e0d6ba
DY
3726 if (ctx->flags & IORING_SETUP_TASKRUN_FLAG &&
3727 !(ctx->flags & IORING_SETUP_DEFER_TASKRUN))
ef060ea9 3728 goto err;
9f010507 3729 ctx->notify_method = TWA_SIGNAL;
e1169f06 3730 }
9f010507 3731
c0e0d6ba
DY
3732 /*
3733 * For DEFER_TASKRUN we require the completion task to be the same as the
3734 * submission task. This implies that there is only one submitter, so enforce
3735 * that.
3736 */
3737 if (ctx->flags & IORING_SETUP_DEFER_TASKRUN &&
3738 !(ctx->flags & IORING_SETUP_SINGLE_ISSUER)) {
3739 goto err;
3740 }
3741
2aede0e4
JA
3742 /*
3743 * This is just grabbed for accounting purposes. When a process exits,
3744 * the mm is exited and dropped before the files, hence we need to hang
3745 * on to this mm purely for the purposes of being able to unaccount
3746 * memory (locked/pinned vm). It's not used for anything else.
3747 */
6b7898eb 3748 mmgrab(current->mm);
2aede0e4 3749 ctx->mm_account = current->mm;
6b7898eb 3750
2b188cc1
JA
3751 ret = io_allocate_scq_urings(ctx, p);
3752 if (ret)
3753 goto err;
3754
7e84e1c7 3755 ret = io_sq_offload_create(ctx, p);
2b188cc1
JA
3756 if (ret)
3757 goto err;
eae071c9 3758 /* always set a rsrc node */
47b228ce
PB
3759 ret = io_rsrc_node_switch_start(ctx);
3760 if (ret)
3761 goto err;
eae071c9 3762 io_rsrc_node_switch(ctx, NULL);
2b188cc1 3763
2b188cc1 3764 memset(&p->sq_off, 0, sizeof(p->sq_off));
75b28aff
HV
3765 p->sq_off.head = offsetof(struct io_rings, sq.head);
3766 p->sq_off.tail = offsetof(struct io_rings, sq.tail);
3767 p->sq_off.ring_mask = offsetof(struct io_rings, sq_ring_mask);
3768 p->sq_off.ring_entries = offsetof(struct io_rings, sq_ring_entries);
3769 p->sq_off.flags = offsetof(struct io_rings, sq_flags);
3770 p->sq_off.dropped = offsetof(struct io_rings, sq_dropped);
3771 p->sq_off.array = (char *)ctx->sq_array - (char *)ctx->rings;
2b188cc1
JA
3772
3773 memset(&p->cq_off, 0, sizeof(p->cq_off));
75b28aff
HV
3774 p->cq_off.head = offsetof(struct io_rings, cq.head);
3775 p->cq_off.tail = offsetof(struct io_rings, cq.tail);
3776 p->cq_off.ring_mask = offsetof(struct io_rings, cq_ring_mask);
3777 p->cq_off.ring_entries = offsetof(struct io_rings, cq_ring_entries);
3778 p->cq_off.overflow = offsetof(struct io_rings, cq_overflow);
3779 p->cq_off.cqes = offsetof(struct io_rings, cqes);
0d9b5b3a 3780 p->cq_off.flags = offsetof(struct io_rings, cq_flags);
ac90f249 3781
7f13657d
XW
3782 p->features = IORING_FEAT_SINGLE_MMAP | IORING_FEAT_NODROP |
3783 IORING_FEAT_SUBMIT_STABLE | IORING_FEAT_RW_CUR_POS |
5769a351 3784 IORING_FEAT_CUR_PERSONALITY | IORING_FEAT_FAST_POLL |
c73ebb68 3785 IORING_FEAT_POLL_32BITS | IORING_FEAT_SQPOLL_NONFIXED |
9690557e 3786 IORING_FEAT_EXT_ARG | IORING_FEAT_NATIVE_WORKERS |
c4212f3e 3787 IORING_FEAT_RSRC_TAGS | IORING_FEAT_CQE_SKIP |
7d3fd88d 3788 IORING_FEAT_LINKED_FILE | IORING_FEAT_REG_REG_RING;
7f13657d
XW
3789
3790 if (copy_to_user(params, p, sizeof(*p))) {
3791 ret = -EFAULT;
3792 goto err;
3793 }
d1719f70 3794
7cae596b
DY
3795 if (ctx->flags & IORING_SETUP_SINGLE_ISSUER
3796 && !(ctx->flags & IORING_SETUP_R_DISABLED))
8579538c 3797 WRITE_ONCE(ctx->submitter_task, get_task_struct(current));
7cae596b 3798
9faadcc8
PB
3799 file = io_uring_get_file(ctx);
3800 if (IS_ERR(file)) {
3801 ret = PTR_ERR(file);
3802 goto err;
3803 }
3804
044c1ab3
JA
3805 /*
3806 * Install ring fd as the very last thing, so we don't risk someone
3807 * having closed it before we finish setup
3808 */
9faadcc8
PB
3809 ret = io_uring_install_fd(ctx, file);
3810 if (ret < 0) {
3811 /* fput will clean it up */
3812 fput(file);
3813 return ret;
3814 }
044c1ab3 3815
c826bd7a 3816 trace_io_uring_create(ret, ctx, p->sq_entries, p->cq_entries, p->flags);
2b188cc1
JA
3817 return ret;
3818err:
3819 io_ring_ctx_wait_and_kill(ctx);
3820 return ret;
3821}
3822
3823/*
3824 * Sets up an aio uring context, and returns the fd. Applications asks for a
3825 * ring size, we return the actual sq/cq ring sizes (among other things) in the
3826 * params structure passed in.
3827 */
3828static long io_uring_setup(u32 entries, struct io_uring_params __user *params)
3829{
3830 struct io_uring_params p;
2b188cc1
JA
3831 int i;
3832
3833 if (copy_from_user(&p, params, sizeof(p)))
3834 return -EFAULT;
3835 for (i = 0; i < ARRAY_SIZE(p.resv); i++) {
3836 if (p.resv[i])
3837 return -EINVAL;
3838 }
3839
6c271ce2 3840 if (p.flags & ~(IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL |
8110c1a6 3841 IORING_SETUP_SQ_AFF | IORING_SETUP_CQSIZE |
7e84e1c7 3842 IORING_SETUP_CLAMP | IORING_SETUP_ATTACH_WQ |
e1169f06 3843 IORING_SETUP_R_DISABLED | IORING_SETUP_SUBMIT_ALL |
ebdeb7c0 3844 IORING_SETUP_COOP_TASKRUN | IORING_SETUP_TASKRUN_FLAG |
97bbdc06 3845 IORING_SETUP_SQE128 | IORING_SETUP_CQE32 |
c0e0d6ba 3846 IORING_SETUP_SINGLE_ISSUER | IORING_SETUP_DEFER_TASKRUN))
2b188cc1
JA
3847 return -EINVAL;
3848
ef060ea9 3849 return io_uring_create(entries, &p, params);
2b188cc1
JA
3850}
3851
3852SYSCALL_DEFINE2(io_uring_setup, u32, entries,
3853 struct io_uring_params __user *, params)
3854{
3855 return io_uring_setup(entries, params);
3856}
3857
c072481d
PB
3858static __cold int io_probe(struct io_ring_ctx *ctx, void __user *arg,
3859 unsigned nr_args)
66f4af93
JA
3860{
3861 struct io_uring_probe *p;
3862 size_t size;
3863 int i, ret;
3864
3865 size = struct_size(p, ops, nr_args);
3866 if (size == SIZE_MAX)
3867 return -EOVERFLOW;
3868 p = kzalloc(size, GFP_KERNEL);
3869 if (!p)
3870 return -ENOMEM;
3871
3872 ret = -EFAULT;
3873 if (copy_from_user(p, arg, size))
3874 goto out;
3875 ret = -EINVAL;
3876 if (memchr_inv(p, 0, size))
3877 goto out;
3878
3879 p->last_op = IORING_OP_LAST - 1;
3880 if (nr_args > IORING_OP_LAST)
3881 nr_args = IORING_OP_LAST;
3882
3883 for (i = 0; i < nr_args; i++) {
3884 p->ops[i].op = i;
a7dd2782 3885 if (!io_issue_defs[i].not_supported)
66f4af93
JA
3886 p->ops[i].flags = IO_URING_OP_SUPPORTED;
3887 }
3888 p->ops_len = i;
3889
3890 ret = 0;
3891 if (copy_to_user(arg, p, size))
3892 ret = -EFAULT;
3893out:
3894 kfree(p);
3895 return ret;
3896}
3897
071698e1
JA
3898static int io_register_personality(struct io_ring_ctx *ctx)
3899{
4379bf8b 3900 const struct cred *creds;
61cf9370 3901 u32 id;
1e6fa521 3902 int ret;
071698e1 3903
4379bf8b 3904 creds = get_current_cred();
1e6fa521 3905
61cf9370
MWO
3906 ret = xa_alloc_cyclic(&ctx->personalities, &id, (void *)creds,
3907 XA_LIMIT(0, USHRT_MAX), &ctx->pers_next, GFP_KERNEL);
a30f895a
JA
3908 if (ret < 0) {
3909 put_cred(creds);
3910 return ret;
3911 }
3912 return id;
071698e1
JA
3913}
3914
c072481d
PB
3915static __cold int io_register_restrictions(struct io_ring_ctx *ctx,
3916 void __user *arg, unsigned int nr_args)
21b55dbc
SG
3917{
3918 struct io_uring_restriction *res;
3919 size_t size;
3920 int i, ret;
3921
7e84e1c7
SG
3922 /* Restrictions allowed only if rings started disabled */
3923 if (!(ctx->flags & IORING_SETUP_R_DISABLED))
3924 return -EBADFD;
3925
21b55dbc 3926 /* We allow only a single restrictions registration */
7e84e1c7 3927 if (ctx->restrictions.registered)
21b55dbc
SG
3928 return -EBUSY;
3929
3930 if (!arg || nr_args > IORING_MAX_RESTRICTIONS)
3931 return -EINVAL;
3932
3933 size = array_size(nr_args, sizeof(*res));
3934 if (size == SIZE_MAX)
3935 return -EOVERFLOW;
3936
3937 res = memdup_user(arg, size);
3938 if (IS_ERR(res))
3939 return PTR_ERR(res);
3940
3941 ret = 0;
3942
3943 for (i = 0; i < nr_args; i++) {
3944 switch (res[i].opcode) {
3945 case IORING_RESTRICTION_REGISTER_OP:
3946 if (res[i].register_op >= IORING_REGISTER_LAST) {
3947 ret = -EINVAL;
3948 goto out;
3949 }
3950
3951 __set_bit(res[i].register_op,
3952 ctx->restrictions.register_op);
3953 break;
3954 case IORING_RESTRICTION_SQE_OP:
3955 if (res[i].sqe_op >= IORING_OP_LAST) {
3956 ret = -EINVAL;
3957 goto out;
3958 }
3959
3960 __set_bit(res[i].sqe_op, ctx->restrictions.sqe_op);
3961 break;
3962 case IORING_RESTRICTION_SQE_FLAGS_ALLOWED:
3963 ctx->restrictions.sqe_flags_allowed = res[i].sqe_flags;
3964 break;
3965 case IORING_RESTRICTION_SQE_FLAGS_REQUIRED:
3966 ctx->restrictions.sqe_flags_required = res[i].sqe_flags;
3967 break;
3968 default:
3969 ret = -EINVAL;
3970 goto out;
3971 }
3972 }
3973
3974out:
3975 /* Reset all restrictions if an error happened */
3976 if (ret != 0)
3977 memset(&ctx->restrictions, 0, sizeof(ctx->restrictions));
3978 else
7e84e1c7 3979 ctx->restrictions.registered = true;
21b55dbc
SG
3980
3981 kfree(res);
3982 return ret;
3983}
3984
7e84e1c7
SG
3985static int io_register_enable_rings(struct io_ring_ctx *ctx)
3986{
3987 if (!(ctx->flags & IORING_SETUP_R_DISABLED))
3988 return -EBADFD;
3989
bca39f39 3990 if (ctx->flags & IORING_SETUP_SINGLE_ISSUER && !ctx->submitter_task) {
8579538c 3991 WRITE_ONCE(ctx->submitter_task, get_task_struct(current));
bca39f39
PB
3992 /*
3993 * Lazy activation attempts would fail if it was polled before
3994 * submitter_task is set.
3995 */
3996 if (wq_has_sleeper(&ctx->poll_wq))
3997 io_activate_pollwq(ctx);
3998 }
7cae596b 3999
7e84e1c7
SG
4000 if (ctx->restrictions.registered)
4001 ctx->restricted = 1;
4002
0298ef96
PB
4003 ctx->flags &= ~IORING_SETUP_R_DISABLED;
4004 if (ctx->sq_data && wq_has_sleeper(&ctx->sq_data->wait))
4005 wake_up(&ctx->sq_data->wait);
7e84e1c7
SG
4006 return 0;
4007}
4008
c072481d
PB
4009static __cold int io_register_iowq_aff(struct io_ring_ctx *ctx,
4010 void __user *arg, unsigned len)
fe76421d
JA
4011{
4012 struct io_uring_task *tctx = current->io_uring;
4013 cpumask_var_t new_mask;
4014 int ret;
4015
4016 if (!tctx || !tctx->io_wq)
4017 return -EINVAL;
4018
4019 if (!alloc_cpumask_var(&new_mask, GFP_KERNEL))
4020 return -ENOMEM;
4021
4022 cpumask_clear(new_mask);
4023 if (len > cpumask_size())
4024 len = cpumask_size();
4025
0f5e4b83
ES
4026 if (in_compat_syscall()) {
4027 ret = compat_get_bitmap(cpumask_bits(new_mask),
4028 (const compat_ulong_t __user *)arg,
4029 len * 8 /* CHAR_BIT */);
4030 } else {
4031 ret = copy_from_user(new_mask, arg, len);
4032 }
4033
4034 if (ret) {
fe76421d
JA
4035 free_cpumask_var(new_mask);
4036 return -EFAULT;
4037 }
4038
4039 ret = io_wq_cpu_affinity(tctx->io_wq, new_mask);
4040 free_cpumask_var(new_mask);
4041 return ret;
4042}
4043
c072481d 4044static __cold int io_unregister_iowq_aff(struct io_ring_ctx *ctx)
fe76421d
JA
4045{
4046 struct io_uring_task *tctx = current->io_uring;
4047
4048 if (!tctx || !tctx->io_wq)
4049 return -EINVAL;
4050
4051 return io_wq_cpu_affinity(tctx->io_wq, NULL);
4052}
4053
c072481d
PB
4054static __cold int io_register_iowq_max_workers(struct io_ring_ctx *ctx,
4055 void __user *arg)
b22fa62a 4056 __must_hold(&ctx->uring_lock)
2e480058 4057{
b22fa62a 4058 struct io_tctx_node *node;
fa84693b
JA
4059 struct io_uring_task *tctx = NULL;
4060 struct io_sq_data *sqd = NULL;
2e480058
JA
4061 __u32 new_count[2];
4062 int i, ret;
4063
2e480058
JA
4064 if (copy_from_user(new_count, arg, sizeof(new_count)))
4065 return -EFAULT;
4066 for (i = 0; i < ARRAY_SIZE(new_count); i++)
4067 if (new_count[i] > INT_MAX)
4068 return -EINVAL;
4069
fa84693b
JA
4070 if (ctx->flags & IORING_SETUP_SQPOLL) {
4071 sqd = ctx->sq_data;
4072 if (sqd) {
009ad9f0
JA
4073 /*
4074 * Observe the correct sqd->lock -> ctx->uring_lock
4075 * ordering. Fine to drop uring_lock here, we hold
4076 * a ref to the ctx.
4077 */
41d3a6bd 4078 refcount_inc(&sqd->refs);
009ad9f0 4079 mutex_unlock(&ctx->uring_lock);
fa84693b 4080 mutex_lock(&sqd->lock);
009ad9f0 4081 mutex_lock(&ctx->uring_lock);
41d3a6bd
JA
4082 if (sqd->thread)
4083 tctx = sqd->thread->io_uring;
fa84693b
JA
4084 }
4085 } else {
4086 tctx = current->io_uring;
4087 }
4088
e139a1ec 4089 BUILD_BUG_ON(sizeof(new_count) != sizeof(ctx->iowq_limits));
fa84693b 4090
bad119b9
PB
4091 for (i = 0; i < ARRAY_SIZE(new_count); i++)
4092 if (new_count[i])
4093 ctx->iowq_limits[i] = new_count[i];
e139a1ec
PB
4094 ctx->iowq_limits_set = true;
4095
e139a1ec
PB
4096 if (tctx && tctx->io_wq) {
4097 ret = io_wq_max_workers(tctx->io_wq, new_count);
4098 if (ret)
4099 goto err;
4100 } else {
4101 memset(new_count, 0, sizeof(new_count));
4102 }
fa84693b 4103
41d3a6bd 4104 if (sqd) {
fa84693b 4105 mutex_unlock(&sqd->lock);
41d3a6bd
JA
4106 io_put_sq_data(sqd);
4107 }
2e480058
JA
4108
4109 if (copy_to_user(arg, new_count, sizeof(new_count)))
4110 return -EFAULT;
4111
b22fa62a
PB
4112 /* that's it for SQPOLL, only the SQPOLL task creates requests */
4113 if (sqd)
4114 return 0;
4115
4116 /* now propagate the restriction to all registered users */
4117 list_for_each_entry(node, &ctx->tctx_list, ctx_node) {
4118 struct io_uring_task *tctx = node->task->io_uring;
4119
4120 if (WARN_ON_ONCE(!tctx->io_wq))
4121 continue;
4122
4123 for (i = 0; i < ARRAY_SIZE(new_count); i++)
4124 new_count[i] = ctx->iowq_limits[i];
4125 /* ignore errors, it always returns zero anyway */
4126 (void)io_wq_max_workers(tctx->io_wq, new_count);
4127 }
2e480058 4128 return 0;
fa84693b 4129err:
41d3a6bd 4130 if (sqd) {
fa84693b 4131 mutex_unlock(&sqd->lock);
41d3a6bd
JA
4132 io_put_sq_data(sqd);
4133 }
fa84693b 4134 return ret;
2e480058
JA
4135}
4136
edafccee
JA
4137static int __io_uring_register(struct io_ring_ctx *ctx, unsigned opcode,
4138 void __user *arg, unsigned nr_args)
b19062a5
JA
4139 __releases(ctx->uring_lock)
4140 __acquires(ctx->uring_lock)
edafccee
JA
4141{
4142 int ret;
4143
35fa71a0 4144 /*
fbb8bb02
PB
4145 * We don't quiesce the refs for register anymore and so it can't be
4146 * dying as we're holding a file ref here.
35fa71a0 4147 */
fbb8bb02 4148 if (WARN_ON_ONCE(percpu_ref_is_dying(&ctx->refs)))
35fa71a0
JA
4149 return -ENXIO;
4150
d7cce96c
PB
4151 if (ctx->submitter_task && ctx->submitter_task != current)
4152 return -EEXIST;
4153
75c4021a 4154 if (ctx->restricted) {
75c4021a
PB
4155 opcode = array_index_nospec(opcode, IORING_REGISTER_LAST);
4156 if (!test_bit(opcode, ctx->restrictions.register_op))
4157 return -EACCES;
4158 }
4159
edafccee
JA
4160 switch (opcode) {
4161 case IORING_REGISTER_BUFFERS:
0184f08e
PB
4162 ret = -EFAULT;
4163 if (!arg)
4164 break;
634d00df 4165 ret = io_sqe_buffers_register(ctx, arg, nr_args, NULL);
edafccee
JA
4166 break;
4167 case IORING_UNREGISTER_BUFFERS:
4168 ret = -EINVAL;
4169 if (arg || nr_args)
4170 break;
0a96bbe4 4171 ret = io_sqe_buffers_unregister(ctx);
edafccee 4172 break;
6b06314c 4173 case IORING_REGISTER_FILES:
a8da73a3
JA
4174 ret = -EFAULT;
4175 if (!arg)
4176 break;
792e3582 4177 ret = io_sqe_files_register(ctx, arg, nr_args, NULL);
6b06314c
JA
4178 break;
4179 case IORING_UNREGISTER_FILES:
4180 ret = -EINVAL;
4181 if (arg || nr_args)
4182 break;
4183 ret = io_sqe_files_unregister(ctx);
4184 break;
c3a31e60 4185 case IORING_REGISTER_FILES_UPDATE:
c3bdad02 4186 ret = io_register_files_update(ctx, arg, nr_args);
c3a31e60 4187 break;
9b402849
JA
4188 case IORING_REGISTER_EVENTFD:
4189 ret = -EINVAL;
4190 if (nr_args != 1)
4191 break;
c75312dd
UA
4192 ret = io_eventfd_register(ctx, arg, 0);
4193 break;
4194 case IORING_REGISTER_EVENTFD_ASYNC:
4195 ret = -EINVAL;
4196 if (nr_args != 1)
f2842ab5 4197 break;
c75312dd 4198 ret = io_eventfd_register(ctx, arg, 1);
9b402849
JA
4199 break;
4200 case IORING_UNREGISTER_EVENTFD:
4201 ret = -EINVAL;
4202 if (arg || nr_args)
4203 break;
4204 ret = io_eventfd_unregister(ctx);
4205 break;
66f4af93
JA
4206 case IORING_REGISTER_PROBE:
4207 ret = -EINVAL;
4208 if (!arg || nr_args > 256)
4209 break;
4210 ret = io_probe(ctx, arg, nr_args);
4211 break;
071698e1
JA
4212 case IORING_REGISTER_PERSONALITY:
4213 ret = -EINVAL;
4214 if (arg || nr_args)
4215 break;
4216 ret = io_register_personality(ctx);
4217 break;
4218 case IORING_UNREGISTER_PERSONALITY:
4219 ret = -EINVAL;
4220 if (arg)
4221 break;
4222 ret = io_unregister_personality(ctx, nr_args);
4223 break;
7e84e1c7
SG
4224 case IORING_REGISTER_ENABLE_RINGS:
4225 ret = -EINVAL;
4226 if (arg || nr_args)
4227 break;
4228 ret = io_register_enable_rings(ctx);
4229 break;
21b55dbc
SG
4230 case IORING_REGISTER_RESTRICTIONS:
4231 ret = io_register_restrictions(ctx, arg, nr_args);
4232 break;
992da01a
PB
4233 case IORING_REGISTER_FILES2:
4234 ret = io_register_rsrc(ctx, arg, nr_args, IORING_RSRC_FILE);
4235 break;
4236 case IORING_REGISTER_FILES_UPDATE2:
4237 ret = io_register_rsrc_update(ctx, arg, nr_args,
4238 IORING_RSRC_FILE);
4239 break;
4240 case IORING_REGISTER_BUFFERS2:
4241 ret = io_register_rsrc(ctx, arg, nr_args, IORING_RSRC_BUFFER);
792e3582 4242 break;
992da01a
PB
4243 case IORING_REGISTER_BUFFERS_UPDATE:
4244 ret = io_register_rsrc_update(ctx, arg, nr_args,
4245 IORING_RSRC_BUFFER);
c3bdad02 4246 break;
fe76421d
JA
4247 case IORING_REGISTER_IOWQ_AFF:
4248 ret = -EINVAL;
4249 if (!arg || !nr_args)
4250 break;
4251 ret = io_register_iowq_aff(ctx, arg, nr_args);
4252 break;
4253 case IORING_UNREGISTER_IOWQ_AFF:
4254 ret = -EINVAL;
4255 if (arg || nr_args)
4256 break;
4257 ret = io_unregister_iowq_aff(ctx);
4258 break;
2e480058
JA
4259 case IORING_REGISTER_IOWQ_MAX_WORKERS:
4260 ret = -EINVAL;
4261 if (!arg || nr_args != 2)
4262 break;
4263 ret = io_register_iowq_max_workers(ctx, arg);
4264 break;
e7a6c00d
JA
4265 case IORING_REGISTER_RING_FDS:
4266 ret = io_ringfd_register(ctx, arg, nr_args);
4267 break;
4268 case IORING_UNREGISTER_RING_FDS:
4269 ret = io_ringfd_unregister(ctx, arg, nr_args);
4270 break;
c7fb1942
JA
4271 case IORING_REGISTER_PBUF_RING:
4272 ret = -EINVAL;
4273 if (!arg || nr_args != 1)
4274 break;
4275 ret = io_register_pbuf_ring(ctx, arg);
4276 break;
4277 case IORING_UNREGISTER_PBUF_RING:
4278 ret = -EINVAL;
4279 if (!arg || nr_args != 1)
4280 break;
4281 ret = io_unregister_pbuf_ring(ctx, arg);
4282 break;
78a861b9
JA
4283 case IORING_REGISTER_SYNC_CANCEL:
4284 ret = -EINVAL;
4285 if (!arg || nr_args != 1)
4286 break;
4287 ret = io_sync_cancel(ctx, arg);
4288 break;
6e73dffb
PB
4289 case IORING_REGISTER_FILE_ALLOC_RANGE:
4290 ret = -EINVAL;
4291 if (!arg || nr_args)
4292 break;
4293 ret = io_register_file_alloc_range(ctx, arg);
4294 break;
edafccee
JA
4295 default:
4296 ret = -EINVAL;
4297 break;
4298 }
4299
edafccee
JA
4300 return ret;
4301}
4302
4303SYSCALL_DEFINE4(io_uring_register, unsigned int, fd, unsigned int, opcode,
4304 void __user *, arg, unsigned int, nr_args)
4305{
4306 struct io_ring_ctx *ctx;
4307 long ret = -EBADF;
4308 struct fd f;
7d3fd88d
JT
4309 bool use_registered_ring;
4310
4311 use_registered_ring = !!(opcode & IORING_REGISTER_USE_REGISTERED_RING);
4312 opcode &= ~IORING_REGISTER_USE_REGISTERED_RING;
edafccee 4313
34319084
JA
4314 if (opcode >= IORING_REGISTER_LAST)
4315 return -EINVAL;
4316
7d3fd88d
JT
4317 if (use_registered_ring) {
4318 /*
4319 * Ring fd has been registered via IORING_REGISTER_RING_FDS, we
4320 * need only dereference our task private array to find it.
4321 */
4322 struct io_uring_task *tctx = current->io_uring;
edafccee 4323
7d3fd88d
JT
4324 if (unlikely(!tctx || fd >= IO_RINGFD_REG_MAX))
4325 return -EINVAL;
4326 fd = array_index_nospec(fd, IO_RINGFD_REG_MAX);
4327 f.file = tctx->registered_rings[fd];
4328 f.flags = 0;
4329 if (unlikely(!f.file))
4330 return -EBADF;
4331 } else {
4332 f = fdget(fd);
4333 if (unlikely(!f.file))
4334 return -EBADF;
4335 ret = -EOPNOTSUPP;
4336 if (!io_is_uring_fops(f.file))
4337 goto out_fput;
4338 }
edafccee
JA
4339
4340 ctx = f.file->private_data;
4341
4342 mutex_lock(&ctx->uring_lock);
4343 ret = __io_uring_register(ctx, opcode, arg, nr_args);
4344 mutex_unlock(&ctx->uring_lock);
2757be22 4345 trace_io_uring_register(ctx, opcode, ctx->nr_user_files, ctx->nr_user_bufs, ret);
edafccee
JA
4346out_fput:
4347 fdput(f);
4348 return ret;
4349}
4350
2b188cc1
JA
4351static int __init io_uring_init(void)
4352{
9c71d39a 4353#define __BUILD_BUG_VERIFY_OFFSET_SIZE(stype, eoffset, esize, ename) do { \
d7f62e82 4354 BUILD_BUG_ON(offsetof(stype, ename) != eoffset); \
9c71d39a 4355 BUILD_BUG_ON(sizeof_field(stype, ename) != esize); \
d7f62e82
SM
4356} while (0)
4357
4358#define BUILD_BUG_SQE_ELEM(eoffset, etype, ename) \
9c71d39a
SM
4359 __BUILD_BUG_VERIFY_OFFSET_SIZE(struct io_uring_sqe, eoffset, sizeof(etype), ename)
4360#define BUILD_BUG_SQE_ELEM_SIZE(eoffset, esize, ename) \
4361 __BUILD_BUG_VERIFY_OFFSET_SIZE(struct io_uring_sqe, eoffset, esize, ename)
d7f62e82
SM
4362 BUILD_BUG_ON(sizeof(struct io_uring_sqe) != 64);
4363 BUILD_BUG_SQE_ELEM(0, __u8, opcode);
4364 BUILD_BUG_SQE_ELEM(1, __u8, flags);
4365 BUILD_BUG_SQE_ELEM(2, __u16, ioprio);
4366 BUILD_BUG_SQE_ELEM(4, __s32, fd);
4367 BUILD_BUG_SQE_ELEM(8, __u64, off);
4368 BUILD_BUG_SQE_ELEM(8, __u64, addr2);
9c71d39a
SM
4369 BUILD_BUG_SQE_ELEM(8, __u32, cmd_op);
4370 BUILD_BUG_SQE_ELEM(12, __u32, __pad1);
d7f62e82 4371 BUILD_BUG_SQE_ELEM(16, __u64, addr);
7d67af2c 4372 BUILD_BUG_SQE_ELEM(16, __u64, splice_off_in);
d7f62e82
SM
4373 BUILD_BUG_SQE_ELEM(24, __u32, len);
4374 BUILD_BUG_SQE_ELEM(28, __kernel_rwf_t, rw_flags);
4375 BUILD_BUG_SQE_ELEM(28, /* compat */ int, rw_flags);
4376 BUILD_BUG_SQE_ELEM(28, /* compat */ __u32, rw_flags);
4377 BUILD_BUG_SQE_ELEM(28, __u32, fsync_flags);
5769a351
JX
4378 BUILD_BUG_SQE_ELEM(28, /* compat */ __u16, poll_events);
4379 BUILD_BUG_SQE_ELEM(28, __u32, poll32_events);
d7f62e82
SM
4380 BUILD_BUG_SQE_ELEM(28, __u32, sync_range_flags);
4381 BUILD_BUG_SQE_ELEM(28, __u32, msg_flags);
4382 BUILD_BUG_SQE_ELEM(28, __u32, timeout_flags);
4383 BUILD_BUG_SQE_ELEM(28, __u32, accept_flags);
4384 BUILD_BUG_SQE_ELEM(28, __u32, cancel_flags);
4385 BUILD_BUG_SQE_ELEM(28, __u32, open_flags);
4386 BUILD_BUG_SQE_ELEM(28, __u32, statx_flags);
4387 BUILD_BUG_SQE_ELEM(28, __u32, fadvise_advice);
7d67af2c 4388 BUILD_BUG_SQE_ELEM(28, __u32, splice_flags);
9c71d39a
SM
4389 BUILD_BUG_SQE_ELEM(28, __u32, rename_flags);
4390 BUILD_BUG_SQE_ELEM(28, __u32, unlink_flags);
4391 BUILD_BUG_SQE_ELEM(28, __u32, hardlink_flags);
4392 BUILD_BUG_SQE_ELEM(28, __u32, xattr_flags);
4393 BUILD_BUG_SQE_ELEM(28, __u32, msg_ring_flags);
d7f62e82
SM
4394 BUILD_BUG_SQE_ELEM(32, __u64, user_data);
4395 BUILD_BUG_SQE_ELEM(40, __u16, buf_index);
16340eab 4396 BUILD_BUG_SQE_ELEM(40, __u16, buf_group);
d7f62e82 4397 BUILD_BUG_SQE_ELEM(42, __u16, personality);
7d67af2c 4398 BUILD_BUG_SQE_ELEM(44, __s32, splice_fd_in);
b9445598 4399 BUILD_BUG_SQE_ELEM(44, __u32, file_index);
b48c312b
PB
4400 BUILD_BUG_SQE_ELEM(44, __u16, addr_len);
4401 BUILD_BUG_SQE_ELEM(46, __u16, __pad3[0]);
e9621e2b 4402 BUILD_BUG_SQE_ELEM(48, __u64, addr3);
9c71d39a
SM
4403 BUILD_BUG_SQE_ELEM_SIZE(48, 0, cmd);
4404 BUILD_BUG_SQE_ELEM(56, __u64, __pad2);
d7f62e82 4405
b0d658ec
PB
4406 BUILD_BUG_ON(sizeof(struct io_uring_files_update) !=
4407 sizeof(struct io_uring_rsrc_update));
4408 BUILD_BUG_ON(sizeof(struct io_uring_rsrc_update) >
4409 sizeof(struct io_uring_rsrc_update2));
90499ad0
PB
4410
4411 /* ->buf_index is u16 */
c7fb1942
JA
4412 BUILD_BUG_ON(offsetof(struct io_uring_buf_ring, bufs) != 0);
4413 BUILD_BUG_ON(offsetof(struct io_uring_buf, resv) !=
4414 offsetof(struct io_uring_buf_ring, tail));
90499ad0 4415
b0d658ec
PB
4416 /* should fit into one byte */
4417 BUILD_BUG_ON(SQE_VALID_FLAGS >= (1 << 8));
68fe256a
PB
4418 BUILD_BUG_ON(SQE_COMMON_FLAGS >= (1 << 8));
4419 BUILD_BUG_ON((SQE_VALID_FLAGS | SQE_COMMON_FLAGS) != SQE_VALID_FLAGS);
b0d658ec 4420
32c2d33e 4421 BUILD_BUG_ON(__REQ_F_LAST_BIT > 8 * sizeof(int));
16340eab 4422
3a4b89a2
JA
4423 BUILD_BUG_ON(sizeof(atomic_t) != sizeof(u32));
4424
d9b57aa3 4425 io_uring_optable_init();
0702e536 4426
91f245d5
JA
4427 req_cachep = KMEM_CACHE(io_kiocb, SLAB_HWCACHE_ALIGN | SLAB_PANIC |
4428 SLAB_ACCOUNT);
2b188cc1
JA
4429 return 0;
4430};
4431__initcall(io_uring_init);