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