io-wq: briefly spin for new work after finishing work
[linux-block.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>
2b188cc1 73
c826bd7a
DD
74#define CREATE_TRACE_POINTS
75#include <trace/events/io_uring.h>
76
2b188cc1
JA
77#include <uapi/linux/io_uring.h>
78
79#include "internal.h"
561fb04a 80#include "io-wq.h"
2b188cc1 81
5277deaa 82#define IORING_MAX_ENTRIES 32768
33a107f0 83#define IORING_MAX_CQ_ENTRIES (2 * IORING_MAX_ENTRIES)
65e19f54
JA
84
85/*
86 * Shift of 9 is 512 entries, or exactly one page on 64-bit archs
87 */
88#define IORING_FILE_TABLE_SHIFT 9
89#define IORING_MAX_FILES_TABLE (1U << IORING_FILE_TABLE_SHIFT)
90#define IORING_FILE_TABLE_MASK (IORING_MAX_FILES_TABLE - 1)
91#define IORING_MAX_FIXED_FILES (64 * IORING_MAX_FILES_TABLE)
2b188cc1
JA
92
93struct io_uring {
94 u32 head ____cacheline_aligned_in_smp;
95 u32 tail ____cacheline_aligned_in_smp;
96};
97
1e84b97b 98/*
75b28aff
HV
99 * This data is shared with the application through the mmap at offsets
100 * IORING_OFF_SQ_RING and IORING_OFF_CQ_RING.
1e84b97b
SB
101 *
102 * The offsets to the member fields are published through struct
103 * io_sqring_offsets when calling io_uring_setup.
104 */
75b28aff 105struct io_rings {
1e84b97b
SB
106 /*
107 * Head and tail offsets into the ring; the offsets need to be
108 * masked to get valid indices.
109 *
75b28aff
HV
110 * The kernel controls head of the sq ring and the tail of the cq ring,
111 * and the application controls tail of the sq ring and the head of the
112 * cq ring.
1e84b97b 113 */
75b28aff 114 struct io_uring sq, cq;
1e84b97b 115 /*
75b28aff 116 * Bitmasks to apply to head and tail offsets (constant, equals
1e84b97b
SB
117 * ring_entries - 1)
118 */
75b28aff
HV
119 u32 sq_ring_mask, cq_ring_mask;
120 /* Ring sizes (constant, power of 2) */
121 u32 sq_ring_entries, cq_ring_entries;
1e84b97b
SB
122 /*
123 * Number of invalid entries dropped by the kernel due to
124 * invalid index stored in array
125 *
126 * Written by the kernel, shouldn't be modified by the
127 * application (i.e. get number of "new events" by comparing to
128 * cached value).
129 *
130 * After a new SQ head value was read by the application this
131 * counter includes all submissions that were dropped reaching
132 * the new SQ head (and possibly more).
133 */
75b28aff 134 u32 sq_dropped;
1e84b97b
SB
135 /*
136 * Runtime flags
137 *
138 * Written by the kernel, shouldn't be modified by the
139 * application.
140 *
141 * The application needs a full memory barrier before checking
142 * for IORING_SQ_NEED_WAKEUP after updating the sq tail.
143 */
75b28aff 144 u32 sq_flags;
1e84b97b
SB
145 /*
146 * Number of completion events lost because the queue was full;
147 * this should be avoided by the application by making sure
0b4295b5 148 * there are not more requests pending than there is space in
1e84b97b
SB
149 * the completion queue.
150 *
151 * Written by the kernel, shouldn't be modified by the
152 * application (i.e. get number of "new events" by comparing to
153 * cached value).
154 *
155 * As completion events come in out of order this counter is not
156 * ordered with any other data.
157 */
75b28aff 158 u32 cq_overflow;
1e84b97b
SB
159 /*
160 * Ring buffer of completion events.
161 *
162 * The kernel writes completion events fresh every time they are
163 * produced, so the application is allowed to modify pending
164 * entries.
165 */
75b28aff 166 struct io_uring_cqe cqes[] ____cacheline_aligned_in_smp;
2b188cc1
JA
167};
168
edafccee
JA
169struct io_mapped_ubuf {
170 u64 ubuf;
171 size_t len;
172 struct bio_vec *bvec;
173 unsigned int nr_bvecs;
174};
175
65e19f54
JA
176struct fixed_file_table {
177 struct file **files;
31b51510
JA
178};
179
2b188cc1
JA
180struct io_ring_ctx {
181 struct {
182 struct percpu_ref refs;
183 } ____cacheline_aligned_in_smp;
184
185 struct {
186 unsigned int flags;
187 bool compat;
188 bool account_mem;
1d7bb1d5 189 bool cq_overflow_flushed;
1b4a51b6 190 bool drain_next;
2b188cc1 191
75b28aff
HV
192 /*
193 * Ring buffer of indices into array of io_uring_sqe, which is
194 * mmapped by the application using the IORING_OFF_SQES offset.
195 *
196 * This indirection could e.g. be used to assign fixed
197 * io_uring_sqe entries to operations and only submit them to
198 * the queue when needed.
199 *
200 * The kernel modifies neither the indices array nor the entries
201 * array.
202 */
203 u32 *sq_array;
2b188cc1
JA
204 unsigned cached_sq_head;
205 unsigned sq_entries;
206 unsigned sq_mask;
6c271ce2 207 unsigned sq_thread_idle;
498ccd9e 208 unsigned cached_sq_dropped;
206aefde 209 atomic_t cached_cq_overflow;
2b188cc1 210 struct io_uring_sqe *sq_sqes;
de0617e4
JA
211
212 struct list_head defer_list;
5262f567 213 struct list_head timeout_list;
1d7bb1d5 214 struct list_head cq_overflow_list;
fcb323cc
JA
215
216 wait_queue_head_t inflight_wait;
2b188cc1
JA
217 } ____cacheline_aligned_in_smp;
218
206aefde
JA
219 struct io_rings *rings;
220
2b188cc1 221 /* IO offload */
561fb04a 222 struct io_wq *io_wq;
6c271ce2 223 struct task_struct *sqo_thread; /* if using sq thread polling */
2b188cc1 224 struct mm_struct *sqo_mm;
6c271ce2 225 wait_queue_head_t sqo_wait;
75b28aff 226
6b06314c
JA
227 /*
228 * If used, fixed file set. Writers must ensure that ->refs is dead,
229 * readers must ensure that ->refs is alive as long as the file* is
230 * used. Only updated through io_uring_register(2).
231 */
65e19f54 232 struct fixed_file_table *file_table;
6b06314c
JA
233 unsigned nr_user_files;
234
edafccee
JA
235 /* if used, fixed mapped user buffers */
236 unsigned nr_user_bufs;
237 struct io_mapped_ubuf *user_bufs;
238
2b188cc1
JA
239 struct user_struct *user;
240
0b8c0ec7 241 const struct cred *creds;
181e448d 242
206aefde
JA
243 /* 0 is for ctx quiesce/reinit/free, 1 is for sqo_thread started */
244 struct completion *completions;
245
0ddf92e8
JA
246 /* if all else fails... */
247 struct io_kiocb *fallback_req;
248
206aefde
JA
249#if defined(CONFIG_UNIX)
250 struct socket *ring_sock;
251#endif
252
253 struct {
254 unsigned cached_cq_tail;
255 unsigned cq_entries;
256 unsigned cq_mask;
257 atomic_t cq_timeouts;
258 struct wait_queue_head cq_wait;
259 struct fasync_struct *cq_fasync;
260 struct eventfd_ctx *cq_ev_fd;
261 } ____cacheline_aligned_in_smp;
2b188cc1
JA
262
263 struct {
264 struct mutex uring_lock;
265 wait_queue_head_t wait;
266 } ____cacheline_aligned_in_smp;
267
268 struct {
269 spinlock_t completion_lock;
def596e9
JA
270 bool poll_multi_file;
271 /*
272 * ->poll_list is protected by the ctx->uring_lock for
273 * io_uring instances that don't use IORING_SETUP_SQPOLL.
274 * For SQPOLL, only the single threaded io_sq_thread() will
275 * manipulate the list, hence no extra locking is needed there.
276 */
277 struct list_head poll_list;
78076bb6
JA
278 struct hlist_head *cancel_hash;
279 unsigned cancel_hash_bits;
31b51510 280
fcb323cc
JA
281 spinlock_t inflight_lock;
282 struct list_head inflight_list;
2b188cc1 283 } ____cacheline_aligned_in_smp;
2b188cc1
JA
284};
285
09bb8394
JA
286/*
287 * First field must be the file pointer in all the
288 * iocb unions! See also 'struct kiocb' in <linux/fs.h>
289 */
221c5eb2
JA
290struct io_poll_iocb {
291 struct file *file;
292 struct wait_queue_head *head;
293 __poll_t events;
8c838788 294 bool done;
221c5eb2 295 bool canceled;
e944475e 296 struct wait_queue_entry *wait;
221c5eb2
JA
297};
298
ad8a48ac
JA
299struct io_timeout_data {
300 struct io_kiocb *req;
301 struct hrtimer timer;
302 struct timespec64 ts;
303 enum hrtimer_mode mode;
cc42e0ac 304 u32 seq_offset;
ad8a48ac
JA
305};
306
f499a021
JA
307struct io_async_connect {
308 struct sockaddr_storage address;
309};
310
03b1230c
JA
311struct io_async_msghdr {
312 struct iovec fast_iov[UIO_FASTIOV];
313 struct iovec *iov;
314 struct sockaddr __user *uaddr;
315 struct msghdr msg;
316};
317
f67676d1
JA
318struct io_async_rw {
319 struct iovec fast_iov[UIO_FASTIOV];
320 struct iovec *iov;
321 ssize_t nr_segs;
322 ssize_t size;
323};
324
1a6b74fc
JA
325struct io_async_ctx {
326 struct io_uring_sqe sqe;
f67676d1
JA
327 union {
328 struct io_async_rw rw;
03b1230c 329 struct io_async_msghdr msg;
f499a021 330 struct io_async_connect connect;
2d28390a 331 struct io_timeout_data timeout;
f67676d1 332 };
1a6b74fc
JA
333};
334
09bb8394
JA
335/*
336 * NOTE! Each of the iocb union members has the file pointer
337 * as the first entry in their struct definition. So you can
338 * access the file pointer through any of the sub-structs,
339 * or directly as just 'ki_filp' in this struct.
340 */
2b188cc1 341struct io_kiocb {
221c5eb2 342 union {
09bb8394 343 struct file *file;
221c5eb2
JA
344 struct kiocb rw;
345 struct io_poll_iocb poll;
346 };
2b188cc1 347
cf6fd4bd 348 const struct io_uring_sqe *sqe;
1a6b74fc 349 struct io_async_ctx *io;
cf6fd4bd
PB
350 struct file *ring_file;
351 int ring_fd;
352 bool has_user;
353 bool in_async;
354 bool needs_fixed_file;
2b188cc1
JA
355
356 struct io_ring_ctx *ctx;
eac406c6
JA
357 union {
358 struct list_head list;
78076bb6 359 struct hlist_node hash_node;
eac406c6 360 };
9e645e11 361 struct list_head link_list;
2b188cc1 362 unsigned int flags;
c16361c1 363 refcount_t refs;
8449eeda 364#define REQ_F_NOWAIT 1 /* must not punt to workers */
def596e9 365#define REQ_F_IOPOLL_COMPLETED 2 /* polled IO has completed */
6b06314c 366#define REQ_F_FIXED_FILE 4 /* ctx owns file */
4d7dd462 367#define REQ_F_LINK_NEXT 8 /* already grabbed next link */
e2033e33
SB
368#define REQ_F_IO_DRAIN 16 /* drain existing IO first */
369#define REQ_F_IO_DRAINED 32 /* drain done */
9e645e11 370#define REQ_F_LINK 64 /* linked sqes */
2665abfd 371#define REQ_F_LINK_TIMEOUT 128 /* has linked timeout */
f7b76ac9 372#define REQ_F_FAIL_LINK 256 /* fail rest of links */
1b4a51b6 373#define REQ_F_DRAIN_LINK 512 /* link should be fully drained */
5262f567 374#define REQ_F_TIMEOUT 1024 /* timeout request */
491381ce
JA
375#define REQ_F_ISREG 2048 /* regular file */
376#define REQ_F_MUST_PUNT 4096 /* must be punted even for NONBLOCK */
93bd25bb 377#define REQ_F_TIMEOUT_NOSEQ 8192 /* no timeout sequence */
fb4b3d3f
LT
378#define REQ_F_INFLIGHT 16384 /* on inflight list */
379#define REQ_F_COMP_LOCKED 32768 /* completion under lock */
4e88d6e7 380#define REQ_F_HARDLINK 65536 /* doesn't sever on completion < 0 */
2b188cc1 381 u64 user_data;
9e645e11 382 u32 result;
de0617e4 383 u32 sequence;
2b188cc1 384
fcb323cc
JA
385 struct list_head inflight_entry;
386
561fb04a 387 struct io_wq_work work;
2b188cc1
JA
388};
389
390#define IO_PLUG_THRESHOLD 2
def596e9 391#define IO_IOPOLL_BATCH 8
2b188cc1 392
9a56a232
JA
393struct io_submit_state {
394 struct blk_plug plug;
395
2579f913
JA
396 /*
397 * io_kiocb alloc cache
398 */
399 void *reqs[IO_IOPOLL_BATCH];
400 unsigned int free_reqs;
401 unsigned int cur_req;
402
9a56a232
JA
403 /*
404 * File reference cache
405 */
406 struct file *file;
407 unsigned int fd;
408 unsigned int has_refs;
409 unsigned int used_refs;
410 unsigned int ios_left;
411};
412
561fb04a 413static void io_wq_submit_work(struct io_wq_work **workptr);
78e19bbe 414static void io_cqring_fill_event(struct io_kiocb *req, long res);
4fe2c963 415static void __io_free_req(struct io_kiocb *req);
ec9c02ad 416static void io_put_req(struct io_kiocb *req);
78e19bbe 417static void io_double_put_req(struct io_kiocb *req);
978db57e 418static void __io_double_put_req(struct io_kiocb *req);
94ae5e77
JA
419static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req);
420static void io_queue_linked_timeout(struct io_kiocb *req);
de0617e4 421
2b188cc1
JA
422static struct kmem_cache *req_cachep;
423
424static const struct file_operations io_uring_fops;
425
426struct sock *io_uring_get_socket(struct file *file)
427{
428#if defined(CONFIG_UNIX)
429 if (file->f_op == &io_uring_fops) {
430 struct io_ring_ctx *ctx = file->private_data;
431
432 return ctx->ring_sock->sk;
433 }
434#endif
435 return NULL;
436}
437EXPORT_SYMBOL(io_uring_get_socket);
438
439static void io_ring_ctx_ref_free(struct percpu_ref *ref)
440{
441 struct io_ring_ctx *ctx = container_of(ref, struct io_ring_ctx, refs);
442
206aefde 443 complete(&ctx->completions[0]);
2b188cc1
JA
444}
445
446static struct io_ring_ctx *io_ring_ctx_alloc(struct io_uring_params *p)
447{
448 struct io_ring_ctx *ctx;
78076bb6 449 int hash_bits;
2b188cc1
JA
450
451 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
452 if (!ctx)
453 return NULL;
454
0ddf92e8
JA
455 ctx->fallback_req = kmem_cache_alloc(req_cachep, GFP_KERNEL);
456 if (!ctx->fallback_req)
457 goto err;
458
206aefde
JA
459 ctx->completions = kmalloc(2 * sizeof(struct completion), GFP_KERNEL);
460 if (!ctx->completions)
461 goto err;
462
78076bb6
JA
463 /*
464 * Use 5 bits less than the max cq entries, that should give us around
465 * 32 entries per hash list if totally full and uniformly spread.
466 */
467 hash_bits = ilog2(p->cq_entries);
468 hash_bits -= 5;
469 if (hash_bits <= 0)
470 hash_bits = 1;
471 ctx->cancel_hash_bits = hash_bits;
472 ctx->cancel_hash = kmalloc((1U << hash_bits) * sizeof(struct hlist_head),
473 GFP_KERNEL);
474 if (!ctx->cancel_hash)
475 goto err;
476 __hash_init(ctx->cancel_hash, 1U << hash_bits);
477
21482896 478 if (percpu_ref_init(&ctx->refs, io_ring_ctx_ref_free,
206aefde
JA
479 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL))
480 goto err;
2b188cc1
JA
481
482 ctx->flags = p->flags;
483 init_waitqueue_head(&ctx->cq_wait);
1d7bb1d5 484 INIT_LIST_HEAD(&ctx->cq_overflow_list);
206aefde
JA
485 init_completion(&ctx->completions[0]);
486 init_completion(&ctx->completions[1]);
2b188cc1
JA
487 mutex_init(&ctx->uring_lock);
488 init_waitqueue_head(&ctx->wait);
489 spin_lock_init(&ctx->completion_lock);
def596e9 490 INIT_LIST_HEAD(&ctx->poll_list);
de0617e4 491 INIT_LIST_HEAD(&ctx->defer_list);
5262f567 492 INIT_LIST_HEAD(&ctx->timeout_list);
fcb323cc
JA
493 init_waitqueue_head(&ctx->inflight_wait);
494 spin_lock_init(&ctx->inflight_lock);
495 INIT_LIST_HEAD(&ctx->inflight_list);
2b188cc1 496 return ctx;
206aefde 497err:
0ddf92e8
JA
498 if (ctx->fallback_req)
499 kmem_cache_free(req_cachep, ctx->fallback_req);
206aefde 500 kfree(ctx->completions);
78076bb6 501 kfree(ctx->cancel_hash);
206aefde
JA
502 kfree(ctx);
503 return NULL;
2b188cc1
JA
504}
505
9d858b21 506static inline bool __req_need_defer(struct io_kiocb *req)
7adf4eaf 507{
a197f664
JL
508 struct io_ring_ctx *ctx = req->ctx;
509
498ccd9e
JA
510 return req->sequence != ctx->cached_cq_tail + ctx->cached_sq_dropped
511 + atomic_read(&ctx->cached_cq_overflow);
7adf4eaf
JA
512}
513
9d858b21 514static inline bool req_need_defer(struct io_kiocb *req)
de0617e4 515{
9d858b21
BL
516 if ((req->flags & (REQ_F_IO_DRAIN|REQ_F_IO_DRAINED)) == REQ_F_IO_DRAIN)
517 return __req_need_defer(req);
de0617e4 518
9d858b21 519 return false;
de0617e4
JA
520}
521
7adf4eaf 522static struct io_kiocb *io_get_deferred_req(struct io_ring_ctx *ctx)
de0617e4
JA
523{
524 struct io_kiocb *req;
525
7adf4eaf 526 req = list_first_entry_or_null(&ctx->defer_list, struct io_kiocb, list);
9d858b21 527 if (req && !req_need_defer(req)) {
de0617e4
JA
528 list_del_init(&req->list);
529 return req;
530 }
531
532 return NULL;
533}
534
5262f567
JA
535static struct io_kiocb *io_get_timeout_req(struct io_ring_ctx *ctx)
536{
7adf4eaf
JA
537 struct io_kiocb *req;
538
539 req = list_first_entry_or_null(&ctx->timeout_list, struct io_kiocb, list);
93bd25bb
JA
540 if (req) {
541 if (req->flags & REQ_F_TIMEOUT_NOSEQ)
542 return NULL;
fb4b3d3f 543 if (!__req_need_defer(req)) {
93bd25bb
JA
544 list_del_init(&req->list);
545 return req;
546 }
7adf4eaf
JA
547 }
548
549 return NULL;
5262f567
JA
550}
551
de0617e4 552static void __io_commit_cqring(struct io_ring_ctx *ctx)
2b188cc1 553{
75b28aff 554 struct io_rings *rings = ctx->rings;
2b188cc1 555
75b28aff 556 if (ctx->cached_cq_tail != READ_ONCE(rings->cq.tail)) {
2b188cc1 557 /* order cqe stores with ring update */
75b28aff 558 smp_store_release(&rings->cq.tail, ctx->cached_cq_tail);
2b188cc1 559
2b188cc1
JA
560 if (wq_has_sleeper(&ctx->cq_wait)) {
561 wake_up_interruptible(&ctx->cq_wait);
562 kill_fasync(&ctx->cq_fasync, SIGIO, POLL_IN);
563 }
564 }
565}
566
561fb04a 567static inline bool io_sqe_needs_user(const struct io_uring_sqe *sqe)
18d9be1a 568{
561fb04a
JA
569 u8 opcode = READ_ONCE(sqe->opcode);
570
571 return !(opcode == IORING_OP_READ_FIXED ||
572 opcode == IORING_OP_WRITE_FIXED);
573}
574
94ae5e77
JA
575static inline bool io_prep_async_work(struct io_kiocb *req,
576 struct io_kiocb **link)
18d9be1a 577{
561fb04a 578 bool do_hashed = false;
54a91f3b 579
cf6fd4bd
PB
580 if (req->sqe) {
581 switch (req->sqe->opcode) {
6cc47d1d
JA
582 case IORING_OP_WRITEV:
583 case IORING_OP_WRITE_FIXED:
561fb04a 584 do_hashed = true;
5f8fd2d3
JA
585 /* fall-through */
586 case IORING_OP_READV:
587 case IORING_OP_READ_FIXED:
588 case IORING_OP_SENDMSG:
589 case IORING_OP_RECVMSG:
590 case IORING_OP_ACCEPT:
591 case IORING_OP_POLL_ADD:
f8e85cf2 592 case IORING_OP_CONNECT:
5f8fd2d3
JA
593 /*
594 * We know REQ_F_ISREG is not set on some of these
595 * opcodes, but this enables us to keep the check in
596 * just one place.
597 */
598 if (!(req->flags & REQ_F_ISREG))
599 req->work.flags |= IO_WQ_WORK_UNBOUND;
6cc47d1d
JA
600 break;
601 }
cf6fd4bd 602 if (io_sqe_needs_user(req->sqe))
561fb04a 603 req->work.flags |= IO_WQ_WORK_NEEDS_USER;
54a91f3b
JA
604 }
605
94ae5e77 606 *link = io_prep_linked_timeout(req);
561fb04a
JA
607 return do_hashed;
608}
609
a197f664 610static inline void io_queue_async_work(struct io_kiocb *req)
561fb04a 611{
a197f664 612 struct io_ring_ctx *ctx = req->ctx;
94ae5e77
JA
613 struct io_kiocb *link;
614 bool do_hashed;
615
616 do_hashed = io_prep_async_work(req, &link);
561fb04a
JA
617
618 trace_io_uring_queue_async_work(ctx, do_hashed, req, &req->work,
619 req->flags);
620 if (!do_hashed) {
621 io_wq_enqueue(ctx->io_wq, &req->work);
622 } else {
623 io_wq_enqueue_hashed(ctx->io_wq, &req->work,
624 file_inode(req->file));
625 }
94ae5e77
JA
626
627 if (link)
628 io_queue_linked_timeout(link);
18d9be1a
JA
629}
630
5262f567
JA
631static void io_kill_timeout(struct io_kiocb *req)
632{
633 int ret;
634
2d28390a 635 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
5262f567
JA
636 if (ret != -1) {
637 atomic_inc(&req->ctx->cq_timeouts);
842f9612 638 list_del_init(&req->list);
78e19bbe 639 io_cqring_fill_event(req, 0);
ec9c02ad 640 io_put_req(req);
5262f567
JA
641 }
642}
643
644static void io_kill_timeouts(struct io_ring_ctx *ctx)
645{
646 struct io_kiocb *req, *tmp;
647
648 spin_lock_irq(&ctx->completion_lock);
649 list_for_each_entry_safe(req, tmp, &ctx->timeout_list, list)
650 io_kill_timeout(req);
651 spin_unlock_irq(&ctx->completion_lock);
652}
653
de0617e4
JA
654static void io_commit_cqring(struct io_ring_ctx *ctx)
655{
656 struct io_kiocb *req;
657
5262f567
JA
658 while ((req = io_get_timeout_req(ctx)) != NULL)
659 io_kill_timeout(req);
660
de0617e4
JA
661 __io_commit_cqring(ctx);
662
663 while ((req = io_get_deferred_req(ctx)) != NULL) {
664 req->flags |= REQ_F_IO_DRAINED;
a197f664 665 io_queue_async_work(req);
de0617e4
JA
666 }
667}
668
2b188cc1
JA
669static struct io_uring_cqe *io_get_cqring(struct io_ring_ctx *ctx)
670{
75b28aff 671 struct io_rings *rings = ctx->rings;
2b188cc1
JA
672 unsigned tail;
673
674 tail = ctx->cached_cq_tail;
115e12e5
SB
675 /*
676 * writes to the cq entry need to come after reading head; the
677 * control dependency is enough as we're using WRITE_ONCE to
678 * fill the cq entry
679 */
75b28aff 680 if (tail - READ_ONCE(rings->cq.head) == rings->cq_ring_entries)
2b188cc1
JA
681 return NULL;
682
683 ctx->cached_cq_tail++;
75b28aff 684 return &rings->cqes[tail & ctx->cq_mask];
2b188cc1
JA
685}
686
1d7bb1d5
JA
687static void io_cqring_ev_posted(struct io_ring_ctx *ctx)
688{
689 if (waitqueue_active(&ctx->wait))
690 wake_up(&ctx->wait);
691 if (waitqueue_active(&ctx->sqo_wait))
692 wake_up(&ctx->sqo_wait);
693 if (ctx->cq_ev_fd)
694 eventfd_signal(ctx->cq_ev_fd, 1);
695}
696
c4a2ed72
JA
697/* Returns true if there are no backlogged entries after the flush */
698static bool io_cqring_overflow_flush(struct io_ring_ctx *ctx, bool force)
1d7bb1d5
JA
699{
700 struct io_rings *rings = ctx->rings;
701 struct io_uring_cqe *cqe;
702 struct io_kiocb *req;
703 unsigned long flags;
704 LIST_HEAD(list);
705
706 if (!force) {
707 if (list_empty_careful(&ctx->cq_overflow_list))
c4a2ed72 708 return true;
1d7bb1d5
JA
709 if ((ctx->cached_cq_tail - READ_ONCE(rings->cq.head) ==
710 rings->cq_ring_entries))
c4a2ed72 711 return false;
1d7bb1d5
JA
712 }
713
714 spin_lock_irqsave(&ctx->completion_lock, flags);
715
716 /* if force is set, the ring is going away. always drop after that */
717 if (force)
718 ctx->cq_overflow_flushed = true;
719
c4a2ed72 720 cqe = NULL;
1d7bb1d5
JA
721 while (!list_empty(&ctx->cq_overflow_list)) {
722 cqe = io_get_cqring(ctx);
723 if (!cqe && !force)
724 break;
725
726 req = list_first_entry(&ctx->cq_overflow_list, struct io_kiocb,
727 list);
728 list_move(&req->list, &list);
729 if (cqe) {
730 WRITE_ONCE(cqe->user_data, req->user_data);
731 WRITE_ONCE(cqe->res, req->result);
732 WRITE_ONCE(cqe->flags, 0);
733 } else {
734 WRITE_ONCE(ctx->rings->cq_overflow,
735 atomic_inc_return(&ctx->cached_cq_overflow));
736 }
737 }
738
739 io_commit_cqring(ctx);
740 spin_unlock_irqrestore(&ctx->completion_lock, flags);
741 io_cqring_ev_posted(ctx);
742
743 while (!list_empty(&list)) {
744 req = list_first_entry(&list, struct io_kiocb, list);
745 list_del(&req->list);
ec9c02ad 746 io_put_req(req);
1d7bb1d5 747 }
c4a2ed72
JA
748
749 return cqe != NULL;
1d7bb1d5
JA
750}
751
78e19bbe 752static void io_cqring_fill_event(struct io_kiocb *req, long res)
2b188cc1 753{
78e19bbe 754 struct io_ring_ctx *ctx = req->ctx;
2b188cc1
JA
755 struct io_uring_cqe *cqe;
756
78e19bbe 757 trace_io_uring_complete(ctx, req->user_data, res);
51c3ff62 758
2b188cc1
JA
759 /*
760 * If we can't get a cq entry, userspace overflowed the
761 * submission (by quite a lot). Increment the overflow count in
762 * the ring.
763 */
764 cqe = io_get_cqring(ctx);
1d7bb1d5 765 if (likely(cqe)) {
78e19bbe 766 WRITE_ONCE(cqe->user_data, req->user_data);
2b188cc1 767 WRITE_ONCE(cqe->res, res);
c71ffb67 768 WRITE_ONCE(cqe->flags, 0);
1d7bb1d5 769 } else if (ctx->cq_overflow_flushed) {
498ccd9e
JA
770 WRITE_ONCE(ctx->rings->cq_overflow,
771 atomic_inc_return(&ctx->cached_cq_overflow));
1d7bb1d5
JA
772 } else {
773 refcount_inc(&req->refs);
774 req->result = res;
775 list_add_tail(&req->list, &ctx->cq_overflow_list);
2b188cc1
JA
776 }
777}
778
78e19bbe 779static void io_cqring_add_event(struct io_kiocb *req, long res)
2b188cc1 780{
78e19bbe 781 struct io_ring_ctx *ctx = req->ctx;
2b188cc1
JA
782 unsigned long flags;
783
784 spin_lock_irqsave(&ctx->completion_lock, flags);
78e19bbe 785 io_cqring_fill_event(req, res);
2b188cc1
JA
786 io_commit_cqring(ctx);
787 spin_unlock_irqrestore(&ctx->completion_lock, flags);
788
8c838788 789 io_cqring_ev_posted(ctx);
2b188cc1
JA
790}
791
0ddf92e8
JA
792static inline bool io_is_fallback_req(struct io_kiocb *req)
793{
794 return req == (struct io_kiocb *)
795 ((unsigned long) req->ctx->fallback_req & ~1UL);
796}
797
798static struct io_kiocb *io_get_fallback_req(struct io_ring_ctx *ctx)
799{
800 struct io_kiocb *req;
801
802 req = ctx->fallback_req;
803 if (!test_and_set_bit_lock(0, (unsigned long *) ctx->fallback_req))
804 return req;
805
806 return NULL;
807}
808
2579f913
JA
809static struct io_kiocb *io_get_req(struct io_ring_ctx *ctx,
810 struct io_submit_state *state)
2b188cc1 811{
fd6fab2c 812 gfp_t gfp = GFP_KERNEL | __GFP_NOWARN;
2b188cc1
JA
813 struct io_kiocb *req;
814
815 if (!percpu_ref_tryget(&ctx->refs))
816 return NULL;
817
2579f913 818 if (!state) {
fd6fab2c 819 req = kmem_cache_alloc(req_cachep, gfp);
2579f913 820 if (unlikely(!req))
0ddf92e8 821 goto fallback;
2579f913
JA
822 } else if (!state->free_reqs) {
823 size_t sz;
824 int ret;
825
826 sz = min_t(size_t, state->ios_left, ARRAY_SIZE(state->reqs));
fd6fab2c
JA
827 ret = kmem_cache_alloc_bulk(req_cachep, gfp, sz, state->reqs);
828
829 /*
830 * Bulk alloc is all-or-nothing. If we fail to get a batch,
831 * retry single alloc to be on the safe side.
832 */
833 if (unlikely(ret <= 0)) {
834 state->reqs[0] = kmem_cache_alloc(req_cachep, gfp);
835 if (!state->reqs[0])
0ddf92e8 836 goto fallback;
fd6fab2c
JA
837 ret = 1;
838 }
2579f913
JA
839 state->free_reqs = ret - 1;
840 state->cur_req = 1;
841 req = state->reqs[0];
842 } else {
843 req = state->reqs[state->cur_req];
844 state->free_reqs--;
845 state->cur_req++;
2b188cc1
JA
846 }
847
0ddf92e8 848got_it:
1a6b74fc 849 req->io = NULL;
cf6fd4bd 850 req->ring_file = NULL;
60c112b0 851 req->file = NULL;
2579f913
JA
852 req->ctx = ctx;
853 req->flags = 0;
e65ef56d
JA
854 /* one is dropped after submission, the other at completion */
855 refcount_set(&req->refs, 2);
9e645e11 856 req->result = 0;
561fb04a 857 INIT_IO_WORK(&req->work, io_wq_submit_work);
2579f913 858 return req;
0ddf92e8
JA
859fallback:
860 req = io_get_fallback_req(ctx);
861 if (req)
862 goto got_it;
6805b32e 863 percpu_ref_put(&ctx->refs);
2b188cc1
JA
864 return NULL;
865}
866
def596e9
JA
867static void io_free_req_many(struct io_ring_ctx *ctx, void **reqs, int *nr)
868{
869 if (*nr) {
870 kmem_cache_free_bulk(req_cachep, *nr, reqs);
6805b32e 871 percpu_ref_put_many(&ctx->refs, *nr);
def596e9
JA
872 *nr = 0;
873 }
874}
875
9e645e11 876static void __io_free_req(struct io_kiocb *req)
2b188cc1 877{
fcb323cc
JA
878 struct io_ring_ctx *ctx = req->ctx;
879
1a6b74fc
JA
880 if (req->io)
881 kfree(req->io);
09bb8394
JA
882 if (req->file && !(req->flags & REQ_F_FIXED_FILE))
883 fput(req->file);
fcb323cc
JA
884 if (req->flags & REQ_F_INFLIGHT) {
885 unsigned long flags;
886
887 spin_lock_irqsave(&ctx->inflight_lock, flags);
888 list_del(&req->inflight_entry);
889 if (waitqueue_active(&ctx->inflight_wait))
890 wake_up(&ctx->inflight_wait);
891 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
892 }
893 percpu_ref_put(&ctx->refs);
0ddf92e8
JA
894 if (likely(!io_is_fallback_req(req)))
895 kmem_cache_free(req_cachep, req);
896 else
897 clear_bit_unlock(0, (unsigned long *) ctx->fallback_req);
e65ef56d
JA
898}
899
a197f664 900static bool io_link_cancel_timeout(struct io_kiocb *req)
2665abfd 901{
a197f664 902 struct io_ring_ctx *ctx = req->ctx;
2665abfd
JA
903 int ret;
904
2d28390a 905 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
2665abfd 906 if (ret != -1) {
78e19bbe 907 io_cqring_fill_event(req, -ECANCELED);
2665abfd
JA
908 io_commit_cqring(ctx);
909 req->flags &= ~REQ_F_LINK;
ec9c02ad 910 io_put_req(req);
2665abfd
JA
911 return true;
912 }
913
914 return false;
e65ef56d
JA
915}
916
ba816ad6 917static void io_req_link_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
9e645e11 918{
2665abfd 919 struct io_ring_ctx *ctx = req->ctx;
2665abfd 920 bool wake_ev = false;
9e645e11 921
4d7dd462
JA
922 /* Already got next link */
923 if (req->flags & REQ_F_LINK_NEXT)
924 return;
925
9e645e11
JA
926 /*
927 * The list should never be empty when we are called here. But could
928 * potentially happen if the chain is messed up, check to be on the
929 * safe side.
930 */
4493233e
PB
931 while (!list_empty(&req->link_list)) {
932 struct io_kiocb *nxt = list_first_entry(&req->link_list,
933 struct io_kiocb, link_list);
94ae5e77 934
4493233e
PB
935 if (unlikely((req->flags & REQ_F_LINK_TIMEOUT) &&
936 (nxt->flags & REQ_F_TIMEOUT))) {
937 list_del_init(&nxt->link_list);
94ae5e77 938 wake_ev |= io_link_cancel_timeout(nxt);
94ae5e77
JA
939 req->flags &= ~REQ_F_LINK_TIMEOUT;
940 continue;
941 }
9e645e11 942
4493233e
PB
943 list_del_init(&req->link_list);
944 if (!list_empty(&nxt->link_list))
945 nxt->flags |= REQ_F_LINK;
b18fdf71 946 *nxtptr = nxt;
94ae5e77 947 break;
9e645e11 948 }
2665abfd 949
4d7dd462 950 req->flags |= REQ_F_LINK_NEXT;
2665abfd
JA
951 if (wake_ev)
952 io_cqring_ev_posted(ctx);
9e645e11
JA
953}
954
955/*
956 * Called if REQ_F_LINK is set, and we fail the head request
957 */
958static void io_fail_links(struct io_kiocb *req)
959{
2665abfd 960 struct io_ring_ctx *ctx = req->ctx;
2665abfd
JA
961 unsigned long flags;
962
963 spin_lock_irqsave(&ctx->completion_lock, flags);
9e645e11
JA
964
965 while (!list_empty(&req->link_list)) {
4493233e
PB
966 struct io_kiocb *link = list_first_entry(&req->link_list,
967 struct io_kiocb, link_list);
9e645e11 968
4493233e 969 list_del_init(&link->link_list);
c826bd7a 970 trace_io_uring_fail_link(req, link);
2665abfd
JA
971
972 if ((req->flags & REQ_F_LINK_TIMEOUT) &&
cf6fd4bd 973 link->sqe->opcode == IORING_OP_LINK_TIMEOUT) {
a197f664 974 io_link_cancel_timeout(link);
2665abfd 975 } else {
78e19bbe 976 io_cqring_fill_event(link, -ECANCELED);
978db57e 977 __io_double_put_req(link);
2665abfd 978 }
5d960724 979 req->flags &= ~REQ_F_LINK_TIMEOUT;
9e645e11 980 }
2665abfd
JA
981
982 io_commit_cqring(ctx);
983 spin_unlock_irqrestore(&ctx->completion_lock, flags);
984 io_cqring_ev_posted(ctx);
9e645e11
JA
985}
986
4d7dd462 987static void io_req_find_next(struct io_kiocb *req, struct io_kiocb **nxt)
9e645e11 988{
4d7dd462 989 if (likely(!(req->flags & REQ_F_LINK)))
2665abfd 990 return;
2665abfd 991
9e645e11
JA
992 /*
993 * If LINK is set, we have dependent requests in this chain. If we
994 * didn't fail this request, queue the first one up, moving any other
995 * dependencies to the next request. In case of failure, fail the rest
996 * of the chain.
997 */
2665abfd
JA
998 if (req->flags & REQ_F_FAIL_LINK) {
999 io_fail_links(req);
7c9e7f0f
JA
1000 } else if ((req->flags & (REQ_F_LINK_TIMEOUT | REQ_F_COMP_LOCKED)) ==
1001 REQ_F_LINK_TIMEOUT) {
2665abfd
JA
1002 struct io_ring_ctx *ctx = req->ctx;
1003 unsigned long flags;
1004
1005 /*
1006 * If this is a timeout link, we could be racing with the
1007 * timeout timer. Grab the completion lock for this case to
7c9e7f0f 1008 * protect against that.
2665abfd
JA
1009 */
1010 spin_lock_irqsave(&ctx->completion_lock, flags);
1011 io_req_link_next(req, nxt);
1012 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1013 } else {
1014 io_req_link_next(req, nxt);
9e645e11 1015 }
4d7dd462 1016}
9e645e11 1017
c69f8dbe
JL
1018static void io_free_req(struct io_kiocb *req)
1019{
944e58bf
PB
1020 struct io_kiocb *nxt = NULL;
1021
1022 io_req_find_next(req, &nxt);
70cf9f32 1023 __io_free_req(req);
944e58bf
PB
1024
1025 if (nxt)
1026 io_queue_async_work(nxt);
c69f8dbe
JL
1027}
1028
ba816ad6
JA
1029/*
1030 * Drop reference to request, return next in chain (if there is one) if this
1031 * was the last reference to this request.
1032 */
f9bd67f6 1033__attribute__((nonnull))
ec9c02ad 1034static void io_put_req_find_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
e65ef56d 1035{
f9bd67f6 1036 io_req_find_next(req, nxtptr);
4d7dd462 1037
e65ef56d 1038 if (refcount_dec_and_test(&req->refs))
4d7dd462 1039 __io_free_req(req);
2b188cc1
JA
1040}
1041
e65ef56d
JA
1042static void io_put_req(struct io_kiocb *req)
1043{
1044 if (refcount_dec_and_test(&req->refs))
1045 io_free_req(req);
2b188cc1
JA
1046}
1047
978db57e
JA
1048/*
1049 * Must only be used if we don't need to care about links, usually from
1050 * within the completion handling itself.
1051 */
1052static void __io_double_put_req(struct io_kiocb *req)
78e19bbe
JA
1053{
1054 /* drop both submit and complete references */
1055 if (refcount_sub_and_test(2, &req->refs))
1056 __io_free_req(req);
1057}
1058
978db57e
JA
1059static void io_double_put_req(struct io_kiocb *req)
1060{
1061 /* drop both submit and complete references */
1062 if (refcount_sub_and_test(2, &req->refs))
1063 io_free_req(req);
1064}
1065
1d7bb1d5 1066static unsigned io_cqring_events(struct io_ring_ctx *ctx, bool noflush)
a3a0e43f 1067{
84f97dc2
JA
1068 struct io_rings *rings = ctx->rings;
1069
1d7bb1d5
JA
1070 /*
1071 * noflush == true is from the waitqueue handler, just ensure we wake
1072 * up the task, and the next invocation will flush the entries. We
1073 * cannot safely to it from here.
1074 */
1075 if (noflush && !list_empty(&ctx->cq_overflow_list))
1076 return -1U;
1077
1078 io_cqring_overflow_flush(ctx, false);
1079
a3a0e43f
JA
1080 /* See comment at the top of this file */
1081 smp_rmb();
75b28aff 1082 return READ_ONCE(rings->cq.tail) - READ_ONCE(rings->cq.head);
a3a0e43f
JA
1083}
1084
fb5ccc98
PB
1085static inline unsigned int io_sqring_entries(struct io_ring_ctx *ctx)
1086{
1087 struct io_rings *rings = ctx->rings;
1088
1089 /* make sure SQ entry isn't read before tail */
1090 return smp_load_acquire(&rings->sq.tail) - ctx->cached_sq_head;
1091}
1092
def596e9
JA
1093/*
1094 * Find and free completed poll iocbs
1095 */
1096static void io_iopoll_complete(struct io_ring_ctx *ctx, unsigned int *nr_events,
1097 struct list_head *done)
1098{
1099 void *reqs[IO_IOPOLL_BATCH];
1100 struct io_kiocb *req;
09bb8394 1101 int to_free;
def596e9 1102
09bb8394 1103 to_free = 0;
def596e9
JA
1104 while (!list_empty(done)) {
1105 req = list_first_entry(done, struct io_kiocb, list);
1106 list_del(&req->list);
1107
78e19bbe 1108 io_cqring_fill_event(req, req->result);
def596e9
JA
1109 (*nr_events)++;
1110
09bb8394
JA
1111 if (refcount_dec_and_test(&req->refs)) {
1112 /* If we're not using fixed files, we have to pair the
1113 * completion part with the file put. Use regular
1114 * completions for those, only batch free for fixed
9e645e11 1115 * file and non-linked commands.
09bb8394 1116 */
1a6b74fc
JA
1117 if (((req->flags & (REQ_F_FIXED_FILE|REQ_F_LINK)) ==
1118 REQ_F_FIXED_FILE) && !io_is_fallback_req(req) &&
1119 !req->io) {
09bb8394
JA
1120 reqs[to_free++] = req;
1121 if (to_free == ARRAY_SIZE(reqs))
1122 io_free_req_many(ctx, reqs, &to_free);
6b06314c 1123 } else {
09bb8394 1124 io_free_req(req);
6b06314c 1125 }
9a56a232 1126 }
def596e9 1127 }
def596e9 1128
09bb8394 1129 io_commit_cqring(ctx);
def596e9
JA
1130 io_free_req_many(ctx, reqs, &to_free);
1131}
1132
1133static int io_do_iopoll(struct io_ring_ctx *ctx, unsigned int *nr_events,
1134 long min)
1135{
1136 struct io_kiocb *req, *tmp;
1137 LIST_HEAD(done);
1138 bool spin;
1139 int ret;
1140
1141 /*
1142 * Only spin for completions if we don't have multiple devices hanging
1143 * off our complete list, and we're under the requested amount.
1144 */
1145 spin = !ctx->poll_multi_file && *nr_events < min;
1146
1147 ret = 0;
1148 list_for_each_entry_safe(req, tmp, &ctx->poll_list, list) {
1149 struct kiocb *kiocb = &req->rw;
1150
1151 /*
1152 * Move completed entries to our local list. If we find a
1153 * request that requires polling, break out and complete
1154 * the done list first, if we have entries there.
1155 */
1156 if (req->flags & REQ_F_IOPOLL_COMPLETED) {
1157 list_move_tail(&req->list, &done);
1158 continue;
1159 }
1160 if (!list_empty(&done))
1161 break;
1162
1163 ret = kiocb->ki_filp->f_op->iopoll(kiocb, spin);
1164 if (ret < 0)
1165 break;
1166
1167 if (ret && spin)
1168 spin = false;
1169 ret = 0;
1170 }
1171
1172 if (!list_empty(&done))
1173 io_iopoll_complete(ctx, nr_events, &done);
1174
1175 return ret;
1176}
1177
1178/*
1179 * Poll for a mininum of 'min' events. Note that if min == 0 we consider that a
1180 * non-spinning poll check - we'll still enter the driver poll loop, but only
1181 * as a non-spinning completion check.
1182 */
1183static int io_iopoll_getevents(struct io_ring_ctx *ctx, unsigned int *nr_events,
1184 long min)
1185{
08f5439f 1186 while (!list_empty(&ctx->poll_list) && !need_resched()) {
def596e9
JA
1187 int ret;
1188
1189 ret = io_do_iopoll(ctx, nr_events, min);
1190 if (ret < 0)
1191 return ret;
1192 if (!min || *nr_events >= min)
1193 return 0;
1194 }
1195
1196 return 1;
1197}
1198
1199/*
1200 * We can't just wait for polled events to come to us, we have to actively
1201 * find and complete them.
1202 */
1203static void io_iopoll_reap_events(struct io_ring_ctx *ctx)
1204{
1205 if (!(ctx->flags & IORING_SETUP_IOPOLL))
1206 return;
1207
1208 mutex_lock(&ctx->uring_lock);
1209 while (!list_empty(&ctx->poll_list)) {
1210 unsigned int nr_events = 0;
1211
1212 io_iopoll_getevents(ctx, &nr_events, 1);
08f5439f
JA
1213
1214 /*
1215 * Ensure we allow local-to-the-cpu processing to take place,
1216 * in this case we need to ensure that we reap all events.
1217 */
1218 cond_resched();
def596e9
JA
1219 }
1220 mutex_unlock(&ctx->uring_lock);
1221}
1222
2b2ed975
JA
1223static int __io_iopoll_check(struct io_ring_ctx *ctx, unsigned *nr_events,
1224 long min)
def596e9 1225{
2b2ed975 1226 int iters = 0, ret = 0;
500f9fba 1227
def596e9
JA
1228 do {
1229 int tmin = 0;
1230
a3a0e43f
JA
1231 /*
1232 * Don't enter poll loop if we already have events pending.
1233 * If we do, we can potentially be spinning for commands that
1234 * already triggered a CQE (eg in error).
1235 */
1d7bb1d5 1236 if (io_cqring_events(ctx, false))
a3a0e43f
JA
1237 break;
1238
500f9fba
JA
1239 /*
1240 * If a submit got punted to a workqueue, we can have the
1241 * application entering polling for a command before it gets
1242 * issued. That app will hold the uring_lock for the duration
1243 * of the poll right here, so we need to take a breather every
1244 * now and then to ensure that the issue has a chance to add
1245 * the poll to the issued list. Otherwise we can spin here
1246 * forever, while the workqueue is stuck trying to acquire the
1247 * very same mutex.
1248 */
1249 if (!(++iters & 7)) {
1250 mutex_unlock(&ctx->uring_lock);
1251 mutex_lock(&ctx->uring_lock);
1252 }
1253
def596e9
JA
1254 if (*nr_events < min)
1255 tmin = min - *nr_events;
1256
1257 ret = io_iopoll_getevents(ctx, nr_events, tmin);
1258 if (ret <= 0)
1259 break;
1260 ret = 0;
1261 } while (min && !*nr_events && !need_resched());
1262
2b2ed975
JA
1263 return ret;
1264}
1265
1266static int io_iopoll_check(struct io_ring_ctx *ctx, unsigned *nr_events,
1267 long min)
1268{
1269 int ret;
1270
1271 /*
1272 * We disallow the app entering submit/complete with polling, but we
1273 * still need to lock the ring to prevent racing with polled issue
1274 * that got punted to a workqueue.
1275 */
1276 mutex_lock(&ctx->uring_lock);
1277 ret = __io_iopoll_check(ctx, nr_events, min);
500f9fba 1278 mutex_unlock(&ctx->uring_lock);
def596e9
JA
1279 return ret;
1280}
1281
491381ce 1282static void kiocb_end_write(struct io_kiocb *req)
2b188cc1 1283{
491381ce
JA
1284 /*
1285 * Tell lockdep we inherited freeze protection from submission
1286 * thread.
1287 */
1288 if (req->flags & REQ_F_ISREG) {
1289 struct inode *inode = file_inode(req->file);
2b188cc1 1290
491381ce 1291 __sb_writers_acquired(inode->i_sb, SB_FREEZE_WRITE);
2b188cc1 1292 }
491381ce 1293 file_end_write(req->file);
2b188cc1
JA
1294}
1295
4e88d6e7
JA
1296static inline void req_set_fail_links(struct io_kiocb *req)
1297{
1298 if ((req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) == REQ_F_LINK)
1299 req->flags |= REQ_F_FAIL_LINK;
1300}
1301
ba816ad6 1302static void io_complete_rw_common(struct kiocb *kiocb, long res)
2b188cc1
JA
1303{
1304 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw);
1305
491381ce
JA
1306 if (kiocb->ki_flags & IOCB_WRITE)
1307 kiocb_end_write(req);
2b188cc1 1308
4e88d6e7
JA
1309 if (res != req->result)
1310 req_set_fail_links(req);
78e19bbe 1311 io_cqring_add_event(req, res);
ba816ad6
JA
1312}
1313
1314static void io_complete_rw(struct kiocb *kiocb, long res, long res2)
1315{
1316 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw);
1317
1318 io_complete_rw_common(kiocb, res);
e65ef56d 1319 io_put_req(req);
2b188cc1
JA
1320}
1321
ba816ad6
JA
1322static struct io_kiocb *__io_complete_rw(struct kiocb *kiocb, long res)
1323{
1324 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw);
ec9c02ad 1325 struct io_kiocb *nxt = NULL;
ba816ad6
JA
1326
1327 io_complete_rw_common(kiocb, res);
ec9c02ad
JL
1328 io_put_req_find_next(req, &nxt);
1329
1330 return nxt;
2b188cc1
JA
1331}
1332
def596e9
JA
1333static void io_complete_rw_iopoll(struct kiocb *kiocb, long res, long res2)
1334{
1335 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw);
1336
491381ce
JA
1337 if (kiocb->ki_flags & IOCB_WRITE)
1338 kiocb_end_write(req);
def596e9 1339
4e88d6e7
JA
1340 if (res != req->result)
1341 req_set_fail_links(req);
9e645e11 1342 req->result = res;
def596e9
JA
1343 if (res != -EAGAIN)
1344 req->flags |= REQ_F_IOPOLL_COMPLETED;
1345}
1346
1347/*
1348 * After the iocb has been issued, it's safe to be found on the poll list.
1349 * Adding the kiocb to the list AFTER submission ensures that we don't
1350 * find it from a io_iopoll_getevents() thread before the issuer is done
1351 * accessing the kiocb cookie.
1352 */
1353static void io_iopoll_req_issued(struct io_kiocb *req)
1354{
1355 struct io_ring_ctx *ctx = req->ctx;
1356
1357 /*
1358 * Track whether we have multiple files in our lists. This will impact
1359 * how we do polling eventually, not spinning if we're on potentially
1360 * different devices.
1361 */
1362 if (list_empty(&ctx->poll_list)) {
1363 ctx->poll_multi_file = false;
1364 } else if (!ctx->poll_multi_file) {
1365 struct io_kiocb *list_req;
1366
1367 list_req = list_first_entry(&ctx->poll_list, struct io_kiocb,
1368 list);
1369 if (list_req->rw.ki_filp != req->rw.ki_filp)
1370 ctx->poll_multi_file = true;
1371 }
1372
1373 /*
1374 * For fast devices, IO may have already completed. If it has, add
1375 * it to the front so we find it first.
1376 */
1377 if (req->flags & REQ_F_IOPOLL_COMPLETED)
1378 list_add(&req->list, &ctx->poll_list);
1379 else
1380 list_add_tail(&req->list, &ctx->poll_list);
1381}
1382
3d6770fb 1383static void io_file_put(struct io_submit_state *state)
9a56a232 1384{
3d6770fb 1385 if (state->file) {
9a56a232
JA
1386 int diff = state->has_refs - state->used_refs;
1387
1388 if (diff)
1389 fput_many(state->file, diff);
1390 state->file = NULL;
1391 }
1392}
1393
1394/*
1395 * Get as many references to a file as we have IOs left in this submission,
1396 * assuming most submissions are for one file, or at least that each file
1397 * has more than one submission.
1398 */
1399static struct file *io_file_get(struct io_submit_state *state, int fd)
1400{
1401 if (!state)
1402 return fget(fd);
1403
1404 if (state->file) {
1405 if (state->fd == fd) {
1406 state->used_refs++;
1407 state->ios_left--;
1408 return state->file;
1409 }
3d6770fb 1410 io_file_put(state);
9a56a232
JA
1411 }
1412 state->file = fget_many(fd, state->ios_left);
1413 if (!state->file)
1414 return NULL;
1415
1416 state->fd = fd;
1417 state->has_refs = state->ios_left;
1418 state->used_refs = 1;
1419 state->ios_left--;
1420 return state->file;
1421}
1422
2b188cc1
JA
1423/*
1424 * If we tracked the file through the SCM inflight mechanism, we could support
1425 * any file. For now, just ensure that anything potentially problematic is done
1426 * inline.
1427 */
1428static bool io_file_supports_async(struct file *file)
1429{
1430 umode_t mode = file_inode(file)->i_mode;
1431
1432 if (S_ISBLK(mode) || S_ISCHR(mode))
1433 return true;
1434 if (S_ISREG(mode) && file->f_op != &io_uring_fops)
1435 return true;
1436
1437 return false;
1438}
1439
267bc904 1440static int io_prep_rw(struct io_kiocb *req, bool force_nonblock)
2b188cc1 1441{
cf6fd4bd 1442 const struct io_uring_sqe *sqe = req->sqe;
def596e9 1443 struct io_ring_ctx *ctx = req->ctx;
2b188cc1 1444 struct kiocb *kiocb = &req->rw;
09bb8394
JA
1445 unsigned ioprio;
1446 int ret;
2b188cc1 1447
09bb8394
JA
1448 if (!req->file)
1449 return -EBADF;
2b188cc1 1450
491381ce
JA
1451 if (S_ISREG(file_inode(req->file)->i_mode))
1452 req->flags |= REQ_F_ISREG;
1453
2b188cc1
JA
1454 kiocb->ki_pos = READ_ONCE(sqe->off);
1455 kiocb->ki_flags = iocb_flags(kiocb->ki_filp);
1456 kiocb->ki_hint = ki_hint_validate(file_write_hint(kiocb->ki_filp));
1457
1458 ioprio = READ_ONCE(sqe->ioprio);
1459 if (ioprio) {
1460 ret = ioprio_check_cap(ioprio);
1461 if (ret)
09bb8394 1462 return ret;
2b188cc1
JA
1463
1464 kiocb->ki_ioprio = ioprio;
1465 } else
1466 kiocb->ki_ioprio = get_current_ioprio();
1467
1468 ret = kiocb_set_rw_flags(kiocb, READ_ONCE(sqe->rw_flags));
1469 if (unlikely(ret))
09bb8394 1470 return ret;
8449eeda
SB
1471
1472 /* don't allow async punt if RWF_NOWAIT was requested */
491381ce
JA
1473 if ((kiocb->ki_flags & IOCB_NOWAIT) ||
1474 (req->file->f_flags & O_NONBLOCK))
8449eeda
SB
1475 req->flags |= REQ_F_NOWAIT;
1476
1477 if (force_nonblock)
2b188cc1 1478 kiocb->ki_flags |= IOCB_NOWAIT;
8449eeda 1479
def596e9 1480 if (ctx->flags & IORING_SETUP_IOPOLL) {
def596e9
JA
1481 if (!(kiocb->ki_flags & IOCB_DIRECT) ||
1482 !kiocb->ki_filp->f_op->iopoll)
09bb8394 1483 return -EOPNOTSUPP;
2b188cc1 1484
def596e9
JA
1485 kiocb->ki_flags |= IOCB_HIPRI;
1486 kiocb->ki_complete = io_complete_rw_iopoll;
6873e0bd 1487 req->result = 0;
def596e9 1488 } else {
09bb8394
JA
1489 if (kiocb->ki_flags & IOCB_HIPRI)
1490 return -EINVAL;
def596e9
JA
1491 kiocb->ki_complete = io_complete_rw;
1492 }
2b188cc1 1493 return 0;
2b188cc1
JA
1494}
1495
1496static inline void io_rw_done(struct kiocb *kiocb, ssize_t ret)
1497{
1498 switch (ret) {
1499 case -EIOCBQUEUED:
1500 break;
1501 case -ERESTARTSYS:
1502 case -ERESTARTNOINTR:
1503 case -ERESTARTNOHAND:
1504 case -ERESTART_RESTARTBLOCK:
1505 /*
1506 * We can't just restart the syscall, since previously
1507 * submitted sqes may already be in progress. Just fail this
1508 * IO with EINTR.
1509 */
1510 ret = -EINTR;
1511 /* fall through */
1512 default:
1513 kiocb->ki_complete(kiocb, ret, 0);
1514 }
1515}
1516
ba816ad6
JA
1517static void kiocb_done(struct kiocb *kiocb, ssize_t ret, struct io_kiocb **nxt,
1518 bool in_async)
1519{
f9bd67f6 1520 if (in_async && ret >= 0 && kiocb->ki_complete == io_complete_rw)
ba816ad6
JA
1521 *nxt = __io_complete_rw(kiocb, ret);
1522 else
1523 io_rw_done(kiocb, ret);
1524}
1525
7d009165
PB
1526static ssize_t io_import_fixed(struct io_ring_ctx *ctx, int rw,
1527 const struct io_uring_sqe *sqe,
1528 struct iov_iter *iter)
edafccee
JA
1529{
1530 size_t len = READ_ONCE(sqe->len);
1531 struct io_mapped_ubuf *imu;
1532 unsigned index, buf_index;
1533 size_t offset;
1534 u64 buf_addr;
1535
1536 /* attempt to use fixed buffers without having provided iovecs */
1537 if (unlikely(!ctx->user_bufs))
1538 return -EFAULT;
1539
1540 buf_index = READ_ONCE(sqe->buf_index);
1541 if (unlikely(buf_index >= ctx->nr_user_bufs))
1542 return -EFAULT;
1543
1544 index = array_index_nospec(buf_index, ctx->nr_user_bufs);
1545 imu = &ctx->user_bufs[index];
1546 buf_addr = READ_ONCE(sqe->addr);
1547
1548 /* overflow */
1549 if (buf_addr + len < buf_addr)
1550 return -EFAULT;
1551 /* not inside the mapped region */
1552 if (buf_addr < imu->ubuf || buf_addr + len > imu->ubuf + imu->len)
1553 return -EFAULT;
1554
1555 /*
1556 * May not be a start of buffer, set size appropriately
1557 * and advance us to the beginning.
1558 */
1559 offset = buf_addr - imu->ubuf;
1560 iov_iter_bvec(iter, rw, imu->bvec, imu->nr_bvecs, offset + len);
bd11b3a3
JA
1561
1562 if (offset) {
1563 /*
1564 * Don't use iov_iter_advance() here, as it's really slow for
1565 * using the latter parts of a big fixed buffer - it iterates
1566 * over each segment manually. We can cheat a bit here, because
1567 * we know that:
1568 *
1569 * 1) it's a BVEC iter, we set it up
1570 * 2) all bvecs are PAGE_SIZE in size, except potentially the
1571 * first and last bvec
1572 *
1573 * So just find our index, and adjust the iterator afterwards.
1574 * If the offset is within the first bvec (or the whole first
1575 * bvec, just use iov_iter_advance(). This makes it easier
1576 * since we can just skip the first segment, which may not
1577 * be PAGE_SIZE aligned.
1578 */
1579 const struct bio_vec *bvec = imu->bvec;
1580
1581 if (offset <= bvec->bv_len) {
1582 iov_iter_advance(iter, offset);
1583 } else {
1584 unsigned long seg_skip;
1585
1586 /* skip first vec */
1587 offset -= bvec->bv_len;
1588 seg_skip = 1 + (offset >> PAGE_SHIFT);
1589
1590 iter->bvec = bvec + seg_skip;
1591 iter->nr_segs -= seg_skip;
99c79f66 1592 iter->count -= bvec->bv_len + offset;
bd11b3a3 1593 iter->iov_offset = offset & ~PAGE_MASK;
bd11b3a3
JA
1594 }
1595 }
1596
5e559561 1597 return len;
edafccee
JA
1598}
1599
cf6fd4bd
PB
1600static ssize_t io_import_iovec(int rw, struct io_kiocb *req,
1601 struct iovec **iovec, struct iov_iter *iter)
2b188cc1 1602{
cf6fd4bd 1603 const struct io_uring_sqe *sqe = req->sqe;
2b188cc1
JA
1604 void __user *buf = u64_to_user_ptr(READ_ONCE(sqe->addr));
1605 size_t sqe_len = READ_ONCE(sqe->len);
edafccee
JA
1606 u8 opcode;
1607
1608 /*
1609 * We're reading ->opcode for the second time, but the first read
1610 * doesn't care whether it's _FIXED or not, so it doesn't matter
1611 * whether ->opcode changes concurrently. The first read does care
1612 * about whether it is a READ or a WRITE, so we don't trust this read
1613 * for that purpose and instead let the caller pass in the read/write
1614 * flag.
1615 */
1616 opcode = READ_ONCE(sqe->opcode);
7d009165 1617 if (opcode == IORING_OP_READ_FIXED || opcode == IORING_OP_WRITE_FIXED) {
edafccee 1618 *iovec = NULL;
7d009165 1619 return io_import_fixed(req->ctx, rw, sqe, iter);
edafccee 1620 }
2b188cc1 1621
f67676d1
JA
1622 if (req->io) {
1623 struct io_async_rw *iorw = &req->io->rw;
1624
1625 *iovec = iorw->iov;
1626 iov_iter_init(iter, rw, *iovec, iorw->nr_segs, iorw->size);
1627 if (iorw->iov == iorw->fast_iov)
1628 *iovec = NULL;
1629 return iorw->size;
1630 }
1631
cf6fd4bd 1632 if (!req->has_user)
2b188cc1
JA
1633 return -EFAULT;
1634
1635#ifdef CONFIG_COMPAT
cf6fd4bd 1636 if (req->ctx->compat)
2b188cc1
JA
1637 return compat_import_iovec(rw, buf, sqe_len, UIO_FASTIOV,
1638 iovec, iter);
1639#endif
1640
1641 return import_iovec(rw, buf, sqe_len, UIO_FASTIOV, iovec, iter);
1642}
1643
31b51510 1644/*
32960613
JA
1645 * For files that don't have ->read_iter() and ->write_iter(), handle them
1646 * by looping over ->read() or ->write() manually.
31b51510 1647 */
32960613
JA
1648static ssize_t loop_rw_iter(int rw, struct file *file, struct kiocb *kiocb,
1649 struct iov_iter *iter)
1650{
1651 ssize_t ret = 0;
1652
1653 /*
1654 * Don't support polled IO through this interface, and we can't
1655 * support non-blocking either. For the latter, this just causes
1656 * the kiocb to be handled from an async context.
1657 */
1658 if (kiocb->ki_flags & IOCB_HIPRI)
1659 return -EOPNOTSUPP;
1660 if (kiocb->ki_flags & IOCB_NOWAIT)
1661 return -EAGAIN;
1662
1663 while (iov_iter_count(iter)) {
311ae9e1 1664 struct iovec iovec;
32960613
JA
1665 ssize_t nr;
1666
311ae9e1
PB
1667 if (!iov_iter_is_bvec(iter)) {
1668 iovec = iov_iter_iovec(iter);
1669 } else {
1670 /* fixed buffers import bvec */
1671 iovec.iov_base = kmap(iter->bvec->bv_page)
1672 + iter->iov_offset;
1673 iovec.iov_len = min(iter->count,
1674 iter->bvec->bv_len - iter->iov_offset);
1675 }
1676
32960613
JA
1677 if (rw == READ) {
1678 nr = file->f_op->read(file, iovec.iov_base,
1679 iovec.iov_len, &kiocb->ki_pos);
1680 } else {
1681 nr = file->f_op->write(file, iovec.iov_base,
1682 iovec.iov_len, &kiocb->ki_pos);
1683 }
1684
311ae9e1
PB
1685 if (iov_iter_is_bvec(iter))
1686 kunmap(iter->bvec->bv_page);
1687
32960613
JA
1688 if (nr < 0) {
1689 if (!ret)
1690 ret = nr;
1691 break;
1692 }
1693 ret += nr;
1694 if (nr != iovec.iov_len)
1695 break;
1696 iov_iter_advance(iter, nr);
1697 }
1698
1699 return ret;
1700}
1701
f67676d1
JA
1702static void io_req_map_io(struct io_kiocb *req, ssize_t io_size,
1703 struct iovec *iovec, struct iovec *fast_iov,
1704 struct iov_iter *iter)
1705{
1706 req->io->rw.nr_segs = iter->nr_segs;
1707 req->io->rw.size = io_size;
1708 req->io->rw.iov = iovec;
1709 if (!req->io->rw.iov) {
1710 req->io->rw.iov = req->io->rw.fast_iov;
1711 memcpy(req->io->rw.iov, fast_iov,
1712 sizeof(struct iovec) * iter->nr_segs);
1713 }
1714}
1715
1716static int io_setup_async_io(struct io_kiocb *req, ssize_t io_size,
1717 struct iovec *iovec, struct iovec *fast_iov,
1718 struct iov_iter *iter)
1719{
1720 req->io = kmalloc(sizeof(*req->io), GFP_KERNEL);
1721 if (req->io) {
1722 io_req_map_io(req, io_size, iovec, fast_iov, iter);
1723 memcpy(&req->io->sqe, req->sqe, sizeof(req->io->sqe));
1724 req->sqe = &req->io->sqe;
1725 return 0;
1726 }
1727
1728 return -ENOMEM;
1729}
1730
1731static int io_read_prep(struct io_kiocb *req, struct iovec **iovec,
1732 struct iov_iter *iter, bool force_nonblock)
1733{
1734 ssize_t ret;
1735
1736 ret = io_prep_rw(req, force_nonblock);
1737 if (ret)
1738 return ret;
1739
1740 if (unlikely(!(req->file->f_mode & FMODE_READ)))
1741 return -EBADF;
1742
1743 return io_import_iovec(READ, req, iovec, iter);
1744}
1745
267bc904 1746static int io_read(struct io_kiocb *req, struct io_kiocb **nxt,
8358e3a8 1747 bool force_nonblock)
2b188cc1
JA
1748{
1749 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
1750 struct kiocb *kiocb = &req->rw;
1751 struct iov_iter iter;
1752 struct file *file;
31b51510 1753 size_t iov_count;
f67676d1 1754 ssize_t io_size, ret;
2b188cc1 1755
f67676d1
JA
1756 if (!req->io) {
1757 ret = io_read_prep(req, &iovec, &iter, force_nonblock);
1758 if (ret < 0)
1759 return ret;
1760 } else {
1761 ret = io_import_iovec(READ, req, &iovec, &iter);
1762 if (ret < 0)
1763 return ret;
1764 }
2b188cc1 1765
f67676d1
JA
1766 file = req->file;
1767 io_size = ret;
9e645e11 1768 if (req->flags & REQ_F_LINK)
f67676d1
JA
1769 req->result = io_size;
1770
1771 /*
1772 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
1773 * we know to async punt it even if it was opened O_NONBLOCK
1774 */
1775 if (force_nonblock && !io_file_supports_async(file)) {
1776 req->flags |= REQ_F_MUST_PUNT;
1777 goto copy_iov;
1778 }
9e645e11 1779
31b51510
JA
1780 iov_count = iov_iter_count(&iter);
1781 ret = rw_verify_area(READ, file, &kiocb->ki_pos, iov_count);
2b188cc1
JA
1782 if (!ret) {
1783 ssize_t ret2;
1784
32960613
JA
1785 if (file->f_op->read_iter)
1786 ret2 = call_read_iter(file, kiocb, &iter);
1787 else
1788 ret2 = loop_rw_iter(READ, file, kiocb, &iter);
1789
9d93a3f5
JA
1790 /*
1791 * In case of a short read, punt to async. This can happen
1792 * if we have data partially cached. Alternatively we can
1793 * return the short read, in which case the application will
1794 * need to issue another SQE and wait for it. That SQE will
1795 * need async punt anyway, so it's more efficient to do it
1796 * here.
1797 */
491381ce
JA
1798 if (force_nonblock && !(req->flags & REQ_F_NOWAIT) &&
1799 (req->flags & REQ_F_ISREG) &&
f67676d1 1800 ret2 > 0 && ret2 < io_size)
9d93a3f5
JA
1801 ret2 = -EAGAIN;
1802 /* Catch -EAGAIN return for forced non-blocking submission */
f67676d1 1803 if (!force_nonblock || ret2 != -EAGAIN) {
cf6fd4bd 1804 kiocb_done(kiocb, ret2, nxt, req->in_async);
f67676d1
JA
1805 } else {
1806copy_iov:
1807 ret = io_setup_async_io(req, io_size, iovec,
1808 inline_vecs, &iter);
1809 if (ret)
1810 goto out_free;
1811 return -EAGAIN;
1812 }
2b188cc1 1813 }
f67676d1 1814out_free:
2b188cc1 1815 kfree(iovec);
2b188cc1
JA
1816 return ret;
1817}
1818
f67676d1
JA
1819static int io_write_prep(struct io_kiocb *req, struct iovec **iovec,
1820 struct iov_iter *iter, bool force_nonblock)
1821{
1822 ssize_t ret;
1823
1824 ret = io_prep_rw(req, force_nonblock);
1825 if (ret)
1826 return ret;
1827
1828 if (unlikely(!(req->file->f_mode & FMODE_WRITE)))
1829 return -EBADF;
1830
1831 return io_import_iovec(WRITE, req, iovec, iter);
1832}
1833
267bc904 1834static int io_write(struct io_kiocb *req, struct io_kiocb **nxt,
8358e3a8 1835 bool force_nonblock)
2b188cc1
JA
1836{
1837 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
1838 struct kiocb *kiocb = &req->rw;
1839 struct iov_iter iter;
1840 struct file *file;
31b51510 1841 size_t iov_count;
f67676d1 1842 ssize_t ret, io_size;
2b188cc1 1843
f67676d1
JA
1844 if (!req->io) {
1845 ret = io_write_prep(req, &iovec, &iter, force_nonblock);
1846 if (ret < 0)
1847 return ret;
1848 } else {
1849 ret = io_import_iovec(WRITE, req, &iovec, &iter);
1850 if (ret < 0)
1851 return ret;
1852 }
2b188cc1 1853
2b188cc1 1854 file = kiocb->ki_filp;
f67676d1 1855 io_size = ret;
9e645e11 1856 if (req->flags & REQ_F_LINK)
f67676d1 1857 req->result = io_size;
9e645e11 1858
f67676d1
JA
1859 /*
1860 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
1861 * we know to async punt it even if it was opened O_NONBLOCK
1862 */
1863 if (force_nonblock && !io_file_supports_async(req->file)) {
1864 req->flags |= REQ_F_MUST_PUNT;
1865 goto copy_iov;
1866 }
31b51510 1867
561fb04a 1868 if (force_nonblock && !(kiocb->ki_flags & IOCB_DIRECT))
f67676d1 1869 goto copy_iov;
31b51510 1870
f67676d1 1871 iov_count = iov_iter_count(&iter);
31b51510 1872 ret = rw_verify_area(WRITE, file, &kiocb->ki_pos, iov_count);
2b188cc1 1873 if (!ret) {
9bf7933f
RP
1874 ssize_t ret2;
1875
2b188cc1
JA
1876 /*
1877 * Open-code file_start_write here to grab freeze protection,
1878 * which will be released by another thread in
1879 * io_complete_rw(). Fool lockdep by telling it the lock got
1880 * released so that it doesn't complain about the held lock when
1881 * we return to userspace.
1882 */
491381ce 1883 if (req->flags & REQ_F_ISREG) {
2b188cc1
JA
1884 __sb_start_write(file_inode(file)->i_sb,
1885 SB_FREEZE_WRITE, true);
1886 __sb_writers_release(file_inode(file)->i_sb,
1887 SB_FREEZE_WRITE);
1888 }
1889 kiocb->ki_flags |= IOCB_WRITE;
9bf7933f 1890
32960613
JA
1891 if (file->f_op->write_iter)
1892 ret2 = call_write_iter(file, kiocb, &iter);
1893 else
1894 ret2 = loop_rw_iter(WRITE, file, kiocb, &iter);
f67676d1 1895 if (!force_nonblock || ret2 != -EAGAIN) {
cf6fd4bd 1896 kiocb_done(kiocb, ret2, nxt, req->in_async);
f67676d1
JA
1897 } else {
1898copy_iov:
1899 ret = io_setup_async_io(req, io_size, iovec,
1900 inline_vecs, &iter);
1901 if (ret)
1902 goto out_free;
1903 return -EAGAIN;
1904 }
2b188cc1 1905 }
31b51510 1906out_free:
2b188cc1 1907 kfree(iovec);
2b188cc1
JA
1908 return ret;
1909}
1910
1911/*
1912 * IORING_OP_NOP just posts a completion event, nothing else.
1913 */
78e19bbe 1914static int io_nop(struct io_kiocb *req)
2b188cc1
JA
1915{
1916 struct io_ring_ctx *ctx = req->ctx;
2b188cc1 1917
def596e9
JA
1918 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
1919 return -EINVAL;
1920
78e19bbe 1921 io_cqring_add_event(req, 0);
e65ef56d 1922 io_put_req(req);
2b188cc1
JA
1923 return 0;
1924}
1925
c992fe29
CH
1926static int io_prep_fsync(struct io_kiocb *req, const struct io_uring_sqe *sqe)
1927{
6b06314c 1928 struct io_ring_ctx *ctx = req->ctx;
c992fe29 1929
09bb8394
JA
1930 if (!req->file)
1931 return -EBADF;
c992fe29 1932
6b06314c 1933 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
def596e9 1934 return -EINVAL;
edafccee 1935 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
c992fe29
CH
1936 return -EINVAL;
1937
c992fe29
CH
1938 return 0;
1939}
1940
1941static int io_fsync(struct io_kiocb *req, const struct io_uring_sqe *sqe,
ba816ad6 1942 struct io_kiocb **nxt, bool force_nonblock)
c992fe29
CH
1943{
1944 loff_t sqe_off = READ_ONCE(sqe->off);
1945 loff_t sqe_len = READ_ONCE(sqe->len);
1946 loff_t end = sqe_off + sqe_len;
1947 unsigned fsync_flags;
1948 int ret;
1949
1950 fsync_flags = READ_ONCE(sqe->fsync_flags);
1951 if (unlikely(fsync_flags & ~IORING_FSYNC_DATASYNC))
1952 return -EINVAL;
1953
1954 ret = io_prep_fsync(req, sqe);
1955 if (ret)
1956 return ret;
1957
1958 /* fsync always requires a blocking context */
1959 if (force_nonblock)
1960 return -EAGAIN;
1961
1962 ret = vfs_fsync_range(req->rw.ki_filp, sqe_off,
1963 end > 0 ? end : LLONG_MAX,
1964 fsync_flags & IORING_FSYNC_DATASYNC);
1965
4e88d6e7
JA
1966 if (ret < 0)
1967 req_set_fail_links(req);
78e19bbe 1968 io_cqring_add_event(req, ret);
ec9c02ad 1969 io_put_req_find_next(req, nxt);
c992fe29
CH
1970 return 0;
1971}
1972
5d17b4a4
JA
1973static int io_prep_sfr(struct io_kiocb *req, const struct io_uring_sqe *sqe)
1974{
1975 struct io_ring_ctx *ctx = req->ctx;
1976 int ret = 0;
1977
1978 if (!req->file)
1979 return -EBADF;
5d17b4a4
JA
1980
1981 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
1982 return -EINVAL;
1983 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
1984 return -EINVAL;
1985
5d17b4a4
JA
1986 return ret;
1987}
1988
1989static int io_sync_file_range(struct io_kiocb *req,
1990 const struct io_uring_sqe *sqe,
ba816ad6 1991 struct io_kiocb **nxt,
5d17b4a4
JA
1992 bool force_nonblock)
1993{
1994 loff_t sqe_off;
1995 loff_t sqe_len;
1996 unsigned flags;
1997 int ret;
1998
1999 ret = io_prep_sfr(req, sqe);
2000 if (ret)
2001 return ret;
2002
2003 /* sync_file_range always requires a blocking context */
2004 if (force_nonblock)
2005 return -EAGAIN;
2006
2007 sqe_off = READ_ONCE(sqe->off);
2008 sqe_len = READ_ONCE(sqe->len);
2009 flags = READ_ONCE(sqe->sync_range_flags);
2010
2011 ret = sync_file_range(req->rw.ki_filp, sqe_off, sqe_len, flags);
2012
4e88d6e7
JA
2013 if (ret < 0)
2014 req_set_fail_links(req);
78e19bbe 2015 io_cqring_add_event(req, ret);
ec9c02ad 2016 io_put_req_find_next(req, nxt);
5d17b4a4
JA
2017 return 0;
2018}
2019
03b1230c
JA
2020static int io_sendmsg_prep(struct io_kiocb *req, struct io_async_ctx *io)
2021{
0fa03c62 2022#if defined(CONFIG_NET)
03b1230c
JA
2023 const struct io_uring_sqe *sqe = req->sqe;
2024 struct user_msghdr __user *msg;
2025 unsigned flags;
2026
2027 flags = READ_ONCE(sqe->msg_flags);
2028 msg = (struct user_msghdr __user *)(unsigned long) READ_ONCE(sqe->addr);
2029 return sendmsg_copy_msghdr(&io->msg.msg, msg, flags, &io->msg.iov);
2030#else
2031 return 0;
2032#endif
2033}
2034
2035static int io_sendmsg(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2036 struct io_kiocb **nxt, bool force_nonblock)
aa1fa28f 2037{
03b1230c 2038#if defined(CONFIG_NET)
0fa03c62
JA
2039 struct socket *sock;
2040 int ret;
2041
2042 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
2043 return -EINVAL;
2044
2045 sock = sock_from_file(req->file, &ret);
2046 if (sock) {
03b1230c
JA
2047 struct io_async_ctx io, *copy;
2048 struct sockaddr_storage addr;
2049 struct msghdr *kmsg;
0fa03c62
JA
2050 unsigned flags;
2051
2052 flags = READ_ONCE(sqe->msg_flags);
2053 if (flags & MSG_DONTWAIT)
2054 req->flags |= REQ_F_NOWAIT;
2055 else if (force_nonblock)
2056 flags |= MSG_DONTWAIT;
2057
03b1230c
JA
2058 if (req->io) {
2059 kmsg = &req->io->msg.msg;
2060 kmsg->msg_name = &addr;
2061 } else {
2062 kmsg = &io.msg.msg;
2063 kmsg->msg_name = &addr;
2064 io.msg.iov = io.msg.fast_iov;
2065 ret = io_sendmsg_prep(req, &io);
2066 if (ret)
2067 goto out;
2068 }
0fa03c62 2069
03b1230c
JA
2070 ret = __sys_sendmsg_sock(sock, kmsg, flags);
2071 if (force_nonblock && ret == -EAGAIN) {
2072 copy = kmalloc(sizeof(*copy), GFP_KERNEL);
2073 if (!copy) {
2074 ret = -ENOMEM;
2075 goto out;
2076 }
2077 memcpy(&copy->msg, &io.msg, sizeof(copy->msg));
2078 req->io = copy;
2079 memcpy(&req->io->sqe, req->sqe, sizeof(*req->sqe));
2080 req->sqe = &req->io->sqe;
0fa03c62 2081 return ret;
03b1230c 2082 }
441cdbd5
JA
2083 if (ret == -ERESTARTSYS)
2084 ret = -EINTR;
0fa03c62
JA
2085 }
2086
03b1230c 2087out:
78e19bbe 2088 io_cqring_add_event(req, ret);
4e88d6e7
JA
2089 if (ret < 0)
2090 req_set_fail_links(req);
ec9c02ad 2091 io_put_req_find_next(req, nxt);
5d17b4a4 2092 return 0;
03b1230c
JA
2093#else
2094 return -EOPNOTSUPP;
aa1fa28f 2095#endif
03b1230c 2096}
aa1fa28f 2097
03b1230c 2098static int io_recvmsg_prep(struct io_kiocb *req, struct io_async_ctx *io)
aa1fa28f
JA
2099{
2100#if defined(CONFIG_NET)
03b1230c
JA
2101 const struct io_uring_sqe *sqe = req->sqe;
2102 struct user_msghdr __user *msg;
2103 unsigned flags;
2104
2105 flags = READ_ONCE(sqe->msg_flags);
2106 msg = (struct user_msghdr __user *)(unsigned long) READ_ONCE(sqe->addr);
2107 return recvmsg_copy_msghdr(&io->msg.msg, msg, flags, &io->msg.uaddr,
2108 &io->msg.iov);
aa1fa28f 2109#else
03b1230c 2110 return 0;
aa1fa28f
JA
2111#endif
2112}
2113
2114static int io_recvmsg(struct io_kiocb *req, const struct io_uring_sqe *sqe,
ba816ad6 2115 struct io_kiocb **nxt, bool force_nonblock)
aa1fa28f
JA
2116{
2117#if defined(CONFIG_NET)
03b1230c
JA
2118 struct socket *sock;
2119 int ret;
2120
2121 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
2122 return -EINVAL;
2123
2124 sock = sock_from_file(req->file, &ret);
2125 if (sock) {
2126 struct user_msghdr __user *msg;
2127 struct io_async_ctx io, *copy;
2128 struct sockaddr_storage addr;
2129 struct msghdr *kmsg;
2130 unsigned flags;
2131
2132 flags = READ_ONCE(sqe->msg_flags);
2133 if (flags & MSG_DONTWAIT)
2134 req->flags |= REQ_F_NOWAIT;
2135 else if (force_nonblock)
2136 flags |= MSG_DONTWAIT;
2137
2138 msg = (struct user_msghdr __user *) (unsigned long)
2139 READ_ONCE(sqe->addr);
2140 if (req->io) {
2141 kmsg = &req->io->msg.msg;
2142 kmsg->msg_name = &addr;
2143 } else {
2144 kmsg = &io.msg.msg;
2145 kmsg->msg_name = &addr;
2146 io.msg.iov = io.msg.fast_iov;
2147 ret = io_recvmsg_prep(req, &io);
2148 if (ret)
2149 goto out;
2150 }
2151
2152 ret = __sys_recvmsg_sock(sock, kmsg, msg, io.msg.uaddr, flags);
2153 if (force_nonblock && ret == -EAGAIN) {
2154 copy = kmalloc(sizeof(*copy), GFP_KERNEL);
2155 if (!copy) {
2156 ret = -ENOMEM;
2157 goto out;
2158 }
2159 memcpy(copy, &io, sizeof(*copy));
2160 req->io = copy;
2161 memcpy(&req->io->sqe, req->sqe, sizeof(*req->sqe));
2162 req->sqe = &req->io->sqe;
2163 return ret;
2164 }
2165 if (ret == -ERESTARTSYS)
2166 ret = -EINTR;
2167 }
2168
2169out:
2170 io_cqring_add_event(req, ret);
4e88d6e7
JA
2171 if (ret < 0)
2172 req_set_fail_links(req);
03b1230c
JA
2173 io_put_req_find_next(req, nxt);
2174 return 0;
0fa03c62
JA
2175#else
2176 return -EOPNOTSUPP;
2177#endif
2178}
5d17b4a4 2179
17f2fe35
JA
2180static int io_accept(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2181 struct io_kiocb **nxt, bool force_nonblock)
2182{
2183#if defined(CONFIG_NET)
2184 struct sockaddr __user *addr;
2185 int __user *addr_len;
2186 unsigned file_flags;
2187 int flags, ret;
2188
2189 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
2190 return -EINVAL;
8042d6ce 2191 if (sqe->ioprio || sqe->len || sqe->buf_index)
17f2fe35
JA
2192 return -EINVAL;
2193
2194 addr = (struct sockaddr __user *) (unsigned long) READ_ONCE(sqe->addr);
2195 addr_len = (int __user *) (unsigned long) READ_ONCE(sqe->addr2);
2196 flags = READ_ONCE(sqe->accept_flags);
2197 file_flags = force_nonblock ? O_NONBLOCK : 0;
2198
2199 ret = __sys_accept4_file(req->file, file_flags, addr, addr_len, flags);
2200 if (ret == -EAGAIN && force_nonblock) {
2201 req->work.flags |= IO_WQ_WORK_NEEDS_FILES;
2202 return -EAGAIN;
2203 }
8e3cca12
JA
2204 if (ret == -ERESTARTSYS)
2205 ret = -EINTR;
4e88d6e7
JA
2206 if (ret < 0)
2207 req_set_fail_links(req);
78e19bbe 2208 io_cqring_add_event(req, ret);
ec9c02ad 2209 io_put_req_find_next(req, nxt);
17f2fe35 2210 return 0;
0fa03c62
JA
2211#else
2212 return -EOPNOTSUPP;
2213#endif
2214}
5d17b4a4 2215
f499a021
JA
2216static int io_connect_prep(struct io_kiocb *req, struct io_async_ctx *io)
2217{
2218#if defined(CONFIG_NET)
2219 const struct io_uring_sqe *sqe = req->sqe;
2220 struct sockaddr __user *addr;
2221 int addr_len;
2222
2223 addr = (struct sockaddr __user *) (unsigned long) READ_ONCE(sqe->addr);
2224 addr_len = READ_ONCE(sqe->addr2);
2225 return move_addr_to_kernel(addr, addr_len, &io->connect.address);
2226#else
2227 return 0;
2228#endif
2229}
2230
f8e85cf2
JA
2231static int io_connect(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2232 struct io_kiocb **nxt, bool force_nonblock)
2233{
2234#if defined(CONFIG_NET)
f499a021 2235 struct io_async_ctx __io, *io;
f8e85cf2
JA
2236 unsigned file_flags;
2237 int addr_len, ret;
2238
2239 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
2240 return -EINVAL;
2241 if (sqe->ioprio || sqe->len || sqe->buf_index || sqe->rw_flags)
2242 return -EINVAL;
2243
f8e85cf2
JA
2244 addr_len = READ_ONCE(sqe->addr2);
2245 file_flags = force_nonblock ? O_NONBLOCK : 0;
2246
f499a021
JA
2247 if (req->io) {
2248 io = req->io;
2249 } else {
2250 ret = io_connect_prep(req, &__io);
2251 if (ret)
2252 goto out;
2253 io = &__io;
2254 }
2255
2256 ret = __sys_connect_file(req->file, &io->connect.address, addr_len,
2257 file_flags);
87f80d62 2258 if ((ret == -EAGAIN || ret == -EINPROGRESS) && force_nonblock) {
f499a021
JA
2259 io = kmalloc(sizeof(*io), GFP_KERNEL);
2260 if (!io) {
2261 ret = -ENOMEM;
2262 goto out;
2263 }
2264 memcpy(&io->connect, &__io.connect, sizeof(io->connect));
2265 req->io = io;
2266 memcpy(&io->sqe, req->sqe, sizeof(*req->sqe));
2267 req->sqe = &io->sqe;
f8e85cf2 2268 return -EAGAIN;
f499a021 2269 }
f8e85cf2
JA
2270 if (ret == -ERESTARTSYS)
2271 ret = -EINTR;
f499a021 2272out:
4e88d6e7
JA
2273 if (ret < 0)
2274 req_set_fail_links(req);
f8e85cf2
JA
2275 io_cqring_add_event(req, ret);
2276 io_put_req_find_next(req, nxt);
2277 return 0;
2278#else
2279 return -EOPNOTSUPP;
2280#endif
2281}
2282
221c5eb2
JA
2283static void io_poll_remove_one(struct io_kiocb *req)
2284{
2285 struct io_poll_iocb *poll = &req->poll;
2286
2287 spin_lock(&poll->head->lock);
2288 WRITE_ONCE(poll->canceled, true);
e944475e
JA
2289 if (!list_empty(&poll->wait->entry)) {
2290 list_del_init(&poll->wait->entry);
a197f664 2291 io_queue_async_work(req);
221c5eb2
JA
2292 }
2293 spin_unlock(&poll->head->lock);
78076bb6 2294 hash_del(&req->hash_node);
221c5eb2
JA
2295}
2296
2297static void io_poll_remove_all(struct io_ring_ctx *ctx)
2298{
78076bb6 2299 struct hlist_node *tmp;
221c5eb2 2300 struct io_kiocb *req;
78076bb6 2301 int i;
221c5eb2
JA
2302
2303 spin_lock_irq(&ctx->completion_lock);
78076bb6
JA
2304 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
2305 struct hlist_head *list;
2306
2307 list = &ctx->cancel_hash[i];
2308 hlist_for_each_entry_safe(req, tmp, list, hash_node)
2309 io_poll_remove_one(req);
221c5eb2
JA
2310 }
2311 spin_unlock_irq(&ctx->completion_lock);
2312}
2313
47f46768
JA
2314static int io_poll_cancel(struct io_ring_ctx *ctx, __u64 sqe_addr)
2315{
78076bb6 2316 struct hlist_head *list;
47f46768
JA
2317 struct io_kiocb *req;
2318
78076bb6
JA
2319 list = &ctx->cancel_hash[hash_long(sqe_addr, ctx->cancel_hash_bits)];
2320 hlist_for_each_entry(req, list, hash_node) {
2321 if (sqe_addr == req->user_data) {
eac406c6
JA
2322 io_poll_remove_one(req);
2323 return 0;
2324 }
47f46768
JA
2325 }
2326
2327 return -ENOENT;
2328}
2329
221c5eb2
JA
2330/*
2331 * Find a running poll command that matches one specified in sqe->addr,
2332 * and remove it if found.
2333 */
2334static int io_poll_remove(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2335{
2336 struct io_ring_ctx *ctx = req->ctx;
47f46768 2337 int ret;
221c5eb2
JA
2338
2339 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
2340 return -EINVAL;
2341 if (sqe->ioprio || sqe->off || sqe->len || sqe->buf_index ||
2342 sqe->poll_events)
2343 return -EINVAL;
2344
2345 spin_lock_irq(&ctx->completion_lock);
47f46768 2346 ret = io_poll_cancel(ctx, READ_ONCE(sqe->addr));
221c5eb2
JA
2347 spin_unlock_irq(&ctx->completion_lock);
2348
78e19bbe 2349 io_cqring_add_event(req, ret);
4e88d6e7
JA
2350 if (ret < 0)
2351 req_set_fail_links(req);
e65ef56d 2352 io_put_req(req);
221c5eb2
JA
2353 return 0;
2354}
2355
b0dd8a41 2356static void io_poll_complete(struct io_kiocb *req, __poll_t mask, int error)
221c5eb2 2357{
a197f664
JL
2358 struct io_ring_ctx *ctx = req->ctx;
2359
8c838788 2360 req->poll.done = true;
e944475e 2361 kfree(req->poll.wait);
b0dd8a41
JA
2362 if (error)
2363 io_cqring_fill_event(req, error);
2364 else
2365 io_cqring_fill_event(req, mangle_poll(mask));
8c838788 2366 io_commit_cqring(ctx);
221c5eb2
JA
2367}
2368
561fb04a 2369static void io_poll_complete_work(struct io_wq_work **workptr)
221c5eb2 2370{
561fb04a 2371 struct io_wq_work *work = *workptr;
221c5eb2
JA
2372 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
2373 struct io_poll_iocb *poll = &req->poll;
2374 struct poll_table_struct pt = { ._key = poll->events };
2375 struct io_ring_ctx *ctx = req->ctx;
89723d0b 2376 struct io_kiocb *nxt = NULL;
221c5eb2 2377 __poll_t mask = 0;
b0dd8a41 2378 int ret = 0;
221c5eb2 2379
b0dd8a41 2380 if (work->flags & IO_WQ_WORK_CANCEL) {
561fb04a 2381 WRITE_ONCE(poll->canceled, true);
b0dd8a41
JA
2382 ret = -ECANCELED;
2383 } else if (READ_ONCE(poll->canceled)) {
2384 ret = -ECANCELED;
2385 }
561fb04a 2386
b0dd8a41 2387 if (ret != -ECANCELED)
221c5eb2
JA
2388 mask = vfs_poll(poll->file, &pt) & poll->events;
2389
2390 /*
2391 * Note that ->ki_cancel callers also delete iocb from active_reqs after
2392 * calling ->ki_cancel. We need the ctx_lock roundtrip here to
2393 * synchronize with them. In the cancellation case the list_del_init
2394 * itself is not actually needed, but harmless so we keep it in to
2395 * avoid further branches in the fast path.
2396 */
2397 spin_lock_irq(&ctx->completion_lock);
b0dd8a41 2398 if (!mask && ret != -ECANCELED) {
e944475e 2399 add_wait_queue(poll->head, poll->wait);
221c5eb2
JA
2400 spin_unlock_irq(&ctx->completion_lock);
2401 return;
2402 }
78076bb6 2403 hash_del(&req->hash_node);
b0dd8a41 2404 io_poll_complete(req, mask, ret);
221c5eb2
JA
2405 spin_unlock_irq(&ctx->completion_lock);
2406
8c838788 2407 io_cqring_ev_posted(ctx);
89723d0b 2408
4e88d6e7
JA
2409 if (ret < 0)
2410 req_set_fail_links(req);
ec9c02ad 2411 io_put_req_find_next(req, &nxt);
89723d0b
JA
2412 if (nxt)
2413 *workptr = &nxt->work;
221c5eb2
JA
2414}
2415
2416static int io_poll_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
2417 void *key)
2418{
e944475e 2419 struct io_poll_iocb *poll = wait->private;
221c5eb2
JA
2420 struct io_kiocb *req = container_of(poll, struct io_kiocb, poll);
2421 struct io_ring_ctx *ctx = req->ctx;
2422 __poll_t mask = key_to_poll(key);
8c838788 2423 unsigned long flags;
221c5eb2
JA
2424
2425 /* for instances that support it check for an event match first: */
8c838788
JA
2426 if (mask && !(mask & poll->events))
2427 return 0;
221c5eb2 2428
e944475e 2429 list_del_init(&poll->wait->entry);
221c5eb2 2430
7c9e7f0f
JA
2431 /*
2432 * Run completion inline if we can. We're using trylock here because
2433 * we are violating the completion_lock -> poll wq lock ordering.
2434 * If we have a link timeout we're going to need the completion_lock
2435 * for finalizing the request, mark us as having grabbed that already.
2436 */
8c838788 2437 if (mask && spin_trylock_irqsave(&ctx->completion_lock, flags)) {
78076bb6 2438 hash_del(&req->hash_node);
b0dd8a41 2439 io_poll_complete(req, mask, 0);
7c9e7f0f
JA
2440 req->flags |= REQ_F_COMP_LOCKED;
2441 io_put_req(req);
8c838788 2442 spin_unlock_irqrestore(&ctx->completion_lock, flags);
221c5eb2 2443
8c838788 2444 io_cqring_ev_posted(ctx);
8c838788 2445 } else {
a197f664 2446 io_queue_async_work(req);
221c5eb2
JA
2447 }
2448
221c5eb2
JA
2449 return 1;
2450}
2451
2452struct io_poll_table {
2453 struct poll_table_struct pt;
2454 struct io_kiocb *req;
2455 int error;
2456};
2457
2458static void io_poll_queue_proc(struct file *file, struct wait_queue_head *head,
2459 struct poll_table_struct *p)
2460{
2461 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
2462
2463 if (unlikely(pt->req->poll.head)) {
2464 pt->error = -EINVAL;
2465 return;
2466 }
2467
2468 pt->error = 0;
2469 pt->req->poll.head = head;
e944475e 2470 add_wait_queue(head, pt->req->poll.wait);
221c5eb2
JA
2471}
2472
eac406c6
JA
2473static void io_poll_req_insert(struct io_kiocb *req)
2474{
2475 struct io_ring_ctx *ctx = req->ctx;
78076bb6
JA
2476 struct hlist_head *list;
2477
2478 list = &ctx->cancel_hash[hash_long(req->user_data, ctx->cancel_hash_bits)];
2479 hlist_add_head(&req->hash_node, list);
eac406c6
JA
2480}
2481
89723d0b
JA
2482static int io_poll_add(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2483 struct io_kiocb **nxt)
221c5eb2
JA
2484{
2485 struct io_poll_iocb *poll = &req->poll;
2486 struct io_ring_ctx *ctx = req->ctx;
2487 struct io_poll_table ipt;
8c838788 2488 bool cancel = false;
221c5eb2
JA
2489 __poll_t mask;
2490 u16 events;
221c5eb2
JA
2491
2492 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
2493 return -EINVAL;
2494 if (sqe->addr || sqe->ioprio || sqe->off || sqe->len || sqe->buf_index)
2495 return -EINVAL;
09bb8394
JA
2496 if (!poll->file)
2497 return -EBADF;
221c5eb2 2498
e944475e
JA
2499 poll->wait = kmalloc(sizeof(*poll->wait), GFP_KERNEL);
2500 if (!poll->wait)
2501 return -ENOMEM;
2502
1a6b74fc 2503 req->io = NULL;
561fb04a 2504 INIT_IO_WORK(&req->work, io_poll_complete_work);
221c5eb2
JA
2505 events = READ_ONCE(sqe->poll_events);
2506 poll->events = demangle_poll(events) | EPOLLERR | EPOLLHUP;
78076bb6 2507 INIT_HLIST_NODE(&req->hash_node);
221c5eb2 2508
221c5eb2 2509 poll->head = NULL;
8c838788 2510 poll->done = false;
221c5eb2
JA
2511 poll->canceled = false;
2512
2513 ipt.pt._qproc = io_poll_queue_proc;
2514 ipt.pt._key = poll->events;
2515 ipt.req = req;
2516 ipt.error = -EINVAL; /* same as no support for IOCB_CMD_POLL */
2517
2518 /* initialized the list so that we can do list_empty checks */
e944475e
JA
2519 INIT_LIST_HEAD(&poll->wait->entry);
2520 init_waitqueue_func_entry(poll->wait, io_poll_wake);
2521 poll->wait->private = poll;
221c5eb2 2522
36703247
JA
2523 INIT_LIST_HEAD(&req->list);
2524
221c5eb2 2525 mask = vfs_poll(poll->file, &ipt.pt) & poll->events;
221c5eb2
JA
2526
2527 spin_lock_irq(&ctx->completion_lock);
8c838788
JA
2528 if (likely(poll->head)) {
2529 spin_lock(&poll->head->lock);
e944475e 2530 if (unlikely(list_empty(&poll->wait->entry))) {
8c838788
JA
2531 if (ipt.error)
2532 cancel = true;
2533 ipt.error = 0;
2534 mask = 0;
2535 }
2536 if (mask || ipt.error)
e944475e 2537 list_del_init(&poll->wait->entry);
8c838788
JA
2538 else if (cancel)
2539 WRITE_ONCE(poll->canceled, true);
2540 else if (!poll->done) /* actually waiting for an event */
eac406c6 2541 io_poll_req_insert(req);
8c838788
JA
2542 spin_unlock(&poll->head->lock);
2543 }
2544 if (mask) { /* no async, we'd stolen it */
221c5eb2 2545 ipt.error = 0;
b0dd8a41 2546 io_poll_complete(req, mask, 0);
221c5eb2 2547 }
221c5eb2
JA
2548 spin_unlock_irq(&ctx->completion_lock);
2549
8c838788
JA
2550 if (mask) {
2551 io_cqring_ev_posted(ctx);
ec9c02ad 2552 io_put_req_find_next(req, nxt);
221c5eb2 2553 }
8c838788 2554 return ipt.error;
221c5eb2
JA
2555}
2556
5262f567
JA
2557static enum hrtimer_restart io_timeout_fn(struct hrtimer *timer)
2558{
ad8a48ac
JA
2559 struct io_timeout_data *data = container_of(timer,
2560 struct io_timeout_data, timer);
2561 struct io_kiocb *req = data->req;
2562 struct io_ring_ctx *ctx = req->ctx;
5262f567
JA
2563 unsigned long flags;
2564
5262f567
JA
2565 atomic_inc(&ctx->cq_timeouts);
2566
2567 spin_lock_irqsave(&ctx->completion_lock, flags);
ef03681a 2568 /*
11365043
JA
2569 * We could be racing with timeout deletion. If the list is empty,
2570 * then timeout lookup already found it and will be handling it.
ef03681a 2571 */
842f9612 2572 if (!list_empty(&req->list)) {
11365043 2573 struct io_kiocb *prev;
5262f567 2574
11365043
JA
2575 /*
2576 * Adjust the reqs sequence before the current one because it
2577 * will consume a slot in the cq_ring and the the cq_tail
2578 * pointer will be increased, otherwise other timeout reqs may
2579 * return in advance without waiting for enough wait_nr.
2580 */
2581 prev = req;
2582 list_for_each_entry_continue_reverse(prev, &ctx->timeout_list, list)
2583 prev->sequence++;
11365043 2584 list_del_init(&req->list);
11365043 2585 }
5262f567 2586
78e19bbe 2587 io_cqring_fill_event(req, -ETIME);
5262f567
JA
2588 io_commit_cqring(ctx);
2589 spin_unlock_irqrestore(&ctx->completion_lock, flags);
2590
2591 io_cqring_ev_posted(ctx);
4e88d6e7 2592 req_set_fail_links(req);
5262f567
JA
2593 io_put_req(req);
2594 return HRTIMER_NORESTART;
2595}
2596
47f46768
JA
2597static int io_timeout_cancel(struct io_ring_ctx *ctx, __u64 user_data)
2598{
2599 struct io_kiocb *req;
2600 int ret = -ENOENT;
2601
2602 list_for_each_entry(req, &ctx->timeout_list, list) {
2603 if (user_data == req->user_data) {
2604 list_del_init(&req->list);
2605 ret = 0;
2606 break;
2607 }
2608 }
2609
2610 if (ret == -ENOENT)
2611 return ret;
2612
2d28390a 2613 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
47f46768
JA
2614 if (ret == -1)
2615 return -EALREADY;
2616
4e88d6e7 2617 req_set_fail_links(req);
47f46768
JA
2618 io_cqring_fill_event(req, -ECANCELED);
2619 io_put_req(req);
2620 return 0;
2621}
2622
11365043
JA
2623/*
2624 * Remove or update an existing timeout command
2625 */
2626static int io_timeout_remove(struct io_kiocb *req,
2627 const struct io_uring_sqe *sqe)
2628{
2629 struct io_ring_ctx *ctx = req->ctx;
11365043 2630 unsigned flags;
47f46768 2631 int ret;
11365043
JA
2632
2633 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
2634 return -EINVAL;
2635 if (sqe->flags || sqe->ioprio || sqe->buf_index || sqe->len)
2636 return -EINVAL;
2637 flags = READ_ONCE(sqe->timeout_flags);
2638 if (flags)
2639 return -EINVAL;
2640
11365043 2641 spin_lock_irq(&ctx->completion_lock);
47f46768 2642 ret = io_timeout_cancel(ctx, READ_ONCE(sqe->addr));
11365043 2643
47f46768 2644 io_cqring_fill_event(req, ret);
11365043
JA
2645 io_commit_cqring(ctx);
2646 spin_unlock_irq(&ctx->completion_lock);
5262f567 2647 io_cqring_ev_posted(ctx);
4e88d6e7
JA
2648 if (ret < 0)
2649 req_set_fail_links(req);
ec9c02ad 2650 io_put_req(req);
11365043 2651 return 0;
5262f567
JA
2652}
2653
2d28390a
JA
2654static int io_timeout_prep(struct io_kiocb *req, struct io_async_ctx *io,
2655 bool is_timeout_link)
5262f567 2656{
cf6fd4bd 2657 const struct io_uring_sqe *sqe = req->sqe;
ad8a48ac 2658 struct io_timeout_data *data;
a41525ab 2659 unsigned flags;
5262f567 2660
ad8a48ac 2661 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
5262f567 2662 return -EINVAL;
ad8a48ac 2663 if (sqe->ioprio || sqe->buf_index || sqe->len != 1)
a41525ab 2664 return -EINVAL;
2d28390a
JA
2665 if (sqe->off && is_timeout_link)
2666 return -EINVAL;
a41525ab
JA
2667 flags = READ_ONCE(sqe->timeout_flags);
2668 if (flags & ~IORING_TIMEOUT_ABS)
5262f567 2669 return -EINVAL;
bdf20073 2670
2d28390a 2671 data = &io->timeout;
ad8a48ac 2672 data->req = req;
ad8a48ac
JA
2673 req->flags |= REQ_F_TIMEOUT;
2674
2675 if (get_timespec64(&data->ts, u64_to_user_ptr(sqe->addr)))
5262f567
JA
2676 return -EFAULT;
2677
11365043 2678 if (flags & IORING_TIMEOUT_ABS)
ad8a48ac 2679 data->mode = HRTIMER_MODE_ABS;
11365043 2680 else
ad8a48ac 2681 data->mode = HRTIMER_MODE_REL;
11365043 2682
ad8a48ac 2683 hrtimer_init(&data->timer, CLOCK_MONOTONIC, data->mode);
2d28390a 2684 req->io = io;
ad8a48ac
JA
2685 return 0;
2686}
2687
2688static int io_timeout(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2689{
2690 unsigned count;
2691 struct io_ring_ctx *ctx = req->ctx;
2692 struct io_timeout_data *data;
2d28390a 2693 struct io_async_ctx *io;
ad8a48ac
JA
2694 struct list_head *entry;
2695 unsigned span = 0;
ad8a48ac 2696
2d28390a
JA
2697 io = req->io;
2698 if (!io) {
2699 int ret;
2700
2701 io = kmalloc(sizeof(*io), GFP_KERNEL);
2702 if (!io)
2703 return -ENOMEM;
2704 ret = io_timeout_prep(req, io, false);
2705 if (ret) {
2706 kfree(io);
2707 return ret;
2708 }
2709 }
2710 data = &req->io->timeout;
93bd25bb 2711
5262f567
JA
2712 /*
2713 * sqe->off holds how many events that need to occur for this
93bd25bb
JA
2714 * timeout event to be satisfied. If it isn't set, then this is
2715 * a pure timeout request, sequence isn't used.
5262f567
JA
2716 */
2717 count = READ_ONCE(sqe->off);
93bd25bb
JA
2718 if (!count) {
2719 req->flags |= REQ_F_TIMEOUT_NOSEQ;
2720 spin_lock_irq(&ctx->completion_lock);
2721 entry = ctx->timeout_list.prev;
2722 goto add;
2723 }
5262f567
JA
2724
2725 req->sequence = ctx->cached_sq_head + count - 1;
2d28390a 2726 data->seq_offset = count;
5262f567
JA
2727
2728 /*
2729 * Insertion sort, ensuring the first entry in the list is always
2730 * the one we need first.
2731 */
5262f567
JA
2732 spin_lock_irq(&ctx->completion_lock);
2733 list_for_each_prev(entry, &ctx->timeout_list) {
2734 struct io_kiocb *nxt = list_entry(entry, struct io_kiocb, list);
5da0fb1a 2735 unsigned nxt_sq_head;
2736 long long tmp, tmp_nxt;
2d28390a 2737 u32 nxt_offset = nxt->io->timeout.seq_offset;
5262f567 2738
93bd25bb
JA
2739 if (nxt->flags & REQ_F_TIMEOUT_NOSEQ)
2740 continue;
2741
5da0fb1a 2742 /*
2743 * Since cached_sq_head + count - 1 can overflow, use type long
2744 * long to store it.
2745 */
2746 tmp = (long long)ctx->cached_sq_head + count - 1;
cc42e0ac
PB
2747 nxt_sq_head = nxt->sequence - nxt_offset + 1;
2748 tmp_nxt = (long long)nxt_sq_head + nxt_offset - 1;
5da0fb1a 2749
2750 /*
2751 * cached_sq_head may overflow, and it will never overflow twice
2752 * once there is some timeout req still be valid.
2753 */
2754 if (ctx->cached_sq_head < nxt_sq_head)
8b07a65a 2755 tmp += UINT_MAX;
5da0fb1a 2756
a1f58ba4 2757 if (tmp > tmp_nxt)
5262f567 2758 break;
a1f58ba4 2759
2760 /*
2761 * Sequence of reqs after the insert one and itself should
2762 * be adjusted because each timeout req consumes a slot.
2763 */
2764 span++;
2765 nxt->sequence++;
5262f567 2766 }
a1f58ba4 2767 req->sequence -= span;
93bd25bb 2768add:
5262f567 2769 list_add(&req->list, entry);
ad8a48ac
JA
2770 data->timer.function = io_timeout_fn;
2771 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts), data->mode);
5262f567 2772 spin_unlock_irq(&ctx->completion_lock);
5262f567
JA
2773 return 0;
2774}
5262f567 2775
62755e35
JA
2776static bool io_cancel_cb(struct io_wq_work *work, void *data)
2777{
2778 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
2779
2780 return req->user_data == (unsigned long) data;
2781}
2782
e977d6d3 2783static int io_async_cancel_one(struct io_ring_ctx *ctx, void *sqe_addr)
62755e35 2784{
62755e35 2785 enum io_wq_cancel cancel_ret;
62755e35
JA
2786 int ret = 0;
2787
62755e35
JA
2788 cancel_ret = io_wq_cancel_cb(ctx->io_wq, io_cancel_cb, sqe_addr);
2789 switch (cancel_ret) {
2790 case IO_WQ_CANCEL_OK:
2791 ret = 0;
2792 break;
2793 case IO_WQ_CANCEL_RUNNING:
2794 ret = -EALREADY;
2795 break;
2796 case IO_WQ_CANCEL_NOTFOUND:
2797 ret = -ENOENT;
2798 break;
2799 }
2800
e977d6d3
JA
2801 return ret;
2802}
2803
47f46768
JA
2804static void io_async_find_and_cancel(struct io_ring_ctx *ctx,
2805 struct io_kiocb *req, __u64 sqe_addr,
b0dd8a41 2806 struct io_kiocb **nxt, int success_ret)
47f46768
JA
2807{
2808 unsigned long flags;
2809 int ret;
2810
2811 ret = io_async_cancel_one(ctx, (void *) (unsigned long) sqe_addr);
2812 if (ret != -ENOENT) {
2813 spin_lock_irqsave(&ctx->completion_lock, flags);
2814 goto done;
2815 }
2816
2817 spin_lock_irqsave(&ctx->completion_lock, flags);
2818 ret = io_timeout_cancel(ctx, sqe_addr);
2819 if (ret != -ENOENT)
2820 goto done;
2821 ret = io_poll_cancel(ctx, sqe_addr);
2822done:
b0dd8a41
JA
2823 if (!ret)
2824 ret = success_ret;
47f46768
JA
2825 io_cqring_fill_event(req, ret);
2826 io_commit_cqring(ctx);
2827 spin_unlock_irqrestore(&ctx->completion_lock, flags);
2828 io_cqring_ev_posted(ctx);
2829
4e88d6e7
JA
2830 if (ret < 0)
2831 req_set_fail_links(req);
47f46768
JA
2832 io_put_req_find_next(req, nxt);
2833}
2834
e977d6d3
JA
2835static int io_async_cancel(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2836 struct io_kiocb **nxt)
2837{
2838 struct io_ring_ctx *ctx = req->ctx;
e977d6d3
JA
2839
2840 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
2841 return -EINVAL;
2842 if (sqe->flags || sqe->ioprio || sqe->off || sqe->len ||
2843 sqe->cancel_flags)
2844 return -EINVAL;
2845
b0dd8a41 2846 io_async_find_and_cancel(ctx, req, READ_ONCE(sqe->addr), nxt, 0);
5262f567
JA
2847 return 0;
2848}
2849
f67676d1
JA
2850static int io_req_defer_prep(struct io_kiocb *req, struct io_async_ctx *io)
2851{
2852 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
2853 struct iov_iter iter;
2854 ssize_t ret;
2855
2856 memcpy(&io->sqe, req->sqe, sizeof(io->sqe));
2857 req->sqe = &io->sqe;
2858
2859 switch (io->sqe.opcode) {
2860 case IORING_OP_READV:
2861 case IORING_OP_READ_FIXED:
2862 ret = io_read_prep(req, &iovec, &iter, true);
2863 break;
2864 case IORING_OP_WRITEV:
2865 case IORING_OP_WRITE_FIXED:
2866 ret = io_write_prep(req, &iovec, &iter, true);
2867 break;
03b1230c
JA
2868 case IORING_OP_SENDMSG:
2869 ret = io_sendmsg_prep(req, io);
2870 break;
2871 case IORING_OP_RECVMSG:
2872 ret = io_recvmsg_prep(req, io);
2873 break;
f499a021
JA
2874 case IORING_OP_CONNECT:
2875 ret = io_connect_prep(req, io);
2876 break;
2d28390a
JA
2877 case IORING_OP_TIMEOUT:
2878 return io_timeout_prep(req, io, false);
2879 case IORING_OP_LINK_TIMEOUT:
2880 return io_timeout_prep(req, io, true);
f67676d1
JA
2881 default:
2882 req->io = io;
2883 return 0;
2884 }
2885
2886 if (ret < 0)
2887 return ret;
2888
2889 req->io = io;
2890 io_req_map_io(req, ret, iovec, inline_vecs, &iter);
2891 return 0;
2892}
2893
a197f664 2894static int io_req_defer(struct io_kiocb *req)
de0617e4 2895{
a197f664 2896 struct io_ring_ctx *ctx = req->ctx;
1a6b74fc 2897 struct io_async_ctx *io;
f67676d1 2898 int ret;
de0617e4 2899
9d858b21
BL
2900 /* Still need defer if there is pending req in defer list. */
2901 if (!req_need_defer(req) && list_empty(&ctx->defer_list))
de0617e4
JA
2902 return 0;
2903
1a6b74fc
JA
2904 io = kmalloc(sizeof(*io), GFP_KERNEL);
2905 if (!io)
de0617e4
JA
2906 return -EAGAIN;
2907
2d28390a
JA
2908 ret = io_req_defer_prep(req, io);
2909 if (ret < 0) {
2910 kfree(io);
2911 return ret;
2912 }
2913
de0617e4 2914 spin_lock_irq(&ctx->completion_lock);
9d858b21 2915 if (!req_need_defer(req) && list_empty(&ctx->defer_list)) {
de0617e4 2916 spin_unlock_irq(&ctx->completion_lock);
de0617e4
JA
2917 return 0;
2918 }
2919
915967f6 2920 trace_io_uring_defer(ctx, req, req->user_data);
de0617e4
JA
2921 list_add_tail(&req->list, &ctx->defer_list);
2922 spin_unlock_irq(&ctx->completion_lock);
2923 return -EIOCBQUEUED;
2924}
2925
f9bd67f6 2926__attribute__((nonnull))
d732447f
PB
2927static int io_issue_sqe(struct io_kiocb *req, struct io_kiocb **nxt,
2928 bool force_nonblock)
2b188cc1 2929{
e0c5c576 2930 int ret, opcode;
a197f664 2931 struct io_ring_ctx *ctx = req->ctx;
2b188cc1 2932
cf6fd4bd 2933 opcode = READ_ONCE(req->sqe->opcode);
2b188cc1
JA
2934 switch (opcode) {
2935 case IORING_OP_NOP:
78e19bbe 2936 ret = io_nop(req);
2b188cc1
JA
2937 break;
2938 case IORING_OP_READV:
cf6fd4bd 2939 if (unlikely(req->sqe->buf_index))
edafccee 2940 return -EINVAL;
267bc904 2941 ret = io_read(req, nxt, force_nonblock);
2b188cc1
JA
2942 break;
2943 case IORING_OP_WRITEV:
cf6fd4bd 2944 if (unlikely(req->sqe->buf_index))
edafccee 2945 return -EINVAL;
267bc904 2946 ret = io_write(req, nxt, force_nonblock);
edafccee
JA
2947 break;
2948 case IORING_OP_READ_FIXED:
267bc904 2949 ret = io_read(req, nxt, force_nonblock);
edafccee
JA
2950 break;
2951 case IORING_OP_WRITE_FIXED:
267bc904 2952 ret = io_write(req, nxt, force_nonblock);
2b188cc1 2953 break;
c992fe29 2954 case IORING_OP_FSYNC:
cf6fd4bd 2955 ret = io_fsync(req, req->sqe, nxt, force_nonblock);
c992fe29 2956 break;
221c5eb2 2957 case IORING_OP_POLL_ADD:
cf6fd4bd 2958 ret = io_poll_add(req, req->sqe, nxt);
221c5eb2
JA
2959 break;
2960 case IORING_OP_POLL_REMOVE:
cf6fd4bd 2961 ret = io_poll_remove(req, req->sqe);
221c5eb2 2962 break;
5d17b4a4 2963 case IORING_OP_SYNC_FILE_RANGE:
cf6fd4bd 2964 ret = io_sync_file_range(req, req->sqe, nxt, force_nonblock);
5d17b4a4 2965 break;
0fa03c62 2966 case IORING_OP_SENDMSG:
cf6fd4bd 2967 ret = io_sendmsg(req, req->sqe, nxt, force_nonblock);
0fa03c62 2968 break;
aa1fa28f 2969 case IORING_OP_RECVMSG:
cf6fd4bd 2970 ret = io_recvmsg(req, req->sqe, nxt, force_nonblock);
aa1fa28f 2971 break;
5262f567 2972 case IORING_OP_TIMEOUT:
cf6fd4bd 2973 ret = io_timeout(req, req->sqe);
5262f567 2974 break;
11365043 2975 case IORING_OP_TIMEOUT_REMOVE:
cf6fd4bd 2976 ret = io_timeout_remove(req, req->sqe);
11365043 2977 break;
17f2fe35 2978 case IORING_OP_ACCEPT:
cf6fd4bd 2979 ret = io_accept(req, req->sqe, nxt, force_nonblock);
17f2fe35 2980 break;
f8e85cf2 2981 case IORING_OP_CONNECT:
cf6fd4bd 2982 ret = io_connect(req, req->sqe, nxt, force_nonblock);
f8e85cf2 2983 break;
62755e35 2984 case IORING_OP_ASYNC_CANCEL:
cf6fd4bd 2985 ret = io_async_cancel(req, req->sqe, nxt);
62755e35 2986 break;
2b188cc1
JA
2987 default:
2988 ret = -EINVAL;
2989 break;
2990 }
2991
def596e9
JA
2992 if (ret)
2993 return ret;
2994
2995 if (ctx->flags & IORING_SETUP_IOPOLL) {
9e645e11 2996 if (req->result == -EAGAIN)
def596e9
JA
2997 return -EAGAIN;
2998
2999 /* workqueue context doesn't hold uring_lock, grab it now */
cf6fd4bd 3000 if (req->in_async)
def596e9
JA
3001 mutex_lock(&ctx->uring_lock);
3002 io_iopoll_req_issued(req);
cf6fd4bd 3003 if (req->in_async)
def596e9
JA
3004 mutex_unlock(&ctx->uring_lock);
3005 }
3006
3007 return 0;
2b188cc1
JA
3008}
3009
b76da70f
JA
3010static void io_link_work_cb(struct io_wq_work **workptr)
3011{
3012 struct io_wq_work *work = *workptr;
3013 struct io_kiocb *link = work->data;
3014
3015 io_queue_linked_timeout(link);
3016 work->func = io_wq_submit_work;
3017}
3018
561fb04a 3019static void io_wq_submit_work(struct io_wq_work **workptr)
2b188cc1 3020{
561fb04a 3021 struct io_wq_work *work = *workptr;
2b188cc1 3022 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
561fb04a
JA
3023 struct io_kiocb *nxt = NULL;
3024 int ret = 0;
2b188cc1 3025
561fb04a
JA
3026 /* Ensure we clear previously set non-block flag */
3027 req->rw.ki_flags &= ~IOCB_NOWAIT;
2b188cc1 3028
561fb04a
JA
3029 if (work->flags & IO_WQ_WORK_CANCEL)
3030 ret = -ECANCELED;
31b51510 3031
561fb04a 3032 if (!ret) {
cf6fd4bd
PB
3033 req->has_user = (work->flags & IO_WQ_WORK_HAS_MM) != 0;
3034 req->in_async = true;
561fb04a 3035 do {
d732447f 3036 ret = io_issue_sqe(req, &nxt, false);
561fb04a
JA
3037 /*
3038 * We can get EAGAIN for polled IO even though we're
3039 * forcing a sync submission from here, since we can't
3040 * wait for request slots on the block side.
3041 */
3042 if (ret != -EAGAIN)
3043 break;
3044 cond_resched();
3045 } while (1);
3046 }
31b51510 3047
561fb04a 3048 /* drop submission reference */
ec9c02ad 3049 io_put_req(req);
817869d2 3050
561fb04a 3051 if (ret) {
4e88d6e7 3052 req_set_fail_links(req);
78e19bbe 3053 io_cqring_add_event(req, ret);
817869d2 3054 io_put_req(req);
edafccee 3055 }
2b188cc1 3056
561fb04a
JA
3057 /* if a dependent link is ready, pass it back */
3058 if (!ret && nxt) {
94ae5e77
JA
3059 struct io_kiocb *link;
3060
3061 io_prep_async_work(nxt, &link);
561fb04a 3062 *workptr = &nxt->work;
b76da70f
JA
3063 if (link) {
3064 nxt->work.flags |= IO_WQ_WORK_CB;
3065 nxt->work.func = io_link_work_cb;
3066 nxt->work.data = link;
3067 }
31b51510 3068 }
2b188cc1
JA
3069}
3070
09bb8394
JA
3071static bool io_op_needs_file(const struct io_uring_sqe *sqe)
3072{
3073 int op = READ_ONCE(sqe->opcode);
3074
3075 switch (op) {
3076 case IORING_OP_NOP:
3077 case IORING_OP_POLL_REMOVE:
5683e540 3078 case IORING_OP_TIMEOUT:
a320e9fa
PB
3079 case IORING_OP_TIMEOUT_REMOVE:
3080 case IORING_OP_ASYNC_CANCEL:
3081 case IORING_OP_LINK_TIMEOUT:
09bb8394
JA
3082 return false;
3083 default:
3084 return true;
3085 }
3086}
3087
65e19f54
JA
3088static inline struct file *io_file_from_index(struct io_ring_ctx *ctx,
3089 int index)
3090{
3091 struct fixed_file_table *table;
3092
3093 table = &ctx->file_table[index >> IORING_FILE_TABLE_SHIFT];
3094 return table->files[index & IORING_FILE_TABLE_MASK];
3095}
3096
a197f664 3097static int io_req_set_file(struct io_submit_state *state, struct io_kiocb *req)
09bb8394 3098{
a197f664 3099 struct io_ring_ctx *ctx = req->ctx;
09bb8394
JA
3100 unsigned flags;
3101 int fd;
3102
cf6fd4bd
PB
3103 flags = READ_ONCE(req->sqe->flags);
3104 fd = READ_ONCE(req->sqe->fd);
09bb8394 3105
4fe2c963 3106 if (flags & IOSQE_IO_DRAIN)
de0617e4 3107 req->flags |= REQ_F_IO_DRAIN;
de0617e4 3108
cf6fd4bd 3109 if (!io_op_needs_file(req->sqe))
09bb8394 3110 return 0;
09bb8394
JA
3111
3112 if (flags & IOSQE_FIXED_FILE) {
65e19f54 3113 if (unlikely(!ctx->file_table ||
09bb8394
JA
3114 (unsigned) fd >= ctx->nr_user_files))
3115 return -EBADF;
b7620121 3116 fd = array_index_nospec(fd, ctx->nr_user_files);
65e19f54
JA
3117 req->file = io_file_from_index(ctx, fd);
3118 if (!req->file)
08a45173 3119 return -EBADF;
09bb8394
JA
3120 req->flags |= REQ_F_FIXED_FILE;
3121 } else {
cf6fd4bd 3122 if (req->needs_fixed_file)
09bb8394 3123 return -EBADF;
c826bd7a 3124 trace_io_uring_file_get(ctx, fd);
09bb8394
JA
3125 req->file = io_file_get(state, fd);
3126 if (unlikely(!req->file))
3127 return -EBADF;
3128 }
3129
3130 return 0;
3131}
3132
a197f664 3133static int io_grab_files(struct io_kiocb *req)
fcb323cc
JA
3134{
3135 int ret = -EBADF;
a197f664 3136 struct io_ring_ctx *ctx = req->ctx;
fcb323cc
JA
3137
3138 rcu_read_lock();
3139 spin_lock_irq(&ctx->inflight_lock);
3140 /*
3141 * We use the f_ops->flush() handler to ensure that we can flush
3142 * out work accessing these files if the fd is closed. Check if
3143 * the fd has changed since we started down this path, and disallow
3144 * this operation if it has.
3145 */
cf6fd4bd 3146 if (fcheck(req->ring_fd) == req->ring_file) {
fcb323cc
JA
3147 list_add(&req->inflight_entry, &ctx->inflight_list);
3148 req->flags |= REQ_F_INFLIGHT;
3149 req->work.files = current->files;
3150 ret = 0;
3151 }
3152 spin_unlock_irq(&ctx->inflight_lock);
3153 rcu_read_unlock();
3154
3155 return ret;
3156}
3157
2665abfd 3158static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer)
2b188cc1 3159{
ad8a48ac
JA
3160 struct io_timeout_data *data = container_of(timer,
3161 struct io_timeout_data, timer);
3162 struct io_kiocb *req = data->req;
2665abfd
JA
3163 struct io_ring_ctx *ctx = req->ctx;
3164 struct io_kiocb *prev = NULL;
3165 unsigned long flags;
2665abfd
JA
3166
3167 spin_lock_irqsave(&ctx->completion_lock, flags);
3168
3169 /*
3170 * We don't expect the list to be empty, that will only happen if we
3171 * race with the completion of the linked work.
3172 */
4493233e
PB
3173 if (!list_empty(&req->link_list)) {
3174 prev = list_entry(req->link_list.prev, struct io_kiocb,
3175 link_list);
5d960724 3176 if (refcount_inc_not_zero(&prev->refs)) {
4493233e 3177 list_del_init(&req->link_list);
5d960724
JA
3178 prev->flags &= ~REQ_F_LINK_TIMEOUT;
3179 } else
76a46e06 3180 prev = NULL;
2665abfd
JA
3181 }
3182
3183 spin_unlock_irqrestore(&ctx->completion_lock, flags);
3184
3185 if (prev) {
4e88d6e7 3186 req_set_fail_links(prev);
b0dd8a41
JA
3187 io_async_find_and_cancel(ctx, req, prev->user_data, NULL,
3188 -ETIME);
76a46e06 3189 io_put_req(prev);
47f46768
JA
3190 } else {
3191 io_cqring_add_event(req, -ETIME);
3192 io_put_req(req);
2665abfd 3193 }
2665abfd
JA
3194 return HRTIMER_NORESTART;
3195}
3196
ad8a48ac 3197static void io_queue_linked_timeout(struct io_kiocb *req)
2665abfd 3198{
76a46e06 3199 struct io_ring_ctx *ctx = req->ctx;
2665abfd 3200
76a46e06
JA
3201 /*
3202 * If the list is now empty, then our linked request finished before
3203 * we got a chance to setup the timer
3204 */
3205 spin_lock_irq(&ctx->completion_lock);
4493233e 3206 if (!list_empty(&req->link_list)) {
2d28390a 3207 struct io_timeout_data *data = &req->io->timeout;
94ae5e77 3208
ad8a48ac
JA
3209 data->timer.function = io_link_timeout_fn;
3210 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts),
3211 data->mode);
2665abfd 3212 }
76a46e06 3213 spin_unlock_irq(&ctx->completion_lock);
2665abfd 3214
2665abfd 3215 /* drop submission reference */
76a46e06
JA
3216 io_put_req(req);
3217}
2665abfd 3218
ad8a48ac 3219static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req)
2665abfd
JA
3220{
3221 struct io_kiocb *nxt;
3222
3223 if (!(req->flags & REQ_F_LINK))
3224 return NULL;
3225
4493233e
PB
3226 nxt = list_first_entry_or_null(&req->link_list, struct io_kiocb,
3227 link_list);
cf6fd4bd 3228 if (!nxt || nxt->sqe->opcode != IORING_OP_LINK_TIMEOUT)
76a46e06 3229 return NULL;
2665abfd 3230
76a46e06 3231 req->flags |= REQ_F_LINK_TIMEOUT;
76a46e06 3232 return nxt;
2665abfd
JA
3233}
3234
0e0702da 3235static void __io_queue_sqe(struct io_kiocb *req)
2b188cc1 3236{
f9bd67f6
PB
3237 struct io_kiocb *linked_timeout = io_prep_linked_timeout(req);
3238 struct io_kiocb *nxt = NULL;
e0c5c576 3239 int ret;
2b188cc1 3240
f9bd67f6
PB
3241 ret = io_issue_sqe(req, &nxt, true);
3242 if (nxt)
3243 io_queue_async_work(nxt);
491381ce
JA
3244
3245 /*
3246 * We async punt it if the file wasn't marked NOWAIT, or if the file
3247 * doesn't support non-blocking read/write attempts
3248 */
3249 if (ret == -EAGAIN && (!(req->flags & REQ_F_NOWAIT) ||
3250 (req->flags & REQ_F_MUST_PUNT))) {
bbad27b2
PB
3251 if (req->work.flags & IO_WQ_WORK_NEEDS_FILES) {
3252 ret = io_grab_files(req);
3253 if (ret)
3254 goto err;
2b188cc1 3255 }
bbad27b2
PB
3256
3257 /*
3258 * Queued up for async execution, worker will release
3259 * submit reference when the iocb is actually submitted.
3260 */
3261 io_queue_async_work(req);
3262 return;
2b188cc1 3263 }
e65ef56d 3264
fcb323cc 3265err:
76a46e06 3266 /* drop submission reference */
ec9c02ad 3267 io_put_req(req);
e65ef56d 3268
f9bd67f6 3269 if (linked_timeout) {
76a46e06 3270 if (!ret)
f9bd67f6 3271 io_queue_linked_timeout(linked_timeout);
76a46e06 3272 else
f9bd67f6 3273 io_put_req(linked_timeout);
76a46e06
JA
3274 }
3275
e65ef56d 3276 /* and drop final reference, if we failed */
9e645e11 3277 if (ret) {
78e19bbe 3278 io_cqring_add_event(req, ret);
4e88d6e7 3279 req_set_fail_links(req);
e65ef56d 3280 io_put_req(req);
9e645e11 3281 }
2b188cc1
JA
3282}
3283
0e0702da 3284static void io_queue_sqe(struct io_kiocb *req)
4fe2c963
JL
3285{
3286 int ret;
3287
1b4a51b6
PB
3288 if (unlikely(req->ctx->drain_next)) {
3289 req->flags |= REQ_F_IO_DRAIN;
3290 req->ctx->drain_next = false;
3291 }
3292 req->ctx->drain_next = (req->flags & REQ_F_DRAIN_LINK);
3293
a197f664 3294 ret = io_req_defer(req);
4fe2c963
JL
3295 if (ret) {
3296 if (ret != -EIOCBQUEUED) {
78e19bbe 3297 io_cqring_add_event(req, ret);
4e88d6e7 3298 req_set_fail_links(req);
78e19bbe 3299 io_double_put_req(req);
4fe2c963 3300 }
0e0702da
JA
3301 } else
3302 __io_queue_sqe(req);
4fe2c963
JL
3303}
3304
1b4a51b6 3305static inline void io_queue_link_head(struct io_kiocb *req)
4fe2c963 3306{
94ae5e77 3307 if (unlikely(req->flags & REQ_F_FAIL_LINK)) {
1b4a51b6
PB
3308 io_cqring_add_event(req, -ECANCELED);
3309 io_double_put_req(req);
3310 } else
0e0702da 3311 io_queue_sqe(req);
4fe2c963
JL
3312}
3313
1b4a51b6 3314
4e88d6e7
JA
3315#define SQE_VALID_FLAGS (IOSQE_FIXED_FILE|IOSQE_IO_DRAIN|IOSQE_IO_LINK| \
3316 IOSQE_IO_HARDLINK)
9e645e11 3317
2e6e1fde 3318static bool io_submit_sqe(struct io_kiocb *req, struct io_submit_state *state,
a197f664 3319 struct io_kiocb **link)
9e645e11 3320{
a197f664 3321 struct io_ring_ctx *ctx = req->ctx;
9e645e11
JA
3322 int ret;
3323
cf6fd4bd 3324 req->user_data = req->sqe->user_data;
78e19bbe 3325
9e645e11 3326 /* enforce forwards compatibility on users */
cf6fd4bd 3327 if (unlikely(req->sqe->flags & ~SQE_VALID_FLAGS)) {
9e645e11 3328 ret = -EINVAL;
196be95c 3329 goto err_req;
9e645e11
JA
3330 }
3331
a197f664 3332 ret = io_req_set_file(state, req);
9e645e11
JA
3333 if (unlikely(ret)) {
3334err_req:
78e19bbe
JA
3335 io_cqring_add_event(req, ret);
3336 io_double_put_req(req);
2e6e1fde 3337 return false;
9e645e11
JA
3338 }
3339
9e645e11
JA
3340 /*
3341 * If we already have a head request, queue this one for async
3342 * submittal once the head completes. If we don't have a head but
3343 * IOSQE_IO_LINK is set in the sqe, start a new head. This one will be
3344 * submitted sync once the chain is complete. If none of those
3345 * conditions are true (normal request), then just queue it.
3346 */
3347 if (*link) {
3348 struct io_kiocb *prev = *link;
1a6b74fc 3349 struct io_async_ctx *io;
9e645e11 3350
cf6fd4bd 3351 if (req->sqe->flags & IOSQE_IO_DRAIN)
1b4a51b6
PB
3352 (*link)->flags |= REQ_F_DRAIN_LINK | REQ_F_IO_DRAIN;
3353
4e88d6e7
JA
3354 if (req->sqe->flags & IOSQE_IO_HARDLINK)
3355 req->flags |= REQ_F_HARDLINK;
3356
1a6b74fc
JA
3357 io = kmalloc(sizeof(*io), GFP_KERNEL);
3358 if (!io) {
9e645e11
JA
3359 ret = -EAGAIN;
3360 goto err_req;
3361 }
3362
f67676d1 3363 ret = io_req_defer_prep(req, io);
2d28390a
JA
3364 if (ret) {
3365 kfree(io);
4e88d6e7 3366 /* fail even hard links since we don't submit */
2d28390a 3367 prev->flags |= REQ_F_FAIL_LINK;
f67676d1 3368 goto err_req;
2d28390a 3369 }
c826bd7a 3370 trace_io_uring_link(ctx, req, prev);
4493233e 3371 list_add_tail(&req->link_list, &prev->link_list);
4e88d6e7 3372 } else if (req->sqe->flags & (IOSQE_IO_LINK|IOSQE_IO_HARDLINK)) {
9e645e11 3373 req->flags |= REQ_F_LINK;
4e88d6e7
JA
3374 if (req->sqe->flags & IOSQE_IO_HARDLINK)
3375 req->flags |= REQ_F_HARDLINK;
9e645e11 3376
9e645e11
JA
3377 INIT_LIST_HEAD(&req->link_list);
3378 *link = req;
3379 } else {
a197f664 3380 io_queue_sqe(req);
9e645e11 3381 }
2e6e1fde
PB
3382
3383 return true;
9e645e11
JA
3384}
3385
9a56a232
JA
3386/*
3387 * Batched submission is done, ensure local IO is flushed out.
3388 */
3389static void io_submit_state_end(struct io_submit_state *state)
3390{
3391 blk_finish_plug(&state->plug);
3d6770fb 3392 io_file_put(state);
2579f913
JA
3393 if (state->free_reqs)
3394 kmem_cache_free_bulk(req_cachep, state->free_reqs,
3395 &state->reqs[state->cur_req]);
9a56a232
JA
3396}
3397
3398/*
3399 * Start submission side cache.
3400 */
3401static void io_submit_state_start(struct io_submit_state *state,
22efde59 3402 unsigned int max_ios)
9a56a232
JA
3403{
3404 blk_start_plug(&state->plug);
2579f913 3405 state->free_reqs = 0;
9a56a232
JA
3406 state->file = NULL;
3407 state->ios_left = max_ios;
3408}
3409
2b188cc1
JA
3410static void io_commit_sqring(struct io_ring_ctx *ctx)
3411{
75b28aff 3412 struct io_rings *rings = ctx->rings;
2b188cc1 3413
75b28aff 3414 if (ctx->cached_sq_head != READ_ONCE(rings->sq.head)) {
2b188cc1
JA
3415 /*
3416 * Ensure any loads from the SQEs are done at this point,
3417 * since once we write the new head, the application could
3418 * write new data to them.
3419 */
75b28aff 3420 smp_store_release(&rings->sq.head, ctx->cached_sq_head);
2b188cc1
JA
3421 }
3422}
3423
2b188cc1
JA
3424/*
3425 * Fetch an sqe, if one is available. Note that s->sqe will point to memory
3426 * that is mapped by userspace. This means that care needs to be taken to
3427 * ensure that reads are stable, as we cannot rely on userspace always
3428 * being a good citizen. If members of the sqe are validated and then later
3429 * used, it's important that those reads are done through READ_ONCE() to
3430 * prevent a re-load down the line.
3431 */
cf6fd4bd 3432static bool io_get_sqring(struct io_ring_ctx *ctx, struct io_kiocb *req)
2b188cc1 3433{
75b28aff
HV
3434 struct io_rings *rings = ctx->rings;
3435 u32 *sq_array = ctx->sq_array;
2b188cc1
JA
3436 unsigned head;
3437
3438 /*
3439 * The cached sq head (or cq tail) serves two purposes:
3440 *
3441 * 1) allows us to batch the cost of updating the user visible
3442 * head updates.
3443 * 2) allows the kernel side to track the head on its own, even
3444 * though the application is the one updating it.
3445 */
3446 head = ctx->cached_sq_head;
e523a29c 3447 /* make sure SQ entry isn't read before tail */
9835d6fa 3448 if (unlikely(head == smp_load_acquire(&rings->sq.tail)))
2b188cc1
JA
3449 return false;
3450
75b28aff 3451 head = READ_ONCE(sq_array[head & ctx->sq_mask]);
9835d6fa 3452 if (likely(head < ctx->sq_entries)) {
cf6fd4bd
PB
3453 /*
3454 * All io need record the previous position, if LINK vs DARIN,
3455 * it can be used to mark the position of the first IO in the
3456 * link list.
3457 */
3458 req->sequence = ctx->cached_sq_head;
3459 req->sqe = &ctx->sq_sqes[head];
2b188cc1
JA
3460 ctx->cached_sq_head++;
3461 return true;
3462 }
3463
3464 /* drop invalid entries */
3465 ctx->cached_sq_head++;
498ccd9e
JA
3466 ctx->cached_sq_dropped++;
3467 WRITE_ONCE(rings->sq_dropped, ctx->cached_sq_dropped);
2b188cc1
JA
3468 return false;
3469}
3470
fb5ccc98 3471static int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr,
ae9428ca
PB
3472 struct file *ring_file, int ring_fd,
3473 struct mm_struct **mm, bool async)
6c271ce2
JA
3474{
3475 struct io_submit_state state, *statep = NULL;
9e645e11 3476 struct io_kiocb *link = NULL;
9e645e11 3477 int i, submitted = 0;
95a1b3ff 3478 bool mm_fault = false;
6c271ce2 3479
c4a2ed72
JA
3480 /* if we have a backlog and couldn't flush it all, return BUSY */
3481 if (!list_empty(&ctx->cq_overflow_list) &&
3482 !io_cqring_overflow_flush(ctx, false))
1d7bb1d5 3483 return -EBUSY;
6c271ce2
JA
3484
3485 if (nr > IO_PLUG_THRESHOLD) {
22efde59 3486 io_submit_state_start(&state, nr);
6c271ce2
JA
3487 statep = &state;
3488 }
3489
3490 for (i = 0; i < nr; i++) {
196be95c 3491 struct io_kiocb *req;
50585b9a 3492 unsigned int sqe_flags;
fb5ccc98 3493
196be95c
PB
3494 req = io_get_req(ctx, statep);
3495 if (unlikely(!req)) {
3496 if (!submitted)
3497 submitted = -EAGAIN;
fb5ccc98 3498 break;
196be95c 3499 }
cf6fd4bd 3500 if (!io_get_sqring(ctx, req)) {
196be95c
PB
3501 __io_free_req(req);
3502 break;
3503 }
fb5ccc98 3504
cf6fd4bd 3505 if (io_sqe_needs_user(req->sqe) && !*mm) {
95a1b3ff
PB
3506 mm_fault = mm_fault || !mmget_not_zero(ctx->sqo_mm);
3507 if (!mm_fault) {
3508 use_mm(ctx->sqo_mm);
3509 *mm = ctx->sqo_mm;
3510 }
9e645e11 3511 }
9e645e11 3512
2e6e1fde 3513 submitted++;
cf6fd4bd 3514 sqe_flags = req->sqe->flags;
50585b9a 3515
cf6fd4bd
PB
3516 req->ring_file = ring_file;
3517 req->ring_fd = ring_fd;
3518 req->has_user = *mm != NULL;
3519 req->in_async = async;
3520 req->needs_fixed_file = async;
3521 trace_io_uring_submit_sqe(ctx, req->sqe->user_data,
50585b9a 3522 true, async);
2e6e1fde
PB
3523 if (!io_submit_sqe(req, statep, &link))
3524 break;
e5eb6366
PB
3525 /*
3526 * If previous wasn't linked and we have a linked command,
3527 * that's the end of the chain. Submit the previous link.
3528 */
50585b9a 3529 if (!(sqe_flags & IOSQE_IO_LINK) && link) {
1b4a51b6 3530 io_queue_link_head(link);
e5eb6366 3531 link = NULL;
6c271ce2 3532 }
6c271ce2
JA
3533 }
3534
9e645e11 3535 if (link)
1b4a51b6 3536 io_queue_link_head(link);
6c271ce2
JA
3537 if (statep)
3538 io_submit_state_end(&state);
3539
ae9428ca
PB
3540 /* Commit SQ ring head once we've consumed and submitted all SQEs */
3541 io_commit_sqring(ctx);
3542
6c271ce2
JA
3543 return submitted;
3544}
3545
3546static int io_sq_thread(void *data)
3547{
6c271ce2
JA
3548 struct io_ring_ctx *ctx = data;
3549 struct mm_struct *cur_mm = NULL;
181e448d 3550 const struct cred *old_cred;
6c271ce2
JA
3551 mm_segment_t old_fs;
3552 DEFINE_WAIT(wait);
3553 unsigned inflight;
3554 unsigned long timeout;
c1edbf5f 3555 int ret;
6c271ce2 3556
206aefde 3557 complete(&ctx->completions[1]);
a4c0b3de 3558
6c271ce2
JA
3559 old_fs = get_fs();
3560 set_fs(USER_DS);
181e448d 3561 old_cred = override_creds(ctx->creds);
6c271ce2 3562
c1edbf5f 3563 ret = timeout = inflight = 0;
2bbcd6d3 3564 while (!kthread_should_park()) {
fb5ccc98 3565 unsigned int to_submit;
6c271ce2
JA
3566
3567 if (inflight) {
3568 unsigned nr_events = 0;
3569
3570 if (ctx->flags & IORING_SETUP_IOPOLL) {
2b2ed975
JA
3571 /*
3572 * inflight is the count of the maximum possible
3573 * entries we submitted, but it can be smaller
3574 * if we dropped some of them. If we don't have
3575 * poll entries available, then we know that we
3576 * have nothing left to poll for. Reset the
3577 * inflight count to zero in that case.
3578 */
3579 mutex_lock(&ctx->uring_lock);
3580 if (!list_empty(&ctx->poll_list))
3581 __io_iopoll_check(ctx, &nr_events, 0);
3582 else
3583 inflight = 0;
3584 mutex_unlock(&ctx->uring_lock);
6c271ce2
JA
3585 } else {
3586 /*
3587 * Normal IO, just pretend everything completed.
3588 * We don't have to poll completions for that.
3589 */
3590 nr_events = inflight;
3591 }
3592
3593 inflight -= nr_events;
3594 if (!inflight)
3595 timeout = jiffies + ctx->sq_thread_idle;
3596 }
3597
fb5ccc98 3598 to_submit = io_sqring_entries(ctx);
c1edbf5f
JA
3599
3600 /*
3601 * If submit got -EBUSY, flag us as needing the application
3602 * to enter the kernel to reap and flush events.
3603 */
3604 if (!to_submit || ret == -EBUSY) {
6c271ce2
JA
3605 /*
3606 * We're polling. If we're within the defined idle
3607 * period, then let us spin without work before going
c1edbf5f
JA
3608 * to sleep. The exception is if we got EBUSY doing
3609 * more IO, we should wait for the application to
3610 * reap events and wake us up.
6c271ce2 3611 */
c1edbf5f
JA
3612 if (inflight ||
3613 (!time_after(jiffies, timeout) && ret != -EBUSY)) {
9831a90c 3614 cond_resched();
6c271ce2
JA
3615 continue;
3616 }
3617
3618 /*
3619 * Drop cur_mm before scheduling, we can't hold it for
3620 * long periods (or over schedule()). Do this before
3621 * adding ourselves to the waitqueue, as the unuse/drop
3622 * may sleep.
3623 */
3624 if (cur_mm) {
3625 unuse_mm(cur_mm);
3626 mmput(cur_mm);
3627 cur_mm = NULL;
3628 }
3629
3630 prepare_to_wait(&ctx->sqo_wait, &wait,
3631 TASK_INTERRUPTIBLE);
3632
3633 /* Tell userspace we may need a wakeup call */
75b28aff 3634 ctx->rings->sq_flags |= IORING_SQ_NEED_WAKEUP;
0d7bae69
SB
3635 /* make sure to read SQ tail after writing flags */
3636 smp_mb();
6c271ce2 3637
fb5ccc98 3638 to_submit = io_sqring_entries(ctx);
c1edbf5f 3639 if (!to_submit || ret == -EBUSY) {
2bbcd6d3 3640 if (kthread_should_park()) {
6c271ce2
JA
3641 finish_wait(&ctx->sqo_wait, &wait);
3642 break;
3643 }
3644 if (signal_pending(current))
3645 flush_signals(current);
3646 schedule();
3647 finish_wait(&ctx->sqo_wait, &wait);
3648
75b28aff 3649 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
6c271ce2
JA
3650 continue;
3651 }
3652 finish_wait(&ctx->sqo_wait, &wait);
3653
75b28aff 3654 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
6c271ce2
JA
3655 }
3656
fb5ccc98 3657 to_submit = min(to_submit, ctx->sq_entries);
1d7bb1d5
JA
3658 ret = io_submit_sqes(ctx, to_submit, NULL, -1, &cur_mm, true);
3659 if (ret > 0)
3660 inflight += ret;
6c271ce2
JA
3661 }
3662
3663 set_fs(old_fs);
3664 if (cur_mm) {
3665 unuse_mm(cur_mm);
3666 mmput(cur_mm);
3667 }
181e448d 3668 revert_creds(old_cred);
06058632 3669
2bbcd6d3 3670 kthread_parkme();
06058632 3671
6c271ce2
JA
3672 return 0;
3673}
3674
bda52162
JA
3675struct io_wait_queue {
3676 struct wait_queue_entry wq;
3677 struct io_ring_ctx *ctx;
3678 unsigned to_wait;
3679 unsigned nr_timeouts;
3680};
3681
1d7bb1d5 3682static inline bool io_should_wake(struct io_wait_queue *iowq, bool noflush)
bda52162
JA
3683{
3684 struct io_ring_ctx *ctx = iowq->ctx;
3685
3686 /*
3687 * Wake up if we have enough events, or if a timeout occured since we
3688 * started waiting. For timeouts, we always want to return to userspace,
3689 * regardless of event count.
3690 */
1d7bb1d5 3691 return io_cqring_events(ctx, noflush) >= iowq->to_wait ||
bda52162
JA
3692 atomic_read(&ctx->cq_timeouts) != iowq->nr_timeouts;
3693}
3694
3695static int io_wake_function(struct wait_queue_entry *curr, unsigned int mode,
3696 int wake_flags, void *key)
3697{
3698 struct io_wait_queue *iowq = container_of(curr, struct io_wait_queue,
3699 wq);
3700
1d7bb1d5
JA
3701 /* use noflush == true, as we can't safely rely on locking context */
3702 if (!io_should_wake(iowq, true))
bda52162
JA
3703 return -1;
3704
3705 return autoremove_wake_function(curr, mode, wake_flags, key);
3706}
3707
2b188cc1
JA
3708/*
3709 * Wait until events become available, if we don't already have some. The
3710 * application must reap them itself, as they reside on the shared cq ring.
3711 */
3712static int io_cqring_wait(struct io_ring_ctx *ctx, int min_events,
3713 const sigset_t __user *sig, size_t sigsz)
3714{
bda52162
JA
3715 struct io_wait_queue iowq = {
3716 .wq = {
3717 .private = current,
3718 .func = io_wake_function,
3719 .entry = LIST_HEAD_INIT(iowq.wq.entry),
3720 },
3721 .ctx = ctx,
3722 .to_wait = min_events,
3723 };
75b28aff 3724 struct io_rings *rings = ctx->rings;
e9ffa5c2 3725 int ret = 0;
2b188cc1 3726
1d7bb1d5 3727 if (io_cqring_events(ctx, false) >= min_events)
2b188cc1
JA
3728 return 0;
3729
3730 if (sig) {
9e75ad5d
AB
3731#ifdef CONFIG_COMPAT
3732 if (in_compat_syscall())
3733 ret = set_compat_user_sigmask((const compat_sigset_t __user *)sig,
b772434b 3734 sigsz);
9e75ad5d
AB
3735 else
3736#endif
b772434b 3737 ret = set_user_sigmask(sig, sigsz);
9e75ad5d 3738
2b188cc1
JA
3739 if (ret)
3740 return ret;
3741 }
3742
bda52162 3743 iowq.nr_timeouts = atomic_read(&ctx->cq_timeouts);
c826bd7a 3744 trace_io_uring_cqring_wait(ctx, min_events);
bda52162
JA
3745 do {
3746 prepare_to_wait_exclusive(&ctx->wait, &iowq.wq,
3747 TASK_INTERRUPTIBLE);
1d7bb1d5 3748 if (io_should_wake(&iowq, false))
bda52162
JA
3749 break;
3750 schedule();
3751 if (signal_pending(current)) {
e9ffa5c2 3752 ret = -EINTR;
bda52162
JA
3753 break;
3754 }
3755 } while (1);
3756 finish_wait(&ctx->wait, &iowq.wq);
3757
e9ffa5c2 3758 restore_saved_sigmask_unless(ret == -EINTR);
2b188cc1 3759
75b28aff 3760 return READ_ONCE(rings->cq.head) == READ_ONCE(rings->cq.tail) ? ret : 0;
2b188cc1
JA
3761}
3762
6b06314c
JA
3763static void __io_sqe_files_unregister(struct io_ring_ctx *ctx)
3764{
3765#if defined(CONFIG_UNIX)
3766 if (ctx->ring_sock) {
3767 struct sock *sock = ctx->ring_sock->sk;
3768 struct sk_buff *skb;
3769
3770 while ((skb = skb_dequeue(&sock->sk_receive_queue)) != NULL)
3771 kfree_skb(skb);
3772 }
3773#else
3774 int i;
3775
65e19f54
JA
3776 for (i = 0; i < ctx->nr_user_files; i++) {
3777 struct file *file;
3778
3779 file = io_file_from_index(ctx, i);
3780 if (file)
3781 fput(file);
3782 }
6b06314c
JA
3783#endif
3784}
3785
3786static int io_sqe_files_unregister(struct io_ring_ctx *ctx)
3787{
65e19f54
JA
3788 unsigned nr_tables, i;
3789
3790 if (!ctx->file_table)
6b06314c
JA
3791 return -ENXIO;
3792
3793 __io_sqe_files_unregister(ctx);
65e19f54
JA
3794 nr_tables = DIV_ROUND_UP(ctx->nr_user_files, IORING_MAX_FILES_TABLE);
3795 for (i = 0; i < nr_tables; i++)
3796 kfree(ctx->file_table[i].files);
3797 kfree(ctx->file_table);
3798 ctx->file_table = NULL;
6b06314c
JA
3799 ctx->nr_user_files = 0;
3800 return 0;
3801}
3802
6c271ce2
JA
3803static void io_sq_thread_stop(struct io_ring_ctx *ctx)
3804{
3805 if (ctx->sqo_thread) {
206aefde 3806 wait_for_completion(&ctx->completions[1]);
2bbcd6d3
RP
3807 /*
3808 * The park is a bit of a work-around, without it we get
3809 * warning spews on shutdown with SQPOLL set and affinity
3810 * set to a single CPU.
3811 */
06058632 3812 kthread_park(ctx->sqo_thread);
6c271ce2
JA
3813 kthread_stop(ctx->sqo_thread);
3814 ctx->sqo_thread = NULL;
3815 }
3816}
3817
6b06314c
JA
3818static void io_finish_async(struct io_ring_ctx *ctx)
3819{
6c271ce2
JA
3820 io_sq_thread_stop(ctx);
3821
561fb04a
JA
3822 if (ctx->io_wq) {
3823 io_wq_destroy(ctx->io_wq);
3824 ctx->io_wq = NULL;
6b06314c
JA
3825 }
3826}
3827
3828#if defined(CONFIG_UNIX)
3829static void io_destruct_skb(struct sk_buff *skb)
3830{
3831 struct io_ring_ctx *ctx = skb->sk->sk_user_data;
8a997340 3832
561fb04a
JA
3833 if (ctx->io_wq)
3834 io_wq_flush(ctx->io_wq);
6b06314c 3835
6b06314c
JA
3836 unix_destruct_scm(skb);
3837}
3838
3839/*
3840 * Ensure the UNIX gc is aware of our file set, so we are certain that
3841 * the io_uring can be safely unregistered on process exit, even if we have
3842 * loops in the file referencing.
3843 */
3844static int __io_sqe_files_scm(struct io_ring_ctx *ctx, int nr, int offset)
3845{
3846 struct sock *sk = ctx->ring_sock->sk;
3847 struct scm_fp_list *fpl;
3848 struct sk_buff *skb;
08a45173 3849 int i, nr_files;
6b06314c
JA
3850
3851 if (!capable(CAP_SYS_RESOURCE) && !capable(CAP_SYS_ADMIN)) {
3852 unsigned long inflight = ctx->user->unix_inflight + nr;
3853
3854 if (inflight > task_rlimit(current, RLIMIT_NOFILE))
3855 return -EMFILE;
3856 }
3857
3858 fpl = kzalloc(sizeof(*fpl), GFP_KERNEL);
3859 if (!fpl)
3860 return -ENOMEM;
3861
3862 skb = alloc_skb(0, GFP_KERNEL);
3863 if (!skb) {
3864 kfree(fpl);
3865 return -ENOMEM;
3866 }
3867
3868 skb->sk = sk;
6b06314c 3869
08a45173 3870 nr_files = 0;
6b06314c
JA
3871 fpl->user = get_uid(ctx->user);
3872 for (i = 0; i < nr; i++) {
65e19f54
JA
3873 struct file *file = io_file_from_index(ctx, i + offset);
3874
3875 if (!file)
08a45173 3876 continue;
65e19f54 3877 fpl->fp[nr_files] = get_file(file);
08a45173
JA
3878 unix_inflight(fpl->user, fpl->fp[nr_files]);
3879 nr_files++;
6b06314c
JA
3880 }
3881
08a45173
JA
3882 if (nr_files) {
3883 fpl->max = SCM_MAX_FD;
3884 fpl->count = nr_files;
3885 UNIXCB(skb).fp = fpl;
3886 skb->destructor = io_destruct_skb;
3887 refcount_add(skb->truesize, &sk->sk_wmem_alloc);
3888 skb_queue_head(&sk->sk_receive_queue, skb);
6b06314c 3889
08a45173
JA
3890 for (i = 0; i < nr_files; i++)
3891 fput(fpl->fp[i]);
3892 } else {
3893 kfree_skb(skb);
3894 kfree(fpl);
3895 }
6b06314c
JA
3896
3897 return 0;
3898}
3899
3900/*
3901 * If UNIX sockets are enabled, fd passing can cause a reference cycle which
3902 * causes regular reference counting to break down. We rely on the UNIX
3903 * garbage collection to take care of this problem for us.
3904 */
3905static int io_sqe_files_scm(struct io_ring_ctx *ctx)
3906{
3907 unsigned left, total;
3908 int ret = 0;
3909
3910 total = 0;
3911 left = ctx->nr_user_files;
3912 while (left) {
3913 unsigned this_files = min_t(unsigned, left, SCM_MAX_FD);
6b06314c
JA
3914
3915 ret = __io_sqe_files_scm(ctx, this_files, total);
3916 if (ret)
3917 break;
3918 left -= this_files;
3919 total += this_files;
3920 }
3921
3922 if (!ret)
3923 return 0;
3924
3925 while (total < ctx->nr_user_files) {
65e19f54
JA
3926 struct file *file = io_file_from_index(ctx, total);
3927
3928 if (file)
3929 fput(file);
6b06314c
JA
3930 total++;
3931 }
3932
3933 return ret;
3934}
3935#else
3936static int io_sqe_files_scm(struct io_ring_ctx *ctx)
3937{
3938 return 0;
3939}
3940#endif
3941
65e19f54
JA
3942static int io_sqe_alloc_file_tables(struct io_ring_ctx *ctx, unsigned nr_tables,
3943 unsigned nr_files)
3944{
3945 int i;
3946
3947 for (i = 0; i < nr_tables; i++) {
3948 struct fixed_file_table *table = &ctx->file_table[i];
3949 unsigned this_files;
3950
3951 this_files = min(nr_files, IORING_MAX_FILES_TABLE);
3952 table->files = kcalloc(this_files, sizeof(struct file *),
3953 GFP_KERNEL);
3954 if (!table->files)
3955 break;
3956 nr_files -= this_files;
3957 }
3958
3959 if (i == nr_tables)
3960 return 0;
3961
3962 for (i = 0; i < nr_tables; i++) {
3963 struct fixed_file_table *table = &ctx->file_table[i];
3964 kfree(table->files);
3965 }
3966 return 1;
3967}
3968
6b06314c
JA
3969static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
3970 unsigned nr_args)
3971{
3972 __s32 __user *fds = (__s32 __user *) arg;
65e19f54 3973 unsigned nr_tables;
6b06314c
JA
3974 int fd, ret = 0;
3975 unsigned i;
3976
65e19f54 3977 if (ctx->file_table)
6b06314c
JA
3978 return -EBUSY;
3979 if (!nr_args)
3980 return -EINVAL;
3981 if (nr_args > IORING_MAX_FIXED_FILES)
3982 return -EMFILE;
3983
65e19f54
JA
3984 nr_tables = DIV_ROUND_UP(nr_args, IORING_MAX_FILES_TABLE);
3985 ctx->file_table = kcalloc(nr_tables, sizeof(struct fixed_file_table),
3986 GFP_KERNEL);
3987 if (!ctx->file_table)
6b06314c
JA
3988 return -ENOMEM;
3989
65e19f54
JA
3990 if (io_sqe_alloc_file_tables(ctx, nr_tables, nr_args)) {
3991 kfree(ctx->file_table);
46568e9b 3992 ctx->file_table = NULL;
65e19f54
JA
3993 return -ENOMEM;
3994 }
3995
08a45173 3996 for (i = 0; i < nr_args; i++, ctx->nr_user_files++) {
65e19f54
JA
3997 struct fixed_file_table *table;
3998 unsigned index;
3999
6b06314c
JA
4000 ret = -EFAULT;
4001 if (copy_from_user(&fd, &fds[i], sizeof(fd)))
4002 break;
08a45173
JA
4003 /* allow sparse sets */
4004 if (fd == -1) {
4005 ret = 0;
4006 continue;
4007 }
6b06314c 4008
65e19f54
JA
4009 table = &ctx->file_table[i >> IORING_FILE_TABLE_SHIFT];
4010 index = i & IORING_FILE_TABLE_MASK;
4011 table->files[index] = fget(fd);
6b06314c
JA
4012
4013 ret = -EBADF;
65e19f54 4014 if (!table->files[index])
6b06314c
JA
4015 break;
4016 /*
4017 * Don't allow io_uring instances to be registered. If UNIX
4018 * isn't enabled, then this causes a reference cycle and this
4019 * instance can never get freed. If UNIX is enabled we'll
4020 * handle it just fine, but there's still no point in allowing
4021 * a ring fd as it doesn't support regular read/write anyway.
4022 */
65e19f54
JA
4023 if (table->files[index]->f_op == &io_uring_fops) {
4024 fput(table->files[index]);
6b06314c
JA
4025 break;
4026 }
6b06314c
JA
4027 ret = 0;
4028 }
4029
4030 if (ret) {
65e19f54
JA
4031 for (i = 0; i < ctx->nr_user_files; i++) {
4032 struct file *file;
6b06314c 4033
65e19f54
JA
4034 file = io_file_from_index(ctx, i);
4035 if (file)
4036 fput(file);
4037 }
4038 for (i = 0; i < nr_tables; i++)
4039 kfree(ctx->file_table[i].files);
6b06314c 4040
65e19f54
JA
4041 kfree(ctx->file_table);
4042 ctx->file_table = NULL;
6b06314c
JA
4043 ctx->nr_user_files = 0;
4044 return ret;
4045 }
4046
4047 ret = io_sqe_files_scm(ctx);
4048 if (ret)
4049 io_sqe_files_unregister(ctx);
4050
4051 return ret;
4052}
4053
c3a31e60
JA
4054static void io_sqe_file_unregister(struct io_ring_ctx *ctx, int index)
4055{
4056#if defined(CONFIG_UNIX)
65e19f54 4057 struct file *file = io_file_from_index(ctx, index);
c3a31e60
JA
4058 struct sock *sock = ctx->ring_sock->sk;
4059 struct sk_buff_head list, *head = &sock->sk_receive_queue;
4060 struct sk_buff *skb;
4061 int i;
4062
4063 __skb_queue_head_init(&list);
4064
4065 /*
4066 * Find the skb that holds this file in its SCM_RIGHTS. When found,
4067 * remove this entry and rearrange the file array.
4068 */
4069 skb = skb_dequeue(head);
4070 while (skb) {
4071 struct scm_fp_list *fp;
4072
4073 fp = UNIXCB(skb).fp;
4074 for (i = 0; i < fp->count; i++) {
4075 int left;
4076
4077 if (fp->fp[i] != file)
4078 continue;
4079
4080 unix_notinflight(fp->user, fp->fp[i]);
4081 left = fp->count - 1 - i;
4082 if (left) {
4083 memmove(&fp->fp[i], &fp->fp[i + 1],
4084 left * sizeof(struct file *));
4085 }
4086 fp->count--;
4087 if (!fp->count) {
4088 kfree_skb(skb);
4089 skb = NULL;
4090 } else {
4091 __skb_queue_tail(&list, skb);
4092 }
4093 fput(file);
4094 file = NULL;
4095 break;
4096 }
4097
4098 if (!file)
4099 break;
4100
4101 __skb_queue_tail(&list, skb);
4102
4103 skb = skb_dequeue(head);
4104 }
4105
4106 if (skb_peek(&list)) {
4107 spin_lock_irq(&head->lock);
4108 while ((skb = __skb_dequeue(&list)) != NULL)
4109 __skb_queue_tail(head, skb);
4110 spin_unlock_irq(&head->lock);
4111 }
4112#else
65e19f54 4113 fput(io_file_from_index(ctx, index));
c3a31e60
JA
4114#endif
4115}
4116
4117static int io_sqe_file_register(struct io_ring_ctx *ctx, struct file *file,
4118 int index)
4119{
4120#if defined(CONFIG_UNIX)
4121 struct sock *sock = ctx->ring_sock->sk;
4122 struct sk_buff_head *head = &sock->sk_receive_queue;
4123 struct sk_buff *skb;
4124
4125 /*
4126 * See if we can merge this file into an existing skb SCM_RIGHTS
4127 * file set. If there's no room, fall back to allocating a new skb
4128 * and filling it in.
4129 */
4130 spin_lock_irq(&head->lock);
4131 skb = skb_peek(head);
4132 if (skb) {
4133 struct scm_fp_list *fpl = UNIXCB(skb).fp;
4134
4135 if (fpl->count < SCM_MAX_FD) {
4136 __skb_unlink(skb, head);
4137 spin_unlock_irq(&head->lock);
4138 fpl->fp[fpl->count] = get_file(file);
4139 unix_inflight(fpl->user, fpl->fp[fpl->count]);
4140 fpl->count++;
4141 spin_lock_irq(&head->lock);
4142 __skb_queue_head(head, skb);
4143 } else {
4144 skb = NULL;
4145 }
4146 }
4147 spin_unlock_irq(&head->lock);
4148
4149 if (skb) {
4150 fput(file);
4151 return 0;
4152 }
4153
4154 return __io_sqe_files_scm(ctx, 1, index);
4155#else
4156 return 0;
4157#endif
4158}
4159
4160static int io_sqe_files_update(struct io_ring_ctx *ctx, void __user *arg,
4161 unsigned nr_args)
4162{
4163 struct io_uring_files_update up;
4164 __s32 __user *fds;
4165 int fd, i, err;
4166 __u32 done;
4167
65e19f54 4168 if (!ctx->file_table)
c3a31e60
JA
4169 return -ENXIO;
4170 if (!nr_args)
4171 return -EINVAL;
4172 if (copy_from_user(&up, arg, sizeof(up)))
4173 return -EFAULT;
4174 if (check_add_overflow(up.offset, nr_args, &done))
4175 return -EOVERFLOW;
4176 if (done > ctx->nr_user_files)
4177 return -EINVAL;
4178
4179 done = 0;
4180 fds = (__s32 __user *) up.fds;
4181 while (nr_args) {
65e19f54
JA
4182 struct fixed_file_table *table;
4183 unsigned index;
4184
c3a31e60
JA
4185 err = 0;
4186 if (copy_from_user(&fd, &fds[done], sizeof(fd))) {
4187 err = -EFAULT;
4188 break;
4189 }
4190 i = array_index_nospec(up.offset, ctx->nr_user_files);
65e19f54
JA
4191 table = &ctx->file_table[i >> IORING_FILE_TABLE_SHIFT];
4192 index = i & IORING_FILE_TABLE_MASK;
4193 if (table->files[index]) {
c3a31e60 4194 io_sqe_file_unregister(ctx, i);
65e19f54 4195 table->files[index] = NULL;
c3a31e60
JA
4196 }
4197 if (fd != -1) {
4198 struct file *file;
4199
4200 file = fget(fd);
4201 if (!file) {
4202 err = -EBADF;
4203 break;
4204 }
4205 /*
4206 * Don't allow io_uring instances to be registered. If
4207 * UNIX isn't enabled, then this causes a reference
4208 * cycle and this instance can never get freed. If UNIX
4209 * is enabled we'll handle it just fine, but there's
4210 * still no point in allowing a ring fd as it doesn't
4211 * support regular read/write anyway.
4212 */
4213 if (file->f_op == &io_uring_fops) {
4214 fput(file);
4215 err = -EBADF;
4216 break;
4217 }
65e19f54 4218 table->files[index] = file;
c3a31e60
JA
4219 err = io_sqe_file_register(ctx, file, i);
4220 if (err)
4221 break;
4222 }
4223 nr_args--;
4224 done++;
4225 up.offset++;
4226 }
4227
4228 return done ? done : err;
4229}
4230
7d723065
JA
4231static void io_put_work(struct io_wq_work *work)
4232{
4233 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
4234
4235 io_put_req(req);
4236}
4237
4238static void io_get_work(struct io_wq_work *work)
4239{
4240 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
4241
4242 refcount_inc(&req->refs);
4243}
4244
6c271ce2
JA
4245static int io_sq_offload_start(struct io_ring_ctx *ctx,
4246 struct io_uring_params *p)
2b188cc1 4247{
576a347b 4248 struct io_wq_data data;
561fb04a 4249 unsigned concurrency;
2b188cc1
JA
4250 int ret;
4251
6c271ce2 4252 init_waitqueue_head(&ctx->sqo_wait);
2b188cc1
JA
4253 mmgrab(current->mm);
4254 ctx->sqo_mm = current->mm;
4255
6c271ce2 4256 if (ctx->flags & IORING_SETUP_SQPOLL) {
3ec482d1
JA
4257 ret = -EPERM;
4258 if (!capable(CAP_SYS_ADMIN))
4259 goto err;
4260
917257da
JA
4261 ctx->sq_thread_idle = msecs_to_jiffies(p->sq_thread_idle);
4262 if (!ctx->sq_thread_idle)
4263 ctx->sq_thread_idle = HZ;
4264
6c271ce2 4265 if (p->flags & IORING_SETUP_SQ_AFF) {
44a9bd18 4266 int cpu = p->sq_thread_cpu;
6c271ce2 4267
917257da 4268 ret = -EINVAL;
44a9bd18
JA
4269 if (cpu >= nr_cpu_ids)
4270 goto err;
7889f44d 4271 if (!cpu_online(cpu))
917257da
JA
4272 goto err;
4273
6c271ce2
JA
4274 ctx->sqo_thread = kthread_create_on_cpu(io_sq_thread,
4275 ctx, cpu,
4276 "io_uring-sq");
4277 } else {
4278 ctx->sqo_thread = kthread_create(io_sq_thread, ctx,
4279 "io_uring-sq");
4280 }
4281 if (IS_ERR(ctx->sqo_thread)) {
4282 ret = PTR_ERR(ctx->sqo_thread);
4283 ctx->sqo_thread = NULL;
4284 goto err;
4285 }
4286 wake_up_process(ctx->sqo_thread);
4287 } else if (p->flags & IORING_SETUP_SQ_AFF) {
4288 /* Can't have SQ_AFF without SQPOLL */
4289 ret = -EINVAL;
4290 goto err;
4291 }
4292
576a347b
JA
4293 data.mm = ctx->sqo_mm;
4294 data.user = ctx->user;
181e448d 4295 data.creds = ctx->creds;
576a347b
JA
4296 data.get_work = io_get_work;
4297 data.put_work = io_put_work;
4298
561fb04a
JA
4299 /* Do QD, or 4 * CPUS, whatever is smallest */
4300 concurrency = min(ctx->sq_entries, 4 * num_online_cpus());
576a347b 4301 ctx->io_wq = io_wq_create(concurrency, &data);
975c99a5
JA
4302 if (IS_ERR(ctx->io_wq)) {
4303 ret = PTR_ERR(ctx->io_wq);
4304 ctx->io_wq = NULL;
2b188cc1
JA
4305 goto err;
4306 }
4307
4308 return 0;
4309err:
54a91f3b 4310 io_finish_async(ctx);
2b188cc1
JA
4311 mmdrop(ctx->sqo_mm);
4312 ctx->sqo_mm = NULL;
4313 return ret;
4314}
4315
4316static void io_unaccount_mem(struct user_struct *user, unsigned long nr_pages)
4317{
4318 atomic_long_sub(nr_pages, &user->locked_vm);
4319}
4320
4321static int io_account_mem(struct user_struct *user, unsigned long nr_pages)
4322{
4323 unsigned long page_limit, cur_pages, new_pages;
4324
4325 /* Don't allow more pages than we can safely lock */
4326 page_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
4327
4328 do {
4329 cur_pages = atomic_long_read(&user->locked_vm);
4330 new_pages = cur_pages + nr_pages;
4331 if (new_pages > page_limit)
4332 return -ENOMEM;
4333 } while (atomic_long_cmpxchg(&user->locked_vm, cur_pages,
4334 new_pages) != cur_pages);
4335
4336 return 0;
4337}
4338
4339static void io_mem_free(void *ptr)
4340{
52e04ef4
MR
4341 struct page *page;
4342
4343 if (!ptr)
4344 return;
2b188cc1 4345
52e04ef4 4346 page = virt_to_head_page(ptr);
2b188cc1
JA
4347 if (put_page_testzero(page))
4348 free_compound_page(page);
4349}
4350
4351static void *io_mem_alloc(size_t size)
4352{
4353 gfp_t gfp_flags = GFP_KERNEL | __GFP_ZERO | __GFP_NOWARN | __GFP_COMP |
4354 __GFP_NORETRY;
4355
4356 return (void *) __get_free_pages(gfp_flags, get_order(size));
4357}
4358
75b28aff
HV
4359static unsigned long rings_size(unsigned sq_entries, unsigned cq_entries,
4360 size_t *sq_offset)
4361{
4362 struct io_rings *rings;
4363 size_t off, sq_array_size;
4364
4365 off = struct_size(rings, cqes, cq_entries);
4366 if (off == SIZE_MAX)
4367 return SIZE_MAX;
4368
4369#ifdef CONFIG_SMP
4370 off = ALIGN(off, SMP_CACHE_BYTES);
4371 if (off == 0)
4372 return SIZE_MAX;
4373#endif
4374
4375 sq_array_size = array_size(sizeof(u32), sq_entries);
4376 if (sq_array_size == SIZE_MAX)
4377 return SIZE_MAX;
4378
4379 if (check_add_overflow(off, sq_array_size, &off))
4380 return SIZE_MAX;
4381
4382 if (sq_offset)
4383 *sq_offset = off;
4384
4385 return off;
4386}
4387
2b188cc1
JA
4388static unsigned long ring_pages(unsigned sq_entries, unsigned cq_entries)
4389{
75b28aff 4390 size_t pages;
2b188cc1 4391
75b28aff
HV
4392 pages = (size_t)1 << get_order(
4393 rings_size(sq_entries, cq_entries, NULL));
4394 pages += (size_t)1 << get_order(
4395 array_size(sizeof(struct io_uring_sqe), sq_entries));
2b188cc1 4396
75b28aff 4397 return pages;
2b188cc1
JA
4398}
4399
edafccee
JA
4400static int io_sqe_buffer_unregister(struct io_ring_ctx *ctx)
4401{
4402 int i, j;
4403
4404 if (!ctx->user_bufs)
4405 return -ENXIO;
4406
4407 for (i = 0; i < ctx->nr_user_bufs; i++) {
4408 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
4409
4410 for (j = 0; j < imu->nr_bvecs; j++)
27c4d3a3 4411 put_user_page(imu->bvec[j].bv_page);
edafccee
JA
4412
4413 if (ctx->account_mem)
4414 io_unaccount_mem(ctx->user, imu->nr_bvecs);
d4ef6475 4415 kvfree(imu->bvec);
edafccee
JA
4416 imu->nr_bvecs = 0;
4417 }
4418
4419 kfree(ctx->user_bufs);
4420 ctx->user_bufs = NULL;
4421 ctx->nr_user_bufs = 0;
4422 return 0;
4423}
4424
4425static int io_copy_iov(struct io_ring_ctx *ctx, struct iovec *dst,
4426 void __user *arg, unsigned index)
4427{
4428 struct iovec __user *src;
4429
4430#ifdef CONFIG_COMPAT
4431 if (ctx->compat) {
4432 struct compat_iovec __user *ciovs;
4433 struct compat_iovec ciov;
4434
4435 ciovs = (struct compat_iovec __user *) arg;
4436 if (copy_from_user(&ciov, &ciovs[index], sizeof(ciov)))
4437 return -EFAULT;
4438
4439 dst->iov_base = (void __user *) (unsigned long) ciov.iov_base;
4440 dst->iov_len = ciov.iov_len;
4441 return 0;
4442 }
4443#endif
4444 src = (struct iovec __user *) arg;
4445 if (copy_from_user(dst, &src[index], sizeof(*dst)))
4446 return -EFAULT;
4447 return 0;
4448}
4449
4450static int io_sqe_buffer_register(struct io_ring_ctx *ctx, void __user *arg,
4451 unsigned nr_args)
4452{
4453 struct vm_area_struct **vmas = NULL;
4454 struct page **pages = NULL;
4455 int i, j, got_pages = 0;
4456 int ret = -EINVAL;
4457
4458 if (ctx->user_bufs)
4459 return -EBUSY;
4460 if (!nr_args || nr_args > UIO_MAXIOV)
4461 return -EINVAL;
4462
4463 ctx->user_bufs = kcalloc(nr_args, sizeof(struct io_mapped_ubuf),
4464 GFP_KERNEL);
4465 if (!ctx->user_bufs)
4466 return -ENOMEM;
4467
4468 for (i = 0; i < nr_args; i++) {
4469 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
4470 unsigned long off, start, end, ubuf;
4471 int pret, nr_pages;
4472 struct iovec iov;
4473 size_t size;
4474
4475 ret = io_copy_iov(ctx, &iov, arg, i);
4476 if (ret)
a278682d 4477 goto err;
edafccee
JA
4478
4479 /*
4480 * Don't impose further limits on the size and buffer
4481 * constraints here, we'll -EINVAL later when IO is
4482 * submitted if they are wrong.
4483 */
4484 ret = -EFAULT;
4485 if (!iov.iov_base || !iov.iov_len)
4486 goto err;
4487
4488 /* arbitrary limit, but we need something */
4489 if (iov.iov_len > SZ_1G)
4490 goto err;
4491
4492 ubuf = (unsigned long) iov.iov_base;
4493 end = (ubuf + iov.iov_len + PAGE_SIZE - 1) >> PAGE_SHIFT;
4494 start = ubuf >> PAGE_SHIFT;
4495 nr_pages = end - start;
4496
4497 if (ctx->account_mem) {
4498 ret = io_account_mem(ctx->user, nr_pages);
4499 if (ret)
4500 goto err;
4501 }
4502
4503 ret = 0;
4504 if (!pages || nr_pages > got_pages) {
4505 kfree(vmas);
4506 kfree(pages);
d4ef6475 4507 pages = kvmalloc_array(nr_pages, sizeof(struct page *),
edafccee 4508 GFP_KERNEL);
d4ef6475 4509 vmas = kvmalloc_array(nr_pages,
edafccee
JA
4510 sizeof(struct vm_area_struct *),
4511 GFP_KERNEL);
4512 if (!pages || !vmas) {
4513 ret = -ENOMEM;
4514 if (ctx->account_mem)
4515 io_unaccount_mem(ctx->user, nr_pages);
4516 goto err;
4517 }
4518 got_pages = nr_pages;
4519 }
4520
d4ef6475 4521 imu->bvec = kvmalloc_array(nr_pages, sizeof(struct bio_vec),
edafccee
JA
4522 GFP_KERNEL);
4523 ret = -ENOMEM;
4524 if (!imu->bvec) {
4525 if (ctx->account_mem)
4526 io_unaccount_mem(ctx->user, nr_pages);
4527 goto err;
4528 }
4529
4530 ret = 0;
4531 down_read(&current->mm->mmap_sem);
932f4a63
IW
4532 pret = get_user_pages(ubuf, nr_pages,
4533 FOLL_WRITE | FOLL_LONGTERM,
4534 pages, vmas);
edafccee
JA
4535 if (pret == nr_pages) {
4536 /* don't support file backed memory */
4537 for (j = 0; j < nr_pages; j++) {
4538 struct vm_area_struct *vma = vmas[j];
4539
4540 if (vma->vm_file &&
4541 !is_file_hugepages(vma->vm_file)) {
4542 ret = -EOPNOTSUPP;
4543 break;
4544 }
4545 }
4546 } else {
4547 ret = pret < 0 ? pret : -EFAULT;
4548 }
4549 up_read(&current->mm->mmap_sem);
4550 if (ret) {
4551 /*
4552 * if we did partial map, or found file backed vmas,
4553 * release any pages we did get
4554 */
27c4d3a3
JH
4555 if (pret > 0)
4556 put_user_pages(pages, pret);
edafccee
JA
4557 if (ctx->account_mem)
4558 io_unaccount_mem(ctx->user, nr_pages);
d4ef6475 4559 kvfree(imu->bvec);
edafccee
JA
4560 goto err;
4561 }
4562
4563 off = ubuf & ~PAGE_MASK;
4564 size = iov.iov_len;
4565 for (j = 0; j < nr_pages; j++) {
4566 size_t vec_len;
4567
4568 vec_len = min_t(size_t, size, PAGE_SIZE - off);
4569 imu->bvec[j].bv_page = pages[j];
4570 imu->bvec[j].bv_len = vec_len;
4571 imu->bvec[j].bv_offset = off;
4572 off = 0;
4573 size -= vec_len;
4574 }
4575 /* store original address for later verification */
4576 imu->ubuf = ubuf;
4577 imu->len = iov.iov_len;
4578 imu->nr_bvecs = nr_pages;
4579
4580 ctx->nr_user_bufs++;
4581 }
d4ef6475
MR
4582 kvfree(pages);
4583 kvfree(vmas);
edafccee
JA
4584 return 0;
4585err:
d4ef6475
MR
4586 kvfree(pages);
4587 kvfree(vmas);
edafccee
JA
4588 io_sqe_buffer_unregister(ctx);
4589 return ret;
4590}
4591
9b402849
JA
4592static int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg)
4593{
4594 __s32 __user *fds = arg;
4595 int fd;
4596
4597 if (ctx->cq_ev_fd)
4598 return -EBUSY;
4599
4600 if (copy_from_user(&fd, fds, sizeof(*fds)))
4601 return -EFAULT;
4602
4603 ctx->cq_ev_fd = eventfd_ctx_fdget(fd);
4604 if (IS_ERR(ctx->cq_ev_fd)) {
4605 int ret = PTR_ERR(ctx->cq_ev_fd);
4606 ctx->cq_ev_fd = NULL;
4607 return ret;
4608 }
4609
4610 return 0;
4611}
4612
4613static int io_eventfd_unregister(struct io_ring_ctx *ctx)
4614{
4615 if (ctx->cq_ev_fd) {
4616 eventfd_ctx_put(ctx->cq_ev_fd);
4617 ctx->cq_ev_fd = NULL;
4618 return 0;
4619 }
4620
4621 return -ENXIO;
4622}
4623
2b188cc1
JA
4624static void io_ring_ctx_free(struct io_ring_ctx *ctx)
4625{
6b06314c 4626 io_finish_async(ctx);
2b188cc1
JA
4627 if (ctx->sqo_mm)
4628 mmdrop(ctx->sqo_mm);
def596e9
JA
4629
4630 io_iopoll_reap_events(ctx);
edafccee 4631 io_sqe_buffer_unregister(ctx);
6b06314c 4632 io_sqe_files_unregister(ctx);
9b402849 4633 io_eventfd_unregister(ctx);
def596e9 4634
2b188cc1 4635#if defined(CONFIG_UNIX)
355e8d26
EB
4636 if (ctx->ring_sock) {
4637 ctx->ring_sock->file = NULL; /* so that iput() is called */
2b188cc1 4638 sock_release(ctx->ring_sock);
355e8d26 4639 }
2b188cc1
JA
4640#endif
4641
75b28aff 4642 io_mem_free(ctx->rings);
2b188cc1 4643 io_mem_free(ctx->sq_sqes);
2b188cc1
JA
4644
4645 percpu_ref_exit(&ctx->refs);
4646 if (ctx->account_mem)
4647 io_unaccount_mem(ctx->user,
4648 ring_pages(ctx->sq_entries, ctx->cq_entries));
4649 free_uid(ctx->user);
181e448d 4650 put_cred(ctx->creds);
206aefde 4651 kfree(ctx->completions);
78076bb6 4652 kfree(ctx->cancel_hash);
0ddf92e8 4653 kmem_cache_free(req_cachep, ctx->fallback_req);
2b188cc1
JA
4654 kfree(ctx);
4655}
4656
4657static __poll_t io_uring_poll(struct file *file, poll_table *wait)
4658{
4659 struct io_ring_ctx *ctx = file->private_data;
4660 __poll_t mask = 0;
4661
4662 poll_wait(file, &ctx->cq_wait, wait);
4f7067c3
SB
4663 /*
4664 * synchronizes with barrier from wq_has_sleeper call in
4665 * io_commit_cqring
4666 */
2b188cc1 4667 smp_rmb();
75b28aff
HV
4668 if (READ_ONCE(ctx->rings->sq.tail) - ctx->cached_sq_head !=
4669 ctx->rings->sq_ring_entries)
2b188cc1 4670 mask |= EPOLLOUT | EPOLLWRNORM;
daa5de54 4671 if (READ_ONCE(ctx->rings->cq.head) != ctx->cached_cq_tail)
2b188cc1
JA
4672 mask |= EPOLLIN | EPOLLRDNORM;
4673
4674 return mask;
4675}
4676
4677static int io_uring_fasync(int fd, struct file *file, int on)
4678{
4679 struct io_ring_ctx *ctx = file->private_data;
4680
4681 return fasync_helper(fd, file, on, &ctx->cq_fasync);
4682}
4683
4684static void io_ring_ctx_wait_and_kill(struct io_ring_ctx *ctx)
4685{
4686 mutex_lock(&ctx->uring_lock);
4687 percpu_ref_kill(&ctx->refs);
4688 mutex_unlock(&ctx->uring_lock);
4689
5262f567 4690 io_kill_timeouts(ctx);
221c5eb2 4691 io_poll_remove_all(ctx);
561fb04a
JA
4692
4693 if (ctx->io_wq)
4694 io_wq_cancel_all(ctx->io_wq);
4695
def596e9 4696 io_iopoll_reap_events(ctx);
15dff286
JA
4697 /* if we failed setting up the ctx, we might not have any rings */
4698 if (ctx->rings)
4699 io_cqring_overflow_flush(ctx, true);
206aefde 4700 wait_for_completion(&ctx->completions[0]);
2b188cc1
JA
4701 io_ring_ctx_free(ctx);
4702}
4703
4704static int io_uring_release(struct inode *inode, struct file *file)
4705{
4706 struct io_ring_ctx *ctx = file->private_data;
4707
4708 file->private_data = NULL;
4709 io_ring_ctx_wait_and_kill(ctx);
4710 return 0;
4711}
4712
fcb323cc
JA
4713static void io_uring_cancel_files(struct io_ring_ctx *ctx,
4714 struct files_struct *files)
4715{
4716 struct io_kiocb *req;
4717 DEFINE_WAIT(wait);
4718
4719 while (!list_empty_careful(&ctx->inflight_list)) {
768134d4 4720 struct io_kiocb *cancel_req = NULL;
fcb323cc
JA
4721
4722 spin_lock_irq(&ctx->inflight_lock);
4723 list_for_each_entry(req, &ctx->inflight_list, inflight_entry) {
768134d4
JA
4724 if (req->work.files != files)
4725 continue;
4726 /* req is being completed, ignore */
4727 if (!refcount_inc_not_zero(&req->refs))
4728 continue;
4729 cancel_req = req;
4730 break;
fcb323cc 4731 }
768134d4 4732 if (cancel_req)
fcb323cc 4733 prepare_to_wait(&ctx->inflight_wait, &wait,
768134d4 4734 TASK_UNINTERRUPTIBLE);
fcb323cc
JA
4735 spin_unlock_irq(&ctx->inflight_lock);
4736
768134d4
JA
4737 /* We need to keep going until we don't find a matching req */
4738 if (!cancel_req)
fcb323cc 4739 break;
2f6d9b9d
BL
4740
4741 io_wq_cancel_work(ctx->io_wq, &cancel_req->work);
4742 io_put_req(cancel_req);
fcb323cc
JA
4743 schedule();
4744 }
768134d4 4745 finish_wait(&ctx->inflight_wait, &wait);
fcb323cc
JA
4746}
4747
4748static int io_uring_flush(struct file *file, void *data)
4749{
4750 struct io_ring_ctx *ctx = file->private_data;
4751
4752 io_uring_cancel_files(ctx, data);
1d7bb1d5
JA
4753 if (fatal_signal_pending(current) || (current->flags & PF_EXITING)) {
4754 io_cqring_overflow_flush(ctx, true);
fcb323cc 4755 io_wq_cancel_all(ctx->io_wq);
1d7bb1d5 4756 }
fcb323cc
JA
4757 return 0;
4758}
4759
6c5c240e
RP
4760static void *io_uring_validate_mmap_request(struct file *file,
4761 loff_t pgoff, size_t sz)
2b188cc1 4762{
2b188cc1 4763 struct io_ring_ctx *ctx = file->private_data;
6c5c240e 4764 loff_t offset = pgoff << PAGE_SHIFT;
2b188cc1
JA
4765 struct page *page;
4766 void *ptr;
4767
4768 switch (offset) {
4769 case IORING_OFF_SQ_RING:
75b28aff
HV
4770 case IORING_OFF_CQ_RING:
4771 ptr = ctx->rings;
2b188cc1
JA
4772 break;
4773 case IORING_OFF_SQES:
4774 ptr = ctx->sq_sqes;
4775 break;
2b188cc1 4776 default:
6c5c240e 4777 return ERR_PTR(-EINVAL);
2b188cc1
JA
4778 }
4779
4780 page = virt_to_head_page(ptr);
a50b854e 4781 if (sz > page_size(page))
6c5c240e
RP
4782 return ERR_PTR(-EINVAL);
4783
4784 return ptr;
4785}
4786
4787#ifdef CONFIG_MMU
4788
4789static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
4790{
4791 size_t sz = vma->vm_end - vma->vm_start;
4792 unsigned long pfn;
4793 void *ptr;
4794
4795 ptr = io_uring_validate_mmap_request(file, vma->vm_pgoff, sz);
4796 if (IS_ERR(ptr))
4797 return PTR_ERR(ptr);
2b188cc1
JA
4798
4799 pfn = virt_to_phys(ptr) >> PAGE_SHIFT;
4800 return remap_pfn_range(vma, vma->vm_start, pfn, sz, vma->vm_page_prot);
4801}
4802
6c5c240e
RP
4803#else /* !CONFIG_MMU */
4804
4805static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
4806{
4807 return vma->vm_flags & (VM_SHARED | VM_MAYSHARE) ? 0 : -EINVAL;
4808}
4809
4810static unsigned int io_uring_nommu_mmap_capabilities(struct file *file)
4811{
4812 return NOMMU_MAP_DIRECT | NOMMU_MAP_READ | NOMMU_MAP_WRITE;
4813}
4814
4815static unsigned long io_uring_nommu_get_unmapped_area(struct file *file,
4816 unsigned long addr, unsigned long len,
4817 unsigned long pgoff, unsigned long flags)
4818{
4819 void *ptr;
4820
4821 ptr = io_uring_validate_mmap_request(file, pgoff, len);
4822 if (IS_ERR(ptr))
4823 return PTR_ERR(ptr);
4824
4825 return (unsigned long) ptr;
4826}
4827
4828#endif /* !CONFIG_MMU */
4829
2b188cc1
JA
4830SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
4831 u32, min_complete, u32, flags, const sigset_t __user *, sig,
4832 size_t, sigsz)
4833{
4834 struct io_ring_ctx *ctx;
4835 long ret = -EBADF;
4836 int submitted = 0;
4837 struct fd f;
4838
6c271ce2 4839 if (flags & ~(IORING_ENTER_GETEVENTS | IORING_ENTER_SQ_WAKEUP))
2b188cc1
JA
4840 return -EINVAL;
4841
4842 f = fdget(fd);
4843 if (!f.file)
4844 return -EBADF;
4845
4846 ret = -EOPNOTSUPP;
4847 if (f.file->f_op != &io_uring_fops)
4848 goto out_fput;
4849
4850 ret = -ENXIO;
4851 ctx = f.file->private_data;
4852 if (!percpu_ref_tryget(&ctx->refs))
4853 goto out_fput;
4854
6c271ce2
JA
4855 /*
4856 * For SQ polling, the thread will do all submissions and completions.
4857 * Just return the requested submit count, and wake the thread if
4858 * we were asked to.
4859 */
b2a9eada 4860 ret = 0;
6c271ce2 4861 if (ctx->flags & IORING_SETUP_SQPOLL) {
c1edbf5f
JA
4862 if (!list_empty_careful(&ctx->cq_overflow_list))
4863 io_cqring_overflow_flush(ctx, false);
6c271ce2
JA
4864 if (flags & IORING_ENTER_SQ_WAKEUP)
4865 wake_up(&ctx->sqo_wait);
4866 submitted = to_submit;
b2a9eada 4867 } else if (to_submit) {
ae9428ca 4868 struct mm_struct *cur_mm;
2b188cc1 4869
ae9428ca 4870 to_submit = min(to_submit, ctx->sq_entries);
2b188cc1 4871 mutex_lock(&ctx->uring_lock);
ae9428ca
PB
4872 /* already have mm, so io_submit_sqes() won't try to grab it */
4873 cur_mm = ctx->sqo_mm;
4874 submitted = io_submit_sqes(ctx, to_submit, f.file, fd,
4875 &cur_mm, false);
2b188cc1 4876 mutex_unlock(&ctx->uring_lock);
2b188cc1
JA
4877 }
4878 if (flags & IORING_ENTER_GETEVENTS) {
def596e9
JA
4879 unsigned nr_events = 0;
4880
2b188cc1
JA
4881 min_complete = min(min_complete, ctx->cq_entries);
4882
def596e9 4883 if (ctx->flags & IORING_SETUP_IOPOLL) {
def596e9 4884 ret = io_iopoll_check(ctx, &nr_events, min_complete);
def596e9
JA
4885 } else {
4886 ret = io_cqring_wait(ctx, min_complete, sig, sigsz);
4887 }
2b188cc1
JA
4888 }
4889
6805b32e 4890 percpu_ref_put(&ctx->refs);
2b188cc1
JA
4891out_fput:
4892 fdput(f);
4893 return submitted ? submitted : ret;
4894}
4895
4896static const struct file_operations io_uring_fops = {
4897 .release = io_uring_release,
fcb323cc 4898 .flush = io_uring_flush,
2b188cc1 4899 .mmap = io_uring_mmap,
6c5c240e
RP
4900#ifndef CONFIG_MMU
4901 .get_unmapped_area = io_uring_nommu_get_unmapped_area,
4902 .mmap_capabilities = io_uring_nommu_mmap_capabilities,
4903#endif
2b188cc1
JA
4904 .poll = io_uring_poll,
4905 .fasync = io_uring_fasync,
4906};
4907
4908static int io_allocate_scq_urings(struct io_ring_ctx *ctx,
4909 struct io_uring_params *p)
4910{
75b28aff
HV
4911 struct io_rings *rings;
4912 size_t size, sq_array_offset;
2b188cc1 4913
75b28aff
HV
4914 size = rings_size(p->sq_entries, p->cq_entries, &sq_array_offset);
4915 if (size == SIZE_MAX)
4916 return -EOVERFLOW;
4917
4918 rings = io_mem_alloc(size);
4919 if (!rings)
2b188cc1
JA
4920 return -ENOMEM;
4921
75b28aff
HV
4922 ctx->rings = rings;
4923 ctx->sq_array = (u32 *)((char *)rings + sq_array_offset);
4924 rings->sq_ring_mask = p->sq_entries - 1;
4925 rings->cq_ring_mask = p->cq_entries - 1;
4926 rings->sq_ring_entries = p->sq_entries;
4927 rings->cq_ring_entries = p->cq_entries;
4928 ctx->sq_mask = rings->sq_ring_mask;
4929 ctx->cq_mask = rings->cq_ring_mask;
4930 ctx->sq_entries = rings->sq_ring_entries;
4931 ctx->cq_entries = rings->cq_ring_entries;
2b188cc1
JA
4932
4933 size = array_size(sizeof(struct io_uring_sqe), p->sq_entries);
eb065d30
JA
4934 if (size == SIZE_MAX) {
4935 io_mem_free(ctx->rings);
4936 ctx->rings = NULL;
2b188cc1 4937 return -EOVERFLOW;
eb065d30 4938 }
2b188cc1
JA
4939
4940 ctx->sq_sqes = io_mem_alloc(size);
eb065d30
JA
4941 if (!ctx->sq_sqes) {
4942 io_mem_free(ctx->rings);
4943 ctx->rings = NULL;
2b188cc1 4944 return -ENOMEM;
eb065d30 4945 }
2b188cc1 4946
2b188cc1
JA
4947 return 0;
4948}
4949
4950/*
4951 * Allocate an anonymous fd, this is what constitutes the application
4952 * visible backing of an io_uring instance. The application mmaps this
4953 * fd to gain access to the SQ/CQ ring details. If UNIX sockets are enabled,
4954 * we have to tie this fd to a socket for file garbage collection purposes.
4955 */
4956static int io_uring_get_fd(struct io_ring_ctx *ctx)
4957{
4958 struct file *file;
4959 int ret;
4960
4961#if defined(CONFIG_UNIX)
4962 ret = sock_create_kern(&init_net, PF_UNIX, SOCK_RAW, IPPROTO_IP,
4963 &ctx->ring_sock);
4964 if (ret)
4965 return ret;
4966#endif
4967
4968 ret = get_unused_fd_flags(O_RDWR | O_CLOEXEC);
4969 if (ret < 0)
4970 goto err;
4971
4972 file = anon_inode_getfile("[io_uring]", &io_uring_fops, ctx,
4973 O_RDWR | O_CLOEXEC);
4974 if (IS_ERR(file)) {
4975 put_unused_fd(ret);
4976 ret = PTR_ERR(file);
4977 goto err;
4978 }
4979
4980#if defined(CONFIG_UNIX)
4981 ctx->ring_sock->file = file;
6b06314c 4982 ctx->ring_sock->sk->sk_user_data = ctx;
2b188cc1
JA
4983#endif
4984 fd_install(ret, file);
4985 return ret;
4986err:
4987#if defined(CONFIG_UNIX)
4988 sock_release(ctx->ring_sock);
4989 ctx->ring_sock = NULL;
4990#endif
4991 return ret;
4992}
4993
4994static int io_uring_create(unsigned entries, struct io_uring_params *p)
4995{
4996 struct user_struct *user = NULL;
4997 struct io_ring_ctx *ctx;
4998 bool account_mem;
4999 int ret;
5000
5001 if (!entries || entries > IORING_MAX_ENTRIES)
5002 return -EINVAL;
5003
5004 /*
5005 * Use twice as many entries for the CQ ring. It's possible for the
5006 * application to drive a higher depth than the size of the SQ ring,
5007 * since the sqes are only used at submission time. This allows for
33a107f0
JA
5008 * some flexibility in overcommitting a bit. If the application has
5009 * set IORING_SETUP_CQSIZE, it will have passed in the desired number
5010 * of CQ ring entries manually.
2b188cc1
JA
5011 */
5012 p->sq_entries = roundup_pow_of_two(entries);
33a107f0
JA
5013 if (p->flags & IORING_SETUP_CQSIZE) {
5014 /*
5015 * If IORING_SETUP_CQSIZE is set, we do the same roundup
5016 * to a power-of-two, if it isn't already. We do NOT impose
5017 * any cq vs sq ring sizing.
5018 */
5019 if (p->cq_entries < p->sq_entries || p->cq_entries > IORING_MAX_CQ_ENTRIES)
5020 return -EINVAL;
5021 p->cq_entries = roundup_pow_of_two(p->cq_entries);
5022 } else {
5023 p->cq_entries = 2 * p->sq_entries;
5024 }
2b188cc1
JA
5025
5026 user = get_uid(current_user());
5027 account_mem = !capable(CAP_IPC_LOCK);
5028
5029 if (account_mem) {
5030 ret = io_account_mem(user,
5031 ring_pages(p->sq_entries, p->cq_entries));
5032 if (ret) {
5033 free_uid(user);
5034 return ret;
5035 }
5036 }
5037
5038 ctx = io_ring_ctx_alloc(p);
5039 if (!ctx) {
5040 if (account_mem)
5041 io_unaccount_mem(user, ring_pages(p->sq_entries,
5042 p->cq_entries));
5043 free_uid(user);
5044 return -ENOMEM;
5045 }
5046 ctx->compat = in_compat_syscall();
5047 ctx->account_mem = account_mem;
5048 ctx->user = user;
0b8c0ec7 5049 ctx->creds = get_current_cred();
2b188cc1
JA
5050
5051 ret = io_allocate_scq_urings(ctx, p);
5052 if (ret)
5053 goto err;
5054
6c271ce2 5055 ret = io_sq_offload_start(ctx, p);
2b188cc1
JA
5056 if (ret)
5057 goto err;
5058
2b188cc1 5059 memset(&p->sq_off, 0, sizeof(p->sq_off));
75b28aff
HV
5060 p->sq_off.head = offsetof(struct io_rings, sq.head);
5061 p->sq_off.tail = offsetof(struct io_rings, sq.tail);
5062 p->sq_off.ring_mask = offsetof(struct io_rings, sq_ring_mask);
5063 p->sq_off.ring_entries = offsetof(struct io_rings, sq_ring_entries);
5064 p->sq_off.flags = offsetof(struct io_rings, sq_flags);
5065 p->sq_off.dropped = offsetof(struct io_rings, sq_dropped);
5066 p->sq_off.array = (char *)ctx->sq_array - (char *)ctx->rings;
2b188cc1
JA
5067
5068 memset(&p->cq_off, 0, sizeof(p->cq_off));
75b28aff
HV
5069 p->cq_off.head = offsetof(struct io_rings, cq.head);
5070 p->cq_off.tail = offsetof(struct io_rings, cq.tail);
5071 p->cq_off.ring_mask = offsetof(struct io_rings, cq_ring_mask);
5072 p->cq_off.ring_entries = offsetof(struct io_rings, cq_ring_entries);
5073 p->cq_off.overflow = offsetof(struct io_rings, cq_overflow);
5074 p->cq_off.cqes = offsetof(struct io_rings, cqes);
ac90f249 5075
044c1ab3
JA
5076 /*
5077 * Install ring fd as the very last thing, so we don't risk someone
5078 * having closed it before we finish setup
5079 */
5080 ret = io_uring_get_fd(ctx);
5081 if (ret < 0)
5082 goto err;
5083
da8c9690
JA
5084 p->features = IORING_FEAT_SINGLE_MMAP | IORING_FEAT_NODROP |
5085 IORING_FEAT_SUBMIT_STABLE;
c826bd7a 5086 trace_io_uring_create(ret, ctx, p->sq_entries, p->cq_entries, p->flags);
2b188cc1
JA
5087 return ret;
5088err:
5089 io_ring_ctx_wait_and_kill(ctx);
5090 return ret;
5091}
5092
5093/*
5094 * Sets up an aio uring context, and returns the fd. Applications asks for a
5095 * ring size, we return the actual sq/cq ring sizes (among other things) in the
5096 * params structure passed in.
5097 */
5098static long io_uring_setup(u32 entries, struct io_uring_params __user *params)
5099{
5100 struct io_uring_params p;
5101 long ret;
5102 int i;
5103
5104 if (copy_from_user(&p, params, sizeof(p)))
5105 return -EFAULT;
5106 for (i = 0; i < ARRAY_SIZE(p.resv); i++) {
5107 if (p.resv[i])
5108 return -EINVAL;
5109 }
5110
6c271ce2 5111 if (p.flags & ~(IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL |
33a107f0 5112 IORING_SETUP_SQ_AFF | IORING_SETUP_CQSIZE))
2b188cc1
JA
5113 return -EINVAL;
5114
5115 ret = io_uring_create(entries, &p);
5116 if (ret < 0)
5117 return ret;
5118
5119 if (copy_to_user(params, &p, sizeof(p)))
5120 return -EFAULT;
5121
5122 return ret;
5123}
5124
5125SYSCALL_DEFINE2(io_uring_setup, u32, entries,
5126 struct io_uring_params __user *, params)
5127{
5128 return io_uring_setup(entries, params);
5129}
5130
edafccee
JA
5131static int __io_uring_register(struct io_ring_ctx *ctx, unsigned opcode,
5132 void __user *arg, unsigned nr_args)
b19062a5
JA
5133 __releases(ctx->uring_lock)
5134 __acquires(ctx->uring_lock)
edafccee
JA
5135{
5136 int ret;
5137
35fa71a0
JA
5138 /*
5139 * We're inside the ring mutex, if the ref is already dying, then
5140 * someone else killed the ctx or is already going through
5141 * io_uring_register().
5142 */
5143 if (percpu_ref_is_dying(&ctx->refs))
5144 return -ENXIO;
5145
edafccee 5146 percpu_ref_kill(&ctx->refs);
b19062a5
JA
5147
5148 /*
5149 * Drop uring mutex before waiting for references to exit. If another
5150 * thread is currently inside io_uring_enter() it might need to grab
5151 * the uring_lock to make progress. If we hold it here across the drain
5152 * wait, then we can deadlock. It's safe to drop the mutex here, since
5153 * no new references will come in after we've killed the percpu ref.
5154 */
5155 mutex_unlock(&ctx->uring_lock);
206aefde 5156 wait_for_completion(&ctx->completions[0]);
b19062a5 5157 mutex_lock(&ctx->uring_lock);
edafccee
JA
5158
5159 switch (opcode) {
5160 case IORING_REGISTER_BUFFERS:
5161 ret = io_sqe_buffer_register(ctx, arg, nr_args);
5162 break;
5163 case IORING_UNREGISTER_BUFFERS:
5164 ret = -EINVAL;
5165 if (arg || nr_args)
5166 break;
5167 ret = io_sqe_buffer_unregister(ctx);
5168 break;
6b06314c
JA
5169 case IORING_REGISTER_FILES:
5170 ret = io_sqe_files_register(ctx, arg, nr_args);
5171 break;
5172 case IORING_UNREGISTER_FILES:
5173 ret = -EINVAL;
5174 if (arg || nr_args)
5175 break;
5176 ret = io_sqe_files_unregister(ctx);
5177 break;
c3a31e60
JA
5178 case IORING_REGISTER_FILES_UPDATE:
5179 ret = io_sqe_files_update(ctx, arg, nr_args);
5180 break;
9b402849
JA
5181 case IORING_REGISTER_EVENTFD:
5182 ret = -EINVAL;
5183 if (nr_args != 1)
5184 break;
5185 ret = io_eventfd_register(ctx, arg);
5186 break;
5187 case IORING_UNREGISTER_EVENTFD:
5188 ret = -EINVAL;
5189 if (arg || nr_args)
5190 break;
5191 ret = io_eventfd_unregister(ctx);
5192 break;
edafccee
JA
5193 default:
5194 ret = -EINVAL;
5195 break;
5196 }
5197
5198 /* bring the ctx back to life */
206aefde 5199 reinit_completion(&ctx->completions[0]);
edafccee
JA
5200 percpu_ref_reinit(&ctx->refs);
5201 return ret;
5202}
5203
5204SYSCALL_DEFINE4(io_uring_register, unsigned int, fd, unsigned int, opcode,
5205 void __user *, arg, unsigned int, nr_args)
5206{
5207 struct io_ring_ctx *ctx;
5208 long ret = -EBADF;
5209 struct fd f;
5210
5211 f = fdget(fd);
5212 if (!f.file)
5213 return -EBADF;
5214
5215 ret = -EOPNOTSUPP;
5216 if (f.file->f_op != &io_uring_fops)
5217 goto out_fput;
5218
5219 ctx = f.file->private_data;
5220
5221 mutex_lock(&ctx->uring_lock);
5222 ret = __io_uring_register(ctx, opcode, arg, nr_args);
5223 mutex_unlock(&ctx->uring_lock);
c826bd7a
DD
5224 trace_io_uring_register(ctx, opcode, ctx->nr_user_files, ctx->nr_user_bufs,
5225 ctx->cq_ev_fd != NULL, ret);
edafccee
JA
5226out_fput:
5227 fdput(f);
5228 return ret;
5229}
5230
2b188cc1
JA
5231static int __init io_uring_init(void)
5232{
5233 req_cachep = KMEM_CACHE(io_kiocb, SLAB_HWCACHE_ALIGN | SLAB_PANIC);
5234 return 0;
5235};
5236__initcall(io_uring_init);