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