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