io_uring: move statx handling to its own file
[linux-block.git] / io_uring / 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
d068b506 14 * through a control-dependency in io_get_cqe (smp_store_release to
1e84b97b
SB
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>
2b188cc1
JA
58#include <linux/percpu.h>
59#include <linux/slab.h>
edce22e1 60#include <linux/blk-mq.h>
edafccee 61#include <linux/bvec.h>
2b188cc1
JA
62#include <linux/net.h>
63#include <net/sock.h>
64#include <net/af_unix.h>
6b06314c 65#include <net/scm.h>
2b188cc1
JA
66#include <linux/anon_inodes.h>
67#include <linux/sched/mm.h>
68#include <linux/uaccess.h>
69#include <linux/nospec.h>
edafccee
JA
70#include <linux/sizes.h>
71#include <linux/hugetlb.h>
aa4c3967 72#include <linux/highmem.h>
15b71abe
JA
73#include <linux/namei.h>
74#include <linux/fsnotify.h>
4840e418 75#include <linux/fadvise.h>
3e4827b0 76#include <linux/eventpoll.h>
7d67af2c 77#include <linux/splice.h>
b41e9852 78#include <linux/task_work.h>
bcf5a063 79#include <linux/pagemap.h>
0f212204 80#include <linux/io_uring.h>
5bd2182d 81#include <linux/audit.h>
cdc1404a 82#include <linux/security.h>
2b188cc1 83
c826bd7a
DD
84#define CREATE_TRACE_POINTS
85#include <trace/events/io_uring.h>
86
2b188cc1
JA
87#include <uapi/linux/io_uring.h>
88
ed29b0b4 89#include "../fs/internal.h"
561fb04a 90#include "io-wq.h"
2b188cc1 91
e27f928e 92#include "io_uring_types.h"
de23077e 93#include "io_uring.h"
e27f928e 94
5e2a18d9 95#include "xattr.h"
e28683bd 96#include "nop.h"
11aeb714 97#include "fs.h"
531113bb 98#include "splice.h"
0d584727 99#include "sync.h"
f4c163dd 100#include "advise.h"
cd40cae2 101#include "openclose.h"
99f15d8d 102#include "uring_cmd.h"
a9c210ce 103#include "epoll.h"
e0da14de 104#include "statx.h"
5e2a18d9 105
5277deaa 106#define IORING_MAX_ENTRIES 32768
33a107f0 107#define IORING_MAX_CQ_ENTRIES (2 * IORING_MAX_ENTRIES)
4ce8ad95 108#define IORING_SQPOLL_CAP_ENTRIES_VALUE 8
65e19f54 109
187f08c1 110/* only define max */
09893e15 111#define IORING_MAX_FIXED_FILES (1U << 20)
21b55dbc
SG
112#define IORING_MAX_RESTRICTIONS (IORING_RESTRICTION_LAST + \
113 IORING_REGISTER_LAST + IORING_OP_LAST)
2b188cc1 114
187f08c1 115#define IO_RSRC_TAG_TABLE_SHIFT (PAGE_SHIFT - 3)
2d091d62
PB
116#define IO_RSRC_TAG_TABLE_MAX (1U << IO_RSRC_TAG_TABLE_SHIFT)
117#define IO_RSRC_TAG_TABLE_MASK (IO_RSRC_TAG_TABLE_MAX - 1)
118
489809e2
PB
119#define IORING_MAX_REG_BUFFERS (1U << 14)
120
68fe256a
PB
121#define SQE_COMMON_FLAGS (IOSQE_FIXED_FILE | IOSQE_IO_LINK | \
122 IOSQE_IO_HARDLINK | IOSQE_ASYNC)
123
5562a8d7
PB
124#define SQE_VALID_FLAGS (SQE_COMMON_FLAGS | IOSQE_BUFFER_SELECT | \
125 IOSQE_IO_DRAIN | IOSQE_CQE_SKIP_SUCCESS)
68fe256a 126
c854357b 127#define IO_REQ_CLEAN_FLAGS (REQ_F_BUFFER_SELECTED | REQ_F_NEED_CLEANUP | \
9cae36a0
JA
128 REQ_F_POLLED | REQ_F_INFLIGHT | REQ_F_CREDS | \
129 REQ_F_ASYNC_DATA)
b16fed66 130
a538be5b
PB
131#define IO_REQ_CLEAN_SLOW_FLAGS (REQ_F_REFCOUNT | REQ_F_LINK | REQ_F_HARDLINK |\
132 IO_REQ_CLEAN_FLAGS)
133
227685eb
HX
134#define IO_APOLL_MULTI_POLLED (REQ_F_APOLL_MULTISHOT | REQ_F_POLLED)
135
09899b19
PB
136#define IO_TCTX_REFS_CACHE_NR (1U << 10)
137
edafccee
JA
138struct io_mapped_ubuf {
139 u64 ubuf;
4751f53d 140 u64 ubuf_end;
edafccee 141 unsigned int nr_bvecs;
de293938 142 unsigned long acct_pages;
41edf1a5 143 struct bio_vec bvec[];
edafccee
JA
144};
145
50238531
BM
146struct io_ring_ctx;
147
6c2450ae 148struct io_overflow_cqe {
6c2450ae 149 struct list_head list;
e45a3e05 150 struct io_uring_cqe cqe;
6c2450ae
PB
151};
152
269bbe5f
BM
153struct io_rsrc_put {
154 struct list_head list;
b60c8dce 155 u64 tag;
50238531
BM
156 union {
157 void *rsrc;
158 struct file *file;
bd54b6fe 159 struct io_mapped_ubuf *buf;
50238531 160 };
269bbe5f
BM
161};
162
b895c9a6 163struct io_rsrc_node {
05589553
XW
164 struct percpu_ref refs;
165 struct list_head node;
269bbe5f 166 struct list_head rsrc_list;
b895c9a6 167 struct io_rsrc_data *rsrc_data;
4a38aed2 168 struct llist_node llist;
e297822b 169 bool done;
05589553
XW
170};
171
40ae0ff7
PB
172typedef void (rsrc_put_fn)(struct io_ring_ctx *ctx, struct io_rsrc_put *prsrc);
173
b895c9a6 174struct io_rsrc_data {
05f3fb3c
JA
175 struct io_ring_ctx *ctx;
176
2d091d62
PB
177 u64 **tags;
178 unsigned int nr;
40ae0ff7 179 rsrc_put_fn *do_put;
3e942498 180 atomic_t refs;
05f3fb3c 181 struct completion done;
8bad28d8 182 bool quiesce;
05f3fb3c
JA
183};
184
c7fb1942 185#define IO_BUFFER_LIST_BUF_PER_PAGE (PAGE_SIZE / sizeof(struct io_uring_buf))
dbc7d452 186struct io_buffer_list {
c7fb1942
JA
187 /*
188 * If ->buf_nr_pages is set, then buf_pages/buf_ring are used. If not,
189 * then these are classic provided buffers and ->buf_list is used.
190 */
191 union {
192 struct list_head buf_list;
193 struct {
194 struct page **buf_pages;
195 struct io_uring_buf_ring *buf_ring;
196 };
197 };
dbc7d452 198 __u16 bgid;
c7fb1942
JA
199
200 /* below is for ring provided buffers */
201 __u16 buf_nr_pages;
202 __u16 nr_entries;
c6e9fa5c
DY
203 __u16 head;
204 __u16 mask;
dbc7d452
JA
205};
206
5a2e745d
JA
207struct io_buffer {
208 struct list_head list;
209 __u64 addr;
d1f82808 210 __u32 len;
5a2e745d 211 __u16 bid;
b1c62645 212 __u16 bgid;
5a2e745d
JA
213};
214
37d1e2e3
JA
215enum {
216 IO_SQ_THREAD_SHOULD_STOP = 0,
217 IO_SQ_THREAD_SHOULD_PARK,
218};
219
534ca6d6
JA
220struct io_sq_data {
221 refcount_t refs;
9e138a48 222 atomic_t park_pending;
09a6f4ef 223 struct mutex lock;
69fb2131
JA
224
225 /* ctx's that are using this sqd */
226 struct list_head ctx_list;
69fb2131 227
534ca6d6
JA
228 struct task_struct *thread;
229 struct wait_queue_head wait;
08369246
XW
230
231 unsigned sq_thread_idle;
37d1e2e3
JA
232 int sq_cpu;
233 pid_t task_pid;
5c2469e0 234 pid_t task_tgid;
37d1e2e3
JA
235
236 unsigned long state;
37d1e2e3 237 struct completion exited;
534ca6d6
JA
238};
239
6dd0be1e 240#define IO_COMPL_BATCH 32
6ff119a6 241#define IO_REQ_CACHE_SIZE 32
bf019da7 242#define IO_REQ_ALLOC_BATCH 8
258b29a9 243
e27f928e 244#define BGID_ARRAY 64
2b188cc1 245
e7a6c00d
JA
246/*
247 * Arbitrary limit, can be raised if need be
248 */
249#define IO_RINGFD_REG_MAX 16
250
53e043b2
SM
251struct io_uring_task {
252 /* submission side */
09899b19 253 int cached_refs;
53e043b2
SM
254 struct xarray xa;
255 struct wait_queue_head wait;
ee53fb2b
SM
256 const struct io_ring_ctx *last;
257 struct io_wq *io_wq;
53e043b2 258 struct percpu_counter inflight;
9cae36a0 259 atomic_t inflight_tracked;
53e043b2 260 atomic_t in_idle;
53e043b2
SM
261
262 spinlock_t task_lock;
263 struct io_wq_work_list task_list;
3fe07bcd 264 struct io_wq_work_list prio_task_list;
53e043b2 265 struct callback_head task_work;
e7a6c00d 266 struct file **registered_rings;
6294f368 267 bool task_running;
53e043b2
SM
268};
269
09bb8394
JA
270/*
271 * First field must be the file pointer in all the
272 * iocb unions! See also 'struct kiocb' in <linux/fs.h>
273 */
8d4388d1 274struct io_poll {
221c5eb2 275 struct file *file;
018043be 276 struct wait_queue_head *head;
221c5eb2 277 __poll_t events;
392edb45 278 struct wait_queue_entry wait;
221c5eb2
JA
279};
280
9d805892 281struct io_poll_update {
018043be 282 struct file *file;
9d805892
PB
283 u64 old_user_data;
284 u64 new_user_data;
285 __poll_t events;
b69de288
JA
286 bool update_events;
287 bool update_user_data;
018043be
PB
288};
289
ad8a48ac
JA
290struct io_timeout_data {
291 struct io_kiocb *req;
292 struct hrtimer timer;
293 struct timespec64 ts;
294 enum hrtimer_mode mode;
50c1df2b 295 u32 flags;
ad8a48ac
JA
296};
297
8ed8d3c3
JA
298struct io_accept {
299 struct file *file;
300 struct sockaddr __user *addr;
301 int __user *addr_len;
302 int flags;
aaa4db12 303 u32 file_slot;
09952e3e 304 unsigned long nofile;
8ed8d3c3
JA
305};
306
1374e08e
JA
307struct io_socket {
308 struct file *file;
309 int domain;
310 int type;
311 int protocol;
312 int flags;
313 u32 file_slot;
314 unsigned long nofile;
315};
316
fbf23849
JA
317struct io_cancel {
318 struct file *file;
319 u64 addr;
8e29da69 320 u32 flags;
4bf94615 321 s32 fd;
fbf23849
JA
322};
323
b29472ee
JA
324struct io_timeout {
325 struct file *file;
bfe68a22
PB
326 u32 off;
327 u32 target_seq;
135fcde8 328 struct list_head list;
90cd7e42
PB
329 /* head of the link, used by linked timeouts only */
330 struct io_kiocb *head;
89b263f6
JA
331 /* for linked completions */
332 struct io_kiocb *prev;
b29472ee
JA
333};
334
0bdf7a2d
PB
335struct io_timeout_rem {
336 struct file *file;
337 u64 addr;
9c8e11b3
PB
338
339 /* timeout update */
340 struct timespec64 ts;
341 u32 flags;
f1042b6c 342 bool ltimeout;
0bdf7a2d
PB
343};
344
9adbd45d
JA
345struct io_rw {
346 /* NOTE: kiocb has the file as the first member, so don't do it here */
347 struct kiocb kiocb;
348 u64 addr;
584b0180 349 u32 len;
20cbd21d 350 rwf_t flags;
9adbd45d
JA
351};
352
3fbb51c1
JA
353struct io_connect {
354 struct file *file;
355 struct sockaddr __user *addr;
356 int addr_len;
357};
358
e47293fd
JA
359struct io_sr_msg {
360 struct file *file;
fddaface 361 union {
4af3417a
PB
362 struct compat_msghdr __user *umsg_compat;
363 struct user_msghdr __user *umsg;
364 void __user *buf;
fddaface 365 };
e47293fd 366 int msg_flags;
fddaface 367 size_t len;
7ba89d2a 368 size_t done_io;
0455d4cc 369 unsigned int flags;
e47293fd
JA
370};
371
269bbe5f 372struct io_rsrc_update {
05f3fb3c
JA
373 struct file *file;
374 u64 arg;
375 u32 nr_args;
376 u32 offset;
377};
378
ddf0322d
JA
379struct io_provide_buf {
380 struct file *file;
381 __u64 addr;
38134ada 382 __u32 len;
ddf0322d
JA
383 __u32 bgid;
384 __u16 nbufs;
385 __u16 bid;
386};
387
36f4fa68
JA
388struct io_shutdown {
389 struct file *file;
390 int how;
391};
392
4f57f06c
JA
393struct io_msg {
394 struct file *file;
395 u64 user_data;
396 u32 len;
397};
398
f499a021
JA
399struct io_async_connect {
400 struct sockaddr_storage address;
401};
402
03b1230c
JA
403struct io_async_msghdr {
404 struct iovec fast_iov[UIO_FASTIOV];
257e84a5
PB
405 /* points to an allocated iov, if NULL we use fast_iov instead */
406 struct iovec *free_iov;
03b1230c
JA
407 struct sockaddr __user *uaddr;
408 struct msghdr msg;
b537916c 409 struct sockaddr_storage addr;
03b1230c
JA
410};
411
538941e2 412struct io_rw_state {
ff6165b2 413 struct iov_iter iter;
cd658695 414 struct iov_iter_state iter_state;
c88598a9 415 struct iovec fast_iov[UIO_FASTIOV];
538941e2
PB
416};
417
418struct io_async_rw {
419 struct io_rw_state s;
420 const struct iovec *free_iovec;
227c0c96 421 size_t bytes_done;
bcf5a063 422 struct wait_page_queue wpq;
f67676d1
JA
423};
424
d7718a9d 425struct async_poll {
8d4388d1
JA
426 struct io_poll poll;
427 struct io_poll *double_poll;
6b47ee6e
PB
428};
429
992da01a
PB
430enum {
431 IORING_RSRC_FILE = 0,
432 IORING_RSRC_BUFFER = 1,
433};
434
10988a0a
DY
435enum {
436 IO_CHECK_CQ_OVERFLOW_BIT,
155bc950 437 IO_CHECK_CQ_DROPPED_BIT,
10988a0a
DY
438};
439
13bf43f5
PB
440struct io_tctx_node {
441 struct list_head ctx_node;
442 struct task_struct *task;
13bf43f5
PB
443 struct io_ring_ctx *ctx;
444};
445
27dc8338
PB
446struct io_defer_entry {
447 struct list_head list;
448 struct io_kiocb *req;
9cf7c104 449 u32 seq;
2b188cc1
JA
450};
451
b21432b4
JA
452struct io_cancel_data {
453 struct io_ring_ctx *ctx;
4bf94615
JA
454 union {
455 u64 data;
456 struct file *file;
457 };
8e29da69
JA
458 u32 flags;
459 int seq;
b21432b4
JA
460};
461
d3656344 462struct io_op_def {
d3656344
JA
463 /* needs req->file assigned */
464 unsigned needs_file : 1;
6d63416d
PB
465 /* should block plug */
466 unsigned plug : 1;
d3656344
JA
467 /* hash wq insertion if file is a regular file */
468 unsigned hash_reg_file : 1;
469 /* unbound wq insertion if file is a non-regular file */
470 unsigned unbound_nonreg_file : 1;
8a72758c
JA
471 /* set if opcode supports polled "wait" */
472 unsigned pollin : 1;
473 unsigned pollout : 1;
52dd8640 474 unsigned poll_exclusive : 1;
bcda7baa
JA
475 /* op supports buffer selection */
476 unsigned buffer_select : 1;
6d63416d
PB
477 /* opcode is not supported by this kernel */
478 unsigned not_supported : 1;
5bd2182d
PM
479 /* skip auditing */
480 unsigned audit_skip : 1;
73911426
JA
481 /* supports ioprio */
482 unsigned ioprio : 1;
483 /* supports iopoll */
484 unsigned iopoll : 1;
e8c2bc1f
JA
485 /* size of async data needed, if any */
486 unsigned short async_size;
d3656344 487
0702e536
JA
488 int (*prep)(struct io_kiocb *, const struct io_uring_sqe *);
489 int (*issue)(struct io_kiocb *, unsigned int);
dc919caf 490 int (*prep_async)(struct io_kiocb *);
4d4c9cff 491 void (*cleanup)(struct io_kiocb *);
d3656344
JA
492};
493
0702e536
JA
494static const struct io_op_def io_op_defs[];
495
0756a869
PB
496/* requests with any of those set should undergo io_disarm_next() */
497#define IO_DISARM_MASK (REQ_F_ARM_LTIMEOUT | REQ_F_LINK_TIMEOUT | REQ_F_FAIL)
da1a08c5 498#define IO_REQ_LINK_FLAGS (REQ_F_LINK | REQ_F_HARDLINK)
0756a869 499
7a612350 500static bool io_disarm_next(struct io_kiocb *req);
eef51daa 501static void io_uring_del_tctx_node(unsigned long index);
9936c7c2
PB
502static void io_uring_try_cancel_requests(struct io_ring_ctx *ctx,
503 struct task_struct *task,
3dd0c97a 504 bool cancel_all);
78cc687b 505static void io_uring_cancel_generic(bool cancel_all, struct io_sq_data *sqd);
1ffc5422 506
c7dae4ba 507static void io_dismantle_req(struct io_kiocb *req);
94ae5e77 508static void io_queue_linked_timeout(struct io_kiocb *req);
fdecb662 509static int __io_register_rsrc_update(struct io_ring_ctx *ctx, unsigned type,
c3bdad02 510 struct io_uring_rsrc_update2 *up,
98f0b3b4 511 unsigned nr_args);
68fb8979 512static void io_clean_op(struct io_kiocb *req);
cbc2e203 513static void io_queue_sqe(struct io_kiocb *req);
269bbe5f 514static void io_rsrc_put_work(struct work_struct *work);
de0617e4 515
907d1df3 516static void io_req_task_queue(struct io_kiocb *req);
c450178d 517static void __io_submit_flush_completions(struct io_ring_ctx *ctx);
179ae0d1 518static int io_req_prep_async(struct io_kiocb *req);
de0617e4 519
b9445598
PB
520static int io_install_fixed_file(struct io_kiocb *req, struct file *file,
521 unsigned int issue_flags, u32 slot_index);
7df778be 522
f1042b6c 523static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer);
9aa8dfde 524static void io_eventfd_signal(struct io_ring_ctx *ctx);
4e118cd9 525static void io_req_tw_post_queue(struct io_kiocb *req, s32 res, u32 cflags);
b9445598 526
2b188cc1
JA
527static struct kmem_cache *req_cachep;
528
0918682b 529static const struct file_operations io_uring_fops;
2b188cc1 530
33337d03
DY
531const char *io_uring_get_opcode(u8 opcode)
532{
533 switch ((enum io_uring_op)opcode) {
534 case IORING_OP_NOP:
535 return "NOP";
536 case IORING_OP_READV:
537 return "READV";
538 case IORING_OP_WRITEV:
539 return "WRITEV";
540 case IORING_OP_FSYNC:
541 return "FSYNC";
542 case IORING_OP_READ_FIXED:
543 return "READ_FIXED";
544 case IORING_OP_WRITE_FIXED:
545 return "WRITE_FIXED";
546 case IORING_OP_POLL_ADD:
547 return "POLL_ADD";
548 case IORING_OP_POLL_REMOVE:
549 return "POLL_REMOVE";
550 case IORING_OP_SYNC_FILE_RANGE:
551 return "SYNC_FILE_RANGE";
552 case IORING_OP_SENDMSG:
553 return "SENDMSG";
554 case IORING_OP_RECVMSG:
555 return "RECVMSG";
556 case IORING_OP_TIMEOUT:
557 return "TIMEOUT";
558 case IORING_OP_TIMEOUT_REMOVE:
559 return "TIMEOUT_REMOVE";
560 case IORING_OP_ACCEPT:
561 return "ACCEPT";
562 case IORING_OP_ASYNC_CANCEL:
563 return "ASYNC_CANCEL";
564 case IORING_OP_LINK_TIMEOUT:
565 return "LINK_TIMEOUT";
566 case IORING_OP_CONNECT:
567 return "CONNECT";
568 case IORING_OP_FALLOCATE:
569 return "FALLOCATE";
570 case IORING_OP_OPENAT:
571 return "OPENAT";
572 case IORING_OP_CLOSE:
573 return "CLOSE";
574 case IORING_OP_FILES_UPDATE:
575 return "FILES_UPDATE";
576 case IORING_OP_STATX:
577 return "STATX";
578 case IORING_OP_READ:
579 return "READ";
580 case IORING_OP_WRITE:
581 return "WRITE";
582 case IORING_OP_FADVISE:
583 return "FADVISE";
584 case IORING_OP_MADVISE:
585 return "MADVISE";
586 case IORING_OP_SEND:
587 return "SEND";
588 case IORING_OP_RECV:
589 return "RECV";
590 case IORING_OP_OPENAT2:
591 return "OPENAT2";
592 case IORING_OP_EPOLL_CTL:
593 return "EPOLL_CTL";
594 case IORING_OP_SPLICE:
595 return "SPLICE";
596 case IORING_OP_PROVIDE_BUFFERS:
597 return "PROVIDE_BUFFERS";
598 case IORING_OP_REMOVE_BUFFERS:
599 return "REMOVE_BUFFERS";
600 case IORING_OP_TEE:
601 return "TEE";
602 case IORING_OP_SHUTDOWN:
603 return "SHUTDOWN";
604 case IORING_OP_RENAMEAT:
605 return "RENAMEAT";
606 case IORING_OP_UNLINKAT:
607 return "UNLINKAT";
608 case IORING_OP_MKDIRAT:
609 return "MKDIRAT";
610 case IORING_OP_SYMLINKAT:
611 return "SYMLINKAT";
612 case IORING_OP_LINKAT:
613 return "LINKAT";
614 case IORING_OP_MSG_RING:
615 return "MSG_RING";
616 case IORING_OP_FSETXATTR:
617 return "FSETXATTR";
618 case IORING_OP_SETXATTR:
619 return "SETXATTR";
620 case IORING_OP_FGETXATTR:
621 return "FGETXATTR";
622 case IORING_OP_GETXATTR:
623 return "GETXATTR";
624 case IORING_OP_SOCKET:
625 return "SOCKET";
ee692a21
JA
626 case IORING_OP_URING_CMD:
627 return "URING_CMD";
33337d03
DY
628 case IORING_OP_LAST:
629 return "INVALID";
630 }
631 return "INVALID";
632}
633
cd40cae2
JA
634bool io_is_uring_fops(struct file *file)
635{
636 return file->f_op == &io_uring_fops;
637}
638
2b188cc1
JA
639struct sock *io_uring_get_socket(struct file *file)
640{
641#if defined(CONFIG_UNIX)
cd40cae2 642 if (io_is_uring_fops(file)) {
2b188cc1
JA
643 struct io_ring_ctx *ctx = file->private_data;
644
645 return ctx->ring_sock->sk;
646 }
647#endif
648 return NULL;
649}
650EXPORT_SYMBOL(io_uring_get_socket);
651
1f59bc0f
PB
652#if defined(CONFIG_UNIX)
653static inline bool io_file_need_scm(struct file *filp)
654{
5e45690a
JA
655#if defined(IO_URING_SCM_ALL)
656 return true;
657#else
1f59bc0f 658 return !!unix_get_socket(filp);
5e45690a 659#endif
1f59bc0f
PB
660}
661#else
662static inline bool io_file_need_scm(struct file *filp)
663{
5e45690a 664 return false;
1f59bc0f
PB
665}
666#endif
667
f237c30a
PB
668static inline void io_tw_lock(struct io_ring_ctx *ctx, bool *locked)
669{
670 if (!*locked) {
671 mutex_lock(&ctx->uring_lock);
672 *locked = true;
673 }
674}
675
f2f87370
PB
676#define io_for_each_link(pos, head) \
677 for (pos = (head); pos; pos = pos->link)
678
21c843d5
PB
679/*
680 * Shamelessly stolen from the mm implementation of page reference checking,
681 * see commit f958d7b528b1 for details.
682 */
683#define req_ref_zero_or_close_to_overflow(req) \
684 ((unsigned int) atomic_read(&(req->refs)) + 127u <= 127u)
685
686static inline bool req_ref_inc_not_zero(struct io_kiocb *req)
687{
20e60a38 688 WARN_ON_ONCE(!(req->flags & REQ_F_REFCOUNT));
21c843d5
PB
689 return atomic_inc_not_zero(&req->refs);
690}
691
21c843d5
PB
692static inline bool req_ref_put_and_test(struct io_kiocb *req)
693{
20e60a38
PB
694 if (likely(!(req->flags & REQ_F_REFCOUNT)))
695 return true;
696
21c843d5
PB
697 WARN_ON_ONCE(req_ref_zero_or_close_to_overflow(req));
698 return atomic_dec_and_test(&req->refs);
699}
700
21c843d5
PB
701static inline void req_ref_get(struct io_kiocb *req)
702{
20e60a38 703 WARN_ON_ONCE(!(req->flags & REQ_F_REFCOUNT));
21c843d5
PB
704 WARN_ON_ONCE(req_ref_zero_or_close_to_overflow(req));
705 atomic_inc(&req->refs);
706}
707
c450178d
PB
708static inline void io_submit_flush_completions(struct io_ring_ctx *ctx)
709{
6f33b0bc 710 if (!wq_list_empty(&ctx->submit_state.compl_reqs))
c450178d
PB
711 __io_submit_flush_completions(ctx);
712}
713
48dcd38d 714static inline void __io_req_set_refcount(struct io_kiocb *req, int nr)
20e60a38
PB
715{
716 if (!(req->flags & REQ_F_REFCOUNT)) {
717 req->flags |= REQ_F_REFCOUNT;
48dcd38d 718 atomic_set(&req->refs, nr);
20e60a38
PB
719 }
720}
721
48dcd38d
PB
722static inline void io_req_set_refcount(struct io_kiocb *req)
723{
724 __io_req_set_refcount(req, 1);
725}
726
ab409402
PB
727#define IO_RSRC_REF_BATCH 100
728
25a15d3c
PB
729static void io_rsrc_put_node(struct io_rsrc_node *node, int nr)
730{
731 percpu_ref_put_many(&node->refs, nr);
732}
733
ab409402
PB
734static inline void io_req_put_rsrc_locked(struct io_kiocb *req,
735 struct io_ring_ctx *ctx)
736 __must_hold(&ctx->uring_lock)
36f72fe2 737{
c1bdf8ed 738 struct io_rsrc_node *node = req->rsrc_node;
ab409402 739
c1bdf8ed
PB
740 if (node) {
741 if (node == ctx->rsrc_node)
ab409402
PB
742 ctx->rsrc_cached_refs++;
743 else
25a15d3c 744 io_rsrc_put_node(node, 1);
ab409402
PB
745 }
746}
747
7ac1edc4 748static inline void io_req_put_rsrc(struct io_kiocb *req)
ab409402 749{
c1bdf8ed 750 if (req->rsrc_node)
25a15d3c 751 io_rsrc_put_node(req->rsrc_node, 1);
ab409402
PB
752}
753
754static __cold void io_rsrc_refs_drop(struct io_ring_ctx *ctx)
755 __must_hold(&ctx->uring_lock)
756{
757 if (ctx->rsrc_cached_refs) {
25a15d3c 758 io_rsrc_put_node(ctx->rsrc_node, ctx->rsrc_cached_refs);
ab409402
PB
759 ctx->rsrc_cached_refs = 0;
760 }
761}
762
763static void io_rsrc_refs_refill(struct io_ring_ctx *ctx)
764 __must_hold(&ctx->uring_lock)
765{
766 ctx->rsrc_cached_refs += IO_RSRC_REF_BATCH;
767 percpu_ref_get_many(&ctx->rsrc_node->refs, IO_RSRC_REF_BATCH);
768}
36f72fe2 769
a46be971 770static inline void io_req_set_rsrc_node(struct io_kiocb *req,
5106dd6e
JA
771 struct io_ring_ctx *ctx,
772 unsigned int issue_flags)
36f72fe2 773{
c1bdf8ed
PB
774 if (!req->rsrc_node) {
775 req->rsrc_node = ctx->rsrc_node;
5106dd6e
JA
776
777 if (!(issue_flags & IO_URING_F_UNLOCKED)) {
778 lockdep_assert_held(&ctx->uring_lock);
779 ctx->rsrc_cached_refs--;
780 if (unlikely(ctx->rsrc_cached_refs < 0))
781 io_rsrc_refs_refill(ctx);
782 } else {
c1bdf8ed 783 percpu_ref_get(&req->rsrc_node->refs);
5106dd6e 784 }
36f72fe2
PB
785 }
786}
787
cc3cec83 788static unsigned int __io_put_kbuf(struct io_kiocb *req, struct list_head *list)
3648e526 789{
c7fb1942
JA
790 if (req->flags & REQ_F_BUFFER_RING) {
791 if (req->buf_list)
792 req->buf_list->head++;
793 req->flags &= ~REQ_F_BUFFER_RING;
794 } else {
795 list_add(&req->kbuf->list, list);
796 req->flags &= ~REQ_F_BUFFER_SELECTED;
797 }
3648e526 798
1dbd023e 799 return IORING_CQE_F_BUFFER | (req->buf_index << IORING_CQE_BUFFER_SHIFT);
3648e526
HX
800}
801
cc3cec83 802static inline unsigned int io_put_kbuf_comp(struct io_kiocb *req)
3648e526 803{
8197b053
PB
804 lockdep_assert_held(&req->ctx->completion_lock);
805
c7fb1942 806 if (!(req->flags & (REQ_F_BUFFER_SELECTED|REQ_F_BUFFER_RING)))
3648e526 807 return 0;
cc3cec83
JA
808 return __io_put_kbuf(req, &req->ctx->io_buffers_comp);
809}
810
811static inline unsigned int io_put_kbuf(struct io_kiocb *req,
812 unsigned issue_flags)
813{
814 unsigned int cflags;
815
c7fb1942 816 if (!(req->flags & (REQ_F_BUFFER_SELECTED|REQ_F_BUFFER_RING)))
cc3cec83
JA
817 return 0;
818
819 /*
820 * We can add this buffer back to two lists:
821 *
822 * 1) The io_buffers_cache list. This one is protected by the
823 * ctx->uring_lock. If we already hold this lock, add back to this
824 * list as we can grab it from issue as well.
825 * 2) The io_buffers_comp list. This one is protected by the
826 * ctx->completion_lock.
827 *
828 * We migrate buffers from the comp_list to the issue cache list
829 * when we need one.
830 */
c7fb1942
JA
831 if (req->flags & REQ_F_BUFFER_RING) {
832 /* no buffers to recycle for this case */
833 cflags = __io_put_kbuf(req, NULL);
834 } else if (issue_flags & IO_URING_F_UNLOCKED) {
cc3cec83
JA
835 struct io_ring_ctx *ctx = req->ctx;
836
837 spin_lock(&ctx->completion_lock);
838 cflags = __io_put_kbuf(req, &ctx->io_buffers_comp);
839 spin_unlock(&ctx->completion_lock);
840 } else {
ab0ac095
PB
841 lockdep_assert_held(&req->ctx->uring_lock);
842
cc3cec83
JA
843 cflags = __io_put_kbuf(req, &req->ctx->io_buffers_cache);
844 }
845
846 return cflags;
3648e526
HX
847}
848
dbc7d452
JA
849static struct io_buffer_list *io_buffer_get_list(struct io_ring_ctx *ctx,
850 unsigned int bgid)
851{
9cfc7e94
JA
852 if (ctx->io_bl && bgid < BGID_ARRAY)
853 return &ctx->io_bl[bgid];
dbc7d452 854
9cfc7e94 855 return xa_load(&ctx->io_bl_xa, bgid);
dbc7d452
JA
856}
857
4d55f238 858static void io_kbuf_recycle(struct io_kiocb *req, unsigned issue_flags)
b1c62645
JA
859{
860 struct io_ring_ctx *ctx = req->ctx;
dbc7d452
JA
861 struct io_buffer_list *bl;
862 struct io_buffer *buf;
b1c62645 863
c7fb1942 864 if (!(req->flags & (REQ_F_BUFFER_SELECTED|REQ_F_BUFFER_RING)))
b1c62645 865 return;
42db0c00
HX
866 /*
867 * For legacy provided buffer mode, don't recycle if we already did
868 * IO to this buffer. For ring-mapped provided buffer mode, we should
869 * increment ring->head to explicitly monopolize the buffer to avoid
870 * multiple use.
871 */
872 if ((req->flags & REQ_F_BUFFER_SELECTED) &&
873 (req->flags & REQ_F_PARTIAL_IO))
8a3e8ee5 874 return;
42db0c00 875
934447a6
DY
876 /*
877 * READV uses fields in `struct io_rw` (len/addr) to stash the selected
878 * buffer data. However if that buffer is recycled the original request
879 * data stored in addr is lost. Therefore forbid recycling for now.
880 */
881 if (req->opcode == IORING_OP_READV)
882 return;
883
c7fb1942
JA
884 /*
885 * We don't need to recycle for REQ_F_BUFFER_RING, we can just clear
886 * the flag and hence ensure that bl->head doesn't get incremented.
887 * If the tail has already been incremented, hang on to it.
888 */
889 if (req->flags & REQ_F_BUFFER_RING) {
890 if (req->buf_list) {
42db0c00
HX
891 if (req->flags & REQ_F_PARTIAL_IO) {
892 req->buf_list->head++;
893 req->buf_list = NULL;
894 } else {
895 req->buf_index = req->buf_list->bgid;
896 req->flags &= ~REQ_F_BUFFER_RING;
897 }
c7fb1942
JA
898 }
899 return;
900 }
b1c62645 901
f8929630 902 io_ring_submit_lock(ctx, issue_flags);
b1c62645
JA
903
904 buf = req->kbuf;
dbc7d452
JA
905 bl = io_buffer_get_list(ctx, buf->bgid);
906 list_add(&buf->list, &bl->buf_list);
b1c62645 907 req->flags &= ~REQ_F_BUFFER_SELECTED;
1dbd023e 908 req->buf_index = buf->bgid;
4d55f238 909
f8929630 910 io_ring_submit_unlock(ctx, issue_flags);
b1c62645
JA
911}
912
3dd0c97a
PB
913static bool io_match_task(struct io_kiocb *head, struct task_struct *task,
914 bool cancel_all)
6af3f48b 915 __must_hold(&req->ctx->timeout_lock)
08d23634 916{
9cae36a0
JA
917 struct io_kiocb *req;
918
68207680 919 if (task && head->task != task)
08d23634 920 return false;
9cae36a0
JA
921 if (cancel_all)
922 return true;
923
924 io_for_each_link(req, head) {
925 if (req->flags & REQ_F_INFLIGHT)
926 return true;
927 }
928 return false;
929}
930
931static bool io_match_linked(struct io_kiocb *head)
932{
933 struct io_kiocb *req;
934
935 io_for_each_link(req, head) {
936 if (req->flags & REQ_F_INFLIGHT)
937 return true;
938 }
939 return false;
6af3f48b
PB
940}
941
942/*
943 * As io_match_task() but protected against racing with linked timeouts.
944 * User must not hold timeout_lock.
945 */
946static bool io_match_task_safe(struct io_kiocb *head, struct task_struct *task,
947 bool cancel_all)
948{
9cae36a0
JA
949 bool matched;
950
6af3f48b
PB
951 if (task && head->task != task)
952 return false;
9cae36a0
JA
953 if (cancel_all)
954 return true;
955
956 if (head->flags & REQ_F_LINK_TIMEOUT) {
957 struct io_ring_ctx *ctx = head->ctx;
958
959 /* protect against races with linked timeouts */
960 spin_lock_irq(&ctx->timeout_lock);
961 matched = io_match_linked(head);
962 spin_unlock_irq(&ctx->timeout_lock);
963 } else {
964 matched = io_match_linked(head);
965 }
966 return matched;
6af3f48b
PB
967}
968
a8295b98
HX
969static inline void req_fail_link_node(struct io_kiocb *req, int res)
970{
971 req_set_fail(req);
97b388d7 972 io_req_set_res(req, res, 0);
a8295b98
HX
973}
974
fa05457a
PB
975static inline void io_req_add_to_cache(struct io_kiocb *req, struct io_ring_ctx *ctx)
976{
977 wq_stack_add_head(&req->comp_list, &ctx->submit_state.free_list);
a8295b98
HX
978}
979
c072481d 980static __cold void io_ring_ctx_ref_free(struct percpu_ref *ref)
2b188cc1
JA
981{
982 struct io_ring_ctx *ctx = container_of(ref, struct io_ring_ctx, refs);
983
0f158b4c 984 complete(&ctx->ref_comp);
2b188cc1
JA
985}
986
8eb7e2d0
PB
987static inline bool io_is_timeout_noseq(struct io_kiocb *req)
988{
a43714ac
JA
989 struct io_timeout *timeout = io_kiocb_to_cmd(req);
990
991 return !timeout->off;
8eb7e2d0
PB
992}
993
c072481d 994static __cold void io_fallback_req_func(struct work_struct *work)
f56165e6
PB
995{
996 struct io_ring_ctx *ctx = container_of(work, struct io_ring_ctx,
997 fallback_work.work);
998 struct llist_node *node = llist_del_all(&ctx->fallback_llist);
999 struct io_kiocb *req, *tmp;
f237c30a 1000 bool locked = false;
f56165e6
PB
1001
1002 percpu_ref_get(&ctx->refs);
1003 llist_for_each_entry_safe(req, tmp, node, io_task_work.fallback_node)
f237c30a 1004 req->io_task_work.func(req, &locked);
5636c00d 1005
f237c30a 1006 if (locked) {
c450178d 1007 io_submit_flush_completions(ctx);
f237c30a
PB
1008 mutex_unlock(&ctx->uring_lock);
1009 }
f56165e6
PB
1010 percpu_ref_put(&ctx->refs);
1011}
1012
c072481d 1013static __cold struct io_ring_ctx *io_ring_ctx_alloc(struct io_uring_params *p)
2b188cc1
JA
1014{
1015 struct io_ring_ctx *ctx;
9cfc7e94 1016 int hash_bits;
2b188cc1
JA
1017
1018 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
1019 if (!ctx)
1020 return NULL;
1021
9cfc7e94
JA
1022 xa_init(&ctx->io_bl_xa);
1023
78076bb6
JA
1024 /*
1025 * Use 5 bits less than the max cq entries, that should give us around
1026 * 32 entries per hash list if totally full and uniformly spread.
1027 */
1028 hash_bits = ilog2(p->cq_entries);
1029 hash_bits -= 5;
1030 if (hash_bits <= 0)
1031 hash_bits = 1;
1032 ctx->cancel_hash_bits = hash_bits;
1033 ctx->cancel_hash = kmalloc((1U << hash_bits) * sizeof(struct hlist_head),
1034 GFP_KERNEL);
1035 if (!ctx->cancel_hash)
1036 goto err;
1037 __hash_init(ctx->cancel_hash, 1U << hash_bits);
1038
6224843d
PB
1039 ctx->dummy_ubuf = kzalloc(sizeof(*ctx->dummy_ubuf), GFP_KERNEL);
1040 if (!ctx->dummy_ubuf)
1041 goto err;
1042 /* set invalid range, so io_import_fixed() fails meeting it */
1043 ctx->dummy_ubuf->ubuf = -1UL;
1044
21482896 1045 if (percpu_ref_init(&ctx->refs, io_ring_ctx_ref_free,
206aefde
JA
1046 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL))
1047 goto err;
2b188cc1
JA
1048
1049 ctx->flags = p->flags;
90554200 1050 init_waitqueue_head(&ctx->sqo_sq_wait);
69fb2131 1051 INIT_LIST_HEAD(&ctx->sqd_list);
1d7bb1d5 1052 INIT_LIST_HEAD(&ctx->cq_overflow_list);
cc3cec83 1053 INIT_LIST_HEAD(&ctx->io_buffers_cache);
4d9237e3 1054 INIT_LIST_HEAD(&ctx->apoll_cache);
0f158b4c 1055 init_completion(&ctx->ref_comp);
61cf9370 1056 xa_init_flags(&ctx->personalities, XA_FLAGS_ALLOC1);
2b188cc1 1057 mutex_init(&ctx->uring_lock);
311997b3 1058 init_waitqueue_head(&ctx->cq_wait);
2b188cc1 1059 spin_lock_init(&ctx->completion_lock);
89850fce 1060 spin_lock_init(&ctx->timeout_lock);
5eef4e87 1061 INIT_WQ_LIST(&ctx->iopoll_list);
cc3cec83
JA
1062 INIT_LIST_HEAD(&ctx->io_buffers_pages);
1063 INIT_LIST_HEAD(&ctx->io_buffers_comp);
de0617e4 1064 INIT_LIST_HEAD(&ctx->defer_list);
5262f567 1065 INIT_LIST_HEAD(&ctx->timeout_list);
ef9dd637 1066 INIT_LIST_HEAD(&ctx->ltimeout_list);
d67d2263
BM
1067 spin_lock_init(&ctx->rsrc_ref_lock);
1068 INIT_LIST_HEAD(&ctx->rsrc_ref_list);
269bbe5f
BM
1069 INIT_DELAYED_WORK(&ctx->rsrc_put_work, io_rsrc_put_work);
1070 init_llist_head(&ctx->rsrc_put_llist);
13bf43f5 1071 INIT_LIST_HEAD(&ctx->tctx_list);
c2b6c6bc
PB
1072 ctx->submit_state.free_list.next = NULL;
1073 INIT_WQ_LIST(&ctx->locked_free_list);
9011bf9a 1074 INIT_DELAYED_WORK(&ctx->fallback_work, io_fallback_req_func);
6f33b0bc 1075 INIT_WQ_LIST(&ctx->submit_state.compl_reqs);
2b188cc1 1076 return ctx;
206aefde 1077err:
6224843d 1078 kfree(ctx->dummy_ubuf);
78076bb6 1079 kfree(ctx->cancel_hash);
9cfc7e94
JA
1080 kfree(ctx->io_bl);
1081 xa_destroy(&ctx->io_bl_xa);
206aefde
JA
1082 kfree(ctx);
1083 return NULL;
2b188cc1
JA
1084}
1085
8f6ed49a
PB
1086static void io_account_cq_overflow(struct io_ring_ctx *ctx)
1087{
1088 struct io_rings *r = ctx->rings;
1089
1090 WRITE_ONCE(r->cq_overflow, READ_ONCE(r->cq_overflow) + 1);
1091 ctx->cq_extra--;
1092}
1093
9cf7c104 1094static bool req_need_defer(struct io_kiocb *req, u32 seq)
7adf4eaf 1095{
2bc9930e
JA
1096 if (unlikely(req->flags & REQ_F_IO_DRAIN)) {
1097 struct io_ring_ctx *ctx = req->ctx;
a197f664 1098
8f6ed49a 1099 return seq + READ_ONCE(ctx->cq_extra) != ctx->cached_cq_tail;
2bc9930e 1100 }
de0617e4 1101
9d858b21 1102 return false;
de0617e4
JA
1103}
1104
c97d8a0f
PB
1105static inline bool io_req_ffs_set(struct io_kiocb *req)
1106{
35645ac3 1107 return req->flags & REQ_F_FIXED_FILE;
c97d8a0f
PB
1108}
1109
9cae36a0
JA
1110static inline void io_req_track_inflight(struct io_kiocb *req)
1111{
1112 if (!(req->flags & REQ_F_INFLIGHT)) {
1113 req->flags |= REQ_F_INFLIGHT;
386e4fb6 1114 atomic_inc(&req->task->io_uring->inflight_tracked);
9cae36a0
JA
1115 }
1116}
1117
fd08e530
PB
1118static struct io_kiocb *__io_prep_linked_timeout(struct io_kiocb *req)
1119{
906c6caa
PB
1120 if (WARN_ON_ONCE(!req->link))
1121 return NULL;
1122
4d13d1a4
PB
1123 req->flags &= ~REQ_F_ARM_LTIMEOUT;
1124 req->flags |= REQ_F_LINK_TIMEOUT;
fd08e530
PB
1125
1126 /* linked timeouts should have two refs once prep'ed */
48dcd38d 1127 io_req_set_refcount(req);
4d13d1a4
PB
1128 __io_req_set_refcount(req->link, 2);
1129 return req->link;
fd08e530
PB
1130}
1131
1132static inline struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req)
1133{
4d13d1a4 1134 if (likely(!(req->flags & REQ_F_ARM_LTIMEOUT)))
fd08e530
PB
1135 return NULL;
1136 return __io_prep_linked_timeout(req);
1137}
1138
cb2d344c
PB
1139static noinline void __io_arm_ltimeout(struct io_kiocb *req)
1140{
1141 io_queue_linked_timeout(__io_prep_linked_timeout(req));
1142}
1143
1144static inline void io_arm_ltimeout(struct io_kiocb *req)
1145{
1146 if (unlikely(req->flags & REQ_F_ARM_LTIMEOUT))
1147 __io_arm_ltimeout(req);
1148}
1149
1e6fa521
JA
1150static void io_prep_async_work(struct io_kiocb *req)
1151{
1152 const struct io_op_def *def = &io_op_defs[req->opcode];
1e6fa521
JA
1153 struct io_ring_ctx *ctx = req->ctx;
1154
b8e64b53
PB
1155 if (!(req->flags & REQ_F_CREDS)) {
1156 req->flags |= REQ_F_CREDS;
c10d1f98 1157 req->creds = get_current_cred();
b8e64b53 1158 }
003e8dcc 1159
e1d675df
PB
1160 req->work.list.next = NULL;
1161 req->work.flags = 0;
8e29da69 1162 req->work.cancel_seq = atomic_read(&ctx->cancel_seq);
feaadc4f
PB
1163 if (req->flags & REQ_F_FORCE_ASYNC)
1164 req->work.flags |= IO_WQ_WORK_CONCURRENT;
1165
1e6fa521
JA
1166 if (req->flags & REQ_F_ISREG) {
1167 if (def->hash_reg_file || (ctx->flags & IORING_SETUP_IOPOLL))
1168 io_wq_hash_work(&req->work, file_inode(req->file));
4b982bd0 1169 } else if (!req->file || !S_ISBLK(file_inode(req->file)->i_mode)) {
1e6fa521
JA
1170 if (def->unbound_nonreg_file)
1171 req->work.flags |= IO_WQ_WORK_UNBOUND;
1172 }
561fb04a 1173}
cccf0ee8 1174
cbdcb435 1175static void io_prep_async_link(struct io_kiocb *req)
561fb04a 1176{
cbdcb435 1177 struct io_kiocb *cur;
54a91f3b 1178
44eff40a
PB
1179 if (req->flags & REQ_F_LINK_TIMEOUT) {
1180 struct io_ring_ctx *ctx = req->ctx;
1181
674ee8e1 1182 spin_lock_irq(&ctx->timeout_lock);
44eff40a
PB
1183 io_for_each_link(cur, req)
1184 io_prep_async_work(cur);
674ee8e1 1185 spin_unlock_irq(&ctx->timeout_lock);
44eff40a
PB
1186 } else {
1187 io_for_each_link(cur, req)
1188 io_prep_async_work(cur);
1189 }
561fb04a
JA
1190}
1191
fff4e40e
PB
1192static inline void io_req_add_compl_list(struct io_kiocb *req)
1193{
775a1f2f 1194 struct io_submit_state *state = &req->ctx->submit_state;
fff4e40e 1195
3d4aeb9f 1196 if (!(req->flags & REQ_F_CQE_SKIP))
775a1f2f 1197 state->flush_cqes = true;
fff4e40e
PB
1198 wq_list_add_tail(&req->comp_list, &state->compl_reqs);
1199}
1200
77955efb 1201static void io_queue_iowq(struct io_kiocb *req, bool *dont_use)
561fb04a 1202{
cbdcb435 1203 struct io_kiocb *link = io_prep_linked_timeout(req);
5aa75ed5 1204 struct io_uring_task *tctx = req->task->io_uring;
561fb04a 1205
3bfe6106
JA
1206 BUG_ON(!tctx);
1207 BUG_ON(!tctx->io_wq);
561fb04a 1208
cbdcb435
PB
1209 /* init ->work of the whole link before punting */
1210 io_prep_async_link(req);
991468dc
JA
1211
1212 /*
1213 * Not expected to happen, but if we do have a bug where this _can_
1214 * happen, catch it here and ensure the request is marked as
1215 * canceled. That will make io-wq go through the usual work cancel
1216 * procedure rather than attempt to run this request (or create a new
1217 * worker for it).
1218 */
1219 if (WARN_ON_ONCE(!same_thread_group(req->task, current)))
1220 req->work.flags |= IO_WQ_WORK_CANCEL;
1221
971cf9c1
PB
1222 trace_io_uring_queue_async_work(req->ctx, req, req->cqe.user_data,
1223 req->opcode, req->flags, &req->work,
1224 io_wq_is_hashed(&req->work));
ebf93667 1225 io_wq_enqueue(tctx->io_wq, &req->work);
7271ef3a
JA
1226 if (link)
1227 io_queue_linked_timeout(link);
cbdcb435
PB
1228}
1229
1ee4160c 1230static void io_kill_timeout(struct io_kiocb *req, int status)
8c855885 1231 __must_hold(&req->ctx->completion_lock)
89850fce 1232 __must_hold(&req->ctx->timeout_lock)
5262f567 1233{
e8c2bc1f 1234 struct io_timeout_data *io = req->async_data;
5262f567 1235
fd9c7bc5 1236 if (hrtimer_try_to_cancel(&io->timer) != -1) {
a43714ac
JA
1237 struct io_timeout *timeout = io_kiocb_to_cmd(req);
1238
2ae2eb9d
PB
1239 if (status)
1240 req_set_fail(req);
01cec8c1
PB
1241 atomic_set(&req->ctx->cq_timeouts,
1242 atomic_read(&req->ctx->cq_timeouts) + 1);
a43714ac 1243 list_del_init(&timeout->list);
4e118cd9 1244 io_req_tw_post_queue(req, status, 0);
5262f567
JA
1245 }
1246}
1247
c072481d 1248static __cold void io_queue_deferred(struct io_ring_ctx *ctx)
de0617e4 1249{
441b8a78 1250 while (!list_empty(&ctx->defer_list)) {
27dc8338
PB
1251 struct io_defer_entry *de = list_first_entry(&ctx->defer_list,
1252 struct io_defer_entry, list);
de0617e4 1253
9cf7c104 1254 if (req_need_defer(de->req, de->seq))
04518945 1255 break;
27dc8338 1256 list_del_init(&de->list);
907d1df3 1257 io_req_task_queue(de->req);
27dc8338 1258 kfree(de);
441b8a78 1259 }
04518945
PB
1260}
1261
c072481d 1262static __cold void io_flush_timeouts(struct io_ring_ctx *ctx)
89850fce 1263 __must_hold(&ctx->completion_lock)
de0617e4 1264{
441b8a78 1265 u32 seq = ctx->cached_cq_tail - atomic_read(&ctx->cq_timeouts);
a43714ac 1266 struct io_timeout *timeout, *tmp;
f010505b 1267
79ebeaee 1268 spin_lock_irq(&ctx->timeout_lock);
a43714ac
JA
1269 list_for_each_entry_safe(timeout, tmp, &ctx->timeout_list, list) {
1270 struct io_kiocb *req = cmd_to_io_kiocb(timeout);
f010505b 1271 u32 events_needed, events_got;
de0617e4 1272
8eb7e2d0 1273 if (io_is_timeout_noseq(req))
360428f8 1274 break;
f010505b
MDG
1275
1276 /*
1277 * Since seq can easily wrap around over time, subtract
1278 * the last seq at which timeouts were flushed before comparing.
1279 * Assuming not more than 2^31-1 events have happened since,
1280 * these subtractions won't have wrapped, so we can check if
1281 * target is in [last_seq, current_seq] by comparing the two.
1282 */
a43714ac 1283 events_needed = timeout->target_seq - ctx->cq_last_tm_flush;
f010505b
MDG
1284 events_got = seq - ctx->cq_last_tm_flush;
1285 if (events_got < events_needed)
360428f8 1286 break;
bfe68a22 1287
1ee4160c 1288 io_kill_timeout(req, 0);
f18ee4cf 1289 }
f010505b 1290 ctx->cq_last_tm_flush = seq;
79ebeaee 1291 spin_unlock_irq(&ctx->timeout_lock);
360428f8 1292}
5262f567 1293
9333f6b4
PB
1294static inline void io_commit_cqring(struct io_ring_ctx *ctx)
1295{
1296 /* order cqe stores with ring update */
1297 smp_store_release(&ctx->rings->cq.tail, ctx->cached_cq_tail);
1298}
1299
9aa8dfde 1300static void __io_commit_cqring_flush(struct io_ring_ctx *ctx)
360428f8 1301{
9aa8dfde
PB
1302 if (ctx->off_timeout_used || ctx->drain_active) {
1303 spin_lock(&ctx->completion_lock);
1304 if (ctx->off_timeout_used)
1305 io_flush_timeouts(ctx);
1306 if (ctx->drain_active)
1307 io_queue_deferred(ctx);
1308 io_commit_cqring(ctx);
1309 spin_unlock(&ctx->completion_lock);
1310 }
1311 if (ctx->has_evfd)
1312 io_eventfd_signal(ctx);
de0617e4
JA
1313}
1314
90554200
JA
1315static inline bool io_sqring_full(struct io_ring_ctx *ctx)
1316{
1317 struct io_rings *r = ctx->rings;
1318
a566c556 1319 return READ_ONCE(r->sq.tail) - ctx->cached_sq_head == ctx->sq_entries;
90554200
JA
1320}
1321
888aae2e
PB
1322static inline unsigned int __io_cqring_events(struct io_ring_ctx *ctx)
1323{
1324 return ctx->cached_cq_tail - READ_ONCE(ctx->rings->cq.head);
1325}
1326
d8da428b
PB
1327/*
1328 * writes to the cq entry need to come after reading head; the
1329 * control dependency is enough as we're using WRITE_ONCE to
1330 * fill the cq entry
1331 */
1332static noinline struct io_uring_cqe *__io_get_cqe(struct io_ring_ctx *ctx)
2b188cc1 1333{
75b28aff 1334 struct io_rings *rings = ctx->rings;
d8da428b 1335 unsigned int off = ctx->cached_cq_tail & (ctx->cq_entries - 1);
2fee6bc6 1336 unsigned int shift = 0;
d8da428b
PB
1337 unsigned int free, queued, len;
1338
2fee6bc6
SR
1339 if (ctx->flags & IORING_SETUP_CQE32)
1340 shift = 1;
1341
d8da428b
PB
1342 /* userspace may cheat modifying the tail, be safe and do min */
1343 queued = min(__io_cqring_events(ctx), ctx->cq_entries);
1344 free = ctx->cq_entries - queued;
1345 /* we need a contiguous range, limit based on the current array offset */
1346 len = min(free, ctx->cq_entries - off);
1347 if (!len)
2b188cc1
JA
1348 return NULL;
1349
d8da428b
PB
1350 ctx->cached_cq_tail++;
1351 ctx->cqe_cached = &rings->cqes[off];
1352 ctx->cqe_sentinel = ctx->cqe_cached + len;
2fee6bc6
SR
1353 ctx->cqe_cached++;
1354 return &rings->cqes[off << shift];
d8da428b
PB
1355}
1356
1357static inline struct io_uring_cqe *io_get_cqe(struct io_ring_ctx *ctx)
1358{
1359 if (likely(ctx->cqe_cached < ctx->cqe_sentinel)) {
2fee6bc6
SR
1360 struct io_uring_cqe *cqe = ctx->cqe_cached;
1361
1362 if (ctx->flags & IORING_SETUP_CQE32) {
1363 unsigned int off = ctx->cqe_cached - ctx->rings->cqes;
1364
1365 cqe += off;
1366 }
1367
d8da428b 1368 ctx->cached_cq_tail++;
2fee6bc6
SR
1369 ctx->cqe_cached++;
1370 return cqe;
d8da428b 1371 }
2fee6bc6 1372
d8da428b 1373 return __io_get_cqe(ctx);
2b188cc1
JA
1374}
1375
77bc59b4 1376static void io_eventfd_signal(struct io_ring_ctx *ctx)
f2842ab5 1377{
77bc59b4
UA
1378 struct io_ev_fd *ev_fd;
1379
77bc59b4
UA
1380 rcu_read_lock();
1381 /*
1382 * rcu_dereference ctx->io_ev_fd once and use it for both for checking
1383 * and eventfd_signal
1384 */
1385 ev_fd = rcu_dereference(ctx->io_ev_fd);
1386
1387 /*
1388 * Check again if ev_fd exists incase an io_eventfd_unregister call
1389 * completed between the NULL check of ctx->io_ev_fd at the start of
1390 * the function and rcu_read_lock.
1391 */
1392 if (unlikely(!ev_fd))
1393 goto out;
7e55a19c 1394 if (READ_ONCE(ctx->rings->cq_flags) & IORING_CQ_EVENTFD_DISABLED)
77bc59b4
UA
1395 goto out;
1396
c75312dd 1397 if (!ev_fd->eventfd_async || io_wq_current_is_worker())
77bc59b4 1398 eventfd_signal(ev_fd->cq_ev_fd, 1);
77bc59b4
UA
1399out:
1400 rcu_read_unlock();
f2842ab5
JA
1401}
1402
9aa8dfde
PB
1403static inline void io_cqring_wake(struct io_ring_ctx *ctx)
1404{
1405 /*
1406 * wake_up_all() may seem excessive, but io_wake_function() and
1407 * io_should_wake() handle the termination of the loop and only
1408 * wake as many waiters as we need to.
1409 */
1410 if (wq_has_sleeper(&ctx->cq_wait))
1411 wake_up_all(&ctx->cq_wait);
1412}
1413
2c5d763c
JA
1414/*
1415 * This should only get called when at least one event has been posted.
1416 * Some applications rely on the eventfd notification count only changing
1417 * IFF a new CQE has been added to the CQ ring. There's no depedency on
1418 * 1:1 relationship between how many times this function is called (and
1419 * hence the eventfd count) and number of CQEs posted to the CQ ring.
1420 */
66fc25ca 1421static inline void io_cqring_ev_posted(struct io_ring_ctx *ctx)
1d7bb1d5 1422{
9aa8dfde
PB
1423 if (unlikely(ctx->off_timeout_used || ctx->drain_active ||
1424 ctx->has_evfd))
9333f6b4
PB
1425 __io_commit_cqring_flush(ctx);
1426
9aa8dfde 1427 io_cqring_wake(ctx);
1d7bb1d5
JA
1428}
1429
80c18e4a
PB
1430static void io_cqring_ev_posted_iopoll(struct io_ring_ctx *ctx)
1431{
9aa8dfde
PB
1432 if (unlikely(ctx->off_timeout_used || ctx->drain_active ||
1433 ctx->has_evfd))
9333f6b4
PB
1434 __io_commit_cqring_flush(ctx);
1435
9aa8dfde
PB
1436 if (ctx->flags & IORING_SETUP_SQPOLL)
1437 io_cqring_wake(ctx);
80c18e4a
PB
1438}
1439
c4a2ed72 1440/* Returns true if there are no backlogged entries after the flush */
6c2450ae 1441static bool __io_cqring_overflow_flush(struct io_ring_ctx *ctx, bool force)
1d7bb1d5 1442{
b18032bb 1443 bool all_flushed, posted;
e45a3e05 1444 size_t cqe_size = sizeof(struct io_uring_cqe);
1d7bb1d5 1445
a566c556 1446 if (!force && __io_cqring_events(ctx) == ctx->cq_entries)
e23de15f 1447 return false;
1d7bb1d5 1448
e45a3e05
SR
1449 if (ctx->flags & IORING_SETUP_CQE32)
1450 cqe_size <<= 1;
1451
b18032bb 1452 posted = false;
79ebeaee 1453 spin_lock(&ctx->completion_lock);
6c2450ae 1454 while (!list_empty(&ctx->cq_overflow_list)) {
d068b506 1455 struct io_uring_cqe *cqe = io_get_cqe(ctx);
6c2450ae 1456 struct io_overflow_cqe *ocqe;
e6c8aa9a 1457
1d7bb1d5
JA
1458 if (!cqe && !force)
1459 break;
6c2450ae
PB
1460 ocqe = list_first_entry(&ctx->cq_overflow_list,
1461 struct io_overflow_cqe, list);
1462 if (cqe)
e45a3e05 1463 memcpy(cqe, &ocqe->cqe, cqe_size);
6c2450ae 1464 else
8f6ed49a
PB
1465 io_account_cq_overflow(ctx);
1466
b18032bb 1467 posted = true;
6c2450ae
PB
1468 list_del(&ocqe->list);
1469 kfree(ocqe);
1d7bb1d5
JA
1470 }
1471
09e88404
PB
1472 all_flushed = list_empty(&ctx->cq_overflow_list);
1473 if (all_flushed) {
10988a0a 1474 clear_bit(IO_CHECK_CQ_OVERFLOW_BIT, &ctx->check_cq);
3a4b89a2 1475 atomic_andnot(IORING_SQ_CQ_OVERFLOW, &ctx->rings->sq_flags);
09e88404 1476 }
46930143 1477
60053be8 1478 io_commit_cqring(ctx);
79ebeaee 1479 spin_unlock(&ctx->completion_lock);
b18032bb
JA
1480 if (posted)
1481 io_cqring_ev_posted(ctx);
09e88404 1482 return all_flushed;
1d7bb1d5
JA
1483}
1484
90f67366 1485static bool io_cqring_overflow_flush(struct io_ring_ctx *ctx)
6c503150 1486{
ca0a2651
JA
1487 bool ret = true;
1488
10988a0a 1489 if (test_bit(IO_CHECK_CQ_OVERFLOW_BIT, &ctx->check_cq)) {
6c503150
PB
1490 /* iopoll syncs against uring_lock, not completion_lock */
1491 if (ctx->flags & IORING_SETUP_IOPOLL)
1492 mutex_lock(&ctx->uring_lock);
90f67366 1493 ret = __io_cqring_overflow_flush(ctx, false);
6c503150
PB
1494 if (ctx->flags & IORING_SETUP_IOPOLL)
1495 mutex_unlock(&ctx->uring_lock);
1496 }
ca0a2651
JA
1497
1498 return ret;
6c503150
PB
1499}
1500
9d170164 1501static void __io_put_task(struct task_struct *task, int nr)
6a290a14
PB
1502{
1503 struct io_uring_task *tctx = task->io_uring;
1504
9d170164
PB
1505 percpu_counter_sub(&tctx->inflight, nr);
1506 if (unlikely(atomic_read(&tctx->in_idle)))
1507 wake_up(&tctx->wait);
1508 put_task_struct_many(task, nr);
1509}
1510
1511/* must to be called somewhat shortly after putting a request */
1512static inline void io_put_task(struct task_struct *task, int nr)
1513{
1514 if (likely(task == current))
1515 task->io_uring->cached_refs += nr;
1516 else
1517 __io_put_task(task, nr);
6a290a14
PB
1518}
1519
9a10867a
PB
1520static void io_task_refs_refill(struct io_uring_task *tctx)
1521{
1522 unsigned int refill = -tctx->cached_refs + IO_TCTX_REFS_CACHE_NR;
1523
1524 percpu_counter_add(&tctx->inflight, refill);
1525 refcount_add(refill, &current->usage);
1526 tctx->cached_refs += refill;
1527}
1528
1529static inline void io_get_task_refs(int nr)
1530{
1531 struct io_uring_task *tctx = current->io_uring;
1532
1533 tctx->cached_refs -= nr;
1534 if (unlikely(tctx->cached_refs < 0))
1535 io_task_refs_refill(tctx);
1536}
1537
3cc7fdb9
PB
1538static __cold void io_uring_drop_tctx_refs(struct task_struct *task)
1539{
1540 struct io_uring_task *tctx = task->io_uring;
1541 unsigned int refs = tctx->cached_refs;
1542
1543 if (refs) {
1544 tctx->cached_refs = 0;
1545 percpu_counter_sub(&tctx->inflight, refs);
1546 put_task_struct_many(task, refs);
1547 }
1548}
1549
d4d19c19 1550static bool io_cqring_event_overflow(struct io_ring_ctx *ctx, u64 user_data,
e45a3e05
SR
1551 s32 res, u32 cflags, u64 extra1,
1552 u64 extra2)
2b188cc1 1553{
cce4b8b0 1554 struct io_overflow_cqe *ocqe;
e45a3e05
SR
1555 size_t ocq_size = sizeof(struct io_overflow_cqe);
1556 bool is_cqe32 = (ctx->flags & IORING_SETUP_CQE32);
2b188cc1 1557
e45a3e05
SR
1558 if (is_cqe32)
1559 ocq_size += sizeof(struct io_uring_cqe);
2b188cc1 1560
e45a3e05 1561 ocqe = kmalloc(ocq_size, GFP_ATOMIC | __GFP_ACCOUNT);
08dcd028 1562 trace_io_uring_cqe_overflow(ctx, user_data, res, cflags, ocqe);
cce4b8b0
PB
1563 if (!ocqe) {
1564 /*
1565 * If we're in ring overflow flush mode, or in task cancel mode,
1566 * or cannot allocate an overflow entry, then we need to drop it
1567 * on the floor.
1568 */
8f6ed49a 1569 io_account_cq_overflow(ctx);
155bc950 1570 set_bit(IO_CHECK_CQ_DROPPED_BIT, &ctx->check_cq);
cce4b8b0 1571 return false;
2b188cc1 1572 }
cce4b8b0 1573 if (list_empty(&ctx->cq_overflow_list)) {
10988a0a 1574 set_bit(IO_CHECK_CQ_OVERFLOW_BIT, &ctx->check_cq);
3a4b89a2 1575 atomic_or(IORING_SQ_CQ_OVERFLOW, &ctx->rings->sq_flags);
20c0b380 1576
cce4b8b0 1577 }
d4d19c19 1578 ocqe->cqe.user_data = user_data;
cce4b8b0
PB
1579 ocqe->cqe.res = res;
1580 ocqe->cqe.flags = cflags;
e45a3e05
SR
1581 if (is_cqe32) {
1582 ocqe->cqe.big_cqe[0] = extra1;
1583 ocqe->cqe.big_cqe[1] = extra2;
1584 }
cce4b8b0
PB
1585 list_add_tail(&ocqe->list, &ctx->cq_overflow_list);
1586 return true;
2b188cc1
JA
1587}
1588
91ef75a7
PB
1589static inline bool __io_fill_cqe_req(struct io_ring_ctx *ctx,
1590 struct io_kiocb *req)
d5ec1dfa 1591{
90e7c35f
PB
1592 struct io_uring_cqe *cqe;
1593
f43de1f8
PB
1594 if (!(ctx->flags & IORING_SETUP_CQE32)) {
1595 trace_io_uring_complete(req->ctx, req, req->cqe.user_data,
1596 req->cqe.res, req->cqe.flags, 0, 0);
90e7c35f 1597
f43de1f8
PB
1598 /*
1599 * If we can't get a cq entry, userspace overflowed the
1600 * submission (by quite a lot). Increment the overflow count in
1601 * the ring.
1602 */
1603 cqe = io_get_cqe(ctx);
1604 if (likely(cqe)) {
1605 memcpy(cqe, &req->cqe, sizeof(*cqe));
1606 return true;
1607 }
1608
1609 return io_cqring_event_overflow(ctx, req->cqe.user_data,
1610 req->cqe.res, req->cqe.flags,
1611 0, 0);
1612 } else {
2caf9822
PB
1613 u64 extra1 = 0, extra2 = 0;
1614
1615 if (req->flags & REQ_F_CQE32_INIT) {
1616 extra1 = req->extra1;
1617 extra2 = req->extra2;
1618 }
f43de1f8
PB
1619
1620 trace_io_uring_complete(req->ctx, req, req->cqe.user_data,
1621 req->cqe.res, req->cqe.flags, extra1, extra2);
1622
1623 /*
1624 * If we can't get a cq entry, userspace overflowed the
1625 * submission (by quite a lot). Increment the overflow count in
1626 * the ring.
1627 */
1628 cqe = io_get_cqe(ctx);
1629 if (likely(cqe)) {
1630 memcpy(cqe, &req->cqe, sizeof(struct io_uring_cqe));
1631 WRITE_ONCE(cqe->big_cqe[0], extra1);
1632 WRITE_ONCE(cqe->big_cqe[1], extra2);
1633 return true;
1634 }
1635
1636 return io_cqring_event_overflow(ctx, req->cqe.user_data,
1637 req->cqe.res, req->cqe.flags,
1638 extra1, extra2);
90e7c35f 1639 }
d5ec1dfa
SR
1640}
1641
913a571a
PB
1642static noinline bool io_fill_cqe_aux(struct io_ring_ctx *ctx, u64 user_data,
1643 s32 res, u32 cflags)
bcda7baa 1644{
cd94903d
PB
1645 struct io_uring_cqe *cqe;
1646
913a571a 1647 ctx->cq_extra++;
c4bb964f 1648 trace_io_uring_complete(ctx, NULL, user_data, res, cflags, 0, 0);
cd94903d
PB
1649
1650 /*
1651 * If we can't get a cq entry, userspace overflowed the
1652 * submission (by quite a lot). Increment the overflow count in
1653 * the ring.
1654 */
1655 cqe = io_get_cqe(ctx);
1656 if (likely(cqe)) {
1657 WRITE_ONCE(cqe->user_data, user_data);
1658 WRITE_ONCE(cqe->res, res);
1659 WRITE_ONCE(cqe->flags, cflags);
c5595975
PB
1660
1661 if (ctx->flags & IORING_SETUP_CQE32) {
1662 WRITE_ONCE(cqe->big_cqe[0], 0);
1663 WRITE_ONCE(cqe->big_cqe[1], 0);
1664 }
cd94903d
PB
1665 return true;
1666 }
1667 return io_cqring_event_overflow(ctx, user_data, res, cflags, 0, 0);
bcda7baa
JA
1668}
1669
effcf8bd 1670static void __io_req_complete_put(struct io_kiocb *req)
2b188cc1 1671{
c7dae4ba
JA
1672 /*
1673 * If we're the last reference to this request, add to our locked
1674 * free_list cache.
1675 */
de9b4cca 1676 if (req_ref_put_and_test(req)) {
effcf8bd
SR
1677 struct io_ring_ctx *ctx = req->ctx;
1678
da1a08c5 1679 if (req->flags & IO_REQ_LINK_FLAGS) {
0756a869 1680 if (req->flags & IO_DISARM_MASK)
7a612350
PB
1681 io_disarm_next(req);
1682 if (req->link) {
1683 io_req_task_queue(req->link);
1684 req->link = NULL;
1685 }
1686 }
7ac1edc4 1687 io_req_put_rsrc(req);
8197b053
PB
1688 /*
1689 * Selected buffer deallocation in io_clean_op() assumes that
1690 * we don't hold ->completion_lock. Clean them here to avoid
1691 * deadlocks.
1692 */
1693 io_put_kbuf_comp(req);
c7dae4ba
JA
1694 io_dismantle_req(req);
1695 io_put_task(req->task, 1);
c2b6c6bc 1696 wq_list_add_head(&req->comp_list, &ctx->locked_free_list);
d0acdee2 1697 ctx->locked_free_nr++;
180f829f 1698 }
a37fae8a
HX
1699}
1700
97b388d7 1701static void __io_req_complete_post(struct io_kiocb *req)
effcf8bd 1702{
97b388d7 1703 if (!(req->flags & REQ_F_CQE_SKIP))
91ef75a7 1704 __io_fill_cqe_req(req->ctx, req);
effcf8bd
SR
1705 __io_req_complete_put(req);
1706}
1707
97b388d7 1708static void io_req_complete_post(struct io_kiocb *req)
a37fae8a
HX
1709{
1710 struct io_ring_ctx *ctx = req->ctx;
1711
1712 spin_lock(&ctx->completion_lock);
97b388d7 1713 __io_req_complete_post(req);
7a612350 1714 io_commit_cqring(ctx);
79ebeaee 1715 spin_unlock(&ctx->completion_lock);
a3f34907 1716 io_cqring_ev_posted(ctx);
4e3d9ff9
JA
1717}
1718
99f15d8d 1719inline void __io_req_complete(struct io_kiocb *req, unsigned issue_flags)
bcda7baa 1720{
97b388d7 1721 if (issue_flags & IO_URING_F_COMPLETE_DEFER)
de23077e 1722 req->flags |= REQ_F_COMPLETE_INLINE;
97b388d7
JA
1723 else
1724 io_req_complete_post(req);
0ddf92e8
JA
1725}
1726
54daa9b2 1727static void io_req_complete_failed(struct io_kiocb *req, s32 res)
f41db273 1728{
93d2bcd2 1729 req_set_fail(req);
97b388d7
JA
1730 io_req_set_res(req, res, io_put_kbuf(req, IO_URING_F_UNLOCKED));
1731 io_req_complete_post(req);
f41db273
PB
1732}
1733
864ea921
PB
1734/*
1735 * Don't initialise the fields below on every allocation, but do that in
1736 * advance and keep them valid across allocations.
1737 */
1738static void io_preinit_req(struct io_kiocb *req, struct io_ring_ctx *ctx)
1739{
1740 req->ctx = ctx;
1741 req->link = NULL;
1742 req->async_data = NULL;
1743 /* not necessary, but safer to zero */
cef216fc 1744 req->cqe.res = 0;
864ea921
PB
1745}
1746
dac7a098 1747static void io_flush_cached_locked_reqs(struct io_ring_ctx *ctx,
cd0ca2e0 1748 struct io_submit_state *state)
dac7a098 1749{
79ebeaee 1750 spin_lock(&ctx->completion_lock);
c2b6c6bc 1751 wq_list_splice(&ctx->locked_free_list, &state->free_list);
d0acdee2 1752 ctx->locked_free_nr = 0;
79ebeaee 1753 spin_unlock(&ctx->completion_lock);
dac7a098
PB
1754}
1755
88ab95be 1756static inline bool io_req_cache_empty(struct io_ring_ctx *ctx)
0ddf92e8 1757{
88ab95be 1758 return !ctx->submit_state.free_list.next;
0ddf92e8
JA
1759}
1760
5d5901a3
PB
1761/*
1762 * A request might get retired back into the request caches even before opcode
1763 * handlers and io_issue_sqe() are done with it, e.g. inline completion path.
1764 * Because of that, io_alloc_req() should be called only under ->uring_lock
1765 * and with extra caution to not get a request that is still worked on.
1766 */
c072481d 1767static __cold bool __io_alloc_req_refill(struct io_ring_ctx *ctx)
5d5901a3 1768 __must_hold(&ctx->uring_lock)
2b188cc1 1769{
864ea921 1770 gfp_t gfp = GFP_KERNEL | __GFP_NOWARN;
3ab665b7 1771 void *reqs[IO_REQ_ALLOC_BATCH];
864ea921 1772 int ret, i;
e5d1bc0a 1773
23a5c43b
PB
1774 /*
1775 * If we have more than a batch's worth of requests in our IRQ side
1776 * locked cache, grab the lock and move them over to our submission
1777 * side cache.
1778 */
a6d97a8a 1779 if (data_race(ctx->locked_free_nr) > IO_COMPL_BATCH) {
23a5c43b 1780 io_flush_cached_locked_reqs(ctx, &ctx->submit_state);
88ab95be 1781 if (!io_req_cache_empty(ctx))
23a5c43b
PB
1782 return true;
1783 }
e5d1bc0a 1784
3ab665b7 1785 ret = kmem_cache_alloc_bulk(req_cachep, gfp, ARRAY_SIZE(reqs), reqs);
fd6fab2c 1786
864ea921
PB
1787 /*
1788 * Bulk alloc is all-or-nothing. If we fail to get a batch,
1789 * retry single alloc to be on the safe side.
1790 */
1791 if (unlikely(ret <= 0)) {
3ab665b7
PB
1792 reqs[0] = kmem_cache_alloc(req_cachep, gfp);
1793 if (!reqs[0])
a33ae9ce 1794 return false;
864ea921 1795 ret = 1;
2b188cc1 1796 }
864ea921 1797
37f0e767 1798 percpu_ref_get_many(&ctx->refs, ret);
3ab665b7 1799 for (i = 0; i < ret; i++) {
23a5c43b 1800 struct io_kiocb *req = reqs[i];
3ab665b7
PB
1801
1802 io_preinit_req(req, ctx);
fa05457a 1803 io_req_add_to_cache(req, ctx);
3ab665b7 1804 }
a33ae9ce
PB
1805 return true;
1806}
1807
1808static inline bool io_alloc_req_refill(struct io_ring_ctx *ctx)
1809{
88ab95be 1810 if (unlikely(io_req_cache_empty(ctx)))
a33ae9ce
PB
1811 return __io_alloc_req_refill(ctx);
1812 return true;
1813}
1814
1815static inline struct io_kiocb *io_alloc_req(struct io_ring_ctx *ctx)
1816{
1817 struct io_wq_work_node *node;
1818
1819 node = wq_stack_extract(&ctx->submit_state.free_list);
c2b6c6bc 1820 return container_of(node, struct io_kiocb, comp_list);
2b188cc1
JA
1821}
1822
6b639522 1823static inline void io_dismantle_req(struct io_kiocb *req)
2b188cc1 1824{
094bae49 1825 unsigned int flags = req->flags;
929a3af9 1826
867f8fa5 1827 if (unlikely(flags & IO_REQ_CLEAN_FLAGS))
3a0a6902 1828 io_clean_op(req);
e1d767f0
PB
1829 if (!(flags & REQ_F_FIXED_FILE))
1830 io_put_file(req->file);
e65ef56d
JA
1831}
1832
f5c6cf2a 1833static __cold void io_free_req(struct io_kiocb *req)
c6ca97b3 1834{
51a4cc11 1835 struct io_ring_ctx *ctx = req->ctx;
c6ca97b3 1836
7ac1edc4 1837 io_req_put_rsrc(req);
216578e5 1838 io_dismantle_req(req);
7c660731 1839 io_put_task(req->task, 1);
c6ca97b3 1840
79ebeaee 1841 spin_lock(&ctx->completion_lock);
c2b6c6bc 1842 wq_list_add_head(&req->comp_list, &ctx->locked_free_list);
c34b025f 1843 ctx->locked_free_nr++;
79ebeaee 1844 spin_unlock(&ctx->completion_lock);
e65ef56d
JA
1845}
1846
f2f87370
PB
1847static inline void io_remove_next_linked(struct io_kiocb *req)
1848{
1849 struct io_kiocb *nxt = req->link;
1850
1851 req->link = nxt->link;
1852 nxt->link = NULL;
1853}
1854
81ec803b 1855static struct io_kiocb *io_disarm_linked_timeout(struct io_kiocb *req)
33cc89a9 1856 __must_hold(&req->ctx->completion_lock)
89b263f6 1857 __must_hold(&req->ctx->timeout_lock)
2665abfd 1858{
33cc89a9 1859 struct io_kiocb *link = req->link;
f2f87370 1860
b97e736a 1861 if (link && link->opcode == IORING_OP_LINK_TIMEOUT) {
c9abd7ad 1862 struct io_timeout_data *io = link->async_data;
a43714ac 1863 struct io_timeout *timeout = io_kiocb_to_cmd(link);
7c86ffee 1864
f2f87370 1865 io_remove_next_linked(req);
a43714ac 1866 timeout->head = NULL;
fd9c7bc5 1867 if (hrtimer_try_to_cancel(&io->timer) != -1) {
a43714ac 1868 list_del(&timeout->list);
81ec803b 1869 return link;
c9abd7ad
PB
1870 }
1871 }
81ec803b 1872 return NULL;
7c86ffee
PB
1873}
1874
d148ca4b 1875static void io_fail_links(struct io_kiocb *req)
33cc89a9 1876 __must_hold(&req->ctx->completion_lock)
9e645e11 1877{
33cc89a9 1878 struct io_kiocb *nxt, *link = req->link;
04c76b41 1879 bool ignore_cqes = req->flags & REQ_F_SKIP_LINK_CQES;
9e645e11 1880
f2f87370 1881 req->link = NULL;
f2f87370 1882 while (link) {
a8295b98
HX
1883 long res = -ECANCELED;
1884
1885 if (link->flags & REQ_F_FAIL)
cef216fc 1886 res = link->cqe.res;
a8295b98 1887
f2f87370
PB
1888 nxt = link->link;
1889 link->link = NULL;
2665abfd 1890
cef216fc 1891 trace_io_uring_fail_link(req->ctx, req, req->cqe.user_data,
502c87d6
SR
1892 req->opcode, link);
1893
4e118cd9
PB
1894 if (ignore_cqes)
1895 link->flags |= REQ_F_CQE_SKIP;
1896 else
04c76b41 1897 link->flags &= ~REQ_F_CQE_SKIP;
97b388d7
JA
1898 io_req_set_res(link, res, 0);
1899 __io_req_complete_post(link);
f2f87370 1900 link = nxt;
9e645e11 1901 }
33cc89a9 1902}
9e645e11 1903
33cc89a9
PB
1904static bool io_disarm_next(struct io_kiocb *req)
1905 __must_hold(&req->ctx->completion_lock)
1906{
81ec803b 1907 struct io_kiocb *link = NULL;
33cc89a9
PB
1908 bool posted = false;
1909
0756a869 1910 if (req->flags & REQ_F_ARM_LTIMEOUT) {
81ec803b 1911 link = req->link;
906c6caa 1912 req->flags &= ~REQ_F_ARM_LTIMEOUT;
0756a869
PB
1913 if (link && link->opcode == IORING_OP_LINK_TIMEOUT) {
1914 io_remove_next_linked(req);
4e118cd9 1915 io_req_tw_post_queue(link, -ECANCELED, 0);
0756a869
PB
1916 posted = true;
1917 }
1918 } else if (req->flags & REQ_F_LINK_TIMEOUT) {
89b263f6
JA
1919 struct io_ring_ctx *ctx = req->ctx;
1920
1921 spin_lock_irq(&ctx->timeout_lock);
81ec803b 1922 link = io_disarm_linked_timeout(req);
89b263f6 1923 spin_unlock_irq(&ctx->timeout_lock);
81ec803b
PB
1924 if (link) {
1925 posted = true;
1926 io_req_tw_post_queue(link, -ECANCELED, 0);
1927 }
89b263f6 1928 }
93d2bcd2 1929 if (unlikely((req->flags & REQ_F_FAIL) &&
e4335ed3 1930 !(req->flags & REQ_F_HARDLINK))) {
33cc89a9
PB
1931 posted |= (req->link != NULL);
1932 io_fail_links(req);
1933 }
1934 return posted;
9e645e11
JA
1935}
1936
d81499bf
PB
1937static void __io_req_find_next_prep(struct io_kiocb *req)
1938{
1939 struct io_ring_ctx *ctx = req->ctx;
1940 bool posted;
1941
1942 spin_lock(&ctx->completion_lock);
1943 posted = io_disarm_next(req);
60053be8 1944 io_commit_cqring(ctx);
d81499bf
PB
1945 spin_unlock(&ctx->completion_lock);
1946 if (posted)
1947 io_cqring_ev_posted(ctx);
1948}
1949
1950static inline struct io_kiocb *io_req_find_next(struct io_kiocb *req)
c69f8dbe 1951{
33cc89a9 1952 struct io_kiocb *nxt;
944e58bf 1953
9e645e11
JA
1954 /*
1955 * If LINK is set, we have dependent requests in this chain. If we
1956 * didn't fail this request, queue the first one up, moving any other
1957 * dependencies to the next request. In case of failure, fail the rest
1958 * of the chain.
1959 */
d81499bf
PB
1960 if (unlikely(req->flags & IO_DISARM_MASK))
1961 __io_req_find_next_prep(req);
33cc89a9
PB
1962 nxt = req->link;
1963 req->link = NULL;
1964 return nxt;
4d7dd462 1965}
9e645e11 1966
f237c30a 1967static void ctx_flush_and_put(struct io_ring_ctx *ctx, bool *locked)
2c32395d
PB
1968{
1969 if (!ctx)
1970 return;
ef060ea9
JA
1971 if (ctx->flags & IORING_SETUP_TASKRUN_FLAG)
1972 atomic_andnot(IORING_SQ_TASKRUN, &ctx->rings->sq_flags);
f237c30a 1973 if (*locked) {
c450178d 1974 io_submit_flush_completions(ctx);
2c32395d 1975 mutex_unlock(&ctx->uring_lock);
f237c30a 1976 *locked = false;
2c32395d
PB
1977 }
1978 percpu_ref_put(&ctx->refs);
1979}
1980
f28c240e
HX
1981static inline void ctx_commit_and_unlock(struct io_ring_ctx *ctx)
1982{
1983 io_commit_cqring(ctx);
1984 spin_unlock(&ctx->completion_lock);
1985 io_cqring_ev_posted(ctx);
1986}
1987
1988static void handle_prev_tw_list(struct io_wq_work_node *node,
1989 struct io_ring_ctx **ctx, bool *uring_locked)
1990{
1991 if (*ctx && !*uring_locked)
1992 spin_lock(&(*ctx)->completion_lock);
1993
1994 do {
1995 struct io_wq_work_node *next = node->next;
1996 struct io_kiocb *req = container_of(node, struct io_kiocb,
1997 io_task_work.node);
1998
34d2bfe7
JA
1999 prefetch(container_of(next, struct io_kiocb, io_task_work.node));
2000
f28c240e
HX
2001 if (req->ctx != *ctx) {
2002 if (unlikely(!*uring_locked && *ctx))
2003 ctx_commit_and_unlock(*ctx);
2004
2005 ctx_flush_and_put(*ctx, uring_locked);
2006 *ctx = req->ctx;
2007 /* if not contended, grab and improve batching */
2008 *uring_locked = mutex_trylock(&(*ctx)->uring_lock);
2009 percpu_ref_get(&(*ctx)->refs);
2010 if (unlikely(!*uring_locked))
2011 spin_lock(&(*ctx)->completion_lock);
2012 }
97b388d7 2013 if (likely(*uring_locked)) {
f28c240e 2014 req->io_task_work.func(req, uring_locked);
97b388d7
JA
2015 } else {
2016 req->cqe.flags = io_put_kbuf_comp(req);
2017 __io_req_complete_post(req);
2018 }
f28c240e
HX
2019 node = next;
2020 } while (node);
2021
2022 if (unlikely(!*uring_locked))
2023 ctx_commit_and_unlock(*ctx);
2024}
2025
2026static void handle_tw_list(struct io_wq_work_node *node,
2027 struct io_ring_ctx **ctx, bool *locked)
9f8d032a
HX
2028{
2029 do {
2030 struct io_wq_work_node *next = node->next;
2031 struct io_kiocb *req = container_of(node, struct io_kiocb,
2032 io_task_work.node);
2033
34d2bfe7
JA
2034 prefetch(container_of(next, struct io_kiocb, io_task_work.node));
2035
9f8d032a
HX
2036 if (req->ctx != *ctx) {
2037 ctx_flush_and_put(*ctx, locked);
2038 *ctx = req->ctx;
2039 /* if not contended, grab and improve batching */
2040 *locked = mutex_trylock(&(*ctx)->uring_lock);
2041 percpu_ref_get(&(*ctx)->refs);
2042 }
2043 req->io_task_work.func(req, locked);
2044 node = next;
2045 } while (node);
2046}
2047
7cbf1722 2048static void tctx_task_work(struct callback_head *cb)
c40f6379 2049{
f28c240e 2050 bool uring_locked = false;
ebd0df2e 2051 struct io_ring_ctx *ctx = NULL;
3f18407d
PB
2052 struct io_uring_task *tctx = container_of(cb, struct io_uring_task,
2053 task_work);
c40f6379 2054
16f72070 2055 while (1) {
f28c240e 2056 struct io_wq_work_node *node1, *node2;
3f18407d
PB
2057
2058 spin_lock_irq(&tctx->task_lock);
3fe07bcd 2059 node1 = tctx->prio_task_list.first;
f28c240e 2060 node2 = tctx->task_list.first;
3f18407d 2061 INIT_WQ_LIST(&tctx->task_list);
3fe07bcd 2062 INIT_WQ_LIST(&tctx->prio_task_list);
f28c240e 2063 if (!node2 && !node1)
6294f368 2064 tctx->task_running = false;
3f18407d 2065 spin_unlock_irq(&tctx->task_lock);
f28c240e 2066 if (!node2 && !node1)
6294f368 2067 break;
3f18407d 2068
f28c240e
HX
2069 if (node1)
2070 handle_prev_tw_list(node1, &ctx, &uring_locked);
f28c240e
HX
2071 if (node2)
2072 handle_tw_list(node2, &ctx, &uring_locked);
7cbf1722 2073 cond_resched();
68ca8fc0 2074
a6d97a8a 2075 if (data_race(!tctx->task_list.first) &&
3fe07bcd 2076 data_race(!tctx->prio_task_list.first) && uring_locked)
68ca8fc0 2077 io_submit_flush_completions(ctx);
3f18407d 2078 }
ebd0df2e 2079
f28c240e 2080 ctx_flush_and_put(ctx, &uring_locked);
3cc7fdb9
PB
2081
2082 /* relaxed read is enough as only the task itself sets ->in_idle */
2083 if (unlikely(atomic_read(&tctx->in_idle)))
2084 io_uring_drop_tctx_refs(current);
7cbf1722
JA
2085}
2086
3fe07bcd
JA
2087static void __io_req_task_work_add(struct io_kiocb *req,
2088 struct io_uring_task *tctx,
2089 struct io_wq_work_list *list)
7cbf1722 2090{
9f010507 2091 struct io_ring_ctx *ctx = req->ctx;
e09ee510 2092 struct io_wq_work_node *node;
0b81e80c 2093 unsigned long flags;
6294f368 2094 bool running;
7cbf1722 2095
0b81e80c 2096 spin_lock_irqsave(&tctx->task_lock, flags);
3fe07bcd 2097 wq_list_add_tail(&req->io_task_work.node, list);
6294f368
PB
2098 running = tctx->task_running;
2099 if (!running)
2100 tctx->task_running = true;
0b81e80c 2101 spin_unlock_irqrestore(&tctx->task_lock, flags);
7cbf1722
JA
2102
2103 /* task_work already pending, we're done */
6294f368 2104 if (running)
e09ee510 2105 return;
7cbf1722 2106
ef060ea9
JA
2107 if (ctx->flags & IORING_SETUP_TASKRUN_FLAG)
2108 atomic_or(IORING_SQ_TASKRUN, &ctx->rings->sq_flags);
2109
3fe07bcd 2110 if (likely(!task_work_add(req->task, &tctx->task_work, ctx->notify_method)))
e09ee510 2111 return;
2215bed9 2112
0b81e80c 2113 spin_lock_irqsave(&tctx->task_lock, flags);
6294f368 2114 tctx->task_running = false;
3fe07bcd 2115 node = wq_list_merge(&tctx->prio_task_list, &tctx->task_list);
0b81e80c 2116 spin_unlock_irqrestore(&tctx->task_lock, flags);
7cbf1722 2117
e09ee510
PB
2118 while (node) {
2119 req = container_of(node, struct io_kiocb, io_task_work.node);
2120 node = node->next;
2121 if (llist_add(&req->io_task_work.fallback_node,
2122 &req->ctx->fallback_llist))
2123 schedule_delayed_work(&req->ctx->fallback_work, 1);
2124 }
eab30c4d
PB
2125}
2126
99f15d8d 2127void io_req_task_work_add(struct io_kiocb *req)
3fe07bcd
JA
2128{
2129 struct io_uring_task *tctx = req->task->io_uring;
2130
2131 __io_req_task_work_add(req, tctx, &tctx->task_list);
2132}
2133
2134static void io_req_task_prio_work_add(struct io_kiocb *req)
2135{
2136 struct io_uring_task *tctx = req->task->io_uring;
2137
2138 if (req->ctx->flags & IORING_SETUP_SQPOLL)
2139 __io_req_task_work_add(req, tctx, &tctx->prio_task_list);
2140 else
2141 __io_req_task_work_add(req, tctx, &tctx->task_list);
2142}
2143
4e118cd9 2144static void io_req_tw_post(struct io_kiocb *req, bool *locked)
c40f6379 2145{
97b388d7 2146 io_req_complete_post(req);
4e118cd9 2147}
c40f6379 2148
4e118cd9
PB
2149static void io_req_tw_post_queue(struct io_kiocb *req, s32 res, u32 cflags)
2150{
97b388d7 2151 io_req_set_res(req, res, cflags);
4e118cd9 2152 req->io_task_work.func = io_req_tw_post;
3fe07bcd 2153 io_req_task_work_add(req);
4e118cd9
PB
2154}
2155
f237c30a 2156static void io_req_task_cancel(struct io_kiocb *req, bool *locked)
c40f6379 2157{
b18a1a45 2158 /* not needed for normal modes, but SQPOLL depends on it */
971cf9c1 2159 io_tw_lock(req->ctx, locked);
cef216fc 2160 io_req_complete_failed(req, req->cqe.res);
c40f6379
JA
2161}
2162
f237c30a 2163static void io_req_task_submit(struct io_kiocb *req, bool *locked)
c40f6379 2164{
971cf9c1 2165 io_tw_lock(req->ctx, locked);
316319e8 2166 /* req->task == current here, checking PF_EXITING is safe */
af066f31 2167 if (likely(!(req->task->flags & PF_EXITING)))
cbc2e203 2168 io_queue_sqe(req);
81b6d05c 2169 else
2593553a 2170 io_req_complete_failed(req, -EFAULT);
c40f6379
JA
2171}
2172
2c4b8eb6 2173static void io_req_task_queue_fail(struct io_kiocb *req, int ret)
c40f6379 2174{
97b388d7 2175 io_req_set_res(req, ret, 0);
5b0a6acc 2176 req->io_task_work.func = io_req_task_cancel;
3fe07bcd 2177 io_req_task_work_add(req);
c40f6379
JA
2178}
2179
2c4b8eb6 2180static void io_req_task_queue(struct io_kiocb *req)
a3df7698 2181{
5b0a6acc 2182 req->io_task_work.func = io_req_task_submit;
3fe07bcd 2183 io_req_task_work_add(req);
a3df7698
PB
2184}
2185
773af691
JA
2186static void io_req_task_queue_reissue(struct io_kiocb *req)
2187{
77955efb 2188 req->io_task_work.func = io_queue_iowq;
3fe07bcd 2189 io_req_task_work_add(req);
773af691
JA
2190}
2191
57859f4d 2192static void io_queue_next(struct io_kiocb *req)
c69f8dbe 2193{
9b5f7bd9 2194 struct io_kiocb *nxt = io_req_find_next(req);
944e58bf
PB
2195
2196 if (nxt)
906a8c3f 2197 io_req_task_queue(nxt);
c69f8dbe
JL
2198}
2199
3aa83bfb 2200static void io_free_batch_list(struct io_ring_ctx *ctx,
1cce17ac 2201 struct io_wq_work_node *node)
3aa83bfb 2202 __must_hold(&ctx->uring_lock)
5af1d13e 2203{
d4b7a5ef 2204 struct task_struct *task = NULL;
37f0e767 2205 int task_refs = 0;
5af1d13e 2206
3aa83bfb
PB
2207 do {
2208 struct io_kiocb *req = container_of(node, struct io_kiocb,
2209 comp_list);
2d6500d4 2210
a538be5b
PB
2211 if (unlikely(req->flags & IO_REQ_CLEAN_SLOW_FLAGS)) {
2212 if (req->flags & REQ_F_REFCOUNT) {
2213 node = req->comp_list.next;
2214 if (!req_ref_put_and_test(req))
2215 continue;
2216 }
b605a7fa
PB
2217 if ((req->flags & REQ_F_POLLED) && req->apoll) {
2218 struct async_poll *apoll = req->apoll;
2219
2220 if (apoll->double_poll)
2221 kfree(apoll->double_poll);
2222 list_add(&apoll->poll.wait.entry,
2223 &ctx->apoll_cache);
2224 req->flags &= ~REQ_F_POLLED;
2225 }
da1a08c5 2226 if (req->flags & IO_REQ_LINK_FLAGS)
57859f4d 2227 io_queue_next(req);
a538be5b
PB
2228 if (unlikely(req->flags & IO_REQ_CLEAN_FLAGS))
2229 io_clean_op(req);
c1e53a69 2230 }
a538be5b
PB
2231 if (!(req->flags & REQ_F_FIXED_FILE))
2232 io_put_file(req->file);
2d6500d4 2233
ab409402 2234 io_req_put_rsrc_locked(req, ctx);
5af1d13e 2235
d4b7a5ef
PB
2236 if (req->task != task) {
2237 if (task)
2238 io_put_task(task, task_refs);
2239 task = req->task;
2240 task_refs = 0;
2241 }
2242 task_refs++;
c1e53a69 2243 node = req->comp_list.next;
fa05457a 2244 io_req_add_to_cache(req, ctx);
3aa83bfb 2245 } while (node);
d4b7a5ef 2246
d4b7a5ef
PB
2247 if (task)
2248 io_put_task(task, task_refs);
7a743e22
PB
2249}
2250
c450178d 2251static void __io_submit_flush_completions(struct io_ring_ctx *ctx)
a141dd89 2252 __must_hold(&ctx->uring_lock)
905c172f 2253{
6f33b0bc 2254 struct io_wq_work_node *node, *prev;
cd0ca2e0 2255 struct io_submit_state *state = &ctx->submit_state;
905c172f 2256
3d4aeb9f
PB
2257 if (state->flush_cqes) {
2258 spin_lock(&ctx->completion_lock);
2259 wq_list_for_each(node, prev, &state->compl_reqs) {
2260 struct io_kiocb *req = container_of(node, struct io_kiocb,
6f33b0bc 2261 comp_list);
5182ed2e 2262
f43de1f8
PB
2263 if (!(req->flags & REQ_F_CQE_SKIP))
2264 __io_fill_cqe_req(ctx, req);
3d4aeb9f
PB
2265 }
2266
2267 io_commit_cqring(ctx);
2268 spin_unlock(&ctx->completion_lock);
2269 io_cqring_ev_posted(ctx);
2270 state->flush_cqes = false;
905c172f 2271 }
5182ed2e 2272
1cce17ac 2273 io_free_batch_list(ctx, state->compl_reqs.first);
6f33b0bc 2274 INIT_WQ_LIST(&state->compl_reqs);
7a743e22
PB
2275}
2276
ba816ad6
JA
2277/*
2278 * Drop reference to request, return next in chain (if there is one) if this
2279 * was the last reference to this request.
2280 */
0d85035a 2281static inline struct io_kiocb *io_put_req_find_next(struct io_kiocb *req)
e65ef56d 2282{
9b5f7bd9
PB
2283 struct io_kiocb *nxt = NULL;
2284
de9b4cca 2285 if (req_ref_put_and_test(req)) {
da1a08c5 2286 if (unlikely(req->flags & IO_REQ_LINK_FLAGS))
7819a1f6 2287 nxt = io_req_find_next(req);
f5c6cf2a 2288 io_free_req(req);
2a44f467 2289 }
9b5f7bd9 2290 return nxt;
2b188cc1
JA
2291}
2292
0d85035a 2293static inline void io_put_req(struct io_kiocb *req)
e65ef56d 2294{
f5c6cf2a
PB
2295 if (req_ref_put_and_test(req)) {
2296 io_queue_next(req);
e65ef56d 2297 io_free_req(req);
543af3a1 2298 }
216578e5
PB
2299}
2300
6c503150 2301static unsigned io_cqring_events(struct io_ring_ctx *ctx)
a3a0e43f
JA
2302{
2303 /* See comment at the top of this file */
2304 smp_rmb();
e23de15f 2305 return __io_cqring_events(ctx);
a3a0e43f
JA
2306}
2307
fb5ccc98
PB
2308static inline unsigned int io_sqring_entries(struct io_ring_ctx *ctx)
2309{
2310 struct io_rings *rings = ctx->rings;
2311
2312 /* make sure SQ entry isn't read before tail */
2313 return smp_load_acquire(&rings->sq.tail) - ctx->cached_sq_head;
2314}
2315
4c6e277c
JA
2316static inline bool io_run_task_work(void)
2317{
7f62d40d 2318 if (test_thread_flag(TIF_NOTIFY_SIGNAL) || task_work_pending(current)) {
4c6e277c 2319 __set_current_state(TASK_RUNNING);
7c5d8fa6
EB
2320 clear_notify_signal();
2321 if (task_work_pending(current))
2322 task_work_run();
4c6e277c
JA
2323 return true;
2324 }
2325
2326 return false;
bcda7baa
JA
2327}
2328
5ba3c874 2329static int io_do_iopoll(struct io_ring_ctx *ctx, bool force_nonspin)
def596e9 2330{
5eef4e87 2331 struct io_wq_work_node *pos, *start, *prev;
d729cf9a 2332 unsigned int poll_flags = BLK_POLL_NOSLEEP;
b688f11e 2333 DEFINE_IO_COMP_BATCH(iob);
5ba3c874 2334 int nr_events = 0;
def596e9
JA
2335
2336 /*
2337 * Only spin for completions if we don't have multiple devices hanging
87a115fb 2338 * off our complete list.
def596e9 2339 */
87a115fb 2340 if (ctx->poll_multi_queue || force_nonspin)
ef99b2d3 2341 poll_flags |= BLK_POLL_ONESHOT;
def596e9 2342
5eef4e87
PB
2343 wq_list_for_each(pos, start, &ctx->iopoll_list) {
2344 struct io_kiocb *req = container_of(pos, struct io_kiocb, comp_list);
3c306fb2 2345 struct io_rw *rw = io_kiocb_to_cmd(req);
a2416e1e 2346 int ret;
def596e9
JA
2347
2348 /*
581f9810
BM
2349 * Move completed and retryable entries to our local lists.
2350 * If we find a request that requires polling, break out
2351 * and complete those lists first, if we have entries there.
def596e9 2352 */
e3f721e6 2353 if (READ_ONCE(req->iopoll_completed))
def596e9
JA
2354 break;
2355
3c306fb2 2356 ret = rw->kiocb.ki_filp->f_op->iopoll(&rw->kiocb, &iob, poll_flags);
a2416e1e
PB
2357 if (unlikely(ret < 0))
2358 return ret;
2359 else if (ret)
ef99b2d3 2360 poll_flags |= BLK_POLL_ONESHOT;
def596e9 2361
3aadc23e 2362 /* iopoll may have completed current req */
b688f11e
JA
2363 if (!rq_list_empty(iob.req_list) ||
2364 READ_ONCE(req->iopoll_completed))
e3f721e6 2365 break;
def596e9
JA
2366 }
2367
b688f11e
JA
2368 if (!rq_list_empty(iob.req_list))
2369 iob.complete(&iob);
5eef4e87
PB
2370 else if (!pos)
2371 return 0;
def596e9 2372
5eef4e87
PB
2373 prev = start;
2374 wq_list_for_each_resume(pos, prev) {
2375 struct io_kiocb *req = container_of(pos, struct io_kiocb, comp_list);
2376
b3fa03fd
PB
2377 /* order with io_complete_rw_iopoll(), e.g. ->result updates */
2378 if (!smp_load_acquire(&req->iopoll_completed))
e3f721e6 2379 break;
c0713540 2380 nr_events++;
83a13a41
PB
2381 if (unlikely(req->flags & REQ_F_CQE_SKIP))
2382 continue;
91ef75a7
PB
2383
2384 req->cqe.flags = io_put_kbuf(req, 0);
2385 __io_fill_cqe_req(req->ctx, req);
e3f721e6 2386 }
def596e9 2387
f5ed3bcd
PB
2388 if (unlikely(!nr_events))
2389 return 0;
2390
2391 io_commit_cqring(ctx);
2392 io_cqring_ev_posted_iopoll(ctx);
1cce17ac 2393 pos = start ? start->next : ctx->iopoll_list.first;
5eef4e87 2394 wq_list_cut(&ctx->iopoll_list, prev, start);
1cce17ac 2395 io_free_batch_list(ctx, pos);
5ba3c874 2396 return nr_events;
def596e9
JA
2397}
2398
def596e9
JA
2399/*
2400 * We can't just wait for polled events to come to us, we have to actively
2401 * find and complete them.
2402 */
c072481d 2403static __cold void io_iopoll_try_reap_events(struct io_ring_ctx *ctx)
def596e9
JA
2404{
2405 if (!(ctx->flags & IORING_SETUP_IOPOLL))
2406 return;
2407
2408 mutex_lock(&ctx->uring_lock);
5eef4e87 2409 while (!wq_list_empty(&ctx->iopoll_list)) {
b2edc0a7 2410 /* let it sleep and repeat later if can't complete a request */
5ba3c874 2411 if (io_do_iopoll(ctx, true) == 0)
b2edc0a7 2412 break;
08f5439f
JA
2413 /*
2414 * Ensure we allow local-to-the-cpu processing to take place,
2415 * in this case we need to ensure that we reap all events.
3fcee5a6 2416 * Also let task_work, etc. to progress by releasing the mutex
08f5439f 2417 */
3fcee5a6
PB
2418 if (need_resched()) {
2419 mutex_unlock(&ctx->uring_lock);
2420 cond_resched();
2421 mutex_lock(&ctx->uring_lock);
2422 }
def596e9
JA
2423 }
2424 mutex_unlock(&ctx->uring_lock);
2425}
2426
7668b92a 2427static int io_iopoll_check(struct io_ring_ctx *ctx, long min)
def596e9 2428{
7668b92a 2429 unsigned int nr_events = 0;
e9979b36 2430 int ret = 0;
155bc950 2431 unsigned long check_cq;
500f9fba 2432
f39c8a5b
PB
2433 /*
2434 * Don't enter poll loop if we already have events pending.
2435 * If we do, we can potentially be spinning for commands that
2436 * already triggered a CQE (eg in error).
2437 */
155bc950
DY
2438 check_cq = READ_ONCE(ctx->check_cq);
2439 if (check_cq & BIT(IO_CHECK_CQ_OVERFLOW_BIT))
f39c8a5b
PB
2440 __io_cqring_overflow_flush(ctx, false);
2441 if (io_cqring_events(ctx))
d487b43c 2442 return 0;
155bc950
DY
2443
2444 /*
2445 * Similarly do not spin if we have not informed the user of any
2446 * dropped CQE.
2447 */
2448 if (unlikely(check_cq & BIT(IO_CHECK_CQ_DROPPED_BIT)))
2449 return -EBADR;
2450
def596e9 2451 do {
500f9fba
JA
2452 /*
2453 * If a submit got punted to a workqueue, we can have the
2454 * application entering polling for a command before it gets
2455 * issued. That app will hold the uring_lock for the duration
2456 * of the poll right here, so we need to take a breather every
2457 * now and then to ensure that the issue has a chance to add
2458 * the poll to the issued list. Otherwise we can spin here
2459 * forever, while the workqueue is stuck trying to acquire the
2460 * very same mutex.
2461 */
5eef4e87 2462 if (wq_list_empty(&ctx->iopoll_list)) {
8f487ef2
PB
2463 u32 tail = ctx->cached_cq_tail;
2464
500f9fba 2465 mutex_unlock(&ctx->uring_lock);
4c6e277c 2466 io_run_task_work();
500f9fba 2467 mutex_lock(&ctx->uring_lock);
def596e9 2468
8f487ef2
PB
2469 /* some requests don't go through iopoll_list */
2470 if (tail != ctx->cached_cq_tail ||
5eef4e87 2471 wq_list_empty(&ctx->iopoll_list))
e9979b36 2472 break;
500f9fba 2473 }
5ba3c874
PB
2474 ret = io_do_iopoll(ctx, !min);
2475 if (ret < 0)
2476 break;
2477 nr_events += ret;
2478 ret = 0;
2479 } while (nr_events < min && !need_resched());
d487b43c 2480
def596e9
JA
2481 return ret;
2482}
2483
491381ce 2484static void kiocb_end_write(struct io_kiocb *req)
2b188cc1 2485{
491381ce
JA
2486 /*
2487 * Tell lockdep we inherited freeze protection from submission
2488 * thread.
2489 */
2490 if (req->flags & REQ_F_ISREG) {
1c98679d 2491 struct super_block *sb = file_inode(req->file)->i_sb;
2b188cc1 2492
1c98679d
PB
2493 __sb_writers_acquired(sb, SB_FREEZE_WRITE);
2494 sb_end_write(sb);
2b188cc1
JA
2495 }
2496}
2497
b63534c4 2498#ifdef CONFIG_BLOCK
dc2a6e9a 2499static bool io_resubmit_prep(struct io_kiocb *req)
b63534c4 2500{
3c306fb2 2501 struct io_async_rw *io = req->async_data;
b63534c4 2502
d886e185 2503 if (!req_has_async_data(req))
ab454438 2504 return !io_req_prep_async(req);
3c306fb2 2505 iov_iter_restore(&io->s.iter, &io->s.iter_state);
ab454438 2506 return true;
b63534c4 2507}
b63534c4 2508
3e6a0d3c 2509static bool io_rw_should_reissue(struct io_kiocb *req)
b63534c4 2510{
355afaeb 2511 umode_t mode = file_inode(req->file)->i_mode;
3e6a0d3c 2512 struct io_ring_ctx *ctx = req->ctx;
b63534c4 2513
355afaeb
JA
2514 if (!S_ISBLK(mode) && !S_ISREG(mode))
2515 return false;
3e6a0d3c
JA
2516 if ((req->flags & REQ_F_NOWAIT) || (io_wq_current_is_worker() &&
2517 !(ctx->flags & IORING_SETUP_IOPOLL)))
b63534c4 2518 return false;
7c977a58
JA
2519 /*
2520 * If ref is dying, we might be running poll reap from the exit work.
2521 * Don't attempt to reissue from that path, just let it fail with
2522 * -EAGAIN.
2523 */
3e6a0d3c
JA
2524 if (percpu_ref_is_dying(&ctx->refs))
2525 return false;
ef046888
JA
2526 /*
2527 * Play it safe and assume not safe to re-import and reissue if we're
2528 * not in the original thread group (or in task context).
2529 */
2530 if (!same_thread_group(req->task, current) || !in_task())
2531 return false;
3e6a0d3c
JA
2532 return true;
2533}
e82ad485 2534#else
a1ff1e3f 2535static bool io_resubmit_prep(struct io_kiocb *req)
e82ad485
JA
2536{
2537 return false;
2538}
e82ad485 2539static bool io_rw_should_reissue(struct io_kiocb *req)
3e6a0d3c 2540{
b63534c4
JA
2541 return false;
2542}
3e6a0d3c 2543#endif
b63534c4 2544
8ef12efe 2545static bool __io_complete_rw_common(struct io_kiocb *req, long res)
a1d7c393 2546{
3c306fb2
JA
2547 struct io_rw *rw = io_kiocb_to_cmd(req);
2548
2549 if (rw->kiocb.ki_flags & IOCB_WRITE) {
b65c128f 2550 kiocb_end_write(req);
f63cf519
JA
2551 fsnotify_modify(req->file);
2552 } else {
2553 fsnotify_access(req->file);
2554 }
cef216fc 2555 if (unlikely(res != req->cqe.res)) {
9532b99b
PB
2556 if ((res == -EAGAIN || res == -EOPNOTSUPP) &&
2557 io_rw_should_reissue(req)) {
1bacd264 2558 req->flags |= REQ_F_REISSUE | REQ_F_PARTIAL_IO;
8ef12efe 2559 return true;
9532b99b 2560 }
93d2bcd2 2561 req_set_fail(req);
cef216fc 2562 req->cqe.res = res;
9532b99b 2563 }
8ef12efe
JA
2564 return false;
2565}
2566
cc8e9ba7 2567static inline void io_req_task_complete(struct io_kiocb *req, bool *locked)
8ef12efe 2568{
126180b9 2569 if (*locked) {
97b388d7 2570 req->cqe.flags |= io_put_kbuf(req, 0);
de23077e 2571 req->flags |= REQ_F_COMPLETE_INLINE;
fff4e40e 2572 io_req_add_compl_list(req);
126180b9 2573 } else {
97b388d7
JA
2574 req->cqe.flags |= io_put_kbuf(req, IO_URING_F_UNLOCKED);
2575 io_req_complete_post(req);
126180b9 2576 }
8ef12efe
JA
2577}
2578
00f6e68b 2579static void __io_complete_rw(struct io_kiocb *req, long res,
8ef12efe
JA
2580 unsigned int issue_flags)
2581{
2582 if (__io_complete_rw_common(req, res))
2583 return;
97b388d7
JA
2584 io_req_set_res(req, req->cqe.res, io_put_kbuf(req, issue_flags));
2585 __io_req_complete(req, issue_flags);
ba816ad6
JA
2586}
2587
6b19b766 2588static void io_complete_rw(struct kiocb *kiocb, long res)
ba816ad6 2589{
3c306fb2
JA
2590 struct io_rw *rw = container_of(kiocb, struct io_rw, kiocb);
2591 struct io_kiocb *req = cmd_to_io_kiocb(rw);
ba816ad6 2592
8ef12efe
JA
2593 if (__io_complete_rw_common(req, res))
2594 return;
97b388d7 2595 io_req_set_res(req, res, 0);
8ef12efe 2596 req->io_task_work.func = io_req_task_complete;
3fe07bcd 2597 io_req_task_prio_work_add(req);
2b188cc1
JA
2598}
2599
6b19b766 2600static void io_complete_rw_iopoll(struct kiocb *kiocb, long res)
def596e9 2601{
3c306fb2
JA
2602 struct io_rw *rw = container_of(kiocb, struct io_rw, kiocb);
2603 struct io_kiocb *req = cmd_to_io_kiocb(rw);
def596e9 2604
491381ce
JA
2605 if (kiocb->ki_flags & IOCB_WRITE)
2606 kiocb_end_write(req);
cef216fc 2607 if (unlikely(res != req->cqe.res)) {
b66ceaf3 2608 if (res == -EAGAIN && io_rw_should_reissue(req)) {
1bacd264 2609 req->flags |= REQ_F_REISSUE | REQ_F_PARTIAL_IO;
b66ceaf3 2610 return;
9532b99b 2611 }
cef216fc 2612 req->cqe.res = res;
8c130827 2613 }
bbde017a 2614
b3fa03fd
PB
2615 /* order with io_iopoll_complete() checking ->iopoll_completed */
2616 smp_store_release(&req->iopoll_completed, 1);
def596e9
JA
2617}
2618
2619/*
2620 * After the iocb has been issued, it's safe to be found on the poll list.
2621 * Adding the kiocb to the list AFTER submission ensures that we don't
f39c8a5b 2622 * find it from a io_do_iopoll() thread before the issuer is done
def596e9
JA
2623 * accessing the kiocb cookie.
2624 */
9882131c 2625static void io_iopoll_req_issued(struct io_kiocb *req, unsigned int issue_flags)
def596e9
JA
2626{
2627 struct io_ring_ctx *ctx = req->ctx;
3b44b371 2628 const bool needs_lock = issue_flags & IO_URING_F_UNLOCKED;
cb3d8972
PB
2629
2630 /* workqueue context doesn't hold uring_lock, grab it now */
3b44b371 2631 if (unlikely(needs_lock))
cb3d8972 2632 mutex_lock(&ctx->uring_lock);
def596e9
JA
2633
2634 /*
2635 * Track whether we have multiple files in our lists. This will impact
2636 * how we do polling eventually, not spinning if we're on potentially
2637 * different devices.
2638 */
5eef4e87 2639 if (wq_list_empty(&ctx->iopoll_list)) {
915b3dde
HX
2640 ctx->poll_multi_queue = false;
2641 } else if (!ctx->poll_multi_queue) {
def596e9
JA
2642 struct io_kiocb *list_req;
2643
5eef4e87
PB
2644 list_req = container_of(ctx->iopoll_list.first, struct io_kiocb,
2645 comp_list);
30da1b45 2646 if (list_req->file != req->file)
915b3dde 2647 ctx->poll_multi_queue = true;
def596e9
JA
2648 }
2649
2650 /*
2651 * For fast devices, IO may have already completed. If it has, add
2652 * it to the front so we find it first.
2653 */
65a6543d 2654 if (READ_ONCE(req->iopoll_completed))
5eef4e87 2655 wq_list_add_head(&req->comp_list, &ctx->iopoll_list);
def596e9 2656 else
5eef4e87 2657 wq_list_add_tail(&req->comp_list, &ctx->iopoll_list);
bdcd3eab 2658
3b44b371 2659 if (unlikely(needs_lock)) {
cb3d8972
PB
2660 /*
2661 * If IORING_SETUP_SQPOLL is enabled, sqes are either handle
2662 * in sq thread task context or in io worker task context. If
2663 * current task context is sq thread, we don't need to check
2664 * whether should wake up sq thread.
2665 */
2666 if ((ctx->flags & IORING_SETUP_SQPOLL) &&
2667 wq_has_sleeper(&ctx->sq_data->wait))
2668 wake_up(&ctx->sq_data->wait);
2669
2670 mutex_unlock(&ctx->uring_lock);
2671 }
def596e9
JA
2672}
2673
4503b767
JA
2674static bool io_bdev_nowait(struct block_device *bdev)
2675{
9ba0d0c8 2676 return !bdev || blk_queue_nowait(bdev_get_queue(bdev));
4503b767
JA
2677}
2678
2b188cc1
JA
2679/*
2680 * If we tracked the file through the SCM inflight mechanism, we could support
2681 * any file. For now, just ensure that anything potentially problematic is done
2682 * inline.
2683 */
88459b50 2684static bool __io_file_supports_nowait(struct file *file, umode_t mode)
2b188cc1 2685{
4503b767 2686 if (S_ISBLK(mode)) {
4e7b5671
CH
2687 if (IS_ENABLED(CONFIG_BLOCK) &&
2688 io_bdev_nowait(I_BDEV(file->f_mapping->host)))
4503b767
JA
2689 return true;
2690 return false;
2691 }
976517f1 2692 if (S_ISSOCK(mode))
2b188cc1 2693 return true;
4503b767 2694 if (S_ISREG(mode)) {
4e7b5671
CH
2695 if (IS_ENABLED(CONFIG_BLOCK) &&
2696 io_bdev_nowait(file->f_inode->i_sb->s_bdev) &&
4503b767
JA
2697 file->f_op != &io_uring_fops)
2698 return true;
2699 return false;
2700 }
2b188cc1 2701
c5b85625
JA
2702 /* any ->read/write should understand O_NONBLOCK */
2703 if (file->f_flags & O_NONBLOCK)
2704 return true;
35645ac3 2705 return file->f_mode & FMODE_NOWAIT;
2b188cc1 2706}
c5b85625 2707
88459b50
PB
2708/*
2709 * If we tracked the file through the SCM inflight mechanism, we could support
2710 * any file. For now, just ensure that anything potentially problematic is done
2711 * inline.
2712 */
2713static unsigned int io_file_get_flags(struct file *file)
2714{
2715 umode_t mode = file_inode(file)->i_mode;
2716 unsigned int res = 0;
af197f50 2717
88459b50
PB
2718 if (S_ISREG(mode))
2719 res |= FFS_ISREG;
2720 if (__io_file_supports_nowait(file, mode))
2721 res |= FFS_NOWAIT;
5e45690a
JA
2722 if (io_file_need_scm(file))
2723 res |= FFS_SCM;
88459b50 2724 return res;
2b188cc1
JA
2725}
2726
35645ac3 2727static inline bool io_file_supports_nowait(struct io_kiocb *req)
7b29f92d 2728{
88459b50 2729 return req->flags & REQ_F_SUPPORT_NOWAIT;
7b29f92d
JA
2730}
2731
b9a6b8f9 2732static int io_prep_rw(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2b188cc1 2733{
3c306fb2 2734 struct io_rw *rw = io_kiocb_to_cmd(req);
09bb8394
JA
2735 unsigned ioprio;
2736 int ret;
2b188cc1 2737
3c306fb2 2738 rw->kiocb.ki_pos = READ_ONCE(sqe->off);
05b538c1
PB
2739 /* used for fixed read/write too - just read unconditionally */
2740 req->buf_index = READ_ONCE(sqe->buf_index);
2741
2742 if (req->opcode == IORING_OP_READ_FIXED ||
2743 req->opcode == IORING_OP_WRITE_FIXED) {
2744 struct io_ring_ctx *ctx = req->ctx;
2745 u16 index;
2746
2747 if (unlikely(req->buf_index >= ctx->nr_user_bufs))
2748 return -EFAULT;
2749 index = array_index_nospec(req->buf_index, ctx->nr_user_bufs);
2750 req->imu = ctx->user_bufs[index];
2751 io_req_set_rsrc_node(req, ctx, 0);
2752 }
9adbd45d 2753
fb27274a
PB
2754 ioprio = READ_ONCE(sqe->ioprio);
2755 if (ioprio) {
2756 ret = ioprio_check_cap(ioprio);
2757 if (ret)
2758 return ret;
2759
3c306fb2 2760 rw->kiocb.ki_ioprio = ioprio;
fb27274a 2761 } else {
3c306fb2 2762 rw->kiocb.ki_ioprio = get_current_ioprio();
eae071c9
PB
2763 }
2764
3c306fb2
JA
2765 rw->addr = READ_ONCE(sqe->addr);
2766 rw->len = READ_ONCE(sqe->len);
2767 rw->flags = READ_ONCE(sqe->rw_flags);
2b188cc1 2768 return 0;
2b188cc1
JA
2769}
2770
4d4c9cff
JA
2771static void io_readv_writev_cleanup(struct io_kiocb *req)
2772{
2773 struct io_async_rw *io = req->async_data;
2774
2775 kfree(io->free_iovec);
2776}
2777
2b188cc1
JA
2778static inline void io_rw_done(struct kiocb *kiocb, ssize_t ret)
2779{
2780 switch (ret) {
2781 case -EIOCBQUEUED:
2782 break;
2783 case -ERESTARTSYS:
2784 case -ERESTARTNOINTR:
2785 case -ERESTARTNOHAND:
2786 case -ERESTART_RESTARTBLOCK:
2787 /*
2788 * We can't just restart the syscall, since previously
2789 * submitted sqes may already be in progress. Just fail this
2790 * IO with EINTR.
2791 */
2792 ret = -EINTR;
df561f66 2793 fallthrough;
2b188cc1 2794 default:
6b19b766 2795 kiocb->ki_complete(kiocb, ret);
2b188cc1
JA
2796 }
2797}
2798
b4aec400 2799static inline loff_t *io_kiocb_update_pos(struct io_kiocb *req)
d34e1e5b 2800{
3c306fb2 2801 struct io_rw *rw = io_kiocb_to_cmd(req);
d34e1e5b 2802
3c306fb2
JA
2803 if (rw->kiocb.ki_pos != -1)
2804 return &rw->kiocb.ki_pos;
6f83ab22
JA
2805
2806 if (!(req->file->f_mode & FMODE_STREAM)) {
2807 req->flags |= REQ_F_CUR_POS;
3c306fb2
JA
2808 rw->kiocb.ki_pos = req->file->f_pos;
2809 return &rw->kiocb.ki_pos;
d34e1e5b 2810 }
6f83ab22 2811
3c306fb2 2812 rw->kiocb.ki_pos = 0;
6f83ab22 2813 return NULL;
d34e1e5b
DY
2814}
2815
2ea537ca 2816static void kiocb_done(struct io_kiocb *req, ssize_t ret,
889fca73 2817 unsigned int issue_flags)
ba816ad6 2818{
e8c2bc1f 2819 struct io_async_rw *io = req->async_data;
3c306fb2 2820 struct io_rw *rw = io_kiocb_to_cmd(req);
ba04291e 2821
227c0c96 2822 /* add previously done IO, if any */
d886e185 2823 if (req_has_async_data(req) && io->bytes_done > 0) {
227c0c96 2824 if (ret < 0)
e8c2bc1f 2825 ret = io->bytes_done;
227c0c96 2826 else
e8c2bc1f 2827 ret += io->bytes_done;
227c0c96
JA
2828 }
2829
ba04291e 2830 if (req->flags & REQ_F_CUR_POS)
3c306fb2
JA
2831 req->file->f_pos = rw->kiocb.ki_pos;
2832 if (ret >= 0 && (rw->kiocb.ki_complete == io_complete_rw))
00f6e68b 2833 __io_complete_rw(req, ret, issue_flags);
ba816ad6 2834 else
3c306fb2 2835 io_rw_done(&rw->kiocb, ret);
97284637 2836
b66ceaf3 2837 if (req->flags & REQ_F_REISSUE) {
97284637 2838 req->flags &= ~REQ_F_REISSUE;
b91ef187 2839 if (io_resubmit_prep(req))
773af691 2840 io_req_task_queue_reissue(req);
b91ef187
PB
2841 else
2842 io_req_task_queue_fail(req, ret);
97284637 2843 }
ba816ad6
JA
2844}
2845
3c306fb2
JA
2846static int __io_import_fixed(struct io_kiocb *req, int ddir,
2847 struct iov_iter *iter, struct io_mapped_ubuf *imu)
edafccee 2848{
3c306fb2
JA
2849 struct io_rw *rw = io_kiocb_to_cmd(req);
2850 size_t len = rw->len;
2851 u64 buf_end, buf_addr = rw->addr;
edafccee 2852 size_t offset;
edafccee 2853
75769e3f 2854 if (unlikely(check_add_overflow(buf_addr, (u64)len, &buf_end)))
edafccee
JA
2855 return -EFAULT;
2856 /* not inside the mapped region */
4751f53d 2857 if (unlikely(buf_addr < imu->ubuf || buf_end > imu->ubuf_end))
edafccee
JA
2858 return -EFAULT;
2859
2860 /*
2861 * May not be a start of buffer, set size appropriately
2862 * and advance us to the beginning.
2863 */
2864 offset = buf_addr - imu->ubuf;
3c306fb2 2865 iov_iter_bvec(iter, ddir, imu->bvec, imu->nr_bvecs, offset + len);
bd11b3a3
JA
2866
2867 if (offset) {
2868 /*
2869 * Don't use iov_iter_advance() here, as it's really slow for
2870 * using the latter parts of a big fixed buffer - it iterates
2871 * over each segment manually. We can cheat a bit here, because
2872 * we know that:
2873 *
2874 * 1) it's a BVEC iter, we set it up
2875 * 2) all bvecs are PAGE_SIZE in size, except potentially the
2876 * first and last bvec
2877 *
2878 * So just find our index, and adjust the iterator afterwards.
2879 * If the offset is within the first bvec (or the whole first
2880 * bvec, just use iov_iter_advance(). This makes it easier
2881 * since we can just skip the first segment, which may not
2882 * be PAGE_SIZE aligned.
2883 */
2884 const struct bio_vec *bvec = imu->bvec;
2885
2886 if (offset <= bvec->bv_len) {
2887 iov_iter_advance(iter, offset);
2888 } else {
2889 unsigned long seg_skip;
2890
2891 /* skip first vec */
2892 offset -= bvec->bv_len;
2893 seg_skip = 1 + (offset >> PAGE_SHIFT);
2894
2895 iter->bvec = bvec + seg_skip;
2896 iter->nr_segs -= seg_skip;
99c79f66 2897 iter->count -= bvec->bv_len + offset;
bd11b3a3 2898 iter->iov_offset = offset & ~PAGE_MASK;
bd11b3a3
JA
2899 }
2900 }
2901
847595de 2902 return 0;
edafccee
JA
2903}
2904
5106dd6e
JA
2905static int io_import_fixed(struct io_kiocb *req, int rw, struct iov_iter *iter,
2906 unsigned int issue_flags)
eae071c9 2907{
05b538c1
PB
2908 if (WARN_ON_ONCE(!req->imu))
2909 return -EFAULT;
2910 return __io_import_fixed(req, rw, iter, req->imu);
eae071c9
PB
2911}
2912
9cfc7e94
JA
2913static int io_buffer_add_list(struct io_ring_ctx *ctx,
2914 struct io_buffer_list *bl, unsigned int bgid)
bcda7baa 2915{
dbc7d452 2916 bl->bgid = bgid;
9cfc7e94
JA
2917 if (bgid < BGID_ARRAY)
2918 return 0;
2919
2920 return xa_err(xa_store(&ctx->io_bl_xa, bgid, bl, GFP_KERNEL));
dbc7d452
JA
2921}
2922
149c69b0 2923static void __user *io_provided_buffer_select(struct io_kiocb *req, size_t *len,
984824db 2924 struct io_buffer_list *bl)
bcda7baa 2925{
e7637a49
JA
2926 if (!list_empty(&bl->buf_list)) {
2927 struct io_buffer *kbuf;
bcda7baa 2928
dbc7d452
JA
2929 kbuf = list_first_entry(&bl->buf_list, struct io_buffer, list);
2930 list_del(&kbuf->list);
bcda7baa
JA
2931 if (*len > kbuf->len)
2932 *len = kbuf->len;
30d51dd4
PB
2933 req->flags |= REQ_F_BUFFER_SELECTED;
2934 req->kbuf = kbuf;
e7637a49 2935 req->buf_index = kbuf->bid;
984824db 2936 return u64_to_user_ptr(kbuf->addr);
e7637a49 2937 }
984824db 2938 return NULL;
149c69b0
JA
2939}
2940
c7fb1942
JA
2941static void __user *io_ring_buffer_select(struct io_kiocb *req, size_t *len,
2942 struct io_buffer_list *bl,
2943 unsigned int issue_flags)
2944{
2945 struct io_uring_buf_ring *br = bl->buf_ring;
2946 struct io_uring_buf *buf;
c6e9fa5c 2947 __u16 head = bl->head;
c7fb1942 2948
fc9375e3 2949 if (unlikely(smp_load_acquire(&br->tail) == head))
984824db 2950 return NULL;
c7fb1942
JA
2951
2952 head &= bl->mask;
2953 if (head < IO_BUFFER_LIST_BUF_PER_PAGE) {
2954 buf = &br->bufs[head];
bcda7baa 2955 } else {
c7fb1942 2956 int off = head & (IO_BUFFER_LIST_BUF_PER_PAGE - 1);
97da4a53 2957 int index = head / IO_BUFFER_LIST_BUF_PER_PAGE;
c7fb1942
JA
2958 buf = page_address(bl->buf_pages[index]);
2959 buf += off;
bcda7baa 2960 }
c7fb1942
JA
2961 if (*len > buf->len)
2962 *len = buf->len;
2963 req->flags |= REQ_F_BUFFER_RING;
2964 req->buf_list = bl;
2965 req->buf_index = buf->bid;
bcda7baa 2966
a76c0b31 2967 if (issue_flags & IO_URING_F_UNLOCKED || !file_can_poll(req->file)) {
984824db
CH
2968 /*
2969 * If we came in unlocked, we have no choice but to consume the
2970 * buffer here. This does mean it'll be pinned until the IO
2971 * completes. But coming in unlocked means we're in io-wq
2972 * context, hence there should be no further retry. For the
2973 * locked case, the caller must ensure to call the commit when
2974 * the transfer completes (or if we get -EAGAIN and must poll
2975 * or retry).
2976 */
2977 req->buf_list = NULL;
2978 bl->head++;
2979 }
c7fb1942 2980 return u64_to_user_ptr(buf->addr);
bcda7baa
JA
2981}
2982
c54d52c2 2983static void __user *io_buffer_select(struct io_kiocb *req, size_t *len,
4e906702 2984 unsigned int issue_flags)
4d954c25 2985{
dbc7d452
JA
2986 struct io_ring_ctx *ctx = req->ctx;
2987 struct io_buffer_list *bl;
984824db 2988 void __user *ret = NULL;
bcda7baa 2989
f8929630 2990 io_ring_submit_lock(req->ctx, issue_flags);
4d954c25 2991
4e906702 2992 bl = io_buffer_get_list(ctx, req->buf_index);
984824db
CH
2993 if (likely(bl)) {
2994 if (bl->buf_nr_pages)
2995 ret = io_ring_buffer_select(req, len, bl, issue_flags);
2996 else
2997 ret = io_provided_buffer_select(req, len, bl);
bcda7baa 2998 }
984824db
CH
2999 io_ring_submit_unlock(req->ctx, issue_flags);
3000 return ret;
4d954c25
JA
3001}
3002
3003#ifdef CONFIG_COMPAT
3004static ssize_t io_compat_import(struct io_kiocb *req, struct iovec *iov,
51aac424 3005 unsigned int issue_flags)
4d954c25 3006{
3c306fb2 3007 struct io_rw *rw = io_kiocb_to_cmd(req);
4d954c25
JA
3008 struct compat_iovec __user *uiov;
3009 compat_ssize_t clen;
3010 void __user *buf;
e5b00349 3011 size_t len;
4d954c25 3012
3c306fb2 3013 uiov = u64_to_user_ptr(rw->addr);
4d954c25
JA
3014 if (!access_ok(uiov, sizeof(*uiov)))
3015 return -EFAULT;
3016 if (__get_user(clen, &uiov->iov_len))
3017 return -EFAULT;
3018 if (clen < 0)
3019 return -EINVAL;
3020
3021 len = clen;
4e906702 3022 buf = io_buffer_select(req, &len, issue_flags);
984824db
CH
3023 if (!buf)
3024 return -ENOBUFS;
3c306fb2 3025 rw->addr = (unsigned long) buf;
4d954c25 3026 iov[0].iov_base = buf;
3c306fb2 3027 rw->len = iov[0].iov_len = (compat_size_t) len;
4d954c25
JA
3028 return 0;
3029}
3030#endif
3031
3032static ssize_t __io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
51aac424 3033 unsigned int issue_flags)
4d954c25 3034{
3c306fb2
JA
3035 struct io_rw *rw = io_kiocb_to_cmd(req);
3036 struct iovec __user *uiov = u64_to_user_ptr(rw->addr);
4d954c25
JA
3037 void __user *buf;
3038 ssize_t len;
3039
3040 if (copy_from_user(iov, uiov, sizeof(*uiov)))
3041 return -EFAULT;
3042
3043 len = iov[0].iov_len;
3044 if (len < 0)
3045 return -EINVAL;
4e906702 3046 buf = io_buffer_select(req, &len, issue_flags);
984824db
CH
3047 if (!buf)
3048 return -ENOBUFS;
3c306fb2 3049 rw->addr = (unsigned long) buf;
4d954c25 3050 iov[0].iov_base = buf;
3c306fb2 3051 rw->len = iov[0].iov_len = len;
4d954c25
JA
3052 return 0;
3053}
3054
3055static ssize_t io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
51aac424 3056 unsigned int issue_flags)
4d954c25 3057{
3c306fb2
JA
3058 struct io_rw *rw = io_kiocb_to_cmd(req);
3059
c7fb1942 3060 if (req->flags & (REQ_F_BUFFER_SELECTED|REQ_F_BUFFER_RING)) {
3c306fb2
JA
3061 iov[0].iov_base = u64_to_user_ptr(rw->addr);
3062 iov[0].iov_len = rw->len;
4d954c25 3063 return 0;
dddb3e26 3064 }
3c306fb2 3065 if (rw->len != 1)
4d954c25
JA
3066 return -EINVAL;
3067
3068#ifdef CONFIG_COMPAT
3069 if (req->ctx->compat)
51aac424 3070 return io_compat_import(req, iov, issue_flags);
4d954c25
JA
3071#endif
3072
51aac424 3073 return __io_iov_buffer_select(req, iov, issue_flags);
4d954c25
JA
3074}
3075
b66e65f4
JA
3076static inline bool io_do_buffer_select(struct io_kiocb *req)
3077{
3078 if (!(req->flags & REQ_F_BUFFER_SELECT))
3079 return false;
c7fb1942 3080 return !(req->flags & (REQ_F_BUFFER_SELECTED|REQ_F_BUFFER_RING));
b66e65f4
JA
3081}
3082
3c306fb2 3083static struct iovec *__io_import_iovec(int ddir, struct io_kiocb *req,
caa8fe6e
PB
3084 struct io_rw_state *s,
3085 unsigned int issue_flags)
2b188cc1 3086{
3c306fb2 3087 struct io_rw *rw = io_kiocb_to_cmd(req);
5e49c973 3088 struct iov_iter *iter = &s->iter;
847595de 3089 u8 opcode = req->opcode;
caa8fe6e 3090 struct iovec *iovec;
d1d681b0
PB
3091 void __user *buf;
3092 size_t sqe_len;
4d954c25 3093 ssize_t ret;
edafccee 3094
f3251183 3095 if (opcode == IORING_OP_READ_FIXED || opcode == IORING_OP_WRITE_FIXED) {
3c306fb2 3096 ret = io_import_fixed(req, ddir, iter, issue_flags);
f3251183
PB
3097 if (ret)
3098 return ERR_PTR(ret);
3099 return NULL;
3100 }
2b188cc1 3101
3c306fb2
JA
3102 buf = u64_to_user_ptr(rw->addr);
3103 sqe_len = rw->len;
9adbd45d 3104
3a6820f2 3105 if (opcode == IORING_OP_READ || opcode == IORING_OP_WRITE) {
b66e65f4 3106 if (io_do_buffer_select(req)) {
4e906702 3107 buf = io_buffer_select(req, &sqe_len, issue_flags);
984824db
CH
3108 if (!buf)
3109 return ERR_PTR(-ENOBUFS);
3c306fb2
JA
3110 rw->addr = (unsigned long) buf;
3111 rw->len = sqe_len;
bcda7baa
JA
3112 }
3113
3c306fb2 3114 ret = import_single_range(ddir, buf, sqe_len, s->fast_iov, iter);
f3251183
PB
3115 if (ret)
3116 return ERR_PTR(ret);
3117 return NULL;
3a6820f2
JA
3118 }
3119
caa8fe6e 3120 iovec = s->fast_iov;
4d954c25 3121 if (req->flags & REQ_F_BUFFER_SELECT) {
caa8fe6e 3122 ret = io_iov_buffer_select(req, iovec, issue_flags);
f3251183
PB
3123 if (ret)
3124 return ERR_PTR(ret);
3c306fb2 3125 iov_iter_init(iter, ddir, iovec, 1, iovec->iov_len);
f3251183 3126 return NULL;
4d954c25
JA
3127 }
3128
3c306fb2 3129 ret = __import_iovec(ddir, buf, sqe_len, UIO_FASTIOV, &iovec, iter,
89cd35c5 3130 req->ctx->compat);
caa8fe6e
PB
3131 if (unlikely(ret < 0))
3132 return ERR_PTR(ret);
3133 return iovec;
2b188cc1
JA
3134}
3135
5e49c973
PB
3136static inline int io_import_iovec(int rw, struct io_kiocb *req,
3137 struct iovec **iovec, struct io_rw_state *s,
3138 unsigned int issue_flags)
3139{
caa8fe6e
PB
3140 *iovec = __io_import_iovec(rw, req, s, issue_flags);
3141 if (unlikely(IS_ERR(*iovec)))
3142 return PTR_ERR(*iovec);
5e49c973 3143
5e49c973 3144 iov_iter_save_state(&s->iter, &s->iter_state);
caa8fe6e 3145 return 0;
2b188cc1
JA
3146}
3147
0fef9483
JA
3148static inline loff_t *io_kiocb_ppos(struct kiocb *kiocb)
3149{
5b09e37e 3150 return (kiocb->ki_filp->f_mode & FMODE_STREAM) ? NULL : &kiocb->ki_pos;
0fef9483
JA
3151}
3152
31b51510 3153/*
32960613
JA
3154 * For files that don't have ->read_iter() and ->write_iter(), handle them
3155 * by looping over ->read() or ->write() manually.
31b51510 3156 */
3c306fb2 3157static ssize_t loop_rw_iter(int ddir, struct io_rw *rw, struct iov_iter *iter)
32960613 3158{
3c306fb2
JA
3159 struct kiocb *kiocb = &rw->kiocb;
3160 struct file *file = kiocb->ki_filp;
32960613 3161 ssize_t ret = 0;
af9c45ec 3162 loff_t *ppos;
32960613
JA
3163
3164 /*
3165 * Don't support polled IO through this interface, and we can't
3166 * support non-blocking either. For the latter, this just causes
3167 * the kiocb to be handled from an async context.
3168 */
3169 if (kiocb->ki_flags & IOCB_HIPRI)
3170 return -EOPNOTSUPP;
35645ac3
PB
3171 if ((kiocb->ki_flags & IOCB_NOWAIT) &&
3172 !(kiocb->ki_filp->f_flags & O_NONBLOCK))
32960613
JA
3173 return -EAGAIN;
3174
af9c45ec
DY
3175 ppos = io_kiocb_ppos(kiocb);
3176
32960613 3177 while (iov_iter_count(iter)) {
311ae9e1 3178 struct iovec iovec;
32960613
JA
3179 ssize_t nr;
3180
311ae9e1
PB
3181 if (!iov_iter_is_bvec(iter)) {
3182 iovec = iov_iter_iovec(iter);
3183 } else {
3c306fb2
JA
3184 iovec.iov_base = u64_to_user_ptr(rw->addr);
3185 iovec.iov_len = rw->len;
311ae9e1
PB
3186 }
3187
3c306fb2 3188 if (ddir == READ) {
32960613 3189 nr = file->f_op->read(file, iovec.iov_base,
af9c45ec 3190 iovec.iov_len, ppos);
32960613
JA
3191 } else {
3192 nr = file->f_op->write(file, iovec.iov_base,
af9c45ec 3193 iovec.iov_len, ppos);
32960613
JA
3194 }
3195
3196 if (nr < 0) {
3197 if (!ret)
3198 ret = nr;
3199 break;
3200 }
5e929367 3201 ret += nr;
16c8d2df
JA
3202 if (!iov_iter_is_bvec(iter)) {
3203 iov_iter_advance(iter, nr);
3204 } else {
3c306fb2
JA
3205 rw->addr += nr;
3206 rw->len -= nr;
3207 if (!rw->len)
5e929367 3208 break;
16c8d2df 3209 }
32960613
JA
3210 if (nr != iovec.iov_len)
3211 break;
32960613
JA
3212 }
3213
3214 return ret;
3215}
3216
ff6165b2
JA
3217static void io_req_map_rw(struct io_kiocb *req, const struct iovec *iovec,
3218 const struct iovec *fast_iov, struct iov_iter *iter)
f67676d1 3219{
3c306fb2 3220 struct io_async_rw *io = req->async_data;
b64e3444 3221
3c306fb2
JA
3222 memcpy(&io->s.iter, iter, sizeof(*iter));
3223 io->free_iovec = iovec;
3224 io->bytes_done = 0;
ff6165b2 3225 /* can only be fixed buffers, no need to do anything */
9c3a205c 3226 if (iov_iter_is_bvec(iter))
ff6165b2 3227 return;
b64e3444 3228 if (!iovec) {
ff6165b2
JA
3229 unsigned iov_off = 0;
3230
3c306fb2 3231 io->s.iter.iov = io->s.fast_iov;
ff6165b2
JA
3232 if (iter->iov != fast_iov) {
3233 iov_off = iter->iov - fast_iov;
3c306fb2 3234 io->s.iter.iov += iov_off;
ff6165b2 3235 }
3c306fb2
JA
3236 if (io->s.fast_iov != fast_iov)
3237 memcpy(io->s.fast_iov + iov_off, fast_iov + iov_off,
45097dae 3238 sizeof(struct iovec) * iter->nr_segs);
99bc4c38
PB
3239 } else {
3240 req->flags |= REQ_F_NEED_CLEANUP;
f67676d1
JA
3241 }
3242}
3243
99f15d8d 3244bool io_alloc_async_data(struct io_kiocb *req)
3d9932a8 3245{
e8c2bc1f
JA
3246 WARN_ON_ONCE(!io_op_defs[req->opcode].async_size);
3247 req->async_data = kmalloc(io_op_defs[req->opcode].async_size, GFP_KERNEL);
d886e185
PB
3248 if (req->async_data) {
3249 req->flags |= REQ_F_ASYNC_DATA;
3250 return false;
3251 }
3252 return true;
3d9932a8
XW
3253}
3254
ff6165b2 3255static int io_setup_async_rw(struct io_kiocb *req, const struct iovec *iovec,
c88598a9 3256 struct io_rw_state *s, bool force)
b7bb4f7d 3257{
dc919caf 3258 if (!force && !io_op_defs[req->opcode].prep_async)
74566df3 3259 return 0;
d886e185 3260 if (!req_has_async_data(req)) {
cd658695
JA
3261 struct io_async_rw *iorw;
3262
6cb78689 3263 if (io_alloc_async_data(req)) {
6bf985dc 3264 kfree(iovec);
5d204bcf 3265 return -ENOMEM;
6bf985dc 3266 }
b7bb4f7d 3267
c88598a9 3268 io_req_map_rw(req, iovec, s->fast_iov, &s->iter);
cd658695
JA
3269 iorw = req->async_data;
3270 /* we've copied and mapped the iter, ensure state is saved */
538941e2 3271 iov_iter_save_state(&iorw->s.iter, &iorw->s.iter_state);
5d204bcf 3272 }
b7bb4f7d 3273 return 0;
f67676d1
JA
3274}
3275
73debe68 3276static inline int io_rw_prep_async(struct io_kiocb *req, int rw)
c3e330a4 3277{
e8c2bc1f 3278 struct io_async_rw *iorw = req->async_data;
5e49c973 3279 struct iovec *iov;
847595de 3280 int ret;
c3e330a4 3281
51aac424 3282 /* submission path, ->uring_lock should already be taken */
3b44b371 3283 ret = io_import_iovec(rw, req, &iov, &iorw->s, 0);
c3e330a4
PB
3284 if (unlikely(ret < 0))
3285 return ret;
3286
ab0b196c
PB
3287 iorw->bytes_done = 0;
3288 iorw->free_iovec = iov;
3289 if (iov)
3290 req->flags |= REQ_F_NEED_CLEANUP;
c3e330a4
PB
3291 return 0;
3292}
3293
157dc813
JA
3294static int io_readv_prep_async(struct io_kiocb *req)
3295{
3296 return io_rw_prep_async(req, READ);
3297}
3298
3299static int io_writev_prep_async(struct io_kiocb *req)
3300{
3301 return io_rw_prep_async(req, WRITE);
3302}
3303
c1dd91d1 3304/*
ffdc8dab 3305 * This is our waitqueue callback handler, registered through __folio_lock_async()
c1dd91d1
JA
3306 * when we initially tried to do the IO with the iocb armed our waitqueue.
3307 * This gets called when the page is unlocked, and we generally expect that to
3308 * happen when the page IO is completed and the page is now uptodate. This will
3309 * queue a task_work based retry of the operation, attempting to copy the data
3310 * again. If the latter fails because the page was NOT uptodate, then we will
3311 * do a thread based blocking retry of the operation. That's the unexpected
3312 * slow path.
3313 */
bcf5a063
JA
3314static int io_async_buf_func(struct wait_queue_entry *wait, unsigned mode,
3315 int sync, void *arg)
3316{
3317 struct wait_page_queue *wpq;
3318 struct io_kiocb *req = wait->private;
3c306fb2 3319 struct io_rw *rw = io_kiocb_to_cmd(req);
bcf5a063 3320 struct wait_page_key *key = arg;
bcf5a063
JA
3321
3322 wpq = container_of(wait, struct wait_page_queue, wait);
3323
cdc8fcb4
LT
3324 if (!wake_page_match(wpq, key))
3325 return 0;
3326
3c306fb2 3327 rw->kiocb.ki_flags &= ~IOCB_WAITQ;
bcf5a063 3328 list_del_init(&wait->entry);
921b9054 3329 io_req_task_queue(req);
bcf5a063
JA
3330 return 1;
3331}
3332
c1dd91d1
JA
3333/*
3334 * This controls whether a given IO request should be armed for async page
3335 * based retry. If we return false here, the request is handed to the async
3336 * worker threads for retry. If we're doing buffered reads on a regular file,
3337 * we prepare a private wait_page_queue entry and retry the operation. This
3338 * will either succeed because the page is now uptodate and unlocked, or it
3339 * will register a callback when the page is unlocked at IO completion. Through
3340 * that callback, io_uring uses task_work to setup a retry of the operation.
3341 * That retry will attempt the buffered read again. The retry will generally
3342 * succeed, or in rare cases where it fails, we then fall back to using the
3343 * async worker threads for a blocking retry.
3344 */
227c0c96 3345static bool io_rw_should_retry(struct io_kiocb *req)
f67676d1 3346{
3c306fb2
JA
3347 struct io_async_rw *io = req->async_data;
3348 struct wait_page_queue *wait = &io->wpq;
3349 struct io_rw *rw = io_kiocb_to_cmd(req);
3350 struct kiocb *kiocb = &rw->kiocb;
f67676d1 3351
bcf5a063
JA
3352 /* never retry for NOWAIT, we just complete with -EAGAIN */
3353 if (req->flags & REQ_F_NOWAIT)
3354 return false;
f67676d1 3355
227c0c96 3356 /* Only for buffered IO */
3b2a4439 3357 if (kiocb->ki_flags & (IOCB_DIRECT | IOCB_HIPRI))
bcf5a063 3358 return false;
3b2a4439 3359
bcf5a063
JA
3360 /*
3361 * just use poll if we can, and don't attempt if the fs doesn't
3362 * support callback based unlocks
3363 */
3364 if (file_can_poll(req->file) || !(req->file->f_mode & FMODE_BUF_RASYNC))
3365 return false;
f67676d1 3366
3b2a4439
JA
3367 wait->wait.func = io_async_buf_func;
3368 wait->wait.private = req;
3369 wait->wait.flags = 0;
3370 INIT_LIST_HEAD(&wait->wait.entry);
3371 kiocb->ki_flags |= IOCB_WAITQ;
c8d317aa 3372 kiocb->ki_flags &= ~IOCB_NOWAIT;
3b2a4439 3373 kiocb->ki_waitq = wait;
3b2a4439 3374 return true;
bcf5a063
JA
3375}
3376
3c306fb2 3377static inline int io_iter_do_read(struct io_rw *rw, struct iov_iter *iter)
bcf5a063 3378{
3c306fb2
JA
3379 struct file *file = rw->kiocb.ki_filp;
3380
3381 if (likely(file->f_op->read_iter))
3382 return call_read_iter(file, &rw->kiocb, iter);
3383 else if (file->f_op->read)
3384 return loop_rw_iter(READ, rw, iter);
2dd2111d
GH
3385 else
3386 return -EINVAL;
f67676d1
JA
3387}
3388
7db30437
ML
3389static bool need_read_all(struct io_kiocb *req)
3390{
3391 return req->flags & REQ_F_ISREG ||
3392 S_ISBLK(file_inode(req->file)->i_mode);
3393}
3394
584b0180
JA
3395static int io_rw_init_file(struct io_kiocb *req, fmode_t mode)
3396{
3c306fb2
JA
3397 struct io_rw *rw = io_kiocb_to_cmd(req);
3398 struct kiocb *kiocb = &rw->kiocb;
584b0180
JA
3399 struct io_ring_ctx *ctx = req->ctx;
3400 struct file *file = req->file;
3401 int ret;
3402
3403 if (unlikely(!file || !(file->f_mode & mode)))
3404 return -EBADF;
3405
3406 if (!io_req_ffs_set(req))
3407 req->flags |= io_file_get_flags(file) << REQ_F_SUPPORT_NOWAIT_BIT;
3408
3409 kiocb->ki_flags = iocb_flags(file);
3c306fb2 3410 ret = kiocb_set_rw_flags(kiocb, rw->flags);
584b0180
JA
3411 if (unlikely(ret))
3412 return ret;
3413
3414 /*
3415 * If the file is marked O_NONBLOCK, still allow retry for it if it
3416 * supports async. Otherwise it's impossible to use O_NONBLOCK files
3417 * reliably. If not, or it IOCB_NOWAIT is set, don't retry.
3418 */
3419 if ((kiocb->ki_flags & IOCB_NOWAIT) ||
3420 ((file->f_flags & O_NONBLOCK) && !io_file_supports_nowait(req)))
3421 req->flags |= REQ_F_NOWAIT;
3422
3423 if (ctx->flags & IORING_SETUP_IOPOLL) {
3424 if (!(kiocb->ki_flags & IOCB_DIRECT) || !file->f_op->iopoll)
3425 return -EOPNOTSUPP;
3426
32452a3e 3427 kiocb->private = NULL;
584b0180
JA
3428 kiocb->ki_flags |= IOCB_HIPRI | IOCB_ALLOC_CACHE;
3429 kiocb->ki_complete = io_complete_rw_iopoll;
3430 req->iopoll_completed = 0;
3431 } else {
3432 if (kiocb->ki_flags & IOCB_HIPRI)
3433 return -EINVAL;
3434 kiocb->ki_complete = io_complete_rw;
3435 }
3436
3437 return 0;
3438}
3439
889fca73 3440static int io_read(struct io_kiocb *req, unsigned int issue_flags)
2b188cc1 3441{
3c306fb2 3442 struct io_rw *rw = io_kiocb_to_cmd(req);
607b6fb8 3443 struct io_rw_state __s, *s = &__s;
c88598a9 3444 struct iovec *iovec;
3c306fb2 3445 struct kiocb *kiocb = &rw->kiocb;
45d189c6 3446 bool force_nonblock = issue_flags & IO_URING_F_NONBLOCK;
3c306fb2 3447 struct io_async_rw *io;
cd658695 3448 ssize_t ret, ret2;
b4aec400 3449 loff_t *ppos;
ff6165b2 3450
607b6fb8
PB
3451 if (!req_has_async_data(req)) {
3452 ret = io_import_iovec(READ, req, &iovec, s, issue_flags);
3453 if (unlikely(ret < 0))
3454 return ret;
3455 } else {
3c306fb2
JA
3456 io = req->async_data;
3457 s = &io->s;
09007af2 3458
2be2eb02
JA
3459 /*
3460 * Safe and required to re-import if we're using provided
3461 * buffers, as we dropped the selected one before retry.
3462 */
09007af2 3463 if (io_do_buffer_select(req)) {
2be2eb02
JA
3464 ret = io_import_iovec(READ, req, &iovec, s, issue_flags);
3465 if (unlikely(ret < 0))
3466 return ret;
3467 }
3468
cd658695
JA
3469 /*
3470 * We come here from an earlier attempt, restore our state to
3471 * match in case it doesn't. It's cheap enough that we don't
3472 * need to make this conditional.
3473 */
c88598a9 3474 iov_iter_restore(&s->iter, &s->iter_state);
2846c481 3475 iovec = NULL;
2846c481 3476 }
584b0180 3477 ret = io_rw_init_file(req, FMODE_READ);
323b190b
JA
3478 if (unlikely(ret)) {
3479 kfree(iovec);
584b0180 3480 return ret;
323b190b 3481 }
cef216fc 3482 req->cqe.res = iov_iter_count(&s->iter);
2b188cc1 3483
607b6fb8
PB
3484 if (force_nonblock) {
3485 /* If the file doesn't support async, just async punt */
35645ac3 3486 if (unlikely(!io_file_supports_nowait(req))) {
607b6fb8
PB
3487 ret = io_setup_async_rw(req, iovec, s, true);
3488 return ret ?: -EAGAIN;
3489 }
a88fc400 3490 kiocb->ki_flags |= IOCB_NOWAIT;
607b6fb8
PB
3491 } else {
3492 /* Ensure we clear previously set non-block flag */
3493 kiocb->ki_flags &= ~IOCB_NOWAIT;
6713e7a6 3494 }
9e645e11 3495
b4aec400 3496 ppos = io_kiocb_update_pos(req);
d34e1e5b 3497
cef216fc 3498 ret = rw_verify_area(READ, req->file, ppos, req->cqe.res);
5ea5dd45
PB
3499 if (unlikely(ret)) {
3500 kfree(iovec);
3501 return ret;
3502 }
2b188cc1 3503
3c306fb2 3504 ret = io_iter_do_read(rw, &s->iter);
32960613 3505
230d50d4 3506 if (ret == -EAGAIN || (req->flags & REQ_F_REISSUE)) {
6ad7f233 3507 req->flags &= ~REQ_F_REISSUE;
9af177ee
JA
3508 /* if we can poll, just do that */
3509 if (req->opcode == IORING_OP_READ && file_can_poll(req->file))
3510 return -EAGAIN;
eefdf30f
JA
3511 /* IOPOLL retry should happen for io-wq threads */
3512 if (!force_nonblock && !(req->ctx->flags & IORING_SETUP_IOPOLL))
f91daf56 3513 goto done;
75c668cd
PB
3514 /* no retry on NONBLOCK nor RWF_NOWAIT */
3515 if (req->flags & REQ_F_NOWAIT)
355afaeb 3516 goto done;
f38c7e3a 3517 ret = 0;
230d50d4
JA
3518 } else if (ret == -EIOCBQUEUED) {
3519 goto out_free;
cef216fc 3520 } else if (ret == req->cqe.res || ret <= 0 || !force_nonblock ||
7db30437 3521 (req->flags & REQ_F_NOWAIT) || !need_read_all(req)) {
7335e3bf 3522 /* read all, failed, already did sync or don't want to retry */
00d23d51 3523 goto done;
227c0c96
JA
3524 }
3525
cd658695
JA
3526 /*
3527 * Don't depend on the iter state matching what was consumed, or being
3528 * untouched in case of error. Restore it and we'll advance it
3529 * manually if we need to.
3530 */
c88598a9 3531 iov_iter_restore(&s->iter, &s->iter_state);
cd658695 3532
c88598a9 3533 ret2 = io_setup_async_rw(req, iovec, s, true);
6bf985dc
PB
3534 if (ret2)
3535 return ret2;
3536
fe1cdd55 3537 iovec = NULL;
3c306fb2
JA
3538 io = req->async_data;
3539 s = &io->s;
cd658695
JA
3540 /*
3541 * Now use our persistent iterator and state, if we aren't already.
3542 * We've restored and mapped the iter to match.
3543 */
227c0c96 3544
b23df91b 3545 do {
cd658695
JA
3546 /*
3547 * We end up here because of a partial read, either from
3548 * above or inside this loop. Advance the iter by the bytes
3549 * that were consumed.
3550 */
c88598a9
PB
3551 iov_iter_advance(&s->iter, ret);
3552 if (!iov_iter_count(&s->iter))
cd658695 3553 break;
3c306fb2 3554 io->bytes_done += ret;
c88598a9 3555 iov_iter_save_state(&s->iter, &s->iter_state);
cd658695 3556
b23df91b
PB
3557 /* if we can retry, do so with the callbacks armed */
3558 if (!io_rw_should_retry(req)) {
3559 kiocb->ki_flags &= ~IOCB_WAITQ;
3560 return -EAGAIN;
3561 }
3562
3563 /*
3564 * Now retry read with the IOCB_WAITQ parts set in the iocb. If
3565 * we get -EIOCBQUEUED, then we'll get a notification when the
3566 * desired page gets unlocked. We can also get a partial read
3567 * here, and if we do, then just retry at the new offset.
3568 */
3c306fb2 3569 ret = io_iter_do_read(rw, &s->iter);
b23df91b 3570 if (ret == -EIOCBQUEUED)
97b388d7 3571 return IOU_ISSUE_SKIP_COMPLETE;
227c0c96 3572 /* we got some bytes, but not all. retry. */
b5b0ecb7 3573 kiocb->ki_flags &= ~IOCB_WAITQ;
c88598a9 3574 iov_iter_restore(&s->iter, &s->iter_state);
cd658695 3575 } while (ret > 0);
227c0c96 3576done:
2ea537ca 3577 kiocb_done(req, ret, issue_flags);
fe1cdd55
PB
3578out_free:
3579 /* it's faster to check here then delegate to kfree */
3580 if (iovec)
3581 kfree(iovec);
97b388d7 3582 return IOU_ISSUE_SKIP_COMPLETE;
2b188cc1
JA
3583}
3584
889fca73 3585static int io_write(struct io_kiocb *req, unsigned int issue_flags)
2b188cc1 3586{
3c306fb2 3587 struct io_rw *rw = io_kiocb_to_cmd(req);
607b6fb8 3588 struct io_rw_state __s, *s = &__s;
c88598a9 3589 struct iovec *iovec;
3c306fb2 3590 struct kiocb *kiocb = &rw->kiocb;
45d189c6 3591 bool force_nonblock = issue_flags & IO_URING_F_NONBLOCK;
cd658695 3592 ssize_t ret, ret2;
b4aec400 3593 loff_t *ppos;
2b188cc1 3594
607b6fb8 3595 if (!req_has_async_data(req)) {
5e49c973
PB
3596 ret = io_import_iovec(WRITE, req, &iovec, s, issue_flags);
3597 if (unlikely(ret < 0))
2846c481 3598 return ret;
607b6fb8 3599 } else {
3c306fb2 3600 struct io_async_rw *io = req->async_data;
607b6fb8 3601
3c306fb2 3602 s = &io->s;
607b6fb8 3603 iov_iter_restore(&s->iter, &s->iter_state);
2846c481 3604 iovec = NULL;
2846c481 3605 }
584b0180 3606 ret = io_rw_init_file(req, FMODE_WRITE);
323b190b
JA
3607 if (unlikely(ret)) {
3608 kfree(iovec);
584b0180 3609 return ret;
323b190b 3610 }
cef216fc 3611 req->cqe.res = iov_iter_count(&s->iter);
2b188cc1 3612
607b6fb8
PB
3613 if (force_nonblock) {
3614 /* If the file doesn't support async, just async punt */
35645ac3 3615 if (unlikely(!io_file_supports_nowait(req)))
607b6fb8 3616 goto copy_iov;
fd6c2e4c 3617
607b6fb8
PB
3618 /* file path doesn't support NOWAIT for non-direct_IO */
3619 if (force_nonblock && !(kiocb->ki_flags & IOCB_DIRECT) &&
3620 (req->flags & REQ_F_ISREG))
3621 goto copy_iov;
31b51510 3622
607b6fb8
PB
3623 kiocb->ki_flags |= IOCB_NOWAIT;
3624 } else {
3625 /* Ensure we clear previously set non-block flag */
3626 kiocb->ki_flags &= ~IOCB_NOWAIT;
3627 }
31b51510 3628
b4aec400 3629 ppos = io_kiocb_update_pos(req);
d34e1e5b 3630
cef216fc 3631 ret = rw_verify_area(WRITE, req->file, ppos, req->cqe.res);
fa15bafb
PB
3632 if (unlikely(ret))
3633 goto out_free;
4ed734b0 3634
fa15bafb
PB
3635 /*
3636 * Open-code file_start_write here to grab freeze protection,
3637 * which will be released by another thread in
3638 * io_complete_rw(). Fool lockdep by telling it the lock got
3639 * released so that it doesn't complain about the held lock when
3640 * we return to userspace.
3641 */
3642 if (req->flags & REQ_F_ISREG) {
8a3c84b6 3643 sb_start_write(file_inode(req->file)->i_sb);
fa15bafb
PB
3644 __sb_writers_release(file_inode(req->file)->i_sb,
3645 SB_FREEZE_WRITE);
3646 }
3647 kiocb->ki_flags |= IOCB_WRITE;
4ed734b0 3648
35645ac3 3649 if (likely(req->file->f_op->write_iter))
c88598a9 3650 ret2 = call_write_iter(req->file, kiocb, &s->iter);
2dd2111d 3651 else if (req->file->f_op->write)
3c306fb2 3652 ret2 = loop_rw_iter(WRITE, rw, &s->iter);
2dd2111d
GH
3653 else
3654 ret2 = -EINVAL;
4ed734b0 3655
6ad7f233
PB
3656 if (req->flags & REQ_F_REISSUE) {
3657 req->flags &= ~REQ_F_REISSUE;
230d50d4 3658 ret2 = -EAGAIN;
6ad7f233 3659 }
230d50d4 3660
fa15bafb
PB
3661 /*
3662 * Raw bdev writes will return -EOPNOTSUPP for IOCB_NOWAIT. Just
3663 * retry them without IOCB_NOWAIT.
3664 */
3665 if (ret2 == -EOPNOTSUPP && (kiocb->ki_flags & IOCB_NOWAIT))
3666 ret2 = -EAGAIN;
75c668cd
PB
3667 /* no retry on NONBLOCK nor RWF_NOWAIT */
3668 if (ret2 == -EAGAIN && (req->flags & REQ_F_NOWAIT))
355afaeb 3669 goto done;
fa15bafb 3670 if (!force_nonblock || ret2 != -EAGAIN) {
eefdf30f 3671 /* IOPOLL retry should happen for io-wq threads */
b10841c9 3672 if (ret2 == -EAGAIN && (req->ctx->flags & IORING_SETUP_IOPOLL))
eefdf30f 3673 goto copy_iov;
355afaeb 3674done:
2ea537ca 3675 kiocb_done(req, ret2, issue_flags);
97b388d7 3676 ret = IOU_ISSUE_SKIP_COMPLETE;
fa15bafb 3677 } else {
f67676d1 3678copy_iov:
c88598a9
PB
3679 iov_iter_restore(&s->iter, &s->iter_state);
3680 ret = io_setup_async_rw(req, iovec, s, false);
6bf985dc 3681 return ret ?: -EAGAIN;
2b188cc1 3682 }
31b51510 3683out_free:
f261c168 3684 /* it's reportedly faster than delegating the null check to kfree() */
252917c3 3685 if (iovec)
6f2cc166 3686 kfree(iovec);
2b188cc1
JA
3687 return ret;
3688}
3689
4f57f06c
JA
3690static int io_msg_ring_prep(struct io_kiocb *req,
3691 const struct io_uring_sqe *sqe)
3692{
c1ee5595
JA
3693 struct io_msg *msg = io_kiocb_to_cmd(req);
3694
73911426
JA
3695 if (unlikely(sqe->addr || sqe->rw_flags || sqe->splice_fd_in ||
3696 sqe->buf_index || sqe->personality))
4f57f06c
JA
3697 return -EINVAL;
3698
c1ee5595
JA
3699 msg->user_data = READ_ONCE(sqe->off);
3700 msg->len = READ_ONCE(sqe->len);
4f57f06c
JA
3701 return 0;
3702}
3703
3704static int io_msg_ring(struct io_kiocb *req, unsigned int issue_flags)
3705{
c1ee5595 3706 struct io_msg *msg = io_kiocb_to_cmd(req);
4f57f06c 3707 struct io_ring_ctx *target_ctx;
4f57f06c 3708 bool filled;
3f1d52ab 3709 int ret;
4f57f06c 3710
3f1d52ab
JA
3711 ret = -EBADFD;
3712 if (req->file->f_op != &io_uring_fops)
3713 goto done;
4f57f06c 3714
3f1d52ab 3715 ret = -EOVERFLOW;
4f57f06c
JA
3716 target_ctx = req->file->private_data;
3717
3718 spin_lock(&target_ctx->completion_lock);
7ef66d18 3719 filled = io_fill_cqe_aux(target_ctx, msg->user_data, msg->len, 0);
4f57f06c
JA
3720 io_commit_cqring(target_ctx);
3721 spin_unlock(&target_ctx->completion_lock);
3722
3723 if (filled) {
3724 io_cqring_ev_posted(target_ctx);
3725 ret = 0;
3726 }
3727
3f1d52ab 3728done:
9666d420
JA
3729 if (ret < 0)
3730 req_set_fail(req);
97b388d7 3731 io_req_set_res(req, ret, 0);
aa184e86
JA
3732 /* put file to avoid an attempt to IOPOLL the req */
3733 io_put_file(req->file);
3734 req->file = NULL;
97b388d7 3735 return IOU_OK;
4f57f06c
JA
3736}
3737
8c71fe75
XW
3738/*
3739 * Note when io_fixed_fd_install() returns error value, it will ensure
3740 * fput() is called correspondingly.
3741 */
cd40cae2
JA
3742int io_fixed_fd_install(struct io_kiocb *req, unsigned int issue_flags,
3743 struct file *file, unsigned int file_slot)
1339f24b
JA
3744{
3745 bool alloc_slot = file_slot == IORING_FILE_INDEX_ALLOC;
3746 struct io_ring_ctx *ctx = req->ctx;
3747 int ret;
3748
61c1b44a
PB
3749 io_ring_submit_lock(ctx, issue_flags);
3750
1339f24b 3751 if (alloc_slot) {
1339f24b 3752 ret = io_file_bitmap_get(ctx);
61c1b44a
PB
3753 if (unlikely(ret < 0))
3754 goto err;
1339f24b
JA
3755 file_slot = ret;
3756 } else {
3757 file_slot--;
3758 }
3759
3760 ret = io_install_fixed_file(req, file, issue_flags, file_slot);
61c1b44a
PB
3761 if (!ret && alloc_slot)
3762 ret = file_slot;
3763err:
3764 io_ring_submit_unlock(ctx, issue_flags);
3765 if (unlikely(ret < 0))
3766 fput(file);
1339f24b
JA
3767 return ret;
3768}
3769
067524e9
JA
3770static int io_remove_buffers_prep(struct io_kiocb *req,
3771 const struct io_uring_sqe *sqe)
3772{
c1ee5595 3773 struct io_provide_buf *p = io_kiocb_to_cmd(req);
067524e9
JA
3774 u64 tmp;
3775
73911426 3776 if (sqe->rw_flags || sqe->addr || sqe->len || sqe->off ||
26578cda 3777 sqe->splice_fd_in)
067524e9
JA
3778 return -EINVAL;
3779
3780 tmp = READ_ONCE(sqe->fd);
3781 if (!tmp || tmp > USHRT_MAX)
3782 return -EINVAL;
3783
3784 memset(p, 0, sizeof(*p));
3785 p->nbufs = tmp;
3786 p->bgid = READ_ONCE(sqe->buf_group);
3787 return 0;
3788}
3789
dbc7d452
JA
3790static int __io_remove_buffers(struct io_ring_ctx *ctx,
3791 struct io_buffer_list *bl, unsigned nbufs)
067524e9
JA
3792{
3793 unsigned i = 0;
3794
3795 /* shouldn't happen */
3796 if (!nbufs)
3797 return 0;
3798
c7fb1942
JA
3799 if (bl->buf_nr_pages) {
3800 int j;
3801
3802 i = bl->buf_ring->tail - bl->head;
3803 for (j = 0; j < bl->buf_nr_pages; j++)
3804 unpin_user_page(bl->buf_pages[j]);
3805 kvfree(bl->buf_pages);
3806 bl->buf_pages = NULL;
3807 bl->buf_nr_pages = 0;
1d0dbbfa
JA
3808 /* make sure it's seen as empty */
3809 INIT_LIST_HEAD(&bl->buf_list);
c7fb1942
JA
3810 return i;
3811 }
3812
067524e9 3813 /* the head kbuf is the list itself */
dbc7d452 3814 while (!list_empty(&bl->buf_list)) {
067524e9
JA
3815 struct io_buffer *nxt;
3816
dbc7d452 3817 nxt = list_first_entry(&bl->buf_list, struct io_buffer, list);
067524e9 3818 list_del(&nxt->list);
067524e9
JA
3819 if (++i == nbufs)
3820 return i;
1d0254e6 3821 cond_resched();
067524e9
JA
3822 }
3823 i++;
067524e9
JA
3824
3825 return i;
3826}
3827
889fca73 3828static int io_remove_buffers(struct io_kiocb *req, unsigned int issue_flags)
067524e9 3829{
c1ee5595 3830 struct io_provide_buf *p = io_kiocb_to_cmd(req);
067524e9 3831 struct io_ring_ctx *ctx = req->ctx;
dbc7d452 3832 struct io_buffer_list *bl;
067524e9 3833 int ret = 0;
067524e9 3834
f8929630 3835 io_ring_submit_lock(ctx, issue_flags);
067524e9
JA
3836
3837 ret = -ENOENT;
dbc7d452 3838 bl = io_buffer_get_list(ctx, p->bgid);
c7fb1942
JA
3839 if (bl) {
3840 ret = -EINVAL;
3841 /* can't use provide/remove buffers command on mapped buffers */
3842 if (!bl->buf_nr_pages)
3843 ret = __io_remove_buffers(ctx, bl, p->nbufs);
3844 }
067524e9 3845 if (ret < 0)
93d2bcd2 3846 req_set_fail(req);
067524e9 3847
9fb8cb49 3848 /* complete before unlock, IOPOLL may need the lock */
97b388d7
JA
3849 io_req_set_res(req, ret, 0);
3850 __io_req_complete(req, issue_flags);
f8929630 3851 io_ring_submit_unlock(ctx, issue_flags);
97b388d7 3852 return IOU_ISSUE_SKIP_COMPLETE;
067524e9
JA
3853}
3854
ddf0322d
JA
3855static int io_provide_buffers_prep(struct io_kiocb *req,
3856 const struct io_uring_sqe *sqe)
3857{
38134ada 3858 unsigned long size, tmp_check;
c1ee5595 3859 struct io_provide_buf *p = io_kiocb_to_cmd(req);
ddf0322d
JA
3860 u64 tmp;
3861
73911426 3862 if (sqe->rw_flags || sqe->splice_fd_in)
ddf0322d
JA
3863 return -EINVAL;
3864
3865 tmp = READ_ONCE(sqe->fd);
3866 if (!tmp || tmp > USHRT_MAX)
3867 return -E2BIG;
3868 p->nbufs = tmp;
3869 p->addr = READ_ONCE(sqe->addr);
3870 p->len = READ_ONCE(sqe->len);
3871
38134ada
PB
3872 if (check_mul_overflow((unsigned long)p->len, (unsigned long)p->nbufs,
3873 &size))
3874 return -EOVERFLOW;
3875 if (check_add_overflow((unsigned long)p->addr, size, &tmp_check))
3876 return -EOVERFLOW;
3877
d81269fe
PB
3878 size = (unsigned long)p->len * p->nbufs;
3879 if (!access_ok(u64_to_user_ptr(p->addr), size))
ddf0322d
JA
3880 return -EFAULT;
3881
3882 p->bgid = READ_ONCE(sqe->buf_group);
3883 tmp = READ_ONCE(sqe->off);
3884 if (tmp > USHRT_MAX)
3885 return -E2BIG;
3886 p->bid = tmp;
3887 return 0;
3888}
3889
cc3cec83
JA
3890static int io_refill_buffer_cache(struct io_ring_ctx *ctx)
3891{
3892 struct io_buffer *buf;
3893 struct page *page;
3894 int bufs_in_page;
3895
3896 /*
3897 * Completions that don't happen inline (eg not under uring_lock) will
3898 * add to ->io_buffers_comp. If we don't have any free buffers, check
3899 * the completion list and splice those entries first.
3900 */
3901 if (!list_empty_careful(&ctx->io_buffers_comp)) {
3902 spin_lock(&ctx->completion_lock);
3903 if (!list_empty(&ctx->io_buffers_comp)) {
3904 list_splice_init(&ctx->io_buffers_comp,
3905 &ctx->io_buffers_cache);
3906 spin_unlock(&ctx->completion_lock);
3907 return 0;
3908 }
3909 spin_unlock(&ctx->completion_lock);
3910 }
3911
3912 /*
3913 * No free buffers and no completion entries either. Allocate a new
3914 * page worth of buffer entries and add those to our freelist.
3915 */
3916 page = alloc_page(GFP_KERNEL_ACCOUNT);
3917 if (!page)
3918 return -ENOMEM;
3919
3920 list_add(&page->lru, &ctx->io_buffers_pages);
3921
3922 buf = page_address(page);
3923 bufs_in_page = PAGE_SIZE / sizeof(*buf);
3924 while (bufs_in_page) {
3925 list_add_tail(&buf->list, &ctx->io_buffers_cache);
3926 buf++;
3927 bufs_in_page--;
3928 }
3929
3930 return 0;
3931}
3932
3933static int io_add_buffers(struct io_ring_ctx *ctx, struct io_provide_buf *pbuf,
dbc7d452 3934 struct io_buffer_list *bl)
ddf0322d
JA
3935{
3936 struct io_buffer *buf;
3937 u64 addr = pbuf->addr;
3938 int i, bid = pbuf->bid;
3939
3940 for (i = 0; i < pbuf->nbufs; i++) {
cc3cec83
JA
3941 if (list_empty(&ctx->io_buffers_cache) &&
3942 io_refill_buffer_cache(ctx))
ddf0322d 3943 break;
cc3cec83
JA
3944 buf = list_first_entry(&ctx->io_buffers_cache, struct io_buffer,
3945 list);
dbc7d452 3946 list_move_tail(&buf->list, &bl->buf_list);
ddf0322d 3947 buf->addr = addr;
d1f82808 3948 buf->len = min_t(__u32, pbuf->len, MAX_RW_COUNT);
ddf0322d 3949 buf->bid = bid;
b1c62645 3950 buf->bgid = pbuf->bgid;
ddf0322d
JA
3951 addr += pbuf->len;
3952 bid++;
f240762f 3953 cond_resched();
ddf0322d
JA
3954 }
3955
dbc7d452 3956 return i ? 0 : -ENOMEM;
ddf0322d
JA
3957}
3958
9cfc7e94
JA
3959static __cold int io_init_bl_list(struct io_ring_ctx *ctx)
3960{
3961 int i;
3962
3963 ctx->io_bl = kcalloc(BGID_ARRAY, sizeof(struct io_buffer_list),
3964 GFP_KERNEL);
3965 if (!ctx->io_bl)
3966 return -ENOMEM;
3967
3968 for (i = 0; i < BGID_ARRAY; i++) {
3969 INIT_LIST_HEAD(&ctx->io_bl[i].buf_list);
3970 ctx->io_bl[i].bgid = i;
3971 }
3972
3973 return 0;
3974}
3975
889fca73 3976static int io_provide_buffers(struct io_kiocb *req, unsigned int issue_flags)
ddf0322d 3977{
c1ee5595 3978 struct io_provide_buf *p = io_kiocb_to_cmd(req);
ddf0322d 3979 struct io_ring_ctx *ctx = req->ctx;
dbc7d452 3980 struct io_buffer_list *bl;
ddf0322d
JA
3981 int ret = 0;
3982
f8929630 3983 io_ring_submit_lock(ctx, issue_flags);
ddf0322d 3984
9cfc7e94
JA
3985 if (unlikely(p->bgid < BGID_ARRAY && !ctx->io_bl)) {
3986 ret = io_init_bl_list(ctx);
3987 if (ret)
3988 goto err;
3989 }
ddf0322d 3990
dbc7d452
JA
3991 bl = io_buffer_get_list(ctx, p->bgid);
3992 if (unlikely(!bl)) {
c7fb1942 3993 bl = kzalloc(sizeof(*bl), GFP_KERNEL);
dbc7d452
JA
3994 if (!bl) {
3995 ret = -ENOMEM;
3996 goto err;
3997 }
1d0dbbfa 3998 INIT_LIST_HEAD(&bl->buf_list);
9cfc7e94
JA
3999 ret = io_buffer_add_list(ctx, bl, p->bgid);
4000 if (ret) {
4001 kfree(bl);
4002 goto err;
4003 }
ddf0322d 4004 }
c7fb1942
JA
4005 /* can't add buffers via this command for a mapped buffer ring */
4006 if (bl->buf_nr_pages) {
4007 ret = -EINVAL;
4008 goto err;
ddf0322d 4009 }
dbc7d452
JA
4010
4011 ret = io_add_buffers(ctx, p, bl);
4012err:
ddf0322d 4013 if (ret < 0)
93d2bcd2 4014 req_set_fail(req);
9fb8cb49 4015 /* complete before unlock, IOPOLL may need the lock */
97b388d7
JA
4016 io_req_set_res(req, ret, 0);
4017 __io_req_complete(req, issue_flags);
f8929630 4018 io_ring_submit_unlock(ctx, issue_flags);
97b388d7 4019 return IOU_ISSUE_SKIP_COMPLETE;
cebdb986
JA
4020}
4021
4cf90495
JA
4022static __maybe_unused int io_eopnotsupp_prep(struct io_kiocb *kiocb,
4023 const struct io_uring_sqe *sqe)
4024{
4025 return -EOPNOTSUPP;
4026}
4027
469956e8 4028#if defined(CONFIG_NET)
1151a7cc
JA
4029static int io_shutdown_prep(struct io_kiocb *req,
4030 const struct io_uring_sqe *sqe)
4031{
8ff86d85
JA
4032 struct io_shutdown *shutdown = io_kiocb_to_cmd(req);
4033
1151a7cc
JA
4034 if (unlikely(sqe->off || sqe->addr || sqe->rw_flags ||
4035 sqe->buf_index || sqe->splice_fd_in))
4036 return -EINVAL;
4037
8ff86d85 4038 shutdown->how = READ_ONCE(sqe->len);
1151a7cc
JA
4039 return 0;
4040}
4041
4042static int io_shutdown(struct io_kiocb *req, unsigned int issue_flags)
4043{
8ff86d85 4044 struct io_shutdown *shutdown = io_kiocb_to_cmd(req);
1151a7cc
JA
4045 struct socket *sock;
4046 int ret;
4047
4048 if (issue_flags & IO_URING_F_NONBLOCK)
4049 return -EAGAIN;
4050
4051 sock = sock_from_file(req->file);
4052 if (unlikely(!sock))
4053 return -ENOTSOCK;
4054
8ff86d85 4055 ret = __sys_shutdown_sock(sock, shutdown->how);
97b388d7
JA
4056 io_req_set_res(req, ret, 0);
4057 return IOU_OK;
1151a7cc
JA
4058}
4059
4c3c0943
JA
4060static bool io_net_retry(struct socket *sock, int flags)
4061{
4062 if (!(flags & MSG_WAITALL))
4063 return false;
4064 return sock->type == SOCK_STREAM || sock->type == SOCK_SEQPACKET;
4065}
4066
02d27d89
PB
4067static int io_setup_async_msg(struct io_kiocb *req,
4068 struct io_async_msghdr *kmsg)
4069{
e8c2bc1f
JA
4070 struct io_async_msghdr *async_msg = req->async_data;
4071
4072 if (async_msg)
02d27d89 4073 return -EAGAIN;
e8c2bc1f 4074 if (io_alloc_async_data(req)) {
257e84a5 4075 kfree(kmsg->free_iov);
02d27d89
PB
4076 return -ENOMEM;
4077 }
e8c2bc1f 4078 async_msg = req->async_data;
02d27d89 4079 req->flags |= REQ_F_NEED_CLEANUP;
e8c2bc1f 4080 memcpy(async_msg, kmsg, sizeof(*kmsg));
2a780802 4081 async_msg->msg.msg_name = &async_msg->addr;
257e84a5
PB
4082 /* if were using fast_iov, set it to the new one */
4083 if (!async_msg->free_iov)
4084 async_msg->msg.msg_iter.iov = async_msg->fast_iov;
4085
02d27d89
PB
4086 return -EAGAIN;
4087}
4088
2ae523ed
PB
4089static int io_sendmsg_copy_hdr(struct io_kiocb *req,
4090 struct io_async_msghdr *iomsg)
4091{
8ff86d85
JA
4092 struct io_sr_msg *sr = io_kiocb_to_cmd(req);
4093
2ae523ed 4094 iomsg->msg.msg_name = &iomsg->addr;
257e84a5 4095 iomsg->free_iov = iomsg->fast_iov;
8ff86d85
JA
4096 return sendmsg_copy_msghdr(&iomsg->msg, sr->umsg, sr->msg_flags,
4097 &iomsg->free_iov);
2ae523ed
PB
4098}
4099
93642ef8
PB
4100static int io_sendmsg_prep_async(struct io_kiocb *req)
4101{
4102 int ret;
4103
93642ef8
PB
4104 ret = io_sendmsg_copy_hdr(req, req->async_data);
4105 if (!ret)
4106 req->flags |= REQ_F_NEED_CLEANUP;
4107 return ret;
4108}
4109
4d4c9cff
JA
4110static void io_sendmsg_recvmsg_cleanup(struct io_kiocb *req)
4111{
4112 struct io_async_msghdr *io = req->async_data;
4113
4114 kfree(io->free_iov);
4115}
4116
3529d8c2 4117static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
03b1230c 4118{
8ff86d85 4119 struct io_sr_msg *sr = io_kiocb_to_cmd(req);
03b1230c 4120
29c1ac23 4121 if (unlikely(sqe->file_index || sqe->addr2))
d2b6f48b
PB
4122 return -EINVAL;
4123
270a5940 4124 sr->umsg = u64_to_user_ptr(READ_ONCE(sqe->addr));
fddaface 4125 sr->len = READ_ONCE(sqe->len);
29c1ac23 4126 sr->flags = READ_ONCE(sqe->ioprio);
0455d4cc
JA
4127 if (sr->flags & ~IORING_RECVSEND_POLL_FIRST)
4128 return -EINVAL;
04411806
PB
4129 sr->msg_flags = READ_ONCE(sqe->msg_flags) | MSG_NOSIGNAL;
4130 if (sr->msg_flags & MSG_DONTWAIT)
4131 req->flags |= REQ_F_NOWAIT;
3529d8c2 4132
d8768362
JA
4133#ifdef CONFIG_COMPAT
4134 if (req->ctx->compat)
4135 sr->msg_flags |= MSG_CMSG_COMPAT;
4136#endif
4c3c0943 4137 sr->done_io = 0;
93642ef8 4138 return 0;
03b1230c
JA
4139}
4140
889fca73 4141static int io_sendmsg(struct io_kiocb *req, unsigned int issue_flags)
aa1fa28f 4142{
8ff86d85 4143 struct io_sr_msg *sr = io_kiocb_to_cmd(req);
6b754c8b 4144 struct io_async_msghdr iomsg, *kmsg;
0fa03c62 4145 struct socket *sock;
7a7cacba 4146 unsigned flags;
0031275d 4147 int min_ret = 0;
0fa03c62
JA
4148 int ret;
4149
dba4a925 4150 sock = sock_from_file(req->file);
7a7cacba 4151 if (unlikely(!sock))
dba4a925 4152 return -ENOTSOCK;
3529d8c2 4153
d886e185
PB
4154 if (req_has_async_data(req)) {
4155 kmsg = req->async_data;
4156 } else {
7a7cacba
PB
4157 ret = io_sendmsg_copy_hdr(req, &iomsg);
4158 if (ret)
4159 return ret;
4160 kmsg = &iomsg;
0fa03c62 4161 }
0fa03c62 4162
0455d4cc
JA
4163 if (!(req->flags & REQ_F_POLLED) &&
4164 (sr->flags & IORING_RECVSEND_POLL_FIRST))
4165 return io_setup_async_msg(req, kmsg);
4166
0a352aaa 4167 flags = sr->msg_flags;
04411806 4168 if (issue_flags & IO_URING_F_NONBLOCK)
7a7cacba 4169 flags |= MSG_DONTWAIT;
0031275d
SM
4170 if (flags & MSG_WAITALL)
4171 min_ret = iov_iter_count(&kmsg->msg.msg_iter);
4172
7a7cacba 4173 ret = __sys_sendmsg_sock(sock, &kmsg->msg, flags);
0fa03c62 4174
7297ce3d
PB
4175 if (ret < min_ret) {
4176 if (ret == -EAGAIN && (issue_flags & IO_URING_F_NONBLOCK))
4177 return io_setup_async_msg(req, kmsg);
4178 if (ret == -ERESTARTSYS)
4179 ret = -EINTR;
4c3c0943
JA
4180 if (ret > 0 && io_net_retry(sock, flags)) {
4181 sr->done_io += ret;
4182 req->flags |= REQ_F_PARTIAL_IO;
4183 return io_setup_async_msg(req, kmsg);
4184 }
7297ce3d
PB
4185 req_set_fail(req);
4186 }
257e84a5
PB
4187 /* fast path, check for non-NULL to avoid function call */
4188 if (kmsg->free_iov)
4189 kfree(kmsg->free_iov);
99bc4c38 4190 req->flags &= ~REQ_F_NEED_CLEANUP;
4c3c0943
JA
4191 if (ret >= 0)
4192 ret += sr->done_io;
4193 else if (sr->done_io)
4194 ret = sr->done_io;
97b388d7
JA
4195 io_req_set_res(req, ret, 0);
4196 return IOU_OK;
03b1230c 4197}
aa1fa28f 4198
889fca73 4199static int io_send(struct io_kiocb *req, unsigned int issue_flags)
fddaface 4200{
8ff86d85 4201 struct io_sr_msg *sr = io_kiocb_to_cmd(req);
7a7cacba
PB
4202 struct msghdr msg;
4203 struct iovec iov;
fddaface 4204 struct socket *sock;
7a7cacba 4205 unsigned flags;
0031275d 4206 int min_ret = 0;
fddaface
JA
4207 int ret;
4208
0455d4cc
JA
4209 if (!(req->flags & REQ_F_POLLED) &&
4210 (sr->flags & IORING_RECVSEND_POLL_FIRST))
4211 return -EAGAIN;
4212
dba4a925 4213 sock = sock_from_file(req->file);
7a7cacba 4214 if (unlikely(!sock))
dba4a925 4215 return -ENOTSOCK;
fddaface 4216
7a7cacba
PB
4217 ret = import_single_range(WRITE, sr->buf, sr->len, &iov, &msg.msg_iter);
4218 if (unlikely(ret))
14db8411 4219 return ret;
fddaface 4220
7a7cacba
PB
4221 msg.msg_name = NULL;
4222 msg.msg_control = NULL;
4223 msg.msg_controllen = 0;
4224 msg.msg_namelen = 0;
fddaface 4225
0a352aaa 4226 flags = sr->msg_flags;
04411806 4227 if (issue_flags & IO_URING_F_NONBLOCK)
7a7cacba 4228 flags |= MSG_DONTWAIT;
0031275d
SM
4229 if (flags & MSG_WAITALL)
4230 min_ret = iov_iter_count(&msg.msg_iter);
4231
7a7cacba
PB
4232 msg.msg_flags = flags;
4233 ret = sock_sendmsg(sock, &msg);
7297ce3d
PB
4234 if (ret < min_ret) {
4235 if (ret == -EAGAIN && (issue_flags & IO_URING_F_NONBLOCK))
4236 return -EAGAIN;
4237 if (ret == -ERESTARTSYS)
4238 ret = -EINTR;
4c3c0943
JA
4239 if (ret > 0 && io_net_retry(sock, flags)) {
4240 sr->len -= ret;
4241 sr->buf += ret;
4242 sr->done_io += ret;
4243 req->flags |= REQ_F_PARTIAL_IO;
4244 return -EAGAIN;
4245 }
93d2bcd2 4246 req_set_fail(req);
7297ce3d 4247 }
4c3c0943
JA
4248 if (ret >= 0)
4249 ret += sr->done_io;
4250 else if (sr->done_io)
4251 ret = sr->done_io;
97b388d7
JA
4252 io_req_set_res(req, ret, 0);
4253 return IOU_OK;
fddaface
JA
4254}
4255
1400e697
PB
4256static int __io_recvmsg_copy_hdr(struct io_kiocb *req,
4257 struct io_async_msghdr *iomsg)
52de1fe1 4258{
8ff86d85 4259 struct io_sr_msg *sr = io_kiocb_to_cmd(req);
52de1fe1
JA
4260 struct iovec __user *uiov;
4261 size_t iov_len;
4262 int ret;
4263
1400e697
PB
4264 ret = __copy_msghdr_from_user(&iomsg->msg, sr->umsg,
4265 &iomsg->uaddr, &uiov, &iov_len);
52de1fe1
JA
4266 if (ret)
4267 return ret;
4268
4269 if (req->flags & REQ_F_BUFFER_SELECT) {
4270 if (iov_len > 1)
4271 return -EINVAL;
5476dfed 4272 if (copy_from_user(iomsg->fast_iov, uiov, sizeof(*uiov)))
52de1fe1 4273 return -EFAULT;
5476dfed 4274 sr->len = iomsg->fast_iov[0].iov_len;
257e84a5 4275 iomsg->free_iov = NULL;
52de1fe1 4276 } else {
257e84a5 4277 iomsg->free_iov = iomsg->fast_iov;
89cd35c5 4278 ret = __import_iovec(READ, uiov, iov_len, UIO_FASTIOV,
257e84a5 4279 &iomsg->free_iov, &iomsg->msg.msg_iter,
89cd35c5 4280 false);
52de1fe1
JA
4281 if (ret > 0)
4282 ret = 0;
4283 }
4284
4285 return ret;
4286}
4287
4288#ifdef CONFIG_COMPAT
4289static int __io_compat_recvmsg_copy_hdr(struct io_kiocb *req,
1400e697 4290 struct io_async_msghdr *iomsg)
52de1fe1 4291{
8ff86d85 4292 struct io_sr_msg *sr = io_kiocb_to_cmd(req);
52de1fe1
JA
4293 struct compat_iovec __user *uiov;
4294 compat_uptr_t ptr;
4295 compat_size_t len;
4296 int ret;
4297
4af3417a
PB
4298 ret = __get_compat_msghdr(&iomsg->msg, sr->umsg_compat, &iomsg->uaddr,
4299 &ptr, &len);
52de1fe1
JA
4300 if (ret)
4301 return ret;
4302
4303 uiov = compat_ptr(ptr);
4304 if (req->flags & REQ_F_BUFFER_SELECT) {
4305 compat_ssize_t clen;
4306
4307 if (len > 1)
4308 return -EINVAL;
4309 if (!access_ok(uiov, sizeof(*uiov)))
4310 return -EFAULT;
4311 if (__get_user(clen, &uiov->iov_len))
4312 return -EFAULT;
4313 if (clen < 0)
4314 return -EINVAL;
2d280bc8 4315 sr->len = clen;
257e84a5 4316 iomsg->free_iov = NULL;
52de1fe1 4317 } else {
257e84a5 4318 iomsg->free_iov = iomsg->fast_iov;
89cd35c5 4319 ret = __import_iovec(READ, (struct iovec __user *)uiov, len,
257e84a5 4320 UIO_FASTIOV, &iomsg->free_iov,
89cd35c5 4321 &iomsg->msg.msg_iter, true);
52de1fe1
JA
4322 if (ret < 0)
4323 return ret;
4324 }
4325
4326 return 0;
4327}
4328#endif
4329
1400e697
PB
4330static int io_recvmsg_copy_hdr(struct io_kiocb *req,
4331 struct io_async_msghdr *iomsg)
52de1fe1 4332{
1400e697 4333 iomsg->msg.msg_name = &iomsg->addr;
52de1fe1
JA
4334
4335#ifdef CONFIG_COMPAT
4336 if (req->ctx->compat)
1400e697 4337 return __io_compat_recvmsg_copy_hdr(req, iomsg);
fddaface 4338#endif
52de1fe1 4339
1400e697 4340 return __io_recvmsg_copy_hdr(req, iomsg);
52de1fe1
JA
4341}
4342
93642ef8 4343static int io_recvmsg_prep_async(struct io_kiocb *req)
aa1fa28f 4344{
99bc4c38 4345 int ret;
3529d8c2 4346
93642ef8
PB
4347 ret = io_recvmsg_copy_hdr(req, req->async_data);
4348 if (!ret)
4349 req->flags |= REQ_F_NEED_CLEANUP;
4350 return ret;
4351}
4352
4353static int io_recvmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4354{
8ff86d85 4355 struct io_sr_msg *sr = io_kiocb_to_cmd(req);
93642ef8 4356
29c1ac23 4357 if (unlikely(sqe->file_index || sqe->addr2))
d2b6f48b
PB
4358 return -EINVAL;
4359
270a5940 4360 sr->umsg = u64_to_user_ptr(READ_ONCE(sqe->addr));
0b7b21e4 4361 sr->len = READ_ONCE(sqe->len);
29c1ac23 4362 sr->flags = READ_ONCE(sqe->ioprio);
0455d4cc
JA
4363 if (sr->flags & ~IORING_RECVSEND_POLL_FIRST)
4364 return -EINVAL;
04411806
PB
4365 sr->msg_flags = READ_ONCE(sqe->msg_flags) | MSG_NOSIGNAL;
4366 if (sr->msg_flags & MSG_DONTWAIT)
4367 req->flags |= REQ_F_NOWAIT;
bd8587e4
JA
4368 if (sr->msg_flags & MSG_ERRQUEUE)
4369 req->flags |= REQ_F_CLEAR_POLLIN;
06b76d44 4370
d8768362
JA
4371#ifdef CONFIG_COMPAT
4372 if (req->ctx->compat)
4373 sr->msg_flags |= MSG_CMSG_COMPAT;
4374#endif
7ba89d2a 4375 sr->done_io = 0;
93642ef8 4376 return 0;
aa1fa28f
JA
4377}
4378
889fca73 4379static int io_recvmsg(struct io_kiocb *req, unsigned int issue_flags)
aa1fa28f 4380{
8ff86d85 4381 struct io_sr_msg *sr = io_kiocb_to_cmd(req);
6b754c8b 4382 struct io_async_msghdr iomsg, *kmsg;
03b1230c 4383 struct socket *sock;
f548a12e 4384 unsigned int cflags;
7a7cacba 4385 unsigned flags;
d1fd1c20 4386 int ret, min_ret = 0;
45d189c6 4387 bool force_nonblock = issue_flags & IO_URING_F_NONBLOCK;
03b1230c 4388
dba4a925 4389 sock = sock_from_file(req->file);
7a7cacba 4390 if (unlikely(!sock))
dba4a925 4391 return -ENOTSOCK;
3529d8c2 4392
d886e185
PB
4393 if (req_has_async_data(req)) {
4394 kmsg = req->async_data;
4395 } else {
7a7cacba
PB
4396 ret = io_recvmsg_copy_hdr(req, &iomsg);
4397 if (ret)
681fda8d 4398 return ret;
7a7cacba
PB
4399 kmsg = &iomsg;
4400 }
03b1230c 4401
0455d4cc
JA
4402 if (!(req->flags & REQ_F_POLLED) &&
4403 (sr->flags & IORING_RECVSEND_POLL_FIRST))
4404 return io_setup_async_msg(req, kmsg);
4405
b66e65f4 4406 if (io_do_buffer_select(req)) {
c54d52c2
JA
4407 void __user *buf;
4408
4e906702 4409 buf = io_buffer_select(req, &sr->len, issue_flags);
984824db
CH
4410 if (!buf)
4411 return -ENOBUFS;
c54d52c2 4412 kmsg->fast_iov[0].iov_base = buf;
0a352aaa
JA
4413 kmsg->fast_iov[0].iov_len = sr->len;
4414 iov_iter_init(&kmsg->msg.msg_iter, READ, kmsg->fast_iov, 1,
4415 sr->len);
7a7cacba 4416 }
52de1fe1 4417
0a352aaa 4418 flags = sr->msg_flags;
04411806 4419 if (force_nonblock)
7a7cacba 4420 flags |= MSG_DONTWAIT;
0031275d
SM
4421 if (flags & MSG_WAITALL)
4422 min_ret = iov_iter_count(&kmsg->msg.msg_iter);
4423
f548a12e 4424 kmsg->msg.msg_get_inq = 1;
0a352aaa 4425 ret = __sys_recvmsg_sock(sock, &kmsg->msg, sr->umsg, kmsg->uaddr, flags);
7297ce3d
PB
4426 if (ret < min_ret) {
4427 if (ret == -EAGAIN && force_nonblock)
4428 return io_setup_async_msg(req, kmsg);
4429 if (ret == -ERESTARTSYS)
4430 ret = -EINTR;
7ba89d2a
JA
4431 if (ret > 0 && io_net_retry(sock, flags)) {
4432 sr->done_io += ret;
8a3e8ee5 4433 req->flags |= REQ_F_PARTIAL_IO;
7ba89d2a
JA
4434 return io_setup_async_msg(req, kmsg);
4435 }
7297ce3d
PB
4436 req_set_fail(req);
4437 } else if ((flags & MSG_WAITALL) && (kmsg->msg.msg_flags & (MSG_TRUNC | MSG_CTRUNC))) {
4438 req_set_fail(req);
4439 }
03b1230c 4440
257e84a5
PB
4441 /* fast path, check for non-NULL to avoid function call */
4442 if (kmsg->free_iov)
4443 kfree(kmsg->free_iov);
99bc4c38 4444 req->flags &= ~REQ_F_NEED_CLEANUP;
7ba89d2a
JA
4445 if (ret >= 0)
4446 ret += sr->done_io;
4447 else if (sr->done_io)
4448 ret = sr->done_io;
f548a12e
JA
4449 cflags = io_put_kbuf(req, issue_flags);
4450 if (kmsg->msg.msg_inq)
4451 cflags |= IORING_CQE_F_SOCK_NONEMPTY;
97b388d7
JA
4452 io_req_set_res(req, ret, cflags);
4453 return IOU_OK;
0fa03c62 4454}
5d17b4a4 4455
889fca73 4456static int io_recv(struct io_kiocb *req, unsigned int issue_flags)
fddaface 4457{
8ff86d85 4458 struct io_sr_msg *sr = io_kiocb_to_cmd(req);
7a7cacba 4459 struct msghdr msg;
fddaface 4460 struct socket *sock;
7a7cacba 4461 struct iovec iov;
f548a12e 4462 unsigned int cflags;
7a7cacba 4463 unsigned flags;
d1fd1c20 4464 int ret, min_ret = 0;
45d189c6 4465 bool force_nonblock = issue_flags & IO_URING_F_NONBLOCK;
fddaface 4466
0455d4cc
JA
4467 if (!(req->flags & REQ_F_POLLED) &&
4468 (sr->flags & IORING_RECVSEND_POLL_FIRST))
4469 return -EAGAIN;
4470
dba4a925 4471 sock = sock_from_file(req->file);
7a7cacba 4472 if (unlikely(!sock))
dba4a925 4473 return -ENOTSOCK;
fddaface 4474
b66e65f4 4475 if (io_do_buffer_select(req)) {
c54d52c2
JA
4476 void __user *buf;
4477
4e906702 4478 buf = io_buffer_select(req, &sr->len, issue_flags);
984824db
CH
4479 if (!buf)
4480 return -ENOBUFS;
c54d52c2 4481 sr->buf = buf;
bc02ef33 4482 }
bcda7baa 4483
c54d52c2 4484 ret = import_single_range(READ, sr->buf, sr->len, &iov, &msg.msg_iter);
14c32eee
PB
4485 if (unlikely(ret))
4486 goto out_free;
fddaface 4487
7a7cacba 4488 msg.msg_name = NULL;
f548a12e 4489 msg.msg_namelen = 0;
7a7cacba 4490 msg.msg_control = NULL;
f548a12e
JA
4491 msg.msg_get_inq = 1;
4492 msg.msg_flags = 0;
7a7cacba 4493 msg.msg_controllen = 0;
7a7cacba 4494 msg.msg_iocb = NULL;
fddaface 4495
0a352aaa 4496 flags = sr->msg_flags;
04411806 4497 if (force_nonblock)
7a7cacba 4498 flags |= MSG_DONTWAIT;
0031275d
SM
4499 if (flags & MSG_WAITALL)
4500 min_ret = iov_iter_count(&msg.msg_iter);
4501
7a7cacba 4502 ret = sock_recvmsg(sock, &msg, flags);
7297ce3d
PB
4503 if (ret < min_ret) {
4504 if (ret == -EAGAIN && force_nonblock)
4505 return -EAGAIN;
4506 if (ret == -ERESTARTSYS)
4507 ret = -EINTR;
7ba89d2a
JA
4508 if (ret > 0 && io_net_retry(sock, flags)) {
4509 sr->len -= ret;
4510 sr->buf += ret;
4511 sr->done_io += ret;
8a3e8ee5 4512 req->flags |= REQ_F_PARTIAL_IO;
7ba89d2a
JA
4513 return -EAGAIN;
4514 }
7297ce3d
PB
4515 req_set_fail(req);
4516 } else if ((flags & MSG_WAITALL) && (msg.msg_flags & (MSG_TRUNC | MSG_CTRUNC))) {
0d7c1153 4517out_free:
93d2bcd2 4518 req_set_fail(req);
7297ce3d 4519 }
cc3cec83 4520
7ba89d2a
JA
4521 if (ret >= 0)
4522 ret += sr->done_io;
4523 else if (sr->done_io)
4524 ret = sr->done_io;
f548a12e
JA
4525 cflags = io_put_kbuf(req, issue_flags);
4526 if (msg.msg_inq)
4527 cflags |= IORING_CQE_F_SOCK_NONEMPTY;
97b388d7
JA
4528 io_req_set_res(req, ret, cflags);
4529 return IOU_OK;
fddaface
JA
4530}
4531
3529d8c2 4532static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
17f2fe35 4533{
8ff86d85 4534 struct io_accept *accept = io_kiocb_to_cmd(req);
4e86a2c9 4535 unsigned flags;
8ed8d3c3 4536
73911426 4537 if (sqe->len || sqe->buf_index)
17f2fe35
JA
4538 return -EINVAL;
4539
d55e5f5b
JA
4540 accept->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
4541 accept->addr_len = u64_to_user_ptr(READ_ONCE(sqe->addr2));
8ed8d3c3 4542 accept->flags = READ_ONCE(sqe->accept_flags);
09952e3e 4543 accept->nofile = rlimit(RLIMIT_NOFILE);
4e86a2c9
HX
4544 flags = READ_ONCE(sqe->ioprio);
4545 if (flags & ~IORING_ACCEPT_MULTISHOT)
4546 return -EINVAL;
a7083ad5 4547
aaa4db12 4548 accept->file_slot = READ_ONCE(sqe->file_index);
4e86a2c9
HX
4549 if (accept->file_slot) {
4550 if (accept->flags & SOCK_CLOEXEC)
4551 return -EINVAL;
4552 if (flags & IORING_ACCEPT_MULTISHOT &&
4553 accept->file_slot != IORING_FILE_INDEX_ALLOC)
4554 return -EINVAL;
4555 }
a7083ad5
PB
4556 if (accept->flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
4557 return -EINVAL;
4558 if (SOCK_NONBLOCK != O_NONBLOCK && (accept->flags & SOCK_NONBLOCK))
4559 accept->flags = (accept->flags & ~SOCK_NONBLOCK) | O_NONBLOCK;
4e86a2c9
HX
4560 if (flags & IORING_ACCEPT_MULTISHOT)
4561 req->flags |= REQ_F_APOLL_MULTISHOT;
8ed8d3c3 4562 return 0;
8ed8d3c3 4563}
17f2fe35 4564
889fca73 4565static int io_accept(struct io_kiocb *req, unsigned int issue_flags)
8ed8d3c3 4566{
4e86a2c9 4567 struct io_ring_ctx *ctx = req->ctx;
8ff86d85 4568 struct io_accept *accept = io_kiocb_to_cmd(req);
45d189c6 4569 bool force_nonblock = issue_flags & IO_URING_F_NONBLOCK;
ac45abc0 4570 unsigned int file_flags = force_nonblock ? O_NONBLOCK : 0;
aaa4db12 4571 bool fixed = !!accept->file_slot;
a7083ad5
PB
4572 struct file *file;
4573 int ret, fd;
8ed8d3c3 4574
4e86a2c9 4575retry:
aaa4db12
PB
4576 if (!fixed) {
4577 fd = __get_unused_fd_flags(accept->flags, accept->nofile);
4578 if (unlikely(fd < 0))
4579 return fd;
4580 }
a7083ad5
PB
4581 file = do_accept(req->file, file_flags, accept->addr, accept->addr_len,
4582 accept->flags);
4583 if (IS_ERR(file)) {
aaa4db12
PB
4584 if (!fixed)
4585 put_unused_fd(fd);
a7083ad5 4586 ret = PTR_ERR(file);
4e86a2c9
HX
4587 if (ret == -EAGAIN && force_nonblock) {
4588 /*
4589 * if it's multishot and polled, we don't need to
4590 * return EAGAIN to arm the poll infra since it
4591 * has already been done
4592 */
4593 if ((req->flags & IO_APOLL_MULTI_POLLED) ==
4594 IO_APOLL_MULTI_POLLED)
97b388d7 4595 ret = IOU_ISSUE_SKIP_COMPLETE;
4e86a2c9
HX
4596 return ret;
4597 }
ac45abc0
PB
4598 if (ret == -ERESTARTSYS)
4599 ret = -EINTR;
93d2bcd2 4600 req_set_fail(req);
aaa4db12 4601 } else if (!fixed) {
a7083ad5
PB
4602 fd_install(fd, file);
4603 ret = fd;
aaa4db12 4604 } else {
c30c3e00
JA
4605 ret = io_fixed_fd_install(req, issue_flags, file,
4606 accept->file_slot);
ac45abc0 4607 }
4e86a2c9
HX
4608
4609 if (!(req->flags & REQ_F_APOLL_MULTISHOT)) {
97b388d7
JA
4610 io_req_set_res(req, ret, 0);
4611 return IOU_OK;
4e86a2c9
HX
4612 }
4613 if (ret >= 0) {
4614 bool filled;
4615
4616 spin_lock(&ctx->completion_lock);
4617 filled = io_fill_cqe_aux(ctx, req->cqe.user_data, ret,
4618 IORING_CQE_F_MORE);
4619 io_commit_cqring(ctx);
4620 spin_unlock(&ctx->completion_lock);
4621 if (filled) {
4622 io_cqring_ev_posted(ctx);
4623 goto retry;
4624 }
4625 ret = -ECANCELED;
4626 }
4627
4628 return ret;
8ed8d3c3
JA
4629}
4630
1374e08e
JA
4631static int io_socket_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4632{
8ff86d85 4633 struct io_socket *sock = io_kiocb_to_cmd(req);
1374e08e 4634
ee692a21 4635 if (sqe->addr || sqe->rw_flags || sqe->buf_index)
1374e08e
JA
4636 return -EINVAL;
4637
4638 sock->domain = READ_ONCE(sqe->fd);
4639 sock->type = READ_ONCE(sqe->off);
4640 sock->protocol = READ_ONCE(sqe->len);
4641 sock->file_slot = READ_ONCE(sqe->file_index);
4642 sock->nofile = rlimit(RLIMIT_NOFILE);
4643
4644 sock->flags = sock->type & ~SOCK_TYPE_MASK;
4645 if (sock->file_slot && (sock->flags & SOCK_CLOEXEC))
4646 return -EINVAL;
4647 if (sock->flags & ~(SOCK_CLOEXEC | SOCK_NONBLOCK))
4648 return -EINVAL;
4649 return 0;
4650}
4651
4652static int io_socket(struct io_kiocb *req, unsigned int issue_flags)
4653{
8ff86d85 4654 struct io_socket *sock = io_kiocb_to_cmd(req);
1374e08e
JA
4655 bool fixed = !!sock->file_slot;
4656 struct file *file;
4657 int ret, fd;
4658
4659 if (!fixed) {
4660 fd = __get_unused_fd_flags(sock->flags, sock->nofile);
4661 if (unlikely(fd < 0))
4662 return fd;
4663 }
4664 file = __sys_socket_file(sock->domain, sock->type, sock->protocol);
4665 if (IS_ERR(file)) {
4666 if (!fixed)
4667 put_unused_fd(fd);
4668 ret = PTR_ERR(file);
4669 if (ret == -EAGAIN && (issue_flags & IO_URING_F_NONBLOCK))
4670 return -EAGAIN;
4671 if (ret == -ERESTARTSYS)
4672 ret = -EINTR;
4673 req_set_fail(req);
4674 } else if (!fixed) {
4675 fd_install(fd, file);
4676 ret = fd;
4677 } else {
fa82dd10
JA
4678 ret = io_fixed_fd_install(req, issue_flags, file,
4679 sock->file_slot);
1374e08e 4680 }
97b388d7
JA
4681 io_req_set_res(req, ret, 0);
4682 return IOU_OK;
1374e08e
JA
4683}
4684
93642ef8
PB
4685static int io_connect_prep_async(struct io_kiocb *req)
4686{
4687 struct io_async_connect *io = req->async_data;
8ff86d85 4688 struct io_connect *conn = io_kiocb_to_cmd(req);
93642ef8
PB
4689
4690 return move_addr_to_kernel(conn->addr, conn->addr_len, &io->address);
4691}
4692
3529d8c2 4693static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
f499a021 4694{
8ff86d85 4695 struct io_connect *conn = io_kiocb_to_cmd(req);
f499a021 4696
73911426 4697 if (sqe->len || sqe->buf_index || sqe->rw_flags || sqe->splice_fd_in)
3fbb51c1
JA
4698 return -EINVAL;
4699
3529d8c2
JA
4700 conn->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
4701 conn->addr_len = READ_ONCE(sqe->addr2);
93642ef8 4702 return 0;
f499a021
JA
4703}
4704
889fca73 4705static int io_connect(struct io_kiocb *req, unsigned int issue_flags)
f8e85cf2 4706{
8ff86d85 4707 struct io_connect *connect = io_kiocb_to_cmd(req);
e8c2bc1f 4708 struct io_async_connect __io, *io;
f8e85cf2 4709 unsigned file_flags;
3fbb51c1 4710 int ret;
45d189c6 4711 bool force_nonblock = issue_flags & IO_URING_F_NONBLOCK;
f8e85cf2 4712
d886e185 4713 if (req_has_async_data(req)) {
e8c2bc1f 4714 io = req->async_data;
f499a021 4715 } else {
8ff86d85
JA
4716 ret = move_addr_to_kernel(connect->addr,
4717 connect->addr_len,
e8c2bc1f 4718 &__io.address);
f499a021
JA
4719 if (ret)
4720 goto out;
4721 io = &__io;
4722 }
4723
3fbb51c1
JA
4724 file_flags = force_nonblock ? O_NONBLOCK : 0;
4725
e8c2bc1f 4726 ret = __sys_connect_file(req->file, &io->address,
8ff86d85 4727 connect->addr_len, file_flags);
87f80d62 4728 if ((ret == -EAGAIN || ret == -EINPROGRESS) && force_nonblock) {
d886e185 4729 if (req_has_async_data(req))
b7bb4f7d 4730 return -EAGAIN;
e8c2bc1f 4731 if (io_alloc_async_data(req)) {
f499a021
JA
4732 ret = -ENOMEM;
4733 goto out;
4734 }
e8c2bc1f 4735 memcpy(req->async_data, &__io, sizeof(__io));
f8e85cf2 4736 return -EAGAIN;
f499a021 4737 }
f8e85cf2
JA
4738 if (ret == -ERESTARTSYS)
4739 ret = -EINTR;
f499a021 4740out:
4e88d6e7 4741 if (ret < 0)
93d2bcd2 4742 req_set_fail(req);
97b388d7
JA
4743 io_req_set_res(req, ret, 0);
4744 return IOU_OK;
469956e8
Y
4745}
4746#else /* !CONFIG_NET */
99a10081
JA
4747#define IO_NETOP_FN(op) \
4748static int io_##op(struct io_kiocb *req, unsigned int issue_flags) \
4749{ \
4750 return -EOPNOTSUPP; \
4751}
4752
4753#define IO_NETOP_PREP(op) \
4754IO_NETOP_FN(op) \
4755static int io_##op##_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe) \
4756{ \
4757 return -EOPNOTSUPP; \
4758} \
4759
4760#define IO_NETOP_PREP_ASYNC(op) \
4761IO_NETOP_PREP(op) \
4762static int io_##op##_prep_async(struct io_kiocb *req) \
4763{ \
4764 return -EOPNOTSUPP; \
4765}
4766
4767IO_NETOP_PREP_ASYNC(sendmsg);
4768IO_NETOP_PREP_ASYNC(recvmsg);
4769IO_NETOP_PREP_ASYNC(connect);
4770IO_NETOP_PREP(accept);
1374e08e 4771IO_NETOP_PREP(socket);
1151a7cc 4772IO_NETOP_PREP(shutdown);
99a10081
JA
4773IO_NETOP_FN(send);
4774IO_NETOP_FN(recv);
469956e8 4775#endif /* CONFIG_NET */
f8e85cf2 4776
d7718a9d
JA
4777struct io_poll_table {
4778 struct poll_table_struct pt;
4779 struct io_kiocb *req;
68b11e8b 4780 int nr_entries;
d7718a9d
JA
4781 int error;
4782};
ce593a6c 4783
aa43477b 4784#define IO_POLL_CANCEL_FLAG BIT(31)
e2c0cb7c 4785#define IO_POLL_REF_MASK GENMASK(30, 0)
6d816e08 4786
aa43477b
PB
4787/*
4788 * If refs part of ->poll_refs (see IO_POLL_REF_MASK) is 0, it's free. We can
4789 * bump it and acquire ownership. It's disallowed to modify requests while not
4790 * owning it, that prevents from races for enqueueing task_work's and b/w
4791 * arming poll and wakeups.
4792 */
4793static inline bool io_poll_get_ownership(struct io_kiocb *req)
4794{
4795 return !(atomic_fetch_inc(&req->poll_refs) & IO_POLL_REF_MASK);
d7718a9d
JA
4796}
4797
aa43477b 4798static void io_poll_mark_cancelled(struct io_kiocb *req)
74ce6ce4 4799{
aa43477b 4800 atomic_or(IO_POLL_CANCEL_FLAG, &req->poll_refs);
74ce6ce4
JA
4801}
4802
8d4388d1 4803static struct io_poll *io_poll_get_double(struct io_kiocb *req)
18bceab1 4804{
e8c2bc1f 4805 /* pure poll stashes this in ->async_data, poll driven retry elsewhere */
d4e7cd36 4806 if (req->opcode == IORING_OP_POLL_ADD)
e8c2bc1f 4807 return req->async_data;
d4e7cd36
JA
4808 return req->apoll->double_poll;
4809}
4810
8d4388d1 4811static struct io_poll *io_poll_get_single(struct io_kiocb *req)
d4e7cd36
JA
4812{
4813 if (req->opcode == IORING_OP_POLL_ADD)
8d4388d1 4814 return io_kiocb_to_cmd(req);
d4e7cd36
JA
4815 return &req->apoll->poll;
4816}
4817
5641897a 4818static void io_poll_req_insert(struct io_kiocb *req)
d4e7cd36 4819{
5641897a
PB
4820 struct io_ring_ctx *ctx = req->ctx;
4821 struct hlist_head *list;
18bceab1 4822
cef216fc 4823 list = &ctx->cancel_hash[hash_long(req->cqe.user_data, ctx->cancel_hash_bits)];
5641897a 4824 hlist_add_head(&req->hash_node, list);
18bceab1
JA
4825}
4826
8d4388d1 4827static void io_init_poll_iocb(struct io_poll *poll, __poll_t events,
5641897a 4828 wait_queue_func_t wake_func)
18bceab1 4829{
5641897a 4830 poll->head = NULL;
5641897a
PB
4831#define IO_POLL_UNMASK (EPOLLERR|EPOLLHUP|EPOLLNVAL|EPOLLRDHUP)
4832 /* mask in events that we always want/need */
4833 poll->events = events | IO_POLL_UNMASK;
4834 INIT_LIST_HEAD(&poll->wait.entry);
4835 init_waitqueue_func_entry(&poll->wait, wake_func);
18bceab1
JA
4836}
4837
8d4388d1 4838static inline void io_poll_remove_entry(struct io_poll *poll)
18bceab1 4839{
791f3465 4840 struct wait_queue_head *head = smp_load_acquire(&poll->head);
18bceab1 4841
791f3465
PB
4842 if (head) {
4843 spin_lock_irq(&head->lock);
4844 list_del_init(&poll->wait.entry);
4845 poll->head = NULL;
4846 spin_unlock_irq(&head->lock);
4847 }
aa43477b 4848}
18bceab1 4849
aa43477b
PB
4850static void io_poll_remove_entries(struct io_kiocb *req)
4851{
91eac1c6
JA
4852 /*
4853 * Nothing to do if neither of those flags are set. Avoid dipping
4854 * into the poll/apoll/double cachelines if we can.
4855 */
4856 if (!(req->flags & (REQ_F_SINGLE_POLL | REQ_F_DOUBLE_POLL)))
4857 return;
18bceab1 4858
791f3465
PB
4859 /*
4860 * While we hold the waitqueue lock and the waitqueue is nonempty,
4861 * wake_up_pollfree() will wait for us. However, taking the waitqueue
4862 * lock in the first place can race with the waitqueue being freed.
4863 *
4864 * We solve this as eventpoll does: by taking advantage of the fact that
4865 * all users of wake_up_pollfree() will RCU-delay the actual free. If
4866 * we enter rcu_read_lock() and see that the pointer to the queue is
4867 * non-NULL, we can then lock it without the memory being freed out from
4868 * under us.
4869 *
4870 * Keep holding rcu_read_lock() as long as we hold the queue lock, in
4871 * case the caller deletes the entry from the queue, leaving it empty.
4872 * In that case, only RCU prevents the queue memory from being freed.
4873 */
4874 rcu_read_lock();
91eac1c6
JA
4875 if (req->flags & REQ_F_SINGLE_POLL)
4876 io_poll_remove_entry(io_poll_get_single(req));
4877 if (req->flags & REQ_F_DOUBLE_POLL)
4878 io_poll_remove_entry(io_poll_get_double(req));
791f3465 4879 rcu_read_unlock();
18bceab1
JA
4880}
4881
dbc2564c 4882static int io_issue_sqe(struct io_kiocb *req, unsigned int issue_flags);
aa43477b
PB
4883/*
4884 * All poll tw should go through this. Checks for poll events, manages
4885 * references, does rewait, etc.
4886 *
4887 * Returns a negative error on failure. >0 when no action require, which is
4888 * either spurious wakeup or multishot CQE is served. 0 when it's done with
cef216fc 4889 * the request, then the mask is stored in req->cqe.res.
aa43477b 4890 */
dbc2564c 4891static int io_poll_check_events(struct io_kiocb *req, bool *locked)
18bceab1 4892{
74ce6ce4 4893 struct io_ring_ctx *ctx = req->ctx;
dbc2564c 4894 int v, ret;
18bceab1 4895
316319e8 4896 /* req->task == current here, checking PF_EXITING is safe */
e09ee510 4897 if (unlikely(req->task->flags & PF_EXITING))
f2219057 4898 return -ECANCELED;
18bceab1 4899
aa43477b
PB
4900 do {
4901 v = atomic_read(&req->poll_refs);
74ce6ce4 4902
aa43477b
PB
4903 /* tw handler should be the owner, and so have some references */
4904 if (WARN_ON_ONCE(!(v & IO_POLL_REF_MASK)))
4905 return 0;
4906 if (v & IO_POLL_CANCEL_FLAG)
4907 return -ECANCELED;
8706e04e 4908
cef216fc 4909 if (!req->cqe.res) {
2804ecd8 4910 struct poll_table_struct pt = { ._key = req->apoll_events };
cef216fc 4911 req->cqe.res = vfs_poll(req->file, &pt) & req->apoll_events;
c8b5e260 4912 }
74ce6ce4 4913
dbc2564c
HX
4914 if ((unlikely(!req->cqe.res)))
4915 continue;
4916 if (req->apoll_events & EPOLLONESHOT)
4917 return 0;
4918
4919 /* multishot, just fill a CQE and proceed */
4920 if (!(req->flags & REQ_F_APOLL_MULTISHOT)) {
4921 __poll_t mask = mangle_poll(req->cqe.res &
4922 req->apoll_events);
aa43477b 4923 bool filled;
18bceab1 4924
aa43477b 4925 spin_lock(&ctx->completion_lock);
dbc2564c
HX
4926 filled = io_fill_cqe_aux(ctx, req->cqe.user_data,
4927 mask, IORING_CQE_F_MORE);
aa43477b
PB
4928 io_commit_cqring(ctx);
4929 spin_unlock(&ctx->completion_lock);
dbc2564c
HX
4930 if (filled) {
4931 io_cqring_ev_posted(ctx);
4932 continue;
4933 }
4934 return -ECANCELED;
aa43477b 4935 }
18bceab1 4936
dbc2564c
HX
4937 io_tw_lock(req->ctx, locked);
4938 if (unlikely(req->task->flags & PF_EXITING))
4939 return -EFAULT;
4940 ret = io_issue_sqe(req,
4941 IO_URING_F_NONBLOCK|IO_URING_F_COMPLETE_DEFER);
4942 if (ret)
4943 return ret;
4944
aa43477b
PB
4945 /*
4946 * Release all references, retry if someone tried to restart
4947 * task_work while we were executing it.
4948 */
4949 } while (atomic_sub_return(v & IO_POLL_REF_MASK, &req->poll_refs));
18bceab1 4950
18bceab1
JA
4951 return 1;
4952}
4953
aa43477b 4954static void io_poll_task_func(struct io_kiocb *req, bool *locked)
18bceab1 4955{
18bceab1 4956 struct io_ring_ctx *ctx = req->ctx;
aa43477b 4957 int ret;
18bceab1 4958
dbc2564c 4959 ret = io_poll_check_events(req, locked);
aa43477b
PB
4960 if (ret > 0)
4961 return;
4962
4963 if (!ret) {
8d4388d1
JA
4964 struct io_poll *poll = io_kiocb_to_cmd(req);
4965
4966 req->cqe.res = mangle_poll(req->cqe.res & poll->events);
e27414be 4967 } else {
cef216fc 4968 req->cqe.res = ret;
aa43477b 4969 req_set_fail(req);
a62682f9 4970 }
aa43477b
PB
4971
4972 io_poll_remove_entries(req);
4973 spin_lock(&ctx->completion_lock);
4974 hash_del(&req->hash_node);
97b388d7
JA
4975 req->cqe.flags = 0;
4976 __io_req_complete_post(req);
aa43477b
PB
4977 io_commit_cqring(ctx);
4978 spin_unlock(&ctx->completion_lock);
4979 io_cqring_ev_posted(ctx);
18bceab1
JA
4980}
4981
aa43477b 4982static void io_apoll_task_func(struct io_kiocb *req, bool *locked)
18bceab1
JA
4983{
4984 struct io_ring_ctx *ctx = req->ctx;
aa43477b 4985 int ret;
18bceab1 4986
dbc2564c 4987 ret = io_poll_check_events(req, locked);
aa43477b
PB
4988 if (ret > 0)
4989 return;
18bceab1 4990
aa43477b
PB
4991 io_poll_remove_entries(req);
4992 spin_lock(&ctx->completion_lock);
4993 hash_del(&req->hash_node);
4994 spin_unlock(&ctx->completion_lock);
18bceab1 4995
aa43477b
PB
4996 if (!ret)
4997 io_req_task_submit(req, locked);
4998 else
4999 io_req_complete_failed(req, ret);
18bceab1
JA
5000}
5001
aacf2f9f
PB
5002static void __io_poll_execute(struct io_kiocb *req, int mask,
5003 __poll_t __maybe_unused events)
aa43477b 5004{
97b388d7 5005 io_req_set_res(req, mask, 0);
81459350
JA
5006 /*
5007 * This is useful for poll that is armed on behalf of another
5008 * request, and where the wakeup path could be on a different
5009 * CPU. We want to avoid pulling in req->apoll->events for that
5010 * case.
5011 */
aa43477b
PB
5012 if (req->opcode == IORING_OP_POLL_ADD)
5013 req->io_task_work.func = io_poll_task_func;
5014 else
5015 req->io_task_work.func = io_apoll_task_func;
5016
cef216fc 5017 trace_io_uring_task_add(req->ctx, req, req->cqe.user_data, req->opcode, mask);
3fe07bcd 5018 io_req_task_work_add(req);
aa43477b
PB
5019}
5020
58f5c8d3
CH
5021static inline void io_poll_execute(struct io_kiocb *req, int res,
5022 __poll_t events)
aa43477b
PB
5023{
5024 if (io_poll_get_ownership(req))
81459350 5025 __io_poll_execute(req, res, events);
aa43477b
PB
5026}
5027
5028static void io_poll_cancel_req(struct io_kiocb *req)
5029{
5030 io_poll_mark_cancelled(req);
5031 /* kick tw, which should complete the request */
81459350 5032 io_poll_execute(req, 0, 0);
aa43477b
PB
5033}
5034
d89a4fac
JA
5035#define wqe_to_req(wait) ((void *)((unsigned long) (wait)->private & ~1))
5036#define wqe_is_double(wait) ((unsigned long) (wait)->private & 1)
a294bef5 5037#define IO_ASYNC_POLL_COMMON (EPOLLONESHOT | EPOLLPRI)
d89a4fac 5038
aa43477b
PB
5039static int io_poll_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
5040 void *key)
18bceab1 5041{
d89a4fac 5042 struct io_kiocb *req = wqe_to_req(wait);
8d4388d1 5043 struct io_poll *poll = container_of(wait, struct io_poll, wait);
18bceab1
JA
5044 __poll_t mask = key_to_poll(key);
5045
791f3465
PB
5046 if (unlikely(mask & POLLFREE)) {
5047 io_poll_mark_cancelled(req);
5048 /* we have to kick tw in case it's not already */
81459350 5049 io_poll_execute(req, 0, poll->events);
791f3465
PB
5050
5051 /*
5052 * If the waitqueue is being freed early but someone is already
5053 * holds ownership over it, we have to tear down the request as
5054 * best we can. That means immediately removing the request from
5055 * its waitqueue and preventing all further accesses to the
5056 * waitqueue via the request.
5057 */
5058 list_del_init(&poll->wait.entry);
5059
5060 /*
5061 * Careful: this *must* be the last step, since as soon
5062 * as req->head is NULL'ed out, the request can be
5063 * completed and freed, since aio_poll_complete_work()
5064 * will no longer need to take the waitqueue lock.
5065 */
5066 smp_store_release(&poll->head, NULL);
5067 return 1;
5068 }
5069
aa43477b 5070 /* for instances that support it check for an event match first */
1b1d7b4b 5071 if (mask && !(mask & (poll->events & ~IO_ASYNC_POLL_COMMON)))
18bceab1
JA
5072 return 0;
5073
eb0089d6
PB
5074 if (io_poll_get_ownership(req)) {
5075 /* optional, saves extra locking for removal in tw handler */
5076 if (mask && poll->events & EPOLLONESHOT) {
5077 list_del_init(&poll->wait.entry);
5078 poll->head = NULL;
d89a4fac
JA
5079 if (wqe_is_double(wait))
5080 req->flags &= ~REQ_F_DOUBLE_POLL;
5081 else
5082 req->flags &= ~REQ_F_SINGLE_POLL;
eb0089d6 5083 }
81459350 5084 __io_poll_execute(req, mask, poll->events);
eb0089d6 5085 }
18bceab1 5086 return 1;
18bceab1
JA
5087}
5088
8d4388d1 5089static void __io_queue_proc(struct io_poll *poll, struct io_poll_table *pt,
807abcb0 5090 struct wait_queue_head *head,
8d4388d1 5091 struct io_poll **poll_ptr)
18bceab1
JA
5092{
5093 struct io_kiocb *req = pt->req;
d89a4fac 5094 unsigned long wqe_private = (unsigned long) req;
18bceab1
JA
5095
5096 /*
68b11e8b 5097 * The file being polled uses multiple waitqueues for poll handling
8d4388d1 5098 * (e.g. one for read, one for write). Setup a separate io_poll
68b11e8b 5099 * if this happens.
18bceab1 5100 */
68b11e8b 5101 if (unlikely(pt->nr_entries)) {
8d4388d1 5102 struct io_poll *first = poll;
58852d4d 5103
23a65db8 5104 /* double add on the same waitqueue head, ignore */
aa43477b 5105 if (first->head == head)
23a65db8 5106 return;
18bceab1 5107 /* already have a 2nd entry, fail a third attempt */
807abcb0 5108 if (*poll_ptr) {
23a65db8
PB
5109 if ((*poll_ptr)->head == head)
5110 return;
18bceab1
JA
5111 pt->error = -EINVAL;
5112 return;
5113 }
aa43477b 5114
18bceab1
JA
5115 poll = kmalloc(sizeof(*poll), GFP_ATOMIC);
5116 if (!poll) {
5117 pt->error = -ENOMEM;
5118 return;
5119 }
d89a4fac
JA
5120 /* mark as double wq entry */
5121 wqe_private |= 1;
91eac1c6 5122 req->flags |= REQ_F_DOUBLE_POLL;
aa43477b 5123 io_init_poll_iocb(poll, first->events, first->wait.func);
807abcb0 5124 *poll_ptr = poll;
d886e185
PB
5125 if (req->opcode == IORING_OP_POLL_ADD)
5126 req->flags |= REQ_F_ASYNC_DATA;
18bceab1
JA
5127 }
5128
91eac1c6 5129 req->flags |= REQ_F_SINGLE_POLL;
68b11e8b 5130 pt->nr_entries++;
18bceab1 5131 poll->head = head;
d89a4fac 5132 poll->wait.private = (void *) wqe_private;
a31eb4a2
JX
5133
5134 if (poll->events & EPOLLEXCLUSIVE)
5135 add_wait_queue_exclusive(head, &poll->wait);
5136 else
5137 add_wait_queue(head, &poll->wait);
18bceab1
JA
5138}
5139
aa43477b 5140static void io_poll_queue_proc(struct file *file, struct wait_queue_head *head,
18bceab1
JA
5141 struct poll_table_struct *p)
5142{
5143 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
8d4388d1 5144 struct io_poll *poll = io_kiocb_to_cmd(pt->req);
d7718a9d 5145
8d4388d1
JA
5146 __io_queue_proc(poll, pt, head,
5147 (struct io_poll **) &pt->req->async_data);
d7718a9d
JA
5148}
5149
aa43477b 5150static int __io_arm_poll_handler(struct io_kiocb *req,
8d4388d1 5151 struct io_poll *poll,
aa43477b 5152 struct io_poll_table *ipt, __poll_t mask)
d7718a9d
JA
5153{
5154 struct io_ring_ctx *ctx = req->ctx;
aa43477b 5155 int v;
d7718a9d 5156
4d52f338 5157 INIT_HLIST_NODE(&req->hash_node);
8e29da69 5158 req->work.cancel_seq = atomic_read(&ctx->cancel_seq);
aa43477b 5159 io_init_poll_iocb(poll, mask, io_poll_wake);
b90cd197 5160 poll->file = req->file;
d7718a9d 5161
aacf2f9f
PB
5162 req->apoll_events = poll->events;
5163
d7718a9d
JA
5164 ipt->pt._key = mask;
5165 ipt->req = req;
68b11e8b
PB
5166 ipt->error = 0;
5167 ipt->nr_entries = 0;
d7718a9d 5168
aa43477b
PB
5169 /*
5170 * Take the ownership to delay any tw execution up until we're done
5171 * with poll arming. see io_poll_get_ownership().
5172 */
5173 atomic_set(&req->poll_refs, 1);
d7718a9d 5174 mask = vfs_poll(req->file, &ipt->pt) & poll->events;
aa43477b
PB
5175
5176 if (mask && (poll->events & EPOLLONESHOT)) {
5177 io_poll_remove_entries(req);
5178 /* no one else has access to the req, forget about the ref */
5179 return mask;
5180 }
5181 if (!mask && unlikely(ipt->error || !ipt->nr_entries)) {
5182 io_poll_remove_entries(req);
5183 if (!ipt->error)
5184 ipt->error = -EINVAL;
5185 return 0;
5186 }
d7718a9d 5187
79ebeaee 5188 spin_lock(&ctx->completion_lock);
aa43477b
PB
5189 io_poll_req_insert(req);
5190 spin_unlock(&ctx->completion_lock);
5191
5192 if (mask) {
5193 /* can't multishot if failed, just queue the event we've got */
aacf2f9f 5194 if (unlikely(ipt->error || !ipt->nr_entries)) {
aa43477b 5195 poll->events |= EPOLLONESHOT;
aacf2f9f 5196 req->apoll_events |= EPOLLONESHOT;
9d2ad294 5197 ipt->error = 0;
aacf2f9f 5198 }
81459350 5199 __io_poll_execute(req, mask, poll->events);
aa43477b 5200 return 0;
d7718a9d
JA
5201 }
5202
aa43477b
PB
5203 /*
5204 * Release ownership. If someone tried to queue a tw while it was
5205 * locked, kick it off for them.
5206 */
5207 v = atomic_dec_return(&req->poll_refs);
5208 if (unlikely(v & IO_POLL_REF_MASK))
81459350 5209 __io_poll_execute(req, 0, poll->events);
aa43477b
PB
5210 return 0;
5211}
5212
5213static void io_async_queue_proc(struct file *file, struct wait_queue_head *head,
5214 struct poll_table_struct *p)
5215{
5216 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
5217 struct async_poll *apoll = pt->req->apoll;
5218
5219 __io_queue_proc(&apoll->poll, pt, head, &apoll->double_poll);
d7718a9d
JA
5220}
5221
59b735ae
OL
5222enum {
5223 IO_APOLL_OK,
5224 IO_APOLL_ABORTED,
5225 IO_APOLL_READY
5226};
5227
4d9237e3 5228static int io_arm_poll_handler(struct io_kiocb *req, unsigned issue_flags)
d7718a9d
JA
5229{
5230 const struct io_op_def *def = &io_op_defs[req->opcode];
5231 struct io_ring_ctx *ctx = req->ctx;
5232 struct async_poll *apoll;
5233 struct io_poll_table ipt;
dbc2564c 5234 __poll_t mask = POLLPRI | POLLERR;
aa43477b 5235 int ret;
d7718a9d 5236
b2d9c3da
PB
5237 if (!def->pollin && !def->pollout)
5238 return IO_APOLL_ABORTED;
10c87333 5239 if (!file_can_poll(req->file))
658d0a40 5240 return IO_APOLL_ABORTED;
10c87333 5241 if ((req->flags & (REQ_F_POLLED|REQ_F_PARTIAL_IO)) == REQ_F_POLLED)
658d0a40 5242 return IO_APOLL_ABORTED;
dbc2564c
HX
5243 if (!(req->flags & REQ_F_APOLL_MULTISHOT))
5244 mask |= EPOLLONESHOT;
b2d9c3da
PB
5245
5246 if (def->pollin) {
a294bef5 5247 mask |= EPOLLIN | EPOLLRDNORM;
b2d9c3da
PB
5248
5249 /* If reading from MSG_ERRQUEUE using recvmsg, ignore POLLIN */
bd8587e4 5250 if (req->flags & REQ_F_CLEAR_POLLIN)
a294bef5 5251 mask &= ~EPOLLIN;
b2d9c3da 5252 } else {
a294bef5 5253 mask |= EPOLLOUT | EPOLLWRNORM;
b2d9c3da 5254 }
52dd8640
DY
5255 if (def->poll_exclusive)
5256 mask |= EPOLLEXCLUSIVE;
10c87333
JA
5257 if (req->flags & REQ_F_POLLED) {
5258 apoll = req->apoll;
c0737fa9 5259 kfree(apoll->double_poll);
10c87333
JA
5260 } else if (!(issue_flags & IO_URING_F_UNLOCKED) &&
5261 !list_empty(&ctx->apoll_cache)) {
4d9237e3
JA
5262 apoll = list_first_entry(&ctx->apoll_cache, struct async_poll,
5263 poll.wait.entry);
5264 list_del_init(&apoll->poll.wait.entry);
5265 } else {
5266 apoll = kmalloc(sizeof(*apoll), GFP_ATOMIC);
5267 if (unlikely(!apoll))
5268 return IO_APOLL_ABORTED;
5269 }
807abcb0 5270 apoll->double_poll = NULL;
d7718a9d 5271 req->apoll = apoll;
b2d9c3da 5272 req->flags |= REQ_F_POLLED;
d7718a9d
JA
5273 ipt.pt._qproc = io_async_queue_proc;
5274
4d55f238 5275 io_kbuf_recycle(req, issue_flags);
abdad709 5276
aa43477b 5277 ret = __io_arm_poll_handler(req, &apoll->poll, &ipt, mask);
41a5169c
HX
5278 if (ret || ipt.error)
5279 return ret ? IO_APOLL_READY : IO_APOLL_ABORTED;
5280
cef216fc 5281 trace_io_uring_poll_arm(ctx, req, req->cqe.user_data, req->opcode,
236daeae 5282 mask, apoll->poll.events);
59b735ae 5283 return IO_APOLL_OK;
d7718a9d
JA
5284}
5285
76e1b642
JA
5286/*
5287 * Returns true if we found and killed one or more poll requests
5288 */
c072481d
PB
5289static __cold bool io_poll_remove_all(struct io_ring_ctx *ctx,
5290 struct task_struct *tsk, bool cancel_all)
221c5eb2 5291{
78076bb6 5292 struct hlist_node *tmp;
221c5eb2 5293 struct io_kiocb *req;
aa43477b
PB
5294 bool found = false;
5295 int i;
221c5eb2 5296
79ebeaee 5297 spin_lock(&ctx->completion_lock);
78076bb6
JA
5298 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
5299 struct hlist_head *list;
5300
5301 list = &ctx->cancel_hash[i];
f3606e3a 5302 hlist_for_each_entry_safe(req, tmp, list, hash_node) {
42a7b4ed 5303 if (io_match_task_safe(req, tsk, cancel_all)) {
61bc84c4 5304 hlist_del_init(&req->hash_node);
aa43477b
PB
5305 io_poll_cancel_req(req);
5306 found = true;
5307 }
f3606e3a 5308 }
221c5eb2 5309 }
79ebeaee 5310 spin_unlock(&ctx->completion_lock);
aa43477b 5311 return found;
221c5eb2
JA
5312}
5313
b21432b4
JA
5314static struct io_kiocb *io_poll_find(struct io_ring_ctx *ctx, bool poll_only,
5315 struct io_cancel_data *cd)
e07785b0 5316 __must_hold(&ctx->completion_lock)
47f46768 5317{
78076bb6 5318 struct hlist_head *list;
47f46768
JA
5319 struct io_kiocb *req;
5320
b21432b4 5321 list = &ctx->cancel_hash[hash_long(cd->data, ctx->cancel_hash_bits)];
78076bb6 5322 hlist_for_each_entry(req, list, hash_node) {
b21432b4 5323 if (cd->data != req->cqe.user_data)
b41e9852 5324 continue;
9ba5fac8
PB
5325 if (poll_only && req->opcode != IORING_OP_POLL_ADD)
5326 continue;
8e29da69
JA
5327 if (cd->flags & IORING_ASYNC_CANCEL_ALL) {
5328 if (cd->seq == req->work.cancel_seq)
5329 continue;
5330 req->work.cancel_seq = cd->seq;
5331 }
b2cb805f 5332 return req;
47f46768 5333 }
b2cb805f
JA
5334 return NULL;
5335}
5336
4bf94615
JA
5337static struct io_kiocb *io_poll_file_find(struct io_ring_ctx *ctx,
5338 struct io_cancel_data *cd)
5339 __must_hold(&ctx->completion_lock)
5340{
5341 struct io_kiocb *req;
5342 int i;
5343
5344 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
5345 struct hlist_head *list;
5346
5347 list = &ctx->cancel_hash[i];
5348 hlist_for_each_entry(req, list, hash_node) {
970f256e
JA
5349 if (!(cd->flags & IORING_ASYNC_CANCEL_ANY) &&
5350 req->file != cd->file)
4bf94615
JA
5351 continue;
5352 if (cd->seq == req->work.cancel_seq)
5353 continue;
5354 req->work.cancel_seq = cd->seq;
5355 return req;
5356 }
5357 }
5358 return NULL;
5359}
5360
aa43477b
PB
5361static bool io_poll_disarm(struct io_kiocb *req)
5362 __must_hold(&ctx->completion_lock)
5363{
5364 if (!io_poll_get_ownership(req))
5365 return false;
5366 io_poll_remove_entries(req);
5367 hash_del(&req->hash_node);
5368 return true;
5369}
5370
b21432b4 5371static int io_poll_cancel(struct io_ring_ctx *ctx, struct io_cancel_data *cd)
e07785b0 5372 __must_hold(&ctx->completion_lock)
b2cb805f 5373{
4bf94615 5374 struct io_kiocb *req;
b2cb805f 5375
970f256e 5376 if (cd->flags & (IORING_ASYNC_CANCEL_FD|IORING_ASYNC_CANCEL_ANY))
4bf94615
JA
5377 req = io_poll_file_find(ctx, cd);
5378 else
5379 req = io_poll_find(ctx, false, cd);
b2cb805f
JA
5380 if (!req)
5381 return -ENOENT;
aa43477b
PB
5382 io_poll_cancel_req(req);
5383 return 0;
47f46768
JA
5384}
5385
9096af3e
PB
5386static __poll_t io_poll_parse_events(const struct io_uring_sqe *sqe,
5387 unsigned int flags)
5388{
5389 u32 events;
47f46768 5390
9096af3e
PB
5391 events = READ_ONCE(sqe->poll32_events);
5392#ifdef __BIG_ENDIAN
5393 events = swahw32(events);
5394#endif
5395 if (!(flags & IORING_POLL_ADD_MULTI))
5396 events |= EPOLLONESHOT;
5397 return demangle_poll(events) | (events & (EPOLLEXCLUSIVE|EPOLLONESHOT));
47f46768
JA
5398}
5399
54739cc6 5400static int io_poll_remove_prep(struct io_kiocb *req,
3529d8c2 5401 const struct io_uring_sqe *sqe)
0969e783 5402{
c24b1549 5403 struct io_poll_update *upd = io_kiocb_to_cmd(req);
c5de0036
PB
5404 u32 flags;
5405
73911426 5406 if (sqe->buf_index || sqe->splice_fd_in)
c5de0036
PB
5407 return -EINVAL;
5408 flags = READ_ONCE(sqe->len);
5409 if (flags & ~(IORING_POLL_UPDATE_EVENTS | IORING_POLL_UPDATE_USER_DATA |
5410 IORING_POLL_ADD_MULTI))
5411 return -EINVAL;
5412 /* meaningless without update */
5413 if (flags == IORING_POLL_ADD_MULTI)
0969e783
JA
5414 return -EINVAL;
5415
c5de0036
PB
5416 upd->old_user_data = READ_ONCE(sqe->addr);
5417 upd->update_events = flags & IORING_POLL_UPDATE_EVENTS;
5418 upd->update_user_data = flags & IORING_POLL_UPDATE_USER_DATA;
221c5eb2 5419
c5de0036
PB
5420 upd->new_user_data = READ_ONCE(sqe->off);
5421 if (!upd->update_user_data && upd->new_user_data)
5422 return -EINVAL;
5423 if (upd->update_events)
5424 upd->events = io_poll_parse_events(sqe, flags);
5425 else if (sqe->poll32_events)
5426 return -EINVAL;
221c5eb2 5427
221c5eb2
JA
5428 return 0;
5429}
5430
3529d8c2 5431static int io_poll_add_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
221c5eb2 5432{
8d4388d1 5433 struct io_poll *poll = io_kiocb_to_cmd(req);
c5de0036 5434 u32 flags;
221c5eb2 5435
73911426 5436 if (sqe->buf_index || sqe->off || sqe->addr)
88e41cf9
JA
5437 return -EINVAL;
5438 flags = READ_ONCE(sqe->len);
c5de0036 5439 if (flags & ~IORING_POLL_ADD_MULTI)
221c5eb2 5440 return -EINVAL;
04c76b41
PB
5441 if ((flags & IORING_POLL_ADD_MULTI) && (req->flags & REQ_F_CQE_SKIP))
5442 return -EINVAL;
221c5eb2 5443
48dcd38d 5444 io_req_set_refcount(req);
aacf2f9f 5445 poll->events = io_poll_parse_events(sqe, flags);
0969e783
JA
5446 return 0;
5447}
5448
61e98203 5449static int io_poll_add(struct io_kiocb *req, unsigned int issue_flags)
0969e783 5450{
8d4388d1 5451 struct io_poll *poll = io_kiocb_to_cmd(req);
0969e783 5452 struct io_poll_table ipt;
aa43477b 5453 int ret;
0969e783 5454
d7718a9d 5455 ipt.pt._qproc = io_poll_queue_proc;
36703247 5456
8d4388d1 5457 ret = __io_arm_poll_handler(req, poll, &ipt, poll->events);
97b388d7
JA
5458 if (ret) {
5459 io_req_set_res(req, ret, 0);
5460 return IOU_OK;
5461 }
5462 if (ipt.error) {
c487a5ad 5463 req_set_fail(req);
97b388d7
JA
5464 return ipt.error;
5465 }
5466
5467 return IOU_ISSUE_SKIP_COMPLETE;
221c5eb2
JA
5468}
5469
54739cc6 5470static int io_poll_remove(struct io_kiocb *req, unsigned int issue_flags)
b69de288 5471{
c24b1549
JA
5472 struct io_poll_update *poll_update = io_kiocb_to_cmd(req);
5473 struct io_cancel_data cd = { .data = poll_update->old_user_data, };
b69de288
JA
5474 struct io_ring_ctx *ctx = req->ctx;
5475 struct io_kiocb *preq;
2bbb146d 5476 int ret2, ret = 0;
cc8e9ba7 5477 bool locked;
b69de288 5478
79ebeaee 5479 spin_lock(&ctx->completion_lock);
b21432b4 5480 preq = io_poll_find(ctx, true, &cd);
aa43477b 5481 if (!preq || !io_poll_disarm(preq)) {
79ebeaee 5482 spin_unlock(&ctx->completion_lock);
aa43477b 5483 ret = preq ? -EALREADY : -ENOENT;
2bbb146d 5484 goto out;
b69de288 5485 }
79ebeaee 5486 spin_unlock(&ctx->completion_lock);
cb3b200e 5487
c24b1549 5488 if (poll_update->update_events || poll_update->update_user_data) {
2bbb146d 5489 /* only mask one event flags, keep behavior flags */
c24b1549 5490 if (poll_update->update_events) {
8d4388d1
JA
5491 struct io_poll *poll = io_kiocb_to_cmd(preq);
5492
5493 poll->events &= ~0xffff;
c24b1549 5494 poll->events |= poll_update->events & 0xffff;
8d4388d1 5495 poll->events |= IO_POLL_UNMASK;
cb3b200e 5496 }
c24b1549
JA
5497 if (poll_update->update_user_data)
5498 preq->cqe.user_data = poll_update->new_user_data;
b69de288 5499
2bbb146d
PB
5500 ret2 = io_poll_add(preq, issue_flags);
5501 /* successfully updated, don't complete poll request */
97b388d7 5502 if (!ret2 || ret2 == -EIOCBQUEUED)
2bbb146d 5503 goto out;
b69de288 5504 }
6224590d 5505
2bbb146d 5506 req_set_fail(preq);
97b388d7 5507 io_req_set_res(preq, -ECANCELED, 0);
cc8e9ba7
PB
5508 locked = !(issue_flags & IO_URING_F_UNLOCKED);
5509 io_req_task_complete(preq, &locked);
2bbb146d 5510out:
97b388d7 5511 if (ret < 0) {
6224590d 5512 req_set_fail(req);
97b388d7
JA
5513 return ret;
5514 }
2bbb146d 5515 /* complete update request, we're done with it */
97b388d7
JA
5516 io_req_set_res(req, ret, 0);
5517 return IOU_OK;
89850fce
JA
5518}
5519
5262f567
JA
5520static enum hrtimer_restart io_timeout_fn(struct hrtimer *timer)
5521{
ad8a48ac
JA
5522 struct io_timeout_data *data = container_of(timer,
5523 struct io_timeout_data, timer);
5524 struct io_kiocb *req = data->req;
a43714ac 5525 struct io_timeout *timeout = io_kiocb_to_cmd(req);
ad8a48ac 5526 struct io_ring_ctx *ctx = req->ctx;
5262f567
JA
5527 unsigned long flags;
5528
89850fce 5529 spin_lock_irqsave(&ctx->timeout_lock, flags);
a43714ac 5530 list_del_init(&timeout->list);
01cec8c1
PB
5531 atomic_set(&req->ctx->cq_timeouts,
5532 atomic_read(&req->ctx->cq_timeouts) + 1);
89850fce 5533 spin_unlock_irqrestore(&ctx->timeout_lock, flags);
01cec8c1 5534
a90c8bf6
PB
5535 if (!(data->flags & IORING_TIMEOUT_ETIME_SUCCESS))
5536 req_set_fail(req);
5537
97b388d7 5538 io_req_set_res(req, -ETIME, 0);
a90c8bf6 5539 req->io_task_work.func = io_req_task_complete;
3fe07bcd 5540 io_req_task_work_add(req);
5262f567
JA
5541 return HRTIMER_NORESTART;
5542}
5543
fbd15848 5544static struct io_kiocb *io_timeout_extract(struct io_ring_ctx *ctx,
b21432b4 5545 struct io_cancel_data *cd)
89850fce 5546 __must_hold(&ctx->timeout_lock)
f254ac04 5547{
a43714ac 5548 struct io_timeout *timeout;
fbd15848 5549 struct io_timeout_data *io;
a43714ac
JA
5550 struct io_kiocb *req = NULL;
5551
5552 list_for_each_entry(timeout, &ctx->timeout_list, list) {
5553 struct io_kiocb *tmp = cmd_to_io_kiocb(timeout);
f254ac04 5554
970f256e 5555 if (!(cd->flags & IORING_ASYNC_CANCEL_ANY) &&
a43714ac 5556 cd->data != tmp->cqe.user_data)
8e29da69 5557 continue;
970f256e 5558 if (cd->flags & (IORING_ASYNC_CANCEL_ALL|IORING_ASYNC_CANCEL_ANY)) {
a43714ac 5559 if (cd->seq == tmp->work.cancel_seq)
8e29da69 5560 continue;
a43714ac 5561 tmp->work.cancel_seq = cd->seq;
8e29da69 5562 }
a43714ac 5563 req = tmp;
8e29da69 5564 break;
47f46768 5565 }
a43714ac 5566 if (!req)
fd9c7bc5 5567 return ERR_PTR(-ENOENT);
fbd15848
PB
5568
5569 io = req->async_data;
fd9c7bc5 5570 if (hrtimer_try_to_cancel(&io->timer) == -1)
fbd15848 5571 return ERR_PTR(-EALREADY);
a43714ac
JA
5572 timeout = io_kiocb_to_cmd(req);
5573 list_del_init(&timeout->list);
fbd15848
PB
5574 return req;
5575}
47f46768 5576
b21432b4 5577static int io_timeout_cancel(struct io_ring_ctx *ctx, struct io_cancel_data *cd)
ec3c3d0f 5578 __must_hold(&ctx->completion_lock)
fbd15848 5579{
3645c200
PB
5580 struct io_kiocb *req;
5581
5582 spin_lock_irq(&ctx->timeout_lock);
b21432b4 5583 req = io_timeout_extract(ctx, cd);
3645c200 5584 spin_unlock_irq(&ctx->timeout_lock);
fbd15848
PB
5585
5586 if (IS_ERR(req))
5587 return PTR_ERR(req);
6695490d 5588 io_req_task_queue_fail(req, -ECANCELED);
f254ac04
JA
5589 return 0;
5590}
5591
50c1df2b
JA
5592static clockid_t io_timeout_get_clock(struct io_timeout_data *data)
5593{
5594 switch (data->flags & IORING_TIMEOUT_CLOCK_MASK) {
5595 case IORING_TIMEOUT_BOOTTIME:
5596 return CLOCK_BOOTTIME;
5597 case IORING_TIMEOUT_REALTIME:
5598 return CLOCK_REALTIME;
5599 default:
5600 /* can't happen, vetted at prep time */
5601 WARN_ON_ONCE(1);
5602 fallthrough;
5603 case 0:
5604 return CLOCK_MONOTONIC;
5605 }
5606}
5607
f1042b6c
PB
5608static int io_linked_timeout_update(struct io_ring_ctx *ctx, __u64 user_data,
5609 struct timespec64 *ts, enum hrtimer_mode mode)
5610 __must_hold(&ctx->timeout_lock)
5611{
5612 struct io_timeout_data *io;
a43714ac
JA
5613 struct io_timeout *timeout;
5614 struct io_kiocb *req = NULL;
5615
5616 list_for_each_entry(timeout, &ctx->ltimeout_list, list) {
5617 struct io_kiocb *tmp = cmd_to_io_kiocb(timeout);
f1042b6c 5618
a43714ac
JA
5619 if (user_data == tmp->cqe.user_data) {
5620 req = tmp;
f1042b6c 5621 break;
a43714ac 5622 }
f1042b6c 5623 }
a43714ac 5624 if (!req)
f1042b6c
PB
5625 return -ENOENT;
5626
5627 io = req->async_data;
5628 if (hrtimer_try_to_cancel(&io->timer) == -1)
5629 return -EALREADY;
5630 hrtimer_init(&io->timer, io_timeout_get_clock(io), mode);
5631 io->timer.function = io_link_timeout_fn;
5632 hrtimer_start(&io->timer, timespec64_to_ktime(*ts), mode);
5633 return 0;
5634}
5635
9c8e11b3
PB
5636static int io_timeout_update(struct io_ring_ctx *ctx, __u64 user_data,
5637 struct timespec64 *ts, enum hrtimer_mode mode)
89850fce 5638 __must_hold(&ctx->timeout_lock)
47f46768 5639{
b21432b4
JA
5640 struct io_cancel_data cd = { .data = user_data, };
5641 struct io_kiocb *req = io_timeout_extract(ctx, &cd);
a43714ac 5642 struct io_timeout *timeout = io_kiocb_to_cmd(req);
9c8e11b3 5643 struct io_timeout_data *data;
47f46768 5644
9c8e11b3
PB
5645 if (IS_ERR(req))
5646 return PTR_ERR(req);
47f46768 5647
a43714ac 5648 timeout->off = 0; /* noseq */
9c8e11b3 5649 data = req->async_data;
a43714ac 5650 list_add_tail(&timeout->list, &ctx->timeout_list);
50c1df2b 5651 hrtimer_init(&data->timer, io_timeout_get_clock(data), mode);
9c8e11b3
PB
5652 data->timer.function = io_timeout_fn;
5653 hrtimer_start(&data->timer, timespec64_to_ktime(*ts), mode);
5654 return 0;
47f46768
JA
5655}
5656
3529d8c2
JA
5657static int io_timeout_remove_prep(struct io_kiocb *req,
5658 const struct io_uring_sqe *sqe)
b29472ee 5659{
a43714ac 5660 struct io_timeout_rem *tr = io_kiocb_to_cmd(req);
9c8e11b3 5661
61710e43
DA
5662 if (unlikely(req->flags & (REQ_F_FIXED_FILE | REQ_F_BUFFER_SELECT)))
5663 return -EINVAL;
73911426 5664 if (sqe->buf_index || sqe->len || sqe->splice_fd_in)
b29472ee
JA
5665 return -EINVAL;
5666
f1042b6c 5667 tr->ltimeout = false;
9c8e11b3
PB
5668 tr->addr = READ_ONCE(sqe->addr);
5669 tr->flags = READ_ONCE(sqe->timeout_flags);
f1042b6c
PB
5670 if (tr->flags & IORING_TIMEOUT_UPDATE_MASK) {
5671 if (hweight32(tr->flags & IORING_TIMEOUT_CLOCK_MASK) > 1)
5672 return -EINVAL;
5673 if (tr->flags & IORING_LINK_TIMEOUT_UPDATE)
5674 tr->ltimeout = true;
5675 if (tr->flags & ~(IORING_TIMEOUT_UPDATE_MASK|IORING_TIMEOUT_ABS))
9c8e11b3
PB
5676 return -EINVAL;
5677 if (get_timespec64(&tr->ts, u64_to_user_ptr(sqe->addr2)))
5678 return -EFAULT;
2087009c
YB
5679 if (tr->ts.tv_sec < 0 || tr->ts.tv_nsec < 0)
5680 return -EINVAL;
9c8e11b3
PB
5681 } else if (tr->flags) {
5682 /* timeout removal doesn't support flags */
b29472ee 5683 return -EINVAL;
9c8e11b3 5684 }
b29472ee 5685
b29472ee
JA
5686 return 0;
5687}
5688
8662daec
PB
5689static inline enum hrtimer_mode io_translate_timeout_mode(unsigned int flags)
5690{
5691 return (flags & IORING_TIMEOUT_ABS) ? HRTIMER_MODE_ABS
5692 : HRTIMER_MODE_REL;
5693}
5694
11365043
JA
5695/*
5696 * Remove or update an existing timeout command
5697 */
61e98203 5698static int io_timeout_remove(struct io_kiocb *req, unsigned int issue_flags)
11365043 5699{
a43714ac 5700 struct io_timeout_rem *tr = io_kiocb_to_cmd(req);
11365043 5701 struct io_ring_ctx *ctx = req->ctx;
47f46768 5702 int ret;
11365043 5703
a43714ac 5704 if (!(tr->flags & IORING_TIMEOUT_UPDATE)) {
b21432b4
JA
5705 struct io_cancel_data cd = { .data = tr->addr, };
5706
ec3c3d0f 5707 spin_lock(&ctx->completion_lock);
b21432b4 5708 ret = io_timeout_cancel(ctx, &cd);
ec3c3d0f
PB
5709 spin_unlock(&ctx->completion_lock);
5710 } else {
f1042b6c
PB
5711 enum hrtimer_mode mode = io_translate_timeout_mode(tr->flags);
5712
ec3c3d0f 5713 spin_lock_irq(&ctx->timeout_lock);
f1042b6c
PB
5714 if (tr->ltimeout)
5715 ret = io_linked_timeout_update(ctx, tr->addr, &tr->ts, mode);
5716 else
5717 ret = io_timeout_update(ctx, tr->addr, &tr->ts, mode);
ec3c3d0f
PB
5718 spin_unlock_irq(&ctx->timeout_lock);
5719 }
11365043 5720
4e88d6e7 5721 if (ret < 0)
93d2bcd2 5722 req_set_fail(req);
97b388d7
JA
5723 io_req_set_res(req, ret, 0);
5724 return IOU_OK;
5262f567
JA
5725}
5726
ecddc25d
JA
5727static int __io_timeout_prep(struct io_kiocb *req,
5728 const struct io_uring_sqe *sqe,
5729 bool is_timeout_link)
5262f567 5730{
a43714ac 5731 struct io_timeout *timeout = io_kiocb_to_cmd(req);
ad8a48ac 5732 struct io_timeout_data *data;
a41525ab 5733 unsigned flags;
56080b02 5734 u32 off = READ_ONCE(sqe->off);
5262f567 5735
73911426 5736 if (sqe->buf_index || sqe->len != 1 || sqe->splice_fd_in)
a41525ab 5737 return -EINVAL;
56080b02 5738 if (off && is_timeout_link)
2d28390a 5739 return -EINVAL;
a41525ab 5740 flags = READ_ONCE(sqe->timeout_flags);
6224590d
PB
5741 if (flags & ~(IORING_TIMEOUT_ABS | IORING_TIMEOUT_CLOCK_MASK |
5742 IORING_TIMEOUT_ETIME_SUCCESS))
50c1df2b
JA
5743 return -EINVAL;
5744 /* more than one clock specified is invalid, obviously */
5745 if (hweight32(flags & IORING_TIMEOUT_CLOCK_MASK) > 1)
5262f567 5746 return -EINVAL;
bdf20073 5747
a43714ac
JA
5748 INIT_LIST_HEAD(&timeout->list);
5749 timeout->off = off;
f18ee4cf
PB
5750 if (unlikely(off && !req->ctx->off_timeout_used))
5751 req->ctx->off_timeout_used = true;
26a61679 5752
d6a644a7
PB
5753 if (WARN_ON_ONCE(req_has_async_data(req)))
5754 return -EFAULT;
5755 if (io_alloc_async_data(req))
26a61679
JA
5756 return -ENOMEM;
5757
e8c2bc1f 5758 data = req->async_data;
ad8a48ac 5759 data->req = req;
50c1df2b 5760 data->flags = flags;
ad8a48ac
JA
5761
5762 if (get_timespec64(&data->ts, u64_to_user_ptr(sqe->addr)))
5262f567
JA
5763 return -EFAULT;
5764
f6223ff7
YB
5765 if (data->ts.tv_sec < 0 || data->ts.tv_nsec < 0)
5766 return -EINVAL;
5767
a43714ac 5768 INIT_LIST_HEAD(&timeout->list);
8662daec 5769 data->mode = io_translate_timeout_mode(flags);
50c1df2b 5770 hrtimer_init(&data->timer, io_timeout_get_clock(data), data->mode);
b97e736a
PB
5771
5772 if (is_timeout_link) {
5773 struct io_submit_link *link = &req->ctx->submit_state.link;
5774
5775 if (!link->head)
5776 return -EINVAL;
5777 if (link->last->opcode == IORING_OP_LINK_TIMEOUT)
5778 return -EINVAL;
a43714ac 5779 timeout->head = link->last;
4d13d1a4 5780 link->last->flags |= REQ_F_ARM_LTIMEOUT;
b97e736a 5781 }
ad8a48ac
JA
5782 return 0;
5783}
5784
ecddc25d
JA
5785static int io_timeout_prep(struct io_kiocb *req,
5786 const struct io_uring_sqe *sqe)
5787{
5788 return __io_timeout_prep(req, sqe, false);
5789}
5790
5791static int io_link_timeout_prep(struct io_kiocb *req,
5792 const struct io_uring_sqe *sqe)
5793{
5794 return __io_timeout_prep(req, sqe, true);
5795}
5796
61e98203 5797static int io_timeout(struct io_kiocb *req, unsigned int issue_flags)
ad8a48ac 5798{
a43714ac 5799 struct io_timeout *timeout = io_kiocb_to_cmd(req);
ad8a48ac 5800 struct io_ring_ctx *ctx = req->ctx;
e8c2bc1f 5801 struct io_timeout_data *data = req->async_data;
ad8a48ac 5802 struct list_head *entry;
a43714ac 5803 u32 tail, off = timeout->off;
ad8a48ac 5804
89850fce 5805 spin_lock_irq(&ctx->timeout_lock);
93bd25bb 5806
5262f567
JA
5807 /*
5808 * sqe->off holds how many events that need to occur for this
93bd25bb
JA
5809 * timeout event to be satisfied. If it isn't set, then this is
5810 * a pure timeout request, sequence isn't used.
5262f567 5811 */
8eb7e2d0 5812 if (io_is_timeout_noseq(req)) {
93bd25bb
JA
5813 entry = ctx->timeout_list.prev;
5814 goto add;
5815 }
5262f567 5816
bfe68a22 5817 tail = ctx->cached_cq_tail - atomic_read(&ctx->cq_timeouts);
a43714ac 5818 timeout->target_seq = tail + off;
5262f567 5819
f010505b
MDG
5820 /* Update the last seq here in case io_flush_timeouts() hasn't.
5821 * This is safe because ->completion_lock is held, and submissions
5822 * and completions are never mixed in the same ->completion_lock section.
5823 */
5824 ctx->cq_last_tm_flush = tail;
5825
5262f567
JA
5826 /*
5827 * Insertion sort, ensuring the first entry in the list is always
5828 * the one we need first.
5829 */
5262f567 5830 list_for_each_prev(entry, &ctx->timeout_list) {
a43714ac
JA
5831 struct io_timeout *nextt = list_entry(entry, struct io_timeout, list);
5832 struct io_kiocb *nxt = cmd_to_io_kiocb(nextt);
5262f567 5833
8eb7e2d0 5834 if (io_is_timeout_noseq(nxt))
93bd25bb 5835 continue;
bfe68a22 5836 /* nxt.seq is behind @tail, otherwise would've been completed */
a43714ac 5837 if (off >= nextt->target_seq - tail)
5262f567
JA
5838 break;
5839 }
93bd25bb 5840add:
a43714ac 5841 list_add(&timeout->list, entry);
ad8a48ac
JA
5842 data->timer.function = io_timeout_fn;
5843 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts), data->mode);
89850fce 5844 spin_unlock_irq(&ctx->timeout_lock);
97b388d7 5845 return IOU_ISSUE_SKIP_COMPLETE;
5262f567 5846}
5262f567 5847
62755e35
JA
5848static bool io_cancel_cb(struct io_wq_work *work, void *data)
5849{
5850 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
f458dd84 5851 struct io_cancel_data *cd = data;
62755e35 5852
8e29da69
JA
5853 if (req->ctx != cd->ctx)
5854 return false;
970f256e
JA
5855 if (cd->flags & IORING_ASYNC_CANCEL_ANY) {
5856 ;
5857 } else if (cd->flags & IORING_ASYNC_CANCEL_FD) {
4bf94615
JA
5858 if (req->file != cd->file)
5859 return false;
5860 } else {
5861 if (req->cqe.user_data != cd->data)
5862 return false;
5863 }
970f256e 5864 if (cd->flags & (IORING_ASYNC_CANCEL_ALL|IORING_ASYNC_CANCEL_ANY)) {
8e29da69
JA
5865 if (cd->seq == req->work.cancel_seq)
5866 return false;
5867 req->work.cancel_seq = cd->seq;
5868 }
5869 return true;
62755e35
JA
5870}
5871
b21432b4
JA
5872static int io_async_cancel_one(struct io_uring_task *tctx,
5873 struct io_cancel_data *cd)
62755e35 5874{
62755e35 5875 enum io_wq_cancel cancel_ret;
62755e35 5876 int ret = 0;
970f256e 5877 bool all;
62755e35 5878
f458dd84 5879 if (!tctx || !tctx->io_wq)
5aa75ed5
JA
5880 return -ENOENT;
5881
970f256e
JA
5882 all = cd->flags & (IORING_ASYNC_CANCEL_ALL|IORING_ASYNC_CANCEL_ANY);
5883 cancel_ret = io_wq_cancel_cb(tctx->io_wq, io_cancel_cb, cd, all);
62755e35
JA
5884 switch (cancel_ret) {
5885 case IO_WQ_CANCEL_OK:
5886 ret = 0;
5887 break;
5888 case IO_WQ_CANCEL_RUNNING:
5889 ret = -EALREADY;
5890 break;
5891 case IO_WQ_CANCEL_NOTFOUND:
5892 ret = -ENOENT;
5893 break;
5894 }
5895
e977d6d3
JA
5896 return ret;
5897}
5898
b21432b4 5899static int io_try_cancel(struct io_kiocb *req, struct io_cancel_data *cd)
47f46768 5900{
8cb01fac 5901 struct io_ring_ctx *ctx = req->ctx;
47f46768
JA
5902 int ret;
5903
dadebc35 5904 WARN_ON_ONCE(!io_wq_current_is_worker() && req->task != current);
8cb01fac 5905
b21432b4 5906 ret = io_async_cancel_one(req->task->io_uring, cd);
ccbf7261
JA
5907 /*
5908 * Fall-through even for -EALREADY, as we may have poll armed
5909 * that need unarming.
5910 */
5911 if (!ret)
5912 return 0;
505657bc
PB
5913
5914 spin_lock(&ctx->completion_lock);
b21432b4 5915 ret = io_poll_cancel(ctx, cd);
ccbf7261
JA
5916 if (ret != -ENOENT)
5917 goto out;
4bf94615
JA
5918 if (!(cd->flags & IORING_ASYNC_CANCEL_FD))
5919 ret = io_timeout_cancel(ctx, cd);
505657bc
PB
5920out:
5921 spin_unlock(&ctx->completion_lock);
5922 return ret;
47f46768
JA
5923}
5924
970f256e
JA
5925#define CANCEL_FLAGS (IORING_ASYNC_CANCEL_ALL | IORING_ASYNC_CANCEL_FD | \
5926 IORING_ASYNC_CANCEL_ANY)
5927
3529d8c2
JA
5928static int io_async_cancel_prep(struct io_kiocb *req,
5929 const struct io_uring_sqe *sqe)
e977d6d3 5930{
f38987f0
JA
5931 struct io_cancel *cancel = io_kiocb_to_cmd(req);
5932
4bf94615 5933 if (unlikely(req->flags & REQ_F_BUFFER_SELECT))
61710e43 5934 return -EINVAL;
73911426 5935 if (sqe->off || sqe->len || sqe->splice_fd_in)
e977d6d3
JA
5936 return -EINVAL;
5937
f38987f0
JA
5938 cancel->addr = READ_ONCE(sqe->addr);
5939 cancel->flags = READ_ONCE(sqe->cancel_flags);
5940 if (cancel->flags & ~CANCEL_FLAGS)
8e29da69 5941 return -EINVAL;
f38987f0
JA
5942 if (cancel->flags & IORING_ASYNC_CANCEL_FD) {
5943 if (cancel->flags & IORING_ASYNC_CANCEL_ANY)
970f256e 5944 return -EINVAL;
f38987f0 5945 cancel->fd = READ_ONCE(sqe->fd);
970f256e 5946 }
8e29da69 5947
fbf23849
JA
5948 return 0;
5949}
5950
8e29da69
JA
5951static int __io_async_cancel(struct io_cancel_data *cd, struct io_kiocb *req,
5952 unsigned int issue_flags)
fbf23849 5953{
970f256e 5954 bool all = cd->flags & (IORING_ASYNC_CANCEL_ALL|IORING_ASYNC_CANCEL_ANY);
8e29da69 5955 struct io_ring_ctx *ctx = cd->ctx;
58f99373 5956 struct io_tctx_node *node;
8e29da69 5957 int ret, nr = 0;
58f99373 5958
8e29da69
JA
5959 do {
5960 ret = io_try_cancel(req, cd);
5961 if (ret == -ENOENT)
5962 break;
970f256e 5963 if (!all)
8e29da69
JA
5964 return ret;
5965 nr++;
5966 } while (1);
58f99373
PB
5967
5968 /* slow path, try all io-wq's */
f8929630 5969 io_ring_submit_lock(ctx, issue_flags);
58f99373
PB
5970 ret = -ENOENT;
5971 list_for_each_entry(node, &ctx->tctx_list, ctx_node) {
5972 struct io_uring_task *tctx = node->task->io_uring;
fbf23849 5973
8e29da69
JA
5974 ret = io_async_cancel_one(tctx, cd);
5975 if (ret != -ENOENT) {
970f256e 5976 if (!all)
8e29da69
JA
5977 break;
5978 nr++;
5979 }
58f99373 5980 }
f8929630 5981 io_ring_submit_unlock(ctx, issue_flags);
970f256e 5982 return all ? nr : ret;
8e29da69
JA
5983}
5984
5985static int io_async_cancel(struct io_kiocb *req, unsigned int issue_flags)
5986{
f38987f0 5987 struct io_cancel *cancel = io_kiocb_to_cmd(req);
8e29da69
JA
5988 struct io_cancel_data cd = {
5989 .ctx = req->ctx,
f38987f0
JA
5990 .data = cancel->addr,
5991 .flags = cancel->flags,
8e29da69
JA
5992 .seq = atomic_inc_return(&req->ctx->cancel_seq),
5993 };
5994 int ret;
5995
4bf94615
JA
5996 if (cd.flags & IORING_ASYNC_CANCEL_FD) {
5997 if (req->flags & REQ_F_FIXED_FILE)
f38987f0 5998 req->file = io_file_get_fixed(req, cancel->fd,
4bf94615
JA
5999 issue_flags);
6000 else
f38987f0 6001 req->file = io_file_get_normal(req, cancel->fd);
4bf94615
JA
6002 if (!req->file) {
6003 ret = -EBADF;
6004 goto done;
6005 }
6006 cd.file = req->file;
58f99373 6007 }
4bf94615 6008
8e29da69 6009 ret = __io_async_cancel(&cd, req, issue_flags);
58f99373 6010done:
58f99373 6011 if (ret < 0)
93d2bcd2 6012 req_set_fail(req);
97b388d7
JA
6013 io_req_set_res(req, ret, 0);
6014 return IOU_OK;
5262f567
JA
6015}
6016
54739cc6 6017static int io_files_update_prep(struct io_kiocb *req,
05f3fb3c
JA
6018 const struct io_uring_sqe *sqe)
6019{
ea5af87d
JA
6020 struct io_rsrc_update *up = io_kiocb_to_cmd(req);
6021
61710e43
DA
6022 if (unlikely(req->flags & (REQ_F_FIXED_FILE | REQ_F_BUFFER_SELECT)))
6023 return -EINVAL;
73911426 6024 if (sqe->rw_flags || sqe->splice_fd_in)
05f3fb3c
JA
6025 return -EINVAL;
6026
ea5af87d
JA
6027 up->offset = READ_ONCE(sqe->off);
6028 up->nr_args = READ_ONCE(sqe->len);
6029 if (!up->nr_args)
05f3fb3c 6030 return -EINVAL;
ea5af87d 6031 up->arg = READ_ONCE(sqe->addr);
05f3fb3c
JA
6032 return 0;
6033}
6034
a7c41b46
XW
6035static int io_files_update_with_index_alloc(struct io_kiocb *req,
6036 unsigned int issue_flags)
6037{
ea5af87d
JA
6038 struct io_rsrc_update *up = io_kiocb_to_cmd(req);
6039 __s32 __user *fds = u64_to_user_ptr(up->arg);
a7c41b46
XW
6040 unsigned int done;
6041 struct file *file;
6042 int ret, fd;
6043
d785a773
JA
6044 if (!req->ctx->file_data)
6045 return -ENXIO;
6046
ea5af87d 6047 for (done = 0; done < up->nr_args; done++) {
a7c41b46
XW
6048 if (copy_from_user(&fd, &fds[done], sizeof(fd))) {
6049 ret = -EFAULT;
6050 break;
6051 }
6052
6053 file = fget(fd);
6054 if (!file) {
6055 ret = -EBADF;
6056 break;
6057 }
6058 ret = io_fixed_fd_install(req, issue_flags, file,
6059 IORING_FILE_INDEX_ALLOC);
6060 if (ret < 0)
6061 break;
6062 if (copy_to_user(&fds[done], &ret, sizeof(ret))) {
a7c41b46 6063 __io_close_fixed(req, issue_flags, ret);
e71d7c56 6064 ret = -EFAULT;
a7c41b46
XW
6065 break;
6066 }
6067 }
6068
6069 if (done)
6070 return done;
6071 return ret;
6072}
6073
889fca73 6074static int io_files_update(struct io_kiocb *req, unsigned int issue_flags)
fbf23849 6075{
ea5af87d 6076 struct io_rsrc_update *up = io_kiocb_to_cmd(req);
fbf23849 6077 struct io_ring_ctx *ctx = req->ctx;
ea5af87d 6078 struct io_uring_rsrc_update2 up2;
05f3fb3c 6079 int ret;
fbf23849 6080
ea5af87d
JA
6081 up2.offset = up->offset;
6082 up2.data = up->arg;
6083 up2.nr = 0;
6084 up2.tags = 0;
6085 up2.resv = 0;
6086 up2.resv2 = 0;
05f3fb3c 6087
ea5af87d 6088 if (up->offset == IORING_FILE_INDEX_ALLOC) {
a7c41b46
XW
6089 ret = io_files_update_with_index_alloc(req, issue_flags);
6090 } else {
6091 io_ring_submit_lock(ctx, issue_flags);
6092 ret = __io_register_rsrc_update(ctx, IORING_RSRC_FILE,
ea5af87d 6093 &up2, up->nr_args);
a7c41b46
XW
6094 io_ring_submit_unlock(ctx, issue_flags);
6095 }
05f3fb3c
JA
6096
6097 if (ret < 0)
93d2bcd2 6098 req_set_fail(req);
97b388d7
JA
6099 io_req_set_res(req, ret, 0);
6100 return IOU_OK;
5262f567
JA
6101}
6102
0702e536 6103static int io_req_prep_async(struct io_kiocb *req)
f67676d1 6104{
0702e536
JA
6105 const struct io_op_def *def = &io_op_defs[req->opcode];
6106
6107 /* assign early for deferred execution for non-fixed file */
6108 if (def->needs_file && !(req->flags & REQ_F_FIXED_FILE))
6109 req->file = io_file_get_normal(req, req->cqe.fd);
dc919caf 6110 if (!def->prep_async)
0702e536
JA
6111 return 0;
6112 if (WARN_ON_ONCE(req_has_async_data(req)))
6113 return -EFAULT;
6114 if (io_alloc_async_data(req))
6115 return -EAGAIN;
6116
dc919caf 6117 return def->prep_async(req);
bfe76559
PB
6118}
6119
9cf7c104
PB
6120static u32 io_get_sequence(struct io_kiocb *req)
6121{
a3dbdf54 6122 u32 seq = req->ctx->cached_sq_head;
963c6abb 6123 struct io_kiocb *cur;
9cf7c104 6124
a3dbdf54 6125 /* need original cached_sq_head, but it was increased for each req */
963c6abb 6126 io_for_each_link(cur, req)
a3dbdf54
PB
6127 seq--;
6128 return seq;
9cf7c104
PB
6129}
6130
c072481d 6131static __cold void io_drain_req(struct io_kiocb *req)
de0617e4 6132{
a197f664 6133 struct io_ring_ctx *ctx = req->ctx;
27dc8338 6134 struct io_defer_entry *de;
f67676d1 6135 int ret;
e0eb71dc 6136 u32 seq = io_get_sequence(req);
3c19966d 6137
9d858b21 6138 /* Still need defer if there is pending req in defer list. */
e302f104 6139 spin_lock(&ctx->completion_lock);
5e371265 6140 if (!req_need_defer(req, seq) && list_empty_careful(&ctx->defer_list)) {
e302f104 6141 spin_unlock(&ctx->completion_lock);
e0eb71dc 6142queue:
10c66904 6143 ctx->drain_active = false;
e0eb71dc
PB
6144 io_req_task_queue(req);
6145 return;
10c66904 6146 }
e302f104 6147 spin_unlock(&ctx->completion_lock);
9cf7c104 6148
b7e298d2 6149 ret = io_req_prep_async(req);
e0eb71dc
PB
6150 if (ret) {
6151fail:
6152 io_req_complete_failed(req, ret);
6153 return;
6154 }
cbdcb435 6155 io_prep_async_link(req);
27dc8338 6156 de = kmalloc(sizeof(*de), GFP_KERNEL);
76cc33d7 6157 if (!de) {
1b48773f 6158 ret = -ENOMEM;
e0eb71dc 6159 goto fail;
76cc33d7 6160 }
2d28390a 6161
79ebeaee 6162 spin_lock(&ctx->completion_lock);
9cf7c104 6163 if (!req_need_defer(req, seq) && list_empty(&ctx->defer_list)) {
79ebeaee 6164 spin_unlock(&ctx->completion_lock);
27dc8338 6165 kfree(de);
e0eb71dc 6166 goto queue;
de0617e4
JA
6167 }
6168
cef216fc 6169 trace_io_uring_defer(ctx, req, req->cqe.user_data, req->opcode);
27dc8338 6170 de->req = req;
9cf7c104 6171 de->seq = seq;
27dc8338 6172 list_add_tail(&de->list, &ctx->defer_list);
79ebeaee 6173 spin_unlock(&ctx->completion_lock);
de0617e4
JA
6174}
6175
68fb8979 6176static void io_clean_op(struct io_kiocb *req)
99bc4c38 6177{
8197b053
PB
6178 if (req->flags & REQ_F_BUFFER_SELECTED) {
6179 spin_lock(&req->ctx->completion_lock);
cc3cec83 6180 io_put_kbuf_comp(req);
8197b053
PB
6181 spin_unlock(&req->ctx->completion_lock);
6182 }
99bc4c38 6183
0e1b6fe3 6184 if (req->flags & REQ_F_NEED_CLEANUP) {
4d4c9cff 6185 const struct io_op_def *def = &io_op_defs[req->opcode];
bb040a21 6186
4d4c9cff
JA
6187 if (def->cleanup)
6188 def->cleanup(req);
99bc4c38 6189 }
75652a30
JA
6190 if ((req->flags & REQ_F_POLLED) && req->apoll) {
6191 kfree(req->apoll->double_poll);
6192 kfree(req->apoll);
6193 req->apoll = NULL;
6194 }
9cae36a0
JA
6195 if (req->flags & REQ_F_INFLIGHT) {
6196 struct io_uring_task *tctx = req->task->io_uring;
6197
6198 atomic_dec(&tctx->inflight_tracked);
6199 }
c854357b 6200 if (req->flags & REQ_F_CREDS)
b8e64b53 6201 put_cred(req->creds);
d886e185
PB
6202 if (req->flags & REQ_F_ASYNC_DATA) {
6203 kfree(req->async_data);
6204 req->async_data = NULL;
6205 }
c854357b 6206 req->flags &= ~IO_REQ_CLEAN_FLAGS;
99bc4c38
PB
6207}
6208
6bf9c47a
JA
6209static bool io_assign_file(struct io_kiocb *req, unsigned int issue_flags)
6210{
6211 if (req->file || !io_op_defs[req->opcode].needs_file)
6212 return true;
6213
6214 if (req->flags & REQ_F_FIXED_FILE)
cef216fc 6215 req->file = io_file_get_fixed(req, req->cqe.fd, issue_flags);
6bf9c47a 6216 else
cef216fc 6217 req->file = io_file_get_normal(req, req->cqe.fd);
6bf9c47a 6218
772f5e00 6219 return !!req->file;
6bf9c47a
JA
6220}
6221
889fca73 6222static int io_issue_sqe(struct io_kiocb *req, unsigned int issue_flags)
2b188cc1 6223{
fcde59fe 6224 const struct io_op_def *def = &io_op_defs[req->opcode];
5730b27e 6225 const struct cred *creds = NULL;
d625c6ee 6226 int ret;
2b188cc1 6227
70152140
JA
6228 if (unlikely(!io_assign_file(req, issue_flags)))
6229 return -EBADF;
6230
6878b40e 6231 if (unlikely((req->flags & REQ_F_CREDS) && req->creds != current_cred()))
c10d1f98 6232 creds = override_creds(req->creds);
5730b27e 6233
fcde59fe 6234 if (!def->audit_skip)
5bd2182d
PM
6235 audit_uring_entry(req->opcode);
6236
0702e536 6237 ret = def->issue(req, issue_flags);
2b188cc1 6238
fcde59fe 6239 if (!def->audit_skip)
5bd2182d
PM
6240 audit_uring_exit(!ret, ret);
6241
5730b27e
JA
6242 if (creds)
6243 revert_creds(creds);
97b388d7
JA
6244
6245 if (ret == IOU_OK)
6246 __io_req_complete(req, issue_flags);
6247 else if (ret != IOU_ISSUE_SKIP_COMPLETE)
def596e9 6248 return ret;
97b388d7 6249
b532576e 6250 /* If the op doesn't have a file, we're not polling for it */
9983028e 6251 if ((req->ctx->flags & IORING_SETUP_IOPOLL) && req->file)
9882131c 6252 io_iopoll_req_issued(req, issue_flags);
def596e9
JA
6253
6254 return 0;
2b188cc1
JA
6255}
6256
ebc11b6c
PB
6257static struct io_wq_work *io_wq_free_work(struct io_wq_work *work)
6258{
6259 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
6260
6261 req = io_put_req_find_next(req);
6262 return req ? &req->work : NULL;
6263}
6264
5280f7e5 6265static void io_wq_submit_work(struct io_wq_work *work)
2b188cc1
JA
6266{
6267 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
6bf9c47a 6268 const struct io_op_def *def = &io_op_defs[req->opcode];
d01905db
PB
6269 unsigned int issue_flags = IO_URING_F_UNLOCKED;
6270 bool needs_poll = false;
6bf9c47a 6271 int ret = 0, err = -ECANCELED;
2b188cc1 6272
48dcd38d
PB
6273 /* one will be dropped by ->io_free_work() after returning to io-wq */
6274 if (!(req->flags & REQ_F_REFCOUNT))
6275 __io_req_set_refcount(req, 2);
6276 else
6277 req_ref_get(req);
5d5901a3 6278
cb2d344c 6279 io_arm_ltimeout(req);
6bf9c47a 6280
dadebc35 6281 /* either cancelled or io-wq is dying, so don't touch tctx->iowq */
d01905db 6282 if (work->flags & IO_WQ_WORK_CANCEL) {
0f8da75b 6283fail:
6bf9c47a 6284 io_req_task_queue_fail(req, err);
d01905db
PB
6285 return;
6286 }
0f8da75b
PB
6287 if (!io_assign_file(req, issue_flags)) {
6288 err = -EBADF;
6289 work->flags |= IO_WQ_WORK_CANCEL;
6290 goto fail;
6291 }
31b51510 6292
d01905db 6293 if (req->flags & REQ_F_FORCE_ASYNC) {
afb7f56f
PB
6294 bool opcode_poll = def->pollin || def->pollout;
6295
6296 if (opcode_poll && file_can_poll(req->file)) {
6297 needs_poll = true;
d01905db 6298 issue_flags |= IO_URING_F_NONBLOCK;
afb7f56f 6299 }
561fb04a 6300 }
31b51510 6301
d01905db
PB
6302 do {
6303 ret = io_issue_sqe(req, issue_flags);
6304 if (ret != -EAGAIN)
6305 break;
6306 /*
6307 * We can get EAGAIN for iopolled IO even though we're
6308 * forcing a sync submission from here, since we can't
6309 * wait for request slots on the block side.
6310 */
6311 if (!needs_poll) {
e0deb6a0
PB
6312 if (!(req->ctx->flags & IORING_SETUP_IOPOLL))
6313 break;
d01905db
PB
6314 cond_resched();
6315 continue;
90fa0288
HX
6316 }
6317
4d9237e3 6318 if (io_arm_poll_handler(req, issue_flags) == IO_APOLL_OK)
d01905db
PB
6319 return;
6320 /* aborted or ready, in either case retry blocking */
6321 needs_poll = false;
6322 issue_flags &= ~IO_URING_F_NONBLOCK;
6323 } while (1);
31b51510 6324
a3df7698 6325 /* avoid locking problems by failing it from a clean context */
97b388d7 6326 if (ret < 0)
a3df7698 6327 io_req_task_queue_fail(req, ret);
2b188cc1
JA
6328}
6329
65e19f54
JA
6330static inline struct file *io_file_from_index(struct io_ring_ctx *ctx,
6331 int index)
6332{
aeca241b 6333 struct io_fixed_file *slot = io_fixed_file_slot(&ctx->file_table, index);
65e19f54 6334
a04b0ac0 6335 return (struct file *) (slot->file_ptr & FFS_MASK);
65e19f54
JA
6336}
6337
a04b0ac0 6338static void io_fixed_file_set(struct io_fixed_file *file_slot, struct file *file)
9a321c98
PB
6339{
6340 unsigned long file_ptr = (unsigned long) file;
6341
88459b50 6342 file_ptr |= io_file_get_flags(file);
a04b0ac0 6343 file_slot->file_ptr = file_ptr;
65e19f54
JA
6344}
6345
531113bb
JA
6346inline struct file *io_file_get_fixed(struct io_kiocb *req, int fd,
6347 unsigned int issue_flags)
09bb8394 6348{
5106dd6e
JA
6349 struct io_ring_ctx *ctx = req->ctx;
6350 struct file *file = NULL;
ac177053 6351 unsigned long file_ptr;
09bb8394 6352
93f052cb 6353 io_ring_submit_lock(ctx, issue_flags);
5106dd6e 6354
ac177053 6355 if (unlikely((unsigned int)fd >= ctx->nr_user_files))
5106dd6e 6356 goto out;
ac177053
PB
6357 fd = array_index_nospec(fd, ctx->nr_user_files);
6358 file_ptr = io_fixed_file_slot(&ctx->file_table, fd)->file_ptr;
6359 file = (struct file *) (file_ptr & FFS_MASK);
6360 file_ptr &= ~FFS_MASK;
6361 /* mask in overlapping REQ_F and FFS bits */
35645ac3 6362 req->flags |= (file_ptr << REQ_F_SUPPORT_NOWAIT_BIT);
5106dd6e 6363 io_req_set_rsrc_node(req, ctx, 0);
d78bd8ad 6364 WARN_ON_ONCE(file && !test_bit(fd, ctx->file_table.bitmap));
5106dd6e 6365out:
93f052cb 6366 io_ring_submit_unlock(ctx, issue_flags);
ac177053
PB
6367 return file;
6368}
d44f554e 6369
531113bb 6370struct file *io_file_get_normal(struct io_kiocb *req, int fd)
ac177053 6371{
62906e89 6372 struct file *file = fget(fd);
ac177053 6373
cef216fc 6374 trace_io_uring_file_get(req->ctx, req, req->cqe.user_data, fd);
09bb8394 6375
ac177053 6376 /* we don't allow fixed io_uring files */
d5361233 6377 if (file && file->f_op == &io_uring_fops)
9cae36a0 6378 io_req_track_inflight(req);
8371adf5 6379 return file;
09bb8394
JA
6380}
6381
f237c30a 6382static void io_req_task_link_timeout(struct io_kiocb *req, bool *locked)
89b263f6 6383{
a43714ac
JA
6384 struct io_timeout *timeout = io_kiocb_to_cmd(req);
6385 struct io_kiocb *prev = timeout->prev;
617a8948 6386 int ret = -ENOENT;
89b263f6
JA
6387
6388 if (prev) {
b21432b4
JA
6389 if (!(req->task->flags & PF_EXITING)) {
6390 struct io_cancel_data cd = {
6391 .ctx = req->ctx,
6392 .data = prev->cqe.user_data,
6393 };
6394
6395 ret = io_try_cancel(req, &cd);
6396 }
97b388d7
JA
6397 io_req_set_res(req, ret ?: -ETIME, 0);
6398 io_req_complete_post(req);
89b263f6 6399 io_put_req(prev);
89b263f6 6400 } else {
97b388d7
JA
6401 io_req_set_res(req, -ETIME, 0);
6402 io_req_complete_post(req);
89b263f6
JA
6403 }
6404}
6405
2665abfd 6406static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer)
2b188cc1 6407{
ad8a48ac
JA
6408 struct io_timeout_data *data = container_of(timer,
6409 struct io_timeout_data, timer);
90cd7e42 6410 struct io_kiocb *prev, *req = data->req;
a43714ac 6411 struct io_timeout *timeout = io_kiocb_to_cmd(req);
2665abfd 6412 struct io_ring_ctx *ctx = req->ctx;
2665abfd 6413 unsigned long flags;
2665abfd 6414
89b263f6 6415 spin_lock_irqsave(&ctx->timeout_lock, flags);
a43714ac
JA
6416 prev = timeout->head;
6417 timeout->head = NULL;
2665abfd
JA
6418
6419 /*
6420 * We don't expect the list to be empty, that will only happen if we
6421 * race with the completion of the linked work.
6422 */
447c19f3 6423 if (prev) {
f2f87370 6424 io_remove_next_linked(prev);
447c19f3
PB
6425 if (!req_ref_inc_not_zero(prev))
6426 prev = NULL;
6427 }
a43714ac
JA
6428 list_del(&timeout->list);
6429 timeout->prev = prev;
89b263f6 6430 spin_unlock_irqrestore(&ctx->timeout_lock, flags);
2665abfd 6431
89b263f6 6432 req->io_task_work.func = io_req_task_link_timeout;
3fe07bcd 6433 io_req_task_work_add(req);
2665abfd
JA
6434 return HRTIMER_NORESTART;
6435}
6436
de968c18 6437static void io_queue_linked_timeout(struct io_kiocb *req)
2665abfd 6438{
a43714ac 6439 struct io_timeout *timeout = io_kiocb_to_cmd(req);
de968c18
PB
6440 struct io_ring_ctx *ctx = req->ctx;
6441
89b263f6 6442 spin_lock_irq(&ctx->timeout_lock);
76a46e06 6443 /*
f2f87370
PB
6444 * If the back reference is NULL, then our linked request finished
6445 * before we got a chance to setup the timer
76a46e06 6446 */
a43714ac 6447 if (timeout->head) {
e8c2bc1f 6448 struct io_timeout_data *data = req->async_data;
94ae5e77 6449
ad8a48ac
JA
6450 data->timer.function = io_link_timeout_fn;
6451 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts),
6452 data->mode);
a43714ac 6453 list_add_tail(&timeout->list, &ctx->ltimeout_list);
2665abfd 6454 }
89b263f6 6455 spin_unlock_irq(&ctx->timeout_lock);
2665abfd 6456 /* drop submission reference */
76a46e06
JA
6457 io_put_req(req);
6458}
2665abfd 6459
7bfa9bad 6460static void io_queue_async(struct io_kiocb *req, int ret)
d475a9a6
PB
6461 __must_hold(&req->ctx->uring_lock)
6462{
7bfa9bad
PB
6463 struct io_kiocb *linked_timeout;
6464
6465 if (ret != -EAGAIN || (req->flags & REQ_F_NOWAIT)) {
6466 io_req_complete_failed(req, ret);
6467 return;
6468 }
6469
6470 linked_timeout = io_prep_linked_timeout(req);
d475a9a6 6471
4d9237e3 6472 switch (io_arm_poll_handler(req, 0)) {
d475a9a6 6473 case IO_APOLL_READY:
d475a9a6
PB
6474 io_req_task_queue(req);
6475 break;
6476 case IO_APOLL_ABORTED:
6477 /*
6478 * Queued up for async execution, worker will release
6479 * submit reference when the iocb is actually submitted.
6480 */
6436c770 6481 io_kbuf_recycle(req, 0);
77955efb 6482 io_queue_iowq(req, NULL);
d475a9a6 6483 break;
b1c62645 6484 case IO_APOLL_OK:
b1c62645 6485 break;
d475a9a6
PB
6486 }
6487
6488 if (linked_timeout)
6489 io_queue_linked_timeout(linked_timeout);
6490}
6491
cbc2e203 6492static inline void io_queue_sqe(struct io_kiocb *req)
282cdc86 6493 __must_hold(&req->ctx->uring_lock)
2b188cc1 6494{
e0c5c576 6495 int ret;
2b188cc1 6496
c5eef2b9 6497 ret = io_issue_sqe(req, IO_URING_F_NONBLOCK|IO_URING_F_COMPLETE_DEFER);
193155c8 6498
fff4e40e
PB
6499 if (req->flags & REQ_F_COMPLETE_INLINE) {
6500 io_req_add_compl_list(req);
d9f9d284 6501 return;
fff4e40e 6502 }
491381ce
JA
6503 /*
6504 * We async punt it if the file wasn't marked NOWAIT, or if the file
6505 * doesn't support non-blocking read/write attempts
6506 */
7bfa9bad 6507 if (likely(!ret))
cb2d344c 6508 io_arm_ltimeout(req);
7bfa9bad
PB
6509 else
6510 io_queue_async(req, ret);
2b188cc1
JA
6511}
6512
4652fe3f 6513static void io_queue_sqe_fallback(struct io_kiocb *req)
282cdc86 6514 __must_hold(&req->ctx->uring_lock)
4fe2c963 6515{
17b147f6
PB
6516 if (unlikely(req->flags & REQ_F_FAIL)) {
6517 /*
6518 * We don't submit, fail them all, for that replace hardlinks
6519 * with normal links. Extra REQ_F_LINK is tolerated.
6520 */
6521 req->flags &= ~REQ_F_HARDLINK;
6522 req->flags |= REQ_F_LINK;
6523 io_req_complete_failed(req, req->cqe.res);
e0eb71dc
PB
6524 } else if (unlikely(req->ctx->drain_active)) {
6525 io_drain_req(req);
76cc33d7
PB
6526 } else {
6527 int ret = io_req_prep_async(req);
6528
6529 if (unlikely(ret))
6530 io_req_complete_failed(req, ret);
6531 else
77955efb 6532 io_queue_iowq(req, NULL);
ce35a47a 6533 }
4fe2c963
JL
6534}
6535
b16fed66
PB
6536/*
6537 * Check SQE restrictions (opcode and flags).
6538 *
6539 * Returns 'true' if SQE is allowed, 'false' otherwise.
6540 */
6541static inline bool io_check_restriction(struct io_ring_ctx *ctx,
6542 struct io_kiocb *req,
6543 unsigned int sqe_flags)
4fe2c963 6544{
b16fed66
PB
6545 if (!test_bit(req->opcode, ctx->restrictions.sqe_op))
6546 return false;
6547
6548 if ((sqe_flags & ctx->restrictions.sqe_flags_required) !=
6549 ctx->restrictions.sqe_flags_required)
6550 return false;
6551
6552 if (sqe_flags & ~(ctx->restrictions.sqe_flags_allowed |
6553 ctx->restrictions.sqe_flags_required))
6554 return false;
6555
6556 return true;
4fe2c963
JL
6557}
6558
22b2ca31
PB
6559static void io_init_req_drain(struct io_kiocb *req)
6560{
6561 struct io_ring_ctx *ctx = req->ctx;
6562 struct io_kiocb *head = ctx->submit_state.link.head;
6563
6564 ctx->drain_active = true;
6565 if (head) {
6566 /*
6567 * If we need to drain a request in the middle of a link, drain
6568 * the head request and the next request/link after the current
6569 * link. Considering sequential execution of links,
b6c7db32 6570 * REQ_F_IO_DRAIN will be maintained for every request of our
22b2ca31
PB
6571 * link.
6572 */
b6c7db32 6573 head->flags |= REQ_F_IO_DRAIN | REQ_F_FORCE_ASYNC;
22b2ca31
PB
6574 ctx->drain_next = true;
6575 }
6576}
6577
b16fed66
PB
6578static int io_init_req(struct io_ring_ctx *ctx, struct io_kiocb *req,
6579 const struct io_uring_sqe *sqe)
282cdc86 6580 __must_hold(&ctx->uring_lock)
b16fed66 6581{
fcde59fe 6582 const struct io_op_def *def;
b16fed66 6583 unsigned int sqe_flags;
fc0ae024 6584 int personality;
4a04d1d1 6585 u8 opcode;
b16fed66 6586
864ea921 6587 /* req is partially pre-initialised, see io_preinit_req() */
4a04d1d1 6588 req->opcode = opcode = READ_ONCE(sqe->opcode);
b16fed66
PB
6589 /* same numerical values with corresponding REQ_F_*, safe to copy */
6590 req->flags = sqe_flags = READ_ONCE(sqe->flags);
cef216fc 6591 req->cqe.user_data = READ_ONCE(sqe->user_data);
b16fed66 6592 req->file = NULL;
c1bdf8ed 6593 req->rsrc_node = NULL;
b16fed66 6594 req->task = current;
b16fed66 6595
4a04d1d1
PB
6596 if (unlikely(opcode >= IORING_OP_LAST)) {
6597 req->opcode = 0;
b16fed66 6598 return -EINVAL;
4a04d1d1 6599 }
fcde59fe 6600 def = &io_op_defs[opcode];
68fe256a
PB
6601 if (unlikely(sqe_flags & ~SQE_COMMON_FLAGS)) {
6602 /* enforce forwards compatibility on users */
6603 if (sqe_flags & ~SQE_VALID_FLAGS)
6604 return -EINVAL;
4e906702 6605 if (sqe_flags & IOSQE_BUFFER_SELECT) {
fcde59fe 6606 if (!def->buffer_select)
4e906702
JA
6607 return -EOPNOTSUPP;
6608 req->buf_index = READ_ONCE(sqe->buf_group);
6609 }
5562a8d7
PB
6610 if (sqe_flags & IOSQE_CQE_SKIP_SUCCESS)
6611 ctx->drain_disabled = true;
6612 if (sqe_flags & IOSQE_IO_DRAIN) {
6613 if (ctx->drain_disabled)
6614 return -EOPNOTSUPP;
22b2ca31 6615 io_init_req_drain(req);
5562a8d7 6616 }
2a56a9bd
PB
6617 }
6618 if (unlikely(ctx->restricted || ctx->drain_active || ctx->drain_next)) {
6619 if (ctx->restricted && !io_check_restriction(ctx, req, sqe_flags))
6620 return -EACCES;
6621 /* knock it to the slow queue path, will be drained there */
6622 if (ctx->drain_active)
6623 req->flags |= REQ_F_FORCE_ASYNC;
6624 /* if there is no link, we're at "next" request and need to drain */
6625 if (unlikely(ctx->drain_next) && !ctx->submit_state.link.head) {
6626 ctx->drain_next = false;
6627 ctx->drain_active = true;
b6c7db32 6628 req->flags |= REQ_F_IO_DRAIN | REQ_F_FORCE_ASYNC;
2a56a9bd 6629 }
68fe256a 6630 }
b16fed66 6631
fcde59fe 6632 if (!def->ioprio && sqe->ioprio)
73911426 6633 return -EINVAL;
fcde59fe 6634 if (!def->iopoll && (ctx->flags & IORING_SETUP_IOPOLL))
73911426
JA
6635 return -EINVAL;
6636
fcde59fe 6637 if (def->needs_file) {
6d63416d
PB
6638 struct io_submit_state *state = &ctx->submit_state;
6639
cef216fc 6640 req->cqe.fd = READ_ONCE(sqe->fd);
6bf9c47a 6641
6d63416d
PB
6642 /*
6643 * Plug now if we have more than 2 IO left after this, and the
6644 * target is potentially a read/write to block based storage.
6645 */
fcde59fe 6646 if (state->need_plug && def->plug) {
6d63416d
PB
6647 state->plug_started = true;
6648 state->need_plug = false;
5ca7a8b3 6649 blk_start_plug_nr_ios(&state->plug, state->submit_nr);
6d63416d 6650 }
b16fed66 6651 }
863e0560 6652
003e8dcc
JA
6653 personality = READ_ONCE(sqe->personality);
6654 if (personality) {
cdab10bf
LT
6655 int ret;
6656
c10d1f98
PB
6657 req->creds = xa_load(&ctx->personalities, personality);
6658 if (!req->creds)
003e8dcc 6659 return -EINVAL;
c10d1f98 6660 get_cred(req->creds);
cdc1404a
PM
6661 ret = security_uring_override_creds(req->creds);
6662 if (ret) {
6663 put_cred(req->creds);
6664 return ret;
6665 }
b8e64b53 6666 req->flags |= REQ_F_CREDS;
003e8dcc 6667 }
b16fed66 6668
0702e536 6669 return def->prep(req, sqe);
b16fed66
PB
6670}
6671
df3becde
PB
6672static __cold int io_submit_fail_init(const struct io_uring_sqe *sqe,
6673 struct io_kiocb *req, int ret)
6674{
6675 struct io_ring_ctx *ctx = req->ctx;
6676 struct io_submit_link *link = &ctx->submit_state.link;
6677 struct io_kiocb *head = link->head;
6678
6679 trace_io_uring_req_failed(sqe, ctx, req, ret);
6680
6681 /*
6682 * Avoid breaking links in the middle as it renders links with SQPOLL
6683 * unusable. Instead of failing eagerly, continue assembling the link if
6684 * applicable and mark the head with REQ_F_FAIL. The link flushing code
6685 * should find the flag and handle the rest.
6686 */
6687 req_fail_link_node(req, ret);
6688 if (head && !(head->flags & REQ_F_FAIL))
6689 req_fail_link_node(head, -ECANCELED);
6690
6691 if (!(req->flags & IO_REQ_LINK_FLAGS)) {
6692 if (head) {
6693 link->last->link = req;
6694 link->head = NULL;
6695 req = head;
6696 }
6697 io_queue_sqe_fallback(req);
6698 return ret;
6699 }
6700
6701 if (head)
6702 link->last->link = req;
6703 else
6704 link->head = req;
6705 link->last = req;
6706 return 0;
6707}
6708
6709static inline int io_submit_sqe(struct io_ring_ctx *ctx, struct io_kiocb *req,
a1ab7b35 6710 const struct io_uring_sqe *sqe)
282cdc86 6711 __must_hold(&ctx->uring_lock)
9e645e11 6712{
a1ab7b35 6713 struct io_submit_link *link = &ctx->submit_state.link;
ef4ff581 6714 int ret;
9e645e11 6715
a6b8cadc 6716 ret = io_init_req(ctx, req, sqe);
df3becde
PB
6717 if (unlikely(ret))
6718 return io_submit_fail_init(sqe, req, ret);
441b8a78 6719
be7053b7 6720 /* don't need @sqe from now on */
cef216fc 6721 trace_io_uring_submit_sqe(ctx, req, req->cqe.user_data, req->opcode,
236daeae
OL
6722 req->flags, true,
6723 ctx->flags & IORING_SETUP_SQPOLL);
a6b8cadc 6724
9e645e11
JA
6725 /*
6726 * If we already have a head request, queue this one for async
6727 * submittal once the head completes. If we don't have a head but
6728 * IOSQE_IO_LINK is set in the sqe, start a new head. This one will be
6729 * submitted sync once the chain is complete. If none of those
6730 * conditions are true (normal request), then just queue it.
6731 */
924a07e4 6732 if (unlikely(link->head)) {
df3becde
PB
6733 ret = io_req_prep_async(req);
6734 if (unlikely(ret))
6735 return io_submit_fail_init(sqe, req, ret);
6736
6737 trace_io_uring_link(ctx, req, link->head);
f2f87370 6738 link->last->link = req;
863e0560 6739 link->last = req;
32fe525b 6740
da1a08c5 6741 if (req->flags & IO_REQ_LINK_FLAGS)
f15a3431 6742 return 0;
df3becde
PB
6743 /* last request of the link, flush it */
6744 req = link->head;
f15a3431 6745 link->head = NULL;
924a07e4
PB
6746 if (req->flags & (REQ_F_FORCE_ASYNC | REQ_F_FAIL))
6747 goto fallback;
6748
6749 } else if (unlikely(req->flags & (IO_REQ_LINK_FLAGS |
6750 REQ_F_FORCE_ASYNC | REQ_F_FAIL))) {
6751 if (req->flags & IO_REQ_LINK_FLAGS) {
6752 link->head = req;
6753 link->last = req;
6754 } else {
6755fallback:
6756 io_queue_sqe_fallback(req);
6757 }
f15a3431 6758 return 0;
9e645e11 6759 }
2e6e1fde 6760
f15a3431 6761 io_queue_sqe(req);
1d4240cc 6762 return 0;
9e645e11
JA
6763}
6764
9a56a232
JA
6765/*
6766 * Batched submission is done, ensure local IO is flushed out.
6767 */
553deffd 6768static void io_submit_state_end(struct io_ring_ctx *ctx)
9a56a232 6769{
553deffd
PB
6770 struct io_submit_state *state = &ctx->submit_state;
6771
e126391c
PB
6772 if (unlikely(state->link.head))
6773 io_queue_sqe_fallback(state->link.head);
553deffd 6774 /* flush only after queuing links as they can generate completions */
c450178d 6775 io_submit_flush_completions(ctx);
27926b68
JA
6776 if (state->plug_started)
6777 blk_finish_plug(&state->plug);
9a56a232
JA
6778}
6779
6780/*
6781 * Start submission side cache.
6782 */
6783static void io_submit_state_start(struct io_submit_state *state,
ba88ff11 6784 unsigned int max_ios)
9a56a232 6785{
27926b68 6786 state->plug_started = false;
4b628aeb 6787 state->need_plug = max_ios > 2;
5ca7a8b3 6788 state->submit_nr = max_ios;
a1ab7b35
PB
6789 /* set only head, no need to init link_last in advance */
6790 state->link.head = NULL;
9a56a232
JA
6791}
6792
2b188cc1
JA
6793static void io_commit_sqring(struct io_ring_ctx *ctx)
6794{
75b28aff 6795 struct io_rings *rings = ctx->rings;
2b188cc1 6796
caf582c6
PB
6797 /*
6798 * Ensure any loads from the SQEs are done at this point,
6799 * since once we write the new head, the application could
6800 * write new data to them.
6801 */
6802 smp_store_release(&rings->sq.head, ctx->cached_sq_head);
2b188cc1
JA
6803}
6804
2b188cc1 6805/*
dd9ae8a0 6806 * Fetch an sqe, if one is available. Note this returns a pointer to memory
2b188cc1
JA
6807 * that is mapped by userspace. This means that care needs to be taken to
6808 * ensure that reads are stable, as we cannot rely on userspace always
6809 * being a good citizen. If members of the sqe are validated and then later
6810 * used, it's important that those reads are done through READ_ONCE() to
6811 * prevent a re-load down the line.
6812 */
709b302f 6813static const struct io_uring_sqe *io_get_sqe(struct io_ring_ctx *ctx)
2b188cc1 6814{
ea5ab3b5 6815 unsigned head, mask = ctx->sq_entries - 1;
17d3aeb3 6816 unsigned sq_idx = ctx->cached_sq_head++ & mask;
2b188cc1
JA
6817
6818 /*
6819 * The cached sq head (or cq tail) serves two purposes:
6820 *
6821 * 1) allows us to batch the cost of updating the user visible
6822 * head updates.
6823 * 2) allows the kernel side to track the head on its own, even
6824 * though the application is the one updating it.
6825 */
17d3aeb3 6826 head = READ_ONCE(ctx->sq_array[sq_idx]);
ebdeb7c0
JA
6827 if (likely(head < ctx->sq_entries)) {
6828 /* double index for 128-byte SQEs, twice as long */
6829 if (ctx->flags & IORING_SETUP_SQE128)
6830 head <<= 1;
709b302f 6831 return &ctx->sq_sqes[head];
ebdeb7c0 6832 }
2b188cc1
JA
6833
6834 /* drop invalid entries */
15641e42
PB
6835 ctx->cq_extra--;
6836 WRITE_ONCE(ctx->rings->sq_dropped,
6837 READ_ONCE(ctx->rings->sq_dropped) + 1);
709b302f
PB
6838 return NULL;
6839}
6840
0f212204 6841static int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr)
282cdc86 6842 __must_hold(&ctx->uring_lock)
6c271ce2 6843{
69629809 6844 unsigned int entries = io_sqring_entries(ctx);
8e6971a8
PB
6845 unsigned int left;
6846 int ret;
6c271ce2 6847
51d48dab 6848 if (unlikely(!entries))
69629809 6849 return 0;
ee7d46d9 6850 /* make sure SQ entry isn't read before tail */
8e6971a8
PB
6851 ret = left = min3(nr, ctx->sq_entries, entries);
6852 io_get_task_refs(left);
6853 io_submit_state_start(&ctx->submit_state, left);
6c271ce2 6854
69629809 6855 do {
3529d8c2 6856 const struct io_uring_sqe *sqe;
196be95c 6857 struct io_kiocb *req;
fb5ccc98 6858
8e6971a8 6859 if (unlikely(!io_alloc_req_refill(ctx)))
fb5ccc98 6860 break;
a33ae9ce 6861 req = io_alloc_req(ctx);
4fccfcbb
PB
6862 sqe = io_get_sqe(ctx);
6863 if (unlikely(!sqe)) {
fa05457a 6864 io_req_add_to_cache(req, ctx);
4fccfcbb
PB
6865 break;
6866 }
6c271ce2 6867
1cd15904
PB
6868 /*
6869 * Continue submitting even for sqe failure if the
6870 * ring was setup with IORING_SETUP_SUBMIT_ALL
6871 */
6872 if (unlikely(io_submit_sqe(ctx, req, sqe)) &&
6873 !(ctx->flags & IORING_SETUP_SUBMIT_ALL)) {
6874 left--;
6875 break;
bcbb7bf6 6876 }
1cd15904 6877 } while (--left);
9466f437 6878
8e6971a8
PB
6879 if (unlikely(left)) {
6880 ret -= left;
6881 /* try again if it submitted nothing and can't allocate a req */
6882 if (!ret && io_req_cache_empty(ctx))
6883 ret = -EAGAIN;
6884 current->io_uring->cached_refs += left;
9466f437 6885 }
6c271ce2 6886
553deffd 6887 io_submit_state_end(ctx);
ae9428ca
PB
6888 /* Commit SQ ring head once we've consumed and submitted all SQEs */
6889 io_commit_sqring(ctx);
8e6971a8 6890 return ret;
6c271ce2
JA
6891}
6892
e4b6d902
PB
6893static inline bool io_sqd_events_pending(struct io_sq_data *sqd)
6894{
6895 return READ_ONCE(sqd->state);
6896}
6897
08369246 6898static int __io_sq_thread(struct io_ring_ctx *ctx, bool cap_entries)
6c271ce2 6899{
c8d1ba58 6900 unsigned int to_submit;
bdcd3eab 6901 int ret = 0;
6c271ce2 6902
c8d1ba58 6903 to_submit = io_sqring_entries(ctx);
e95eee2d 6904 /* if we're handling multiple rings, cap submit size for fairness */
4ce8ad95
OL
6905 if (cap_entries && to_submit > IORING_SQPOLL_CAP_ENTRIES_VALUE)
6906 to_submit = IORING_SQPOLL_CAP_ENTRIES_VALUE;
e95eee2d 6907
5eef4e87 6908 if (!wq_list_empty(&ctx->iopoll_list) || to_submit) {
948e1947
PB
6909 const struct cred *creds = NULL;
6910
6911 if (ctx->sq_creds != current_cred())
6912 creds = override_creds(ctx->sq_creds);
a4c0b3de 6913
c8d1ba58 6914 mutex_lock(&ctx->uring_lock);
5eef4e87 6915 if (!wq_list_empty(&ctx->iopoll_list))
5ba3c874 6916 io_do_iopoll(ctx, true);
906a3c6f 6917
3b763ba1
PB
6918 /*
6919 * Don't submit if refs are dying, good for io_uring_register(),
6920 * but also it is relied upon by io_ring_exit_work()
6921 */
0298ef96
PB
6922 if (to_submit && likely(!percpu_ref_is_dying(&ctx->refs)) &&
6923 !(ctx->flags & IORING_SETUP_R_DISABLED))
08369246 6924 ret = io_submit_sqes(ctx, to_submit);
c8d1ba58 6925 mutex_unlock(&ctx->uring_lock);
cb318216 6926
acfb381d
PB
6927 if (to_submit && wq_has_sleeper(&ctx->sqo_sq_wait))
6928 wake_up(&ctx->sqo_sq_wait);
948e1947
PB
6929 if (creds)
6930 revert_creds(creds);
acfb381d 6931 }
6c271ce2 6932
08369246
XW
6933 return ret;
6934}
6c271ce2 6935
c072481d 6936static __cold void io_sqd_update_thread_idle(struct io_sq_data *sqd)
08369246
XW
6937{
6938 struct io_ring_ctx *ctx;
6939 unsigned sq_thread_idle = 0;
6c271ce2 6940
c9dca27d
PB
6941 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list)
6942 sq_thread_idle = max(sq_thread_idle, ctx->sq_thread_idle);
08369246 6943 sqd->sq_thread_idle = sq_thread_idle;
c8d1ba58 6944}
6c271ce2 6945
e4b6d902
PB
6946static bool io_sqd_handle_event(struct io_sq_data *sqd)
6947{
6948 bool did_sig = false;
6949 struct ksignal ksig;
6950
6951 if (test_bit(IO_SQ_THREAD_SHOULD_PARK, &sqd->state) ||
6952 signal_pending(current)) {
6953 mutex_unlock(&sqd->lock);
6954 if (signal_pending(current))
6955 did_sig = get_signal(&ksig);
6956 cond_resched();
6957 mutex_lock(&sqd->lock);
6958 }
e4b6d902
PB
6959 return did_sig || test_bit(IO_SQ_THREAD_SHOULD_STOP, &sqd->state);
6960}
6961
c8d1ba58
JA
6962static int io_sq_thread(void *data)
6963{
69fb2131
JA
6964 struct io_sq_data *sqd = data;
6965 struct io_ring_ctx *ctx;
a0d9205f 6966 unsigned long timeout = 0;
37d1e2e3 6967 char buf[TASK_COMM_LEN];
08369246 6968 DEFINE_WAIT(wait);
6c271ce2 6969
696ee88a 6970 snprintf(buf, sizeof(buf), "iou-sqp-%d", sqd->task_pid);
37d1e2e3 6971 set_task_comm(current, buf);
37d1e2e3
JA
6972
6973 if (sqd->sq_cpu != -1)
6974 set_cpus_allowed_ptr(current, cpumask_of(sqd->sq_cpu));
6975 else
6976 set_cpus_allowed_ptr(current, cpu_online_mask);
6977 current->flags |= PF_NO_SETAFFINITY;
6978
5bd2182d
PM
6979 audit_alloc_kernel(current);
6980
09a6f4ef 6981 mutex_lock(&sqd->lock);
e4b6d902 6982 while (1) {
1a924a80 6983 bool cap_entries, sqt_spin = false;
c1edbf5f 6984
e4b6d902
PB
6985 if (io_sqd_events_pending(sqd) || signal_pending(current)) {
6986 if (io_sqd_handle_event(sqd))
c7d95613 6987 break;
08369246
XW
6988 timeout = jiffies + sqd->sq_thread_idle;
6989 }
e4b6d902 6990
e95eee2d 6991 cap_entries = !list_is_singular(&sqd->ctx_list);
69fb2131 6992 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list) {
948e1947 6993 int ret = __io_sq_thread(ctx, cap_entries);
7c30f36a 6994
5eef4e87 6995 if (!sqt_spin && (ret > 0 || !wq_list_empty(&ctx->iopoll_list)))
08369246 6996 sqt_spin = true;
69fb2131 6997 }
dd432ea5
PB
6998 if (io_run_task_work())
6999 sqt_spin = true;
6c271ce2 7000
08369246 7001 if (sqt_spin || !time_after(jiffies, timeout)) {
c8d1ba58 7002 cond_resched();
08369246
XW
7003 if (sqt_spin)
7004 timeout = jiffies + sqd->sq_thread_idle;
7005 continue;
7006 }
7007
08369246 7008 prepare_to_wait(&sqd->wait, &wait, TASK_INTERRUPTIBLE);
7f62d40d 7009 if (!io_sqd_events_pending(sqd) && !task_work_pending(current)) {
1a924a80
PB
7010 bool needs_sched = true;
7011
724cb4f9 7012 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list) {
3a4b89a2
JA
7013 atomic_or(IORING_SQ_NEED_WAKEUP,
7014 &ctx->rings->sq_flags);
724cb4f9 7015 if ((ctx->flags & IORING_SETUP_IOPOLL) &&
5eef4e87 7016 !wq_list_empty(&ctx->iopoll_list)) {
724cb4f9
HX
7017 needs_sched = false;
7018 break;
7019 }
649bb75d
AK
7020
7021 /*
7022 * Ensure the store of the wakeup flag is not
7023 * reordered with the load of the SQ tail
7024 */
f2e030dd 7025 smp_mb__after_atomic();
649bb75d 7026
724cb4f9
HX
7027 if (io_sqring_entries(ctx)) {
7028 needs_sched = false;
7029 break;
7030 }
7031 }
7032
7033 if (needs_sched) {
7034 mutex_unlock(&sqd->lock);
7035 schedule();
7036 mutex_lock(&sqd->lock);
7037 }
69fb2131 7038 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list)
3a4b89a2
JA
7039 atomic_andnot(IORING_SQ_NEED_WAKEUP,
7040 &ctx->rings->sq_flags);
6c271ce2 7041 }
08369246
XW
7042
7043 finish_wait(&sqd->wait, &wait);
7044 timeout = jiffies + sqd->sq_thread_idle;
6c271ce2 7045 }
28cea78a 7046
78cc687b 7047 io_uring_cancel_generic(true, sqd);
37d1e2e3 7048 sqd->thread = NULL;
05962f95 7049 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list)
3a4b89a2 7050 atomic_or(IORING_SQ_NEED_WAKEUP, &ctx->rings->sq_flags);
521d6a73 7051 io_run_task_work();
734551df
PB
7052 mutex_unlock(&sqd->lock);
7053
5bd2182d
PM
7054 audit_free(current);
7055
37d1e2e3
JA
7056 complete(&sqd->exited);
7057 do_exit(0);
6c271ce2
JA
7058}
7059
bda52162
JA
7060struct io_wait_queue {
7061 struct wait_queue_entry wq;
7062 struct io_ring_ctx *ctx;
5fd46178 7063 unsigned cq_tail;
bda52162
JA
7064 unsigned nr_timeouts;
7065};
7066
6c503150 7067static inline bool io_should_wake(struct io_wait_queue *iowq)
bda52162
JA
7068{
7069 struct io_ring_ctx *ctx = iowq->ctx;
5fd46178 7070 int dist = ctx->cached_cq_tail - (int) iowq->cq_tail;
bda52162
JA
7071
7072 /*
d195a66e 7073 * Wake up if we have enough events, or if a timeout occurred since we
bda52162
JA
7074 * started waiting. For timeouts, we always want to return to userspace,
7075 * regardless of event count.
7076 */
5fd46178 7077 return dist >= 0 || atomic_read(&ctx->cq_timeouts) != iowq->nr_timeouts;
bda52162
JA
7078}
7079
7080static int io_wake_function(struct wait_queue_entry *curr, unsigned int mode,
7081 int wake_flags, void *key)
7082{
7083 struct io_wait_queue *iowq = container_of(curr, struct io_wait_queue,
7084 wq);
7085
6c503150
PB
7086 /*
7087 * Cannot safely flush overflowed CQEs from here, ensure we wake up
7088 * the task, and the next invocation will do it.
7089 */
10988a0a
DY
7090 if (io_should_wake(iowq) ||
7091 test_bit(IO_CHECK_CQ_OVERFLOW_BIT, &iowq->ctx->check_cq))
6c503150
PB
7092 return autoremove_wake_function(curr, mode, wake_flags, key);
7093 return -1;
bda52162
JA
7094}
7095
af9c1a44
JA
7096static int io_run_task_work_sig(void)
7097{
7098 if (io_run_task_work())
7099 return 1;
0b8cfa97 7100 if (test_thread_flag(TIF_NOTIFY_SIGNAL))
792ee0f6 7101 return -ERESTARTSYS;
c5020bc8
OL
7102 if (task_sigpending(current))
7103 return -EINTR;
7104 return 0;
af9c1a44
JA
7105}
7106
eeb60b9a
PB
7107/* when returns >0, the caller should retry */
7108static inline int io_cqring_wait_schedule(struct io_ring_ctx *ctx,
7109 struct io_wait_queue *iowq,
22833966 7110 ktime_t timeout)
eeb60b9a
PB
7111{
7112 int ret;
155bc950 7113 unsigned long check_cq;
eeb60b9a
PB
7114
7115 /* make sure we run task_work before checking for signals */
7116 ret = io_run_task_work_sig();
7117 if (ret || io_should_wake(iowq))
7118 return ret;
155bc950 7119 check_cq = READ_ONCE(ctx->check_cq);
eeb60b9a 7120 /* let the caller flush overflows, retry */
155bc950 7121 if (check_cq & BIT(IO_CHECK_CQ_OVERFLOW_BIT))
eeb60b9a 7122 return 1;
155bc950
DY
7123 if (unlikely(check_cq & BIT(IO_CHECK_CQ_DROPPED_BIT)))
7124 return -EBADR;
22833966
JA
7125 if (!schedule_hrtimeout(&timeout, HRTIMER_MODE_ABS))
7126 return -ETIME;
7127 return 1;
eeb60b9a
PB
7128}
7129
2b188cc1
JA
7130/*
7131 * Wait until events become available, if we don't already have some. The
7132 * application must reap them itself, as they reside on the shared cq ring.
7133 */
7134static int io_cqring_wait(struct io_ring_ctx *ctx, int min_events,
c73ebb68
HX
7135 const sigset_t __user *sig, size_t sigsz,
7136 struct __kernel_timespec __user *uts)
2b188cc1 7137{
90291099 7138 struct io_wait_queue iowq;
75b28aff 7139 struct io_rings *rings = ctx->rings;
22833966 7140 ktime_t timeout = KTIME_MAX;
c1d5a224 7141 int ret;
2b188cc1 7142
b41e9852 7143 do {
90f67366 7144 io_cqring_overflow_flush(ctx);
6c503150 7145 if (io_cqring_events(ctx) >= min_events)
b41e9852 7146 return 0;
4c6e277c 7147 if (!io_run_task_work())
b41e9852 7148 break;
b41e9852 7149 } while (1);
2b188cc1
JA
7150
7151 if (sig) {
9e75ad5d
AB
7152#ifdef CONFIG_COMPAT
7153 if (in_compat_syscall())
7154 ret = set_compat_user_sigmask((const compat_sigset_t __user *)sig,
b772434b 7155 sigsz);
9e75ad5d
AB
7156 else
7157#endif
b772434b 7158 ret = set_user_sigmask(sig, sigsz);
9e75ad5d 7159
2b188cc1
JA
7160 if (ret)
7161 return ret;
7162 }
7163
950e79dd
OL
7164 if (uts) {
7165 struct timespec64 ts;
7166
7167 if (get_timespec64(&ts, uts))
7168 return -EFAULT;
7169 timeout = ktime_add_ns(timespec64_to_ktime(ts), ktime_get_ns());
7170 }
7171
90291099
PB
7172 init_waitqueue_func_entry(&iowq.wq, io_wake_function);
7173 iowq.wq.private = current;
7174 INIT_LIST_HEAD(&iowq.wq.entry);
7175 iowq.ctx = ctx;
bda52162 7176 iowq.nr_timeouts = atomic_read(&ctx->cq_timeouts);
5fd46178 7177 iowq.cq_tail = READ_ONCE(ctx->rings->cq.head) + min_events;
90291099 7178
c826bd7a 7179 trace_io_uring_cqring_wait(ctx, min_events);
bda52162 7180 do {
ca0a2651 7181 /* if we can't even flush overflow, don't wait for more */
90f67366 7182 if (!io_cqring_overflow_flush(ctx)) {
ca0a2651
JA
7183 ret = -EBUSY;
7184 break;
7185 }
311997b3 7186 prepare_to_wait_exclusive(&ctx->cq_wait, &iowq.wq,
bda52162 7187 TASK_INTERRUPTIBLE);
22833966 7188 ret = io_cqring_wait_schedule(ctx, &iowq, timeout);
ca0a2651 7189 cond_resched();
eeb60b9a 7190 } while (ret > 0);
bda52162 7191
b4f20bb4 7192 finish_wait(&ctx->cq_wait, &iowq.wq);
b7db41c9 7193 restore_saved_sigmask_unless(ret == -EINTR);
2b188cc1 7194
75b28aff 7195 return READ_ONCE(rings->cq.head) == READ_ONCE(rings->cq.tail) ? ret : 0;
2b188cc1
JA
7196}
7197
9123c8ff 7198static void io_free_page_table(void **table, size_t size)
05f3fb3c 7199{
9123c8ff 7200 unsigned i, nr_tables = DIV_ROUND_UP(size, PAGE_SIZE);
05f3fb3c 7201
846a4ef2 7202 for (i = 0; i < nr_tables; i++)
9123c8ff
PB
7203 kfree(table[i]);
7204 kfree(table);
7205}
7206
c072481d 7207static __cold void **io_alloc_page_table(size_t size)
9123c8ff
PB
7208{
7209 unsigned i, nr_tables = DIV_ROUND_UP(size, PAGE_SIZE);
7210 size_t init_size = size;
7211 void **table;
7212
0bea96f5 7213 table = kcalloc(nr_tables, sizeof(*table), GFP_KERNEL_ACCOUNT);
9123c8ff
PB
7214 if (!table)
7215 return NULL;
7216
7217 for (i = 0; i < nr_tables; i++) {
27f6b318 7218 unsigned int this_size = min_t(size_t, size, PAGE_SIZE);
9123c8ff 7219
0bea96f5 7220 table[i] = kzalloc(this_size, GFP_KERNEL_ACCOUNT);
9123c8ff
PB
7221 if (!table[i]) {
7222 io_free_page_table(table, init_size);
7223 return NULL;
7224 }
7225 size -= this_size;
7226 }
7227 return table;
05f3fb3c
JA
7228}
7229
28a9fe25 7230static void io_rsrc_node_destroy(struct io_rsrc_node *ref_node)
1642b445 7231{
28a9fe25
PB
7232 percpu_ref_exit(&ref_node->refs);
7233 kfree(ref_node);
1642b445
PB
7234}
7235
c072481d 7236static __cold void io_rsrc_node_ref_zero(struct percpu_ref *ref)
b9bd2bea
PB
7237{
7238 struct io_rsrc_node *node = container_of(ref, struct io_rsrc_node, refs);
7239 struct io_ring_ctx *ctx = node->rsrc_data->ctx;
7240 unsigned long flags;
7241 bool first_add = false;
b36a2050 7242 unsigned long delay = HZ;
b9bd2bea
PB
7243
7244 spin_lock_irqsave(&ctx->rsrc_ref_lock, flags);
7245 node->done = true;
7246
b36a2050
DY
7247 /* if we are mid-quiesce then do not delay */
7248 if (node->rsrc_data->quiesce)
7249 delay = 0;
7250
b9bd2bea
PB
7251 while (!list_empty(&ctx->rsrc_ref_list)) {
7252 node = list_first_entry(&ctx->rsrc_ref_list,
7253 struct io_rsrc_node, node);
7254 /* recycle ref nodes in order */
7255 if (!node->done)
7256 break;
7257 list_del(&node->node);
7258 first_add |= llist_add(&node->llist, &ctx->rsrc_put_llist);
7259 }
7260 spin_unlock_irqrestore(&ctx->rsrc_ref_lock, flags);
7261
7262 if (first_add)
b36a2050 7263 mod_delayed_work(system_wq, &ctx->rsrc_put_work, delay);
b9bd2bea
PB
7264}
7265
f6133fbd 7266static struct io_rsrc_node *io_rsrc_node_alloc(void)
b9bd2bea
PB
7267{
7268 struct io_rsrc_node *ref_node;
7269
7270 ref_node = kzalloc(sizeof(*ref_node), GFP_KERNEL);
7271 if (!ref_node)
7272 return NULL;
7273
7274 if (percpu_ref_init(&ref_node->refs, io_rsrc_node_ref_zero,
7275 0, GFP_KERNEL)) {
7276 kfree(ref_node);
7277 return NULL;
7278 }
7279 INIT_LIST_HEAD(&ref_node->node);
7280 INIT_LIST_HEAD(&ref_node->rsrc_list);
7281 ref_node->done = false;
7282 return ref_node;
7283}
7284
cd40cae2
JA
7285void io_rsrc_node_switch(struct io_ring_ctx *ctx,
7286 struct io_rsrc_data *data_to_kill)
ab409402 7287 __must_hold(&ctx->uring_lock)
6b06314c 7288{
a7f0ed5a
PB
7289 WARN_ON_ONCE(!ctx->rsrc_backup_node);
7290 WARN_ON_ONCE(data_to_kill && !ctx->rsrc_node);
6b06314c 7291
ab409402
PB
7292 io_rsrc_refs_drop(ctx);
7293
a7f0ed5a
PB
7294 if (data_to_kill) {
7295 struct io_rsrc_node *rsrc_node = ctx->rsrc_node;
82fbcfa9 7296
a7f0ed5a 7297 rsrc_node->rsrc_data = data_to_kill;
4956b9ea 7298 spin_lock_irq(&ctx->rsrc_ref_lock);
a7f0ed5a 7299 list_add_tail(&rsrc_node->node, &ctx->rsrc_ref_list);
4956b9ea 7300 spin_unlock_irq(&ctx->rsrc_ref_lock);
82fbcfa9 7301
3e942498 7302 atomic_inc(&data_to_kill->refs);
a7f0ed5a
PB
7303 percpu_ref_kill(&rsrc_node->refs);
7304 ctx->rsrc_node = NULL;
7305 }
6b06314c 7306
a7f0ed5a
PB
7307 if (!ctx->rsrc_node) {
7308 ctx->rsrc_node = ctx->rsrc_backup_node;
7309 ctx->rsrc_backup_node = NULL;
7310 }
8bad28d8
HX
7311}
7312
cd40cae2 7313int io_rsrc_node_switch_start(struct io_ring_ctx *ctx)
8dd03afe
PB
7314{
7315 if (ctx->rsrc_backup_node)
7316 return 0;
f6133fbd 7317 ctx->rsrc_backup_node = io_rsrc_node_alloc();
8dd03afe 7318 return ctx->rsrc_backup_node ? 0 : -ENOMEM;
8bad28d8
HX
7319}
7320
c072481d
PB
7321static __cold int io_rsrc_ref_quiesce(struct io_rsrc_data *data,
7322 struct io_ring_ctx *ctx)
8bad28d8
HX
7323{
7324 int ret;
05589553 7325
215c3902 7326 /* As we may drop ->uring_lock, other task may have started quiesce */
8bad28d8
HX
7327 if (data->quiesce)
7328 return -ENXIO;
05589553 7329
8bad28d8 7330 data->quiesce = true;
1ffc5422 7331 do {
a7f0ed5a 7332 ret = io_rsrc_node_switch_start(ctx);
8dd03afe 7333 if (ret)
f2303b1f 7334 break;
a7f0ed5a 7335 io_rsrc_node_switch(ctx, data);
f2303b1f 7336
3e942498
PB
7337 /* kill initial ref, already quiesced if zero */
7338 if (atomic_dec_and_test(&data->refs))
7339 break;
c018db4a 7340 mutex_unlock(&ctx->uring_lock);
8bad28d8 7341 flush_delayed_work(&ctx->rsrc_put_work);
1ffc5422 7342 ret = wait_for_completion_interruptible(&data->done);
c018db4a
JA
7343 if (!ret) {
7344 mutex_lock(&ctx->uring_lock);
80912cef
DY
7345 if (atomic_read(&data->refs) > 0) {
7346 /*
7347 * it has been revived by another thread while
7348 * we were unlocked
7349 */
7350 mutex_unlock(&ctx->uring_lock);
7351 } else {
7352 break;
7353 }
c018db4a 7354 }
8bad28d8 7355
3e942498
PB
7356 atomic_inc(&data->refs);
7357 /* wait for all works potentially completing data->done */
7358 flush_delayed_work(&ctx->rsrc_put_work);
cb5e1b81 7359 reinit_completion(&data->done);
8dd03afe 7360
1ffc5422 7361 ret = io_run_task_work_sig();
8bad28d8 7362 mutex_lock(&ctx->uring_lock);
f2303b1f 7363 } while (ret >= 0);
8bad28d8 7364 data->quiesce = false;
05f3fb3c 7365
8bad28d8 7366 return ret;
d7954b2b
BM
7367}
7368
2d091d62
PB
7369static u64 *io_get_tag_slot(struct io_rsrc_data *data, unsigned int idx)
7370{
7371 unsigned int off = idx & IO_RSRC_TAG_TABLE_MASK;
7372 unsigned int table_idx = idx >> IO_RSRC_TAG_TABLE_SHIFT;
7373
7374 return &data->tags[table_idx][off];
7375}
7376
44b31f2f 7377static void io_rsrc_data_free(struct io_rsrc_data *data)
1ad555c6 7378{
2d091d62
PB
7379 size_t size = data->nr * sizeof(data->tags[0][0]);
7380
7381 if (data->tags)
7382 io_free_page_table((void **)data->tags, size);
44b31f2f
PB
7383 kfree(data);
7384}
7385
c072481d
PB
7386static __cold int io_rsrc_data_alloc(struct io_ring_ctx *ctx, rsrc_put_fn *do_put,
7387 u64 __user *utags, unsigned nr,
7388 struct io_rsrc_data **pdata)
1ad555c6 7389{
b895c9a6 7390 struct io_rsrc_data *data;
2d091d62 7391 int ret = -ENOMEM;
d878c816 7392 unsigned i;
1ad555c6
BM
7393
7394 data = kzalloc(sizeof(*data), GFP_KERNEL);
7395 if (!data)
d878c816 7396 return -ENOMEM;
2d091d62 7397 data->tags = (u64 **)io_alloc_page_table(nr * sizeof(data->tags[0][0]));
b60c8dce 7398 if (!data->tags) {
1ad555c6 7399 kfree(data);
d878c816
PB
7400 return -ENOMEM;
7401 }
2d091d62
PB
7402
7403 data->nr = nr;
7404 data->ctx = ctx;
7405 data->do_put = do_put;
d878c816 7406 if (utags) {
2d091d62 7407 ret = -EFAULT;
d878c816 7408 for (i = 0; i < nr; i++) {
fdd1dc31
CIK
7409 u64 *tag_slot = io_get_tag_slot(data, i);
7410
7411 if (copy_from_user(tag_slot, &utags[i],
7412 sizeof(*tag_slot)))
2d091d62 7413 goto fail;
d878c816 7414 }
1ad555c6 7415 }
b60c8dce 7416
3e942498 7417 atomic_set(&data->refs, 1);
1ad555c6 7418 init_completion(&data->done);
d878c816
PB
7419 *pdata = data;
7420 return 0;
2d091d62
PB
7421fail:
7422 io_rsrc_data_free(data);
7423 return ret;
1ad555c6
BM
7424}
7425
fff4db76 7426static void __io_sqe_files_unregister(struct io_ring_ctx *ctx)
1ad555c6 7427{
69cc1b6f 7428#if !defined(IO_URING_SCM_ALL)
1f59bc0f
PB
7429 int i;
7430
7431 for (i = 0; i < ctx->nr_user_files; i++) {
7432 struct file *file = io_file_from_index(ctx, i);
7433
5e45690a
JA
7434 if (!file)
7435 continue;
7436 if (io_fixed_file_slot(&ctx->file_table, i)->file_ptr & FFS_SCM)
1f59bc0f 7437 continue;
d78bd8ad 7438 io_file_bitmap_clear(&ctx->file_table, i);
1f59bc0f
PB
7439 fput(file);
7440 }
5e45690a 7441#endif
1f59bc0f 7442
fff4db76
PB
7443#if defined(CONFIG_UNIX)
7444 if (ctx->ring_sock) {
7445 struct sock *sock = ctx->ring_sock->sk;
7446 struct sk_buff *skb;
7447
7448 while ((skb = skb_dequeue(&sock->sk_receive_queue)) != NULL)
7449 kfree_skb(skb);
7450 }
fff4db76 7451#endif
042b0d85 7452 io_free_file_tables(&ctx->file_table);
44b31f2f 7453 io_rsrc_data_free(ctx->file_data);
fff4db76
PB
7454 ctx->file_data = NULL;
7455 ctx->nr_user_files = 0;
1ad555c6
BM
7456}
7457
d7954b2b
BM
7458static int io_sqe_files_unregister(struct io_ring_ctx *ctx)
7459{
b0380bf6 7460 unsigned nr = ctx->nr_user_files;
d7954b2b
BM
7461 int ret;
7462
08480400 7463 if (!ctx->file_data)
d7954b2b 7464 return -ENXIO;
b0380bf6
PB
7465
7466 /*
7467 * Quiesce may unlock ->uring_lock, and while it's not held
7468 * prevent new requests using the table.
7469 */
7470 ctx->nr_user_files = 0;
08480400 7471 ret = io_rsrc_ref_quiesce(ctx->file_data, ctx);
b0380bf6 7472 ctx->nr_user_files = nr;
08480400
PB
7473 if (!ret)
7474 __io_sqe_files_unregister(ctx);
7475 return ret;
6b06314c
JA
7476}
7477
37d1e2e3 7478static void io_sq_thread_unpark(struct io_sq_data *sqd)
09a6f4ef 7479 __releases(&sqd->lock)
37d1e2e3 7480{
521d6a73
PB
7481 WARN_ON_ONCE(sqd->thread == current);
7482
9e138a48
PB
7483 /*
7484 * Do the dance but not conditional clear_bit() because it'd race with
7485 * other threads incrementing park_pending and setting the bit.
7486 */
37d1e2e3 7487 clear_bit(IO_SQ_THREAD_SHOULD_PARK, &sqd->state);
9e138a48
PB
7488 if (atomic_dec_return(&sqd->park_pending))
7489 set_bit(IO_SQ_THREAD_SHOULD_PARK, &sqd->state);
09a6f4ef 7490 mutex_unlock(&sqd->lock);
37d1e2e3
JA
7491}
7492
86e0d676 7493static void io_sq_thread_park(struct io_sq_data *sqd)
09a6f4ef 7494 __acquires(&sqd->lock)
37d1e2e3 7495{
521d6a73
PB
7496 WARN_ON_ONCE(sqd->thread == current);
7497
9e138a48 7498 atomic_inc(&sqd->park_pending);
86e0d676 7499 set_bit(IO_SQ_THREAD_SHOULD_PARK, &sqd->state);
09a6f4ef 7500 mutex_lock(&sqd->lock);
05962f95 7501 if (sqd->thread)
86e0d676 7502 wake_up_process(sqd->thread);
37d1e2e3
JA
7503}
7504
7505static void io_sq_thread_stop(struct io_sq_data *sqd)
7506{
521d6a73 7507 WARN_ON_ONCE(sqd->thread == current);
88885f66 7508 WARN_ON_ONCE(test_bit(IO_SQ_THREAD_SHOULD_STOP, &sqd->state));
521d6a73 7509
05962f95 7510 set_bit(IO_SQ_THREAD_SHOULD_STOP, &sqd->state);
88885f66 7511 mutex_lock(&sqd->lock);
e8f98f24
JA
7512 if (sqd->thread)
7513 wake_up_process(sqd->thread);
09a6f4ef 7514 mutex_unlock(&sqd->lock);
05962f95 7515 wait_for_completion(&sqd->exited);
37d1e2e3
JA
7516}
7517
534ca6d6 7518static void io_put_sq_data(struct io_sq_data *sqd)
6c271ce2 7519{
534ca6d6 7520 if (refcount_dec_and_test(&sqd->refs)) {
9e138a48
PB
7521 WARN_ON_ONCE(atomic_read(&sqd->park_pending));
7522
37d1e2e3
JA
7523 io_sq_thread_stop(sqd);
7524 kfree(sqd);
7525 }
7526}
7527
7528static void io_sq_thread_finish(struct io_ring_ctx *ctx)
7529{
7530 struct io_sq_data *sqd = ctx->sq_data;
7531
7532 if (sqd) {
05962f95 7533 io_sq_thread_park(sqd);
521d6a73 7534 list_del_init(&ctx->sqd_list);
37d1e2e3 7535 io_sqd_update_thread_idle(sqd);
05962f95 7536 io_sq_thread_unpark(sqd);
37d1e2e3
JA
7537
7538 io_put_sq_data(sqd);
7539 ctx->sq_data = NULL;
534ca6d6
JA
7540 }
7541}
7542
aa06165d
JA
7543static struct io_sq_data *io_attach_sq_data(struct io_uring_params *p)
7544{
7545 struct io_ring_ctx *ctx_attach;
7546 struct io_sq_data *sqd;
7547 struct fd f;
7548
7549 f = fdget(p->wq_fd);
7550 if (!f.file)
7551 return ERR_PTR(-ENXIO);
7552 if (f.file->f_op != &io_uring_fops) {
7553 fdput(f);
7554 return ERR_PTR(-EINVAL);
7555 }
7556
7557 ctx_attach = f.file->private_data;
7558 sqd = ctx_attach->sq_data;
7559 if (!sqd) {
7560 fdput(f);
7561 return ERR_PTR(-EINVAL);
7562 }
5c2469e0
JA
7563 if (sqd->task_tgid != current->tgid) {
7564 fdput(f);
7565 return ERR_PTR(-EPERM);
7566 }
aa06165d
JA
7567
7568 refcount_inc(&sqd->refs);
7569 fdput(f);
7570 return sqd;
7571}
7572
26984fbf
PB
7573static struct io_sq_data *io_get_sq_data(struct io_uring_params *p,
7574 bool *attached)
534ca6d6
JA
7575{
7576 struct io_sq_data *sqd;
7577
26984fbf 7578 *attached = false;
5c2469e0
JA
7579 if (p->flags & IORING_SETUP_ATTACH_WQ) {
7580 sqd = io_attach_sq_data(p);
26984fbf
PB
7581 if (!IS_ERR(sqd)) {
7582 *attached = true;
5c2469e0 7583 return sqd;
26984fbf 7584 }
5c2469e0
JA
7585 /* fall through for EPERM case, setup new sqd/task */
7586 if (PTR_ERR(sqd) != -EPERM)
7587 return sqd;
7588 }
aa06165d 7589
534ca6d6
JA
7590 sqd = kzalloc(sizeof(*sqd), GFP_KERNEL);
7591 if (!sqd)
7592 return ERR_PTR(-ENOMEM);
7593
9e138a48 7594 atomic_set(&sqd->park_pending, 0);
534ca6d6 7595 refcount_set(&sqd->refs, 1);
69fb2131 7596 INIT_LIST_HEAD(&sqd->ctx_list);
09a6f4ef 7597 mutex_init(&sqd->lock);
534ca6d6 7598 init_waitqueue_head(&sqd->wait);
37d1e2e3 7599 init_completion(&sqd->exited);
534ca6d6
JA
7600 return sqd;
7601}
7602
6b06314c
JA
7603/*
7604 * Ensure the UNIX gc is aware of our file set, so we are certain that
7605 * the io_uring can be safely unregistered on process exit, even if we have
1f59bc0f
PB
7606 * loops in the file referencing. We account only files that can hold other
7607 * files because otherwise they can't form a loop and so are not interesting
7608 * for GC.
6b06314c 7609 */
8b3171bd 7610static int io_scm_file_account(struct io_ring_ctx *ctx, struct file *file)
6b06314c 7611{
73b25d3b 7612#if defined(CONFIG_UNIX)
6b06314c 7613 struct sock *sk = ctx->ring_sock->sk;
73b25d3b 7614 struct sk_buff_head *head = &sk->sk_receive_queue;
6b06314c
JA
7615 struct scm_fp_list *fpl;
7616 struct sk_buff *skb;
6b06314c 7617
73b25d3b
PB
7618 if (likely(!io_file_need_scm(file)))
7619 return 0;
6b06314c 7620
73b25d3b
PB
7621 /*
7622 * See if we can merge this file into an existing skb SCM_RIGHTS
7623 * file set. If there's no room, fall back to allocating a new skb
7624 * and filling it in.
7625 */
7626 spin_lock_irq(&head->lock);
7627 skb = skb_peek(head);
7628 if (skb && UNIXCB(skb).fp->count < SCM_MAX_FD)
7629 __skb_unlink(skb, head);
7630 else
7631 skb = NULL;
7632 spin_unlock_irq(&head->lock);
6b06314c 7633
6b06314c 7634 if (!skb) {
73b25d3b
PB
7635 fpl = kzalloc(sizeof(*fpl), GFP_KERNEL);
7636 if (!fpl)
7637 return -ENOMEM;
6b06314c 7638
73b25d3b
PB
7639 skb = alloc_skb(0, GFP_KERNEL);
7640 if (!skb) {
7641 kfree(fpl);
7642 return -ENOMEM;
7643 }
6b06314c 7644
73b25d3b
PB
7645 fpl->user = get_uid(current_user());
7646 fpl->max = SCM_MAX_FD;
7647 fpl->count = 0;
65e19f54 7648
73b25d3b
PB
7649 UNIXCB(skb).fp = fpl;
7650 skb->sk = sk;
7651 skb->destructor = unix_destruct_scm;
7652 refcount_add(skb->truesize, &sk->sk_wmem_alloc);
6b06314c
JA
7653 }
7654
73b25d3b
PB
7655 fpl = UNIXCB(skb).fp;
7656 fpl->fp[fpl->count++] = get_file(file);
7657 unix_inflight(fpl->user, file);
7658 skb_queue_head(head, skb);
dca58c6a 7659 fput(file);
73b25d3b 7660#endif
6b06314c
JA
7661 return 0;
7662}
6b06314c 7663
47e90392 7664static void io_rsrc_file_put(struct io_ring_ctx *ctx, struct io_rsrc_put *prsrc)
05f3fb3c 7665{
50238531 7666 struct file *file = prsrc->file;
05f3fb3c
JA
7667#if defined(CONFIG_UNIX)
7668 struct sock *sock = ctx->ring_sock->sk;
7669 struct sk_buff_head list, *head = &sock->sk_receive_queue;
7670 struct sk_buff *skb;
7671 int i;
7672
1f59bc0f
PB
7673 if (!io_file_need_scm(file)) {
7674 fput(file);
7675 return;
7676 }
7677
05f3fb3c
JA
7678 __skb_queue_head_init(&list);
7679
7680 /*
7681 * Find the skb that holds this file in its SCM_RIGHTS. When found,
7682 * remove this entry and rearrange the file array.
7683 */
7684 skb = skb_dequeue(head);
7685 while (skb) {
7686 struct scm_fp_list *fp;
7687
7688 fp = UNIXCB(skb).fp;
7689 for (i = 0; i < fp->count; i++) {
7690 int left;
7691
7692 if (fp->fp[i] != file)
7693 continue;
7694
7695 unix_notinflight(fp->user, fp->fp[i]);
7696 left = fp->count - 1 - i;
7697 if (left) {
7698 memmove(&fp->fp[i], &fp->fp[i + 1],
7699 left * sizeof(struct file *));
7700 }
7701 fp->count--;
7702 if (!fp->count) {
7703 kfree_skb(skb);
7704 skb = NULL;
7705 } else {
7706 __skb_queue_tail(&list, skb);
7707 }
7708 fput(file);
7709 file = NULL;
7710 break;
7711 }
7712
7713 if (!file)
7714 break;
7715
7716 __skb_queue_tail(&list, skb);
7717
7718 skb = skb_dequeue(head);
7719 }
7720
7721 if (skb_peek(&list)) {
7722 spin_lock_irq(&head->lock);
7723 while ((skb = __skb_dequeue(&list)) != NULL)
7724 __skb_queue_tail(head, skb);
7725 spin_unlock_irq(&head->lock);
7726 }
7727#else
7728 fput(file);
7729#endif
7730}
7731
b895c9a6 7732static void __io_rsrc_put_work(struct io_rsrc_node *ref_node)
65e19f54 7733{
b895c9a6 7734 struct io_rsrc_data *rsrc_data = ref_node->rsrc_data;
269bbe5f
BM
7735 struct io_ring_ctx *ctx = rsrc_data->ctx;
7736 struct io_rsrc_put *prsrc, *tmp;
05589553 7737
269bbe5f
BM
7738 list_for_each_entry_safe(prsrc, tmp, &ref_node->rsrc_list, list) {
7739 list_del(&prsrc->list);
b60c8dce
PB
7740
7741 if (prsrc->tag) {
f8929630
PB
7742 if (ctx->flags & IORING_SETUP_IOPOLL)
7743 mutex_lock(&ctx->uring_lock);
b60c8dce 7744
79ebeaee 7745 spin_lock(&ctx->completion_lock);
913a571a 7746 io_fill_cqe_aux(ctx, prsrc->tag, 0, 0);
b60c8dce 7747 io_commit_cqring(ctx);
79ebeaee 7748 spin_unlock(&ctx->completion_lock);
b60c8dce 7749 io_cqring_ev_posted(ctx);
f8929630
PB
7750
7751 if (ctx->flags & IORING_SETUP_IOPOLL)
7752 mutex_unlock(&ctx->uring_lock);
b60c8dce
PB
7753 }
7754
40ae0ff7 7755 rsrc_data->do_put(ctx, prsrc);
269bbe5f 7756 kfree(prsrc);
65e19f54 7757 }
05589553 7758
28a9fe25 7759 io_rsrc_node_destroy(ref_node);
3e942498
PB
7760 if (atomic_dec_and_test(&rsrc_data->refs))
7761 complete(&rsrc_data->done);
2faf852d 7762}
65e19f54 7763
269bbe5f 7764static void io_rsrc_put_work(struct work_struct *work)
4a38aed2
JA
7765{
7766 struct io_ring_ctx *ctx;
7767 struct llist_node *node;
7768
269bbe5f
BM
7769 ctx = container_of(work, struct io_ring_ctx, rsrc_put_work.work);
7770 node = llist_del_all(&ctx->rsrc_put_llist);
4a38aed2
JA
7771
7772 while (node) {
b895c9a6 7773 struct io_rsrc_node *ref_node;
4a38aed2
JA
7774 struct llist_node *next = node->next;
7775
b895c9a6 7776 ref_node = llist_entry(node, struct io_rsrc_node, llist);
269bbe5f 7777 __io_rsrc_put_work(ref_node);
4a38aed2
JA
7778 node = next;
7779 }
7780}
7781
6b06314c 7782static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
792e3582 7783 unsigned nr_args, u64 __user *tags)
6b06314c
JA
7784{
7785 __s32 __user *fds = (__s32 __user *) arg;
05f3fb3c 7786 struct file *file;
f3baed39 7787 int fd, ret;
846a4ef2 7788 unsigned i;
6b06314c 7789
05f3fb3c 7790 if (ctx->file_data)
6b06314c
JA
7791 return -EBUSY;
7792 if (!nr_args)
7793 return -EINVAL;
7794 if (nr_args > IORING_MAX_FIXED_FILES)
7795 return -EMFILE;
3a1b8a4e
PB
7796 if (nr_args > rlimit(RLIMIT_NOFILE))
7797 return -EMFILE;
a7f0ed5a 7798 ret = io_rsrc_node_switch_start(ctx);
f3baed39
PB
7799 if (ret)
7800 return ret;
d878c816
PB
7801 ret = io_rsrc_data_alloc(ctx, io_rsrc_file_put, tags, nr_args,
7802 &ctx->file_data);
7803 if (ret)
7804 return ret;
6b06314c 7805
a03a2a20
PB
7806 if (!io_alloc_file_tables(&ctx->file_table, nr_args)) {
7807 io_rsrc_data_free(ctx->file_data);
7808 ctx->file_data = NULL;
7809 return -ENOMEM;
7810 }
65e19f54 7811
08a45173 7812 for (i = 0; i < nr_args; i++, ctx->nr_user_files++) {
a03a2a20
PB
7813 struct io_fixed_file *file_slot;
7814
a8da73a3 7815 if (fds && copy_from_user(&fd, &fds[i], sizeof(fd))) {
600cf3f8 7816 ret = -EFAULT;
a03a2a20 7817 goto fail;
600cf3f8 7818 }
08a45173 7819 /* allow sparse sets */
a8da73a3 7820 if (!fds || fd == -1) {
792e3582 7821 ret = -EINVAL;
2d091d62 7822 if (unlikely(*io_get_tag_slot(ctx->file_data, i)))
a03a2a20 7823 goto fail;
08a45173 7824 continue;
792e3582 7825 }
6b06314c 7826
05f3fb3c 7827 file = fget(fd);
6b06314c 7828 ret = -EBADF;
792e3582 7829 if (unlikely(!file))
a03a2a20 7830 goto fail;
05f3fb3c 7831
6b06314c
JA
7832 /*
7833 * Don't allow io_uring instances to be registered. If UNIX
7834 * isn't enabled, then this causes a reference cycle and this
7835 * instance can never get freed. If UNIX is enabled we'll
7836 * handle it just fine, but there's still no point in allowing
7837 * a ring fd as it doesn't support regular read/write anyway.
7838 */
05f3fb3c
JA
7839 if (file->f_op == &io_uring_fops) {
7840 fput(file);
a03a2a20 7841 goto fail;
6b06314c 7842 }
8b3171bd 7843 ret = io_scm_file_account(ctx, file);
a03a2a20 7844 if (ret) {
600cf3f8 7845 fput(file);
a03a2a20 7846 goto fail;
c3a31e60 7847 }
e390510a
PB
7848 file_slot = io_fixed_file_slot(&ctx->file_table, i);
7849 io_fixed_file_set(file_slot, file);
d78bd8ad 7850 io_file_bitmap_set(&ctx->file_table, i);
c3a31e60
JA
7851 }
7852
a7f0ed5a 7853 io_rsrc_node_switch(ctx, NULL);
c3a31e60 7854 return 0;
a03a2a20
PB
7855fail:
7856 __io_sqe_files_unregister(ctx);
6b06314c 7857 return ret;
c3a31e60
JA
7858}
7859
cd40cae2
JA
7860int io_queue_rsrc_removal(struct io_rsrc_data *data, unsigned idx,
7861 struct io_rsrc_node *node, void *rsrc)
9c7b0ba8 7862{
8f0a2480 7863 u64 *tag_slot = io_get_tag_slot(data, idx);
9c7b0ba8
PB
7864 struct io_rsrc_put *prsrc;
7865
7866 prsrc = kzalloc(sizeof(*prsrc), GFP_KERNEL);
7867 if (!prsrc)
7868 return -ENOMEM;
7869
8f0a2480
PB
7870 prsrc->tag = *tag_slot;
7871 *tag_slot = 0;
9c7b0ba8
PB
7872 prsrc->rsrc = rsrc;
7873 list_add(&prsrc->list, &node->rsrc_list);
7874 return 0;
7875}
7876
b9445598
PB
7877static int io_install_fixed_file(struct io_kiocb *req, struct file *file,
7878 unsigned int issue_flags, u32 slot_index)
61c1b44a 7879 __must_hold(&req->ctx->uring_lock)
b9445598
PB
7880{
7881 struct io_ring_ctx *ctx = req->ctx;
9c7b0ba8 7882 bool needs_switch = false;
b9445598 7883 struct io_fixed_file *file_slot;
61c1b44a 7884 int ret;
b9445598 7885
b9445598 7886 if (file->f_op == &io_uring_fops)
61c1b44a 7887 return -EBADF;
b9445598 7888 if (!ctx->file_data)
61c1b44a 7889 return -ENXIO;
b9445598 7890 if (slot_index >= ctx->nr_user_files)
61c1b44a 7891 return -EINVAL;
b9445598
PB
7892
7893 slot_index = array_index_nospec(slot_index, ctx->nr_user_files);
7894 file_slot = io_fixed_file_slot(&ctx->file_table, slot_index);
9c7b0ba8
PB
7895
7896 if (file_slot->file_ptr) {
7897 struct file *old_file;
7898
7899 ret = io_rsrc_node_switch_start(ctx);
7900 if (ret)
7901 goto err;
7902
7903 old_file = (struct file *)(file_slot->file_ptr & FFS_MASK);
7904 ret = io_queue_rsrc_removal(ctx->file_data, slot_index,
7905 ctx->rsrc_node, old_file);
7906 if (ret)
7907 goto err;
7908 file_slot->file_ptr = 0;
d78bd8ad 7909 io_file_bitmap_clear(&ctx->file_table, slot_index);
9c7b0ba8
PB
7910 needs_switch = true;
7911 }
b9445598 7912
8b3171bd 7913 ret = io_scm_file_account(ctx, file);
e390510a
PB
7914 if (!ret) {
7915 *io_get_tag_slot(ctx->file_data, slot_index) = 0;
7916 io_fixed_file_set(file_slot, file);
d78bd8ad 7917 io_file_bitmap_set(&ctx->file_table, slot_index);
b9445598 7918 }
b9445598 7919err:
9c7b0ba8
PB
7920 if (needs_switch)
7921 io_rsrc_node_switch(ctx, ctx->file_data);
b9445598
PB
7922 if (ret)
7923 fput(file);
7924 return ret;
7925}
7926
05f3fb3c 7927static int __io_sqe_files_update(struct io_ring_ctx *ctx,
c3bdad02 7928 struct io_uring_rsrc_update2 *up,
05f3fb3c
JA
7929 unsigned nr_args)
7930{
c3bdad02 7931 u64 __user *tags = u64_to_user_ptr(up->tags);
98f0b3b4 7932 __s32 __user *fds = u64_to_user_ptr(up->data);
b895c9a6 7933 struct io_rsrc_data *data = ctx->file_data;
a04b0ac0
PB
7934 struct io_fixed_file *file_slot;
7935 struct file *file;
98f0b3b4
PB
7936 int fd, i, err = 0;
7937 unsigned int done;
05589553 7938 bool needs_switch = false;
c3a31e60 7939
98f0b3b4
PB
7940 if (!ctx->file_data)
7941 return -ENXIO;
7942 if (up->offset + nr_args > ctx->nr_user_files)
c3a31e60
JA
7943 return -EINVAL;
7944
67973b93 7945 for (done = 0; done < nr_args; done++) {
c3bdad02
PB
7946 u64 tag = 0;
7947
7948 if ((tags && copy_from_user(&tag, &tags[done], sizeof(tag))) ||
7949 copy_from_user(&fd, &fds[done], sizeof(fd))) {
c3a31e60
JA
7950 err = -EFAULT;
7951 break;
7952 }
c3bdad02
PB
7953 if ((fd == IORING_REGISTER_FILES_SKIP || fd == -1) && tag) {
7954 err = -EINVAL;
7955 break;
7956 }
4e0377a1 7957 if (fd == IORING_REGISTER_FILES_SKIP)
7958 continue;
7959
67973b93 7960 i = array_index_nospec(up->offset + done, ctx->nr_user_files);
aeca241b 7961 file_slot = io_fixed_file_slot(&ctx->file_table, i);
ea64ec02 7962
a04b0ac0
PB
7963 if (file_slot->file_ptr) {
7964 file = (struct file *)(file_slot->file_ptr & FFS_MASK);
4cdd158b 7965 err = io_queue_rsrc_removal(data, i, ctx->rsrc_node, file);
a5318d3c
HD
7966 if (err)
7967 break;
a04b0ac0 7968 file_slot->file_ptr = 0;
d78bd8ad 7969 io_file_bitmap_clear(&ctx->file_table, i);
05589553 7970 needs_switch = true;
c3a31e60
JA
7971 }
7972 if (fd != -1) {
c3a31e60
JA
7973 file = fget(fd);
7974 if (!file) {
7975 err = -EBADF;
7976 break;
7977 }
7978 /*
7979 * Don't allow io_uring instances to be registered. If
7980 * UNIX isn't enabled, then this causes a reference
7981 * cycle and this instance can never get freed. If UNIX
7982 * is enabled we'll handle it just fine, but there's
7983 * still no point in allowing a ring fd as it doesn't
7984 * support regular read/write anyway.
7985 */
7986 if (file->f_op == &io_uring_fops) {
7987 fput(file);
7988 err = -EBADF;
7989 break;
7990 }
8b3171bd 7991 err = io_scm_file_account(ctx, file);
f3bd9dae
YY
7992 if (err) {
7993 fput(file);
c3a31e60 7994 break;
f3bd9dae 7995 }
e390510a
PB
7996 *io_get_tag_slot(data, i) = tag;
7997 io_fixed_file_set(file_slot, file);
d78bd8ad 7998 io_file_bitmap_set(&ctx->file_table, i);
c3a31e60 7999 }
05f3fb3c
JA
8000 }
8001
a7f0ed5a
PB
8002 if (needs_switch)
8003 io_rsrc_node_switch(ctx, data);
c3a31e60
JA
8004 return done ? done : err;
8005}
05589553 8006
685fe7fe
JA
8007static struct io_wq *io_init_wq_offload(struct io_ring_ctx *ctx,
8008 struct task_struct *task)
24369c2e 8009{
e941894e 8010 struct io_wq_hash *hash;
24369c2e 8011 struct io_wq_data data;
24369c2e 8012 unsigned int concurrency;
24369c2e 8013
362a9e65 8014 mutex_lock(&ctx->uring_lock);
e941894e
JA
8015 hash = ctx->hash_map;
8016 if (!hash) {
8017 hash = kzalloc(sizeof(*hash), GFP_KERNEL);
362a9e65
YY
8018 if (!hash) {
8019 mutex_unlock(&ctx->uring_lock);
e941894e 8020 return ERR_PTR(-ENOMEM);
362a9e65 8021 }
e941894e
JA
8022 refcount_set(&hash->refs, 1);
8023 init_waitqueue_head(&hash->wait);
8024 ctx->hash_map = hash;
24369c2e 8025 }
362a9e65 8026 mutex_unlock(&ctx->uring_lock);
24369c2e 8027
e941894e 8028 data.hash = hash;
685fe7fe 8029 data.task = task;
ebc11b6c 8030 data.free_work = io_wq_free_work;
f5fa38c5 8031 data.do_work = io_wq_submit_work;
24369c2e 8032
d25e3a3d
JA
8033 /* Do QD, or 4 * CPUS, whatever is smallest */
8034 concurrency = min(ctx->sq_entries, 4 * num_online_cpus());
24369c2e 8035
5aa75ed5 8036 return io_wq_create(concurrency, &data);
24369c2e
PB
8037}
8038
c072481d
PB
8039static __cold int io_uring_alloc_task_context(struct task_struct *task,
8040 struct io_ring_ctx *ctx)
0f212204
JA
8041{
8042 struct io_uring_task *tctx;
d8a6df10 8043 int ret;
0f212204 8044
09899b19 8045 tctx = kzalloc(sizeof(*tctx), GFP_KERNEL);
0f212204
JA
8046 if (unlikely(!tctx))
8047 return -ENOMEM;
8048
e7a6c00d
JA
8049 tctx->registered_rings = kcalloc(IO_RINGFD_REG_MAX,
8050 sizeof(struct file *), GFP_KERNEL);
8051 if (unlikely(!tctx->registered_rings)) {
8052 kfree(tctx);
8053 return -ENOMEM;
8054 }
8055
d8a6df10
JA
8056 ret = percpu_counter_init(&tctx->inflight, 0, GFP_KERNEL);
8057 if (unlikely(ret)) {
e7a6c00d 8058 kfree(tctx->registered_rings);
d8a6df10
JA
8059 kfree(tctx);
8060 return ret;
8061 }
8062
685fe7fe 8063 tctx->io_wq = io_init_wq_offload(ctx, task);
5aa75ed5
JA
8064 if (IS_ERR(tctx->io_wq)) {
8065 ret = PTR_ERR(tctx->io_wq);
8066 percpu_counter_destroy(&tctx->inflight);
e7a6c00d 8067 kfree(tctx->registered_rings);
5aa75ed5
JA
8068 kfree(tctx);
8069 return ret;
8070 }
8071
0f212204
JA
8072 xa_init(&tctx->xa);
8073 init_waitqueue_head(&tctx->wait);
fdaf083c 8074 atomic_set(&tctx->in_idle, 0);
9cae36a0 8075 atomic_set(&tctx->inflight_tracked, 0);
0f212204 8076 task->io_uring = tctx;
7cbf1722
JA
8077 spin_lock_init(&tctx->task_lock);
8078 INIT_WQ_LIST(&tctx->task_list);
3fe07bcd 8079 INIT_WQ_LIST(&tctx->prio_task_list);
7cbf1722 8080 init_task_work(&tctx->task_work, tctx_task_work);
0f212204
JA
8081 return 0;
8082}
8083
8084void __io_uring_free(struct task_struct *tsk)
8085{
8086 struct io_uring_task *tctx = tsk->io_uring;
8087
8088 WARN_ON_ONCE(!xa_empty(&tctx->xa));
ef8eaa4e 8089 WARN_ON_ONCE(tctx->io_wq);
09899b19 8090 WARN_ON_ONCE(tctx->cached_refs);
ef8eaa4e 8091
e7a6c00d 8092 kfree(tctx->registered_rings);
d8a6df10 8093 percpu_counter_destroy(&tctx->inflight);
0f212204
JA
8094 kfree(tctx);
8095 tsk->io_uring = NULL;
8096}
8097
c072481d
PB
8098static __cold int io_sq_offload_create(struct io_ring_ctx *ctx,
8099 struct io_uring_params *p)
2b188cc1
JA
8100{
8101 int ret;
8102
d25e3a3d
JA
8103 /* Retain compatibility with failing for an invalid attach attempt */
8104 if ((ctx->flags & (IORING_SETUP_ATTACH_WQ | IORING_SETUP_SQPOLL)) ==
8105 IORING_SETUP_ATTACH_WQ) {
8106 struct fd f;
8107
8108 f = fdget(p->wq_fd);
8109 if (!f.file)
8110 return -ENXIO;
0cc936f7
JA
8111 if (f.file->f_op != &io_uring_fops) {
8112 fdput(f);
f2a48dd0 8113 return -EINVAL;
0cc936f7
JA
8114 }
8115 fdput(f);
d25e3a3d 8116 }
6c271ce2 8117 if (ctx->flags & IORING_SETUP_SQPOLL) {
46fe18b1 8118 struct task_struct *tsk;
534ca6d6 8119 struct io_sq_data *sqd;
26984fbf 8120 bool attached;
534ca6d6 8121
cdc1404a
PM
8122 ret = security_uring_sqpoll();
8123 if (ret)
8124 return ret;
8125
26984fbf 8126 sqd = io_get_sq_data(p, &attached);
534ca6d6
JA
8127 if (IS_ERR(sqd)) {
8128 ret = PTR_ERR(sqd);
8129 goto err;
8130 }
69fb2131 8131
7c30f36a 8132 ctx->sq_creds = get_current_cred();
534ca6d6 8133 ctx->sq_data = sqd;
917257da
JA
8134 ctx->sq_thread_idle = msecs_to_jiffies(p->sq_thread_idle);
8135 if (!ctx->sq_thread_idle)
8136 ctx->sq_thread_idle = HZ;
8137
78d7f6ba 8138 io_sq_thread_park(sqd);
de75a3d3
PB
8139 list_add(&ctx->sqd_list, &sqd->ctx_list);
8140 io_sqd_update_thread_idle(sqd);
26984fbf 8141 /* don't attach to a dying SQPOLL thread, would be racy */
f2a48dd0 8142 ret = (attached && !sqd->thread) ? -ENXIO : 0;
78d7f6ba
PB
8143 io_sq_thread_unpark(sqd);
8144
de75a3d3
PB
8145 if (ret < 0)
8146 goto err;
8147 if (attached)
5aa75ed5 8148 return 0;
aa06165d 8149
6c271ce2 8150 if (p->flags & IORING_SETUP_SQ_AFF) {
44a9bd18 8151 int cpu = p->sq_thread_cpu;
6c271ce2 8152
917257da 8153 ret = -EINVAL;
f2a48dd0 8154 if (cpu >= nr_cpu_ids || !cpu_online(cpu))
e8f98f24 8155 goto err_sqpoll;
37d1e2e3 8156 sqd->sq_cpu = cpu;
6c271ce2 8157 } else {
37d1e2e3 8158 sqd->sq_cpu = -1;
6c271ce2 8159 }
37d1e2e3
JA
8160
8161 sqd->task_pid = current->pid;
5c2469e0 8162 sqd->task_tgid = current->tgid;
46fe18b1
JA
8163 tsk = create_io_thread(io_sq_thread, sqd, NUMA_NO_NODE);
8164 if (IS_ERR(tsk)) {
8165 ret = PTR_ERR(tsk);
e8f98f24 8166 goto err_sqpoll;
6c271ce2 8167 }
97a73a0f 8168
46fe18b1 8169 sqd->thread = tsk;
97a73a0f 8170 ret = io_uring_alloc_task_context(tsk, ctx);
46fe18b1 8171 wake_up_new_task(tsk);
0f212204
JA
8172 if (ret)
8173 goto err;
6c271ce2
JA
8174 } else if (p->flags & IORING_SETUP_SQ_AFF) {
8175 /* Can't have SQ_AFF without SQPOLL */
8176 ret = -EINVAL;
8177 goto err;
8178 }
8179
2b188cc1 8180 return 0;
f2a48dd0
PB
8181err_sqpoll:
8182 complete(&ctx->sq_data->exited);
2b188cc1 8183err:
37d1e2e3 8184 io_sq_thread_finish(ctx);
2b188cc1
JA
8185 return ret;
8186}
8187
a087e2b5
BM
8188static inline void __io_unaccount_mem(struct user_struct *user,
8189 unsigned long nr_pages)
2b188cc1
JA
8190{
8191 atomic_long_sub(nr_pages, &user->locked_vm);
8192}
8193
a087e2b5
BM
8194static inline int __io_account_mem(struct user_struct *user,
8195 unsigned long nr_pages)
2b188cc1
JA
8196{
8197 unsigned long page_limit, cur_pages, new_pages;
8198
8199 /* Don't allow more pages than we can safely lock */
8200 page_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
8201
8202 do {
8203 cur_pages = atomic_long_read(&user->locked_vm);
8204 new_pages = cur_pages + nr_pages;
8205 if (new_pages > page_limit)
8206 return -ENOMEM;
8207 } while (atomic_long_cmpxchg(&user->locked_vm, cur_pages,
8208 new_pages) != cur_pages);
8209
8210 return 0;
8211}
8212
26bfa89e 8213static void io_unaccount_mem(struct io_ring_ctx *ctx, unsigned long nr_pages)
a087e2b5 8214{
62e398be 8215 if (ctx->user)
a087e2b5 8216 __io_unaccount_mem(ctx->user, nr_pages);
30975825 8217
26bfa89e
JA
8218 if (ctx->mm_account)
8219 atomic64_sub(nr_pages, &ctx->mm_account->pinned_vm);
a087e2b5
BM
8220}
8221
26bfa89e 8222static int io_account_mem(struct io_ring_ctx *ctx, unsigned long nr_pages)
a087e2b5 8223{
30975825
BM
8224 int ret;
8225
62e398be 8226 if (ctx->user) {
30975825
BM
8227 ret = __io_account_mem(ctx->user, nr_pages);
8228 if (ret)
8229 return ret;
8230 }
8231
26bfa89e
JA
8232 if (ctx->mm_account)
8233 atomic64_add(nr_pages, &ctx->mm_account->pinned_vm);
a087e2b5
BM
8234
8235 return 0;
8236}
8237
2b188cc1
JA
8238static void io_mem_free(void *ptr)
8239{
52e04ef4
MR
8240 struct page *page;
8241
8242 if (!ptr)
8243 return;
2b188cc1 8244
52e04ef4 8245 page = virt_to_head_page(ptr);
2b188cc1
JA
8246 if (put_page_testzero(page))
8247 free_compound_page(page);
8248}
8249
8250static void *io_mem_alloc(size_t size)
8251{
0a3f1e0b 8252 gfp_t gfp = GFP_KERNEL_ACCOUNT | __GFP_ZERO | __GFP_NOWARN | __GFP_COMP;
2b188cc1 8253
0a3f1e0b 8254 return (void *) __get_free_pages(gfp, get_order(size));
2b188cc1
JA
8255}
8256
baf9cb64
SR
8257static unsigned long rings_size(struct io_ring_ctx *ctx, unsigned int sq_entries,
8258 unsigned int cq_entries, size_t *sq_offset)
75b28aff
HV
8259{
8260 struct io_rings *rings;
8261 size_t off, sq_array_size;
8262
8263 off = struct_size(rings, cqes, cq_entries);
8264 if (off == SIZE_MAX)
8265 return SIZE_MAX;
baf9cb64
SR
8266 if (ctx->flags & IORING_SETUP_CQE32) {
8267 if (check_shl_overflow(off, 1, &off))
8268 return SIZE_MAX;
8269 }
75b28aff
HV
8270
8271#ifdef CONFIG_SMP
8272 off = ALIGN(off, SMP_CACHE_BYTES);
8273 if (off == 0)
8274 return SIZE_MAX;
8275#endif
8276
b36200f5
DV
8277 if (sq_offset)
8278 *sq_offset = off;
8279
75b28aff
HV
8280 sq_array_size = array_size(sizeof(u32), sq_entries);
8281 if (sq_array_size == SIZE_MAX)
8282 return SIZE_MAX;
8283
8284 if (check_add_overflow(off, sq_array_size, &off))
8285 return SIZE_MAX;
8286
75b28aff
HV
8287 return off;
8288}
8289
41edf1a5 8290static void io_buffer_unmap(struct io_ring_ctx *ctx, struct io_mapped_ubuf **slot)
7f61a1e9 8291{
41edf1a5 8292 struct io_mapped_ubuf *imu = *slot;
7f61a1e9
PB
8293 unsigned int i;
8294
6224843d
PB
8295 if (imu != ctx->dummy_ubuf) {
8296 for (i = 0; i < imu->nr_bvecs; i++)
8297 unpin_user_page(imu->bvec[i].bv_page);
8298 if (imu->acct_pages)
8299 io_unaccount_mem(ctx, imu->acct_pages);
8300 kvfree(imu);
8301 }
41edf1a5 8302 *slot = NULL;
7f61a1e9
PB
8303}
8304
bd54b6fe 8305static void io_rsrc_buf_put(struct io_ring_ctx *ctx, struct io_rsrc_put *prsrc)
edafccee 8306{
634d00df
PB
8307 io_buffer_unmap(ctx, &prsrc->buf);
8308 prsrc->buf = NULL;
bd54b6fe 8309}
edafccee 8310
bd54b6fe
BM
8311static void __io_sqe_buffers_unregister(struct io_ring_ctx *ctx)
8312{
8313 unsigned int i;
edafccee 8314
7f61a1e9
PB
8315 for (i = 0; i < ctx->nr_user_bufs; i++)
8316 io_buffer_unmap(ctx, &ctx->user_bufs[i]);
edafccee 8317 kfree(ctx->user_bufs);
bb6659cc 8318 io_rsrc_data_free(ctx->buf_data);
edafccee 8319 ctx->user_bufs = NULL;
bd54b6fe 8320 ctx->buf_data = NULL;
edafccee 8321 ctx->nr_user_bufs = 0;
bd54b6fe
BM
8322}
8323
0a96bbe4 8324static int io_sqe_buffers_unregister(struct io_ring_ctx *ctx)
edafccee 8325{
d11d31fc 8326 unsigned nr = ctx->nr_user_bufs;
bd54b6fe 8327 int ret;
edafccee 8328
bd54b6fe 8329 if (!ctx->buf_data)
edafccee
JA
8330 return -ENXIO;
8331
d11d31fc
PB
8332 /*
8333 * Quiesce may unlock ->uring_lock, and while it's not held
8334 * prevent new requests using the table.
8335 */
8336 ctx->nr_user_bufs = 0;
bd54b6fe 8337 ret = io_rsrc_ref_quiesce(ctx->buf_data, ctx);
d11d31fc 8338 ctx->nr_user_bufs = nr;
bd54b6fe
BM
8339 if (!ret)
8340 __io_sqe_buffers_unregister(ctx);
8341 return ret;
edafccee
JA
8342}
8343
8344static int io_copy_iov(struct io_ring_ctx *ctx, struct iovec *dst,
8345 void __user *arg, unsigned index)
8346{
8347 struct iovec __user *src;
8348
8349#ifdef CONFIG_COMPAT
8350 if (ctx->compat) {
8351 struct compat_iovec __user *ciovs;
8352 struct compat_iovec ciov;
8353
8354 ciovs = (struct compat_iovec __user *) arg;
8355 if (copy_from_user(&ciov, &ciovs[index], sizeof(ciov)))
8356 return -EFAULT;
8357
d55e5f5b 8358 dst->iov_base = u64_to_user_ptr((u64)ciov.iov_base);
edafccee
JA
8359 dst->iov_len = ciov.iov_len;
8360 return 0;
8361 }
8362#endif
8363 src = (struct iovec __user *) arg;
8364 if (copy_from_user(dst, &src[index], sizeof(*dst)))
8365 return -EFAULT;
8366 return 0;
8367}
8368
de293938
JA
8369/*
8370 * Not super efficient, but this is just a registration time. And we do cache
8371 * the last compound head, so generally we'll only do a full search if we don't
8372 * match that one.
8373 *
8374 * We check if the given compound head page has already been accounted, to
8375 * avoid double accounting it. This allows us to account the full size of the
8376 * page, not just the constituent pages of a huge page.
8377 */
8378static bool headpage_already_acct(struct io_ring_ctx *ctx, struct page **pages,
8379 int nr_pages, struct page *hpage)
8380{
8381 int i, j;
8382
8383 /* check current page array */
8384 for (i = 0; i < nr_pages; i++) {
8385 if (!PageCompound(pages[i]))
8386 continue;
8387 if (compound_head(pages[i]) == hpage)
8388 return true;
8389 }
8390
8391 /* check previously registered pages */
8392 for (i = 0; i < ctx->nr_user_bufs; i++) {
41edf1a5 8393 struct io_mapped_ubuf *imu = ctx->user_bufs[i];
de293938
JA
8394
8395 for (j = 0; j < imu->nr_bvecs; j++) {
8396 if (!PageCompound(imu->bvec[j].bv_page))
8397 continue;
8398 if (compound_head(imu->bvec[j].bv_page) == hpage)
8399 return true;
8400 }
8401 }
8402
8403 return false;
8404}
8405
8406static int io_buffer_account_pin(struct io_ring_ctx *ctx, struct page **pages,
8407 int nr_pages, struct io_mapped_ubuf *imu,
8408 struct page **last_hpage)
8409{
8410 int i, ret;
8411
216e5835 8412 imu->acct_pages = 0;
de293938
JA
8413 for (i = 0; i < nr_pages; i++) {
8414 if (!PageCompound(pages[i])) {
8415 imu->acct_pages++;
8416 } else {
8417 struct page *hpage;
8418
8419 hpage = compound_head(pages[i]);
8420 if (hpage == *last_hpage)
8421 continue;
8422 *last_hpage = hpage;
8423 if (headpage_already_acct(ctx, pages, i, hpage))
8424 continue;
8425 imu->acct_pages += page_size(hpage) >> PAGE_SHIFT;
8426 }
8427 }
8428
8429 if (!imu->acct_pages)
8430 return 0;
8431
26bfa89e 8432 ret = io_account_mem(ctx, imu->acct_pages);
de293938
JA
8433 if (ret)
8434 imu->acct_pages = 0;
8435 return ret;
8436}
8437
d8c2237d
JA
8438static struct page **io_pin_pages(unsigned long ubuf, unsigned long len,
8439 int *npages)
edafccee 8440{
d8c2237d 8441 unsigned long start, end, nr_pages;
edafccee
JA
8442 struct vm_area_struct **vmas = NULL;
8443 struct page **pages = NULL;
d8c2237d 8444 int i, pret, ret = -ENOMEM;
6224843d 8445
d8c2237d 8446 end = (ubuf + len + PAGE_SIZE - 1) >> PAGE_SHIFT;
0a96bbe4
BM
8447 start = ubuf >> PAGE_SHIFT;
8448 nr_pages = end - start;
8449
0a96bbe4
BM
8450 pages = kvmalloc_array(nr_pages, sizeof(struct page *), GFP_KERNEL);
8451 if (!pages)
8452 goto done;
8453
8454 vmas = kvmalloc_array(nr_pages, sizeof(struct vm_area_struct *),
8455 GFP_KERNEL);
8456 if (!vmas)
8457 goto done;
edafccee 8458
0a96bbe4
BM
8459 ret = 0;
8460 mmap_read_lock(current->mm);
8461 pret = pin_user_pages(ubuf, nr_pages, FOLL_WRITE | FOLL_LONGTERM,
8462 pages, vmas);
8463 if (pret == nr_pages) {
8464 /* don't support file backed memory */
8465 for (i = 0; i < nr_pages; i++) {
8466 struct vm_area_struct *vma = vmas[i];
8467
40dad765
PB
8468 if (vma_is_shmem(vma))
8469 continue;
0a96bbe4
BM
8470 if (vma->vm_file &&
8471 !is_file_hugepages(vma->vm_file)) {
8472 ret = -EOPNOTSUPP;
8473 break;
8474 }
8475 }
d8c2237d 8476 *npages = nr_pages;
0a96bbe4
BM
8477 } else {
8478 ret = pret < 0 ? pret : -EFAULT;
8479 }
8480 mmap_read_unlock(current->mm);
8481 if (ret) {
8482 /*
8483 * if we did partial map, or found file backed vmas,
8484 * release any pages we did get
8485 */
8486 if (pret > 0)
8487 unpin_user_pages(pages, pret);
0a96bbe4
BM
8488 goto done;
8489 }
d8c2237d
JA
8490 ret = 0;
8491done:
8492 kvfree(vmas);
8493 if (ret < 0) {
8494 kvfree(pages);
8495 pages = ERR_PTR(ret);
8496 }
8497 return pages;
8498}
0a96bbe4 8499
d8c2237d
JA
8500static int io_sqe_buffer_register(struct io_ring_ctx *ctx, struct iovec *iov,
8501 struct io_mapped_ubuf **pimu,
8502 struct page **last_hpage)
8503{
8504 struct io_mapped_ubuf *imu = NULL;
8505 struct page **pages = NULL;
8506 unsigned long off;
8507 size_t size;
8508 int ret, nr_pages, i;
8509
8510 if (!iov->iov_base) {
8511 *pimu = ctx->dummy_ubuf;
8512 return 0;
8513 }
8514
8515 *pimu = NULL;
8516 ret = -ENOMEM;
8517
8518 pages = io_pin_pages((unsigned long) iov->iov_base, iov->iov_len,
8519 &nr_pages);
8520 if (IS_ERR(pages)) {
8521 ret = PTR_ERR(pages);
8522 pages = NULL;
8523 goto done;
8524 }
8525
8526 imu = kvmalloc(struct_size(imu, bvec, nr_pages), GFP_KERNEL);
8527 if (!imu)
8528 goto done;
0a96bbe4 8529
d8c2237d 8530 ret = io_buffer_account_pin(ctx, pages, nr_pages, imu, last_hpage);
0a96bbe4 8531 if (ret) {
d8c2237d 8532 unpin_user_pages(pages, nr_pages);
0a96bbe4
BM
8533 goto done;
8534 }
8535
d8c2237d 8536 off = (unsigned long) iov->iov_base & ~PAGE_MASK;
0a96bbe4
BM
8537 size = iov->iov_len;
8538 for (i = 0; i < nr_pages; i++) {
8539 size_t vec_len;
8540
8541 vec_len = min_t(size_t, size, PAGE_SIZE - off);
8542 imu->bvec[i].bv_page = pages[i];
8543 imu->bvec[i].bv_len = vec_len;
8544 imu->bvec[i].bv_offset = off;
8545 off = 0;
8546 size -= vec_len;
8547 }
8548 /* store original address for later verification */
d8c2237d
JA
8549 imu->ubuf = (unsigned long) iov->iov_base;
8550 imu->ubuf_end = imu->ubuf + iov->iov_len;
0a96bbe4 8551 imu->nr_bvecs = nr_pages;
41edf1a5 8552 *pimu = imu;
0a96bbe4
BM
8553 ret = 0;
8554done:
41edf1a5
PB
8555 if (ret)
8556 kvfree(imu);
0a96bbe4 8557 kvfree(pages);
0a96bbe4
BM
8558 return ret;
8559}
8560
2b358604 8561static int io_buffers_map_alloc(struct io_ring_ctx *ctx, unsigned int nr_args)
0a96bbe4 8562{
87094465
PB
8563 ctx->user_bufs = kcalloc(nr_args, sizeof(*ctx->user_bufs), GFP_KERNEL);
8564 return ctx->user_bufs ? 0 : -ENOMEM;
2b358604 8565}
edafccee 8566
2b358604
BM
8567static int io_buffer_validate(struct iovec *iov)
8568{
50e96989
PB
8569 unsigned long tmp, acct_len = iov->iov_len + (PAGE_SIZE - 1);
8570
2b358604
BM
8571 /*
8572 * Don't impose further limits on the size and buffer
8573 * constraints here, we'll -EINVAL later when IO is
8574 * submitted if they are wrong.
8575 */
6224843d
PB
8576 if (!iov->iov_base)
8577 return iov->iov_len ? -EFAULT : 0;
8578 if (!iov->iov_len)
2b358604 8579 return -EFAULT;
edafccee 8580
2b358604
BM
8581 /* arbitrary limit, but we need something */
8582 if (iov->iov_len > SZ_1G)
8583 return -EFAULT;
edafccee 8584
50e96989
PB
8585 if (check_add_overflow((unsigned long)iov->iov_base, acct_len, &tmp))
8586 return -EOVERFLOW;
8587
2b358604
BM
8588 return 0;
8589}
edafccee 8590
2b358604 8591static int io_sqe_buffers_register(struct io_ring_ctx *ctx, void __user *arg,
634d00df 8592 unsigned int nr_args, u64 __user *tags)
2b358604 8593{
bd54b6fe
BM
8594 struct page *last_hpage = NULL;
8595 struct io_rsrc_data *data;
2b358604
BM
8596 int i, ret;
8597 struct iovec iov;
edafccee 8598
87094465
PB
8599 if (ctx->user_bufs)
8600 return -EBUSY;
489809e2 8601 if (!nr_args || nr_args > IORING_MAX_REG_BUFFERS)
87094465 8602 return -EINVAL;
bd54b6fe 8603 ret = io_rsrc_node_switch_start(ctx);
2b358604
BM
8604 if (ret)
8605 return ret;
d878c816
PB
8606 ret = io_rsrc_data_alloc(ctx, io_rsrc_buf_put, tags, nr_args, &data);
8607 if (ret)
8608 return ret;
bd54b6fe
BM
8609 ret = io_buffers_map_alloc(ctx, nr_args);
8610 if (ret) {
bb6659cc 8611 io_rsrc_data_free(data);
bd54b6fe
BM
8612 return ret;
8613 }
edafccee 8614
87094465 8615 for (i = 0; i < nr_args; i++, ctx->nr_user_bufs++) {
0184f08e
PB
8616 if (arg) {
8617 ret = io_copy_iov(ctx, &iov, arg, i);
8618 if (ret)
8619 break;
8620 ret = io_buffer_validate(&iov);
8621 if (ret)
8622 break;
8623 } else {
8624 memset(&iov, 0, sizeof(iov));
8625 }
8626
2d091d62 8627 if (!iov.iov_base && *io_get_tag_slot(data, i)) {
cf3770e7
CIK
8628 ret = -EINVAL;
8629 break;
8630 }
edafccee 8631
41edf1a5
PB
8632 ret = io_sqe_buffer_register(ctx, &iov, &ctx->user_bufs[i],
8633 &last_hpage);
0a96bbe4
BM
8634 if (ret)
8635 break;
edafccee 8636 }
0a96bbe4 8637
bd54b6fe 8638 WARN_ON_ONCE(ctx->buf_data);
0a96bbe4 8639
bd54b6fe
BM
8640 ctx->buf_data = data;
8641 if (ret)
8642 __io_sqe_buffers_unregister(ctx);
8643 else
8644 io_rsrc_node_switch(ctx, NULL);
edafccee
JA
8645 return ret;
8646}
8647
634d00df
PB
8648static int __io_sqe_buffers_update(struct io_ring_ctx *ctx,
8649 struct io_uring_rsrc_update2 *up,
8650 unsigned int nr_args)
8651{
8652 u64 __user *tags = u64_to_user_ptr(up->tags);
8653 struct iovec iov, __user *iovs = u64_to_user_ptr(up->data);
634d00df
PB
8654 struct page *last_hpage = NULL;
8655 bool needs_switch = false;
8656 __u32 done;
8657 int i, err;
8658
8659 if (!ctx->buf_data)
8660 return -ENXIO;
8661 if (up->offset + nr_args > ctx->nr_user_bufs)
8662 return -EINVAL;
8663
8664 for (done = 0; done < nr_args; done++) {
0b8c0e7c
PB
8665 struct io_mapped_ubuf *imu;
8666 int offset = up->offset + done;
634d00df
PB
8667 u64 tag = 0;
8668
8669 err = io_copy_iov(ctx, &iov, iovs, done);
8670 if (err)
8671 break;
8672 if (tags && copy_from_user(&tag, &tags[done], sizeof(tag))) {
8673 err = -EFAULT;
8674 break;
8675 }
0b8c0e7c
PB
8676 err = io_buffer_validate(&iov);
8677 if (err)
8678 break;
cf3770e7
CIK
8679 if (!iov.iov_base && tag) {
8680 err = -EINVAL;
8681 break;
8682 }
0b8c0e7c
PB
8683 err = io_sqe_buffer_register(ctx, &iov, &imu, &last_hpage);
8684 if (err)
8685 break;
634d00df 8686
0b8c0e7c 8687 i = array_index_nospec(offset, ctx->nr_user_bufs);
6224843d 8688 if (ctx->user_bufs[i] != ctx->dummy_ubuf) {
4cdd158b 8689 err = io_queue_rsrc_removal(ctx->buf_data, i,
0b8c0e7c
PB
8690 ctx->rsrc_node, ctx->user_bufs[i]);
8691 if (unlikely(err)) {
8692 io_buffer_unmap(ctx, &imu);
634d00df 8693 break;
0b8c0e7c 8694 }
634d00df
PB
8695 ctx->user_bufs[i] = NULL;
8696 needs_switch = true;
8697 }
8698
0b8c0e7c 8699 ctx->user_bufs[i] = imu;
2d091d62 8700 *io_get_tag_slot(ctx->buf_data, offset) = tag;
634d00df
PB
8701 }
8702
8703 if (needs_switch)
8704 io_rsrc_node_switch(ctx, ctx->buf_data);
8705 return done ? done : err;
8706}
8707
c75312dd
UA
8708static int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg,
8709 unsigned int eventfd_async)
9b402849 8710{
77bc59b4 8711 struct io_ev_fd *ev_fd;
9b402849 8712 __s32 __user *fds = arg;
f0a4e62b 8713 int fd;
9b402849 8714
77bc59b4
UA
8715 ev_fd = rcu_dereference_protected(ctx->io_ev_fd,
8716 lockdep_is_held(&ctx->uring_lock));
8717 if (ev_fd)
9b402849
JA
8718 return -EBUSY;
8719
8720 if (copy_from_user(&fd, fds, sizeof(*fds)))
8721 return -EFAULT;
8722
77bc59b4
UA
8723 ev_fd = kmalloc(sizeof(*ev_fd), GFP_KERNEL);
8724 if (!ev_fd)
8725 return -ENOMEM;
fe7e3257 8726
77bc59b4
UA
8727 ev_fd->cq_ev_fd = eventfd_ctx_fdget(fd);
8728 if (IS_ERR(ev_fd->cq_ev_fd)) {
f0a4e62b 8729 int ret = PTR_ERR(ev_fd->cq_ev_fd);
77bc59b4 8730 kfree(ev_fd);
9b402849
JA
8731 return ret;
8732 }
c75312dd 8733 ev_fd->eventfd_async = eventfd_async;
9aa8dfde 8734 ctx->has_evfd = true;
77bc59b4 8735 rcu_assign_pointer(ctx->io_ev_fd, ev_fd);
f0a4e62b 8736 return 0;
77bc59b4
UA
8737}
8738
8739static void io_eventfd_put(struct rcu_head *rcu)
8740{
8741 struct io_ev_fd *ev_fd = container_of(rcu, struct io_ev_fd, rcu);
8742
8743 eventfd_ctx_put(ev_fd->cq_ev_fd);
8744 kfree(ev_fd);
9b402849
JA
8745}
8746
8747static int io_eventfd_unregister(struct io_ring_ctx *ctx)
8748{
77bc59b4
UA
8749 struct io_ev_fd *ev_fd;
8750
8751 ev_fd = rcu_dereference_protected(ctx->io_ev_fd,
8752 lockdep_is_held(&ctx->uring_lock));
8753 if (ev_fd) {
9aa8dfde 8754 ctx->has_evfd = false;
77bc59b4
UA
8755 rcu_assign_pointer(ctx->io_ev_fd, NULL);
8756 call_rcu(&ev_fd->rcu, io_eventfd_put);
9b402849
JA
8757 return 0;
8758 }
8759
8760 return -ENXIO;
8761}
8762
5a2e745d
JA
8763static void io_destroy_buffers(struct io_ring_ctx *ctx)
8764{
9cfc7e94
JA
8765 struct io_buffer_list *bl;
8766 unsigned long index;
dbc7d452
JA
8767 int i;
8768
9cfc7e94
JA
8769 for (i = 0; i < BGID_ARRAY; i++) {
8770 if (!ctx->io_bl)
8771 break;
8772 __io_remove_buffers(ctx, &ctx->io_bl[i], -1U);
8773 }
dbc7d452 8774
9cfc7e94
JA
8775 xa_for_each(&ctx->io_bl_xa, index, bl) {
8776 xa_erase(&ctx->io_bl_xa, bl->bgid);
8777 __io_remove_buffers(ctx, bl, -1U);
21870e02 8778 kfree(bl);
dbc7d452 8779 }
cc3cec83
JA
8780
8781 while (!list_empty(&ctx->io_buffers_pages)) {
8782 struct page *page;
8783
8784 page = list_first_entry(&ctx->io_buffers_pages, struct page, lru);
8785 list_del_init(&page->lru);
8786 __free_page(page);
8787 }
5a2e745d
JA
8788}
8789
4010fec4 8790static void io_req_caches_free(struct io_ring_ctx *ctx)
2b188cc1 8791{
cd0ca2e0 8792 struct io_submit_state *state = &ctx->submit_state;
37f0e767 8793 int nr = 0;
bf019da7 8794
9a4fdbd8 8795 mutex_lock(&ctx->uring_lock);
cd0ca2e0 8796 io_flush_cached_locked_reqs(ctx, state);
9a4fdbd8 8797
88ab95be 8798 while (!io_req_cache_empty(ctx)) {
c2b6c6bc
PB
8799 struct io_wq_work_node *node;
8800 struct io_kiocb *req;
9a4fdbd8 8801
c2b6c6bc
PB
8802 node = wq_stack_extract(&state->free_list);
8803 req = container_of(node, struct io_kiocb, comp_list);
8804 kmem_cache_free(req_cachep, req);
37f0e767 8805 nr++;
c2b6c6bc 8806 }
37f0e767
PB
8807 if (nr)
8808 percpu_ref_put_many(&ctx->refs, nr);
9a4fdbd8
JA
8809 mutex_unlock(&ctx->uring_lock);
8810}
8811
43597aac 8812static void io_wait_rsrc_data(struct io_rsrc_data *data)
2b188cc1 8813{
43597aac 8814 if (data && !atomic_dec_and_test(&data->refs))
bd54b6fe 8815 wait_for_completion(&data->done);
bd54b6fe 8816}
04fc6c80 8817
4d9237e3
JA
8818static void io_flush_apoll_cache(struct io_ring_ctx *ctx)
8819{
8820 struct async_poll *apoll;
8821
8822 while (!list_empty(&ctx->apoll_cache)) {
8823 apoll = list_first_entry(&ctx->apoll_cache, struct async_poll,
8824 poll.wait.entry);
8825 list_del(&apoll->poll.wait.entry);
8826 kfree(apoll);
8827 }
8828}
8829
c072481d 8830static __cold void io_ring_ctx_free(struct io_ring_ctx *ctx)
2b188cc1 8831{
37d1e2e3 8832 io_sq_thread_finish(ctx);
2aede0e4 8833
37d1e2e3 8834 if (ctx->mm_account) {
2aede0e4
JA
8835 mmdrop(ctx->mm_account);
8836 ctx->mm_account = NULL;
30975825 8837 }
def596e9 8838
ab409402 8839 io_rsrc_refs_drop(ctx);
43597aac
PB
8840 /* __io_rsrc_put_work() may need uring_lock to progress, wait w/o it */
8841 io_wait_rsrc_data(ctx->buf_data);
8842 io_wait_rsrc_data(ctx->file_data);
8843
8bad28d8 8844 mutex_lock(&ctx->uring_lock);
43597aac 8845 if (ctx->buf_data)
bd54b6fe 8846 __io_sqe_buffers_unregister(ctx);
43597aac 8847 if (ctx->file_data)
08480400 8848 __io_sqe_files_unregister(ctx);
c4ea060e
PB
8849 if (ctx->rings)
8850 __io_cqring_overflow_flush(ctx, true);
9b402849 8851 io_eventfd_unregister(ctx);
4d9237e3 8852 io_flush_apoll_cache(ctx);
77bc59b4 8853 mutex_unlock(&ctx->uring_lock);
5a2e745d 8854 io_destroy_buffers(ctx);
07db298a
PB
8855 if (ctx->sq_creds)
8856 put_cred(ctx->sq_creds);
def596e9 8857
a7f0ed5a
PB
8858 /* there are no registered resources left, nobody uses it */
8859 if (ctx->rsrc_node)
8860 io_rsrc_node_destroy(ctx->rsrc_node);
8dd03afe 8861 if (ctx->rsrc_backup_node)
b895c9a6 8862 io_rsrc_node_destroy(ctx->rsrc_backup_node);
a7f0ed5a 8863 flush_delayed_work(&ctx->rsrc_put_work);
756ab7c0 8864 flush_delayed_work(&ctx->fallback_work);
a7f0ed5a
PB
8865
8866 WARN_ON_ONCE(!list_empty(&ctx->rsrc_ref_list));
8867 WARN_ON_ONCE(!llist_empty(&ctx->rsrc_put_llist));
def596e9 8868
2b188cc1 8869#if defined(CONFIG_UNIX)
355e8d26
EB
8870 if (ctx->ring_sock) {
8871 ctx->ring_sock->file = NULL; /* so that iput() is called */
2b188cc1 8872 sock_release(ctx->ring_sock);
355e8d26 8873 }
2b188cc1 8874#endif
ef9dd637 8875 WARN_ON_ONCE(!list_empty(&ctx->ltimeout_list));
2b188cc1 8876
75b28aff 8877 io_mem_free(ctx->rings);
2b188cc1 8878 io_mem_free(ctx->sq_sqes);
2b188cc1
JA
8879
8880 percpu_ref_exit(&ctx->refs);
2b188cc1 8881 free_uid(ctx->user);
4010fec4 8882 io_req_caches_free(ctx);
e941894e
JA
8883 if (ctx->hash_map)
8884 io_wq_put_hash(ctx->hash_map);
78076bb6 8885 kfree(ctx->cancel_hash);
6224843d 8886 kfree(ctx->dummy_ubuf);
9cfc7e94
JA
8887 kfree(ctx->io_bl);
8888 xa_destroy(&ctx->io_bl_xa);
2b188cc1
JA
8889 kfree(ctx);
8890}
8891
8892static __poll_t io_uring_poll(struct file *file, poll_table *wait)
8893{
8894 struct io_ring_ctx *ctx = file->private_data;
8895 __poll_t mask = 0;
8896
d60aa65b 8897 poll_wait(file, &ctx->cq_wait, wait);
4f7067c3
SB
8898 /*
8899 * synchronizes with barrier from wq_has_sleeper call in
8900 * io_commit_cqring
8901 */
2b188cc1 8902 smp_rmb();
90554200 8903 if (!io_sqring_full(ctx))
2b188cc1 8904 mask |= EPOLLOUT | EPOLLWRNORM;
ed670c3f
HX
8905
8906 /*
8907 * Don't flush cqring overflow list here, just do a simple check.
8908 * Otherwise there could possible be ABBA deadlock:
8909 * CPU0 CPU1
8910 * ---- ----
8911 * lock(&ctx->uring_lock);
8912 * lock(&ep->mtx);
8913 * lock(&ctx->uring_lock);
8914 * lock(&ep->mtx);
8915 *
8916 * Users may get EPOLLIN meanwhile seeing nothing in cqring, this
8917 * pushs them to do the flush.
8918 */
10988a0a
DY
8919 if (io_cqring_events(ctx) ||
8920 test_bit(IO_CHECK_CQ_OVERFLOW_BIT, &ctx->check_cq))
2b188cc1
JA
8921 mask |= EPOLLIN | EPOLLRDNORM;
8922
8923 return mask;
8924}
8925
0bead8cd 8926static int io_unregister_personality(struct io_ring_ctx *ctx, unsigned id)
071698e1 8927{
4379bf8b 8928 const struct cred *creds;
071698e1 8929
61cf9370 8930 creds = xa_erase(&ctx->personalities, id);
4379bf8b
JA
8931 if (creds) {
8932 put_cred(creds);
0bead8cd 8933 return 0;
1e6fa521 8934 }
0bead8cd
YD
8935
8936 return -EINVAL;
8937}
8938
d56d938b
PB
8939struct io_tctx_exit {
8940 struct callback_head task_work;
8941 struct completion completion;
baf186c4 8942 struct io_ring_ctx *ctx;
d56d938b
PB
8943};
8944
c072481d 8945static __cold void io_tctx_exit_cb(struct callback_head *cb)
d56d938b
PB
8946{
8947 struct io_uring_task *tctx = current->io_uring;
8948 struct io_tctx_exit *work;
8949
8950 work = container_of(cb, struct io_tctx_exit, task_work);
8951 /*
8952 * When @in_idle, we're in cancellation and it's racy to remove the
8953 * node. It'll be removed by the end of cancellation, just ignore it.
8954 */
8955 if (!atomic_read(&tctx->in_idle))
eef51daa 8956 io_uring_del_tctx_node((unsigned long)work->ctx);
d56d938b
PB
8957 complete(&work->completion);
8958}
8959
c072481d 8960static __cold bool io_cancel_ctx_cb(struct io_wq_work *work, void *data)
28090c13
PB
8961{
8962 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
8963
8964 return req->ctx == data;
8965}
8966
c072481d 8967static __cold void io_ring_exit_work(struct work_struct *work)
85faa7b8 8968{
d56d938b 8969 struct io_ring_ctx *ctx = container_of(work, struct io_ring_ctx, exit_work);
b5bb3a24 8970 unsigned long timeout = jiffies + HZ * 60 * 5;
58d3be2c 8971 unsigned long interval = HZ / 20;
d56d938b
PB
8972 struct io_tctx_exit exit;
8973 struct io_tctx_node *node;
8974 int ret;
85faa7b8 8975
56952e91
JA
8976 /*
8977 * If we're doing polled IO and end up having requests being
8978 * submitted async (out-of-line), then completions can come in while
8979 * we're waiting for refs to drop. We need to reap these manually,
8980 * as nobody else will be looking for them.
8981 */
b2edc0a7 8982 do {
3dd0c97a 8983 io_uring_try_cancel_requests(ctx, NULL, true);
28090c13
PB
8984 if (ctx->sq_data) {
8985 struct io_sq_data *sqd = ctx->sq_data;
8986 struct task_struct *tsk;
8987
8988 io_sq_thread_park(sqd);
8989 tsk = sqd->thread;
8990 if (tsk && tsk->io_uring && tsk->io_uring->io_wq)
8991 io_wq_cancel_cb(tsk->io_uring->io_wq,
8992 io_cancel_ctx_cb, ctx, true);
8993 io_sq_thread_unpark(sqd);
8994 }
b5bb3a24 8995
37f0e767
PB
8996 io_req_caches_free(ctx);
8997
58d3be2c
PB
8998 if (WARN_ON_ONCE(time_after(jiffies, timeout))) {
8999 /* there is little hope left, don't run it too often */
9000 interval = HZ * 60;
9001 }
9002 } while (!wait_for_completion_timeout(&ctx->ref_comp, interval));
d56d938b 9003
7f00651a
PB
9004 init_completion(&exit.completion);
9005 init_task_work(&exit.task_work, io_tctx_exit_cb);
9006 exit.ctx = ctx;
89b5066e
PB
9007 /*
9008 * Some may use context even when all refs and requests have been put,
9009 * and they are free to do so while still holding uring_lock or
5b0a6acc 9010 * completion_lock, see io_req_task_submit(). Apart from other work,
89b5066e
PB
9011 * this lock/unlock section also waits them to finish.
9012 */
d56d938b
PB
9013 mutex_lock(&ctx->uring_lock);
9014 while (!list_empty(&ctx->tctx_list)) {
b5bb3a24
PB
9015 WARN_ON_ONCE(time_after(jiffies, timeout));
9016
d56d938b
PB
9017 node = list_first_entry(&ctx->tctx_list, struct io_tctx_node,
9018 ctx_node);
7f00651a
PB
9019 /* don't spin on a single task if cancellation failed */
9020 list_rotate_left(&ctx->tctx_list);
d56d938b
PB
9021 ret = task_work_add(node->task, &exit.task_work, TWA_SIGNAL);
9022 if (WARN_ON_ONCE(ret))
9023 continue;
d56d938b
PB
9024
9025 mutex_unlock(&ctx->uring_lock);
9026 wait_for_completion(&exit.completion);
d56d938b
PB
9027 mutex_lock(&ctx->uring_lock);
9028 }
9029 mutex_unlock(&ctx->uring_lock);
79ebeaee
JA
9030 spin_lock(&ctx->completion_lock);
9031 spin_unlock(&ctx->completion_lock);
d56d938b 9032
85faa7b8
JA
9033 io_ring_ctx_free(ctx);
9034}
9035
80c4cbdb 9036/* Returns true if we found and killed one or more timeouts */
c072481d
PB
9037static __cold bool io_kill_timeouts(struct io_ring_ctx *ctx,
9038 struct task_struct *tsk, bool cancel_all)
80c4cbdb 9039{
a43714ac 9040 struct io_timeout *timeout, *tmp;
80c4cbdb
PB
9041 int canceled = 0;
9042
79ebeaee
JA
9043 spin_lock(&ctx->completion_lock);
9044 spin_lock_irq(&ctx->timeout_lock);
a43714ac
JA
9045 list_for_each_entry_safe(timeout, tmp, &ctx->timeout_list, list) {
9046 struct io_kiocb *req = cmd_to_io_kiocb(timeout);
9047
3dd0c97a 9048 if (io_match_task(req, tsk, cancel_all)) {
80c4cbdb
PB
9049 io_kill_timeout(req, -ECANCELED);
9050 canceled++;
9051 }
9052 }
79ebeaee 9053 spin_unlock_irq(&ctx->timeout_lock);
60053be8 9054 io_commit_cqring(ctx);
79ebeaee 9055 spin_unlock(&ctx->completion_lock);
80c4cbdb
PB
9056 if (canceled != 0)
9057 io_cqring_ev_posted(ctx);
9058 return canceled != 0;
9059}
9060
c072481d 9061static __cold void io_ring_ctx_wait_and_kill(struct io_ring_ctx *ctx)
2b188cc1 9062{
61cf9370
MWO
9063 unsigned long index;
9064 struct creds *creds;
9065
2b188cc1
JA
9066 mutex_lock(&ctx->uring_lock);
9067 percpu_ref_kill(&ctx->refs);
634578f8 9068 if (ctx->rings)
6c2450ae 9069 __io_cqring_overflow_flush(ctx, true);
61cf9370
MWO
9070 xa_for_each(&ctx->personalities, index, creds)
9071 io_unregister_personality(ctx, index);
2b188cc1
JA
9072 mutex_unlock(&ctx->uring_lock);
9073
60053be8
PB
9074 /* failed during ring init, it couldn't have issued any requests */
9075 if (ctx->rings) {
9076 io_kill_timeouts(ctx, NULL, true);
9077 io_poll_remove_all(ctx, NULL, true);
9078 /* if we failed setting up the ctx, we might not have any rings */
9079 io_iopoll_try_reap_events(ctx);
9080 }
309fc03a 9081
85faa7b8 9082 INIT_WORK(&ctx->exit_work, io_ring_exit_work);
fc666777
JA
9083 /*
9084 * Use system_unbound_wq to avoid spawning tons of event kworkers
9085 * if we're exiting a ton of rings at the same time. It just adds
9086 * noise and overhead, there's no discernable change in runtime
9087 * over using system_wq.
9088 */
9089 queue_work(system_unbound_wq, &ctx->exit_work);
2b188cc1
JA
9090}
9091
9092static int io_uring_release(struct inode *inode, struct file *file)
9093{
9094 struct io_ring_ctx *ctx = file->private_data;
9095
9096 file->private_data = NULL;
9097 io_ring_ctx_wait_and_kill(ctx);
9098 return 0;
9099}
9100
f6edbabb
PB
9101struct io_task_cancel {
9102 struct task_struct *task;
3dd0c97a 9103 bool all;
f6edbabb 9104};
f254ac04 9105
f6edbabb 9106static bool io_cancel_task_cb(struct io_wq_work *work, void *data)
b711d4ea 9107{
9a472ef7 9108 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
f6edbabb 9109 struct io_task_cancel *cancel = data;
9a472ef7 9110
6af3f48b 9111 return io_match_task_safe(req, cancel->task, cancel->all);
b711d4ea
JA
9112}
9113
c072481d
PB
9114static __cold bool io_cancel_defer_files(struct io_ring_ctx *ctx,
9115 struct task_struct *task,
9116 bool cancel_all)
b7ddce3c 9117{
e1915f76 9118 struct io_defer_entry *de;
b7ddce3c
PB
9119 LIST_HEAD(list);
9120
79ebeaee 9121 spin_lock(&ctx->completion_lock);
b7ddce3c 9122 list_for_each_entry_reverse(de, &ctx->defer_list, list) {
6af3f48b 9123 if (io_match_task_safe(de->req, task, cancel_all)) {
b7ddce3c
PB
9124 list_cut_position(&list, &ctx->defer_list, &de->list);
9125 break;
9126 }
9127 }
79ebeaee 9128 spin_unlock(&ctx->completion_lock);
e1915f76
PB
9129 if (list_empty(&list))
9130 return false;
b7ddce3c
PB
9131
9132 while (!list_empty(&list)) {
9133 de = list_first_entry(&list, struct io_defer_entry, list);
9134 list_del_init(&de->list);
f41db273 9135 io_req_complete_failed(de->req, -ECANCELED);
b7ddce3c
PB
9136 kfree(de);
9137 }
e1915f76 9138 return true;
b7ddce3c
PB
9139}
9140
c072481d 9141static __cold bool io_uring_try_cancel_iowq(struct io_ring_ctx *ctx)
1b00764f
PB
9142{
9143 struct io_tctx_node *node;
9144 enum io_wq_cancel cret;
9145 bool ret = false;
9146
9147 mutex_lock(&ctx->uring_lock);
9148 list_for_each_entry(node, &ctx->tctx_list, ctx_node) {
9149 struct io_uring_task *tctx = node->task->io_uring;
9150
9151 /*
9152 * io_wq will stay alive while we hold uring_lock, because it's
9153 * killed after ctx nodes, which requires to take the lock.
9154 */
9155 if (!tctx || !tctx->io_wq)
9156 continue;
9157 cret = io_wq_cancel_cb(tctx->io_wq, io_cancel_ctx_cb, ctx, true);
9158 ret |= (cret != IO_WQ_CANCEL_NOTFOUND);
9159 }
9160 mutex_unlock(&ctx->uring_lock);
9161
9162 return ret;
9163}
9164
c072481d
PB
9165static __cold void io_uring_try_cancel_requests(struct io_ring_ctx *ctx,
9166 struct task_struct *task,
9167 bool cancel_all)
9936c7c2 9168{
3dd0c97a 9169 struct io_task_cancel cancel = { .task = task, .all = cancel_all, };
1b00764f 9170 struct io_uring_task *tctx = task ? task->io_uring : NULL;
9936c7c2 9171
60053be8
PB
9172 /* failed during ring init, it couldn't have issued any requests */
9173 if (!ctx->rings)
9174 return;
9175
9936c7c2
PB
9176 while (1) {
9177 enum io_wq_cancel cret;
9178 bool ret = false;
9179
1b00764f
PB
9180 if (!task) {
9181 ret |= io_uring_try_cancel_iowq(ctx);
9182 } else if (tctx && tctx->io_wq) {
9183 /*
9184 * Cancels requests of all rings, not only @ctx, but
9185 * it's fine as the task is in exit/exec.
9186 */
5aa75ed5 9187 cret = io_wq_cancel_cb(tctx->io_wq, io_cancel_task_cb,
9936c7c2
PB
9188 &cancel, true);
9189 ret |= (cret != IO_WQ_CANCEL_NOTFOUND);
9190 }
9191
9192 /* SQPOLL thread does its own polling */
3dd0c97a 9193 if ((!(ctx->flags & IORING_SETUP_SQPOLL) && cancel_all) ||
d052d1d6 9194 (ctx->sq_data && ctx->sq_data->thread == current)) {
5eef4e87 9195 while (!wq_list_empty(&ctx->iopoll_list)) {
9936c7c2
PB
9196 io_iopoll_try_reap_events(ctx);
9197 ret = true;
9198 }
9199 }
9200
3dd0c97a
PB
9201 ret |= io_cancel_defer_files(ctx, task, cancel_all);
9202 ret |= io_poll_remove_all(ctx, task, cancel_all);
9203 ret |= io_kill_timeouts(ctx, task, cancel_all);
e5dc480d
PB
9204 if (task)
9205 ret |= io_run_task_work();
9936c7c2
PB
9206 if (!ret)
9207 break;
9208 cond_resched();
9209 }
9210}
9211
eef51daa 9212static int __io_uring_add_tctx_node(struct io_ring_ctx *ctx)
0f212204 9213{
236434c3 9214 struct io_uring_task *tctx = current->io_uring;
13bf43f5 9215 struct io_tctx_node *node;
a528b04e 9216 int ret;
236434c3
MWO
9217
9218 if (unlikely(!tctx)) {
5aa75ed5 9219 ret = io_uring_alloc_task_context(current, ctx);
0f212204
JA
9220 if (unlikely(ret))
9221 return ret;
e139a1ec 9222
236434c3 9223 tctx = current->io_uring;
e139a1ec
PB
9224 if (ctx->iowq_limits_set) {
9225 unsigned int limits[2] = { ctx->iowq_limits[0],
9226 ctx->iowq_limits[1], };
9227
9228 ret = io_wq_max_workers(tctx->io_wq, limits);
9229 if (ret)
9230 return ret;
9231 }
0f212204 9232 }
cf27f3b1
PB
9233 if (!xa_load(&tctx->xa, (unsigned long)ctx)) {
9234 node = kmalloc(sizeof(*node), GFP_KERNEL);
9235 if (!node)
9236 return -ENOMEM;
9237 node->ctx = ctx;
9238 node->task = current;
13bf43f5 9239
cf27f3b1
PB
9240 ret = xa_err(xa_store(&tctx->xa, (unsigned long)ctx,
9241 node, GFP_KERNEL));
9242 if (ret) {
9243 kfree(node);
9244 return ret;
0f212204 9245 }
cf27f3b1
PB
9246
9247 mutex_lock(&ctx->uring_lock);
9248 list_add(&node->ctx_node, &ctx->tctx_list);
9249 mutex_unlock(&ctx->uring_lock);
0f212204 9250 }
cf27f3b1 9251 tctx->last = ctx;
0f212204
JA
9252 return 0;
9253}
9254
cf27f3b1
PB
9255/*
9256 * Note that this task has used io_uring. We use it for cancelation purposes.
9257 */
eef51daa 9258static inline int io_uring_add_tctx_node(struct io_ring_ctx *ctx)
cf27f3b1
PB
9259{
9260 struct io_uring_task *tctx = current->io_uring;
9261
9262 if (likely(tctx && tctx->last == ctx))
9263 return 0;
eef51daa 9264 return __io_uring_add_tctx_node(ctx);
cf27f3b1
PB
9265}
9266
0f212204
JA
9267/*
9268 * Remove this io_uring_file -> task mapping.
9269 */
c072481d 9270static __cold void io_uring_del_tctx_node(unsigned long index)
0f212204
JA
9271{
9272 struct io_uring_task *tctx = current->io_uring;
13bf43f5 9273 struct io_tctx_node *node;
2941267b 9274
eebd2e37
PB
9275 if (!tctx)
9276 return;
13bf43f5
PB
9277 node = xa_erase(&tctx->xa, index);
9278 if (!node)
2941267b 9279 return;
0f212204 9280
13bf43f5
PB
9281 WARN_ON_ONCE(current != node->task);
9282 WARN_ON_ONCE(list_empty(&node->ctx_node));
9283
9284 mutex_lock(&node->ctx->uring_lock);
9285 list_del(&node->ctx_node);
9286 mutex_unlock(&node->ctx->uring_lock);
9287
baf186c4 9288 if (tctx->last == node->ctx)
0f212204 9289 tctx->last = NULL;
13bf43f5 9290 kfree(node);
0f212204
JA
9291}
9292
c072481d 9293static __cold void io_uring_clean_tctx(struct io_uring_task *tctx)
de7f1d9e 9294{
ba5ef6dc 9295 struct io_wq *wq = tctx->io_wq;
13bf43f5 9296 struct io_tctx_node *node;
de7f1d9e
PB
9297 unsigned long index;
9298
8bab4c09 9299 xa_for_each(&tctx->xa, index, node) {
eef51daa 9300 io_uring_del_tctx_node(index);
8bab4c09
JA
9301 cond_resched();
9302 }
b16ef427
ME
9303 if (wq) {
9304 /*
f6f9b278 9305 * Must be after io_uring_del_tctx_node() (removes nodes under
b16ef427
ME
9306 * uring_lock) to avoid race with io_uring_try_cancel_iowq().
9307 */
ba5ef6dc 9308 io_wq_put_and_exit(wq);
dadebc35 9309 tctx->io_wq = NULL;
b16ef427 9310 }
de7f1d9e
PB
9311}
9312
3f48cf18 9313static s64 tctx_inflight(struct io_uring_task *tctx, bool tracked)
521d6a73 9314{
3f48cf18 9315 if (tracked)
9cae36a0 9316 return atomic_read(&tctx->inflight_tracked);
521d6a73
PB
9317 return percpu_counter_sum(&tctx->inflight);
9318}
9319
78cc687b
PB
9320/*
9321 * Find any io_uring ctx that this task has registered or done IO on, and cancel
78a78060 9322 * requests. @sqd should be not-null IFF it's an SQPOLL thread cancellation.
78cc687b 9323 */
c072481d
PB
9324static __cold void io_uring_cancel_generic(bool cancel_all,
9325 struct io_sq_data *sqd)
0e9ddb39 9326{
521d6a73 9327 struct io_uring_task *tctx = current->io_uring;
734551df 9328 struct io_ring_ctx *ctx;
0e9ddb39
PB
9329 s64 inflight;
9330 DEFINE_WAIT(wait);
fdaf083c 9331
78cc687b
PB
9332 WARN_ON_ONCE(sqd && sqd->thread != current);
9333
6d042ffb
PO
9334 if (!current->io_uring)
9335 return;
17a91051
PB
9336 if (tctx->io_wq)
9337 io_wq_exit_start(tctx->io_wq);
9338
0e9ddb39
PB
9339 atomic_inc(&tctx->in_idle);
9340 do {
e9dbe221 9341 io_uring_drop_tctx_refs(current);
0e9ddb39 9342 /* read completions before cancelations */
78cc687b 9343 inflight = tctx_inflight(tctx, !cancel_all);
0e9ddb39
PB
9344 if (!inflight)
9345 break;
fdaf083c 9346
78cc687b
PB
9347 if (!sqd) {
9348 struct io_tctx_node *node;
9349 unsigned long index;
0f212204 9350
78cc687b
PB
9351 xa_for_each(&tctx->xa, index, node) {
9352 /* sqpoll task will cancel all its requests */
9353 if (node->ctx->sq_data)
9354 continue;
9355 io_uring_try_cancel_requests(node->ctx, current,
9356 cancel_all);
9357 }
9358 } else {
9359 list_for_each_entry(ctx, &sqd->ctx_list, sqd_list)
9360 io_uring_try_cancel_requests(ctx, current,
9361 cancel_all);
9362 }
17a91051 9363
78a78060
JA
9364 prepare_to_wait(&tctx->wait, &wait, TASK_INTERRUPTIBLE);
9365 io_run_task_work();
e9dbe221 9366 io_uring_drop_tctx_refs(current);
78a78060 9367
0f212204 9368 /*
a1bb3cd5
PB
9369 * If we've seen completions, retry without waiting. This
9370 * avoids a race where a completion comes in before we did
9371 * prepare_to_wait().
0f212204 9372 */
3dd0c97a 9373 if (inflight == tctx_inflight(tctx, !cancel_all))
a1bb3cd5 9374 schedule();
f57555ed 9375 finish_wait(&tctx->wait, &wait);
d8a6df10 9376 } while (1);
de7f1d9e 9377
8452d4a6 9378 io_uring_clean_tctx(tctx);
3dd0c97a 9379 if (cancel_all) {
3cc7fdb9
PB
9380 /*
9381 * We shouldn't run task_works after cancel, so just leave
9382 * ->in_idle set for normal exit.
9383 */
9384 atomic_dec(&tctx->in_idle);
3f48cf18
PB
9385 /* for exec all current's requests should be gone, kill tctx */
9386 __io_uring_free(current);
9387 }
44e728b8
PB
9388}
9389
f552a27a 9390void __io_uring_cancel(bool cancel_all)
78cc687b 9391{
f552a27a 9392 io_uring_cancel_generic(cancel_all, NULL);
78cc687b
PB
9393}
9394
e7a6c00d
JA
9395void io_uring_unreg_ringfd(void)
9396{
9397 struct io_uring_task *tctx = current->io_uring;
9398 int i;
9399
9400 for (i = 0; i < IO_RINGFD_REG_MAX; i++) {
9401 if (tctx->registered_rings[i]) {
9402 fput(tctx->registered_rings[i]);
9403 tctx->registered_rings[i] = NULL;
9404 }
9405 }
9406}
9407
9408static int io_ring_add_registered_fd(struct io_uring_task *tctx, int fd,
9409 int start, int end)
9410{
9411 struct file *file;
9412 int offset;
9413
9414 for (offset = start; offset < end; offset++) {
9415 offset = array_index_nospec(offset, IO_RINGFD_REG_MAX);
9416 if (tctx->registered_rings[offset])
9417 continue;
9418
9419 file = fget(fd);
9420 if (!file) {
9421 return -EBADF;
9422 } else if (file->f_op != &io_uring_fops) {
9423 fput(file);
9424 return -EOPNOTSUPP;
9425 }
9426 tctx->registered_rings[offset] = file;
9427 return offset;
9428 }
9429
9430 return -EBUSY;
9431}
9432
9433/*
9434 * Register a ring fd to avoid fdget/fdput for each io_uring_enter()
9435 * invocation. User passes in an array of struct io_uring_rsrc_update
9436 * with ->data set to the ring_fd, and ->offset given for the desired
9437 * index. If no index is desired, application may set ->offset == -1U
9438 * and we'll find an available index. Returns number of entries
9439 * successfully processed, or < 0 on error if none were processed.
9440 */
9441static int io_ringfd_register(struct io_ring_ctx *ctx, void __user *__arg,
9442 unsigned nr_args)
9443{
9444 struct io_uring_rsrc_update __user *arg = __arg;
9445 struct io_uring_rsrc_update reg;
9446 struct io_uring_task *tctx;
9447 int ret, i;
9448
9449 if (!nr_args || nr_args > IO_RINGFD_REG_MAX)
9450 return -EINVAL;
9451
9452 mutex_unlock(&ctx->uring_lock);
9453 ret = io_uring_add_tctx_node(ctx);
9454 mutex_lock(&ctx->uring_lock);
9455 if (ret)
9456 return ret;
9457
9458 tctx = current->io_uring;
9459 for (i = 0; i < nr_args; i++) {
9460 int start, end;
9461
9462 if (copy_from_user(&reg, &arg[i], sizeof(reg))) {
9463 ret = -EFAULT;
9464 break;
9465 }
9466
6fb53cf8
DY
9467 if (reg.resv) {
9468 ret = -EINVAL;
9469 break;
9470 }
9471
e7a6c00d
JA
9472 if (reg.offset == -1U) {
9473 start = 0;
9474 end = IO_RINGFD_REG_MAX;
9475 } else {
9476 if (reg.offset >= IO_RINGFD_REG_MAX) {
9477 ret = -EINVAL;
9478 break;
9479 }
9480 start = reg.offset;
9481 end = start + 1;
9482 }
9483
9484 ret = io_ring_add_registered_fd(tctx, reg.data, start, end);
9485 if (ret < 0)
9486 break;
9487
9488 reg.offset = ret;
9489 if (copy_to_user(&arg[i], &reg, sizeof(reg))) {
9490 fput(tctx->registered_rings[reg.offset]);
9491 tctx->registered_rings[reg.offset] = NULL;
9492 ret = -EFAULT;
9493 break;
9494 }
9495 }
9496
9497 return i ? i : ret;
9498}
9499
9500static int io_ringfd_unregister(struct io_ring_ctx *ctx, void __user *__arg,
9501 unsigned nr_args)
9502{
9503 struct io_uring_rsrc_update __user *arg = __arg;
9504 struct io_uring_task *tctx = current->io_uring;
9505 struct io_uring_rsrc_update reg;
9506 int ret = 0, i;
9507
9508 if (!nr_args || nr_args > IO_RINGFD_REG_MAX)
9509 return -EINVAL;
9510 if (!tctx)
9511 return 0;
9512
9513 for (i = 0; i < nr_args; i++) {
9514 if (copy_from_user(&reg, &arg[i], sizeof(reg))) {
9515 ret = -EFAULT;
9516 break;
9517 }
303cc749 9518 if (reg.resv || reg.data || reg.offset >= IO_RINGFD_REG_MAX) {
e7a6c00d
JA
9519 ret = -EINVAL;
9520 break;
9521 }
9522
9523 reg.offset = array_index_nospec(reg.offset, IO_RINGFD_REG_MAX);
9524 if (tctx->registered_rings[reg.offset]) {
9525 fput(tctx->registered_rings[reg.offset]);
9526 tctx->registered_rings[reg.offset] = NULL;
9527 }
9528 }
9529
9530 return i ? i : ret;
9531}
9532
6c5c240e
RP
9533static void *io_uring_validate_mmap_request(struct file *file,
9534 loff_t pgoff, size_t sz)
2b188cc1 9535{
2b188cc1 9536 struct io_ring_ctx *ctx = file->private_data;
6c5c240e 9537 loff_t offset = pgoff << PAGE_SHIFT;
2b188cc1
JA
9538 struct page *page;
9539 void *ptr;
9540
9541 switch (offset) {
9542 case IORING_OFF_SQ_RING:
75b28aff
HV
9543 case IORING_OFF_CQ_RING:
9544 ptr = ctx->rings;
2b188cc1
JA
9545 break;
9546 case IORING_OFF_SQES:
9547 ptr = ctx->sq_sqes;
9548 break;
2b188cc1 9549 default:
6c5c240e 9550 return ERR_PTR(-EINVAL);
2b188cc1
JA
9551 }
9552
9553 page = virt_to_head_page(ptr);
a50b854e 9554 if (sz > page_size(page))
6c5c240e
RP
9555 return ERR_PTR(-EINVAL);
9556
9557 return ptr;
9558}
9559
9560#ifdef CONFIG_MMU
9561
c072481d 9562static __cold int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
6c5c240e
RP
9563{
9564 size_t sz = vma->vm_end - vma->vm_start;
9565 unsigned long pfn;
9566 void *ptr;
9567
9568 ptr = io_uring_validate_mmap_request(file, vma->vm_pgoff, sz);
9569 if (IS_ERR(ptr))
9570 return PTR_ERR(ptr);
2b188cc1
JA
9571
9572 pfn = virt_to_phys(ptr) >> PAGE_SHIFT;
9573 return remap_pfn_range(vma, vma->vm_start, pfn, sz, vma->vm_page_prot);
9574}
9575
6c5c240e
RP
9576#else /* !CONFIG_MMU */
9577
9578static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
9579{
9580 return vma->vm_flags & (VM_SHARED | VM_MAYSHARE) ? 0 : -EINVAL;
9581}
9582
9583static unsigned int io_uring_nommu_mmap_capabilities(struct file *file)
9584{
9585 return NOMMU_MAP_DIRECT | NOMMU_MAP_READ | NOMMU_MAP_WRITE;
9586}
9587
9588static unsigned long io_uring_nommu_get_unmapped_area(struct file *file,
9589 unsigned long addr, unsigned long len,
9590 unsigned long pgoff, unsigned long flags)
9591{
9592 void *ptr;
9593
9594 ptr = io_uring_validate_mmap_request(file, pgoff, len);
9595 if (IS_ERR(ptr))
9596 return PTR_ERR(ptr);
9597
9598 return (unsigned long) ptr;
9599}
9600
9601#endif /* !CONFIG_MMU */
9602
d9d05217 9603static int io_sqpoll_wait_sq(struct io_ring_ctx *ctx)
90554200
JA
9604{
9605 DEFINE_WAIT(wait);
9606
9607 do {
9608 if (!io_sqring_full(ctx))
9609 break;
90554200
JA
9610 prepare_to_wait(&ctx->sqo_sq_wait, &wait, TASK_INTERRUPTIBLE);
9611
9612 if (!io_sqring_full(ctx))
9613 break;
90554200
JA
9614 schedule();
9615 } while (!signal_pending(current));
9616
9617 finish_wait(&ctx->sqo_sq_wait, &wait);
5199328a 9618 return 0;
90554200
JA
9619}
9620
f81440d3
PB
9621static int io_validate_ext_arg(unsigned flags, const void __user *argp, size_t argsz)
9622{
9623 if (flags & IORING_ENTER_EXT_ARG) {
9624 struct io_uring_getevents_arg arg;
9625
9626 if (argsz != sizeof(arg))
9627 return -EINVAL;
9628 if (copy_from_user(&arg, argp, sizeof(arg)))
9629 return -EFAULT;
9630 }
9631 return 0;
9632}
9633
c73ebb68
HX
9634static int io_get_ext_arg(unsigned flags, const void __user *argp, size_t *argsz,
9635 struct __kernel_timespec __user **ts,
9636 const sigset_t __user **sig)
9637{
9638 struct io_uring_getevents_arg arg;
9639
9640 /*
9641 * If EXT_ARG isn't set, then we have no timespec and the argp pointer
9642 * is just a pointer to the sigset_t.
9643 */
9644 if (!(flags & IORING_ENTER_EXT_ARG)) {
9645 *sig = (const sigset_t __user *) argp;
9646 *ts = NULL;
9647 return 0;
9648 }
9649
9650 /*
9651 * EXT_ARG is set - ensure we agree on the size of it and copy in our
9652 * timespec and sigset_t pointers if good.
9653 */
9654 if (*argsz != sizeof(arg))
9655 return -EINVAL;
9656 if (copy_from_user(&arg, argp, sizeof(arg)))
9657 return -EFAULT;
d2347b96
DY
9658 if (arg.pad)
9659 return -EINVAL;
c73ebb68
HX
9660 *sig = u64_to_user_ptr(arg.sigmask);
9661 *argsz = arg.sigmask_sz;
9662 *ts = u64_to_user_ptr(arg.ts);
9663 return 0;
9664}
9665
2b188cc1 9666SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
c73ebb68
HX
9667 u32, min_complete, u32, flags, const void __user *, argp,
9668 size_t, argsz)
2b188cc1
JA
9669{
9670 struct io_ring_ctx *ctx;
2b188cc1 9671 struct fd f;
33f993da 9672 long ret;
2b188cc1 9673
4c6e277c 9674 io_run_task_work();
b41e9852 9675
33f993da 9676 if (unlikely(flags & ~(IORING_ENTER_GETEVENTS | IORING_ENTER_SQ_WAKEUP |
e7a6c00d
JA
9677 IORING_ENTER_SQ_WAIT | IORING_ENTER_EXT_ARG |
9678 IORING_ENTER_REGISTERED_RING)))
2b188cc1
JA
9679 return -EINVAL;
9680
e7a6c00d
JA
9681 /*
9682 * Ring fd has been registered via IORING_REGISTER_RING_FDS, we
9683 * need only dereference our task private array to find it.
9684 */
9685 if (flags & IORING_ENTER_REGISTERED_RING) {
9686 struct io_uring_task *tctx = current->io_uring;
9687
9688 if (!tctx || fd >= IO_RINGFD_REG_MAX)
9689 return -EINVAL;
9690 fd = array_index_nospec(fd, IO_RINGFD_REG_MAX);
9691 f.file = tctx->registered_rings[fd];
4329490a 9692 f.flags = 0;
e7a6c00d
JA
9693 } else {
9694 f = fdget(fd);
e7a6c00d 9695 }
2b188cc1 9696
4329490a
AV
9697 if (unlikely(!f.file))
9698 return -EBADF;
9699
2b188cc1 9700 ret = -EOPNOTSUPP;
33f993da 9701 if (unlikely(f.file->f_op != &io_uring_fops))
2b188cc1
JA
9702 goto out_fput;
9703
9704 ret = -ENXIO;
9705 ctx = f.file->private_data;
33f993da 9706 if (unlikely(!percpu_ref_tryget(&ctx->refs)))
2b188cc1
JA
9707 goto out_fput;
9708
7e84e1c7 9709 ret = -EBADFD;
33f993da 9710 if (unlikely(ctx->flags & IORING_SETUP_R_DISABLED))
7e84e1c7
SG
9711 goto out;
9712
6c271ce2
JA
9713 /*
9714 * For SQ polling, the thread will do all submissions and completions.
9715 * Just return the requested submit count, and wake the thread if
9716 * we were asked to.
9717 */
b2a9eada 9718 ret = 0;
6c271ce2 9719 if (ctx->flags & IORING_SETUP_SQPOLL) {
90f67366 9720 io_cqring_overflow_flush(ctx);
89448c47 9721
21f96522
JA
9722 if (unlikely(ctx->sq_data->thread == NULL)) {
9723 ret = -EOWNERDEAD;
04147488 9724 goto out;
21f96522 9725 }
6c271ce2 9726 if (flags & IORING_ENTER_SQ_WAKEUP)
534ca6d6 9727 wake_up(&ctx->sq_data->wait);
d9d05217
PB
9728 if (flags & IORING_ENTER_SQ_WAIT) {
9729 ret = io_sqpoll_wait_sq(ctx);
9730 if (ret)
9731 goto out;
9732 }
3e813c90 9733 ret = to_submit;
b2a9eada 9734 } else if (to_submit) {
eef51daa 9735 ret = io_uring_add_tctx_node(ctx);
0f212204
JA
9736 if (unlikely(ret))
9737 goto out;
7c504e65 9738
2b188cc1 9739 mutex_lock(&ctx->uring_lock);
3e813c90
DY
9740 ret = io_submit_sqes(ctx, to_submit);
9741 if (ret != to_submit) {
d487b43c 9742 mutex_unlock(&ctx->uring_lock);
7c504e65 9743 goto out;
d487b43c
PB
9744 }
9745 if ((flags & IORING_ENTER_GETEVENTS) && ctx->syscall_iopoll)
9746 goto iopoll_locked;
9747 mutex_unlock(&ctx->uring_lock);
2b188cc1
JA
9748 }
9749 if (flags & IORING_ENTER_GETEVENTS) {
3e813c90 9750 int ret2;
773697b6 9751 if (ctx->syscall_iopoll) {
d487b43c
PB
9752 /*
9753 * We disallow the app entering submit/complete with
9754 * polling, but we still need to lock the ring to
9755 * prevent racing with polled issue that got punted to
9756 * a workqueue.
9757 */
9758 mutex_lock(&ctx->uring_lock);
9759iopoll_locked:
3e813c90
DY
9760 ret2 = io_validate_ext_arg(flags, argp, argsz);
9761 if (likely(!ret2)) {
9762 min_complete = min(min_complete,
9763 ctx->cq_entries);
9764 ret2 = io_iopoll_check(ctx, min_complete);
d487b43c
PB
9765 }
9766 mutex_unlock(&ctx->uring_lock);
def596e9 9767 } else {
f81440d3
PB
9768 const sigset_t __user *sig;
9769 struct __kernel_timespec __user *ts;
9770
3e813c90
DY
9771 ret2 = io_get_ext_arg(flags, argp, &argsz, &ts, &sig);
9772 if (likely(!ret2)) {
9773 min_complete = min(min_complete,
9774 ctx->cq_entries);
9775 ret2 = io_cqring_wait(ctx, min_complete, sig,
9776 argsz, ts);
9777 }
def596e9 9778 }
c73ebb68 9779
155bc950 9780 if (!ret) {
3e813c90 9781 ret = ret2;
2b188cc1 9782
155bc950
DY
9783 /*
9784 * EBADR indicates that one or more CQE were dropped.
9785 * Once the user has been informed we can clear the bit
9786 * as they are obviously ok with those drops.
9787 */
9788 if (unlikely(ret2 == -EBADR))
9789 clear_bit(IO_CHECK_CQ_DROPPED_BIT,
9790 &ctx->check_cq);
def596e9 9791 }
2b188cc1
JA
9792 }
9793
7c504e65 9794out:
6805b32e 9795 percpu_ref_put(&ctx->refs);
2b188cc1 9796out_fput:
4329490a 9797 fdput(f);
3e813c90 9798 return ret;
2b188cc1
JA
9799}
9800
bebdb65e 9801#ifdef CONFIG_PROC_FS
c072481d 9802static __cold int io_uring_show_cred(struct seq_file *m, unsigned int id,
61cf9370 9803 const struct cred *cred)
87ce955b 9804{
87ce955b
JA
9805 struct user_namespace *uns = seq_user_ns(m);
9806 struct group_info *gi;
9807 kernel_cap_t cap;
9808 unsigned __capi;
9809 int g;
9810
9811 seq_printf(m, "%5d\n", id);
9812 seq_put_decimal_ull(m, "\tUid:\t", from_kuid_munged(uns, cred->uid));
9813 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->euid));
9814 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->suid));
9815 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->fsuid));
9816 seq_put_decimal_ull(m, "\n\tGid:\t", from_kgid_munged(uns, cred->gid));
9817 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->egid));
9818 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->sgid));
9819 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->fsgid));
9820 seq_puts(m, "\n\tGroups:\t");
9821 gi = cred->group_info;
9822 for (g = 0; g < gi->ngroups; g++) {
9823 seq_put_decimal_ull(m, g ? " " : "",
9824 from_kgid_munged(uns, gi->gid[g]));
9825 }
9826 seq_puts(m, "\n\tCapEff:\t");
9827 cap = cred->cap_effective;
9828 CAP_FOR_EACH_U32(__capi)
9829 seq_put_hex_ll(m, NULL, cap.cap[CAP_LAST_U32 - __capi], 8);
9830 seq_putc(m, '\n');
9831 return 0;
9832}
9833
c072481d
PB
9834static __cold void __io_uring_show_fdinfo(struct io_ring_ctx *ctx,
9835 struct seq_file *m)
87ce955b 9836{
dbbe9c64 9837 struct io_sq_data *sq = NULL;
83f84356
HX
9838 struct io_overflow_cqe *ocqe;
9839 struct io_rings *r = ctx->rings;
9840 unsigned int sq_mask = ctx->sq_entries - 1, cq_mask = ctx->cq_entries - 1;
83f84356
HX
9841 unsigned int sq_head = READ_ONCE(r->sq.head);
9842 unsigned int sq_tail = READ_ONCE(r->sq.tail);
9843 unsigned int cq_head = READ_ONCE(r->cq.head);
9844 unsigned int cq_tail = READ_ONCE(r->cq.tail);
f9b3dfcc 9845 unsigned int cq_shift = 0;
f75d1183 9846 unsigned int sq_entries, cq_entries;
fad8e0de 9847 bool has_lock;
f9b3dfcc 9848 bool is_cqe32 = (ctx->flags & IORING_SETUP_CQE32);
83f84356
HX
9849 unsigned int i;
9850
f9b3dfcc
SR
9851 if (is_cqe32)
9852 cq_shift = 1;
9853
83f84356
HX
9854 /*
9855 * we may get imprecise sqe and cqe info if uring is actively running
9856 * since we get cached_sq_head and cached_cq_tail without uring_lock
9857 * and sq_tail and cq_head are changed by userspace. But it's ok since
9858 * we usually use these info when it is stuck.
9859 */
c0235652 9860 seq_printf(m, "SqMask:\t0x%x\n", sq_mask);
f75d1183
JA
9861 seq_printf(m, "SqHead:\t%u\n", sq_head);
9862 seq_printf(m, "SqTail:\t%u\n", sq_tail);
9863 seq_printf(m, "CachedSqHead:\t%u\n", ctx->cached_sq_head);
9864 seq_printf(m, "CqMask:\t0x%x\n", cq_mask);
9865 seq_printf(m, "CqHead:\t%u\n", cq_head);
9866 seq_printf(m, "CqTail:\t%u\n", cq_tail);
9867 seq_printf(m, "CachedCqTail:\t%u\n", ctx->cached_cq_tail);
9868 seq_printf(m, "SQEs:\t%u\n", sq_tail - ctx->cached_sq_head);
9869 sq_entries = min(sq_tail - sq_head, ctx->sq_entries);
9870 for (i = 0; i < sq_entries; i++) {
9871 unsigned int entry = i + sq_head;
9872 unsigned int sq_idx = READ_ONCE(ctx->sq_array[entry & sq_mask]);
a1957780 9873 struct io_uring_sqe *sqe;
f75d1183
JA
9874
9875 if (sq_idx > sq_mask)
9876 continue;
9877 sqe = &ctx->sq_sqes[sq_idx];
9878 seq_printf(m, "%5u: opcode:%d, fd:%d, flags:%x, user_data:%llu\n",
9879 sq_idx, sqe->opcode, sqe->fd, sqe->flags,
9880 sqe->user_data);
83f84356 9881 }
f75d1183
JA
9882 seq_printf(m, "CQEs:\t%u\n", cq_tail - cq_head);
9883 cq_entries = min(cq_tail - cq_head, ctx->cq_entries);
9884 for (i = 0; i < cq_entries; i++) {
9885 unsigned int entry = i + cq_head;
f9b3dfcc 9886 struct io_uring_cqe *cqe = &r->cqes[(entry & cq_mask) << cq_shift];
83f84356 9887
f9b3dfcc
SR
9888 if (!is_cqe32) {
9889 seq_printf(m, "%5u: user_data:%llu, res:%d, flag:%x\n",
f75d1183
JA
9890 entry & cq_mask, cqe->user_data, cqe->res,
9891 cqe->flags);
f9b3dfcc
SR
9892 } else {
9893 seq_printf(m, "%5u: user_data:%llu, res:%d, flag:%x, "
9894 "extra1:%llu, extra2:%llu\n",
9895 entry & cq_mask, cqe->user_data, cqe->res,
9896 cqe->flags, cqe->big_cqe[0], cqe->big_cqe[1]);
9897 }
83f84356 9898 }
87ce955b 9899
fad8e0de
JA
9900 /*
9901 * Avoid ABBA deadlock between the seq lock and the io_uring mutex,
9902 * since fdinfo case grabs it in the opposite direction of normal use
9903 * cases. If we fail to get the lock, we just don't iterate any
9904 * structures that could be going away outside the io_uring mutex.
9905 */
9906 has_lock = mutex_trylock(&ctx->uring_lock);
9907
5f3f26f9 9908 if (has_lock && (ctx->flags & IORING_SETUP_SQPOLL)) {
dbbe9c64 9909 sq = ctx->sq_data;
5f3f26f9
JA
9910 if (!sq->thread)
9911 sq = NULL;
9912 }
dbbe9c64
JQ
9913
9914 seq_printf(m, "SqThread:\t%d\n", sq ? task_pid_nr(sq->thread) : -1);
9915 seq_printf(m, "SqThreadCpu:\t%d\n", sq ? task_cpu(sq->thread) : -1);
87ce955b 9916 seq_printf(m, "UserFiles:\t%u\n", ctx->nr_user_files);
fad8e0de 9917 for (i = 0; has_lock && i < ctx->nr_user_files; i++) {
7b29f92d 9918 struct file *f = io_file_from_index(ctx, i);
87ce955b 9919
87ce955b
JA
9920 if (f)
9921 seq_printf(m, "%5u: %s\n", i, file_dentry(f)->d_iname);
9922 else
9923 seq_printf(m, "%5u: <none>\n", i);
9924 }
9925 seq_printf(m, "UserBufs:\t%u\n", ctx->nr_user_bufs);
fad8e0de 9926 for (i = 0; has_lock && i < ctx->nr_user_bufs; i++) {
41edf1a5 9927 struct io_mapped_ubuf *buf = ctx->user_bufs[i];
4751f53d 9928 unsigned int len = buf->ubuf_end - buf->ubuf;
87ce955b 9929
4751f53d 9930 seq_printf(m, "%5u: 0x%llx/%u\n", i, buf->ubuf, len);
87ce955b 9931 }
61cf9370
MWO
9932 if (has_lock && !xa_empty(&ctx->personalities)) {
9933 unsigned long index;
9934 const struct cred *cred;
9935
87ce955b 9936 seq_printf(m, "Personalities:\n");
61cf9370
MWO
9937 xa_for_each(&ctx->personalities, index, cred)
9938 io_uring_show_cred(m, index, cred);
87ce955b 9939 }
83f84356
HX
9940 if (has_lock)
9941 mutex_unlock(&ctx->uring_lock);
9942
9943 seq_puts(m, "PollList:\n");
79ebeaee 9944 spin_lock(&ctx->completion_lock);
d7718a9d
JA
9945 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
9946 struct hlist_head *list = &ctx->cancel_hash[i];
9947 struct io_kiocb *req;
9948
9949 hlist_for_each_entry(req, list, hash_node)
9950 seq_printf(m, " op=%d, task_works=%d\n", req->opcode,
7f62d40d 9951 task_work_pending(req->task));
d7718a9d 9952 }
83f84356
HX
9953
9954 seq_puts(m, "CqOverflowList:\n");
9955 list_for_each_entry(ocqe, &ctx->cq_overflow_list, list) {
9956 struct io_uring_cqe *cqe = &ocqe->cqe;
9957
9958 seq_printf(m, " user_data=%llu, res=%d, flags=%x\n",
9959 cqe->user_data, cqe->res, cqe->flags);
9960
9961 }
9962
79ebeaee 9963 spin_unlock(&ctx->completion_lock);
87ce955b
JA
9964}
9965
c072481d 9966static __cold void io_uring_show_fdinfo(struct seq_file *m, struct file *f)
87ce955b
JA
9967{
9968 struct io_ring_ctx *ctx = f->private_data;
9969
9970 if (percpu_ref_tryget(&ctx->refs)) {
9971 __io_uring_show_fdinfo(ctx, m);
9972 percpu_ref_put(&ctx->refs);
9973 }
9974}
bebdb65e 9975#endif
87ce955b 9976
2b188cc1
JA
9977static const struct file_operations io_uring_fops = {
9978 .release = io_uring_release,
9979 .mmap = io_uring_mmap,
6c5c240e
RP
9980#ifndef CONFIG_MMU
9981 .get_unmapped_area = io_uring_nommu_get_unmapped_area,
9982 .mmap_capabilities = io_uring_nommu_mmap_capabilities,
9983#endif
2b188cc1 9984 .poll = io_uring_poll,
bebdb65e 9985#ifdef CONFIG_PROC_FS
87ce955b 9986 .show_fdinfo = io_uring_show_fdinfo,
bebdb65e 9987#endif
2b188cc1
JA
9988};
9989
c072481d
PB
9990static __cold int io_allocate_scq_urings(struct io_ring_ctx *ctx,
9991 struct io_uring_params *p)
2b188cc1 9992{
75b28aff
HV
9993 struct io_rings *rings;
9994 size_t size, sq_array_offset;
2b188cc1 9995
bd740481
JA
9996 /* make sure these are sane, as we already accounted them */
9997 ctx->sq_entries = p->sq_entries;
9998 ctx->cq_entries = p->cq_entries;
9999
baf9cb64 10000 size = rings_size(ctx, p->sq_entries, p->cq_entries, &sq_array_offset);
75b28aff
HV
10001 if (size == SIZE_MAX)
10002 return -EOVERFLOW;
10003
10004 rings = io_mem_alloc(size);
10005 if (!rings)
2b188cc1
JA
10006 return -ENOMEM;
10007
75b28aff
HV
10008 ctx->rings = rings;
10009 ctx->sq_array = (u32 *)((char *)rings + sq_array_offset);
10010 rings->sq_ring_mask = p->sq_entries - 1;
10011 rings->cq_ring_mask = p->cq_entries - 1;
10012 rings->sq_ring_entries = p->sq_entries;
10013 rings->cq_ring_entries = p->cq_entries;
2b188cc1 10014
ebdeb7c0
JA
10015 if (p->flags & IORING_SETUP_SQE128)
10016 size = array_size(2 * sizeof(struct io_uring_sqe), p->sq_entries);
10017 else
10018 size = array_size(sizeof(struct io_uring_sqe), p->sq_entries);
eb065d30
JA
10019 if (size == SIZE_MAX) {
10020 io_mem_free(ctx->rings);
10021 ctx->rings = NULL;
2b188cc1 10022 return -EOVERFLOW;
eb065d30 10023 }
2b188cc1
JA
10024
10025 ctx->sq_sqes = io_mem_alloc(size);
eb065d30
JA
10026 if (!ctx->sq_sqes) {
10027 io_mem_free(ctx->rings);
10028 ctx->rings = NULL;
2b188cc1 10029 return -ENOMEM;
eb065d30 10030 }
2b188cc1 10031
2b188cc1
JA
10032 return 0;
10033}
10034
9faadcc8
PB
10035static int io_uring_install_fd(struct io_ring_ctx *ctx, struct file *file)
10036{
10037 int ret, fd;
10038
10039 fd = get_unused_fd_flags(O_RDWR | O_CLOEXEC);
10040 if (fd < 0)
10041 return fd;
10042
eef51daa 10043 ret = io_uring_add_tctx_node(ctx);
9faadcc8
PB
10044 if (ret) {
10045 put_unused_fd(fd);
10046 return ret;
10047 }
10048 fd_install(fd, file);
10049 return fd;
10050}
10051
2b188cc1
JA
10052/*
10053 * Allocate an anonymous fd, this is what constitutes the application
10054 * visible backing of an io_uring instance. The application mmaps this
10055 * fd to gain access to the SQ/CQ ring details. If UNIX sockets are enabled,
10056 * we have to tie this fd to a socket for file garbage collection purposes.
10057 */
9faadcc8 10058static struct file *io_uring_get_file(struct io_ring_ctx *ctx)
2b188cc1
JA
10059{
10060 struct file *file;
9faadcc8 10061#if defined(CONFIG_UNIX)
2b188cc1
JA
10062 int ret;
10063
2b188cc1
JA
10064 ret = sock_create_kern(&init_net, PF_UNIX, SOCK_RAW, IPPROTO_IP,
10065 &ctx->ring_sock);
10066 if (ret)
9faadcc8 10067 return ERR_PTR(ret);
2b188cc1
JA
10068#endif
10069
91a9ab7c
PM
10070 file = anon_inode_getfile_secure("[io_uring]", &io_uring_fops, ctx,
10071 O_RDWR | O_CLOEXEC, NULL);
2b188cc1 10072#if defined(CONFIG_UNIX)
9faadcc8
PB
10073 if (IS_ERR(file)) {
10074 sock_release(ctx->ring_sock);
10075 ctx->ring_sock = NULL;
10076 } else {
10077 ctx->ring_sock->file = file;
0f212204 10078 }
2b188cc1 10079#endif
9faadcc8 10080 return file;
2b188cc1
JA
10081}
10082
c072481d
PB
10083static __cold int io_uring_create(unsigned entries, struct io_uring_params *p,
10084 struct io_uring_params __user *params)
2b188cc1 10085{
2b188cc1 10086 struct io_ring_ctx *ctx;
9faadcc8 10087 struct file *file;
2b188cc1
JA
10088 int ret;
10089
8110c1a6 10090 if (!entries)
2b188cc1 10091 return -EINVAL;
8110c1a6
JA
10092 if (entries > IORING_MAX_ENTRIES) {
10093 if (!(p->flags & IORING_SETUP_CLAMP))
10094 return -EINVAL;
10095 entries = IORING_MAX_ENTRIES;
10096 }
2b188cc1
JA
10097
10098 /*
10099 * Use twice as many entries for the CQ ring. It's possible for the
10100 * application to drive a higher depth than the size of the SQ ring,
10101 * since the sqes are only used at submission time. This allows for
33a107f0
JA
10102 * some flexibility in overcommitting a bit. If the application has
10103 * set IORING_SETUP_CQSIZE, it will have passed in the desired number
10104 * of CQ ring entries manually.
2b188cc1
JA
10105 */
10106 p->sq_entries = roundup_pow_of_two(entries);
33a107f0
JA
10107 if (p->flags & IORING_SETUP_CQSIZE) {
10108 /*
10109 * If IORING_SETUP_CQSIZE is set, we do the same roundup
10110 * to a power-of-two, if it isn't already. We do NOT impose
10111 * any cq vs sq ring sizing.
10112 */
eb2667b3 10113 if (!p->cq_entries)
33a107f0 10114 return -EINVAL;
8110c1a6
JA
10115 if (p->cq_entries > IORING_MAX_CQ_ENTRIES) {
10116 if (!(p->flags & IORING_SETUP_CLAMP))
10117 return -EINVAL;
10118 p->cq_entries = IORING_MAX_CQ_ENTRIES;
10119 }
eb2667b3
JQ
10120 p->cq_entries = roundup_pow_of_two(p->cq_entries);
10121 if (p->cq_entries < p->sq_entries)
10122 return -EINVAL;
33a107f0
JA
10123 } else {
10124 p->cq_entries = 2 * p->sq_entries;
10125 }
2b188cc1 10126
2b188cc1 10127 ctx = io_ring_ctx_alloc(p);
62e398be 10128 if (!ctx)
2b188cc1 10129 return -ENOMEM;
773697b6
PB
10130
10131 /*
10132 * When SETUP_IOPOLL and SETUP_SQPOLL are both enabled, user
10133 * space applications don't need to do io completion events
10134 * polling again, they can rely on io_sq_thread to do polling
10135 * work, which can reduce cpu usage and uring_lock contention.
10136 */
10137 if (ctx->flags & IORING_SETUP_IOPOLL &&
10138 !(ctx->flags & IORING_SETUP_SQPOLL))
10139 ctx->syscall_iopoll = 1;
10140
2b188cc1 10141 ctx->compat = in_compat_syscall();
62e398be
JA
10142 if (!capable(CAP_IPC_LOCK))
10143 ctx->user = get_uid(current_user());
2aede0e4 10144
9f010507 10145 /*
e1169f06
JA
10146 * For SQPOLL, we just need a wakeup, always. For !SQPOLL, if
10147 * COOP_TASKRUN is set, then IPIs are never needed by the app.
9f010507 10148 */
e1169f06
JA
10149 ret = -EINVAL;
10150 if (ctx->flags & IORING_SETUP_SQPOLL) {
10151 /* IPI related flags don't make sense with SQPOLL */
ef060ea9
JA
10152 if (ctx->flags & (IORING_SETUP_COOP_TASKRUN |
10153 IORING_SETUP_TASKRUN_FLAG))
e1169f06 10154 goto err;
9f010507 10155 ctx->notify_method = TWA_SIGNAL_NO_IPI;
e1169f06
JA
10156 } else if (ctx->flags & IORING_SETUP_COOP_TASKRUN) {
10157 ctx->notify_method = TWA_SIGNAL_NO_IPI;
10158 } else {
ef060ea9
JA
10159 if (ctx->flags & IORING_SETUP_TASKRUN_FLAG)
10160 goto err;
9f010507 10161 ctx->notify_method = TWA_SIGNAL;
e1169f06 10162 }
9f010507 10163
2aede0e4
JA
10164 /*
10165 * This is just grabbed for accounting purposes. When a process exits,
10166 * the mm is exited and dropped before the files, hence we need to hang
10167 * on to this mm purely for the purposes of being able to unaccount
10168 * memory (locked/pinned vm). It's not used for anything else.
10169 */
6b7898eb 10170 mmgrab(current->mm);
2aede0e4 10171 ctx->mm_account = current->mm;
6b7898eb 10172
2b188cc1
JA
10173 ret = io_allocate_scq_urings(ctx, p);
10174 if (ret)
10175 goto err;
10176
7e84e1c7 10177 ret = io_sq_offload_create(ctx, p);
2b188cc1
JA
10178 if (ret)
10179 goto err;
eae071c9 10180 /* always set a rsrc node */
47b228ce
PB
10181 ret = io_rsrc_node_switch_start(ctx);
10182 if (ret)
10183 goto err;
eae071c9 10184 io_rsrc_node_switch(ctx, NULL);
2b188cc1 10185
2b188cc1 10186 memset(&p->sq_off, 0, sizeof(p->sq_off));
75b28aff
HV
10187 p->sq_off.head = offsetof(struct io_rings, sq.head);
10188 p->sq_off.tail = offsetof(struct io_rings, sq.tail);
10189 p->sq_off.ring_mask = offsetof(struct io_rings, sq_ring_mask);
10190 p->sq_off.ring_entries = offsetof(struct io_rings, sq_ring_entries);
10191 p->sq_off.flags = offsetof(struct io_rings, sq_flags);
10192 p->sq_off.dropped = offsetof(struct io_rings, sq_dropped);
10193 p->sq_off.array = (char *)ctx->sq_array - (char *)ctx->rings;
2b188cc1
JA
10194
10195 memset(&p->cq_off, 0, sizeof(p->cq_off));
75b28aff
HV
10196 p->cq_off.head = offsetof(struct io_rings, cq.head);
10197 p->cq_off.tail = offsetof(struct io_rings, cq.tail);
10198 p->cq_off.ring_mask = offsetof(struct io_rings, cq_ring_mask);
10199 p->cq_off.ring_entries = offsetof(struct io_rings, cq_ring_entries);
10200 p->cq_off.overflow = offsetof(struct io_rings, cq_overflow);
10201 p->cq_off.cqes = offsetof(struct io_rings, cqes);
0d9b5b3a 10202 p->cq_off.flags = offsetof(struct io_rings, cq_flags);
ac90f249 10203
7f13657d
XW
10204 p->features = IORING_FEAT_SINGLE_MMAP | IORING_FEAT_NODROP |
10205 IORING_FEAT_SUBMIT_STABLE | IORING_FEAT_RW_CUR_POS |
5769a351 10206 IORING_FEAT_CUR_PERSONALITY | IORING_FEAT_FAST_POLL |
c73ebb68 10207 IORING_FEAT_POLL_32BITS | IORING_FEAT_SQPOLL_NONFIXED |
9690557e 10208 IORING_FEAT_EXT_ARG | IORING_FEAT_NATIVE_WORKERS |
c4212f3e
JA
10209 IORING_FEAT_RSRC_TAGS | IORING_FEAT_CQE_SKIP |
10210 IORING_FEAT_LINKED_FILE;
7f13657d
XW
10211
10212 if (copy_to_user(params, p, sizeof(*p))) {
10213 ret = -EFAULT;
10214 goto err;
10215 }
d1719f70 10216
9faadcc8
PB
10217 file = io_uring_get_file(ctx);
10218 if (IS_ERR(file)) {
10219 ret = PTR_ERR(file);
10220 goto err;
10221 }
10222
044c1ab3
JA
10223 /*
10224 * Install ring fd as the very last thing, so we don't risk someone
10225 * having closed it before we finish setup
10226 */
9faadcc8
PB
10227 ret = io_uring_install_fd(ctx, file);
10228 if (ret < 0) {
10229 /* fput will clean it up */
10230 fput(file);
10231 return ret;
10232 }
044c1ab3 10233
c826bd7a 10234 trace_io_uring_create(ret, ctx, p->sq_entries, p->cq_entries, p->flags);
2b188cc1
JA
10235 return ret;
10236err:
10237 io_ring_ctx_wait_and_kill(ctx);
10238 return ret;
10239}
10240
10241/*
10242 * Sets up an aio uring context, and returns the fd. Applications asks for a
10243 * ring size, we return the actual sq/cq ring sizes (among other things) in the
10244 * params structure passed in.
10245 */
10246static long io_uring_setup(u32 entries, struct io_uring_params __user *params)
10247{
10248 struct io_uring_params p;
2b188cc1
JA
10249 int i;
10250
10251 if (copy_from_user(&p, params, sizeof(p)))
10252 return -EFAULT;
10253 for (i = 0; i < ARRAY_SIZE(p.resv); i++) {
10254 if (p.resv[i])
10255 return -EINVAL;
10256 }
10257
6c271ce2 10258 if (p.flags & ~(IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL |
8110c1a6 10259 IORING_SETUP_SQ_AFF | IORING_SETUP_CQSIZE |
7e84e1c7 10260 IORING_SETUP_CLAMP | IORING_SETUP_ATTACH_WQ |
e1169f06 10261 IORING_SETUP_R_DISABLED | IORING_SETUP_SUBMIT_ALL |
ebdeb7c0 10262 IORING_SETUP_COOP_TASKRUN | IORING_SETUP_TASKRUN_FLAG |
76c68fbf 10263 IORING_SETUP_SQE128 | IORING_SETUP_CQE32))
2b188cc1
JA
10264 return -EINVAL;
10265
ef060ea9 10266 return io_uring_create(entries, &p, params);
2b188cc1
JA
10267}
10268
10269SYSCALL_DEFINE2(io_uring_setup, u32, entries,
10270 struct io_uring_params __user *, params)
10271{
10272 return io_uring_setup(entries, params);
10273}
10274
c072481d
PB
10275static __cold int io_probe(struct io_ring_ctx *ctx, void __user *arg,
10276 unsigned nr_args)
66f4af93
JA
10277{
10278 struct io_uring_probe *p;
10279 size_t size;
10280 int i, ret;
10281
10282 size = struct_size(p, ops, nr_args);
10283 if (size == SIZE_MAX)
10284 return -EOVERFLOW;
10285 p = kzalloc(size, GFP_KERNEL);
10286 if (!p)
10287 return -ENOMEM;
10288
10289 ret = -EFAULT;
10290 if (copy_from_user(p, arg, size))
10291 goto out;
10292 ret = -EINVAL;
10293 if (memchr_inv(p, 0, size))
10294 goto out;
10295
10296 p->last_op = IORING_OP_LAST - 1;
10297 if (nr_args > IORING_OP_LAST)
10298 nr_args = IORING_OP_LAST;
10299
10300 for (i = 0; i < nr_args; i++) {
10301 p->ops[i].op = i;
10302 if (!io_op_defs[i].not_supported)
10303 p->ops[i].flags = IO_URING_OP_SUPPORTED;
10304 }
10305 p->ops_len = i;
10306
10307 ret = 0;
10308 if (copy_to_user(arg, p, size))
10309 ret = -EFAULT;
10310out:
10311 kfree(p);
10312 return ret;
10313}
10314
071698e1
JA
10315static int io_register_personality(struct io_ring_ctx *ctx)
10316{
4379bf8b 10317 const struct cred *creds;
61cf9370 10318 u32 id;
1e6fa521 10319 int ret;
071698e1 10320
4379bf8b 10321 creds = get_current_cred();
1e6fa521 10322
61cf9370
MWO
10323 ret = xa_alloc_cyclic(&ctx->personalities, &id, (void *)creds,
10324 XA_LIMIT(0, USHRT_MAX), &ctx->pers_next, GFP_KERNEL);
a30f895a
JA
10325 if (ret < 0) {
10326 put_cred(creds);
10327 return ret;
10328 }
10329 return id;
071698e1
JA
10330}
10331
c072481d
PB
10332static __cold int io_register_restrictions(struct io_ring_ctx *ctx,
10333 void __user *arg, unsigned int nr_args)
21b55dbc
SG
10334{
10335 struct io_uring_restriction *res;
10336 size_t size;
10337 int i, ret;
10338
7e84e1c7
SG
10339 /* Restrictions allowed only if rings started disabled */
10340 if (!(ctx->flags & IORING_SETUP_R_DISABLED))
10341 return -EBADFD;
10342
21b55dbc 10343 /* We allow only a single restrictions registration */
7e84e1c7 10344 if (ctx->restrictions.registered)
21b55dbc
SG
10345 return -EBUSY;
10346
10347 if (!arg || nr_args > IORING_MAX_RESTRICTIONS)
10348 return -EINVAL;
10349
10350 size = array_size(nr_args, sizeof(*res));
10351 if (size == SIZE_MAX)
10352 return -EOVERFLOW;
10353
10354 res = memdup_user(arg, size);
10355 if (IS_ERR(res))
10356 return PTR_ERR(res);
10357
10358 ret = 0;
10359
10360 for (i = 0; i < nr_args; i++) {
10361 switch (res[i].opcode) {
10362 case IORING_RESTRICTION_REGISTER_OP:
10363 if (res[i].register_op >= IORING_REGISTER_LAST) {
10364 ret = -EINVAL;
10365 goto out;
10366 }
10367
10368 __set_bit(res[i].register_op,
10369 ctx->restrictions.register_op);
10370 break;
10371 case IORING_RESTRICTION_SQE_OP:
10372 if (res[i].sqe_op >= IORING_OP_LAST) {
10373 ret = -EINVAL;
10374 goto out;
10375 }
10376
10377 __set_bit(res[i].sqe_op, ctx->restrictions.sqe_op);
10378 break;
10379 case IORING_RESTRICTION_SQE_FLAGS_ALLOWED:
10380 ctx->restrictions.sqe_flags_allowed = res[i].sqe_flags;
10381 break;
10382 case IORING_RESTRICTION_SQE_FLAGS_REQUIRED:
10383 ctx->restrictions.sqe_flags_required = res[i].sqe_flags;
10384 break;
10385 default:
10386 ret = -EINVAL;
10387 goto out;
10388 }
10389 }
10390
10391out:
10392 /* Reset all restrictions if an error happened */
10393 if (ret != 0)
10394 memset(&ctx->restrictions, 0, sizeof(ctx->restrictions));
10395 else
7e84e1c7 10396 ctx->restrictions.registered = true;
21b55dbc
SG
10397
10398 kfree(res);
10399 return ret;
10400}
10401
7e84e1c7
SG
10402static int io_register_enable_rings(struct io_ring_ctx *ctx)
10403{
10404 if (!(ctx->flags & IORING_SETUP_R_DISABLED))
10405 return -EBADFD;
10406
10407 if (ctx->restrictions.registered)
10408 ctx->restricted = 1;
10409
0298ef96
PB
10410 ctx->flags &= ~IORING_SETUP_R_DISABLED;
10411 if (ctx->sq_data && wq_has_sleeper(&ctx->sq_data->wait))
10412 wake_up(&ctx->sq_data->wait);
7e84e1c7
SG
10413 return 0;
10414}
10415
fdecb662 10416static int __io_register_rsrc_update(struct io_ring_ctx *ctx, unsigned type,
c3bdad02 10417 struct io_uring_rsrc_update2 *up,
98f0b3b4
PB
10418 unsigned nr_args)
10419{
10420 __u32 tmp;
10421 int err;
10422
10423 if (check_add_overflow(up->offset, nr_args, &tmp))
10424 return -EOVERFLOW;
10425 err = io_rsrc_node_switch_start(ctx);
10426 if (err)
10427 return err;
10428
fdecb662
PB
10429 switch (type) {
10430 case IORING_RSRC_FILE:
98f0b3b4 10431 return __io_sqe_files_update(ctx, up, nr_args);
634d00df
PB
10432 case IORING_RSRC_BUFFER:
10433 return __io_sqe_buffers_update(ctx, up, nr_args);
98f0b3b4
PB
10434 }
10435 return -EINVAL;
10436}
10437
c3bdad02
PB
10438static int io_register_files_update(struct io_ring_ctx *ctx, void __user *arg,
10439 unsigned nr_args)
98f0b3b4 10440{
c3bdad02 10441 struct io_uring_rsrc_update2 up;
98f0b3b4
PB
10442
10443 if (!nr_args)
10444 return -EINVAL;
c3bdad02
PB
10445 memset(&up, 0, sizeof(up));
10446 if (copy_from_user(&up, arg, sizeof(struct io_uring_rsrc_update)))
10447 return -EFAULT;
d8a3ba9c 10448 if (up.resv || up.resv2)
565c5e61 10449 return -EINVAL;
c3bdad02
PB
10450 return __io_register_rsrc_update(ctx, IORING_RSRC_FILE, &up, nr_args);
10451}
10452
10453static int io_register_rsrc_update(struct io_ring_ctx *ctx, void __user *arg,
992da01a 10454 unsigned size, unsigned type)
c3bdad02
PB
10455{
10456 struct io_uring_rsrc_update2 up;
10457
10458 if (size != sizeof(up))
10459 return -EINVAL;
98f0b3b4
PB
10460 if (copy_from_user(&up, arg, sizeof(up)))
10461 return -EFAULT;
d8a3ba9c 10462 if (!up.nr || up.resv || up.resv2)
98f0b3b4 10463 return -EINVAL;
992da01a 10464 return __io_register_rsrc_update(ctx, type, &up, up.nr);
98f0b3b4
PB
10465}
10466
c072481d 10467static __cold int io_register_rsrc(struct io_ring_ctx *ctx, void __user *arg,
992da01a 10468 unsigned int size, unsigned int type)
792e3582
PB
10469{
10470 struct io_uring_rsrc_register rr;
10471
10472 /* keep it extendible */
10473 if (size != sizeof(rr))
10474 return -EINVAL;
10475
10476 memset(&rr, 0, sizeof(rr));
10477 if (copy_from_user(&rr, arg, size))
10478 return -EFAULT;
a8da73a3
JA
10479 if (!rr.nr || rr.resv2)
10480 return -EINVAL;
10481 if (rr.flags & ~IORING_RSRC_REGISTER_SPARSE)
792e3582
PB
10482 return -EINVAL;
10483
992da01a 10484 switch (type) {
792e3582 10485 case IORING_RSRC_FILE:
a8da73a3
JA
10486 if (rr.flags & IORING_RSRC_REGISTER_SPARSE && rr.data)
10487 break;
792e3582
PB
10488 return io_sqe_files_register(ctx, u64_to_user_ptr(rr.data),
10489 rr.nr, u64_to_user_ptr(rr.tags));
634d00df 10490 case IORING_RSRC_BUFFER:
0184f08e 10491 if (rr.flags & IORING_RSRC_REGISTER_SPARSE && rr.data)
a8da73a3 10492 break;
634d00df
PB
10493 return io_sqe_buffers_register(ctx, u64_to_user_ptr(rr.data),
10494 rr.nr, u64_to_user_ptr(rr.tags));
792e3582
PB
10495 }
10496 return -EINVAL;
10497}
10498
c072481d
PB
10499static __cold int io_register_iowq_aff(struct io_ring_ctx *ctx,
10500 void __user *arg, unsigned len)
fe76421d
JA
10501{
10502 struct io_uring_task *tctx = current->io_uring;
10503 cpumask_var_t new_mask;
10504 int ret;
10505
10506 if (!tctx || !tctx->io_wq)
10507 return -EINVAL;
10508
10509 if (!alloc_cpumask_var(&new_mask, GFP_KERNEL))
10510 return -ENOMEM;
10511
10512 cpumask_clear(new_mask);
10513 if (len > cpumask_size())
10514 len = cpumask_size();
10515
0f5e4b83
ES
10516 if (in_compat_syscall()) {
10517 ret = compat_get_bitmap(cpumask_bits(new_mask),
10518 (const compat_ulong_t __user *)arg,
10519 len * 8 /* CHAR_BIT */);
10520 } else {
10521 ret = copy_from_user(new_mask, arg, len);
10522 }
10523
10524 if (ret) {
fe76421d
JA
10525 free_cpumask_var(new_mask);
10526 return -EFAULT;
10527 }
10528
10529 ret = io_wq_cpu_affinity(tctx->io_wq, new_mask);
10530 free_cpumask_var(new_mask);
10531 return ret;
10532}
10533
c072481d 10534static __cold int io_unregister_iowq_aff(struct io_ring_ctx *ctx)
fe76421d
JA
10535{
10536 struct io_uring_task *tctx = current->io_uring;
10537
10538 if (!tctx || !tctx->io_wq)
10539 return -EINVAL;
10540
10541 return io_wq_cpu_affinity(tctx->io_wq, NULL);
10542}
10543
c072481d
PB
10544static __cold int io_register_iowq_max_workers(struct io_ring_ctx *ctx,
10545 void __user *arg)
b22fa62a 10546 __must_hold(&ctx->uring_lock)
2e480058 10547{
b22fa62a 10548 struct io_tctx_node *node;
fa84693b
JA
10549 struct io_uring_task *tctx = NULL;
10550 struct io_sq_data *sqd = NULL;
2e480058
JA
10551 __u32 new_count[2];
10552 int i, ret;
10553
2e480058
JA
10554 if (copy_from_user(new_count, arg, sizeof(new_count)))
10555 return -EFAULT;
10556 for (i = 0; i < ARRAY_SIZE(new_count); i++)
10557 if (new_count[i] > INT_MAX)
10558 return -EINVAL;
10559
fa84693b
JA
10560 if (ctx->flags & IORING_SETUP_SQPOLL) {
10561 sqd = ctx->sq_data;
10562 if (sqd) {
009ad9f0
JA
10563 /*
10564 * Observe the correct sqd->lock -> ctx->uring_lock
10565 * ordering. Fine to drop uring_lock here, we hold
10566 * a ref to the ctx.
10567 */
41d3a6bd 10568 refcount_inc(&sqd->refs);
009ad9f0 10569 mutex_unlock(&ctx->uring_lock);
fa84693b 10570 mutex_lock(&sqd->lock);
009ad9f0 10571 mutex_lock(&ctx->uring_lock);
41d3a6bd
JA
10572 if (sqd->thread)
10573 tctx = sqd->thread->io_uring;
fa84693b
JA
10574 }
10575 } else {
10576 tctx = current->io_uring;
10577 }
10578
e139a1ec 10579 BUILD_BUG_ON(sizeof(new_count) != sizeof(ctx->iowq_limits));
fa84693b 10580
bad119b9
PB
10581 for (i = 0; i < ARRAY_SIZE(new_count); i++)
10582 if (new_count[i])
10583 ctx->iowq_limits[i] = new_count[i];
e139a1ec
PB
10584 ctx->iowq_limits_set = true;
10585
e139a1ec
PB
10586 if (tctx && tctx->io_wq) {
10587 ret = io_wq_max_workers(tctx->io_wq, new_count);
10588 if (ret)
10589 goto err;
10590 } else {
10591 memset(new_count, 0, sizeof(new_count));
10592 }
fa84693b 10593
41d3a6bd 10594 if (sqd) {
fa84693b 10595 mutex_unlock(&sqd->lock);
41d3a6bd
JA
10596 io_put_sq_data(sqd);
10597 }
2e480058
JA
10598
10599 if (copy_to_user(arg, new_count, sizeof(new_count)))
10600 return -EFAULT;
10601
b22fa62a
PB
10602 /* that's it for SQPOLL, only the SQPOLL task creates requests */
10603 if (sqd)
10604 return 0;
10605
10606 /* now propagate the restriction to all registered users */
10607 list_for_each_entry(node, &ctx->tctx_list, ctx_node) {
10608 struct io_uring_task *tctx = node->task->io_uring;
10609
10610 if (WARN_ON_ONCE(!tctx->io_wq))
10611 continue;
10612
10613 for (i = 0; i < ARRAY_SIZE(new_count); i++)
10614 new_count[i] = ctx->iowq_limits[i];
10615 /* ignore errors, it always returns zero anyway */
10616 (void)io_wq_max_workers(tctx->io_wq, new_count);
10617 }
2e480058 10618 return 0;
fa84693b 10619err:
41d3a6bd 10620 if (sqd) {
fa84693b 10621 mutex_unlock(&sqd->lock);
41d3a6bd
JA
10622 io_put_sq_data(sqd);
10623 }
fa84693b 10624 return ret;
2e480058
JA
10625}
10626
c7fb1942
JA
10627static int io_register_pbuf_ring(struct io_ring_ctx *ctx, void __user *arg)
10628{
10629 struct io_uring_buf_ring *br;
10630 struct io_uring_buf_reg reg;
ec8516f3 10631 struct io_buffer_list *bl, *free_bl = NULL;
c7fb1942
JA
10632 struct page **pages;
10633 int nr_pages;
10634
10635 if (copy_from_user(&reg, arg, sizeof(reg)))
10636 return -EFAULT;
10637
10638 if (reg.pad || reg.resv[0] || reg.resv[1] || reg.resv[2])
10639 return -EINVAL;
10640 if (!reg.ring_addr)
10641 return -EFAULT;
10642 if (reg.ring_addr & ~PAGE_MASK)
10643 return -EINVAL;
10644 if (!is_power_of_2(reg.ring_entries))
10645 return -EINVAL;
10646
f9437ac0
DY
10647 /* cannot disambiguate full vs empty due to head/tail size */
10648 if (reg.ring_entries >= 65536)
10649 return -EINVAL;
10650
c7fb1942
JA
10651 if (unlikely(reg.bgid < BGID_ARRAY && !ctx->io_bl)) {
10652 int ret = io_init_bl_list(ctx);
10653 if (ret)
10654 return ret;
10655 }
10656
10657 bl = io_buffer_get_list(ctx, reg.bgid);
2fcabce2
JA
10658 if (bl) {
10659 /* if mapped buffer ring OR classic exists, don't allow */
10660 if (bl->buf_nr_pages || !list_empty(&bl->buf_list))
10661 return -EEXIST;
10662 } else {
ec8516f3 10663 free_bl = bl = kzalloc(sizeof(*bl), GFP_KERNEL);
c7fb1942
JA
10664 if (!bl)
10665 return -ENOMEM;
10666 }
10667
10668 pages = io_pin_pages(reg.ring_addr,
10669 struct_size(br, bufs, reg.ring_entries),
10670 &nr_pages);
10671 if (IS_ERR(pages)) {
ec8516f3 10672 kfree(free_bl);
c7fb1942
JA
10673 return PTR_ERR(pages);
10674 }
10675
10676 br = page_address(pages[0]);
10677 bl->buf_pages = pages;
10678 bl->buf_nr_pages = nr_pages;
10679 bl->nr_entries = reg.ring_entries;
10680 bl->buf_ring = br;
10681 bl->mask = reg.ring_entries - 1;
10682 io_buffer_add_list(ctx, bl, reg.bgid);
10683 return 0;
10684}
10685
10686static int io_unregister_pbuf_ring(struct io_ring_ctx *ctx, void __user *arg)
10687{
10688 struct io_uring_buf_reg reg;
10689 struct io_buffer_list *bl;
10690
10691 if (copy_from_user(&reg, arg, sizeof(reg)))
10692 return -EFAULT;
10693 if (reg.pad || reg.resv[0] || reg.resv[1] || reg.resv[2])
10694 return -EINVAL;
10695
10696 bl = io_buffer_get_list(ctx, reg.bgid);
10697 if (!bl)
10698 return -ENOENT;
10699 if (!bl->buf_nr_pages)
10700 return -EINVAL;
10701
10702 __io_remove_buffers(ctx, bl, -1U);
10703 if (bl->bgid >= BGID_ARRAY) {
10704 xa_erase(&ctx->io_bl_xa, bl->bgid);
10705 kfree(bl);
10706 }
10707 return 0;
10708}
10709
edafccee
JA
10710static int __io_uring_register(struct io_ring_ctx *ctx, unsigned opcode,
10711 void __user *arg, unsigned nr_args)
b19062a5
JA
10712 __releases(ctx->uring_lock)
10713 __acquires(ctx->uring_lock)
edafccee
JA
10714{
10715 int ret;
10716
35fa71a0
JA
10717 /*
10718 * We're inside the ring mutex, if the ref is already dying, then
10719 * someone else killed the ctx or is already going through
10720 * io_uring_register().
10721 */
10722 if (percpu_ref_is_dying(&ctx->refs))
10723 return -ENXIO;
10724
75c4021a
PB
10725 if (ctx->restricted) {
10726 if (opcode >= IORING_REGISTER_LAST)
10727 return -EINVAL;
10728 opcode = array_index_nospec(opcode, IORING_REGISTER_LAST);
10729 if (!test_bit(opcode, ctx->restrictions.register_op))
10730 return -EACCES;
10731 }
10732
edafccee
JA
10733 switch (opcode) {
10734 case IORING_REGISTER_BUFFERS:
0184f08e
PB
10735 ret = -EFAULT;
10736 if (!arg)
10737 break;
634d00df 10738 ret = io_sqe_buffers_register(ctx, arg, nr_args, NULL);
edafccee
JA
10739 break;
10740 case IORING_UNREGISTER_BUFFERS:
10741 ret = -EINVAL;
10742 if (arg || nr_args)
10743 break;
0a96bbe4 10744 ret = io_sqe_buffers_unregister(ctx);
edafccee 10745 break;
6b06314c 10746 case IORING_REGISTER_FILES:
a8da73a3
JA
10747 ret = -EFAULT;
10748 if (!arg)
10749 break;
792e3582 10750 ret = io_sqe_files_register(ctx, arg, nr_args, NULL);
6b06314c
JA
10751 break;
10752 case IORING_UNREGISTER_FILES:
10753 ret = -EINVAL;
10754 if (arg || nr_args)
10755 break;
10756 ret = io_sqe_files_unregister(ctx);
10757 break;
c3a31e60 10758 case IORING_REGISTER_FILES_UPDATE:
c3bdad02 10759 ret = io_register_files_update(ctx, arg, nr_args);
c3a31e60 10760 break;
9b402849
JA
10761 case IORING_REGISTER_EVENTFD:
10762 ret = -EINVAL;
10763 if (nr_args != 1)
10764 break;
c75312dd
UA
10765 ret = io_eventfd_register(ctx, arg, 0);
10766 break;
10767 case IORING_REGISTER_EVENTFD_ASYNC:
10768 ret = -EINVAL;
10769 if (nr_args != 1)
f2842ab5 10770 break;
c75312dd 10771 ret = io_eventfd_register(ctx, arg, 1);
9b402849
JA
10772 break;
10773 case IORING_UNREGISTER_EVENTFD:
10774 ret = -EINVAL;
10775 if (arg || nr_args)
10776 break;
10777 ret = io_eventfd_unregister(ctx);
10778 break;
66f4af93
JA
10779 case IORING_REGISTER_PROBE:
10780 ret = -EINVAL;
10781 if (!arg || nr_args > 256)
10782 break;
10783 ret = io_probe(ctx, arg, nr_args);
10784 break;
071698e1
JA
10785 case IORING_REGISTER_PERSONALITY:
10786 ret = -EINVAL;
10787 if (arg || nr_args)
10788 break;
10789 ret = io_register_personality(ctx);
10790 break;
10791 case IORING_UNREGISTER_PERSONALITY:
10792 ret = -EINVAL;
10793 if (arg)
10794 break;
10795 ret = io_unregister_personality(ctx, nr_args);
10796 break;
7e84e1c7
SG
10797 case IORING_REGISTER_ENABLE_RINGS:
10798 ret = -EINVAL;
10799 if (arg || nr_args)
10800 break;
10801 ret = io_register_enable_rings(ctx);
10802 break;
21b55dbc
SG
10803 case IORING_REGISTER_RESTRICTIONS:
10804 ret = io_register_restrictions(ctx, arg, nr_args);
10805 break;
992da01a
PB
10806 case IORING_REGISTER_FILES2:
10807 ret = io_register_rsrc(ctx, arg, nr_args, IORING_RSRC_FILE);
10808 break;
10809 case IORING_REGISTER_FILES_UPDATE2:
10810 ret = io_register_rsrc_update(ctx, arg, nr_args,
10811 IORING_RSRC_FILE);
10812 break;
10813 case IORING_REGISTER_BUFFERS2:
10814 ret = io_register_rsrc(ctx, arg, nr_args, IORING_RSRC_BUFFER);
792e3582 10815 break;
992da01a
PB
10816 case IORING_REGISTER_BUFFERS_UPDATE:
10817 ret = io_register_rsrc_update(ctx, arg, nr_args,
10818 IORING_RSRC_BUFFER);
c3bdad02 10819 break;
fe76421d
JA
10820 case IORING_REGISTER_IOWQ_AFF:
10821 ret = -EINVAL;
10822 if (!arg || !nr_args)
10823 break;
10824 ret = io_register_iowq_aff(ctx, arg, nr_args);
10825 break;
10826 case IORING_UNREGISTER_IOWQ_AFF:
10827 ret = -EINVAL;
10828 if (arg || nr_args)
10829 break;
10830 ret = io_unregister_iowq_aff(ctx);
10831 break;
2e480058
JA
10832 case IORING_REGISTER_IOWQ_MAX_WORKERS:
10833 ret = -EINVAL;
10834 if (!arg || nr_args != 2)
10835 break;
10836 ret = io_register_iowq_max_workers(ctx, arg);
10837 break;
e7a6c00d
JA
10838 case IORING_REGISTER_RING_FDS:
10839 ret = io_ringfd_register(ctx, arg, nr_args);
10840 break;
10841 case IORING_UNREGISTER_RING_FDS:
10842 ret = io_ringfd_unregister(ctx, arg, nr_args);
10843 break;
c7fb1942
JA
10844 case IORING_REGISTER_PBUF_RING:
10845 ret = -EINVAL;
10846 if (!arg || nr_args != 1)
10847 break;
10848 ret = io_register_pbuf_ring(ctx, arg);
10849 break;
10850 case IORING_UNREGISTER_PBUF_RING:
10851 ret = -EINVAL;
10852 if (!arg || nr_args != 1)
10853 break;
10854 ret = io_unregister_pbuf_ring(ctx, arg);
10855 break;
edafccee
JA
10856 default:
10857 ret = -EINVAL;
10858 break;
10859 }
10860
edafccee
JA
10861 return ret;
10862}
10863
10864SYSCALL_DEFINE4(io_uring_register, unsigned int, fd, unsigned int, opcode,
10865 void __user *, arg, unsigned int, nr_args)
10866{
10867 struct io_ring_ctx *ctx;
10868 long ret = -EBADF;
10869 struct fd f;
10870
10871 f = fdget(fd);
10872 if (!f.file)
10873 return -EBADF;
10874
10875 ret = -EOPNOTSUPP;
10876 if (f.file->f_op != &io_uring_fops)
10877 goto out_fput;
10878
10879 ctx = f.file->private_data;
10880
b6c23dd5
PB
10881 io_run_task_work();
10882
edafccee
JA
10883 mutex_lock(&ctx->uring_lock);
10884 ret = __io_uring_register(ctx, opcode, arg, nr_args);
10885 mutex_unlock(&ctx->uring_lock);
2757be22 10886 trace_io_uring_register(ctx, opcode, ctx->nr_user_files, ctx->nr_user_bufs, ret);
edafccee
JA
10887out_fput:
10888 fdput(f);
10889 return ret;
10890}
10891
0702e536
JA
10892static int io_no_issue(struct io_kiocb *req, unsigned int issue_flags)
10893{
10894 WARN_ON_ONCE(1);
10895 return -ECANCELED;
10896}
10897
10898static const struct io_op_def io_op_defs[] = {
10899 [IORING_OP_NOP] = {
10900 .audit_skip = 1,
10901 .iopoll = 1,
10902 .prep = io_nop_prep,
10903 .issue = io_nop,
10904 },
10905 [IORING_OP_READV] = {
10906 .needs_file = 1,
10907 .unbound_nonreg_file = 1,
10908 .pollin = 1,
10909 .buffer_select = 1,
0702e536
JA
10910 .plug = 1,
10911 .audit_skip = 1,
10912 .ioprio = 1,
10913 .iopoll = 1,
10914 .async_size = sizeof(struct io_async_rw),
10915 .prep = io_prep_rw,
10916 .issue = io_read,
dc919caf 10917 .prep_async = io_readv_prep_async,
4d4c9cff 10918 .cleanup = io_readv_writev_cleanup,
0702e536
JA
10919 },
10920 [IORING_OP_WRITEV] = {
10921 .needs_file = 1,
10922 .hash_reg_file = 1,
10923 .unbound_nonreg_file = 1,
10924 .pollout = 1,
0702e536
JA
10925 .plug = 1,
10926 .audit_skip = 1,
10927 .ioprio = 1,
10928 .iopoll = 1,
10929 .async_size = sizeof(struct io_async_rw),
10930 .prep = io_prep_rw,
10931 .issue = io_write,
dc919caf 10932 .prep_async = io_writev_prep_async,
4d4c9cff 10933 .cleanup = io_readv_writev_cleanup,
0702e536
JA
10934 },
10935 [IORING_OP_FSYNC] = {
10936 .needs_file = 1,
10937 .audit_skip = 1,
10938 .prep = io_fsync_prep,
10939 .issue = io_fsync,
10940 },
10941 [IORING_OP_READ_FIXED] = {
10942 .needs_file = 1,
10943 .unbound_nonreg_file = 1,
10944 .pollin = 1,
10945 .plug = 1,
10946 .audit_skip = 1,
10947 .ioprio = 1,
10948 .iopoll = 1,
10949 .async_size = sizeof(struct io_async_rw),
10950 .prep = io_prep_rw,
10951 .issue = io_read,
10952 },
10953 [IORING_OP_WRITE_FIXED] = {
10954 .needs_file = 1,
10955 .hash_reg_file = 1,
10956 .unbound_nonreg_file = 1,
10957 .pollout = 1,
10958 .plug = 1,
10959 .audit_skip = 1,
10960 .ioprio = 1,
10961 .iopoll = 1,
10962 .async_size = sizeof(struct io_async_rw),
10963 .prep = io_prep_rw,
10964 .issue = io_write,
10965 },
10966 [IORING_OP_POLL_ADD] = {
10967 .needs_file = 1,
10968 .unbound_nonreg_file = 1,
10969 .audit_skip = 1,
10970 .prep = io_poll_add_prep,
10971 .issue = io_poll_add,
10972 },
10973 [IORING_OP_POLL_REMOVE] = {
10974 .audit_skip = 1,
10975 .prep = io_poll_remove_prep,
10976 .issue = io_poll_remove,
10977 },
10978 [IORING_OP_SYNC_FILE_RANGE] = {
10979 .needs_file = 1,
10980 .audit_skip = 1,
10981 .prep = io_sfr_prep,
10982 .issue = io_sync_file_range,
10983 },
10984 [IORING_OP_SENDMSG] = {
10985 .needs_file = 1,
10986 .unbound_nonreg_file = 1,
10987 .pollout = 1,
0702e536
JA
10988 .ioprio = 1,
10989 .async_size = sizeof(struct io_async_msghdr),
10990 .prep = io_sendmsg_prep,
10991 .issue = io_sendmsg,
dc919caf 10992 .prep_async = io_sendmsg_prep_async,
4d4c9cff
JA
10993#if defined(CONFIG_NET)
10994 .cleanup = io_sendmsg_recvmsg_cleanup,
10995#endif
0702e536
JA
10996 },
10997 [IORING_OP_RECVMSG] = {
10998 .needs_file = 1,
10999 .unbound_nonreg_file = 1,
11000 .pollin = 1,
11001 .buffer_select = 1,
0702e536
JA
11002 .ioprio = 1,
11003 .async_size = sizeof(struct io_async_msghdr),
11004 .prep = io_recvmsg_prep,
11005 .issue = io_recvmsg,
dc919caf 11006 .prep_async = io_recvmsg_prep_async,
4d4c9cff
JA
11007#if defined(CONFIG_NET)
11008 .cleanup = io_sendmsg_recvmsg_cleanup,
11009#endif
0702e536
JA
11010 },
11011 [IORING_OP_TIMEOUT] = {
11012 .audit_skip = 1,
11013 .async_size = sizeof(struct io_timeout_data),
11014 .prep = io_timeout_prep,
11015 .issue = io_timeout,
11016 },
11017 [IORING_OP_TIMEOUT_REMOVE] = {
11018 /* used by timeout updates' prep() */
11019 .audit_skip = 1,
11020 .prep = io_timeout_remove_prep,
11021 .issue = io_timeout_remove,
11022 },
11023 [IORING_OP_ACCEPT] = {
11024 .needs_file = 1,
11025 .unbound_nonreg_file = 1,
11026 .pollin = 1,
11027 .poll_exclusive = 1,
11028 .ioprio = 1, /* used for flags */
11029 .prep = io_accept_prep,
11030 .issue = io_accept,
11031 },
11032 [IORING_OP_ASYNC_CANCEL] = {
11033 .audit_skip = 1,
11034 .prep = io_async_cancel_prep,
11035 .issue = io_async_cancel,
11036 },
11037 [IORING_OP_LINK_TIMEOUT] = {
11038 .audit_skip = 1,
11039 .async_size = sizeof(struct io_timeout_data),
11040 .prep = io_link_timeout_prep,
11041 .issue = io_no_issue,
11042 },
11043 [IORING_OP_CONNECT] = {
11044 .needs_file = 1,
11045 .unbound_nonreg_file = 1,
11046 .pollout = 1,
0702e536
JA
11047 .async_size = sizeof(struct io_async_connect),
11048 .prep = io_connect_prep,
11049 .issue = io_connect,
dc919caf 11050 .prep_async = io_connect_prep_async,
0702e536
JA
11051 },
11052 [IORING_OP_FALLOCATE] = {
11053 .needs_file = 1,
11054 .prep = io_fallocate_prep,
11055 .issue = io_fallocate,
11056 },
11057 [IORING_OP_OPENAT] = {
11058 .prep = io_openat_prep,
11059 .issue = io_openat,
4d4c9cff 11060 .cleanup = io_open_cleanup,
0702e536
JA
11061 },
11062 [IORING_OP_CLOSE] = {
11063 .prep = io_close_prep,
11064 .issue = io_close,
11065 },
11066 [IORING_OP_FILES_UPDATE] = {
11067 .audit_skip = 1,
11068 .iopoll = 1,
11069 .prep = io_files_update_prep,
11070 .issue = io_files_update,
11071 },
11072 [IORING_OP_STATX] = {
11073 .audit_skip = 1,
11074 .prep = io_statx_prep,
11075 .issue = io_statx,
4d4c9cff 11076 .cleanup = io_statx_cleanup,
0702e536
JA
11077 },
11078 [IORING_OP_READ] = {
11079 .needs_file = 1,
11080 .unbound_nonreg_file = 1,
11081 .pollin = 1,
11082 .buffer_select = 1,
11083 .plug = 1,
11084 .audit_skip = 1,
11085 .ioprio = 1,
11086 .iopoll = 1,
11087 .async_size = sizeof(struct io_async_rw),
11088 .prep = io_prep_rw,
11089 .issue = io_read,
11090 },
11091 [IORING_OP_WRITE] = {
11092 .needs_file = 1,
11093 .hash_reg_file = 1,
11094 .unbound_nonreg_file = 1,
11095 .pollout = 1,
11096 .plug = 1,
11097 .audit_skip = 1,
11098 .ioprio = 1,
11099 .iopoll = 1,
11100 .async_size = sizeof(struct io_async_rw),
11101 .prep = io_prep_rw,
11102 .issue = io_write,
11103 },
11104 [IORING_OP_FADVISE] = {
11105 .needs_file = 1,
11106 .audit_skip = 1,
11107 .prep = io_fadvise_prep,
11108 .issue = io_fadvise,
11109 },
11110 [IORING_OP_MADVISE] = {
11111 .prep = io_madvise_prep,
11112 .issue = io_madvise,
11113 },
11114 [IORING_OP_SEND] = {
11115 .needs_file = 1,
11116 .unbound_nonreg_file = 1,
11117 .pollout = 1,
11118 .audit_skip = 1,
11119 .ioprio = 1,
11120 .prep = io_sendmsg_prep,
11121 .issue = io_send,
11122 },
11123 [IORING_OP_RECV] = {
11124 .needs_file = 1,
11125 .unbound_nonreg_file = 1,
11126 .pollin = 1,
11127 .buffer_select = 1,
11128 .audit_skip = 1,
11129 .ioprio = 1,
11130 .prep = io_recvmsg_prep,
11131 .issue = io_recv,
11132 },
11133 [IORING_OP_OPENAT2] = {
11134 .prep = io_openat2_prep,
11135 .issue = io_openat2,
4d4c9cff 11136 .cleanup = io_open_cleanup,
0702e536
JA
11137 },
11138 [IORING_OP_EPOLL_CTL] = {
11139 .unbound_nonreg_file = 1,
11140 .audit_skip = 1,
4cf90495 11141#if defined(CONFIG_EPOLL)
0702e536
JA
11142 .prep = io_epoll_ctl_prep,
11143 .issue = io_epoll_ctl,
4cf90495
JA
11144#else
11145 .prep = io_eopnotsupp_prep,
11146#endif
0702e536
JA
11147 },
11148 [IORING_OP_SPLICE] = {
11149 .needs_file = 1,
11150 .hash_reg_file = 1,
11151 .unbound_nonreg_file = 1,
11152 .audit_skip = 1,
11153 .prep = io_splice_prep,
11154 .issue = io_splice,
11155 },
11156 [IORING_OP_PROVIDE_BUFFERS] = {
11157 .audit_skip = 1,
11158 .iopoll = 1,
11159 .prep = io_provide_buffers_prep,
11160 .issue = io_provide_buffers,
11161 },
11162 [IORING_OP_REMOVE_BUFFERS] = {
11163 .audit_skip = 1,
11164 .iopoll = 1,
11165 .prep = io_remove_buffers_prep,
11166 .issue = io_remove_buffers,
11167 },
11168 [IORING_OP_TEE] = {
11169 .needs_file = 1,
11170 .hash_reg_file = 1,
11171 .unbound_nonreg_file = 1,
11172 .audit_skip = 1,
11173 .prep = io_tee_prep,
11174 .issue = io_tee,
11175 },
11176 [IORING_OP_SHUTDOWN] = {
11177 .needs_file = 1,
11178 .prep = io_shutdown_prep,
11179 .issue = io_shutdown,
11180 },
11181 [IORING_OP_RENAMEAT] = {
11182 .prep = io_renameat_prep,
11183 .issue = io_renameat,
4d4c9cff 11184 .cleanup = io_renameat_cleanup,
0702e536
JA
11185 },
11186 [IORING_OP_UNLINKAT] = {
11187 .prep = io_unlinkat_prep,
11188 .issue = io_unlinkat,
4d4c9cff 11189 .cleanup = io_unlinkat_cleanup,
0702e536
JA
11190 },
11191 [IORING_OP_MKDIRAT] = {
11192 .prep = io_mkdirat_prep,
11193 .issue = io_mkdirat,
4d4c9cff 11194 .cleanup = io_mkdirat_cleanup,
0702e536
JA
11195 },
11196 [IORING_OP_SYMLINKAT] = {
11197 .prep = io_symlinkat_prep,
11198 .issue = io_symlinkat,
4d4c9cff 11199 .cleanup = io_link_cleanup,
0702e536
JA
11200 },
11201 [IORING_OP_LINKAT] = {
11202 .prep = io_linkat_prep,
11203 .issue = io_linkat,
4d4c9cff 11204 .cleanup = io_link_cleanup,
0702e536
JA
11205 },
11206 [IORING_OP_MSG_RING] = {
11207 .needs_file = 1,
11208 .iopoll = 1,
11209 .prep = io_msg_ring_prep,
11210 .issue = io_msg_ring,
11211 },
11212 [IORING_OP_FSETXATTR] = {
11213 .needs_file = 1,
11214 .prep = io_fsetxattr_prep,
11215 .issue = io_fsetxattr,
4d4c9cff 11216 .cleanup = io_xattr_cleanup,
0702e536
JA
11217 },
11218 [IORING_OP_SETXATTR] = {
11219 .prep = io_setxattr_prep,
11220 .issue = io_setxattr,
4d4c9cff 11221 .cleanup = io_xattr_cleanup,
0702e536
JA
11222 },
11223 [IORING_OP_FGETXATTR] = {
11224 .needs_file = 1,
11225 .prep = io_fgetxattr_prep,
11226 .issue = io_fgetxattr,
4d4c9cff 11227 .cleanup = io_xattr_cleanup,
0702e536
JA
11228 },
11229 [IORING_OP_GETXATTR] = {
11230 .prep = io_getxattr_prep,
11231 .issue = io_getxattr,
4d4c9cff 11232 .cleanup = io_xattr_cleanup,
0702e536
JA
11233 },
11234 [IORING_OP_SOCKET] = {
11235 .audit_skip = 1,
11236 .prep = io_socket_prep,
11237 .issue = io_socket,
11238 },
11239 [IORING_OP_URING_CMD] = {
11240 .needs_file = 1,
11241 .plug = 1,
0702e536
JA
11242 .async_size = uring_cmd_pdu_size(1),
11243 .prep = io_uring_cmd_prep,
11244 .issue = io_uring_cmd,
dc919caf 11245 .prep_async = io_uring_cmd_prep_async,
0702e536
JA
11246 },
11247};
11248
2b188cc1
JA
11249static int __init io_uring_init(void)
11250{
0702e536
JA
11251 int i;
11252
d7f62e82
SM
11253#define __BUILD_BUG_VERIFY_ELEMENT(stype, eoffset, etype, ename) do { \
11254 BUILD_BUG_ON(offsetof(stype, ename) != eoffset); \
11255 BUILD_BUG_ON(sizeof(etype) != sizeof_field(stype, ename)); \
11256} while (0)
11257
11258#define BUILD_BUG_SQE_ELEM(eoffset, etype, ename) \
11259 __BUILD_BUG_VERIFY_ELEMENT(struct io_uring_sqe, eoffset, etype, ename)
11260 BUILD_BUG_ON(sizeof(struct io_uring_sqe) != 64);
11261 BUILD_BUG_SQE_ELEM(0, __u8, opcode);
11262 BUILD_BUG_SQE_ELEM(1, __u8, flags);
11263 BUILD_BUG_SQE_ELEM(2, __u16, ioprio);
11264 BUILD_BUG_SQE_ELEM(4, __s32, fd);
11265 BUILD_BUG_SQE_ELEM(8, __u64, off);
11266 BUILD_BUG_SQE_ELEM(8, __u64, addr2);
11267 BUILD_BUG_SQE_ELEM(16, __u64, addr);
7d67af2c 11268 BUILD_BUG_SQE_ELEM(16, __u64, splice_off_in);
d7f62e82
SM
11269 BUILD_BUG_SQE_ELEM(24, __u32, len);
11270 BUILD_BUG_SQE_ELEM(28, __kernel_rwf_t, rw_flags);
11271 BUILD_BUG_SQE_ELEM(28, /* compat */ int, rw_flags);
11272 BUILD_BUG_SQE_ELEM(28, /* compat */ __u32, rw_flags);
11273 BUILD_BUG_SQE_ELEM(28, __u32, fsync_flags);
5769a351
JX
11274 BUILD_BUG_SQE_ELEM(28, /* compat */ __u16, poll_events);
11275 BUILD_BUG_SQE_ELEM(28, __u32, poll32_events);
d7f62e82
SM
11276 BUILD_BUG_SQE_ELEM(28, __u32, sync_range_flags);
11277 BUILD_BUG_SQE_ELEM(28, __u32, msg_flags);
11278 BUILD_BUG_SQE_ELEM(28, __u32, timeout_flags);
11279 BUILD_BUG_SQE_ELEM(28, __u32, accept_flags);
11280 BUILD_BUG_SQE_ELEM(28, __u32, cancel_flags);
11281 BUILD_BUG_SQE_ELEM(28, __u32, open_flags);
11282 BUILD_BUG_SQE_ELEM(28, __u32, statx_flags);
11283 BUILD_BUG_SQE_ELEM(28, __u32, fadvise_advice);
7d67af2c 11284 BUILD_BUG_SQE_ELEM(28, __u32, splice_flags);
d7f62e82
SM
11285 BUILD_BUG_SQE_ELEM(32, __u64, user_data);
11286 BUILD_BUG_SQE_ELEM(40, __u16, buf_index);
16340eab 11287 BUILD_BUG_SQE_ELEM(40, __u16, buf_group);
d7f62e82 11288 BUILD_BUG_SQE_ELEM(42, __u16, personality);
7d67af2c 11289 BUILD_BUG_SQE_ELEM(44, __s32, splice_fd_in);
b9445598 11290 BUILD_BUG_SQE_ELEM(44, __u32, file_index);
e9621e2b 11291 BUILD_BUG_SQE_ELEM(48, __u64, addr3);
d7f62e82 11292
b0d658ec
PB
11293 BUILD_BUG_ON(sizeof(struct io_uring_files_update) !=
11294 sizeof(struct io_uring_rsrc_update));
11295 BUILD_BUG_ON(sizeof(struct io_uring_rsrc_update) >
11296 sizeof(struct io_uring_rsrc_update2));
90499ad0
PB
11297
11298 /* ->buf_index is u16 */
11299 BUILD_BUG_ON(IORING_MAX_REG_BUFFERS >= (1u << 16));
9cfc7e94 11300 BUILD_BUG_ON(BGID_ARRAY * sizeof(struct io_buffer_list) > PAGE_SIZE);
c7fb1942
JA
11301 BUILD_BUG_ON(offsetof(struct io_uring_buf_ring, bufs) != 0);
11302 BUILD_BUG_ON(offsetof(struct io_uring_buf, resv) !=
11303 offsetof(struct io_uring_buf_ring, tail));
90499ad0 11304
b0d658ec
PB
11305 /* should fit into one byte */
11306 BUILD_BUG_ON(SQE_VALID_FLAGS >= (1 << 8));
68fe256a
PB
11307 BUILD_BUG_ON(SQE_COMMON_FLAGS >= (1 << 8));
11308 BUILD_BUG_ON((SQE_VALID_FLAGS | SQE_COMMON_FLAGS) != SQE_VALID_FLAGS);
b0d658ec 11309
d3656344 11310 BUILD_BUG_ON(ARRAY_SIZE(io_op_defs) != IORING_OP_LAST);
32c2d33e 11311 BUILD_BUG_ON(__REQ_F_LAST_BIT > 8 * sizeof(int));
16340eab 11312
3a4b89a2
JA
11313 BUILD_BUG_ON(sizeof(atomic_t) != sizeof(u32));
11314
0702e536
JA
11315 for (i = 0; i < ARRAY_SIZE(io_op_defs); i++) {
11316 BUG_ON(!io_op_defs[i].prep);
4cf90495
JA
11317 if (io_op_defs[i].prep != io_eopnotsupp_prep)
11318 BUG_ON(!io_op_defs[i].issue);
0702e536
JA
11319 }
11320
91f245d5
JA
11321 req_cachep = KMEM_CACHE(io_kiocb, SLAB_HWCACHE_ALIGN | SLAB_PANIC |
11322 SLAB_ACCOUNT);
2b188cc1
JA
11323 return 0;
11324};
11325__initcall(io_uring_init);