05ec385a609495412a29493aac04a21eb6b03c6d
[linux-2.6-microblaze.git] / fs / 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_cqring (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 <linux/compat.h>
47 #include <net/compat.h>
48 #include <linux/refcount.h>
49 #include <linux/uio.h>
50 #include <linux/bits.h>
51
52 #include <linux/sched/signal.h>
53 #include <linux/fs.h>
54 #include <linux/file.h>
55 #include <linux/fdtable.h>
56 #include <linux/mm.h>
57 #include <linux/mman.h>
58 #include <linux/percpu.h>
59 #include <linux/slab.h>
60 #include <linux/kthread.h>
61 #include <linux/blkdev.h>
62 #include <linux/bvec.h>
63 #include <linux/net.h>
64 #include <net/sock.h>
65 #include <net/af_unix.h>
66 #include <net/scm.h>
67 #include <linux/anon_inodes.h>
68 #include <linux/sched/mm.h>
69 #include <linux/uaccess.h>
70 #include <linux/nospec.h>
71 #include <linux/sizes.h>
72 #include <linux/hugetlb.h>
73 #include <linux/highmem.h>
74 #include <linux/namei.h>
75 #include <linux/fsnotify.h>
76 #include <linux/fadvise.h>
77 #include <linux/eventpoll.h>
78 #include <linux/fs_struct.h>
79 #include <linux/splice.h>
80 #include <linux/task_work.h>
81 #include <linux/pagemap.h>
82 #include <linux/io_uring.h>
83
84 #define CREATE_TRACE_POINTS
85 #include <trace/events/io_uring.h>
86
87 #include <uapi/linux/io_uring.h>
88
89 #include "internal.h"
90 #include "io-wq.h"
91
92 #define IORING_MAX_ENTRIES      32768
93 #define IORING_MAX_CQ_ENTRIES   (2 * IORING_MAX_ENTRIES)
94
95 /*
96  * Shift of 9 is 512 entries, or exactly one page on 64-bit archs
97  */
98 #define IORING_FILE_TABLE_SHIFT 9
99 #define IORING_MAX_FILES_TABLE  (1U << IORING_FILE_TABLE_SHIFT)
100 #define IORING_FILE_TABLE_MASK  (IORING_MAX_FILES_TABLE - 1)
101 #define IORING_MAX_FIXED_FILES  (64 * IORING_MAX_FILES_TABLE)
102
103 struct io_uring {
104         u32 head ____cacheline_aligned_in_smp;
105         u32 tail ____cacheline_aligned_in_smp;
106 };
107
108 /*
109  * This data is shared with the application through the mmap at offsets
110  * IORING_OFF_SQ_RING and IORING_OFF_CQ_RING.
111  *
112  * The offsets to the member fields are published through struct
113  * io_sqring_offsets when calling io_uring_setup.
114  */
115 struct io_rings {
116         /*
117          * Head and tail offsets into the ring; the offsets need to be
118          * masked to get valid indices.
119          *
120          * The kernel controls head of the sq ring and the tail of the cq ring,
121          * and the application controls tail of the sq ring and the head of the
122          * cq ring.
123          */
124         struct io_uring         sq, cq;
125         /*
126          * Bitmasks to apply to head and tail offsets (constant, equals
127          * ring_entries - 1)
128          */
129         u32                     sq_ring_mask, cq_ring_mask;
130         /* Ring sizes (constant, power of 2) */
131         u32                     sq_ring_entries, cq_ring_entries;
132         /*
133          * Number of invalid entries dropped by the kernel due to
134          * invalid index stored in array
135          *
136          * Written by the kernel, shouldn't be modified by the
137          * application (i.e. get number of "new events" by comparing to
138          * cached value).
139          *
140          * After a new SQ head value was read by the application this
141          * counter includes all submissions that were dropped reaching
142          * the new SQ head (and possibly more).
143          */
144         u32                     sq_dropped;
145         /*
146          * Runtime SQ flags
147          *
148          * Written by the kernel, shouldn't be modified by the
149          * application.
150          *
151          * The application needs a full memory barrier before checking
152          * for IORING_SQ_NEED_WAKEUP after updating the sq tail.
153          */
154         u32                     sq_flags;
155         /*
156          * Runtime CQ flags
157          *
158          * Written by the application, shouldn't be modified by the
159          * kernel.
160          */
161         u32                     cq_flags;
162         /*
163          * Number of completion events lost because the queue was full;
164          * this should be avoided by the application by making sure
165          * there are not more requests pending than there is space in
166          * the completion queue.
167          *
168          * Written by the kernel, shouldn't be modified by the
169          * application (i.e. get number of "new events" by comparing to
170          * cached value).
171          *
172          * As completion events come in out of order this counter is not
173          * ordered with any other data.
174          */
175         u32                     cq_overflow;
176         /*
177          * Ring buffer of completion events.
178          *
179          * The kernel writes completion events fresh every time they are
180          * produced, so the application is allowed to modify pending
181          * entries.
182          */
183         struct io_uring_cqe     cqes[] ____cacheline_aligned_in_smp;
184 };
185
186 struct io_mapped_ubuf {
187         u64             ubuf;
188         size_t          len;
189         struct          bio_vec *bvec;
190         unsigned int    nr_bvecs;
191 };
192
193 struct fixed_file_table {
194         struct file             **files;
195 };
196
197 struct fixed_file_ref_node {
198         struct percpu_ref               refs;
199         struct list_head                node;
200         struct list_head                file_list;
201         struct fixed_file_data          *file_data;
202         struct llist_node               llist;
203 };
204
205 struct fixed_file_data {
206         struct fixed_file_table         *table;
207         struct io_ring_ctx              *ctx;
208
209         struct percpu_ref               *cur_refs;
210         struct percpu_ref               refs;
211         struct completion               done;
212         struct list_head                ref_list;
213         spinlock_t                      lock;
214 };
215
216 struct io_buffer {
217         struct list_head list;
218         __u64 addr;
219         __s32 len;
220         __u16 bid;
221 };
222
223 struct io_ring_ctx {
224         struct {
225                 struct percpu_ref       refs;
226         } ____cacheline_aligned_in_smp;
227
228         struct {
229                 unsigned int            flags;
230                 unsigned int            compat: 1;
231                 unsigned int            limit_mem: 1;
232                 unsigned int            cq_overflow_flushed: 1;
233                 unsigned int            drain_next: 1;
234                 unsigned int            eventfd_async: 1;
235
236                 /*
237                  * Ring buffer of indices into array of io_uring_sqe, which is
238                  * mmapped by the application using the IORING_OFF_SQES offset.
239                  *
240                  * This indirection could e.g. be used to assign fixed
241                  * io_uring_sqe entries to operations and only submit them to
242                  * the queue when needed.
243                  *
244                  * The kernel modifies neither the indices array nor the entries
245                  * array.
246                  */
247                 u32                     *sq_array;
248                 unsigned                cached_sq_head;
249                 unsigned                sq_entries;
250                 unsigned                sq_mask;
251                 unsigned                sq_thread_idle;
252                 unsigned                cached_sq_dropped;
253                 atomic_t                cached_cq_overflow;
254                 unsigned long           sq_check_overflow;
255
256                 struct list_head        defer_list;
257                 struct list_head        timeout_list;
258                 struct list_head        cq_overflow_list;
259
260                 wait_queue_head_t       inflight_wait;
261                 struct io_uring_sqe     *sq_sqes;
262         } ____cacheline_aligned_in_smp;
263
264         struct io_rings *rings;
265
266         /* IO offload */
267         struct io_wq            *io_wq;
268         struct task_struct      *sqo_thread;    /* if using sq thread polling */
269
270         /*
271          * For SQPOLL usage - we hold a reference to the parent task, so we
272          * have access to the ->files
273          */
274         struct task_struct      *sqo_task;
275
276         /* Only used for accounting purposes */
277         struct mm_struct        *mm_account;
278
279         wait_queue_head_t       sqo_wait;
280
281         /*
282          * If used, fixed file set. Writers must ensure that ->refs is dead,
283          * readers must ensure that ->refs is alive as long as the file* is
284          * used. Only updated through io_uring_register(2).
285          */
286         struct fixed_file_data  *file_data;
287         unsigned                nr_user_files;
288
289         /* if used, fixed mapped user buffers */
290         unsigned                nr_user_bufs;
291         struct io_mapped_ubuf   *user_bufs;
292
293         struct user_struct      *user;
294
295         const struct cred       *creds;
296
297         struct completion       ref_comp;
298         struct completion       sq_thread_comp;
299
300         /* if all else fails... */
301         struct io_kiocb         *fallback_req;
302
303 #if defined(CONFIG_UNIX)
304         struct socket           *ring_sock;
305 #endif
306
307         struct idr              io_buffer_idr;
308
309         struct idr              personality_idr;
310
311         struct {
312                 unsigned                cached_cq_tail;
313                 unsigned                cq_entries;
314                 unsigned                cq_mask;
315                 atomic_t                cq_timeouts;
316                 unsigned long           cq_check_overflow;
317                 struct wait_queue_head  cq_wait;
318                 struct fasync_struct    *cq_fasync;
319                 struct eventfd_ctx      *cq_ev_fd;
320         } ____cacheline_aligned_in_smp;
321
322         struct {
323                 struct mutex            uring_lock;
324                 wait_queue_head_t       wait;
325         } ____cacheline_aligned_in_smp;
326
327         struct {
328                 spinlock_t              completion_lock;
329
330                 /*
331                  * ->iopoll_list is protected by the ctx->uring_lock for
332                  * io_uring instances that don't use IORING_SETUP_SQPOLL.
333                  * For SQPOLL, only the single threaded io_sq_thread() will
334                  * manipulate the list, hence no extra locking is needed there.
335                  */
336                 struct list_head        iopoll_list;
337                 struct hlist_head       *cancel_hash;
338                 unsigned                cancel_hash_bits;
339                 bool                    poll_multi_file;
340
341                 spinlock_t              inflight_lock;
342                 struct list_head        inflight_list;
343         } ____cacheline_aligned_in_smp;
344
345         struct delayed_work             file_put_work;
346         struct llist_head               file_put_llist;
347
348         struct work_struct              exit_work;
349 };
350
351 /*
352  * First field must be the file pointer in all the
353  * iocb unions! See also 'struct kiocb' in <linux/fs.h>
354  */
355 struct io_poll_iocb {
356         struct file                     *file;
357         union {
358                 struct wait_queue_head  *head;
359                 u64                     addr;
360         };
361         __poll_t                        events;
362         bool                            done;
363         bool                            canceled;
364         struct wait_queue_entry         wait;
365 };
366
367 struct io_close {
368         struct file                     *file;
369         struct file                     *put_file;
370         int                             fd;
371 };
372
373 struct io_timeout_data {
374         struct io_kiocb                 *req;
375         struct hrtimer                  timer;
376         struct timespec64               ts;
377         enum hrtimer_mode               mode;
378 };
379
380 struct io_accept {
381         struct file                     *file;
382         struct sockaddr __user          *addr;
383         int __user                      *addr_len;
384         int                             flags;
385         unsigned long                   nofile;
386 };
387
388 struct io_sync {
389         struct file                     *file;
390         loff_t                          len;
391         loff_t                          off;
392         int                             flags;
393         int                             mode;
394 };
395
396 struct io_cancel {
397         struct file                     *file;
398         u64                             addr;
399 };
400
401 struct io_timeout {
402         struct file                     *file;
403         u64                             addr;
404         int                             flags;
405         u32                             off;
406         u32                             target_seq;
407         struct list_head                list;
408 };
409
410 struct io_rw {
411         /* NOTE: kiocb has the file as the first member, so don't do it here */
412         struct kiocb                    kiocb;
413         u64                             addr;
414         u64                             len;
415 };
416
417 struct io_connect {
418         struct file                     *file;
419         struct sockaddr __user          *addr;
420         int                             addr_len;
421 };
422
423 struct io_sr_msg {
424         struct file                     *file;
425         union {
426                 struct user_msghdr __user *umsg;
427                 void __user             *buf;
428         };
429         int                             msg_flags;
430         int                             bgid;
431         size_t                          len;
432         struct io_buffer                *kbuf;
433 };
434
435 struct io_open {
436         struct file                     *file;
437         int                             dfd;
438         struct filename                 *filename;
439         struct open_how                 how;
440         unsigned long                   nofile;
441 };
442
443 struct io_files_update {
444         struct file                     *file;
445         u64                             arg;
446         u32                             nr_args;
447         u32                             offset;
448 };
449
450 struct io_fadvise {
451         struct file                     *file;
452         u64                             offset;
453         u32                             len;
454         u32                             advice;
455 };
456
457 struct io_madvise {
458         struct file                     *file;
459         u64                             addr;
460         u32                             len;
461         u32                             advice;
462 };
463
464 struct io_epoll {
465         struct file                     *file;
466         int                             epfd;
467         int                             op;
468         int                             fd;
469         struct epoll_event              event;
470 };
471
472 struct io_splice {
473         struct file                     *file_out;
474         struct file                     *file_in;
475         loff_t                          off_out;
476         loff_t                          off_in;
477         u64                             len;
478         unsigned int                    flags;
479 };
480
481 struct io_provide_buf {
482         struct file                     *file;
483         __u64                           addr;
484         __s32                           len;
485         __u32                           bgid;
486         __u16                           nbufs;
487         __u16                           bid;
488 };
489
490 struct io_statx {
491         struct file                     *file;
492         int                             dfd;
493         unsigned int                    mask;
494         unsigned int                    flags;
495         const char __user               *filename;
496         struct statx __user             *buffer;
497 };
498
499 struct io_completion {
500         struct file                     *file;
501         struct list_head                list;
502         int                             cflags;
503 };
504
505 struct io_async_connect {
506         struct sockaddr_storage         address;
507 };
508
509 struct io_async_msghdr {
510         struct iovec                    fast_iov[UIO_FASTIOV];
511         struct iovec                    *iov;
512         struct sockaddr __user          *uaddr;
513         struct msghdr                   msg;
514         struct sockaddr_storage         addr;
515 };
516
517 struct io_async_rw {
518         struct iovec                    fast_iov[UIO_FASTIOV];
519         const struct iovec              *free_iovec;
520         struct iov_iter                 iter;
521         size_t                          bytes_done;
522         struct wait_page_queue          wpq;
523 };
524
525 struct io_async_ctx {
526         union {
527                 struct io_async_rw      rw;
528                 struct io_async_msghdr  msg;
529                 struct io_async_connect connect;
530                 struct io_timeout_data  timeout;
531         };
532 };
533
534 enum {
535         REQ_F_FIXED_FILE_BIT    = IOSQE_FIXED_FILE_BIT,
536         REQ_F_IO_DRAIN_BIT      = IOSQE_IO_DRAIN_BIT,
537         REQ_F_LINK_BIT          = IOSQE_IO_LINK_BIT,
538         REQ_F_HARDLINK_BIT      = IOSQE_IO_HARDLINK_BIT,
539         REQ_F_FORCE_ASYNC_BIT   = IOSQE_ASYNC_BIT,
540         REQ_F_BUFFER_SELECT_BIT = IOSQE_BUFFER_SELECT_BIT,
541
542         REQ_F_LINK_HEAD_BIT,
543         REQ_F_FAIL_LINK_BIT,
544         REQ_F_INFLIGHT_BIT,
545         REQ_F_CUR_POS_BIT,
546         REQ_F_NOWAIT_BIT,
547         REQ_F_LINK_TIMEOUT_BIT,
548         REQ_F_ISREG_BIT,
549         REQ_F_COMP_LOCKED_BIT,
550         REQ_F_NEED_CLEANUP_BIT,
551         REQ_F_POLLED_BIT,
552         REQ_F_BUFFER_SELECTED_BIT,
553         REQ_F_NO_FILE_TABLE_BIT,
554         REQ_F_WORK_INITIALIZED_BIT,
555
556         /* not a real bit, just to check we're not overflowing the space */
557         __REQ_F_LAST_BIT,
558 };
559
560 enum {
561         /* ctx owns file */
562         REQ_F_FIXED_FILE        = BIT(REQ_F_FIXED_FILE_BIT),
563         /* drain existing IO first */
564         REQ_F_IO_DRAIN          = BIT(REQ_F_IO_DRAIN_BIT),
565         /* linked sqes */
566         REQ_F_LINK              = BIT(REQ_F_LINK_BIT),
567         /* doesn't sever on completion < 0 */
568         REQ_F_HARDLINK          = BIT(REQ_F_HARDLINK_BIT),
569         /* IOSQE_ASYNC */
570         REQ_F_FORCE_ASYNC       = BIT(REQ_F_FORCE_ASYNC_BIT),
571         /* IOSQE_BUFFER_SELECT */
572         REQ_F_BUFFER_SELECT     = BIT(REQ_F_BUFFER_SELECT_BIT),
573
574         /* head of a link */
575         REQ_F_LINK_HEAD         = BIT(REQ_F_LINK_HEAD_BIT),
576         /* fail rest of links */
577         REQ_F_FAIL_LINK         = BIT(REQ_F_FAIL_LINK_BIT),
578         /* on inflight list */
579         REQ_F_INFLIGHT          = BIT(REQ_F_INFLIGHT_BIT),
580         /* read/write uses file position */
581         REQ_F_CUR_POS           = BIT(REQ_F_CUR_POS_BIT),
582         /* must not punt to workers */
583         REQ_F_NOWAIT            = BIT(REQ_F_NOWAIT_BIT),
584         /* has linked timeout */
585         REQ_F_LINK_TIMEOUT      = BIT(REQ_F_LINK_TIMEOUT_BIT),
586         /* regular file */
587         REQ_F_ISREG             = BIT(REQ_F_ISREG_BIT),
588         /* completion under lock */
589         REQ_F_COMP_LOCKED       = BIT(REQ_F_COMP_LOCKED_BIT),
590         /* needs cleanup */
591         REQ_F_NEED_CLEANUP      = BIT(REQ_F_NEED_CLEANUP_BIT),
592         /* already went through poll handler */
593         REQ_F_POLLED            = BIT(REQ_F_POLLED_BIT),
594         /* buffer already selected */
595         REQ_F_BUFFER_SELECTED   = BIT(REQ_F_BUFFER_SELECTED_BIT),
596         /* doesn't need file table for this request */
597         REQ_F_NO_FILE_TABLE     = BIT(REQ_F_NO_FILE_TABLE_BIT),
598         /* io_wq_work is initialized */
599         REQ_F_WORK_INITIALIZED  = BIT(REQ_F_WORK_INITIALIZED_BIT),
600 };
601
602 struct async_poll {
603         struct io_poll_iocb     poll;
604         struct io_poll_iocb     *double_poll;
605 };
606
607 /*
608  * NOTE! Each of the iocb union members has the file pointer
609  * as the first entry in their struct definition. So you can
610  * access the file pointer through any of the sub-structs,
611  * or directly as just 'ki_filp' in this struct.
612  */
613 struct io_kiocb {
614         union {
615                 struct file             *file;
616                 struct io_rw            rw;
617                 struct io_poll_iocb     poll;
618                 struct io_accept        accept;
619                 struct io_sync          sync;
620                 struct io_cancel        cancel;
621                 struct io_timeout       timeout;
622                 struct io_connect       connect;
623                 struct io_sr_msg        sr_msg;
624                 struct io_open          open;
625                 struct io_close         close;
626                 struct io_files_update  files_update;
627                 struct io_fadvise       fadvise;
628                 struct io_madvise       madvise;
629                 struct io_epoll         epoll;
630                 struct io_splice        splice;
631                 struct io_provide_buf   pbuf;
632                 struct io_statx         statx;
633                 /* use only after cleaning per-op data, see io_clean_op() */
634                 struct io_completion    compl;
635         };
636
637         struct io_async_ctx             *io;
638         u8                              opcode;
639         /* polled IO has completed */
640         u8                              iopoll_completed;
641
642         u16                             buf_index;
643         u32                             result;
644
645         struct io_ring_ctx              *ctx;
646         unsigned int                    flags;
647         refcount_t                      refs;
648         struct task_struct              *task;
649         u64                             user_data;
650
651         struct list_head                link_list;
652
653         /*
654          * 1. used with ctx->iopoll_list with reads/writes
655          * 2. to track reqs with ->files (see io_op_def::file_table)
656          */
657         struct list_head                inflight_entry;
658
659         struct percpu_ref               *fixed_file_refs;
660         struct callback_head            task_work;
661         /* for polled requests, i.e. IORING_OP_POLL_ADD and async armed poll */
662         struct hlist_node               hash_node;
663         struct async_poll               *apoll;
664         struct io_wq_work               work;
665 };
666
667 struct io_defer_entry {
668         struct list_head        list;
669         struct io_kiocb         *req;
670         u32                     seq;
671 };
672
673 #define IO_IOPOLL_BATCH                 8
674
675 struct io_comp_state {
676         unsigned int            nr;
677         struct list_head        list;
678         struct io_ring_ctx      *ctx;
679 };
680
681 struct io_submit_state {
682         struct blk_plug         plug;
683
684         /*
685          * io_kiocb alloc cache
686          */
687         void                    *reqs[IO_IOPOLL_BATCH];
688         unsigned int            free_reqs;
689
690         /*
691          * Batch completion logic
692          */
693         struct io_comp_state    comp;
694
695         /*
696          * File reference cache
697          */
698         struct file             *file;
699         unsigned int            fd;
700         unsigned int            has_refs;
701         unsigned int            ios_left;
702 };
703
704 struct io_op_def {
705         /* needs req->io allocated for deferral/async */
706         unsigned                async_ctx : 1;
707         /* needs current->mm setup, does mm access */
708         unsigned                needs_mm : 1;
709         /* needs req->file assigned */
710         unsigned                needs_file : 1;
711         /* don't fail if file grab fails */
712         unsigned                needs_file_no_error : 1;
713         /* hash wq insertion if file is a regular file */
714         unsigned                hash_reg_file : 1;
715         /* unbound wq insertion if file is a non-regular file */
716         unsigned                unbound_nonreg_file : 1;
717         /* opcode is not supported by this kernel */
718         unsigned                not_supported : 1;
719         /* needs file table */
720         unsigned                file_table : 1;
721         /* needs ->fs */
722         unsigned                needs_fs : 1;
723         /* set if opcode supports polled "wait" */
724         unsigned                pollin : 1;
725         unsigned                pollout : 1;
726         /* op supports buffer selection */
727         unsigned                buffer_select : 1;
728         unsigned                needs_fsize : 1;
729 };
730
731 static const struct io_op_def io_op_defs[] = {
732         [IORING_OP_NOP] = {},
733         [IORING_OP_READV] = {
734                 .async_ctx              = 1,
735                 .needs_mm               = 1,
736                 .needs_file             = 1,
737                 .unbound_nonreg_file    = 1,
738                 .pollin                 = 1,
739                 .buffer_select          = 1,
740         },
741         [IORING_OP_WRITEV] = {
742                 .async_ctx              = 1,
743                 .needs_mm               = 1,
744                 .needs_file             = 1,
745                 .hash_reg_file          = 1,
746                 .unbound_nonreg_file    = 1,
747                 .pollout                = 1,
748                 .needs_fsize            = 1,
749         },
750         [IORING_OP_FSYNC] = {
751                 .needs_file             = 1,
752         },
753         [IORING_OP_READ_FIXED] = {
754                 .needs_file             = 1,
755                 .unbound_nonreg_file    = 1,
756                 .pollin                 = 1,
757         },
758         [IORING_OP_WRITE_FIXED] = {
759                 .needs_file             = 1,
760                 .hash_reg_file          = 1,
761                 .unbound_nonreg_file    = 1,
762                 .pollout                = 1,
763                 .needs_fsize            = 1,
764         },
765         [IORING_OP_POLL_ADD] = {
766                 .needs_file             = 1,
767                 .unbound_nonreg_file    = 1,
768         },
769         [IORING_OP_POLL_REMOVE] = {},
770         [IORING_OP_SYNC_FILE_RANGE] = {
771                 .needs_file             = 1,
772         },
773         [IORING_OP_SENDMSG] = {
774                 .async_ctx              = 1,
775                 .needs_mm               = 1,
776                 .needs_file             = 1,
777                 .unbound_nonreg_file    = 1,
778                 .needs_fs               = 1,
779                 .pollout                = 1,
780         },
781         [IORING_OP_RECVMSG] = {
782                 .async_ctx              = 1,
783                 .needs_mm               = 1,
784                 .needs_file             = 1,
785                 .unbound_nonreg_file    = 1,
786                 .needs_fs               = 1,
787                 .pollin                 = 1,
788                 .buffer_select          = 1,
789         },
790         [IORING_OP_TIMEOUT] = {
791                 .async_ctx              = 1,
792                 .needs_mm               = 1,
793         },
794         [IORING_OP_TIMEOUT_REMOVE] = {},
795         [IORING_OP_ACCEPT] = {
796                 .needs_mm               = 1,
797                 .needs_file             = 1,
798                 .unbound_nonreg_file    = 1,
799                 .file_table             = 1,
800                 .pollin                 = 1,
801         },
802         [IORING_OP_ASYNC_CANCEL] = {},
803         [IORING_OP_LINK_TIMEOUT] = {
804                 .async_ctx              = 1,
805                 .needs_mm               = 1,
806         },
807         [IORING_OP_CONNECT] = {
808                 .async_ctx              = 1,
809                 .needs_mm               = 1,
810                 .needs_file             = 1,
811                 .unbound_nonreg_file    = 1,
812                 .pollout                = 1,
813         },
814         [IORING_OP_FALLOCATE] = {
815                 .needs_file             = 1,
816                 .needs_fsize            = 1,
817         },
818         [IORING_OP_OPENAT] = {
819                 .file_table             = 1,
820                 .needs_fs               = 1,
821         },
822         [IORING_OP_CLOSE] = {
823                 .needs_file             = 1,
824                 .needs_file_no_error    = 1,
825                 .file_table             = 1,
826         },
827         [IORING_OP_FILES_UPDATE] = {
828                 .needs_mm               = 1,
829                 .file_table             = 1,
830         },
831         [IORING_OP_STATX] = {
832                 .needs_mm               = 1,
833                 .needs_fs               = 1,
834                 .file_table             = 1,
835         },
836         [IORING_OP_READ] = {
837                 .needs_mm               = 1,
838                 .needs_file             = 1,
839                 .unbound_nonreg_file    = 1,
840                 .pollin                 = 1,
841                 .buffer_select          = 1,
842         },
843         [IORING_OP_WRITE] = {
844                 .needs_mm               = 1,
845                 .needs_file             = 1,
846                 .unbound_nonreg_file    = 1,
847                 .pollout                = 1,
848                 .needs_fsize            = 1,
849         },
850         [IORING_OP_FADVISE] = {
851                 .needs_file             = 1,
852         },
853         [IORING_OP_MADVISE] = {
854                 .needs_mm               = 1,
855         },
856         [IORING_OP_SEND] = {
857                 .needs_mm               = 1,
858                 .needs_file             = 1,
859                 .unbound_nonreg_file    = 1,
860                 .pollout                = 1,
861         },
862         [IORING_OP_RECV] = {
863                 .needs_mm               = 1,
864                 .needs_file             = 1,
865                 .unbound_nonreg_file    = 1,
866                 .pollin                 = 1,
867                 .buffer_select          = 1,
868         },
869         [IORING_OP_OPENAT2] = {
870                 .file_table             = 1,
871                 .needs_fs               = 1,
872         },
873         [IORING_OP_EPOLL_CTL] = {
874                 .unbound_nonreg_file    = 1,
875                 .file_table             = 1,
876         },
877         [IORING_OP_SPLICE] = {
878                 .needs_file             = 1,
879                 .hash_reg_file          = 1,
880                 .unbound_nonreg_file    = 1,
881         },
882         [IORING_OP_PROVIDE_BUFFERS] = {},
883         [IORING_OP_REMOVE_BUFFERS] = {},
884         [IORING_OP_TEE] = {
885                 .needs_file             = 1,
886                 .hash_reg_file          = 1,
887                 .unbound_nonreg_file    = 1,
888         },
889 };
890
891 enum io_mem_account {
892         ACCT_LOCKED,
893         ACCT_PINNED,
894 };
895
896 static void __io_complete_rw(struct io_kiocb *req, long res, long res2,
897                              struct io_comp_state *cs);
898 static void io_cqring_fill_event(struct io_kiocb *req, long res);
899 static void io_put_req(struct io_kiocb *req);
900 static void io_double_put_req(struct io_kiocb *req);
901 static void __io_double_put_req(struct io_kiocb *req);
902 static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req);
903 static void __io_queue_linked_timeout(struct io_kiocb *req);
904 static void io_queue_linked_timeout(struct io_kiocb *req);
905 static int __io_sqe_files_update(struct io_ring_ctx *ctx,
906                                  struct io_uring_files_update *ip,
907                                  unsigned nr_args);
908 static int io_prep_work_files(struct io_kiocb *req);
909 static void __io_clean_op(struct io_kiocb *req);
910 static int io_file_get(struct io_submit_state *state, struct io_kiocb *req,
911                        int fd, struct file **out_file, bool fixed);
912 static void __io_queue_sqe(struct io_kiocb *req,
913                            const struct io_uring_sqe *sqe,
914                            struct io_comp_state *cs);
915 static void io_file_put_work(struct work_struct *work);
916
917 static ssize_t io_import_iovec(int rw, struct io_kiocb *req,
918                                struct iovec **iovec, struct iov_iter *iter,
919                                bool needs_lock);
920 static int io_setup_async_rw(struct io_kiocb *req, const struct iovec *iovec,
921                              const struct iovec *fast_iov,
922                              struct iov_iter *iter, bool force);
923
924 static struct kmem_cache *req_cachep;
925
926 static const struct file_operations io_uring_fops;
927
928 struct sock *io_uring_get_socket(struct file *file)
929 {
930 #if defined(CONFIG_UNIX)
931         if (file->f_op == &io_uring_fops) {
932                 struct io_ring_ctx *ctx = file->private_data;
933
934                 return ctx->ring_sock->sk;
935         }
936 #endif
937         return NULL;
938 }
939 EXPORT_SYMBOL(io_uring_get_socket);
940
941 static inline void io_clean_op(struct io_kiocb *req)
942 {
943         if (req->flags & (REQ_F_NEED_CLEANUP | REQ_F_BUFFER_SELECTED |
944                           REQ_F_INFLIGHT))
945                 __io_clean_op(req);
946 }
947
948 static void io_sq_thread_drop_mm(void)
949 {
950         struct mm_struct *mm = current->mm;
951
952         if (mm) {
953                 kthread_unuse_mm(mm);
954                 mmput(mm);
955         }
956 }
957
958 static int __io_sq_thread_acquire_mm(struct io_ring_ctx *ctx)
959 {
960         if (!current->mm) {
961                 if (unlikely(!(ctx->flags & IORING_SETUP_SQPOLL) ||
962                              !ctx->sqo_task->mm ||
963                              !mmget_not_zero(ctx->sqo_task->mm)))
964                         return -EFAULT;
965                 kthread_use_mm(ctx->sqo_task->mm);
966         }
967
968         return 0;
969 }
970
971 static int io_sq_thread_acquire_mm(struct io_ring_ctx *ctx,
972                                    struct io_kiocb *req)
973 {
974         if (!io_op_defs[req->opcode].needs_mm)
975                 return 0;
976         return __io_sq_thread_acquire_mm(ctx);
977 }
978
979 static inline void req_set_fail_links(struct io_kiocb *req)
980 {
981         if ((req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) == REQ_F_LINK)
982                 req->flags |= REQ_F_FAIL_LINK;
983 }
984
985 /*
986  * Note: must call io_req_init_async() for the first time you
987  * touch any members of io_wq_work.
988  */
989 static inline void io_req_init_async(struct io_kiocb *req)
990 {
991         if (req->flags & REQ_F_WORK_INITIALIZED)
992                 return;
993
994         memset(&req->work, 0, sizeof(req->work));
995         req->flags |= REQ_F_WORK_INITIALIZED;
996 }
997
998 static inline bool io_async_submit(struct io_ring_ctx *ctx)
999 {
1000         return ctx->flags & IORING_SETUP_SQPOLL;
1001 }
1002
1003 static void io_ring_ctx_ref_free(struct percpu_ref *ref)
1004 {
1005         struct io_ring_ctx *ctx = container_of(ref, struct io_ring_ctx, refs);
1006
1007         complete(&ctx->ref_comp);
1008 }
1009
1010 static inline bool io_is_timeout_noseq(struct io_kiocb *req)
1011 {
1012         return !req->timeout.off;
1013 }
1014
1015 static struct io_ring_ctx *io_ring_ctx_alloc(struct io_uring_params *p)
1016 {
1017         struct io_ring_ctx *ctx;
1018         int hash_bits;
1019
1020         ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
1021         if (!ctx)
1022                 return NULL;
1023
1024         ctx->fallback_req = kmem_cache_alloc(req_cachep, GFP_KERNEL);
1025         if (!ctx->fallback_req)
1026                 goto err;
1027
1028         /*
1029          * Use 5 bits less than the max cq entries, that should give us around
1030          * 32 entries per hash list if totally full and uniformly spread.
1031          */
1032         hash_bits = ilog2(p->cq_entries);
1033         hash_bits -= 5;
1034         if (hash_bits <= 0)
1035                 hash_bits = 1;
1036         ctx->cancel_hash_bits = hash_bits;
1037         ctx->cancel_hash = kmalloc((1U << hash_bits) * sizeof(struct hlist_head),
1038                                         GFP_KERNEL);
1039         if (!ctx->cancel_hash)
1040                 goto err;
1041         __hash_init(ctx->cancel_hash, 1U << hash_bits);
1042
1043         if (percpu_ref_init(&ctx->refs, io_ring_ctx_ref_free,
1044                             PERCPU_REF_ALLOW_REINIT, GFP_KERNEL))
1045                 goto err;
1046
1047         ctx->flags = p->flags;
1048         init_waitqueue_head(&ctx->sqo_wait);
1049         init_waitqueue_head(&ctx->cq_wait);
1050         INIT_LIST_HEAD(&ctx->cq_overflow_list);
1051         init_completion(&ctx->ref_comp);
1052         init_completion(&ctx->sq_thread_comp);
1053         idr_init(&ctx->io_buffer_idr);
1054         idr_init(&ctx->personality_idr);
1055         mutex_init(&ctx->uring_lock);
1056         init_waitqueue_head(&ctx->wait);
1057         spin_lock_init(&ctx->completion_lock);
1058         INIT_LIST_HEAD(&ctx->iopoll_list);
1059         INIT_LIST_HEAD(&ctx->defer_list);
1060         INIT_LIST_HEAD(&ctx->timeout_list);
1061         init_waitqueue_head(&ctx->inflight_wait);
1062         spin_lock_init(&ctx->inflight_lock);
1063         INIT_LIST_HEAD(&ctx->inflight_list);
1064         INIT_DELAYED_WORK(&ctx->file_put_work, io_file_put_work);
1065         init_llist_head(&ctx->file_put_llist);
1066         return ctx;
1067 err:
1068         if (ctx->fallback_req)
1069                 kmem_cache_free(req_cachep, ctx->fallback_req);
1070         kfree(ctx->cancel_hash);
1071         kfree(ctx);
1072         return NULL;
1073 }
1074
1075 static bool req_need_defer(struct io_kiocb *req, u32 seq)
1076 {
1077         if (unlikely(req->flags & REQ_F_IO_DRAIN)) {
1078                 struct io_ring_ctx *ctx = req->ctx;
1079
1080                 return seq != ctx->cached_cq_tail
1081                                 + atomic_read(&ctx->cached_cq_overflow);
1082         }
1083
1084         return false;
1085 }
1086
1087 static void __io_commit_cqring(struct io_ring_ctx *ctx)
1088 {
1089         struct io_rings *rings = ctx->rings;
1090
1091         /* order cqe stores with ring update */
1092         smp_store_release(&rings->cq.tail, ctx->cached_cq_tail);
1093
1094         if (wq_has_sleeper(&ctx->cq_wait)) {
1095                 wake_up_interruptible(&ctx->cq_wait);
1096                 kill_fasync(&ctx->cq_fasync, SIGIO, POLL_IN);
1097         }
1098 }
1099
1100 /*
1101  * Returns true if we need to defer file table putting. This can only happen
1102  * from the error path with REQ_F_COMP_LOCKED set.
1103  */
1104 static bool io_req_clean_work(struct io_kiocb *req)
1105 {
1106         if (!(req->flags & REQ_F_WORK_INITIALIZED))
1107                 return false;
1108
1109         req->flags &= ~REQ_F_WORK_INITIALIZED;
1110
1111         if (req->work.mm) {
1112                 mmdrop(req->work.mm);
1113                 req->work.mm = NULL;
1114         }
1115         if (req->work.creds) {
1116                 put_cred(req->work.creds);
1117                 req->work.creds = NULL;
1118         }
1119         if (req->work.fs) {
1120                 struct fs_struct *fs = req->work.fs;
1121
1122                 if (req->flags & REQ_F_COMP_LOCKED)
1123                         return true;
1124
1125                 spin_lock(&req->work.fs->lock);
1126                 if (--fs->users)
1127                         fs = NULL;
1128                 spin_unlock(&req->work.fs->lock);
1129                 if (fs)
1130                         free_fs_struct(fs);
1131                 req->work.fs = NULL;
1132         }
1133
1134         return false;
1135 }
1136
1137 static void io_prep_async_work(struct io_kiocb *req)
1138 {
1139         const struct io_op_def *def = &io_op_defs[req->opcode];
1140
1141         io_req_init_async(req);
1142
1143         if (req->flags & REQ_F_ISREG) {
1144                 if (def->hash_reg_file || (req->ctx->flags & IORING_SETUP_IOPOLL))
1145                         io_wq_hash_work(&req->work, file_inode(req->file));
1146         } else {
1147                 if (def->unbound_nonreg_file)
1148                         req->work.flags |= IO_WQ_WORK_UNBOUND;
1149         }
1150         if (!req->work.mm && def->needs_mm) {
1151                 mmgrab(current->mm);
1152                 req->work.mm = current->mm;
1153         }
1154         if (!req->work.creds)
1155                 req->work.creds = get_current_cred();
1156         if (!req->work.fs && def->needs_fs) {
1157                 spin_lock(&current->fs->lock);
1158                 if (!current->fs->in_exec) {
1159                         req->work.fs = current->fs;
1160                         req->work.fs->users++;
1161                 } else {
1162                         req->work.flags |= IO_WQ_WORK_CANCEL;
1163                 }
1164                 spin_unlock(&current->fs->lock);
1165         }
1166         if (def->needs_fsize)
1167                 req->work.fsize = rlimit(RLIMIT_FSIZE);
1168         else
1169                 req->work.fsize = RLIM_INFINITY;
1170 }
1171
1172 static void io_prep_async_link(struct io_kiocb *req)
1173 {
1174         struct io_kiocb *cur;
1175
1176         io_prep_async_work(req);
1177         if (req->flags & REQ_F_LINK_HEAD)
1178                 list_for_each_entry(cur, &req->link_list, link_list)
1179                         io_prep_async_work(cur);
1180 }
1181
1182 static struct io_kiocb *__io_queue_async_work(struct io_kiocb *req)
1183 {
1184         struct io_ring_ctx *ctx = req->ctx;
1185         struct io_kiocb *link = io_prep_linked_timeout(req);
1186
1187         trace_io_uring_queue_async_work(ctx, io_wq_is_hashed(&req->work), req,
1188                                         &req->work, req->flags);
1189         io_wq_enqueue(ctx->io_wq, &req->work);
1190         return link;
1191 }
1192
1193 static void io_queue_async_work(struct io_kiocb *req)
1194 {
1195         struct io_kiocb *link;
1196
1197         /* init ->work of the whole link before punting */
1198         io_prep_async_link(req);
1199         link = __io_queue_async_work(req);
1200
1201         if (link)
1202                 io_queue_linked_timeout(link);
1203 }
1204
1205 static void io_kill_timeout(struct io_kiocb *req)
1206 {
1207         int ret;
1208
1209         ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
1210         if (ret != -1) {
1211                 atomic_set(&req->ctx->cq_timeouts,
1212                         atomic_read(&req->ctx->cq_timeouts) + 1);
1213                 list_del_init(&req->timeout.list);
1214                 req->flags |= REQ_F_COMP_LOCKED;
1215                 io_cqring_fill_event(req, 0);
1216                 io_put_req(req);
1217         }
1218 }
1219
1220 static bool io_task_match(struct io_kiocb *req, struct task_struct *tsk)
1221 {
1222         struct io_ring_ctx *ctx = req->ctx;
1223
1224         if (!tsk || req->task == tsk)
1225                 return true;
1226         if ((ctx->flags & IORING_SETUP_SQPOLL) && req->task == ctx->sqo_thread)
1227                 return true;
1228         return false;
1229 }
1230
1231 /*
1232  * Returns true if we found and killed one or more timeouts
1233  */
1234 static bool io_kill_timeouts(struct io_ring_ctx *ctx, struct task_struct *tsk)
1235 {
1236         struct io_kiocb *req, *tmp;
1237         int canceled = 0;
1238
1239         spin_lock_irq(&ctx->completion_lock);
1240         list_for_each_entry_safe(req, tmp, &ctx->timeout_list, timeout.list) {
1241                 if (io_task_match(req, tsk)) {
1242                         io_kill_timeout(req);
1243                         canceled++;
1244                 }
1245         }
1246         spin_unlock_irq(&ctx->completion_lock);
1247         return canceled != 0;
1248 }
1249
1250 static void __io_queue_deferred(struct io_ring_ctx *ctx)
1251 {
1252         do {
1253                 struct io_defer_entry *de = list_first_entry(&ctx->defer_list,
1254                                                 struct io_defer_entry, list);
1255                 struct io_kiocb *link;
1256
1257                 if (req_need_defer(de->req, de->seq))
1258                         break;
1259                 list_del_init(&de->list);
1260                 /* punt-init is done before queueing for defer */
1261                 link = __io_queue_async_work(de->req);
1262                 if (link) {
1263                         __io_queue_linked_timeout(link);
1264                         /* drop submission reference */
1265                         link->flags |= REQ_F_COMP_LOCKED;
1266                         io_put_req(link);
1267                 }
1268                 kfree(de);
1269         } while (!list_empty(&ctx->defer_list));
1270 }
1271
1272 static void io_flush_timeouts(struct io_ring_ctx *ctx)
1273 {
1274         while (!list_empty(&ctx->timeout_list)) {
1275                 struct io_kiocb *req = list_first_entry(&ctx->timeout_list,
1276                                                 struct io_kiocb, timeout.list);
1277
1278                 if (io_is_timeout_noseq(req))
1279                         break;
1280                 if (req->timeout.target_seq != ctx->cached_cq_tail
1281                                         - atomic_read(&ctx->cq_timeouts))
1282                         break;
1283
1284                 list_del_init(&req->timeout.list);
1285                 io_kill_timeout(req);
1286         }
1287 }
1288
1289 static void io_commit_cqring(struct io_ring_ctx *ctx)
1290 {
1291         io_flush_timeouts(ctx);
1292         __io_commit_cqring(ctx);
1293
1294         if (unlikely(!list_empty(&ctx->defer_list)))
1295                 __io_queue_deferred(ctx);
1296 }
1297
1298 static struct io_uring_cqe *io_get_cqring(struct io_ring_ctx *ctx)
1299 {
1300         struct io_rings *rings = ctx->rings;
1301         unsigned tail;
1302
1303         tail = ctx->cached_cq_tail;
1304         /*
1305          * writes to the cq entry need to come after reading head; the
1306          * control dependency is enough as we're using WRITE_ONCE to
1307          * fill the cq entry
1308          */
1309         if (tail - READ_ONCE(rings->cq.head) == rings->cq_ring_entries)
1310                 return NULL;
1311
1312         ctx->cached_cq_tail++;
1313         return &rings->cqes[tail & ctx->cq_mask];
1314 }
1315
1316 static inline bool io_should_trigger_evfd(struct io_ring_ctx *ctx)
1317 {
1318         if (!ctx->cq_ev_fd)
1319                 return false;
1320         if (READ_ONCE(ctx->rings->cq_flags) & IORING_CQ_EVENTFD_DISABLED)
1321                 return false;
1322         if (!ctx->eventfd_async)
1323                 return true;
1324         return io_wq_current_is_worker();
1325 }
1326
1327 static void io_cqring_ev_posted(struct io_ring_ctx *ctx)
1328 {
1329         if (waitqueue_active(&ctx->wait))
1330                 wake_up(&ctx->wait);
1331         if (waitqueue_active(&ctx->sqo_wait))
1332                 wake_up(&ctx->sqo_wait);
1333         if (io_should_trigger_evfd(ctx))
1334                 eventfd_signal(ctx->cq_ev_fd, 1);
1335 }
1336
1337 static void io_cqring_mark_overflow(struct io_ring_ctx *ctx)
1338 {
1339         if (list_empty(&ctx->cq_overflow_list)) {
1340                 clear_bit(0, &ctx->sq_check_overflow);
1341                 clear_bit(0, &ctx->cq_check_overflow);
1342                 ctx->rings->sq_flags &= ~IORING_SQ_CQ_OVERFLOW;
1343         }
1344 }
1345
1346 static inline bool io_match_files(struct io_kiocb *req,
1347                                        struct files_struct *files)
1348 {
1349         if (!files)
1350                 return true;
1351         if (req->flags & REQ_F_WORK_INITIALIZED)
1352                 return req->work.files == files;
1353         return false;
1354 }
1355
1356 /* Returns true if there are no backlogged entries after the flush */
1357 static bool io_cqring_overflow_flush(struct io_ring_ctx *ctx, bool force,
1358                                      struct task_struct *tsk,
1359                                      struct files_struct *files)
1360 {
1361         struct io_rings *rings = ctx->rings;
1362         struct io_kiocb *req, *tmp;
1363         struct io_uring_cqe *cqe;
1364         unsigned long flags;
1365         LIST_HEAD(list);
1366
1367         if (!force) {
1368                 if (list_empty_careful(&ctx->cq_overflow_list))
1369                         return true;
1370                 if ((ctx->cached_cq_tail - READ_ONCE(rings->cq.head) ==
1371                     rings->cq_ring_entries))
1372                         return false;
1373         }
1374
1375         spin_lock_irqsave(&ctx->completion_lock, flags);
1376
1377         /* if force is set, the ring is going away. always drop after that */
1378         if (force)
1379                 ctx->cq_overflow_flushed = 1;
1380
1381         cqe = NULL;
1382         list_for_each_entry_safe(req, tmp, &ctx->cq_overflow_list, compl.list) {
1383                 if (tsk && req->task != tsk)
1384                         continue;
1385                 if (!io_match_files(req, files))
1386                         continue;
1387
1388                 cqe = io_get_cqring(ctx);
1389                 if (!cqe && !force)
1390                         break;
1391
1392                 list_move(&req->compl.list, &list);
1393                 if (cqe) {
1394                         WRITE_ONCE(cqe->user_data, req->user_data);
1395                         WRITE_ONCE(cqe->res, req->result);
1396                         WRITE_ONCE(cqe->flags, req->compl.cflags);
1397                 } else {
1398                         WRITE_ONCE(ctx->rings->cq_overflow,
1399                                 atomic_inc_return(&ctx->cached_cq_overflow));
1400                 }
1401         }
1402
1403         io_commit_cqring(ctx);
1404         io_cqring_mark_overflow(ctx);
1405
1406         spin_unlock_irqrestore(&ctx->completion_lock, flags);
1407         io_cqring_ev_posted(ctx);
1408
1409         while (!list_empty(&list)) {
1410                 req = list_first_entry(&list, struct io_kiocb, compl.list);
1411                 list_del(&req->compl.list);
1412                 io_put_req(req);
1413         }
1414
1415         return cqe != NULL;
1416 }
1417
1418 static void __io_cqring_fill_event(struct io_kiocb *req, long res, long cflags)
1419 {
1420         struct io_ring_ctx *ctx = req->ctx;
1421         struct io_uring_cqe *cqe;
1422
1423         trace_io_uring_complete(ctx, req->user_data, res);
1424
1425         /*
1426          * If we can't get a cq entry, userspace overflowed the
1427          * submission (by quite a lot). Increment the overflow count in
1428          * the ring.
1429          */
1430         cqe = io_get_cqring(ctx);
1431         if (likely(cqe)) {
1432                 WRITE_ONCE(cqe->user_data, req->user_data);
1433                 WRITE_ONCE(cqe->res, res);
1434                 WRITE_ONCE(cqe->flags, cflags);
1435         } else if (ctx->cq_overflow_flushed || req->task->io_uring->in_idle) {
1436                 /*
1437                  * If we're in ring overflow flush mode, or in task cancel mode,
1438                  * then we cannot store the request for later flushing, we need
1439                  * to drop it on the floor.
1440                  */
1441                 WRITE_ONCE(ctx->rings->cq_overflow,
1442                                 atomic_inc_return(&ctx->cached_cq_overflow));
1443         } else {
1444                 if (list_empty(&ctx->cq_overflow_list)) {
1445                         set_bit(0, &ctx->sq_check_overflow);
1446                         set_bit(0, &ctx->cq_check_overflow);
1447                         ctx->rings->sq_flags |= IORING_SQ_CQ_OVERFLOW;
1448                 }
1449                 io_clean_op(req);
1450                 req->result = res;
1451                 req->compl.cflags = cflags;
1452                 refcount_inc(&req->refs);
1453                 list_add_tail(&req->compl.list, &ctx->cq_overflow_list);
1454         }
1455 }
1456
1457 static void io_cqring_fill_event(struct io_kiocb *req, long res)
1458 {
1459         __io_cqring_fill_event(req, res, 0);
1460 }
1461
1462 static void io_cqring_add_event(struct io_kiocb *req, long res, long cflags)
1463 {
1464         struct io_ring_ctx *ctx = req->ctx;
1465         unsigned long flags;
1466
1467         spin_lock_irqsave(&ctx->completion_lock, flags);
1468         __io_cqring_fill_event(req, res, cflags);
1469         io_commit_cqring(ctx);
1470         spin_unlock_irqrestore(&ctx->completion_lock, flags);
1471
1472         io_cqring_ev_posted(ctx);
1473 }
1474
1475 static void io_submit_flush_completions(struct io_comp_state *cs)
1476 {
1477         struct io_ring_ctx *ctx = cs->ctx;
1478
1479         spin_lock_irq(&ctx->completion_lock);
1480         while (!list_empty(&cs->list)) {
1481                 struct io_kiocb *req;
1482
1483                 req = list_first_entry(&cs->list, struct io_kiocb, compl.list);
1484                 list_del(&req->compl.list);
1485                 __io_cqring_fill_event(req, req->result, req->compl.cflags);
1486                 if (!(req->flags & REQ_F_LINK_HEAD)) {
1487                         req->flags |= REQ_F_COMP_LOCKED;
1488                         io_put_req(req);
1489                 } else {
1490                         spin_unlock_irq(&ctx->completion_lock);
1491                         io_put_req(req);
1492                         spin_lock_irq(&ctx->completion_lock);
1493                 }
1494         }
1495         io_commit_cqring(ctx);
1496         spin_unlock_irq(&ctx->completion_lock);
1497
1498         io_cqring_ev_posted(ctx);
1499         cs->nr = 0;
1500 }
1501
1502 static void __io_req_complete(struct io_kiocb *req, long res, unsigned cflags,
1503                               struct io_comp_state *cs)
1504 {
1505         if (!cs) {
1506                 io_cqring_add_event(req, res, cflags);
1507                 io_put_req(req);
1508         } else {
1509                 io_clean_op(req);
1510                 req->result = res;
1511                 req->compl.cflags = cflags;
1512                 list_add_tail(&req->compl.list, &cs->list);
1513                 if (++cs->nr >= 32)
1514                         io_submit_flush_completions(cs);
1515         }
1516 }
1517
1518 static void io_req_complete(struct io_kiocb *req, long res)
1519 {
1520         __io_req_complete(req, res, 0, NULL);
1521 }
1522
1523 static inline bool io_is_fallback_req(struct io_kiocb *req)
1524 {
1525         return req == (struct io_kiocb *)
1526                         ((unsigned long) req->ctx->fallback_req & ~1UL);
1527 }
1528
1529 static struct io_kiocb *io_get_fallback_req(struct io_ring_ctx *ctx)
1530 {
1531         struct io_kiocb *req;
1532
1533         req = ctx->fallback_req;
1534         if (!test_and_set_bit_lock(0, (unsigned long *) &ctx->fallback_req))
1535                 return req;
1536
1537         return NULL;
1538 }
1539
1540 static struct io_kiocb *io_alloc_req(struct io_ring_ctx *ctx,
1541                                      struct io_submit_state *state)
1542 {
1543         gfp_t gfp = GFP_KERNEL | __GFP_NOWARN;
1544         struct io_kiocb *req;
1545
1546         if (!state->free_reqs) {
1547                 size_t sz;
1548                 int ret;
1549
1550                 sz = min_t(size_t, state->ios_left, ARRAY_SIZE(state->reqs));
1551                 ret = kmem_cache_alloc_bulk(req_cachep, gfp, sz, state->reqs);
1552
1553                 /*
1554                  * Bulk alloc is all-or-nothing. If we fail to get a batch,
1555                  * retry single alloc to be on the safe side.
1556                  */
1557                 if (unlikely(ret <= 0)) {
1558                         state->reqs[0] = kmem_cache_alloc(req_cachep, gfp);
1559                         if (!state->reqs[0])
1560                                 goto fallback;
1561                         ret = 1;
1562                 }
1563                 state->free_reqs = ret - 1;
1564                 req = state->reqs[ret - 1];
1565         } else {
1566                 state->free_reqs--;
1567                 req = state->reqs[state->free_reqs];
1568         }
1569
1570         return req;
1571 fallback:
1572         return io_get_fallback_req(ctx);
1573 }
1574
1575 static inline void io_put_file(struct io_kiocb *req, struct file *file,
1576                           bool fixed)
1577 {
1578         if (fixed)
1579                 percpu_ref_put(req->fixed_file_refs);
1580         else
1581                 fput(file);
1582 }
1583
1584 static bool io_dismantle_req(struct io_kiocb *req)
1585 {
1586         io_clean_op(req);
1587
1588         if (req->io)
1589                 kfree(req->io);
1590         if (req->file)
1591                 io_put_file(req, req->file, (req->flags & REQ_F_FIXED_FILE));
1592
1593         return io_req_clean_work(req);
1594 }
1595
1596 static void __io_free_req_finish(struct io_kiocb *req)
1597 {
1598         struct io_uring_task *tctx = req->task->io_uring;
1599         struct io_ring_ctx *ctx = req->ctx;
1600
1601         atomic_long_inc(&tctx->req_complete);
1602         if (tctx->in_idle)
1603                 wake_up(&tctx->wait);
1604         put_task_struct(req->task);
1605
1606         if (likely(!io_is_fallback_req(req)))
1607                 kmem_cache_free(req_cachep, req);
1608         else
1609                 clear_bit_unlock(0, (unsigned long *) &ctx->fallback_req);
1610         percpu_ref_put(&ctx->refs);
1611 }
1612
1613 static void io_req_task_file_table_put(struct callback_head *cb)
1614 {
1615         struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
1616         struct fs_struct *fs = req->work.fs;
1617
1618         spin_lock(&req->work.fs->lock);
1619         if (--fs->users)
1620                 fs = NULL;
1621         spin_unlock(&req->work.fs->lock);
1622         if (fs)
1623                 free_fs_struct(fs);
1624         req->work.fs = NULL;
1625         __io_free_req_finish(req);
1626 }
1627
1628 static void __io_free_req(struct io_kiocb *req)
1629 {
1630         if (!io_dismantle_req(req)) {
1631                 __io_free_req_finish(req);
1632         } else {
1633                 int ret;
1634
1635                 init_task_work(&req->task_work, io_req_task_file_table_put);
1636                 ret = task_work_add(req->task, &req->task_work, TWA_RESUME);
1637                 if (unlikely(ret)) {
1638                         struct task_struct *tsk;
1639
1640                         tsk = io_wq_get_task(req->ctx->io_wq);
1641                         task_work_add(tsk, &req->task_work, 0);
1642                 }
1643         }
1644 }
1645
1646 static bool io_link_cancel_timeout(struct io_kiocb *req)
1647 {
1648         struct io_ring_ctx *ctx = req->ctx;
1649         int ret;
1650
1651         ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
1652         if (ret != -1) {
1653                 io_cqring_fill_event(req, -ECANCELED);
1654                 io_commit_cqring(ctx);
1655                 req->flags &= ~REQ_F_LINK_HEAD;
1656                 io_put_req(req);
1657                 return true;
1658         }
1659
1660         return false;
1661 }
1662
1663 static bool __io_kill_linked_timeout(struct io_kiocb *req)
1664 {
1665         struct io_kiocb *link;
1666         bool wake_ev;
1667
1668         if (list_empty(&req->link_list))
1669                 return false;
1670         link = list_first_entry(&req->link_list, struct io_kiocb, link_list);
1671         if (link->opcode != IORING_OP_LINK_TIMEOUT)
1672                 return false;
1673
1674         list_del_init(&link->link_list);
1675         link->flags |= REQ_F_COMP_LOCKED;
1676         wake_ev = io_link_cancel_timeout(link);
1677         req->flags &= ~REQ_F_LINK_TIMEOUT;
1678         return wake_ev;
1679 }
1680
1681 static void io_kill_linked_timeout(struct io_kiocb *req)
1682 {
1683         struct io_ring_ctx *ctx = req->ctx;
1684         bool wake_ev;
1685
1686         if (!(req->flags & REQ_F_COMP_LOCKED)) {
1687                 unsigned long flags;
1688
1689                 spin_lock_irqsave(&ctx->completion_lock, flags);
1690                 wake_ev = __io_kill_linked_timeout(req);
1691                 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1692         } else {
1693                 wake_ev = __io_kill_linked_timeout(req);
1694         }
1695
1696         if (wake_ev)
1697                 io_cqring_ev_posted(ctx);
1698 }
1699
1700 static struct io_kiocb *io_req_link_next(struct io_kiocb *req)
1701 {
1702         struct io_kiocb *nxt;
1703
1704         /*
1705          * The list should never be empty when we are called here. But could
1706          * potentially happen if the chain is messed up, check to be on the
1707          * safe side.
1708          */
1709         if (unlikely(list_empty(&req->link_list)))
1710                 return NULL;
1711
1712         nxt = list_first_entry(&req->link_list, struct io_kiocb, link_list);
1713         list_del_init(&req->link_list);
1714         if (!list_empty(&nxt->link_list))
1715                 nxt->flags |= REQ_F_LINK_HEAD;
1716         return nxt;
1717 }
1718
1719 /*
1720  * Called if REQ_F_LINK_HEAD is set, and we fail the head request
1721  */
1722 static void __io_fail_links(struct io_kiocb *req)
1723 {
1724         struct io_ring_ctx *ctx = req->ctx;
1725
1726         while (!list_empty(&req->link_list)) {
1727                 struct io_kiocb *link = list_first_entry(&req->link_list,
1728                                                 struct io_kiocb, link_list);
1729
1730                 list_del_init(&link->link_list);
1731                 trace_io_uring_fail_link(req, link);
1732
1733                 io_cqring_fill_event(link, -ECANCELED);
1734                 link->flags |= REQ_F_COMP_LOCKED;
1735                 __io_double_put_req(link);
1736                 req->flags &= ~REQ_F_LINK_TIMEOUT;
1737         }
1738
1739         io_commit_cqring(ctx);
1740         io_cqring_ev_posted(ctx);
1741 }
1742
1743 static void io_fail_links(struct io_kiocb *req)
1744 {
1745         struct io_ring_ctx *ctx = req->ctx;
1746
1747         if (!(req->flags & REQ_F_COMP_LOCKED)) {
1748                 unsigned long flags;
1749
1750                 spin_lock_irqsave(&ctx->completion_lock, flags);
1751                 __io_fail_links(req);
1752                 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1753         } else {
1754                 __io_fail_links(req);
1755         }
1756
1757         io_cqring_ev_posted(ctx);
1758 }
1759
1760 static struct io_kiocb *__io_req_find_next(struct io_kiocb *req)
1761 {
1762         req->flags &= ~REQ_F_LINK_HEAD;
1763         if (req->flags & REQ_F_LINK_TIMEOUT)
1764                 io_kill_linked_timeout(req);
1765
1766         /*
1767          * If LINK is set, we have dependent requests in this chain. If we
1768          * didn't fail this request, queue the first one up, moving any other
1769          * dependencies to the next request. In case of failure, fail the rest
1770          * of the chain.
1771          */
1772         if (likely(!(req->flags & REQ_F_FAIL_LINK)))
1773                 return io_req_link_next(req);
1774         io_fail_links(req);
1775         return NULL;
1776 }
1777
1778 static struct io_kiocb *io_req_find_next(struct io_kiocb *req)
1779 {
1780         if (likely(!(req->flags & REQ_F_LINK_HEAD)))
1781                 return NULL;
1782         return __io_req_find_next(req);
1783 }
1784
1785 static int io_req_task_work_add(struct io_kiocb *req, struct callback_head *cb,
1786                                 bool twa_signal_ok)
1787 {
1788         struct task_struct *tsk = req->task;
1789         struct io_ring_ctx *ctx = req->ctx;
1790         int ret, notify;
1791
1792         if (tsk->flags & PF_EXITING)
1793                 return -ESRCH;
1794
1795         /*
1796          * SQPOLL kernel thread doesn't need notification, just a wakeup. For
1797          * all other cases, use TWA_SIGNAL unconditionally to ensure we're
1798          * processing task_work. There's no reliable way to tell if TWA_RESUME
1799          * will do the job.
1800          */
1801         notify = 0;
1802         if (!(ctx->flags & IORING_SETUP_SQPOLL) && twa_signal_ok)
1803                 notify = TWA_SIGNAL;
1804
1805         ret = task_work_add(tsk, cb, notify);
1806         if (!ret)
1807                 wake_up_process(tsk);
1808
1809         return ret;
1810 }
1811
1812 static void __io_req_task_cancel(struct io_kiocb *req, int error)
1813 {
1814         struct io_ring_ctx *ctx = req->ctx;
1815
1816         spin_lock_irq(&ctx->completion_lock);
1817         io_cqring_fill_event(req, error);
1818         io_commit_cqring(ctx);
1819         spin_unlock_irq(&ctx->completion_lock);
1820
1821         io_cqring_ev_posted(ctx);
1822         req_set_fail_links(req);
1823         io_double_put_req(req);
1824 }
1825
1826 static void io_req_task_cancel(struct callback_head *cb)
1827 {
1828         struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
1829         struct io_ring_ctx *ctx = req->ctx;
1830
1831         __io_req_task_cancel(req, -ECANCELED);
1832         percpu_ref_put(&ctx->refs);
1833 }
1834
1835 static void __io_req_task_submit(struct io_kiocb *req)
1836 {
1837         struct io_ring_ctx *ctx = req->ctx;
1838
1839         if (!__io_sq_thread_acquire_mm(ctx)) {
1840                 mutex_lock(&ctx->uring_lock);
1841                 __io_queue_sqe(req, NULL, NULL);
1842                 mutex_unlock(&ctx->uring_lock);
1843         } else {
1844                 __io_req_task_cancel(req, -EFAULT);
1845         }
1846 }
1847
1848 static void io_req_task_submit(struct callback_head *cb)
1849 {
1850         struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
1851         struct io_ring_ctx *ctx = req->ctx;
1852
1853         __io_req_task_submit(req);
1854         percpu_ref_put(&ctx->refs);
1855 }
1856
1857 static void io_req_task_queue(struct io_kiocb *req)
1858 {
1859         int ret;
1860
1861         init_task_work(&req->task_work, io_req_task_submit);
1862         percpu_ref_get(&req->ctx->refs);
1863
1864         ret = io_req_task_work_add(req, &req->task_work, true);
1865         if (unlikely(ret)) {
1866                 struct task_struct *tsk;
1867
1868                 init_task_work(&req->task_work, io_req_task_cancel);
1869                 tsk = io_wq_get_task(req->ctx->io_wq);
1870                 task_work_add(tsk, &req->task_work, 0);
1871                 wake_up_process(tsk);
1872         }
1873 }
1874
1875 static void io_queue_next(struct io_kiocb *req)
1876 {
1877         struct io_kiocb *nxt = io_req_find_next(req);
1878
1879         if (nxt)
1880                 io_req_task_queue(nxt);
1881 }
1882
1883 static void io_free_req(struct io_kiocb *req)
1884 {
1885         io_queue_next(req);
1886         __io_free_req(req);
1887 }
1888
1889 struct req_batch {
1890         void *reqs[IO_IOPOLL_BATCH];
1891         int to_free;
1892
1893         struct task_struct      *task;
1894         int                     task_refs;
1895 };
1896
1897 static inline void io_init_req_batch(struct req_batch *rb)
1898 {
1899         rb->to_free = 0;
1900         rb->task_refs = 0;
1901         rb->task = NULL;
1902 }
1903
1904 static void __io_req_free_batch_flush(struct io_ring_ctx *ctx,
1905                                       struct req_batch *rb)
1906 {
1907         kmem_cache_free_bulk(req_cachep, rb->to_free, rb->reqs);
1908         percpu_ref_put_many(&ctx->refs, rb->to_free);
1909         rb->to_free = 0;
1910 }
1911
1912 static void io_req_free_batch_finish(struct io_ring_ctx *ctx,
1913                                      struct req_batch *rb)
1914 {
1915         if (rb->to_free)
1916                 __io_req_free_batch_flush(ctx, rb);
1917         if (rb->task) {
1918                 atomic_long_add(rb->task_refs, &rb->task->io_uring->req_complete);
1919                 put_task_struct_many(rb->task, rb->task_refs);
1920                 rb->task = NULL;
1921         }
1922 }
1923
1924 static void io_req_free_batch(struct req_batch *rb, struct io_kiocb *req)
1925 {
1926         if (unlikely(io_is_fallback_req(req))) {
1927                 io_free_req(req);
1928                 return;
1929         }
1930         if (req->flags & REQ_F_LINK_HEAD)
1931                 io_queue_next(req);
1932
1933         if (req->task != rb->task) {
1934                 if (rb->task) {
1935                         atomic_long_add(rb->task_refs, &rb->task->io_uring->req_complete);
1936                         put_task_struct_many(rb->task, rb->task_refs);
1937                 }
1938                 rb->task = req->task;
1939                 rb->task_refs = 0;
1940         }
1941         rb->task_refs++;
1942
1943         WARN_ON_ONCE(io_dismantle_req(req));
1944         rb->reqs[rb->to_free++] = req;
1945         if (unlikely(rb->to_free == ARRAY_SIZE(rb->reqs)))
1946                 __io_req_free_batch_flush(req->ctx, rb);
1947 }
1948
1949 /*
1950  * Drop reference to request, return next in chain (if there is one) if this
1951  * was the last reference to this request.
1952  */
1953 static struct io_kiocb *io_put_req_find_next(struct io_kiocb *req)
1954 {
1955         struct io_kiocb *nxt = NULL;
1956
1957         if (refcount_dec_and_test(&req->refs)) {
1958                 nxt = io_req_find_next(req);
1959                 __io_free_req(req);
1960         }
1961         return nxt;
1962 }
1963
1964 static void io_put_req(struct io_kiocb *req)
1965 {
1966         if (refcount_dec_and_test(&req->refs))
1967                 io_free_req(req);
1968 }
1969
1970 static struct io_wq_work *io_steal_work(struct io_kiocb *req)
1971 {
1972         struct io_kiocb *nxt;
1973
1974         /*
1975          * A ref is owned by io-wq in which context we're. So, if that's the
1976          * last one, it's safe to steal next work. False negatives are Ok,
1977          * it just will be re-punted async in io_put_work()
1978          */
1979         if (refcount_read(&req->refs) != 1)
1980                 return NULL;
1981
1982         nxt = io_req_find_next(req);
1983         return nxt ? &nxt->work : NULL;
1984 }
1985
1986 /*
1987  * Must only be used if we don't need to care about links, usually from
1988  * within the completion handling itself.
1989  */
1990 static void __io_double_put_req(struct io_kiocb *req)
1991 {
1992         /* drop both submit and complete references */
1993         if (refcount_sub_and_test(2, &req->refs))
1994                 __io_free_req(req);
1995 }
1996
1997 static void io_double_put_req(struct io_kiocb *req)
1998 {
1999         /* drop both submit and complete references */
2000         if (refcount_sub_and_test(2, &req->refs))
2001                 io_free_req(req);
2002 }
2003
2004 static unsigned io_cqring_events(struct io_ring_ctx *ctx, bool noflush)
2005 {
2006         struct io_rings *rings = ctx->rings;
2007
2008         if (test_bit(0, &ctx->cq_check_overflow)) {
2009                 /*
2010                  * noflush == true is from the waitqueue handler, just ensure
2011                  * we wake up the task, and the next invocation will flush the
2012                  * entries. We cannot safely to it from here.
2013                  */
2014                 if (noflush && !list_empty(&ctx->cq_overflow_list))
2015                         return -1U;
2016
2017                 io_cqring_overflow_flush(ctx, false, NULL, NULL);
2018         }
2019
2020         /* See comment at the top of this file */
2021         smp_rmb();
2022         return ctx->cached_cq_tail - READ_ONCE(rings->cq.head);
2023 }
2024
2025 static inline unsigned int io_sqring_entries(struct io_ring_ctx *ctx)
2026 {
2027         struct io_rings *rings = ctx->rings;
2028
2029         /* make sure SQ entry isn't read before tail */
2030         return smp_load_acquire(&rings->sq.tail) - ctx->cached_sq_head;
2031 }
2032
2033 static unsigned int io_put_kbuf(struct io_kiocb *req, struct io_buffer *kbuf)
2034 {
2035         unsigned int cflags;
2036
2037         cflags = kbuf->bid << IORING_CQE_BUFFER_SHIFT;
2038         cflags |= IORING_CQE_F_BUFFER;
2039         req->flags &= ~REQ_F_BUFFER_SELECTED;
2040         kfree(kbuf);
2041         return cflags;
2042 }
2043
2044 static inline unsigned int io_put_rw_kbuf(struct io_kiocb *req)
2045 {
2046         struct io_buffer *kbuf;
2047
2048         kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
2049         return io_put_kbuf(req, kbuf);
2050 }
2051
2052 static inline bool io_run_task_work(void)
2053 {
2054         /*
2055          * Not safe to run on exiting task, and the task_work handling will
2056          * not add work to such a task.
2057          */
2058         if (unlikely(current->flags & PF_EXITING))
2059                 return false;
2060         if (current->task_works) {
2061                 __set_current_state(TASK_RUNNING);
2062                 task_work_run();
2063                 return true;
2064         }
2065
2066         return false;
2067 }
2068
2069 static void io_iopoll_queue(struct list_head *again)
2070 {
2071         struct io_kiocb *req;
2072
2073         do {
2074                 req = list_first_entry(again, struct io_kiocb, inflight_entry);
2075                 list_del(&req->inflight_entry);
2076                 __io_complete_rw(req, -EAGAIN, 0, NULL);
2077         } while (!list_empty(again));
2078 }
2079
2080 /*
2081  * Find and free completed poll iocbs
2082  */
2083 static void io_iopoll_complete(struct io_ring_ctx *ctx, unsigned int *nr_events,
2084                                struct list_head *done)
2085 {
2086         struct req_batch rb;
2087         struct io_kiocb *req;
2088         LIST_HEAD(again);
2089
2090         /* order with ->result store in io_complete_rw_iopoll() */
2091         smp_rmb();
2092
2093         io_init_req_batch(&rb);
2094         while (!list_empty(done)) {
2095                 int cflags = 0;
2096
2097                 req = list_first_entry(done, struct io_kiocb, inflight_entry);
2098                 if (READ_ONCE(req->result) == -EAGAIN) {
2099                         req->result = 0;
2100                         req->iopoll_completed = 0;
2101                         list_move_tail(&req->inflight_entry, &again);
2102                         continue;
2103                 }
2104                 list_del(&req->inflight_entry);
2105
2106                 if (req->flags & REQ_F_BUFFER_SELECTED)
2107                         cflags = io_put_rw_kbuf(req);
2108
2109                 __io_cqring_fill_event(req, req->result, cflags);
2110                 (*nr_events)++;
2111
2112                 if (refcount_dec_and_test(&req->refs))
2113                         io_req_free_batch(&rb, req);
2114         }
2115
2116         io_commit_cqring(ctx);
2117         if (ctx->flags & IORING_SETUP_SQPOLL)
2118                 io_cqring_ev_posted(ctx);
2119         io_req_free_batch_finish(ctx, &rb);
2120
2121         if (!list_empty(&again))
2122                 io_iopoll_queue(&again);
2123 }
2124
2125 static int io_do_iopoll(struct io_ring_ctx *ctx, unsigned int *nr_events,
2126                         long min)
2127 {
2128         struct io_kiocb *req, *tmp;
2129         LIST_HEAD(done);
2130         bool spin;
2131         int ret;
2132
2133         /*
2134          * Only spin for completions if we don't have multiple devices hanging
2135          * off our complete list, and we're under the requested amount.
2136          */
2137         spin = !ctx->poll_multi_file && *nr_events < min;
2138
2139         ret = 0;
2140         list_for_each_entry_safe(req, tmp, &ctx->iopoll_list, inflight_entry) {
2141                 struct kiocb *kiocb = &req->rw.kiocb;
2142
2143                 /*
2144                  * Move completed and retryable entries to our local lists.
2145                  * If we find a request that requires polling, break out
2146                  * and complete those lists first, if we have entries there.
2147                  */
2148                 if (READ_ONCE(req->iopoll_completed)) {
2149                         list_move_tail(&req->inflight_entry, &done);
2150                         continue;
2151                 }
2152                 if (!list_empty(&done))
2153                         break;
2154
2155                 ret = kiocb->ki_filp->f_op->iopoll(kiocb, spin);
2156                 if (ret < 0)
2157                         break;
2158
2159                 /* iopoll may have completed current req */
2160                 if (READ_ONCE(req->iopoll_completed))
2161                         list_move_tail(&req->inflight_entry, &done);
2162
2163                 if (ret && spin)
2164                         spin = false;
2165                 ret = 0;
2166         }
2167
2168         if (!list_empty(&done))
2169                 io_iopoll_complete(ctx, nr_events, &done);
2170
2171         return ret;
2172 }
2173
2174 /*
2175  * Poll for a minimum of 'min' events. Note that if min == 0 we consider that a
2176  * non-spinning poll check - we'll still enter the driver poll loop, but only
2177  * as a non-spinning completion check.
2178  */
2179 static int io_iopoll_getevents(struct io_ring_ctx *ctx, unsigned int *nr_events,
2180                                 long min)
2181 {
2182         while (!list_empty(&ctx->iopoll_list) && !need_resched()) {
2183                 int ret;
2184
2185                 ret = io_do_iopoll(ctx, nr_events, min);
2186                 if (ret < 0)
2187                         return ret;
2188                 if (*nr_events >= min)
2189                         return 0;
2190         }
2191
2192         return 1;
2193 }
2194
2195 /*
2196  * We can't just wait for polled events to come to us, we have to actively
2197  * find and complete them.
2198  */
2199 static void io_iopoll_try_reap_events(struct io_ring_ctx *ctx)
2200 {
2201         if (!(ctx->flags & IORING_SETUP_IOPOLL))
2202                 return;
2203
2204         mutex_lock(&ctx->uring_lock);
2205         while (!list_empty(&ctx->iopoll_list)) {
2206                 unsigned int nr_events = 0;
2207
2208                 io_do_iopoll(ctx, &nr_events, 0);
2209
2210                 /* let it sleep and repeat later if can't complete a request */
2211                 if (nr_events == 0)
2212                         break;
2213                 /*
2214                  * Ensure we allow local-to-the-cpu processing to take place,
2215                  * in this case we need to ensure that we reap all events.
2216                  * Also let task_work, etc. to progress by releasing the mutex
2217                  */
2218                 if (need_resched()) {
2219                         mutex_unlock(&ctx->uring_lock);
2220                         cond_resched();
2221                         mutex_lock(&ctx->uring_lock);
2222                 }
2223         }
2224         mutex_unlock(&ctx->uring_lock);
2225 }
2226
2227 static int io_iopoll_check(struct io_ring_ctx *ctx, long min)
2228 {
2229         unsigned int nr_events = 0;
2230         int iters = 0, ret = 0;
2231
2232         /*
2233          * We disallow the app entering submit/complete with polling, but we
2234          * still need to lock the ring to prevent racing with polled issue
2235          * that got punted to a workqueue.
2236          */
2237         mutex_lock(&ctx->uring_lock);
2238         do {
2239                 /*
2240                  * Don't enter poll loop if we already have events pending.
2241                  * If we do, we can potentially be spinning for commands that
2242                  * already triggered a CQE (eg in error).
2243                  */
2244                 if (io_cqring_events(ctx, false))
2245                         break;
2246
2247                 /*
2248                  * If a submit got punted to a workqueue, we can have the
2249                  * application entering polling for a command before it gets
2250                  * issued. That app will hold the uring_lock for the duration
2251                  * of the poll right here, so we need to take a breather every
2252                  * now and then to ensure that the issue has a chance to add
2253                  * the poll to the issued list. Otherwise we can spin here
2254                  * forever, while the workqueue is stuck trying to acquire the
2255                  * very same mutex.
2256                  */
2257                 if (!(++iters & 7)) {
2258                         mutex_unlock(&ctx->uring_lock);
2259                         io_run_task_work();
2260                         mutex_lock(&ctx->uring_lock);
2261                 }
2262
2263                 ret = io_iopoll_getevents(ctx, &nr_events, min);
2264                 if (ret <= 0)
2265                         break;
2266                 ret = 0;
2267         } while (min && !nr_events && !need_resched());
2268
2269         mutex_unlock(&ctx->uring_lock);
2270         return ret;
2271 }
2272
2273 static void kiocb_end_write(struct io_kiocb *req)
2274 {
2275         /*
2276          * Tell lockdep we inherited freeze protection from submission
2277          * thread.
2278          */
2279         if (req->flags & REQ_F_ISREG) {
2280                 struct inode *inode = file_inode(req->file);
2281
2282                 __sb_writers_acquired(inode->i_sb, SB_FREEZE_WRITE);
2283         }
2284         file_end_write(req->file);
2285 }
2286
2287 static void io_complete_rw_common(struct kiocb *kiocb, long res,
2288                                   struct io_comp_state *cs)
2289 {
2290         struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
2291         int cflags = 0;
2292
2293         if (kiocb->ki_flags & IOCB_WRITE)
2294                 kiocb_end_write(req);
2295
2296         if (res != req->result)
2297                 req_set_fail_links(req);
2298         if (req->flags & REQ_F_BUFFER_SELECTED)
2299                 cflags = io_put_rw_kbuf(req);
2300         __io_req_complete(req, res, cflags, cs);
2301 }
2302
2303 #ifdef CONFIG_BLOCK
2304 static bool io_resubmit_prep(struct io_kiocb *req, int error)
2305 {
2306         struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
2307         ssize_t ret = -ECANCELED;
2308         struct iov_iter iter;
2309         int rw;
2310
2311         if (error) {
2312                 ret = error;
2313                 goto end_req;
2314         }
2315
2316         switch (req->opcode) {
2317         case IORING_OP_READV:
2318         case IORING_OP_READ_FIXED:
2319         case IORING_OP_READ:
2320                 rw = READ;
2321                 break;
2322         case IORING_OP_WRITEV:
2323         case IORING_OP_WRITE_FIXED:
2324         case IORING_OP_WRITE:
2325                 rw = WRITE;
2326                 break;
2327         default:
2328                 printk_once(KERN_WARNING "io_uring: bad opcode in resubmit %d\n",
2329                                 req->opcode);
2330                 goto end_req;
2331         }
2332
2333         if (!req->io) {
2334                 ret = io_import_iovec(rw, req, &iovec, &iter, false);
2335                 if (ret < 0)
2336                         goto end_req;
2337                 ret = io_setup_async_rw(req, iovec, inline_vecs, &iter, false);
2338                 if (!ret)
2339                         return true;
2340                 kfree(iovec);
2341         } else {
2342                 return true;
2343         }
2344 end_req:
2345         req_set_fail_links(req);
2346         io_req_complete(req, ret);
2347         return false;
2348 }
2349 #endif
2350
2351 static bool io_rw_reissue(struct io_kiocb *req, long res)
2352 {
2353 #ifdef CONFIG_BLOCK
2354         umode_t mode = file_inode(req->file)->i_mode;
2355         int ret;
2356
2357         if (!S_ISBLK(mode) && !S_ISREG(mode))
2358                 return false;
2359         if ((res != -EAGAIN && res != -EOPNOTSUPP) || io_wq_current_is_worker())
2360                 return false;
2361
2362         ret = io_sq_thread_acquire_mm(req->ctx, req);
2363
2364         if (io_resubmit_prep(req, ret)) {
2365                 refcount_inc(&req->refs);
2366                 io_queue_async_work(req);
2367                 return true;
2368         }
2369
2370 #endif
2371         return false;
2372 }
2373
2374 static void __io_complete_rw(struct io_kiocb *req, long res, long res2,
2375                              struct io_comp_state *cs)
2376 {
2377         if (!io_rw_reissue(req, res))
2378                 io_complete_rw_common(&req->rw.kiocb, res, cs);
2379 }
2380
2381 static void io_complete_rw(struct kiocb *kiocb, long res, long res2)
2382 {
2383         struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
2384
2385         __io_complete_rw(req, res, res2, NULL);
2386 }
2387
2388 static void io_complete_rw_iopoll(struct kiocb *kiocb, long res, long res2)
2389 {
2390         struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
2391
2392         if (kiocb->ki_flags & IOCB_WRITE)
2393                 kiocb_end_write(req);
2394
2395         if (res != -EAGAIN && res != req->result)
2396                 req_set_fail_links(req);
2397
2398         WRITE_ONCE(req->result, res);
2399         /* order with io_poll_complete() checking ->result */
2400         smp_wmb();
2401         WRITE_ONCE(req->iopoll_completed, 1);
2402 }
2403
2404 /*
2405  * After the iocb has been issued, it's safe to be found on the poll list.
2406  * Adding the kiocb to the list AFTER submission ensures that we don't
2407  * find it from a io_iopoll_getevents() thread before the issuer is done
2408  * accessing the kiocb cookie.
2409  */
2410 static void io_iopoll_req_issued(struct io_kiocb *req)
2411 {
2412         struct io_ring_ctx *ctx = req->ctx;
2413
2414         /*
2415          * Track whether we have multiple files in our lists. This will impact
2416          * how we do polling eventually, not spinning if we're on potentially
2417          * different devices.
2418          */
2419         if (list_empty(&ctx->iopoll_list)) {
2420                 ctx->poll_multi_file = false;
2421         } else if (!ctx->poll_multi_file) {
2422                 struct io_kiocb *list_req;
2423
2424                 list_req = list_first_entry(&ctx->iopoll_list, struct io_kiocb,
2425                                                 inflight_entry);
2426                 if (list_req->file != req->file)
2427                         ctx->poll_multi_file = true;
2428         }
2429
2430         /*
2431          * For fast devices, IO may have already completed. If it has, add
2432          * it to the front so we find it first.
2433          */
2434         if (READ_ONCE(req->iopoll_completed))
2435                 list_add(&req->inflight_entry, &ctx->iopoll_list);
2436         else
2437                 list_add_tail(&req->inflight_entry, &ctx->iopoll_list);
2438
2439         if ((ctx->flags & IORING_SETUP_SQPOLL) &&
2440             wq_has_sleeper(&ctx->sqo_wait))
2441                 wake_up(&ctx->sqo_wait);
2442 }
2443
2444 static void __io_state_file_put(struct io_submit_state *state)
2445 {
2446         if (state->has_refs)
2447                 fput_many(state->file, state->has_refs);
2448         state->file = NULL;
2449 }
2450
2451 static inline void io_state_file_put(struct io_submit_state *state)
2452 {
2453         if (state->file)
2454                 __io_state_file_put(state);
2455 }
2456
2457 /*
2458  * Get as many references to a file as we have IOs left in this submission,
2459  * assuming most submissions are for one file, or at least that each file
2460  * has more than one submission.
2461  */
2462 static struct file *__io_file_get(struct io_submit_state *state, int fd)
2463 {
2464         if (!state)
2465                 return fget(fd);
2466
2467         if (state->file) {
2468                 if (state->fd == fd) {
2469                         state->has_refs--;
2470                         state->ios_left--;
2471                         return state->file;
2472                 }
2473                 __io_state_file_put(state);
2474         }
2475         state->file = fget_many(fd, state->ios_left);
2476         if (!state->file)
2477                 return NULL;
2478
2479         state->fd = fd;
2480         state->ios_left--;
2481         state->has_refs = state->ios_left;
2482         return state->file;
2483 }
2484
2485 static bool io_bdev_nowait(struct block_device *bdev)
2486 {
2487 #ifdef CONFIG_BLOCK
2488         return !bdev || queue_is_mq(bdev_get_queue(bdev));
2489 #else
2490         return true;
2491 #endif
2492 }
2493
2494 /*
2495  * If we tracked the file through the SCM inflight mechanism, we could support
2496  * any file. For now, just ensure that anything potentially problematic is done
2497  * inline.
2498  */
2499 static bool io_file_supports_async(struct file *file, int rw)
2500 {
2501         umode_t mode = file_inode(file)->i_mode;
2502
2503         if (S_ISBLK(mode)) {
2504                 if (io_bdev_nowait(file->f_inode->i_bdev))
2505                         return true;
2506                 return false;
2507         }
2508         if (S_ISCHR(mode) || S_ISSOCK(mode))
2509                 return true;
2510         if (S_ISREG(mode)) {
2511                 if (io_bdev_nowait(file->f_inode->i_sb->s_bdev) &&
2512                     file->f_op != &io_uring_fops)
2513                         return true;
2514                 return false;
2515         }
2516
2517         /* any ->read/write should understand O_NONBLOCK */
2518         if (file->f_flags & O_NONBLOCK)
2519                 return true;
2520
2521         if (!(file->f_mode & FMODE_NOWAIT))
2522                 return false;
2523
2524         if (rw == READ)
2525                 return file->f_op->read_iter != NULL;
2526
2527         return file->f_op->write_iter != NULL;
2528 }
2529
2530 static int io_prep_rw(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2531                       bool force_nonblock)
2532 {
2533         struct io_ring_ctx *ctx = req->ctx;
2534         struct kiocb *kiocb = &req->rw.kiocb;
2535         unsigned ioprio;
2536         int ret;
2537
2538         if (S_ISREG(file_inode(req->file)->i_mode))
2539                 req->flags |= REQ_F_ISREG;
2540
2541         kiocb->ki_pos = READ_ONCE(sqe->off);
2542         if (kiocb->ki_pos == -1 && !(req->file->f_mode & FMODE_STREAM)) {
2543                 req->flags |= REQ_F_CUR_POS;
2544                 kiocb->ki_pos = req->file->f_pos;
2545         }
2546         kiocb->ki_hint = ki_hint_validate(file_write_hint(kiocb->ki_filp));
2547         kiocb->ki_flags = iocb_flags(kiocb->ki_filp);
2548         ret = kiocb_set_rw_flags(kiocb, READ_ONCE(sqe->rw_flags));
2549         if (unlikely(ret))
2550                 return ret;
2551
2552         ioprio = READ_ONCE(sqe->ioprio);
2553         if (ioprio) {
2554                 ret = ioprio_check_cap(ioprio);
2555                 if (ret)
2556                         return ret;
2557
2558                 kiocb->ki_ioprio = ioprio;
2559         } else
2560                 kiocb->ki_ioprio = get_current_ioprio();
2561
2562         /* don't allow async punt if RWF_NOWAIT was requested */
2563         if (kiocb->ki_flags & IOCB_NOWAIT)
2564                 req->flags |= REQ_F_NOWAIT;
2565
2566         if (force_nonblock)
2567                 kiocb->ki_flags |= IOCB_NOWAIT;
2568
2569         if (ctx->flags & IORING_SETUP_IOPOLL) {
2570                 if (!(kiocb->ki_flags & IOCB_DIRECT) ||
2571                     !kiocb->ki_filp->f_op->iopoll)
2572                         return -EOPNOTSUPP;
2573
2574                 kiocb->ki_flags |= IOCB_HIPRI;
2575                 kiocb->ki_complete = io_complete_rw_iopoll;
2576                 req->iopoll_completed = 0;
2577         } else {
2578                 if (kiocb->ki_flags & IOCB_HIPRI)
2579                         return -EINVAL;
2580                 kiocb->ki_complete = io_complete_rw;
2581         }
2582
2583         req->rw.addr = READ_ONCE(sqe->addr);
2584         req->rw.len = READ_ONCE(sqe->len);
2585         req->buf_index = READ_ONCE(sqe->buf_index);
2586         return 0;
2587 }
2588
2589 static inline void io_rw_done(struct kiocb *kiocb, ssize_t ret)
2590 {
2591         switch (ret) {
2592         case -EIOCBQUEUED:
2593                 break;
2594         case -ERESTARTSYS:
2595         case -ERESTARTNOINTR:
2596         case -ERESTARTNOHAND:
2597         case -ERESTART_RESTARTBLOCK:
2598                 /*
2599                  * We can't just restart the syscall, since previously
2600                  * submitted sqes may already be in progress. Just fail this
2601                  * IO with EINTR.
2602                  */
2603                 ret = -EINTR;
2604                 fallthrough;
2605         default:
2606                 kiocb->ki_complete(kiocb, ret, 0);
2607         }
2608 }
2609
2610 static void kiocb_done(struct kiocb *kiocb, ssize_t ret,
2611                        struct io_comp_state *cs)
2612 {
2613         struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
2614
2615         /* add previously done IO, if any */
2616         if (req->io && req->io->rw.bytes_done > 0) {
2617                 if (ret < 0)
2618                         ret = req->io->rw.bytes_done;
2619                 else
2620                         ret += req->io->rw.bytes_done;
2621         }
2622
2623         if (req->flags & REQ_F_CUR_POS)
2624                 req->file->f_pos = kiocb->ki_pos;
2625         if (ret >= 0 && kiocb->ki_complete == io_complete_rw)
2626                 __io_complete_rw(req, ret, 0, cs);
2627         else
2628                 io_rw_done(kiocb, ret);
2629 }
2630
2631 static ssize_t io_import_fixed(struct io_kiocb *req, int rw,
2632                                struct iov_iter *iter)
2633 {
2634         struct io_ring_ctx *ctx = req->ctx;
2635         size_t len = req->rw.len;
2636         struct io_mapped_ubuf *imu;
2637         u16 index, buf_index;
2638         size_t offset;
2639         u64 buf_addr;
2640
2641         /* attempt to use fixed buffers without having provided iovecs */
2642         if (unlikely(!ctx->user_bufs))
2643                 return -EFAULT;
2644
2645         buf_index = req->buf_index;
2646         if (unlikely(buf_index >= ctx->nr_user_bufs))
2647                 return -EFAULT;
2648
2649         index = array_index_nospec(buf_index, ctx->nr_user_bufs);
2650         imu = &ctx->user_bufs[index];
2651         buf_addr = req->rw.addr;
2652
2653         /* overflow */
2654         if (buf_addr + len < buf_addr)
2655                 return -EFAULT;
2656         /* not inside the mapped region */
2657         if (buf_addr < imu->ubuf || buf_addr + len > imu->ubuf + imu->len)
2658                 return -EFAULT;
2659
2660         /*
2661          * May not be a start of buffer, set size appropriately
2662          * and advance us to the beginning.
2663          */
2664         offset = buf_addr - imu->ubuf;
2665         iov_iter_bvec(iter, rw, imu->bvec, imu->nr_bvecs, offset + len);
2666
2667         if (offset) {
2668                 /*
2669                  * Don't use iov_iter_advance() here, as it's really slow for
2670                  * using the latter parts of a big fixed buffer - it iterates
2671                  * over each segment manually. We can cheat a bit here, because
2672                  * we know that:
2673                  *
2674                  * 1) it's a BVEC iter, we set it up
2675                  * 2) all bvecs are PAGE_SIZE in size, except potentially the
2676                  *    first and last bvec
2677                  *
2678                  * So just find our index, and adjust the iterator afterwards.
2679                  * If the offset is within the first bvec (or the whole first
2680                  * bvec, just use iov_iter_advance(). This makes it easier
2681                  * since we can just skip the first segment, which may not
2682                  * be PAGE_SIZE aligned.
2683                  */
2684                 const struct bio_vec *bvec = imu->bvec;
2685
2686                 if (offset <= bvec->bv_len) {
2687                         iov_iter_advance(iter, offset);
2688                 } else {
2689                         unsigned long seg_skip;
2690
2691                         /* skip first vec */
2692                         offset -= bvec->bv_len;
2693                         seg_skip = 1 + (offset >> PAGE_SHIFT);
2694
2695                         iter->bvec = bvec + seg_skip;
2696                         iter->nr_segs -= seg_skip;
2697                         iter->count -= bvec->bv_len + offset;
2698                         iter->iov_offset = offset & ~PAGE_MASK;
2699                 }
2700         }
2701
2702         return len;
2703 }
2704
2705 static void io_ring_submit_unlock(struct io_ring_ctx *ctx, bool needs_lock)
2706 {
2707         if (needs_lock)
2708                 mutex_unlock(&ctx->uring_lock);
2709 }
2710
2711 static void io_ring_submit_lock(struct io_ring_ctx *ctx, bool needs_lock)
2712 {
2713         /*
2714          * "Normal" inline submissions always hold the uring_lock, since we
2715          * grab it from the system call. Same is true for the SQPOLL offload.
2716          * The only exception is when we've detached the request and issue it
2717          * from an async worker thread, grab the lock for that case.
2718          */
2719         if (needs_lock)
2720                 mutex_lock(&ctx->uring_lock);
2721 }
2722
2723 static struct io_buffer *io_buffer_select(struct io_kiocb *req, size_t *len,
2724                                           int bgid, struct io_buffer *kbuf,
2725                                           bool needs_lock)
2726 {
2727         struct io_buffer *head;
2728
2729         if (req->flags & REQ_F_BUFFER_SELECTED)
2730                 return kbuf;
2731
2732         io_ring_submit_lock(req->ctx, needs_lock);
2733
2734         lockdep_assert_held(&req->ctx->uring_lock);
2735
2736         head = idr_find(&req->ctx->io_buffer_idr, bgid);
2737         if (head) {
2738                 if (!list_empty(&head->list)) {
2739                         kbuf = list_last_entry(&head->list, struct io_buffer,
2740                                                         list);
2741                         list_del(&kbuf->list);
2742                 } else {
2743                         kbuf = head;
2744                         idr_remove(&req->ctx->io_buffer_idr, bgid);
2745                 }
2746                 if (*len > kbuf->len)
2747                         *len = kbuf->len;
2748         } else {
2749                 kbuf = ERR_PTR(-ENOBUFS);
2750         }
2751
2752         io_ring_submit_unlock(req->ctx, needs_lock);
2753
2754         return kbuf;
2755 }
2756
2757 static void __user *io_rw_buffer_select(struct io_kiocb *req, size_t *len,
2758                                         bool needs_lock)
2759 {
2760         struct io_buffer *kbuf;
2761         u16 bgid;
2762
2763         kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
2764         bgid = req->buf_index;
2765         kbuf = io_buffer_select(req, len, bgid, kbuf, needs_lock);
2766         if (IS_ERR(kbuf))
2767                 return kbuf;
2768         req->rw.addr = (u64) (unsigned long) kbuf;
2769         req->flags |= REQ_F_BUFFER_SELECTED;
2770         return u64_to_user_ptr(kbuf->addr);
2771 }
2772
2773 #ifdef CONFIG_COMPAT
2774 static ssize_t io_compat_import(struct io_kiocb *req, struct iovec *iov,
2775                                 bool needs_lock)
2776 {
2777         struct compat_iovec __user *uiov;
2778         compat_ssize_t clen;
2779         void __user *buf;
2780         ssize_t len;
2781
2782         uiov = u64_to_user_ptr(req->rw.addr);
2783         if (!access_ok(uiov, sizeof(*uiov)))
2784                 return -EFAULT;
2785         if (__get_user(clen, &uiov->iov_len))
2786                 return -EFAULT;
2787         if (clen < 0)
2788                 return -EINVAL;
2789
2790         len = clen;
2791         buf = io_rw_buffer_select(req, &len, needs_lock);
2792         if (IS_ERR(buf))
2793                 return PTR_ERR(buf);
2794         iov[0].iov_base = buf;
2795         iov[0].iov_len = (compat_size_t) len;
2796         return 0;
2797 }
2798 #endif
2799
2800 static ssize_t __io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
2801                                       bool needs_lock)
2802 {
2803         struct iovec __user *uiov = u64_to_user_ptr(req->rw.addr);
2804         void __user *buf;
2805         ssize_t len;
2806
2807         if (copy_from_user(iov, uiov, sizeof(*uiov)))
2808                 return -EFAULT;
2809
2810         len = iov[0].iov_len;
2811         if (len < 0)
2812                 return -EINVAL;
2813         buf = io_rw_buffer_select(req, &len, needs_lock);
2814         if (IS_ERR(buf))
2815                 return PTR_ERR(buf);
2816         iov[0].iov_base = buf;
2817         iov[0].iov_len = len;
2818         return 0;
2819 }
2820
2821 static ssize_t io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
2822                                     bool needs_lock)
2823 {
2824         if (req->flags & REQ_F_BUFFER_SELECTED) {
2825                 struct io_buffer *kbuf;
2826
2827                 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
2828                 iov[0].iov_base = u64_to_user_ptr(kbuf->addr);
2829                 iov[0].iov_len = kbuf->len;
2830                 return 0;
2831         }
2832         if (!req->rw.len)
2833                 return 0;
2834         else if (req->rw.len > 1)
2835                 return -EINVAL;
2836
2837 #ifdef CONFIG_COMPAT
2838         if (req->ctx->compat)
2839                 return io_compat_import(req, iov, needs_lock);
2840 #endif
2841
2842         return __io_iov_buffer_select(req, iov, needs_lock);
2843 }
2844
2845 static ssize_t __io_import_iovec(int rw, struct io_kiocb *req,
2846                                  struct iovec **iovec, struct iov_iter *iter,
2847                                  bool needs_lock)
2848 {
2849         void __user *buf = u64_to_user_ptr(req->rw.addr);
2850         size_t sqe_len = req->rw.len;
2851         ssize_t ret;
2852         u8 opcode;
2853
2854         opcode = req->opcode;
2855         if (opcode == IORING_OP_READ_FIXED || opcode == IORING_OP_WRITE_FIXED) {
2856                 *iovec = NULL;
2857                 return io_import_fixed(req, rw, iter);
2858         }
2859
2860         /* buffer index only valid with fixed read/write, or buffer select  */
2861         if (req->buf_index && !(req->flags & REQ_F_BUFFER_SELECT))
2862                 return -EINVAL;
2863
2864         if (opcode == IORING_OP_READ || opcode == IORING_OP_WRITE) {
2865                 if (req->flags & REQ_F_BUFFER_SELECT) {
2866                         buf = io_rw_buffer_select(req, &sqe_len, needs_lock);
2867                         if (IS_ERR(buf))
2868                                 return PTR_ERR(buf);
2869                         req->rw.len = sqe_len;
2870                 }
2871
2872                 ret = import_single_range(rw, buf, sqe_len, *iovec, iter);
2873                 *iovec = NULL;
2874                 return ret < 0 ? ret : sqe_len;
2875         }
2876
2877         if (req->flags & REQ_F_BUFFER_SELECT) {
2878                 ret = io_iov_buffer_select(req, *iovec, needs_lock);
2879                 if (!ret) {
2880                         ret = (*iovec)->iov_len;
2881                         iov_iter_init(iter, rw, *iovec, 1, ret);
2882                 }
2883                 *iovec = NULL;
2884                 return ret;
2885         }
2886
2887 #ifdef CONFIG_COMPAT
2888         if (req->ctx->compat)
2889                 return compat_import_iovec(rw, buf, sqe_len, UIO_FASTIOV,
2890                                                 iovec, iter);
2891 #endif
2892
2893         return import_iovec(rw, buf, sqe_len, UIO_FASTIOV, iovec, iter);
2894 }
2895
2896 static ssize_t io_import_iovec(int rw, struct io_kiocb *req,
2897                                struct iovec **iovec, struct iov_iter *iter,
2898                                bool needs_lock)
2899 {
2900         if (!req->io)
2901                 return __io_import_iovec(rw, req, iovec, iter, needs_lock);
2902         *iovec = NULL;
2903         return iov_iter_count(&req->io->rw.iter);
2904 }
2905
2906 static inline loff_t *io_kiocb_ppos(struct kiocb *kiocb)
2907 {
2908         return kiocb->ki_filp->f_mode & FMODE_STREAM ? NULL : &kiocb->ki_pos;
2909 }
2910
2911 /*
2912  * For files that don't have ->read_iter() and ->write_iter(), handle them
2913  * by looping over ->read() or ->write() manually.
2914  */
2915 static ssize_t loop_rw_iter(int rw, struct file *file, struct kiocb *kiocb,
2916                            struct iov_iter *iter)
2917 {
2918         ssize_t ret = 0;
2919
2920         /*
2921          * Don't support polled IO through this interface, and we can't
2922          * support non-blocking either. For the latter, this just causes
2923          * the kiocb to be handled from an async context.
2924          */
2925         if (kiocb->ki_flags & IOCB_HIPRI)
2926                 return -EOPNOTSUPP;
2927         if (kiocb->ki_flags & IOCB_NOWAIT)
2928                 return -EAGAIN;
2929
2930         while (iov_iter_count(iter)) {
2931                 struct iovec iovec;
2932                 ssize_t nr;
2933
2934                 if (!iov_iter_is_bvec(iter)) {
2935                         iovec = iov_iter_iovec(iter);
2936                 } else {
2937                         /* fixed buffers import bvec */
2938                         iovec.iov_base = kmap(iter->bvec->bv_page)
2939                                                 + iter->iov_offset;
2940                         iovec.iov_len = min(iter->count,
2941                                         iter->bvec->bv_len - iter->iov_offset);
2942                 }
2943
2944                 if (rw == READ) {
2945                         nr = file->f_op->read(file, iovec.iov_base,
2946                                               iovec.iov_len, io_kiocb_ppos(kiocb));
2947                 } else {
2948                         nr = file->f_op->write(file, iovec.iov_base,
2949                                                iovec.iov_len, io_kiocb_ppos(kiocb));
2950                 }
2951
2952                 if (iov_iter_is_bvec(iter))
2953                         kunmap(iter->bvec->bv_page);
2954
2955                 if (nr < 0) {
2956                         if (!ret)
2957                                 ret = nr;
2958                         break;
2959                 }
2960                 ret += nr;
2961                 if (nr != iovec.iov_len)
2962                         break;
2963                 iov_iter_advance(iter, nr);
2964         }
2965
2966         return ret;
2967 }
2968
2969 static void io_req_map_rw(struct io_kiocb *req, const struct iovec *iovec,
2970                           const struct iovec *fast_iov, struct iov_iter *iter)
2971 {
2972         struct io_async_rw *rw = &req->io->rw;
2973
2974         memcpy(&rw->iter, iter, sizeof(*iter));
2975         rw->free_iovec = NULL;
2976         rw->bytes_done = 0;
2977         /* can only be fixed buffers, no need to do anything */
2978         if (iter->type == ITER_BVEC)
2979                 return;
2980         if (!iovec) {
2981                 unsigned iov_off = 0;
2982
2983                 rw->iter.iov = rw->fast_iov;
2984                 if (iter->iov != fast_iov) {
2985                         iov_off = iter->iov - fast_iov;
2986                         rw->iter.iov += iov_off;
2987                 }
2988                 if (rw->fast_iov != fast_iov)
2989                         memcpy(rw->fast_iov + iov_off, fast_iov + iov_off,
2990                                sizeof(struct iovec) * iter->nr_segs);
2991         } else {
2992                 rw->free_iovec = iovec;
2993                 req->flags |= REQ_F_NEED_CLEANUP;
2994         }
2995 }
2996
2997 static inline int __io_alloc_async_ctx(struct io_kiocb *req)
2998 {
2999         req->io = kmalloc(sizeof(*req->io), GFP_KERNEL);
3000         return req->io == NULL;
3001 }
3002
3003 static int io_alloc_async_ctx(struct io_kiocb *req)
3004 {
3005         if (!io_op_defs[req->opcode].async_ctx)
3006                 return 0;
3007
3008         return  __io_alloc_async_ctx(req);
3009 }
3010
3011 static int io_setup_async_rw(struct io_kiocb *req, const struct iovec *iovec,
3012                              const struct iovec *fast_iov,
3013                              struct iov_iter *iter, bool force)
3014 {
3015         if (!force && !io_op_defs[req->opcode].async_ctx)
3016                 return 0;
3017         if (!req->io) {
3018                 if (__io_alloc_async_ctx(req))
3019                         return -ENOMEM;
3020
3021                 io_req_map_rw(req, iovec, fast_iov, iter);
3022         }
3023         return 0;
3024 }
3025
3026 static inline int io_rw_prep_async(struct io_kiocb *req, int rw,
3027                                    bool force_nonblock)
3028 {
3029         struct io_async_rw *iorw = &req->io->rw;
3030         struct iovec *iov;
3031         ssize_t ret;
3032
3033         iorw->iter.iov = iov = iorw->fast_iov;
3034         ret = __io_import_iovec(rw, req, &iov, &iorw->iter, !force_nonblock);
3035         if (unlikely(ret < 0))
3036                 return ret;
3037
3038         iorw->iter.iov = iov;
3039         io_req_map_rw(req, iorw->iter.iov, iorw->fast_iov, &iorw->iter);
3040         return 0;
3041 }
3042
3043 static int io_read_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
3044                         bool force_nonblock)
3045 {
3046         ssize_t ret;
3047
3048         ret = io_prep_rw(req, sqe, force_nonblock);
3049         if (ret)
3050                 return ret;
3051
3052         if (unlikely(!(req->file->f_mode & FMODE_READ)))
3053                 return -EBADF;
3054
3055         /* either don't need iovec imported or already have it */
3056         if (!req->io || req->flags & REQ_F_NEED_CLEANUP)
3057                 return 0;
3058         return io_rw_prep_async(req, READ, force_nonblock);
3059 }
3060
3061 /*
3062  * This is our waitqueue callback handler, registered through lock_page_async()
3063  * when we initially tried to do the IO with the iocb armed our waitqueue.
3064  * This gets called when the page is unlocked, and we generally expect that to
3065  * happen when the page IO is completed and the page is now uptodate. This will
3066  * queue a task_work based retry of the operation, attempting to copy the data
3067  * again. If the latter fails because the page was NOT uptodate, then we will
3068  * do a thread based blocking retry of the operation. That's the unexpected
3069  * slow path.
3070  */
3071 static int io_async_buf_func(struct wait_queue_entry *wait, unsigned mode,
3072                              int sync, void *arg)
3073 {
3074         struct wait_page_queue *wpq;
3075         struct io_kiocb *req = wait->private;
3076         struct wait_page_key *key = arg;
3077         int ret;
3078
3079         wpq = container_of(wait, struct wait_page_queue, wait);
3080
3081         if (!wake_page_match(wpq, key))
3082                 return 0;
3083
3084         req->rw.kiocb.ki_flags &= ~IOCB_WAITQ;
3085         list_del_init(&wait->entry);
3086
3087         init_task_work(&req->task_work, io_req_task_submit);
3088         percpu_ref_get(&req->ctx->refs);
3089
3090         /* submit ref gets dropped, acquire a new one */
3091         refcount_inc(&req->refs);
3092         ret = io_req_task_work_add(req, &req->task_work, true);
3093         if (unlikely(ret)) {
3094                 struct task_struct *tsk;
3095
3096                 /* queue just for cancelation */
3097                 init_task_work(&req->task_work, io_req_task_cancel);
3098                 tsk = io_wq_get_task(req->ctx->io_wq);
3099                 task_work_add(tsk, &req->task_work, 0);
3100                 wake_up_process(tsk);
3101         }
3102         return 1;
3103 }
3104
3105 /*
3106  * This controls whether a given IO request should be armed for async page
3107  * based retry. If we return false here, the request is handed to the async
3108  * worker threads for retry. If we're doing buffered reads on a regular file,
3109  * we prepare a private wait_page_queue entry and retry the operation. This
3110  * will either succeed because the page is now uptodate and unlocked, or it
3111  * will register a callback when the page is unlocked at IO completion. Through
3112  * that callback, io_uring uses task_work to setup a retry of the operation.
3113  * That retry will attempt the buffered read again. The retry will generally
3114  * succeed, or in rare cases where it fails, we then fall back to using the
3115  * async worker threads for a blocking retry.
3116  */
3117 static bool io_rw_should_retry(struct io_kiocb *req)
3118 {
3119         struct wait_page_queue *wait = &req->io->rw.wpq;
3120         struct kiocb *kiocb = &req->rw.kiocb;
3121
3122         /* never retry for NOWAIT, we just complete with -EAGAIN */
3123         if (req->flags & REQ_F_NOWAIT)
3124                 return false;
3125
3126         /* Only for buffered IO */
3127         if (kiocb->ki_flags & (IOCB_DIRECT | IOCB_HIPRI))
3128                 return false;
3129
3130         /*
3131          * just use poll if we can, and don't attempt if the fs doesn't
3132          * support callback based unlocks
3133          */
3134         if (file_can_poll(req->file) || !(req->file->f_mode & FMODE_BUF_RASYNC))
3135                 return false;
3136
3137         wait->wait.func = io_async_buf_func;
3138         wait->wait.private = req;
3139         wait->wait.flags = 0;
3140         INIT_LIST_HEAD(&wait->wait.entry);
3141         kiocb->ki_flags |= IOCB_WAITQ;
3142         kiocb->ki_flags &= ~IOCB_NOWAIT;
3143         kiocb->ki_waitq = wait;
3144         return true;
3145 }
3146
3147 static int io_iter_do_read(struct io_kiocb *req, struct iov_iter *iter)
3148 {
3149         if (req->file->f_op->read_iter)
3150                 return call_read_iter(req->file, &req->rw.kiocb, iter);
3151         else if (req->file->f_op->read)
3152                 return loop_rw_iter(READ, req->file, &req->rw.kiocb, iter);
3153         else
3154                 return -EINVAL;
3155 }
3156
3157 static int io_read(struct io_kiocb *req, bool force_nonblock,
3158                    struct io_comp_state *cs)
3159 {
3160         struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
3161         struct kiocb *kiocb = &req->rw.kiocb;
3162         struct iov_iter __iter, *iter = &__iter;
3163         ssize_t io_size, ret, ret2;
3164         size_t iov_count;
3165         bool no_async;
3166
3167         if (req->io)
3168                 iter = &req->io->rw.iter;
3169
3170         ret = io_import_iovec(READ, req, &iovec, iter, !force_nonblock);
3171         if (ret < 0)
3172                 return ret;
3173         iov_count = iov_iter_count(iter);
3174         io_size = ret;
3175         req->result = io_size;
3176         ret = 0;
3177
3178         /* Ensure we clear previously set non-block flag */
3179         if (!force_nonblock)
3180                 kiocb->ki_flags &= ~IOCB_NOWAIT;
3181
3182         /* If the file doesn't support async, just async punt */
3183         no_async = force_nonblock && !io_file_supports_async(req->file, READ);
3184         if (no_async)
3185                 goto copy_iov;
3186
3187         ret = rw_verify_area(READ, req->file, io_kiocb_ppos(kiocb), iov_count);
3188         if (unlikely(ret))
3189                 goto out_free;
3190
3191         ret = io_iter_do_read(req, iter);
3192
3193         if (!ret) {
3194                 goto done;
3195         } else if (ret == -EIOCBQUEUED) {
3196                 ret = 0;
3197                 goto out_free;
3198         } else if (ret == -EAGAIN) {
3199                 /* IOPOLL retry should happen for io-wq threads */
3200                 if (!force_nonblock && !(req->ctx->flags & IORING_SETUP_IOPOLL))
3201                         goto done;
3202                 /* no retry on NONBLOCK marked file */
3203                 if (req->file->f_flags & O_NONBLOCK)
3204                         goto done;
3205                 /* some cases will consume bytes even on error returns */
3206                 iov_iter_revert(iter, iov_count - iov_iter_count(iter));
3207                 ret = 0;
3208                 goto copy_iov;
3209         } else if (ret < 0) {
3210                 /* make sure -ERESTARTSYS -> -EINTR is done */
3211                 goto done;
3212         }
3213
3214         /* read it all, or we did blocking attempt. no retry. */
3215         if (!iov_iter_count(iter) || !force_nonblock ||
3216             (req->file->f_flags & O_NONBLOCK))
3217                 goto done;
3218
3219         io_size -= ret;
3220 copy_iov:
3221         ret2 = io_setup_async_rw(req, iovec, inline_vecs, iter, true);
3222         if (ret2) {
3223                 ret = ret2;
3224                 goto out_free;
3225         }
3226         if (no_async)
3227                 return -EAGAIN;
3228         /* it's copied and will be cleaned with ->io */
3229         iovec = NULL;
3230         /* now use our persistent iterator, if we aren't already */
3231         iter = &req->io->rw.iter;
3232 retry:
3233         req->io->rw.bytes_done += ret;
3234         /* if we can retry, do so with the callbacks armed */
3235         if (!io_rw_should_retry(req)) {
3236                 kiocb->ki_flags &= ~IOCB_WAITQ;
3237                 return -EAGAIN;
3238         }
3239
3240         /*
3241          * Now retry read with the IOCB_WAITQ parts set in the iocb. If we
3242          * get -EIOCBQUEUED, then we'll get a notification when the desired
3243          * page gets unlocked. We can also get a partial read here, and if we
3244          * do, then just retry at the new offset.
3245          */
3246         ret = io_iter_do_read(req, iter);
3247         if (ret == -EIOCBQUEUED) {
3248                 ret = 0;
3249                 goto out_free;
3250         } else if (ret > 0 && ret < io_size) {
3251                 /* we got some bytes, but not all. retry. */
3252                 goto retry;
3253         }
3254 done:
3255         kiocb_done(kiocb, ret, cs);
3256         ret = 0;
3257 out_free:
3258         /* it's reportedly faster than delegating the null check to kfree() */
3259         if (iovec)
3260                 kfree(iovec);
3261         return ret;
3262 }
3263
3264 static int io_write_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
3265                          bool force_nonblock)
3266 {
3267         ssize_t ret;
3268
3269         ret = io_prep_rw(req, sqe, force_nonblock);
3270         if (ret)
3271                 return ret;
3272
3273         if (unlikely(!(req->file->f_mode & FMODE_WRITE)))
3274                 return -EBADF;
3275
3276         /* either don't need iovec imported or already have it */
3277         if (!req->io || req->flags & REQ_F_NEED_CLEANUP)
3278                 return 0;
3279         return io_rw_prep_async(req, WRITE, force_nonblock);
3280 }
3281
3282 static int io_write(struct io_kiocb *req, bool force_nonblock,
3283                     struct io_comp_state *cs)
3284 {
3285         struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
3286         struct kiocb *kiocb = &req->rw.kiocb;
3287         struct iov_iter __iter, *iter = &__iter;
3288         size_t iov_count;
3289         ssize_t ret, ret2, io_size;
3290
3291         if (req->io)
3292                 iter = &req->io->rw.iter;
3293
3294         ret = io_import_iovec(WRITE, req, &iovec, iter, !force_nonblock);
3295         if (ret < 0)
3296                 return ret;
3297         iov_count = iov_iter_count(iter);
3298         io_size = ret;
3299         req->result = io_size;
3300
3301         /* Ensure we clear previously set non-block flag */
3302         if (!force_nonblock)
3303                 req->rw.kiocb.ki_flags &= ~IOCB_NOWAIT;
3304
3305         /* If the file doesn't support async, just async punt */
3306         if (force_nonblock && !io_file_supports_async(req->file, WRITE))
3307                 goto copy_iov;
3308
3309         /* file path doesn't support NOWAIT for non-direct_IO */
3310         if (force_nonblock && !(kiocb->ki_flags & IOCB_DIRECT) &&
3311             (req->flags & REQ_F_ISREG))
3312                 goto copy_iov;
3313
3314         ret = rw_verify_area(WRITE, req->file, io_kiocb_ppos(kiocb), iov_count);
3315         if (unlikely(ret))
3316                 goto out_free;
3317
3318         /*
3319          * Open-code file_start_write here to grab freeze protection,
3320          * which will be released by another thread in
3321          * io_complete_rw().  Fool lockdep by telling it the lock got
3322          * released so that it doesn't complain about the held lock when
3323          * we return to userspace.
3324          */
3325         if (req->flags & REQ_F_ISREG) {
3326                 __sb_start_write(file_inode(req->file)->i_sb,
3327                                         SB_FREEZE_WRITE, true);
3328                 __sb_writers_release(file_inode(req->file)->i_sb,
3329                                         SB_FREEZE_WRITE);
3330         }
3331         kiocb->ki_flags |= IOCB_WRITE;
3332
3333         if (req->file->f_op->write_iter)
3334                 ret2 = call_write_iter(req->file, kiocb, iter);
3335         else if (req->file->f_op->write)
3336                 ret2 = loop_rw_iter(WRITE, req->file, kiocb, iter);
3337         else
3338                 ret2 = -EINVAL;
3339
3340         /*
3341          * Raw bdev writes will return -EOPNOTSUPP for IOCB_NOWAIT. Just
3342          * retry them without IOCB_NOWAIT.
3343          */
3344         if (ret2 == -EOPNOTSUPP && (kiocb->ki_flags & IOCB_NOWAIT))
3345                 ret2 = -EAGAIN;
3346         /* no retry on NONBLOCK marked file */
3347         if (ret2 == -EAGAIN && (req->file->f_flags & O_NONBLOCK))
3348                 goto done;
3349         if (!force_nonblock || ret2 != -EAGAIN) {
3350                 /* IOPOLL retry should happen for io-wq threads */
3351                 if ((req->ctx->flags & IORING_SETUP_IOPOLL) && ret2 == -EAGAIN)
3352                         goto copy_iov;
3353 done:
3354                 kiocb_done(kiocb, ret2, cs);
3355         } else {
3356 copy_iov:
3357                 /* some cases will consume bytes even on error returns */
3358                 iov_iter_revert(iter, iov_count - iov_iter_count(iter));
3359                 ret = io_setup_async_rw(req, iovec, inline_vecs, iter, false);
3360                 if (!ret)
3361                         return -EAGAIN;
3362         }
3363 out_free:
3364         /* it's reportedly faster than delegating the null check to kfree() */
3365         if (iovec)
3366                 kfree(iovec);
3367         return ret;
3368 }
3369
3370 static int __io_splice_prep(struct io_kiocb *req,
3371                             const struct io_uring_sqe *sqe)
3372 {
3373         struct io_splice* sp = &req->splice;
3374         unsigned int valid_flags = SPLICE_F_FD_IN_FIXED | SPLICE_F_ALL;
3375         int ret;
3376
3377         if (req->flags & REQ_F_NEED_CLEANUP)
3378                 return 0;
3379         if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3380                 return -EINVAL;
3381
3382         sp->file_in = NULL;
3383         sp->len = READ_ONCE(sqe->len);
3384         sp->flags = READ_ONCE(sqe->splice_flags);
3385
3386         if (unlikely(sp->flags & ~valid_flags))
3387                 return -EINVAL;
3388
3389         ret = io_file_get(NULL, req, READ_ONCE(sqe->splice_fd_in), &sp->file_in,
3390                           (sp->flags & SPLICE_F_FD_IN_FIXED));
3391         if (ret)
3392                 return ret;
3393         req->flags |= REQ_F_NEED_CLEANUP;
3394
3395         if (!S_ISREG(file_inode(sp->file_in)->i_mode)) {
3396                 /*
3397                  * Splice operation will be punted aync, and here need to
3398                  * modify io_wq_work.flags, so initialize io_wq_work firstly.
3399                  */
3400                 io_req_init_async(req);
3401                 req->work.flags |= IO_WQ_WORK_UNBOUND;
3402         }
3403
3404         return 0;
3405 }
3406
3407 static int io_tee_prep(struct io_kiocb *req,
3408                        const struct io_uring_sqe *sqe)
3409 {
3410         if (READ_ONCE(sqe->splice_off_in) || READ_ONCE(sqe->off))
3411                 return -EINVAL;
3412         return __io_splice_prep(req, sqe);
3413 }
3414
3415 static int io_tee(struct io_kiocb *req, bool force_nonblock)
3416 {
3417         struct io_splice *sp = &req->splice;
3418         struct file *in = sp->file_in;
3419         struct file *out = sp->file_out;
3420         unsigned int flags = sp->flags & ~SPLICE_F_FD_IN_FIXED;
3421         long ret = 0;
3422
3423         if (force_nonblock)
3424                 return -EAGAIN;
3425         if (sp->len)
3426                 ret = do_tee(in, out, sp->len, flags);
3427
3428         io_put_file(req, in, (sp->flags & SPLICE_F_FD_IN_FIXED));
3429         req->flags &= ~REQ_F_NEED_CLEANUP;
3430
3431         if (ret != sp->len)
3432                 req_set_fail_links(req);
3433         io_req_complete(req, ret);
3434         return 0;
3435 }
3436
3437 static int io_splice_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3438 {
3439         struct io_splice* sp = &req->splice;
3440
3441         sp->off_in = READ_ONCE(sqe->splice_off_in);
3442         sp->off_out = READ_ONCE(sqe->off);
3443         return __io_splice_prep(req, sqe);
3444 }
3445
3446 static int io_splice(struct io_kiocb *req, bool force_nonblock)
3447 {
3448         struct io_splice *sp = &req->splice;
3449         struct file *in = sp->file_in;
3450         struct file *out = sp->file_out;
3451         unsigned int flags = sp->flags & ~SPLICE_F_FD_IN_FIXED;
3452         loff_t *poff_in, *poff_out;
3453         long ret = 0;
3454
3455         if (force_nonblock)
3456                 return -EAGAIN;
3457
3458         poff_in = (sp->off_in == -1) ? NULL : &sp->off_in;
3459         poff_out = (sp->off_out == -1) ? NULL : &sp->off_out;
3460
3461         if (sp->len)
3462                 ret = do_splice(in, poff_in, out, poff_out, sp->len, flags);
3463
3464         io_put_file(req, in, (sp->flags & SPLICE_F_FD_IN_FIXED));
3465         req->flags &= ~REQ_F_NEED_CLEANUP;
3466
3467         if (ret != sp->len)
3468                 req_set_fail_links(req);
3469         io_req_complete(req, ret);
3470         return 0;
3471 }
3472
3473 /*
3474  * IORING_OP_NOP just posts a completion event, nothing else.
3475  */
3476 static int io_nop(struct io_kiocb *req, struct io_comp_state *cs)
3477 {
3478         struct io_ring_ctx *ctx = req->ctx;
3479
3480         if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
3481                 return -EINVAL;
3482
3483         __io_req_complete(req, 0, 0, cs);
3484         return 0;
3485 }
3486
3487 static int io_prep_fsync(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3488 {
3489         struct io_ring_ctx *ctx = req->ctx;
3490
3491         if (!req->file)
3492                 return -EBADF;
3493
3494         if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
3495                 return -EINVAL;
3496         if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
3497                 return -EINVAL;
3498
3499         req->sync.flags = READ_ONCE(sqe->fsync_flags);
3500         if (unlikely(req->sync.flags & ~IORING_FSYNC_DATASYNC))
3501                 return -EINVAL;
3502
3503         req->sync.off = READ_ONCE(sqe->off);
3504         req->sync.len = READ_ONCE(sqe->len);
3505         return 0;
3506 }
3507
3508 static int io_fsync(struct io_kiocb *req, bool force_nonblock)
3509 {
3510         loff_t end = req->sync.off + req->sync.len;
3511         int ret;
3512
3513         /* fsync always requires a blocking context */
3514         if (force_nonblock)
3515                 return -EAGAIN;
3516
3517         ret = vfs_fsync_range(req->file, req->sync.off,
3518                                 end > 0 ? end : LLONG_MAX,
3519                                 req->sync.flags & IORING_FSYNC_DATASYNC);
3520         if (ret < 0)
3521                 req_set_fail_links(req);
3522         io_req_complete(req, ret);
3523         return 0;
3524 }
3525
3526 static int io_fallocate_prep(struct io_kiocb *req,
3527                              const struct io_uring_sqe *sqe)
3528 {
3529         if (sqe->ioprio || sqe->buf_index || sqe->rw_flags)
3530                 return -EINVAL;
3531         if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3532                 return -EINVAL;
3533
3534         req->sync.off = READ_ONCE(sqe->off);
3535         req->sync.len = READ_ONCE(sqe->addr);
3536         req->sync.mode = READ_ONCE(sqe->len);
3537         return 0;
3538 }
3539
3540 static int io_fallocate(struct io_kiocb *req, bool force_nonblock)
3541 {
3542         int ret;
3543
3544         /* fallocate always requiring blocking context */
3545         if (force_nonblock)
3546                 return -EAGAIN;
3547         ret = vfs_fallocate(req->file, req->sync.mode, req->sync.off,
3548                                 req->sync.len);
3549         if (ret < 0)
3550                 req_set_fail_links(req);
3551         io_req_complete(req, ret);
3552         return 0;
3553 }
3554
3555 static int __io_openat_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3556 {
3557         const char __user *fname;
3558         int ret;
3559
3560         if (unlikely(sqe->ioprio || sqe->buf_index))
3561                 return -EINVAL;
3562         if (unlikely(req->flags & REQ_F_FIXED_FILE))
3563                 return -EBADF;
3564
3565         /* open.how should be already initialised */
3566         if (!(req->open.how.flags & O_PATH) && force_o_largefile())
3567                 req->open.how.flags |= O_LARGEFILE;
3568
3569         req->open.dfd = READ_ONCE(sqe->fd);
3570         fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
3571         req->open.filename = getname(fname);
3572         if (IS_ERR(req->open.filename)) {
3573                 ret = PTR_ERR(req->open.filename);
3574                 req->open.filename = NULL;
3575                 return ret;
3576         }
3577         req->open.nofile = rlimit(RLIMIT_NOFILE);
3578         req->flags |= REQ_F_NEED_CLEANUP;
3579         return 0;
3580 }
3581
3582 static int io_openat_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3583 {
3584         u64 flags, mode;
3585
3586         if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3587                 return -EINVAL;
3588         if (req->flags & REQ_F_NEED_CLEANUP)
3589                 return 0;
3590         mode = READ_ONCE(sqe->len);
3591         flags = READ_ONCE(sqe->open_flags);
3592         req->open.how = build_open_how(flags, mode);
3593         return __io_openat_prep(req, sqe);
3594 }
3595
3596 static int io_openat2_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3597 {
3598         struct open_how __user *how;
3599         size_t len;
3600         int ret;
3601
3602         if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3603                 return -EINVAL;
3604         if (req->flags & REQ_F_NEED_CLEANUP)
3605                 return 0;
3606         how = u64_to_user_ptr(READ_ONCE(sqe->addr2));
3607         len = READ_ONCE(sqe->len);
3608         if (len < OPEN_HOW_SIZE_VER0)
3609                 return -EINVAL;
3610
3611         ret = copy_struct_from_user(&req->open.how, sizeof(req->open.how), how,
3612                                         len);
3613         if (ret)
3614                 return ret;
3615
3616         return __io_openat_prep(req, sqe);
3617 }
3618
3619 static int io_openat2(struct io_kiocb *req, bool force_nonblock)
3620 {
3621         struct open_flags op;
3622         struct file *file;
3623         int ret;
3624
3625         if (force_nonblock)
3626                 return -EAGAIN;
3627
3628         ret = build_open_flags(&req->open.how, &op);
3629         if (ret)
3630                 goto err;
3631
3632         ret = __get_unused_fd_flags(req->open.how.flags, req->open.nofile);
3633         if (ret < 0)
3634                 goto err;
3635
3636         file = do_filp_open(req->open.dfd, req->open.filename, &op);
3637         if (IS_ERR(file)) {
3638                 put_unused_fd(ret);
3639                 ret = PTR_ERR(file);
3640         } else {
3641                 fsnotify_open(file);
3642                 fd_install(ret, file);
3643         }
3644 err:
3645         putname(req->open.filename);
3646         req->flags &= ~REQ_F_NEED_CLEANUP;
3647         if (ret < 0)
3648                 req_set_fail_links(req);
3649         io_req_complete(req, ret);
3650         return 0;
3651 }
3652
3653 static int io_openat(struct io_kiocb *req, bool force_nonblock)
3654 {
3655         return io_openat2(req, force_nonblock);
3656 }
3657
3658 static int io_remove_buffers_prep(struct io_kiocb *req,
3659                                   const struct io_uring_sqe *sqe)
3660 {
3661         struct io_provide_buf *p = &req->pbuf;
3662         u64 tmp;
3663
3664         if (sqe->ioprio || sqe->rw_flags || sqe->addr || sqe->len || sqe->off)
3665                 return -EINVAL;
3666
3667         tmp = READ_ONCE(sqe->fd);
3668         if (!tmp || tmp > USHRT_MAX)
3669                 return -EINVAL;
3670
3671         memset(p, 0, sizeof(*p));
3672         p->nbufs = tmp;
3673         p->bgid = READ_ONCE(sqe->buf_group);
3674         return 0;
3675 }
3676
3677 static int __io_remove_buffers(struct io_ring_ctx *ctx, struct io_buffer *buf,
3678                                int bgid, unsigned nbufs)
3679 {
3680         unsigned i = 0;
3681
3682         /* shouldn't happen */
3683         if (!nbufs)
3684                 return 0;
3685
3686         /* the head kbuf is the list itself */
3687         while (!list_empty(&buf->list)) {
3688                 struct io_buffer *nxt;
3689
3690                 nxt = list_first_entry(&buf->list, struct io_buffer, list);
3691                 list_del(&nxt->list);
3692                 kfree(nxt);
3693                 if (++i == nbufs)
3694                         return i;
3695         }
3696         i++;
3697         kfree(buf);
3698         idr_remove(&ctx->io_buffer_idr, bgid);
3699
3700         return i;
3701 }
3702
3703 static int io_remove_buffers(struct io_kiocb *req, bool force_nonblock,
3704                              struct io_comp_state *cs)
3705 {
3706         struct io_provide_buf *p = &req->pbuf;
3707         struct io_ring_ctx *ctx = req->ctx;
3708         struct io_buffer *head;
3709         int ret = 0;
3710
3711         io_ring_submit_lock(ctx, !force_nonblock);
3712
3713         lockdep_assert_held(&ctx->uring_lock);
3714
3715         ret = -ENOENT;
3716         head = idr_find(&ctx->io_buffer_idr, p->bgid);
3717         if (head)
3718                 ret = __io_remove_buffers(ctx, head, p->bgid, p->nbufs);
3719
3720         io_ring_submit_lock(ctx, !force_nonblock);
3721         if (ret < 0)
3722                 req_set_fail_links(req);
3723         __io_req_complete(req, ret, 0, cs);
3724         return 0;
3725 }
3726
3727 static int io_provide_buffers_prep(struct io_kiocb *req,
3728                                    const struct io_uring_sqe *sqe)
3729 {
3730         struct io_provide_buf *p = &req->pbuf;
3731         u64 tmp;
3732
3733         if (sqe->ioprio || sqe->rw_flags)
3734                 return -EINVAL;
3735
3736         tmp = READ_ONCE(sqe->fd);
3737         if (!tmp || tmp > USHRT_MAX)
3738                 return -E2BIG;
3739         p->nbufs = tmp;
3740         p->addr = READ_ONCE(sqe->addr);
3741         p->len = READ_ONCE(sqe->len);
3742
3743         if (!access_ok(u64_to_user_ptr(p->addr), (p->len * p->nbufs)))
3744                 return -EFAULT;
3745
3746         p->bgid = READ_ONCE(sqe->buf_group);
3747         tmp = READ_ONCE(sqe->off);
3748         if (tmp > USHRT_MAX)
3749                 return -E2BIG;
3750         p->bid = tmp;
3751         return 0;
3752 }
3753
3754 static int io_add_buffers(struct io_provide_buf *pbuf, struct io_buffer **head)
3755 {
3756         struct io_buffer *buf;
3757         u64 addr = pbuf->addr;
3758         int i, bid = pbuf->bid;
3759
3760         for (i = 0; i < pbuf->nbufs; i++) {
3761                 buf = kmalloc(sizeof(*buf), GFP_KERNEL);
3762                 if (!buf)
3763                         break;
3764
3765                 buf->addr = addr;
3766                 buf->len = pbuf->len;
3767                 buf->bid = bid;
3768                 addr += pbuf->len;
3769                 bid++;
3770                 if (!*head) {
3771                         INIT_LIST_HEAD(&buf->list);
3772                         *head = buf;
3773                 } else {
3774                         list_add_tail(&buf->list, &(*head)->list);
3775                 }
3776         }
3777
3778         return i ? i : -ENOMEM;
3779 }
3780
3781 static int io_provide_buffers(struct io_kiocb *req, bool force_nonblock,
3782                               struct io_comp_state *cs)
3783 {
3784         struct io_provide_buf *p = &req->pbuf;
3785         struct io_ring_ctx *ctx = req->ctx;
3786         struct io_buffer *head, *list;
3787         int ret = 0;
3788
3789         io_ring_submit_lock(ctx, !force_nonblock);
3790
3791         lockdep_assert_held(&ctx->uring_lock);
3792
3793         list = head = idr_find(&ctx->io_buffer_idr, p->bgid);
3794
3795         ret = io_add_buffers(p, &head);
3796         if (ret < 0)
3797                 goto out;
3798
3799         if (!list) {
3800                 ret = idr_alloc(&ctx->io_buffer_idr, head, p->bgid, p->bgid + 1,
3801                                         GFP_KERNEL);
3802                 if (ret < 0) {
3803                         __io_remove_buffers(ctx, head, p->bgid, -1U);
3804                         goto out;
3805                 }
3806         }
3807 out:
3808         io_ring_submit_unlock(ctx, !force_nonblock);
3809         if (ret < 0)
3810                 req_set_fail_links(req);
3811         __io_req_complete(req, ret, 0, cs);
3812         return 0;
3813 }
3814
3815 static int io_epoll_ctl_prep(struct io_kiocb *req,
3816                              const struct io_uring_sqe *sqe)
3817 {
3818 #if defined(CONFIG_EPOLL)
3819         if (sqe->ioprio || sqe->buf_index)
3820                 return -EINVAL;
3821         if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL)))
3822                 return -EINVAL;
3823
3824         req->epoll.epfd = READ_ONCE(sqe->fd);
3825         req->epoll.op = READ_ONCE(sqe->len);
3826         req->epoll.fd = READ_ONCE(sqe->off);
3827
3828         if (ep_op_has_event(req->epoll.op)) {
3829                 struct epoll_event __user *ev;
3830
3831                 ev = u64_to_user_ptr(READ_ONCE(sqe->addr));
3832                 if (copy_from_user(&req->epoll.event, ev, sizeof(*ev)))
3833                         return -EFAULT;
3834         }
3835
3836         return 0;
3837 #else
3838         return -EOPNOTSUPP;
3839 #endif
3840 }
3841
3842 static int io_epoll_ctl(struct io_kiocb *req, bool force_nonblock,
3843                         struct io_comp_state *cs)
3844 {
3845 #if defined(CONFIG_EPOLL)
3846         struct io_epoll *ie = &req->epoll;
3847         int ret;
3848
3849         ret = do_epoll_ctl(ie->epfd, ie->op, ie->fd, &ie->event, force_nonblock);
3850         if (force_nonblock && ret == -EAGAIN)
3851                 return -EAGAIN;
3852
3853         if (ret < 0)
3854                 req_set_fail_links(req);
3855         __io_req_complete(req, ret, 0, cs);
3856         return 0;
3857 #else
3858         return -EOPNOTSUPP;
3859 #endif
3860 }
3861
3862 static int io_madvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3863 {
3864 #if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
3865         if (sqe->ioprio || sqe->buf_index || sqe->off)
3866                 return -EINVAL;
3867         if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3868                 return -EINVAL;
3869
3870         req->madvise.addr = READ_ONCE(sqe->addr);
3871         req->madvise.len = READ_ONCE(sqe->len);
3872         req->madvise.advice = READ_ONCE(sqe->fadvise_advice);
3873         return 0;
3874 #else
3875         return -EOPNOTSUPP;
3876 #endif
3877 }
3878
3879 static int io_madvise(struct io_kiocb *req, bool force_nonblock)
3880 {
3881 #if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
3882         struct io_madvise *ma = &req->madvise;
3883         int ret;
3884
3885         if (force_nonblock)
3886                 return -EAGAIN;
3887
3888         ret = do_madvise(ma->addr, ma->len, ma->advice);
3889         if (ret < 0)
3890                 req_set_fail_links(req);
3891         io_req_complete(req, ret);
3892         return 0;
3893 #else
3894         return -EOPNOTSUPP;
3895 #endif
3896 }
3897
3898 static int io_fadvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3899 {
3900         if (sqe->ioprio || sqe->buf_index || sqe->addr)
3901                 return -EINVAL;
3902         if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3903                 return -EINVAL;
3904
3905         req->fadvise.offset = READ_ONCE(sqe->off);
3906         req->fadvise.len = READ_ONCE(sqe->len);
3907         req->fadvise.advice = READ_ONCE(sqe->fadvise_advice);
3908         return 0;
3909 }
3910
3911 static int io_fadvise(struct io_kiocb *req, bool force_nonblock)
3912 {
3913         struct io_fadvise *fa = &req->fadvise;
3914         int ret;
3915
3916         if (force_nonblock) {
3917                 switch (fa->advice) {
3918                 case POSIX_FADV_NORMAL:
3919                 case POSIX_FADV_RANDOM:
3920                 case POSIX_FADV_SEQUENTIAL:
3921                         break;
3922                 default:
3923                         return -EAGAIN;
3924                 }
3925         }
3926
3927         ret = vfs_fadvise(req->file, fa->offset, fa->len, fa->advice);
3928         if (ret < 0)
3929                 req_set_fail_links(req);
3930         io_req_complete(req, ret);
3931         return 0;
3932 }
3933
3934 static int io_statx_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3935 {
3936         if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL)))
3937                 return -EINVAL;
3938         if (sqe->ioprio || sqe->buf_index)
3939                 return -EINVAL;
3940         if (req->flags & REQ_F_FIXED_FILE)
3941                 return -EBADF;
3942
3943         req->statx.dfd = READ_ONCE(sqe->fd);
3944         req->statx.mask = READ_ONCE(sqe->len);
3945         req->statx.filename = u64_to_user_ptr(READ_ONCE(sqe->addr));
3946         req->statx.buffer = u64_to_user_ptr(READ_ONCE(sqe->addr2));
3947         req->statx.flags = READ_ONCE(sqe->statx_flags);
3948
3949         return 0;
3950 }
3951
3952 static int io_statx(struct io_kiocb *req, bool force_nonblock)
3953 {
3954         struct io_statx *ctx = &req->statx;
3955         int ret;
3956
3957         if (force_nonblock) {
3958                 /* only need file table for an actual valid fd */
3959                 if (ctx->dfd == -1 || ctx->dfd == AT_FDCWD)
3960                         req->flags |= REQ_F_NO_FILE_TABLE;
3961                 return -EAGAIN;
3962         }
3963
3964         ret = do_statx(ctx->dfd, ctx->filename, ctx->flags, ctx->mask,
3965                        ctx->buffer);
3966
3967         if (ret < 0)
3968                 req_set_fail_links(req);
3969         io_req_complete(req, ret);
3970         return 0;
3971 }
3972
3973 static int io_close_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3974 {
3975         /*
3976          * If we queue this for async, it must not be cancellable. That would
3977          * leave the 'file' in an undeterminate state, and here need to modify
3978          * io_wq_work.flags, so initialize io_wq_work firstly.
3979          */
3980         io_req_init_async(req);
3981         req->work.flags |= IO_WQ_WORK_NO_CANCEL;
3982
3983         if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3984                 return -EINVAL;
3985         if (sqe->ioprio || sqe->off || sqe->addr || sqe->len ||
3986             sqe->rw_flags || sqe->buf_index)
3987                 return -EINVAL;
3988         if (req->flags & REQ_F_FIXED_FILE)
3989                 return -EBADF;
3990
3991         req->close.fd = READ_ONCE(sqe->fd);
3992         if ((req->file && req->file->f_op == &io_uring_fops))
3993                 return -EBADF;
3994
3995         req->close.put_file = NULL;
3996         return 0;
3997 }
3998
3999 static int io_close(struct io_kiocb *req, bool force_nonblock,
4000                     struct io_comp_state *cs)
4001 {
4002         struct io_close *close = &req->close;
4003         int ret;
4004
4005         /* might be already done during nonblock submission */
4006         if (!close->put_file) {
4007                 ret = __close_fd_get_file(close->fd, &close->put_file);
4008                 if (ret < 0)
4009                         return (ret == -ENOENT) ? -EBADF : ret;
4010         }
4011
4012         /* if the file has a flush method, be safe and punt to async */
4013         if (close->put_file->f_op->flush && force_nonblock) {
4014                 /* was never set, but play safe */
4015                 req->flags &= ~REQ_F_NOWAIT;
4016                 /* avoid grabbing files - we don't need the files */
4017                 req->flags |= REQ_F_NO_FILE_TABLE;
4018                 return -EAGAIN;
4019         }
4020
4021         /* No ->flush() or already async, safely close from here */
4022         ret = filp_close(close->put_file, req->work.files);
4023         if (ret < 0)
4024                 req_set_fail_links(req);
4025         fput(close->put_file);
4026         close->put_file = NULL;
4027         __io_req_complete(req, ret, 0, cs);
4028         return 0;
4029 }
4030
4031 static int io_prep_sfr(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4032 {
4033         struct io_ring_ctx *ctx = req->ctx;
4034
4035         if (!req->file)
4036                 return -EBADF;
4037
4038         if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
4039                 return -EINVAL;
4040         if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
4041                 return -EINVAL;
4042
4043         req->sync.off = READ_ONCE(sqe->off);
4044         req->sync.len = READ_ONCE(sqe->len);
4045         req->sync.flags = READ_ONCE(sqe->sync_range_flags);
4046         return 0;
4047 }
4048
4049 static int io_sync_file_range(struct io_kiocb *req, bool force_nonblock)
4050 {
4051         int ret;
4052
4053         /* sync_file_range always requires a blocking context */
4054         if (force_nonblock)
4055                 return -EAGAIN;
4056
4057         ret = sync_file_range(req->file, req->sync.off, req->sync.len,
4058                                 req->sync.flags);
4059         if (ret < 0)
4060                 req_set_fail_links(req);
4061         io_req_complete(req, ret);
4062         return 0;
4063 }
4064
4065 #if defined(CONFIG_NET)
4066 static int io_setup_async_msg(struct io_kiocb *req,
4067                               struct io_async_msghdr *kmsg)
4068 {
4069         if (req->io)
4070                 return -EAGAIN;
4071         if (io_alloc_async_ctx(req)) {
4072                 if (kmsg->iov != kmsg->fast_iov)
4073                         kfree(kmsg->iov);
4074                 return -ENOMEM;
4075         }
4076         req->flags |= REQ_F_NEED_CLEANUP;
4077         memcpy(&req->io->msg, kmsg, sizeof(*kmsg));
4078         return -EAGAIN;
4079 }
4080
4081 static int io_sendmsg_copy_hdr(struct io_kiocb *req,
4082                                struct io_async_msghdr *iomsg)
4083 {
4084         iomsg->iov = iomsg->fast_iov;
4085         iomsg->msg.msg_name = &iomsg->addr;
4086         return sendmsg_copy_msghdr(&iomsg->msg, req->sr_msg.umsg,
4087                                    req->sr_msg.msg_flags, &iomsg->iov);
4088 }
4089
4090 static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4091 {
4092         struct io_sr_msg *sr = &req->sr_msg;
4093         struct io_async_ctx *io = req->io;
4094         int ret;
4095
4096         if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4097                 return -EINVAL;
4098
4099         sr->msg_flags = READ_ONCE(sqe->msg_flags);
4100         sr->umsg = u64_to_user_ptr(READ_ONCE(sqe->addr));
4101         sr->len = READ_ONCE(sqe->len);
4102
4103 #ifdef CONFIG_COMPAT
4104         if (req->ctx->compat)
4105                 sr->msg_flags |= MSG_CMSG_COMPAT;
4106 #endif
4107
4108         if (!io || req->opcode == IORING_OP_SEND)
4109                 return 0;
4110         /* iovec is already imported */
4111         if (req->flags & REQ_F_NEED_CLEANUP)
4112                 return 0;
4113
4114         ret = io_sendmsg_copy_hdr(req, &io->msg);
4115         if (!ret)
4116                 req->flags |= REQ_F_NEED_CLEANUP;
4117         return ret;
4118 }
4119
4120 static int io_sendmsg(struct io_kiocb *req, bool force_nonblock,
4121                       struct io_comp_state *cs)
4122 {
4123         struct io_async_msghdr iomsg, *kmsg;
4124         struct socket *sock;
4125         unsigned flags;
4126         int ret;
4127
4128         sock = sock_from_file(req->file, &ret);
4129         if (unlikely(!sock))
4130                 return ret;
4131
4132         if (req->io) {
4133                 kmsg = &req->io->msg;
4134                 kmsg->msg.msg_name = &req->io->msg.addr;
4135                 /* if iov is set, it's allocated already */
4136                 if (!kmsg->iov)
4137                         kmsg->iov = kmsg->fast_iov;
4138                 kmsg->msg.msg_iter.iov = kmsg->iov;
4139         } else {
4140                 ret = io_sendmsg_copy_hdr(req, &iomsg);
4141                 if (ret)
4142                         return ret;
4143                 kmsg = &iomsg;
4144         }
4145
4146         flags = req->sr_msg.msg_flags;
4147         if (flags & MSG_DONTWAIT)
4148                 req->flags |= REQ_F_NOWAIT;
4149         else if (force_nonblock)
4150                 flags |= MSG_DONTWAIT;
4151
4152         ret = __sys_sendmsg_sock(sock, &kmsg->msg, flags);
4153         if (force_nonblock && ret == -EAGAIN)
4154                 return io_setup_async_msg(req, kmsg);
4155         if (ret == -ERESTARTSYS)
4156                 ret = -EINTR;
4157
4158         if (kmsg->iov != kmsg->fast_iov)
4159                 kfree(kmsg->iov);
4160         req->flags &= ~REQ_F_NEED_CLEANUP;
4161         if (ret < 0)
4162                 req_set_fail_links(req);
4163         __io_req_complete(req, ret, 0, cs);
4164         return 0;
4165 }
4166
4167 static int io_send(struct io_kiocb *req, bool force_nonblock,
4168                    struct io_comp_state *cs)
4169 {
4170         struct io_sr_msg *sr = &req->sr_msg;
4171         struct msghdr msg;
4172         struct iovec iov;
4173         struct socket *sock;
4174         unsigned flags;
4175         int ret;
4176
4177         sock = sock_from_file(req->file, &ret);
4178         if (unlikely(!sock))
4179                 return ret;
4180
4181         ret = import_single_range(WRITE, sr->buf, sr->len, &iov, &msg.msg_iter);
4182         if (unlikely(ret))
4183                 return ret;;
4184
4185         msg.msg_name = NULL;
4186         msg.msg_control = NULL;
4187         msg.msg_controllen = 0;
4188         msg.msg_namelen = 0;
4189
4190         flags = req->sr_msg.msg_flags;
4191         if (flags & MSG_DONTWAIT)
4192                 req->flags |= REQ_F_NOWAIT;
4193         else if (force_nonblock)
4194                 flags |= MSG_DONTWAIT;
4195
4196         msg.msg_flags = flags;
4197         ret = sock_sendmsg(sock, &msg);
4198         if (force_nonblock && ret == -EAGAIN)
4199                 return -EAGAIN;
4200         if (ret == -ERESTARTSYS)
4201                 ret = -EINTR;
4202
4203         if (ret < 0)
4204                 req_set_fail_links(req);
4205         __io_req_complete(req, ret, 0, cs);
4206         return 0;
4207 }
4208
4209 static int __io_recvmsg_copy_hdr(struct io_kiocb *req,
4210                                  struct io_async_msghdr *iomsg)
4211 {
4212         struct io_sr_msg *sr = &req->sr_msg;
4213         struct iovec __user *uiov;
4214         size_t iov_len;
4215         int ret;
4216
4217         ret = __copy_msghdr_from_user(&iomsg->msg, sr->umsg,
4218                                         &iomsg->uaddr, &uiov, &iov_len);
4219         if (ret)
4220                 return ret;
4221
4222         if (req->flags & REQ_F_BUFFER_SELECT) {
4223                 if (iov_len > 1)
4224                         return -EINVAL;
4225                 if (copy_from_user(iomsg->iov, uiov, sizeof(*uiov)))
4226                         return -EFAULT;
4227                 sr->len = iomsg->iov[0].iov_len;
4228                 iov_iter_init(&iomsg->msg.msg_iter, READ, iomsg->iov, 1,
4229                                 sr->len);
4230                 iomsg->iov = NULL;
4231         } else {
4232                 ret = import_iovec(READ, uiov, iov_len, UIO_FASTIOV,
4233                                         &iomsg->iov, &iomsg->msg.msg_iter);
4234                 if (ret > 0)
4235                         ret = 0;
4236         }
4237
4238         return ret;
4239 }
4240
4241 #ifdef CONFIG_COMPAT
4242 static int __io_compat_recvmsg_copy_hdr(struct io_kiocb *req,
4243                                         struct io_async_msghdr *iomsg)
4244 {
4245         struct compat_msghdr __user *msg_compat;
4246         struct io_sr_msg *sr = &req->sr_msg;
4247         struct compat_iovec __user *uiov;
4248         compat_uptr_t ptr;
4249         compat_size_t len;
4250         int ret;
4251
4252         msg_compat = (struct compat_msghdr __user *) sr->umsg;
4253         ret = __get_compat_msghdr(&iomsg->msg, msg_compat, &iomsg->uaddr,
4254                                         &ptr, &len);
4255         if (ret)
4256                 return ret;
4257
4258         uiov = compat_ptr(ptr);
4259         if (req->flags & REQ_F_BUFFER_SELECT) {
4260                 compat_ssize_t clen;
4261
4262                 if (len > 1)
4263                         return -EINVAL;
4264                 if (!access_ok(uiov, sizeof(*uiov)))
4265                         return -EFAULT;
4266                 if (__get_user(clen, &uiov->iov_len))
4267                         return -EFAULT;
4268                 if (clen < 0)
4269                         return -EINVAL;
4270                 sr->len = iomsg->iov[0].iov_len;
4271                 iomsg->iov = NULL;
4272         } else {
4273                 ret = compat_import_iovec(READ, uiov, len, UIO_FASTIOV,
4274                                                 &iomsg->iov,
4275                                                 &iomsg->msg.msg_iter);
4276                 if (ret < 0)
4277                         return ret;
4278         }
4279
4280         return 0;
4281 }
4282 #endif
4283
4284 static int io_recvmsg_copy_hdr(struct io_kiocb *req,
4285                                struct io_async_msghdr *iomsg)
4286 {
4287         iomsg->msg.msg_name = &iomsg->addr;
4288         iomsg->iov = iomsg->fast_iov;
4289
4290 #ifdef CONFIG_COMPAT
4291         if (req->ctx->compat)
4292                 return __io_compat_recvmsg_copy_hdr(req, iomsg);
4293 #endif
4294
4295         return __io_recvmsg_copy_hdr(req, iomsg);
4296 }
4297
4298 static struct io_buffer *io_recv_buffer_select(struct io_kiocb *req,
4299                                                bool needs_lock)
4300 {
4301         struct io_sr_msg *sr = &req->sr_msg;
4302         struct io_buffer *kbuf;
4303
4304         kbuf = io_buffer_select(req, &sr->len, sr->bgid, sr->kbuf, needs_lock);
4305         if (IS_ERR(kbuf))
4306                 return kbuf;
4307
4308         sr->kbuf = kbuf;
4309         req->flags |= REQ_F_BUFFER_SELECTED;
4310         return kbuf;
4311 }
4312
4313 static inline unsigned int io_put_recv_kbuf(struct io_kiocb *req)
4314 {
4315         return io_put_kbuf(req, req->sr_msg.kbuf);
4316 }
4317
4318 static int io_recvmsg_prep(struct io_kiocb *req,
4319                            const struct io_uring_sqe *sqe)
4320 {
4321         struct io_sr_msg *sr = &req->sr_msg;
4322         struct io_async_ctx *io = req->io;
4323         int ret;
4324
4325         if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4326                 return -EINVAL;
4327
4328         sr->msg_flags = READ_ONCE(sqe->msg_flags);
4329         sr->umsg = u64_to_user_ptr(READ_ONCE(sqe->addr));
4330         sr->len = READ_ONCE(sqe->len);
4331         sr->bgid = READ_ONCE(sqe->buf_group);
4332
4333 #ifdef CONFIG_COMPAT
4334         if (req->ctx->compat)
4335                 sr->msg_flags |= MSG_CMSG_COMPAT;
4336 #endif
4337
4338         if (!io || req->opcode == IORING_OP_RECV)
4339                 return 0;
4340         /* iovec is already imported */
4341         if (req->flags & REQ_F_NEED_CLEANUP)
4342                 return 0;
4343
4344         ret = io_recvmsg_copy_hdr(req, &io->msg);
4345         if (!ret)
4346                 req->flags |= REQ_F_NEED_CLEANUP;
4347         return ret;
4348 }
4349
4350 static int io_recvmsg(struct io_kiocb *req, bool force_nonblock,
4351                       struct io_comp_state *cs)
4352 {
4353         struct io_async_msghdr iomsg, *kmsg;
4354         struct socket *sock;
4355         struct io_buffer *kbuf;
4356         unsigned flags;
4357         int ret, cflags = 0;
4358
4359         sock = sock_from_file(req->file, &ret);
4360         if (unlikely(!sock))
4361                 return ret;
4362
4363         if (req->io) {
4364                 kmsg = &req->io->msg;
4365                 kmsg->msg.msg_name = &req->io->msg.addr;
4366                 /* if iov is set, it's allocated already */
4367                 if (!kmsg->iov)
4368                         kmsg->iov = kmsg->fast_iov;
4369                 kmsg->msg.msg_iter.iov = kmsg->iov;
4370         } else {
4371                 ret = io_recvmsg_copy_hdr(req, &iomsg);
4372                 if (ret)
4373                         return ret;
4374                 kmsg = &iomsg;
4375         }
4376
4377         if (req->flags & REQ_F_BUFFER_SELECT) {
4378                 kbuf = io_recv_buffer_select(req, !force_nonblock);
4379                 if (IS_ERR(kbuf))
4380                         return PTR_ERR(kbuf);
4381                 kmsg->fast_iov[0].iov_base = u64_to_user_ptr(kbuf->addr);
4382                 iov_iter_init(&kmsg->msg.msg_iter, READ, kmsg->iov,
4383                                 1, req->sr_msg.len);
4384         }
4385
4386         flags = req->sr_msg.msg_flags;
4387         if (flags & MSG_DONTWAIT)
4388                 req->flags |= REQ_F_NOWAIT;
4389         else if (force_nonblock)
4390                 flags |= MSG_DONTWAIT;
4391
4392         ret = __sys_recvmsg_sock(sock, &kmsg->msg, req->sr_msg.umsg,
4393                                         kmsg->uaddr, flags);
4394         if (force_nonblock && ret == -EAGAIN)
4395                 return io_setup_async_msg(req, kmsg);
4396         if (ret == -ERESTARTSYS)
4397                 ret = -EINTR;
4398
4399         if (req->flags & REQ_F_BUFFER_SELECTED)
4400                 cflags = io_put_recv_kbuf(req);
4401         if (kmsg->iov != kmsg->fast_iov)
4402                 kfree(kmsg->iov);
4403         req->flags &= ~REQ_F_NEED_CLEANUP;
4404         if (ret < 0)
4405                 req_set_fail_links(req);
4406         __io_req_complete(req, ret, cflags, cs);
4407         return 0;
4408 }
4409
4410 static int io_recv(struct io_kiocb *req, bool force_nonblock,
4411                    struct io_comp_state *cs)
4412 {
4413         struct io_buffer *kbuf;
4414         struct io_sr_msg *sr = &req->sr_msg;
4415         struct msghdr msg;
4416         void __user *buf = sr->buf;
4417         struct socket *sock;
4418         struct iovec iov;
4419         unsigned flags;
4420         int ret, cflags = 0;
4421
4422         sock = sock_from_file(req->file, &ret);
4423         if (unlikely(!sock))
4424                 return ret;
4425
4426         if (req->flags & REQ_F_BUFFER_SELECT) {
4427                 kbuf = io_recv_buffer_select(req, !force_nonblock);
4428                 if (IS_ERR(kbuf))
4429                         return PTR_ERR(kbuf);
4430                 buf = u64_to_user_ptr(kbuf->addr);
4431         }
4432
4433         ret = import_single_range(READ, buf, sr->len, &iov, &msg.msg_iter);
4434         if (unlikely(ret))
4435                 goto out_free;
4436
4437         msg.msg_name = NULL;
4438         msg.msg_control = NULL;
4439         msg.msg_controllen = 0;
4440         msg.msg_namelen = 0;
4441         msg.msg_iocb = NULL;
4442         msg.msg_flags = 0;
4443
4444         flags = req->sr_msg.msg_flags;
4445         if (flags & MSG_DONTWAIT)
4446                 req->flags |= REQ_F_NOWAIT;
4447         else if (force_nonblock)
4448                 flags |= MSG_DONTWAIT;
4449
4450         ret = sock_recvmsg(sock, &msg, flags);
4451         if (force_nonblock && ret == -EAGAIN)
4452                 return -EAGAIN;
4453         if (ret == -ERESTARTSYS)
4454                 ret = -EINTR;
4455 out_free:
4456         if (req->flags & REQ_F_BUFFER_SELECTED)
4457                 cflags = io_put_recv_kbuf(req);
4458         if (ret < 0)
4459                 req_set_fail_links(req);
4460         __io_req_complete(req, ret, cflags, cs);
4461         return 0;
4462 }
4463
4464 static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4465 {
4466         struct io_accept *accept = &req->accept;
4467
4468         if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
4469                 return -EINVAL;
4470         if (sqe->ioprio || sqe->len || sqe->buf_index)
4471                 return -EINVAL;
4472
4473         accept->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
4474         accept->addr_len = u64_to_user_ptr(READ_ONCE(sqe->addr2));
4475         accept->flags = READ_ONCE(sqe->accept_flags);
4476         accept->nofile = rlimit(RLIMIT_NOFILE);
4477         return 0;
4478 }
4479
4480 static int io_accept(struct io_kiocb *req, bool force_nonblock,
4481                      struct io_comp_state *cs)
4482 {
4483         struct io_accept *accept = &req->accept;
4484         unsigned int file_flags = force_nonblock ? O_NONBLOCK : 0;
4485         int ret;
4486
4487         if (req->file->f_flags & O_NONBLOCK)
4488                 req->flags |= REQ_F_NOWAIT;
4489
4490         ret = __sys_accept4_file(req->file, file_flags, accept->addr,
4491                                         accept->addr_len, accept->flags,
4492                                         accept->nofile);
4493         if (ret == -EAGAIN && force_nonblock)
4494                 return -EAGAIN;
4495         if (ret < 0) {
4496                 if (ret == -ERESTARTSYS)
4497                         ret = -EINTR;
4498                 req_set_fail_links(req);
4499         }
4500         __io_req_complete(req, ret, 0, cs);
4501         return 0;
4502 }
4503
4504 static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4505 {
4506         struct io_connect *conn = &req->connect;
4507         struct io_async_ctx *io = req->io;
4508
4509         if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
4510                 return -EINVAL;
4511         if (sqe->ioprio || sqe->len || sqe->buf_index || sqe->rw_flags)
4512                 return -EINVAL;
4513
4514         conn->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
4515         conn->addr_len =  READ_ONCE(sqe->addr2);
4516
4517         if (!io)
4518                 return 0;
4519
4520         return move_addr_to_kernel(conn->addr, conn->addr_len,
4521                                         &io->connect.address);
4522 }
4523
4524 static int io_connect(struct io_kiocb *req, bool force_nonblock,
4525                       struct io_comp_state *cs)
4526 {
4527         struct io_async_ctx __io, *io;
4528         unsigned file_flags;
4529         int ret;
4530
4531         if (req->io) {
4532                 io = req->io;
4533         } else {
4534                 ret = move_addr_to_kernel(req->connect.addr,
4535                                                 req->connect.addr_len,
4536                                                 &__io.connect.address);
4537                 if (ret)
4538                         goto out;
4539                 io = &__io;
4540         }
4541
4542         file_flags = force_nonblock ? O_NONBLOCK : 0;
4543
4544         ret = __sys_connect_file(req->file, &io->connect.address,
4545                                         req->connect.addr_len, file_flags);
4546         if ((ret == -EAGAIN || ret == -EINPROGRESS) && force_nonblock) {
4547                 if (req->io)
4548                         return -EAGAIN;
4549                 if (io_alloc_async_ctx(req)) {
4550                         ret = -ENOMEM;
4551                         goto out;
4552                 }
4553                 memcpy(&req->io->connect, &__io.connect, sizeof(__io.connect));
4554                 return -EAGAIN;
4555         }
4556         if (ret == -ERESTARTSYS)
4557                 ret = -EINTR;
4558 out:
4559         if (ret < 0)
4560                 req_set_fail_links(req);
4561         __io_req_complete(req, ret, 0, cs);
4562         return 0;
4563 }
4564 #else /* !CONFIG_NET */
4565 static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4566 {
4567         return -EOPNOTSUPP;
4568 }
4569
4570 static int io_sendmsg(struct io_kiocb *req, bool force_nonblock,
4571                       struct io_comp_state *cs)
4572 {
4573         return -EOPNOTSUPP;
4574 }
4575
4576 static int io_send(struct io_kiocb *req, bool force_nonblock,
4577                    struct io_comp_state *cs)
4578 {
4579         return -EOPNOTSUPP;
4580 }
4581
4582 static int io_recvmsg_prep(struct io_kiocb *req,
4583                            const struct io_uring_sqe *sqe)
4584 {
4585         return -EOPNOTSUPP;
4586 }
4587
4588 static int io_recvmsg(struct io_kiocb *req, bool force_nonblock,
4589                       struct io_comp_state *cs)
4590 {
4591         return -EOPNOTSUPP;
4592 }
4593
4594 static int io_recv(struct io_kiocb *req, bool force_nonblock,
4595                    struct io_comp_state *cs)
4596 {
4597         return -EOPNOTSUPP;
4598 }
4599
4600 static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4601 {
4602         return -EOPNOTSUPP;
4603 }
4604
4605 static int io_accept(struct io_kiocb *req, bool force_nonblock,
4606                      struct io_comp_state *cs)
4607 {
4608         return -EOPNOTSUPP;
4609 }
4610
4611 static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4612 {
4613         return -EOPNOTSUPP;
4614 }
4615
4616 static int io_connect(struct io_kiocb *req, bool force_nonblock,
4617                       struct io_comp_state *cs)
4618 {
4619         return -EOPNOTSUPP;
4620 }
4621 #endif /* CONFIG_NET */
4622
4623 struct io_poll_table {
4624         struct poll_table_struct pt;
4625         struct io_kiocb *req;
4626         int error;
4627 };
4628
4629 static int __io_async_wake(struct io_kiocb *req, struct io_poll_iocb *poll,
4630                            __poll_t mask, task_work_func_t func)
4631 {
4632         bool twa_signal_ok;
4633         int ret;
4634
4635         /* for instances that support it check for an event match first: */
4636         if (mask && !(mask & poll->events))
4637                 return 0;
4638
4639         trace_io_uring_task_add(req->ctx, req->opcode, req->user_data, mask);
4640
4641         list_del_init(&poll->wait.entry);
4642
4643         req->result = mask;
4644         init_task_work(&req->task_work, func);
4645         percpu_ref_get(&req->ctx->refs);
4646
4647         /*
4648          * If we using the signalfd wait_queue_head for this wakeup, then
4649          * it's not safe to use TWA_SIGNAL as we could be recursing on the
4650          * tsk->sighand->siglock on doing the wakeup. Should not be needed
4651          * either, as the normal wakeup will suffice.
4652          */
4653         twa_signal_ok = (poll->head != &req->task->sighand->signalfd_wqh);
4654
4655         /*
4656          * If this fails, then the task is exiting. When a task exits, the
4657          * work gets canceled, so just cancel this request as well instead
4658          * of executing it. We can't safely execute it anyway, as we may not
4659          * have the needed state needed for it anyway.
4660          */
4661         ret = io_req_task_work_add(req, &req->task_work, twa_signal_ok);
4662         if (unlikely(ret)) {
4663                 struct task_struct *tsk;
4664
4665                 WRITE_ONCE(poll->canceled, true);
4666                 tsk = io_wq_get_task(req->ctx->io_wq);
4667                 task_work_add(tsk, &req->task_work, 0);
4668                 wake_up_process(tsk);
4669         }
4670         return 1;
4671 }
4672
4673 static bool io_poll_rewait(struct io_kiocb *req, struct io_poll_iocb *poll)
4674         __acquires(&req->ctx->completion_lock)
4675 {
4676         struct io_ring_ctx *ctx = req->ctx;
4677
4678         if (!req->result && !READ_ONCE(poll->canceled)) {
4679                 struct poll_table_struct pt = { ._key = poll->events };
4680
4681                 req->result = vfs_poll(req->file, &pt) & poll->events;
4682         }
4683
4684         spin_lock_irq(&ctx->completion_lock);
4685         if (!req->result && !READ_ONCE(poll->canceled)) {
4686                 add_wait_queue(poll->head, &poll->wait);
4687                 return true;
4688         }
4689
4690         return false;
4691 }
4692
4693 static struct io_poll_iocb *io_poll_get_double(struct io_kiocb *req)
4694 {
4695         /* pure poll stashes this in ->io, poll driven retry elsewhere */
4696         if (req->opcode == IORING_OP_POLL_ADD)
4697                 return (struct io_poll_iocb *) req->io;
4698         return req->apoll->double_poll;
4699 }
4700
4701 static struct io_poll_iocb *io_poll_get_single(struct io_kiocb *req)
4702 {
4703         if (req->opcode == IORING_OP_POLL_ADD)
4704                 return &req->poll;
4705         return &req->apoll->poll;
4706 }
4707
4708 static void io_poll_remove_double(struct io_kiocb *req)
4709 {
4710         struct io_poll_iocb *poll = io_poll_get_double(req);
4711
4712         lockdep_assert_held(&req->ctx->completion_lock);
4713
4714         if (poll && poll->head) {
4715                 struct wait_queue_head *head = poll->head;
4716
4717                 spin_lock(&head->lock);
4718                 list_del_init(&poll->wait.entry);
4719                 if (poll->wait.private)
4720                         refcount_dec(&req->refs);
4721                 poll->head = NULL;
4722                 spin_unlock(&head->lock);
4723         }
4724 }
4725
4726 static void io_poll_complete(struct io_kiocb *req, __poll_t mask, int error)
4727 {
4728         struct io_ring_ctx *ctx = req->ctx;
4729
4730         io_poll_remove_double(req);
4731         req->poll.done = true;
4732         io_cqring_fill_event(req, error ? error : mangle_poll(mask));
4733         io_commit_cqring(ctx);
4734 }
4735
4736 static void io_poll_task_handler(struct io_kiocb *req, struct io_kiocb **nxt)
4737 {
4738         struct io_ring_ctx *ctx = req->ctx;
4739
4740         if (io_poll_rewait(req, &req->poll)) {
4741                 spin_unlock_irq(&ctx->completion_lock);
4742                 return;
4743         }
4744
4745         hash_del(&req->hash_node);
4746         io_poll_complete(req, req->result, 0);
4747         req->flags |= REQ_F_COMP_LOCKED;
4748         *nxt = io_put_req_find_next(req);
4749         spin_unlock_irq(&ctx->completion_lock);
4750
4751         io_cqring_ev_posted(ctx);
4752 }
4753
4754 static void io_poll_task_func(struct callback_head *cb)
4755 {
4756         struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
4757         struct io_ring_ctx *ctx = req->ctx;
4758         struct io_kiocb *nxt = NULL;
4759
4760         io_poll_task_handler(req, &nxt);
4761         if (nxt)
4762                 __io_req_task_submit(nxt);
4763         percpu_ref_put(&ctx->refs);
4764 }
4765
4766 static int io_poll_double_wake(struct wait_queue_entry *wait, unsigned mode,
4767                                int sync, void *key)
4768 {
4769         struct io_kiocb *req = wait->private;
4770         struct io_poll_iocb *poll = io_poll_get_single(req);
4771         __poll_t mask = key_to_poll(key);
4772
4773         /* for instances that support it check for an event match first: */
4774         if (mask && !(mask & poll->events))
4775                 return 0;
4776
4777         list_del_init(&wait->entry);
4778
4779         if (poll && poll->head) {
4780                 bool done;
4781
4782                 spin_lock(&poll->head->lock);
4783                 done = list_empty(&poll->wait.entry);
4784                 if (!done)
4785                         list_del_init(&poll->wait.entry);
4786                 /* make sure double remove sees this as being gone */
4787                 wait->private = NULL;
4788                 spin_unlock(&poll->head->lock);
4789                 if (!done)
4790                         __io_async_wake(req, poll, mask, io_poll_task_func);
4791         }
4792         refcount_dec(&req->refs);
4793         return 1;
4794 }
4795
4796 static void io_init_poll_iocb(struct io_poll_iocb *poll, __poll_t events,
4797                               wait_queue_func_t wake_func)
4798 {
4799         poll->head = NULL;
4800         poll->done = false;
4801         poll->canceled = false;
4802         poll->events = events;
4803         INIT_LIST_HEAD(&poll->wait.entry);
4804         init_waitqueue_func_entry(&poll->wait, wake_func);
4805 }
4806
4807 static void __io_queue_proc(struct io_poll_iocb *poll, struct io_poll_table *pt,
4808                             struct wait_queue_head *head,
4809                             struct io_poll_iocb **poll_ptr)
4810 {
4811         struct io_kiocb *req = pt->req;
4812
4813         /*
4814          * If poll->head is already set, it's because the file being polled
4815          * uses multiple waitqueues for poll handling (eg one for read, one
4816          * for write). Setup a separate io_poll_iocb if this happens.
4817          */
4818         if (unlikely(poll->head)) {
4819                 /* already have a 2nd entry, fail a third attempt */
4820                 if (*poll_ptr) {
4821                         pt->error = -EINVAL;
4822                         return;
4823                 }
4824                 poll = kmalloc(sizeof(*poll), GFP_ATOMIC);
4825                 if (!poll) {
4826                         pt->error = -ENOMEM;
4827                         return;
4828                 }
4829                 io_init_poll_iocb(poll, req->poll.events, io_poll_double_wake);
4830                 refcount_inc(&req->refs);
4831                 poll->wait.private = req;
4832                 *poll_ptr = poll;
4833         }
4834
4835         pt->error = 0;
4836         poll->head = head;
4837
4838         if (poll->events & EPOLLEXCLUSIVE)
4839                 add_wait_queue_exclusive(head, &poll->wait);
4840         else
4841                 add_wait_queue(head, &poll->wait);
4842 }
4843
4844 static void io_async_queue_proc(struct file *file, struct wait_queue_head *head,
4845                                struct poll_table_struct *p)
4846 {
4847         struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
4848         struct async_poll *apoll = pt->req->apoll;
4849
4850         __io_queue_proc(&apoll->poll, pt, head, &apoll->double_poll);
4851 }
4852
4853 static void io_async_task_func(struct callback_head *cb)
4854 {
4855         struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
4856         struct async_poll *apoll = req->apoll;
4857         struct io_ring_ctx *ctx = req->ctx;
4858
4859         trace_io_uring_task_run(req->ctx, req->opcode, req->user_data);
4860
4861         if (io_poll_rewait(req, &apoll->poll)) {
4862                 spin_unlock_irq(&ctx->completion_lock);
4863                 percpu_ref_put(&ctx->refs);
4864                 return;
4865         }
4866
4867         /* If req is still hashed, it cannot have been canceled. Don't check. */
4868         if (hash_hashed(&req->hash_node))
4869                 hash_del(&req->hash_node);
4870
4871         io_poll_remove_double(req);
4872         spin_unlock_irq(&ctx->completion_lock);
4873
4874         if (!READ_ONCE(apoll->poll.canceled))
4875                 __io_req_task_submit(req);
4876         else
4877                 __io_req_task_cancel(req, -ECANCELED);
4878
4879         percpu_ref_put(&ctx->refs);
4880         kfree(apoll->double_poll);
4881         kfree(apoll);
4882 }
4883
4884 static int io_async_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
4885                         void *key)
4886 {
4887         struct io_kiocb *req = wait->private;
4888         struct io_poll_iocb *poll = &req->apoll->poll;
4889
4890         trace_io_uring_poll_wake(req->ctx, req->opcode, req->user_data,
4891                                         key_to_poll(key));
4892
4893         return __io_async_wake(req, poll, key_to_poll(key), io_async_task_func);
4894 }
4895
4896 static void io_poll_req_insert(struct io_kiocb *req)
4897 {
4898         struct io_ring_ctx *ctx = req->ctx;
4899         struct hlist_head *list;
4900
4901         list = &ctx->cancel_hash[hash_long(req->user_data, ctx->cancel_hash_bits)];
4902         hlist_add_head(&req->hash_node, list);
4903 }
4904
4905 static __poll_t __io_arm_poll_handler(struct io_kiocb *req,
4906                                       struct io_poll_iocb *poll,
4907                                       struct io_poll_table *ipt, __poll_t mask,
4908                                       wait_queue_func_t wake_func)
4909         __acquires(&ctx->completion_lock)
4910 {
4911         struct io_ring_ctx *ctx = req->ctx;
4912         bool cancel = false;
4913
4914         io_init_poll_iocb(poll, mask, wake_func);
4915         poll->file = req->file;
4916         poll->wait.private = req;
4917
4918         ipt->pt._key = mask;
4919         ipt->req = req;
4920         ipt->error = -EINVAL;
4921
4922         mask = vfs_poll(req->file, &ipt->pt) & poll->events;
4923
4924         spin_lock_irq(&ctx->completion_lock);
4925         if (likely(poll->head)) {
4926                 spin_lock(&poll->head->lock);
4927                 if (unlikely(list_empty(&poll->wait.entry))) {
4928                         if (ipt->error)
4929                                 cancel = true;
4930                         ipt->error = 0;
4931                         mask = 0;
4932                 }
4933                 if (mask || ipt->error)
4934                         list_del_init(&poll->wait.entry);
4935                 else if (cancel)
4936                         WRITE_ONCE(poll->canceled, true);
4937                 else if (!poll->done) /* actually waiting for an event */
4938                         io_poll_req_insert(req);
4939                 spin_unlock(&poll->head->lock);
4940         }
4941
4942         return mask;
4943 }
4944
4945 static bool io_arm_poll_handler(struct io_kiocb *req)
4946 {
4947         const struct io_op_def *def = &io_op_defs[req->opcode];
4948         struct io_ring_ctx *ctx = req->ctx;
4949         struct async_poll *apoll;
4950         struct io_poll_table ipt;
4951         __poll_t mask, ret;
4952         int rw;
4953
4954         if (!req->file || !file_can_poll(req->file))
4955                 return false;
4956         if (req->flags & REQ_F_POLLED)
4957                 return false;
4958         if (def->pollin)
4959                 rw = READ;
4960         else if (def->pollout)
4961                 rw = WRITE;
4962         else
4963                 return false;
4964         /* if we can't nonblock try, then no point in arming a poll handler */
4965         if (!io_file_supports_async(req->file, rw))
4966                 return false;
4967
4968         apoll = kmalloc(sizeof(*apoll), GFP_ATOMIC);
4969         if (unlikely(!apoll))
4970                 return false;
4971         apoll->double_poll = NULL;
4972
4973         req->flags |= REQ_F_POLLED;
4974         req->apoll = apoll;
4975         INIT_HLIST_NODE(&req->hash_node);
4976
4977         mask = 0;
4978         if (def->pollin)
4979                 mask |= POLLIN | POLLRDNORM;
4980         if (def->pollout)
4981                 mask |= POLLOUT | POLLWRNORM;
4982         mask |= POLLERR | POLLPRI;
4983
4984         ipt.pt._qproc = io_async_queue_proc;
4985
4986         ret = __io_arm_poll_handler(req, &apoll->poll, &ipt, mask,
4987                                         io_async_wake);
4988         if (ret || ipt.error) {
4989                 io_poll_remove_double(req);
4990                 spin_unlock_irq(&ctx->completion_lock);
4991                 kfree(apoll->double_poll);
4992                 kfree(apoll);
4993                 return false;
4994         }
4995         spin_unlock_irq(&ctx->completion_lock);
4996         trace_io_uring_poll_arm(ctx, req->opcode, req->user_data, mask,
4997                                         apoll->poll.events);
4998         return true;
4999 }
5000
5001 static bool __io_poll_remove_one(struct io_kiocb *req,
5002                                  struct io_poll_iocb *poll)
5003 {
5004         bool do_complete = false;
5005
5006         spin_lock(&poll->head->lock);
5007         WRITE_ONCE(poll->canceled, true);
5008         if (!list_empty(&poll->wait.entry)) {
5009                 list_del_init(&poll->wait.entry);
5010                 do_complete = true;
5011         }
5012         spin_unlock(&poll->head->lock);
5013         hash_del(&req->hash_node);
5014         return do_complete;
5015 }
5016
5017 static bool io_poll_remove_one(struct io_kiocb *req)
5018 {
5019         bool do_complete;
5020
5021         io_poll_remove_double(req);
5022
5023         if (req->opcode == IORING_OP_POLL_ADD) {
5024                 do_complete = __io_poll_remove_one(req, &req->poll);
5025         } else {
5026                 struct async_poll *apoll = req->apoll;
5027
5028                 /* non-poll requests have submit ref still */
5029                 do_complete = __io_poll_remove_one(req, &apoll->poll);
5030                 if (do_complete) {
5031                         io_put_req(req);
5032                         kfree(apoll->double_poll);
5033                         kfree(apoll);
5034                 }
5035         }
5036
5037         if (do_complete) {
5038                 io_cqring_fill_event(req, -ECANCELED);
5039                 io_commit_cqring(req->ctx);
5040                 req->flags |= REQ_F_COMP_LOCKED;
5041                 req_set_fail_links(req);
5042                 io_put_req(req);
5043         }
5044
5045         return do_complete;
5046 }
5047
5048 /*
5049  * Returns true if we found and killed one or more poll requests
5050  */
5051 static bool io_poll_remove_all(struct io_ring_ctx *ctx, struct task_struct *tsk)
5052 {
5053         struct hlist_node *tmp;
5054         struct io_kiocb *req;
5055         int posted = 0, i;
5056
5057         spin_lock_irq(&ctx->completion_lock);
5058         for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
5059                 struct hlist_head *list;
5060
5061                 list = &ctx->cancel_hash[i];
5062                 hlist_for_each_entry_safe(req, tmp, list, hash_node) {
5063                         if (io_task_match(req, tsk))
5064                                 posted += io_poll_remove_one(req);
5065                 }
5066         }
5067         spin_unlock_irq(&ctx->completion_lock);
5068
5069         if (posted)
5070                 io_cqring_ev_posted(ctx);
5071
5072         return posted != 0;
5073 }
5074
5075 static int io_poll_cancel(struct io_ring_ctx *ctx, __u64 sqe_addr)
5076 {
5077         struct hlist_head *list;
5078         struct io_kiocb *req;
5079
5080         list = &ctx->cancel_hash[hash_long(sqe_addr, ctx->cancel_hash_bits)];
5081         hlist_for_each_entry(req, list, hash_node) {
5082                 if (sqe_addr != req->user_data)
5083                         continue;
5084                 if (io_poll_remove_one(req))
5085                         return 0;
5086                 return -EALREADY;
5087         }
5088
5089         return -ENOENT;
5090 }
5091
5092 static int io_poll_remove_prep(struct io_kiocb *req,
5093                                const struct io_uring_sqe *sqe)
5094 {
5095         if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
5096                 return -EINVAL;
5097         if (sqe->ioprio || sqe->off || sqe->len || sqe->buf_index ||
5098             sqe->poll_events)
5099                 return -EINVAL;
5100
5101         req->poll.addr = READ_ONCE(sqe->addr);
5102         return 0;
5103 }
5104
5105 /*
5106  * Find a running poll command that matches one specified in sqe->addr,
5107  * and remove it if found.
5108  */
5109 static int io_poll_remove(struct io_kiocb *req)
5110 {
5111         struct io_ring_ctx *ctx = req->ctx;
5112         u64 addr;
5113         int ret;
5114
5115         addr = req->poll.addr;
5116         spin_lock_irq(&ctx->completion_lock);
5117         ret = io_poll_cancel(ctx, addr);
5118         spin_unlock_irq(&ctx->completion_lock);
5119
5120         if (ret < 0)
5121                 req_set_fail_links(req);
5122         io_req_complete(req, ret);
5123         return 0;
5124 }
5125
5126 static int io_poll_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
5127                         void *key)
5128 {
5129         struct io_kiocb *req = wait->private;
5130         struct io_poll_iocb *poll = &req->poll;
5131
5132         return __io_async_wake(req, poll, key_to_poll(key), io_poll_task_func);
5133 }
5134
5135 static void io_poll_queue_proc(struct file *file, struct wait_queue_head *head,
5136                                struct poll_table_struct *p)
5137 {
5138         struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
5139
5140         __io_queue_proc(&pt->req->poll, pt, head, (struct io_poll_iocb **) &pt->req->io);
5141 }
5142
5143 static int io_poll_add_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
5144 {
5145         struct io_poll_iocb *poll = &req->poll;
5146         u32 events;
5147
5148         if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
5149                 return -EINVAL;
5150         if (sqe->addr || sqe->ioprio || sqe->off || sqe->len || sqe->buf_index)
5151                 return -EINVAL;
5152         if (!poll->file)
5153                 return -EBADF;
5154
5155         events = READ_ONCE(sqe->poll32_events);
5156 #ifdef __BIG_ENDIAN
5157         events = swahw32(events);
5158 #endif
5159         poll->events = demangle_poll(events) | EPOLLERR | EPOLLHUP |
5160                        (events & EPOLLEXCLUSIVE);
5161         return 0;
5162 }
5163
5164 static int io_poll_add(struct io_kiocb *req)
5165 {
5166         struct io_poll_iocb *poll = &req->poll;
5167         struct io_ring_ctx *ctx = req->ctx;
5168         struct io_poll_table ipt;
5169         __poll_t mask;
5170
5171         INIT_HLIST_NODE(&req->hash_node);
5172         ipt.pt._qproc = io_poll_queue_proc;
5173
5174         mask = __io_arm_poll_handler(req, &req->poll, &ipt, poll->events,
5175                                         io_poll_wake);
5176
5177         if (mask) { /* no async, we'd stolen it */
5178                 ipt.error = 0;
5179                 io_poll_complete(req, mask, 0);
5180         }
5181         spin_unlock_irq(&ctx->completion_lock);
5182
5183         if (mask) {
5184                 io_cqring_ev_posted(ctx);
5185                 io_put_req(req);
5186         }
5187         return ipt.error;
5188 }
5189
5190 static enum hrtimer_restart io_timeout_fn(struct hrtimer *timer)
5191 {
5192         struct io_timeout_data *data = container_of(timer,
5193                                                 struct io_timeout_data, timer);
5194         struct io_kiocb *req = data->req;
5195         struct io_ring_ctx *ctx = req->ctx;
5196         unsigned long flags;
5197
5198         spin_lock_irqsave(&ctx->completion_lock, flags);
5199         atomic_set(&req->ctx->cq_timeouts,
5200                 atomic_read(&req->ctx->cq_timeouts) + 1);
5201
5202         /*
5203          * We could be racing with timeout deletion. If the list is empty,
5204          * then timeout lookup already found it and will be handling it.
5205          */
5206         if (!list_empty(&req->timeout.list))
5207                 list_del_init(&req->timeout.list);
5208
5209         io_cqring_fill_event(req, -ETIME);
5210         io_commit_cqring(ctx);
5211         spin_unlock_irqrestore(&ctx->completion_lock, flags);
5212
5213         io_cqring_ev_posted(ctx);
5214         req_set_fail_links(req);
5215         io_put_req(req);
5216         return HRTIMER_NORESTART;
5217 }
5218
5219 static int __io_timeout_cancel(struct io_kiocb *req)
5220 {
5221         int ret;
5222
5223         list_del_init(&req->timeout.list);
5224
5225         ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
5226         if (ret == -1)
5227                 return -EALREADY;
5228
5229         req_set_fail_links(req);
5230         req->flags |= REQ_F_COMP_LOCKED;
5231         io_cqring_fill_event(req, -ECANCELED);
5232         io_put_req(req);
5233         return 0;
5234 }
5235
5236 static int io_timeout_cancel(struct io_ring_ctx *ctx, __u64 user_data)
5237 {
5238         struct io_kiocb *req;
5239         int ret = -ENOENT;
5240
5241         list_for_each_entry(req, &ctx->timeout_list, timeout.list) {
5242                 if (user_data == req->user_data) {
5243                         ret = 0;
5244                         break;
5245                 }
5246         }
5247
5248         if (ret == -ENOENT)
5249                 return ret;
5250
5251         return __io_timeout_cancel(req);
5252 }
5253
5254 static int io_timeout_remove_prep(struct io_kiocb *req,
5255                                   const struct io_uring_sqe *sqe)
5256 {
5257         if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
5258                 return -EINVAL;
5259         if (unlikely(req->flags & (REQ_F_FIXED_FILE | REQ_F_BUFFER_SELECT)))
5260                 return -EINVAL;
5261         if (sqe->ioprio || sqe->buf_index || sqe->len)
5262                 return -EINVAL;
5263
5264         req->timeout.addr = READ_ONCE(sqe->addr);
5265         req->timeout.flags = READ_ONCE(sqe->timeout_flags);
5266         if (req->timeout.flags)
5267                 return -EINVAL;
5268
5269         return 0;
5270 }
5271
5272 /*
5273  * Remove or update an existing timeout command
5274  */
5275 static int io_timeout_remove(struct io_kiocb *req)
5276 {
5277         struct io_ring_ctx *ctx = req->ctx;
5278         int ret;
5279
5280         spin_lock_irq(&ctx->completion_lock);
5281         ret = io_timeout_cancel(ctx, req->timeout.addr);
5282
5283         io_cqring_fill_event(req, ret);
5284         io_commit_cqring(ctx);
5285         spin_unlock_irq(&ctx->completion_lock);
5286         io_cqring_ev_posted(ctx);
5287         if (ret < 0)
5288                 req_set_fail_links(req);
5289         io_put_req(req);
5290         return 0;
5291 }
5292
5293 static int io_timeout_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
5294                            bool is_timeout_link)
5295 {
5296         struct io_timeout_data *data;
5297         unsigned flags;
5298         u32 off = READ_ONCE(sqe->off);
5299
5300         if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
5301                 return -EINVAL;
5302         if (sqe->ioprio || sqe->buf_index || sqe->len != 1)
5303                 return -EINVAL;
5304         if (off && is_timeout_link)
5305                 return -EINVAL;
5306         flags = READ_ONCE(sqe->timeout_flags);
5307         if (flags & ~IORING_TIMEOUT_ABS)
5308                 return -EINVAL;
5309
5310         req->timeout.off = off;
5311
5312         if (!req->io && io_alloc_async_ctx(req))
5313                 return -ENOMEM;
5314
5315         data = &req->io->timeout;
5316         data->req = req;
5317
5318         if (get_timespec64(&data->ts, u64_to_user_ptr(sqe->addr)))
5319                 return -EFAULT;
5320
5321         if (flags & IORING_TIMEOUT_ABS)
5322                 data->mode = HRTIMER_MODE_ABS;
5323         else
5324                 data->mode = HRTIMER_MODE_REL;
5325
5326         hrtimer_init(&data->timer, CLOCK_MONOTONIC, data->mode);
5327         return 0;
5328 }
5329
5330 static int io_timeout(struct io_kiocb *req)
5331 {
5332         struct io_ring_ctx *ctx = req->ctx;
5333         struct io_timeout_data *data = &req->io->timeout;
5334         struct list_head *entry;
5335         u32 tail, off = req->timeout.off;
5336
5337         spin_lock_irq(&ctx->completion_lock);
5338
5339         /*
5340          * sqe->off holds how many events that need to occur for this
5341          * timeout event to be satisfied. If it isn't set, then this is
5342          * a pure timeout request, sequence isn't used.
5343          */
5344         if (io_is_timeout_noseq(req)) {
5345                 entry = ctx->timeout_list.prev;
5346                 goto add;
5347         }
5348
5349         tail = ctx->cached_cq_tail - atomic_read(&ctx->cq_timeouts);
5350         req->timeout.target_seq = tail + off;
5351
5352         /*
5353          * Insertion sort, ensuring the first entry in the list is always
5354          * the one we need first.
5355          */
5356         list_for_each_prev(entry, &ctx->timeout_list) {
5357                 struct io_kiocb *nxt = list_entry(entry, struct io_kiocb,
5358                                                   timeout.list);
5359
5360                 if (io_is_timeout_noseq(nxt))
5361                         continue;
5362                 /* nxt.seq is behind @tail, otherwise would've been completed */
5363                 if (off >= nxt->timeout.target_seq - tail)
5364                         break;
5365         }
5366 add:
5367         list_add(&req->timeout.list, entry);
5368         data->timer.function = io_timeout_fn;
5369         hrtimer_start(&data->timer, timespec64_to_ktime(data->ts), data->mode);
5370         spin_unlock_irq(&ctx->completion_lock);
5371         return 0;
5372 }
5373
5374 static bool io_cancel_cb(struct io_wq_work *work, void *data)
5375 {
5376         struct io_kiocb *req = container_of(work, struct io_kiocb, work);
5377
5378         return req->user_data == (unsigned long) data;
5379 }
5380
5381 static int io_async_cancel_one(struct io_ring_ctx *ctx, void *sqe_addr)
5382 {
5383         enum io_wq_cancel cancel_ret;
5384         int ret = 0;
5385
5386         cancel_ret = io_wq_cancel_cb(ctx->io_wq, io_cancel_cb, sqe_addr, false);
5387         switch (cancel_ret) {
5388         case IO_WQ_CANCEL_OK:
5389                 ret = 0;
5390                 break;
5391         case IO_WQ_CANCEL_RUNNING:
5392                 ret = -EALREADY;
5393                 break;
5394         case IO_WQ_CANCEL_NOTFOUND:
5395                 ret = -ENOENT;
5396                 break;
5397         }
5398
5399         return ret;
5400 }
5401
5402 static void io_async_find_and_cancel(struct io_ring_ctx *ctx,
5403                                      struct io_kiocb *req, __u64 sqe_addr,
5404                                      int success_ret)
5405 {
5406         unsigned long flags;
5407         int ret;
5408
5409         ret = io_async_cancel_one(ctx, (void *) (unsigned long) sqe_addr);
5410         if (ret != -ENOENT) {
5411                 spin_lock_irqsave(&ctx->completion_lock, flags);
5412                 goto done;
5413         }
5414
5415         spin_lock_irqsave(&ctx->completion_lock, flags);
5416         ret = io_timeout_cancel(ctx, sqe_addr);
5417         if (ret != -ENOENT)
5418                 goto done;
5419         ret = io_poll_cancel(ctx, sqe_addr);
5420 done:
5421         if (!ret)
5422                 ret = success_ret;
5423         io_cqring_fill_event(req, ret);
5424         io_commit_cqring(ctx);
5425         spin_unlock_irqrestore(&ctx->completion_lock, flags);
5426         io_cqring_ev_posted(ctx);
5427
5428         if (ret < 0)
5429                 req_set_fail_links(req);
5430         io_put_req(req);
5431 }
5432
5433 static int io_async_cancel_prep(struct io_kiocb *req,
5434                                 const struct io_uring_sqe *sqe)
5435 {
5436         if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
5437                 return -EINVAL;
5438         if (unlikely(req->flags & (REQ_F_FIXED_FILE | REQ_F_BUFFER_SELECT)))
5439                 return -EINVAL;
5440         if (sqe->ioprio || sqe->off || sqe->len || sqe->cancel_flags)
5441                 return -EINVAL;
5442
5443         req->cancel.addr = READ_ONCE(sqe->addr);
5444         return 0;
5445 }
5446
5447 static int io_async_cancel(struct io_kiocb *req)
5448 {
5449         struct io_ring_ctx *ctx = req->ctx;
5450
5451         io_async_find_and_cancel(ctx, req, req->cancel.addr, 0);
5452         return 0;
5453 }
5454
5455 static int io_files_update_prep(struct io_kiocb *req,
5456                                 const struct io_uring_sqe *sqe)
5457 {
5458         if (unlikely(req->ctx->flags & IORING_SETUP_SQPOLL))
5459                 return -EINVAL;
5460         if (unlikely(req->flags & (REQ_F_FIXED_FILE | REQ_F_BUFFER_SELECT)))
5461                 return -EINVAL;
5462         if (sqe->ioprio || sqe->rw_flags)
5463                 return -EINVAL;
5464
5465         req->files_update.offset = READ_ONCE(sqe->off);
5466         req->files_update.nr_args = READ_ONCE(sqe->len);
5467         if (!req->files_update.nr_args)
5468                 return -EINVAL;
5469         req->files_update.arg = READ_ONCE(sqe->addr);
5470         return 0;
5471 }
5472
5473 static int io_files_update(struct io_kiocb *req, bool force_nonblock,
5474                            struct io_comp_state *cs)
5475 {
5476         struct io_ring_ctx *ctx = req->ctx;
5477         struct io_uring_files_update up;
5478         int ret;
5479
5480         if (force_nonblock)
5481                 return -EAGAIN;
5482
5483         up.offset = req->files_update.offset;
5484         up.fds = req->files_update.arg;
5485
5486         mutex_lock(&ctx->uring_lock);
5487         ret = __io_sqe_files_update(ctx, &up, req->files_update.nr_args);
5488         mutex_unlock(&ctx->uring_lock);
5489
5490         if (ret < 0)
5491                 req_set_fail_links(req);
5492         __io_req_complete(req, ret, 0, cs);
5493         return 0;
5494 }
5495
5496 static int io_req_defer_prep(struct io_kiocb *req,
5497                              const struct io_uring_sqe *sqe)
5498 {
5499         ssize_t ret = 0;
5500
5501         if (!sqe)
5502                 return 0;
5503
5504         if (io_alloc_async_ctx(req))
5505                 return -EAGAIN;
5506         ret = io_prep_work_files(req);
5507         if (unlikely(ret))
5508                 return ret;
5509
5510         io_prep_async_work(req);
5511
5512         switch (req->opcode) {
5513         case IORING_OP_NOP:
5514                 break;
5515         case IORING_OP_READV:
5516         case IORING_OP_READ_FIXED:
5517         case IORING_OP_READ:
5518                 ret = io_read_prep(req, sqe, true);
5519                 break;
5520         case IORING_OP_WRITEV:
5521         case IORING_OP_WRITE_FIXED:
5522         case IORING_OP_WRITE:
5523                 ret = io_write_prep(req, sqe, true);
5524                 break;
5525         case IORING_OP_POLL_ADD:
5526                 ret = io_poll_add_prep(req, sqe);
5527                 break;
5528         case IORING_OP_POLL_REMOVE:
5529                 ret = io_poll_remove_prep(req, sqe);
5530                 break;
5531         case IORING_OP_FSYNC:
5532                 ret = io_prep_fsync(req, sqe);
5533                 break;
5534         case IORING_OP_SYNC_FILE_RANGE:
5535                 ret = io_prep_sfr(req, sqe);
5536                 break;
5537         case IORING_OP_SENDMSG:
5538         case IORING_OP_SEND:
5539                 ret = io_sendmsg_prep(req, sqe);
5540                 break;
5541         case IORING_OP_RECVMSG:
5542         case IORING_OP_RECV:
5543                 ret = io_recvmsg_prep(req, sqe);
5544                 break;
5545         case IORING_OP_CONNECT:
5546                 ret = io_connect_prep(req, sqe);
5547                 break;
5548         case IORING_OP_TIMEOUT:
5549                 ret = io_timeout_prep(req, sqe, false);
5550                 break;
5551         case IORING_OP_TIMEOUT_REMOVE:
5552                 ret = io_timeout_remove_prep(req, sqe);
5553                 break;
5554         case IORING_OP_ASYNC_CANCEL:
5555                 ret = io_async_cancel_prep(req, sqe);
5556                 break;
5557         case IORING_OP_LINK_TIMEOUT:
5558                 ret = io_timeout_prep(req, sqe, true);
5559                 break;
5560         case IORING_OP_ACCEPT:
5561                 ret = io_accept_prep(req, sqe);
5562                 break;
5563         case IORING_OP_FALLOCATE:
5564                 ret = io_fallocate_prep(req, sqe);
5565                 break;
5566         case IORING_OP_OPENAT:
5567                 ret = io_openat_prep(req, sqe);
5568                 break;
5569         case IORING_OP_CLOSE:
5570                 ret = io_close_prep(req, sqe);
5571                 break;
5572         case IORING_OP_FILES_UPDATE:
5573                 ret = io_files_update_prep(req, sqe);
5574                 break;
5575         case IORING_OP_STATX:
5576                 ret = io_statx_prep(req, sqe);
5577                 break;
5578         case IORING_OP_FADVISE:
5579                 ret = io_fadvise_prep(req, sqe);
5580                 break;
5581         case IORING_OP_MADVISE:
5582                 ret = io_madvise_prep(req, sqe);
5583                 break;
5584         case IORING_OP_OPENAT2:
5585                 ret = io_openat2_prep(req, sqe);
5586                 break;
5587         case IORING_OP_EPOLL_CTL:
5588                 ret = io_epoll_ctl_prep(req, sqe);
5589                 break;
5590         case IORING_OP_SPLICE:
5591                 ret = io_splice_prep(req, sqe);
5592                 break;
5593         case IORING_OP_PROVIDE_BUFFERS:
5594                 ret = io_provide_buffers_prep(req, sqe);
5595                 break;
5596         case IORING_OP_REMOVE_BUFFERS:
5597                 ret = io_remove_buffers_prep(req, sqe);
5598                 break;
5599         case IORING_OP_TEE:
5600                 ret = io_tee_prep(req, sqe);
5601                 break;
5602         default:
5603                 printk_once(KERN_WARNING "io_uring: unhandled opcode %d\n",
5604                                 req->opcode);
5605                 ret = -EINVAL;
5606                 break;
5607         }
5608
5609         return ret;
5610 }
5611
5612 static u32 io_get_sequence(struct io_kiocb *req)
5613 {
5614         struct io_kiocb *pos;
5615         struct io_ring_ctx *ctx = req->ctx;
5616         u32 total_submitted, nr_reqs = 1;
5617
5618         if (req->flags & REQ_F_LINK_HEAD)
5619                 list_for_each_entry(pos, &req->link_list, link_list)
5620                         nr_reqs++;
5621
5622         total_submitted = ctx->cached_sq_head - ctx->cached_sq_dropped;
5623         return total_submitted - nr_reqs;
5624 }
5625
5626 static int io_req_defer(struct io_kiocb *req, const struct io_uring_sqe *sqe)
5627 {
5628         struct io_ring_ctx *ctx = req->ctx;
5629         struct io_defer_entry *de;
5630         int ret;
5631         u32 seq;
5632
5633         /* Still need defer if there is pending req in defer list. */
5634         if (likely(list_empty_careful(&ctx->defer_list) &&
5635                 !(req->flags & REQ_F_IO_DRAIN)))
5636                 return 0;
5637
5638         seq = io_get_sequence(req);
5639         /* Still a chance to pass the sequence check */
5640         if (!req_need_defer(req, seq) && list_empty_careful(&ctx->defer_list))
5641                 return 0;
5642
5643         if (!req->io) {
5644                 ret = io_req_defer_prep(req, sqe);
5645                 if (ret)
5646                         return ret;
5647         }
5648         io_prep_async_link(req);
5649         de = kmalloc(sizeof(*de), GFP_KERNEL);
5650         if (!de)
5651                 return -ENOMEM;
5652
5653         spin_lock_irq(&ctx->completion_lock);
5654         if (!req_need_defer(req, seq) && list_empty(&ctx->defer_list)) {
5655                 spin_unlock_irq(&ctx->completion_lock);
5656                 kfree(de);
5657                 io_queue_async_work(req);
5658                 return -EIOCBQUEUED;
5659         }
5660
5661         trace_io_uring_defer(ctx, req, req->user_data);
5662         de->req = req;
5663         de->seq = seq;
5664         list_add_tail(&de->list, &ctx->defer_list);
5665         spin_unlock_irq(&ctx->completion_lock);
5666         return -EIOCBQUEUED;
5667 }
5668
5669 static void io_req_drop_files(struct io_kiocb *req)
5670 {
5671         struct io_ring_ctx *ctx = req->ctx;
5672         unsigned long flags;
5673
5674         spin_lock_irqsave(&ctx->inflight_lock, flags);
5675         list_del(&req->inflight_entry);
5676         if (waitqueue_active(&ctx->inflight_wait))
5677                 wake_up(&ctx->inflight_wait);
5678         spin_unlock_irqrestore(&ctx->inflight_lock, flags);
5679         req->flags &= ~REQ_F_INFLIGHT;
5680         put_files_struct(req->work.files);
5681         put_nsproxy(req->work.nsproxy);
5682         req->work.files = NULL;
5683 }
5684
5685 static void __io_clean_op(struct io_kiocb *req)
5686 {
5687         struct io_async_ctx *io = req->io;
5688
5689         if (req->flags & REQ_F_BUFFER_SELECTED) {
5690                 switch (req->opcode) {
5691                 case IORING_OP_READV:
5692                 case IORING_OP_READ_FIXED:
5693                 case IORING_OP_READ:
5694                         kfree((void *)(unsigned long)req->rw.addr);
5695                         break;
5696                 case IORING_OP_RECVMSG:
5697                 case IORING_OP_RECV:
5698                         kfree(req->sr_msg.kbuf);
5699                         break;
5700                 }
5701                 req->flags &= ~REQ_F_BUFFER_SELECTED;
5702         }
5703
5704         if (req->flags & REQ_F_NEED_CLEANUP) {
5705                 switch (req->opcode) {
5706                 case IORING_OP_READV:
5707                 case IORING_OP_READ_FIXED:
5708                 case IORING_OP_READ:
5709                 case IORING_OP_WRITEV:
5710                 case IORING_OP_WRITE_FIXED:
5711                 case IORING_OP_WRITE:
5712                         if (io->rw.free_iovec)
5713                                 kfree(io->rw.free_iovec);
5714                         break;
5715                 case IORING_OP_RECVMSG:
5716                 case IORING_OP_SENDMSG:
5717                         if (io->msg.iov != io->msg.fast_iov)
5718                                 kfree(io->msg.iov);
5719                         break;
5720                 case IORING_OP_SPLICE:
5721                 case IORING_OP_TEE:
5722                         io_put_file(req, req->splice.file_in,
5723                                     (req->splice.flags & SPLICE_F_FD_IN_FIXED));
5724                         break;
5725                 case IORING_OP_OPENAT:
5726                 case IORING_OP_OPENAT2:
5727                         if (req->open.filename)
5728                                 putname(req->open.filename);
5729                         break;
5730                 }
5731                 req->flags &= ~REQ_F_NEED_CLEANUP;
5732         }
5733
5734         if (req->flags & REQ_F_INFLIGHT)
5735                 io_req_drop_files(req);
5736 }
5737
5738 static int io_issue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
5739                         bool force_nonblock, struct io_comp_state *cs)
5740 {
5741         struct io_ring_ctx *ctx = req->ctx;
5742         int ret;
5743
5744         switch (req->opcode) {
5745         case IORING_OP_NOP:
5746                 ret = io_nop(req, cs);
5747                 break;
5748         case IORING_OP_READV:
5749         case IORING_OP_READ_FIXED:
5750         case IORING_OP_READ:
5751                 if (sqe) {
5752                         ret = io_read_prep(req, sqe, force_nonblock);
5753                         if (ret < 0)
5754                                 break;
5755                 }
5756                 ret = io_read(req, force_nonblock, cs);
5757                 break;
5758         case IORING_OP_WRITEV:
5759         case IORING_OP_WRITE_FIXED:
5760         case IORING_OP_WRITE:
5761                 if (sqe) {
5762                         ret = io_write_prep(req, sqe, force_nonblock);
5763                         if (ret < 0)
5764                                 break;
5765                 }
5766                 ret = io_write(req, force_nonblock, cs);
5767                 break;
5768         case IORING_OP_FSYNC:
5769                 if (sqe) {
5770                         ret = io_prep_fsync(req, sqe);
5771                         if (ret < 0)
5772                                 break;
5773                 }
5774                 ret = io_fsync(req, force_nonblock);
5775                 break;
5776         case IORING_OP_POLL_ADD:
5777                 if (sqe) {
5778                         ret = io_poll_add_prep(req, sqe);
5779                         if (ret)
5780                                 break;
5781                 }
5782                 ret = io_poll_add(req);
5783                 break;
5784         case IORING_OP_POLL_REMOVE:
5785                 if (sqe) {
5786                         ret = io_poll_remove_prep(req, sqe);
5787                         if (ret < 0)
5788                                 break;
5789                 }
5790                 ret = io_poll_remove(req);
5791                 break;
5792         case IORING_OP_SYNC_FILE_RANGE:
5793                 if (sqe) {
5794                         ret = io_prep_sfr(req, sqe);
5795                         if (ret < 0)
5796                                 break;
5797                 }
5798                 ret = io_sync_file_range(req, force_nonblock);
5799                 break;
5800         case IORING_OP_SENDMSG:
5801         case IORING_OP_SEND:
5802                 if (sqe) {
5803                         ret = io_sendmsg_prep(req, sqe);
5804                         if (ret < 0)
5805                                 break;
5806                 }
5807                 if (req->opcode == IORING_OP_SENDMSG)
5808                         ret = io_sendmsg(req, force_nonblock, cs);
5809                 else
5810                         ret = io_send(req, force_nonblock, cs);
5811                 break;
5812         case IORING_OP_RECVMSG:
5813         case IORING_OP_RECV:
5814                 if (sqe) {
5815                         ret = io_recvmsg_prep(req, sqe);
5816                         if (ret)
5817                                 break;
5818                 }
5819                 if (req->opcode == IORING_OP_RECVMSG)
5820                         ret = io_recvmsg(req, force_nonblock, cs);
5821                 else
5822                         ret = io_recv(req, force_nonblock, cs);
5823                 break;
5824         case IORING_OP_TIMEOUT:
5825                 if (sqe) {
5826                         ret = io_timeout_prep(req, sqe, false);
5827                         if (ret)
5828                                 break;
5829                 }
5830                 ret = io_timeout(req);
5831                 break;
5832         case IORING_OP_TIMEOUT_REMOVE:
5833                 if (sqe) {
5834                         ret = io_timeout_remove_prep(req, sqe);
5835                         if (ret)
5836                                 break;
5837                 }
5838                 ret = io_timeout_remove(req);
5839                 break;
5840         case IORING_OP_ACCEPT:
5841                 if (sqe) {
5842                         ret = io_accept_prep(req, sqe);
5843                         if (ret)
5844                                 break;
5845                 }
5846                 ret = io_accept(req, force_nonblock, cs);
5847                 break;
5848         case IORING_OP_CONNECT:
5849                 if (sqe) {
5850                         ret = io_connect_prep(req, sqe);
5851                         if (ret)
5852                                 break;
5853                 }
5854                 ret = io_connect(req, force_nonblock, cs);
5855                 break;
5856         case IORING_OP_ASYNC_CANCEL:
5857                 if (sqe) {
5858                         ret = io_async_cancel_prep(req, sqe);
5859                         if (ret)
5860                                 break;
5861                 }
5862                 ret = io_async_cancel(req);
5863                 break;
5864         case IORING_OP_FALLOCATE:
5865                 if (sqe) {
5866                         ret = io_fallocate_prep(req, sqe);
5867                         if (ret)
5868                                 break;
5869                 }
5870                 ret = io_fallocate(req, force_nonblock);
5871                 break;
5872         case IORING_OP_OPENAT:
5873                 if (sqe) {
5874                         ret = io_openat_prep(req, sqe);
5875                         if (ret)
5876                                 break;
5877                 }
5878                 ret = io_openat(req, force_nonblock);
5879                 break;
5880         case IORING_OP_CLOSE:
5881                 if (sqe) {
5882                         ret = io_close_prep(req, sqe);
5883                         if (ret)
5884                                 break;
5885                 }
5886                 ret = io_close(req, force_nonblock, cs);
5887                 break;
5888         case IORING_OP_FILES_UPDATE:
5889                 if (sqe) {
5890                         ret = io_files_update_prep(req, sqe);
5891                         if (ret)
5892                                 break;
5893                 }
5894                 ret = io_files_update(req, force_nonblock, cs);
5895                 break;
5896         case IORING_OP_STATX:
5897                 if (sqe) {
5898                         ret = io_statx_prep(req, sqe);
5899                         if (ret)
5900                                 break;
5901                 }
5902                 ret = io_statx(req, force_nonblock);
5903                 break;
5904         case IORING_OP_FADVISE:
5905                 if (sqe) {
5906                         ret = io_fadvise_prep(req, sqe);
5907                         if (ret)
5908                                 break;
5909                 }
5910                 ret = io_fadvise(req, force_nonblock);
5911                 break;
5912         case IORING_OP_MADVISE:
5913                 if (sqe) {
5914                         ret = io_madvise_prep(req, sqe);
5915                         if (ret)
5916                                 break;
5917                 }
5918                 ret = io_madvise(req, force_nonblock);
5919                 break;
5920         case IORING_OP_OPENAT2:
5921                 if (sqe) {
5922                         ret = io_openat2_prep(req, sqe);
5923                         if (ret)
5924                                 break;
5925                 }
5926                 ret = io_openat2(req, force_nonblock);
5927                 break;
5928         case IORING_OP_EPOLL_CTL:
5929                 if (sqe) {
5930                         ret = io_epoll_ctl_prep(req, sqe);
5931                         if (ret)
5932                                 break;
5933                 }
5934                 ret = io_epoll_ctl(req, force_nonblock, cs);
5935                 break;
5936         case IORING_OP_SPLICE:
5937                 if (sqe) {
5938                         ret = io_splice_prep(req, sqe);
5939                         if (ret < 0)
5940                                 break;
5941                 }
5942                 ret = io_splice(req, force_nonblock);
5943                 break;
5944         case IORING_OP_PROVIDE_BUFFERS:
5945                 if (sqe) {
5946                         ret = io_provide_buffers_prep(req, sqe);
5947                         if (ret)
5948                                 break;
5949                 }
5950                 ret = io_provide_buffers(req, force_nonblock, cs);
5951                 break;
5952         case IORING_OP_REMOVE_BUFFERS:
5953                 if (sqe) {
5954                         ret = io_remove_buffers_prep(req, sqe);
5955                         if (ret)
5956                                 break;
5957                 }
5958                 ret = io_remove_buffers(req, force_nonblock, cs);
5959                 break;
5960         case IORING_OP_TEE:
5961                 if (sqe) {
5962                         ret = io_tee_prep(req, sqe);
5963                         if (ret < 0)
5964                                 break;
5965                 }
5966                 ret = io_tee(req, force_nonblock);
5967                 break;
5968         default:
5969                 ret = -EINVAL;
5970                 break;
5971         }
5972
5973         if (ret)
5974                 return ret;
5975
5976         /* If the op doesn't have a file, we're not polling for it */
5977         if ((ctx->flags & IORING_SETUP_IOPOLL) && req->file) {
5978                 const bool in_async = io_wq_current_is_worker();
5979
5980                 /* workqueue context doesn't hold uring_lock, grab it now */
5981                 if (in_async)
5982                         mutex_lock(&ctx->uring_lock);
5983
5984                 io_iopoll_req_issued(req);
5985
5986                 if (in_async)
5987                         mutex_unlock(&ctx->uring_lock);
5988         }
5989
5990         return 0;
5991 }
5992
5993 static struct io_wq_work *io_wq_submit_work(struct io_wq_work *work)
5994 {
5995         struct io_kiocb *req = container_of(work, struct io_kiocb, work);
5996         struct io_kiocb *timeout;
5997         int ret = 0;
5998
5999         timeout = io_prep_linked_timeout(req);
6000         if (timeout)
6001                 io_queue_linked_timeout(timeout);
6002
6003         /* if NO_CANCEL is set, we must still run the work */
6004         if ((work->flags & (IO_WQ_WORK_CANCEL|IO_WQ_WORK_NO_CANCEL)) ==
6005                                 IO_WQ_WORK_CANCEL) {
6006                 ret = -ECANCELED;
6007         }
6008
6009         if (!ret) {
6010                 do {
6011                         ret = io_issue_sqe(req, NULL, false, NULL);
6012                         /*
6013                          * We can get EAGAIN for polled IO even though we're
6014                          * forcing a sync submission from here, since we can't
6015                          * wait for request slots on the block side.
6016                          */
6017                         if (ret != -EAGAIN)
6018                                 break;
6019                         cond_resched();
6020                 } while (1);
6021         }
6022
6023         if (ret) {
6024                 req_set_fail_links(req);
6025                 io_req_complete(req, ret);
6026         }
6027
6028         return io_steal_work(req);
6029 }
6030
6031 static inline struct file *io_file_from_index(struct io_ring_ctx *ctx,
6032                                               int index)
6033 {
6034         struct fixed_file_table *table;
6035
6036         table = &ctx->file_data->table[index >> IORING_FILE_TABLE_SHIFT];
6037         return table->files[index & IORING_FILE_TABLE_MASK];
6038 }
6039
6040 static int io_file_get(struct io_submit_state *state, struct io_kiocb *req,
6041                         int fd, struct file **out_file, bool fixed)
6042 {
6043         struct io_ring_ctx *ctx = req->ctx;
6044         struct file *file;
6045
6046         if (fixed) {
6047                 if (unlikely(!ctx->file_data ||
6048                     (unsigned) fd >= ctx->nr_user_files))
6049                         return -EBADF;
6050                 fd = array_index_nospec(fd, ctx->nr_user_files);
6051                 file = io_file_from_index(ctx, fd);
6052                 if (file) {
6053                         req->fixed_file_refs = ctx->file_data->cur_refs;
6054                         percpu_ref_get(req->fixed_file_refs);
6055                 }
6056         } else {
6057                 trace_io_uring_file_get(ctx, fd);
6058                 file = __io_file_get(state, fd);
6059         }
6060
6061         if (file || io_op_defs[req->opcode].needs_file_no_error) {
6062                 *out_file = file;
6063                 return 0;
6064         }
6065         return -EBADF;
6066 }
6067
6068 static int io_req_set_file(struct io_submit_state *state, struct io_kiocb *req,
6069                            int fd)
6070 {
6071         bool fixed;
6072
6073         fixed = (req->flags & REQ_F_FIXED_FILE) != 0;
6074         if (unlikely(!fixed && io_async_submit(req->ctx)))
6075                 return -EBADF;
6076
6077         return io_file_get(state, req, fd, &req->file, fixed);
6078 }
6079
6080 static int io_grab_files(struct io_kiocb *req)
6081 {
6082         struct io_ring_ctx *ctx = req->ctx;
6083
6084         io_req_init_async(req);
6085
6086         if (req->work.files || (req->flags & REQ_F_NO_FILE_TABLE))
6087                 return 0;
6088
6089         req->work.files = get_files_struct(current);
6090         get_nsproxy(current->nsproxy);
6091         req->work.nsproxy = current->nsproxy;
6092         req->flags |= REQ_F_INFLIGHT;
6093
6094         spin_lock_irq(&ctx->inflight_lock);
6095         list_add(&req->inflight_entry, &ctx->inflight_list);
6096         spin_unlock_irq(&ctx->inflight_lock);
6097         return 0;
6098 }
6099
6100 static inline int io_prep_work_files(struct io_kiocb *req)
6101 {
6102         if (!io_op_defs[req->opcode].file_table)
6103                 return 0;
6104         return io_grab_files(req);
6105 }
6106
6107 static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer)
6108 {
6109         struct io_timeout_data *data = container_of(timer,
6110                                                 struct io_timeout_data, timer);
6111         struct io_kiocb *req = data->req;
6112         struct io_ring_ctx *ctx = req->ctx;
6113         struct io_kiocb *prev = NULL;
6114         unsigned long flags;
6115
6116         spin_lock_irqsave(&ctx->completion_lock, flags);
6117
6118         /*
6119          * We don't expect the list to be empty, that will only happen if we
6120          * race with the completion of the linked work.
6121          */
6122         if (!list_empty(&req->link_list)) {
6123                 prev = list_entry(req->link_list.prev, struct io_kiocb,
6124                                   link_list);
6125                 if (refcount_inc_not_zero(&prev->refs)) {
6126                         list_del_init(&req->link_list);
6127                         prev->flags &= ~REQ_F_LINK_TIMEOUT;
6128                 } else
6129                         prev = NULL;
6130         }
6131
6132         spin_unlock_irqrestore(&ctx->completion_lock, flags);
6133
6134         if (prev) {
6135                 req_set_fail_links(prev);
6136                 io_async_find_and_cancel(ctx, req, prev->user_data, -ETIME);
6137                 io_put_req(prev);
6138         } else {
6139                 io_req_complete(req, -ETIME);
6140         }
6141         return HRTIMER_NORESTART;
6142 }
6143
6144 static void __io_queue_linked_timeout(struct io_kiocb *req)
6145 {
6146         /*
6147          * If the list is now empty, then our linked request finished before
6148          * we got a chance to setup the timer
6149          */
6150         if (!list_empty(&req->link_list)) {
6151                 struct io_timeout_data *data = &req->io->timeout;
6152
6153                 data->timer.function = io_link_timeout_fn;
6154                 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts),
6155                                 data->mode);
6156         }
6157 }
6158
6159 static void io_queue_linked_timeout(struct io_kiocb *req)
6160 {
6161         struct io_ring_ctx *ctx = req->ctx;
6162
6163         spin_lock_irq(&ctx->completion_lock);
6164         __io_queue_linked_timeout(req);
6165         spin_unlock_irq(&ctx->completion_lock);
6166
6167         /* drop submission reference */
6168         io_put_req(req);
6169 }
6170
6171 static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req)
6172 {
6173         struct io_kiocb *nxt;
6174
6175         if (!(req->flags & REQ_F_LINK_HEAD))
6176                 return NULL;
6177         if (req->flags & REQ_F_LINK_TIMEOUT)
6178                 return NULL;
6179
6180         nxt = list_first_entry_or_null(&req->link_list, struct io_kiocb,
6181                                         link_list);
6182         if (!nxt || nxt->opcode != IORING_OP_LINK_TIMEOUT)
6183                 return NULL;
6184
6185         req->flags |= REQ_F_LINK_TIMEOUT;
6186         return nxt;
6187 }
6188
6189 static void __io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
6190                            struct io_comp_state *cs)
6191 {
6192         struct io_kiocb *linked_timeout;
6193         struct io_kiocb *nxt;
6194         const struct cred *old_creds = NULL;
6195         int ret;
6196
6197 again:
6198         linked_timeout = io_prep_linked_timeout(req);
6199
6200         if ((req->flags & REQ_F_WORK_INITIALIZED) && req->work.creds &&
6201             req->work.creds != current_cred()) {
6202                 if (old_creds)
6203                         revert_creds(old_creds);
6204                 if (old_creds == req->work.creds)
6205                         old_creds = NULL; /* restored original creds */
6206                 else
6207                         old_creds = override_creds(req->work.creds);
6208         }
6209
6210         ret = io_issue_sqe(req, sqe, true, cs);
6211
6212         /*
6213          * We async punt it if the file wasn't marked NOWAIT, or if the file
6214          * doesn't support non-blocking read/write attempts
6215          */
6216         if (ret == -EAGAIN && !(req->flags & REQ_F_NOWAIT)) {
6217                 if (!io_arm_poll_handler(req)) {
6218 punt:
6219                         ret = io_prep_work_files(req);
6220                         if (unlikely(ret))
6221                                 goto err;
6222                         /*
6223                          * Queued up for async execution, worker will release
6224                          * submit reference when the iocb is actually submitted.
6225                          */
6226                         io_queue_async_work(req);
6227                 }
6228
6229                 if (linked_timeout)
6230                         io_queue_linked_timeout(linked_timeout);
6231                 goto exit;
6232         }
6233
6234         if (unlikely(ret)) {
6235 err:
6236                 /* un-prep timeout, so it'll be killed as any other linked */
6237                 req->flags &= ~REQ_F_LINK_TIMEOUT;
6238                 req_set_fail_links(req);
6239                 io_put_req(req);
6240                 io_req_complete(req, ret);
6241                 goto exit;
6242         }
6243
6244         /* drop submission reference */
6245         nxt = io_put_req_find_next(req);
6246         if (linked_timeout)
6247                 io_queue_linked_timeout(linked_timeout);
6248
6249         if (nxt) {
6250                 req = nxt;
6251
6252                 if (req->flags & REQ_F_FORCE_ASYNC)
6253                         goto punt;
6254                 goto again;
6255         }
6256 exit:
6257         if (old_creds)
6258                 revert_creds(old_creds);
6259 }
6260
6261 static void io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
6262                          struct io_comp_state *cs)
6263 {
6264         int ret;
6265
6266         ret = io_req_defer(req, sqe);
6267         if (ret) {
6268                 if (ret != -EIOCBQUEUED) {
6269 fail_req:
6270                         req_set_fail_links(req);
6271                         io_put_req(req);
6272                         io_req_complete(req, ret);
6273                 }
6274         } else if (req->flags & REQ_F_FORCE_ASYNC) {
6275                 if (!req->io) {
6276                         ret = io_req_defer_prep(req, sqe);
6277                         if (unlikely(ret))
6278                                 goto fail_req;
6279                 }
6280
6281                 /*
6282                  * Never try inline submit of IOSQE_ASYNC is set, go straight
6283                  * to async execution.
6284                  */
6285                 io_req_init_async(req);
6286                 req->work.flags |= IO_WQ_WORK_CONCURRENT;
6287                 io_queue_async_work(req);
6288         } else {
6289                 __io_queue_sqe(req, sqe, cs);
6290         }
6291 }
6292
6293 static inline void io_queue_link_head(struct io_kiocb *req,
6294                                       struct io_comp_state *cs)
6295 {
6296         if (unlikely(req->flags & REQ_F_FAIL_LINK)) {
6297                 io_put_req(req);
6298                 io_req_complete(req, -ECANCELED);
6299         } else
6300                 io_queue_sqe(req, NULL, cs);
6301 }
6302
6303 static int io_submit_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
6304                          struct io_kiocb **link, struct io_comp_state *cs)
6305 {
6306         struct io_ring_ctx *ctx = req->ctx;
6307         int ret;
6308
6309         /*
6310          * If we already have a head request, queue this one for async
6311          * submittal once the head completes. If we don't have a head but
6312          * IOSQE_IO_LINK is set in the sqe, start a new head. This one will be
6313          * submitted sync once the chain is complete. If none of those
6314          * conditions are true (normal request), then just queue it.
6315          */
6316         if (*link) {
6317                 struct io_kiocb *head = *link;
6318
6319                 /*
6320                  * Taking sequential execution of a link, draining both sides
6321                  * of the link also fullfils IOSQE_IO_DRAIN semantics for all
6322                  * requests in the link. So, it drains the head and the
6323                  * next after the link request. The last one is done via
6324                  * drain_next flag to persist the effect across calls.
6325                  */
6326                 if (req->flags & REQ_F_IO_DRAIN) {
6327                         head->flags |= REQ_F_IO_DRAIN;
6328                         ctx->drain_next = 1;
6329                 }
6330                 ret = io_req_defer_prep(req, sqe);
6331                 if (unlikely(ret)) {
6332                         /* fail even hard links since we don't submit */
6333                         head->flags |= REQ_F_FAIL_LINK;
6334                         return ret;
6335                 }
6336                 trace_io_uring_link(ctx, req, head);
6337                 list_add_tail(&req->link_list, &head->link_list);
6338
6339                 /* last request of a link, enqueue the link */
6340                 if (!(req->flags & (REQ_F_LINK | REQ_F_HARDLINK))) {
6341                         io_queue_link_head(head, cs);
6342                         *link = NULL;
6343                 }
6344         } else {
6345                 if (unlikely(ctx->drain_next)) {
6346                         req->flags |= REQ_F_IO_DRAIN;
6347                         ctx->drain_next = 0;
6348                 }
6349                 if (req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) {
6350                         req->flags |= REQ_F_LINK_HEAD;
6351                         INIT_LIST_HEAD(&req->link_list);
6352
6353                         ret = io_req_defer_prep(req, sqe);
6354                         if (unlikely(ret))
6355                                 req->flags |= REQ_F_FAIL_LINK;
6356                         *link = req;
6357                 } else {
6358                         io_queue_sqe(req, sqe, cs);
6359                 }
6360         }
6361
6362         return 0;
6363 }
6364
6365 /*
6366  * Batched submission is done, ensure local IO is flushed out.
6367  */
6368 static void io_submit_state_end(struct io_submit_state *state)
6369 {
6370         if (!list_empty(&state->comp.list))
6371                 io_submit_flush_completions(&state->comp);
6372         blk_finish_plug(&state->plug);
6373         io_state_file_put(state);
6374         if (state->free_reqs)
6375                 kmem_cache_free_bulk(req_cachep, state->free_reqs, state->reqs);
6376 }
6377
6378 /*
6379  * Start submission side cache.
6380  */
6381 static void io_submit_state_start(struct io_submit_state *state,
6382                                   struct io_ring_ctx *ctx, unsigned int max_ios)
6383 {
6384         blk_start_plug(&state->plug);
6385         state->comp.nr = 0;
6386         INIT_LIST_HEAD(&state->comp.list);
6387         state->comp.ctx = ctx;
6388         state->free_reqs = 0;
6389         state->file = NULL;
6390         state->ios_left = max_ios;
6391 }
6392
6393 static void io_commit_sqring(struct io_ring_ctx *ctx)
6394 {
6395         struct io_rings *rings = ctx->rings;
6396
6397         /*
6398          * Ensure any loads from the SQEs are done at this point,
6399          * since once we write the new head, the application could
6400          * write new data to them.
6401          */
6402         smp_store_release(&rings->sq.head, ctx->cached_sq_head);
6403 }
6404
6405 /*
6406  * Fetch an sqe, if one is available. Note that sqe_ptr will point to memory
6407  * that is mapped by userspace. This means that care needs to be taken to
6408  * ensure that reads are stable, as we cannot rely on userspace always
6409  * being a good citizen. If members of the sqe are validated and then later
6410  * used, it's important that those reads are done through READ_ONCE() to
6411  * prevent a re-load down the line.
6412  */
6413 static const struct io_uring_sqe *io_get_sqe(struct io_ring_ctx *ctx)
6414 {
6415         u32 *sq_array = ctx->sq_array;
6416         unsigned head;
6417
6418         /*
6419          * The cached sq head (or cq tail) serves two purposes:
6420          *
6421          * 1) allows us to batch the cost of updating the user visible
6422          *    head updates.
6423          * 2) allows the kernel side to track the head on its own, even
6424          *    though the application is the one updating it.
6425          */
6426         head = READ_ONCE(sq_array[ctx->cached_sq_head & ctx->sq_mask]);
6427         if (likely(head < ctx->sq_entries))
6428                 return &ctx->sq_sqes[head];
6429
6430         /* drop invalid entries */
6431         ctx->cached_sq_dropped++;
6432         WRITE_ONCE(ctx->rings->sq_dropped, ctx->cached_sq_dropped);
6433         return NULL;
6434 }
6435
6436 static inline void io_consume_sqe(struct io_ring_ctx *ctx)
6437 {
6438         ctx->cached_sq_head++;
6439 }
6440
6441 #define SQE_VALID_FLAGS (IOSQE_FIXED_FILE|IOSQE_IO_DRAIN|IOSQE_IO_LINK| \
6442                                 IOSQE_IO_HARDLINK | IOSQE_ASYNC | \
6443                                 IOSQE_BUFFER_SELECT)
6444
6445 static int io_init_req(struct io_ring_ctx *ctx, struct io_kiocb *req,
6446                        const struct io_uring_sqe *sqe,
6447                        struct io_submit_state *state)
6448 {
6449         unsigned int sqe_flags;
6450         int id;
6451
6452         req->opcode = READ_ONCE(sqe->opcode);
6453         req->user_data = READ_ONCE(sqe->user_data);
6454         req->io = NULL;
6455         req->file = NULL;
6456         req->ctx = ctx;
6457         req->flags = 0;
6458         /* one is dropped after submission, the other at completion */
6459         refcount_set(&req->refs, 2);
6460         req->task = current;
6461         get_task_struct(req->task);
6462         atomic_long_inc(&req->task->io_uring->req_issue);
6463         req->result = 0;
6464
6465         if (unlikely(req->opcode >= IORING_OP_LAST))
6466                 return -EINVAL;
6467
6468         if (unlikely(io_sq_thread_acquire_mm(ctx, req)))
6469                 return -EFAULT;
6470
6471         sqe_flags = READ_ONCE(sqe->flags);
6472         /* enforce forwards compatibility on users */
6473         if (unlikely(sqe_flags & ~SQE_VALID_FLAGS))
6474                 return -EINVAL;
6475
6476         if ((sqe_flags & IOSQE_BUFFER_SELECT) &&
6477             !io_op_defs[req->opcode].buffer_select)
6478                 return -EOPNOTSUPP;
6479
6480         id = READ_ONCE(sqe->personality);
6481         if (id) {
6482                 io_req_init_async(req);
6483                 req->work.creds = idr_find(&ctx->personality_idr, id);
6484                 if (unlikely(!req->work.creds))
6485                         return -EINVAL;
6486                 get_cred(req->work.creds);
6487         }
6488
6489         /* same numerical values with corresponding REQ_F_*, safe to copy */
6490         req->flags |= sqe_flags;
6491
6492         if (!io_op_defs[req->opcode].needs_file)
6493                 return 0;
6494
6495         return io_req_set_file(state, req, READ_ONCE(sqe->fd));
6496 }
6497
6498 static int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr)
6499 {
6500         struct io_submit_state state;
6501         struct io_kiocb *link = NULL;
6502         int i, submitted = 0;
6503
6504         /* if we have a backlog and couldn't flush it all, return BUSY */
6505         if (test_bit(0, &ctx->sq_check_overflow)) {
6506                 if (!list_empty(&ctx->cq_overflow_list) &&
6507                     !io_cqring_overflow_flush(ctx, false, NULL, NULL))
6508                         return -EBUSY;
6509         }
6510
6511         /* make sure SQ entry isn't read before tail */
6512         nr = min3(nr, ctx->sq_entries, io_sqring_entries(ctx));
6513
6514         if (!percpu_ref_tryget_many(&ctx->refs, nr))
6515                 return -EAGAIN;
6516
6517         io_submit_state_start(&state, ctx, nr);
6518
6519         for (i = 0; i < nr; i++) {
6520                 const struct io_uring_sqe *sqe;
6521                 struct io_kiocb *req;
6522                 int err;
6523
6524                 sqe = io_get_sqe(ctx);
6525                 if (unlikely(!sqe)) {
6526                         io_consume_sqe(ctx);
6527                         break;
6528                 }
6529                 req = io_alloc_req(ctx, &state);
6530                 if (unlikely(!req)) {
6531                         if (!submitted)
6532                                 submitted = -EAGAIN;
6533                         break;
6534                 }
6535
6536                 err = io_init_req(ctx, req, sqe, &state);
6537                 io_consume_sqe(ctx);
6538                 /* will complete beyond this point, count as submitted */
6539                 submitted++;
6540
6541                 if (unlikely(err)) {
6542 fail_req:
6543                         io_put_req(req);
6544                         io_req_complete(req, err);
6545                         break;
6546                 }
6547
6548                 trace_io_uring_submit_sqe(ctx, req->opcode, req->user_data,
6549                                                 true, io_async_submit(ctx));
6550                 err = io_submit_sqe(req, sqe, &link, &state.comp);
6551                 if (err)
6552                         goto fail_req;
6553         }
6554
6555         if (unlikely(submitted != nr)) {
6556                 int ref_used = (submitted == -EAGAIN) ? 0 : submitted;
6557
6558                 percpu_ref_put_many(&ctx->refs, nr - ref_used);
6559         }
6560         if (link)
6561                 io_queue_link_head(link, &state.comp);
6562         io_submit_state_end(&state);
6563
6564          /* Commit SQ ring head once we've consumed and submitted all SQEs */
6565         io_commit_sqring(ctx);
6566
6567         return submitted;
6568 }
6569
6570 static inline void io_ring_set_wakeup_flag(struct io_ring_ctx *ctx)
6571 {
6572         /* Tell userspace we may need a wakeup call */
6573         spin_lock_irq(&ctx->completion_lock);
6574         ctx->rings->sq_flags |= IORING_SQ_NEED_WAKEUP;
6575         spin_unlock_irq(&ctx->completion_lock);
6576 }
6577
6578 static inline void io_ring_clear_wakeup_flag(struct io_ring_ctx *ctx)
6579 {
6580         spin_lock_irq(&ctx->completion_lock);
6581         ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
6582         spin_unlock_irq(&ctx->completion_lock);
6583 }
6584
6585 static int io_sq_thread(void *data)
6586 {
6587         struct io_ring_ctx *ctx = data;
6588         const struct cred *old_cred;
6589         DEFINE_WAIT(wait);
6590         unsigned long timeout;
6591         int ret = 0;
6592
6593         complete(&ctx->sq_thread_comp);
6594
6595         old_cred = override_creds(ctx->creds);
6596
6597         timeout = jiffies + ctx->sq_thread_idle;
6598         while (!kthread_should_park()) {
6599                 unsigned int to_submit;
6600
6601                 if (!list_empty(&ctx->iopoll_list)) {
6602                         unsigned nr_events = 0;
6603
6604                         mutex_lock(&ctx->uring_lock);
6605                         if (!list_empty(&ctx->iopoll_list) && !need_resched())
6606                                 io_do_iopoll(ctx, &nr_events, 0);
6607                         else
6608                                 timeout = jiffies + ctx->sq_thread_idle;
6609                         mutex_unlock(&ctx->uring_lock);
6610                 }
6611
6612                 to_submit = io_sqring_entries(ctx);
6613
6614                 /*
6615                  * If submit got -EBUSY, flag us as needing the application
6616                  * to enter the kernel to reap and flush events.
6617                  */
6618                 if (!to_submit || ret == -EBUSY || need_resched()) {
6619                         /*
6620                          * Drop cur_mm before scheduling, we can't hold it for
6621                          * long periods (or over schedule()). Do this before
6622                          * adding ourselves to the waitqueue, as the unuse/drop
6623                          * may sleep.
6624                          */
6625                         io_sq_thread_drop_mm();
6626
6627                         /*
6628                          * We're polling. If we're within the defined idle
6629                          * period, then let us spin without work before going
6630                          * to sleep. The exception is if we got EBUSY doing
6631                          * more IO, we should wait for the application to
6632                          * reap events and wake us up.
6633                          */
6634                         if (!list_empty(&ctx->iopoll_list) || need_resched() ||
6635                             (!time_after(jiffies, timeout) && ret != -EBUSY &&
6636                             !percpu_ref_is_dying(&ctx->refs))) {
6637                                 io_run_task_work();
6638                                 cond_resched();
6639                                 continue;
6640                         }
6641
6642                         prepare_to_wait(&ctx->sqo_wait, &wait,
6643                                                 TASK_INTERRUPTIBLE);
6644
6645                         /*
6646                          * While doing polled IO, before going to sleep, we need
6647                          * to check if there are new reqs added to iopoll_list,
6648                          * it is because reqs may have been punted to io worker
6649                          * and will be added to iopoll_list later, hence check
6650                          * the iopoll_list again.
6651                          */
6652                         if ((ctx->flags & IORING_SETUP_IOPOLL) &&
6653                             !list_empty_careful(&ctx->iopoll_list)) {
6654                                 finish_wait(&ctx->sqo_wait, &wait);
6655                                 continue;
6656                         }
6657
6658                         io_ring_set_wakeup_flag(ctx);
6659
6660                         to_submit = io_sqring_entries(ctx);
6661                         if (!to_submit || ret == -EBUSY) {
6662                                 if (kthread_should_park()) {
6663                                         finish_wait(&ctx->sqo_wait, &wait);
6664                                         break;
6665                                 }
6666                                 if (io_run_task_work()) {
6667                                         finish_wait(&ctx->sqo_wait, &wait);
6668                                         io_ring_clear_wakeup_flag(ctx);
6669                                         continue;
6670                                 }
6671                                 if (signal_pending(current))
6672                                         flush_signals(current);
6673                                 schedule();
6674                                 finish_wait(&ctx->sqo_wait, &wait);
6675
6676                                 io_ring_clear_wakeup_flag(ctx);
6677                                 ret = 0;
6678                                 continue;
6679                         }
6680                         finish_wait(&ctx->sqo_wait, &wait);
6681
6682                         io_ring_clear_wakeup_flag(ctx);
6683                 }
6684
6685                 mutex_lock(&ctx->uring_lock);
6686                 if (likely(!percpu_ref_is_dying(&ctx->refs)))
6687                         ret = io_submit_sqes(ctx, to_submit);
6688                 mutex_unlock(&ctx->uring_lock);
6689                 timeout = jiffies + ctx->sq_thread_idle;
6690         }
6691
6692         io_run_task_work();
6693
6694         io_sq_thread_drop_mm();
6695         revert_creds(old_cred);
6696
6697         kthread_parkme();
6698
6699         return 0;
6700 }
6701
6702 struct io_wait_queue {
6703         struct wait_queue_entry wq;
6704         struct io_ring_ctx *ctx;
6705         unsigned to_wait;
6706         unsigned nr_timeouts;
6707 };
6708
6709 static inline bool io_should_wake(struct io_wait_queue *iowq, bool noflush)
6710 {
6711         struct io_ring_ctx *ctx = iowq->ctx;
6712
6713         /*
6714          * Wake up if we have enough events, or if a timeout occurred since we
6715          * started waiting. For timeouts, we always want to return to userspace,
6716          * regardless of event count.
6717          */
6718         return io_cqring_events(ctx, noflush) >= iowq->to_wait ||
6719                         atomic_read(&ctx->cq_timeouts) != iowq->nr_timeouts;
6720 }
6721
6722 static int io_wake_function(struct wait_queue_entry *curr, unsigned int mode,
6723                             int wake_flags, void *key)
6724 {
6725         struct io_wait_queue *iowq = container_of(curr, struct io_wait_queue,
6726                                                         wq);
6727
6728         /* use noflush == true, as we can't safely rely on locking context */
6729         if (!io_should_wake(iowq, true))
6730                 return -1;
6731
6732         return autoremove_wake_function(curr, mode, wake_flags, key);
6733 }
6734
6735 /*
6736  * Wait until events become available, if we don't already have some. The
6737  * application must reap them itself, as they reside on the shared cq ring.
6738  */
6739 static int io_cqring_wait(struct io_ring_ctx *ctx, int min_events,
6740                           const sigset_t __user *sig, size_t sigsz)
6741 {
6742         struct io_wait_queue iowq = {
6743                 .wq = {
6744                         .private        = current,
6745                         .func           = io_wake_function,
6746                         .entry          = LIST_HEAD_INIT(iowq.wq.entry),
6747                 },
6748                 .ctx            = ctx,
6749                 .to_wait        = min_events,
6750         };
6751         struct io_rings *rings = ctx->rings;
6752         int ret = 0;
6753
6754         do {
6755                 if (io_cqring_events(ctx, false) >= min_events)
6756                         return 0;
6757                 if (!io_run_task_work())
6758                         break;
6759         } while (1);
6760
6761         if (sig) {
6762 #ifdef CONFIG_COMPAT
6763                 if (in_compat_syscall())
6764                         ret = set_compat_user_sigmask((const compat_sigset_t __user *)sig,
6765                                                       sigsz);
6766                 else
6767 #endif
6768                         ret = set_user_sigmask(sig, sigsz);
6769
6770                 if (ret)
6771                         return ret;
6772         }
6773
6774         iowq.nr_timeouts = atomic_read(&ctx->cq_timeouts);
6775         trace_io_uring_cqring_wait(ctx, min_events);
6776         do {
6777                 prepare_to_wait_exclusive(&ctx->wait, &iowq.wq,
6778                                                 TASK_INTERRUPTIBLE);
6779                 /* make sure we run task_work before checking for signals */
6780                 if (io_run_task_work())
6781                         continue;
6782                 if (signal_pending(current)) {
6783                         if (current->jobctl & JOBCTL_TASK_WORK) {
6784                                 spin_lock_irq(&current->sighand->siglock);
6785                                 current->jobctl &= ~JOBCTL_TASK_WORK;
6786                                 recalc_sigpending();
6787                                 spin_unlock_irq(&current->sighand->siglock);
6788                                 continue;
6789                         }
6790                         ret = -EINTR;
6791                         break;
6792                 }
6793                 if (io_should_wake(&iowq, false))
6794                         break;
6795                 schedule();
6796         } while (1);
6797         finish_wait(&ctx->wait, &iowq.wq);
6798
6799         restore_saved_sigmask_unless(ret == -EINTR);
6800
6801         return READ_ONCE(rings->cq.head) == READ_ONCE(rings->cq.tail) ? ret : 0;
6802 }
6803
6804 static void __io_sqe_files_unregister(struct io_ring_ctx *ctx)
6805 {
6806 #if defined(CONFIG_UNIX)
6807         if (ctx->ring_sock) {
6808                 struct sock *sock = ctx->ring_sock->sk;
6809                 struct sk_buff *skb;
6810
6811                 while ((skb = skb_dequeue(&sock->sk_receive_queue)) != NULL)
6812                         kfree_skb(skb);
6813         }
6814 #else
6815         int i;
6816
6817         for (i = 0; i < ctx->nr_user_files; i++) {
6818                 struct file *file;
6819
6820                 file = io_file_from_index(ctx, i);
6821                 if (file)
6822                         fput(file);
6823         }
6824 #endif
6825 }
6826
6827 static void io_file_ref_kill(struct percpu_ref *ref)
6828 {
6829         struct fixed_file_data *data;
6830
6831         data = container_of(ref, struct fixed_file_data, refs);
6832         complete(&data->done);
6833 }
6834
6835 static int io_sqe_files_unregister(struct io_ring_ctx *ctx)
6836 {
6837         struct fixed_file_data *data = ctx->file_data;
6838         struct fixed_file_ref_node *ref_node = NULL;
6839         unsigned nr_tables, i;
6840
6841         if (!data)
6842                 return -ENXIO;
6843
6844         spin_lock(&data->lock);
6845         if (!list_empty(&data->ref_list))
6846                 ref_node = list_first_entry(&data->ref_list,
6847                                 struct fixed_file_ref_node, node);
6848         spin_unlock(&data->lock);
6849         if (ref_node)
6850                 percpu_ref_kill(&ref_node->refs);
6851
6852         percpu_ref_kill(&data->refs);
6853
6854         /* wait for all refs nodes to complete */
6855         flush_delayed_work(&ctx->file_put_work);
6856         wait_for_completion(&data->done);
6857
6858         __io_sqe_files_unregister(ctx);
6859         nr_tables = DIV_ROUND_UP(ctx->nr_user_files, IORING_MAX_FILES_TABLE);
6860         for (i = 0; i < nr_tables; i++)
6861                 kfree(data->table[i].files);
6862         kfree(data->table);
6863         percpu_ref_exit(&data->refs);
6864         kfree(data);
6865         ctx->file_data = NULL;
6866         ctx->nr_user_files = 0;
6867         return 0;
6868 }
6869
6870 static void io_sq_thread_stop(struct io_ring_ctx *ctx)
6871 {
6872         if (ctx->sqo_thread) {
6873                 wait_for_completion(&ctx->sq_thread_comp);
6874                 /*
6875                  * The park is a bit of a work-around, without it we get
6876                  * warning spews on shutdown with SQPOLL set and affinity
6877                  * set to a single CPU.
6878                  */
6879                 kthread_park(ctx->sqo_thread);
6880                 kthread_stop(ctx->sqo_thread);
6881                 ctx->sqo_thread = NULL;
6882         }
6883 }
6884
6885 static void io_finish_async(struct io_ring_ctx *ctx)
6886 {
6887         io_sq_thread_stop(ctx);
6888
6889         if (ctx->io_wq) {
6890                 io_wq_destroy(ctx->io_wq);
6891                 ctx->io_wq = NULL;
6892         }
6893 }
6894
6895 #if defined(CONFIG_UNIX)
6896 /*
6897  * Ensure the UNIX gc is aware of our file set, so we are certain that
6898  * the io_uring can be safely unregistered on process exit, even if we have
6899  * loops in the file referencing.
6900  */
6901 static int __io_sqe_files_scm(struct io_ring_ctx *ctx, int nr, int offset)
6902 {
6903         struct sock *sk = ctx->ring_sock->sk;
6904         struct scm_fp_list *fpl;
6905         struct sk_buff *skb;
6906         int i, nr_files;
6907
6908         fpl = kzalloc(sizeof(*fpl), GFP_KERNEL);
6909         if (!fpl)
6910                 return -ENOMEM;
6911
6912         skb = alloc_skb(0, GFP_KERNEL);
6913         if (!skb) {
6914                 kfree(fpl);
6915                 return -ENOMEM;
6916         }
6917
6918         skb->sk = sk;
6919
6920         nr_files = 0;
6921         fpl->user = get_uid(ctx->user);
6922         for (i = 0; i < nr; i++) {
6923                 struct file *file = io_file_from_index(ctx, i + offset);
6924
6925                 if (!file)
6926                         continue;
6927                 fpl->fp[nr_files] = get_file(file);
6928                 unix_inflight(fpl->user, fpl->fp[nr_files]);
6929                 nr_files++;
6930         }
6931
6932         if (nr_files) {
6933                 fpl->max = SCM_MAX_FD;
6934                 fpl->count = nr_files;
6935                 UNIXCB(skb).fp = fpl;
6936                 skb->destructor = unix_destruct_scm;
6937                 refcount_add(skb->truesize, &sk->sk_wmem_alloc);
6938                 skb_queue_head(&sk->sk_receive_queue, skb);
6939
6940                 for (i = 0; i < nr_files; i++)
6941                         fput(fpl->fp[i]);
6942         } else {
6943                 kfree_skb(skb);
6944                 kfree(fpl);
6945         }
6946
6947         return 0;
6948 }
6949
6950 /*
6951  * If UNIX sockets are enabled, fd passing can cause a reference cycle which
6952  * causes regular reference counting to break down. We rely on the UNIX
6953  * garbage collection to take care of this problem for us.
6954  */
6955 static int io_sqe_files_scm(struct io_ring_ctx *ctx)
6956 {
6957         unsigned left, total;
6958         int ret = 0;
6959
6960         total = 0;
6961         left = ctx->nr_user_files;
6962         while (left) {
6963                 unsigned this_files = min_t(unsigned, left, SCM_MAX_FD);
6964
6965                 ret = __io_sqe_files_scm(ctx, this_files, total);
6966                 if (ret)
6967                         break;
6968                 left -= this_files;
6969                 total += this_files;
6970         }
6971
6972         if (!ret)
6973                 return 0;
6974
6975         while (total < ctx->nr_user_files) {
6976                 struct file *file = io_file_from_index(ctx, total);
6977
6978                 if (file)
6979                         fput(file);
6980                 total++;
6981         }
6982
6983         return ret;
6984 }
6985 #else
6986 static int io_sqe_files_scm(struct io_ring_ctx *ctx)
6987 {
6988         return 0;
6989 }
6990 #endif
6991
6992 static int io_sqe_alloc_file_tables(struct io_ring_ctx *ctx, unsigned nr_tables,
6993                                     unsigned nr_files)
6994 {
6995         int i;
6996
6997         for (i = 0; i < nr_tables; i++) {
6998                 struct fixed_file_table *table = &ctx->file_data->table[i];
6999                 unsigned this_files;
7000
7001                 this_files = min(nr_files, IORING_MAX_FILES_TABLE);
7002                 table->files = kcalloc(this_files, sizeof(struct file *),
7003                                         GFP_KERNEL);
7004                 if (!table->files)
7005                         break;
7006                 nr_files -= this_files;
7007         }
7008
7009         if (i == nr_tables)
7010                 return 0;
7011
7012         for (i = 0; i < nr_tables; i++) {
7013                 struct fixed_file_table *table = &ctx->file_data->table[i];
7014                 kfree(table->files);
7015         }
7016         return 1;
7017 }
7018
7019 static void io_ring_file_put(struct io_ring_ctx *ctx, struct file *file)
7020 {
7021 #if defined(CONFIG_UNIX)
7022         struct sock *sock = ctx->ring_sock->sk;
7023         struct sk_buff_head list, *head = &sock->sk_receive_queue;
7024         struct sk_buff *skb;
7025         int i;
7026
7027         __skb_queue_head_init(&list);
7028
7029         /*
7030          * Find the skb that holds this file in its SCM_RIGHTS. When found,
7031          * remove this entry and rearrange the file array.
7032          */
7033         skb = skb_dequeue(head);
7034         while (skb) {
7035                 struct scm_fp_list *fp;
7036
7037                 fp = UNIXCB(skb).fp;
7038                 for (i = 0; i < fp->count; i++) {
7039                         int left;
7040
7041                         if (fp->fp[i] != file)
7042                                 continue;
7043
7044                         unix_notinflight(fp->user, fp->fp[i]);
7045                         left = fp->count - 1 - i;
7046                         if (left) {
7047                                 memmove(&fp->fp[i], &fp->fp[i + 1],
7048                                                 left * sizeof(struct file *));
7049                         }
7050                         fp->count--;
7051                         if (!fp->count) {
7052                                 kfree_skb(skb);
7053                                 skb = NULL;
7054                         } else {
7055                                 __skb_queue_tail(&list, skb);
7056                         }
7057                         fput(file);
7058                         file = NULL;
7059                         break;
7060                 }
7061
7062                 if (!file)
7063                         break;
7064
7065                 __skb_queue_tail(&list, skb);
7066
7067                 skb = skb_dequeue(head);
7068         }
7069
7070         if (skb_peek(&list)) {
7071                 spin_lock_irq(&head->lock);
7072                 while ((skb = __skb_dequeue(&list)) != NULL)
7073                         __skb_queue_tail(head, skb);
7074                 spin_unlock_irq(&head->lock);
7075         }
7076 #else
7077         fput(file);
7078 #endif
7079 }
7080
7081 struct io_file_put {
7082         struct list_head list;
7083         struct file *file;
7084 };
7085
7086 static void __io_file_put_work(struct fixed_file_ref_node *ref_node)
7087 {
7088         struct fixed_file_data *file_data = ref_node->file_data;
7089         struct io_ring_ctx *ctx = file_data->ctx;
7090         struct io_file_put *pfile, *tmp;
7091
7092         list_for_each_entry_safe(pfile, tmp, &ref_node->file_list, list) {
7093                 list_del(&pfile->list);
7094                 io_ring_file_put(ctx, pfile->file);
7095                 kfree(pfile);
7096         }
7097
7098         spin_lock(&file_data->lock);
7099         list_del(&ref_node->node);
7100         spin_unlock(&file_data->lock);
7101
7102         percpu_ref_exit(&ref_node->refs);
7103         kfree(ref_node);
7104         percpu_ref_put(&file_data->refs);
7105 }
7106
7107 static void io_file_put_work(struct work_struct *work)
7108 {
7109         struct io_ring_ctx *ctx;
7110         struct llist_node *node;
7111
7112         ctx = container_of(work, struct io_ring_ctx, file_put_work.work);
7113         node = llist_del_all(&ctx->file_put_llist);
7114
7115         while (node) {
7116                 struct fixed_file_ref_node *ref_node;
7117                 struct llist_node *next = node->next;
7118
7119                 ref_node = llist_entry(node, struct fixed_file_ref_node, llist);
7120                 __io_file_put_work(ref_node);
7121                 node = next;
7122         }
7123 }
7124
7125 static void io_file_data_ref_zero(struct percpu_ref *ref)
7126 {
7127         struct fixed_file_ref_node *ref_node;
7128         struct io_ring_ctx *ctx;
7129         bool first_add;
7130         int delay = HZ;
7131
7132         ref_node = container_of(ref, struct fixed_file_ref_node, refs);
7133         ctx = ref_node->file_data->ctx;
7134
7135         if (percpu_ref_is_dying(&ctx->file_data->refs))
7136                 delay = 0;
7137
7138         first_add = llist_add(&ref_node->llist, &ctx->file_put_llist);
7139         if (!delay)
7140                 mod_delayed_work(system_wq, &ctx->file_put_work, 0);
7141         else if (first_add)
7142                 queue_delayed_work(system_wq, &ctx->file_put_work, delay);
7143 }
7144
7145 static struct fixed_file_ref_node *alloc_fixed_file_ref_node(
7146                         struct io_ring_ctx *ctx)
7147 {
7148         struct fixed_file_ref_node *ref_node;
7149
7150         ref_node = kzalloc(sizeof(*ref_node), GFP_KERNEL);
7151         if (!ref_node)
7152                 return ERR_PTR(-ENOMEM);
7153
7154         if (percpu_ref_init(&ref_node->refs, io_file_data_ref_zero,
7155                             0, GFP_KERNEL)) {
7156                 kfree(ref_node);
7157                 return ERR_PTR(-ENOMEM);
7158         }
7159         INIT_LIST_HEAD(&ref_node->node);
7160         INIT_LIST_HEAD(&ref_node->file_list);
7161         ref_node->file_data = ctx->file_data;
7162         return ref_node;
7163 }
7164
7165 static void destroy_fixed_file_ref_node(struct fixed_file_ref_node *ref_node)
7166 {
7167         percpu_ref_exit(&ref_node->refs);
7168         kfree(ref_node);
7169 }
7170
7171 static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
7172                                  unsigned nr_args)
7173 {
7174         __s32 __user *fds = (__s32 __user *) arg;
7175         unsigned nr_tables;
7176         struct file *file;
7177         int fd, ret = 0;
7178         unsigned i;
7179         struct fixed_file_ref_node *ref_node;
7180
7181         if (ctx->file_data)
7182                 return -EBUSY;
7183         if (!nr_args)
7184                 return -EINVAL;
7185         if (nr_args > IORING_MAX_FIXED_FILES)
7186                 return -EMFILE;
7187
7188         ctx->file_data = kzalloc(sizeof(*ctx->file_data), GFP_KERNEL);
7189         if (!ctx->file_data)
7190                 return -ENOMEM;
7191         ctx->file_data->ctx = ctx;
7192         init_completion(&ctx->file_data->done);
7193         INIT_LIST_HEAD(&ctx->file_data->ref_list);
7194         spin_lock_init(&ctx->file_data->lock);
7195
7196         nr_tables = DIV_ROUND_UP(nr_args, IORING_MAX_FILES_TABLE);
7197         ctx->file_data->table = kcalloc(nr_tables,
7198                                         sizeof(struct fixed_file_table),
7199                                         GFP_KERNEL);
7200         if (!ctx->file_data->table) {
7201                 kfree(ctx->file_data);
7202                 ctx->file_data = NULL;
7203                 return -ENOMEM;
7204         }
7205
7206         if (percpu_ref_init(&ctx->file_data->refs, io_file_ref_kill,
7207                                 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL)) {
7208                 kfree(ctx->file_data->table);
7209                 kfree(ctx->file_data);
7210                 ctx->file_data = NULL;
7211                 return -ENOMEM;
7212         }
7213
7214         if (io_sqe_alloc_file_tables(ctx, nr_tables, nr_args)) {
7215                 percpu_ref_exit(&ctx->file_data->refs);
7216                 kfree(ctx->file_data->table);
7217                 kfree(ctx->file_data);
7218                 ctx->file_data = NULL;
7219                 return -ENOMEM;
7220         }
7221
7222         for (i = 0; i < nr_args; i++, ctx->nr_user_files++) {
7223                 struct fixed_file_table *table;
7224                 unsigned index;
7225
7226                 ret = -EFAULT;
7227                 if (copy_from_user(&fd, &fds[i], sizeof(fd)))
7228                         break;
7229                 /* allow sparse sets */
7230                 if (fd == -1) {
7231                         ret = 0;
7232                         continue;
7233                 }
7234
7235                 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
7236                 index = i & IORING_FILE_TABLE_MASK;
7237                 file = fget(fd);
7238
7239                 ret = -EBADF;
7240                 if (!file)
7241                         break;
7242
7243                 /*
7244                  * Don't allow io_uring instances to be registered. If UNIX
7245                  * isn't enabled, then this causes a reference cycle and this
7246                  * instance can never get freed. If UNIX is enabled we'll
7247                  * handle it just fine, but there's still no point in allowing
7248                  * a ring fd as it doesn't support regular read/write anyway.
7249                  */
7250                 if (file->f_op == &io_uring_fops) {
7251                         fput(file);
7252                         break;
7253                 }
7254                 ret = 0;
7255                 table->files[index] = file;
7256         }
7257
7258         if (ret) {
7259                 for (i = 0; i < ctx->nr_user_files; i++) {
7260                         file = io_file_from_index(ctx, i);
7261                         if (file)
7262                                 fput(file);
7263                 }
7264                 for (i = 0; i < nr_tables; i++)
7265                         kfree(ctx->file_data->table[i].files);
7266
7267                 percpu_ref_exit(&ctx->file_data->refs);
7268                 kfree(ctx->file_data->table);
7269                 kfree(ctx->file_data);
7270                 ctx->file_data = NULL;
7271                 ctx->nr_user_files = 0;
7272                 return ret;
7273         }
7274
7275         ret = io_sqe_files_scm(ctx);
7276         if (ret) {
7277                 io_sqe_files_unregister(ctx);
7278                 return ret;
7279         }
7280
7281         ref_node = alloc_fixed_file_ref_node(ctx);
7282         if (IS_ERR(ref_node)) {
7283                 io_sqe_files_unregister(ctx);
7284                 return PTR_ERR(ref_node);
7285         }
7286
7287         ctx->file_data->cur_refs = &ref_node->refs;
7288         spin_lock(&ctx->file_data->lock);
7289         list_add(&ref_node->node, &ctx->file_data->ref_list);
7290         spin_unlock(&ctx->file_data->lock);
7291         percpu_ref_get(&ctx->file_data->refs);
7292         return ret;
7293 }
7294
7295 static int io_sqe_file_register(struct io_ring_ctx *ctx, struct file *file,
7296                                 int index)
7297 {
7298 #if defined(CONFIG_UNIX)
7299         struct sock *sock = ctx->ring_sock->sk;
7300         struct sk_buff_head *head = &sock->sk_receive_queue;
7301         struct sk_buff *skb;
7302
7303         /*
7304          * See if we can merge this file into an existing skb SCM_RIGHTS
7305          * file set. If there's no room, fall back to allocating a new skb
7306          * and filling it in.
7307          */
7308         spin_lock_irq(&head->lock);
7309         skb = skb_peek(head);
7310         if (skb) {
7311                 struct scm_fp_list *fpl = UNIXCB(skb).fp;
7312
7313                 if (fpl->count < SCM_MAX_FD) {
7314                         __skb_unlink(skb, head);
7315                         spin_unlock_irq(&head->lock);
7316                         fpl->fp[fpl->count] = get_file(file);
7317                         unix_inflight(fpl->user, fpl->fp[fpl->count]);
7318                         fpl->count++;
7319                         spin_lock_irq(&head->lock);
7320                         __skb_queue_head(head, skb);
7321                 } else {
7322                         skb = NULL;
7323                 }
7324         }
7325         spin_unlock_irq(&head->lock);
7326
7327         if (skb) {
7328                 fput(file);
7329                 return 0;
7330         }
7331
7332         return __io_sqe_files_scm(ctx, 1, index);
7333 #else
7334         return 0;
7335 #endif
7336 }
7337
7338 static int io_queue_file_removal(struct fixed_file_data *data,
7339                                  struct file *file)
7340 {
7341         struct io_file_put *pfile;
7342         struct percpu_ref *refs = data->cur_refs;
7343         struct fixed_file_ref_node *ref_node;
7344
7345         pfile = kzalloc(sizeof(*pfile), GFP_KERNEL);
7346         if (!pfile)
7347                 return -ENOMEM;
7348
7349         ref_node = container_of(refs, struct fixed_file_ref_node, refs);
7350         pfile->file = file;
7351         list_add(&pfile->list, &ref_node->file_list);
7352
7353         return 0;
7354 }
7355
7356 static int __io_sqe_files_update(struct io_ring_ctx *ctx,
7357                                  struct io_uring_files_update *up,
7358                                  unsigned nr_args)
7359 {
7360         struct fixed_file_data *data = ctx->file_data;
7361         struct fixed_file_ref_node *ref_node;
7362         struct file *file;
7363         __s32 __user *fds;
7364         int fd, i, err;
7365         __u32 done;
7366         bool needs_switch = false;
7367
7368         if (check_add_overflow(up->offset, nr_args, &done))
7369                 return -EOVERFLOW;
7370         if (done > ctx->nr_user_files)
7371                 return -EINVAL;
7372
7373         ref_node = alloc_fixed_file_ref_node(ctx);
7374         if (IS_ERR(ref_node))
7375                 return PTR_ERR(ref_node);
7376
7377         done = 0;
7378         fds = u64_to_user_ptr(up->fds);
7379         while (nr_args) {
7380                 struct fixed_file_table *table;
7381                 unsigned index;
7382
7383                 err = 0;
7384                 if (copy_from_user(&fd, &fds[done], sizeof(fd))) {
7385                         err = -EFAULT;
7386                         break;
7387                 }
7388                 i = array_index_nospec(up->offset, ctx->nr_user_files);
7389                 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
7390                 index = i & IORING_FILE_TABLE_MASK;
7391                 if (table->files[index]) {
7392                         file = table->files[index];
7393                         err = io_queue_file_removal(data, file);
7394                         if (err)
7395                                 break;
7396                         table->files[index] = NULL;
7397                         needs_switch = true;
7398                 }
7399                 if (fd != -1) {
7400                         file = fget(fd);
7401                         if (!file) {
7402                                 err = -EBADF;
7403                                 break;
7404                         }
7405                         /*
7406                          * Don't allow io_uring instances to be registered. If
7407                          * UNIX isn't enabled, then this causes a reference
7408                          * cycle and this instance can never get freed. If UNIX
7409                          * is enabled we'll handle it just fine, but there's
7410                          * still no point in allowing a ring fd as it doesn't
7411                          * support regular read/write anyway.
7412                          */
7413                         if (file->f_op == &io_uring_fops) {
7414                                 fput(file);
7415                                 err = -EBADF;
7416                                 break;
7417                         }
7418                         table->files[index] = file;
7419                         err = io_sqe_file_register(ctx, file, i);
7420                         if (err) {
7421                                 table->files[index] = NULL;
7422                                 fput(file);
7423                                 break;
7424                         }
7425                 }
7426                 nr_args--;
7427                 done++;
7428                 up->offset++;
7429         }
7430
7431         if (needs_switch) {
7432                 percpu_ref_kill(data->cur_refs);
7433                 spin_lock(&data->lock);
7434                 list_add(&ref_node->node, &data->ref_list);
7435                 data->cur_refs = &ref_node->refs;
7436                 spin_unlock(&data->lock);
7437                 percpu_ref_get(&ctx->file_data->refs);
7438         } else
7439                 destroy_fixed_file_ref_node(ref_node);
7440
7441         return done ? done : err;
7442 }
7443
7444 static int io_sqe_files_update(struct io_ring_ctx *ctx, void __user *arg,
7445                                unsigned nr_args)
7446 {
7447         struct io_uring_files_update up;
7448
7449         if (!ctx->file_data)
7450                 return -ENXIO;
7451         if (!nr_args)
7452                 return -EINVAL;
7453         if (copy_from_user(&up, arg, sizeof(up)))
7454                 return -EFAULT;
7455         if (up.resv)
7456                 return -EINVAL;
7457
7458         return __io_sqe_files_update(ctx, &up, nr_args);
7459 }
7460
7461 static void io_free_work(struct io_wq_work *work)
7462 {
7463         struct io_kiocb *req = container_of(work, struct io_kiocb, work);
7464
7465         /* Consider that io_steal_work() relies on this ref */
7466         io_put_req(req);
7467 }
7468
7469 static int io_init_wq_offload(struct io_ring_ctx *ctx,
7470                               struct io_uring_params *p)
7471 {
7472         struct io_wq_data data;
7473         struct fd f;
7474         struct io_ring_ctx *ctx_attach;
7475         unsigned int concurrency;
7476         int ret = 0;
7477
7478         data.user = ctx->user;
7479         data.free_work = io_free_work;
7480         data.do_work = io_wq_submit_work;
7481
7482         if (!(p->flags & IORING_SETUP_ATTACH_WQ)) {
7483                 /* Do QD, or 4 * CPUS, whatever is smallest */
7484                 concurrency = min(ctx->sq_entries, 4 * num_online_cpus());
7485
7486                 ctx->io_wq = io_wq_create(concurrency, &data);
7487                 if (IS_ERR(ctx->io_wq)) {
7488                         ret = PTR_ERR(ctx->io_wq);
7489                         ctx->io_wq = NULL;
7490                 }
7491                 return ret;
7492         }
7493
7494         f = fdget(p->wq_fd);
7495         if (!f.file)
7496                 return -EBADF;
7497
7498         if (f.file->f_op != &io_uring_fops) {
7499                 ret = -EINVAL;
7500                 goto out_fput;
7501         }
7502
7503         ctx_attach = f.file->private_data;
7504         /* @io_wq is protected by holding the fd */
7505         if (!io_wq_get(ctx_attach->io_wq, &data)) {
7506                 ret = -EINVAL;
7507                 goto out_fput;
7508         }
7509
7510         ctx->io_wq = ctx_attach->io_wq;
7511 out_fput:
7512         fdput(f);
7513         return ret;
7514 }
7515
7516 static int io_uring_alloc_task_context(struct task_struct *task)
7517 {
7518         struct io_uring_task *tctx;
7519
7520         tctx = kmalloc(sizeof(*tctx), GFP_KERNEL);
7521         if (unlikely(!tctx))
7522                 return -ENOMEM;
7523
7524         xa_init(&tctx->xa);
7525         init_waitqueue_head(&tctx->wait);
7526         tctx->last = NULL;
7527         tctx->in_idle = 0;
7528         atomic_long_set(&tctx->req_issue, 0);
7529         atomic_long_set(&tctx->req_complete, 0);
7530         task->io_uring = tctx;
7531         return 0;
7532 }
7533
7534 void __io_uring_free(struct task_struct *tsk)
7535 {
7536         struct io_uring_task *tctx = tsk->io_uring;
7537
7538         WARN_ON_ONCE(!xa_empty(&tctx->xa));
7539         xa_destroy(&tctx->xa);
7540         kfree(tctx);
7541         tsk->io_uring = NULL;
7542 }
7543
7544 static int io_sq_offload_start(struct io_ring_ctx *ctx,
7545                                struct io_uring_params *p)
7546 {
7547         int ret;
7548
7549         if (ctx->flags & IORING_SETUP_SQPOLL) {
7550                 ret = -EPERM;
7551                 if (!capable(CAP_SYS_ADMIN))
7552                         goto err;
7553
7554                 ctx->sq_thread_idle = msecs_to_jiffies(p->sq_thread_idle);
7555                 if (!ctx->sq_thread_idle)
7556                         ctx->sq_thread_idle = HZ;
7557
7558                 if (p->flags & IORING_SETUP_SQ_AFF) {
7559                         int cpu = p->sq_thread_cpu;
7560
7561                         ret = -EINVAL;
7562                         if (cpu >= nr_cpu_ids)
7563                                 goto err;
7564                         if (!cpu_online(cpu))
7565                                 goto err;
7566
7567                         ctx->sqo_thread = kthread_create_on_cpu(io_sq_thread,
7568                                                         ctx, cpu,
7569                                                         "io_uring-sq");
7570                 } else {
7571                         ctx->sqo_thread = kthread_create(io_sq_thread, ctx,
7572                                                         "io_uring-sq");
7573                 }
7574                 if (IS_ERR(ctx->sqo_thread)) {
7575                         ret = PTR_ERR(ctx->sqo_thread);
7576                         ctx->sqo_thread = NULL;
7577                         goto err;
7578                 }
7579                 ret = io_uring_alloc_task_context(ctx->sqo_thread);
7580                 if (ret)
7581                         goto err;
7582                 wake_up_process(ctx->sqo_thread);
7583         } else if (p->flags & IORING_SETUP_SQ_AFF) {
7584                 /* Can't have SQ_AFF without SQPOLL */
7585                 ret = -EINVAL;
7586                 goto err;
7587         }
7588
7589         ret = io_init_wq_offload(ctx, p);
7590         if (ret)
7591                 goto err;
7592
7593         return 0;
7594 err:
7595         io_finish_async(ctx);
7596         return ret;
7597 }
7598
7599 static inline void __io_unaccount_mem(struct user_struct *user,
7600                                       unsigned long nr_pages)
7601 {
7602         atomic_long_sub(nr_pages, &user->locked_vm);
7603 }
7604
7605 static inline int __io_account_mem(struct user_struct *user,
7606                                    unsigned long nr_pages)
7607 {
7608         unsigned long page_limit, cur_pages, new_pages;
7609
7610         /* Don't allow more pages than we can safely lock */
7611         page_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
7612
7613         do {
7614                 cur_pages = atomic_long_read(&user->locked_vm);
7615                 new_pages = cur_pages + nr_pages;
7616                 if (new_pages > page_limit)
7617                         return -ENOMEM;
7618         } while (atomic_long_cmpxchg(&user->locked_vm, cur_pages,
7619                                         new_pages) != cur_pages);
7620
7621         return 0;
7622 }
7623
7624 static void io_unaccount_mem(struct io_ring_ctx *ctx, unsigned long nr_pages,
7625                              enum io_mem_account acct)
7626 {
7627         if (ctx->limit_mem)
7628                 __io_unaccount_mem(ctx->user, nr_pages);
7629
7630         if (ctx->mm_account) {
7631                 if (acct == ACCT_LOCKED)
7632                         ctx->mm_account->locked_vm -= nr_pages;
7633                 else if (acct == ACCT_PINNED)
7634                         atomic64_sub(nr_pages, &ctx->mm_account->pinned_vm);
7635         }
7636 }
7637
7638 static int io_account_mem(struct io_ring_ctx *ctx, unsigned long nr_pages,
7639                           enum io_mem_account acct)
7640 {
7641         int ret;
7642
7643         if (ctx->limit_mem) {
7644                 ret = __io_account_mem(ctx->user, nr_pages);
7645                 if (ret)
7646                         return ret;
7647         }
7648
7649         if (ctx->mm_account) {
7650                 if (acct == ACCT_LOCKED)
7651                         ctx->mm_account->locked_vm += nr_pages;
7652                 else if (acct == ACCT_PINNED)
7653                         atomic64_add(nr_pages, &ctx->mm_account->pinned_vm);
7654         }
7655
7656         return 0;
7657 }
7658
7659 static void io_mem_free(void *ptr)
7660 {
7661         struct page *page;
7662
7663         if (!ptr)
7664                 return;
7665
7666         page = virt_to_head_page(ptr);
7667         if (put_page_testzero(page))
7668                 free_compound_page(page);
7669 }
7670
7671 static void *io_mem_alloc(size_t size)
7672 {
7673         gfp_t gfp_flags = GFP_KERNEL | __GFP_ZERO | __GFP_NOWARN | __GFP_COMP |
7674                                 __GFP_NORETRY;
7675
7676         return (void *) __get_free_pages(gfp_flags, get_order(size));
7677 }
7678
7679 static unsigned long rings_size(unsigned sq_entries, unsigned cq_entries,
7680                                 size_t *sq_offset)
7681 {
7682         struct io_rings *rings;
7683         size_t off, sq_array_size;
7684
7685         off = struct_size(rings, cqes, cq_entries);
7686         if (off == SIZE_MAX)
7687                 return SIZE_MAX;
7688
7689 #ifdef CONFIG_SMP
7690         off = ALIGN(off, SMP_CACHE_BYTES);
7691         if (off == 0)
7692                 return SIZE_MAX;
7693 #endif
7694
7695         if (sq_offset)
7696                 *sq_offset = off;
7697
7698         sq_array_size = array_size(sizeof(u32), sq_entries);
7699         if (sq_array_size == SIZE_MAX)
7700                 return SIZE_MAX;
7701
7702         if (check_add_overflow(off, sq_array_size, &off))
7703                 return SIZE_MAX;
7704
7705         return off;
7706 }
7707
7708 static unsigned long ring_pages(unsigned sq_entries, unsigned cq_entries)
7709 {
7710         size_t pages;
7711
7712         pages = (size_t)1 << get_order(
7713                 rings_size(sq_entries, cq_entries, NULL));
7714         pages += (size_t)1 << get_order(
7715                 array_size(sizeof(struct io_uring_sqe), sq_entries));
7716
7717         return pages;
7718 }
7719
7720 static int io_sqe_buffer_unregister(struct io_ring_ctx *ctx)
7721 {
7722         int i, j;
7723
7724         if (!ctx->user_bufs)
7725                 return -ENXIO;
7726
7727         for (i = 0; i < ctx->nr_user_bufs; i++) {
7728                 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
7729
7730                 for (j = 0; j < imu->nr_bvecs; j++)
7731                         unpin_user_page(imu->bvec[j].bv_page);
7732
7733                 io_unaccount_mem(ctx, imu->nr_bvecs, ACCT_PINNED);
7734                 kvfree(imu->bvec);
7735                 imu->nr_bvecs = 0;
7736         }
7737
7738         kfree(ctx->user_bufs);
7739         ctx->user_bufs = NULL;
7740         ctx->nr_user_bufs = 0;
7741         return 0;
7742 }
7743
7744 static int io_copy_iov(struct io_ring_ctx *ctx, struct iovec *dst,
7745                        void __user *arg, unsigned index)
7746 {
7747         struct iovec __user *src;
7748
7749 #ifdef CONFIG_COMPAT
7750         if (ctx->compat) {
7751                 struct compat_iovec __user *ciovs;
7752                 struct compat_iovec ciov;
7753
7754                 ciovs = (struct compat_iovec __user *) arg;
7755                 if (copy_from_user(&ciov, &ciovs[index], sizeof(ciov)))
7756                         return -EFAULT;
7757
7758                 dst->iov_base = u64_to_user_ptr((u64)ciov.iov_base);
7759                 dst->iov_len = ciov.iov_len;
7760                 return 0;
7761         }
7762 #endif
7763         src = (struct iovec __user *) arg;
7764         if (copy_from_user(dst, &src[index], sizeof(*dst)))
7765                 return -EFAULT;
7766         return 0;
7767 }
7768
7769 static int io_sqe_buffer_register(struct io_ring_ctx *ctx, void __user *arg,
7770                                   unsigned nr_args)
7771 {
7772         struct vm_area_struct **vmas = NULL;
7773         struct page **pages = NULL;
7774         int i, j, got_pages = 0;
7775         int ret = -EINVAL;
7776
7777         if (ctx->user_bufs)
7778                 return -EBUSY;
7779         if (!nr_args || nr_args > UIO_MAXIOV)
7780                 return -EINVAL;
7781
7782         ctx->user_bufs = kcalloc(nr_args, sizeof(struct io_mapped_ubuf),
7783                                         GFP_KERNEL);
7784         if (!ctx->user_bufs)
7785                 return -ENOMEM;
7786
7787         for (i = 0; i < nr_args; i++) {
7788                 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
7789                 unsigned long off, start, end, ubuf;
7790                 int pret, nr_pages;
7791                 struct iovec iov;
7792                 size_t size;
7793
7794                 ret = io_copy_iov(ctx, &iov, arg, i);
7795                 if (ret)
7796                         goto err;
7797
7798                 /*
7799                  * Don't impose further limits on the size and buffer
7800                  * constraints here, we'll -EINVAL later when IO is
7801                  * submitted if they are wrong.
7802                  */
7803                 ret = -EFAULT;
7804                 if (!iov.iov_base || !iov.iov_len)
7805                         goto err;
7806
7807                 /* arbitrary limit, but we need something */
7808                 if (iov.iov_len > SZ_1G)
7809                         goto err;
7810
7811                 ubuf = (unsigned long) iov.iov_base;
7812                 end = (ubuf + iov.iov_len + PAGE_SIZE - 1) >> PAGE_SHIFT;
7813                 start = ubuf >> PAGE_SHIFT;
7814                 nr_pages = end - start;
7815
7816                 ret = io_account_mem(ctx, nr_pages, ACCT_PINNED);
7817                 if (ret)
7818                         goto err;
7819
7820                 ret = 0;
7821                 if (!pages || nr_pages > got_pages) {
7822                         kvfree(vmas);
7823                         kvfree(pages);
7824                         pages = kvmalloc_array(nr_pages, sizeof(struct page *),
7825                                                 GFP_KERNEL);
7826                         vmas = kvmalloc_array(nr_pages,
7827                                         sizeof(struct vm_area_struct *),
7828                                         GFP_KERNEL);
7829                         if (!pages || !vmas) {
7830                                 ret = -ENOMEM;
7831                                 io_unaccount_mem(ctx, nr_pages, ACCT_PINNED);
7832                                 goto err;
7833                         }
7834                         got_pages = nr_pages;
7835                 }
7836
7837                 imu->bvec = kvmalloc_array(nr_pages, sizeof(struct bio_vec),
7838                                                 GFP_KERNEL);
7839                 ret = -ENOMEM;
7840                 if (!imu->bvec) {
7841                         io_unaccount_mem(ctx, nr_pages, ACCT_PINNED);
7842                         goto err;
7843                 }
7844
7845                 ret = 0;
7846                 mmap_read_lock(current->mm);
7847                 pret = pin_user_pages(ubuf, nr_pages,
7848                                       FOLL_WRITE | FOLL_LONGTERM,
7849                                       pages, vmas);
7850                 if (pret == nr_pages) {
7851                         /* don't support file backed memory */
7852                         for (j = 0; j < nr_pages; j++) {
7853                                 struct vm_area_struct *vma = vmas[j];
7854
7855                                 if (vma->vm_file &&
7856                                     !is_file_hugepages(vma->vm_file)) {
7857                                         ret = -EOPNOTSUPP;
7858                                         break;
7859                                 }
7860                         }
7861                 } else {
7862                         ret = pret < 0 ? pret : -EFAULT;
7863                 }
7864                 mmap_read_unlock(current->mm);
7865                 if (ret) {
7866                         /*
7867                          * if we did partial map, or found file backed vmas,
7868                          * release any pages we did get
7869                          */
7870                         if (pret > 0)
7871                                 unpin_user_pages(pages, pret);
7872                         io_unaccount_mem(ctx, nr_pages, ACCT_PINNED);
7873                         kvfree(imu->bvec);
7874                         goto err;
7875                 }
7876
7877                 off = ubuf & ~PAGE_MASK;
7878                 size = iov.iov_len;
7879                 for (j = 0; j < nr_pages; j++) {
7880                         size_t vec_len;
7881
7882                         vec_len = min_t(size_t, size, PAGE_SIZE - off);
7883                         imu->bvec[j].bv_page = pages[j];
7884                         imu->bvec[j].bv_len = vec_len;
7885                         imu->bvec[j].bv_offset = off;
7886                         off = 0;
7887                         size -= vec_len;
7888                 }
7889                 /* store original address for later verification */
7890                 imu->ubuf = ubuf;
7891                 imu->len = iov.iov_len;
7892                 imu->nr_bvecs = nr_pages;
7893
7894                 ctx->nr_user_bufs++;
7895         }
7896         kvfree(pages);
7897         kvfree(vmas);
7898         return 0;
7899 err:
7900         kvfree(pages);
7901         kvfree(vmas);
7902         io_sqe_buffer_unregister(ctx);
7903         return ret;
7904 }
7905
7906 static int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg)
7907 {
7908         __s32 __user *fds = arg;
7909         int fd;
7910
7911         if (ctx->cq_ev_fd)
7912                 return -EBUSY;
7913
7914         if (copy_from_user(&fd, fds, sizeof(*fds)))
7915                 return -EFAULT;
7916
7917         ctx->cq_ev_fd = eventfd_ctx_fdget(fd);
7918         if (IS_ERR(ctx->cq_ev_fd)) {
7919                 int ret = PTR_ERR(ctx->cq_ev_fd);
7920                 ctx->cq_ev_fd = NULL;
7921                 return ret;
7922         }
7923
7924         return 0;
7925 }
7926
7927 static int io_eventfd_unregister(struct io_ring_ctx *ctx)
7928 {
7929         if (ctx->cq_ev_fd) {
7930                 eventfd_ctx_put(ctx->cq_ev_fd);
7931                 ctx->cq_ev_fd = NULL;
7932                 return 0;
7933         }
7934
7935         return -ENXIO;
7936 }
7937
7938 static int __io_destroy_buffers(int id, void *p, void *data)
7939 {
7940         struct io_ring_ctx *ctx = data;
7941         struct io_buffer *buf = p;
7942
7943         __io_remove_buffers(ctx, buf, id, -1U);
7944         return 0;
7945 }
7946
7947 static void io_destroy_buffers(struct io_ring_ctx *ctx)
7948 {
7949         idr_for_each(&ctx->io_buffer_idr, __io_destroy_buffers, ctx);
7950         idr_destroy(&ctx->io_buffer_idr);
7951 }
7952
7953 static void io_ring_ctx_free(struct io_ring_ctx *ctx)
7954 {
7955         io_finish_async(ctx);
7956         io_sqe_buffer_unregister(ctx);
7957
7958         if (ctx->sqo_task) {
7959                 put_task_struct(ctx->sqo_task);
7960                 ctx->sqo_task = NULL;
7961                 mmdrop(ctx->mm_account);
7962                 ctx->mm_account = NULL;
7963         }
7964
7965         io_sqe_files_unregister(ctx);
7966         io_eventfd_unregister(ctx);
7967         io_destroy_buffers(ctx);
7968         idr_destroy(&ctx->personality_idr);
7969
7970 #if defined(CONFIG_UNIX)
7971         if (ctx->ring_sock) {
7972                 ctx->ring_sock->file = NULL; /* so that iput() is called */
7973                 sock_release(ctx->ring_sock);
7974         }
7975 #endif
7976
7977         io_mem_free(ctx->rings);
7978         io_mem_free(ctx->sq_sqes);
7979
7980         percpu_ref_exit(&ctx->refs);
7981         free_uid(ctx->user);
7982         put_cred(ctx->creds);
7983         kfree(ctx->cancel_hash);
7984         kmem_cache_free(req_cachep, ctx->fallback_req);
7985         kfree(ctx);
7986 }
7987
7988 static __poll_t io_uring_poll(struct file *file, poll_table *wait)
7989 {
7990         struct io_ring_ctx *ctx = file->private_data;
7991         __poll_t mask = 0;
7992
7993         poll_wait(file, &ctx->cq_wait, wait);
7994         /*
7995          * synchronizes with barrier from wq_has_sleeper call in
7996          * io_commit_cqring
7997          */
7998         smp_rmb();
7999         if (READ_ONCE(ctx->rings->sq.tail) - ctx->cached_sq_head !=
8000             ctx->rings->sq_ring_entries)
8001                 mask |= EPOLLOUT | EPOLLWRNORM;
8002         if (io_cqring_events(ctx, false))
8003                 mask |= EPOLLIN | EPOLLRDNORM;
8004
8005         return mask;
8006 }
8007
8008 static int io_uring_fasync(int fd, struct file *file, int on)
8009 {
8010         struct io_ring_ctx *ctx = file->private_data;
8011
8012         return fasync_helper(fd, file, on, &ctx->cq_fasync);
8013 }
8014
8015 static int io_remove_personalities(int id, void *p, void *data)
8016 {
8017         struct io_ring_ctx *ctx = data;
8018         const struct cred *cred;
8019
8020         cred = idr_remove(&ctx->personality_idr, id);
8021         if (cred)
8022                 put_cred(cred);
8023         return 0;
8024 }
8025
8026 static void io_ring_exit_work(struct work_struct *work)
8027 {
8028         struct io_ring_ctx *ctx = container_of(work, struct io_ring_ctx,
8029                                                exit_work);
8030
8031         /*
8032          * If we're doing polled IO and end up having requests being
8033          * submitted async (out-of-line), then completions can come in while
8034          * we're waiting for refs to drop. We need to reap these manually,
8035          * as nobody else will be looking for them.
8036          */
8037         do {
8038                 if (ctx->rings)
8039                         io_cqring_overflow_flush(ctx, true, NULL, NULL);
8040                 io_iopoll_try_reap_events(ctx);
8041         } while (!wait_for_completion_timeout(&ctx->ref_comp, HZ/20));
8042         io_ring_ctx_free(ctx);
8043 }
8044
8045 static void io_ring_ctx_wait_and_kill(struct io_ring_ctx *ctx)
8046 {
8047         mutex_lock(&ctx->uring_lock);
8048         percpu_ref_kill(&ctx->refs);
8049         mutex_unlock(&ctx->uring_lock);
8050
8051         io_kill_timeouts(ctx, NULL);
8052         io_poll_remove_all(ctx, NULL);
8053
8054         if (ctx->io_wq)
8055                 io_wq_cancel_all(ctx->io_wq);
8056
8057         /* if we failed setting up the ctx, we might not have any rings */
8058         if (ctx->rings)
8059                 io_cqring_overflow_flush(ctx, true, NULL, NULL);
8060         io_iopoll_try_reap_events(ctx);
8061         idr_for_each(&ctx->personality_idr, io_remove_personalities, ctx);
8062
8063         /*
8064          * Do this upfront, so we won't have a grace period where the ring
8065          * is closed but resources aren't reaped yet. This can cause
8066          * spurious failure in setting up a new ring.
8067          */
8068         io_unaccount_mem(ctx, ring_pages(ctx->sq_entries, ctx->cq_entries),
8069                          ACCT_LOCKED);
8070
8071         INIT_WORK(&ctx->exit_work, io_ring_exit_work);
8072         /*
8073          * Use system_unbound_wq to avoid spawning tons of event kworkers
8074          * if we're exiting a ton of rings at the same time. It just adds
8075          * noise and overhead, there's no discernable change in runtime
8076          * over using system_wq.
8077          */
8078         queue_work(system_unbound_wq, &ctx->exit_work);
8079 }
8080
8081 static int io_uring_release(struct inode *inode, struct file *file)
8082 {
8083         struct io_ring_ctx *ctx = file->private_data;
8084
8085         file->private_data = NULL;
8086         io_ring_ctx_wait_and_kill(ctx);
8087         return 0;
8088 }
8089
8090 static bool io_wq_files_match(struct io_wq_work *work, void *data)
8091 {
8092         struct files_struct *files = data;
8093
8094         return !files || work->files == files;
8095 }
8096
8097 /*
8098  * Returns true if 'preq' is the link parent of 'req'
8099  */
8100 static bool io_match_link(struct io_kiocb *preq, struct io_kiocb *req)
8101 {
8102         struct io_kiocb *link;
8103
8104         if (!(preq->flags & REQ_F_LINK_HEAD))
8105                 return false;
8106
8107         list_for_each_entry(link, &preq->link_list, link_list) {
8108                 if (link == req)
8109                         return true;
8110         }
8111
8112         return false;
8113 }
8114
8115 static bool io_match_link_files(struct io_kiocb *req,
8116                                 struct files_struct *files)
8117 {
8118         struct io_kiocb *link;
8119
8120         if (io_match_files(req, files))
8121                 return true;
8122         if (req->flags & REQ_F_LINK_HEAD) {
8123                 list_for_each_entry(link, &req->link_list, link_list) {
8124                         if (io_match_files(link, files))
8125                                 return true;
8126                 }
8127         }
8128         return false;
8129 }
8130
8131 /*
8132  * We're looking to cancel 'req' because it's holding on to our files, but
8133  * 'req' could be a link to another request. See if it is, and cancel that
8134  * parent request if so.
8135  */
8136 static bool io_poll_remove_link(struct io_ring_ctx *ctx, struct io_kiocb *req)
8137 {
8138         struct hlist_node *tmp;
8139         struct io_kiocb *preq;
8140         bool found = false;
8141         int i;
8142
8143         spin_lock_irq(&ctx->completion_lock);
8144         for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
8145                 struct hlist_head *list;
8146
8147                 list = &ctx->cancel_hash[i];
8148                 hlist_for_each_entry_safe(preq, tmp, list, hash_node) {
8149                         found = io_match_link(preq, req);
8150                         if (found) {
8151                                 io_poll_remove_one(preq);
8152                                 break;
8153                         }
8154                 }
8155         }
8156         spin_unlock_irq(&ctx->completion_lock);
8157         return found;
8158 }
8159
8160 static bool io_timeout_remove_link(struct io_ring_ctx *ctx,
8161                                    struct io_kiocb *req)
8162 {
8163         struct io_kiocb *preq;
8164         bool found = false;
8165
8166         spin_lock_irq(&ctx->completion_lock);
8167         list_for_each_entry(preq, &ctx->timeout_list, timeout.list) {
8168                 found = io_match_link(preq, req);
8169                 if (found) {
8170                         __io_timeout_cancel(preq);
8171                         break;
8172                 }
8173         }
8174         spin_unlock_irq(&ctx->completion_lock);
8175         return found;
8176 }
8177
8178 static bool io_cancel_link_cb(struct io_wq_work *work, void *data)
8179 {
8180         return io_match_link(container_of(work, struct io_kiocb, work), data);
8181 }
8182
8183 static void io_attempt_cancel(struct io_ring_ctx *ctx, struct io_kiocb *req)
8184 {
8185         enum io_wq_cancel cret;
8186
8187         /* cancel this particular work, if it's running */
8188         cret = io_wq_cancel_work(ctx->io_wq, &req->work);
8189         if (cret != IO_WQ_CANCEL_NOTFOUND)
8190                 return;
8191
8192         /* find links that hold this pending, cancel those */
8193         cret = io_wq_cancel_cb(ctx->io_wq, io_cancel_link_cb, req, true);
8194         if (cret != IO_WQ_CANCEL_NOTFOUND)
8195                 return;
8196
8197         /* if we have a poll link holding this pending, cancel that */
8198         if (io_poll_remove_link(ctx, req))
8199                 return;
8200
8201         /* final option, timeout link is holding this req pending */
8202         io_timeout_remove_link(ctx, req);
8203 }
8204
8205 static void io_cancel_defer_files(struct io_ring_ctx *ctx,
8206                                   struct files_struct *files)
8207 {
8208         struct io_defer_entry *de = NULL;
8209         LIST_HEAD(list);
8210
8211         spin_lock_irq(&ctx->completion_lock);
8212         list_for_each_entry_reverse(de, &ctx->defer_list, list) {
8213                 if (io_match_link_files(de->req, files)) {
8214                         list_cut_position(&list, &ctx->defer_list, &de->list);
8215                         break;
8216                 }
8217         }
8218         spin_unlock_irq(&ctx->completion_lock);
8219
8220         while (!list_empty(&list)) {
8221                 de = list_first_entry(&list, struct io_defer_entry, list);
8222                 list_del_init(&de->list);
8223                 req_set_fail_links(de->req);
8224                 io_put_req(de->req);
8225                 io_req_complete(de->req, -ECANCELED);
8226                 kfree(de);
8227         }
8228 }
8229
8230 /*
8231  * Returns true if we found and killed one or more files pinning requests
8232  */
8233 static bool io_uring_cancel_files(struct io_ring_ctx *ctx,
8234                                   struct files_struct *files)
8235 {
8236         if (list_empty_careful(&ctx->inflight_list))
8237                 return false;
8238
8239         io_cancel_defer_files(ctx, files);
8240         /* cancel all at once, should be faster than doing it one by one*/
8241         io_wq_cancel_cb(ctx->io_wq, io_wq_files_match, files, true);
8242
8243         while (!list_empty_careful(&ctx->inflight_list)) {
8244                 struct io_kiocb *cancel_req = NULL, *req;
8245                 DEFINE_WAIT(wait);
8246
8247                 spin_lock_irq(&ctx->inflight_lock);
8248                 list_for_each_entry(req, &ctx->inflight_list, inflight_entry) {
8249                         if (files && req->work.files != files)
8250                                 continue;
8251                         /* req is being completed, ignore */
8252                         if (!refcount_inc_not_zero(&req->refs))
8253                                 continue;
8254                         cancel_req = req;
8255                         break;
8256                 }
8257                 if (cancel_req)
8258                         prepare_to_wait(&ctx->inflight_wait, &wait,
8259                                                 TASK_UNINTERRUPTIBLE);
8260                 spin_unlock_irq(&ctx->inflight_lock);
8261
8262                 /* We need to keep going until we don't find a matching req */
8263                 if (!cancel_req)
8264                         break;
8265                 /* cancel this request, or head link requests */
8266                 io_attempt_cancel(ctx, cancel_req);
8267                 io_put_req(cancel_req);
8268                 /* cancellations _may_ trigger task work */
8269                 io_run_task_work();
8270                 schedule();
8271                 finish_wait(&ctx->inflight_wait, &wait);
8272         }
8273
8274         return true;
8275 }
8276
8277 static bool io_cancel_task_cb(struct io_wq_work *work, void *data)
8278 {
8279         struct io_kiocb *req = container_of(work, struct io_kiocb, work);
8280         struct task_struct *task = data;
8281
8282         return io_task_match(req, task);
8283 }
8284
8285 static bool __io_uring_cancel_task_requests(struct io_ring_ctx *ctx,
8286                                             struct task_struct *task,
8287                                             struct files_struct *files)
8288 {
8289         bool ret;
8290
8291         ret = io_uring_cancel_files(ctx, files);
8292         if (!files) {
8293                 enum io_wq_cancel cret;
8294
8295                 cret = io_wq_cancel_cb(ctx->io_wq, io_cancel_task_cb, task, true);
8296                 if (cret != IO_WQ_CANCEL_NOTFOUND)
8297                         ret = true;
8298
8299                 /* SQPOLL thread does its own polling */
8300                 if (!(ctx->flags & IORING_SETUP_SQPOLL)) {
8301                         while (!list_empty_careful(&ctx->iopoll_list)) {
8302                                 io_iopoll_try_reap_events(ctx);
8303                                 ret = true;
8304                         }
8305                 }
8306
8307                 ret |= io_poll_remove_all(ctx, task);
8308                 ret |= io_kill_timeouts(ctx, task);
8309         }
8310
8311         return ret;
8312 }
8313
8314 /*
8315  * We need to iteratively cancel requests, in case a request has dependent
8316  * hard links. These persist even for failure of cancelations, hence keep
8317  * looping until none are found.
8318  */
8319 static void io_uring_cancel_task_requests(struct io_ring_ctx *ctx,
8320                                           struct files_struct *files)
8321 {
8322         struct task_struct *task = current;
8323
8324         if (ctx->flags & IORING_SETUP_SQPOLL)
8325                 task = ctx->sqo_thread;
8326
8327         io_cqring_overflow_flush(ctx, true, task, files);
8328
8329         while (__io_uring_cancel_task_requests(ctx, task, files)) {
8330                 io_run_task_work();
8331                 cond_resched();
8332         }
8333 }
8334
8335 /*
8336  * Note that this task has used io_uring. We use it for cancelation purposes.
8337  */
8338 static int io_uring_add_task_file(struct file *file)
8339 {
8340         if (unlikely(!current->io_uring)) {
8341                 int ret;
8342
8343                 ret = io_uring_alloc_task_context(current);
8344                 if (unlikely(ret))
8345                         return ret;
8346         }
8347         if (current->io_uring->last != file) {
8348                 XA_STATE(xas, &current->io_uring->xa, (unsigned long) file);
8349                 void *old;
8350
8351                 rcu_read_lock();
8352                 old = xas_load(&xas);
8353                 if (old != file) {
8354                         get_file(file);
8355                         xas_lock(&xas);
8356                         xas_store(&xas, file);
8357                         xas_unlock(&xas);
8358                 }
8359                 rcu_read_unlock();
8360                 current->io_uring->last = file;
8361         }
8362
8363         return 0;
8364 }
8365
8366 /*
8367  * Remove this io_uring_file -> task mapping.
8368  */
8369 static void io_uring_del_task_file(struct file *file)
8370 {
8371         struct io_uring_task *tctx = current->io_uring;
8372         XA_STATE(xas, &tctx->xa, (unsigned long) file);
8373
8374         if (tctx->last == file)
8375                 tctx->last = NULL;
8376
8377         xas_lock(&xas);
8378         file = xas_store(&xas, NULL);
8379         xas_unlock(&xas);
8380
8381         if (file)
8382                 fput(file);
8383 }
8384
8385 static void __io_uring_attempt_task_drop(struct file *file)
8386 {
8387         XA_STATE(xas, &current->io_uring->xa, (unsigned long) file);
8388         struct file *old;
8389
8390         rcu_read_lock();
8391         old = xas_load(&xas);
8392         rcu_read_unlock();
8393
8394         if (old == file)
8395                 io_uring_del_task_file(file);
8396 }
8397
8398 /*
8399  * Drop task note for this file if we're the only ones that hold it after
8400  * pending fput()
8401  */
8402 static void io_uring_attempt_task_drop(struct file *file, bool exiting)
8403 {
8404         if (!current->io_uring)
8405                 return;
8406         /*
8407          * fput() is pending, will be 2 if the only other ref is our potential
8408          * task file note. If the task is exiting, drop regardless of count.
8409          */
8410         if (!exiting && atomic_long_read(&file->f_count) != 2)
8411                 return;
8412
8413         __io_uring_attempt_task_drop(file);
8414 }
8415
8416 void __io_uring_files_cancel(struct files_struct *files)
8417 {
8418         struct io_uring_task *tctx = current->io_uring;
8419         XA_STATE(xas, &tctx->xa, 0);
8420
8421         /* make sure overflow events are dropped */
8422         tctx->in_idle = true;
8423
8424         do {
8425                 struct io_ring_ctx *ctx;
8426                 struct file *file;
8427
8428                 xas_lock(&xas);
8429                 file = xas_next_entry(&xas, ULONG_MAX);
8430                 xas_unlock(&xas);
8431
8432                 if (!file)
8433                         break;
8434
8435                 ctx = file->private_data;
8436
8437                 io_uring_cancel_task_requests(ctx, files);
8438                 if (files)
8439                         io_uring_del_task_file(file);
8440         } while (1);
8441 }
8442
8443 static inline bool io_uring_task_idle(struct io_uring_task *tctx)
8444 {
8445         return atomic_long_read(&tctx->req_issue) ==
8446                 atomic_long_read(&tctx->req_complete);
8447 }
8448
8449 /*
8450  * Find any io_uring fd that this task has registered or done IO on, and cancel
8451  * requests.
8452  */
8453 void __io_uring_task_cancel(void)
8454 {
8455         struct io_uring_task *tctx = current->io_uring;
8456         DEFINE_WAIT(wait);
8457         long completions;
8458
8459         /* make sure overflow events are dropped */
8460         tctx->in_idle = true;
8461
8462         while (!io_uring_task_idle(tctx)) {
8463                 /* read completions before cancelations */
8464                 completions = atomic_long_read(&tctx->req_complete);
8465                 __io_uring_files_cancel(NULL);
8466
8467                 prepare_to_wait(&tctx->wait, &wait, TASK_UNINTERRUPTIBLE);
8468
8469                 /*
8470                  * If we've seen completions, retry. This avoids a race where
8471                  * a completion comes in before we did prepare_to_wait().
8472                  */
8473                 if (completions != atomic_long_read(&tctx->req_complete))
8474                         continue;
8475                 if (io_uring_task_idle(tctx))
8476                         break;
8477                 schedule();
8478         }
8479
8480         finish_wait(&tctx->wait, &wait);
8481         tctx->in_idle = false;
8482 }
8483
8484 static int io_uring_flush(struct file *file, void *data)
8485 {
8486         struct io_ring_ctx *ctx = file->private_data;
8487
8488         /*
8489          * If the task is going away, cancel work it may have pending
8490          */
8491         if (fatal_signal_pending(current) || (current->flags & PF_EXITING))
8492                 data = NULL;
8493
8494         io_uring_cancel_task_requests(ctx, data);
8495         io_uring_attempt_task_drop(file, !data);
8496         return 0;
8497 }
8498
8499 static void *io_uring_validate_mmap_request(struct file *file,
8500                                             loff_t pgoff, size_t sz)
8501 {
8502         struct io_ring_ctx *ctx = file->private_data;
8503         loff_t offset = pgoff << PAGE_SHIFT;
8504         struct page *page;
8505         void *ptr;
8506
8507         switch (offset) {
8508         case IORING_OFF_SQ_RING:
8509         case IORING_OFF_CQ_RING:
8510                 ptr = ctx->rings;
8511                 break;
8512         case IORING_OFF_SQES:
8513                 ptr = ctx->sq_sqes;
8514                 break;
8515         default:
8516                 return ERR_PTR(-EINVAL);
8517         }
8518
8519         page = virt_to_head_page(ptr);
8520         if (sz > page_size(page))
8521                 return ERR_PTR(-EINVAL);
8522
8523         return ptr;
8524 }
8525
8526 #ifdef CONFIG_MMU
8527
8528 static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
8529 {
8530         size_t sz = vma->vm_end - vma->vm_start;
8531         unsigned long pfn;
8532         void *ptr;
8533
8534         ptr = io_uring_validate_mmap_request(file, vma->vm_pgoff, sz);
8535         if (IS_ERR(ptr))
8536                 return PTR_ERR(ptr);
8537
8538         pfn = virt_to_phys(ptr) >> PAGE_SHIFT;
8539         return remap_pfn_range(vma, vma->vm_start, pfn, sz, vma->vm_page_prot);
8540 }
8541
8542 #else /* !CONFIG_MMU */
8543
8544 static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
8545 {
8546         return vma->vm_flags & (VM_SHARED | VM_MAYSHARE) ? 0 : -EINVAL;
8547 }
8548
8549 static unsigned int io_uring_nommu_mmap_capabilities(struct file *file)
8550 {
8551         return NOMMU_MAP_DIRECT | NOMMU_MAP_READ | NOMMU_MAP_WRITE;
8552 }
8553
8554 static unsigned long io_uring_nommu_get_unmapped_area(struct file *file,
8555         unsigned long addr, unsigned long len,
8556         unsigned long pgoff, unsigned long flags)
8557 {
8558         void *ptr;
8559
8560         ptr = io_uring_validate_mmap_request(file, pgoff, len);
8561         if (IS_ERR(ptr))
8562                 return PTR_ERR(ptr);
8563
8564         return (unsigned long) ptr;
8565 }
8566
8567 #endif /* !CONFIG_MMU */
8568
8569 SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
8570                 u32, min_complete, u32, flags, const sigset_t __user *, sig,
8571                 size_t, sigsz)
8572 {
8573         struct io_ring_ctx *ctx;
8574         long ret = -EBADF;
8575         int submitted = 0;
8576         struct fd f;
8577
8578         io_run_task_work();
8579
8580         if (flags & ~(IORING_ENTER_GETEVENTS | IORING_ENTER_SQ_WAKEUP))
8581                 return -EINVAL;
8582
8583         f = fdget(fd);
8584         if (!f.file)
8585                 return -EBADF;
8586
8587         ret = -EOPNOTSUPP;
8588         if (f.file->f_op != &io_uring_fops)
8589                 goto out_fput;
8590
8591         ret = -ENXIO;
8592         ctx = f.file->private_data;
8593         if (!percpu_ref_tryget(&ctx->refs))
8594                 goto out_fput;
8595
8596         /*
8597          * For SQ polling, the thread will do all submissions and completions.
8598          * Just return the requested submit count, and wake the thread if
8599          * we were asked to.
8600          */
8601         ret = 0;
8602         if (ctx->flags & IORING_SETUP_SQPOLL) {
8603                 if (!list_empty_careful(&ctx->cq_overflow_list))
8604                         io_cqring_overflow_flush(ctx, false, NULL, NULL);
8605                 if (flags & IORING_ENTER_SQ_WAKEUP)
8606                         wake_up(&ctx->sqo_wait);
8607                 submitted = to_submit;
8608         } else if (to_submit) {
8609                 ret = io_uring_add_task_file(f.file);
8610                 if (unlikely(ret))
8611                         goto out;
8612                 mutex_lock(&ctx->uring_lock);
8613                 submitted = io_submit_sqes(ctx, to_submit);
8614                 mutex_unlock(&ctx->uring_lock);
8615
8616                 if (submitted != to_submit)
8617                         goto out;
8618         }
8619         if (flags & IORING_ENTER_GETEVENTS) {
8620                 min_complete = min(min_complete, ctx->cq_entries);
8621
8622                 /*
8623                  * When SETUP_IOPOLL and SETUP_SQPOLL are both enabled, user
8624                  * space applications don't need to do io completion events
8625                  * polling again, they can rely on io_sq_thread to do polling
8626                  * work, which can reduce cpu usage and uring_lock contention.
8627                  */
8628                 if (ctx->flags & IORING_SETUP_IOPOLL &&
8629                     !(ctx->flags & IORING_SETUP_SQPOLL)) {
8630                         ret = io_iopoll_check(ctx, min_complete);
8631                 } else {
8632                         ret = io_cqring_wait(ctx, min_complete, sig, sigsz);
8633                 }
8634         }
8635
8636 out:
8637         percpu_ref_put(&ctx->refs);
8638 out_fput:
8639         fdput(f);
8640         return submitted ? submitted : ret;
8641 }
8642
8643 #ifdef CONFIG_PROC_FS
8644 static int io_uring_show_cred(int id, void *p, void *data)
8645 {
8646         const struct cred *cred = p;
8647         struct seq_file *m = data;
8648         struct user_namespace *uns = seq_user_ns(m);
8649         struct group_info *gi;
8650         kernel_cap_t cap;
8651         unsigned __capi;
8652         int g;
8653
8654         seq_printf(m, "%5d\n", id);
8655         seq_put_decimal_ull(m, "\tUid:\t", from_kuid_munged(uns, cred->uid));
8656         seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->euid));
8657         seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->suid));
8658         seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->fsuid));
8659         seq_put_decimal_ull(m, "\n\tGid:\t", from_kgid_munged(uns, cred->gid));
8660         seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->egid));
8661         seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->sgid));
8662         seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->fsgid));
8663         seq_puts(m, "\n\tGroups:\t");
8664         gi = cred->group_info;
8665         for (g = 0; g < gi->ngroups; g++) {
8666                 seq_put_decimal_ull(m, g ? " " : "",
8667                                         from_kgid_munged(uns, gi->gid[g]));
8668         }
8669         seq_puts(m, "\n\tCapEff:\t");
8670         cap = cred->cap_effective;
8671         CAP_FOR_EACH_U32(__capi)
8672                 seq_put_hex_ll(m, NULL, cap.cap[CAP_LAST_U32 - __capi], 8);
8673         seq_putc(m, '\n');
8674         return 0;
8675 }
8676
8677 static void __io_uring_show_fdinfo(struct io_ring_ctx *ctx, struct seq_file *m)
8678 {
8679         bool has_lock;
8680         int i;
8681
8682         /*
8683          * Avoid ABBA deadlock between the seq lock and the io_uring mutex,
8684          * since fdinfo case grabs it in the opposite direction of normal use
8685          * cases. If we fail to get the lock, we just don't iterate any
8686          * structures that could be going away outside the io_uring mutex.
8687          */
8688         has_lock = mutex_trylock(&ctx->uring_lock);
8689
8690         seq_printf(m, "UserFiles:\t%u\n", ctx->nr_user_files);
8691         for (i = 0; has_lock && i < ctx->nr_user_files; i++) {
8692                 struct fixed_file_table *table;
8693                 struct file *f;
8694
8695                 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
8696                 f = table->files[i & IORING_FILE_TABLE_MASK];
8697                 if (f)
8698                         seq_printf(m, "%5u: %s\n", i, file_dentry(f)->d_iname);
8699                 else
8700                         seq_printf(m, "%5u: <none>\n", i);
8701         }
8702         seq_printf(m, "UserBufs:\t%u\n", ctx->nr_user_bufs);
8703         for (i = 0; has_lock && i < ctx->nr_user_bufs; i++) {
8704                 struct io_mapped_ubuf *buf = &ctx->user_bufs[i];
8705
8706                 seq_printf(m, "%5u: 0x%llx/%u\n", i, buf->ubuf,
8707                                                 (unsigned int) buf->len);
8708         }
8709         if (has_lock && !idr_is_empty(&ctx->personality_idr)) {
8710                 seq_printf(m, "Personalities:\n");
8711                 idr_for_each(&ctx->personality_idr, io_uring_show_cred, m);
8712         }
8713         seq_printf(m, "PollList:\n");
8714         spin_lock_irq(&ctx->completion_lock);
8715         for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
8716                 struct hlist_head *list = &ctx->cancel_hash[i];
8717                 struct io_kiocb *req;
8718
8719                 hlist_for_each_entry(req, list, hash_node)
8720                         seq_printf(m, "  op=%d, task_works=%d\n", req->opcode,
8721                                         req->task->task_works != NULL);
8722         }
8723         spin_unlock_irq(&ctx->completion_lock);
8724         if (has_lock)
8725                 mutex_unlock(&ctx->uring_lock);
8726 }
8727
8728 static void io_uring_show_fdinfo(struct seq_file *m, struct file *f)
8729 {
8730         struct io_ring_ctx *ctx = f->private_data;
8731
8732         if (percpu_ref_tryget(&ctx->refs)) {
8733                 __io_uring_show_fdinfo(ctx, m);
8734                 percpu_ref_put(&ctx->refs);
8735         }
8736 }
8737 #endif
8738
8739 static const struct file_operations io_uring_fops = {
8740         .release        = io_uring_release,
8741         .flush          = io_uring_flush,
8742         .mmap           = io_uring_mmap,
8743 #ifndef CONFIG_MMU
8744         .get_unmapped_area = io_uring_nommu_get_unmapped_area,
8745         .mmap_capabilities = io_uring_nommu_mmap_capabilities,
8746 #endif
8747         .poll           = io_uring_poll,
8748         .fasync         = io_uring_fasync,
8749 #ifdef CONFIG_PROC_FS
8750         .show_fdinfo    = io_uring_show_fdinfo,
8751 #endif
8752 };
8753
8754 static int io_allocate_scq_urings(struct io_ring_ctx *ctx,
8755                                   struct io_uring_params *p)
8756 {
8757         struct io_rings *rings;
8758         size_t size, sq_array_offset;
8759
8760         /* make sure these are sane, as we already accounted them */
8761         ctx->sq_entries = p->sq_entries;
8762         ctx->cq_entries = p->cq_entries;
8763
8764         size = rings_size(p->sq_entries, p->cq_entries, &sq_array_offset);
8765         if (size == SIZE_MAX)
8766                 return -EOVERFLOW;
8767
8768         rings = io_mem_alloc(size);
8769         if (!rings)
8770                 return -ENOMEM;
8771
8772         ctx->rings = rings;
8773         ctx->sq_array = (u32 *)((char *)rings + sq_array_offset);
8774         rings->sq_ring_mask = p->sq_entries - 1;
8775         rings->cq_ring_mask = p->cq_entries - 1;
8776         rings->sq_ring_entries = p->sq_entries;
8777         rings->cq_ring_entries = p->cq_entries;
8778         ctx->sq_mask = rings->sq_ring_mask;
8779         ctx->cq_mask = rings->cq_ring_mask;
8780
8781         size = array_size(sizeof(struct io_uring_sqe), p->sq_entries);
8782         if (size == SIZE_MAX) {
8783                 io_mem_free(ctx->rings);
8784                 ctx->rings = NULL;
8785                 return -EOVERFLOW;
8786         }
8787
8788         ctx->sq_sqes = io_mem_alloc(size);
8789         if (!ctx->sq_sqes) {
8790                 io_mem_free(ctx->rings);
8791                 ctx->rings = NULL;
8792                 return -ENOMEM;
8793         }
8794
8795         return 0;
8796 }
8797
8798 /*
8799  * Allocate an anonymous fd, this is what constitutes the application
8800  * visible backing of an io_uring instance. The application mmaps this
8801  * fd to gain access to the SQ/CQ ring details. If UNIX sockets are enabled,
8802  * we have to tie this fd to a socket for file garbage collection purposes.
8803  */
8804 static int io_uring_get_fd(struct io_ring_ctx *ctx)
8805 {
8806         struct file *file;
8807         int ret;
8808
8809 #if defined(CONFIG_UNIX)
8810         ret = sock_create_kern(&init_net, PF_UNIX, SOCK_RAW, IPPROTO_IP,
8811                                 &ctx->ring_sock);
8812         if (ret)
8813                 return ret;
8814 #endif
8815
8816         ret = get_unused_fd_flags(O_RDWR | O_CLOEXEC);
8817         if (ret < 0)
8818                 goto err;
8819
8820         file = anon_inode_getfile("[io_uring]", &io_uring_fops, ctx,
8821                                         O_RDWR | O_CLOEXEC);
8822         if (IS_ERR(file)) {
8823 err_fd:
8824                 put_unused_fd(ret);
8825                 ret = PTR_ERR(file);
8826                 goto err;
8827         }
8828
8829 #if defined(CONFIG_UNIX)
8830         ctx->ring_sock->file = file;
8831 #endif
8832         if (unlikely(io_uring_add_task_file(file))) {
8833                 file = ERR_PTR(-ENOMEM);
8834                 goto err_fd;
8835         }
8836         fd_install(ret, file);
8837         return ret;
8838 err:
8839 #if defined(CONFIG_UNIX)
8840         sock_release(ctx->ring_sock);
8841         ctx->ring_sock = NULL;
8842 #endif
8843         return ret;
8844 }
8845
8846 static int io_uring_create(unsigned entries, struct io_uring_params *p,
8847                            struct io_uring_params __user *params)
8848 {
8849         struct user_struct *user = NULL;
8850         struct io_ring_ctx *ctx;
8851         bool limit_mem;
8852         int ret;
8853
8854         if (!entries)
8855                 return -EINVAL;
8856         if (entries > IORING_MAX_ENTRIES) {
8857                 if (!(p->flags & IORING_SETUP_CLAMP))
8858                         return -EINVAL;
8859                 entries = IORING_MAX_ENTRIES;
8860         }
8861
8862         /*
8863          * Use twice as many entries for the CQ ring. It's possible for the
8864          * application to drive a higher depth than the size of the SQ ring,
8865          * since the sqes are only used at submission time. This allows for
8866          * some flexibility in overcommitting a bit. If the application has
8867          * set IORING_SETUP_CQSIZE, it will have passed in the desired number
8868          * of CQ ring entries manually.
8869          */
8870         p->sq_entries = roundup_pow_of_two(entries);
8871         if (p->flags & IORING_SETUP_CQSIZE) {
8872                 /*
8873                  * If IORING_SETUP_CQSIZE is set, we do the same roundup
8874                  * to a power-of-two, if it isn't already. We do NOT impose
8875                  * any cq vs sq ring sizing.
8876                  */
8877                 if (p->cq_entries < p->sq_entries)
8878                         return -EINVAL;
8879                 if (p->cq_entries > IORING_MAX_CQ_ENTRIES) {
8880                         if (!(p->flags & IORING_SETUP_CLAMP))
8881                                 return -EINVAL;
8882                         p->cq_entries = IORING_MAX_CQ_ENTRIES;
8883                 }
8884                 p->cq_entries = roundup_pow_of_two(p->cq_entries);
8885         } else {
8886                 p->cq_entries = 2 * p->sq_entries;
8887         }
8888
8889         user = get_uid(current_user());
8890         limit_mem = !capable(CAP_IPC_LOCK);
8891
8892         if (limit_mem) {
8893                 ret = __io_account_mem(user,
8894                                 ring_pages(p->sq_entries, p->cq_entries));
8895                 if (ret) {
8896                         free_uid(user);
8897                         return ret;
8898                 }
8899         }
8900
8901         ctx = io_ring_ctx_alloc(p);
8902         if (!ctx) {
8903                 if (limit_mem)
8904                         __io_unaccount_mem(user, ring_pages(p->sq_entries,
8905                                                                 p->cq_entries));
8906                 free_uid(user);
8907                 return -ENOMEM;
8908         }
8909         ctx->compat = in_compat_syscall();
8910         ctx->user = user;
8911         ctx->creds = get_current_cred();
8912
8913         ctx->sqo_task = get_task_struct(current);
8914
8915         /*
8916          * This is just grabbed for accounting purposes. When a process exits,
8917          * the mm is exited and dropped before the files, hence we need to hang
8918          * on to this mm purely for the purposes of being able to unaccount
8919          * memory (locked/pinned vm). It's not used for anything else.
8920          */
8921         mmgrab(current->mm);
8922         ctx->mm_account = current->mm;
8923
8924         /*
8925          * Account memory _before_ installing the file descriptor. Once
8926          * the descriptor is installed, it can get closed at any time. Also
8927          * do this before hitting the general error path, as ring freeing
8928          * will un-account as well.
8929          */
8930         io_account_mem(ctx, ring_pages(p->sq_entries, p->cq_entries),
8931                        ACCT_LOCKED);
8932         ctx->limit_mem = limit_mem;
8933
8934         ret = io_allocate_scq_urings(ctx, p);
8935         if (ret)
8936                 goto err;
8937
8938         ret = io_sq_offload_start(ctx, p);
8939         if (ret)
8940                 goto err;
8941
8942         memset(&p->sq_off, 0, sizeof(p->sq_off));
8943         p->sq_off.head = offsetof(struct io_rings, sq.head);
8944         p->sq_off.tail = offsetof(struct io_rings, sq.tail);
8945         p->sq_off.ring_mask = offsetof(struct io_rings, sq_ring_mask);
8946         p->sq_off.ring_entries = offsetof(struct io_rings, sq_ring_entries);
8947         p->sq_off.flags = offsetof(struct io_rings, sq_flags);
8948         p->sq_off.dropped = offsetof(struct io_rings, sq_dropped);
8949         p->sq_off.array = (char *)ctx->sq_array - (char *)ctx->rings;
8950
8951         memset(&p->cq_off, 0, sizeof(p->cq_off));
8952         p->cq_off.head = offsetof(struct io_rings, cq.head);
8953         p->cq_off.tail = offsetof(struct io_rings, cq.tail);
8954         p->cq_off.ring_mask = offsetof(struct io_rings, cq_ring_mask);
8955         p->cq_off.ring_entries = offsetof(struct io_rings, cq_ring_entries);
8956         p->cq_off.overflow = offsetof(struct io_rings, cq_overflow);
8957         p->cq_off.cqes = offsetof(struct io_rings, cqes);
8958         p->cq_off.flags = offsetof(struct io_rings, cq_flags);
8959
8960         p->features = IORING_FEAT_SINGLE_MMAP | IORING_FEAT_NODROP |
8961                         IORING_FEAT_SUBMIT_STABLE | IORING_FEAT_RW_CUR_POS |
8962                         IORING_FEAT_CUR_PERSONALITY | IORING_FEAT_FAST_POLL |
8963                         IORING_FEAT_POLL_32BITS;
8964
8965         if (copy_to_user(params, p, sizeof(*p))) {
8966                 ret = -EFAULT;
8967                 goto err;
8968         }
8969
8970         /*
8971          * Install ring fd as the very last thing, so we don't risk someone
8972          * having closed it before we finish setup
8973          */
8974         ret = io_uring_get_fd(ctx);
8975         if (ret < 0)
8976                 goto err;
8977
8978         trace_io_uring_create(ret, ctx, p->sq_entries, p->cq_entries, p->flags);
8979         return ret;
8980 err:
8981         io_ring_ctx_wait_and_kill(ctx);
8982         return ret;
8983 }
8984
8985 /*
8986  * Sets up an aio uring context, and returns the fd. Applications asks for a
8987  * ring size, we return the actual sq/cq ring sizes (among other things) in the
8988  * params structure passed in.
8989  */
8990 static long io_uring_setup(u32 entries, struct io_uring_params __user *params)
8991 {
8992         struct io_uring_params p;
8993         int i;
8994
8995         if (copy_from_user(&p, params, sizeof(p)))
8996                 return -EFAULT;
8997         for (i = 0; i < ARRAY_SIZE(p.resv); i++) {
8998                 if (p.resv[i])
8999                         return -EINVAL;
9000         }
9001
9002         if (p.flags & ~(IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL |
9003                         IORING_SETUP_SQ_AFF | IORING_SETUP_CQSIZE |
9004                         IORING_SETUP_CLAMP | IORING_SETUP_ATTACH_WQ))
9005                 return -EINVAL;
9006
9007         return  io_uring_create(entries, &p, params);
9008 }
9009
9010 SYSCALL_DEFINE2(io_uring_setup, u32, entries,
9011                 struct io_uring_params __user *, params)
9012 {
9013         return io_uring_setup(entries, params);
9014 }
9015
9016 static int io_probe(struct io_ring_ctx *ctx, void __user *arg, unsigned nr_args)
9017 {
9018         struct io_uring_probe *p;
9019         size_t size;
9020         int i, ret;
9021
9022         size = struct_size(p, ops, nr_args);
9023         if (size == SIZE_MAX)
9024                 return -EOVERFLOW;
9025         p = kzalloc(size, GFP_KERNEL);
9026         if (!p)
9027                 return -ENOMEM;
9028
9029         ret = -EFAULT;
9030         if (copy_from_user(p, arg, size))
9031                 goto out;
9032         ret = -EINVAL;
9033         if (memchr_inv(p, 0, size))
9034                 goto out;
9035
9036         p->last_op = IORING_OP_LAST - 1;
9037         if (nr_args > IORING_OP_LAST)
9038                 nr_args = IORING_OP_LAST;
9039
9040         for (i = 0; i < nr_args; i++) {
9041                 p->ops[i].op = i;
9042                 if (!io_op_defs[i].not_supported)
9043                         p->ops[i].flags = IO_URING_OP_SUPPORTED;
9044         }
9045         p->ops_len = i;
9046
9047         ret = 0;
9048         if (copy_to_user(arg, p, size))
9049                 ret = -EFAULT;
9050 out:
9051         kfree(p);
9052         return ret;
9053 }
9054
9055 static int io_register_personality(struct io_ring_ctx *ctx)
9056 {
9057         const struct cred *creds = get_current_cred();
9058         int id;
9059
9060         id = idr_alloc_cyclic(&ctx->personality_idr, (void *) creds, 1,
9061                                 USHRT_MAX, GFP_KERNEL);
9062         if (id < 0)
9063                 put_cred(creds);
9064         return id;
9065 }
9066
9067 static int io_unregister_personality(struct io_ring_ctx *ctx, unsigned id)
9068 {
9069         const struct cred *old_creds;
9070
9071         old_creds = idr_remove(&ctx->personality_idr, id);
9072         if (old_creds) {
9073                 put_cred(old_creds);
9074                 return 0;
9075         }
9076
9077         return -EINVAL;
9078 }
9079
9080 static bool io_register_op_must_quiesce(int op)
9081 {
9082         switch (op) {
9083         case IORING_UNREGISTER_FILES:
9084         case IORING_REGISTER_FILES_UPDATE:
9085         case IORING_REGISTER_PROBE:
9086         case IORING_REGISTER_PERSONALITY:
9087         case IORING_UNREGISTER_PERSONALITY:
9088                 return false;
9089         default:
9090                 return true;
9091         }
9092 }
9093
9094 static int __io_uring_register(struct io_ring_ctx *ctx, unsigned opcode,
9095                                void __user *arg, unsigned nr_args)
9096         __releases(ctx->uring_lock)
9097         __acquires(ctx->uring_lock)
9098 {
9099         int ret;
9100
9101         /*
9102          * We're inside the ring mutex, if the ref is already dying, then
9103          * someone else killed the ctx or is already going through
9104          * io_uring_register().
9105          */
9106         if (percpu_ref_is_dying(&ctx->refs))
9107                 return -ENXIO;
9108
9109         if (io_register_op_must_quiesce(opcode)) {
9110                 percpu_ref_kill(&ctx->refs);
9111
9112                 /*
9113                  * Drop uring mutex before waiting for references to exit. If
9114                  * another thread is currently inside io_uring_enter() it might
9115                  * need to grab the uring_lock to make progress. If we hold it
9116                  * here across the drain wait, then we can deadlock. It's safe
9117                  * to drop the mutex here, since no new references will come in
9118                  * after we've killed the percpu ref.
9119                  */
9120                 mutex_unlock(&ctx->uring_lock);
9121                 ret = wait_for_completion_interruptible(&ctx->ref_comp);
9122                 mutex_lock(&ctx->uring_lock);
9123                 if (ret) {
9124                         percpu_ref_resurrect(&ctx->refs);
9125                         ret = -EINTR;
9126                         goto out;
9127                 }
9128         }
9129
9130         switch (opcode) {
9131         case IORING_REGISTER_BUFFERS:
9132                 ret = io_sqe_buffer_register(ctx, arg, nr_args);
9133                 break;
9134         case IORING_UNREGISTER_BUFFERS:
9135                 ret = -EINVAL;
9136                 if (arg || nr_args)
9137                         break;
9138                 ret = io_sqe_buffer_unregister(ctx);
9139                 break;
9140         case IORING_REGISTER_FILES:
9141                 ret = io_sqe_files_register(ctx, arg, nr_args);
9142                 break;
9143         case IORING_UNREGISTER_FILES:
9144                 ret = -EINVAL;
9145                 if (arg || nr_args)
9146                         break;
9147                 ret = io_sqe_files_unregister(ctx);
9148                 break;
9149         case IORING_REGISTER_FILES_UPDATE:
9150                 ret = io_sqe_files_update(ctx, arg, nr_args);
9151                 break;
9152         case IORING_REGISTER_EVENTFD:
9153         case IORING_REGISTER_EVENTFD_ASYNC:
9154                 ret = -EINVAL;
9155                 if (nr_args != 1)
9156                         break;
9157                 ret = io_eventfd_register(ctx, arg);
9158                 if (ret)
9159                         break;
9160                 if (opcode == IORING_REGISTER_EVENTFD_ASYNC)
9161                         ctx->eventfd_async = 1;
9162                 else
9163                         ctx->eventfd_async = 0;
9164                 break;
9165         case IORING_UNREGISTER_EVENTFD:
9166                 ret = -EINVAL;
9167                 if (arg || nr_args)
9168                         break;
9169                 ret = io_eventfd_unregister(ctx);
9170                 break;
9171         case IORING_REGISTER_PROBE:
9172                 ret = -EINVAL;
9173                 if (!arg || nr_args > 256)
9174                         break;
9175                 ret = io_probe(ctx, arg, nr_args);
9176                 break;
9177         case IORING_REGISTER_PERSONALITY:
9178                 ret = -EINVAL;
9179                 if (arg || nr_args)
9180                         break;
9181                 ret = io_register_personality(ctx);
9182                 break;
9183         case IORING_UNREGISTER_PERSONALITY:
9184                 ret = -EINVAL;
9185                 if (arg)
9186                         break;
9187                 ret = io_unregister_personality(ctx, nr_args);
9188                 break;
9189         default:
9190                 ret = -EINVAL;
9191                 break;
9192         }
9193
9194         if (io_register_op_must_quiesce(opcode)) {
9195                 /* bring the ctx back to life */
9196                 percpu_ref_reinit(&ctx->refs);
9197 out:
9198                 reinit_completion(&ctx->ref_comp);
9199         }
9200         return ret;
9201 }
9202
9203 SYSCALL_DEFINE4(io_uring_register, unsigned int, fd, unsigned int, opcode,
9204                 void __user *, arg, unsigned int, nr_args)
9205 {
9206         struct io_ring_ctx *ctx;
9207         long ret = -EBADF;
9208         struct fd f;
9209
9210         f = fdget(fd);
9211         if (!f.file)
9212                 return -EBADF;
9213
9214         ret = -EOPNOTSUPP;
9215         if (f.file->f_op != &io_uring_fops)
9216                 goto out_fput;
9217
9218         ctx = f.file->private_data;
9219
9220         mutex_lock(&ctx->uring_lock);
9221         ret = __io_uring_register(ctx, opcode, arg, nr_args);
9222         mutex_unlock(&ctx->uring_lock);
9223         trace_io_uring_register(ctx, opcode, ctx->nr_user_files, ctx->nr_user_bufs,
9224                                                         ctx->cq_ev_fd != NULL, ret);
9225 out_fput:
9226         fdput(f);
9227         return ret;
9228 }
9229
9230 static int __init io_uring_init(void)
9231 {
9232 #define __BUILD_BUG_VERIFY_ELEMENT(stype, eoffset, etype, ename) do { \
9233         BUILD_BUG_ON(offsetof(stype, ename) != eoffset); \
9234         BUILD_BUG_ON(sizeof(etype) != sizeof_field(stype, ename)); \
9235 } while (0)
9236
9237 #define BUILD_BUG_SQE_ELEM(eoffset, etype, ename) \
9238         __BUILD_BUG_VERIFY_ELEMENT(struct io_uring_sqe, eoffset, etype, ename)
9239         BUILD_BUG_ON(sizeof(struct io_uring_sqe) != 64);
9240         BUILD_BUG_SQE_ELEM(0,  __u8,   opcode);
9241         BUILD_BUG_SQE_ELEM(1,  __u8,   flags);
9242         BUILD_BUG_SQE_ELEM(2,  __u16,  ioprio);
9243         BUILD_BUG_SQE_ELEM(4,  __s32,  fd);
9244         BUILD_BUG_SQE_ELEM(8,  __u64,  off);
9245         BUILD_BUG_SQE_ELEM(8,  __u64,  addr2);
9246         BUILD_BUG_SQE_ELEM(16, __u64,  addr);
9247         BUILD_BUG_SQE_ELEM(16, __u64,  splice_off_in);
9248         BUILD_BUG_SQE_ELEM(24, __u32,  len);
9249         BUILD_BUG_SQE_ELEM(28,     __kernel_rwf_t, rw_flags);
9250         BUILD_BUG_SQE_ELEM(28, /* compat */   int, rw_flags);
9251         BUILD_BUG_SQE_ELEM(28, /* compat */ __u32, rw_flags);
9252         BUILD_BUG_SQE_ELEM(28, __u32,  fsync_flags);
9253         BUILD_BUG_SQE_ELEM(28, /* compat */ __u16,  poll_events);
9254         BUILD_BUG_SQE_ELEM(28, __u32,  poll32_events);
9255         BUILD_BUG_SQE_ELEM(28, __u32,  sync_range_flags);
9256         BUILD_BUG_SQE_ELEM(28, __u32,  msg_flags);
9257         BUILD_BUG_SQE_ELEM(28, __u32,  timeout_flags);
9258         BUILD_BUG_SQE_ELEM(28, __u32,  accept_flags);
9259         BUILD_BUG_SQE_ELEM(28, __u32,  cancel_flags);
9260         BUILD_BUG_SQE_ELEM(28, __u32,  open_flags);
9261         BUILD_BUG_SQE_ELEM(28, __u32,  statx_flags);
9262         BUILD_BUG_SQE_ELEM(28, __u32,  fadvise_advice);
9263         BUILD_BUG_SQE_ELEM(28, __u32,  splice_flags);
9264         BUILD_BUG_SQE_ELEM(32, __u64,  user_data);
9265         BUILD_BUG_SQE_ELEM(40, __u16,  buf_index);
9266         BUILD_BUG_SQE_ELEM(42, __u16,  personality);
9267         BUILD_BUG_SQE_ELEM(44, __s32,  splice_fd_in);
9268
9269         BUILD_BUG_ON(ARRAY_SIZE(io_op_defs) != IORING_OP_LAST);
9270         BUILD_BUG_ON(__REQ_F_LAST_BIT >= 8 * sizeof(int));
9271         req_cachep = KMEM_CACHE(io_kiocb, SLAB_HWCACHE_ALIGN | SLAB_PANIC);
9272         return 0;
9273 };
9274 __initcall(io_uring_init);