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