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