1 // SPDX-License-Identifier: GPL-2.0
3 * Shared application/kernel submission and completion ring pairs, for
4 * supporting fast/efficient IO.
6 * A note on the read/write ordering memory barriers that are matched between
7 * the application and kernel side.
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
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
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
30 * Also see the examples in the liburing library:
32 * git://git.kernel.dk/liburing
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.
39 * Copyright (C) 2018-2019 Jens Axboe
40 * Copyright (c) 2018-2019 Christoph Hellwig
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>
52 #include <linux/sched/signal.h>
54 #include <linux/file.h>
55 #include <linux/fdtable.h>
57 #include <linux/mman.h>
58 #include <linux/mmu_context.h>
59 #include <linux/percpu.h>
60 #include <linux/slab.h>
61 #include <linux/kthread.h>
62 #include <linux/blkdev.h>
63 #include <linux/bvec.h>
64 #include <linux/net.h>
66 #include <net/af_unix.h>
68 #include <linux/anon_inodes.h>
69 #include <linux/sched/mm.h>
70 #include <linux/uaccess.h>
71 #include <linux/nospec.h>
72 #include <linux/sizes.h>
73 #include <linux/hugetlb.h>
74 #include <linux/highmem.h>
75 #include <linux/namei.h>
76 #include <linux/fsnotify.h>
77 #include <linux/fadvise.h>
78 #include <linux/eventpoll.h>
79 #include <linux/fs_struct.h>
80 #include <linux/splice.h>
81 #include <linux/task_work.h>
83 #define CREATE_TRACE_POINTS
84 #include <trace/events/io_uring.h>
86 #include <uapi/linux/io_uring.h>
91 #define IORING_MAX_ENTRIES 32768
92 #define IORING_MAX_CQ_ENTRIES (2 * IORING_MAX_ENTRIES)
95 * Shift of 9 is 512 entries, or exactly one page on 64-bit archs
97 #define IORING_FILE_TABLE_SHIFT 9
98 #define IORING_MAX_FILES_TABLE (1U << IORING_FILE_TABLE_SHIFT)
99 #define IORING_FILE_TABLE_MASK (IORING_MAX_FILES_TABLE - 1)
100 #define IORING_MAX_FIXED_FILES (64 * IORING_MAX_FILES_TABLE)
103 u32 head ____cacheline_aligned_in_smp
;
104 u32 tail ____cacheline_aligned_in_smp
;
108 * This data is shared with the application through the mmap at offsets
109 * IORING_OFF_SQ_RING and IORING_OFF_CQ_RING.
111 * The offsets to the member fields are published through struct
112 * io_sqring_offsets when calling io_uring_setup.
116 * Head and tail offsets into the ring; the offsets need to be
117 * masked to get valid indices.
119 * The kernel controls head of the sq ring and the tail of the cq ring,
120 * and the application controls tail of the sq ring and the head of the
123 struct io_uring sq
, cq
;
125 * Bitmasks to apply to head and tail offsets (constant, equals
128 u32 sq_ring_mask
, cq_ring_mask
;
129 /* Ring sizes (constant, power of 2) */
130 u32 sq_ring_entries
, cq_ring_entries
;
132 * Number of invalid entries dropped by the kernel due to
133 * invalid index stored in array
135 * Written by the kernel, shouldn't be modified by the
136 * application (i.e. get number of "new events" by comparing to
139 * After a new SQ head value was read by the application this
140 * counter includes all submissions that were dropped reaching
141 * the new SQ head (and possibly more).
147 * Written by the kernel, shouldn't be modified by the
150 * The application needs a full memory barrier before checking
151 * for IORING_SQ_NEED_WAKEUP after updating the sq tail.
155 * Number of completion events lost because the queue was full;
156 * this should be avoided by the application by making sure
157 * there are not more requests pending than there is space in
158 * the completion queue.
160 * Written by the kernel, shouldn't be modified by the
161 * application (i.e. get number of "new events" by comparing to
164 * As completion events come in out of order this counter is not
165 * ordered with any other data.
169 * Ring buffer of completion events.
171 * The kernel writes completion events fresh every time they are
172 * produced, so the application is allowed to modify pending
175 struct io_uring_cqe cqes
[] ____cacheline_aligned_in_smp
;
178 struct io_mapped_ubuf
{
181 struct bio_vec
*bvec
;
182 unsigned int nr_bvecs
;
185 struct fixed_file_table
{
189 struct fixed_file_ref_node
{
190 struct percpu_ref refs
;
191 struct list_head node
;
192 struct list_head file_list
;
193 struct fixed_file_data
*file_data
;
194 struct work_struct work
;
197 struct fixed_file_data
{
198 struct fixed_file_table
*table
;
199 struct io_ring_ctx
*ctx
;
201 struct percpu_ref
*cur_refs
;
202 struct percpu_ref refs
;
203 struct completion done
;
204 struct list_head ref_list
;
209 struct list_head list
;
217 struct percpu_ref refs
;
218 } ____cacheline_aligned_in_smp
;
222 unsigned int compat
: 1;
223 unsigned int account_mem
: 1;
224 unsigned int cq_overflow_flushed
: 1;
225 unsigned int drain_next
: 1;
226 unsigned int eventfd_async
: 1;
229 * Ring buffer of indices into array of io_uring_sqe, which is
230 * mmapped by the application using the IORING_OFF_SQES offset.
232 * This indirection could e.g. be used to assign fixed
233 * io_uring_sqe entries to operations and only submit them to
234 * the queue when needed.
236 * The kernel modifies neither the indices array nor the entries
240 unsigned cached_sq_head
;
243 unsigned sq_thread_idle
;
244 unsigned cached_sq_dropped
;
245 atomic_t cached_cq_overflow
;
246 unsigned long sq_check_overflow
;
248 struct list_head defer_list
;
249 struct list_head timeout_list
;
250 struct list_head cq_overflow_list
;
252 wait_queue_head_t inflight_wait
;
253 struct io_uring_sqe
*sq_sqes
;
254 } ____cacheline_aligned_in_smp
;
256 struct io_rings
*rings
;
260 struct task_struct
*sqo_thread
; /* if using sq thread polling */
261 struct mm_struct
*sqo_mm
;
262 wait_queue_head_t sqo_wait
;
265 * If used, fixed file set. Writers must ensure that ->refs is dead,
266 * readers must ensure that ->refs is alive as long as the file* is
267 * used. Only updated through io_uring_register(2).
269 struct fixed_file_data
*file_data
;
270 unsigned nr_user_files
;
272 struct file
*ring_file
;
274 /* if used, fixed mapped user buffers */
275 unsigned nr_user_bufs
;
276 struct io_mapped_ubuf
*user_bufs
;
278 struct user_struct
*user
;
280 const struct cred
*creds
;
282 /* 0 is for ctx quiesce/reinit/free, 1 is for sqo_thread started */
283 struct completion
*completions
;
285 /* if all else fails... */
286 struct io_kiocb
*fallback_req
;
288 #if defined(CONFIG_UNIX)
289 struct socket
*ring_sock
;
292 struct idr io_buffer_idr
;
294 struct idr personality_idr
;
297 unsigned cached_cq_tail
;
300 atomic_t cq_timeouts
;
301 unsigned long cq_check_overflow
;
302 struct wait_queue_head cq_wait
;
303 struct fasync_struct
*cq_fasync
;
304 struct eventfd_ctx
*cq_ev_fd
;
305 } ____cacheline_aligned_in_smp
;
308 struct mutex uring_lock
;
309 wait_queue_head_t wait
;
310 } ____cacheline_aligned_in_smp
;
313 spinlock_t completion_lock
;
316 * ->poll_list is protected by the ctx->uring_lock for
317 * io_uring instances that don't use IORING_SETUP_SQPOLL.
318 * For SQPOLL, only the single threaded io_sq_thread() will
319 * manipulate the list, hence no extra locking is needed there.
321 struct list_head poll_list
;
322 struct hlist_head
*cancel_hash
;
323 unsigned cancel_hash_bits
;
324 bool poll_multi_file
;
326 spinlock_t inflight_lock
;
327 struct list_head inflight_list
;
328 } ____cacheline_aligned_in_smp
;
330 struct work_struct exit_work
;
334 * First field must be the file pointer in all the
335 * iocb unions! See also 'struct kiocb' in <linux/fs.h>
337 struct io_poll_iocb
{
340 struct wait_queue_head
*head
;
346 struct wait_queue_entry wait
;
351 struct file
*put_file
;
355 struct io_timeout_data
{
356 struct io_kiocb
*req
;
357 struct hrtimer timer
;
358 struct timespec64 ts
;
359 enum hrtimer_mode mode
;
364 struct sockaddr __user
*addr
;
365 int __user
*addr_len
;
367 unsigned long nofile
;
391 /* NOTE: kiocb has the file as the first member, so don't do it here */
399 struct sockaddr __user
*addr
;
406 struct user_msghdr __user
*msg
;
412 struct io_buffer
*kbuf
;
421 struct filename
*filename
;
422 struct statx __user
*buffer
;
424 unsigned long nofile
;
427 struct io_files_update
{
453 struct epoll_event event
;
457 struct file
*file_out
;
458 struct file
*file_in
;
465 struct io_provide_buf
{
474 struct io_async_connect
{
475 struct sockaddr_storage address
;
478 struct io_async_msghdr
{
479 struct iovec fast_iov
[UIO_FASTIOV
];
481 struct sockaddr __user
*uaddr
;
483 struct sockaddr_storage addr
;
487 struct iovec fast_iov
[UIO_FASTIOV
];
493 struct io_async_ctx
{
495 struct io_async_rw rw
;
496 struct io_async_msghdr msg
;
497 struct io_async_connect connect
;
498 struct io_timeout_data timeout
;
503 REQ_F_FIXED_FILE_BIT
= IOSQE_FIXED_FILE_BIT
,
504 REQ_F_IO_DRAIN_BIT
= IOSQE_IO_DRAIN_BIT
,
505 REQ_F_LINK_BIT
= IOSQE_IO_LINK_BIT
,
506 REQ_F_HARDLINK_BIT
= IOSQE_IO_HARDLINK_BIT
,
507 REQ_F_FORCE_ASYNC_BIT
= IOSQE_ASYNC_BIT
,
508 REQ_F_BUFFER_SELECT_BIT
= IOSQE_BUFFER_SELECT_BIT
,
516 REQ_F_IOPOLL_COMPLETED_BIT
,
517 REQ_F_LINK_TIMEOUT_BIT
,
521 REQ_F_TIMEOUT_NOSEQ_BIT
,
522 REQ_F_COMP_LOCKED_BIT
,
523 REQ_F_NEED_CLEANUP_BIT
,
526 REQ_F_BUFFER_SELECTED_BIT
,
527 REQ_F_NO_FILE_TABLE_BIT
,
529 /* not a real bit, just to check we're not overflowing the space */
535 REQ_F_FIXED_FILE
= BIT(REQ_F_FIXED_FILE_BIT
),
536 /* drain existing IO first */
537 REQ_F_IO_DRAIN
= BIT(REQ_F_IO_DRAIN_BIT
),
539 REQ_F_LINK
= BIT(REQ_F_LINK_BIT
),
540 /* doesn't sever on completion < 0 */
541 REQ_F_HARDLINK
= BIT(REQ_F_HARDLINK_BIT
),
543 REQ_F_FORCE_ASYNC
= BIT(REQ_F_FORCE_ASYNC_BIT
),
544 /* IOSQE_BUFFER_SELECT */
545 REQ_F_BUFFER_SELECT
= BIT(REQ_F_BUFFER_SELECT_BIT
),
548 REQ_F_LINK_HEAD
= BIT(REQ_F_LINK_HEAD_BIT
),
549 /* already grabbed next link */
550 REQ_F_LINK_NEXT
= BIT(REQ_F_LINK_NEXT_BIT
),
551 /* fail rest of links */
552 REQ_F_FAIL_LINK
= BIT(REQ_F_FAIL_LINK_BIT
),
553 /* on inflight list */
554 REQ_F_INFLIGHT
= BIT(REQ_F_INFLIGHT_BIT
),
555 /* read/write uses file position */
556 REQ_F_CUR_POS
= BIT(REQ_F_CUR_POS_BIT
),
557 /* must not punt to workers */
558 REQ_F_NOWAIT
= BIT(REQ_F_NOWAIT_BIT
),
559 /* polled IO has completed */
560 REQ_F_IOPOLL_COMPLETED
= BIT(REQ_F_IOPOLL_COMPLETED_BIT
),
561 /* has linked timeout */
562 REQ_F_LINK_TIMEOUT
= BIT(REQ_F_LINK_TIMEOUT_BIT
),
563 /* timeout request */
564 REQ_F_TIMEOUT
= BIT(REQ_F_TIMEOUT_BIT
),
566 REQ_F_ISREG
= BIT(REQ_F_ISREG_BIT
),
567 /* must be punted even for NONBLOCK */
568 REQ_F_MUST_PUNT
= BIT(REQ_F_MUST_PUNT_BIT
),
569 /* no timeout sequence */
570 REQ_F_TIMEOUT_NOSEQ
= BIT(REQ_F_TIMEOUT_NOSEQ_BIT
),
571 /* completion under lock */
572 REQ_F_COMP_LOCKED
= BIT(REQ_F_COMP_LOCKED_BIT
),
574 REQ_F_NEED_CLEANUP
= BIT(REQ_F_NEED_CLEANUP_BIT
),
575 /* in overflow list */
576 REQ_F_OVERFLOW
= BIT(REQ_F_OVERFLOW_BIT
),
577 /* already went through poll handler */
578 REQ_F_POLLED
= BIT(REQ_F_POLLED_BIT
),
579 /* buffer already selected */
580 REQ_F_BUFFER_SELECTED
= BIT(REQ_F_BUFFER_SELECTED_BIT
),
581 /* doesn't need file table for this request */
582 REQ_F_NO_FILE_TABLE
= BIT(REQ_F_NO_FILE_TABLE_BIT
),
586 struct io_poll_iocb poll
;
587 struct io_wq_work work
;
591 * NOTE! Each of the iocb union members has the file pointer
592 * as the first entry in their struct definition. So you can
593 * access the file pointer through any of the sub-structs,
594 * or directly as just 'ki_filp' in this struct.
600 struct io_poll_iocb poll
;
601 struct io_accept accept
;
603 struct io_cancel cancel
;
604 struct io_timeout timeout
;
605 struct io_connect connect
;
606 struct io_sr_msg sr_msg
;
608 struct io_close close
;
609 struct io_files_update files_update
;
610 struct io_fadvise fadvise
;
611 struct io_madvise madvise
;
612 struct io_epoll epoll
;
613 struct io_splice splice
;
614 struct io_provide_buf pbuf
;
617 struct io_async_ctx
*io
;
619 bool needs_fixed_file
;
622 struct io_ring_ctx
*ctx
;
623 struct list_head list
;
626 struct task_struct
*task
;
632 struct list_head link_list
;
634 struct list_head inflight_entry
;
636 struct percpu_ref
*fixed_file_refs
;
640 * Only commands that never go async can use the below fields,
641 * obviously. Right now only IORING_OP_POLL_ADD uses them, and
642 * async armed poll handlers for regular commands. The latter
643 * restore the work, if needed.
646 struct callback_head task_work
;
647 struct hlist_node hash_node
;
648 struct async_poll
*apoll
;
650 struct io_wq_work work
;
654 #define IO_PLUG_THRESHOLD 2
655 #define IO_IOPOLL_BATCH 8
657 struct io_submit_state
{
658 struct blk_plug plug
;
661 * io_kiocb alloc cache
663 void *reqs
[IO_IOPOLL_BATCH
];
664 unsigned int free_reqs
;
667 * File reference cache
671 unsigned int has_refs
;
672 unsigned int used_refs
;
673 unsigned int ios_left
;
677 /* needs req->io allocated for deferral/async */
678 unsigned async_ctx
: 1;
679 /* needs current->mm setup, does mm access */
680 unsigned needs_mm
: 1;
681 /* needs req->file assigned */
682 unsigned needs_file
: 1;
683 /* hash wq insertion if file is a regular file */
684 unsigned hash_reg_file
: 1;
685 /* unbound wq insertion if file is a non-regular file */
686 unsigned unbound_nonreg_file
: 1;
687 /* opcode is not supported by this kernel */
688 unsigned not_supported
: 1;
689 /* needs file table */
690 unsigned file_table
: 1;
692 unsigned needs_fs
: 1;
693 /* set if opcode supports polled "wait" */
695 unsigned pollout
: 1;
696 /* op supports buffer selection */
697 unsigned buffer_select
: 1;
700 static const struct io_op_def io_op_defs
[] = {
701 [IORING_OP_NOP
] = {},
702 [IORING_OP_READV
] = {
706 .unbound_nonreg_file
= 1,
710 [IORING_OP_WRITEV
] = {
715 .unbound_nonreg_file
= 1,
718 [IORING_OP_FSYNC
] = {
721 [IORING_OP_READ_FIXED
] = {
723 .unbound_nonreg_file
= 1,
726 [IORING_OP_WRITE_FIXED
] = {
729 .unbound_nonreg_file
= 1,
732 [IORING_OP_POLL_ADD
] = {
734 .unbound_nonreg_file
= 1,
736 [IORING_OP_POLL_REMOVE
] = {},
737 [IORING_OP_SYNC_FILE_RANGE
] = {
740 [IORING_OP_SENDMSG
] = {
744 .unbound_nonreg_file
= 1,
748 [IORING_OP_RECVMSG
] = {
752 .unbound_nonreg_file
= 1,
757 [IORING_OP_TIMEOUT
] = {
761 [IORING_OP_TIMEOUT_REMOVE
] = {},
762 [IORING_OP_ACCEPT
] = {
765 .unbound_nonreg_file
= 1,
769 [IORING_OP_ASYNC_CANCEL
] = {},
770 [IORING_OP_LINK_TIMEOUT
] = {
774 [IORING_OP_CONNECT
] = {
778 .unbound_nonreg_file
= 1,
781 [IORING_OP_FALLOCATE
] = {
784 [IORING_OP_OPENAT
] = {
788 [IORING_OP_CLOSE
] = {
792 [IORING_OP_FILES_UPDATE
] = {
796 [IORING_OP_STATX
] = {
804 .unbound_nonreg_file
= 1,
808 [IORING_OP_WRITE
] = {
811 .unbound_nonreg_file
= 1,
814 [IORING_OP_FADVISE
] = {
817 [IORING_OP_MADVISE
] = {
823 .unbound_nonreg_file
= 1,
829 .unbound_nonreg_file
= 1,
833 [IORING_OP_OPENAT2
] = {
837 [IORING_OP_EPOLL_CTL
] = {
838 .unbound_nonreg_file
= 1,
841 [IORING_OP_SPLICE
] = {
844 .unbound_nonreg_file
= 1,
846 [IORING_OP_PROVIDE_BUFFERS
] = {},
847 [IORING_OP_REMOVE_BUFFERS
] = {},
850 static void io_wq_submit_work(struct io_wq_work
**workptr
);
851 static void io_cqring_fill_event(struct io_kiocb
*req
, long res
);
852 static void io_put_req(struct io_kiocb
*req
);
853 static void __io_double_put_req(struct io_kiocb
*req
);
854 static struct io_kiocb
*io_prep_linked_timeout(struct io_kiocb
*req
);
855 static void io_queue_linked_timeout(struct io_kiocb
*req
);
856 static int __io_sqe_files_update(struct io_ring_ctx
*ctx
,
857 struct io_uring_files_update
*ip
,
859 static int io_grab_files(struct io_kiocb
*req
);
860 static void io_cleanup_req(struct io_kiocb
*req
);
861 static int io_file_get(struct io_submit_state
*state
, struct io_kiocb
*req
,
862 int fd
, struct file
**out_file
, bool fixed
);
863 static void __io_queue_sqe(struct io_kiocb
*req
,
864 const struct io_uring_sqe
*sqe
);
866 static struct kmem_cache
*req_cachep
;
868 static const struct file_operations io_uring_fops
;
870 struct sock
*io_uring_get_socket(struct file
*file
)
872 #if defined(CONFIG_UNIX)
873 if (file
->f_op
== &io_uring_fops
) {
874 struct io_ring_ctx
*ctx
= file
->private_data
;
876 return ctx
->ring_sock
->sk
;
881 EXPORT_SYMBOL(io_uring_get_socket
);
883 static void io_ring_ctx_ref_free(struct percpu_ref
*ref
)
885 struct io_ring_ctx
*ctx
= container_of(ref
, struct io_ring_ctx
, refs
);
887 complete(&ctx
->completions
[0]);
890 static struct io_ring_ctx
*io_ring_ctx_alloc(struct io_uring_params
*p
)
892 struct io_ring_ctx
*ctx
;
895 ctx
= kzalloc(sizeof(*ctx
), GFP_KERNEL
);
899 ctx
->fallback_req
= kmem_cache_alloc(req_cachep
, GFP_KERNEL
);
900 if (!ctx
->fallback_req
)
903 ctx
->completions
= kmalloc(2 * sizeof(struct completion
), GFP_KERNEL
);
904 if (!ctx
->completions
)
908 * Use 5 bits less than the max cq entries, that should give us around
909 * 32 entries per hash list if totally full and uniformly spread.
911 hash_bits
= ilog2(p
->cq_entries
);
915 ctx
->cancel_hash_bits
= hash_bits
;
916 ctx
->cancel_hash
= kmalloc((1U << hash_bits
) * sizeof(struct hlist_head
),
918 if (!ctx
->cancel_hash
)
920 __hash_init(ctx
->cancel_hash
, 1U << hash_bits
);
922 if (percpu_ref_init(&ctx
->refs
, io_ring_ctx_ref_free
,
923 PERCPU_REF_ALLOW_REINIT
, GFP_KERNEL
))
926 ctx
->flags
= p
->flags
;
927 init_waitqueue_head(&ctx
->cq_wait
);
928 INIT_LIST_HEAD(&ctx
->cq_overflow_list
);
929 init_completion(&ctx
->completions
[0]);
930 init_completion(&ctx
->completions
[1]);
931 idr_init(&ctx
->io_buffer_idr
);
932 idr_init(&ctx
->personality_idr
);
933 mutex_init(&ctx
->uring_lock
);
934 init_waitqueue_head(&ctx
->wait
);
935 spin_lock_init(&ctx
->completion_lock
);
936 INIT_LIST_HEAD(&ctx
->poll_list
);
937 INIT_LIST_HEAD(&ctx
->defer_list
);
938 INIT_LIST_HEAD(&ctx
->timeout_list
);
939 init_waitqueue_head(&ctx
->inflight_wait
);
940 spin_lock_init(&ctx
->inflight_lock
);
941 INIT_LIST_HEAD(&ctx
->inflight_list
);
944 if (ctx
->fallback_req
)
945 kmem_cache_free(req_cachep
, ctx
->fallback_req
);
946 kfree(ctx
->completions
);
947 kfree(ctx
->cancel_hash
);
952 static inline bool __req_need_defer(struct io_kiocb
*req
)
954 struct io_ring_ctx
*ctx
= req
->ctx
;
956 return req
->sequence
!= ctx
->cached_cq_tail
957 + atomic_read(&ctx
->cached_cq_overflow
);
960 static inline bool req_need_defer(struct io_kiocb
*req
)
962 if (unlikely(req
->flags
& REQ_F_IO_DRAIN
))
963 return __req_need_defer(req
);
968 static struct io_kiocb
*io_get_deferred_req(struct io_ring_ctx
*ctx
)
970 struct io_kiocb
*req
;
972 req
= list_first_entry_or_null(&ctx
->defer_list
, struct io_kiocb
, list
);
973 if (req
&& !req_need_defer(req
)) {
974 list_del_init(&req
->list
);
981 static struct io_kiocb
*io_get_timeout_req(struct io_ring_ctx
*ctx
)
983 struct io_kiocb
*req
;
985 req
= list_first_entry_or_null(&ctx
->timeout_list
, struct io_kiocb
, list
);
987 if (req
->flags
& REQ_F_TIMEOUT_NOSEQ
)
989 if (!__req_need_defer(req
)) {
990 list_del_init(&req
->list
);
998 static void __io_commit_cqring(struct io_ring_ctx
*ctx
)
1000 struct io_rings
*rings
= ctx
->rings
;
1002 /* order cqe stores with ring update */
1003 smp_store_release(&rings
->cq
.tail
, ctx
->cached_cq_tail
);
1005 if (wq_has_sleeper(&ctx
->cq_wait
)) {
1006 wake_up_interruptible(&ctx
->cq_wait
);
1007 kill_fasync(&ctx
->cq_fasync
, SIGIO
, POLL_IN
);
1011 static inline void io_req_work_grab_env(struct io_kiocb
*req
,
1012 const struct io_op_def
*def
)
1014 if (!req
->work
.mm
&& def
->needs_mm
) {
1015 mmgrab(current
->mm
);
1016 req
->work
.mm
= current
->mm
;
1018 if (!req
->work
.creds
)
1019 req
->work
.creds
= get_current_cred();
1020 if (!req
->work
.fs
&& def
->needs_fs
) {
1021 spin_lock(¤t
->fs
->lock
);
1022 if (!current
->fs
->in_exec
) {
1023 req
->work
.fs
= current
->fs
;
1024 req
->work
.fs
->users
++;
1026 req
->work
.flags
|= IO_WQ_WORK_CANCEL
;
1028 spin_unlock(¤t
->fs
->lock
);
1030 if (!req
->work
.task_pid
)
1031 req
->work
.task_pid
= task_pid_vnr(current
);
1034 static inline void io_req_work_drop_env(struct io_kiocb
*req
)
1037 mmdrop(req
->work
.mm
);
1038 req
->work
.mm
= NULL
;
1040 if (req
->work
.creds
) {
1041 put_cred(req
->work
.creds
);
1042 req
->work
.creds
= NULL
;
1045 struct fs_struct
*fs
= req
->work
.fs
;
1047 spin_lock(&req
->work
.fs
->lock
);
1050 spin_unlock(&req
->work
.fs
->lock
);
1056 static inline void io_prep_async_work(struct io_kiocb
*req
,
1057 struct io_kiocb
**link
)
1059 const struct io_op_def
*def
= &io_op_defs
[req
->opcode
];
1061 if (req
->flags
& REQ_F_ISREG
) {
1062 if (def
->hash_reg_file
)
1063 io_wq_hash_work(&req
->work
, file_inode(req
->file
));
1065 if (def
->unbound_nonreg_file
)
1066 req
->work
.flags
|= IO_WQ_WORK_UNBOUND
;
1069 io_req_work_grab_env(req
, def
);
1071 *link
= io_prep_linked_timeout(req
);
1074 static inline void io_queue_async_work(struct io_kiocb
*req
)
1076 struct io_ring_ctx
*ctx
= req
->ctx
;
1077 struct io_kiocb
*link
;
1079 io_prep_async_work(req
, &link
);
1081 trace_io_uring_queue_async_work(ctx
, io_wq_is_hashed(&req
->work
), req
,
1082 &req
->work
, req
->flags
);
1083 io_wq_enqueue(ctx
->io_wq
, &req
->work
);
1086 io_queue_linked_timeout(link
);
1089 static void io_kill_timeout(struct io_kiocb
*req
)
1093 ret
= hrtimer_try_to_cancel(&req
->io
->timeout
.timer
);
1095 atomic_inc(&req
->ctx
->cq_timeouts
);
1096 list_del_init(&req
->list
);
1097 req
->flags
|= REQ_F_COMP_LOCKED
;
1098 io_cqring_fill_event(req
, 0);
1103 static void io_kill_timeouts(struct io_ring_ctx
*ctx
)
1105 struct io_kiocb
*req
, *tmp
;
1107 spin_lock_irq(&ctx
->completion_lock
);
1108 list_for_each_entry_safe(req
, tmp
, &ctx
->timeout_list
, list
)
1109 io_kill_timeout(req
);
1110 spin_unlock_irq(&ctx
->completion_lock
);
1113 static void io_commit_cqring(struct io_ring_ctx
*ctx
)
1115 struct io_kiocb
*req
;
1117 while ((req
= io_get_timeout_req(ctx
)) != NULL
)
1118 io_kill_timeout(req
);
1120 __io_commit_cqring(ctx
);
1122 while ((req
= io_get_deferred_req(ctx
)) != NULL
)
1123 io_queue_async_work(req
);
1126 static struct io_uring_cqe
*io_get_cqring(struct io_ring_ctx
*ctx
)
1128 struct io_rings
*rings
= ctx
->rings
;
1131 tail
= ctx
->cached_cq_tail
;
1133 * writes to the cq entry need to come after reading head; the
1134 * control dependency is enough as we're using WRITE_ONCE to
1137 if (tail
- READ_ONCE(rings
->cq
.head
) == rings
->cq_ring_entries
)
1140 ctx
->cached_cq_tail
++;
1141 return &rings
->cqes
[tail
& ctx
->cq_mask
];
1144 static inline bool io_should_trigger_evfd(struct io_ring_ctx
*ctx
)
1148 if (!ctx
->eventfd_async
)
1150 return io_wq_current_is_worker();
1153 static void io_cqring_ev_posted(struct io_ring_ctx
*ctx
)
1155 if (waitqueue_active(&ctx
->wait
))
1156 wake_up(&ctx
->wait
);
1157 if (waitqueue_active(&ctx
->sqo_wait
))
1158 wake_up(&ctx
->sqo_wait
);
1159 if (io_should_trigger_evfd(ctx
))
1160 eventfd_signal(ctx
->cq_ev_fd
, 1);
1163 /* Returns true if there are no backlogged entries after the flush */
1164 static bool io_cqring_overflow_flush(struct io_ring_ctx
*ctx
, bool force
)
1166 struct io_rings
*rings
= ctx
->rings
;
1167 struct io_uring_cqe
*cqe
;
1168 struct io_kiocb
*req
;
1169 unsigned long flags
;
1173 if (list_empty_careful(&ctx
->cq_overflow_list
))
1175 if ((ctx
->cached_cq_tail
- READ_ONCE(rings
->cq
.head
) ==
1176 rings
->cq_ring_entries
))
1180 spin_lock_irqsave(&ctx
->completion_lock
, flags
);
1182 /* if force is set, the ring is going away. always drop after that */
1184 ctx
->cq_overflow_flushed
= 1;
1187 while (!list_empty(&ctx
->cq_overflow_list
)) {
1188 cqe
= io_get_cqring(ctx
);
1192 req
= list_first_entry(&ctx
->cq_overflow_list
, struct io_kiocb
,
1194 list_move(&req
->list
, &list
);
1195 req
->flags
&= ~REQ_F_OVERFLOW
;
1197 WRITE_ONCE(cqe
->user_data
, req
->user_data
);
1198 WRITE_ONCE(cqe
->res
, req
->result
);
1199 WRITE_ONCE(cqe
->flags
, req
->cflags
);
1201 WRITE_ONCE(ctx
->rings
->cq_overflow
,
1202 atomic_inc_return(&ctx
->cached_cq_overflow
));
1206 io_commit_cqring(ctx
);
1208 clear_bit(0, &ctx
->sq_check_overflow
);
1209 clear_bit(0, &ctx
->cq_check_overflow
);
1211 spin_unlock_irqrestore(&ctx
->completion_lock
, flags
);
1212 io_cqring_ev_posted(ctx
);
1214 while (!list_empty(&list
)) {
1215 req
= list_first_entry(&list
, struct io_kiocb
, list
);
1216 list_del(&req
->list
);
1223 static void __io_cqring_fill_event(struct io_kiocb
*req
, long res
, long cflags
)
1225 struct io_ring_ctx
*ctx
= req
->ctx
;
1226 struct io_uring_cqe
*cqe
;
1228 trace_io_uring_complete(ctx
, req
->user_data
, res
);
1231 * If we can't get a cq entry, userspace overflowed the
1232 * submission (by quite a lot). Increment the overflow count in
1235 cqe
= io_get_cqring(ctx
);
1237 WRITE_ONCE(cqe
->user_data
, req
->user_data
);
1238 WRITE_ONCE(cqe
->res
, res
);
1239 WRITE_ONCE(cqe
->flags
, cflags
);
1240 } else if (ctx
->cq_overflow_flushed
) {
1241 WRITE_ONCE(ctx
->rings
->cq_overflow
,
1242 atomic_inc_return(&ctx
->cached_cq_overflow
));
1244 if (list_empty(&ctx
->cq_overflow_list
)) {
1245 set_bit(0, &ctx
->sq_check_overflow
);
1246 set_bit(0, &ctx
->cq_check_overflow
);
1248 req
->flags
|= REQ_F_OVERFLOW
;
1249 refcount_inc(&req
->refs
);
1251 req
->cflags
= cflags
;
1252 list_add_tail(&req
->list
, &ctx
->cq_overflow_list
);
1256 static void io_cqring_fill_event(struct io_kiocb
*req
, long res
)
1258 __io_cqring_fill_event(req
, res
, 0);
1261 static void __io_cqring_add_event(struct io_kiocb
*req
, long res
, long cflags
)
1263 struct io_ring_ctx
*ctx
= req
->ctx
;
1264 unsigned long flags
;
1266 spin_lock_irqsave(&ctx
->completion_lock
, flags
);
1267 __io_cqring_fill_event(req
, res
, cflags
);
1268 io_commit_cqring(ctx
);
1269 spin_unlock_irqrestore(&ctx
->completion_lock
, flags
);
1271 io_cqring_ev_posted(ctx
);
1274 static void io_cqring_add_event(struct io_kiocb
*req
, long res
)
1276 __io_cqring_add_event(req
, res
, 0);
1279 static inline bool io_is_fallback_req(struct io_kiocb
*req
)
1281 return req
== (struct io_kiocb
*)
1282 ((unsigned long) req
->ctx
->fallback_req
& ~1UL);
1285 static struct io_kiocb
*io_get_fallback_req(struct io_ring_ctx
*ctx
)
1287 struct io_kiocb
*req
;
1289 req
= ctx
->fallback_req
;
1290 if (!test_and_set_bit_lock(0, (unsigned long *) &ctx
->fallback_req
))
1296 static struct io_kiocb
*io_alloc_req(struct io_ring_ctx
*ctx
,
1297 struct io_submit_state
*state
)
1299 gfp_t gfp
= GFP_KERNEL
| __GFP_NOWARN
;
1300 struct io_kiocb
*req
;
1303 req
= kmem_cache_alloc(req_cachep
, gfp
);
1306 } else if (!state
->free_reqs
) {
1310 sz
= min_t(size_t, state
->ios_left
, ARRAY_SIZE(state
->reqs
));
1311 ret
= kmem_cache_alloc_bulk(req_cachep
, gfp
, sz
, state
->reqs
);
1314 * Bulk alloc is all-or-nothing. If we fail to get a batch,
1315 * retry single alloc to be on the safe side.
1317 if (unlikely(ret
<= 0)) {
1318 state
->reqs
[0] = kmem_cache_alloc(req_cachep
, gfp
);
1319 if (!state
->reqs
[0])
1323 state
->free_reqs
= ret
- 1;
1324 req
= state
->reqs
[ret
- 1];
1327 req
= state
->reqs
[state
->free_reqs
];
1332 return io_get_fallback_req(ctx
);
1335 static inline void io_put_file(struct io_kiocb
*req
, struct file
*file
,
1339 percpu_ref_put(req
->fixed_file_refs
);
1344 static void __io_req_aux_free(struct io_kiocb
*req
)
1346 if (req
->flags
& REQ_F_NEED_CLEANUP
)
1347 io_cleanup_req(req
);
1351 io_put_file(req
, req
->file
, (req
->flags
& REQ_F_FIXED_FILE
));
1353 put_task_struct(req
->task
);
1355 io_req_work_drop_env(req
);
1358 static void __io_free_req(struct io_kiocb
*req
)
1360 __io_req_aux_free(req
);
1362 if (req
->flags
& REQ_F_INFLIGHT
) {
1363 struct io_ring_ctx
*ctx
= req
->ctx
;
1364 unsigned long flags
;
1366 spin_lock_irqsave(&ctx
->inflight_lock
, flags
);
1367 list_del(&req
->inflight_entry
);
1368 if (waitqueue_active(&ctx
->inflight_wait
))
1369 wake_up(&ctx
->inflight_wait
);
1370 spin_unlock_irqrestore(&ctx
->inflight_lock
, flags
);
1373 percpu_ref_put(&req
->ctx
->refs
);
1374 if (likely(!io_is_fallback_req(req
)))
1375 kmem_cache_free(req_cachep
, req
);
1377 clear_bit_unlock(0, (unsigned long *) &req
->ctx
->fallback_req
);
1381 void *reqs
[IO_IOPOLL_BATCH
];
1386 static void io_free_req_many(struct io_ring_ctx
*ctx
, struct req_batch
*rb
)
1390 if (rb
->need_iter
) {
1391 int i
, inflight
= 0;
1392 unsigned long flags
;
1394 for (i
= 0; i
< rb
->to_free
; i
++) {
1395 struct io_kiocb
*req
= rb
->reqs
[i
];
1397 if (req
->flags
& REQ_F_FIXED_FILE
) {
1399 percpu_ref_put(req
->fixed_file_refs
);
1401 if (req
->flags
& REQ_F_INFLIGHT
)
1403 __io_req_aux_free(req
);
1408 spin_lock_irqsave(&ctx
->inflight_lock
, flags
);
1409 for (i
= 0; i
< rb
->to_free
; i
++) {
1410 struct io_kiocb
*req
= rb
->reqs
[i
];
1412 if (req
->flags
& REQ_F_INFLIGHT
) {
1413 list_del(&req
->inflight_entry
);
1418 spin_unlock_irqrestore(&ctx
->inflight_lock
, flags
);
1420 if (waitqueue_active(&ctx
->inflight_wait
))
1421 wake_up(&ctx
->inflight_wait
);
1424 kmem_cache_free_bulk(req_cachep
, rb
->to_free
, rb
->reqs
);
1425 percpu_ref_put_many(&ctx
->refs
, rb
->to_free
);
1426 rb
->to_free
= rb
->need_iter
= 0;
1429 static bool io_link_cancel_timeout(struct io_kiocb
*req
)
1431 struct io_ring_ctx
*ctx
= req
->ctx
;
1434 ret
= hrtimer_try_to_cancel(&req
->io
->timeout
.timer
);
1436 io_cqring_fill_event(req
, -ECANCELED
);
1437 io_commit_cqring(ctx
);
1438 req
->flags
&= ~REQ_F_LINK_HEAD
;
1446 static void io_req_link_next(struct io_kiocb
*req
, struct io_kiocb
**nxtptr
)
1448 struct io_ring_ctx
*ctx
= req
->ctx
;
1449 bool wake_ev
= false;
1451 /* Already got next link */
1452 if (req
->flags
& REQ_F_LINK_NEXT
)
1456 * The list should never be empty when we are called here. But could
1457 * potentially happen if the chain is messed up, check to be on the
1460 while (!list_empty(&req
->link_list
)) {
1461 struct io_kiocb
*nxt
= list_first_entry(&req
->link_list
,
1462 struct io_kiocb
, link_list
);
1464 if (unlikely((req
->flags
& REQ_F_LINK_TIMEOUT
) &&
1465 (nxt
->flags
& REQ_F_TIMEOUT
))) {
1466 list_del_init(&nxt
->link_list
);
1467 wake_ev
|= io_link_cancel_timeout(nxt
);
1468 req
->flags
&= ~REQ_F_LINK_TIMEOUT
;
1472 list_del_init(&req
->link_list
);
1473 if (!list_empty(&nxt
->link_list
))
1474 nxt
->flags
|= REQ_F_LINK_HEAD
;
1479 req
->flags
|= REQ_F_LINK_NEXT
;
1481 io_cqring_ev_posted(ctx
);
1485 * Called if REQ_F_LINK_HEAD is set, and we fail the head request
1487 static void io_fail_links(struct io_kiocb
*req
)
1489 struct io_ring_ctx
*ctx
= req
->ctx
;
1490 unsigned long flags
;
1492 spin_lock_irqsave(&ctx
->completion_lock
, flags
);
1494 while (!list_empty(&req
->link_list
)) {
1495 struct io_kiocb
*link
= list_first_entry(&req
->link_list
,
1496 struct io_kiocb
, link_list
);
1498 list_del_init(&link
->link_list
);
1499 trace_io_uring_fail_link(req
, link
);
1501 if ((req
->flags
& REQ_F_LINK_TIMEOUT
) &&
1502 link
->opcode
== IORING_OP_LINK_TIMEOUT
) {
1503 io_link_cancel_timeout(link
);
1505 io_cqring_fill_event(link
, -ECANCELED
);
1506 __io_double_put_req(link
);
1508 req
->flags
&= ~REQ_F_LINK_TIMEOUT
;
1511 io_commit_cqring(ctx
);
1512 spin_unlock_irqrestore(&ctx
->completion_lock
, flags
);
1513 io_cqring_ev_posted(ctx
);
1516 static void io_req_find_next(struct io_kiocb
*req
, struct io_kiocb
**nxt
)
1518 if (likely(!(req
->flags
& REQ_F_LINK_HEAD
)))
1522 * If LINK is set, we have dependent requests in this chain. If we
1523 * didn't fail this request, queue the first one up, moving any other
1524 * dependencies to the next request. In case of failure, fail the rest
1527 if (req
->flags
& REQ_F_FAIL_LINK
) {
1529 } else if ((req
->flags
& (REQ_F_LINK_TIMEOUT
| REQ_F_COMP_LOCKED
)) ==
1530 REQ_F_LINK_TIMEOUT
) {
1531 struct io_ring_ctx
*ctx
= req
->ctx
;
1532 unsigned long flags
;
1535 * If this is a timeout link, we could be racing with the
1536 * timeout timer. Grab the completion lock for this case to
1537 * protect against that.
1539 spin_lock_irqsave(&ctx
->completion_lock
, flags
);
1540 io_req_link_next(req
, nxt
);
1541 spin_unlock_irqrestore(&ctx
->completion_lock
, flags
);
1543 io_req_link_next(req
, nxt
);
1547 static void io_free_req(struct io_kiocb
*req
)
1549 struct io_kiocb
*nxt
= NULL
;
1551 io_req_find_next(req
, &nxt
);
1555 io_queue_async_work(nxt
);
1558 static void io_link_work_cb(struct io_wq_work
**workptr
)
1560 struct io_kiocb
*req
= container_of(*workptr
, struct io_kiocb
, work
);
1561 struct io_kiocb
*link
;
1563 link
= list_first_entry(&req
->link_list
, struct io_kiocb
, link_list
);
1564 io_queue_linked_timeout(link
);
1565 io_wq_submit_work(workptr
);
1568 static void io_wq_assign_next(struct io_wq_work
**workptr
, struct io_kiocb
*nxt
)
1570 struct io_kiocb
*link
;
1571 const struct io_op_def
*def
= &io_op_defs
[nxt
->opcode
];
1573 if ((nxt
->flags
& REQ_F_ISREG
) && def
->hash_reg_file
)
1574 io_wq_hash_work(&nxt
->work
, file_inode(nxt
->file
));
1576 *workptr
= &nxt
->work
;
1577 link
= io_prep_linked_timeout(nxt
);
1579 nxt
->work
.func
= io_link_work_cb
;
1583 * Drop reference to request, return next in chain (if there is one) if this
1584 * was the last reference to this request.
1586 __attribute__((nonnull
))
1587 static void io_put_req_find_next(struct io_kiocb
*req
, struct io_kiocb
**nxtptr
)
1589 if (refcount_dec_and_test(&req
->refs
)) {
1590 io_req_find_next(req
, nxtptr
);
1595 static void io_put_req(struct io_kiocb
*req
)
1597 if (refcount_dec_and_test(&req
->refs
))
1601 static void io_steal_work(struct io_kiocb
*req
,
1602 struct io_wq_work
**workptr
)
1605 * It's in an io-wq worker, so there always should be at least
1606 * one reference, which will be dropped in io_put_work() just
1607 * after the current handler returns.
1609 * It also means, that if the counter dropped to 1, then there is
1610 * no asynchronous users left, so it's safe to steal the next work.
1612 if (refcount_read(&req
->refs
) == 1) {
1613 struct io_kiocb
*nxt
= NULL
;
1615 io_req_find_next(req
, &nxt
);
1617 io_wq_assign_next(workptr
, nxt
);
1622 * Must only be used if we don't need to care about links, usually from
1623 * within the completion handling itself.
1625 static void __io_double_put_req(struct io_kiocb
*req
)
1627 /* drop both submit and complete references */
1628 if (refcount_sub_and_test(2, &req
->refs
))
1632 static void io_double_put_req(struct io_kiocb
*req
)
1634 /* drop both submit and complete references */
1635 if (refcount_sub_and_test(2, &req
->refs
))
1639 static unsigned io_cqring_events(struct io_ring_ctx
*ctx
, bool noflush
)
1641 struct io_rings
*rings
= ctx
->rings
;
1643 if (test_bit(0, &ctx
->cq_check_overflow
)) {
1645 * noflush == true is from the waitqueue handler, just ensure
1646 * we wake up the task, and the next invocation will flush the
1647 * entries. We cannot safely to it from here.
1649 if (noflush
&& !list_empty(&ctx
->cq_overflow_list
))
1652 io_cqring_overflow_flush(ctx
, false);
1655 /* See comment at the top of this file */
1657 return ctx
->cached_cq_tail
- READ_ONCE(rings
->cq
.head
);
1660 static inline unsigned int io_sqring_entries(struct io_ring_ctx
*ctx
)
1662 struct io_rings
*rings
= ctx
->rings
;
1664 /* make sure SQ entry isn't read before tail */
1665 return smp_load_acquire(&rings
->sq
.tail
) - ctx
->cached_sq_head
;
1668 static inline bool io_req_multi_free(struct req_batch
*rb
, struct io_kiocb
*req
)
1670 if ((req
->flags
& REQ_F_LINK_HEAD
) || io_is_fallback_req(req
))
1673 if (!(req
->flags
& REQ_F_FIXED_FILE
) || req
->io
)
1676 rb
->reqs
[rb
->to_free
++] = req
;
1677 if (unlikely(rb
->to_free
== ARRAY_SIZE(rb
->reqs
)))
1678 io_free_req_many(req
->ctx
, rb
);
1682 static int io_put_kbuf(struct io_kiocb
*req
)
1684 struct io_buffer
*kbuf
;
1687 kbuf
= (struct io_buffer
*) (unsigned long) req
->rw
.addr
;
1688 cflags
= kbuf
->bid
<< IORING_CQE_BUFFER_SHIFT
;
1689 cflags
|= IORING_CQE_F_BUFFER
;
1696 * Find and free completed poll iocbs
1698 static void io_iopoll_complete(struct io_ring_ctx
*ctx
, unsigned int *nr_events
,
1699 struct list_head
*done
)
1701 struct req_batch rb
;
1702 struct io_kiocb
*req
;
1704 rb
.to_free
= rb
.need_iter
= 0;
1705 while (!list_empty(done
)) {
1708 req
= list_first_entry(done
, struct io_kiocb
, list
);
1709 list_del(&req
->list
);
1711 if (req
->flags
& REQ_F_BUFFER_SELECTED
)
1712 cflags
= io_put_kbuf(req
);
1714 __io_cqring_fill_event(req
, req
->result
, cflags
);
1717 if (refcount_dec_and_test(&req
->refs
) &&
1718 !io_req_multi_free(&rb
, req
))
1722 io_commit_cqring(ctx
);
1723 if (ctx
->flags
& IORING_SETUP_SQPOLL
)
1724 io_cqring_ev_posted(ctx
);
1725 io_free_req_many(ctx
, &rb
);
1728 static void io_iopoll_queue(struct list_head
*again
)
1730 struct io_kiocb
*req
;
1733 req
= list_first_entry(again
, struct io_kiocb
, list
);
1734 list_del(&req
->list
);
1735 refcount_inc(&req
->refs
);
1736 io_queue_async_work(req
);
1737 } while (!list_empty(again
));
1740 static int io_do_iopoll(struct io_ring_ctx
*ctx
, unsigned int *nr_events
,
1743 struct io_kiocb
*req
, *tmp
;
1750 * Only spin for completions if we don't have multiple devices hanging
1751 * off our complete list, and we're under the requested amount.
1753 spin
= !ctx
->poll_multi_file
&& *nr_events
< min
;
1756 list_for_each_entry_safe(req
, tmp
, &ctx
->poll_list
, list
) {
1757 struct kiocb
*kiocb
= &req
->rw
.kiocb
;
1760 * Move completed and retryable entries to our local lists.
1761 * If we find a request that requires polling, break out
1762 * and complete those lists first, if we have entries there.
1764 if (req
->flags
& REQ_F_IOPOLL_COMPLETED
) {
1765 list_move_tail(&req
->list
, &done
);
1768 if (!list_empty(&done
))
1771 if (req
->result
== -EAGAIN
) {
1772 list_move_tail(&req
->list
, &again
);
1775 if (!list_empty(&again
))
1778 ret
= kiocb
->ki_filp
->f_op
->iopoll(kiocb
, spin
);
1787 if (!list_empty(&done
))
1788 io_iopoll_complete(ctx
, nr_events
, &done
);
1790 if (!list_empty(&again
))
1791 io_iopoll_queue(&again
);
1797 * Poll for a minimum of 'min' events. Note that if min == 0 we consider that a
1798 * non-spinning poll check - we'll still enter the driver poll loop, but only
1799 * as a non-spinning completion check.
1801 static int io_iopoll_getevents(struct io_ring_ctx
*ctx
, unsigned int *nr_events
,
1804 while (!list_empty(&ctx
->poll_list
) && !need_resched()) {
1807 ret
= io_do_iopoll(ctx
, nr_events
, min
);
1810 if (!min
|| *nr_events
>= min
)
1818 * We can't just wait for polled events to come to us, we have to actively
1819 * find and complete them.
1821 static void io_iopoll_reap_events(struct io_ring_ctx
*ctx
)
1823 if (!(ctx
->flags
& IORING_SETUP_IOPOLL
))
1826 mutex_lock(&ctx
->uring_lock
);
1827 while (!list_empty(&ctx
->poll_list
)) {
1828 unsigned int nr_events
= 0;
1830 io_iopoll_getevents(ctx
, &nr_events
, 1);
1833 * Ensure we allow local-to-the-cpu processing to take place,
1834 * in this case we need to ensure that we reap all events.
1838 mutex_unlock(&ctx
->uring_lock
);
1841 static int io_iopoll_check(struct io_ring_ctx
*ctx
, unsigned *nr_events
,
1844 int iters
= 0, ret
= 0;
1847 * We disallow the app entering submit/complete with polling, but we
1848 * still need to lock the ring to prevent racing with polled issue
1849 * that got punted to a workqueue.
1851 mutex_lock(&ctx
->uring_lock
);
1856 * Don't enter poll loop if we already have events pending.
1857 * If we do, we can potentially be spinning for commands that
1858 * already triggered a CQE (eg in error).
1860 if (io_cqring_events(ctx
, false))
1864 * If a submit got punted to a workqueue, we can have the
1865 * application entering polling for a command before it gets
1866 * issued. That app will hold the uring_lock for the duration
1867 * of the poll right here, so we need to take a breather every
1868 * now and then to ensure that the issue has a chance to add
1869 * the poll to the issued list. Otherwise we can spin here
1870 * forever, while the workqueue is stuck trying to acquire the
1873 if (!(++iters
& 7)) {
1874 mutex_unlock(&ctx
->uring_lock
);
1875 mutex_lock(&ctx
->uring_lock
);
1878 if (*nr_events
< min
)
1879 tmin
= min
- *nr_events
;
1881 ret
= io_iopoll_getevents(ctx
, nr_events
, tmin
);
1885 } while (min
&& !*nr_events
&& !need_resched());
1887 mutex_unlock(&ctx
->uring_lock
);
1891 static void kiocb_end_write(struct io_kiocb
*req
)
1894 * Tell lockdep we inherited freeze protection from submission
1897 if (req
->flags
& REQ_F_ISREG
) {
1898 struct inode
*inode
= file_inode(req
->file
);
1900 __sb_writers_acquired(inode
->i_sb
, SB_FREEZE_WRITE
);
1902 file_end_write(req
->file
);
1905 static inline void req_set_fail_links(struct io_kiocb
*req
)
1907 if ((req
->flags
& (REQ_F_LINK
| REQ_F_HARDLINK
)) == REQ_F_LINK
)
1908 req
->flags
|= REQ_F_FAIL_LINK
;
1911 static void io_complete_rw_common(struct kiocb
*kiocb
, long res
)
1913 struct io_kiocb
*req
= container_of(kiocb
, struct io_kiocb
, rw
.kiocb
);
1916 if (kiocb
->ki_flags
& IOCB_WRITE
)
1917 kiocb_end_write(req
);
1919 if (res
!= req
->result
)
1920 req_set_fail_links(req
);
1921 if (req
->flags
& REQ_F_BUFFER_SELECTED
)
1922 cflags
= io_put_kbuf(req
);
1923 __io_cqring_add_event(req
, res
, cflags
);
1926 static void io_complete_rw(struct kiocb
*kiocb
, long res
, long res2
)
1928 struct io_kiocb
*req
= container_of(kiocb
, struct io_kiocb
, rw
.kiocb
);
1930 io_complete_rw_common(kiocb
, res
);
1934 static void io_complete_rw_iopoll(struct kiocb
*kiocb
, long res
, long res2
)
1936 struct io_kiocb
*req
= container_of(kiocb
, struct io_kiocb
, rw
.kiocb
);
1938 if (kiocb
->ki_flags
& IOCB_WRITE
)
1939 kiocb_end_write(req
);
1941 if (res
!= req
->result
)
1942 req_set_fail_links(req
);
1945 req
->flags
|= REQ_F_IOPOLL_COMPLETED
;
1949 * After the iocb has been issued, it's safe to be found on the poll list.
1950 * Adding the kiocb to the list AFTER submission ensures that we don't
1951 * find it from a io_iopoll_getevents() thread before the issuer is done
1952 * accessing the kiocb cookie.
1954 static void io_iopoll_req_issued(struct io_kiocb
*req
)
1956 struct io_ring_ctx
*ctx
= req
->ctx
;
1959 * Track whether we have multiple files in our lists. This will impact
1960 * how we do polling eventually, not spinning if we're on potentially
1961 * different devices.
1963 if (list_empty(&ctx
->poll_list
)) {
1964 ctx
->poll_multi_file
= false;
1965 } else if (!ctx
->poll_multi_file
) {
1966 struct io_kiocb
*list_req
;
1968 list_req
= list_first_entry(&ctx
->poll_list
, struct io_kiocb
,
1970 if (list_req
->file
!= req
->file
)
1971 ctx
->poll_multi_file
= true;
1975 * For fast devices, IO may have already completed. If it has, add
1976 * it to the front so we find it first.
1978 if (req
->flags
& REQ_F_IOPOLL_COMPLETED
)
1979 list_add(&req
->list
, &ctx
->poll_list
);
1981 list_add_tail(&req
->list
, &ctx
->poll_list
);
1983 if ((ctx
->flags
& IORING_SETUP_SQPOLL
) &&
1984 wq_has_sleeper(&ctx
->sqo_wait
))
1985 wake_up(&ctx
->sqo_wait
);
1988 static void io_file_put(struct io_submit_state
*state
)
1991 int diff
= state
->has_refs
- state
->used_refs
;
1994 fput_many(state
->file
, diff
);
2000 * Get as many references to a file as we have IOs left in this submission,
2001 * assuming most submissions are for one file, or at least that each file
2002 * has more than one submission.
2004 static struct file
*__io_file_get(struct io_submit_state
*state
, int fd
)
2010 if (state
->fd
== fd
) {
2017 state
->file
= fget_many(fd
, state
->ios_left
);
2022 state
->has_refs
= state
->ios_left
;
2023 state
->used_refs
= 1;
2029 * If we tracked the file through the SCM inflight mechanism, we could support
2030 * any file. For now, just ensure that anything potentially problematic is done
2033 static bool io_file_supports_async(struct file
*file
, int rw
)
2035 umode_t mode
= file_inode(file
)->i_mode
;
2037 if (S_ISBLK(mode
) || S_ISCHR(mode
) || S_ISSOCK(mode
))
2039 if (S_ISREG(mode
) && file
->f_op
!= &io_uring_fops
)
2042 if (!(file
->f_mode
& FMODE_NOWAIT
))
2046 return file
->f_op
->read_iter
!= NULL
;
2048 return file
->f_op
->write_iter
!= NULL
;
2051 static int io_prep_rw(struct io_kiocb
*req
, const struct io_uring_sqe
*sqe
,
2052 bool force_nonblock
)
2054 struct io_ring_ctx
*ctx
= req
->ctx
;
2055 struct kiocb
*kiocb
= &req
->rw
.kiocb
;
2059 if (S_ISREG(file_inode(req
->file
)->i_mode
))
2060 req
->flags
|= REQ_F_ISREG
;
2062 kiocb
->ki_pos
= READ_ONCE(sqe
->off
);
2063 if (kiocb
->ki_pos
== -1 && !(req
->file
->f_mode
& FMODE_STREAM
)) {
2064 req
->flags
|= REQ_F_CUR_POS
;
2065 kiocb
->ki_pos
= req
->file
->f_pos
;
2067 kiocb
->ki_hint
= ki_hint_validate(file_write_hint(kiocb
->ki_filp
));
2068 kiocb
->ki_flags
= iocb_flags(kiocb
->ki_filp
);
2069 ret
= kiocb_set_rw_flags(kiocb
, READ_ONCE(sqe
->rw_flags
));
2073 ioprio
= READ_ONCE(sqe
->ioprio
);
2075 ret
= ioprio_check_cap(ioprio
);
2079 kiocb
->ki_ioprio
= ioprio
;
2081 kiocb
->ki_ioprio
= get_current_ioprio();
2083 /* don't allow async punt if RWF_NOWAIT was requested */
2084 if ((kiocb
->ki_flags
& IOCB_NOWAIT
) ||
2085 (req
->file
->f_flags
& O_NONBLOCK
))
2086 req
->flags
|= REQ_F_NOWAIT
;
2089 kiocb
->ki_flags
|= IOCB_NOWAIT
;
2091 if (ctx
->flags
& IORING_SETUP_IOPOLL
) {
2092 if (!(kiocb
->ki_flags
& IOCB_DIRECT
) ||
2093 !kiocb
->ki_filp
->f_op
->iopoll
)
2096 kiocb
->ki_flags
|= IOCB_HIPRI
;
2097 kiocb
->ki_complete
= io_complete_rw_iopoll
;
2100 if (kiocb
->ki_flags
& IOCB_HIPRI
)
2102 kiocb
->ki_complete
= io_complete_rw
;
2105 req
->rw
.addr
= READ_ONCE(sqe
->addr
);
2106 req
->rw
.len
= READ_ONCE(sqe
->len
);
2107 /* we own ->private, reuse it for the buffer index / buffer ID */
2108 req
->rw
.kiocb
.private = (void *) (unsigned long)
2109 READ_ONCE(sqe
->buf_index
);
2113 static inline void io_rw_done(struct kiocb
*kiocb
, ssize_t ret
)
2119 case -ERESTARTNOINTR
:
2120 case -ERESTARTNOHAND
:
2121 case -ERESTART_RESTARTBLOCK
:
2123 * We can't just restart the syscall, since previously
2124 * submitted sqes may already be in progress. Just fail this
2130 kiocb
->ki_complete(kiocb
, ret
, 0);
2134 static void kiocb_done(struct kiocb
*kiocb
, ssize_t ret
)
2136 struct io_kiocb
*req
= container_of(kiocb
, struct io_kiocb
, rw
.kiocb
);
2138 if (req
->flags
& REQ_F_CUR_POS
)
2139 req
->file
->f_pos
= kiocb
->ki_pos
;
2140 if (ret
>= 0 && kiocb
->ki_complete
== io_complete_rw
)
2141 io_complete_rw(kiocb
, ret
, 0);
2143 io_rw_done(kiocb
, ret
);
2146 static ssize_t
io_import_fixed(struct io_kiocb
*req
, int rw
,
2147 struct iov_iter
*iter
)
2149 struct io_ring_ctx
*ctx
= req
->ctx
;
2150 size_t len
= req
->rw
.len
;
2151 struct io_mapped_ubuf
*imu
;
2152 unsigned index
, buf_index
;
2156 /* attempt to use fixed buffers without having provided iovecs */
2157 if (unlikely(!ctx
->user_bufs
))
2160 buf_index
= (unsigned long) req
->rw
.kiocb
.private;
2161 if (unlikely(buf_index
>= ctx
->nr_user_bufs
))
2164 index
= array_index_nospec(buf_index
, ctx
->nr_user_bufs
);
2165 imu
= &ctx
->user_bufs
[index
];
2166 buf_addr
= req
->rw
.addr
;
2169 if (buf_addr
+ len
< buf_addr
)
2171 /* not inside the mapped region */
2172 if (buf_addr
< imu
->ubuf
|| buf_addr
+ len
> imu
->ubuf
+ imu
->len
)
2176 * May not be a start of buffer, set size appropriately
2177 * and advance us to the beginning.
2179 offset
= buf_addr
- imu
->ubuf
;
2180 iov_iter_bvec(iter
, rw
, imu
->bvec
, imu
->nr_bvecs
, offset
+ len
);
2184 * Don't use iov_iter_advance() here, as it's really slow for
2185 * using the latter parts of a big fixed buffer - it iterates
2186 * over each segment manually. We can cheat a bit here, because
2189 * 1) it's a BVEC iter, we set it up
2190 * 2) all bvecs are PAGE_SIZE in size, except potentially the
2191 * first and last bvec
2193 * So just find our index, and adjust the iterator afterwards.
2194 * If the offset is within the first bvec (or the whole first
2195 * bvec, just use iov_iter_advance(). This makes it easier
2196 * since we can just skip the first segment, which may not
2197 * be PAGE_SIZE aligned.
2199 const struct bio_vec
*bvec
= imu
->bvec
;
2201 if (offset
<= bvec
->bv_len
) {
2202 iov_iter_advance(iter
, offset
);
2204 unsigned long seg_skip
;
2206 /* skip first vec */
2207 offset
-= bvec
->bv_len
;
2208 seg_skip
= 1 + (offset
>> PAGE_SHIFT
);
2210 iter
->bvec
= bvec
+ seg_skip
;
2211 iter
->nr_segs
-= seg_skip
;
2212 iter
->count
-= bvec
->bv_len
+ offset
;
2213 iter
->iov_offset
= offset
& ~PAGE_MASK
;
2220 static void io_ring_submit_unlock(struct io_ring_ctx
*ctx
, bool needs_lock
)
2223 mutex_unlock(&ctx
->uring_lock
);
2226 static void io_ring_submit_lock(struct io_ring_ctx
*ctx
, bool needs_lock
)
2229 * "Normal" inline submissions always hold the uring_lock, since we
2230 * grab it from the system call. Same is true for the SQPOLL offload.
2231 * The only exception is when we've detached the request and issue it
2232 * from an async worker thread, grab the lock for that case.
2235 mutex_lock(&ctx
->uring_lock
);
2238 static struct io_buffer
*io_buffer_select(struct io_kiocb
*req
, size_t *len
,
2239 int bgid
, struct io_buffer
*kbuf
,
2242 struct io_buffer
*head
;
2244 if (req
->flags
& REQ_F_BUFFER_SELECTED
)
2247 io_ring_submit_lock(req
->ctx
, needs_lock
);
2249 lockdep_assert_held(&req
->ctx
->uring_lock
);
2251 head
= idr_find(&req
->ctx
->io_buffer_idr
, bgid
);
2253 if (!list_empty(&head
->list
)) {
2254 kbuf
= list_last_entry(&head
->list
, struct io_buffer
,
2256 list_del(&kbuf
->list
);
2259 idr_remove(&req
->ctx
->io_buffer_idr
, bgid
);
2261 if (*len
> kbuf
->len
)
2264 kbuf
= ERR_PTR(-ENOBUFS
);
2267 io_ring_submit_unlock(req
->ctx
, needs_lock
);
2272 static void __user
*io_rw_buffer_select(struct io_kiocb
*req
, size_t *len
,
2275 struct io_buffer
*kbuf
;
2278 kbuf
= (struct io_buffer
*) (unsigned long) req
->rw
.addr
;
2279 bgid
= (int) (unsigned long) req
->rw
.kiocb
.private;
2280 kbuf
= io_buffer_select(req
, len
, bgid
, kbuf
, needs_lock
);
2283 req
->rw
.addr
= (u64
) (unsigned long) kbuf
;
2284 req
->flags
|= REQ_F_BUFFER_SELECTED
;
2285 return u64_to_user_ptr(kbuf
->addr
);
2288 #ifdef CONFIG_COMPAT
2289 static ssize_t
io_compat_import(struct io_kiocb
*req
, struct iovec
*iov
,
2292 struct compat_iovec __user
*uiov
;
2293 compat_ssize_t clen
;
2297 uiov
= u64_to_user_ptr(req
->rw
.addr
);
2298 if (!access_ok(uiov
, sizeof(*uiov
)))
2300 if (__get_user(clen
, &uiov
->iov_len
))
2306 buf
= io_rw_buffer_select(req
, &len
, needs_lock
);
2308 return PTR_ERR(buf
);
2309 iov
[0].iov_base
= buf
;
2310 iov
[0].iov_len
= (compat_size_t
) len
;
2315 static ssize_t
__io_iov_buffer_select(struct io_kiocb
*req
, struct iovec
*iov
,
2318 struct iovec __user
*uiov
= u64_to_user_ptr(req
->rw
.addr
);
2322 if (copy_from_user(iov
, uiov
, sizeof(*uiov
)))
2325 len
= iov
[0].iov_len
;
2328 buf
= io_rw_buffer_select(req
, &len
, needs_lock
);
2330 return PTR_ERR(buf
);
2331 iov
[0].iov_base
= buf
;
2332 iov
[0].iov_len
= len
;
2336 static ssize_t
io_iov_buffer_select(struct io_kiocb
*req
, struct iovec
*iov
,
2339 if (req
->flags
& REQ_F_BUFFER_SELECTED
)
2343 else if (req
->rw
.len
> 1)
2346 #ifdef CONFIG_COMPAT
2347 if (req
->ctx
->compat
)
2348 return io_compat_import(req
, iov
, needs_lock
);
2351 return __io_iov_buffer_select(req
, iov
, needs_lock
);
2354 static ssize_t
io_import_iovec(int rw
, struct io_kiocb
*req
,
2355 struct iovec
**iovec
, struct iov_iter
*iter
,
2358 void __user
*buf
= u64_to_user_ptr(req
->rw
.addr
);
2359 size_t sqe_len
= req
->rw
.len
;
2363 opcode
= req
->opcode
;
2364 if (opcode
== IORING_OP_READ_FIXED
|| opcode
== IORING_OP_WRITE_FIXED
) {
2366 return io_import_fixed(req
, rw
, iter
);
2369 /* buffer index only valid with fixed read/write, or buffer select */
2370 if (req
->rw
.kiocb
.private && !(req
->flags
& REQ_F_BUFFER_SELECT
))
2373 if (opcode
== IORING_OP_READ
|| opcode
== IORING_OP_WRITE
) {
2374 if (req
->flags
& REQ_F_BUFFER_SELECT
) {
2375 buf
= io_rw_buffer_select(req
, &sqe_len
, needs_lock
);
2378 return PTR_ERR(buf
);
2380 req
->rw
.len
= sqe_len
;
2383 ret
= import_single_range(rw
, buf
, sqe_len
, *iovec
, iter
);
2385 return ret
< 0 ? ret
: sqe_len
;
2389 struct io_async_rw
*iorw
= &req
->io
->rw
;
2392 iov_iter_init(iter
, rw
, *iovec
, iorw
->nr_segs
, iorw
->size
);
2393 if (iorw
->iov
== iorw
->fast_iov
)
2398 if (req
->flags
& REQ_F_BUFFER_SELECT
) {
2399 ret
= io_iov_buffer_select(req
, *iovec
, needs_lock
);
2401 ret
= (*iovec
)->iov_len
;
2402 iov_iter_init(iter
, rw
, *iovec
, 1, ret
);
2408 #ifdef CONFIG_COMPAT
2409 if (req
->ctx
->compat
)
2410 return compat_import_iovec(rw
, buf
, sqe_len
, UIO_FASTIOV
,
2414 return import_iovec(rw
, buf
, sqe_len
, UIO_FASTIOV
, iovec
, iter
);
2418 * For files that don't have ->read_iter() and ->write_iter(), handle them
2419 * by looping over ->read() or ->write() manually.
2421 static ssize_t
loop_rw_iter(int rw
, struct file
*file
, struct kiocb
*kiocb
,
2422 struct iov_iter
*iter
)
2427 * Don't support polled IO through this interface, and we can't
2428 * support non-blocking either. For the latter, this just causes
2429 * the kiocb to be handled from an async context.
2431 if (kiocb
->ki_flags
& IOCB_HIPRI
)
2433 if (kiocb
->ki_flags
& IOCB_NOWAIT
)
2436 while (iov_iter_count(iter
)) {
2440 if (!iov_iter_is_bvec(iter
)) {
2441 iovec
= iov_iter_iovec(iter
);
2443 /* fixed buffers import bvec */
2444 iovec
.iov_base
= kmap(iter
->bvec
->bv_page
)
2446 iovec
.iov_len
= min(iter
->count
,
2447 iter
->bvec
->bv_len
- iter
->iov_offset
);
2451 nr
= file
->f_op
->read(file
, iovec
.iov_base
,
2452 iovec
.iov_len
, &kiocb
->ki_pos
);
2454 nr
= file
->f_op
->write(file
, iovec
.iov_base
,
2455 iovec
.iov_len
, &kiocb
->ki_pos
);
2458 if (iov_iter_is_bvec(iter
))
2459 kunmap(iter
->bvec
->bv_page
);
2467 if (nr
!= iovec
.iov_len
)
2469 iov_iter_advance(iter
, nr
);
2475 static void io_req_map_rw(struct io_kiocb
*req
, ssize_t io_size
,
2476 struct iovec
*iovec
, struct iovec
*fast_iov
,
2477 struct iov_iter
*iter
)
2479 req
->io
->rw
.nr_segs
= iter
->nr_segs
;
2480 req
->io
->rw
.size
= io_size
;
2481 req
->io
->rw
.iov
= iovec
;
2482 if (!req
->io
->rw
.iov
) {
2483 req
->io
->rw
.iov
= req
->io
->rw
.fast_iov
;
2484 if (req
->io
->rw
.iov
!= fast_iov
)
2485 memcpy(req
->io
->rw
.iov
, fast_iov
,
2486 sizeof(struct iovec
) * iter
->nr_segs
);
2488 req
->flags
|= REQ_F_NEED_CLEANUP
;
2492 static inline int __io_alloc_async_ctx(struct io_kiocb
*req
)
2494 req
->io
= kmalloc(sizeof(*req
->io
), GFP_KERNEL
);
2495 return req
->io
== NULL
;
2498 static int io_alloc_async_ctx(struct io_kiocb
*req
)
2500 if (!io_op_defs
[req
->opcode
].async_ctx
)
2503 return __io_alloc_async_ctx(req
);
2506 static int io_setup_async_rw(struct io_kiocb
*req
, ssize_t io_size
,
2507 struct iovec
*iovec
, struct iovec
*fast_iov
,
2508 struct iov_iter
*iter
)
2510 if (!io_op_defs
[req
->opcode
].async_ctx
)
2513 if (__io_alloc_async_ctx(req
))
2516 io_req_map_rw(req
, io_size
, iovec
, fast_iov
, iter
);
2521 static int io_read_prep(struct io_kiocb
*req
, const struct io_uring_sqe
*sqe
,
2522 bool force_nonblock
)
2524 struct io_async_ctx
*io
;
2525 struct iov_iter iter
;
2528 ret
= io_prep_rw(req
, sqe
, force_nonblock
);
2532 if (unlikely(!(req
->file
->f_mode
& FMODE_READ
)))
2535 /* either don't need iovec imported or already have it */
2536 if (!req
->io
|| req
->flags
& REQ_F_NEED_CLEANUP
)
2540 io
->rw
.iov
= io
->rw
.fast_iov
;
2542 ret
= io_import_iovec(READ
, req
, &io
->rw
.iov
, &iter
, !force_nonblock
);
2547 io_req_map_rw(req
, ret
, io
->rw
.iov
, io
->rw
.fast_iov
, &iter
);
2551 static int io_read(struct io_kiocb
*req
, bool force_nonblock
)
2553 struct iovec inline_vecs
[UIO_FASTIOV
], *iovec
= inline_vecs
;
2554 struct kiocb
*kiocb
= &req
->rw
.kiocb
;
2555 struct iov_iter iter
;
2557 ssize_t io_size
, ret
;
2559 ret
= io_import_iovec(READ
, req
, &iovec
, &iter
, !force_nonblock
);
2563 /* Ensure we clear previously set non-block flag */
2564 if (!force_nonblock
)
2565 kiocb
->ki_flags
&= ~IOCB_NOWAIT
;
2569 if (req
->flags
& REQ_F_LINK_HEAD
)
2570 req
->result
= io_size
;
2573 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
2574 * we know to async punt it even if it was opened O_NONBLOCK
2576 if (force_nonblock
&& !io_file_supports_async(req
->file
, READ
))
2579 iov_count
= iov_iter_count(&iter
);
2580 ret
= rw_verify_area(READ
, req
->file
, &kiocb
->ki_pos
, iov_count
);
2584 if (req
->file
->f_op
->read_iter
)
2585 ret2
= call_read_iter(req
->file
, kiocb
, &iter
);
2587 ret2
= loop_rw_iter(READ
, req
->file
, kiocb
, &iter
);
2589 /* Catch -EAGAIN return for forced non-blocking submission */
2590 if (!force_nonblock
|| ret2
!= -EAGAIN
) {
2591 kiocb_done(kiocb
, ret2
);
2594 ret
= io_setup_async_rw(req
, io_size
, iovec
,
2595 inline_vecs
, &iter
);
2598 /* any defer here is final, must blocking retry */
2599 if (!(req
->flags
& REQ_F_NOWAIT
) &&
2600 !file_can_poll(req
->file
))
2601 req
->flags
|= REQ_F_MUST_PUNT
;
2607 req
->flags
&= ~REQ_F_NEED_CLEANUP
;
2611 static int io_write_prep(struct io_kiocb
*req
, const struct io_uring_sqe
*sqe
,
2612 bool force_nonblock
)
2614 struct io_async_ctx
*io
;
2615 struct iov_iter iter
;
2618 ret
= io_prep_rw(req
, sqe
, force_nonblock
);
2622 if (unlikely(!(req
->file
->f_mode
& FMODE_WRITE
)))
2625 req
->fsize
= rlimit(RLIMIT_FSIZE
);
2627 /* either don't need iovec imported or already have it */
2628 if (!req
->io
|| req
->flags
& REQ_F_NEED_CLEANUP
)
2632 io
->rw
.iov
= io
->rw
.fast_iov
;
2634 ret
= io_import_iovec(WRITE
, req
, &io
->rw
.iov
, &iter
, !force_nonblock
);
2639 io_req_map_rw(req
, ret
, io
->rw
.iov
, io
->rw
.fast_iov
, &iter
);
2643 static int io_write(struct io_kiocb
*req
, bool force_nonblock
)
2645 struct iovec inline_vecs
[UIO_FASTIOV
], *iovec
= inline_vecs
;
2646 struct kiocb
*kiocb
= &req
->rw
.kiocb
;
2647 struct iov_iter iter
;
2649 ssize_t ret
, io_size
;
2651 ret
= io_import_iovec(WRITE
, req
, &iovec
, &iter
, !force_nonblock
);
2655 /* Ensure we clear previously set non-block flag */
2656 if (!force_nonblock
)
2657 req
->rw
.kiocb
.ki_flags
&= ~IOCB_NOWAIT
;
2661 if (req
->flags
& REQ_F_LINK_HEAD
)
2662 req
->result
= io_size
;
2665 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
2666 * we know to async punt it even if it was opened O_NONBLOCK
2668 if (force_nonblock
&& !io_file_supports_async(req
->file
, WRITE
))
2671 /* file path doesn't support NOWAIT for non-direct_IO */
2672 if (force_nonblock
&& !(kiocb
->ki_flags
& IOCB_DIRECT
) &&
2673 (req
->flags
& REQ_F_ISREG
))
2676 iov_count
= iov_iter_count(&iter
);
2677 ret
= rw_verify_area(WRITE
, req
->file
, &kiocb
->ki_pos
, iov_count
);
2682 * Open-code file_start_write here to grab freeze protection,
2683 * which will be released by another thread in
2684 * io_complete_rw(). Fool lockdep by telling it the lock got
2685 * released so that it doesn't complain about the held lock when
2686 * we return to userspace.
2688 if (req
->flags
& REQ_F_ISREG
) {
2689 __sb_start_write(file_inode(req
->file
)->i_sb
,
2690 SB_FREEZE_WRITE
, true);
2691 __sb_writers_release(file_inode(req
->file
)->i_sb
,
2694 kiocb
->ki_flags
|= IOCB_WRITE
;
2696 if (!force_nonblock
)
2697 current
->signal
->rlim
[RLIMIT_FSIZE
].rlim_cur
= req
->fsize
;
2699 if (req
->file
->f_op
->write_iter
)
2700 ret2
= call_write_iter(req
->file
, kiocb
, &iter
);
2702 ret2
= loop_rw_iter(WRITE
, req
->file
, kiocb
, &iter
);
2704 if (!force_nonblock
)
2705 current
->signal
->rlim
[RLIMIT_FSIZE
].rlim_cur
= RLIM_INFINITY
;
2708 * Raw bdev writes will return -EOPNOTSUPP for IOCB_NOWAIT. Just
2709 * retry them without IOCB_NOWAIT.
2711 if (ret2
== -EOPNOTSUPP
&& (kiocb
->ki_flags
& IOCB_NOWAIT
))
2713 if (!force_nonblock
|| ret2
!= -EAGAIN
) {
2714 kiocb_done(kiocb
, ret2
);
2717 ret
= io_setup_async_rw(req
, io_size
, iovec
,
2718 inline_vecs
, &iter
);
2721 /* any defer here is final, must blocking retry */
2722 if (!file_can_poll(req
->file
))
2723 req
->flags
|= REQ_F_MUST_PUNT
;
2728 req
->flags
&= ~REQ_F_NEED_CLEANUP
;
2733 static int io_splice_prep(struct io_kiocb
*req
, const struct io_uring_sqe
*sqe
)
2735 struct io_splice
* sp
= &req
->splice
;
2736 unsigned int valid_flags
= SPLICE_F_FD_IN_FIXED
| SPLICE_F_ALL
;
2739 if (req
->flags
& REQ_F_NEED_CLEANUP
)
2743 sp
->off_in
= READ_ONCE(sqe
->splice_off_in
);
2744 sp
->off_out
= READ_ONCE(sqe
->off
);
2745 sp
->len
= READ_ONCE(sqe
->len
);
2746 sp
->flags
= READ_ONCE(sqe
->splice_flags
);
2748 if (unlikely(sp
->flags
& ~valid_flags
))
2751 ret
= io_file_get(NULL
, req
, READ_ONCE(sqe
->splice_fd_in
), &sp
->file_in
,
2752 (sp
->flags
& SPLICE_F_FD_IN_FIXED
));
2755 req
->flags
|= REQ_F_NEED_CLEANUP
;
2757 if (!S_ISREG(file_inode(sp
->file_in
)->i_mode
))
2758 req
->work
.flags
|= IO_WQ_WORK_UNBOUND
;
2763 static int io_splice(struct io_kiocb
*req
, bool force_nonblock
)
2765 struct io_splice
*sp
= &req
->splice
;
2766 struct file
*in
= sp
->file_in
;
2767 struct file
*out
= sp
->file_out
;
2768 unsigned int flags
= sp
->flags
& ~SPLICE_F_FD_IN_FIXED
;
2769 loff_t
*poff_in
, *poff_out
;
2775 poff_in
= (sp
->off_in
== -1) ? NULL
: &sp
->off_in
;
2776 poff_out
= (sp
->off_out
== -1) ? NULL
: &sp
->off_out
;
2777 ret
= do_splice(in
, poff_in
, out
, poff_out
, sp
->len
, flags
);
2778 if (force_nonblock
&& ret
== -EAGAIN
)
2781 io_put_file(req
, in
, (sp
->flags
& SPLICE_F_FD_IN_FIXED
));
2782 req
->flags
&= ~REQ_F_NEED_CLEANUP
;
2784 io_cqring_add_event(req
, ret
);
2786 req_set_fail_links(req
);
2792 * IORING_OP_NOP just posts a completion event, nothing else.
2794 static int io_nop(struct io_kiocb
*req
)
2796 struct io_ring_ctx
*ctx
= req
->ctx
;
2798 if (unlikely(ctx
->flags
& IORING_SETUP_IOPOLL
))
2801 io_cqring_add_event(req
, 0);
2806 static int io_prep_fsync(struct io_kiocb
*req
, const struct io_uring_sqe
*sqe
)
2808 struct io_ring_ctx
*ctx
= req
->ctx
;
2813 if (unlikely(ctx
->flags
& IORING_SETUP_IOPOLL
))
2815 if (unlikely(sqe
->addr
|| sqe
->ioprio
|| sqe
->buf_index
))
2818 req
->sync
.flags
= READ_ONCE(sqe
->fsync_flags
);
2819 if (unlikely(req
->sync
.flags
& ~IORING_FSYNC_DATASYNC
))
2822 req
->sync
.off
= READ_ONCE(sqe
->off
);
2823 req
->sync
.len
= READ_ONCE(sqe
->len
);
2827 static bool io_req_cancelled(struct io_kiocb
*req
)
2829 if (req
->work
.flags
& IO_WQ_WORK_CANCEL
) {
2830 req_set_fail_links(req
);
2831 io_cqring_add_event(req
, -ECANCELED
);
2839 static void __io_fsync(struct io_kiocb
*req
)
2841 loff_t end
= req
->sync
.off
+ req
->sync
.len
;
2844 ret
= vfs_fsync_range(req
->file
, req
->sync
.off
,
2845 end
> 0 ? end
: LLONG_MAX
,
2846 req
->sync
.flags
& IORING_FSYNC_DATASYNC
);
2848 req_set_fail_links(req
);
2849 io_cqring_add_event(req
, ret
);
2853 static void io_fsync_finish(struct io_wq_work
**workptr
)
2855 struct io_kiocb
*req
= container_of(*workptr
, struct io_kiocb
, work
);
2857 if (io_req_cancelled(req
))
2860 io_steal_work(req
, workptr
);
2863 static int io_fsync(struct io_kiocb
*req
, bool force_nonblock
)
2865 /* fsync always requires a blocking context */
2866 if (force_nonblock
) {
2867 req
->work
.func
= io_fsync_finish
;
2874 static void __io_fallocate(struct io_kiocb
*req
)
2878 current
->signal
->rlim
[RLIMIT_FSIZE
].rlim_cur
= req
->fsize
;
2879 ret
= vfs_fallocate(req
->file
, req
->sync
.mode
, req
->sync
.off
,
2881 current
->signal
->rlim
[RLIMIT_FSIZE
].rlim_cur
= RLIM_INFINITY
;
2883 req_set_fail_links(req
);
2884 io_cqring_add_event(req
, ret
);
2888 static void io_fallocate_finish(struct io_wq_work
**workptr
)
2890 struct io_kiocb
*req
= container_of(*workptr
, struct io_kiocb
, work
);
2892 if (io_req_cancelled(req
))
2894 __io_fallocate(req
);
2895 io_steal_work(req
, workptr
);
2898 static int io_fallocate_prep(struct io_kiocb
*req
,
2899 const struct io_uring_sqe
*sqe
)
2901 if (sqe
->ioprio
|| sqe
->buf_index
|| sqe
->rw_flags
)
2904 req
->sync
.off
= READ_ONCE(sqe
->off
);
2905 req
->sync
.len
= READ_ONCE(sqe
->addr
);
2906 req
->sync
.mode
= READ_ONCE(sqe
->len
);
2907 req
->fsize
= rlimit(RLIMIT_FSIZE
);
2911 static int io_fallocate(struct io_kiocb
*req
, bool force_nonblock
)
2913 /* fallocate always requiring blocking context */
2914 if (force_nonblock
) {
2915 req
->work
.func
= io_fallocate_finish
;
2919 __io_fallocate(req
);
2923 static int io_openat_prep(struct io_kiocb
*req
, const struct io_uring_sqe
*sqe
)
2925 const char __user
*fname
;
2928 if (sqe
->ioprio
|| sqe
->buf_index
)
2930 if (req
->flags
& REQ_F_FIXED_FILE
)
2932 if (req
->flags
& REQ_F_NEED_CLEANUP
)
2935 req
->open
.dfd
= READ_ONCE(sqe
->fd
);
2936 req
->open
.how
.mode
= READ_ONCE(sqe
->len
);
2937 fname
= u64_to_user_ptr(READ_ONCE(sqe
->addr
));
2938 req
->open
.how
.flags
= READ_ONCE(sqe
->open_flags
);
2939 if (force_o_largefile())
2940 req
->open
.how
.flags
|= O_LARGEFILE
;
2942 req
->open
.filename
= getname(fname
);
2943 if (IS_ERR(req
->open
.filename
)) {
2944 ret
= PTR_ERR(req
->open
.filename
);
2945 req
->open
.filename
= NULL
;
2949 req
->open
.nofile
= rlimit(RLIMIT_NOFILE
);
2950 req
->flags
|= REQ_F_NEED_CLEANUP
;
2954 static int io_openat2_prep(struct io_kiocb
*req
, const struct io_uring_sqe
*sqe
)
2956 struct open_how __user
*how
;
2957 const char __user
*fname
;
2961 if (sqe
->ioprio
|| sqe
->buf_index
)
2963 if (req
->flags
& REQ_F_FIXED_FILE
)
2965 if (req
->flags
& REQ_F_NEED_CLEANUP
)
2968 req
->open
.dfd
= READ_ONCE(sqe
->fd
);
2969 fname
= u64_to_user_ptr(READ_ONCE(sqe
->addr
));
2970 how
= u64_to_user_ptr(READ_ONCE(sqe
->addr2
));
2971 len
= READ_ONCE(sqe
->len
);
2973 if (len
< OPEN_HOW_SIZE_VER0
)
2976 ret
= copy_struct_from_user(&req
->open
.how
, sizeof(req
->open
.how
), how
,
2981 if (!(req
->open
.how
.flags
& O_PATH
) && force_o_largefile())
2982 req
->open
.how
.flags
|= O_LARGEFILE
;
2984 req
->open
.filename
= getname(fname
);
2985 if (IS_ERR(req
->open
.filename
)) {
2986 ret
= PTR_ERR(req
->open
.filename
);
2987 req
->open
.filename
= NULL
;
2991 req
->open
.nofile
= rlimit(RLIMIT_NOFILE
);
2992 req
->flags
|= REQ_F_NEED_CLEANUP
;
2996 static int io_openat2(struct io_kiocb
*req
, bool force_nonblock
)
2998 struct open_flags op
;
3005 ret
= build_open_flags(&req
->open
.how
, &op
);
3009 ret
= __get_unused_fd_flags(req
->open
.how
.flags
, req
->open
.nofile
);
3013 file
= do_filp_open(req
->open
.dfd
, req
->open
.filename
, &op
);
3016 ret
= PTR_ERR(file
);
3018 fsnotify_open(file
);
3019 fd_install(ret
, file
);
3022 putname(req
->open
.filename
);
3023 req
->flags
&= ~REQ_F_NEED_CLEANUP
;
3025 req_set_fail_links(req
);
3026 io_cqring_add_event(req
, ret
);
3031 static int io_openat(struct io_kiocb
*req
, bool force_nonblock
)
3033 req
->open
.how
= build_open_how(req
->open
.how
.flags
, req
->open
.how
.mode
);
3034 return io_openat2(req
, force_nonblock
);
3037 static int io_remove_buffers_prep(struct io_kiocb
*req
,
3038 const struct io_uring_sqe
*sqe
)
3040 struct io_provide_buf
*p
= &req
->pbuf
;
3043 if (sqe
->ioprio
|| sqe
->rw_flags
|| sqe
->addr
|| sqe
->len
|| sqe
->off
)
3046 tmp
= READ_ONCE(sqe
->fd
);
3047 if (!tmp
|| tmp
> USHRT_MAX
)
3050 memset(p
, 0, sizeof(*p
));
3052 p
->bgid
= READ_ONCE(sqe
->buf_group
);
3056 static int __io_remove_buffers(struct io_ring_ctx
*ctx
, struct io_buffer
*buf
,
3057 int bgid
, unsigned nbufs
)
3061 /* shouldn't happen */
3065 /* the head kbuf is the list itself */
3066 while (!list_empty(&buf
->list
)) {
3067 struct io_buffer
*nxt
;
3069 nxt
= list_first_entry(&buf
->list
, struct io_buffer
, list
);
3070 list_del(&nxt
->list
);
3077 idr_remove(&ctx
->io_buffer_idr
, bgid
);
3082 static int io_remove_buffers(struct io_kiocb
*req
, bool force_nonblock
)
3084 struct io_provide_buf
*p
= &req
->pbuf
;
3085 struct io_ring_ctx
*ctx
= req
->ctx
;
3086 struct io_buffer
*head
;
3089 io_ring_submit_lock(ctx
, !force_nonblock
);
3091 lockdep_assert_held(&ctx
->uring_lock
);
3094 head
= idr_find(&ctx
->io_buffer_idr
, p
->bgid
);
3096 ret
= __io_remove_buffers(ctx
, head
, p
->bgid
, p
->nbufs
);
3098 io_ring_submit_lock(ctx
, !force_nonblock
);
3100 req_set_fail_links(req
);
3101 io_cqring_add_event(req
, ret
);
3106 static int io_provide_buffers_prep(struct io_kiocb
*req
,
3107 const struct io_uring_sqe
*sqe
)
3109 struct io_provide_buf
*p
= &req
->pbuf
;
3112 if (sqe
->ioprio
|| sqe
->rw_flags
)
3115 tmp
= READ_ONCE(sqe
->fd
);
3116 if (!tmp
|| tmp
> USHRT_MAX
)
3119 p
->addr
= READ_ONCE(sqe
->addr
);
3120 p
->len
= READ_ONCE(sqe
->len
);
3122 if (!access_ok(u64_to_user_ptr(p
->addr
), p
->len
))
3125 p
->bgid
= READ_ONCE(sqe
->buf_group
);
3126 tmp
= READ_ONCE(sqe
->off
);
3127 if (tmp
> USHRT_MAX
)
3133 static int io_add_buffers(struct io_provide_buf
*pbuf
, struct io_buffer
**head
)
3135 struct io_buffer
*buf
;
3136 u64 addr
= pbuf
->addr
;
3137 int i
, bid
= pbuf
->bid
;
3139 for (i
= 0; i
< pbuf
->nbufs
; i
++) {
3140 buf
= kmalloc(sizeof(*buf
), GFP_KERNEL
);
3145 buf
->len
= pbuf
->len
;
3150 INIT_LIST_HEAD(&buf
->list
);
3153 list_add_tail(&buf
->list
, &(*head
)->list
);
3157 return i
? i
: -ENOMEM
;
3160 static int io_provide_buffers(struct io_kiocb
*req
, bool force_nonblock
)
3162 struct io_provide_buf
*p
= &req
->pbuf
;
3163 struct io_ring_ctx
*ctx
= req
->ctx
;
3164 struct io_buffer
*head
, *list
;
3167 io_ring_submit_lock(ctx
, !force_nonblock
);
3169 lockdep_assert_held(&ctx
->uring_lock
);
3171 list
= head
= idr_find(&ctx
->io_buffer_idr
, p
->bgid
);
3173 ret
= io_add_buffers(p
, &head
);
3178 ret
= idr_alloc(&ctx
->io_buffer_idr
, head
, p
->bgid
, p
->bgid
+ 1,
3181 __io_remove_buffers(ctx
, head
, p
->bgid
, -1U);
3186 io_ring_submit_unlock(ctx
, !force_nonblock
);
3188 req_set_fail_links(req
);
3189 io_cqring_add_event(req
, ret
);
3194 static int io_epoll_ctl_prep(struct io_kiocb
*req
,
3195 const struct io_uring_sqe
*sqe
)
3197 #if defined(CONFIG_EPOLL)
3198 if (sqe
->ioprio
|| sqe
->buf_index
)
3201 req
->epoll
.epfd
= READ_ONCE(sqe
->fd
);
3202 req
->epoll
.op
= READ_ONCE(sqe
->len
);
3203 req
->epoll
.fd
= READ_ONCE(sqe
->off
);
3205 if (ep_op_has_event(req
->epoll
.op
)) {
3206 struct epoll_event __user
*ev
;
3208 ev
= u64_to_user_ptr(READ_ONCE(sqe
->addr
));
3209 if (copy_from_user(&req
->epoll
.event
, ev
, sizeof(*ev
)))
3219 static int io_epoll_ctl(struct io_kiocb
*req
, bool force_nonblock
)
3221 #if defined(CONFIG_EPOLL)
3222 struct io_epoll
*ie
= &req
->epoll
;
3225 ret
= do_epoll_ctl(ie
->epfd
, ie
->op
, ie
->fd
, &ie
->event
, force_nonblock
);
3226 if (force_nonblock
&& ret
== -EAGAIN
)
3230 req_set_fail_links(req
);
3231 io_cqring_add_event(req
, ret
);
3239 static int io_madvise_prep(struct io_kiocb
*req
, const struct io_uring_sqe
*sqe
)
3241 #if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
3242 if (sqe
->ioprio
|| sqe
->buf_index
|| sqe
->off
)
3245 req
->madvise
.addr
= READ_ONCE(sqe
->addr
);
3246 req
->madvise
.len
= READ_ONCE(sqe
->len
);
3247 req
->madvise
.advice
= READ_ONCE(sqe
->fadvise_advice
);
3254 static int io_madvise(struct io_kiocb
*req
, bool force_nonblock
)
3256 #if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
3257 struct io_madvise
*ma
= &req
->madvise
;
3263 ret
= do_madvise(ma
->addr
, ma
->len
, ma
->advice
);
3265 req_set_fail_links(req
);
3266 io_cqring_add_event(req
, ret
);
3274 static int io_fadvise_prep(struct io_kiocb
*req
, const struct io_uring_sqe
*sqe
)
3276 if (sqe
->ioprio
|| sqe
->buf_index
|| sqe
->addr
)
3279 req
->fadvise
.offset
= READ_ONCE(sqe
->off
);
3280 req
->fadvise
.len
= READ_ONCE(sqe
->len
);
3281 req
->fadvise
.advice
= READ_ONCE(sqe
->fadvise_advice
);
3285 static int io_fadvise(struct io_kiocb
*req
, bool force_nonblock
)
3287 struct io_fadvise
*fa
= &req
->fadvise
;
3290 if (force_nonblock
) {
3291 switch (fa
->advice
) {
3292 case POSIX_FADV_NORMAL
:
3293 case POSIX_FADV_RANDOM
:
3294 case POSIX_FADV_SEQUENTIAL
:
3301 ret
= vfs_fadvise(req
->file
, fa
->offset
, fa
->len
, fa
->advice
);
3303 req_set_fail_links(req
);
3304 io_cqring_add_event(req
, ret
);
3309 static int io_statx_prep(struct io_kiocb
*req
, const struct io_uring_sqe
*sqe
)
3311 const char __user
*fname
;
3312 unsigned lookup_flags
;
3315 if (sqe
->ioprio
|| sqe
->buf_index
)
3317 if (req
->flags
& REQ_F_FIXED_FILE
)
3319 if (req
->flags
& REQ_F_NEED_CLEANUP
)
3322 req
->open
.dfd
= READ_ONCE(sqe
->fd
);
3323 req
->open
.mask
= READ_ONCE(sqe
->len
);
3324 fname
= u64_to_user_ptr(READ_ONCE(sqe
->addr
));
3325 req
->open
.buffer
= u64_to_user_ptr(READ_ONCE(sqe
->addr2
));
3326 req
->open
.how
.flags
= READ_ONCE(sqe
->statx_flags
);
3328 if (vfs_stat_set_lookup_flags(&lookup_flags
, req
->open
.how
.flags
))
3331 req
->open
.filename
= getname_flags(fname
, lookup_flags
, NULL
);
3332 if (IS_ERR(req
->open
.filename
)) {
3333 ret
= PTR_ERR(req
->open
.filename
);
3334 req
->open
.filename
= NULL
;
3338 req
->flags
|= REQ_F_NEED_CLEANUP
;
3342 static int io_statx(struct io_kiocb
*req
, bool force_nonblock
)
3344 struct io_open
*ctx
= &req
->open
;
3345 unsigned lookup_flags
;
3350 if (force_nonblock
) {
3351 /* only need file table for an actual valid fd */
3352 if (ctx
->dfd
== -1 || ctx
->dfd
== AT_FDCWD
)
3353 req
->flags
|= REQ_F_NO_FILE_TABLE
;
3357 if (vfs_stat_set_lookup_flags(&lookup_flags
, ctx
->how
.flags
))
3361 /* filename_lookup() drops it, keep a reference */
3362 ctx
->filename
->refcnt
++;
3364 ret
= filename_lookup(ctx
->dfd
, ctx
->filename
, lookup_flags
, &path
,
3369 ret
= vfs_getattr(&path
, &stat
, ctx
->mask
, ctx
->how
.flags
);
3371 if (retry_estale(ret
, lookup_flags
)) {
3372 lookup_flags
|= LOOKUP_REVAL
;
3376 ret
= cp_statx(&stat
, ctx
->buffer
);
3378 putname(ctx
->filename
);
3379 req
->flags
&= ~REQ_F_NEED_CLEANUP
;
3381 req_set_fail_links(req
);
3382 io_cqring_add_event(req
, ret
);
3387 static int io_close_prep(struct io_kiocb
*req
, const struct io_uring_sqe
*sqe
)
3390 * If we queue this for async, it must not be cancellable. That would
3391 * leave the 'file' in an undeterminate state.
3393 req
->work
.flags
|= IO_WQ_WORK_NO_CANCEL
;
3395 if (sqe
->ioprio
|| sqe
->off
|| sqe
->addr
|| sqe
->len
||
3396 sqe
->rw_flags
|| sqe
->buf_index
)
3398 if (req
->flags
& REQ_F_FIXED_FILE
)
3401 req
->close
.fd
= READ_ONCE(sqe
->fd
);
3402 if (req
->file
->f_op
== &io_uring_fops
||
3403 req
->close
.fd
== req
->ctx
->ring_fd
)
3409 /* only called when __close_fd_get_file() is done */
3410 static void __io_close_finish(struct io_kiocb
*req
)
3414 ret
= filp_close(req
->close
.put_file
, req
->work
.files
);
3416 req_set_fail_links(req
);
3417 io_cqring_add_event(req
, ret
);
3418 fput(req
->close
.put_file
);
3422 static void io_close_finish(struct io_wq_work
**workptr
)
3424 struct io_kiocb
*req
= container_of(*workptr
, struct io_kiocb
, work
);
3426 /* not cancellable, don't do io_req_cancelled() */
3427 __io_close_finish(req
);
3428 io_steal_work(req
, workptr
);
3431 static int io_close(struct io_kiocb
*req
, bool force_nonblock
)
3435 req
->close
.put_file
= NULL
;
3436 ret
= __close_fd_get_file(req
->close
.fd
, &req
->close
.put_file
);
3440 /* if the file has a flush method, be safe and punt to async */
3441 if (req
->close
.put_file
->f_op
->flush
&& force_nonblock
) {
3442 /* submission ref will be dropped, take it for async */
3443 refcount_inc(&req
->refs
);
3445 req
->work
.func
= io_close_finish
;
3447 * Do manual async queue here to avoid grabbing files - we don't
3448 * need the files, and it'll cause io_close_finish() to close
3449 * the file again and cause a double CQE entry for this request
3451 io_queue_async_work(req
);
3456 * No ->flush(), safely close from here and just punt the
3457 * fput() to async context.
3459 __io_close_finish(req
);
3463 static int io_prep_sfr(struct io_kiocb
*req
, const struct io_uring_sqe
*sqe
)
3465 struct io_ring_ctx
*ctx
= req
->ctx
;
3470 if (unlikely(ctx
->flags
& IORING_SETUP_IOPOLL
))
3472 if (unlikely(sqe
->addr
|| sqe
->ioprio
|| sqe
->buf_index
))
3475 req
->sync
.off
= READ_ONCE(sqe
->off
);
3476 req
->sync
.len
= READ_ONCE(sqe
->len
);
3477 req
->sync
.flags
= READ_ONCE(sqe
->sync_range_flags
);
3481 static void __io_sync_file_range(struct io_kiocb
*req
)
3485 ret
= sync_file_range(req
->file
, req
->sync
.off
, req
->sync
.len
,
3488 req_set_fail_links(req
);
3489 io_cqring_add_event(req
, ret
);
3494 static void io_sync_file_range_finish(struct io_wq_work
**workptr
)
3496 struct io_kiocb
*req
= container_of(*workptr
, struct io_kiocb
, work
);
3498 if (io_req_cancelled(req
))
3500 __io_sync_file_range(req
);
3501 io_steal_work(req
, workptr
);
3504 static int io_sync_file_range(struct io_kiocb
*req
, bool force_nonblock
)
3506 /* sync_file_range always requires a blocking context */
3507 if (force_nonblock
) {
3508 req
->work
.func
= io_sync_file_range_finish
;
3512 __io_sync_file_range(req
);
3516 #if defined(CONFIG_NET)
3517 static int io_setup_async_msg(struct io_kiocb
*req
,
3518 struct io_async_msghdr
*kmsg
)
3522 if (io_alloc_async_ctx(req
)) {
3523 if (kmsg
->iov
!= kmsg
->fast_iov
)
3527 req
->flags
|= REQ_F_NEED_CLEANUP
;
3528 memcpy(&req
->io
->msg
, kmsg
, sizeof(*kmsg
));
3532 static int io_sendmsg_prep(struct io_kiocb
*req
, const struct io_uring_sqe
*sqe
)
3534 struct io_sr_msg
*sr
= &req
->sr_msg
;
3535 struct io_async_ctx
*io
= req
->io
;
3538 sr
->msg_flags
= READ_ONCE(sqe
->msg_flags
);
3539 sr
->msg
= u64_to_user_ptr(READ_ONCE(sqe
->addr
));
3540 sr
->len
= READ_ONCE(sqe
->len
);
3542 #ifdef CONFIG_COMPAT
3543 if (req
->ctx
->compat
)
3544 sr
->msg_flags
|= MSG_CMSG_COMPAT
;
3547 if (!io
|| req
->opcode
== IORING_OP_SEND
)
3549 /* iovec is already imported */
3550 if (req
->flags
& REQ_F_NEED_CLEANUP
)
3553 io
->msg
.iov
= io
->msg
.fast_iov
;
3554 ret
= sendmsg_copy_msghdr(&io
->msg
.msg
, sr
->msg
, sr
->msg_flags
,
3557 req
->flags
|= REQ_F_NEED_CLEANUP
;
3561 static int io_sendmsg(struct io_kiocb
*req
, bool force_nonblock
)
3563 struct io_async_msghdr
*kmsg
= NULL
;
3564 struct socket
*sock
;
3567 if (unlikely(req
->ctx
->flags
& IORING_SETUP_IOPOLL
))
3570 sock
= sock_from_file(req
->file
, &ret
);
3572 struct io_async_ctx io
;
3576 kmsg
= &req
->io
->msg
;
3577 kmsg
->msg
.msg_name
= &req
->io
->msg
.addr
;
3578 /* if iov is set, it's allocated already */
3580 kmsg
->iov
= kmsg
->fast_iov
;
3581 kmsg
->msg
.msg_iter
.iov
= kmsg
->iov
;
3583 struct io_sr_msg
*sr
= &req
->sr_msg
;
3586 kmsg
->msg
.msg_name
= &io
.msg
.addr
;
3588 io
.msg
.iov
= io
.msg
.fast_iov
;
3589 ret
= sendmsg_copy_msghdr(&io
.msg
.msg
, sr
->msg
,
3590 sr
->msg_flags
, &io
.msg
.iov
);
3595 flags
= req
->sr_msg
.msg_flags
;
3596 if (flags
& MSG_DONTWAIT
)
3597 req
->flags
|= REQ_F_NOWAIT
;
3598 else if (force_nonblock
)
3599 flags
|= MSG_DONTWAIT
;
3601 ret
= __sys_sendmsg_sock(sock
, &kmsg
->msg
, flags
);
3602 if (force_nonblock
&& ret
== -EAGAIN
)
3603 return io_setup_async_msg(req
, kmsg
);
3604 if (ret
== -ERESTARTSYS
)
3608 if (kmsg
&& kmsg
->iov
!= kmsg
->fast_iov
)
3610 req
->flags
&= ~REQ_F_NEED_CLEANUP
;
3611 io_cqring_add_event(req
, ret
);
3613 req_set_fail_links(req
);
3618 static int io_send(struct io_kiocb
*req
, bool force_nonblock
)
3620 struct socket
*sock
;
3623 if (unlikely(req
->ctx
->flags
& IORING_SETUP_IOPOLL
))
3626 sock
= sock_from_file(req
->file
, &ret
);
3628 struct io_sr_msg
*sr
= &req
->sr_msg
;
3633 ret
= import_single_range(WRITE
, sr
->buf
, sr
->len
, &iov
,
3638 msg
.msg_name
= NULL
;
3639 msg
.msg_control
= NULL
;
3640 msg
.msg_controllen
= 0;
3641 msg
.msg_namelen
= 0;
3643 flags
= req
->sr_msg
.msg_flags
;
3644 if (flags
& MSG_DONTWAIT
)
3645 req
->flags
|= REQ_F_NOWAIT
;
3646 else if (force_nonblock
)
3647 flags
|= MSG_DONTWAIT
;
3649 msg
.msg_flags
= flags
;
3650 ret
= sock_sendmsg(sock
, &msg
);
3651 if (force_nonblock
&& ret
== -EAGAIN
)
3653 if (ret
== -ERESTARTSYS
)
3657 io_cqring_add_event(req
, ret
);
3659 req_set_fail_links(req
);
3664 static int __io_recvmsg_copy_hdr(struct io_kiocb
*req
, struct io_async_ctx
*io
)
3666 struct io_sr_msg
*sr
= &req
->sr_msg
;
3667 struct iovec __user
*uiov
;
3671 ret
= __copy_msghdr_from_user(&io
->msg
.msg
, sr
->msg
, &io
->msg
.uaddr
,
3676 if (req
->flags
& REQ_F_BUFFER_SELECT
) {
3679 if (copy_from_user(io
->msg
.iov
, uiov
, sizeof(*uiov
)))
3681 sr
->len
= io
->msg
.iov
[0].iov_len
;
3682 iov_iter_init(&io
->msg
.msg
.msg_iter
, READ
, io
->msg
.iov
, 1,
3686 ret
= import_iovec(READ
, uiov
, iov_len
, UIO_FASTIOV
,
3687 &io
->msg
.iov
, &io
->msg
.msg
.msg_iter
);
3695 #ifdef CONFIG_COMPAT
3696 static int __io_compat_recvmsg_copy_hdr(struct io_kiocb
*req
,
3697 struct io_async_ctx
*io
)
3699 struct compat_msghdr __user
*msg_compat
;
3700 struct io_sr_msg
*sr
= &req
->sr_msg
;
3701 struct compat_iovec __user
*uiov
;
3706 msg_compat
= (struct compat_msghdr __user
*) sr
->msg
;
3707 ret
= __get_compat_msghdr(&io
->msg
.msg
, msg_compat
, &io
->msg
.uaddr
,
3712 uiov
= compat_ptr(ptr
);
3713 if (req
->flags
& REQ_F_BUFFER_SELECT
) {
3714 compat_ssize_t clen
;
3718 if (!access_ok(uiov
, sizeof(*uiov
)))
3720 if (__get_user(clen
, &uiov
->iov_len
))
3724 sr
->len
= io
->msg
.iov
[0].iov_len
;
3727 ret
= compat_import_iovec(READ
, uiov
, len
, UIO_FASTIOV
,
3729 &io
->msg
.msg
.msg_iter
);
3738 static int io_recvmsg_copy_hdr(struct io_kiocb
*req
, struct io_async_ctx
*io
)
3740 io
->msg
.iov
= io
->msg
.fast_iov
;
3742 #ifdef CONFIG_COMPAT
3743 if (req
->ctx
->compat
)
3744 return __io_compat_recvmsg_copy_hdr(req
, io
);
3747 return __io_recvmsg_copy_hdr(req
, io
);
3750 static struct io_buffer
*io_recv_buffer_select(struct io_kiocb
*req
,
3751 int *cflags
, bool needs_lock
)
3753 struct io_sr_msg
*sr
= &req
->sr_msg
;
3754 struct io_buffer
*kbuf
;
3756 if (!(req
->flags
& REQ_F_BUFFER_SELECT
))
3759 kbuf
= io_buffer_select(req
, &sr
->len
, sr
->bgid
, sr
->kbuf
, needs_lock
);
3764 req
->flags
|= REQ_F_BUFFER_SELECTED
;
3766 *cflags
= kbuf
->bid
<< IORING_CQE_BUFFER_SHIFT
;
3767 *cflags
|= IORING_CQE_F_BUFFER
;
3771 static int io_recvmsg_prep(struct io_kiocb
*req
,
3772 const struct io_uring_sqe
*sqe
)
3774 struct io_sr_msg
*sr
= &req
->sr_msg
;
3775 struct io_async_ctx
*io
= req
->io
;
3778 sr
->msg_flags
= READ_ONCE(sqe
->msg_flags
);
3779 sr
->msg
= u64_to_user_ptr(READ_ONCE(sqe
->addr
));
3780 sr
->len
= READ_ONCE(sqe
->len
);
3781 sr
->bgid
= READ_ONCE(sqe
->buf_group
);
3783 #ifdef CONFIG_COMPAT
3784 if (req
->ctx
->compat
)
3785 sr
->msg_flags
|= MSG_CMSG_COMPAT
;
3788 if (!io
|| req
->opcode
== IORING_OP_RECV
)
3790 /* iovec is already imported */
3791 if (req
->flags
& REQ_F_NEED_CLEANUP
)
3794 ret
= io_recvmsg_copy_hdr(req
, io
);
3796 req
->flags
|= REQ_F_NEED_CLEANUP
;
3800 static int io_recvmsg(struct io_kiocb
*req
, bool force_nonblock
)
3802 struct io_async_msghdr
*kmsg
= NULL
;
3803 struct socket
*sock
;
3804 int ret
, cflags
= 0;
3806 if (unlikely(req
->ctx
->flags
& IORING_SETUP_IOPOLL
))
3809 sock
= sock_from_file(req
->file
, &ret
);
3811 struct io_buffer
*kbuf
;
3812 struct io_async_ctx io
;
3816 kmsg
= &req
->io
->msg
;
3817 kmsg
->msg
.msg_name
= &req
->io
->msg
.addr
;
3818 /* if iov is set, it's allocated already */
3820 kmsg
->iov
= kmsg
->fast_iov
;
3821 kmsg
->msg
.msg_iter
.iov
= kmsg
->iov
;
3824 kmsg
->msg
.msg_name
= &io
.msg
.addr
;
3826 ret
= io_recvmsg_copy_hdr(req
, &io
);
3831 kbuf
= io_recv_buffer_select(req
, &cflags
, !force_nonblock
);
3833 return PTR_ERR(kbuf
);
3835 kmsg
->fast_iov
[0].iov_base
= u64_to_user_ptr(kbuf
->addr
);
3836 iov_iter_init(&kmsg
->msg
.msg_iter
, READ
, kmsg
->iov
,
3837 1, req
->sr_msg
.len
);
3840 flags
= req
->sr_msg
.msg_flags
;
3841 if (flags
& MSG_DONTWAIT
)
3842 req
->flags
|= REQ_F_NOWAIT
;
3843 else if (force_nonblock
)
3844 flags
|= MSG_DONTWAIT
;
3846 ret
= __sys_recvmsg_sock(sock
, &kmsg
->msg
, req
->sr_msg
.msg
,
3847 kmsg
->uaddr
, flags
);
3848 if (force_nonblock
&& ret
== -EAGAIN
)
3849 return io_setup_async_msg(req
, kmsg
);
3850 if (ret
== -ERESTARTSYS
)
3854 if (kmsg
&& kmsg
->iov
!= kmsg
->fast_iov
)
3856 req
->flags
&= ~REQ_F_NEED_CLEANUP
;
3857 __io_cqring_add_event(req
, ret
, cflags
);
3859 req_set_fail_links(req
);
3864 static int io_recv(struct io_kiocb
*req
, bool force_nonblock
)
3866 struct io_buffer
*kbuf
= NULL
;
3867 struct socket
*sock
;
3868 int ret
, cflags
= 0;
3870 if (unlikely(req
->ctx
->flags
& IORING_SETUP_IOPOLL
))
3873 sock
= sock_from_file(req
->file
, &ret
);
3875 struct io_sr_msg
*sr
= &req
->sr_msg
;
3876 void __user
*buf
= sr
->buf
;
3881 kbuf
= io_recv_buffer_select(req
, &cflags
, !force_nonblock
);
3883 return PTR_ERR(kbuf
);
3885 buf
= u64_to_user_ptr(kbuf
->addr
);
3887 ret
= import_single_range(READ
, buf
, sr
->len
, &iov
,
3894 req
->flags
|= REQ_F_NEED_CLEANUP
;
3895 msg
.msg_name
= NULL
;
3896 msg
.msg_control
= NULL
;
3897 msg
.msg_controllen
= 0;
3898 msg
.msg_namelen
= 0;
3899 msg
.msg_iocb
= NULL
;
3902 flags
= req
->sr_msg
.msg_flags
;
3903 if (flags
& MSG_DONTWAIT
)
3904 req
->flags
|= REQ_F_NOWAIT
;
3905 else if (force_nonblock
)
3906 flags
|= MSG_DONTWAIT
;
3908 ret
= sock_recvmsg(sock
, &msg
, flags
);
3909 if (force_nonblock
&& ret
== -EAGAIN
)
3911 if (ret
== -ERESTARTSYS
)
3916 req
->flags
&= ~REQ_F_NEED_CLEANUP
;
3917 __io_cqring_add_event(req
, ret
, cflags
);
3919 req_set_fail_links(req
);
3924 static int io_accept_prep(struct io_kiocb
*req
, const struct io_uring_sqe
*sqe
)
3926 struct io_accept
*accept
= &req
->accept
;
3928 if (unlikely(req
->ctx
->flags
& (IORING_SETUP_IOPOLL
|IORING_SETUP_SQPOLL
)))
3930 if (sqe
->ioprio
|| sqe
->len
|| sqe
->buf_index
)
3933 accept
->addr
= u64_to_user_ptr(READ_ONCE(sqe
->addr
));
3934 accept
->addr_len
= u64_to_user_ptr(READ_ONCE(sqe
->addr2
));
3935 accept
->flags
= READ_ONCE(sqe
->accept_flags
);
3936 accept
->nofile
= rlimit(RLIMIT_NOFILE
);
3940 static int __io_accept(struct io_kiocb
*req
, bool force_nonblock
)
3942 struct io_accept
*accept
= &req
->accept
;
3943 unsigned file_flags
;
3946 file_flags
= force_nonblock
? O_NONBLOCK
: 0;
3947 ret
= __sys_accept4_file(req
->file
, file_flags
, accept
->addr
,
3948 accept
->addr_len
, accept
->flags
,
3950 if (ret
== -EAGAIN
&& force_nonblock
)
3952 if (ret
== -ERESTARTSYS
)
3955 req_set_fail_links(req
);
3956 io_cqring_add_event(req
, ret
);
3961 static void io_accept_finish(struct io_wq_work
**workptr
)
3963 struct io_kiocb
*req
= container_of(*workptr
, struct io_kiocb
, work
);
3965 if (io_req_cancelled(req
))
3967 __io_accept(req
, false);
3968 io_steal_work(req
, workptr
);
3971 static int io_accept(struct io_kiocb
*req
, bool force_nonblock
)
3975 ret
= __io_accept(req
, force_nonblock
);
3976 if (ret
== -EAGAIN
&& force_nonblock
) {
3977 req
->work
.func
= io_accept_finish
;
3983 static int io_connect_prep(struct io_kiocb
*req
, const struct io_uring_sqe
*sqe
)
3985 struct io_connect
*conn
= &req
->connect
;
3986 struct io_async_ctx
*io
= req
->io
;
3988 if (unlikely(req
->ctx
->flags
& (IORING_SETUP_IOPOLL
|IORING_SETUP_SQPOLL
)))
3990 if (sqe
->ioprio
|| sqe
->len
|| sqe
->buf_index
|| sqe
->rw_flags
)
3993 conn
->addr
= u64_to_user_ptr(READ_ONCE(sqe
->addr
));
3994 conn
->addr_len
= READ_ONCE(sqe
->addr2
);
3999 return move_addr_to_kernel(conn
->addr
, conn
->addr_len
,
4000 &io
->connect
.address
);
4003 static int io_connect(struct io_kiocb
*req
, bool force_nonblock
)
4005 struct io_async_ctx __io
, *io
;
4006 unsigned file_flags
;
4012 ret
= move_addr_to_kernel(req
->connect
.addr
,
4013 req
->connect
.addr_len
,
4014 &__io
.connect
.address
);
4020 file_flags
= force_nonblock
? O_NONBLOCK
: 0;
4022 ret
= __sys_connect_file(req
->file
, &io
->connect
.address
,
4023 req
->connect
.addr_len
, file_flags
);
4024 if ((ret
== -EAGAIN
|| ret
== -EINPROGRESS
) && force_nonblock
) {
4027 if (io_alloc_async_ctx(req
)) {
4031 memcpy(&req
->io
->connect
, &__io
.connect
, sizeof(__io
.connect
));
4034 if (ret
== -ERESTARTSYS
)
4038 req_set_fail_links(req
);
4039 io_cqring_add_event(req
, ret
);
4043 #else /* !CONFIG_NET */
4044 static int io_sendmsg_prep(struct io_kiocb
*req
, const struct io_uring_sqe
*sqe
)
4049 static int io_sendmsg(struct io_kiocb
*req
, bool force_nonblock
)
4054 static int io_send(struct io_kiocb
*req
, bool force_nonblock
)
4059 static int io_recvmsg_prep(struct io_kiocb
*req
,
4060 const struct io_uring_sqe
*sqe
)
4065 static int io_recvmsg(struct io_kiocb
*req
, bool force_nonblock
)
4070 static int io_recv(struct io_kiocb
*req
, bool force_nonblock
)
4075 static int io_accept_prep(struct io_kiocb
*req
, const struct io_uring_sqe
*sqe
)
4080 static int io_accept(struct io_kiocb
*req
, bool force_nonblock
)
4085 static int io_connect_prep(struct io_kiocb
*req
, const struct io_uring_sqe
*sqe
)
4090 static int io_connect(struct io_kiocb
*req
, bool force_nonblock
)
4094 #endif /* CONFIG_NET */
4096 struct io_poll_table
{
4097 struct poll_table_struct pt
;
4098 struct io_kiocb
*req
;
4102 static void __io_queue_proc(struct io_poll_iocb
*poll
, struct io_poll_table
*pt
,
4103 struct wait_queue_head
*head
)
4105 if (unlikely(poll
->head
)) {
4106 pt
->error
= -EINVAL
;
4112 add_wait_queue(head
, &poll
->wait
);
4115 static void io_async_queue_proc(struct file
*file
, struct wait_queue_head
*head
,
4116 struct poll_table_struct
*p
)
4118 struct io_poll_table
*pt
= container_of(p
, struct io_poll_table
, pt
);
4120 __io_queue_proc(&pt
->req
->apoll
->poll
, pt
, head
);
4123 static int __io_async_wake(struct io_kiocb
*req
, struct io_poll_iocb
*poll
,
4124 __poll_t mask
, task_work_func_t func
)
4126 struct task_struct
*tsk
;
4129 /* for instances that support it check for an event match first: */
4130 if (mask
&& !(mask
& poll
->events
))
4133 trace_io_uring_task_add(req
->ctx
, req
->opcode
, req
->user_data
, mask
);
4135 list_del_init(&poll
->wait
.entry
);
4139 init_task_work(&req
->task_work
, func
);
4141 * If this fails, then the task is exiting. Punt to one of the io-wq
4142 * threads to ensure the work gets run, we can't always rely on exit
4143 * cancelation taking care of this.
4145 ret
= task_work_add(tsk
, &req
->task_work
, true);
4146 if (unlikely(ret
)) {
4147 tsk
= io_wq_get_task(req
->ctx
->io_wq
);
4148 task_work_add(tsk
, &req
->task_work
, true);
4150 wake_up_process(tsk
);
4154 static bool io_poll_rewait(struct io_kiocb
*req
, struct io_poll_iocb
*poll
)
4155 __acquires(&req
->ctx
->completion_lock
)
4157 struct io_ring_ctx
*ctx
= req
->ctx
;
4159 if (!req
->result
&& !READ_ONCE(poll
->canceled
)) {
4160 struct poll_table_struct pt
= { ._key
= poll
->events
};
4162 req
->result
= vfs_poll(req
->file
, &pt
) & poll
->events
;
4165 spin_lock_irq(&ctx
->completion_lock
);
4166 if (!req
->result
&& !READ_ONCE(poll
->canceled
)) {
4167 add_wait_queue(poll
->head
, &poll
->wait
);
4174 static void io_async_task_func(struct callback_head
*cb
)
4176 struct io_kiocb
*req
= container_of(cb
, struct io_kiocb
, task_work
);
4177 struct async_poll
*apoll
= req
->apoll
;
4178 struct io_ring_ctx
*ctx
= req
->ctx
;
4181 trace_io_uring_task_run(req
->ctx
, req
->opcode
, req
->user_data
);
4183 if (io_poll_rewait(req
, &apoll
->poll
)) {
4184 spin_unlock_irq(&ctx
->completion_lock
);
4188 if (hash_hashed(&req
->hash_node
))
4189 hash_del(&req
->hash_node
);
4191 canceled
= READ_ONCE(apoll
->poll
.canceled
);
4193 io_cqring_fill_event(req
, -ECANCELED
);
4194 io_commit_cqring(ctx
);
4197 spin_unlock_irq(&ctx
->completion_lock
);
4199 /* restore ->work in case we need to retry again */
4200 memcpy(&req
->work
, &apoll
->work
, sizeof(req
->work
));
4204 io_cqring_ev_posted(ctx
);
4205 req_set_fail_links(req
);
4206 io_double_put_req(req
);
4210 __set_current_state(TASK_RUNNING
);
4211 mutex_lock(&ctx
->uring_lock
);
4212 __io_queue_sqe(req
, NULL
);
4213 mutex_unlock(&ctx
->uring_lock
);
4218 static int io_async_wake(struct wait_queue_entry
*wait
, unsigned mode
, int sync
,
4221 struct io_kiocb
*req
= wait
->private;
4222 struct io_poll_iocb
*poll
= &req
->apoll
->poll
;
4224 trace_io_uring_poll_wake(req
->ctx
, req
->opcode
, req
->user_data
,
4227 return __io_async_wake(req
, poll
, key_to_poll(key
), io_async_task_func
);
4230 static void io_poll_req_insert(struct io_kiocb
*req
)
4232 struct io_ring_ctx
*ctx
= req
->ctx
;
4233 struct hlist_head
*list
;
4235 list
= &ctx
->cancel_hash
[hash_long(req
->user_data
, ctx
->cancel_hash_bits
)];
4236 hlist_add_head(&req
->hash_node
, list
);
4239 static __poll_t
__io_arm_poll_handler(struct io_kiocb
*req
,
4240 struct io_poll_iocb
*poll
,
4241 struct io_poll_table
*ipt
, __poll_t mask
,
4242 wait_queue_func_t wake_func
)
4243 __acquires(&ctx
->completion_lock
)
4245 struct io_ring_ctx
*ctx
= req
->ctx
;
4246 bool cancel
= false;
4248 poll
->file
= req
->file
;
4250 poll
->done
= poll
->canceled
= false;
4251 poll
->events
= mask
;
4253 ipt
->pt
._key
= mask
;
4255 ipt
->error
= -EINVAL
;
4257 INIT_LIST_HEAD(&poll
->wait
.entry
);
4258 init_waitqueue_func_entry(&poll
->wait
, wake_func
);
4259 poll
->wait
.private = req
;
4261 mask
= vfs_poll(req
->file
, &ipt
->pt
) & poll
->events
;
4263 spin_lock_irq(&ctx
->completion_lock
);
4264 if (likely(poll
->head
)) {
4265 spin_lock(&poll
->head
->lock
);
4266 if (unlikely(list_empty(&poll
->wait
.entry
))) {
4272 if (mask
|| ipt
->error
)
4273 list_del_init(&poll
->wait
.entry
);
4275 WRITE_ONCE(poll
->canceled
, true);
4276 else if (!poll
->done
) /* actually waiting for an event */
4277 io_poll_req_insert(req
);
4278 spin_unlock(&poll
->head
->lock
);
4284 static bool io_arm_poll_handler(struct io_kiocb
*req
)
4286 const struct io_op_def
*def
= &io_op_defs
[req
->opcode
];
4287 struct io_ring_ctx
*ctx
= req
->ctx
;
4288 struct async_poll
*apoll
;
4289 struct io_poll_table ipt
;
4292 if (!req
->file
|| !file_can_poll(req
->file
))
4294 if (req
->flags
& (REQ_F_MUST_PUNT
| REQ_F_POLLED
))
4296 if (!def
->pollin
&& !def
->pollout
)
4299 apoll
= kmalloc(sizeof(*apoll
), GFP_ATOMIC
);
4300 if (unlikely(!apoll
))
4303 req
->flags
|= REQ_F_POLLED
;
4304 memcpy(&apoll
->work
, &req
->work
, sizeof(req
->work
));
4306 get_task_struct(current
);
4307 req
->task
= current
;
4309 INIT_HLIST_NODE(&req
->hash_node
);
4313 mask
|= POLLIN
| POLLRDNORM
;
4315 mask
|= POLLOUT
| POLLWRNORM
;
4316 mask
|= POLLERR
| POLLPRI
;
4318 ipt
.pt
._qproc
= io_async_queue_proc
;
4320 ret
= __io_arm_poll_handler(req
, &apoll
->poll
, &ipt
, mask
,
4324 apoll
->poll
.done
= true;
4325 spin_unlock_irq(&ctx
->completion_lock
);
4326 memcpy(&req
->work
, &apoll
->work
, sizeof(req
->work
));
4330 spin_unlock_irq(&ctx
->completion_lock
);
4331 trace_io_uring_poll_arm(ctx
, req
->opcode
, req
->user_data
, mask
,
4332 apoll
->poll
.events
);
4336 static bool __io_poll_remove_one(struct io_kiocb
*req
,
4337 struct io_poll_iocb
*poll
)
4339 bool do_complete
= false;
4341 spin_lock(&poll
->head
->lock
);
4342 WRITE_ONCE(poll
->canceled
, true);
4343 if (!list_empty(&poll
->wait
.entry
)) {
4344 list_del_init(&poll
->wait
.entry
);
4347 spin_unlock(&poll
->head
->lock
);
4351 static bool io_poll_remove_one(struct io_kiocb
*req
)
4353 struct async_poll
*apoll
= NULL
;
4356 if (req
->opcode
== IORING_OP_POLL_ADD
) {
4357 do_complete
= __io_poll_remove_one(req
, &req
->poll
);
4360 /* non-poll requests have submit ref still */
4361 do_complete
= __io_poll_remove_one(req
, &req
->apoll
->poll
);
4366 hash_del(&req
->hash_node
);
4368 if (do_complete
&& apoll
) {
4370 * restore ->work because we need to call io_req_work_drop_env.
4372 memcpy(&req
->work
, &apoll
->work
, sizeof(req
->work
));
4377 io_cqring_fill_event(req
, -ECANCELED
);
4378 io_commit_cqring(req
->ctx
);
4379 req
->flags
|= REQ_F_COMP_LOCKED
;
4386 static void io_poll_remove_all(struct io_ring_ctx
*ctx
)
4388 struct hlist_node
*tmp
;
4389 struct io_kiocb
*req
;
4392 spin_lock_irq(&ctx
->completion_lock
);
4393 for (i
= 0; i
< (1U << ctx
->cancel_hash_bits
); i
++) {
4394 struct hlist_head
*list
;
4396 list
= &ctx
->cancel_hash
[i
];
4397 hlist_for_each_entry_safe(req
, tmp
, list
, hash_node
)
4398 posted
+= io_poll_remove_one(req
);
4400 spin_unlock_irq(&ctx
->completion_lock
);
4403 io_cqring_ev_posted(ctx
);
4406 static int io_poll_cancel(struct io_ring_ctx
*ctx
, __u64 sqe_addr
)
4408 struct hlist_head
*list
;
4409 struct io_kiocb
*req
;
4411 list
= &ctx
->cancel_hash
[hash_long(sqe_addr
, ctx
->cancel_hash_bits
)];
4412 hlist_for_each_entry(req
, list
, hash_node
) {
4413 if (sqe_addr
!= req
->user_data
)
4415 if (io_poll_remove_one(req
))
4423 static int io_poll_remove_prep(struct io_kiocb
*req
,
4424 const struct io_uring_sqe
*sqe
)
4426 if (unlikely(req
->ctx
->flags
& IORING_SETUP_IOPOLL
))
4428 if (sqe
->ioprio
|| sqe
->off
|| sqe
->len
|| sqe
->buf_index
||
4432 req
->poll
.addr
= READ_ONCE(sqe
->addr
);
4437 * Find a running poll command that matches one specified in sqe->addr,
4438 * and remove it if found.
4440 static int io_poll_remove(struct io_kiocb
*req
)
4442 struct io_ring_ctx
*ctx
= req
->ctx
;
4446 addr
= req
->poll
.addr
;
4447 spin_lock_irq(&ctx
->completion_lock
);
4448 ret
= io_poll_cancel(ctx
, addr
);
4449 spin_unlock_irq(&ctx
->completion_lock
);
4451 io_cqring_add_event(req
, ret
);
4453 req_set_fail_links(req
);
4458 static void io_poll_complete(struct io_kiocb
*req
, __poll_t mask
, int error
)
4460 struct io_ring_ctx
*ctx
= req
->ctx
;
4462 req
->poll
.done
= true;
4463 io_cqring_fill_event(req
, error
? error
: mangle_poll(mask
));
4464 io_commit_cqring(ctx
);
4467 static void io_poll_task_handler(struct io_kiocb
*req
, struct io_kiocb
**nxt
)
4469 struct io_ring_ctx
*ctx
= req
->ctx
;
4470 struct io_poll_iocb
*poll
= &req
->poll
;
4472 if (io_poll_rewait(req
, poll
)) {
4473 spin_unlock_irq(&ctx
->completion_lock
);
4477 hash_del(&req
->hash_node
);
4478 io_poll_complete(req
, req
->result
, 0);
4479 req
->flags
|= REQ_F_COMP_LOCKED
;
4480 io_put_req_find_next(req
, nxt
);
4481 spin_unlock_irq(&ctx
->completion_lock
);
4483 io_cqring_ev_posted(ctx
);
4486 static void io_poll_task_func(struct callback_head
*cb
)
4488 struct io_kiocb
*req
= container_of(cb
, struct io_kiocb
, task_work
);
4489 struct io_kiocb
*nxt
= NULL
;
4491 io_poll_task_handler(req
, &nxt
);
4493 struct io_ring_ctx
*ctx
= nxt
->ctx
;
4495 mutex_lock(&ctx
->uring_lock
);
4496 __io_queue_sqe(nxt
, NULL
);
4497 mutex_unlock(&ctx
->uring_lock
);
4501 static int io_poll_wake(struct wait_queue_entry
*wait
, unsigned mode
, int sync
,
4504 struct io_kiocb
*req
= wait
->private;
4505 struct io_poll_iocb
*poll
= &req
->poll
;
4507 return __io_async_wake(req
, poll
, key_to_poll(key
), io_poll_task_func
);
4510 static void io_poll_queue_proc(struct file
*file
, struct wait_queue_head
*head
,
4511 struct poll_table_struct
*p
)
4513 struct io_poll_table
*pt
= container_of(p
, struct io_poll_table
, pt
);
4515 __io_queue_proc(&pt
->req
->poll
, pt
, head
);
4518 static int io_poll_add_prep(struct io_kiocb
*req
, const struct io_uring_sqe
*sqe
)
4520 struct io_poll_iocb
*poll
= &req
->poll
;
4523 if (unlikely(req
->ctx
->flags
& IORING_SETUP_IOPOLL
))
4525 if (sqe
->addr
|| sqe
->ioprio
|| sqe
->off
|| sqe
->len
|| sqe
->buf_index
)
4530 events
= READ_ONCE(sqe
->poll_events
);
4531 poll
->events
= demangle_poll(events
) | EPOLLERR
| EPOLLHUP
;
4533 get_task_struct(current
);
4534 req
->task
= current
;
4538 static int io_poll_add(struct io_kiocb
*req
)
4540 struct io_poll_iocb
*poll
= &req
->poll
;
4541 struct io_ring_ctx
*ctx
= req
->ctx
;
4542 struct io_poll_table ipt
;
4545 INIT_HLIST_NODE(&req
->hash_node
);
4546 INIT_LIST_HEAD(&req
->list
);
4547 ipt
.pt
._qproc
= io_poll_queue_proc
;
4549 mask
= __io_arm_poll_handler(req
, &req
->poll
, &ipt
, poll
->events
,
4552 if (mask
) { /* no async, we'd stolen it */
4554 io_poll_complete(req
, mask
, 0);
4556 spin_unlock_irq(&ctx
->completion_lock
);
4559 io_cqring_ev_posted(ctx
);
4565 static enum hrtimer_restart
io_timeout_fn(struct hrtimer
*timer
)
4567 struct io_timeout_data
*data
= container_of(timer
,
4568 struct io_timeout_data
, timer
);
4569 struct io_kiocb
*req
= data
->req
;
4570 struct io_ring_ctx
*ctx
= req
->ctx
;
4571 unsigned long flags
;
4573 atomic_inc(&ctx
->cq_timeouts
);
4575 spin_lock_irqsave(&ctx
->completion_lock
, flags
);
4577 * We could be racing with timeout deletion. If the list is empty,
4578 * then timeout lookup already found it and will be handling it.
4580 if (!list_empty(&req
->list
)) {
4581 struct io_kiocb
*prev
;
4584 * Adjust the reqs sequence before the current one because it
4585 * will consume a slot in the cq_ring and the cq_tail
4586 * pointer will be increased, otherwise other timeout reqs may
4587 * return in advance without waiting for enough wait_nr.
4590 list_for_each_entry_continue_reverse(prev
, &ctx
->timeout_list
, list
)
4592 list_del_init(&req
->list
);
4595 io_cqring_fill_event(req
, -ETIME
);
4596 io_commit_cqring(ctx
);
4597 spin_unlock_irqrestore(&ctx
->completion_lock
, flags
);
4599 io_cqring_ev_posted(ctx
);
4600 req_set_fail_links(req
);
4602 return HRTIMER_NORESTART
;
4605 static int io_timeout_cancel(struct io_ring_ctx
*ctx
, __u64 user_data
)
4607 struct io_kiocb
*req
;
4610 list_for_each_entry(req
, &ctx
->timeout_list
, list
) {
4611 if (user_data
== req
->user_data
) {
4612 list_del_init(&req
->list
);
4621 ret
= hrtimer_try_to_cancel(&req
->io
->timeout
.timer
);
4625 req_set_fail_links(req
);
4626 io_cqring_fill_event(req
, -ECANCELED
);
4631 static int io_timeout_remove_prep(struct io_kiocb
*req
,
4632 const struct io_uring_sqe
*sqe
)
4634 if (unlikely(req
->ctx
->flags
& IORING_SETUP_IOPOLL
))
4636 if (sqe
->flags
|| sqe
->ioprio
|| sqe
->buf_index
|| sqe
->len
)
4639 req
->timeout
.addr
= READ_ONCE(sqe
->addr
);
4640 req
->timeout
.flags
= READ_ONCE(sqe
->timeout_flags
);
4641 if (req
->timeout
.flags
)
4648 * Remove or update an existing timeout command
4650 static int io_timeout_remove(struct io_kiocb
*req
)
4652 struct io_ring_ctx
*ctx
= req
->ctx
;
4655 spin_lock_irq(&ctx
->completion_lock
);
4656 ret
= io_timeout_cancel(ctx
, req
->timeout
.addr
);
4658 io_cqring_fill_event(req
, ret
);
4659 io_commit_cqring(ctx
);
4660 spin_unlock_irq(&ctx
->completion_lock
);
4661 io_cqring_ev_posted(ctx
);
4663 req_set_fail_links(req
);
4668 static int io_timeout_prep(struct io_kiocb
*req
, const struct io_uring_sqe
*sqe
,
4669 bool is_timeout_link
)
4671 struct io_timeout_data
*data
;
4674 if (unlikely(req
->ctx
->flags
& IORING_SETUP_IOPOLL
))
4676 if (sqe
->ioprio
|| sqe
->buf_index
|| sqe
->len
!= 1)
4678 if (sqe
->off
&& is_timeout_link
)
4680 flags
= READ_ONCE(sqe
->timeout_flags
);
4681 if (flags
& ~IORING_TIMEOUT_ABS
)
4684 req
->timeout
.count
= READ_ONCE(sqe
->off
);
4686 if (!req
->io
&& io_alloc_async_ctx(req
))
4689 data
= &req
->io
->timeout
;
4691 req
->flags
|= REQ_F_TIMEOUT
;
4693 if (get_timespec64(&data
->ts
, u64_to_user_ptr(sqe
->addr
)))
4696 if (flags
& IORING_TIMEOUT_ABS
)
4697 data
->mode
= HRTIMER_MODE_ABS
;
4699 data
->mode
= HRTIMER_MODE_REL
;
4701 hrtimer_init(&data
->timer
, CLOCK_MONOTONIC
, data
->mode
);
4705 static int io_timeout(struct io_kiocb
*req
)
4707 struct io_ring_ctx
*ctx
= req
->ctx
;
4708 struct io_timeout_data
*data
;
4709 struct list_head
*entry
;
4711 u32 count
= req
->timeout
.count
;
4712 u32 seq
= req
->sequence
;
4714 data
= &req
->io
->timeout
;
4717 * sqe->off holds how many events that need to occur for this
4718 * timeout event to be satisfied. If it isn't set, then this is
4719 * a pure timeout request, sequence isn't used.
4722 req
->flags
|= REQ_F_TIMEOUT_NOSEQ
;
4723 spin_lock_irq(&ctx
->completion_lock
);
4724 entry
= ctx
->timeout_list
.prev
;
4728 req
->sequence
= seq
+ count
;
4731 * Insertion sort, ensuring the first entry in the list is always
4732 * the one we need first.
4734 spin_lock_irq(&ctx
->completion_lock
);
4735 list_for_each_prev(entry
, &ctx
->timeout_list
) {
4736 struct io_kiocb
*nxt
= list_entry(entry
, struct io_kiocb
, list
);
4738 long long tmp
, tmp_nxt
;
4739 u32 nxt_offset
= nxt
->timeout
.count
;
4741 if (nxt
->flags
& REQ_F_TIMEOUT_NOSEQ
)
4745 * Since seq + count can overflow, use type long
4748 tmp
= (long long)seq
+ count
;
4749 nxt_seq
= nxt
->sequence
- nxt_offset
;
4750 tmp_nxt
= (long long)nxt_seq
+ nxt_offset
;
4753 * cached_sq_head may overflow, and it will never overflow twice
4754 * once there is some timeout req still be valid.
4763 * Sequence of reqs after the insert one and itself should
4764 * be adjusted because each timeout req consumes a slot.
4769 req
->sequence
-= span
;
4771 list_add(&req
->list
, entry
);
4772 data
->timer
.function
= io_timeout_fn
;
4773 hrtimer_start(&data
->timer
, timespec64_to_ktime(data
->ts
), data
->mode
);
4774 spin_unlock_irq(&ctx
->completion_lock
);
4778 static bool io_cancel_cb(struct io_wq_work
*work
, void *data
)
4780 struct io_kiocb
*req
= container_of(work
, struct io_kiocb
, work
);
4782 return req
->user_data
== (unsigned long) data
;
4785 static int io_async_cancel_one(struct io_ring_ctx
*ctx
, void *sqe_addr
)
4787 enum io_wq_cancel cancel_ret
;
4790 cancel_ret
= io_wq_cancel_cb(ctx
->io_wq
, io_cancel_cb
, sqe_addr
);
4791 switch (cancel_ret
) {
4792 case IO_WQ_CANCEL_OK
:
4795 case IO_WQ_CANCEL_RUNNING
:
4798 case IO_WQ_CANCEL_NOTFOUND
:
4806 static void io_async_find_and_cancel(struct io_ring_ctx
*ctx
,
4807 struct io_kiocb
*req
, __u64 sqe_addr
,
4810 unsigned long flags
;
4813 ret
= io_async_cancel_one(ctx
, (void *) (unsigned long) sqe_addr
);
4814 if (ret
!= -ENOENT
) {
4815 spin_lock_irqsave(&ctx
->completion_lock
, flags
);
4819 spin_lock_irqsave(&ctx
->completion_lock
, flags
);
4820 ret
= io_timeout_cancel(ctx
, sqe_addr
);
4823 ret
= io_poll_cancel(ctx
, sqe_addr
);
4827 io_cqring_fill_event(req
, ret
);
4828 io_commit_cqring(ctx
);
4829 spin_unlock_irqrestore(&ctx
->completion_lock
, flags
);
4830 io_cqring_ev_posted(ctx
);
4833 req_set_fail_links(req
);
4837 static int io_async_cancel_prep(struct io_kiocb
*req
,
4838 const struct io_uring_sqe
*sqe
)
4840 if (unlikely(req
->ctx
->flags
& IORING_SETUP_IOPOLL
))
4842 if (sqe
->flags
|| sqe
->ioprio
|| sqe
->off
|| sqe
->len
||
4846 req
->cancel
.addr
= READ_ONCE(sqe
->addr
);
4850 static int io_async_cancel(struct io_kiocb
*req
)
4852 struct io_ring_ctx
*ctx
= req
->ctx
;
4854 io_async_find_and_cancel(ctx
, req
, req
->cancel
.addr
, 0);
4858 static int io_files_update_prep(struct io_kiocb
*req
,
4859 const struct io_uring_sqe
*sqe
)
4861 if (sqe
->flags
|| sqe
->ioprio
|| sqe
->rw_flags
)
4864 req
->files_update
.offset
= READ_ONCE(sqe
->off
);
4865 req
->files_update
.nr_args
= READ_ONCE(sqe
->len
);
4866 if (!req
->files_update
.nr_args
)
4868 req
->files_update
.arg
= READ_ONCE(sqe
->addr
);
4872 static int io_files_update(struct io_kiocb
*req
, bool force_nonblock
)
4874 struct io_ring_ctx
*ctx
= req
->ctx
;
4875 struct io_uring_files_update up
;
4881 up
.offset
= req
->files_update
.offset
;
4882 up
.fds
= req
->files_update
.arg
;
4884 mutex_lock(&ctx
->uring_lock
);
4885 ret
= __io_sqe_files_update(ctx
, &up
, req
->files_update
.nr_args
);
4886 mutex_unlock(&ctx
->uring_lock
);
4889 req_set_fail_links(req
);
4890 io_cqring_add_event(req
, ret
);
4895 static int io_req_defer_prep(struct io_kiocb
*req
,
4896 const struct io_uring_sqe
*sqe
)
4903 if (io_op_defs
[req
->opcode
].file_table
) {
4904 ret
= io_grab_files(req
);
4909 io_req_work_grab_env(req
, &io_op_defs
[req
->opcode
]);
4911 switch (req
->opcode
) {
4914 case IORING_OP_READV
:
4915 case IORING_OP_READ_FIXED
:
4916 case IORING_OP_READ
:
4917 ret
= io_read_prep(req
, sqe
, true);
4919 case IORING_OP_WRITEV
:
4920 case IORING_OP_WRITE_FIXED
:
4921 case IORING_OP_WRITE
:
4922 ret
= io_write_prep(req
, sqe
, true);
4924 case IORING_OP_POLL_ADD
:
4925 ret
= io_poll_add_prep(req
, sqe
);
4927 case IORING_OP_POLL_REMOVE
:
4928 ret
= io_poll_remove_prep(req
, sqe
);
4930 case IORING_OP_FSYNC
:
4931 ret
= io_prep_fsync(req
, sqe
);
4933 case IORING_OP_SYNC_FILE_RANGE
:
4934 ret
= io_prep_sfr(req
, sqe
);
4936 case IORING_OP_SENDMSG
:
4937 case IORING_OP_SEND
:
4938 ret
= io_sendmsg_prep(req
, sqe
);
4940 case IORING_OP_RECVMSG
:
4941 case IORING_OP_RECV
:
4942 ret
= io_recvmsg_prep(req
, sqe
);
4944 case IORING_OP_CONNECT
:
4945 ret
= io_connect_prep(req
, sqe
);
4947 case IORING_OP_TIMEOUT
:
4948 ret
= io_timeout_prep(req
, sqe
, false);
4950 case IORING_OP_TIMEOUT_REMOVE
:
4951 ret
= io_timeout_remove_prep(req
, sqe
);
4953 case IORING_OP_ASYNC_CANCEL
:
4954 ret
= io_async_cancel_prep(req
, sqe
);
4956 case IORING_OP_LINK_TIMEOUT
:
4957 ret
= io_timeout_prep(req
, sqe
, true);
4959 case IORING_OP_ACCEPT
:
4960 ret
= io_accept_prep(req
, sqe
);
4962 case IORING_OP_FALLOCATE
:
4963 ret
= io_fallocate_prep(req
, sqe
);
4965 case IORING_OP_OPENAT
:
4966 ret
= io_openat_prep(req
, sqe
);
4968 case IORING_OP_CLOSE
:
4969 ret
= io_close_prep(req
, sqe
);
4971 case IORING_OP_FILES_UPDATE
:
4972 ret
= io_files_update_prep(req
, sqe
);
4974 case IORING_OP_STATX
:
4975 ret
= io_statx_prep(req
, sqe
);
4977 case IORING_OP_FADVISE
:
4978 ret
= io_fadvise_prep(req
, sqe
);
4980 case IORING_OP_MADVISE
:
4981 ret
= io_madvise_prep(req
, sqe
);
4983 case IORING_OP_OPENAT2
:
4984 ret
= io_openat2_prep(req
, sqe
);
4986 case IORING_OP_EPOLL_CTL
:
4987 ret
= io_epoll_ctl_prep(req
, sqe
);
4989 case IORING_OP_SPLICE
:
4990 ret
= io_splice_prep(req
, sqe
);
4992 case IORING_OP_PROVIDE_BUFFERS
:
4993 ret
= io_provide_buffers_prep(req
, sqe
);
4995 case IORING_OP_REMOVE_BUFFERS
:
4996 ret
= io_remove_buffers_prep(req
, sqe
);
4999 printk_once(KERN_WARNING
"io_uring: unhandled opcode %d\n",
5008 static int io_req_defer(struct io_kiocb
*req
, const struct io_uring_sqe
*sqe
)
5010 struct io_ring_ctx
*ctx
= req
->ctx
;
5013 /* Still need defer if there is pending req in defer list. */
5014 if (!req_need_defer(req
) && list_empty_careful(&ctx
->defer_list
))
5017 if (!req
->io
&& io_alloc_async_ctx(req
))
5020 ret
= io_req_defer_prep(req
, sqe
);
5024 spin_lock_irq(&ctx
->completion_lock
);
5025 if (!req_need_defer(req
) && list_empty(&ctx
->defer_list
)) {
5026 spin_unlock_irq(&ctx
->completion_lock
);
5030 trace_io_uring_defer(ctx
, req
, req
->user_data
);
5031 list_add_tail(&req
->list
, &ctx
->defer_list
);
5032 spin_unlock_irq(&ctx
->completion_lock
);
5033 return -EIOCBQUEUED
;
5036 static void io_cleanup_req(struct io_kiocb
*req
)
5038 struct io_async_ctx
*io
= req
->io
;
5040 switch (req
->opcode
) {
5041 case IORING_OP_READV
:
5042 case IORING_OP_READ_FIXED
:
5043 case IORING_OP_READ
:
5044 if (req
->flags
& REQ_F_BUFFER_SELECTED
)
5045 kfree((void *)(unsigned long)req
->rw
.addr
);
5047 case IORING_OP_WRITEV
:
5048 case IORING_OP_WRITE_FIXED
:
5049 case IORING_OP_WRITE
:
5050 if (io
->rw
.iov
!= io
->rw
.fast_iov
)
5053 case IORING_OP_RECVMSG
:
5054 if (req
->flags
& REQ_F_BUFFER_SELECTED
)
5055 kfree(req
->sr_msg
.kbuf
);
5057 case IORING_OP_SENDMSG
:
5058 if (io
->msg
.iov
!= io
->msg
.fast_iov
)
5061 case IORING_OP_RECV
:
5062 if (req
->flags
& REQ_F_BUFFER_SELECTED
)
5063 kfree(req
->sr_msg
.kbuf
);
5065 case IORING_OP_OPENAT
:
5066 case IORING_OP_OPENAT2
:
5067 case IORING_OP_STATX
:
5068 putname(req
->open
.filename
);
5070 case IORING_OP_SPLICE
:
5071 io_put_file(req
, req
->splice
.file_in
,
5072 (req
->splice
.flags
& SPLICE_F_FD_IN_FIXED
));
5076 req
->flags
&= ~REQ_F_NEED_CLEANUP
;
5079 static int io_issue_sqe(struct io_kiocb
*req
, const struct io_uring_sqe
*sqe
,
5080 bool force_nonblock
)
5082 struct io_ring_ctx
*ctx
= req
->ctx
;
5085 switch (req
->opcode
) {
5089 case IORING_OP_READV
:
5090 case IORING_OP_READ_FIXED
:
5091 case IORING_OP_READ
:
5093 ret
= io_read_prep(req
, sqe
, force_nonblock
);
5097 ret
= io_read(req
, force_nonblock
);
5099 case IORING_OP_WRITEV
:
5100 case IORING_OP_WRITE_FIXED
:
5101 case IORING_OP_WRITE
:
5103 ret
= io_write_prep(req
, sqe
, force_nonblock
);
5107 ret
= io_write(req
, force_nonblock
);
5109 case IORING_OP_FSYNC
:
5111 ret
= io_prep_fsync(req
, sqe
);
5115 ret
= io_fsync(req
, force_nonblock
);
5117 case IORING_OP_POLL_ADD
:
5119 ret
= io_poll_add_prep(req
, sqe
);
5123 ret
= io_poll_add(req
);
5125 case IORING_OP_POLL_REMOVE
:
5127 ret
= io_poll_remove_prep(req
, sqe
);
5131 ret
= io_poll_remove(req
);
5133 case IORING_OP_SYNC_FILE_RANGE
:
5135 ret
= io_prep_sfr(req
, sqe
);
5139 ret
= io_sync_file_range(req
, force_nonblock
);
5141 case IORING_OP_SENDMSG
:
5142 case IORING_OP_SEND
:
5144 ret
= io_sendmsg_prep(req
, sqe
);
5148 if (req
->opcode
== IORING_OP_SENDMSG
)
5149 ret
= io_sendmsg(req
, force_nonblock
);
5151 ret
= io_send(req
, force_nonblock
);
5153 case IORING_OP_RECVMSG
:
5154 case IORING_OP_RECV
:
5156 ret
= io_recvmsg_prep(req
, sqe
);
5160 if (req
->opcode
== IORING_OP_RECVMSG
)
5161 ret
= io_recvmsg(req
, force_nonblock
);
5163 ret
= io_recv(req
, force_nonblock
);
5165 case IORING_OP_TIMEOUT
:
5167 ret
= io_timeout_prep(req
, sqe
, false);
5171 ret
= io_timeout(req
);
5173 case IORING_OP_TIMEOUT_REMOVE
:
5175 ret
= io_timeout_remove_prep(req
, sqe
);
5179 ret
= io_timeout_remove(req
);
5181 case IORING_OP_ACCEPT
:
5183 ret
= io_accept_prep(req
, sqe
);
5187 ret
= io_accept(req
, force_nonblock
);
5189 case IORING_OP_CONNECT
:
5191 ret
= io_connect_prep(req
, sqe
);
5195 ret
= io_connect(req
, force_nonblock
);
5197 case IORING_OP_ASYNC_CANCEL
:
5199 ret
= io_async_cancel_prep(req
, sqe
);
5203 ret
= io_async_cancel(req
);
5205 case IORING_OP_FALLOCATE
:
5207 ret
= io_fallocate_prep(req
, sqe
);
5211 ret
= io_fallocate(req
, force_nonblock
);
5213 case IORING_OP_OPENAT
:
5215 ret
= io_openat_prep(req
, sqe
);
5219 ret
= io_openat(req
, force_nonblock
);
5221 case IORING_OP_CLOSE
:
5223 ret
= io_close_prep(req
, sqe
);
5227 ret
= io_close(req
, force_nonblock
);
5229 case IORING_OP_FILES_UPDATE
:
5231 ret
= io_files_update_prep(req
, sqe
);
5235 ret
= io_files_update(req
, force_nonblock
);
5237 case IORING_OP_STATX
:
5239 ret
= io_statx_prep(req
, sqe
);
5243 ret
= io_statx(req
, force_nonblock
);
5245 case IORING_OP_FADVISE
:
5247 ret
= io_fadvise_prep(req
, sqe
);
5251 ret
= io_fadvise(req
, force_nonblock
);
5253 case IORING_OP_MADVISE
:
5255 ret
= io_madvise_prep(req
, sqe
);
5259 ret
= io_madvise(req
, force_nonblock
);
5261 case IORING_OP_OPENAT2
:
5263 ret
= io_openat2_prep(req
, sqe
);
5267 ret
= io_openat2(req
, force_nonblock
);
5269 case IORING_OP_EPOLL_CTL
:
5271 ret
= io_epoll_ctl_prep(req
, sqe
);
5275 ret
= io_epoll_ctl(req
, force_nonblock
);
5277 case IORING_OP_SPLICE
:
5279 ret
= io_splice_prep(req
, sqe
);
5283 ret
= io_splice(req
, force_nonblock
);
5285 case IORING_OP_PROVIDE_BUFFERS
:
5287 ret
= io_provide_buffers_prep(req
, sqe
);
5291 ret
= io_provide_buffers(req
, force_nonblock
);
5293 case IORING_OP_REMOVE_BUFFERS
:
5295 ret
= io_remove_buffers_prep(req
, sqe
);
5299 ret
= io_remove_buffers(req
, force_nonblock
);
5309 if (ctx
->flags
& IORING_SETUP_IOPOLL
) {
5310 const bool in_async
= io_wq_current_is_worker();
5312 if (req
->result
== -EAGAIN
)
5315 /* workqueue context doesn't hold uring_lock, grab it now */
5317 mutex_lock(&ctx
->uring_lock
);
5319 io_iopoll_req_issued(req
);
5322 mutex_unlock(&ctx
->uring_lock
);
5328 static void io_wq_submit_work(struct io_wq_work
**workptr
)
5330 struct io_wq_work
*work
= *workptr
;
5331 struct io_kiocb
*req
= container_of(work
, struct io_kiocb
, work
);
5334 /* if NO_CANCEL is set, we must still run the work */
5335 if ((work
->flags
& (IO_WQ_WORK_CANCEL
|IO_WQ_WORK_NO_CANCEL
)) ==
5336 IO_WQ_WORK_CANCEL
) {
5342 ret
= io_issue_sqe(req
, NULL
, false);
5344 * We can get EAGAIN for polled IO even though we're
5345 * forcing a sync submission from here, since we can't
5346 * wait for request slots on the block side.
5355 req_set_fail_links(req
);
5356 io_cqring_add_event(req
, ret
);
5360 io_steal_work(req
, workptr
);
5363 static inline struct file
*io_file_from_index(struct io_ring_ctx
*ctx
,
5366 struct fixed_file_table
*table
;
5368 table
= &ctx
->file_data
->table
[index
>> IORING_FILE_TABLE_SHIFT
];
5369 return table
->files
[index
& IORING_FILE_TABLE_MASK
];;
5372 static int io_file_get(struct io_submit_state
*state
, struct io_kiocb
*req
,
5373 int fd
, struct file
**out_file
, bool fixed
)
5375 struct io_ring_ctx
*ctx
= req
->ctx
;
5379 if (unlikely(!ctx
->file_data
||
5380 (unsigned) fd
>= ctx
->nr_user_files
))
5382 fd
= array_index_nospec(fd
, ctx
->nr_user_files
);
5383 file
= io_file_from_index(ctx
, fd
);
5386 req
->fixed_file_refs
= ctx
->file_data
->cur_refs
;
5387 percpu_ref_get(req
->fixed_file_refs
);
5389 trace_io_uring_file_get(ctx
, fd
);
5390 file
= __io_file_get(state
, fd
);
5391 if (unlikely(!file
))
5399 static int io_req_set_file(struct io_submit_state
*state
, struct io_kiocb
*req
,
5404 fixed
= (req
->flags
& REQ_F_FIXED_FILE
) != 0;
5405 if (unlikely(!fixed
&& req
->needs_fixed_file
))
5408 return io_file_get(state
, req
, fd
, &req
->file
, fixed
);
5411 static int io_grab_files(struct io_kiocb
*req
)
5414 struct io_ring_ctx
*ctx
= req
->ctx
;
5416 if (req
->work
.files
|| (req
->flags
& REQ_F_NO_FILE_TABLE
))
5418 if (!ctx
->ring_file
)
5422 spin_lock_irq(&ctx
->inflight_lock
);
5424 * We use the f_ops->flush() handler to ensure that we can flush
5425 * out work accessing these files if the fd is closed. Check if
5426 * the fd has changed since we started down this path, and disallow
5427 * this operation if it has.
5429 if (fcheck(ctx
->ring_fd
) == ctx
->ring_file
) {
5430 list_add(&req
->inflight_entry
, &ctx
->inflight_list
);
5431 req
->flags
|= REQ_F_INFLIGHT
;
5432 req
->work
.files
= current
->files
;
5435 spin_unlock_irq(&ctx
->inflight_lock
);
5441 static enum hrtimer_restart
io_link_timeout_fn(struct hrtimer
*timer
)
5443 struct io_timeout_data
*data
= container_of(timer
,
5444 struct io_timeout_data
, timer
);
5445 struct io_kiocb
*req
= data
->req
;
5446 struct io_ring_ctx
*ctx
= req
->ctx
;
5447 struct io_kiocb
*prev
= NULL
;
5448 unsigned long flags
;
5450 spin_lock_irqsave(&ctx
->completion_lock
, flags
);
5453 * We don't expect the list to be empty, that will only happen if we
5454 * race with the completion of the linked work.
5456 if (!list_empty(&req
->link_list
)) {
5457 prev
= list_entry(req
->link_list
.prev
, struct io_kiocb
,
5459 if (refcount_inc_not_zero(&prev
->refs
)) {
5460 list_del_init(&req
->link_list
);
5461 prev
->flags
&= ~REQ_F_LINK_TIMEOUT
;
5466 spin_unlock_irqrestore(&ctx
->completion_lock
, flags
);
5469 req_set_fail_links(prev
);
5470 io_async_find_and_cancel(ctx
, req
, prev
->user_data
, -ETIME
);
5473 io_cqring_add_event(req
, -ETIME
);
5476 return HRTIMER_NORESTART
;
5479 static void io_queue_linked_timeout(struct io_kiocb
*req
)
5481 struct io_ring_ctx
*ctx
= req
->ctx
;
5484 * If the list is now empty, then our linked request finished before
5485 * we got a chance to setup the timer
5487 spin_lock_irq(&ctx
->completion_lock
);
5488 if (!list_empty(&req
->link_list
)) {
5489 struct io_timeout_data
*data
= &req
->io
->timeout
;
5491 data
->timer
.function
= io_link_timeout_fn
;
5492 hrtimer_start(&data
->timer
, timespec64_to_ktime(data
->ts
),
5495 spin_unlock_irq(&ctx
->completion_lock
);
5497 /* drop submission reference */
5501 static struct io_kiocb
*io_prep_linked_timeout(struct io_kiocb
*req
)
5503 struct io_kiocb
*nxt
;
5505 if (!(req
->flags
& REQ_F_LINK_HEAD
))
5507 /* for polled retry, if flag is set, we already went through here */
5508 if (req
->flags
& REQ_F_POLLED
)
5511 nxt
= list_first_entry_or_null(&req
->link_list
, struct io_kiocb
,
5513 if (!nxt
|| nxt
->opcode
!= IORING_OP_LINK_TIMEOUT
)
5516 req
->flags
|= REQ_F_LINK_TIMEOUT
;
5520 static void __io_queue_sqe(struct io_kiocb
*req
, const struct io_uring_sqe
*sqe
)
5522 struct io_kiocb
*linked_timeout
;
5523 struct io_kiocb
*nxt
;
5524 const struct cred
*old_creds
= NULL
;
5528 linked_timeout
= io_prep_linked_timeout(req
);
5530 if (req
->work
.creds
&& req
->work
.creds
!= current_cred()) {
5532 revert_creds(old_creds
);
5533 if (old_creds
== req
->work
.creds
)
5534 old_creds
= NULL
; /* restored original creds */
5536 old_creds
= override_creds(req
->work
.creds
);
5539 ret
= io_issue_sqe(req
, sqe
, true);
5542 * We async punt it if the file wasn't marked NOWAIT, or if the file
5543 * doesn't support non-blocking read/write attempts
5545 if (ret
== -EAGAIN
&& (!(req
->flags
& REQ_F_NOWAIT
) ||
5546 (req
->flags
& REQ_F_MUST_PUNT
))) {
5547 if (io_arm_poll_handler(req
)) {
5549 io_queue_linked_timeout(linked_timeout
);
5553 if (io_op_defs
[req
->opcode
].file_table
) {
5554 ret
= io_grab_files(req
);
5560 * Queued up for async execution, worker will release
5561 * submit reference when the iocb is actually submitted.
5563 io_queue_async_work(req
);
5569 /* drop submission reference */
5570 io_put_req_find_next(req
, &nxt
);
5572 if (linked_timeout
) {
5574 io_queue_linked_timeout(linked_timeout
);
5576 io_put_req(linked_timeout
);
5579 /* and drop final reference, if we failed */
5581 io_cqring_add_event(req
, ret
);
5582 req_set_fail_links(req
);
5588 if (req
->flags
& REQ_F_FORCE_ASYNC
)
5594 revert_creds(old_creds
);
5597 static void io_queue_sqe(struct io_kiocb
*req
, const struct io_uring_sqe
*sqe
)
5601 ret
= io_req_defer(req
, sqe
);
5603 if (ret
!= -EIOCBQUEUED
) {
5605 io_cqring_add_event(req
, ret
);
5606 req_set_fail_links(req
);
5607 io_double_put_req(req
);
5609 } else if (req
->flags
& REQ_F_FORCE_ASYNC
) {
5610 ret
= io_req_defer_prep(req
, sqe
);
5611 if (unlikely(ret
< 0))
5614 * Never try inline submit of IOSQE_ASYNC is set, go straight
5615 * to async execution.
5617 req
->work
.flags
|= IO_WQ_WORK_CONCURRENT
;
5618 io_queue_async_work(req
);
5620 __io_queue_sqe(req
, sqe
);
5624 static inline void io_queue_link_head(struct io_kiocb
*req
)
5626 if (unlikely(req
->flags
& REQ_F_FAIL_LINK
)) {
5627 io_cqring_add_event(req
, -ECANCELED
);
5628 io_double_put_req(req
);
5630 io_queue_sqe(req
, NULL
);
5633 static int io_submit_sqe(struct io_kiocb
*req
, const struct io_uring_sqe
*sqe
,
5634 struct io_submit_state
*state
, struct io_kiocb
**link
)
5636 struct io_ring_ctx
*ctx
= req
->ctx
;
5640 * If we already have a head request, queue this one for async
5641 * submittal once the head completes. If we don't have a head but
5642 * IOSQE_IO_LINK is set in the sqe, start a new head. This one will be
5643 * submitted sync once the chain is complete. If none of those
5644 * conditions are true (normal request), then just queue it.
5647 struct io_kiocb
*head
= *link
;
5650 * Taking sequential execution of a link, draining both sides
5651 * of the link also fullfils IOSQE_IO_DRAIN semantics for all
5652 * requests in the link. So, it drains the head and the
5653 * next after the link request. The last one is done via
5654 * drain_next flag to persist the effect across calls.
5656 if (req
->flags
& REQ_F_IO_DRAIN
) {
5657 head
->flags
|= REQ_F_IO_DRAIN
;
5658 ctx
->drain_next
= 1;
5660 if (io_alloc_async_ctx(req
))
5663 ret
= io_req_defer_prep(req
, sqe
);
5665 /* fail even hard links since we don't submit */
5666 head
->flags
|= REQ_F_FAIL_LINK
;
5669 trace_io_uring_link(ctx
, req
, head
);
5670 list_add_tail(&req
->link_list
, &head
->link_list
);
5672 /* last request of a link, enqueue the link */
5673 if (!(req
->flags
& (REQ_F_LINK
| REQ_F_HARDLINK
))) {
5674 io_queue_link_head(head
);
5678 if (unlikely(ctx
->drain_next
)) {
5679 req
->flags
|= REQ_F_IO_DRAIN
;
5680 ctx
->drain_next
= 0;
5682 if (req
->flags
& (REQ_F_LINK
| REQ_F_HARDLINK
)) {
5683 req
->flags
|= REQ_F_LINK_HEAD
;
5684 INIT_LIST_HEAD(&req
->link_list
);
5686 if (io_alloc_async_ctx(req
))
5689 ret
= io_req_defer_prep(req
, sqe
);
5691 req
->flags
|= REQ_F_FAIL_LINK
;
5694 io_queue_sqe(req
, sqe
);
5702 * Batched submission is done, ensure local IO is flushed out.
5704 static void io_submit_state_end(struct io_submit_state
*state
)
5706 blk_finish_plug(&state
->plug
);
5708 if (state
->free_reqs
)
5709 kmem_cache_free_bulk(req_cachep
, state
->free_reqs
, state
->reqs
);
5713 * Start submission side cache.
5715 static void io_submit_state_start(struct io_submit_state
*state
,
5716 unsigned int max_ios
)
5718 blk_start_plug(&state
->plug
);
5719 state
->free_reqs
= 0;
5721 state
->ios_left
= max_ios
;
5724 static void io_commit_sqring(struct io_ring_ctx
*ctx
)
5726 struct io_rings
*rings
= ctx
->rings
;
5729 * Ensure any loads from the SQEs are done at this point,
5730 * since once we write the new head, the application could
5731 * write new data to them.
5733 smp_store_release(&rings
->sq
.head
, ctx
->cached_sq_head
);
5737 * Fetch an sqe, if one is available. Note that sqe_ptr will point to memory
5738 * that is mapped by userspace. This means that care needs to be taken to
5739 * ensure that reads are stable, as we cannot rely on userspace always
5740 * being a good citizen. If members of the sqe are validated and then later
5741 * used, it's important that those reads are done through READ_ONCE() to
5742 * prevent a re-load down the line.
5744 static const struct io_uring_sqe
*io_get_sqe(struct io_ring_ctx
*ctx
)
5746 u32
*sq_array
= ctx
->sq_array
;
5750 * The cached sq head (or cq tail) serves two purposes:
5752 * 1) allows us to batch the cost of updating the user visible
5754 * 2) allows the kernel side to track the head on its own, even
5755 * though the application is the one updating it.
5757 head
= READ_ONCE(sq_array
[ctx
->cached_sq_head
& ctx
->sq_mask
]);
5758 if (likely(head
< ctx
->sq_entries
))
5759 return &ctx
->sq_sqes
[head
];
5761 /* drop invalid entries */
5762 ctx
->cached_sq_dropped
++;
5763 WRITE_ONCE(ctx
->rings
->sq_dropped
, ctx
->cached_sq_dropped
);
5767 static inline void io_consume_sqe(struct io_ring_ctx
*ctx
)
5769 ctx
->cached_sq_head
++;
5772 #define SQE_VALID_FLAGS (IOSQE_FIXED_FILE|IOSQE_IO_DRAIN|IOSQE_IO_LINK| \
5773 IOSQE_IO_HARDLINK | IOSQE_ASYNC | \
5774 IOSQE_BUFFER_SELECT)
5776 static int io_init_req(struct io_ring_ctx
*ctx
, struct io_kiocb
*req
,
5777 const struct io_uring_sqe
*sqe
,
5778 struct io_submit_state
*state
, bool async
)
5780 unsigned int sqe_flags
;
5784 * All io need record the previous position, if LINK vs DARIN,
5785 * it can be used to mark the position of the first IO in the
5788 req
->sequence
= ctx
->cached_sq_head
- ctx
->cached_sq_dropped
;
5789 req
->opcode
= READ_ONCE(sqe
->opcode
);
5790 req
->user_data
= READ_ONCE(sqe
->user_data
);
5795 /* one is dropped after submission, the other at completion */
5796 refcount_set(&req
->refs
, 2);
5799 req
->needs_fixed_file
= async
;
5800 INIT_IO_WORK(&req
->work
, io_wq_submit_work
);
5802 if (unlikely(req
->opcode
>= IORING_OP_LAST
))
5805 if (io_op_defs
[req
->opcode
].needs_mm
&& !current
->mm
) {
5806 if (unlikely(!mmget_not_zero(ctx
->sqo_mm
)))
5808 use_mm(ctx
->sqo_mm
);
5811 sqe_flags
= READ_ONCE(sqe
->flags
);
5812 /* enforce forwards compatibility on users */
5813 if (unlikely(sqe_flags
& ~SQE_VALID_FLAGS
))
5816 if ((sqe_flags
& IOSQE_BUFFER_SELECT
) &&
5817 !io_op_defs
[req
->opcode
].buffer_select
)
5820 id
= READ_ONCE(sqe
->personality
);
5822 req
->work
.creds
= idr_find(&ctx
->personality_idr
, id
);
5823 if (unlikely(!req
->work
.creds
))
5825 get_cred(req
->work
.creds
);
5828 /* same numerical values with corresponding REQ_F_*, safe to copy */
5829 req
->flags
|= sqe_flags
& (IOSQE_IO_DRAIN
| IOSQE_IO_HARDLINK
|
5830 IOSQE_ASYNC
| IOSQE_FIXED_FILE
|
5831 IOSQE_BUFFER_SELECT
| IOSQE_IO_LINK
);
5833 if (!io_op_defs
[req
->opcode
].needs_file
)
5836 return io_req_set_file(state
, req
, READ_ONCE(sqe
->fd
));
5839 static int io_submit_sqes(struct io_ring_ctx
*ctx
, unsigned int nr
,
5840 struct file
*ring_file
, int ring_fd
, bool async
)
5842 struct io_submit_state state
, *statep
= NULL
;
5843 struct io_kiocb
*link
= NULL
;
5844 int i
, submitted
= 0;
5846 /* if we have a backlog and couldn't flush it all, return BUSY */
5847 if (test_bit(0, &ctx
->sq_check_overflow
)) {
5848 if (!list_empty(&ctx
->cq_overflow_list
) &&
5849 !io_cqring_overflow_flush(ctx
, false))
5853 /* make sure SQ entry isn't read before tail */
5854 nr
= min3(nr
, ctx
->sq_entries
, io_sqring_entries(ctx
));
5856 if (!percpu_ref_tryget_many(&ctx
->refs
, nr
))
5859 if (nr
> IO_PLUG_THRESHOLD
) {
5860 io_submit_state_start(&state
, nr
);
5864 ctx
->ring_fd
= ring_fd
;
5865 ctx
->ring_file
= ring_file
;
5867 for (i
= 0; i
< nr
; i
++) {
5868 const struct io_uring_sqe
*sqe
;
5869 struct io_kiocb
*req
;
5872 sqe
= io_get_sqe(ctx
);
5873 if (unlikely(!sqe
)) {
5874 io_consume_sqe(ctx
);
5877 req
= io_alloc_req(ctx
, statep
);
5878 if (unlikely(!req
)) {
5880 submitted
= -EAGAIN
;
5884 err
= io_init_req(ctx
, req
, sqe
, statep
, async
);
5885 io_consume_sqe(ctx
);
5886 /* will complete beyond this point, count as submitted */
5889 if (unlikely(err
)) {
5891 io_cqring_add_event(req
, err
);
5892 io_double_put_req(req
);
5896 trace_io_uring_submit_sqe(ctx
, req
->opcode
, req
->user_data
,
5898 err
= io_submit_sqe(req
, sqe
, statep
, &link
);
5903 if (unlikely(submitted
!= nr
)) {
5904 int ref_used
= (submitted
== -EAGAIN
) ? 0 : submitted
;
5906 percpu_ref_put_many(&ctx
->refs
, nr
- ref_used
);
5909 io_queue_link_head(link
);
5911 io_submit_state_end(&state
);
5913 /* Commit SQ ring head once we've consumed and submitted all SQEs */
5914 io_commit_sqring(ctx
);
5919 static inline void io_sq_thread_drop_mm(struct io_ring_ctx
*ctx
)
5921 struct mm_struct
*mm
= current
->mm
;
5929 static int io_sq_thread(void *data
)
5931 struct io_ring_ctx
*ctx
= data
;
5932 const struct cred
*old_cred
;
5933 mm_segment_t old_fs
;
5935 unsigned long timeout
;
5938 complete(&ctx
->completions
[1]);
5942 old_cred
= override_creds(ctx
->creds
);
5944 timeout
= jiffies
+ ctx
->sq_thread_idle
;
5945 while (!kthread_should_park()) {
5946 unsigned int to_submit
;
5948 if (!list_empty(&ctx
->poll_list
)) {
5949 unsigned nr_events
= 0;
5951 mutex_lock(&ctx
->uring_lock
);
5952 if (!list_empty(&ctx
->poll_list
))
5953 io_iopoll_getevents(ctx
, &nr_events
, 0);
5955 timeout
= jiffies
+ ctx
->sq_thread_idle
;
5956 mutex_unlock(&ctx
->uring_lock
);
5959 to_submit
= io_sqring_entries(ctx
);
5962 * If submit got -EBUSY, flag us as needing the application
5963 * to enter the kernel to reap and flush events.
5965 if (!to_submit
|| ret
== -EBUSY
) {
5967 * Drop cur_mm before scheduling, we can't hold it for
5968 * long periods (or over schedule()). Do this before
5969 * adding ourselves to the waitqueue, as the unuse/drop
5972 io_sq_thread_drop_mm(ctx
);
5975 * We're polling. If we're within the defined idle
5976 * period, then let us spin without work before going
5977 * to sleep. The exception is if we got EBUSY doing
5978 * more IO, we should wait for the application to
5979 * reap events and wake us up.
5981 if (!list_empty(&ctx
->poll_list
) ||
5982 (!time_after(jiffies
, timeout
) && ret
!= -EBUSY
&&
5983 !percpu_ref_is_dying(&ctx
->refs
))) {
5984 if (current
->task_works
)
5990 prepare_to_wait(&ctx
->sqo_wait
, &wait
,
5991 TASK_INTERRUPTIBLE
);
5994 * While doing polled IO, before going to sleep, we need
5995 * to check if there are new reqs added to poll_list, it
5996 * is because reqs may have been punted to io worker and
5997 * will be added to poll_list later, hence check the
6000 if ((ctx
->flags
& IORING_SETUP_IOPOLL
) &&
6001 !list_empty_careful(&ctx
->poll_list
)) {
6002 finish_wait(&ctx
->sqo_wait
, &wait
);
6006 /* Tell userspace we may need a wakeup call */
6007 ctx
->rings
->sq_flags
|= IORING_SQ_NEED_WAKEUP
;
6008 /* make sure to read SQ tail after writing flags */
6011 to_submit
= io_sqring_entries(ctx
);
6012 if (!to_submit
|| ret
== -EBUSY
) {
6013 if (kthread_should_park()) {
6014 finish_wait(&ctx
->sqo_wait
, &wait
);
6017 if (current
->task_works
) {
6019 finish_wait(&ctx
->sqo_wait
, &wait
);
6022 if (signal_pending(current
))
6023 flush_signals(current
);
6025 finish_wait(&ctx
->sqo_wait
, &wait
);
6027 ctx
->rings
->sq_flags
&= ~IORING_SQ_NEED_WAKEUP
;
6030 finish_wait(&ctx
->sqo_wait
, &wait
);
6032 ctx
->rings
->sq_flags
&= ~IORING_SQ_NEED_WAKEUP
;
6035 mutex_lock(&ctx
->uring_lock
);
6036 ret
= io_submit_sqes(ctx
, to_submit
, NULL
, -1, true);
6037 mutex_unlock(&ctx
->uring_lock
);
6038 timeout
= jiffies
+ ctx
->sq_thread_idle
;
6041 if (current
->task_works
)
6045 io_sq_thread_drop_mm(ctx
);
6046 revert_creds(old_cred
);
6053 struct io_wait_queue
{
6054 struct wait_queue_entry wq
;
6055 struct io_ring_ctx
*ctx
;
6057 unsigned nr_timeouts
;
6060 static inline bool io_should_wake(struct io_wait_queue
*iowq
, bool noflush
)
6062 struct io_ring_ctx
*ctx
= iowq
->ctx
;
6065 * Wake up if we have enough events, or if a timeout occurred since we
6066 * started waiting. For timeouts, we always want to return to userspace,
6067 * regardless of event count.
6069 return io_cqring_events(ctx
, noflush
) >= iowq
->to_wait
||
6070 atomic_read(&ctx
->cq_timeouts
) != iowq
->nr_timeouts
;
6073 static int io_wake_function(struct wait_queue_entry
*curr
, unsigned int mode
,
6074 int wake_flags
, void *key
)
6076 struct io_wait_queue
*iowq
= container_of(curr
, struct io_wait_queue
,
6079 /* use noflush == true, as we can't safely rely on locking context */
6080 if (!io_should_wake(iowq
, true))
6083 return autoremove_wake_function(curr
, mode
, wake_flags
, key
);
6087 * Wait until events become available, if we don't already have some. The
6088 * application must reap them itself, as they reside on the shared cq ring.
6090 static int io_cqring_wait(struct io_ring_ctx
*ctx
, int min_events
,
6091 const sigset_t __user
*sig
, size_t sigsz
)
6093 struct io_wait_queue iowq
= {
6096 .func
= io_wake_function
,
6097 .entry
= LIST_HEAD_INIT(iowq
.wq
.entry
),
6100 .to_wait
= min_events
,
6102 struct io_rings
*rings
= ctx
->rings
;
6106 if (io_cqring_events(ctx
, false) >= min_events
)
6108 if (!current
->task_works
)
6114 #ifdef CONFIG_COMPAT
6115 if (in_compat_syscall())
6116 ret
= set_compat_user_sigmask((const compat_sigset_t __user
*)sig
,
6120 ret
= set_user_sigmask(sig
, sigsz
);
6126 iowq
.nr_timeouts
= atomic_read(&ctx
->cq_timeouts
);
6127 trace_io_uring_cqring_wait(ctx
, min_events
);
6129 prepare_to_wait_exclusive(&ctx
->wait
, &iowq
.wq
,
6130 TASK_INTERRUPTIBLE
);
6131 if (current
->task_works
)
6133 if (io_should_wake(&iowq
, false))
6136 if (signal_pending(current
)) {
6141 finish_wait(&ctx
->wait
, &iowq
.wq
);
6143 restore_saved_sigmask_unless(ret
== -EINTR
);
6145 return READ_ONCE(rings
->cq
.head
) == READ_ONCE(rings
->cq
.tail
) ? ret
: 0;
6148 static void __io_sqe_files_unregister(struct io_ring_ctx
*ctx
)
6150 #if defined(CONFIG_UNIX)
6151 if (ctx
->ring_sock
) {
6152 struct sock
*sock
= ctx
->ring_sock
->sk
;
6153 struct sk_buff
*skb
;
6155 while ((skb
= skb_dequeue(&sock
->sk_receive_queue
)) != NULL
)
6161 for (i
= 0; i
< ctx
->nr_user_files
; i
++) {
6164 file
= io_file_from_index(ctx
, i
);
6171 static void io_file_ref_kill(struct percpu_ref
*ref
)
6173 struct fixed_file_data
*data
;
6175 data
= container_of(ref
, struct fixed_file_data
, refs
);
6176 complete(&data
->done
);
6179 static int io_sqe_files_unregister(struct io_ring_ctx
*ctx
)
6181 struct fixed_file_data
*data
= ctx
->file_data
;
6182 struct fixed_file_ref_node
*ref_node
= NULL
;
6183 unsigned nr_tables
, i
;
6184 unsigned long flags
;
6189 spin_lock_irqsave(&data
->lock
, flags
);
6190 if (!list_empty(&data
->ref_list
))
6191 ref_node
= list_first_entry(&data
->ref_list
,
6192 struct fixed_file_ref_node
, node
);
6193 spin_unlock_irqrestore(&data
->lock
, flags
);
6195 percpu_ref_kill(&ref_node
->refs
);
6197 percpu_ref_kill(&data
->refs
);
6199 /* wait for all refs nodes to complete */
6200 wait_for_completion(&data
->done
);
6202 __io_sqe_files_unregister(ctx
);
6203 nr_tables
= DIV_ROUND_UP(ctx
->nr_user_files
, IORING_MAX_FILES_TABLE
);
6204 for (i
= 0; i
< nr_tables
; i
++)
6205 kfree(data
->table
[i
].files
);
6207 percpu_ref_exit(&data
->refs
);
6209 ctx
->file_data
= NULL
;
6210 ctx
->nr_user_files
= 0;
6214 static void io_sq_thread_stop(struct io_ring_ctx
*ctx
)
6216 if (ctx
->sqo_thread
) {
6217 wait_for_completion(&ctx
->completions
[1]);
6219 * The park is a bit of a work-around, without it we get
6220 * warning spews on shutdown with SQPOLL set and affinity
6221 * set to a single CPU.
6223 kthread_park(ctx
->sqo_thread
);
6224 kthread_stop(ctx
->sqo_thread
);
6225 ctx
->sqo_thread
= NULL
;
6229 static void io_finish_async(struct io_ring_ctx
*ctx
)
6231 io_sq_thread_stop(ctx
);
6234 io_wq_destroy(ctx
->io_wq
);
6239 #if defined(CONFIG_UNIX)
6241 * Ensure the UNIX gc is aware of our file set, so we are certain that
6242 * the io_uring can be safely unregistered on process exit, even if we have
6243 * loops in the file referencing.
6245 static int __io_sqe_files_scm(struct io_ring_ctx
*ctx
, int nr
, int offset
)
6247 struct sock
*sk
= ctx
->ring_sock
->sk
;
6248 struct scm_fp_list
*fpl
;
6249 struct sk_buff
*skb
;
6252 fpl
= kzalloc(sizeof(*fpl
), GFP_KERNEL
);
6256 skb
= alloc_skb(0, GFP_KERNEL
);
6265 fpl
->user
= get_uid(ctx
->user
);
6266 for (i
= 0; i
< nr
; i
++) {
6267 struct file
*file
= io_file_from_index(ctx
, i
+ offset
);
6271 fpl
->fp
[nr_files
] = get_file(file
);
6272 unix_inflight(fpl
->user
, fpl
->fp
[nr_files
]);
6277 fpl
->max
= SCM_MAX_FD
;
6278 fpl
->count
= nr_files
;
6279 UNIXCB(skb
).fp
= fpl
;
6280 skb
->destructor
= unix_destruct_scm
;
6281 refcount_add(skb
->truesize
, &sk
->sk_wmem_alloc
);
6282 skb_queue_head(&sk
->sk_receive_queue
, skb
);
6284 for (i
= 0; i
< nr_files
; i
++)
6295 * If UNIX sockets are enabled, fd passing can cause a reference cycle which
6296 * causes regular reference counting to break down. We rely on the UNIX
6297 * garbage collection to take care of this problem for us.
6299 static int io_sqe_files_scm(struct io_ring_ctx
*ctx
)
6301 unsigned left
, total
;
6305 left
= ctx
->nr_user_files
;
6307 unsigned this_files
= min_t(unsigned, left
, SCM_MAX_FD
);
6309 ret
= __io_sqe_files_scm(ctx
, this_files
, total
);
6313 total
+= this_files
;
6319 while (total
< ctx
->nr_user_files
) {
6320 struct file
*file
= io_file_from_index(ctx
, total
);
6330 static int io_sqe_files_scm(struct io_ring_ctx
*ctx
)
6336 static int io_sqe_alloc_file_tables(struct io_ring_ctx
*ctx
, unsigned nr_tables
,
6341 for (i
= 0; i
< nr_tables
; i
++) {
6342 struct fixed_file_table
*table
= &ctx
->file_data
->table
[i
];
6343 unsigned this_files
;
6345 this_files
= min(nr_files
, IORING_MAX_FILES_TABLE
);
6346 table
->files
= kcalloc(this_files
, sizeof(struct file
*),
6350 nr_files
-= this_files
;
6356 for (i
= 0; i
< nr_tables
; i
++) {
6357 struct fixed_file_table
*table
= &ctx
->file_data
->table
[i
];
6358 kfree(table
->files
);
6363 static void io_ring_file_put(struct io_ring_ctx
*ctx
, struct file
*file
)
6365 #if defined(CONFIG_UNIX)
6366 struct sock
*sock
= ctx
->ring_sock
->sk
;
6367 struct sk_buff_head list
, *head
= &sock
->sk_receive_queue
;
6368 struct sk_buff
*skb
;
6371 __skb_queue_head_init(&list
);
6374 * Find the skb that holds this file in its SCM_RIGHTS. When found,
6375 * remove this entry and rearrange the file array.
6377 skb
= skb_dequeue(head
);
6379 struct scm_fp_list
*fp
;
6381 fp
= UNIXCB(skb
).fp
;
6382 for (i
= 0; i
< fp
->count
; i
++) {
6385 if (fp
->fp
[i
] != file
)
6388 unix_notinflight(fp
->user
, fp
->fp
[i
]);
6389 left
= fp
->count
- 1 - i
;
6391 memmove(&fp
->fp
[i
], &fp
->fp
[i
+ 1],
6392 left
* sizeof(struct file
*));
6399 __skb_queue_tail(&list
, skb
);
6409 __skb_queue_tail(&list
, skb
);
6411 skb
= skb_dequeue(head
);
6414 if (skb_peek(&list
)) {
6415 spin_lock_irq(&head
->lock
);
6416 while ((skb
= __skb_dequeue(&list
)) != NULL
)
6417 __skb_queue_tail(head
, skb
);
6418 spin_unlock_irq(&head
->lock
);
6425 struct io_file_put
{
6426 struct list_head list
;
6430 static void io_file_put_work(struct work_struct
*work
)
6432 struct fixed_file_ref_node
*ref_node
;
6433 struct fixed_file_data
*file_data
;
6434 struct io_ring_ctx
*ctx
;
6435 struct io_file_put
*pfile
, *tmp
;
6436 unsigned long flags
;
6438 ref_node
= container_of(work
, struct fixed_file_ref_node
, work
);
6439 file_data
= ref_node
->file_data
;
6440 ctx
= file_data
->ctx
;
6442 list_for_each_entry_safe(pfile
, tmp
, &ref_node
->file_list
, list
) {
6443 list_del_init(&pfile
->list
);
6444 io_ring_file_put(ctx
, pfile
->file
);
6448 spin_lock_irqsave(&file_data
->lock
, flags
);
6449 list_del_init(&ref_node
->node
);
6450 spin_unlock_irqrestore(&file_data
->lock
, flags
);
6452 percpu_ref_exit(&ref_node
->refs
);
6454 percpu_ref_put(&file_data
->refs
);
6457 static void io_file_data_ref_zero(struct percpu_ref
*ref
)
6459 struct fixed_file_ref_node
*ref_node
;
6461 ref_node
= container_of(ref
, struct fixed_file_ref_node
, refs
);
6463 queue_work(system_wq
, &ref_node
->work
);
6466 static struct fixed_file_ref_node
*alloc_fixed_file_ref_node(
6467 struct io_ring_ctx
*ctx
)
6469 struct fixed_file_ref_node
*ref_node
;
6471 ref_node
= kzalloc(sizeof(*ref_node
), GFP_KERNEL
);
6473 return ERR_PTR(-ENOMEM
);
6475 if (percpu_ref_init(&ref_node
->refs
, io_file_data_ref_zero
,
6478 return ERR_PTR(-ENOMEM
);
6480 INIT_LIST_HEAD(&ref_node
->node
);
6481 INIT_LIST_HEAD(&ref_node
->file_list
);
6482 INIT_WORK(&ref_node
->work
, io_file_put_work
);
6483 ref_node
->file_data
= ctx
->file_data
;
6488 static void destroy_fixed_file_ref_node(struct fixed_file_ref_node
*ref_node
)
6490 percpu_ref_exit(&ref_node
->refs
);
6494 static int io_sqe_files_register(struct io_ring_ctx
*ctx
, void __user
*arg
,
6497 __s32 __user
*fds
= (__s32 __user
*) arg
;
6502 struct fixed_file_ref_node
*ref_node
;
6503 unsigned long flags
;
6509 if (nr_args
> IORING_MAX_FIXED_FILES
)
6512 ctx
->file_data
= kzalloc(sizeof(*ctx
->file_data
), GFP_KERNEL
);
6513 if (!ctx
->file_data
)
6515 ctx
->file_data
->ctx
= ctx
;
6516 init_completion(&ctx
->file_data
->done
);
6517 INIT_LIST_HEAD(&ctx
->file_data
->ref_list
);
6518 spin_lock_init(&ctx
->file_data
->lock
);
6520 nr_tables
= DIV_ROUND_UP(nr_args
, IORING_MAX_FILES_TABLE
);
6521 ctx
->file_data
->table
= kcalloc(nr_tables
,
6522 sizeof(struct fixed_file_table
),
6524 if (!ctx
->file_data
->table
) {
6525 kfree(ctx
->file_data
);
6526 ctx
->file_data
= NULL
;
6530 if (percpu_ref_init(&ctx
->file_data
->refs
, io_file_ref_kill
,
6531 PERCPU_REF_ALLOW_REINIT
, GFP_KERNEL
)) {
6532 kfree(ctx
->file_data
->table
);
6533 kfree(ctx
->file_data
);
6534 ctx
->file_data
= NULL
;
6538 if (io_sqe_alloc_file_tables(ctx
, nr_tables
, nr_args
)) {
6539 percpu_ref_exit(&ctx
->file_data
->refs
);
6540 kfree(ctx
->file_data
->table
);
6541 kfree(ctx
->file_data
);
6542 ctx
->file_data
= NULL
;
6546 for (i
= 0; i
< nr_args
; i
++, ctx
->nr_user_files
++) {
6547 struct fixed_file_table
*table
;
6551 if (copy_from_user(&fd
, &fds
[i
], sizeof(fd
)))
6553 /* allow sparse sets */
6559 table
= &ctx
->file_data
->table
[i
>> IORING_FILE_TABLE_SHIFT
];
6560 index
= i
& IORING_FILE_TABLE_MASK
;
6568 * Don't allow io_uring instances to be registered. If UNIX
6569 * isn't enabled, then this causes a reference cycle and this
6570 * instance can never get freed. If UNIX is enabled we'll
6571 * handle it just fine, but there's still no point in allowing
6572 * a ring fd as it doesn't support regular read/write anyway.
6574 if (file
->f_op
== &io_uring_fops
) {
6579 table
->files
[index
] = file
;
6583 for (i
= 0; i
< ctx
->nr_user_files
; i
++) {
6584 file
= io_file_from_index(ctx
, i
);
6588 for (i
= 0; i
< nr_tables
; i
++)
6589 kfree(ctx
->file_data
->table
[i
].files
);
6591 kfree(ctx
->file_data
->table
);
6592 kfree(ctx
->file_data
);
6593 ctx
->file_data
= NULL
;
6594 ctx
->nr_user_files
= 0;
6598 ret
= io_sqe_files_scm(ctx
);
6600 io_sqe_files_unregister(ctx
);
6604 ref_node
= alloc_fixed_file_ref_node(ctx
);
6605 if (IS_ERR(ref_node
)) {
6606 io_sqe_files_unregister(ctx
);
6607 return PTR_ERR(ref_node
);
6610 ctx
->file_data
->cur_refs
= &ref_node
->refs
;
6611 spin_lock_irqsave(&ctx
->file_data
->lock
, flags
);
6612 list_add(&ref_node
->node
, &ctx
->file_data
->ref_list
);
6613 spin_unlock_irqrestore(&ctx
->file_data
->lock
, flags
);
6614 percpu_ref_get(&ctx
->file_data
->refs
);
6618 static int io_sqe_file_register(struct io_ring_ctx
*ctx
, struct file
*file
,
6621 #if defined(CONFIG_UNIX)
6622 struct sock
*sock
= ctx
->ring_sock
->sk
;
6623 struct sk_buff_head
*head
= &sock
->sk_receive_queue
;
6624 struct sk_buff
*skb
;
6627 * See if we can merge this file into an existing skb SCM_RIGHTS
6628 * file set. If there's no room, fall back to allocating a new skb
6629 * and filling it in.
6631 spin_lock_irq(&head
->lock
);
6632 skb
= skb_peek(head
);
6634 struct scm_fp_list
*fpl
= UNIXCB(skb
).fp
;
6636 if (fpl
->count
< SCM_MAX_FD
) {
6637 __skb_unlink(skb
, head
);
6638 spin_unlock_irq(&head
->lock
);
6639 fpl
->fp
[fpl
->count
] = get_file(file
);
6640 unix_inflight(fpl
->user
, fpl
->fp
[fpl
->count
]);
6642 spin_lock_irq(&head
->lock
);
6643 __skb_queue_head(head
, skb
);
6648 spin_unlock_irq(&head
->lock
);
6655 return __io_sqe_files_scm(ctx
, 1, index
);
6661 static int io_queue_file_removal(struct fixed_file_data
*data
,
6664 struct io_file_put
*pfile
;
6665 struct percpu_ref
*refs
= data
->cur_refs
;
6666 struct fixed_file_ref_node
*ref_node
;
6668 pfile
= kzalloc(sizeof(*pfile
), GFP_KERNEL
);
6672 ref_node
= container_of(refs
, struct fixed_file_ref_node
, refs
);
6674 list_add(&pfile
->list
, &ref_node
->file_list
);
6679 static int __io_sqe_files_update(struct io_ring_ctx
*ctx
,
6680 struct io_uring_files_update
*up
,
6683 struct fixed_file_data
*data
= ctx
->file_data
;
6684 struct fixed_file_ref_node
*ref_node
;
6689 unsigned long flags
;
6690 bool needs_switch
= false;
6692 if (check_add_overflow(up
->offset
, nr_args
, &done
))
6694 if (done
> ctx
->nr_user_files
)
6697 ref_node
= alloc_fixed_file_ref_node(ctx
);
6698 if (IS_ERR(ref_node
))
6699 return PTR_ERR(ref_node
);
6702 fds
= u64_to_user_ptr(up
->fds
);
6704 struct fixed_file_table
*table
;
6708 if (copy_from_user(&fd
, &fds
[done
], sizeof(fd
))) {
6712 i
= array_index_nospec(up
->offset
, ctx
->nr_user_files
);
6713 table
= &ctx
->file_data
->table
[i
>> IORING_FILE_TABLE_SHIFT
];
6714 index
= i
& IORING_FILE_TABLE_MASK
;
6715 if (table
->files
[index
]) {
6716 file
= io_file_from_index(ctx
, index
);
6717 err
= io_queue_file_removal(data
, file
);
6720 table
->files
[index
] = NULL
;
6721 needs_switch
= true;
6730 * Don't allow io_uring instances to be registered. If
6731 * UNIX isn't enabled, then this causes a reference
6732 * cycle and this instance can never get freed. If UNIX
6733 * is enabled we'll handle it just fine, but there's
6734 * still no point in allowing a ring fd as it doesn't
6735 * support regular read/write anyway.
6737 if (file
->f_op
== &io_uring_fops
) {
6742 table
->files
[index
] = file
;
6743 err
= io_sqe_file_register(ctx
, file
, i
);
6753 percpu_ref_kill(data
->cur_refs
);
6754 spin_lock_irqsave(&data
->lock
, flags
);
6755 list_add(&ref_node
->node
, &data
->ref_list
);
6756 data
->cur_refs
= &ref_node
->refs
;
6757 spin_unlock_irqrestore(&data
->lock
, flags
);
6758 percpu_ref_get(&ctx
->file_data
->refs
);
6760 destroy_fixed_file_ref_node(ref_node
);
6762 return done
? done
: err
;
6765 static int io_sqe_files_update(struct io_ring_ctx
*ctx
, void __user
*arg
,
6768 struct io_uring_files_update up
;
6770 if (!ctx
->file_data
)
6774 if (copy_from_user(&up
, arg
, sizeof(up
)))
6779 return __io_sqe_files_update(ctx
, &up
, nr_args
);
6782 static void io_free_work(struct io_wq_work
*work
)
6784 struct io_kiocb
*req
= container_of(work
, struct io_kiocb
, work
);
6786 /* Consider that io_steal_work() relies on this ref */
6790 static int io_init_wq_offload(struct io_ring_ctx
*ctx
,
6791 struct io_uring_params
*p
)
6793 struct io_wq_data data
;
6795 struct io_ring_ctx
*ctx_attach
;
6796 unsigned int concurrency
;
6799 data
.user
= ctx
->user
;
6800 data
.free_work
= io_free_work
;
6802 if (!(p
->flags
& IORING_SETUP_ATTACH_WQ
)) {
6803 /* Do QD, or 4 * CPUS, whatever is smallest */
6804 concurrency
= min(ctx
->sq_entries
, 4 * num_online_cpus());
6806 ctx
->io_wq
= io_wq_create(concurrency
, &data
);
6807 if (IS_ERR(ctx
->io_wq
)) {
6808 ret
= PTR_ERR(ctx
->io_wq
);
6814 f
= fdget(p
->wq_fd
);
6818 if (f
.file
->f_op
!= &io_uring_fops
) {
6823 ctx_attach
= f
.file
->private_data
;
6824 /* @io_wq is protected by holding the fd */
6825 if (!io_wq_get(ctx_attach
->io_wq
, &data
)) {
6830 ctx
->io_wq
= ctx_attach
->io_wq
;
6836 static int io_sq_offload_start(struct io_ring_ctx
*ctx
,
6837 struct io_uring_params
*p
)
6841 init_waitqueue_head(&ctx
->sqo_wait
);
6842 mmgrab(current
->mm
);
6843 ctx
->sqo_mm
= current
->mm
;
6845 if (ctx
->flags
& IORING_SETUP_SQPOLL
) {
6847 if (!capable(CAP_SYS_ADMIN
))
6850 ctx
->sq_thread_idle
= msecs_to_jiffies(p
->sq_thread_idle
);
6851 if (!ctx
->sq_thread_idle
)
6852 ctx
->sq_thread_idle
= HZ
;
6854 if (p
->flags
& IORING_SETUP_SQ_AFF
) {
6855 int cpu
= p
->sq_thread_cpu
;
6858 if (cpu
>= nr_cpu_ids
)
6860 if (!cpu_online(cpu
))
6863 ctx
->sqo_thread
= kthread_create_on_cpu(io_sq_thread
,
6867 ctx
->sqo_thread
= kthread_create(io_sq_thread
, ctx
,
6870 if (IS_ERR(ctx
->sqo_thread
)) {
6871 ret
= PTR_ERR(ctx
->sqo_thread
);
6872 ctx
->sqo_thread
= NULL
;
6875 wake_up_process(ctx
->sqo_thread
);
6876 } else if (p
->flags
& IORING_SETUP_SQ_AFF
) {
6877 /* Can't have SQ_AFF without SQPOLL */
6882 ret
= io_init_wq_offload(ctx
, p
);
6888 io_finish_async(ctx
);
6889 mmdrop(ctx
->sqo_mm
);
6894 static void io_unaccount_mem(struct user_struct
*user
, unsigned long nr_pages
)
6896 atomic_long_sub(nr_pages
, &user
->locked_vm
);
6899 static int io_account_mem(struct user_struct
*user
, unsigned long nr_pages
)
6901 unsigned long page_limit
, cur_pages
, new_pages
;
6903 /* Don't allow more pages than we can safely lock */
6904 page_limit
= rlimit(RLIMIT_MEMLOCK
) >> PAGE_SHIFT
;
6907 cur_pages
= atomic_long_read(&user
->locked_vm
);
6908 new_pages
= cur_pages
+ nr_pages
;
6909 if (new_pages
> page_limit
)
6911 } while (atomic_long_cmpxchg(&user
->locked_vm
, cur_pages
,
6912 new_pages
) != cur_pages
);
6917 static void io_mem_free(void *ptr
)
6924 page
= virt_to_head_page(ptr
);
6925 if (put_page_testzero(page
))
6926 free_compound_page(page
);
6929 static void *io_mem_alloc(size_t size
)
6931 gfp_t gfp_flags
= GFP_KERNEL
| __GFP_ZERO
| __GFP_NOWARN
| __GFP_COMP
|
6934 return (void *) __get_free_pages(gfp_flags
, get_order(size
));
6937 static unsigned long rings_size(unsigned sq_entries
, unsigned cq_entries
,
6940 struct io_rings
*rings
;
6941 size_t off
, sq_array_size
;
6943 off
= struct_size(rings
, cqes
, cq_entries
);
6944 if (off
== SIZE_MAX
)
6948 off
= ALIGN(off
, SMP_CACHE_BYTES
);
6953 sq_array_size
= array_size(sizeof(u32
), sq_entries
);
6954 if (sq_array_size
== SIZE_MAX
)
6957 if (check_add_overflow(off
, sq_array_size
, &off
))
6966 static unsigned long ring_pages(unsigned sq_entries
, unsigned cq_entries
)
6970 pages
= (size_t)1 << get_order(
6971 rings_size(sq_entries
, cq_entries
, NULL
));
6972 pages
+= (size_t)1 << get_order(
6973 array_size(sizeof(struct io_uring_sqe
), sq_entries
));
6978 static int io_sqe_buffer_unregister(struct io_ring_ctx
*ctx
)
6982 if (!ctx
->user_bufs
)
6985 for (i
= 0; i
< ctx
->nr_user_bufs
; i
++) {
6986 struct io_mapped_ubuf
*imu
= &ctx
->user_bufs
[i
];
6988 for (j
= 0; j
< imu
->nr_bvecs
; j
++)
6989 unpin_user_page(imu
->bvec
[j
].bv_page
);
6991 if (ctx
->account_mem
)
6992 io_unaccount_mem(ctx
->user
, imu
->nr_bvecs
);
6997 kfree(ctx
->user_bufs
);
6998 ctx
->user_bufs
= NULL
;
6999 ctx
->nr_user_bufs
= 0;
7003 static int io_copy_iov(struct io_ring_ctx
*ctx
, struct iovec
*dst
,
7004 void __user
*arg
, unsigned index
)
7006 struct iovec __user
*src
;
7008 #ifdef CONFIG_COMPAT
7010 struct compat_iovec __user
*ciovs
;
7011 struct compat_iovec ciov
;
7013 ciovs
= (struct compat_iovec __user
*) arg
;
7014 if (copy_from_user(&ciov
, &ciovs
[index
], sizeof(ciov
)))
7017 dst
->iov_base
= u64_to_user_ptr((u64
)ciov
.iov_base
);
7018 dst
->iov_len
= ciov
.iov_len
;
7022 src
= (struct iovec __user
*) arg
;
7023 if (copy_from_user(dst
, &src
[index
], sizeof(*dst
)))
7028 static int io_sqe_buffer_register(struct io_ring_ctx
*ctx
, void __user
*arg
,
7031 struct vm_area_struct
**vmas
= NULL
;
7032 struct page
**pages
= NULL
;
7033 int i
, j
, got_pages
= 0;
7038 if (!nr_args
|| nr_args
> UIO_MAXIOV
)
7041 ctx
->user_bufs
= kcalloc(nr_args
, sizeof(struct io_mapped_ubuf
),
7043 if (!ctx
->user_bufs
)
7046 for (i
= 0; i
< nr_args
; i
++) {
7047 struct io_mapped_ubuf
*imu
= &ctx
->user_bufs
[i
];
7048 unsigned long off
, start
, end
, ubuf
;
7053 ret
= io_copy_iov(ctx
, &iov
, arg
, i
);
7058 * Don't impose further limits on the size and buffer
7059 * constraints here, we'll -EINVAL later when IO is
7060 * submitted if they are wrong.
7063 if (!iov
.iov_base
|| !iov
.iov_len
)
7066 /* arbitrary limit, but we need something */
7067 if (iov
.iov_len
> SZ_1G
)
7070 ubuf
= (unsigned long) iov
.iov_base
;
7071 end
= (ubuf
+ iov
.iov_len
+ PAGE_SIZE
- 1) >> PAGE_SHIFT
;
7072 start
= ubuf
>> PAGE_SHIFT
;
7073 nr_pages
= end
- start
;
7075 if (ctx
->account_mem
) {
7076 ret
= io_account_mem(ctx
->user
, nr_pages
);
7082 if (!pages
|| nr_pages
> got_pages
) {
7085 pages
= kvmalloc_array(nr_pages
, sizeof(struct page
*),
7087 vmas
= kvmalloc_array(nr_pages
,
7088 sizeof(struct vm_area_struct
*),
7090 if (!pages
|| !vmas
) {
7092 if (ctx
->account_mem
)
7093 io_unaccount_mem(ctx
->user
, nr_pages
);
7096 got_pages
= nr_pages
;
7099 imu
->bvec
= kvmalloc_array(nr_pages
, sizeof(struct bio_vec
),
7103 if (ctx
->account_mem
)
7104 io_unaccount_mem(ctx
->user
, nr_pages
);
7109 down_read(¤t
->mm
->mmap_sem
);
7110 pret
= pin_user_pages(ubuf
, nr_pages
,
7111 FOLL_WRITE
| FOLL_LONGTERM
,
7113 if (pret
== nr_pages
) {
7114 /* don't support file backed memory */
7115 for (j
= 0; j
< nr_pages
; j
++) {
7116 struct vm_area_struct
*vma
= vmas
[j
];
7119 !is_file_hugepages(vma
->vm_file
)) {
7125 ret
= pret
< 0 ? pret
: -EFAULT
;
7127 up_read(¤t
->mm
->mmap_sem
);
7130 * if we did partial map, or found file backed vmas,
7131 * release any pages we did get
7134 unpin_user_pages(pages
, pret
);
7135 if (ctx
->account_mem
)
7136 io_unaccount_mem(ctx
->user
, nr_pages
);
7141 off
= ubuf
& ~PAGE_MASK
;
7143 for (j
= 0; j
< nr_pages
; j
++) {
7146 vec_len
= min_t(size_t, size
, PAGE_SIZE
- off
);
7147 imu
->bvec
[j
].bv_page
= pages
[j
];
7148 imu
->bvec
[j
].bv_len
= vec_len
;
7149 imu
->bvec
[j
].bv_offset
= off
;
7153 /* store original address for later verification */
7155 imu
->len
= iov
.iov_len
;
7156 imu
->nr_bvecs
= nr_pages
;
7158 ctx
->nr_user_bufs
++;
7166 io_sqe_buffer_unregister(ctx
);
7170 static int io_eventfd_register(struct io_ring_ctx
*ctx
, void __user
*arg
)
7172 __s32 __user
*fds
= arg
;
7178 if (copy_from_user(&fd
, fds
, sizeof(*fds
)))
7181 ctx
->cq_ev_fd
= eventfd_ctx_fdget(fd
);
7182 if (IS_ERR(ctx
->cq_ev_fd
)) {
7183 int ret
= PTR_ERR(ctx
->cq_ev_fd
);
7184 ctx
->cq_ev_fd
= NULL
;
7191 static int io_eventfd_unregister(struct io_ring_ctx
*ctx
)
7193 if (ctx
->cq_ev_fd
) {
7194 eventfd_ctx_put(ctx
->cq_ev_fd
);
7195 ctx
->cq_ev_fd
= NULL
;
7202 static int __io_destroy_buffers(int id
, void *p
, void *data
)
7204 struct io_ring_ctx
*ctx
= data
;
7205 struct io_buffer
*buf
= p
;
7207 __io_remove_buffers(ctx
, buf
, id
, -1U);
7211 static void io_destroy_buffers(struct io_ring_ctx
*ctx
)
7213 idr_for_each(&ctx
->io_buffer_idr
, __io_destroy_buffers
, ctx
);
7214 idr_destroy(&ctx
->io_buffer_idr
);
7217 static void io_ring_ctx_free(struct io_ring_ctx
*ctx
)
7219 io_finish_async(ctx
);
7221 mmdrop(ctx
->sqo_mm
);
7223 io_iopoll_reap_events(ctx
);
7224 io_sqe_buffer_unregister(ctx
);
7225 io_sqe_files_unregister(ctx
);
7226 io_eventfd_unregister(ctx
);
7227 io_destroy_buffers(ctx
);
7228 idr_destroy(&ctx
->personality_idr
);
7230 #if defined(CONFIG_UNIX)
7231 if (ctx
->ring_sock
) {
7232 ctx
->ring_sock
->file
= NULL
; /* so that iput() is called */
7233 sock_release(ctx
->ring_sock
);
7237 io_mem_free(ctx
->rings
);
7238 io_mem_free(ctx
->sq_sqes
);
7240 percpu_ref_exit(&ctx
->refs
);
7241 if (ctx
->account_mem
)
7242 io_unaccount_mem(ctx
->user
,
7243 ring_pages(ctx
->sq_entries
, ctx
->cq_entries
));
7244 free_uid(ctx
->user
);
7245 put_cred(ctx
->creds
);
7246 kfree(ctx
->completions
);
7247 kfree(ctx
->cancel_hash
);
7248 kmem_cache_free(req_cachep
, ctx
->fallback_req
);
7252 static __poll_t
io_uring_poll(struct file
*file
, poll_table
*wait
)
7254 struct io_ring_ctx
*ctx
= file
->private_data
;
7257 poll_wait(file
, &ctx
->cq_wait
, wait
);
7259 * synchronizes with barrier from wq_has_sleeper call in
7263 if (READ_ONCE(ctx
->rings
->sq
.tail
) - ctx
->cached_sq_head
!=
7264 ctx
->rings
->sq_ring_entries
)
7265 mask
|= EPOLLOUT
| EPOLLWRNORM
;
7266 if (io_cqring_events(ctx
, false))
7267 mask
|= EPOLLIN
| EPOLLRDNORM
;
7272 static int io_uring_fasync(int fd
, struct file
*file
, int on
)
7274 struct io_ring_ctx
*ctx
= file
->private_data
;
7276 return fasync_helper(fd
, file
, on
, &ctx
->cq_fasync
);
7279 static int io_remove_personalities(int id
, void *p
, void *data
)
7281 struct io_ring_ctx
*ctx
= data
;
7282 const struct cred
*cred
;
7284 cred
= idr_remove(&ctx
->personality_idr
, id
);
7290 static void io_ring_exit_work(struct work_struct
*work
)
7292 struct io_ring_ctx
*ctx
;
7294 ctx
= container_of(work
, struct io_ring_ctx
, exit_work
);
7296 io_cqring_overflow_flush(ctx
, true);
7298 wait_for_completion(&ctx
->completions
[0]);
7299 io_ring_ctx_free(ctx
);
7302 static void io_ring_ctx_wait_and_kill(struct io_ring_ctx
*ctx
)
7304 mutex_lock(&ctx
->uring_lock
);
7305 percpu_ref_kill(&ctx
->refs
);
7306 mutex_unlock(&ctx
->uring_lock
);
7309 * Wait for sq thread to idle, if we have one. It won't spin on new
7310 * work after we've killed the ctx ref above. This is important to do
7311 * before we cancel existing commands, as the thread could otherwise
7312 * be queueing new work post that. If that's work we need to cancel,
7313 * it could cause shutdown to hang.
7315 while (ctx
->sqo_thread
&& !wq_has_sleeper(&ctx
->sqo_wait
))
7318 io_kill_timeouts(ctx
);
7319 io_poll_remove_all(ctx
);
7322 io_wq_cancel_all(ctx
->io_wq
);
7324 io_iopoll_reap_events(ctx
);
7325 /* if we failed setting up the ctx, we might not have any rings */
7327 io_cqring_overflow_flush(ctx
, true);
7328 idr_for_each(&ctx
->personality_idr
, io_remove_personalities
, ctx
);
7329 INIT_WORK(&ctx
->exit_work
, io_ring_exit_work
);
7330 queue_work(system_wq
, &ctx
->exit_work
);
7333 static int io_uring_release(struct inode
*inode
, struct file
*file
)
7335 struct io_ring_ctx
*ctx
= file
->private_data
;
7337 file
->private_data
= NULL
;
7338 io_ring_ctx_wait_and_kill(ctx
);
7342 static void io_uring_cancel_files(struct io_ring_ctx
*ctx
,
7343 struct files_struct
*files
)
7345 while (!list_empty_careful(&ctx
->inflight_list
)) {
7346 struct io_kiocb
*cancel_req
= NULL
, *req
;
7349 spin_lock_irq(&ctx
->inflight_lock
);
7350 list_for_each_entry(req
, &ctx
->inflight_list
, inflight_entry
) {
7351 if (req
->work
.files
!= files
)
7353 /* req is being completed, ignore */
7354 if (!refcount_inc_not_zero(&req
->refs
))
7360 prepare_to_wait(&ctx
->inflight_wait
, &wait
,
7361 TASK_UNINTERRUPTIBLE
);
7362 spin_unlock_irq(&ctx
->inflight_lock
);
7364 /* We need to keep going until we don't find a matching req */
7368 if (cancel_req
->flags
& REQ_F_OVERFLOW
) {
7369 spin_lock_irq(&ctx
->completion_lock
);
7370 list_del(&cancel_req
->list
);
7371 cancel_req
->flags
&= ~REQ_F_OVERFLOW
;
7372 if (list_empty(&ctx
->cq_overflow_list
)) {
7373 clear_bit(0, &ctx
->sq_check_overflow
);
7374 clear_bit(0, &ctx
->cq_check_overflow
);
7376 spin_unlock_irq(&ctx
->completion_lock
);
7378 WRITE_ONCE(ctx
->rings
->cq_overflow
,
7379 atomic_inc_return(&ctx
->cached_cq_overflow
));
7382 * Put inflight ref and overflow ref. If that's
7383 * all we had, then we're done with this request.
7385 if (refcount_sub_and_test(2, &cancel_req
->refs
)) {
7386 io_put_req(cancel_req
);
7387 finish_wait(&ctx
->inflight_wait
, &wait
);
7392 io_wq_cancel_work(ctx
->io_wq
, &cancel_req
->work
);
7393 io_put_req(cancel_req
);
7395 finish_wait(&ctx
->inflight_wait
, &wait
);
7399 static int io_uring_flush(struct file
*file
, void *data
)
7401 struct io_ring_ctx
*ctx
= file
->private_data
;
7403 io_uring_cancel_files(ctx
, data
);
7406 * If the task is going away, cancel work it may have pending
7408 if (fatal_signal_pending(current
) || (current
->flags
& PF_EXITING
))
7409 io_wq_cancel_pid(ctx
->io_wq
, task_pid_vnr(current
));
7414 static void *io_uring_validate_mmap_request(struct file
*file
,
7415 loff_t pgoff
, size_t sz
)
7417 struct io_ring_ctx
*ctx
= file
->private_data
;
7418 loff_t offset
= pgoff
<< PAGE_SHIFT
;
7423 case IORING_OFF_SQ_RING
:
7424 case IORING_OFF_CQ_RING
:
7427 case IORING_OFF_SQES
:
7431 return ERR_PTR(-EINVAL
);
7434 page
= virt_to_head_page(ptr
);
7435 if (sz
> page_size(page
))
7436 return ERR_PTR(-EINVAL
);
7443 static int io_uring_mmap(struct file
*file
, struct vm_area_struct
*vma
)
7445 size_t sz
= vma
->vm_end
- vma
->vm_start
;
7449 ptr
= io_uring_validate_mmap_request(file
, vma
->vm_pgoff
, sz
);
7451 return PTR_ERR(ptr
);
7453 pfn
= virt_to_phys(ptr
) >> PAGE_SHIFT
;
7454 return remap_pfn_range(vma
, vma
->vm_start
, pfn
, sz
, vma
->vm_page_prot
);
7457 #else /* !CONFIG_MMU */
7459 static int io_uring_mmap(struct file
*file
, struct vm_area_struct
*vma
)
7461 return vma
->vm_flags
& (VM_SHARED
| VM_MAYSHARE
) ? 0 : -EINVAL
;
7464 static unsigned int io_uring_nommu_mmap_capabilities(struct file
*file
)
7466 return NOMMU_MAP_DIRECT
| NOMMU_MAP_READ
| NOMMU_MAP_WRITE
;
7469 static unsigned long io_uring_nommu_get_unmapped_area(struct file
*file
,
7470 unsigned long addr
, unsigned long len
,
7471 unsigned long pgoff
, unsigned long flags
)
7475 ptr
= io_uring_validate_mmap_request(file
, pgoff
, len
);
7477 return PTR_ERR(ptr
);
7479 return (unsigned long) ptr
;
7482 #endif /* !CONFIG_MMU */
7484 SYSCALL_DEFINE6(io_uring_enter
, unsigned int, fd
, u32
, to_submit
,
7485 u32
, min_complete
, u32
, flags
, const sigset_t __user
*, sig
,
7488 struct io_ring_ctx
*ctx
;
7493 if (current
->task_works
)
7496 if (flags
& ~(IORING_ENTER_GETEVENTS
| IORING_ENTER_SQ_WAKEUP
))
7504 if (f
.file
->f_op
!= &io_uring_fops
)
7508 ctx
= f
.file
->private_data
;
7509 if (!percpu_ref_tryget(&ctx
->refs
))
7513 * For SQ polling, the thread will do all submissions and completions.
7514 * Just return the requested submit count, and wake the thread if
7518 if (ctx
->flags
& IORING_SETUP_SQPOLL
) {
7519 if (!list_empty_careful(&ctx
->cq_overflow_list
))
7520 io_cqring_overflow_flush(ctx
, false);
7521 if (flags
& IORING_ENTER_SQ_WAKEUP
)
7522 wake_up(&ctx
->sqo_wait
);
7523 submitted
= to_submit
;
7524 } else if (to_submit
) {
7525 mutex_lock(&ctx
->uring_lock
);
7526 submitted
= io_submit_sqes(ctx
, to_submit
, f
.file
, fd
, false);
7527 mutex_unlock(&ctx
->uring_lock
);
7529 if (submitted
!= to_submit
)
7532 if (flags
& IORING_ENTER_GETEVENTS
) {
7533 unsigned nr_events
= 0;
7535 min_complete
= min(min_complete
, ctx
->cq_entries
);
7538 * When SETUP_IOPOLL and SETUP_SQPOLL are both enabled, user
7539 * space applications don't need to do io completion events
7540 * polling again, they can rely on io_sq_thread to do polling
7541 * work, which can reduce cpu usage and uring_lock contention.
7543 if (ctx
->flags
& IORING_SETUP_IOPOLL
&&
7544 !(ctx
->flags
& IORING_SETUP_SQPOLL
)) {
7545 ret
= io_iopoll_check(ctx
, &nr_events
, min_complete
);
7547 ret
= io_cqring_wait(ctx
, min_complete
, sig
, sigsz
);
7552 percpu_ref_put(&ctx
->refs
);
7555 return submitted
? submitted
: ret
;
7558 #ifdef CONFIG_PROC_FS
7559 static int io_uring_show_cred(int id
, void *p
, void *data
)
7561 const struct cred
*cred
= p
;
7562 struct seq_file
*m
= data
;
7563 struct user_namespace
*uns
= seq_user_ns(m
);
7564 struct group_info
*gi
;
7569 seq_printf(m
, "%5d\n", id
);
7570 seq_put_decimal_ull(m
, "\tUid:\t", from_kuid_munged(uns
, cred
->uid
));
7571 seq_put_decimal_ull(m
, "\t\t", from_kuid_munged(uns
, cred
->euid
));
7572 seq_put_decimal_ull(m
, "\t\t", from_kuid_munged(uns
, cred
->suid
));
7573 seq_put_decimal_ull(m
, "\t\t", from_kuid_munged(uns
, cred
->fsuid
));
7574 seq_put_decimal_ull(m
, "\n\tGid:\t", from_kgid_munged(uns
, cred
->gid
));
7575 seq_put_decimal_ull(m
, "\t\t", from_kgid_munged(uns
, cred
->egid
));
7576 seq_put_decimal_ull(m
, "\t\t", from_kgid_munged(uns
, cred
->sgid
));
7577 seq_put_decimal_ull(m
, "\t\t", from_kgid_munged(uns
, cred
->fsgid
));
7578 seq_puts(m
, "\n\tGroups:\t");
7579 gi
= cred
->group_info
;
7580 for (g
= 0; g
< gi
->ngroups
; g
++) {
7581 seq_put_decimal_ull(m
, g
? " " : "",
7582 from_kgid_munged(uns
, gi
->gid
[g
]));
7584 seq_puts(m
, "\n\tCapEff:\t");
7585 cap
= cred
->cap_effective
;
7586 CAP_FOR_EACH_U32(__capi
)
7587 seq_put_hex_ll(m
, NULL
, cap
.cap
[CAP_LAST_U32
- __capi
], 8);
7592 static void __io_uring_show_fdinfo(struct io_ring_ctx
*ctx
, struct seq_file
*m
)
7596 mutex_lock(&ctx
->uring_lock
);
7597 seq_printf(m
, "UserFiles:\t%u\n", ctx
->nr_user_files
);
7598 for (i
= 0; i
< ctx
->nr_user_files
; i
++) {
7599 struct fixed_file_table
*table
;
7602 table
= &ctx
->file_data
->table
[i
>> IORING_FILE_TABLE_SHIFT
];
7603 f
= table
->files
[i
& IORING_FILE_TABLE_MASK
];
7605 seq_printf(m
, "%5u: %s\n", i
, file_dentry(f
)->d_iname
);
7607 seq_printf(m
, "%5u: <none>\n", i
);
7609 seq_printf(m
, "UserBufs:\t%u\n", ctx
->nr_user_bufs
);
7610 for (i
= 0; i
< ctx
->nr_user_bufs
; i
++) {
7611 struct io_mapped_ubuf
*buf
= &ctx
->user_bufs
[i
];
7613 seq_printf(m
, "%5u: 0x%llx/%u\n", i
, buf
->ubuf
,
7614 (unsigned int) buf
->len
);
7616 if (!idr_is_empty(&ctx
->personality_idr
)) {
7617 seq_printf(m
, "Personalities:\n");
7618 idr_for_each(&ctx
->personality_idr
, io_uring_show_cred
, m
);
7620 seq_printf(m
, "PollList:\n");
7621 spin_lock_irq(&ctx
->completion_lock
);
7622 for (i
= 0; i
< (1U << ctx
->cancel_hash_bits
); i
++) {
7623 struct hlist_head
*list
= &ctx
->cancel_hash
[i
];
7624 struct io_kiocb
*req
;
7626 hlist_for_each_entry(req
, list
, hash_node
)
7627 seq_printf(m
, " op=%d, task_works=%d\n", req
->opcode
,
7628 req
->task
->task_works
!= NULL
);
7630 spin_unlock_irq(&ctx
->completion_lock
);
7631 mutex_unlock(&ctx
->uring_lock
);
7634 static void io_uring_show_fdinfo(struct seq_file
*m
, struct file
*f
)
7636 struct io_ring_ctx
*ctx
= f
->private_data
;
7638 if (percpu_ref_tryget(&ctx
->refs
)) {
7639 __io_uring_show_fdinfo(ctx
, m
);
7640 percpu_ref_put(&ctx
->refs
);
7645 static const struct file_operations io_uring_fops
= {
7646 .release
= io_uring_release
,
7647 .flush
= io_uring_flush
,
7648 .mmap
= io_uring_mmap
,
7650 .get_unmapped_area
= io_uring_nommu_get_unmapped_area
,
7651 .mmap_capabilities
= io_uring_nommu_mmap_capabilities
,
7653 .poll
= io_uring_poll
,
7654 .fasync
= io_uring_fasync
,
7655 #ifdef CONFIG_PROC_FS
7656 .show_fdinfo
= io_uring_show_fdinfo
,
7660 static int io_allocate_scq_urings(struct io_ring_ctx
*ctx
,
7661 struct io_uring_params
*p
)
7663 struct io_rings
*rings
;
7664 size_t size
, sq_array_offset
;
7666 size
= rings_size(p
->sq_entries
, p
->cq_entries
, &sq_array_offset
);
7667 if (size
== SIZE_MAX
)
7670 rings
= io_mem_alloc(size
);
7675 ctx
->sq_array
= (u32
*)((char *)rings
+ sq_array_offset
);
7676 rings
->sq_ring_mask
= p
->sq_entries
- 1;
7677 rings
->cq_ring_mask
= p
->cq_entries
- 1;
7678 rings
->sq_ring_entries
= p
->sq_entries
;
7679 rings
->cq_ring_entries
= p
->cq_entries
;
7680 ctx
->sq_mask
= rings
->sq_ring_mask
;
7681 ctx
->cq_mask
= rings
->cq_ring_mask
;
7682 ctx
->sq_entries
= rings
->sq_ring_entries
;
7683 ctx
->cq_entries
= rings
->cq_ring_entries
;
7685 size
= array_size(sizeof(struct io_uring_sqe
), p
->sq_entries
);
7686 if (size
== SIZE_MAX
) {
7687 io_mem_free(ctx
->rings
);
7692 ctx
->sq_sqes
= io_mem_alloc(size
);
7693 if (!ctx
->sq_sqes
) {
7694 io_mem_free(ctx
->rings
);
7703 * Allocate an anonymous fd, this is what constitutes the application
7704 * visible backing of an io_uring instance. The application mmaps this
7705 * fd to gain access to the SQ/CQ ring details. If UNIX sockets are enabled,
7706 * we have to tie this fd to a socket for file garbage collection purposes.
7708 static int io_uring_get_fd(struct io_ring_ctx
*ctx
)
7713 #if defined(CONFIG_UNIX)
7714 ret
= sock_create_kern(&init_net
, PF_UNIX
, SOCK_RAW
, IPPROTO_IP
,
7720 ret
= get_unused_fd_flags(O_RDWR
| O_CLOEXEC
);
7724 file
= anon_inode_getfile("[io_uring]", &io_uring_fops
, ctx
,
7725 O_RDWR
| O_CLOEXEC
);
7728 ret
= PTR_ERR(file
);
7732 #if defined(CONFIG_UNIX)
7733 ctx
->ring_sock
->file
= file
;
7735 fd_install(ret
, file
);
7738 #if defined(CONFIG_UNIX)
7739 sock_release(ctx
->ring_sock
);
7740 ctx
->ring_sock
= NULL
;
7745 static int io_uring_create(unsigned entries
, struct io_uring_params
*p
,
7746 struct io_uring_params __user
*params
)
7748 struct user_struct
*user
= NULL
;
7749 struct io_ring_ctx
*ctx
;
7755 if (entries
> IORING_MAX_ENTRIES
) {
7756 if (!(p
->flags
& IORING_SETUP_CLAMP
))
7758 entries
= IORING_MAX_ENTRIES
;
7762 * Use twice as many entries for the CQ ring. It's possible for the
7763 * application to drive a higher depth than the size of the SQ ring,
7764 * since the sqes are only used at submission time. This allows for
7765 * some flexibility in overcommitting a bit. If the application has
7766 * set IORING_SETUP_CQSIZE, it will have passed in the desired number
7767 * of CQ ring entries manually.
7769 p
->sq_entries
= roundup_pow_of_two(entries
);
7770 if (p
->flags
& IORING_SETUP_CQSIZE
) {
7772 * If IORING_SETUP_CQSIZE is set, we do the same roundup
7773 * to a power-of-two, if it isn't already. We do NOT impose
7774 * any cq vs sq ring sizing.
7776 if (p
->cq_entries
< p
->sq_entries
)
7778 if (p
->cq_entries
> IORING_MAX_CQ_ENTRIES
) {
7779 if (!(p
->flags
& IORING_SETUP_CLAMP
))
7781 p
->cq_entries
= IORING_MAX_CQ_ENTRIES
;
7783 p
->cq_entries
= roundup_pow_of_two(p
->cq_entries
);
7785 p
->cq_entries
= 2 * p
->sq_entries
;
7788 user
= get_uid(current_user());
7789 account_mem
= !capable(CAP_IPC_LOCK
);
7792 ret
= io_account_mem(user
,
7793 ring_pages(p
->sq_entries
, p
->cq_entries
));
7800 ctx
= io_ring_ctx_alloc(p
);
7803 io_unaccount_mem(user
, ring_pages(p
->sq_entries
,
7808 ctx
->compat
= in_compat_syscall();
7809 ctx
->account_mem
= account_mem
;
7811 ctx
->creds
= get_current_cred();
7813 ret
= io_allocate_scq_urings(ctx
, p
);
7817 ret
= io_sq_offload_start(ctx
, p
);
7821 memset(&p
->sq_off
, 0, sizeof(p
->sq_off
));
7822 p
->sq_off
.head
= offsetof(struct io_rings
, sq
.head
);
7823 p
->sq_off
.tail
= offsetof(struct io_rings
, sq
.tail
);
7824 p
->sq_off
.ring_mask
= offsetof(struct io_rings
, sq_ring_mask
);
7825 p
->sq_off
.ring_entries
= offsetof(struct io_rings
, sq_ring_entries
);
7826 p
->sq_off
.flags
= offsetof(struct io_rings
, sq_flags
);
7827 p
->sq_off
.dropped
= offsetof(struct io_rings
, sq_dropped
);
7828 p
->sq_off
.array
= (char *)ctx
->sq_array
- (char *)ctx
->rings
;
7830 memset(&p
->cq_off
, 0, sizeof(p
->cq_off
));
7831 p
->cq_off
.head
= offsetof(struct io_rings
, cq
.head
);
7832 p
->cq_off
.tail
= offsetof(struct io_rings
, cq
.tail
);
7833 p
->cq_off
.ring_mask
= offsetof(struct io_rings
, cq_ring_mask
);
7834 p
->cq_off
.ring_entries
= offsetof(struct io_rings
, cq_ring_entries
);
7835 p
->cq_off
.overflow
= offsetof(struct io_rings
, cq_overflow
);
7836 p
->cq_off
.cqes
= offsetof(struct io_rings
, cqes
);
7838 p
->features
= IORING_FEAT_SINGLE_MMAP
| IORING_FEAT_NODROP
|
7839 IORING_FEAT_SUBMIT_STABLE
| IORING_FEAT_RW_CUR_POS
|
7840 IORING_FEAT_CUR_PERSONALITY
| IORING_FEAT_FAST_POLL
;
7842 if (copy_to_user(params
, p
, sizeof(*p
))) {
7847 * Install ring fd as the very last thing, so we don't risk someone
7848 * having closed it before we finish setup
7850 ret
= io_uring_get_fd(ctx
);
7854 trace_io_uring_create(ret
, ctx
, p
->sq_entries
, p
->cq_entries
, p
->flags
);
7857 io_ring_ctx_wait_and_kill(ctx
);
7862 * Sets up an aio uring context, and returns the fd. Applications asks for a
7863 * ring size, we return the actual sq/cq ring sizes (among other things) in the
7864 * params structure passed in.
7866 static long io_uring_setup(u32 entries
, struct io_uring_params __user
*params
)
7868 struct io_uring_params p
;
7871 if (copy_from_user(&p
, params
, sizeof(p
)))
7873 for (i
= 0; i
< ARRAY_SIZE(p
.resv
); i
++) {
7878 if (p
.flags
& ~(IORING_SETUP_IOPOLL
| IORING_SETUP_SQPOLL
|
7879 IORING_SETUP_SQ_AFF
| IORING_SETUP_CQSIZE
|
7880 IORING_SETUP_CLAMP
| IORING_SETUP_ATTACH_WQ
))
7883 return io_uring_create(entries
, &p
, params
);
7886 SYSCALL_DEFINE2(io_uring_setup
, u32
, entries
,
7887 struct io_uring_params __user
*, params
)
7889 return io_uring_setup(entries
, params
);
7892 static int io_probe(struct io_ring_ctx
*ctx
, void __user
*arg
, unsigned nr_args
)
7894 struct io_uring_probe
*p
;
7898 size
= struct_size(p
, ops
, nr_args
);
7899 if (size
== SIZE_MAX
)
7901 p
= kzalloc(size
, GFP_KERNEL
);
7906 if (copy_from_user(p
, arg
, size
))
7909 if (memchr_inv(p
, 0, size
))
7912 p
->last_op
= IORING_OP_LAST
- 1;
7913 if (nr_args
> IORING_OP_LAST
)
7914 nr_args
= IORING_OP_LAST
;
7916 for (i
= 0; i
< nr_args
; i
++) {
7918 if (!io_op_defs
[i
].not_supported
)
7919 p
->ops
[i
].flags
= IO_URING_OP_SUPPORTED
;
7924 if (copy_to_user(arg
, p
, size
))
7931 static int io_register_personality(struct io_ring_ctx
*ctx
)
7933 const struct cred
*creds
= get_current_cred();
7936 id
= idr_alloc_cyclic(&ctx
->personality_idr
, (void *) creds
, 1,
7937 USHRT_MAX
, GFP_KERNEL
);
7943 static int io_unregister_personality(struct io_ring_ctx
*ctx
, unsigned id
)
7945 const struct cred
*old_creds
;
7947 old_creds
= idr_remove(&ctx
->personality_idr
, id
);
7949 put_cred(old_creds
);
7956 static bool io_register_op_must_quiesce(int op
)
7959 case IORING_UNREGISTER_FILES
:
7960 case IORING_REGISTER_FILES_UPDATE
:
7961 case IORING_REGISTER_PROBE
:
7962 case IORING_REGISTER_PERSONALITY
:
7963 case IORING_UNREGISTER_PERSONALITY
:
7970 static int __io_uring_register(struct io_ring_ctx
*ctx
, unsigned opcode
,
7971 void __user
*arg
, unsigned nr_args
)
7972 __releases(ctx
->uring_lock
)
7973 __acquires(ctx
->uring_lock
)
7978 * We're inside the ring mutex, if the ref is already dying, then
7979 * someone else killed the ctx or is already going through
7980 * io_uring_register().
7982 if (percpu_ref_is_dying(&ctx
->refs
))
7985 if (io_register_op_must_quiesce(opcode
)) {
7986 percpu_ref_kill(&ctx
->refs
);
7989 * Drop uring mutex before waiting for references to exit. If
7990 * another thread is currently inside io_uring_enter() it might
7991 * need to grab the uring_lock to make progress. If we hold it
7992 * here across the drain wait, then we can deadlock. It's safe
7993 * to drop the mutex here, since no new references will come in
7994 * after we've killed the percpu ref.
7996 mutex_unlock(&ctx
->uring_lock
);
7997 ret
= wait_for_completion_interruptible(&ctx
->completions
[0]);
7998 mutex_lock(&ctx
->uring_lock
);
8000 percpu_ref_resurrect(&ctx
->refs
);
8007 case IORING_REGISTER_BUFFERS
:
8008 ret
= io_sqe_buffer_register(ctx
, arg
, nr_args
);
8010 case IORING_UNREGISTER_BUFFERS
:
8014 ret
= io_sqe_buffer_unregister(ctx
);
8016 case IORING_REGISTER_FILES
:
8017 ret
= io_sqe_files_register(ctx
, arg
, nr_args
);
8019 case IORING_UNREGISTER_FILES
:
8023 ret
= io_sqe_files_unregister(ctx
);
8025 case IORING_REGISTER_FILES_UPDATE
:
8026 ret
= io_sqe_files_update(ctx
, arg
, nr_args
);
8028 case IORING_REGISTER_EVENTFD
:
8029 case IORING_REGISTER_EVENTFD_ASYNC
:
8033 ret
= io_eventfd_register(ctx
, arg
);
8036 if (opcode
== IORING_REGISTER_EVENTFD_ASYNC
)
8037 ctx
->eventfd_async
= 1;
8039 ctx
->eventfd_async
= 0;
8041 case IORING_UNREGISTER_EVENTFD
:
8045 ret
= io_eventfd_unregister(ctx
);
8047 case IORING_REGISTER_PROBE
:
8049 if (!arg
|| nr_args
> 256)
8051 ret
= io_probe(ctx
, arg
, nr_args
);
8053 case IORING_REGISTER_PERSONALITY
:
8057 ret
= io_register_personality(ctx
);
8059 case IORING_UNREGISTER_PERSONALITY
:
8063 ret
= io_unregister_personality(ctx
, nr_args
);
8070 if (io_register_op_must_quiesce(opcode
)) {
8071 /* bring the ctx back to life */
8072 percpu_ref_reinit(&ctx
->refs
);
8074 reinit_completion(&ctx
->completions
[0]);
8079 SYSCALL_DEFINE4(io_uring_register
, unsigned int, fd
, unsigned int, opcode
,
8080 void __user
*, arg
, unsigned int, nr_args
)
8082 struct io_ring_ctx
*ctx
;
8091 if (f
.file
->f_op
!= &io_uring_fops
)
8094 ctx
= f
.file
->private_data
;
8096 mutex_lock(&ctx
->uring_lock
);
8097 ret
= __io_uring_register(ctx
, opcode
, arg
, nr_args
);
8098 mutex_unlock(&ctx
->uring_lock
);
8099 trace_io_uring_register(ctx
, opcode
, ctx
->nr_user_files
, ctx
->nr_user_bufs
,
8100 ctx
->cq_ev_fd
!= NULL
, ret
);
8106 static int __init
io_uring_init(void)
8108 #define __BUILD_BUG_VERIFY_ELEMENT(stype, eoffset, etype, ename) do { \
8109 BUILD_BUG_ON(offsetof(stype, ename) != eoffset); \
8110 BUILD_BUG_ON(sizeof(etype) != sizeof_field(stype, ename)); \
8113 #define BUILD_BUG_SQE_ELEM(eoffset, etype, ename) \
8114 __BUILD_BUG_VERIFY_ELEMENT(struct io_uring_sqe, eoffset, etype, ename)
8115 BUILD_BUG_ON(sizeof(struct io_uring_sqe
) != 64);
8116 BUILD_BUG_SQE_ELEM(0, __u8
, opcode
);
8117 BUILD_BUG_SQE_ELEM(1, __u8
, flags
);
8118 BUILD_BUG_SQE_ELEM(2, __u16
, ioprio
);
8119 BUILD_BUG_SQE_ELEM(4, __s32
, fd
);
8120 BUILD_BUG_SQE_ELEM(8, __u64
, off
);
8121 BUILD_BUG_SQE_ELEM(8, __u64
, addr2
);
8122 BUILD_BUG_SQE_ELEM(16, __u64
, addr
);
8123 BUILD_BUG_SQE_ELEM(16, __u64
, splice_off_in
);
8124 BUILD_BUG_SQE_ELEM(24, __u32
, len
);
8125 BUILD_BUG_SQE_ELEM(28, __kernel_rwf_t
, rw_flags
);
8126 BUILD_BUG_SQE_ELEM(28, /* compat */ int, rw_flags
);
8127 BUILD_BUG_SQE_ELEM(28, /* compat */ __u32
, rw_flags
);
8128 BUILD_BUG_SQE_ELEM(28, __u32
, fsync_flags
);
8129 BUILD_BUG_SQE_ELEM(28, __u16
, poll_events
);
8130 BUILD_BUG_SQE_ELEM(28, __u32
, sync_range_flags
);
8131 BUILD_BUG_SQE_ELEM(28, __u32
, msg_flags
);
8132 BUILD_BUG_SQE_ELEM(28, __u32
, timeout_flags
);
8133 BUILD_BUG_SQE_ELEM(28, __u32
, accept_flags
);
8134 BUILD_BUG_SQE_ELEM(28, __u32
, cancel_flags
);
8135 BUILD_BUG_SQE_ELEM(28, __u32
, open_flags
);
8136 BUILD_BUG_SQE_ELEM(28, __u32
, statx_flags
);
8137 BUILD_BUG_SQE_ELEM(28, __u32
, fadvise_advice
);
8138 BUILD_BUG_SQE_ELEM(28, __u32
, splice_flags
);
8139 BUILD_BUG_SQE_ELEM(32, __u64
, user_data
);
8140 BUILD_BUG_SQE_ELEM(40, __u16
, buf_index
);
8141 BUILD_BUG_SQE_ELEM(42, __u16
, personality
);
8142 BUILD_BUG_SQE_ELEM(44, __s32
, splice_fd_in
);
8144 BUILD_BUG_ON(ARRAY_SIZE(io_op_defs
) != IORING_OP_LAST
);
8145 BUILD_BUG_ON(__REQ_F_LAST_BIT
>= 8 * sizeof(int));
8146 req_cachep
= KMEM_CACHE(io_kiocb
, SLAB_HWCACHE_ALIGN
| SLAB_PANIC
);
8149 __initcall(io_uring_init
);