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