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