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