]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - fs/io_uring.c
io_uring: remove REQ_F_IO_DRAINED
[mirror_ubuntu-jammy-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>
47#include <linux/refcount.h>
48#include <linux/uio.h>
49
50#include <linux/sched/signal.h>
51#include <linux/fs.h>
52#include <linux/file.h>
53#include <linux/fdtable.h>
54#include <linux/mm.h>
55#include <linux/mman.h>
56#include <linux/mmu_context.h>
57#include <linux/percpu.h>
58#include <linux/slab.h>
6c271ce2 59#include <linux/kthread.h>
2b188cc1 60#include <linux/blkdev.h>
edafccee 61#include <linux/bvec.h>
2b188cc1
JA
62#include <linux/net.h>
63#include <net/sock.h>
64#include <net/af_unix.h>
6b06314c 65#include <net/scm.h>
2b188cc1
JA
66#include <linux/anon_inodes.h>
67#include <linux/sched/mm.h>
68#include <linux/uaccess.h>
69#include <linux/nospec.h>
edafccee
JA
70#include <linux/sizes.h>
71#include <linux/hugetlb.h>
aa4c3967 72#include <linux/highmem.h>
15b71abe
JA
73#include <linux/namei.h>
74#include <linux/fsnotify.h>
4840e418 75#include <linux/fadvise.h>
2b188cc1 76
c826bd7a
DD
77#define CREATE_TRACE_POINTS
78#include <trace/events/io_uring.h>
79
2b188cc1
JA
80#include <uapi/linux/io_uring.h>
81
82#include "internal.h"
561fb04a 83#include "io-wq.h"
2b188cc1 84
5277deaa 85#define IORING_MAX_ENTRIES 32768
33a107f0 86#define IORING_MAX_CQ_ENTRIES (2 * IORING_MAX_ENTRIES)
65e19f54
JA
87
88/*
89 * Shift of 9 is 512 entries, or exactly one page on 64-bit archs
90 */
91#define IORING_FILE_TABLE_SHIFT 9
92#define IORING_MAX_FILES_TABLE (1U << IORING_FILE_TABLE_SHIFT)
93#define IORING_FILE_TABLE_MASK (IORING_MAX_FILES_TABLE - 1)
94#define IORING_MAX_FIXED_FILES (64 * IORING_MAX_FILES_TABLE)
2b188cc1
JA
95
96struct io_uring {
97 u32 head ____cacheline_aligned_in_smp;
98 u32 tail ____cacheline_aligned_in_smp;
99};
100
1e84b97b 101/*
75b28aff
HV
102 * This data is shared with the application through the mmap at offsets
103 * IORING_OFF_SQ_RING and IORING_OFF_CQ_RING.
1e84b97b
SB
104 *
105 * The offsets to the member fields are published through struct
106 * io_sqring_offsets when calling io_uring_setup.
107 */
75b28aff 108struct io_rings {
1e84b97b
SB
109 /*
110 * Head and tail offsets into the ring; the offsets need to be
111 * masked to get valid indices.
112 *
75b28aff
HV
113 * The kernel controls head of the sq ring and the tail of the cq ring,
114 * and the application controls tail of the sq ring and the head of the
115 * cq ring.
1e84b97b 116 */
75b28aff 117 struct io_uring sq, cq;
1e84b97b 118 /*
75b28aff 119 * Bitmasks to apply to head and tail offsets (constant, equals
1e84b97b
SB
120 * ring_entries - 1)
121 */
75b28aff
HV
122 u32 sq_ring_mask, cq_ring_mask;
123 /* Ring sizes (constant, power of 2) */
124 u32 sq_ring_entries, cq_ring_entries;
1e84b97b
SB
125 /*
126 * Number of invalid entries dropped by the kernel due to
127 * invalid index stored in array
128 *
129 * Written by the kernel, shouldn't be modified by the
130 * application (i.e. get number of "new events" by comparing to
131 * cached value).
132 *
133 * After a new SQ head value was read by the application this
134 * counter includes all submissions that were dropped reaching
135 * the new SQ head (and possibly more).
136 */
75b28aff 137 u32 sq_dropped;
1e84b97b
SB
138 /*
139 * Runtime flags
140 *
141 * Written by the kernel, shouldn't be modified by the
142 * application.
143 *
144 * The application needs a full memory barrier before checking
145 * for IORING_SQ_NEED_WAKEUP after updating the sq tail.
146 */
75b28aff 147 u32 sq_flags;
1e84b97b
SB
148 /*
149 * Number of completion events lost because the queue was full;
150 * this should be avoided by the application by making sure
0b4295b5 151 * there are not more requests pending than there is space in
1e84b97b
SB
152 * the completion queue.
153 *
154 * Written by the kernel, shouldn't be modified by the
155 * application (i.e. get number of "new events" by comparing to
156 * cached value).
157 *
158 * As completion events come in out of order this counter is not
159 * ordered with any other data.
160 */
75b28aff 161 u32 cq_overflow;
1e84b97b
SB
162 /*
163 * Ring buffer of completion events.
164 *
165 * The kernel writes completion events fresh every time they are
166 * produced, so the application is allowed to modify pending
167 * entries.
168 */
75b28aff 169 struct io_uring_cqe cqes[] ____cacheline_aligned_in_smp;
2b188cc1
JA
170};
171
edafccee
JA
172struct io_mapped_ubuf {
173 u64 ubuf;
174 size_t len;
175 struct bio_vec *bvec;
176 unsigned int nr_bvecs;
177};
178
65e19f54
JA
179struct fixed_file_table {
180 struct file **files;
31b51510
JA
181};
182
05f3fb3c
JA
183enum {
184 FFD_F_ATOMIC,
185};
186
187struct fixed_file_data {
188 struct fixed_file_table *table;
189 struct io_ring_ctx *ctx;
190
191 struct percpu_ref refs;
192 struct llist_head put_llist;
193 unsigned long state;
194 struct work_struct ref_work;
195 struct completion done;
196};
197
2b188cc1
JA
198struct io_ring_ctx {
199 struct {
200 struct percpu_ref refs;
201 } ____cacheline_aligned_in_smp;
202
203 struct {
204 unsigned int flags;
69b3e546
JA
205 int compat: 1;
206 int account_mem: 1;
207 int cq_overflow_flushed: 1;
208 int drain_next: 1;
f2842ab5 209 int eventfd_async: 1;
2b188cc1 210
75b28aff
HV
211 /*
212 * Ring buffer of indices into array of io_uring_sqe, which is
213 * mmapped by the application using the IORING_OFF_SQES offset.
214 *
215 * This indirection could e.g. be used to assign fixed
216 * io_uring_sqe entries to operations and only submit them to
217 * the queue when needed.
218 *
219 * The kernel modifies neither the indices array nor the entries
220 * array.
221 */
222 u32 *sq_array;
2b188cc1
JA
223 unsigned cached_sq_head;
224 unsigned sq_entries;
225 unsigned sq_mask;
6c271ce2 226 unsigned sq_thread_idle;
498ccd9e 227 unsigned cached_sq_dropped;
206aefde 228 atomic_t cached_cq_overflow;
ad3eb2c8 229 unsigned long sq_check_overflow;
de0617e4
JA
230
231 struct list_head defer_list;
5262f567 232 struct list_head timeout_list;
1d7bb1d5 233 struct list_head cq_overflow_list;
fcb323cc
JA
234
235 wait_queue_head_t inflight_wait;
ad3eb2c8 236 struct io_uring_sqe *sq_sqes;
2b188cc1
JA
237 } ____cacheline_aligned_in_smp;
238
206aefde
JA
239 struct io_rings *rings;
240
2b188cc1 241 /* IO offload */
561fb04a 242 struct io_wq *io_wq;
6c271ce2 243 struct task_struct *sqo_thread; /* if using sq thread polling */
2b188cc1 244 struct mm_struct *sqo_mm;
6c271ce2 245 wait_queue_head_t sqo_wait;
75b28aff 246
6b06314c
JA
247 /*
248 * If used, fixed file set. Writers must ensure that ->refs is dead,
249 * readers must ensure that ->refs is alive as long as the file* is
250 * used. Only updated through io_uring_register(2).
251 */
05f3fb3c 252 struct fixed_file_data *file_data;
6b06314c 253 unsigned nr_user_files;
b14cca0c
PB
254 int ring_fd;
255 struct file *ring_file;
6b06314c 256
edafccee
JA
257 /* if used, fixed mapped user buffers */
258 unsigned nr_user_bufs;
259 struct io_mapped_ubuf *user_bufs;
260
2b188cc1
JA
261 struct user_struct *user;
262
0b8c0ec7 263 const struct cred *creds;
181e448d 264
206aefde
JA
265 /* 0 is for ctx quiesce/reinit/free, 1 is for sqo_thread started */
266 struct completion *completions;
267
0ddf92e8
JA
268 /* if all else fails... */
269 struct io_kiocb *fallback_req;
270
206aefde
JA
271#if defined(CONFIG_UNIX)
272 struct socket *ring_sock;
273#endif
274
275 struct {
276 unsigned cached_cq_tail;
277 unsigned cq_entries;
278 unsigned cq_mask;
279 atomic_t cq_timeouts;
ad3eb2c8 280 unsigned long cq_check_overflow;
206aefde
JA
281 struct wait_queue_head cq_wait;
282 struct fasync_struct *cq_fasync;
283 struct eventfd_ctx *cq_ev_fd;
284 } ____cacheline_aligned_in_smp;
2b188cc1
JA
285
286 struct {
287 struct mutex uring_lock;
288 wait_queue_head_t wait;
289 } ____cacheline_aligned_in_smp;
290
291 struct {
292 spinlock_t completion_lock;
e94f141b
JA
293 struct llist_head poll_llist;
294
def596e9
JA
295 /*
296 * ->poll_list is protected by the ctx->uring_lock for
297 * io_uring instances that don't use IORING_SETUP_SQPOLL.
298 * For SQPOLL, only the single threaded io_sq_thread() will
299 * manipulate the list, hence no extra locking is needed there.
300 */
301 struct list_head poll_list;
78076bb6
JA
302 struct hlist_head *cancel_hash;
303 unsigned cancel_hash_bits;
e94f141b 304 bool poll_multi_file;
31b51510 305
fcb323cc
JA
306 spinlock_t inflight_lock;
307 struct list_head inflight_list;
2b188cc1 308 } ____cacheline_aligned_in_smp;
2b188cc1
JA
309};
310
09bb8394
JA
311/*
312 * First field must be the file pointer in all the
313 * iocb unions! See also 'struct kiocb' in <linux/fs.h>
314 */
221c5eb2
JA
315struct io_poll_iocb {
316 struct file *file;
0969e783
JA
317 union {
318 struct wait_queue_head *head;
319 u64 addr;
320 };
221c5eb2 321 __poll_t events;
8c838788 322 bool done;
221c5eb2 323 bool canceled;
392edb45 324 struct wait_queue_entry wait;
221c5eb2
JA
325};
326
b5dba59e
JA
327struct io_close {
328 struct file *file;
329 struct file *put_file;
330 int fd;
331};
332
ad8a48ac
JA
333struct io_timeout_data {
334 struct io_kiocb *req;
335 struct hrtimer timer;
336 struct timespec64 ts;
337 enum hrtimer_mode mode;
cc42e0ac 338 u32 seq_offset;
ad8a48ac
JA
339};
340
8ed8d3c3
JA
341struct io_accept {
342 struct file *file;
343 struct sockaddr __user *addr;
344 int __user *addr_len;
345 int flags;
346};
347
348struct io_sync {
349 struct file *file;
350 loff_t len;
351 loff_t off;
352 int flags;
d63d1b5e 353 int mode;
8ed8d3c3
JA
354};
355
fbf23849
JA
356struct io_cancel {
357 struct file *file;
358 u64 addr;
359};
360
b29472ee
JA
361struct io_timeout {
362 struct file *file;
363 u64 addr;
364 int flags;
26a61679 365 unsigned count;
b29472ee
JA
366};
367
9adbd45d
JA
368struct io_rw {
369 /* NOTE: kiocb has the file as the first member, so don't do it here */
370 struct kiocb kiocb;
371 u64 addr;
372 u64 len;
373};
374
3fbb51c1
JA
375struct io_connect {
376 struct file *file;
377 struct sockaddr __user *addr;
378 int addr_len;
379};
380
e47293fd
JA
381struct io_sr_msg {
382 struct file *file;
fddaface
JA
383 union {
384 struct user_msghdr __user *msg;
385 void __user *buf;
386 };
e47293fd 387 int msg_flags;
fddaface 388 size_t len;
e47293fd
JA
389};
390
15b71abe
JA
391struct io_open {
392 struct file *file;
393 int dfd;
eddc7ef5 394 union {
eddc7ef5
JA
395 unsigned mask;
396 };
15b71abe 397 struct filename *filename;
eddc7ef5 398 struct statx __user *buffer;
c12cedf2 399 struct open_how how;
15b71abe
JA
400};
401
05f3fb3c
JA
402struct io_files_update {
403 struct file *file;
404 u64 arg;
405 u32 nr_args;
406 u32 offset;
407};
408
4840e418
JA
409struct io_fadvise {
410 struct file *file;
411 u64 offset;
412 u32 len;
413 u32 advice;
414};
415
c1ca757b
JA
416struct io_madvise {
417 struct file *file;
418 u64 addr;
419 u32 len;
420 u32 advice;
421};
422
f499a021
JA
423struct io_async_connect {
424 struct sockaddr_storage address;
425};
426
03b1230c
JA
427struct io_async_msghdr {
428 struct iovec fast_iov[UIO_FASTIOV];
429 struct iovec *iov;
430 struct sockaddr __user *uaddr;
431 struct msghdr msg;
432};
433
f67676d1
JA
434struct io_async_rw {
435 struct iovec fast_iov[UIO_FASTIOV];
436 struct iovec *iov;
437 ssize_t nr_segs;
438 ssize_t size;
439};
440
15b71abe
JA
441struct io_async_open {
442 struct filename *filename;
443};
444
1a6b74fc 445struct io_async_ctx {
f67676d1
JA
446 union {
447 struct io_async_rw rw;
03b1230c 448 struct io_async_msghdr msg;
f499a021 449 struct io_async_connect connect;
2d28390a 450 struct io_timeout_data timeout;
15b71abe 451 struct io_async_open open;
f67676d1 452 };
1a6b74fc
JA
453};
454
09bb8394
JA
455/*
456 * NOTE! Each of the iocb union members has the file pointer
457 * as the first entry in their struct definition. So you can
458 * access the file pointer through any of the sub-structs,
459 * or directly as just 'ki_filp' in this struct.
460 */
2b188cc1 461struct io_kiocb {
221c5eb2 462 union {
09bb8394 463 struct file *file;
9adbd45d 464 struct io_rw rw;
221c5eb2 465 struct io_poll_iocb poll;
8ed8d3c3
JA
466 struct io_accept accept;
467 struct io_sync sync;
fbf23849 468 struct io_cancel cancel;
b29472ee 469 struct io_timeout timeout;
3fbb51c1 470 struct io_connect connect;
e47293fd 471 struct io_sr_msg sr_msg;
15b71abe 472 struct io_open open;
b5dba59e 473 struct io_close close;
05f3fb3c 474 struct io_files_update files_update;
4840e418 475 struct io_fadvise fadvise;
c1ca757b 476 struct io_madvise madvise;
221c5eb2 477 };
2b188cc1 478
1a6b74fc 479 struct io_async_ctx *io;
b14cca0c
PB
480 /*
481 * llist_node is only used for poll deferred completions
482 */
483 struct llist_node llist_node;
cf6fd4bd
PB
484 bool has_user;
485 bool in_async;
486 bool needs_fixed_file;
d625c6ee 487 u8 opcode;
2b188cc1
JA
488
489 struct io_ring_ctx *ctx;
eac406c6
JA
490 union {
491 struct list_head list;
78076bb6 492 struct hlist_node hash_node;
eac406c6 493 };
9e645e11 494 struct list_head link_list;
2b188cc1 495 unsigned int flags;
c16361c1 496 refcount_t refs;
8449eeda 497#define REQ_F_NOWAIT 1 /* must not punt to workers */
def596e9 498#define REQ_F_IOPOLL_COMPLETED 2 /* polled IO has completed */
6b06314c 499#define REQ_F_FIXED_FILE 4 /* ctx owns file */
4d7dd462 500#define REQ_F_LINK_NEXT 8 /* already grabbed next link */
e2033e33 501#define REQ_F_IO_DRAIN 16 /* drain existing IO first */
9e645e11 502#define REQ_F_LINK 64 /* linked sqes */
2665abfd 503#define REQ_F_LINK_TIMEOUT 128 /* has linked timeout */
f7b76ac9 504#define REQ_F_FAIL_LINK 256 /* fail rest of links */
5262f567 505#define REQ_F_TIMEOUT 1024 /* timeout request */
491381ce
JA
506#define REQ_F_ISREG 2048 /* regular file */
507#define REQ_F_MUST_PUNT 4096 /* must be punted even for NONBLOCK */
93bd25bb 508#define REQ_F_TIMEOUT_NOSEQ 8192 /* no timeout sequence */
fb4b3d3f
LT
509#define REQ_F_INFLIGHT 16384 /* on inflight list */
510#define REQ_F_COMP_LOCKED 32768 /* completion under lock */
4e88d6e7 511#define REQ_F_HARDLINK 65536 /* doesn't sever on completion < 0 */
ce35a47a 512#define REQ_F_FORCE_ASYNC 131072 /* IOSQE_ASYNC */
ba04291e 513#define REQ_F_CUR_POS 262144 /* read/write uses file position */
2b188cc1 514 u64 user_data;
9e645e11 515 u32 result;
de0617e4 516 u32 sequence;
2b188cc1 517
fcb323cc
JA
518 struct list_head inflight_entry;
519
561fb04a 520 struct io_wq_work work;
2b188cc1
JA
521};
522
523#define IO_PLUG_THRESHOLD 2
def596e9 524#define IO_IOPOLL_BATCH 8
2b188cc1 525
9a56a232
JA
526struct io_submit_state {
527 struct blk_plug plug;
528
2579f913
JA
529 /*
530 * io_kiocb alloc cache
531 */
532 void *reqs[IO_IOPOLL_BATCH];
533 unsigned int free_reqs;
534 unsigned int cur_req;
535
9a56a232
JA
536 /*
537 * File reference cache
538 */
539 struct file *file;
540 unsigned int fd;
541 unsigned int has_refs;
542 unsigned int used_refs;
543 unsigned int ios_left;
544};
545
d3656344
JA
546struct io_op_def {
547 /* needs req->io allocated for deferral/async */
548 unsigned async_ctx : 1;
549 /* needs current->mm setup, does mm access */
550 unsigned needs_mm : 1;
551 /* needs req->file assigned */
552 unsigned needs_file : 1;
553 /* needs req->file assigned IFF fd is >= 0 */
554 unsigned fd_non_neg : 1;
555 /* hash wq insertion if file is a regular file */
556 unsigned hash_reg_file : 1;
557 /* unbound wq insertion if file is a non-regular file */
558 unsigned unbound_nonreg_file : 1;
66f4af93
JA
559 /* opcode is not supported by this kernel */
560 unsigned not_supported : 1;
d3656344
JA
561};
562
563static const struct io_op_def io_op_defs[] = {
564 {
565 /* IORING_OP_NOP */
566 },
567 {
568 /* IORING_OP_READV */
569 .async_ctx = 1,
570 .needs_mm = 1,
571 .needs_file = 1,
572 .unbound_nonreg_file = 1,
573 },
574 {
575 /* IORING_OP_WRITEV */
576 .async_ctx = 1,
577 .needs_mm = 1,
578 .needs_file = 1,
579 .hash_reg_file = 1,
580 .unbound_nonreg_file = 1,
581 },
582 {
583 /* IORING_OP_FSYNC */
584 .needs_file = 1,
585 },
586 {
587 /* IORING_OP_READ_FIXED */
588 .needs_file = 1,
589 .unbound_nonreg_file = 1,
590 },
591 {
592 /* IORING_OP_WRITE_FIXED */
593 .needs_file = 1,
594 .hash_reg_file = 1,
595 .unbound_nonreg_file = 1,
596 },
597 {
598 /* IORING_OP_POLL_ADD */
599 .needs_file = 1,
600 .unbound_nonreg_file = 1,
601 },
602 {
603 /* IORING_OP_POLL_REMOVE */
604 },
605 {
606 /* IORING_OP_SYNC_FILE_RANGE */
607 .needs_file = 1,
608 },
609 {
610 /* IORING_OP_SENDMSG */
611 .async_ctx = 1,
612 .needs_mm = 1,
613 .needs_file = 1,
614 .unbound_nonreg_file = 1,
615 },
616 {
617 /* IORING_OP_RECVMSG */
618 .async_ctx = 1,
619 .needs_mm = 1,
620 .needs_file = 1,
621 .unbound_nonreg_file = 1,
622 },
623 {
624 /* IORING_OP_TIMEOUT */
625 .async_ctx = 1,
626 .needs_mm = 1,
627 },
628 {
629 /* IORING_OP_TIMEOUT_REMOVE */
630 },
631 {
632 /* IORING_OP_ACCEPT */
633 .needs_mm = 1,
634 .needs_file = 1,
635 .unbound_nonreg_file = 1,
636 },
637 {
638 /* IORING_OP_ASYNC_CANCEL */
639 },
640 {
641 /* IORING_OP_LINK_TIMEOUT */
642 .async_ctx = 1,
643 .needs_mm = 1,
644 },
645 {
646 /* IORING_OP_CONNECT */
647 .async_ctx = 1,
648 .needs_mm = 1,
649 .needs_file = 1,
650 .unbound_nonreg_file = 1,
651 },
652 {
653 /* IORING_OP_FALLOCATE */
654 .needs_file = 1,
655 },
656 {
657 /* IORING_OP_OPENAT */
658 .needs_file = 1,
659 .fd_non_neg = 1,
660 },
661 {
662 /* IORING_OP_CLOSE */
663 .needs_file = 1,
664 },
665 {
666 /* IORING_OP_FILES_UPDATE */
667 .needs_mm = 1,
668 },
669 {
670 /* IORING_OP_STATX */
671 .needs_mm = 1,
672 .needs_file = 1,
673 .fd_non_neg = 1,
674 },
3a6820f2
JA
675 {
676 /* IORING_OP_READ */
677 .needs_mm = 1,
678 .needs_file = 1,
679 .unbound_nonreg_file = 1,
680 },
681 {
682 /* IORING_OP_WRITE */
683 .needs_mm = 1,
684 .needs_file = 1,
685 .unbound_nonreg_file = 1,
686 },
4840e418
JA
687 {
688 /* IORING_OP_FADVISE */
689 .needs_file = 1,
690 },
c1ca757b
JA
691 {
692 /* IORING_OP_MADVISE */
693 .needs_mm = 1,
694 },
fddaface
JA
695 {
696 /* IORING_OP_SEND */
697 .needs_mm = 1,
698 .needs_file = 1,
699 .unbound_nonreg_file = 1,
700 },
701 {
702 /* IORING_OP_RECV */
703 .needs_mm = 1,
704 .needs_file = 1,
705 .unbound_nonreg_file = 1,
706 },
cebdb986
JA
707 {
708 /* IORING_OP_OPENAT2 */
709 .needs_file = 1,
710 .fd_non_neg = 1,
711 },
d3656344
JA
712};
713
561fb04a 714static void io_wq_submit_work(struct io_wq_work **workptr);
78e19bbe 715static void io_cqring_fill_event(struct io_kiocb *req, long res);
ec9c02ad 716static void io_put_req(struct io_kiocb *req);
978db57e 717static void __io_double_put_req(struct io_kiocb *req);
94ae5e77
JA
718static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req);
719static void io_queue_linked_timeout(struct io_kiocb *req);
05f3fb3c
JA
720static int __io_sqe_files_update(struct io_ring_ctx *ctx,
721 struct io_uring_files_update *ip,
722 unsigned nr_args);
de0617e4 723
2b188cc1
JA
724static struct kmem_cache *req_cachep;
725
726static const struct file_operations io_uring_fops;
727
728struct sock *io_uring_get_socket(struct file *file)
729{
730#if defined(CONFIG_UNIX)
731 if (file->f_op == &io_uring_fops) {
732 struct io_ring_ctx *ctx = file->private_data;
733
734 return ctx->ring_sock->sk;
735 }
736#endif
737 return NULL;
738}
739EXPORT_SYMBOL(io_uring_get_socket);
740
741static void io_ring_ctx_ref_free(struct percpu_ref *ref)
742{
743 struct io_ring_ctx *ctx = container_of(ref, struct io_ring_ctx, refs);
744
206aefde 745 complete(&ctx->completions[0]);
2b188cc1
JA
746}
747
748static struct io_ring_ctx *io_ring_ctx_alloc(struct io_uring_params *p)
749{
750 struct io_ring_ctx *ctx;
78076bb6 751 int hash_bits;
2b188cc1
JA
752
753 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
754 if (!ctx)
755 return NULL;
756
0ddf92e8
JA
757 ctx->fallback_req = kmem_cache_alloc(req_cachep, GFP_KERNEL);
758 if (!ctx->fallback_req)
759 goto err;
760
206aefde
JA
761 ctx->completions = kmalloc(2 * sizeof(struct completion), GFP_KERNEL);
762 if (!ctx->completions)
763 goto err;
764
78076bb6
JA
765 /*
766 * Use 5 bits less than the max cq entries, that should give us around
767 * 32 entries per hash list if totally full and uniformly spread.
768 */
769 hash_bits = ilog2(p->cq_entries);
770 hash_bits -= 5;
771 if (hash_bits <= 0)
772 hash_bits = 1;
773 ctx->cancel_hash_bits = hash_bits;
774 ctx->cancel_hash = kmalloc((1U << hash_bits) * sizeof(struct hlist_head),
775 GFP_KERNEL);
776 if (!ctx->cancel_hash)
777 goto err;
778 __hash_init(ctx->cancel_hash, 1U << hash_bits);
779
21482896 780 if (percpu_ref_init(&ctx->refs, io_ring_ctx_ref_free,
206aefde
JA
781 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL))
782 goto err;
2b188cc1
JA
783
784 ctx->flags = p->flags;
785 init_waitqueue_head(&ctx->cq_wait);
1d7bb1d5 786 INIT_LIST_HEAD(&ctx->cq_overflow_list);
206aefde
JA
787 init_completion(&ctx->completions[0]);
788 init_completion(&ctx->completions[1]);
2b188cc1
JA
789 mutex_init(&ctx->uring_lock);
790 init_waitqueue_head(&ctx->wait);
791 spin_lock_init(&ctx->completion_lock);
e94f141b 792 init_llist_head(&ctx->poll_llist);
def596e9 793 INIT_LIST_HEAD(&ctx->poll_list);
de0617e4 794 INIT_LIST_HEAD(&ctx->defer_list);
5262f567 795 INIT_LIST_HEAD(&ctx->timeout_list);
fcb323cc
JA
796 init_waitqueue_head(&ctx->inflight_wait);
797 spin_lock_init(&ctx->inflight_lock);
798 INIT_LIST_HEAD(&ctx->inflight_list);
2b188cc1 799 return ctx;
206aefde 800err:
0ddf92e8
JA
801 if (ctx->fallback_req)
802 kmem_cache_free(req_cachep, ctx->fallback_req);
206aefde 803 kfree(ctx->completions);
78076bb6 804 kfree(ctx->cancel_hash);
206aefde
JA
805 kfree(ctx);
806 return NULL;
2b188cc1
JA
807}
808
9d858b21 809static inline bool __req_need_defer(struct io_kiocb *req)
7adf4eaf 810{
a197f664
JL
811 struct io_ring_ctx *ctx = req->ctx;
812
498ccd9e
JA
813 return req->sequence != ctx->cached_cq_tail + ctx->cached_sq_dropped
814 + atomic_read(&ctx->cached_cq_overflow);
7adf4eaf
JA
815}
816
9d858b21 817static inline bool req_need_defer(struct io_kiocb *req)
de0617e4 818{
87987898 819 if (unlikely(req->flags & REQ_F_IO_DRAIN))
9d858b21 820 return __req_need_defer(req);
de0617e4 821
9d858b21 822 return false;
de0617e4
JA
823}
824
7adf4eaf 825static struct io_kiocb *io_get_deferred_req(struct io_ring_ctx *ctx)
de0617e4
JA
826{
827 struct io_kiocb *req;
828
7adf4eaf 829 req = list_first_entry_or_null(&ctx->defer_list, struct io_kiocb, list);
9d858b21 830 if (req && !req_need_defer(req)) {
de0617e4
JA
831 list_del_init(&req->list);
832 return req;
833 }
834
835 return NULL;
836}
837
5262f567
JA
838static struct io_kiocb *io_get_timeout_req(struct io_ring_ctx *ctx)
839{
7adf4eaf
JA
840 struct io_kiocb *req;
841
842 req = list_first_entry_or_null(&ctx->timeout_list, struct io_kiocb, list);
93bd25bb
JA
843 if (req) {
844 if (req->flags & REQ_F_TIMEOUT_NOSEQ)
845 return NULL;
fb4b3d3f 846 if (!__req_need_defer(req)) {
93bd25bb
JA
847 list_del_init(&req->list);
848 return req;
849 }
7adf4eaf
JA
850 }
851
852 return NULL;
5262f567
JA
853}
854
de0617e4 855static void __io_commit_cqring(struct io_ring_ctx *ctx)
2b188cc1 856{
75b28aff 857 struct io_rings *rings = ctx->rings;
2b188cc1 858
07910158
PB
859 /* order cqe stores with ring update */
860 smp_store_release(&rings->cq.tail, ctx->cached_cq_tail);
2b188cc1 861
07910158
PB
862 if (wq_has_sleeper(&ctx->cq_wait)) {
863 wake_up_interruptible(&ctx->cq_wait);
864 kill_fasync(&ctx->cq_fasync, SIGIO, POLL_IN);
2b188cc1
JA
865 }
866}
867
94ae5e77
JA
868static inline bool io_prep_async_work(struct io_kiocb *req,
869 struct io_kiocb **link)
18d9be1a 870{
d3656344 871 const struct io_op_def *def = &io_op_defs[req->opcode];
561fb04a 872 bool do_hashed = false;
54a91f3b 873
d3656344
JA
874 if (req->flags & REQ_F_ISREG) {
875 if (def->hash_reg_file)
3529d8c2 876 do_hashed = true;
d3656344
JA
877 } else {
878 if (def->unbound_nonreg_file)
3529d8c2 879 req->work.flags |= IO_WQ_WORK_UNBOUND;
54a91f3b 880 }
d3656344 881 if (def->needs_mm)
3529d8c2 882 req->work.flags |= IO_WQ_WORK_NEEDS_USER;
54a91f3b 883
94ae5e77 884 *link = io_prep_linked_timeout(req);
561fb04a
JA
885 return do_hashed;
886}
887
a197f664 888static inline void io_queue_async_work(struct io_kiocb *req)
561fb04a 889{
a197f664 890 struct io_ring_ctx *ctx = req->ctx;
94ae5e77
JA
891 struct io_kiocb *link;
892 bool do_hashed;
893
894 do_hashed = io_prep_async_work(req, &link);
561fb04a
JA
895
896 trace_io_uring_queue_async_work(ctx, do_hashed, req, &req->work,
897 req->flags);
898 if (!do_hashed) {
899 io_wq_enqueue(ctx->io_wq, &req->work);
900 } else {
901 io_wq_enqueue_hashed(ctx->io_wq, &req->work,
902 file_inode(req->file));
903 }
94ae5e77
JA
904
905 if (link)
906 io_queue_linked_timeout(link);
18d9be1a
JA
907}
908
5262f567
JA
909static void io_kill_timeout(struct io_kiocb *req)
910{
911 int ret;
912
2d28390a 913 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
5262f567
JA
914 if (ret != -1) {
915 atomic_inc(&req->ctx->cq_timeouts);
842f9612 916 list_del_init(&req->list);
78e19bbe 917 io_cqring_fill_event(req, 0);
ec9c02ad 918 io_put_req(req);
5262f567
JA
919 }
920}
921
922static void io_kill_timeouts(struct io_ring_ctx *ctx)
923{
924 struct io_kiocb *req, *tmp;
925
926 spin_lock_irq(&ctx->completion_lock);
927 list_for_each_entry_safe(req, tmp, &ctx->timeout_list, list)
928 io_kill_timeout(req);
929 spin_unlock_irq(&ctx->completion_lock);
930}
931
de0617e4
JA
932static void io_commit_cqring(struct io_ring_ctx *ctx)
933{
934 struct io_kiocb *req;
935
5262f567
JA
936 while ((req = io_get_timeout_req(ctx)) != NULL)
937 io_kill_timeout(req);
938
de0617e4
JA
939 __io_commit_cqring(ctx);
940
87987898 941 while ((req = io_get_deferred_req(ctx)) != NULL)
a197f664 942 io_queue_async_work(req);
de0617e4
JA
943}
944
2b188cc1
JA
945static struct io_uring_cqe *io_get_cqring(struct io_ring_ctx *ctx)
946{
75b28aff 947 struct io_rings *rings = ctx->rings;
2b188cc1
JA
948 unsigned tail;
949
950 tail = ctx->cached_cq_tail;
115e12e5
SB
951 /*
952 * writes to the cq entry need to come after reading head; the
953 * control dependency is enough as we're using WRITE_ONCE to
954 * fill the cq entry
955 */
75b28aff 956 if (tail - READ_ONCE(rings->cq.head) == rings->cq_ring_entries)
2b188cc1
JA
957 return NULL;
958
959 ctx->cached_cq_tail++;
75b28aff 960 return &rings->cqes[tail & ctx->cq_mask];
2b188cc1
JA
961}
962
f2842ab5
JA
963static inline bool io_should_trigger_evfd(struct io_ring_ctx *ctx)
964{
965 if (!ctx->eventfd_async)
966 return true;
967 return io_wq_current_is_worker() || in_interrupt();
968}
969
1d7bb1d5
JA
970static void io_cqring_ev_posted(struct io_ring_ctx *ctx)
971{
972 if (waitqueue_active(&ctx->wait))
973 wake_up(&ctx->wait);
974 if (waitqueue_active(&ctx->sqo_wait))
975 wake_up(&ctx->sqo_wait);
f2842ab5 976 if (ctx->cq_ev_fd && io_should_trigger_evfd(ctx))
1d7bb1d5
JA
977 eventfd_signal(ctx->cq_ev_fd, 1);
978}
979
c4a2ed72
JA
980/* Returns true if there are no backlogged entries after the flush */
981static bool io_cqring_overflow_flush(struct io_ring_ctx *ctx, bool force)
1d7bb1d5
JA
982{
983 struct io_rings *rings = ctx->rings;
984 struct io_uring_cqe *cqe;
985 struct io_kiocb *req;
986 unsigned long flags;
987 LIST_HEAD(list);
988
989 if (!force) {
990 if (list_empty_careful(&ctx->cq_overflow_list))
c4a2ed72 991 return true;
1d7bb1d5
JA
992 if ((ctx->cached_cq_tail - READ_ONCE(rings->cq.head) ==
993 rings->cq_ring_entries))
c4a2ed72 994 return false;
1d7bb1d5
JA
995 }
996
997 spin_lock_irqsave(&ctx->completion_lock, flags);
998
999 /* if force is set, the ring is going away. always drop after that */
1000 if (force)
69b3e546 1001 ctx->cq_overflow_flushed = 1;
1d7bb1d5 1002
c4a2ed72 1003 cqe = NULL;
1d7bb1d5
JA
1004 while (!list_empty(&ctx->cq_overflow_list)) {
1005 cqe = io_get_cqring(ctx);
1006 if (!cqe && !force)
1007 break;
1008
1009 req = list_first_entry(&ctx->cq_overflow_list, struct io_kiocb,
1010 list);
1011 list_move(&req->list, &list);
1012 if (cqe) {
1013 WRITE_ONCE(cqe->user_data, req->user_data);
1014 WRITE_ONCE(cqe->res, req->result);
1015 WRITE_ONCE(cqe->flags, 0);
1016 } else {
1017 WRITE_ONCE(ctx->rings->cq_overflow,
1018 atomic_inc_return(&ctx->cached_cq_overflow));
1019 }
1020 }
1021
1022 io_commit_cqring(ctx);
ad3eb2c8
JA
1023 if (cqe) {
1024 clear_bit(0, &ctx->sq_check_overflow);
1025 clear_bit(0, &ctx->cq_check_overflow);
1026 }
1d7bb1d5
JA
1027 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1028 io_cqring_ev_posted(ctx);
1029
1030 while (!list_empty(&list)) {
1031 req = list_first_entry(&list, struct io_kiocb, list);
1032 list_del(&req->list);
ec9c02ad 1033 io_put_req(req);
1d7bb1d5 1034 }
c4a2ed72
JA
1035
1036 return cqe != NULL;
1d7bb1d5
JA
1037}
1038
78e19bbe 1039static void io_cqring_fill_event(struct io_kiocb *req, long res)
2b188cc1 1040{
78e19bbe 1041 struct io_ring_ctx *ctx = req->ctx;
2b188cc1
JA
1042 struct io_uring_cqe *cqe;
1043
78e19bbe 1044 trace_io_uring_complete(ctx, req->user_data, res);
51c3ff62 1045
2b188cc1
JA
1046 /*
1047 * If we can't get a cq entry, userspace overflowed the
1048 * submission (by quite a lot). Increment the overflow count in
1049 * the ring.
1050 */
1051 cqe = io_get_cqring(ctx);
1d7bb1d5 1052 if (likely(cqe)) {
78e19bbe 1053 WRITE_ONCE(cqe->user_data, req->user_data);
2b188cc1 1054 WRITE_ONCE(cqe->res, res);
c71ffb67 1055 WRITE_ONCE(cqe->flags, 0);
1d7bb1d5 1056 } else if (ctx->cq_overflow_flushed) {
498ccd9e
JA
1057 WRITE_ONCE(ctx->rings->cq_overflow,
1058 atomic_inc_return(&ctx->cached_cq_overflow));
1d7bb1d5 1059 } else {
ad3eb2c8
JA
1060 if (list_empty(&ctx->cq_overflow_list)) {
1061 set_bit(0, &ctx->sq_check_overflow);
1062 set_bit(0, &ctx->cq_check_overflow);
1063 }
1d7bb1d5
JA
1064 refcount_inc(&req->refs);
1065 req->result = res;
1066 list_add_tail(&req->list, &ctx->cq_overflow_list);
2b188cc1
JA
1067 }
1068}
1069
78e19bbe 1070static void io_cqring_add_event(struct io_kiocb *req, long res)
2b188cc1 1071{
78e19bbe 1072 struct io_ring_ctx *ctx = req->ctx;
2b188cc1
JA
1073 unsigned long flags;
1074
1075 spin_lock_irqsave(&ctx->completion_lock, flags);
78e19bbe 1076 io_cqring_fill_event(req, res);
2b188cc1
JA
1077 io_commit_cqring(ctx);
1078 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1079
8c838788 1080 io_cqring_ev_posted(ctx);
2b188cc1
JA
1081}
1082
0ddf92e8
JA
1083static inline bool io_is_fallback_req(struct io_kiocb *req)
1084{
1085 return req == (struct io_kiocb *)
1086 ((unsigned long) req->ctx->fallback_req & ~1UL);
1087}
1088
1089static struct io_kiocb *io_get_fallback_req(struct io_ring_ctx *ctx)
1090{
1091 struct io_kiocb *req;
1092
1093 req = ctx->fallback_req;
1094 if (!test_and_set_bit_lock(0, (unsigned long *) ctx->fallback_req))
1095 return req;
1096
1097 return NULL;
1098}
1099
2579f913
JA
1100static struct io_kiocb *io_get_req(struct io_ring_ctx *ctx,
1101 struct io_submit_state *state)
2b188cc1 1102{
fd6fab2c 1103 gfp_t gfp = GFP_KERNEL | __GFP_NOWARN;
2b188cc1
JA
1104 struct io_kiocb *req;
1105
2579f913 1106 if (!state) {
fd6fab2c 1107 req = kmem_cache_alloc(req_cachep, gfp);
2579f913 1108 if (unlikely(!req))
0ddf92e8 1109 goto fallback;
2579f913
JA
1110 } else if (!state->free_reqs) {
1111 size_t sz;
1112 int ret;
1113
1114 sz = min_t(size_t, state->ios_left, ARRAY_SIZE(state->reqs));
fd6fab2c
JA
1115 ret = kmem_cache_alloc_bulk(req_cachep, gfp, sz, state->reqs);
1116
1117 /*
1118 * Bulk alloc is all-or-nothing. If we fail to get a batch,
1119 * retry single alloc to be on the safe side.
1120 */
1121 if (unlikely(ret <= 0)) {
1122 state->reqs[0] = kmem_cache_alloc(req_cachep, gfp);
1123 if (!state->reqs[0])
0ddf92e8 1124 goto fallback;
fd6fab2c
JA
1125 ret = 1;
1126 }
2579f913
JA
1127 state->free_reqs = ret - 1;
1128 state->cur_req = 1;
1129 req = state->reqs[0];
1130 } else {
1131 req = state->reqs[state->cur_req];
1132 state->free_reqs--;
1133 state->cur_req++;
2b188cc1
JA
1134 }
1135
0ddf92e8 1136got_it:
1a6b74fc 1137 req->io = NULL;
60c112b0 1138 req->file = NULL;
2579f913
JA
1139 req->ctx = ctx;
1140 req->flags = 0;
e65ef56d
JA
1141 /* one is dropped after submission, the other at completion */
1142 refcount_set(&req->refs, 2);
9e645e11 1143 req->result = 0;
561fb04a 1144 INIT_IO_WORK(&req->work, io_wq_submit_work);
2579f913 1145 return req;
0ddf92e8
JA
1146fallback:
1147 req = io_get_fallback_req(ctx);
1148 if (req)
1149 goto got_it;
6805b32e 1150 percpu_ref_put(&ctx->refs);
2b188cc1
JA
1151 return NULL;
1152}
1153
2b85edfc
PB
1154static void __io_req_do_free(struct io_kiocb *req)
1155{
1156 if (likely(!io_is_fallback_req(req)))
1157 kmem_cache_free(req_cachep, req);
1158 else
1159 clear_bit_unlock(0, (unsigned long *) req->ctx->fallback_req);
1160}
1161
c6ca97b3 1162static void __io_req_aux_free(struct io_kiocb *req)
2b188cc1 1163{
fcb323cc
JA
1164 struct io_ring_ctx *ctx = req->ctx;
1165
96fd84d8 1166 kfree(req->io);
05f3fb3c
JA
1167 if (req->file) {
1168 if (req->flags & REQ_F_FIXED_FILE)
1169 percpu_ref_put(&ctx->file_data->refs);
1170 else
1171 fput(req->file);
1172 }
c6ca97b3
JA
1173}
1174
1175static void __io_free_req(struct io_kiocb *req)
1176{
1177 __io_req_aux_free(req);
1178
fcb323cc 1179 if (req->flags & REQ_F_INFLIGHT) {
c6ca97b3 1180 struct io_ring_ctx *ctx = req->ctx;
fcb323cc
JA
1181 unsigned long flags;
1182
1183 spin_lock_irqsave(&ctx->inflight_lock, flags);
1184 list_del(&req->inflight_entry);
1185 if (waitqueue_active(&ctx->inflight_wait))
1186 wake_up(&ctx->inflight_wait);
1187 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
1188 }
2b85edfc
PB
1189
1190 percpu_ref_put(&req->ctx->refs);
1191 __io_req_do_free(req);
e65ef56d
JA
1192}
1193
c6ca97b3
JA
1194struct req_batch {
1195 void *reqs[IO_IOPOLL_BATCH];
1196 int to_free;
1197 int need_iter;
1198};
1199
1200static void io_free_req_many(struct io_ring_ctx *ctx, struct req_batch *rb)
1201{
10fef4be
JA
1202 int fixed_refs = rb->to_free;
1203
c6ca97b3
JA
1204 if (!rb->to_free)
1205 return;
1206 if (rb->need_iter) {
1207 int i, inflight = 0;
1208 unsigned long flags;
1209
10fef4be 1210 fixed_refs = 0;
c6ca97b3
JA
1211 for (i = 0; i < rb->to_free; i++) {
1212 struct io_kiocb *req = rb->reqs[i];
1213
10fef4be 1214 if (req->flags & REQ_F_FIXED_FILE) {
c6ca97b3 1215 req->file = NULL;
10fef4be
JA
1216 fixed_refs++;
1217 }
c6ca97b3
JA
1218 if (req->flags & REQ_F_INFLIGHT)
1219 inflight++;
c6ca97b3
JA
1220 __io_req_aux_free(req);
1221 }
1222 if (!inflight)
1223 goto do_free;
1224
1225 spin_lock_irqsave(&ctx->inflight_lock, flags);
1226 for (i = 0; i < rb->to_free; i++) {
1227 struct io_kiocb *req = rb->reqs[i];
1228
10fef4be 1229 if (req->flags & REQ_F_INFLIGHT) {
c6ca97b3
JA
1230 list_del(&req->inflight_entry);
1231 if (!--inflight)
1232 break;
1233 }
1234 }
1235 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
1236
1237 if (waitqueue_active(&ctx->inflight_wait))
1238 wake_up(&ctx->inflight_wait);
1239 }
1240do_free:
1241 kmem_cache_free_bulk(req_cachep, rb->to_free, rb->reqs);
10fef4be
JA
1242 if (fixed_refs)
1243 percpu_ref_put_many(&ctx->file_data->refs, fixed_refs);
c6ca97b3 1244 percpu_ref_put_many(&ctx->refs, rb->to_free);
c6ca97b3
JA
1245 rb->to_free = rb->need_iter = 0;
1246}
1247
a197f664 1248static bool io_link_cancel_timeout(struct io_kiocb *req)
2665abfd 1249{
a197f664 1250 struct io_ring_ctx *ctx = req->ctx;
2665abfd
JA
1251 int ret;
1252
2d28390a 1253 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
2665abfd 1254 if (ret != -1) {
78e19bbe 1255 io_cqring_fill_event(req, -ECANCELED);
2665abfd
JA
1256 io_commit_cqring(ctx);
1257 req->flags &= ~REQ_F_LINK;
ec9c02ad 1258 io_put_req(req);
2665abfd
JA
1259 return true;
1260 }
1261
1262 return false;
e65ef56d
JA
1263}
1264
ba816ad6 1265static void io_req_link_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
9e645e11 1266{
2665abfd 1267 struct io_ring_ctx *ctx = req->ctx;
2665abfd 1268 bool wake_ev = false;
9e645e11 1269
4d7dd462
JA
1270 /* Already got next link */
1271 if (req->flags & REQ_F_LINK_NEXT)
1272 return;
1273
9e645e11
JA
1274 /*
1275 * The list should never be empty when we are called here. But could
1276 * potentially happen if the chain is messed up, check to be on the
1277 * safe side.
1278 */
4493233e
PB
1279 while (!list_empty(&req->link_list)) {
1280 struct io_kiocb *nxt = list_first_entry(&req->link_list,
1281 struct io_kiocb, link_list);
94ae5e77 1282
4493233e
PB
1283 if (unlikely((req->flags & REQ_F_LINK_TIMEOUT) &&
1284 (nxt->flags & REQ_F_TIMEOUT))) {
1285 list_del_init(&nxt->link_list);
94ae5e77 1286 wake_ev |= io_link_cancel_timeout(nxt);
94ae5e77
JA
1287 req->flags &= ~REQ_F_LINK_TIMEOUT;
1288 continue;
1289 }
9e645e11 1290
4493233e
PB
1291 list_del_init(&req->link_list);
1292 if (!list_empty(&nxt->link_list))
1293 nxt->flags |= REQ_F_LINK;
b18fdf71 1294 *nxtptr = nxt;
94ae5e77 1295 break;
9e645e11 1296 }
2665abfd 1297
4d7dd462 1298 req->flags |= REQ_F_LINK_NEXT;
2665abfd
JA
1299 if (wake_ev)
1300 io_cqring_ev_posted(ctx);
9e645e11
JA
1301}
1302
1303/*
1304 * Called if REQ_F_LINK is set, and we fail the head request
1305 */
1306static void io_fail_links(struct io_kiocb *req)
1307{
2665abfd 1308 struct io_ring_ctx *ctx = req->ctx;
2665abfd
JA
1309 unsigned long flags;
1310
1311 spin_lock_irqsave(&ctx->completion_lock, flags);
9e645e11
JA
1312
1313 while (!list_empty(&req->link_list)) {
4493233e
PB
1314 struct io_kiocb *link = list_first_entry(&req->link_list,
1315 struct io_kiocb, link_list);
9e645e11 1316
4493233e 1317 list_del_init(&link->link_list);
c826bd7a 1318 trace_io_uring_fail_link(req, link);
2665abfd
JA
1319
1320 if ((req->flags & REQ_F_LINK_TIMEOUT) &&
d625c6ee 1321 link->opcode == IORING_OP_LINK_TIMEOUT) {
a197f664 1322 io_link_cancel_timeout(link);
2665abfd 1323 } else {
78e19bbe 1324 io_cqring_fill_event(link, -ECANCELED);
978db57e 1325 __io_double_put_req(link);
2665abfd 1326 }
5d960724 1327 req->flags &= ~REQ_F_LINK_TIMEOUT;
9e645e11 1328 }
2665abfd
JA
1329
1330 io_commit_cqring(ctx);
1331 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1332 io_cqring_ev_posted(ctx);
9e645e11
JA
1333}
1334
4d7dd462 1335static void io_req_find_next(struct io_kiocb *req, struct io_kiocb **nxt)
9e645e11 1336{
4d7dd462 1337 if (likely(!(req->flags & REQ_F_LINK)))
2665abfd 1338 return;
2665abfd 1339
9e645e11
JA
1340 /*
1341 * If LINK is set, we have dependent requests in this chain. If we
1342 * didn't fail this request, queue the first one up, moving any other
1343 * dependencies to the next request. In case of failure, fail the rest
1344 * of the chain.
1345 */
2665abfd
JA
1346 if (req->flags & REQ_F_FAIL_LINK) {
1347 io_fail_links(req);
7c9e7f0f
JA
1348 } else if ((req->flags & (REQ_F_LINK_TIMEOUT | REQ_F_COMP_LOCKED)) ==
1349 REQ_F_LINK_TIMEOUT) {
2665abfd
JA
1350 struct io_ring_ctx *ctx = req->ctx;
1351 unsigned long flags;
1352
1353 /*
1354 * If this is a timeout link, we could be racing with the
1355 * timeout timer. Grab the completion lock for this case to
7c9e7f0f 1356 * protect against that.
2665abfd
JA
1357 */
1358 spin_lock_irqsave(&ctx->completion_lock, flags);
1359 io_req_link_next(req, nxt);
1360 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1361 } else {
1362 io_req_link_next(req, nxt);
9e645e11 1363 }
4d7dd462 1364}
9e645e11 1365
c69f8dbe
JL
1366static void io_free_req(struct io_kiocb *req)
1367{
944e58bf
PB
1368 struct io_kiocb *nxt = NULL;
1369
1370 io_req_find_next(req, &nxt);
70cf9f32 1371 __io_free_req(req);
944e58bf
PB
1372
1373 if (nxt)
1374 io_queue_async_work(nxt);
c69f8dbe
JL
1375}
1376
ba816ad6
JA
1377/*
1378 * Drop reference to request, return next in chain (if there is one) if this
1379 * was the last reference to this request.
1380 */
f9bd67f6 1381__attribute__((nonnull))
ec9c02ad 1382static void io_put_req_find_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
e65ef56d 1383{
f9bd67f6 1384 io_req_find_next(req, nxtptr);
4d7dd462 1385
e65ef56d 1386 if (refcount_dec_and_test(&req->refs))
4d7dd462 1387 __io_free_req(req);
2b188cc1
JA
1388}
1389
e65ef56d
JA
1390static void io_put_req(struct io_kiocb *req)
1391{
1392 if (refcount_dec_and_test(&req->refs))
1393 io_free_req(req);
2b188cc1
JA
1394}
1395
978db57e
JA
1396/*
1397 * Must only be used if we don't need to care about links, usually from
1398 * within the completion handling itself.
1399 */
1400static void __io_double_put_req(struct io_kiocb *req)
78e19bbe
JA
1401{
1402 /* drop both submit and complete references */
1403 if (refcount_sub_and_test(2, &req->refs))
1404 __io_free_req(req);
1405}
1406
978db57e
JA
1407static void io_double_put_req(struct io_kiocb *req)
1408{
1409 /* drop both submit and complete references */
1410 if (refcount_sub_and_test(2, &req->refs))
1411 io_free_req(req);
1412}
1413
1d7bb1d5 1414static unsigned io_cqring_events(struct io_ring_ctx *ctx, bool noflush)
a3a0e43f 1415{
84f97dc2
JA
1416 struct io_rings *rings = ctx->rings;
1417
ad3eb2c8
JA
1418 if (test_bit(0, &ctx->cq_check_overflow)) {
1419 /*
1420 * noflush == true is from the waitqueue handler, just ensure
1421 * we wake up the task, and the next invocation will flush the
1422 * entries. We cannot safely to it from here.
1423 */
1424 if (noflush && !list_empty(&ctx->cq_overflow_list))
1425 return -1U;
1d7bb1d5 1426
ad3eb2c8
JA
1427 io_cqring_overflow_flush(ctx, false);
1428 }
1d7bb1d5 1429
a3a0e43f
JA
1430 /* See comment at the top of this file */
1431 smp_rmb();
ad3eb2c8 1432 return ctx->cached_cq_tail - READ_ONCE(rings->cq.head);
a3a0e43f
JA
1433}
1434
fb5ccc98
PB
1435static inline unsigned int io_sqring_entries(struct io_ring_ctx *ctx)
1436{
1437 struct io_rings *rings = ctx->rings;
1438
1439 /* make sure SQ entry isn't read before tail */
1440 return smp_load_acquire(&rings->sq.tail) - ctx->cached_sq_head;
1441}
1442
8237e045 1443static inline bool io_req_multi_free(struct req_batch *rb, struct io_kiocb *req)
e94f141b 1444{
c6ca97b3
JA
1445 if ((req->flags & REQ_F_LINK) || io_is_fallback_req(req))
1446 return false;
e94f141b 1447
c6ca97b3
JA
1448 if (!(req->flags & REQ_F_FIXED_FILE) || req->io)
1449 rb->need_iter++;
1450
1451 rb->reqs[rb->to_free++] = req;
1452 if (unlikely(rb->to_free == ARRAY_SIZE(rb->reqs)))
1453 io_free_req_many(req->ctx, rb);
1454 return true;
e94f141b
JA
1455}
1456
def596e9
JA
1457/*
1458 * Find and free completed poll iocbs
1459 */
1460static void io_iopoll_complete(struct io_ring_ctx *ctx, unsigned int *nr_events,
1461 struct list_head *done)
1462{
8237e045 1463 struct req_batch rb;
def596e9 1464 struct io_kiocb *req;
def596e9 1465
c6ca97b3 1466 rb.to_free = rb.need_iter = 0;
def596e9
JA
1467 while (!list_empty(done)) {
1468 req = list_first_entry(done, struct io_kiocb, list);
1469 list_del(&req->list);
1470
78e19bbe 1471 io_cqring_fill_event(req, req->result);
def596e9
JA
1472 (*nr_events)++;
1473
8237e045
JA
1474 if (refcount_dec_and_test(&req->refs) &&
1475 !io_req_multi_free(&rb, req))
1476 io_free_req(req);
def596e9 1477 }
def596e9 1478
09bb8394 1479 io_commit_cqring(ctx);
8237e045 1480 io_free_req_many(ctx, &rb);
def596e9
JA
1481}
1482
1483static int io_do_iopoll(struct io_ring_ctx *ctx, unsigned int *nr_events,
1484 long min)
1485{
1486 struct io_kiocb *req, *tmp;
1487 LIST_HEAD(done);
1488 bool spin;
1489 int ret;
1490
1491 /*
1492 * Only spin for completions if we don't have multiple devices hanging
1493 * off our complete list, and we're under the requested amount.
1494 */
1495 spin = !ctx->poll_multi_file && *nr_events < min;
1496
1497 ret = 0;
1498 list_for_each_entry_safe(req, tmp, &ctx->poll_list, list) {
9adbd45d 1499 struct kiocb *kiocb = &req->rw.kiocb;
def596e9
JA
1500
1501 /*
1502 * Move completed entries to our local list. If we find a
1503 * request that requires polling, break out and complete
1504 * the done list first, if we have entries there.
1505 */
1506 if (req->flags & REQ_F_IOPOLL_COMPLETED) {
1507 list_move_tail(&req->list, &done);
1508 continue;
1509 }
1510 if (!list_empty(&done))
1511 break;
1512
1513 ret = kiocb->ki_filp->f_op->iopoll(kiocb, spin);
1514 if (ret < 0)
1515 break;
1516
1517 if (ret && spin)
1518 spin = false;
1519 ret = 0;
1520 }
1521
1522 if (!list_empty(&done))
1523 io_iopoll_complete(ctx, nr_events, &done);
1524
1525 return ret;
1526}
1527
1528/*
d195a66e 1529 * Poll for a minimum of 'min' events. Note that if min == 0 we consider that a
def596e9
JA
1530 * non-spinning poll check - we'll still enter the driver poll loop, but only
1531 * as a non-spinning completion check.
1532 */
1533static int io_iopoll_getevents(struct io_ring_ctx *ctx, unsigned int *nr_events,
1534 long min)
1535{
08f5439f 1536 while (!list_empty(&ctx->poll_list) && !need_resched()) {
def596e9
JA
1537 int ret;
1538
1539 ret = io_do_iopoll(ctx, nr_events, min);
1540 if (ret < 0)
1541 return ret;
1542 if (!min || *nr_events >= min)
1543 return 0;
1544 }
1545
1546 return 1;
1547}
1548
1549/*
1550 * We can't just wait for polled events to come to us, we have to actively
1551 * find and complete them.
1552 */
1553static void io_iopoll_reap_events(struct io_ring_ctx *ctx)
1554{
1555 if (!(ctx->flags & IORING_SETUP_IOPOLL))
1556 return;
1557
1558 mutex_lock(&ctx->uring_lock);
1559 while (!list_empty(&ctx->poll_list)) {
1560 unsigned int nr_events = 0;
1561
1562 io_iopoll_getevents(ctx, &nr_events, 1);
08f5439f
JA
1563
1564 /*
1565 * Ensure we allow local-to-the-cpu processing to take place,
1566 * in this case we need to ensure that we reap all events.
1567 */
1568 cond_resched();
def596e9
JA
1569 }
1570 mutex_unlock(&ctx->uring_lock);
1571}
1572
2b2ed975
JA
1573static int __io_iopoll_check(struct io_ring_ctx *ctx, unsigned *nr_events,
1574 long min)
def596e9 1575{
2b2ed975 1576 int iters = 0, ret = 0;
500f9fba 1577
def596e9
JA
1578 do {
1579 int tmin = 0;
1580
a3a0e43f
JA
1581 /*
1582 * Don't enter poll loop if we already have events pending.
1583 * If we do, we can potentially be spinning for commands that
1584 * already triggered a CQE (eg in error).
1585 */
1d7bb1d5 1586 if (io_cqring_events(ctx, false))
a3a0e43f
JA
1587 break;
1588
500f9fba
JA
1589 /*
1590 * If a submit got punted to a workqueue, we can have the
1591 * application entering polling for a command before it gets
1592 * issued. That app will hold the uring_lock for the duration
1593 * of the poll right here, so we need to take a breather every
1594 * now and then to ensure that the issue has a chance to add
1595 * the poll to the issued list. Otherwise we can spin here
1596 * forever, while the workqueue is stuck trying to acquire the
1597 * very same mutex.
1598 */
1599 if (!(++iters & 7)) {
1600 mutex_unlock(&ctx->uring_lock);
1601 mutex_lock(&ctx->uring_lock);
1602 }
1603
def596e9
JA
1604 if (*nr_events < min)
1605 tmin = min - *nr_events;
1606
1607 ret = io_iopoll_getevents(ctx, nr_events, tmin);
1608 if (ret <= 0)
1609 break;
1610 ret = 0;
1611 } while (min && !*nr_events && !need_resched());
1612
2b2ed975
JA
1613 return ret;
1614}
1615
1616static int io_iopoll_check(struct io_ring_ctx *ctx, unsigned *nr_events,
1617 long min)
1618{
1619 int ret;
1620
1621 /*
1622 * We disallow the app entering submit/complete with polling, but we
1623 * still need to lock the ring to prevent racing with polled issue
1624 * that got punted to a workqueue.
1625 */
1626 mutex_lock(&ctx->uring_lock);
1627 ret = __io_iopoll_check(ctx, nr_events, min);
500f9fba 1628 mutex_unlock(&ctx->uring_lock);
def596e9
JA
1629 return ret;
1630}
1631
491381ce 1632static void kiocb_end_write(struct io_kiocb *req)
2b188cc1 1633{
491381ce
JA
1634 /*
1635 * Tell lockdep we inherited freeze protection from submission
1636 * thread.
1637 */
1638 if (req->flags & REQ_F_ISREG) {
1639 struct inode *inode = file_inode(req->file);
2b188cc1 1640
491381ce 1641 __sb_writers_acquired(inode->i_sb, SB_FREEZE_WRITE);
2b188cc1 1642 }
491381ce 1643 file_end_write(req->file);
2b188cc1
JA
1644}
1645
4e88d6e7
JA
1646static inline void req_set_fail_links(struct io_kiocb *req)
1647{
1648 if ((req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) == REQ_F_LINK)
1649 req->flags |= REQ_F_FAIL_LINK;
1650}
1651
ba816ad6 1652static void io_complete_rw_common(struct kiocb *kiocb, long res)
2b188cc1 1653{
9adbd45d 1654 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
2b188cc1 1655
491381ce
JA
1656 if (kiocb->ki_flags & IOCB_WRITE)
1657 kiocb_end_write(req);
2b188cc1 1658
4e88d6e7
JA
1659 if (res != req->result)
1660 req_set_fail_links(req);
78e19bbe 1661 io_cqring_add_event(req, res);
ba816ad6
JA
1662}
1663
1664static void io_complete_rw(struct kiocb *kiocb, long res, long res2)
1665{
9adbd45d 1666 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
ba816ad6
JA
1667
1668 io_complete_rw_common(kiocb, res);
e65ef56d 1669 io_put_req(req);
2b188cc1
JA
1670}
1671
ba816ad6
JA
1672static struct io_kiocb *__io_complete_rw(struct kiocb *kiocb, long res)
1673{
9adbd45d 1674 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
ec9c02ad 1675 struct io_kiocb *nxt = NULL;
ba816ad6
JA
1676
1677 io_complete_rw_common(kiocb, res);
ec9c02ad
JL
1678 io_put_req_find_next(req, &nxt);
1679
1680 return nxt;
2b188cc1
JA
1681}
1682
def596e9
JA
1683static void io_complete_rw_iopoll(struct kiocb *kiocb, long res, long res2)
1684{
9adbd45d 1685 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
def596e9 1686
491381ce
JA
1687 if (kiocb->ki_flags & IOCB_WRITE)
1688 kiocb_end_write(req);
def596e9 1689
4e88d6e7
JA
1690 if (res != req->result)
1691 req_set_fail_links(req);
9e645e11 1692 req->result = res;
def596e9
JA
1693 if (res != -EAGAIN)
1694 req->flags |= REQ_F_IOPOLL_COMPLETED;
1695}
1696
1697/*
1698 * After the iocb has been issued, it's safe to be found on the poll list.
1699 * Adding the kiocb to the list AFTER submission ensures that we don't
1700 * find it from a io_iopoll_getevents() thread before the issuer is done
1701 * accessing the kiocb cookie.
1702 */
1703static void io_iopoll_req_issued(struct io_kiocb *req)
1704{
1705 struct io_ring_ctx *ctx = req->ctx;
1706
1707 /*
1708 * Track whether we have multiple files in our lists. This will impact
1709 * how we do polling eventually, not spinning if we're on potentially
1710 * different devices.
1711 */
1712 if (list_empty(&ctx->poll_list)) {
1713 ctx->poll_multi_file = false;
1714 } else if (!ctx->poll_multi_file) {
1715 struct io_kiocb *list_req;
1716
1717 list_req = list_first_entry(&ctx->poll_list, struct io_kiocb,
1718 list);
9adbd45d 1719 if (list_req->file != req->file)
def596e9
JA
1720 ctx->poll_multi_file = true;
1721 }
1722
1723 /*
1724 * For fast devices, IO may have already completed. If it has, add
1725 * it to the front so we find it first.
1726 */
1727 if (req->flags & REQ_F_IOPOLL_COMPLETED)
1728 list_add(&req->list, &ctx->poll_list);
1729 else
1730 list_add_tail(&req->list, &ctx->poll_list);
1731}
1732
3d6770fb 1733static void io_file_put(struct io_submit_state *state)
9a56a232 1734{
3d6770fb 1735 if (state->file) {
9a56a232
JA
1736 int diff = state->has_refs - state->used_refs;
1737
1738 if (diff)
1739 fput_many(state->file, diff);
1740 state->file = NULL;
1741 }
1742}
1743
1744/*
1745 * Get as many references to a file as we have IOs left in this submission,
1746 * assuming most submissions are for one file, or at least that each file
1747 * has more than one submission.
1748 */
1749static struct file *io_file_get(struct io_submit_state *state, int fd)
1750{
1751 if (!state)
1752 return fget(fd);
1753
1754 if (state->file) {
1755 if (state->fd == fd) {
1756 state->used_refs++;
1757 state->ios_left--;
1758 return state->file;
1759 }
3d6770fb 1760 io_file_put(state);
9a56a232
JA
1761 }
1762 state->file = fget_many(fd, state->ios_left);
1763 if (!state->file)
1764 return NULL;
1765
1766 state->fd = fd;
1767 state->has_refs = state->ios_left;
1768 state->used_refs = 1;
1769 state->ios_left--;
1770 return state->file;
1771}
1772
2b188cc1
JA
1773/*
1774 * If we tracked the file through the SCM inflight mechanism, we could support
1775 * any file. For now, just ensure that anything potentially problematic is done
1776 * inline.
1777 */
1778static bool io_file_supports_async(struct file *file)
1779{
1780 umode_t mode = file_inode(file)->i_mode;
1781
10d59345 1782 if (S_ISBLK(mode) || S_ISCHR(mode) || S_ISSOCK(mode))
2b188cc1
JA
1783 return true;
1784 if (S_ISREG(mode) && file->f_op != &io_uring_fops)
1785 return true;
1786
1787 return false;
1788}
1789
3529d8c2
JA
1790static int io_prep_rw(struct io_kiocb *req, const struct io_uring_sqe *sqe,
1791 bool force_nonblock)
2b188cc1 1792{
def596e9 1793 struct io_ring_ctx *ctx = req->ctx;
9adbd45d 1794 struct kiocb *kiocb = &req->rw.kiocb;
09bb8394
JA
1795 unsigned ioprio;
1796 int ret;
2b188cc1 1797
09bb8394
JA
1798 if (!req->file)
1799 return -EBADF;
2b188cc1 1800
491381ce
JA
1801 if (S_ISREG(file_inode(req->file)->i_mode))
1802 req->flags |= REQ_F_ISREG;
1803
2b188cc1 1804 kiocb->ki_pos = READ_ONCE(sqe->off);
ba04291e
JA
1805 if (kiocb->ki_pos == -1 && !(req->file->f_mode & FMODE_STREAM)) {
1806 req->flags |= REQ_F_CUR_POS;
1807 kiocb->ki_pos = req->file->f_pos;
1808 }
2b188cc1
JA
1809 kiocb->ki_flags = iocb_flags(kiocb->ki_filp);
1810 kiocb->ki_hint = ki_hint_validate(file_write_hint(kiocb->ki_filp));
1811
1812 ioprio = READ_ONCE(sqe->ioprio);
1813 if (ioprio) {
1814 ret = ioprio_check_cap(ioprio);
1815 if (ret)
09bb8394 1816 return ret;
2b188cc1
JA
1817
1818 kiocb->ki_ioprio = ioprio;
1819 } else
1820 kiocb->ki_ioprio = get_current_ioprio();
1821
1822 ret = kiocb_set_rw_flags(kiocb, READ_ONCE(sqe->rw_flags));
1823 if (unlikely(ret))
09bb8394 1824 return ret;
8449eeda
SB
1825
1826 /* don't allow async punt if RWF_NOWAIT was requested */
491381ce
JA
1827 if ((kiocb->ki_flags & IOCB_NOWAIT) ||
1828 (req->file->f_flags & O_NONBLOCK))
8449eeda
SB
1829 req->flags |= REQ_F_NOWAIT;
1830
1831 if (force_nonblock)
2b188cc1 1832 kiocb->ki_flags |= IOCB_NOWAIT;
8449eeda 1833
def596e9 1834 if (ctx->flags & IORING_SETUP_IOPOLL) {
def596e9
JA
1835 if (!(kiocb->ki_flags & IOCB_DIRECT) ||
1836 !kiocb->ki_filp->f_op->iopoll)
09bb8394 1837 return -EOPNOTSUPP;
2b188cc1 1838
def596e9
JA
1839 kiocb->ki_flags |= IOCB_HIPRI;
1840 kiocb->ki_complete = io_complete_rw_iopoll;
6873e0bd 1841 req->result = 0;
def596e9 1842 } else {
09bb8394
JA
1843 if (kiocb->ki_flags & IOCB_HIPRI)
1844 return -EINVAL;
def596e9
JA
1845 kiocb->ki_complete = io_complete_rw;
1846 }
9adbd45d 1847
3529d8c2
JA
1848 req->rw.addr = READ_ONCE(sqe->addr);
1849 req->rw.len = READ_ONCE(sqe->len);
9adbd45d
JA
1850 /* we own ->private, reuse it for the buffer index */
1851 req->rw.kiocb.private = (void *) (unsigned long)
3529d8c2 1852 READ_ONCE(sqe->buf_index);
2b188cc1 1853 return 0;
2b188cc1
JA
1854}
1855
1856static inline void io_rw_done(struct kiocb *kiocb, ssize_t ret)
1857{
1858 switch (ret) {
1859 case -EIOCBQUEUED:
1860 break;
1861 case -ERESTARTSYS:
1862 case -ERESTARTNOINTR:
1863 case -ERESTARTNOHAND:
1864 case -ERESTART_RESTARTBLOCK:
1865 /*
1866 * We can't just restart the syscall, since previously
1867 * submitted sqes may already be in progress. Just fail this
1868 * IO with EINTR.
1869 */
1870 ret = -EINTR;
1871 /* fall through */
1872 default:
1873 kiocb->ki_complete(kiocb, ret, 0);
1874 }
1875}
1876
ba816ad6
JA
1877static void kiocb_done(struct kiocb *kiocb, ssize_t ret, struct io_kiocb **nxt,
1878 bool in_async)
1879{
ba04291e
JA
1880 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
1881
1882 if (req->flags & REQ_F_CUR_POS)
1883 req->file->f_pos = kiocb->ki_pos;
f9bd67f6 1884 if (in_async && ret >= 0 && kiocb->ki_complete == io_complete_rw)
ba816ad6
JA
1885 *nxt = __io_complete_rw(kiocb, ret);
1886 else
1887 io_rw_done(kiocb, ret);
1888}
1889
9adbd45d 1890static ssize_t io_import_fixed(struct io_kiocb *req, int rw,
7d009165 1891 struct iov_iter *iter)
edafccee 1892{
9adbd45d
JA
1893 struct io_ring_ctx *ctx = req->ctx;
1894 size_t len = req->rw.len;
edafccee
JA
1895 struct io_mapped_ubuf *imu;
1896 unsigned index, buf_index;
1897 size_t offset;
1898 u64 buf_addr;
1899
1900 /* attempt to use fixed buffers without having provided iovecs */
1901 if (unlikely(!ctx->user_bufs))
1902 return -EFAULT;
1903
9adbd45d 1904 buf_index = (unsigned long) req->rw.kiocb.private;
edafccee
JA
1905 if (unlikely(buf_index >= ctx->nr_user_bufs))
1906 return -EFAULT;
1907
1908 index = array_index_nospec(buf_index, ctx->nr_user_bufs);
1909 imu = &ctx->user_bufs[index];
9adbd45d 1910 buf_addr = req->rw.addr;
edafccee
JA
1911
1912 /* overflow */
1913 if (buf_addr + len < buf_addr)
1914 return -EFAULT;
1915 /* not inside the mapped region */
1916 if (buf_addr < imu->ubuf || buf_addr + len > imu->ubuf + imu->len)
1917 return -EFAULT;
1918
1919 /*
1920 * May not be a start of buffer, set size appropriately
1921 * and advance us to the beginning.
1922 */
1923 offset = buf_addr - imu->ubuf;
1924 iov_iter_bvec(iter, rw, imu->bvec, imu->nr_bvecs, offset + len);
bd11b3a3
JA
1925
1926 if (offset) {
1927 /*
1928 * Don't use iov_iter_advance() here, as it's really slow for
1929 * using the latter parts of a big fixed buffer - it iterates
1930 * over each segment manually. We can cheat a bit here, because
1931 * we know that:
1932 *
1933 * 1) it's a BVEC iter, we set it up
1934 * 2) all bvecs are PAGE_SIZE in size, except potentially the
1935 * first and last bvec
1936 *
1937 * So just find our index, and adjust the iterator afterwards.
1938 * If the offset is within the first bvec (or the whole first
1939 * bvec, just use iov_iter_advance(). This makes it easier
1940 * since we can just skip the first segment, which may not
1941 * be PAGE_SIZE aligned.
1942 */
1943 const struct bio_vec *bvec = imu->bvec;
1944
1945 if (offset <= bvec->bv_len) {
1946 iov_iter_advance(iter, offset);
1947 } else {
1948 unsigned long seg_skip;
1949
1950 /* skip first vec */
1951 offset -= bvec->bv_len;
1952 seg_skip = 1 + (offset >> PAGE_SHIFT);
1953
1954 iter->bvec = bvec + seg_skip;
1955 iter->nr_segs -= seg_skip;
99c79f66 1956 iter->count -= bvec->bv_len + offset;
bd11b3a3 1957 iter->iov_offset = offset & ~PAGE_MASK;
bd11b3a3
JA
1958 }
1959 }
1960
5e559561 1961 return len;
edafccee
JA
1962}
1963
cf6fd4bd
PB
1964static ssize_t io_import_iovec(int rw, struct io_kiocb *req,
1965 struct iovec **iovec, struct iov_iter *iter)
2b188cc1 1966{
9adbd45d
JA
1967 void __user *buf = u64_to_user_ptr(req->rw.addr);
1968 size_t sqe_len = req->rw.len;
edafccee
JA
1969 u8 opcode;
1970
d625c6ee 1971 opcode = req->opcode;
7d009165 1972 if (opcode == IORING_OP_READ_FIXED || opcode == IORING_OP_WRITE_FIXED) {
edafccee 1973 *iovec = NULL;
9adbd45d 1974 return io_import_fixed(req, rw, iter);
edafccee 1975 }
2b188cc1 1976
9adbd45d
JA
1977 /* buffer index only valid with fixed read/write */
1978 if (req->rw.kiocb.private)
1979 return -EINVAL;
1980
3a6820f2
JA
1981 if (opcode == IORING_OP_READ || opcode == IORING_OP_WRITE) {
1982 ssize_t ret;
1983 ret = import_single_range(rw, buf, sqe_len, *iovec, iter);
1984 *iovec = NULL;
1985 return ret;
1986 }
1987
f67676d1
JA
1988 if (req->io) {
1989 struct io_async_rw *iorw = &req->io->rw;
1990
1991 *iovec = iorw->iov;
1992 iov_iter_init(iter, rw, *iovec, iorw->nr_segs, iorw->size);
1993 if (iorw->iov == iorw->fast_iov)
1994 *iovec = NULL;
1995 return iorw->size;
1996 }
1997
cf6fd4bd 1998 if (!req->has_user)
2b188cc1
JA
1999 return -EFAULT;
2000
2001#ifdef CONFIG_COMPAT
cf6fd4bd 2002 if (req->ctx->compat)
2b188cc1
JA
2003 return compat_import_iovec(rw, buf, sqe_len, UIO_FASTIOV,
2004 iovec, iter);
2005#endif
2006
2007 return import_iovec(rw, buf, sqe_len, UIO_FASTIOV, iovec, iter);
2008}
2009
31b51510 2010/*
32960613
JA
2011 * For files that don't have ->read_iter() and ->write_iter(), handle them
2012 * by looping over ->read() or ->write() manually.
31b51510 2013 */
32960613
JA
2014static ssize_t loop_rw_iter(int rw, struct file *file, struct kiocb *kiocb,
2015 struct iov_iter *iter)
2016{
2017 ssize_t ret = 0;
2018
2019 /*
2020 * Don't support polled IO through this interface, and we can't
2021 * support non-blocking either. For the latter, this just causes
2022 * the kiocb to be handled from an async context.
2023 */
2024 if (kiocb->ki_flags & IOCB_HIPRI)
2025 return -EOPNOTSUPP;
2026 if (kiocb->ki_flags & IOCB_NOWAIT)
2027 return -EAGAIN;
2028
2029 while (iov_iter_count(iter)) {
311ae9e1 2030 struct iovec iovec;
32960613
JA
2031 ssize_t nr;
2032
311ae9e1
PB
2033 if (!iov_iter_is_bvec(iter)) {
2034 iovec = iov_iter_iovec(iter);
2035 } else {
2036 /* fixed buffers import bvec */
2037 iovec.iov_base = kmap(iter->bvec->bv_page)
2038 + iter->iov_offset;
2039 iovec.iov_len = min(iter->count,
2040 iter->bvec->bv_len - iter->iov_offset);
2041 }
2042
32960613
JA
2043 if (rw == READ) {
2044 nr = file->f_op->read(file, iovec.iov_base,
2045 iovec.iov_len, &kiocb->ki_pos);
2046 } else {
2047 nr = file->f_op->write(file, iovec.iov_base,
2048 iovec.iov_len, &kiocb->ki_pos);
2049 }
2050
311ae9e1
PB
2051 if (iov_iter_is_bvec(iter))
2052 kunmap(iter->bvec->bv_page);
2053
32960613
JA
2054 if (nr < 0) {
2055 if (!ret)
2056 ret = nr;
2057 break;
2058 }
2059 ret += nr;
2060 if (nr != iovec.iov_len)
2061 break;
2062 iov_iter_advance(iter, nr);
2063 }
2064
2065 return ret;
2066}
2067
b7bb4f7d 2068static void io_req_map_rw(struct io_kiocb *req, ssize_t io_size,
f67676d1
JA
2069 struct iovec *iovec, struct iovec *fast_iov,
2070 struct iov_iter *iter)
2071{
2072 req->io->rw.nr_segs = iter->nr_segs;
2073 req->io->rw.size = io_size;
2074 req->io->rw.iov = iovec;
2075 if (!req->io->rw.iov) {
2076 req->io->rw.iov = req->io->rw.fast_iov;
2077 memcpy(req->io->rw.iov, fast_iov,
2078 sizeof(struct iovec) * iter->nr_segs);
2079 }
2080}
2081
b7bb4f7d 2082static int io_alloc_async_ctx(struct io_kiocb *req)
f67676d1 2083{
d3656344
JA
2084 if (!io_op_defs[req->opcode].async_ctx)
2085 return 0;
f67676d1 2086 req->io = kmalloc(sizeof(*req->io), GFP_KERNEL);
06b76d44 2087 return req->io == NULL;
b7bb4f7d
JA
2088}
2089
2090static void io_rw_async(struct io_wq_work **workptr)
2091{
2092 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2093 struct iovec *iov = NULL;
2094
2095 if (req->io->rw.iov != req->io->rw.fast_iov)
2096 iov = req->io->rw.iov;
2097 io_wq_submit_work(workptr);
2098 kfree(iov);
2099}
2100
2101static int io_setup_async_rw(struct io_kiocb *req, ssize_t io_size,
2102 struct iovec *iovec, struct iovec *fast_iov,
2103 struct iov_iter *iter)
2104{
74566df3
JA
2105 if (req->opcode == IORING_OP_READ_FIXED ||
2106 req->opcode == IORING_OP_WRITE_FIXED)
2107 return 0;
b7bb4f7d
JA
2108 if (!req->io && io_alloc_async_ctx(req))
2109 return -ENOMEM;
2110
2111 io_req_map_rw(req, io_size, iovec, fast_iov, iter);
2112 req->work.func = io_rw_async;
2113 return 0;
f67676d1
JA
2114}
2115
3529d8c2
JA
2116static int io_read_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2117 bool force_nonblock)
f67676d1 2118{
3529d8c2
JA
2119 struct io_async_ctx *io;
2120 struct iov_iter iter;
f67676d1
JA
2121 ssize_t ret;
2122
3529d8c2
JA
2123 ret = io_prep_rw(req, sqe, force_nonblock);
2124 if (ret)
2125 return ret;
f67676d1 2126
3529d8c2
JA
2127 if (unlikely(!(req->file->f_mode & FMODE_READ)))
2128 return -EBADF;
f67676d1 2129
3529d8c2
JA
2130 if (!req->io)
2131 return 0;
2132
2133 io = req->io;
2134 io->rw.iov = io->rw.fast_iov;
2135 req->io = NULL;
2136 ret = io_import_iovec(READ, req, &io->rw.iov, &iter);
2137 req->io = io;
2138 if (ret < 0)
2139 return ret;
2140
2141 io_req_map_rw(req, ret, io->rw.iov, io->rw.fast_iov, &iter);
2142 return 0;
f67676d1
JA
2143}
2144
267bc904 2145static int io_read(struct io_kiocb *req, struct io_kiocb **nxt,
8358e3a8 2146 bool force_nonblock)
2b188cc1
JA
2147{
2148 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
9adbd45d 2149 struct kiocb *kiocb = &req->rw.kiocb;
2b188cc1 2150 struct iov_iter iter;
31b51510 2151 size_t iov_count;
f67676d1 2152 ssize_t io_size, ret;
2b188cc1 2153
3529d8c2 2154 ret = io_import_iovec(READ, req, &iovec, &iter);
06b76d44
JA
2155 if (ret < 0)
2156 return ret;
2b188cc1 2157
fd6c2e4c
JA
2158 /* Ensure we clear previously set non-block flag */
2159 if (!force_nonblock)
9adbd45d 2160 req->rw.kiocb.ki_flags &= ~IOCB_NOWAIT;
fd6c2e4c 2161
797f3f53 2162 req->result = 0;
f67676d1 2163 io_size = ret;
9e645e11 2164 if (req->flags & REQ_F_LINK)
f67676d1
JA
2165 req->result = io_size;
2166
2167 /*
2168 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
2169 * we know to async punt it even if it was opened O_NONBLOCK
2170 */
9adbd45d 2171 if (force_nonblock && !io_file_supports_async(req->file)) {
f67676d1
JA
2172 req->flags |= REQ_F_MUST_PUNT;
2173 goto copy_iov;
2174 }
9e645e11 2175
31b51510 2176 iov_count = iov_iter_count(&iter);
9adbd45d 2177 ret = rw_verify_area(READ, req->file, &kiocb->ki_pos, iov_count);
2b188cc1
JA
2178 if (!ret) {
2179 ssize_t ret2;
2180
9adbd45d
JA
2181 if (req->file->f_op->read_iter)
2182 ret2 = call_read_iter(req->file, kiocb, &iter);
32960613 2183 else
9adbd45d 2184 ret2 = loop_rw_iter(READ, req->file, kiocb, &iter);
32960613 2185
9d93a3f5 2186 /* Catch -EAGAIN return for forced non-blocking submission */
f67676d1 2187 if (!force_nonblock || ret2 != -EAGAIN) {
cf6fd4bd 2188 kiocb_done(kiocb, ret2, nxt, req->in_async);
f67676d1
JA
2189 } else {
2190copy_iov:
b7bb4f7d 2191 ret = io_setup_async_rw(req, io_size, iovec,
f67676d1
JA
2192 inline_vecs, &iter);
2193 if (ret)
2194 goto out_free;
2195 return -EAGAIN;
2196 }
2b188cc1 2197 }
f67676d1 2198out_free:
b7bb4f7d
JA
2199 if (!io_wq_current_is_worker())
2200 kfree(iovec);
2b188cc1
JA
2201 return ret;
2202}
2203
3529d8c2
JA
2204static int io_write_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2205 bool force_nonblock)
f67676d1 2206{
3529d8c2
JA
2207 struct io_async_ctx *io;
2208 struct iov_iter iter;
f67676d1
JA
2209 ssize_t ret;
2210
3529d8c2
JA
2211 ret = io_prep_rw(req, sqe, force_nonblock);
2212 if (ret)
2213 return ret;
f67676d1 2214
3529d8c2
JA
2215 if (unlikely(!(req->file->f_mode & FMODE_WRITE)))
2216 return -EBADF;
f67676d1 2217
3529d8c2
JA
2218 if (!req->io)
2219 return 0;
2220
2221 io = req->io;
2222 io->rw.iov = io->rw.fast_iov;
2223 req->io = NULL;
2224 ret = io_import_iovec(WRITE, req, &io->rw.iov, &iter);
2225 req->io = io;
2226 if (ret < 0)
2227 return ret;
2228
2229 io_req_map_rw(req, ret, io->rw.iov, io->rw.fast_iov, &iter);
2230 return 0;
f67676d1
JA
2231}
2232
267bc904 2233static int io_write(struct io_kiocb *req, struct io_kiocb **nxt,
8358e3a8 2234 bool force_nonblock)
2b188cc1
JA
2235{
2236 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
9adbd45d 2237 struct kiocb *kiocb = &req->rw.kiocb;
2b188cc1 2238 struct iov_iter iter;
31b51510 2239 size_t iov_count;
f67676d1 2240 ssize_t ret, io_size;
2b188cc1 2241
3529d8c2 2242 ret = io_import_iovec(WRITE, req, &iovec, &iter);
06b76d44
JA
2243 if (ret < 0)
2244 return ret;
2b188cc1 2245
fd6c2e4c
JA
2246 /* Ensure we clear previously set non-block flag */
2247 if (!force_nonblock)
9adbd45d 2248 req->rw.kiocb.ki_flags &= ~IOCB_NOWAIT;
fd6c2e4c 2249
797f3f53 2250 req->result = 0;
f67676d1 2251 io_size = ret;
9e645e11 2252 if (req->flags & REQ_F_LINK)
f67676d1 2253 req->result = io_size;
9e645e11 2254
f67676d1
JA
2255 /*
2256 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
2257 * we know to async punt it even if it was opened O_NONBLOCK
2258 */
2259 if (force_nonblock && !io_file_supports_async(req->file)) {
2260 req->flags |= REQ_F_MUST_PUNT;
2261 goto copy_iov;
2262 }
31b51510 2263
10d59345
JA
2264 /* file path doesn't support NOWAIT for non-direct_IO */
2265 if (force_nonblock && !(kiocb->ki_flags & IOCB_DIRECT) &&
2266 (req->flags & REQ_F_ISREG))
f67676d1 2267 goto copy_iov;
31b51510 2268
f67676d1 2269 iov_count = iov_iter_count(&iter);
9adbd45d 2270 ret = rw_verify_area(WRITE, req->file, &kiocb->ki_pos, iov_count);
2b188cc1 2271 if (!ret) {
9bf7933f
RP
2272 ssize_t ret2;
2273
2b188cc1
JA
2274 /*
2275 * Open-code file_start_write here to grab freeze protection,
2276 * which will be released by another thread in
2277 * io_complete_rw(). Fool lockdep by telling it the lock got
2278 * released so that it doesn't complain about the held lock when
2279 * we return to userspace.
2280 */
491381ce 2281 if (req->flags & REQ_F_ISREG) {
9adbd45d 2282 __sb_start_write(file_inode(req->file)->i_sb,
2b188cc1 2283 SB_FREEZE_WRITE, true);
9adbd45d 2284 __sb_writers_release(file_inode(req->file)->i_sb,
2b188cc1
JA
2285 SB_FREEZE_WRITE);
2286 }
2287 kiocb->ki_flags |= IOCB_WRITE;
9bf7933f 2288
9adbd45d
JA
2289 if (req->file->f_op->write_iter)
2290 ret2 = call_write_iter(req->file, kiocb, &iter);
32960613 2291 else
9adbd45d 2292 ret2 = loop_rw_iter(WRITE, req->file, kiocb, &iter);
f67676d1 2293 if (!force_nonblock || ret2 != -EAGAIN) {
cf6fd4bd 2294 kiocb_done(kiocb, ret2, nxt, req->in_async);
f67676d1
JA
2295 } else {
2296copy_iov:
b7bb4f7d 2297 ret = io_setup_async_rw(req, io_size, iovec,
f67676d1
JA
2298 inline_vecs, &iter);
2299 if (ret)
2300 goto out_free;
2301 return -EAGAIN;
2302 }
2b188cc1 2303 }
31b51510 2304out_free:
b7bb4f7d
JA
2305 if (!io_wq_current_is_worker())
2306 kfree(iovec);
2b188cc1
JA
2307 return ret;
2308}
2309
2310/*
2311 * IORING_OP_NOP just posts a completion event, nothing else.
2312 */
78e19bbe 2313static int io_nop(struct io_kiocb *req)
2b188cc1
JA
2314{
2315 struct io_ring_ctx *ctx = req->ctx;
2b188cc1 2316
def596e9
JA
2317 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
2318 return -EINVAL;
2319
78e19bbe 2320 io_cqring_add_event(req, 0);
e65ef56d 2321 io_put_req(req);
2b188cc1
JA
2322 return 0;
2323}
2324
3529d8c2 2325static int io_prep_fsync(struct io_kiocb *req, const struct io_uring_sqe *sqe)
c992fe29 2326{
6b06314c 2327 struct io_ring_ctx *ctx = req->ctx;
c992fe29 2328
09bb8394
JA
2329 if (!req->file)
2330 return -EBADF;
c992fe29 2331
6b06314c 2332 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
def596e9 2333 return -EINVAL;
edafccee 2334 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
c992fe29
CH
2335 return -EINVAL;
2336
8ed8d3c3
JA
2337 req->sync.flags = READ_ONCE(sqe->fsync_flags);
2338 if (unlikely(req->sync.flags & ~IORING_FSYNC_DATASYNC))
2339 return -EINVAL;
2340
2341 req->sync.off = READ_ONCE(sqe->off);
2342 req->sync.len = READ_ONCE(sqe->len);
c992fe29
CH
2343 return 0;
2344}
2345
8ed8d3c3
JA
2346static bool io_req_cancelled(struct io_kiocb *req)
2347{
2348 if (req->work.flags & IO_WQ_WORK_CANCEL) {
2349 req_set_fail_links(req);
2350 io_cqring_add_event(req, -ECANCELED);
2351 io_put_req(req);
2352 return true;
2353 }
2354
2355 return false;
2356}
2357
78912934
JA
2358static void io_link_work_cb(struct io_wq_work **workptr)
2359{
2360 struct io_wq_work *work = *workptr;
2361 struct io_kiocb *link = work->data;
2362
2363 io_queue_linked_timeout(link);
2364 work->func = io_wq_submit_work;
2365}
2366
2367static void io_wq_assign_next(struct io_wq_work **workptr, struct io_kiocb *nxt)
2368{
2369 struct io_kiocb *link;
2370
2371 io_prep_async_work(nxt, &link);
2372 *workptr = &nxt->work;
2373 if (link) {
2374 nxt->work.flags |= IO_WQ_WORK_CB;
2375 nxt->work.func = io_link_work_cb;
2376 nxt->work.data = link;
2377 }
2378}
2379
8ed8d3c3
JA
2380static void io_fsync_finish(struct io_wq_work **workptr)
2381{
2382 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2383 loff_t end = req->sync.off + req->sync.len;
2384 struct io_kiocb *nxt = NULL;
2385 int ret;
2386
2387 if (io_req_cancelled(req))
2388 return;
2389
9adbd45d 2390 ret = vfs_fsync_range(req->file, req->sync.off,
8ed8d3c3
JA
2391 end > 0 ? end : LLONG_MAX,
2392 req->sync.flags & IORING_FSYNC_DATASYNC);
2393 if (ret < 0)
2394 req_set_fail_links(req);
2395 io_cqring_add_event(req, ret);
2396 io_put_req_find_next(req, &nxt);
2397 if (nxt)
78912934 2398 io_wq_assign_next(workptr, nxt);
8ed8d3c3
JA
2399}
2400
fc4df999
JA
2401static int io_fsync(struct io_kiocb *req, struct io_kiocb **nxt,
2402 bool force_nonblock)
c992fe29 2403{
8ed8d3c3 2404 struct io_wq_work *work, *old_work;
c992fe29
CH
2405
2406 /* fsync always requires a blocking context */
8ed8d3c3
JA
2407 if (force_nonblock) {
2408 io_put_req(req);
2409 req->work.func = io_fsync_finish;
c992fe29 2410 return -EAGAIN;
8ed8d3c3 2411 }
c992fe29 2412
8ed8d3c3
JA
2413 work = old_work = &req->work;
2414 io_fsync_finish(&work);
2415 if (work && work != old_work)
2416 *nxt = container_of(work, struct io_kiocb, work);
c992fe29
CH
2417 return 0;
2418}
2419
d63d1b5e
JA
2420static void io_fallocate_finish(struct io_wq_work **workptr)
2421{
2422 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2423 struct io_kiocb *nxt = NULL;
2424 int ret;
2425
2426 ret = vfs_fallocate(req->file, req->sync.mode, req->sync.off,
2427 req->sync.len);
2428 if (ret < 0)
2429 req_set_fail_links(req);
2430 io_cqring_add_event(req, ret);
2431 io_put_req_find_next(req, &nxt);
2432 if (nxt)
2433 io_wq_assign_next(workptr, nxt);
2434}
2435
2436static int io_fallocate_prep(struct io_kiocb *req,
2437 const struct io_uring_sqe *sqe)
2438{
2439 if (sqe->ioprio || sqe->buf_index || sqe->rw_flags)
2440 return -EINVAL;
2441
2442 req->sync.off = READ_ONCE(sqe->off);
2443 req->sync.len = READ_ONCE(sqe->addr);
2444 req->sync.mode = READ_ONCE(sqe->len);
2445 return 0;
2446}
2447
2448static int io_fallocate(struct io_kiocb *req, struct io_kiocb **nxt,
2449 bool force_nonblock)
2450{
2451 struct io_wq_work *work, *old_work;
2452
2453 /* fallocate always requiring blocking context */
2454 if (force_nonblock) {
2455 io_put_req(req);
2456 req->work.func = io_fallocate_finish;
2457 return -EAGAIN;
2458 }
2459
2460 work = old_work = &req->work;
2461 io_fallocate_finish(&work);
2462 if (work && work != old_work)
2463 *nxt = container_of(work, struct io_kiocb, work);
2464
2465 return 0;
2466}
2467
15b71abe
JA
2468static int io_openat_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2469{
f8748881 2470 const char __user *fname;
15b71abe
JA
2471 int ret;
2472
2473 if (sqe->ioprio || sqe->buf_index)
2474 return -EINVAL;
2475
2476 req->open.dfd = READ_ONCE(sqe->fd);
c12cedf2 2477 req->open.how.mode = READ_ONCE(sqe->len);
f8748881 2478 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
c12cedf2 2479 req->open.how.flags = READ_ONCE(sqe->open_flags);
15b71abe 2480
f8748881 2481 req->open.filename = getname(fname);
15b71abe
JA
2482 if (IS_ERR(req->open.filename)) {
2483 ret = PTR_ERR(req->open.filename);
2484 req->open.filename = NULL;
2485 return ret;
2486 }
2487
2488 return 0;
2489}
2490
cebdb986
JA
2491static int io_openat2_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2492{
2493 struct open_how __user *how;
2494 const char __user *fname;
2495 size_t len;
2496 int ret;
2497
2498 if (sqe->ioprio || sqe->buf_index)
2499 return -EINVAL;
2500
2501 req->open.dfd = READ_ONCE(sqe->fd);
2502 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
2503 how = u64_to_user_ptr(READ_ONCE(sqe->addr2));
2504 len = READ_ONCE(sqe->len);
2505
2506 if (len < OPEN_HOW_SIZE_VER0)
2507 return -EINVAL;
2508
2509 ret = copy_struct_from_user(&req->open.how, sizeof(req->open.how), how,
2510 len);
2511 if (ret)
2512 return ret;
2513
2514 if (!(req->open.how.flags & O_PATH) && force_o_largefile())
2515 req->open.how.flags |= O_LARGEFILE;
2516
2517 req->open.filename = getname(fname);
2518 if (IS_ERR(req->open.filename)) {
2519 ret = PTR_ERR(req->open.filename);
2520 req->open.filename = NULL;
2521 return ret;
2522 }
2523
2524 return 0;
2525}
2526
2527static int io_openat2(struct io_kiocb *req, struct io_kiocb **nxt,
2528 bool force_nonblock)
15b71abe
JA
2529{
2530 struct open_flags op;
15b71abe
JA
2531 struct file *file;
2532 int ret;
2533
2534 if (force_nonblock) {
2535 req->work.flags |= IO_WQ_WORK_NEEDS_FILES;
2536 return -EAGAIN;
2537 }
2538
cebdb986 2539 ret = build_open_flags(&req->open.how, &op);
15b71abe
JA
2540 if (ret)
2541 goto err;
2542
cebdb986 2543 ret = get_unused_fd_flags(req->open.how.flags);
15b71abe
JA
2544 if (ret < 0)
2545 goto err;
2546
2547 file = do_filp_open(req->open.dfd, req->open.filename, &op);
2548 if (IS_ERR(file)) {
2549 put_unused_fd(ret);
2550 ret = PTR_ERR(file);
2551 } else {
2552 fsnotify_open(file);
2553 fd_install(ret, file);
2554 }
2555err:
2556 putname(req->open.filename);
2557 if (ret < 0)
2558 req_set_fail_links(req);
2559 io_cqring_add_event(req, ret);
2560 io_put_req_find_next(req, nxt);
2561 return 0;
2562}
2563
cebdb986
JA
2564static int io_openat(struct io_kiocb *req, struct io_kiocb **nxt,
2565 bool force_nonblock)
2566{
2567 req->open.how = build_open_how(req->open.how.flags, req->open.how.mode);
2568 return io_openat2(req, nxt, force_nonblock);
2569}
2570
c1ca757b
JA
2571static int io_madvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2572{
2573#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
2574 if (sqe->ioprio || sqe->buf_index || sqe->off)
2575 return -EINVAL;
2576
2577 req->madvise.addr = READ_ONCE(sqe->addr);
2578 req->madvise.len = READ_ONCE(sqe->len);
2579 req->madvise.advice = READ_ONCE(sqe->fadvise_advice);
2580 return 0;
2581#else
2582 return -EOPNOTSUPP;
2583#endif
2584}
2585
2586static int io_madvise(struct io_kiocb *req, struct io_kiocb **nxt,
2587 bool force_nonblock)
2588{
2589#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
2590 struct io_madvise *ma = &req->madvise;
2591 int ret;
2592
2593 if (force_nonblock)
2594 return -EAGAIN;
2595
2596 ret = do_madvise(ma->addr, ma->len, ma->advice);
2597 if (ret < 0)
2598 req_set_fail_links(req);
2599 io_cqring_add_event(req, ret);
2600 io_put_req_find_next(req, nxt);
2601 return 0;
2602#else
2603 return -EOPNOTSUPP;
2604#endif
2605}
2606
4840e418
JA
2607static int io_fadvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2608{
2609 if (sqe->ioprio || sqe->buf_index || sqe->addr)
2610 return -EINVAL;
2611
2612 req->fadvise.offset = READ_ONCE(sqe->off);
2613 req->fadvise.len = READ_ONCE(sqe->len);
2614 req->fadvise.advice = READ_ONCE(sqe->fadvise_advice);
2615 return 0;
2616}
2617
2618static int io_fadvise(struct io_kiocb *req, struct io_kiocb **nxt,
2619 bool force_nonblock)
2620{
2621 struct io_fadvise *fa = &req->fadvise;
2622 int ret;
2623
2624 /* DONTNEED may block, others _should_ not */
2625 if (fa->advice == POSIX_FADV_DONTNEED && force_nonblock)
2626 return -EAGAIN;
2627
2628 ret = vfs_fadvise(req->file, fa->offset, fa->len, fa->advice);
2629 if (ret < 0)
2630 req_set_fail_links(req);
2631 io_cqring_add_event(req, ret);
2632 io_put_req_find_next(req, nxt);
2633 return 0;
2634}
2635
eddc7ef5
JA
2636static int io_statx_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2637{
f8748881 2638 const char __user *fname;
eddc7ef5
JA
2639 unsigned lookup_flags;
2640 int ret;
2641
2642 if (sqe->ioprio || sqe->buf_index)
2643 return -EINVAL;
2644
2645 req->open.dfd = READ_ONCE(sqe->fd);
2646 req->open.mask = READ_ONCE(sqe->len);
f8748881 2647 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
eddc7ef5 2648 req->open.buffer = u64_to_user_ptr(READ_ONCE(sqe->addr2));
c12cedf2 2649 req->open.how.flags = READ_ONCE(sqe->statx_flags);
eddc7ef5 2650
c12cedf2 2651 if (vfs_stat_set_lookup_flags(&lookup_flags, req->open.how.flags))
eddc7ef5
JA
2652 return -EINVAL;
2653
f8748881 2654 req->open.filename = getname_flags(fname, lookup_flags, NULL);
eddc7ef5
JA
2655 if (IS_ERR(req->open.filename)) {
2656 ret = PTR_ERR(req->open.filename);
2657 req->open.filename = NULL;
2658 return ret;
2659 }
2660
2661 return 0;
2662}
2663
2664static int io_statx(struct io_kiocb *req, struct io_kiocb **nxt,
2665 bool force_nonblock)
2666{
2667 struct io_open *ctx = &req->open;
2668 unsigned lookup_flags;
2669 struct path path;
2670 struct kstat stat;
2671 int ret;
2672
2673 if (force_nonblock)
2674 return -EAGAIN;
2675
c12cedf2 2676 if (vfs_stat_set_lookup_flags(&lookup_flags, ctx->how.flags))
eddc7ef5
JA
2677 return -EINVAL;
2678
2679retry:
2680 /* filename_lookup() drops it, keep a reference */
2681 ctx->filename->refcnt++;
2682
2683 ret = filename_lookup(ctx->dfd, ctx->filename, lookup_flags, &path,
2684 NULL);
2685 if (ret)
2686 goto err;
2687
c12cedf2 2688 ret = vfs_getattr(&path, &stat, ctx->mask, ctx->how.flags);
eddc7ef5
JA
2689 path_put(&path);
2690 if (retry_estale(ret, lookup_flags)) {
2691 lookup_flags |= LOOKUP_REVAL;
2692 goto retry;
2693 }
2694 if (!ret)
2695 ret = cp_statx(&stat, ctx->buffer);
2696err:
2697 putname(ctx->filename);
2698 if (ret < 0)
2699 req_set_fail_links(req);
2700 io_cqring_add_event(req, ret);
2701 io_put_req_find_next(req, nxt);
2702 return 0;
2703}
2704
b5dba59e
JA
2705static int io_close_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2706{
2707 /*
2708 * If we queue this for async, it must not be cancellable. That would
2709 * leave the 'file' in an undeterminate state.
2710 */
2711 req->work.flags |= IO_WQ_WORK_NO_CANCEL;
2712
2713 if (sqe->ioprio || sqe->off || sqe->addr || sqe->len ||
2714 sqe->rw_flags || sqe->buf_index)
2715 return -EINVAL;
2716 if (sqe->flags & IOSQE_FIXED_FILE)
2717 return -EINVAL;
2718
2719 req->close.fd = READ_ONCE(sqe->fd);
2720 if (req->file->f_op == &io_uring_fops ||
b14cca0c 2721 req->close.fd == req->ctx->ring_fd)
b5dba59e
JA
2722 return -EBADF;
2723
2724 return 0;
2725}
2726
2727static void io_close_finish(struct io_wq_work **workptr)
2728{
2729 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2730 struct io_kiocb *nxt = NULL;
2731
2732 /* Invoked with files, we need to do the close */
2733 if (req->work.files) {
2734 int ret;
2735
2736 ret = filp_close(req->close.put_file, req->work.files);
2737 if (ret < 0) {
2738 req_set_fail_links(req);
2739 }
2740 io_cqring_add_event(req, ret);
2741 }
2742
2743 fput(req->close.put_file);
2744
2745 /* we bypassed the re-issue, drop the submission reference */
2746 io_put_req(req);
2747 io_put_req_find_next(req, &nxt);
2748 if (nxt)
2749 io_wq_assign_next(workptr, nxt);
2750}
2751
2752static int io_close(struct io_kiocb *req, struct io_kiocb **nxt,
2753 bool force_nonblock)
2754{
2755 int ret;
2756
2757 req->close.put_file = NULL;
2758 ret = __close_fd_get_file(req->close.fd, &req->close.put_file);
2759 if (ret < 0)
2760 return ret;
2761
2762 /* if the file has a flush method, be safe and punt to async */
2763 if (req->close.put_file->f_op->flush && !io_wq_current_is_worker()) {
2764 req->work.flags |= IO_WQ_WORK_NEEDS_FILES;
2765 goto eagain;
2766 }
2767
2768 /*
2769 * No ->flush(), safely close from here and just punt the
2770 * fput() to async context.
2771 */
2772 ret = filp_close(req->close.put_file, current->files);
2773
2774 if (ret < 0)
2775 req_set_fail_links(req);
2776 io_cqring_add_event(req, ret);
2777
2778 if (io_wq_current_is_worker()) {
2779 struct io_wq_work *old_work, *work;
2780
2781 old_work = work = &req->work;
2782 io_close_finish(&work);
2783 if (work && work != old_work)
2784 *nxt = container_of(work, struct io_kiocb, work);
2785 return 0;
2786 }
2787
2788eagain:
2789 req->work.func = io_close_finish;
2790 return -EAGAIN;
2791}
2792
3529d8c2 2793static int io_prep_sfr(struct io_kiocb *req, const struct io_uring_sqe *sqe)
5d17b4a4
JA
2794{
2795 struct io_ring_ctx *ctx = req->ctx;
5d17b4a4
JA
2796
2797 if (!req->file)
2798 return -EBADF;
5d17b4a4
JA
2799
2800 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
2801 return -EINVAL;
2802 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
2803 return -EINVAL;
2804
8ed8d3c3
JA
2805 req->sync.off = READ_ONCE(sqe->off);
2806 req->sync.len = READ_ONCE(sqe->len);
2807 req->sync.flags = READ_ONCE(sqe->sync_range_flags);
8ed8d3c3
JA
2808 return 0;
2809}
2810
2811static void io_sync_file_range_finish(struct io_wq_work **workptr)
2812{
2813 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2814 struct io_kiocb *nxt = NULL;
2815 int ret;
2816
2817 if (io_req_cancelled(req))
2818 return;
2819
9adbd45d 2820 ret = sync_file_range(req->file, req->sync.off, req->sync.len,
8ed8d3c3
JA
2821 req->sync.flags);
2822 if (ret < 0)
2823 req_set_fail_links(req);
2824 io_cqring_add_event(req, ret);
2825 io_put_req_find_next(req, &nxt);
2826 if (nxt)
78912934 2827 io_wq_assign_next(workptr, nxt);
5d17b4a4
JA
2828}
2829
fc4df999 2830static int io_sync_file_range(struct io_kiocb *req, struct io_kiocb **nxt,
5d17b4a4
JA
2831 bool force_nonblock)
2832{
8ed8d3c3 2833 struct io_wq_work *work, *old_work;
5d17b4a4
JA
2834
2835 /* sync_file_range always requires a blocking context */
8ed8d3c3
JA
2836 if (force_nonblock) {
2837 io_put_req(req);
2838 req->work.func = io_sync_file_range_finish;
5d17b4a4 2839 return -EAGAIN;
8ed8d3c3 2840 }
5d17b4a4 2841
8ed8d3c3
JA
2842 work = old_work = &req->work;
2843 io_sync_file_range_finish(&work);
2844 if (work && work != old_work)
2845 *nxt = container_of(work, struct io_kiocb, work);
5d17b4a4
JA
2846 return 0;
2847}
2848
b7bb4f7d
JA
2849#if defined(CONFIG_NET)
2850static void io_sendrecv_async(struct io_wq_work **workptr)
2851{
2852 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2853 struct iovec *iov = NULL;
2854
2855 if (req->io->rw.iov != req->io->rw.fast_iov)
2856 iov = req->io->msg.iov;
2857 io_wq_submit_work(workptr);
2858 kfree(iov);
2859}
2860#endif
2861
3529d8c2 2862static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
03b1230c 2863{
0fa03c62 2864#if defined(CONFIG_NET)
e47293fd 2865 struct io_sr_msg *sr = &req->sr_msg;
3529d8c2 2866 struct io_async_ctx *io = req->io;
03b1230c 2867
e47293fd
JA
2868 sr->msg_flags = READ_ONCE(sqe->msg_flags);
2869 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
fddaface 2870 sr->len = READ_ONCE(sqe->len);
3529d8c2 2871
fddaface 2872 if (!io || req->opcode == IORING_OP_SEND)
3529d8c2
JA
2873 return 0;
2874
d9688565 2875 io->msg.iov = io->msg.fast_iov;
3529d8c2 2876 return sendmsg_copy_msghdr(&io->msg.msg, sr->msg, sr->msg_flags,
e47293fd 2877 &io->msg.iov);
03b1230c 2878#else
e47293fd 2879 return -EOPNOTSUPP;
03b1230c
JA
2880#endif
2881}
2882
fc4df999
JA
2883static int io_sendmsg(struct io_kiocb *req, struct io_kiocb **nxt,
2884 bool force_nonblock)
aa1fa28f 2885{
03b1230c 2886#if defined(CONFIG_NET)
0b416c3e 2887 struct io_async_msghdr *kmsg = NULL;
0fa03c62
JA
2888 struct socket *sock;
2889 int ret;
2890
2891 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
2892 return -EINVAL;
2893
2894 sock = sock_from_file(req->file, &ret);
2895 if (sock) {
b7bb4f7d 2896 struct io_async_ctx io;
03b1230c 2897 struct sockaddr_storage addr;
0fa03c62
JA
2898 unsigned flags;
2899
03b1230c 2900 if (req->io) {
0b416c3e
JA
2901 kmsg = &req->io->msg;
2902 kmsg->msg.msg_name = &addr;
2903 /* if iov is set, it's allocated already */
2904 if (!kmsg->iov)
2905 kmsg->iov = kmsg->fast_iov;
2906 kmsg->msg.msg_iter.iov = kmsg->iov;
03b1230c 2907 } else {
3529d8c2
JA
2908 struct io_sr_msg *sr = &req->sr_msg;
2909
0b416c3e
JA
2910 kmsg = &io.msg;
2911 kmsg->msg.msg_name = &addr;
3529d8c2
JA
2912
2913 io.msg.iov = io.msg.fast_iov;
2914 ret = sendmsg_copy_msghdr(&io.msg.msg, sr->msg,
2915 sr->msg_flags, &io.msg.iov);
03b1230c 2916 if (ret)
3529d8c2 2917 return ret;
03b1230c 2918 }
0fa03c62 2919
e47293fd
JA
2920 flags = req->sr_msg.msg_flags;
2921 if (flags & MSG_DONTWAIT)
2922 req->flags |= REQ_F_NOWAIT;
2923 else if (force_nonblock)
2924 flags |= MSG_DONTWAIT;
2925
0b416c3e 2926 ret = __sys_sendmsg_sock(sock, &kmsg->msg, flags);
03b1230c 2927 if (force_nonblock && ret == -EAGAIN) {
b7bb4f7d
JA
2928 if (req->io)
2929 return -EAGAIN;
2930 if (io_alloc_async_ctx(req))
2931 return -ENOMEM;
2932 memcpy(&req->io->msg, &io.msg, sizeof(io.msg));
2933 req->work.func = io_sendrecv_async;
0b416c3e 2934 return -EAGAIN;
03b1230c 2935 }
441cdbd5
JA
2936 if (ret == -ERESTARTSYS)
2937 ret = -EINTR;
0fa03c62
JA
2938 }
2939
b7bb4f7d 2940 if (!io_wq_current_is_worker() && kmsg && kmsg->iov != kmsg->fast_iov)
0b416c3e 2941 kfree(kmsg->iov);
78e19bbe 2942 io_cqring_add_event(req, ret);
4e88d6e7
JA
2943 if (ret < 0)
2944 req_set_fail_links(req);
ec9c02ad 2945 io_put_req_find_next(req, nxt);
5d17b4a4 2946 return 0;
03b1230c
JA
2947#else
2948 return -EOPNOTSUPP;
aa1fa28f 2949#endif
03b1230c 2950}
aa1fa28f 2951
fddaface
JA
2952static int io_send(struct io_kiocb *req, struct io_kiocb **nxt,
2953 bool force_nonblock)
2954{
2955#if defined(CONFIG_NET)
2956 struct socket *sock;
2957 int ret;
2958
2959 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
2960 return -EINVAL;
2961
2962 sock = sock_from_file(req->file, &ret);
2963 if (sock) {
2964 struct io_sr_msg *sr = &req->sr_msg;
2965 struct msghdr msg;
2966 struct iovec iov;
2967 unsigned flags;
2968
2969 ret = import_single_range(WRITE, sr->buf, sr->len, &iov,
2970 &msg.msg_iter);
2971 if (ret)
2972 return ret;
2973
2974 msg.msg_name = NULL;
2975 msg.msg_control = NULL;
2976 msg.msg_controllen = 0;
2977 msg.msg_namelen = 0;
2978
2979 flags = req->sr_msg.msg_flags;
2980 if (flags & MSG_DONTWAIT)
2981 req->flags |= REQ_F_NOWAIT;
2982 else if (force_nonblock)
2983 flags |= MSG_DONTWAIT;
2984
2985 ret = __sys_sendmsg_sock(sock, &msg, flags);
2986 if (force_nonblock && ret == -EAGAIN)
2987 return -EAGAIN;
2988 if (ret == -ERESTARTSYS)
2989 ret = -EINTR;
2990 }
2991
2992 io_cqring_add_event(req, ret);
2993 if (ret < 0)
2994 req_set_fail_links(req);
2995 io_put_req_find_next(req, nxt);
2996 return 0;
2997#else
2998 return -EOPNOTSUPP;
2999#endif
3000}
3001
3529d8c2
JA
3002static int io_recvmsg_prep(struct io_kiocb *req,
3003 const struct io_uring_sqe *sqe)
aa1fa28f
JA
3004{
3005#if defined(CONFIG_NET)
e47293fd 3006 struct io_sr_msg *sr = &req->sr_msg;
3529d8c2
JA
3007 struct io_async_ctx *io = req->io;
3008
3009 sr->msg_flags = READ_ONCE(sqe->msg_flags);
3010 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
06b76d44 3011
fddaface 3012 if (!io || req->opcode == IORING_OP_RECV)
06b76d44 3013 return 0;
03b1230c 3014
d9688565 3015 io->msg.iov = io->msg.fast_iov;
3529d8c2 3016 return recvmsg_copy_msghdr(&io->msg.msg, sr->msg, sr->msg_flags,
e47293fd 3017 &io->msg.uaddr, &io->msg.iov);
aa1fa28f 3018#else
e47293fd 3019 return -EOPNOTSUPP;
aa1fa28f
JA
3020#endif
3021}
3022
fc4df999
JA
3023static int io_recvmsg(struct io_kiocb *req, struct io_kiocb **nxt,
3024 bool force_nonblock)
aa1fa28f
JA
3025{
3026#if defined(CONFIG_NET)
0b416c3e 3027 struct io_async_msghdr *kmsg = NULL;
03b1230c
JA
3028 struct socket *sock;
3029 int ret;
3030
3031 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3032 return -EINVAL;
3033
3034 sock = sock_from_file(req->file, &ret);
3035 if (sock) {
b7bb4f7d 3036 struct io_async_ctx io;
03b1230c 3037 struct sockaddr_storage addr;
03b1230c
JA
3038 unsigned flags;
3039
03b1230c 3040 if (req->io) {
0b416c3e
JA
3041 kmsg = &req->io->msg;
3042 kmsg->msg.msg_name = &addr;
3043 /* if iov is set, it's allocated already */
3044 if (!kmsg->iov)
3045 kmsg->iov = kmsg->fast_iov;
3046 kmsg->msg.msg_iter.iov = kmsg->iov;
03b1230c 3047 } else {
3529d8c2
JA
3048 struct io_sr_msg *sr = &req->sr_msg;
3049
0b416c3e
JA
3050 kmsg = &io.msg;
3051 kmsg->msg.msg_name = &addr;
3529d8c2
JA
3052
3053 io.msg.iov = io.msg.fast_iov;
3054 ret = recvmsg_copy_msghdr(&io.msg.msg, sr->msg,
3055 sr->msg_flags, &io.msg.uaddr,
3056 &io.msg.iov);
03b1230c 3057 if (ret)
3529d8c2 3058 return ret;
03b1230c
JA
3059 }
3060
e47293fd
JA
3061 flags = req->sr_msg.msg_flags;
3062 if (flags & MSG_DONTWAIT)
3063 req->flags |= REQ_F_NOWAIT;
3064 else if (force_nonblock)
3065 flags |= MSG_DONTWAIT;
3066
3067 ret = __sys_recvmsg_sock(sock, &kmsg->msg, req->sr_msg.msg,
3068 kmsg->uaddr, flags);
03b1230c 3069 if (force_nonblock && ret == -EAGAIN) {
b7bb4f7d
JA
3070 if (req->io)
3071 return -EAGAIN;
3072 if (io_alloc_async_ctx(req))
3073 return -ENOMEM;
3074 memcpy(&req->io->msg, &io.msg, sizeof(io.msg));
3075 req->work.func = io_sendrecv_async;
0b416c3e 3076 return -EAGAIN;
03b1230c
JA
3077 }
3078 if (ret == -ERESTARTSYS)
3079 ret = -EINTR;
3080 }
3081
b7bb4f7d 3082 if (!io_wq_current_is_worker() && kmsg && kmsg->iov != kmsg->fast_iov)
0b416c3e 3083 kfree(kmsg->iov);
03b1230c 3084 io_cqring_add_event(req, ret);
4e88d6e7
JA
3085 if (ret < 0)
3086 req_set_fail_links(req);
03b1230c
JA
3087 io_put_req_find_next(req, nxt);
3088 return 0;
0fa03c62
JA
3089#else
3090 return -EOPNOTSUPP;
3091#endif
3092}
5d17b4a4 3093
fddaface
JA
3094static int io_recv(struct io_kiocb *req, struct io_kiocb **nxt,
3095 bool force_nonblock)
3096{
3097#if defined(CONFIG_NET)
3098 struct socket *sock;
3099 int ret;
3100
3101 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3102 return -EINVAL;
3103
3104 sock = sock_from_file(req->file, &ret);
3105 if (sock) {
3106 struct io_sr_msg *sr = &req->sr_msg;
3107 struct msghdr msg;
3108 struct iovec iov;
3109 unsigned flags;
3110
3111 ret = import_single_range(READ, sr->buf, sr->len, &iov,
3112 &msg.msg_iter);
3113 if (ret)
3114 return ret;
3115
3116 msg.msg_name = NULL;
3117 msg.msg_control = NULL;
3118 msg.msg_controllen = 0;
3119 msg.msg_namelen = 0;
3120 msg.msg_iocb = NULL;
3121 msg.msg_flags = 0;
3122
3123 flags = req->sr_msg.msg_flags;
3124 if (flags & MSG_DONTWAIT)
3125 req->flags |= REQ_F_NOWAIT;
3126 else if (force_nonblock)
3127 flags |= MSG_DONTWAIT;
3128
3129 ret = __sys_recvmsg_sock(sock, &msg, NULL, NULL, flags);
3130 if (force_nonblock && ret == -EAGAIN)
3131 return -EAGAIN;
3132 if (ret == -ERESTARTSYS)
3133 ret = -EINTR;
3134 }
3135
3136 io_cqring_add_event(req, ret);
3137 if (ret < 0)
3138 req_set_fail_links(req);
3139 io_put_req_find_next(req, nxt);
3140 return 0;
3141#else
3142 return -EOPNOTSUPP;
3143#endif
3144}
3145
3146
3529d8c2 3147static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
17f2fe35
JA
3148{
3149#if defined(CONFIG_NET)
8ed8d3c3
JA
3150 struct io_accept *accept = &req->accept;
3151
17f2fe35
JA
3152 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3153 return -EINVAL;
8042d6ce 3154 if (sqe->ioprio || sqe->len || sqe->buf_index)
17f2fe35
JA
3155 return -EINVAL;
3156
d55e5f5b
JA
3157 accept->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
3158 accept->addr_len = u64_to_user_ptr(READ_ONCE(sqe->addr2));
8ed8d3c3 3159 accept->flags = READ_ONCE(sqe->accept_flags);
8ed8d3c3
JA
3160 return 0;
3161#else
3162 return -EOPNOTSUPP;
3163#endif
3164}
17f2fe35 3165
8ed8d3c3
JA
3166#if defined(CONFIG_NET)
3167static int __io_accept(struct io_kiocb *req, struct io_kiocb **nxt,
3168 bool force_nonblock)
3169{
3170 struct io_accept *accept = &req->accept;
3171 unsigned file_flags;
3172 int ret;
3173
3174 file_flags = force_nonblock ? O_NONBLOCK : 0;
3175 ret = __sys_accept4_file(req->file, file_flags, accept->addr,
3176 accept->addr_len, accept->flags);
3177 if (ret == -EAGAIN && force_nonblock)
17f2fe35 3178 return -EAGAIN;
8e3cca12
JA
3179 if (ret == -ERESTARTSYS)
3180 ret = -EINTR;
4e88d6e7
JA
3181 if (ret < 0)
3182 req_set_fail_links(req);
78e19bbe 3183 io_cqring_add_event(req, ret);
ec9c02ad 3184 io_put_req_find_next(req, nxt);
17f2fe35 3185 return 0;
8ed8d3c3
JA
3186}
3187
3188static void io_accept_finish(struct io_wq_work **workptr)
3189{
3190 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
3191 struct io_kiocb *nxt = NULL;
3192
3193 if (io_req_cancelled(req))
3194 return;
3195 __io_accept(req, &nxt, false);
3196 if (nxt)
78912934 3197 io_wq_assign_next(workptr, nxt);
8ed8d3c3
JA
3198}
3199#endif
3200
3201static int io_accept(struct io_kiocb *req, struct io_kiocb **nxt,
3202 bool force_nonblock)
3203{
3204#if defined(CONFIG_NET)
3205 int ret;
3206
8ed8d3c3
JA
3207 ret = __io_accept(req, nxt, force_nonblock);
3208 if (ret == -EAGAIN && force_nonblock) {
3209 req->work.func = io_accept_finish;
3210 req->work.flags |= IO_WQ_WORK_NEEDS_FILES;
3211 io_put_req(req);
3212 return -EAGAIN;
3213 }
3214 return 0;
0fa03c62
JA
3215#else
3216 return -EOPNOTSUPP;
3217#endif
3218}
5d17b4a4 3219
3529d8c2 3220static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
f499a021
JA
3221{
3222#if defined(CONFIG_NET)
3529d8c2
JA
3223 struct io_connect *conn = &req->connect;
3224 struct io_async_ctx *io = req->io;
f499a021 3225
3fbb51c1
JA
3226 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3227 return -EINVAL;
3228 if (sqe->ioprio || sqe->len || sqe->buf_index || sqe->rw_flags)
3229 return -EINVAL;
3230
3529d8c2
JA
3231 conn->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
3232 conn->addr_len = READ_ONCE(sqe->addr2);
3233
3234 if (!io)
3235 return 0;
3236
3237 return move_addr_to_kernel(conn->addr, conn->addr_len,
3fbb51c1 3238 &io->connect.address);
f499a021 3239#else
3fbb51c1 3240 return -EOPNOTSUPP;
f499a021
JA
3241#endif
3242}
3243
fc4df999
JA
3244static int io_connect(struct io_kiocb *req, struct io_kiocb **nxt,
3245 bool force_nonblock)
f8e85cf2
JA
3246{
3247#if defined(CONFIG_NET)
f499a021 3248 struct io_async_ctx __io, *io;
f8e85cf2 3249 unsigned file_flags;
3fbb51c1 3250 int ret;
f8e85cf2 3251
f499a021
JA
3252 if (req->io) {
3253 io = req->io;
3254 } else {
3529d8c2
JA
3255 ret = move_addr_to_kernel(req->connect.addr,
3256 req->connect.addr_len,
3257 &__io.connect.address);
f499a021
JA
3258 if (ret)
3259 goto out;
3260 io = &__io;
3261 }
3262
3fbb51c1
JA
3263 file_flags = force_nonblock ? O_NONBLOCK : 0;
3264
3265 ret = __sys_connect_file(req->file, &io->connect.address,
3266 req->connect.addr_len, file_flags);
87f80d62 3267 if ((ret == -EAGAIN || ret == -EINPROGRESS) && force_nonblock) {
b7bb4f7d
JA
3268 if (req->io)
3269 return -EAGAIN;
3270 if (io_alloc_async_ctx(req)) {
f499a021
JA
3271 ret = -ENOMEM;
3272 goto out;
3273 }
b7bb4f7d 3274 memcpy(&req->io->connect, &__io.connect, sizeof(__io.connect));
f8e85cf2 3275 return -EAGAIN;
f499a021 3276 }
f8e85cf2
JA
3277 if (ret == -ERESTARTSYS)
3278 ret = -EINTR;
f499a021 3279out:
4e88d6e7
JA
3280 if (ret < 0)
3281 req_set_fail_links(req);
f8e85cf2
JA
3282 io_cqring_add_event(req, ret);
3283 io_put_req_find_next(req, nxt);
3284 return 0;
3285#else
3286 return -EOPNOTSUPP;
3287#endif
3288}
3289
221c5eb2
JA
3290static void io_poll_remove_one(struct io_kiocb *req)
3291{
3292 struct io_poll_iocb *poll = &req->poll;
3293
3294 spin_lock(&poll->head->lock);
3295 WRITE_ONCE(poll->canceled, true);
392edb45
JA
3296 if (!list_empty(&poll->wait.entry)) {
3297 list_del_init(&poll->wait.entry);
a197f664 3298 io_queue_async_work(req);
221c5eb2
JA
3299 }
3300 spin_unlock(&poll->head->lock);
78076bb6 3301 hash_del(&req->hash_node);
221c5eb2
JA
3302}
3303
3304static void io_poll_remove_all(struct io_ring_ctx *ctx)
3305{
78076bb6 3306 struct hlist_node *tmp;
221c5eb2 3307 struct io_kiocb *req;
78076bb6 3308 int i;
221c5eb2
JA
3309
3310 spin_lock_irq(&ctx->completion_lock);
78076bb6
JA
3311 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
3312 struct hlist_head *list;
3313
3314 list = &ctx->cancel_hash[i];
3315 hlist_for_each_entry_safe(req, tmp, list, hash_node)
3316 io_poll_remove_one(req);
221c5eb2
JA
3317 }
3318 spin_unlock_irq(&ctx->completion_lock);
3319}
3320
47f46768
JA
3321static int io_poll_cancel(struct io_ring_ctx *ctx, __u64 sqe_addr)
3322{
78076bb6 3323 struct hlist_head *list;
47f46768
JA
3324 struct io_kiocb *req;
3325
78076bb6
JA
3326 list = &ctx->cancel_hash[hash_long(sqe_addr, ctx->cancel_hash_bits)];
3327 hlist_for_each_entry(req, list, hash_node) {
3328 if (sqe_addr == req->user_data) {
eac406c6
JA
3329 io_poll_remove_one(req);
3330 return 0;
3331 }
47f46768
JA
3332 }
3333
3334 return -ENOENT;
3335}
3336
3529d8c2
JA
3337static int io_poll_remove_prep(struct io_kiocb *req,
3338 const struct io_uring_sqe *sqe)
0969e783 3339{
0969e783
JA
3340 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3341 return -EINVAL;
3342 if (sqe->ioprio || sqe->off || sqe->len || sqe->buf_index ||
3343 sqe->poll_events)
3344 return -EINVAL;
3345
3346 req->poll.addr = READ_ONCE(sqe->addr);
0969e783
JA
3347 return 0;
3348}
3349
221c5eb2
JA
3350/*
3351 * Find a running poll command that matches one specified in sqe->addr,
3352 * and remove it if found.
3353 */
fc4df999 3354static int io_poll_remove(struct io_kiocb *req)
221c5eb2
JA
3355{
3356 struct io_ring_ctx *ctx = req->ctx;
0969e783 3357 u64 addr;
47f46768 3358 int ret;
221c5eb2 3359
0969e783 3360 addr = req->poll.addr;
221c5eb2 3361 spin_lock_irq(&ctx->completion_lock);
0969e783 3362 ret = io_poll_cancel(ctx, addr);
221c5eb2
JA
3363 spin_unlock_irq(&ctx->completion_lock);
3364
78e19bbe 3365 io_cqring_add_event(req, ret);
4e88d6e7
JA
3366 if (ret < 0)
3367 req_set_fail_links(req);
e65ef56d 3368 io_put_req(req);
221c5eb2
JA
3369 return 0;
3370}
3371
b0dd8a41 3372static void io_poll_complete(struct io_kiocb *req, __poll_t mask, int error)
221c5eb2 3373{
a197f664
JL
3374 struct io_ring_ctx *ctx = req->ctx;
3375
8c838788 3376 req->poll.done = true;
b0dd8a41
JA
3377 if (error)
3378 io_cqring_fill_event(req, error);
3379 else
3380 io_cqring_fill_event(req, mangle_poll(mask));
8c838788 3381 io_commit_cqring(ctx);
221c5eb2
JA
3382}
3383
561fb04a 3384static void io_poll_complete_work(struct io_wq_work **workptr)
221c5eb2 3385{
561fb04a 3386 struct io_wq_work *work = *workptr;
221c5eb2
JA
3387 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
3388 struct io_poll_iocb *poll = &req->poll;
3389 struct poll_table_struct pt = { ._key = poll->events };
3390 struct io_ring_ctx *ctx = req->ctx;
89723d0b 3391 struct io_kiocb *nxt = NULL;
221c5eb2 3392 __poll_t mask = 0;
b0dd8a41 3393 int ret = 0;
221c5eb2 3394
b0dd8a41 3395 if (work->flags & IO_WQ_WORK_CANCEL) {
561fb04a 3396 WRITE_ONCE(poll->canceled, true);
b0dd8a41
JA
3397 ret = -ECANCELED;
3398 } else if (READ_ONCE(poll->canceled)) {
3399 ret = -ECANCELED;
3400 }
561fb04a 3401
b0dd8a41 3402 if (ret != -ECANCELED)
221c5eb2
JA
3403 mask = vfs_poll(poll->file, &pt) & poll->events;
3404
3405 /*
3406 * Note that ->ki_cancel callers also delete iocb from active_reqs after
3407 * calling ->ki_cancel. We need the ctx_lock roundtrip here to
3408 * synchronize with them. In the cancellation case the list_del_init
3409 * itself is not actually needed, but harmless so we keep it in to
3410 * avoid further branches in the fast path.
3411 */
3412 spin_lock_irq(&ctx->completion_lock);
b0dd8a41 3413 if (!mask && ret != -ECANCELED) {
392edb45 3414 add_wait_queue(poll->head, &poll->wait);
221c5eb2
JA
3415 spin_unlock_irq(&ctx->completion_lock);
3416 return;
3417 }
78076bb6 3418 hash_del(&req->hash_node);
b0dd8a41 3419 io_poll_complete(req, mask, ret);
221c5eb2
JA
3420 spin_unlock_irq(&ctx->completion_lock);
3421
8c838788 3422 io_cqring_ev_posted(ctx);
89723d0b 3423
4e88d6e7
JA
3424 if (ret < 0)
3425 req_set_fail_links(req);
ec9c02ad 3426 io_put_req_find_next(req, &nxt);
89723d0b 3427 if (nxt)
78912934 3428 io_wq_assign_next(workptr, nxt);
221c5eb2
JA
3429}
3430
e94f141b
JA
3431static void __io_poll_flush(struct io_ring_ctx *ctx, struct llist_node *nodes)
3432{
e94f141b 3433 struct io_kiocb *req, *tmp;
8237e045 3434 struct req_batch rb;
e94f141b 3435
c6ca97b3 3436 rb.to_free = rb.need_iter = 0;
e94f141b
JA
3437 spin_lock_irq(&ctx->completion_lock);
3438 llist_for_each_entry_safe(req, tmp, nodes, llist_node) {
3439 hash_del(&req->hash_node);
3440 io_poll_complete(req, req->result, 0);
3441
8237e045
JA
3442 if (refcount_dec_and_test(&req->refs) &&
3443 !io_req_multi_free(&rb, req)) {
3444 req->flags |= REQ_F_COMP_LOCKED;
3445 io_free_req(req);
e94f141b
JA
3446 }
3447 }
3448 spin_unlock_irq(&ctx->completion_lock);
3449
3450 io_cqring_ev_posted(ctx);
8237e045 3451 io_free_req_many(ctx, &rb);
e94f141b
JA
3452}
3453
3454static void io_poll_flush(struct io_wq_work **workptr)
3455{
3456 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
3457 struct llist_node *nodes;
3458
3459 nodes = llist_del_all(&req->ctx->poll_llist);
3460 if (nodes)
3461 __io_poll_flush(req->ctx, nodes);
3462}
3463
221c5eb2
JA
3464static int io_poll_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
3465 void *key)
3466{
e944475e 3467 struct io_poll_iocb *poll = wait->private;
221c5eb2
JA
3468 struct io_kiocb *req = container_of(poll, struct io_kiocb, poll);
3469 struct io_ring_ctx *ctx = req->ctx;
3470 __poll_t mask = key_to_poll(key);
221c5eb2
JA
3471
3472 /* for instances that support it check for an event match first: */
8c838788
JA
3473 if (mask && !(mask & poll->events))
3474 return 0;
221c5eb2 3475
392edb45 3476 list_del_init(&poll->wait.entry);
221c5eb2 3477
7c9e7f0f
JA
3478 /*
3479 * Run completion inline if we can. We're using trylock here because
3480 * we are violating the completion_lock -> poll wq lock ordering.
3481 * If we have a link timeout we're going to need the completion_lock
3482 * for finalizing the request, mark us as having grabbed that already.
3483 */
e94f141b
JA
3484 if (mask) {
3485 unsigned long flags;
221c5eb2 3486
e94f141b
JA
3487 if (llist_empty(&ctx->poll_llist) &&
3488 spin_trylock_irqsave(&ctx->completion_lock, flags)) {
3489 hash_del(&req->hash_node);
3490 io_poll_complete(req, mask, 0);
3491 req->flags |= REQ_F_COMP_LOCKED;
3492 io_put_req(req);
3493 spin_unlock_irqrestore(&ctx->completion_lock, flags);
3494
3495 io_cqring_ev_posted(ctx);
3496 req = NULL;
3497 } else {
3498 req->result = mask;
3499 req->llist_node.next = NULL;
3500 /* if the list wasn't empty, we're done */
3501 if (!llist_add(&req->llist_node, &ctx->poll_llist))
3502 req = NULL;
3503 else
3504 req->work.func = io_poll_flush;
3505 }
221c5eb2 3506 }
e94f141b
JA
3507 if (req)
3508 io_queue_async_work(req);
221c5eb2 3509
221c5eb2
JA
3510 return 1;
3511}
3512
3513struct io_poll_table {
3514 struct poll_table_struct pt;
3515 struct io_kiocb *req;
3516 int error;
3517};
3518
3519static void io_poll_queue_proc(struct file *file, struct wait_queue_head *head,
3520 struct poll_table_struct *p)
3521{
3522 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
3523
3524 if (unlikely(pt->req->poll.head)) {
3525 pt->error = -EINVAL;
3526 return;
3527 }
3528
3529 pt->error = 0;
3530 pt->req->poll.head = head;
392edb45 3531 add_wait_queue(head, &pt->req->poll.wait);
221c5eb2
JA
3532}
3533
eac406c6
JA
3534static void io_poll_req_insert(struct io_kiocb *req)
3535{
3536 struct io_ring_ctx *ctx = req->ctx;
78076bb6
JA
3537 struct hlist_head *list;
3538
3539 list = &ctx->cancel_hash[hash_long(req->user_data, ctx->cancel_hash_bits)];
3540 hlist_add_head(&req->hash_node, list);
eac406c6
JA
3541}
3542
3529d8c2 3543static int io_poll_add_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
221c5eb2
JA
3544{
3545 struct io_poll_iocb *poll = &req->poll;
221c5eb2 3546 u16 events;
221c5eb2
JA
3547
3548 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3549 return -EINVAL;
3550 if (sqe->addr || sqe->ioprio || sqe->off || sqe->len || sqe->buf_index)
3551 return -EINVAL;
09bb8394
JA
3552 if (!poll->file)
3553 return -EBADF;
221c5eb2 3554
221c5eb2
JA
3555 events = READ_ONCE(sqe->poll_events);
3556 poll->events = demangle_poll(events) | EPOLLERR | EPOLLHUP;
0969e783
JA
3557 return 0;
3558}
3559
3560static int io_poll_add(struct io_kiocb *req, struct io_kiocb **nxt)
3561{
3562 struct io_poll_iocb *poll = &req->poll;
3563 struct io_ring_ctx *ctx = req->ctx;
3564 struct io_poll_table ipt;
3565 bool cancel = false;
3566 __poll_t mask;
0969e783
JA
3567
3568 INIT_IO_WORK(&req->work, io_poll_complete_work);
78076bb6 3569 INIT_HLIST_NODE(&req->hash_node);
221c5eb2 3570
221c5eb2 3571 poll->head = NULL;
8c838788 3572 poll->done = false;
221c5eb2
JA
3573 poll->canceled = false;
3574
3575 ipt.pt._qproc = io_poll_queue_proc;
3576 ipt.pt._key = poll->events;
3577 ipt.req = req;
3578 ipt.error = -EINVAL; /* same as no support for IOCB_CMD_POLL */
3579
3580 /* initialized the list so that we can do list_empty checks */
392edb45
JA
3581 INIT_LIST_HEAD(&poll->wait.entry);
3582 init_waitqueue_func_entry(&poll->wait, io_poll_wake);
3583 poll->wait.private = poll;
221c5eb2 3584
36703247
JA
3585 INIT_LIST_HEAD(&req->list);
3586
221c5eb2 3587 mask = vfs_poll(poll->file, &ipt.pt) & poll->events;
221c5eb2
JA
3588
3589 spin_lock_irq(&ctx->completion_lock);
8c838788
JA
3590 if (likely(poll->head)) {
3591 spin_lock(&poll->head->lock);
392edb45 3592 if (unlikely(list_empty(&poll->wait.entry))) {
8c838788
JA
3593 if (ipt.error)
3594 cancel = true;
3595 ipt.error = 0;
3596 mask = 0;
3597 }
3598 if (mask || ipt.error)
392edb45 3599 list_del_init(&poll->wait.entry);
8c838788
JA
3600 else if (cancel)
3601 WRITE_ONCE(poll->canceled, true);
3602 else if (!poll->done) /* actually waiting for an event */
eac406c6 3603 io_poll_req_insert(req);
8c838788
JA
3604 spin_unlock(&poll->head->lock);
3605 }
3606 if (mask) { /* no async, we'd stolen it */
221c5eb2 3607 ipt.error = 0;
b0dd8a41 3608 io_poll_complete(req, mask, 0);
221c5eb2 3609 }
221c5eb2
JA
3610 spin_unlock_irq(&ctx->completion_lock);
3611
8c838788
JA
3612 if (mask) {
3613 io_cqring_ev_posted(ctx);
ec9c02ad 3614 io_put_req_find_next(req, nxt);
221c5eb2 3615 }
8c838788 3616 return ipt.error;
221c5eb2
JA
3617}
3618
5262f567
JA
3619static enum hrtimer_restart io_timeout_fn(struct hrtimer *timer)
3620{
ad8a48ac
JA
3621 struct io_timeout_data *data = container_of(timer,
3622 struct io_timeout_data, timer);
3623 struct io_kiocb *req = data->req;
3624 struct io_ring_ctx *ctx = req->ctx;
5262f567
JA
3625 unsigned long flags;
3626
5262f567
JA
3627 atomic_inc(&ctx->cq_timeouts);
3628
3629 spin_lock_irqsave(&ctx->completion_lock, flags);
ef03681a 3630 /*
11365043
JA
3631 * We could be racing with timeout deletion. If the list is empty,
3632 * then timeout lookup already found it and will be handling it.
ef03681a 3633 */
842f9612 3634 if (!list_empty(&req->list)) {
11365043 3635 struct io_kiocb *prev;
5262f567 3636
11365043
JA
3637 /*
3638 * Adjust the reqs sequence before the current one because it
d195a66e 3639 * will consume a slot in the cq_ring and the cq_tail
11365043
JA
3640 * pointer will be increased, otherwise other timeout reqs may
3641 * return in advance without waiting for enough wait_nr.
3642 */
3643 prev = req;
3644 list_for_each_entry_continue_reverse(prev, &ctx->timeout_list, list)
3645 prev->sequence++;
11365043 3646 list_del_init(&req->list);
11365043 3647 }
5262f567 3648
78e19bbe 3649 io_cqring_fill_event(req, -ETIME);
5262f567
JA
3650 io_commit_cqring(ctx);
3651 spin_unlock_irqrestore(&ctx->completion_lock, flags);
3652
3653 io_cqring_ev_posted(ctx);
4e88d6e7 3654 req_set_fail_links(req);
5262f567
JA
3655 io_put_req(req);
3656 return HRTIMER_NORESTART;
3657}
3658
47f46768
JA
3659static int io_timeout_cancel(struct io_ring_ctx *ctx, __u64 user_data)
3660{
3661 struct io_kiocb *req;
3662 int ret = -ENOENT;
3663
3664 list_for_each_entry(req, &ctx->timeout_list, list) {
3665 if (user_data == req->user_data) {
3666 list_del_init(&req->list);
3667 ret = 0;
3668 break;
3669 }
3670 }
3671
3672 if (ret == -ENOENT)
3673 return ret;
3674
2d28390a 3675 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
47f46768
JA
3676 if (ret == -1)
3677 return -EALREADY;
3678
4e88d6e7 3679 req_set_fail_links(req);
47f46768
JA
3680 io_cqring_fill_event(req, -ECANCELED);
3681 io_put_req(req);
3682 return 0;
3683}
3684
3529d8c2
JA
3685static int io_timeout_remove_prep(struct io_kiocb *req,
3686 const struct io_uring_sqe *sqe)
b29472ee 3687{
b29472ee
JA
3688 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3689 return -EINVAL;
3690 if (sqe->flags || sqe->ioprio || sqe->buf_index || sqe->len)
3691 return -EINVAL;
3692
3693 req->timeout.addr = READ_ONCE(sqe->addr);
3694 req->timeout.flags = READ_ONCE(sqe->timeout_flags);
3695 if (req->timeout.flags)
3696 return -EINVAL;
3697
b29472ee
JA
3698 return 0;
3699}
3700
11365043
JA
3701/*
3702 * Remove or update an existing timeout command
3703 */
fc4df999 3704static int io_timeout_remove(struct io_kiocb *req)
11365043
JA
3705{
3706 struct io_ring_ctx *ctx = req->ctx;
47f46768 3707 int ret;
11365043 3708
11365043 3709 spin_lock_irq(&ctx->completion_lock);
b29472ee 3710 ret = io_timeout_cancel(ctx, req->timeout.addr);
11365043 3711
47f46768 3712 io_cqring_fill_event(req, ret);
11365043
JA
3713 io_commit_cqring(ctx);
3714 spin_unlock_irq(&ctx->completion_lock);
5262f567 3715 io_cqring_ev_posted(ctx);
4e88d6e7
JA
3716 if (ret < 0)
3717 req_set_fail_links(req);
ec9c02ad 3718 io_put_req(req);
11365043 3719 return 0;
5262f567
JA
3720}
3721
3529d8c2 3722static int io_timeout_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2d28390a 3723 bool is_timeout_link)
5262f567 3724{
ad8a48ac 3725 struct io_timeout_data *data;
a41525ab 3726 unsigned flags;
5262f567 3727
ad8a48ac 3728 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
5262f567 3729 return -EINVAL;
ad8a48ac 3730 if (sqe->ioprio || sqe->buf_index || sqe->len != 1)
a41525ab 3731 return -EINVAL;
2d28390a
JA
3732 if (sqe->off && is_timeout_link)
3733 return -EINVAL;
a41525ab
JA
3734 flags = READ_ONCE(sqe->timeout_flags);
3735 if (flags & ~IORING_TIMEOUT_ABS)
5262f567 3736 return -EINVAL;
bdf20073 3737
26a61679
JA
3738 req->timeout.count = READ_ONCE(sqe->off);
3739
3529d8c2 3740 if (!req->io && io_alloc_async_ctx(req))
26a61679
JA
3741 return -ENOMEM;
3742
3743 data = &req->io->timeout;
ad8a48ac 3744 data->req = req;
ad8a48ac
JA
3745 req->flags |= REQ_F_TIMEOUT;
3746
3747 if (get_timespec64(&data->ts, u64_to_user_ptr(sqe->addr)))
5262f567
JA
3748 return -EFAULT;
3749
11365043 3750 if (flags & IORING_TIMEOUT_ABS)
ad8a48ac 3751 data->mode = HRTIMER_MODE_ABS;
11365043 3752 else
ad8a48ac 3753 data->mode = HRTIMER_MODE_REL;
11365043 3754
ad8a48ac
JA
3755 hrtimer_init(&data->timer, CLOCK_MONOTONIC, data->mode);
3756 return 0;
3757}
3758
fc4df999 3759static int io_timeout(struct io_kiocb *req)
ad8a48ac
JA
3760{
3761 unsigned count;
3762 struct io_ring_ctx *ctx = req->ctx;
3763 struct io_timeout_data *data;
3764 struct list_head *entry;
3765 unsigned span = 0;
ad8a48ac 3766
2d28390a 3767 data = &req->io->timeout;
93bd25bb 3768
5262f567
JA
3769 /*
3770 * sqe->off holds how many events that need to occur for this
93bd25bb
JA
3771 * timeout event to be satisfied. If it isn't set, then this is
3772 * a pure timeout request, sequence isn't used.
5262f567 3773 */
26a61679 3774 count = req->timeout.count;
93bd25bb
JA
3775 if (!count) {
3776 req->flags |= REQ_F_TIMEOUT_NOSEQ;
3777 spin_lock_irq(&ctx->completion_lock);
3778 entry = ctx->timeout_list.prev;
3779 goto add;
3780 }
5262f567
JA
3781
3782 req->sequence = ctx->cached_sq_head + count - 1;
2d28390a 3783 data->seq_offset = count;
5262f567
JA
3784
3785 /*
3786 * Insertion sort, ensuring the first entry in the list is always
3787 * the one we need first.
3788 */
5262f567
JA
3789 spin_lock_irq(&ctx->completion_lock);
3790 list_for_each_prev(entry, &ctx->timeout_list) {
3791 struct io_kiocb *nxt = list_entry(entry, struct io_kiocb, list);
5da0fb1a 3792 unsigned nxt_sq_head;
3793 long long tmp, tmp_nxt;
2d28390a 3794 u32 nxt_offset = nxt->io->timeout.seq_offset;
5262f567 3795
93bd25bb
JA
3796 if (nxt->flags & REQ_F_TIMEOUT_NOSEQ)
3797 continue;
3798
5da0fb1a 3799 /*
3800 * Since cached_sq_head + count - 1 can overflow, use type long
3801 * long to store it.
3802 */
3803 tmp = (long long)ctx->cached_sq_head + count - 1;
cc42e0ac
PB
3804 nxt_sq_head = nxt->sequence - nxt_offset + 1;
3805 tmp_nxt = (long long)nxt_sq_head + nxt_offset - 1;
5da0fb1a 3806
3807 /*
3808 * cached_sq_head may overflow, and it will never overflow twice
3809 * once there is some timeout req still be valid.
3810 */
3811 if (ctx->cached_sq_head < nxt_sq_head)
8b07a65a 3812 tmp += UINT_MAX;
5da0fb1a 3813
a1f58ba4 3814 if (tmp > tmp_nxt)
5262f567 3815 break;
a1f58ba4 3816
3817 /*
3818 * Sequence of reqs after the insert one and itself should
3819 * be adjusted because each timeout req consumes a slot.
3820 */
3821 span++;
3822 nxt->sequence++;
5262f567 3823 }
a1f58ba4 3824 req->sequence -= span;
93bd25bb 3825add:
5262f567 3826 list_add(&req->list, entry);
ad8a48ac
JA
3827 data->timer.function = io_timeout_fn;
3828 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts), data->mode);
5262f567 3829 spin_unlock_irq(&ctx->completion_lock);
5262f567
JA
3830 return 0;
3831}
5262f567 3832
62755e35
JA
3833static bool io_cancel_cb(struct io_wq_work *work, void *data)
3834{
3835 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
3836
3837 return req->user_data == (unsigned long) data;
3838}
3839
e977d6d3 3840static int io_async_cancel_one(struct io_ring_ctx *ctx, void *sqe_addr)
62755e35 3841{
62755e35 3842 enum io_wq_cancel cancel_ret;
62755e35
JA
3843 int ret = 0;
3844
62755e35
JA
3845 cancel_ret = io_wq_cancel_cb(ctx->io_wq, io_cancel_cb, sqe_addr);
3846 switch (cancel_ret) {
3847 case IO_WQ_CANCEL_OK:
3848 ret = 0;
3849 break;
3850 case IO_WQ_CANCEL_RUNNING:
3851 ret = -EALREADY;
3852 break;
3853 case IO_WQ_CANCEL_NOTFOUND:
3854 ret = -ENOENT;
3855 break;
3856 }
3857
e977d6d3
JA
3858 return ret;
3859}
3860
47f46768
JA
3861static void io_async_find_and_cancel(struct io_ring_ctx *ctx,
3862 struct io_kiocb *req, __u64 sqe_addr,
b0dd8a41 3863 struct io_kiocb **nxt, int success_ret)
47f46768
JA
3864{
3865 unsigned long flags;
3866 int ret;
3867
3868 ret = io_async_cancel_one(ctx, (void *) (unsigned long) sqe_addr);
3869 if (ret != -ENOENT) {
3870 spin_lock_irqsave(&ctx->completion_lock, flags);
3871 goto done;
3872 }
3873
3874 spin_lock_irqsave(&ctx->completion_lock, flags);
3875 ret = io_timeout_cancel(ctx, sqe_addr);
3876 if (ret != -ENOENT)
3877 goto done;
3878 ret = io_poll_cancel(ctx, sqe_addr);
3879done:
b0dd8a41
JA
3880 if (!ret)
3881 ret = success_ret;
47f46768
JA
3882 io_cqring_fill_event(req, ret);
3883 io_commit_cqring(ctx);
3884 spin_unlock_irqrestore(&ctx->completion_lock, flags);
3885 io_cqring_ev_posted(ctx);
3886
4e88d6e7
JA
3887 if (ret < 0)
3888 req_set_fail_links(req);
47f46768
JA
3889 io_put_req_find_next(req, nxt);
3890}
3891
3529d8c2
JA
3892static int io_async_cancel_prep(struct io_kiocb *req,
3893 const struct io_uring_sqe *sqe)
e977d6d3 3894{
fbf23849 3895 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
e977d6d3
JA
3896 return -EINVAL;
3897 if (sqe->flags || sqe->ioprio || sqe->off || sqe->len ||
3898 sqe->cancel_flags)
3899 return -EINVAL;
3900
fbf23849
JA
3901 req->cancel.addr = READ_ONCE(sqe->addr);
3902 return 0;
3903}
3904
3905static int io_async_cancel(struct io_kiocb *req, struct io_kiocb **nxt)
3906{
3907 struct io_ring_ctx *ctx = req->ctx;
fbf23849
JA
3908
3909 io_async_find_and_cancel(ctx, req, req->cancel.addr, nxt, 0);
5262f567
JA
3910 return 0;
3911}
3912
05f3fb3c
JA
3913static int io_files_update_prep(struct io_kiocb *req,
3914 const struct io_uring_sqe *sqe)
3915{
3916 if (sqe->flags || sqe->ioprio || sqe->rw_flags)
3917 return -EINVAL;
3918
3919 req->files_update.offset = READ_ONCE(sqe->off);
3920 req->files_update.nr_args = READ_ONCE(sqe->len);
3921 if (!req->files_update.nr_args)
3922 return -EINVAL;
3923 req->files_update.arg = READ_ONCE(sqe->addr);
3924 return 0;
3925}
3926
3927static int io_files_update(struct io_kiocb *req, bool force_nonblock)
3928{
3929 struct io_ring_ctx *ctx = req->ctx;
3930 struct io_uring_files_update up;
3931 int ret;
3932
3933 if (force_nonblock) {
3934 req->work.flags |= IO_WQ_WORK_NEEDS_FILES;
3935 return -EAGAIN;
3936 }
3937
3938 up.offset = req->files_update.offset;
3939 up.fds = req->files_update.arg;
3940
3941 mutex_lock(&ctx->uring_lock);
3942 ret = __io_sqe_files_update(ctx, &up, req->files_update.nr_args);
3943 mutex_unlock(&ctx->uring_lock);
3944
3945 if (ret < 0)
3946 req_set_fail_links(req);
3947 io_cqring_add_event(req, ret);
3948 io_put_req(req);
3949 return 0;
3950}
3951
3529d8c2
JA
3952static int io_req_defer_prep(struct io_kiocb *req,
3953 const struct io_uring_sqe *sqe)
f67676d1 3954{
e781573e 3955 ssize_t ret = 0;
f67676d1 3956
d625c6ee 3957 switch (req->opcode) {
e781573e
JA
3958 case IORING_OP_NOP:
3959 break;
f67676d1
JA
3960 case IORING_OP_READV:
3961 case IORING_OP_READ_FIXED:
3a6820f2 3962 case IORING_OP_READ:
3529d8c2 3963 ret = io_read_prep(req, sqe, true);
f67676d1
JA
3964 break;
3965 case IORING_OP_WRITEV:
3966 case IORING_OP_WRITE_FIXED:
3a6820f2 3967 case IORING_OP_WRITE:
3529d8c2 3968 ret = io_write_prep(req, sqe, true);
f67676d1 3969 break;
0969e783 3970 case IORING_OP_POLL_ADD:
3529d8c2 3971 ret = io_poll_add_prep(req, sqe);
0969e783
JA
3972 break;
3973 case IORING_OP_POLL_REMOVE:
3529d8c2 3974 ret = io_poll_remove_prep(req, sqe);
0969e783 3975 break;
8ed8d3c3 3976 case IORING_OP_FSYNC:
3529d8c2 3977 ret = io_prep_fsync(req, sqe);
8ed8d3c3
JA
3978 break;
3979 case IORING_OP_SYNC_FILE_RANGE:
3529d8c2 3980 ret = io_prep_sfr(req, sqe);
8ed8d3c3 3981 break;
03b1230c 3982 case IORING_OP_SENDMSG:
fddaface 3983 case IORING_OP_SEND:
3529d8c2 3984 ret = io_sendmsg_prep(req, sqe);
03b1230c
JA
3985 break;
3986 case IORING_OP_RECVMSG:
fddaface 3987 case IORING_OP_RECV:
3529d8c2 3988 ret = io_recvmsg_prep(req, sqe);
03b1230c 3989 break;
f499a021 3990 case IORING_OP_CONNECT:
3529d8c2 3991 ret = io_connect_prep(req, sqe);
f499a021 3992 break;
2d28390a 3993 case IORING_OP_TIMEOUT:
3529d8c2 3994 ret = io_timeout_prep(req, sqe, false);
b7bb4f7d 3995 break;
b29472ee 3996 case IORING_OP_TIMEOUT_REMOVE:
3529d8c2 3997 ret = io_timeout_remove_prep(req, sqe);
b29472ee 3998 break;
fbf23849 3999 case IORING_OP_ASYNC_CANCEL:
3529d8c2 4000 ret = io_async_cancel_prep(req, sqe);
fbf23849 4001 break;
2d28390a 4002 case IORING_OP_LINK_TIMEOUT:
3529d8c2 4003 ret = io_timeout_prep(req, sqe, true);
b7bb4f7d 4004 break;
8ed8d3c3 4005 case IORING_OP_ACCEPT:
3529d8c2 4006 ret = io_accept_prep(req, sqe);
8ed8d3c3 4007 break;
d63d1b5e
JA
4008 case IORING_OP_FALLOCATE:
4009 ret = io_fallocate_prep(req, sqe);
4010 break;
15b71abe
JA
4011 case IORING_OP_OPENAT:
4012 ret = io_openat_prep(req, sqe);
4013 break;
b5dba59e
JA
4014 case IORING_OP_CLOSE:
4015 ret = io_close_prep(req, sqe);
4016 break;
05f3fb3c
JA
4017 case IORING_OP_FILES_UPDATE:
4018 ret = io_files_update_prep(req, sqe);
4019 break;
eddc7ef5
JA
4020 case IORING_OP_STATX:
4021 ret = io_statx_prep(req, sqe);
4022 break;
4840e418
JA
4023 case IORING_OP_FADVISE:
4024 ret = io_fadvise_prep(req, sqe);
4025 break;
c1ca757b
JA
4026 case IORING_OP_MADVISE:
4027 ret = io_madvise_prep(req, sqe);
4028 break;
cebdb986
JA
4029 case IORING_OP_OPENAT2:
4030 ret = io_openat2_prep(req, sqe);
4031 break;
f67676d1 4032 default:
e781573e
JA
4033 printk_once(KERN_WARNING "io_uring: unhandled opcode %d\n",
4034 req->opcode);
4035 ret = -EINVAL;
b7bb4f7d 4036 break;
f67676d1
JA
4037 }
4038
b7bb4f7d 4039 return ret;
f67676d1
JA
4040}
4041
3529d8c2 4042static int io_req_defer(struct io_kiocb *req, const struct io_uring_sqe *sqe)
de0617e4 4043{
a197f664 4044 struct io_ring_ctx *ctx = req->ctx;
f67676d1 4045 int ret;
de0617e4 4046
9d858b21
BL
4047 /* Still need defer if there is pending req in defer list. */
4048 if (!req_need_defer(req) && list_empty(&ctx->defer_list))
de0617e4
JA
4049 return 0;
4050
3529d8c2 4051 if (!req->io && io_alloc_async_ctx(req))
de0617e4
JA
4052 return -EAGAIN;
4053
3529d8c2 4054 ret = io_req_defer_prep(req, sqe);
b7bb4f7d 4055 if (ret < 0)
2d28390a 4056 return ret;
2d28390a 4057
de0617e4 4058 spin_lock_irq(&ctx->completion_lock);
9d858b21 4059 if (!req_need_defer(req) && list_empty(&ctx->defer_list)) {
de0617e4 4060 spin_unlock_irq(&ctx->completion_lock);
de0617e4
JA
4061 return 0;
4062 }
4063
915967f6 4064 trace_io_uring_defer(ctx, req, req->user_data);
de0617e4
JA
4065 list_add_tail(&req->list, &ctx->defer_list);
4066 spin_unlock_irq(&ctx->completion_lock);
4067 return -EIOCBQUEUED;
4068}
4069
3529d8c2
JA
4070static int io_issue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
4071 struct io_kiocb **nxt, bool force_nonblock)
2b188cc1 4072{
a197f664 4073 struct io_ring_ctx *ctx = req->ctx;
d625c6ee 4074 int ret;
2b188cc1 4075
d625c6ee 4076 switch (req->opcode) {
2b188cc1 4077 case IORING_OP_NOP:
78e19bbe 4078 ret = io_nop(req);
2b188cc1
JA
4079 break;
4080 case IORING_OP_READV:
edafccee 4081 case IORING_OP_READ_FIXED:
3a6820f2 4082 case IORING_OP_READ:
3529d8c2
JA
4083 if (sqe) {
4084 ret = io_read_prep(req, sqe, force_nonblock);
4085 if (ret < 0)
4086 break;
4087 }
267bc904 4088 ret = io_read(req, nxt, force_nonblock);
edafccee 4089 break;
3529d8c2 4090 case IORING_OP_WRITEV:
edafccee 4091 case IORING_OP_WRITE_FIXED:
3a6820f2 4092 case IORING_OP_WRITE:
3529d8c2
JA
4093 if (sqe) {
4094 ret = io_write_prep(req, sqe, force_nonblock);
4095 if (ret < 0)
4096 break;
4097 }
267bc904 4098 ret = io_write(req, nxt, force_nonblock);
2b188cc1 4099 break;
c992fe29 4100 case IORING_OP_FSYNC:
3529d8c2
JA
4101 if (sqe) {
4102 ret = io_prep_fsync(req, sqe);
4103 if (ret < 0)
4104 break;
4105 }
fc4df999 4106 ret = io_fsync(req, nxt, force_nonblock);
c992fe29 4107 break;
221c5eb2 4108 case IORING_OP_POLL_ADD:
3529d8c2
JA
4109 if (sqe) {
4110 ret = io_poll_add_prep(req, sqe);
4111 if (ret)
4112 break;
4113 }
fc4df999 4114 ret = io_poll_add(req, nxt);
221c5eb2
JA
4115 break;
4116 case IORING_OP_POLL_REMOVE:
3529d8c2
JA
4117 if (sqe) {
4118 ret = io_poll_remove_prep(req, sqe);
4119 if (ret < 0)
4120 break;
4121 }
fc4df999 4122 ret = io_poll_remove(req);
221c5eb2 4123 break;
5d17b4a4 4124 case IORING_OP_SYNC_FILE_RANGE:
3529d8c2
JA
4125 if (sqe) {
4126 ret = io_prep_sfr(req, sqe);
4127 if (ret < 0)
4128 break;
4129 }
fc4df999 4130 ret = io_sync_file_range(req, nxt, force_nonblock);
5d17b4a4 4131 break;
0fa03c62 4132 case IORING_OP_SENDMSG:
fddaface 4133 case IORING_OP_SEND:
3529d8c2
JA
4134 if (sqe) {
4135 ret = io_sendmsg_prep(req, sqe);
4136 if (ret < 0)
4137 break;
4138 }
fddaface
JA
4139 if (req->opcode == IORING_OP_SENDMSG)
4140 ret = io_sendmsg(req, nxt, force_nonblock);
4141 else
4142 ret = io_send(req, nxt, force_nonblock);
0fa03c62 4143 break;
aa1fa28f 4144 case IORING_OP_RECVMSG:
fddaface 4145 case IORING_OP_RECV:
3529d8c2
JA
4146 if (sqe) {
4147 ret = io_recvmsg_prep(req, sqe);
4148 if (ret)
4149 break;
4150 }
fddaface
JA
4151 if (req->opcode == IORING_OP_RECVMSG)
4152 ret = io_recvmsg(req, nxt, force_nonblock);
4153 else
4154 ret = io_recv(req, nxt, force_nonblock);
aa1fa28f 4155 break;
5262f567 4156 case IORING_OP_TIMEOUT:
3529d8c2
JA
4157 if (sqe) {
4158 ret = io_timeout_prep(req, sqe, false);
4159 if (ret)
4160 break;
4161 }
fc4df999 4162 ret = io_timeout(req);
5262f567 4163 break;
11365043 4164 case IORING_OP_TIMEOUT_REMOVE:
3529d8c2
JA
4165 if (sqe) {
4166 ret = io_timeout_remove_prep(req, sqe);
4167 if (ret)
4168 break;
4169 }
fc4df999 4170 ret = io_timeout_remove(req);
11365043 4171 break;
17f2fe35 4172 case IORING_OP_ACCEPT:
3529d8c2
JA
4173 if (sqe) {
4174 ret = io_accept_prep(req, sqe);
4175 if (ret)
4176 break;
4177 }
fc4df999 4178 ret = io_accept(req, nxt, force_nonblock);
17f2fe35 4179 break;
f8e85cf2 4180 case IORING_OP_CONNECT:
3529d8c2
JA
4181 if (sqe) {
4182 ret = io_connect_prep(req, sqe);
4183 if (ret)
4184 break;
4185 }
fc4df999 4186 ret = io_connect(req, nxt, force_nonblock);
f8e85cf2 4187 break;
62755e35 4188 case IORING_OP_ASYNC_CANCEL:
3529d8c2
JA
4189 if (sqe) {
4190 ret = io_async_cancel_prep(req, sqe);
4191 if (ret)
4192 break;
4193 }
fc4df999 4194 ret = io_async_cancel(req, nxt);
62755e35 4195 break;
d63d1b5e
JA
4196 case IORING_OP_FALLOCATE:
4197 if (sqe) {
4198 ret = io_fallocate_prep(req, sqe);
4199 if (ret)
4200 break;
4201 }
4202 ret = io_fallocate(req, nxt, force_nonblock);
4203 break;
15b71abe
JA
4204 case IORING_OP_OPENAT:
4205 if (sqe) {
4206 ret = io_openat_prep(req, sqe);
4207 if (ret)
4208 break;
4209 }
4210 ret = io_openat(req, nxt, force_nonblock);
4211 break;
b5dba59e
JA
4212 case IORING_OP_CLOSE:
4213 if (sqe) {
4214 ret = io_close_prep(req, sqe);
4215 if (ret)
4216 break;
4217 }
4218 ret = io_close(req, nxt, force_nonblock);
4219 break;
05f3fb3c
JA
4220 case IORING_OP_FILES_UPDATE:
4221 if (sqe) {
4222 ret = io_files_update_prep(req, sqe);
4223 if (ret)
4224 break;
4225 }
4226 ret = io_files_update(req, force_nonblock);
4227 break;
eddc7ef5
JA
4228 case IORING_OP_STATX:
4229 if (sqe) {
4230 ret = io_statx_prep(req, sqe);
4231 if (ret)
4232 break;
4233 }
4234 ret = io_statx(req, nxt, force_nonblock);
4235 break;
4840e418
JA
4236 case IORING_OP_FADVISE:
4237 if (sqe) {
4238 ret = io_fadvise_prep(req, sqe);
4239 if (ret)
4240 break;
4241 }
4242 ret = io_fadvise(req, nxt, force_nonblock);
4243 break;
c1ca757b
JA
4244 case IORING_OP_MADVISE:
4245 if (sqe) {
4246 ret = io_madvise_prep(req, sqe);
4247 if (ret)
4248 break;
4249 }
4250 ret = io_madvise(req, nxt, force_nonblock);
4251 break;
cebdb986
JA
4252 case IORING_OP_OPENAT2:
4253 if (sqe) {
4254 ret = io_openat2_prep(req, sqe);
4255 if (ret)
4256 break;
4257 }
4258 ret = io_openat2(req, nxt, force_nonblock);
4259 break;
2b188cc1
JA
4260 default:
4261 ret = -EINVAL;
4262 break;
4263 }
4264
def596e9
JA
4265 if (ret)
4266 return ret;
4267
4268 if (ctx->flags & IORING_SETUP_IOPOLL) {
11ba820b
JA
4269 const bool in_async = io_wq_current_is_worker();
4270
9e645e11 4271 if (req->result == -EAGAIN)
def596e9
JA
4272 return -EAGAIN;
4273
11ba820b
JA
4274 /* workqueue context doesn't hold uring_lock, grab it now */
4275 if (in_async)
4276 mutex_lock(&ctx->uring_lock);
4277
def596e9 4278 io_iopoll_req_issued(req);
11ba820b
JA
4279
4280 if (in_async)
4281 mutex_unlock(&ctx->uring_lock);
def596e9
JA
4282 }
4283
4284 return 0;
2b188cc1
JA
4285}
4286
561fb04a 4287static void io_wq_submit_work(struct io_wq_work **workptr)
2b188cc1 4288{
561fb04a 4289 struct io_wq_work *work = *workptr;
2b188cc1 4290 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
561fb04a
JA
4291 struct io_kiocb *nxt = NULL;
4292 int ret = 0;
2b188cc1 4293
0c9d5ccd
JA
4294 /* if NO_CANCEL is set, we must still run the work */
4295 if ((work->flags & (IO_WQ_WORK_CANCEL|IO_WQ_WORK_NO_CANCEL)) ==
4296 IO_WQ_WORK_CANCEL) {
561fb04a 4297 ret = -ECANCELED;
0c9d5ccd 4298 }
31b51510 4299
561fb04a 4300 if (!ret) {
cf6fd4bd
PB
4301 req->has_user = (work->flags & IO_WQ_WORK_HAS_MM) != 0;
4302 req->in_async = true;
561fb04a 4303 do {
3529d8c2 4304 ret = io_issue_sqe(req, NULL, &nxt, false);
561fb04a
JA
4305 /*
4306 * We can get EAGAIN for polled IO even though we're
4307 * forcing a sync submission from here, since we can't
4308 * wait for request slots on the block side.
4309 */
4310 if (ret != -EAGAIN)
4311 break;
4312 cond_resched();
4313 } while (1);
4314 }
31b51510 4315
561fb04a 4316 /* drop submission reference */
ec9c02ad 4317 io_put_req(req);
817869d2 4318
561fb04a 4319 if (ret) {
4e88d6e7 4320 req_set_fail_links(req);
78e19bbe 4321 io_cqring_add_event(req, ret);
817869d2 4322 io_put_req(req);
edafccee 4323 }
2b188cc1 4324
561fb04a 4325 /* if a dependent link is ready, pass it back */
78912934
JA
4326 if (!ret && nxt)
4327 io_wq_assign_next(workptr, nxt);
2b188cc1
JA
4328}
4329
15b71abe 4330static int io_req_needs_file(struct io_kiocb *req, int fd)
09bb8394 4331{
d3656344 4332 if (!io_op_defs[req->opcode].needs_file)
9e3aa61a 4333 return 0;
d3656344
JA
4334 if (fd == -1 && io_op_defs[req->opcode].fd_non_neg)
4335 return 0;
4336 return 1;
09bb8394
JA
4337}
4338
65e19f54
JA
4339static inline struct file *io_file_from_index(struct io_ring_ctx *ctx,
4340 int index)
4341{
4342 struct fixed_file_table *table;
4343
05f3fb3c
JA
4344 table = &ctx->file_data->table[index >> IORING_FILE_TABLE_SHIFT];
4345 return table->files[index & IORING_FILE_TABLE_MASK];;
65e19f54
JA
4346}
4347
3529d8c2
JA
4348static int io_req_set_file(struct io_submit_state *state, struct io_kiocb *req,
4349 const struct io_uring_sqe *sqe)
09bb8394 4350{
a197f664 4351 struct io_ring_ctx *ctx = req->ctx;
09bb8394 4352 unsigned flags;
d3656344 4353 int fd;
09bb8394 4354
3529d8c2
JA
4355 flags = READ_ONCE(sqe->flags);
4356 fd = READ_ONCE(sqe->fd);
09bb8394 4357
4fe2c963 4358 if (flags & IOSQE_IO_DRAIN)
de0617e4 4359 req->flags |= REQ_F_IO_DRAIN;
de0617e4 4360
d3656344
JA
4361 if (!io_req_needs_file(req, fd))
4362 return 0;
09bb8394
JA
4363
4364 if (flags & IOSQE_FIXED_FILE) {
05f3fb3c 4365 if (unlikely(!ctx->file_data ||
09bb8394
JA
4366 (unsigned) fd >= ctx->nr_user_files))
4367 return -EBADF;
b7620121 4368 fd = array_index_nospec(fd, ctx->nr_user_files);
65e19f54
JA
4369 req->file = io_file_from_index(ctx, fd);
4370 if (!req->file)
08a45173 4371 return -EBADF;
09bb8394 4372 req->flags |= REQ_F_FIXED_FILE;
05f3fb3c 4373 percpu_ref_get(&ctx->file_data->refs);
09bb8394 4374 } else {
cf6fd4bd 4375 if (req->needs_fixed_file)
09bb8394 4376 return -EBADF;
c826bd7a 4377 trace_io_uring_file_get(ctx, fd);
09bb8394
JA
4378 req->file = io_file_get(state, fd);
4379 if (unlikely(!req->file))
4380 return -EBADF;
4381 }
4382
4383 return 0;
4384}
4385
a197f664 4386static int io_grab_files(struct io_kiocb *req)
fcb323cc
JA
4387{
4388 int ret = -EBADF;
a197f664 4389 struct io_ring_ctx *ctx = req->ctx;
fcb323cc 4390
b14cca0c 4391 if (!ctx->ring_file)
b5dba59e
JA
4392 return -EBADF;
4393
fcb323cc
JA
4394 rcu_read_lock();
4395 spin_lock_irq(&ctx->inflight_lock);
4396 /*
4397 * We use the f_ops->flush() handler to ensure that we can flush
4398 * out work accessing these files if the fd is closed. Check if
4399 * the fd has changed since we started down this path, and disallow
4400 * this operation if it has.
4401 */
b14cca0c 4402 if (fcheck(ctx->ring_fd) == ctx->ring_file) {
fcb323cc
JA
4403 list_add(&req->inflight_entry, &ctx->inflight_list);
4404 req->flags |= REQ_F_INFLIGHT;
4405 req->work.files = current->files;
4406 ret = 0;
4407 }
4408 spin_unlock_irq(&ctx->inflight_lock);
4409 rcu_read_unlock();
4410
4411 return ret;
4412}
4413
2665abfd 4414static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer)
2b188cc1 4415{
ad8a48ac
JA
4416 struct io_timeout_data *data = container_of(timer,
4417 struct io_timeout_data, timer);
4418 struct io_kiocb *req = data->req;
2665abfd
JA
4419 struct io_ring_ctx *ctx = req->ctx;
4420 struct io_kiocb *prev = NULL;
4421 unsigned long flags;
2665abfd
JA
4422
4423 spin_lock_irqsave(&ctx->completion_lock, flags);
4424
4425 /*
4426 * We don't expect the list to be empty, that will only happen if we
4427 * race with the completion of the linked work.
4428 */
4493233e
PB
4429 if (!list_empty(&req->link_list)) {
4430 prev = list_entry(req->link_list.prev, struct io_kiocb,
4431 link_list);
5d960724 4432 if (refcount_inc_not_zero(&prev->refs)) {
4493233e 4433 list_del_init(&req->link_list);
5d960724
JA
4434 prev->flags &= ~REQ_F_LINK_TIMEOUT;
4435 } else
76a46e06 4436 prev = NULL;
2665abfd
JA
4437 }
4438
4439 spin_unlock_irqrestore(&ctx->completion_lock, flags);
4440
4441 if (prev) {
4e88d6e7 4442 req_set_fail_links(prev);
b0dd8a41
JA
4443 io_async_find_and_cancel(ctx, req, prev->user_data, NULL,
4444 -ETIME);
76a46e06 4445 io_put_req(prev);
47f46768
JA
4446 } else {
4447 io_cqring_add_event(req, -ETIME);
4448 io_put_req(req);
2665abfd 4449 }
2665abfd
JA
4450 return HRTIMER_NORESTART;
4451}
4452
ad8a48ac 4453static void io_queue_linked_timeout(struct io_kiocb *req)
2665abfd 4454{
76a46e06 4455 struct io_ring_ctx *ctx = req->ctx;
2665abfd 4456
76a46e06
JA
4457 /*
4458 * If the list is now empty, then our linked request finished before
4459 * we got a chance to setup the timer
4460 */
4461 spin_lock_irq(&ctx->completion_lock);
4493233e 4462 if (!list_empty(&req->link_list)) {
2d28390a 4463 struct io_timeout_data *data = &req->io->timeout;
94ae5e77 4464
ad8a48ac
JA
4465 data->timer.function = io_link_timeout_fn;
4466 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts),
4467 data->mode);
2665abfd 4468 }
76a46e06 4469 spin_unlock_irq(&ctx->completion_lock);
2665abfd 4470
2665abfd 4471 /* drop submission reference */
76a46e06
JA
4472 io_put_req(req);
4473}
2665abfd 4474
ad8a48ac 4475static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req)
2665abfd
JA
4476{
4477 struct io_kiocb *nxt;
4478
4479 if (!(req->flags & REQ_F_LINK))
4480 return NULL;
4481
4493233e
PB
4482 nxt = list_first_entry_or_null(&req->link_list, struct io_kiocb,
4483 link_list);
d625c6ee 4484 if (!nxt || nxt->opcode != IORING_OP_LINK_TIMEOUT)
76a46e06 4485 return NULL;
2665abfd 4486
76a46e06 4487 req->flags |= REQ_F_LINK_TIMEOUT;
76a46e06 4488 return nxt;
2665abfd
JA
4489}
4490
3529d8c2 4491static void __io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2b188cc1 4492{
4a0a7a18 4493 struct io_kiocb *linked_timeout;
f9bd67f6 4494 struct io_kiocb *nxt = NULL;
e0c5c576 4495 int ret;
2b188cc1 4496
4a0a7a18
JA
4497again:
4498 linked_timeout = io_prep_linked_timeout(req);
4499
3529d8c2 4500 ret = io_issue_sqe(req, sqe, &nxt, true);
491381ce
JA
4501
4502 /*
4503 * We async punt it if the file wasn't marked NOWAIT, or if the file
4504 * doesn't support non-blocking read/write attempts
4505 */
4506 if (ret == -EAGAIN && (!(req->flags & REQ_F_NOWAIT) ||
4507 (req->flags & REQ_F_MUST_PUNT))) {
bbad27b2
PB
4508 if (req->work.flags & IO_WQ_WORK_NEEDS_FILES) {
4509 ret = io_grab_files(req);
4510 if (ret)
4511 goto err;
2b188cc1 4512 }
bbad27b2
PB
4513
4514 /*
4515 * Queued up for async execution, worker will release
4516 * submit reference when the iocb is actually submitted.
4517 */
4518 io_queue_async_work(req);
4a0a7a18 4519 goto done_req;
2b188cc1 4520 }
e65ef56d 4521
fcb323cc 4522err:
76a46e06 4523 /* drop submission reference */
ec9c02ad 4524 io_put_req(req);
e65ef56d 4525
f9bd67f6 4526 if (linked_timeout) {
76a46e06 4527 if (!ret)
f9bd67f6 4528 io_queue_linked_timeout(linked_timeout);
76a46e06 4529 else
f9bd67f6 4530 io_put_req(linked_timeout);
76a46e06
JA
4531 }
4532
e65ef56d 4533 /* and drop final reference, if we failed */
9e645e11 4534 if (ret) {
78e19bbe 4535 io_cqring_add_event(req, ret);
4e88d6e7 4536 req_set_fail_links(req);
e65ef56d 4537 io_put_req(req);
9e645e11 4538 }
4a0a7a18
JA
4539done_req:
4540 if (nxt) {
4541 req = nxt;
4542 nxt = NULL;
4543 goto again;
4544 }
2b188cc1
JA
4545}
4546
3529d8c2 4547static void io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4fe2c963
JL
4548{
4549 int ret;
4550
3529d8c2 4551 ret = io_req_defer(req, sqe);
4fe2c963
JL
4552 if (ret) {
4553 if (ret != -EIOCBQUEUED) {
78e19bbe 4554 io_cqring_add_event(req, ret);
4e88d6e7 4555 req_set_fail_links(req);
78e19bbe 4556 io_double_put_req(req);
4fe2c963 4557 }
2550878f 4558 } else if (req->flags & REQ_F_FORCE_ASYNC) {
ce35a47a
JA
4559 /*
4560 * Never try inline submit of IOSQE_ASYNC is set, go straight
4561 * to async execution.
4562 */
4563 req->work.flags |= IO_WQ_WORK_CONCURRENT;
4564 io_queue_async_work(req);
4565 } else {
3529d8c2 4566 __io_queue_sqe(req, sqe);
ce35a47a 4567 }
4fe2c963
JL
4568}
4569
1b4a51b6 4570static inline void io_queue_link_head(struct io_kiocb *req)
4fe2c963 4571{
94ae5e77 4572 if (unlikely(req->flags & REQ_F_FAIL_LINK)) {
1b4a51b6
PB
4573 io_cqring_add_event(req, -ECANCELED);
4574 io_double_put_req(req);
4575 } else
3529d8c2 4576 io_queue_sqe(req, NULL);
4fe2c963
JL
4577}
4578
4e88d6e7 4579#define SQE_VALID_FLAGS (IOSQE_FIXED_FILE|IOSQE_IO_DRAIN|IOSQE_IO_LINK| \
ce35a47a 4580 IOSQE_IO_HARDLINK | IOSQE_ASYNC)
9e645e11 4581
3529d8c2
JA
4582static bool io_submit_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
4583 struct io_submit_state *state, struct io_kiocb **link)
9e645e11 4584{
a197f664 4585 struct io_ring_ctx *ctx = req->ctx;
32fe525b 4586 unsigned int sqe_flags;
9e645e11
JA
4587 int ret;
4588
32fe525b
PB
4589 sqe_flags = READ_ONCE(sqe->flags);
4590
9e645e11 4591 /* enforce forwards compatibility on users */
32fe525b 4592 if (unlikely(sqe_flags & ~SQE_VALID_FLAGS)) {
9e645e11 4593 ret = -EINVAL;
196be95c 4594 goto err_req;
9e645e11 4595 }
32fe525b 4596 if (sqe_flags & IOSQE_ASYNC)
ce35a47a 4597 req->flags |= REQ_F_FORCE_ASYNC;
9e645e11 4598
3529d8c2 4599 ret = io_req_set_file(state, req, sqe);
9e645e11
JA
4600 if (unlikely(ret)) {
4601err_req:
78e19bbe
JA
4602 io_cqring_add_event(req, ret);
4603 io_double_put_req(req);
2e6e1fde 4604 return false;
9e645e11
JA
4605 }
4606
9e645e11
JA
4607 /*
4608 * If we already have a head request, queue this one for async
4609 * submittal once the head completes. If we don't have a head but
4610 * IOSQE_IO_LINK is set in the sqe, start a new head. This one will be
4611 * submitted sync once the chain is complete. If none of those
4612 * conditions are true (normal request), then just queue it.
4613 */
4614 if (*link) {
9d76377f 4615 struct io_kiocb *head = *link;
9e645e11 4616
711be031
PB
4617 if (sqe_flags & IOSQE_IO_DRAIN) {
4618 head->flags |= REQ_F_IO_DRAIN;
4619 ctx->drain_next = 1;
4620 }
1b4a51b6 4621
32fe525b 4622 if (sqe_flags & IOSQE_IO_HARDLINK)
4e88d6e7
JA
4623 req->flags |= REQ_F_HARDLINK;
4624
b7bb4f7d 4625 if (io_alloc_async_ctx(req)) {
9e645e11
JA
4626 ret = -EAGAIN;
4627 goto err_req;
4628 }
4629
3529d8c2 4630 ret = io_req_defer_prep(req, sqe);
2d28390a 4631 if (ret) {
4e88d6e7 4632 /* fail even hard links since we don't submit */
9d76377f 4633 head->flags |= REQ_F_FAIL_LINK;
f67676d1 4634 goto err_req;
2d28390a 4635 }
9d76377f
PB
4636 trace_io_uring_link(ctx, req, head);
4637 list_add_tail(&req->link_list, &head->link_list);
32fe525b
PB
4638
4639 /* last request of a link, enqueue the link */
4640 if (!(sqe_flags & (IOSQE_IO_LINK|IOSQE_IO_HARDLINK))) {
4641 io_queue_link_head(head);
4642 *link = NULL;
4643 }
9e645e11 4644 } else {
711be031
PB
4645 if (unlikely(ctx->drain_next)) {
4646 req->flags |= REQ_F_IO_DRAIN;
4647 req->ctx->drain_next = 0;
4648 }
4649 if (sqe_flags & (IOSQE_IO_LINK|IOSQE_IO_HARDLINK)) {
4650 req->flags |= REQ_F_LINK;
4651 if (sqe_flags & IOSQE_IO_HARDLINK)
4652 req->flags |= REQ_F_HARDLINK;
4653
4654 INIT_LIST_HEAD(&req->link_list);
4655 ret = io_req_defer_prep(req, sqe);
4656 if (ret)
4657 req->flags |= REQ_F_FAIL_LINK;
4658 *link = req;
4659 } else {
4660 io_queue_sqe(req, sqe);
4661 }
9e645e11 4662 }
2e6e1fde
PB
4663
4664 return true;
9e645e11
JA
4665}
4666
9a56a232
JA
4667/*
4668 * Batched submission is done, ensure local IO is flushed out.
4669 */
4670static void io_submit_state_end(struct io_submit_state *state)
4671{
4672 blk_finish_plug(&state->plug);
3d6770fb 4673 io_file_put(state);
2579f913
JA
4674 if (state->free_reqs)
4675 kmem_cache_free_bulk(req_cachep, state->free_reqs,
4676 &state->reqs[state->cur_req]);
9a56a232
JA
4677}
4678
4679/*
4680 * Start submission side cache.
4681 */
4682static void io_submit_state_start(struct io_submit_state *state,
22efde59 4683 unsigned int max_ios)
9a56a232
JA
4684{
4685 blk_start_plug(&state->plug);
2579f913 4686 state->free_reqs = 0;
9a56a232
JA
4687 state->file = NULL;
4688 state->ios_left = max_ios;
4689}
4690
2b188cc1
JA
4691static void io_commit_sqring(struct io_ring_ctx *ctx)
4692{
75b28aff 4693 struct io_rings *rings = ctx->rings;
2b188cc1 4694
caf582c6
PB
4695 /*
4696 * Ensure any loads from the SQEs are done at this point,
4697 * since once we write the new head, the application could
4698 * write new data to them.
4699 */
4700 smp_store_release(&rings->sq.head, ctx->cached_sq_head);
2b188cc1
JA
4701}
4702
2b188cc1 4703/*
3529d8c2 4704 * Fetch an sqe, if one is available. Note that sqe_ptr will point to memory
2b188cc1
JA
4705 * that is mapped by userspace. This means that care needs to be taken to
4706 * ensure that reads are stable, as we cannot rely on userspace always
4707 * being a good citizen. If members of the sqe are validated and then later
4708 * used, it's important that those reads are done through READ_ONCE() to
4709 * prevent a re-load down the line.
4710 */
3529d8c2
JA
4711static bool io_get_sqring(struct io_ring_ctx *ctx, struct io_kiocb *req,
4712 const struct io_uring_sqe **sqe_ptr)
2b188cc1 4713{
75b28aff 4714 u32 *sq_array = ctx->sq_array;
2b188cc1
JA
4715 unsigned head;
4716
4717 /*
4718 * The cached sq head (or cq tail) serves two purposes:
4719 *
4720 * 1) allows us to batch the cost of updating the user visible
4721 * head updates.
4722 * 2) allows the kernel side to track the head on its own, even
4723 * though the application is the one updating it.
4724 */
ee7d46d9 4725 head = READ_ONCE(sq_array[ctx->cached_sq_head & ctx->sq_mask]);
9835d6fa 4726 if (likely(head < ctx->sq_entries)) {
cf6fd4bd
PB
4727 /*
4728 * All io need record the previous position, if LINK vs DARIN,
4729 * it can be used to mark the position of the first IO in the
4730 * link list.
4731 */
4732 req->sequence = ctx->cached_sq_head;
3529d8c2
JA
4733 *sqe_ptr = &ctx->sq_sqes[head];
4734 req->opcode = READ_ONCE((*sqe_ptr)->opcode);
4735 req->user_data = READ_ONCE((*sqe_ptr)->user_data);
2b188cc1
JA
4736 ctx->cached_sq_head++;
4737 return true;
4738 }
4739
4740 /* drop invalid entries */
4741 ctx->cached_sq_head++;
498ccd9e 4742 ctx->cached_sq_dropped++;
ee7d46d9 4743 WRITE_ONCE(ctx->rings->sq_dropped, ctx->cached_sq_dropped);
2b188cc1
JA
4744 return false;
4745}
4746
fb5ccc98 4747static int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr,
ae9428ca
PB
4748 struct file *ring_file, int ring_fd,
4749 struct mm_struct **mm, bool async)
6c271ce2
JA
4750{
4751 struct io_submit_state state, *statep = NULL;
9e645e11 4752 struct io_kiocb *link = NULL;
9e645e11 4753 int i, submitted = 0;
95a1b3ff 4754 bool mm_fault = false;
6c271ce2 4755
c4a2ed72 4756 /* if we have a backlog and couldn't flush it all, return BUSY */
ad3eb2c8
JA
4757 if (test_bit(0, &ctx->sq_check_overflow)) {
4758 if (!list_empty(&ctx->cq_overflow_list) &&
4759 !io_cqring_overflow_flush(ctx, false))
4760 return -EBUSY;
4761 }
6c271ce2 4762
ee7d46d9
PB
4763 /* make sure SQ entry isn't read before tail */
4764 nr = min3(nr, ctx->sq_entries, io_sqring_entries(ctx));
9ef4f124 4765
2b85edfc
PB
4766 if (!percpu_ref_tryget_many(&ctx->refs, nr))
4767 return -EAGAIN;
4768
6c271ce2 4769 if (nr > IO_PLUG_THRESHOLD) {
22efde59 4770 io_submit_state_start(&state, nr);
6c271ce2
JA
4771 statep = &state;
4772 }
4773
b14cca0c
PB
4774 ctx->ring_fd = ring_fd;
4775 ctx->ring_file = ring_file;
4776
6c271ce2 4777 for (i = 0; i < nr; i++) {
3529d8c2 4778 const struct io_uring_sqe *sqe;
196be95c 4779 struct io_kiocb *req;
fb5ccc98 4780
196be95c
PB
4781 req = io_get_req(ctx, statep);
4782 if (unlikely(!req)) {
4783 if (!submitted)
4784 submitted = -EAGAIN;
fb5ccc98 4785 break;
196be95c 4786 }
3529d8c2 4787 if (!io_get_sqring(ctx, req, &sqe)) {
2b85edfc 4788 __io_req_do_free(req);
196be95c
PB
4789 break;
4790 }
fb5ccc98 4791
d3656344
JA
4792 /* will complete beyond this point, count as submitted */
4793 submitted++;
4794
4795 if (unlikely(req->opcode >= IORING_OP_LAST)) {
4796 io_cqring_add_event(req, -EINVAL);
4797 io_double_put_req(req);
4798 break;
4799 }
4800
4801 if (io_op_defs[req->opcode].needs_mm && !*mm) {
95a1b3ff
PB
4802 mm_fault = mm_fault || !mmget_not_zero(ctx->sqo_mm);
4803 if (!mm_fault) {
4804 use_mm(ctx->sqo_mm);
4805 *mm = ctx->sqo_mm;
4806 }
9e645e11 4807 }
9e645e11 4808
cf6fd4bd
PB
4809 req->has_user = *mm != NULL;
4810 req->in_async = async;
4811 req->needs_fixed_file = async;
354420f7
JA
4812 trace_io_uring_submit_sqe(ctx, req->opcode, req->user_data,
4813 true, async);
3529d8c2 4814 if (!io_submit_sqe(req, sqe, statep, &link))
2e6e1fde 4815 break;
6c271ce2
JA
4816 }
4817
2b85edfc
PB
4818 if (submitted != nr)
4819 percpu_ref_put_many(&ctx->refs, nr - submitted);
9e645e11 4820 if (link)
1b4a51b6 4821 io_queue_link_head(link);
6c271ce2
JA
4822 if (statep)
4823 io_submit_state_end(&state);
4824
ae9428ca
PB
4825 /* Commit SQ ring head once we've consumed and submitted all SQEs */
4826 io_commit_sqring(ctx);
4827
6c271ce2
JA
4828 return submitted;
4829}
4830
4831static int io_sq_thread(void *data)
4832{
6c271ce2
JA
4833 struct io_ring_ctx *ctx = data;
4834 struct mm_struct *cur_mm = NULL;
181e448d 4835 const struct cred *old_cred;
6c271ce2
JA
4836 mm_segment_t old_fs;
4837 DEFINE_WAIT(wait);
4838 unsigned inflight;
4839 unsigned long timeout;
c1edbf5f 4840 int ret;
6c271ce2 4841
206aefde 4842 complete(&ctx->completions[1]);
a4c0b3de 4843
6c271ce2
JA
4844 old_fs = get_fs();
4845 set_fs(USER_DS);
181e448d 4846 old_cred = override_creds(ctx->creds);
6c271ce2 4847
c1edbf5f 4848 ret = timeout = inflight = 0;
2bbcd6d3 4849 while (!kthread_should_park()) {
fb5ccc98 4850 unsigned int to_submit;
6c271ce2
JA
4851
4852 if (inflight) {
4853 unsigned nr_events = 0;
4854
4855 if (ctx->flags & IORING_SETUP_IOPOLL) {
2b2ed975
JA
4856 /*
4857 * inflight is the count of the maximum possible
4858 * entries we submitted, but it can be smaller
4859 * if we dropped some of them. If we don't have
4860 * poll entries available, then we know that we
4861 * have nothing left to poll for. Reset the
4862 * inflight count to zero in that case.
4863 */
4864 mutex_lock(&ctx->uring_lock);
4865 if (!list_empty(&ctx->poll_list))
4866 __io_iopoll_check(ctx, &nr_events, 0);
4867 else
4868 inflight = 0;
4869 mutex_unlock(&ctx->uring_lock);
6c271ce2
JA
4870 } else {
4871 /*
4872 * Normal IO, just pretend everything completed.
4873 * We don't have to poll completions for that.
4874 */
4875 nr_events = inflight;
4876 }
4877
4878 inflight -= nr_events;
4879 if (!inflight)
4880 timeout = jiffies + ctx->sq_thread_idle;
4881 }
4882
fb5ccc98 4883 to_submit = io_sqring_entries(ctx);
c1edbf5f
JA
4884
4885 /*
4886 * If submit got -EBUSY, flag us as needing the application
4887 * to enter the kernel to reap and flush events.
4888 */
4889 if (!to_submit || ret == -EBUSY) {
6c271ce2
JA
4890 /*
4891 * We're polling. If we're within the defined idle
4892 * period, then let us spin without work before going
c1edbf5f
JA
4893 * to sleep. The exception is if we got EBUSY doing
4894 * more IO, we should wait for the application to
4895 * reap events and wake us up.
6c271ce2 4896 */
c1edbf5f
JA
4897 if (inflight ||
4898 (!time_after(jiffies, timeout) && ret != -EBUSY)) {
9831a90c 4899 cond_resched();
6c271ce2
JA
4900 continue;
4901 }
4902
4903 /*
4904 * Drop cur_mm before scheduling, we can't hold it for
4905 * long periods (or over schedule()). Do this before
4906 * adding ourselves to the waitqueue, as the unuse/drop
4907 * may sleep.
4908 */
4909 if (cur_mm) {
4910 unuse_mm(cur_mm);
4911 mmput(cur_mm);
4912 cur_mm = NULL;
4913 }
4914
4915 prepare_to_wait(&ctx->sqo_wait, &wait,
4916 TASK_INTERRUPTIBLE);
4917
4918 /* Tell userspace we may need a wakeup call */
75b28aff 4919 ctx->rings->sq_flags |= IORING_SQ_NEED_WAKEUP;
0d7bae69
SB
4920 /* make sure to read SQ tail after writing flags */
4921 smp_mb();
6c271ce2 4922
fb5ccc98 4923 to_submit = io_sqring_entries(ctx);
c1edbf5f 4924 if (!to_submit || ret == -EBUSY) {
2bbcd6d3 4925 if (kthread_should_park()) {
6c271ce2
JA
4926 finish_wait(&ctx->sqo_wait, &wait);
4927 break;
4928 }
4929 if (signal_pending(current))
4930 flush_signals(current);
4931 schedule();
4932 finish_wait(&ctx->sqo_wait, &wait);
4933
75b28aff 4934 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
6c271ce2
JA
4935 continue;
4936 }
4937 finish_wait(&ctx->sqo_wait, &wait);
4938
75b28aff 4939 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
6c271ce2
JA
4940 }
4941
8a4955ff 4942 mutex_lock(&ctx->uring_lock);
1d7bb1d5 4943 ret = io_submit_sqes(ctx, to_submit, NULL, -1, &cur_mm, true);
8a4955ff 4944 mutex_unlock(&ctx->uring_lock);
1d7bb1d5
JA
4945 if (ret > 0)
4946 inflight += ret;
6c271ce2
JA
4947 }
4948
4949 set_fs(old_fs);
4950 if (cur_mm) {
4951 unuse_mm(cur_mm);
4952 mmput(cur_mm);
4953 }
181e448d 4954 revert_creds(old_cred);
06058632 4955
2bbcd6d3 4956 kthread_parkme();
06058632 4957
6c271ce2
JA
4958 return 0;
4959}
4960
bda52162
JA
4961struct io_wait_queue {
4962 struct wait_queue_entry wq;
4963 struct io_ring_ctx *ctx;
4964 unsigned to_wait;
4965 unsigned nr_timeouts;
4966};
4967
1d7bb1d5 4968static inline bool io_should_wake(struct io_wait_queue *iowq, bool noflush)
bda52162
JA
4969{
4970 struct io_ring_ctx *ctx = iowq->ctx;
4971
4972 /*
d195a66e 4973 * Wake up if we have enough events, or if a timeout occurred since we
bda52162
JA
4974 * started waiting. For timeouts, we always want to return to userspace,
4975 * regardless of event count.
4976 */
1d7bb1d5 4977 return io_cqring_events(ctx, noflush) >= iowq->to_wait ||
bda52162
JA
4978 atomic_read(&ctx->cq_timeouts) != iowq->nr_timeouts;
4979}
4980
4981static int io_wake_function(struct wait_queue_entry *curr, unsigned int mode,
4982 int wake_flags, void *key)
4983{
4984 struct io_wait_queue *iowq = container_of(curr, struct io_wait_queue,
4985 wq);
4986
1d7bb1d5
JA
4987 /* use noflush == true, as we can't safely rely on locking context */
4988 if (!io_should_wake(iowq, true))
bda52162
JA
4989 return -1;
4990
4991 return autoremove_wake_function(curr, mode, wake_flags, key);
4992}
4993
2b188cc1
JA
4994/*
4995 * Wait until events become available, if we don't already have some. The
4996 * application must reap them itself, as they reside on the shared cq ring.
4997 */
4998static int io_cqring_wait(struct io_ring_ctx *ctx, int min_events,
4999 const sigset_t __user *sig, size_t sigsz)
5000{
bda52162
JA
5001 struct io_wait_queue iowq = {
5002 .wq = {
5003 .private = current,
5004 .func = io_wake_function,
5005 .entry = LIST_HEAD_INIT(iowq.wq.entry),
5006 },
5007 .ctx = ctx,
5008 .to_wait = min_events,
5009 };
75b28aff 5010 struct io_rings *rings = ctx->rings;
e9ffa5c2 5011 int ret = 0;
2b188cc1 5012
1d7bb1d5 5013 if (io_cqring_events(ctx, false) >= min_events)
2b188cc1
JA
5014 return 0;
5015
5016 if (sig) {
9e75ad5d
AB
5017#ifdef CONFIG_COMPAT
5018 if (in_compat_syscall())
5019 ret = set_compat_user_sigmask((const compat_sigset_t __user *)sig,
b772434b 5020 sigsz);
9e75ad5d
AB
5021 else
5022#endif
b772434b 5023 ret = set_user_sigmask(sig, sigsz);
9e75ad5d 5024
2b188cc1
JA
5025 if (ret)
5026 return ret;
5027 }
5028
bda52162 5029 iowq.nr_timeouts = atomic_read(&ctx->cq_timeouts);
c826bd7a 5030 trace_io_uring_cqring_wait(ctx, min_events);
bda52162
JA
5031 do {
5032 prepare_to_wait_exclusive(&ctx->wait, &iowq.wq,
5033 TASK_INTERRUPTIBLE);
1d7bb1d5 5034 if (io_should_wake(&iowq, false))
bda52162
JA
5035 break;
5036 schedule();
5037 if (signal_pending(current)) {
e9ffa5c2 5038 ret = -EINTR;
bda52162
JA
5039 break;
5040 }
5041 } while (1);
5042 finish_wait(&ctx->wait, &iowq.wq);
5043
e9ffa5c2 5044 restore_saved_sigmask_unless(ret == -EINTR);
2b188cc1 5045
75b28aff 5046 return READ_ONCE(rings->cq.head) == READ_ONCE(rings->cq.tail) ? ret : 0;
2b188cc1
JA
5047}
5048
6b06314c
JA
5049static void __io_sqe_files_unregister(struct io_ring_ctx *ctx)
5050{
5051#if defined(CONFIG_UNIX)
5052 if (ctx->ring_sock) {
5053 struct sock *sock = ctx->ring_sock->sk;
5054 struct sk_buff *skb;
5055
5056 while ((skb = skb_dequeue(&sock->sk_receive_queue)) != NULL)
5057 kfree_skb(skb);
5058 }
5059#else
5060 int i;
5061
65e19f54
JA
5062 for (i = 0; i < ctx->nr_user_files; i++) {
5063 struct file *file;
5064
5065 file = io_file_from_index(ctx, i);
5066 if (file)
5067 fput(file);
5068 }
6b06314c
JA
5069#endif
5070}
5071
05f3fb3c
JA
5072static void io_file_ref_kill(struct percpu_ref *ref)
5073{
5074 struct fixed_file_data *data;
5075
5076 data = container_of(ref, struct fixed_file_data, refs);
5077 complete(&data->done);
5078}
5079
6b06314c
JA
5080static int io_sqe_files_unregister(struct io_ring_ctx *ctx)
5081{
05f3fb3c 5082 struct fixed_file_data *data = ctx->file_data;
65e19f54
JA
5083 unsigned nr_tables, i;
5084
05f3fb3c 5085 if (!data)
6b06314c
JA
5086 return -ENXIO;
5087
05f3fb3c 5088 /* protect against inflight atomic switch, which drops the ref */
05f3fb3c 5089 percpu_ref_get(&data->refs);
e46a7950
JA
5090 /* wait for existing switches */
5091 flush_work(&data->ref_work);
05f3fb3c
JA
5092 percpu_ref_kill_and_confirm(&data->refs, io_file_ref_kill);
5093 wait_for_completion(&data->done);
5094 percpu_ref_put(&data->refs);
e46a7950
JA
5095 /* flush potential new switch */
5096 flush_work(&data->ref_work);
05f3fb3c
JA
5097 percpu_ref_exit(&data->refs);
5098
6b06314c 5099 __io_sqe_files_unregister(ctx);
65e19f54
JA
5100 nr_tables = DIV_ROUND_UP(ctx->nr_user_files, IORING_MAX_FILES_TABLE);
5101 for (i = 0; i < nr_tables; i++)
05f3fb3c
JA
5102 kfree(data->table[i].files);
5103 kfree(data->table);
5104 kfree(data);
5105 ctx->file_data = NULL;
6b06314c
JA
5106 ctx->nr_user_files = 0;
5107 return 0;
5108}
5109
6c271ce2
JA
5110static void io_sq_thread_stop(struct io_ring_ctx *ctx)
5111{
5112 if (ctx->sqo_thread) {
206aefde 5113 wait_for_completion(&ctx->completions[1]);
2bbcd6d3
RP
5114 /*
5115 * The park is a bit of a work-around, without it we get
5116 * warning spews on shutdown with SQPOLL set and affinity
5117 * set to a single CPU.
5118 */
06058632 5119 kthread_park(ctx->sqo_thread);
6c271ce2
JA
5120 kthread_stop(ctx->sqo_thread);
5121 ctx->sqo_thread = NULL;
5122 }
5123}
5124
6b06314c
JA
5125static void io_finish_async(struct io_ring_ctx *ctx)
5126{
6c271ce2
JA
5127 io_sq_thread_stop(ctx);
5128
561fb04a
JA
5129 if (ctx->io_wq) {
5130 io_wq_destroy(ctx->io_wq);
5131 ctx->io_wq = NULL;
6b06314c
JA
5132 }
5133}
5134
5135#if defined(CONFIG_UNIX)
6b06314c
JA
5136/*
5137 * Ensure the UNIX gc is aware of our file set, so we are certain that
5138 * the io_uring can be safely unregistered on process exit, even if we have
5139 * loops in the file referencing.
5140 */
5141static int __io_sqe_files_scm(struct io_ring_ctx *ctx, int nr, int offset)
5142{
5143 struct sock *sk = ctx->ring_sock->sk;
5144 struct scm_fp_list *fpl;
5145 struct sk_buff *skb;
08a45173 5146 int i, nr_files;
6b06314c
JA
5147
5148 if (!capable(CAP_SYS_RESOURCE) && !capable(CAP_SYS_ADMIN)) {
5149 unsigned long inflight = ctx->user->unix_inflight + nr;
5150
5151 if (inflight > task_rlimit(current, RLIMIT_NOFILE))
5152 return -EMFILE;
5153 }
5154
5155 fpl = kzalloc(sizeof(*fpl), GFP_KERNEL);
5156 if (!fpl)
5157 return -ENOMEM;
5158
5159 skb = alloc_skb(0, GFP_KERNEL);
5160 if (!skb) {
5161 kfree(fpl);
5162 return -ENOMEM;
5163 }
5164
5165 skb->sk = sk;
6b06314c 5166
08a45173 5167 nr_files = 0;
6b06314c
JA
5168 fpl->user = get_uid(ctx->user);
5169 for (i = 0; i < nr; i++) {
65e19f54
JA
5170 struct file *file = io_file_from_index(ctx, i + offset);
5171
5172 if (!file)
08a45173 5173 continue;
65e19f54 5174 fpl->fp[nr_files] = get_file(file);
08a45173
JA
5175 unix_inflight(fpl->user, fpl->fp[nr_files]);
5176 nr_files++;
6b06314c
JA
5177 }
5178
08a45173
JA
5179 if (nr_files) {
5180 fpl->max = SCM_MAX_FD;
5181 fpl->count = nr_files;
5182 UNIXCB(skb).fp = fpl;
05f3fb3c 5183 skb->destructor = unix_destruct_scm;
08a45173
JA
5184 refcount_add(skb->truesize, &sk->sk_wmem_alloc);
5185 skb_queue_head(&sk->sk_receive_queue, skb);
6b06314c 5186
08a45173
JA
5187 for (i = 0; i < nr_files; i++)
5188 fput(fpl->fp[i]);
5189 } else {
5190 kfree_skb(skb);
5191 kfree(fpl);
5192 }
6b06314c
JA
5193
5194 return 0;
5195}
5196
5197/*
5198 * If UNIX sockets are enabled, fd passing can cause a reference cycle which
5199 * causes regular reference counting to break down. We rely on the UNIX
5200 * garbage collection to take care of this problem for us.
5201 */
5202static int io_sqe_files_scm(struct io_ring_ctx *ctx)
5203{
5204 unsigned left, total;
5205 int ret = 0;
5206
5207 total = 0;
5208 left = ctx->nr_user_files;
5209 while (left) {
5210 unsigned this_files = min_t(unsigned, left, SCM_MAX_FD);
6b06314c
JA
5211
5212 ret = __io_sqe_files_scm(ctx, this_files, total);
5213 if (ret)
5214 break;
5215 left -= this_files;
5216 total += this_files;
5217 }
5218
5219 if (!ret)
5220 return 0;
5221
5222 while (total < ctx->nr_user_files) {
65e19f54
JA
5223 struct file *file = io_file_from_index(ctx, total);
5224
5225 if (file)
5226 fput(file);
6b06314c
JA
5227 total++;
5228 }
5229
5230 return ret;
5231}
5232#else
5233static int io_sqe_files_scm(struct io_ring_ctx *ctx)
5234{
5235 return 0;
5236}
5237#endif
5238
65e19f54
JA
5239static int io_sqe_alloc_file_tables(struct io_ring_ctx *ctx, unsigned nr_tables,
5240 unsigned nr_files)
5241{
5242 int i;
5243
5244 for (i = 0; i < nr_tables; i++) {
05f3fb3c 5245 struct fixed_file_table *table = &ctx->file_data->table[i];
65e19f54
JA
5246 unsigned this_files;
5247
5248 this_files = min(nr_files, IORING_MAX_FILES_TABLE);
5249 table->files = kcalloc(this_files, sizeof(struct file *),
5250 GFP_KERNEL);
5251 if (!table->files)
5252 break;
5253 nr_files -= this_files;
5254 }
5255
5256 if (i == nr_tables)
5257 return 0;
5258
5259 for (i = 0; i < nr_tables; i++) {
05f3fb3c 5260 struct fixed_file_table *table = &ctx->file_data->table[i];
65e19f54
JA
5261 kfree(table->files);
5262 }
5263 return 1;
5264}
5265
05f3fb3c
JA
5266static void io_ring_file_put(struct io_ring_ctx *ctx, struct file *file)
5267{
5268#if defined(CONFIG_UNIX)
5269 struct sock *sock = ctx->ring_sock->sk;
5270 struct sk_buff_head list, *head = &sock->sk_receive_queue;
5271 struct sk_buff *skb;
5272 int i;
5273
5274 __skb_queue_head_init(&list);
5275
5276 /*
5277 * Find the skb that holds this file in its SCM_RIGHTS. When found,
5278 * remove this entry and rearrange the file array.
5279 */
5280 skb = skb_dequeue(head);
5281 while (skb) {
5282 struct scm_fp_list *fp;
5283
5284 fp = UNIXCB(skb).fp;
5285 for (i = 0; i < fp->count; i++) {
5286 int left;
5287
5288 if (fp->fp[i] != file)
5289 continue;
5290
5291 unix_notinflight(fp->user, fp->fp[i]);
5292 left = fp->count - 1 - i;
5293 if (left) {
5294 memmove(&fp->fp[i], &fp->fp[i + 1],
5295 left * sizeof(struct file *));
5296 }
5297 fp->count--;
5298 if (!fp->count) {
5299 kfree_skb(skb);
5300 skb = NULL;
5301 } else {
5302 __skb_queue_tail(&list, skb);
5303 }
5304 fput(file);
5305 file = NULL;
5306 break;
5307 }
5308
5309 if (!file)
5310 break;
5311
5312 __skb_queue_tail(&list, skb);
5313
5314 skb = skb_dequeue(head);
5315 }
5316
5317 if (skb_peek(&list)) {
5318 spin_lock_irq(&head->lock);
5319 while ((skb = __skb_dequeue(&list)) != NULL)
5320 __skb_queue_tail(head, skb);
5321 spin_unlock_irq(&head->lock);
5322 }
5323#else
5324 fput(file);
5325#endif
5326}
5327
5328struct io_file_put {
5329 struct llist_node llist;
5330 struct file *file;
5331 struct completion *done;
5332};
5333
5334static void io_ring_file_ref_switch(struct work_struct *work)
5335{
5336 struct io_file_put *pfile, *tmp;
5337 struct fixed_file_data *data;
5338 struct llist_node *node;
5339
5340 data = container_of(work, struct fixed_file_data, ref_work);
5341
5342 while ((node = llist_del_all(&data->put_llist)) != NULL) {
5343 llist_for_each_entry_safe(pfile, tmp, node, llist) {
5344 io_ring_file_put(data->ctx, pfile->file);
5345 if (pfile->done)
5346 complete(pfile->done);
5347 else
5348 kfree(pfile);
5349 }
5350 }
5351
5352 percpu_ref_get(&data->refs);
5353 percpu_ref_switch_to_percpu(&data->refs);
5354}
5355
5356static void io_file_data_ref_zero(struct percpu_ref *ref)
5357{
5358 struct fixed_file_data *data;
5359
5360 data = container_of(ref, struct fixed_file_data, refs);
5361
5362 /* we can't safely switch from inside this context, punt to wq */
5363 queue_work(system_wq, &data->ref_work);
5364}
5365
6b06314c
JA
5366static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
5367 unsigned nr_args)
5368{
5369 __s32 __user *fds = (__s32 __user *) arg;
65e19f54 5370 unsigned nr_tables;
05f3fb3c 5371 struct file *file;
6b06314c
JA
5372 int fd, ret = 0;
5373 unsigned i;
5374
05f3fb3c 5375 if (ctx->file_data)
6b06314c
JA
5376 return -EBUSY;
5377 if (!nr_args)
5378 return -EINVAL;
5379 if (nr_args > IORING_MAX_FIXED_FILES)
5380 return -EMFILE;
5381
05f3fb3c
JA
5382 ctx->file_data = kzalloc(sizeof(*ctx->file_data), GFP_KERNEL);
5383 if (!ctx->file_data)
5384 return -ENOMEM;
5385 ctx->file_data->ctx = ctx;
5386 init_completion(&ctx->file_data->done);
5387
65e19f54 5388 nr_tables = DIV_ROUND_UP(nr_args, IORING_MAX_FILES_TABLE);
05f3fb3c
JA
5389 ctx->file_data->table = kcalloc(nr_tables,
5390 sizeof(struct fixed_file_table),
65e19f54 5391 GFP_KERNEL);
05f3fb3c
JA
5392 if (!ctx->file_data->table) {
5393 kfree(ctx->file_data);
5394 ctx->file_data = NULL;
6b06314c 5395 return -ENOMEM;
05f3fb3c
JA
5396 }
5397
5398 if (percpu_ref_init(&ctx->file_data->refs, io_file_data_ref_zero,
5399 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL)) {
5400 kfree(ctx->file_data->table);
5401 kfree(ctx->file_data);
5402 ctx->file_data = NULL;
5403 return -ENOMEM;
5404 }
5405 ctx->file_data->put_llist.first = NULL;
5406 INIT_WORK(&ctx->file_data->ref_work, io_ring_file_ref_switch);
6b06314c 5407
65e19f54 5408 if (io_sqe_alloc_file_tables(ctx, nr_tables, nr_args)) {
05f3fb3c
JA
5409 percpu_ref_exit(&ctx->file_data->refs);
5410 kfree(ctx->file_data->table);
5411 kfree(ctx->file_data);
5412 ctx->file_data = NULL;
65e19f54
JA
5413 return -ENOMEM;
5414 }
5415
08a45173 5416 for (i = 0; i < nr_args; i++, ctx->nr_user_files++) {
65e19f54
JA
5417 struct fixed_file_table *table;
5418 unsigned index;
5419
6b06314c
JA
5420 ret = -EFAULT;
5421 if (copy_from_user(&fd, &fds[i], sizeof(fd)))
5422 break;
08a45173
JA
5423 /* allow sparse sets */
5424 if (fd == -1) {
5425 ret = 0;
5426 continue;
5427 }
6b06314c 5428
05f3fb3c 5429 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
65e19f54 5430 index = i & IORING_FILE_TABLE_MASK;
05f3fb3c 5431 file = fget(fd);
6b06314c
JA
5432
5433 ret = -EBADF;
05f3fb3c 5434 if (!file)
6b06314c 5435 break;
05f3fb3c 5436
6b06314c
JA
5437 /*
5438 * Don't allow io_uring instances to be registered. If UNIX
5439 * isn't enabled, then this causes a reference cycle and this
5440 * instance can never get freed. If UNIX is enabled we'll
5441 * handle it just fine, but there's still no point in allowing
5442 * a ring fd as it doesn't support regular read/write anyway.
5443 */
05f3fb3c
JA
5444 if (file->f_op == &io_uring_fops) {
5445 fput(file);
6b06314c
JA
5446 break;
5447 }
6b06314c 5448 ret = 0;
05f3fb3c 5449 table->files[index] = file;
6b06314c
JA
5450 }
5451
5452 if (ret) {
65e19f54 5453 for (i = 0; i < ctx->nr_user_files; i++) {
65e19f54
JA
5454 file = io_file_from_index(ctx, i);
5455 if (file)
5456 fput(file);
5457 }
5458 for (i = 0; i < nr_tables; i++)
05f3fb3c 5459 kfree(ctx->file_data->table[i].files);
6b06314c 5460
05f3fb3c
JA
5461 kfree(ctx->file_data->table);
5462 kfree(ctx->file_data);
5463 ctx->file_data = NULL;
6b06314c
JA
5464 ctx->nr_user_files = 0;
5465 return ret;
5466 }
5467
5468 ret = io_sqe_files_scm(ctx);
5469 if (ret)
5470 io_sqe_files_unregister(ctx);
5471
5472 return ret;
5473}
5474
c3a31e60
JA
5475static int io_sqe_file_register(struct io_ring_ctx *ctx, struct file *file,
5476 int index)
5477{
5478#if defined(CONFIG_UNIX)
5479 struct sock *sock = ctx->ring_sock->sk;
5480 struct sk_buff_head *head = &sock->sk_receive_queue;
5481 struct sk_buff *skb;
5482
5483 /*
5484 * See if we can merge this file into an existing skb SCM_RIGHTS
5485 * file set. If there's no room, fall back to allocating a new skb
5486 * and filling it in.
5487 */
5488 spin_lock_irq(&head->lock);
5489 skb = skb_peek(head);
5490 if (skb) {
5491 struct scm_fp_list *fpl = UNIXCB(skb).fp;
5492
5493 if (fpl->count < SCM_MAX_FD) {
5494 __skb_unlink(skb, head);
5495 spin_unlock_irq(&head->lock);
5496 fpl->fp[fpl->count] = get_file(file);
5497 unix_inflight(fpl->user, fpl->fp[fpl->count]);
5498 fpl->count++;
5499 spin_lock_irq(&head->lock);
5500 __skb_queue_head(head, skb);
5501 } else {
5502 skb = NULL;
5503 }
5504 }
5505 spin_unlock_irq(&head->lock);
5506
5507 if (skb) {
5508 fput(file);
5509 return 0;
5510 }
5511
5512 return __io_sqe_files_scm(ctx, 1, index);
5513#else
5514 return 0;
5515#endif
5516}
5517
05f3fb3c 5518static void io_atomic_switch(struct percpu_ref *ref)
c3a31e60 5519{
05f3fb3c
JA
5520 struct fixed_file_data *data;
5521
5522 data = container_of(ref, struct fixed_file_data, refs);
5523 clear_bit(FFD_F_ATOMIC, &data->state);
5524}
5525
5526static bool io_queue_file_removal(struct fixed_file_data *data,
5527 struct file *file)
5528{
5529 struct io_file_put *pfile, pfile_stack;
5530 DECLARE_COMPLETION_ONSTACK(done);
5531
5532 /*
5533 * If we fail allocating the struct we need for doing async reomval
5534 * of this file, just punt to sync and wait for it.
5535 */
5536 pfile = kzalloc(sizeof(*pfile), GFP_KERNEL);
5537 if (!pfile) {
5538 pfile = &pfile_stack;
5539 pfile->done = &done;
5540 }
5541
5542 pfile->file = file;
5543 llist_add(&pfile->llist, &data->put_llist);
5544
5545 if (pfile == &pfile_stack) {
5546 if (!test_and_set_bit(FFD_F_ATOMIC, &data->state)) {
5547 percpu_ref_put(&data->refs);
5548 percpu_ref_switch_to_atomic(&data->refs,
5549 io_atomic_switch);
5550 }
5551 wait_for_completion(&done);
5552 flush_work(&data->ref_work);
5553 return false;
5554 }
5555
5556 return true;
5557}
5558
5559static int __io_sqe_files_update(struct io_ring_ctx *ctx,
5560 struct io_uring_files_update *up,
5561 unsigned nr_args)
5562{
5563 struct fixed_file_data *data = ctx->file_data;
5564 bool ref_switch = false;
5565 struct file *file;
c3a31e60
JA
5566 __s32 __user *fds;
5567 int fd, i, err;
5568 __u32 done;
5569
05f3fb3c 5570 if (check_add_overflow(up->offset, nr_args, &done))
c3a31e60
JA
5571 return -EOVERFLOW;
5572 if (done > ctx->nr_user_files)
5573 return -EINVAL;
5574
5575 done = 0;
05f3fb3c 5576 fds = u64_to_user_ptr(up->fds);
c3a31e60 5577 while (nr_args) {
65e19f54
JA
5578 struct fixed_file_table *table;
5579 unsigned index;
5580
c3a31e60
JA
5581 err = 0;
5582 if (copy_from_user(&fd, &fds[done], sizeof(fd))) {
5583 err = -EFAULT;
5584 break;
5585 }
05f3fb3c
JA
5586 i = array_index_nospec(up->offset, ctx->nr_user_files);
5587 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
65e19f54
JA
5588 index = i & IORING_FILE_TABLE_MASK;
5589 if (table->files[index]) {
05f3fb3c 5590 file = io_file_from_index(ctx, index);
65e19f54 5591 table->files[index] = NULL;
05f3fb3c
JA
5592 if (io_queue_file_removal(data, file))
5593 ref_switch = true;
c3a31e60
JA
5594 }
5595 if (fd != -1) {
c3a31e60
JA
5596 file = fget(fd);
5597 if (!file) {
5598 err = -EBADF;
5599 break;
5600 }
5601 /*
5602 * Don't allow io_uring instances to be registered. If
5603 * UNIX isn't enabled, then this causes a reference
5604 * cycle and this instance can never get freed. If UNIX
5605 * is enabled we'll handle it just fine, but there's
5606 * still no point in allowing a ring fd as it doesn't
5607 * support regular read/write anyway.
5608 */
5609 if (file->f_op == &io_uring_fops) {
5610 fput(file);
5611 err = -EBADF;
5612 break;
5613 }
65e19f54 5614 table->files[index] = file;
c3a31e60
JA
5615 err = io_sqe_file_register(ctx, file, i);
5616 if (err)
5617 break;
5618 }
5619 nr_args--;
5620 done++;
05f3fb3c
JA
5621 up->offset++;
5622 }
5623
5624 if (ref_switch && !test_and_set_bit(FFD_F_ATOMIC, &data->state)) {
5625 percpu_ref_put(&data->refs);
5626 percpu_ref_switch_to_atomic(&data->refs, io_atomic_switch);
c3a31e60
JA
5627 }
5628
5629 return done ? done : err;
5630}
05f3fb3c
JA
5631static int io_sqe_files_update(struct io_ring_ctx *ctx, void __user *arg,
5632 unsigned nr_args)
5633{
5634 struct io_uring_files_update up;
5635
5636 if (!ctx->file_data)
5637 return -ENXIO;
5638 if (!nr_args)
5639 return -EINVAL;
5640 if (copy_from_user(&up, arg, sizeof(up)))
5641 return -EFAULT;
5642 if (up.resv)
5643 return -EINVAL;
5644
5645 return __io_sqe_files_update(ctx, &up, nr_args);
5646}
c3a31e60 5647
7d723065
JA
5648static void io_put_work(struct io_wq_work *work)
5649{
5650 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
5651
5652 io_put_req(req);
5653}
5654
5655static void io_get_work(struct io_wq_work *work)
5656{
5657 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
5658
5659 refcount_inc(&req->refs);
5660}
5661
6c271ce2
JA
5662static int io_sq_offload_start(struct io_ring_ctx *ctx,
5663 struct io_uring_params *p)
2b188cc1 5664{
576a347b 5665 struct io_wq_data data;
561fb04a 5666 unsigned concurrency;
2b188cc1
JA
5667 int ret;
5668
6c271ce2 5669 init_waitqueue_head(&ctx->sqo_wait);
2b188cc1
JA
5670 mmgrab(current->mm);
5671 ctx->sqo_mm = current->mm;
5672
6c271ce2 5673 if (ctx->flags & IORING_SETUP_SQPOLL) {
3ec482d1
JA
5674 ret = -EPERM;
5675 if (!capable(CAP_SYS_ADMIN))
5676 goto err;
5677
917257da
JA
5678 ctx->sq_thread_idle = msecs_to_jiffies(p->sq_thread_idle);
5679 if (!ctx->sq_thread_idle)
5680 ctx->sq_thread_idle = HZ;
5681
6c271ce2 5682 if (p->flags & IORING_SETUP_SQ_AFF) {
44a9bd18 5683 int cpu = p->sq_thread_cpu;
6c271ce2 5684
917257da 5685 ret = -EINVAL;
44a9bd18
JA
5686 if (cpu >= nr_cpu_ids)
5687 goto err;
7889f44d 5688 if (!cpu_online(cpu))
917257da
JA
5689 goto err;
5690
6c271ce2
JA
5691 ctx->sqo_thread = kthread_create_on_cpu(io_sq_thread,
5692 ctx, cpu,
5693 "io_uring-sq");
5694 } else {
5695 ctx->sqo_thread = kthread_create(io_sq_thread, ctx,
5696 "io_uring-sq");
5697 }
5698 if (IS_ERR(ctx->sqo_thread)) {
5699 ret = PTR_ERR(ctx->sqo_thread);
5700 ctx->sqo_thread = NULL;
5701 goto err;
5702 }
5703 wake_up_process(ctx->sqo_thread);
5704 } else if (p->flags & IORING_SETUP_SQ_AFF) {
5705 /* Can't have SQ_AFF without SQPOLL */
5706 ret = -EINVAL;
5707 goto err;
5708 }
5709
576a347b
JA
5710 data.mm = ctx->sqo_mm;
5711 data.user = ctx->user;
181e448d 5712 data.creds = ctx->creds;
576a347b
JA
5713 data.get_work = io_get_work;
5714 data.put_work = io_put_work;
5715
561fb04a
JA
5716 /* Do QD, or 4 * CPUS, whatever is smallest */
5717 concurrency = min(ctx->sq_entries, 4 * num_online_cpus());
576a347b 5718 ctx->io_wq = io_wq_create(concurrency, &data);
975c99a5
JA
5719 if (IS_ERR(ctx->io_wq)) {
5720 ret = PTR_ERR(ctx->io_wq);
5721 ctx->io_wq = NULL;
2b188cc1
JA
5722 goto err;
5723 }
5724
5725 return 0;
5726err:
54a91f3b 5727 io_finish_async(ctx);
2b188cc1
JA
5728 mmdrop(ctx->sqo_mm);
5729 ctx->sqo_mm = NULL;
5730 return ret;
5731}
5732
5733static void io_unaccount_mem(struct user_struct *user, unsigned long nr_pages)
5734{
5735 atomic_long_sub(nr_pages, &user->locked_vm);
5736}
5737
5738static int io_account_mem(struct user_struct *user, unsigned long nr_pages)
5739{
5740 unsigned long page_limit, cur_pages, new_pages;
5741
5742 /* Don't allow more pages than we can safely lock */
5743 page_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
5744
5745 do {
5746 cur_pages = atomic_long_read(&user->locked_vm);
5747 new_pages = cur_pages + nr_pages;
5748 if (new_pages > page_limit)
5749 return -ENOMEM;
5750 } while (atomic_long_cmpxchg(&user->locked_vm, cur_pages,
5751 new_pages) != cur_pages);
5752
5753 return 0;
5754}
5755
5756static void io_mem_free(void *ptr)
5757{
52e04ef4
MR
5758 struct page *page;
5759
5760 if (!ptr)
5761 return;
2b188cc1 5762
52e04ef4 5763 page = virt_to_head_page(ptr);
2b188cc1
JA
5764 if (put_page_testzero(page))
5765 free_compound_page(page);
5766}
5767
5768static void *io_mem_alloc(size_t size)
5769{
5770 gfp_t gfp_flags = GFP_KERNEL | __GFP_ZERO | __GFP_NOWARN | __GFP_COMP |
5771 __GFP_NORETRY;
5772
5773 return (void *) __get_free_pages(gfp_flags, get_order(size));
5774}
5775
75b28aff
HV
5776static unsigned long rings_size(unsigned sq_entries, unsigned cq_entries,
5777 size_t *sq_offset)
5778{
5779 struct io_rings *rings;
5780 size_t off, sq_array_size;
5781
5782 off = struct_size(rings, cqes, cq_entries);
5783 if (off == SIZE_MAX)
5784 return SIZE_MAX;
5785
5786#ifdef CONFIG_SMP
5787 off = ALIGN(off, SMP_CACHE_BYTES);
5788 if (off == 0)
5789 return SIZE_MAX;
5790#endif
5791
5792 sq_array_size = array_size(sizeof(u32), sq_entries);
5793 if (sq_array_size == SIZE_MAX)
5794 return SIZE_MAX;
5795
5796 if (check_add_overflow(off, sq_array_size, &off))
5797 return SIZE_MAX;
5798
5799 if (sq_offset)
5800 *sq_offset = off;
5801
5802 return off;
5803}
5804
2b188cc1
JA
5805static unsigned long ring_pages(unsigned sq_entries, unsigned cq_entries)
5806{
75b28aff 5807 size_t pages;
2b188cc1 5808
75b28aff
HV
5809 pages = (size_t)1 << get_order(
5810 rings_size(sq_entries, cq_entries, NULL));
5811 pages += (size_t)1 << get_order(
5812 array_size(sizeof(struct io_uring_sqe), sq_entries));
2b188cc1 5813
75b28aff 5814 return pages;
2b188cc1
JA
5815}
5816
edafccee
JA
5817static int io_sqe_buffer_unregister(struct io_ring_ctx *ctx)
5818{
5819 int i, j;
5820
5821 if (!ctx->user_bufs)
5822 return -ENXIO;
5823
5824 for (i = 0; i < ctx->nr_user_bufs; i++) {
5825 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
5826
5827 for (j = 0; j < imu->nr_bvecs; j++)
27c4d3a3 5828 put_user_page(imu->bvec[j].bv_page);
edafccee
JA
5829
5830 if (ctx->account_mem)
5831 io_unaccount_mem(ctx->user, imu->nr_bvecs);
d4ef6475 5832 kvfree(imu->bvec);
edafccee
JA
5833 imu->nr_bvecs = 0;
5834 }
5835
5836 kfree(ctx->user_bufs);
5837 ctx->user_bufs = NULL;
5838 ctx->nr_user_bufs = 0;
5839 return 0;
5840}
5841
5842static int io_copy_iov(struct io_ring_ctx *ctx, struct iovec *dst,
5843 void __user *arg, unsigned index)
5844{
5845 struct iovec __user *src;
5846
5847#ifdef CONFIG_COMPAT
5848 if (ctx->compat) {
5849 struct compat_iovec __user *ciovs;
5850 struct compat_iovec ciov;
5851
5852 ciovs = (struct compat_iovec __user *) arg;
5853 if (copy_from_user(&ciov, &ciovs[index], sizeof(ciov)))
5854 return -EFAULT;
5855
d55e5f5b 5856 dst->iov_base = u64_to_user_ptr((u64)ciov.iov_base);
edafccee
JA
5857 dst->iov_len = ciov.iov_len;
5858 return 0;
5859 }
5860#endif
5861 src = (struct iovec __user *) arg;
5862 if (copy_from_user(dst, &src[index], sizeof(*dst)))
5863 return -EFAULT;
5864 return 0;
5865}
5866
5867static int io_sqe_buffer_register(struct io_ring_ctx *ctx, void __user *arg,
5868 unsigned nr_args)
5869{
5870 struct vm_area_struct **vmas = NULL;
5871 struct page **pages = NULL;
5872 int i, j, got_pages = 0;
5873 int ret = -EINVAL;
5874
5875 if (ctx->user_bufs)
5876 return -EBUSY;
5877 if (!nr_args || nr_args > UIO_MAXIOV)
5878 return -EINVAL;
5879
5880 ctx->user_bufs = kcalloc(nr_args, sizeof(struct io_mapped_ubuf),
5881 GFP_KERNEL);
5882 if (!ctx->user_bufs)
5883 return -ENOMEM;
5884
5885 for (i = 0; i < nr_args; i++) {
5886 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
5887 unsigned long off, start, end, ubuf;
5888 int pret, nr_pages;
5889 struct iovec iov;
5890 size_t size;
5891
5892 ret = io_copy_iov(ctx, &iov, arg, i);
5893 if (ret)
a278682d 5894 goto err;
edafccee
JA
5895
5896 /*
5897 * Don't impose further limits on the size and buffer
5898 * constraints here, we'll -EINVAL later when IO is
5899 * submitted if they are wrong.
5900 */
5901 ret = -EFAULT;
5902 if (!iov.iov_base || !iov.iov_len)
5903 goto err;
5904
5905 /* arbitrary limit, but we need something */
5906 if (iov.iov_len > SZ_1G)
5907 goto err;
5908
5909 ubuf = (unsigned long) iov.iov_base;
5910 end = (ubuf + iov.iov_len + PAGE_SIZE - 1) >> PAGE_SHIFT;
5911 start = ubuf >> PAGE_SHIFT;
5912 nr_pages = end - start;
5913
5914 if (ctx->account_mem) {
5915 ret = io_account_mem(ctx->user, nr_pages);
5916 if (ret)
5917 goto err;
5918 }
5919
5920 ret = 0;
5921 if (!pages || nr_pages > got_pages) {
5922 kfree(vmas);
5923 kfree(pages);
d4ef6475 5924 pages = kvmalloc_array(nr_pages, sizeof(struct page *),
edafccee 5925 GFP_KERNEL);
d4ef6475 5926 vmas = kvmalloc_array(nr_pages,
edafccee
JA
5927 sizeof(struct vm_area_struct *),
5928 GFP_KERNEL);
5929 if (!pages || !vmas) {
5930 ret = -ENOMEM;
5931 if (ctx->account_mem)
5932 io_unaccount_mem(ctx->user, nr_pages);
5933 goto err;
5934 }
5935 got_pages = nr_pages;
5936 }
5937
d4ef6475 5938 imu->bvec = kvmalloc_array(nr_pages, sizeof(struct bio_vec),
edafccee
JA
5939 GFP_KERNEL);
5940 ret = -ENOMEM;
5941 if (!imu->bvec) {
5942 if (ctx->account_mem)
5943 io_unaccount_mem(ctx->user, nr_pages);
5944 goto err;
5945 }
5946
5947 ret = 0;
5948 down_read(&current->mm->mmap_sem);
932f4a63
IW
5949 pret = get_user_pages(ubuf, nr_pages,
5950 FOLL_WRITE | FOLL_LONGTERM,
5951 pages, vmas);
edafccee
JA
5952 if (pret == nr_pages) {
5953 /* don't support file backed memory */
5954 for (j = 0; j < nr_pages; j++) {
5955 struct vm_area_struct *vma = vmas[j];
5956
5957 if (vma->vm_file &&
5958 !is_file_hugepages(vma->vm_file)) {
5959 ret = -EOPNOTSUPP;
5960 break;
5961 }
5962 }
5963 } else {
5964 ret = pret < 0 ? pret : -EFAULT;
5965 }
5966 up_read(&current->mm->mmap_sem);
5967 if (ret) {
5968 /*
5969 * if we did partial map, or found file backed vmas,
5970 * release any pages we did get
5971 */
27c4d3a3
JH
5972 if (pret > 0)
5973 put_user_pages(pages, pret);
edafccee
JA
5974 if (ctx->account_mem)
5975 io_unaccount_mem(ctx->user, nr_pages);
d4ef6475 5976 kvfree(imu->bvec);
edafccee
JA
5977 goto err;
5978 }
5979
5980 off = ubuf & ~PAGE_MASK;
5981 size = iov.iov_len;
5982 for (j = 0; j < nr_pages; j++) {
5983 size_t vec_len;
5984
5985 vec_len = min_t(size_t, size, PAGE_SIZE - off);
5986 imu->bvec[j].bv_page = pages[j];
5987 imu->bvec[j].bv_len = vec_len;
5988 imu->bvec[j].bv_offset = off;
5989 off = 0;
5990 size -= vec_len;
5991 }
5992 /* store original address for later verification */
5993 imu->ubuf = ubuf;
5994 imu->len = iov.iov_len;
5995 imu->nr_bvecs = nr_pages;
5996
5997 ctx->nr_user_bufs++;
5998 }
d4ef6475
MR
5999 kvfree(pages);
6000 kvfree(vmas);
edafccee
JA
6001 return 0;
6002err:
d4ef6475
MR
6003 kvfree(pages);
6004 kvfree(vmas);
edafccee
JA
6005 io_sqe_buffer_unregister(ctx);
6006 return ret;
6007}
6008
9b402849
JA
6009static int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg)
6010{
6011 __s32 __user *fds = arg;
6012 int fd;
6013
6014 if (ctx->cq_ev_fd)
6015 return -EBUSY;
6016
6017 if (copy_from_user(&fd, fds, sizeof(*fds)))
6018 return -EFAULT;
6019
6020 ctx->cq_ev_fd = eventfd_ctx_fdget(fd);
6021 if (IS_ERR(ctx->cq_ev_fd)) {
6022 int ret = PTR_ERR(ctx->cq_ev_fd);
6023 ctx->cq_ev_fd = NULL;
6024 return ret;
6025 }
6026
6027 return 0;
6028}
6029
6030static int io_eventfd_unregister(struct io_ring_ctx *ctx)
6031{
6032 if (ctx->cq_ev_fd) {
6033 eventfd_ctx_put(ctx->cq_ev_fd);
6034 ctx->cq_ev_fd = NULL;
6035 return 0;
6036 }
6037
6038 return -ENXIO;
6039}
6040
2b188cc1
JA
6041static void io_ring_ctx_free(struct io_ring_ctx *ctx)
6042{
6b06314c 6043 io_finish_async(ctx);
2b188cc1
JA
6044 if (ctx->sqo_mm)
6045 mmdrop(ctx->sqo_mm);
def596e9
JA
6046
6047 io_iopoll_reap_events(ctx);
edafccee 6048 io_sqe_buffer_unregister(ctx);
6b06314c 6049 io_sqe_files_unregister(ctx);
9b402849 6050 io_eventfd_unregister(ctx);
def596e9 6051
2b188cc1 6052#if defined(CONFIG_UNIX)
355e8d26
EB
6053 if (ctx->ring_sock) {
6054 ctx->ring_sock->file = NULL; /* so that iput() is called */
2b188cc1 6055 sock_release(ctx->ring_sock);
355e8d26 6056 }
2b188cc1
JA
6057#endif
6058
75b28aff 6059 io_mem_free(ctx->rings);
2b188cc1 6060 io_mem_free(ctx->sq_sqes);
2b188cc1
JA
6061
6062 percpu_ref_exit(&ctx->refs);
6063 if (ctx->account_mem)
6064 io_unaccount_mem(ctx->user,
6065 ring_pages(ctx->sq_entries, ctx->cq_entries));
6066 free_uid(ctx->user);
181e448d 6067 put_cred(ctx->creds);
206aefde 6068 kfree(ctx->completions);
78076bb6 6069 kfree(ctx->cancel_hash);
0ddf92e8 6070 kmem_cache_free(req_cachep, ctx->fallback_req);
2b188cc1
JA
6071 kfree(ctx);
6072}
6073
6074static __poll_t io_uring_poll(struct file *file, poll_table *wait)
6075{
6076 struct io_ring_ctx *ctx = file->private_data;
6077 __poll_t mask = 0;
6078
6079 poll_wait(file, &ctx->cq_wait, wait);
4f7067c3
SB
6080 /*
6081 * synchronizes with barrier from wq_has_sleeper call in
6082 * io_commit_cqring
6083 */
2b188cc1 6084 smp_rmb();
75b28aff
HV
6085 if (READ_ONCE(ctx->rings->sq.tail) - ctx->cached_sq_head !=
6086 ctx->rings->sq_ring_entries)
2b188cc1 6087 mask |= EPOLLOUT | EPOLLWRNORM;
daa5de54 6088 if (READ_ONCE(ctx->rings->cq.head) != ctx->cached_cq_tail)
2b188cc1
JA
6089 mask |= EPOLLIN | EPOLLRDNORM;
6090
6091 return mask;
6092}
6093
6094static int io_uring_fasync(int fd, struct file *file, int on)
6095{
6096 struct io_ring_ctx *ctx = file->private_data;
6097
6098 return fasync_helper(fd, file, on, &ctx->cq_fasync);
6099}
6100
6101static void io_ring_ctx_wait_and_kill(struct io_ring_ctx *ctx)
6102{
6103 mutex_lock(&ctx->uring_lock);
6104 percpu_ref_kill(&ctx->refs);
6105 mutex_unlock(&ctx->uring_lock);
6106
5262f567 6107 io_kill_timeouts(ctx);
221c5eb2 6108 io_poll_remove_all(ctx);
561fb04a
JA
6109
6110 if (ctx->io_wq)
6111 io_wq_cancel_all(ctx->io_wq);
6112
def596e9 6113 io_iopoll_reap_events(ctx);
15dff286
JA
6114 /* if we failed setting up the ctx, we might not have any rings */
6115 if (ctx->rings)
6116 io_cqring_overflow_flush(ctx, true);
206aefde 6117 wait_for_completion(&ctx->completions[0]);
2b188cc1
JA
6118 io_ring_ctx_free(ctx);
6119}
6120
6121static int io_uring_release(struct inode *inode, struct file *file)
6122{
6123 struct io_ring_ctx *ctx = file->private_data;
6124
6125 file->private_data = NULL;
6126 io_ring_ctx_wait_and_kill(ctx);
6127 return 0;
6128}
6129
fcb323cc
JA
6130static void io_uring_cancel_files(struct io_ring_ctx *ctx,
6131 struct files_struct *files)
6132{
6133 struct io_kiocb *req;
6134 DEFINE_WAIT(wait);
6135
6136 while (!list_empty_careful(&ctx->inflight_list)) {
768134d4 6137 struct io_kiocb *cancel_req = NULL;
fcb323cc
JA
6138
6139 spin_lock_irq(&ctx->inflight_lock);
6140 list_for_each_entry(req, &ctx->inflight_list, inflight_entry) {
768134d4
JA
6141 if (req->work.files != files)
6142 continue;
6143 /* req is being completed, ignore */
6144 if (!refcount_inc_not_zero(&req->refs))
6145 continue;
6146 cancel_req = req;
6147 break;
fcb323cc 6148 }
768134d4 6149 if (cancel_req)
fcb323cc 6150 prepare_to_wait(&ctx->inflight_wait, &wait,
768134d4 6151 TASK_UNINTERRUPTIBLE);
fcb323cc
JA
6152 spin_unlock_irq(&ctx->inflight_lock);
6153
768134d4
JA
6154 /* We need to keep going until we don't find a matching req */
6155 if (!cancel_req)
fcb323cc 6156 break;
2f6d9b9d
BL
6157
6158 io_wq_cancel_work(ctx->io_wq, &cancel_req->work);
6159 io_put_req(cancel_req);
fcb323cc
JA
6160 schedule();
6161 }
768134d4 6162 finish_wait(&ctx->inflight_wait, &wait);
fcb323cc
JA
6163}
6164
6165static int io_uring_flush(struct file *file, void *data)
6166{
6167 struct io_ring_ctx *ctx = file->private_data;
6168
6169 io_uring_cancel_files(ctx, data);
1d7bb1d5
JA
6170 if (fatal_signal_pending(current) || (current->flags & PF_EXITING)) {
6171 io_cqring_overflow_flush(ctx, true);
fcb323cc 6172 io_wq_cancel_all(ctx->io_wq);
1d7bb1d5 6173 }
fcb323cc
JA
6174 return 0;
6175}
6176
6c5c240e
RP
6177static void *io_uring_validate_mmap_request(struct file *file,
6178 loff_t pgoff, size_t sz)
2b188cc1 6179{
2b188cc1 6180 struct io_ring_ctx *ctx = file->private_data;
6c5c240e 6181 loff_t offset = pgoff << PAGE_SHIFT;
2b188cc1
JA
6182 struct page *page;
6183 void *ptr;
6184
6185 switch (offset) {
6186 case IORING_OFF_SQ_RING:
75b28aff
HV
6187 case IORING_OFF_CQ_RING:
6188 ptr = ctx->rings;
2b188cc1
JA
6189 break;
6190 case IORING_OFF_SQES:
6191 ptr = ctx->sq_sqes;
6192 break;
2b188cc1 6193 default:
6c5c240e 6194 return ERR_PTR(-EINVAL);
2b188cc1
JA
6195 }
6196
6197 page = virt_to_head_page(ptr);
a50b854e 6198 if (sz > page_size(page))
6c5c240e
RP
6199 return ERR_PTR(-EINVAL);
6200
6201 return ptr;
6202}
6203
6204#ifdef CONFIG_MMU
6205
6206static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
6207{
6208 size_t sz = vma->vm_end - vma->vm_start;
6209 unsigned long pfn;
6210 void *ptr;
6211
6212 ptr = io_uring_validate_mmap_request(file, vma->vm_pgoff, sz);
6213 if (IS_ERR(ptr))
6214 return PTR_ERR(ptr);
2b188cc1
JA
6215
6216 pfn = virt_to_phys(ptr) >> PAGE_SHIFT;
6217 return remap_pfn_range(vma, vma->vm_start, pfn, sz, vma->vm_page_prot);
6218}
6219
6c5c240e
RP
6220#else /* !CONFIG_MMU */
6221
6222static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
6223{
6224 return vma->vm_flags & (VM_SHARED | VM_MAYSHARE) ? 0 : -EINVAL;
6225}
6226
6227static unsigned int io_uring_nommu_mmap_capabilities(struct file *file)
6228{
6229 return NOMMU_MAP_DIRECT | NOMMU_MAP_READ | NOMMU_MAP_WRITE;
6230}
6231
6232static unsigned long io_uring_nommu_get_unmapped_area(struct file *file,
6233 unsigned long addr, unsigned long len,
6234 unsigned long pgoff, unsigned long flags)
6235{
6236 void *ptr;
6237
6238 ptr = io_uring_validate_mmap_request(file, pgoff, len);
6239 if (IS_ERR(ptr))
6240 return PTR_ERR(ptr);
6241
6242 return (unsigned long) ptr;
6243}
6244
6245#endif /* !CONFIG_MMU */
6246
2b188cc1
JA
6247SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
6248 u32, min_complete, u32, flags, const sigset_t __user *, sig,
6249 size_t, sigsz)
6250{
6251 struct io_ring_ctx *ctx;
6252 long ret = -EBADF;
6253 int submitted = 0;
6254 struct fd f;
6255
6c271ce2 6256 if (flags & ~(IORING_ENTER_GETEVENTS | IORING_ENTER_SQ_WAKEUP))
2b188cc1
JA
6257 return -EINVAL;
6258
6259 f = fdget(fd);
6260 if (!f.file)
6261 return -EBADF;
6262
6263 ret = -EOPNOTSUPP;
6264 if (f.file->f_op != &io_uring_fops)
6265 goto out_fput;
6266
6267 ret = -ENXIO;
6268 ctx = f.file->private_data;
6269 if (!percpu_ref_tryget(&ctx->refs))
6270 goto out_fput;
6271
6c271ce2
JA
6272 /*
6273 * For SQ polling, the thread will do all submissions and completions.
6274 * Just return the requested submit count, and wake the thread if
6275 * we were asked to.
6276 */
b2a9eada 6277 ret = 0;
6c271ce2 6278 if (ctx->flags & IORING_SETUP_SQPOLL) {
c1edbf5f
JA
6279 if (!list_empty_careful(&ctx->cq_overflow_list))
6280 io_cqring_overflow_flush(ctx, false);
6c271ce2
JA
6281 if (flags & IORING_ENTER_SQ_WAKEUP)
6282 wake_up(&ctx->sqo_wait);
6283 submitted = to_submit;
b2a9eada 6284 } else if (to_submit) {
ae9428ca 6285 struct mm_struct *cur_mm;
2b188cc1 6286
44d28279
JA
6287 if (current->mm != ctx->sqo_mm ||
6288 current_cred() != ctx->creds) {
6289 ret = -EPERM;
6290 goto out;
6291 }
6292
2b188cc1 6293 mutex_lock(&ctx->uring_lock);
ae9428ca
PB
6294 /* already have mm, so io_submit_sqes() won't try to grab it */
6295 cur_mm = ctx->sqo_mm;
6296 submitted = io_submit_sqes(ctx, to_submit, f.file, fd,
6297 &cur_mm, false);
2b188cc1 6298 mutex_unlock(&ctx->uring_lock);
7c504e65
PB
6299
6300 if (submitted != to_submit)
6301 goto out;
2b188cc1
JA
6302 }
6303 if (flags & IORING_ENTER_GETEVENTS) {
def596e9
JA
6304 unsigned nr_events = 0;
6305
2b188cc1
JA
6306 min_complete = min(min_complete, ctx->cq_entries);
6307
def596e9 6308 if (ctx->flags & IORING_SETUP_IOPOLL) {
def596e9 6309 ret = io_iopoll_check(ctx, &nr_events, min_complete);
def596e9
JA
6310 } else {
6311 ret = io_cqring_wait(ctx, min_complete, sig, sigsz);
6312 }
2b188cc1
JA
6313 }
6314
7c504e65 6315out:
6805b32e 6316 percpu_ref_put(&ctx->refs);
2b188cc1
JA
6317out_fput:
6318 fdput(f);
6319 return submitted ? submitted : ret;
6320}
6321
6322static const struct file_operations io_uring_fops = {
6323 .release = io_uring_release,
fcb323cc 6324 .flush = io_uring_flush,
2b188cc1 6325 .mmap = io_uring_mmap,
6c5c240e
RP
6326#ifndef CONFIG_MMU
6327 .get_unmapped_area = io_uring_nommu_get_unmapped_area,
6328 .mmap_capabilities = io_uring_nommu_mmap_capabilities,
6329#endif
2b188cc1
JA
6330 .poll = io_uring_poll,
6331 .fasync = io_uring_fasync,
6332};
6333
6334static int io_allocate_scq_urings(struct io_ring_ctx *ctx,
6335 struct io_uring_params *p)
6336{
75b28aff
HV
6337 struct io_rings *rings;
6338 size_t size, sq_array_offset;
2b188cc1 6339
75b28aff
HV
6340 size = rings_size(p->sq_entries, p->cq_entries, &sq_array_offset);
6341 if (size == SIZE_MAX)
6342 return -EOVERFLOW;
6343
6344 rings = io_mem_alloc(size);
6345 if (!rings)
2b188cc1
JA
6346 return -ENOMEM;
6347
75b28aff
HV
6348 ctx->rings = rings;
6349 ctx->sq_array = (u32 *)((char *)rings + sq_array_offset);
6350 rings->sq_ring_mask = p->sq_entries - 1;
6351 rings->cq_ring_mask = p->cq_entries - 1;
6352 rings->sq_ring_entries = p->sq_entries;
6353 rings->cq_ring_entries = p->cq_entries;
6354 ctx->sq_mask = rings->sq_ring_mask;
6355 ctx->cq_mask = rings->cq_ring_mask;
6356 ctx->sq_entries = rings->sq_ring_entries;
6357 ctx->cq_entries = rings->cq_ring_entries;
2b188cc1
JA
6358
6359 size = array_size(sizeof(struct io_uring_sqe), p->sq_entries);
eb065d30
JA
6360 if (size == SIZE_MAX) {
6361 io_mem_free(ctx->rings);
6362 ctx->rings = NULL;
2b188cc1 6363 return -EOVERFLOW;
eb065d30 6364 }
2b188cc1
JA
6365
6366 ctx->sq_sqes = io_mem_alloc(size);
eb065d30
JA
6367 if (!ctx->sq_sqes) {
6368 io_mem_free(ctx->rings);
6369 ctx->rings = NULL;
2b188cc1 6370 return -ENOMEM;
eb065d30 6371 }
2b188cc1 6372
2b188cc1
JA
6373 return 0;
6374}
6375
6376/*
6377 * Allocate an anonymous fd, this is what constitutes the application
6378 * visible backing of an io_uring instance. The application mmaps this
6379 * fd to gain access to the SQ/CQ ring details. If UNIX sockets are enabled,
6380 * we have to tie this fd to a socket for file garbage collection purposes.
6381 */
6382static int io_uring_get_fd(struct io_ring_ctx *ctx)
6383{
6384 struct file *file;
6385 int ret;
6386
6387#if defined(CONFIG_UNIX)
6388 ret = sock_create_kern(&init_net, PF_UNIX, SOCK_RAW, IPPROTO_IP,
6389 &ctx->ring_sock);
6390 if (ret)
6391 return ret;
6392#endif
6393
6394 ret = get_unused_fd_flags(O_RDWR | O_CLOEXEC);
6395 if (ret < 0)
6396 goto err;
6397
6398 file = anon_inode_getfile("[io_uring]", &io_uring_fops, ctx,
6399 O_RDWR | O_CLOEXEC);
6400 if (IS_ERR(file)) {
6401 put_unused_fd(ret);
6402 ret = PTR_ERR(file);
6403 goto err;
6404 }
6405
6406#if defined(CONFIG_UNIX)
6407 ctx->ring_sock->file = file;
6408#endif
6409 fd_install(ret, file);
6410 return ret;
6411err:
6412#if defined(CONFIG_UNIX)
6413 sock_release(ctx->ring_sock);
6414 ctx->ring_sock = NULL;
6415#endif
6416 return ret;
6417}
6418
6419static int io_uring_create(unsigned entries, struct io_uring_params *p)
6420{
6421 struct user_struct *user = NULL;
6422 struct io_ring_ctx *ctx;
6423 bool account_mem;
6424 int ret;
6425
8110c1a6 6426 if (!entries)
2b188cc1 6427 return -EINVAL;
8110c1a6
JA
6428 if (entries > IORING_MAX_ENTRIES) {
6429 if (!(p->flags & IORING_SETUP_CLAMP))
6430 return -EINVAL;
6431 entries = IORING_MAX_ENTRIES;
6432 }
2b188cc1
JA
6433
6434 /*
6435 * Use twice as many entries for the CQ ring. It's possible for the
6436 * application to drive a higher depth than the size of the SQ ring,
6437 * since the sqes are only used at submission time. This allows for
33a107f0
JA
6438 * some flexibility in overcommitting a bit. If the application has
6439 * set IORING_SETUP_CQSIZE, it will have passed in the desired number
6440 * of CQ ring entries manually.
2b188cc1
JA
6441 */
6442 p->sq_entries = roundup_pow_of_two(entries);
33a107f0
JA
6443 if (p->flags & IORING_SETUP_CQSIZE) {
6444 /*
6445 * If IORING_SETUP_CQSIZE is set, we do the same roundup
6446 * to a power-of-two, if it isn't already. We do NOT impose
6447 * any cq vs sq ring sizing.
6448 */
8110c1a6 6449 if (p->cq_entries < p->sq_entries)
33a107f0 6450 return -EINVAL;
8110c1a6
JA
6451 if (p->cq_entries > IORING_MAX_CQ_ENTRIES) {
6452 if (!(p->flags & IORING_SETUP_CLAMP))
6453 return -EINVAL;
6454 p->cq_entries = IORING_MAX_CQ_ENTRIES;
6455 }
33a107f0
JA
6456 p->cq_entries = roundup_pow_of_two(p->cq_entries);
6457 } else {
6458 p->cq_entries = 2 * p->sq_entries;
6459 }
2b188cc1
JA
6460
6461 user = get_uid(current_user());
6462 account_mem = !capable(CAP_IPC_LOCK);
6463
6464 if (account_mem) {
6465 ret = io_account_mem(user,
6466 ring_pages(p->sq_entries, p->cq_entries));
6467 if (ret) {
6468 free_uid(user);
6469 return ret;
6470 }
6471 }
6472
6473 ctx = io_ring_ctx_alloc(p);
6474 if (!ctx) {
6475 if (account_mem)
6476 io_unaccount_mem(user, ring_pages(p->sq_entries,
6477 p->cq_entries));
6478 free_uid(user);
6479 return -ENOMEM;
6480 }
6481 ctx->compat = in_compat_syscall();
6482 ctx->account_mem = account_mem;
6483 ctx->user = user;
0b8c0ec7 6484 ctx->creds = get_current_cred();
2b188cc1
JA
6485
6486 ret = io_allocate_scq_urings(ctx, p);
6487 if (ret)
6488 goto err;
6489
6c271ce2 6490 ret = io_sq_offload_start(ctx, p);
2b188cc1
JA
6491 if (ret)
6492 goto err;
6493
2b188cc1 6494 memset(&p->sq_off, 0, sizeof(p->sq_off));
75b28aff
HV
6495 p->sq_off.head = offsetof(struct io_rings, sq.head);
6496 p->sq_off.tail = offsetof(struct io_rings, sq.tail);
6497 p->sq_off.ring_mask = offsetof(struct io_rings, sq_ring_mask);
6498 p->sq_off.ring_entries = offsetof(struct io_rings, sq_ring_entries);
6499 p->sq_off.flags = offsetof(struct io_rings, sq_flags);
6500 p->sq_off.dropped = offsetof(struct io_rings, sq_dropped);
6501 p->sq_off.array = (char *)ctx->sq_array - (char *)ctx->rings;
2b188cc1
JA
6502
6503 memset(&p->cq_off, 0, sizeof(p->cq_off));
75b28aff
HV
6504 p->cq_off.head = offsetof(struct io_rings, cq.head);
6505 p->cq_off.tail = offsetof(struct io_rings, cq.tail);
6506 p->cq_off.ring_mask = offsetof(struct io_rings, cq_ring_mask);
6507 p->cq_off.ring_entries = offsetof(struct io_rings, cq_ring_entries);
6508 p->cq_off.overflow = offsetof(struct io_rings, cq_overflow);
6509 p->cq_off.cqes = offsetof(struct io_rings, cqes);
ac90f249 6510
044c1ab3
JA
6511 /*
6512 * Install ring fd as the very last thing, so we don't risk someone
6513 * having closed it before we finish setup
6514 */
6515 ret = io_uring_get_fd(ctx);
6516 if (ret < 0)
6517 goto err;
6518
da8c9690 6519 p->features = IORING_FEAT_SINGLE_MMAP | IORING_FEAT_NODROP |
ba04291e 6520 IORING_FEAT_SUBMIT_STABLE | IORING_FEAT_RW_CUR_POS;
c826bd7a 6521 trace_io_uring_create(ret, ctx, p->sq_entries, p->cq_entries, p->flags);
2b188cc1
JA
6522 return ret;
6523err:
6524 io_ring_ctx_wait_and_kill(ctx);
6525 return ret;
6526}
6527
6528/*
6529 * Sets up an aio uring context, and returns the fd. Applications asks for a
6530 * ring size, we return the actual sq/cq ring sizes (among other things) in the
6531 * params structure passed in.
6532 */
6533static long io_uring_setup(u32 entries, struct io_uring_params __user *params)
6534{
6535 struct io_uring_params p;
6536 long ret;
6537 int i;
6538
6539 if (copy_from_user(&p, params, sizeof(p)))
6540 return -EFAULT;
6541 for (i = 0; i < ARRAY_SIZE(p.resv); i++) {
6542 if (p.resv[i])
6543 return -EINVAL;
6544 }
6545
6c271ce2 6546 if (p.flags & ~(IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL |
8110c1a6
JA
6547 IORING_SETUP_SQ_AFF | IORING_SETUP_CQSIZE |
6548 IORING_SETUP_CLAMP))
2b188cc1
JA
6549 return -EINVAL;
6550
6551 ret = io_uring_create(entries, &p);
6552 if (ret < 0)
6553 return ret;
6554
6555 if (copy_to_user(params, &p, sizeof(p)))
6556 return -EFAULT;
6557
6558 return ret;
6559}
6560
6561SYSCALL_DEFINE2(io_uring_setup, u32, entries,
6562 struct io_uring_params __user *, params)
6563{
6564 return io_uring_setup(entries, params);
6565}
6566
66f4af93
JA
6567static int io_probe(struct io_ring_ctx *ctx, void __user *arg, unsigned nr_args)
6568{
6569 struct io_uring_probe *p;
6570 size_t size;
6571 int i, ret;
6572
6573 size = struct_size(p, ops, nr_args);
6574 if (size == SIZE_MAX)
6575 return -EOVERFLOW;
6576 p = kzalloc(size, GFP_KERNEL);
6577 if (!p)
6578 return -ENOMEM;
6579
6580 ret = -EFAULT;
6581 if (copy_from_user(p, arg, size))
6582 goto out;
6583 ret = -EINVAL;
6584 if (memchr_inv(p, 0, size))
6585 goto out;
6586
6587 p->last_op = IORING_OP_LAST - 1;
6588 if (nr_args > IORING_OP_LAST)
6589 nr_args = IORING_OP_LAST;
6590
6591 for (i = 0; i < nr_args; i++) {
6592 p->ops[i].op = i;
6593 if (!io_op_defs[i].not_supported)
6594 p->ops[i].flags = IO_URING_OP_SUPPORTED;
6595 }
6596 p->ops_len = i;
6597
6598 ret = 0;
6599 if (copy_to_user(arg, p, size))
6600 ret = -EFAULT;
6601out:
6602 kfree(p);
6603 return ret;
6604}
6605
edafccee
JA
6606static int __io_uring_register(struct io_ring_ctx *ctx, unsigned opcode,
6607 void __user *arg, unsigned nr_args)
b19062a5
JA
6608 __releases(ctx->uring_lock)
6609 __acquires(ctx->uring_lock)
edafccee
JA
6610{
6611 int ret;
6612
35fa71a0
JA
6613 /*
6614 * We're inside the ring mutex, if the ref is already dying, then
6615 * someone else killed the ctx or is already going through
6616 * io_uring_register().
6617 */
6618 if (percpu_ref_is_dying(&ctx->refs))
6619 return -ENXIO;
6620
05f3fb3c 6621 if (opcode != IORING_UNREGISTER_FILES &&
66f4af93
JA
6622 opcode != IORING_REGISTER_FILES_UPDATE &&
6623 opcode != IORING_REGISTER_PROBE) {
05f3fb3c 6624 percpu_ref_kill(&ctx->refs);
b19062a5 6625
05f3fb3c
JA
6626 /*
6627 * Drop uring mutex before waiting for references to exit. If
6628 * another thread is currently inside io_uring_enter() it might
6629 * need to grab the uring_lock to make progress. If we hold it
6630 * here across the drain wait, then we can deadlock. It's safe
6631 * to drop the mutex here, since no new references will come in
6632 * after we've killed the percpu ref.
6633 */
6634 mutex_unlock(&ctx->uring_lock);
c150368b 6635 ret = wait_for_completion_interruptible(&ctx->completions[0]);
05f3fb3c 6636 mutex_lock(&ctx->uring_lock);
c150368b
JA
6637 if (ret) {
6638 percpu_ref_resurrect(&ctx->refs);
6639 ret = -EINTR;
6640 goto out;
6641 }
05f3fb3c 6642 }
edafccee
JA
6643
6644 switch (opcode) {
6645 case IORING_REGISTER_BUFFERS:
6646 ret = io_sqe_buffer_register(ctx, arg, nr_args);
6647 break;
6648 case IORING_UNREGISTER_BUFFERS:
6649 ret = -EINVAL;
6650 if (arg || nr_args)
6651 break;
6652 ret = io_sqe_buffer_unregister(ctx);
6653 break;
6b06314c
JA
6654 case IORING_REGISTER_FILES:
6655 ret = io_sqe_files_register(ctx, arg, nr_args);
6656 break;
6657 case IORING_UNREGISTER_FILES:
6658 ret = -EINVAL;
6659 if (arg || nr_args)
6660 break;
6661 ret = io_sqe_files_unregister(ctx);
6662 break;
c3a31e60
JA
6663 case IORING_REGISTER_FILES_UPDATE:
6664 ret = io_sqe_files_update(ctx, arg, nr_args);
6665 break;
9b402849 6666 case IORING_REGISTER_EVENTFD:
f2842ab5 6667 case IORING_REGISTER_EVENTFD_ASYNC:
9b402849
JA
6668 ret = -EINVAL;
6669 if (nr_args != 1)
6670 break;
6671 ret = io_eventfd_register(ctx, arg);
f2842ab5
JA
6672 if (ret)
6673 break;
6674 if (opcode == IORING_REGISTER_EVENTFD_ASYNC)
6675 ctx->eventfd_async = 1;
6676 else
6677 ctx->eventfd_async = 0;
9b402849
JA
6678 break;
6679 case IORING_UNREGISTER_EVENTFD:
6680 ret = -EINVAL;
6681 if (arg || nr_args)
6682 break;
6683 ret = io_eventfd_unregister(ctx);
6684 break;
66f4af93
JA
6685 case IORING_REGISTER_PROBE:
6686 ret = -EINVAL;
6687 if (!arg || nr_args > 256)
6688 break;
6689 ret = io_probe(ctx, arg, nr_args);
6690 break;
edafccee
JA
6691 default:
6692 ret = -EINVAL;
6693 break;
6694 }
6695
05f3fb3c
JA
6696
6697 if (opcode != IORING_UNREGISTER_FILES &&
66f4af93
JA
6698 opcode != IORING_REGISTER_FILES_UPDATE &&
6699 opcode != IORING_REGISTER_PROBE) {
05f3fb3c 6700 /* bring the ctx back to life */
05f3fb3c 6701 percpu_ref_reinit(&ctx->refs);
c150368b
JA
6702out:
6703 reinit_completion(&ctx->completions[0]);
05f3fb3c 6704 }
edafccee
JA
6705 return ret;
6706}
6707
6708SYSCALL_DEFINE4(io_uring_register, unsigned int, fd, unsigned int, opcode,
6709 void __user *, arg, unsigned int, nr_args)
6710{
6711 struct io_ring_ctx *ctx;
6712 long ret = -EBADF;
6713 struct fd f;
6714
6715 f = fdget(fd);
6716 if (!f.file)
6717 return -EBADF;
6718
6719 ret = -EOPNOTSUPP;
6720 if (f.file->f_op != &io_uring_fops)
6721 goto out_fput;
6722
6723 ctx = f.file->private_data;
6724
6725 mutex_lock(&ctx->uring_lock);
6726 ret = __io_uring_register(ctx, opcode, arg, nr_args);
6727 mutex_unlock(&ctx->uring_lock);
c826bd7a
DD
6728 trace_io_uring_register(ctx, opcode, ctx->nr_user_files, ctx->nr_user_bufs,
6729 ctx->cq_ev_fd != NULL, ret);
edafccee
JA
6730out_fput:
6731 fdput(f);
6732 return ret;
6733}
6734
2b188cc1
JA
6735static int __init io_uring_init(void)
6736{
d3656344 6737 BUILD_BUG_ON(ARRAY_SIZE(io_op_defs) != IORING_OP_LAST);
2b188cc1
JA
6738 req_cachep = KMEM_CACHE(io_kiocb, SLAB_HWCACHE_ALIGN | SLAB_PANIC);
6739 return 0;
6740};
6741__initcall(io_uring_init);