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