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