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