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