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