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