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