blob: 759301bdb19b437dab9d43f9fe6361d7ae21d0ba [file] [log] [blame]
Jens Axboe2b188cc2019-01-07 10:46:33 -07001// 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
Stefan Bühler1e84b972019-04-24 23:54:16 +02007 * the application and kernel side.
8 *
9 * After the application reads the CQ ring tail, it must use an
10 * appropriate smp_rmb() to pair with the smp_wmb() the kernel uses
11 * before writing the tail (using smp_load_acquire to read the tail will
12 * do). It also needs a smp_mb() before updating CQ head (ordering the
13 * entry load(s) with the head store), pairing with an implicit barrier
14 * through a control-dependency in io_get_cqring (smp_store_release to
15 * store head will do). Failure to do so could lead to reading invalid
16 * CQ entries.
17 *
18 * Likewise, the application must use an appropriate smp_wmb() before
19 * writing the SQ tail (ordering SQ entry stores with the tail store),
20 * which pairs with smp_load_acquire in io_get_sqring (smp_store_release
21 * to store the tail will do). And it needs a barrier ordering the SQ
22 * head load before writing new SQ entries (smp_load_acquire to read
23 * head will do).
24 *
25 * When using the SQ poll thread (IORING_SETUP_SQPOLL), the application
26 * needs to check the SQ flags for IORING_SQ_NEED_WAKEUP *after*
27 * updating the SQ tail; a full memory barrier smp_mb() is needed
28 * between.
Jens Axboe2b188cc2019-01-07 10:46:33 -070029 *
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
Christoph Hellwigc992fe22019-01-11 09:43:02 -070040 * Copyright (c) 2018-2019 Christoph Hellwig
Jens Axboe2b188cc2019-01-07 10:46:33 -070041 */
42#include <linux/kernel.h>
43#include <linux/init.h>
44#include <linux/errno.h>
45#include <linux/syscalls.h>
46#include <linux/compat.h>
47#include <linux/refcount.h>
48#include <linux/uio.h>
Pavel Begunkov6b47ee62020-01-18 20:22:41 +030049#include <linux/bits.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070050
51#include <linux/sched/signal.h>
52#include <linux/fs.h>
53#include <linux/file.h>
54#include <linux/fdtable.h>
55#include <linux/mm.h>
56#include <linux/mman.h>
57#include <linux/mmu_context.h>
58#include <linux/percpu.h>
59#include <linux/slab.h>
Jens Axboe6c271ce2019-01-10 11:22:30 -070060#include <linux/kthread.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070061#include <linux/blkdev.h>
Jens Axboeedafcce2019-01-09 09:16:05 -070062#include <linux/bvec.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070063#include <linux/net.h>
64#include <net/sock.h>
65#include <net/af_unix.h>
Jens Axboe6b063142019-01-10 22:13:58 -070066#include <net/scm.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070067#include <linux/anon_inodes.h>
68#include <linux/sched/mm.h>
69#include <linux/uaccess.h>
70#include <linux/nospec.h>
Jens Axboeedafcce2019-01-09 09:16:05 -070071#include <linux/sizes.h>
72#include <linux/hugetlb.h>
Jens Axboeaa4c3962019-11-29 10:14:00 -070073#include <linux/highmem.h>
Jens Axboe15b71ab2019-12-11 11:20:36 -070074#include <linux/namei.h>
75#include <linux/fsnotify.h>
Jens Axboe4840e412019-12-25 22:03:45 -070076#include <linux/fadvise.h>
Jens Axboe3e4827b2020-01-08 15:18:09 -070077#include <linux/eventpoll.h>
Jens Axboeff002b32020-02-07 16:05:21 -070078#include <linux/fs_struct.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070079
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +020080#define CREATE_TRACE_POINTS
81#include <trace/events/io_uring.h>
82
Jens Axboe2b188cc2019-01-07 10:46:33 -070083#include <uapi/linux/io_uring.h>
84
85#include "internal.h"
Jens Axboe561fb042019-10-24 07:25:42 -060086#include "io-wq.h"
Jens Axboe2b188cc2019-01-07 10:46:33 -070087
Daniel Xu5277dea2019-09-14 14:23:45 -070088#define IORING_MAX_ENTRIES 32768
Jens Axboe33a107f2019-10-04 12:10:03 -060089#define IORING_MAX_CQ_ENTRIES (2 * IORING_MAX_ENTRIES)
Jens Axboe65e19f52019-10-26 07:20:21 -060090
91/*
92 * Shift of 9 is 512 entries, or exactly one page on 64-bit archs
93 */
94#define IORING_FILE_TABLE_SHIFT 9
95#define IORING_MAX_FILES_TABLE (1U << IORING_FILE_TABLE_SHIFT)
96#define IORING_FILE_TABLE_MASK (IORING_MAX_FILES_TABLE - 1)
97#define IORING_MAX_FIXED_FILES (64 * IORING_MAX_FILES_TABLE)
Jens Axboe2b188cc2019-01-07 10:46:33 -070098
99struct io_uring {
100 u32 head ____cacheline_aligned_in_smp;
101 u32 tail ____cacheline_aligned_in_smp;
102};
103
Stefan Bühler1e84b972019-04-24 23:54:16 +0200104/*
Hristo Venev75b28af2019-08-26 17:23:46 +0000105 * This data is shared with the application through the mmap at offsets
106 * IORING_OFF_SQ_RING and IORING_OFF_CQ_RING.
Stefan Bühler1e84b972019-04-24 23:54:16 +0200107 *
108 * The offsets to the member fields are published through struct
109 * io_sqring_offsets when calling io_uring_setup.
110 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000111struct io_rings {
Stefan Bühler1e84b972019-04-24 23:54:16 +0200112 /*
113 * Head and tail offsets into the ring; the offsets need to be
114 * masked to get valid indices.
115 *
Hristo Venev75b28af2019-08-26 17:23:46 +0000116 * The kernel controls head of the sq ring and the tail of the cq ring,
117 * and the application controls tail of the sq ring and the head of the
118 * cq ring.
Stefan Bühler1e84b972019-04-24 23:54:16 +0200119 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000120 struct io_uring sq, cq;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200121 /*
Hristo Venev75b28af2019-08-26 17:23:46 +0000122 * Bitmasks to apply to head and tail offsets (constant, equals
Stefan Bühler1e84b972019-04-24 23:54:16 +0200123 * ring_entries - 1)
124 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000125 u32 sq_ring_mask, cq_ring_mask;
126 /* Ring sizes (constant, power of 2) */
127 u32 sq_ring_entries, cq_ring_entries;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200128 /*
129 * Number of invalid entries dropped by the kernel due to
130 * invalid index stored in array
131 *
132 * Written by the kernel, shouldn't be modified by the
133 * application (i.e. get number of "new events" by comparing to
134 * cached value).
135 *
136 * After a new SQ head value was read by the application this
137 * counter includes all submissions that were dropped reaching
138 * the new SQ head (and possibly more).
139 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000140 u32 sq_dropped;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200141 /*
142 * Runtime flags
143 *
144 * Written by the kernel, shouldn't be modified by the
145 * application.
146 *
147 * The application needs a full memory barrier before checking
148 * for IORING_SQ_NEED_WAKEUP after updating the sq tail.
149 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000150 u32 sq_flags;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200151 /*
152 * Number of completion events lost because the queue was full;
153 * this should be avoided by the application by making sure
LimingWu0b4295b2019-12-05 20:18:18 +0800154 * there are not more requests pending than there is space in
Stefan Bühler1e84b972019-04-24 23:54:16 +0200155 * the completion queue.
156 *
157 * Written by the kernel, shouldn't be modified by the
158 * application (i.e. get number of "new events" by comparing to
159 * cached value).
160 *
161 * As completion events come in out of order this counter is not
162 * ordered with any other data.
163 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000164 u32 cq_overflow;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200165 /*
166 * Ring buffer of completion events.
167 *
168 * The kernel writes completion events fresh every time they are
169 * produced, so the application is allowed to modify pending
170 * entries.
171 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000172 struct io_uring_cqe cqes[] ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700173};
174
Jens Axboeedafcce2019-01-09 09:16:05 -0700175struct io_mapped_ubuf {
176 u64 ubuf;
177 size_t len;
178 struct bio_vec *bvec;
179 unsigned int nr_bvecs;
180};
181
Jens Axboe65e19f52019-10-26 07:20:21 -0600182struct fixed_file_table {
183 struct file **files;
Jens Axboe31b51512019-01-18 22:56:34 -0700184};
185
Jens Axboe05f3fb32019-12-09 11:22:50 -0700186enum {
187 FFD_F_ATOMIC,
188};
189
190struct fixed_file_data {
191 struct fixed_file_table *table;
192 struct io_ring_ctx *ctx;
193
194 struct percpu_ref refs;
195 struct llist_head put_llist;
196 unsigned long state;
197 struct work_struct ref_work;
198 struct completion done;
199};
200
Jens Axboe2b188cc2019-01-07 10:46:33 -0700201struct io_ring_ctx {
202 struct {
203 struct percpu_ref refs;
204 } ____cacheline_aligned_in_smp;
205
206 struct {
207 unsigned int flags;
Randy Dunlape1d85332020-02-05 20:57:10 -0800208 unsigned int compat: 1;
209 unsigned int account_mem: 1;
210 unsigned int cq_overflow_flushed: 1;
211 unsigned int drain_next: 1;
212 unsigned int eventfd_async: 1;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700213
Hristo Venev75b28af2019-08-26 17:23:46 +0000214 /*
215 * Ring buffer of indices into array of io_uring_sqe, which is
216 * mmapped by the application using the IORING_OFF_SQES offset.
217 *
218 * This indirection could e.g. be used to assign fixed
219 * io_uring_sqe entries to operations and only submit them to
220 * the queue when needed.
221 *
222 * The kernel modifies neither the indices array nor the entries
223 * array.
224 */
225 u32 *sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700226 unsigned cached_sq_head;
227 unsigned sq_entries;
228 unsigned sq_mask;
Jens Axboe6c271ce2019-01-10 11:22:30 -0700229 unsigned sq_thread_idle;
Jens Axboe498ccd92019-10-25 10:04:25 -0600230 unsigned cached_sq_dropped;
Jens Axboe206aefd2019-11-07 18:27:42 -0700231 atomic_t cached_cq_overflow;
Jens Axboead3eb2c2019-12-18 17:12:20 -0700232 unsigned long sq_check_overflow;
Jens Axboede0617e2019-04-06 21:51:27 -0600233
234 struct list_head defer_list;
Jens Axboe5262f562019-09-17 12:26:57 -0600235 struct list_head timeout_list;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700236 struct list_head cq_overflow_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700237
Jens Axboefcb323c2019-10-24 12:39:47 -0600238 wait_queue_head_t inflight_wait;
Jens Axboead3eb2c2019-12-18 17:12:20 -0700239 struct io_uring_sqe *sq_sqes;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700240 } ____cacheline_aligned_in_smp;
241
Hristo Venev75b28af2019-08-26 17:23:46 +0000242 struct io_rings *rings;
243
Jens Axboe2b188cc2019-01-07 10:46:33 -0700244 /* IO offload */
Jens Axboe561fb042019-10-24 07:25:42 -0600245 struct io_wq *io_wq;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700246 struct task_struct *sqo_thread; /* if using sq thread polling */
247 struct mm_struct *sqo_mm;
248 wait_queue_head_t sqo_wait;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700249
Jens Axboe6b063142019-01-10 22:13:58 -0700250 /*
251 * If used, fixed file set. Writers must ensure that ->refs is dead,
252 * readers must ensure that ->refs is alive as long as the file* is
253 * used. Only updated through io_uring_register(2).
254 */
Jens Axboe05f3fb32019-12-09 11:22:50 -0700255 struct fixed_file_data *file_data;
Jens Axboe6b063142019-01-10 22:13:58 -0700256 unsigned nr_user_files;
Pavel Begunkovb14cca02020-01-17 04:45:59 +0300257 int ring_fd;
258 struct file *ring_file;
Jens Axboe6b063142019-01-10 22:13:58 -0700259
Jens Axboeedafcce2019-01-09 09:16:05 -0700260 /* if used, fixed mapped user buffers */
261 unsigned nr_user_bufs;
262 struct io_mapped_ubuf *user_bufs;
263
Jens Axboe2b188cc2019-01-07 10:46:33 -0700264 struct user_struct *user;
265
Jens Axboe0b8c0ec2019-12-02 08:50:00 -0700266 const struct cred *creds;
Jens Axboe181e4482019-11-25 08:52:30 -0700267
Jens Axboe206aefd2019-11-07 18:27:42 -0700268 /* 0 is for ctx quiesce/reinit/free, 1 is for sqo_thread started */
269 struct completion *completions;
270
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700271 /* if all else fails... */
272 struct io_kiocb *fallback_req;
273
Jens Axboe206aefd2019-11-07 18:27:42 -0700274#if defined(CONFIG_UNIX)
275 struct socket *ring_sock;
276#endif
277
Jens Axboe071698e2020-01-28 10:04:42 -0700278 struct idr personality_idr;
279
Jens Axboe206aefd2019-11-07 18:27:42 -0700280 struct {
281 unsigned cached_cq_tail;
282 unsigned cq_entries;
283 unsigned cq_mask;
284 atomic_t cq_timeouts;
Jens Axboead3eb2c2019-12-18 17:12:20 -0700285 unsigned long cq_check_overflow;
Jens Axboe206aefd2019-11-07 18:27:42 -0700286 struct wait_queue_head cq_wait;
287 struct fasync_struct *cq_fasync;
288 struct eventfd_ctx *cq_ev_fd;
289 } ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700290
291 struct {
292 struct mutex uring_lock;
293 wait_queue_head_t wait;
294 } ____cacheline_aligned_in_smp;
295
296 struct {
297 spinlock_t completion_lock;
Jens Axboee94f1412019-12-19 12:06:02 -0700298 struct llist_head poll_llist;
299
Jens Axboedef596e2019-01-09 08:59:42 -0700300 /*
301 * ->poll_list is protected by the ctx->uring_lock for
302 * io_uring instances that don't use IORING_SETUP_SQPOLL.
303 * For SQPOLL, only the single threaded io_sq_thread() will
304 * manipulate the list, hence no extra locking is needed there.
305 */
306 struct list_head poll_list;
Jens Axboe78076bb2019-12-04 19:56:40 -0700307 struct hlist_head *cancel_hash;
308 unsigned cancel_hash_bits;
Jens Axboee94f1412019-12-19 12:06:02 -0700309 bool poll_multi_file;
Jens Axboefcb323c2019-10-24 12:39:47 -0600310
311 spinlock_t inflight_lock;
312 struct list_head inflight_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700313 } ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700314};
315
Jens Axboe09bb8392019-03-13 12:39:28 -0600316/*
317 * First field must be the file pointer in all the
318 * iocb unions! See also 'struct kiocb' in <linux/fs.h>
319 */
Jens Axboe221c5eb2019-01-17 09:41:58 -0700320struct io_poll_iocb {
321 struct file *file;
Jens Axboe0969e782019-12-17 18:40:57 -0700322 union {
323 struct wait_queue_head *head;
324 u64 addr;
325 };
Jens Axboe221c5eb2019-01-17 09:41:58 -0700326 __poll_t events;
Jens Axboe8c838782019-03-12 15:48:16 -0600327 bool done;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700328 bool canceled;
Jens Axboe392edb42019-12-09 17:52:20 -0700329 struct wait_queue_entry wait;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700330};
331
Jens Axboeb5dba592019-12-11 14:02:38 -0700332struct io_close {
333 struct file *file;
334 struct file *put_file;
335 int fd;
336};
337
Jens Axboead8a48a2019-11-15 08:49:11 -0700338struct io_timeout_data {
339 struct io_kiocb *req;
340 struct hrtimer timer;
341 struct timespec64 ts;
342 enum hrtimer_mode mode;
Pavel Begunkovcc42e0a2019-11-25 23:14:38 +0300343 u32 seq_offset;
Jens Axboead8a48a2019-11-15 08:49:11 -0700344};
345
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700346struct io_accept {
347 struct file *file;
348 struct sockaddr __user *addr;
349 int __user *addr_len;
350 int flags;
351};
352
353struct io_sync {
354 struct file *file;
355 loff_t len;
356 loff_t off;
357 int flags;
Jens Axboed63d1b52019-12-10 10:38:56 -0700358 int mode;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700359};
360
Jens Axboefbf23842019-12-17 18:45:56 -0700361struct io_cancel {
362 struct file *file;
363 u64 addr;
364};
365
Jens Axboeb29472e2019-12-17 18:50:29 -0700366struct io_timeout {
367 struct file *file;
368 u64 addr;
369 int flags;
Jens Axboe26a61672019-12-20 09:02:01 -0700370 unsigned count;
Jens Axboeb29472e2019-12-17 18:50:29 -0700371};
372
Jens Axboe9adbd452019-12-20 08:45:55 -0700373struct io_rw {
374 /* NOTE: kiocb has the file as the first member, so don't do it here */
375 struct kiocb kiocb;
376 u64 addr;
377 u64 len;
378};
379
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700380struct io_connect {
381 struct file *file;
382 struct sockaddr __user *addr;
383 int addr_len;
384};
385
Jens Axboee47293f2019-12-20 08:58:21 -0700386struct io_sr_msg {
387 struct file *file;
Jens Axboefddafac2020-01-04 20:19:44 -0700388 union {
389 struct user_msghdr __user *msg;
390 void __user *buf;
391 };
Jens Axboee47293f2019-12-20 08:58:21 -0700392 int msg_flags;
Jens Axboefddafac2020-01-04 20:19:44 -0700393 size_t len;
Jens Axboee47293f2019-12-20 08:58:21 -0700394};
395
Jens Axboe15b71ab2019-12-11 11:20:36 -0700396struct io_open {
397 struct file *file;
398 int dfd;
Jens Axboeeddc7ef2019-12-13 21:18:10 -0700399 union {
Jens Axboeeddc7ef2019-12-13 21:18:10 -0700400 unsigned mask;
401 };
Jens Axboe15b71ab2019-12-11 11:20:36 -0700402 struct filename *filename;
Jens Axboeeddc7ef2019-12-13 21:18:10 -0700403 struct statx __user *buffer;
Jens Axboec12cedf2020-01-08 17:41:21 -0700404 struct open_how how;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700405};
406
Jens Axboe05f3fb32019-12-09 11:22:50 -0700407struct io_files_update {
408 struct file *file;
409 u64 arg;
410 u32 nr_args;
411 u32 offset;
412};
413
Jens Axboe4840e412019-12-25 22:03:45 -0700414struct io_fadvise {
415 struct file *file;
416 u64 offset;
417 u32 len;
418 u32 advice;
419};
420
Jens Axboec1ca7572019-12-25 22:18:28 -0700421struct io_madvise {
422 struct file *file;
423 u64 addr;
424 u32 len;
425 u32 advice;
426};
427
Jens Axboe3e4827b2020-01-08 15:18:09 -0700428struct io_epoll {
429 struct file *file;
430 int epfd;
431 int op;
432 int fd;
433 struct epoll_event event;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700434};
435
Jens Axboef499a022019-12-02 16:28:46 -0700436struct io_async_connect {
437 struct sockaddr_storage address;
438};
439
Jens Axboe03b12302019-12-02 18:50:25 -0700440struct io_async_msghdr {
441 struct iovec fast_iov[UIO_FASTIOV];
442 struct iovec *iov;
443 struct sockaddr __user *uaddr;
444 struct msghdr msg;
445};
446
Jens Axboef67676d2019-12-02 11:03:47 -0700447struct io_async_rw {
448 struct iovec fast_iov[UIO_FASTIOV];
449 struct iovec *iov;
450 ssize_t nr_segs;
451 ssize_t size;
452};
453
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700454struct io_async_ctx {
Jens Axboef67676d2019-12-02 11:03:47 -0700455 union {
456 struct io_async_rw rw;
Jens Axboe03b12302019-12-02 18:50:25 -0700457 struct io_async_msghdr msg;
Jens Axboef499a022019-12-02 16:28:46 -0700458 struct io_async_connect connect;
Jens Axboe2d283902019-12-04 11:08:05 -0700459 struct io_timeout_data timeout;
Jens Axboef67676d2019-12-02 11:03:47 -0700460 };
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700461};
462
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300463enum {
464 REQ_F_FIXED_FILE_BIT = IOSQE_FIXED_FILE_BIT,
465 REQ_F_IO_DRAIN_BIT = IOSQE_IO_DRAIN_BIT,
466 REQ_F_LINK_BIT = IOSQE_IO_LINK_BIT,
467 REQ_F_HARDLINK_BIT = IOSQE_IO_HARDLINK_BIT,
468 REQ_F_FORCE_ASYNC_BIT = IOSQE_ASYNC_BIT,
469
470 REQ_F_LINK_NEXT_BIT,
471 REQ_F_FAIL_LINK_BIT,
472 REQ_F_INFLIGHT_BIT,
473 REQ_F_CUR_POS_BIT,
474 REQ_F_NOWAIT_BIT,
475 REQ_F_IOPOLL_COMPLETED_BIT,
476 REQ_F_LINK_TIMEOUT_BIT,
477 REQ_F_TIMEOUT_BIT,
478 REQ_F_ISREG_BIT,
479 REQ_F_MUST_PUNT_BIT,
480 REQ_F_TIMEOUT_NOSEQ_BIT,
481 REQ_F_COMP_LOCKED_BIT,
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300482 REQ_F_NEED_CLEANUP_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300483};
484
485enum {
486 /* ctx owns file */
487 REQ_F_FIXED_FILE = BIT(REQ_F_FIXED_FILE_BIT),
488 /* drain existing IO first */
489 REQ_F_IO_DRAIN = BIT(REQ_F_IO_DRAIN_BIT),
490 /* linked sqes */
491 REQ_F_LINK = BIT(REQ_F_LINK_BIT),
492 /* doesn't sever on completion < 0 */
493 REQ_F_HARDLINK = BIT(REQ_F_HARDLINK_BIT),
494 /* IOSQE_ASYNC */
495 REQ_F_FORCE_ASYNC = BIT(REQ_F_FORCE_ASYNC_BIT),
496
497 /* already grabbed next link */
498 REQ_F_LINK_NEXT = BIT(REQ_F_LINK_NEXT_BIT),
499 /* fail rest of links */
500 REQ_F_FAIL_LINK = BIT(REQ_F_FAIL_LINK_BIT),
501 /* on inflight list */
502 REQ_F_INFLIGHT = BIT(REQ_F_INFLIGHT_BIT),
503 /* read/write uses file position */
504 REQ_F_CUR_POS = BIT(REQ_F_CUR_POS_BIT),
505 /* must not punt to workers */
506 REQ_F_NOWAIT = BIT(REQ_F_NOWAIT_BIT),
507 /* polled IO has completed */
508 REQ_F_IOPOLL_COMPLETED = BIT(REQ_F_IOPOLL_COMPLETED_BIT),
509 /* has linked timeout */
510 REQ_F_LINK_TIMEOUT = BIT(REQ_F_LINK_TIMEOUT_BIT),
511 /* timeout request */
512 REQ_F_TIMEOUT = BIT(REQ_F_TIMEOUT_BIT),
513 /* regular file */
514 REQ_F_ISREG = BIT(REQ_F_ISREG_BIT),
515 /* must be punted even for NONBLOCK */
516 REQ_F_MUST_PUNT = BIT(REQ_F_MUST_PUNT_BIT),
517 /* no timeout sequence */
518 REQ_F_TIMEOUT_NOSEQ = BIT(REQ_F_TIMEOUT_NOSEQ_BIT),
519 /* completion under lock */
520 REQ_F_COMP_LOCKED = BIT(REQ_F_COMP_LOCKED_BIT),
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300521 /* needs cleanup */
522 REQ_F_NEED_CLEANUP = BIT(REQ_F_NEED_CLEANUP_BIT),
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300523};
524
Jens Axboe09bb8392019-03-13 12:39:28 -0600525/*
526 * NOTE! Each of the iocb union members has the file pointer
527 * as the first entry in their struct definition. So you can
528 * access the file pointer through any of the sub-structs,
529 * or directly as just 'ki_filp' in this struct.
530 */
Jens Axboe2b188cc2019-01-07 10:46:33 -0700531struct io_kiocb {
Jens Axboe221c5eb2019-01-17 09:41:58 -0700532 union {
Jens Axboe09bb8392019-03-13 12:39:28 -0600533 struct file *file;
Jens Axboe9adbd452019-12-20 08:45:55 -0700534 struct io_rw rw;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700535 struct io_poll_iocb poll;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700536 struct io_accept accept;
537 struct io_sync sync;
Jens Axboefbf23842019-12-17 18:45:56 -0700538 struct io_cancel cancel;
Jens Axboeb29472e2019-12-17 18:50:29 -0700539 struct io_timeout timeout;
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700540 struct io_connect connect;
Jens Axboee47293f2019-12-20 08:58:21 -0700541 struct io_sr_msg sr_msg;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700542 struct io_open open;
Jens Axboeb5dba592019-12-11 14:02:38 -0700543 struct io_close close;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700544 struct io_files_update files_update;
Jens Axboe4840e412019-12-25 22:03:45 -0700545 struct io_fadvise fadvise;
Jens Axboec1ca7572019-12-25 22:18:28 -0700546 struct io_madvise madvise;
Jens Axboe3e4827b2020-01-08 15:18:09 -0700547 struct io_epoll epoll;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700548 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700549
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700550 struct io_async_ctx *io;
Pavel Begunkovb14cca02020-01-17 04:45:59 +0300551 /*
552 * llist_node is only used for poll deferred completions
553 */
554 struct llist_node llist_node;
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +0300555 bool in_async;
556 bool needs_fixed_file;
Jens Axboed625c6e2019-12-17 19:53:05 -0700557 u8 opcode;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700558
559 struct io_ring_ctx *ctx;
Jens Axboeeac406c2019-11-14 12:09:58 -0700560 union {
561 struct list_head list;
Jens Axboe78076bb2019-12-04 19:56:40 -0700562 struct hlist_node hash_node;
Jens Axboeeac406c2019-11-14 12:09:58 -0700563 };
Jens Axboe9e645e112019-05-10 16:07:28 -0600564 struct list_head link_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700565 unsigned int flags;
Jens Axboec16361c2019-01-17 08:39:48 -0700566 refcount_t refs;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700567 u64 user_data;
Jens Axboe9e645e112019-05-10 16:07:28 -0600568 u32 result;
Jens Axboede0617e2019-04-06 21:51:27 -0600569 u32 sequence;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700570
Jens Axboefcb323c2019-10-24 12:39:47 -0600571 struct list_head inflight_entry;
572
Jens Axboe561fb042019-10-24 07:25:42 -0600573 struct io_wq_work work;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700574};
575
576#define IO_PLUG_THRESHOLD 2
Jens Axboedef596e2019-01-09 08:59:42 -0700577#define IO_IOPOLL_BATCH 8
Jens Axboe2b188cc2019-01-07 10:46:33 -0700578
Jens Axboe9a56a232019-01-09 09:06:50 -0700579struct io_submit_state {
580 struct blk_plug plug;
581
582 /*
Jens Axboe2579f912019-01-09 09:10:43 -0700583 * io_kiocb alloc cache
584 */
585 void *reqs[IO_IOPOLL_BATCH];
Pavel Begunkov6c8a3132020-02-01 03:58:00 +0300586 unsigned int free_reqs;
Jens Axboe2579f912019-01-09 09:10:43 -0700587
588 /*
Jens Axboe9a56a232019-01-09 09:06:50 -0700589 * File reference cache
590 */
591 struct file *file;
592 unsigned int fd;
593 unsigned int has_refs;
594 unsigned int used_refs;
595 unsigned int ios_left;
596};
597
Jens Axboed3656342019-12-18 09:50:26 -0700598struct io_op_def {
599 /* needs req->io allocated for deferral/async */
600 unsigned async_ctx : 1;
601 /* needs current->mm setup, does mm access */
602 unsigned needs_mm : 1;
603 /* needs req->file assigned */
604 unsigned needs_file : 1;
605 /* needs req->file assigned IFF fd is >= 0 */
606 unsigned fd_non_neg : 1;
607 /* hash wq insertion if file is a regular file */
608 unsigned hash_reg_file : 1;
609 /* unbound wq insertion if file is a non-regular file */
610 unsigned unbound_nonreg_file : 1;
Jens Axboe66f4af92020-01-16 15:36:52 -0700611 /* opcode is not supported by this kernel */
612 unsigned not_supported : 1;
Jens Axboef86cd202020-01-29 13:46:44 -0700613 /* needs file table */
614 unsigned file_table : 1;
Jens Axboeff002b32020-02-07 16:05:21 -0700615 /* needs ->fs */
616 unsigned needs_fs : 1;
Jens Axboed3656342019-12-18 09:50:26 -0700617};
618
619static const struct io_op_def io_op_defs[] = {
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300620 [IORING_OP_NOP] = {},
621 [IORING_OP_READV] = {
Jens Axboed3656342019-12-18 09:50:26 -0700622 .async_ctx = 1,
623 .needs_mm = 1,
624 .needs_file = 1,
625 .unbound_nonreg_file = 1,
626 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300627 [IORING_OP_WRITEV] = {
Jens Axboed3656342019-12-18 09:50:26 -0700628 .async_ctx = 1,
629 .needs_mm = 1,
630 .needs_file = 1,
631 .hash_reg_file = 1,
632 .unbound_nonreg_file = 1,
633 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300634 [IORING_OP_FSYNC] = {
Jens Axboed3656342019-12-18 09:50:26 -0700635 .needs_file = 1,
636 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300637 [IORING_OP_READ_FIXED] = {
Jens Axboed3656342019-12-18 09:50:26 -0700638 .needs_file = 1,
639 .unbound_nonreg_file = 1,
640 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300641 [IORING_OP_WRITE_FIXED] = {
Jens Axboed3656342019-12-18 09:50:26 -0700642 .needs_file = 1,
643 .hash_reg_file = 1,
644 .unbound_nonreg_file = 1,
645 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300646 [IORING_OP_POLL_ADD] = {
Jens Axboed3656342019-12-18 09:50:26 -0700647 .needs_file = 1,
648 .unbound_nonreg_file = 1,
649 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300650 [IORING_OP_POLL_REMOVE] = {},
651 [IORING_OP_SYNC_FILE_RANGE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700652 .needs_file = 1,
653 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300654 [IORING_OP_SENDMSG] = {
Jens Axboed3656342019-12-18 09:50:26 -0700655 .async_ctx = 1,
656 .needs_mm = 1,
657 .needs_file = 1,
658 .unbound_nonreg_file = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700659 .needs_fs = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700660 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300661 [IORING_OP_RECVMSG] = {
Jens Axboed3656342019-12-18 09:50:26 -0700662 .async_ctx = 1,
663 .needs_mm = 1,
664 .needs_file = 1,
665 .unbound_nonreg_file = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700666 .needs_fs = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700667 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300668 [IORING_OP_TIMEOUT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700669 .async_ctx = 1,
670 .needs_mm = 1,
671 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300672 [IORING_OP_TIMEOUT_REMOVE] = {},
673 [IORING_OP_ACCEPT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700674 .needs_mm = 1,
675 .needs_file = 1,
676 .unbound_nonreg_file = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700677 .file_table = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700678 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300679 [IORING_OP_ASYNC_CANCEL] = {},
680 [IORING_OP_LINK_TIMEOUT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700681 .async_ctx = 1,
682 .needs_mm = 1,
683 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300684 [IORING_OP_CONNECT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700685 .async_ctx = 1,
686 .needs_mm = 1,
687 .needs_file = 1,
688 .unbound_nonreg_file = 1,
689 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300690 [IORING_OP_FALLOCATE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700691 .needs_file = 1,
692 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300693 [IORING_OP_OPENAT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700694 .needs_file = 1,
695 .fd_non_neg = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700696 .file_table = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700697 .needs_fs = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700698 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300699 [IORING_OP_CLOSE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700700 .needs_file = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700701 .file_table = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700702 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300703 [IORING_OP_FILES_UPDATE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700704 .needs_mm = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700705 .file_table = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700706 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300707 [IORING_OP_STATX] = {
Jens Axboed3656342019-12-18 09:50:26 -0700708 .needs_mm = 1,
709 .needs_file = 1,
710 .fd_non_neg = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700711 .needs_fs = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700712 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300713 [IORING_OP_READ] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -0700714 .needs_mm = 1,
715 .needs_file = 1,
716 .unbound_nonreg_file = 1,
717 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300718 [IORING_OP_WRITE] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -0700719 .needs_mm = 1,
720 .needs_file = 1,
721 .unbound_nonreg_file = 1,
722 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300723 [IORING_OP_FADVISE] = {
Jens Axboe4840e412019-12-25 22:03:45 -0700724 .needs_file = 1,
725 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300726 [IORING_OP_MADVISE] = {
Jens Axboec1ca7572019-12-25 22:18:28 -0700727 .needs_mm = 1,
728 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300729 [IORING_OP_SEND] = {
Jens Axboefddafac2020-01-04 20:19:44 -0700730 .needs_mm = 1,
731 .needs_file = 1,
732 .unbound_nonreg_file = 1,
733 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300734 [IORING_OP_RECV] = {
Jens Axboefddafac2020-01-04 20:19:44 -0700735 .needs_mm = 1,
736 .needs_file = 1,
737 .unbound_nonreg_file = 1,
738 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300739 [IORING_OP_OPENAT2] = {
Jens Axboecebdb982020-01-08 17:59:24 -0700740 .needs_file = 1,
741 .fd_non_neg = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700742 .file_table = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700743 .needs_fs = 1,
Jens Axboecebdb982020-01-08 17:59:24 -0700744 },
Jens Axboe3e4827b2020-01-08 15:18:09 -0700745 [IORING_OP_EPOLL_CTL] = {
746 .unbound_nonreg_file = 1,
747 .file_table = 1,
748 },
Jens Axboed3656342019-12-18 09:50:26 -0700749};
750
Jens Axboe561fb042019-10-24 07:25:42 -0600751static void io_wq_submit_work(struct io_wq_work **workptr);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700752static void io_cqring_fill_event(struct io_kiocb *req, long res);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800753static void io_put_req(struct io_kiocb *req);
Jens Axboe978db572019-11-14 22:39:04 -0700754static void __io_double_put_req(struct io_kiocb *req);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700755static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req);
756static void io_queue_linked_timeout(struct io_kiocb *req);
Jens Axboe05f3fb32019-12-09 11:22:50 -0700757static int __io_sqe_files_update(struct io_ring_ctx *ctx,
758 struct io_uring_files_update *ip,
759 unsigned nr_args);
Jens Axboef86cd202020-01-29 13:46:44 -0700760static int io_grab_files(struct io_kiocb *req);
Jens Axboe2faf8522020-02-04 19:54:55 -0700761static void io_ring_file_ref_flush(struct fixed_file_data *data);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300762static void io_cleanup_req(struct io_kiocb *req);
Jens Axboede0617e2019-04-06 21:51:27 -0600763
Jens Axboe2b188cc2019-01-07 10:46:33 -0700764static struct kmem_cache *req_cachep;
765
766static const struct file_operations io_uring_fops;
767
768struct sock *io_uring_get_socket(struct file *file)
769{
770#if defined(CONFIG_UNIX)
771 if (file->f_op == &io_uring_fops) {
772 struct io_ring_ctx *ctx = file->private_data;
773
774 return ctx->ring_sock->sk;
775 }
776#endif
777 return NULL;
778}
779EXPORT_SYMBOL(io_uring_get_socket);
780
781static void io_ring_ctx_ref_free(struct percpu_ref *ref)
782{
783 struct io_ring_ctx *ctx = container_of(ref, struct io_ring_ctx, refs);
784
Jens Axboe206aefd2019-11-07 18:27:42 -0700785 complete(&ctx->completions[0]);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700786}
787
788static struct io_ring_ctx *io_ring_ctx_alloc(struct io_uring_params *p)
789{
790 struct io_ring_ctx *ctx;
Jens Axboe78076bb2019-12-04 19:56:40 -0700791 int hash_bits;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700792
793 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
794 if (!ctx)
795 return NULL;
796
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700797 ctx->fallback_req = kmem_cache_alloc(req_cachep, GFP_KERNEL);
798 if (!ctx->fallback_req)
799 goto err;
800
Jens Axboe206aefd2019-11-07 18:27:42 -0700801 ctx->completions = kmalloc(2 * sizeof(struct completion), GFP_KERNEL);
802 if (!ctx->completions)
803 goto err;
804
Jens Axboe78076bb2019-12-04 19:56:40 -0700805 /*
806 * Use 5 bits less than the max cq entries, that should give us around
807 * 32 entries per hash list if totally full and uniformly spread.
808 */
809 hash_bits = ilog2(p->cq_entries);
810 hash_bits -= 5;
811 if (hash_bits <= 0)
812 hash_bits = 1;
813 ctx->cancel_hash_bits = hash_bits;
814 ctx->cancel_hash = kmalloc((1U << hash_bits) * sizeof(struct hlist_head),
815 GFP_KERNEL);
816 if (!ctx->cancel_hash)
817 goto err;
818 __hash_init(ctx->cancel_hash, 1U << hash_bits);
819
Roman Gushchin21482892019-05-07 10:01:48 -0700820 if (percpu_ref_init(&ctx->refs, io_ring_ctx_ref_free,
Jens Axboe206aefd2019-11-07 18:27:42 -0700821 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL))
822 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700823
824 ctx->flags = p->flags;
825 init_waitqueue_head(&ctx->cq_wait);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700826 INIT_LIST_HEAD(&ctx->cq_overflow_list);
Jens Axboe206aefd2019-11-07 18:27:42 -0700827 init_completion(&ctx->completions[0]);
828 init_completion(&ctx->completions[1]);
Jens Axboe071698e2020-01-28 10:04:42 -0700829 idr_init(&ctx->personality_idr);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700830 mutex_init(&ctx->uring_lock);
831 init_waitqueue_head(&ctx->wait);
832 spin_lock_init(&ctx->completion_lock);
Jens Axboee94f1412019-12-19 12:06:02 -0700833 init_llist_head(&ctx->poll_llist);
Jens Axboedef596e2019-01-09 08:59:42 -0700834 INIT_LIST_HEAD(&ctx->poll_list);
Jens Axboede0617e2019-04-06 21:51:27 -0600835 INIT_LIST_HEAD(&ctx->defer_list);
Jens Axboe5262f562019-09-17 12:26:57 -0600836 INIT_LIST_HEAD(&ctx->timeout_list);
Jens Axboefcb323c2019-10-24 12:39:47 -0600837 init_waitqueue_head(&ctx->inflight_wait);
838 spin_lock_init(&ctx->inflight_lock);
839 INIT_LIST_HEAD(&ctx->inflight_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700840 return ctx;
Jens Axboe206aefd2019-11-07 18:27:42 -0700841err:
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700842 if (ctx->fallback_req)
843 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe206aefd2019-11-07 18:27:42 -0700844 kfree(ctx->completions);
Jens Axboe78076bb2019-12-04 19:56:40 -0700845 kfree(ctx->cancel_hash);
Jens Axboe206aefd2019-11-07 18:27:42 -0700846 kfree(ctx);
847 return NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700848}
849
Bob Liu9d858b22019-11-13 18:06:25 +0800850static inline bool __req_need_defer(struct io_kiocb *req)
Jens Axboede0617e2019-04-06 21:51:27 -0600851{
Jackie Liua197f662019-11-08 08:09:12 -0700852 struct io_ring_ctx *ctx = req->ctx;
853
Jens Axboe498ccd92019-10-25 10:04:25 -0600854 return req->sequence != ctx->cached_cq_tail + ctx->cached_sq_dropped
855 + atomic_read(&ctx->cached_cq_overflow);
Jens Axboede0617e2019-04-06 21:51:27 -0600856}
857
Bob Liu9d858b22019-11-13 18:06:25 +0800858static inline bool req_need_defer(struct io_kiocb *req)
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600859{
Pavel Begunkov87987892020-01-18 01:22:30 +0300860 if (unlikely(req->flags & REQ_F_IO_DRAIN))
Bob Liu9d858b22019-11-13 18:06:25 +0800861 return __req_need_defer(req);
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600862
Bob Liu9d858b22019-11-13 18:06:25 +0800863 return false;
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600864}
865
866static struct io_kiocb *io_get_deferred_req(struct io_ring_ctx *ctx)
Jens Axboede0617e2019-04-06 21:51:27 -0600867{
868 struct io_kiocb *req;
869
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600870 req = list_first_entry_or_null(&ctx->defer_list, struct io_kiocb, list);
Bob Liu9d858b22019-11-13 18:06:25 +0800871 if (req && !req_need_defer(req)) {
Jens Axboede0617e2019-04-06 21:51:27 -0600872 list_del_init(&req->list);
873 return req;
874 }
875
876 return NULL;
877}
878
Jens Axboe5262f562019-09-17 12:26:57 -0600879static struct io_kiocb *io_get_timeout_req(struct io_ring_ctx *ctx)
880{
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600881 struct io_kiocb *req;
882
883 req = list_first_entry_or_null(&ctx->timeout_list, struct io_kiocb, list);
Jens Axboe93bd25b2019-11-11 23:34:31 -0700884 if (req) {
885 if (req->flags & REQ_F_TIMEOUT_NOSEQ)
886 return NULL;
Linus Torvaldsfb4b3d32019-11-25 10:40:27 -0800887 if (!__req_need_defer(req)) {
Jens Axboe93bd25b2019-11-11 23:34:31 -0700888 list_del_init(&req->list);
889 return req;
890 }
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600891 }
892
893 return NULL;
Jens Axboe5262f562019-09-17 12:26:57 -0600894}
895
Jens Axboede0617e2019-04-06 21:51:27 -0600896static void __io_commit_cqring(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700897{
Hristo Venev75b28af2019-08-26 17:23:46 +0000898 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700899
Pavel Begunkov07910152020-01-17 03:52:46 +0300900 /* order cqe stores with ring update */
901 smp_store_release(&rings->cq.tail, ctx->cached_cq_tail);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700902
Pavel Begunkov07910152020-01-17 03:52:46 +0300903 if (wq_has_sleeper(&ctx->cq_wait)) {
904 wake_up_interruptible(&ctx->cq_wait);
905 kill_fasync(&ctx->cq_fasync, SIGIO, POLL_IN);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700906 }
907}
908
Jens Axboecccf0ee2020-01-27 16:34:48 -0700909static inline void io_req_work_grab_env(struct io_kiocb *req,
910 const struct io_op_def *def)
Jens Axboe18d9be12019-09-10 09:13:05 -0600911{
Jens Axboecccf0ee2020-01-27 16:34:48 -0700912 if (!req->work.mm && def->needs_mm) {
913 mmgrab(current->mm);
914 req->work.mm = current->mm;
915 }
916 if (!req->work.creds)
917 req->work.creds = get_current_cred();
Jens Axboeff002b32020-02-07 16:05:21 -0700918 if (!req->work.fs && def->needs_fs) {
919 spin_lock(&current->fs->lock);
920 if (!current->fs->in_exec) {
921 req->work.fs = current->fs;
922 req->work.fs->users++;
923 } else {
924 req->work.flags |= IO_WQ_WORK_CANCEL;
925 }
926 spin_unlock(&current->fs->lock);
927 }
Jens Axboecccf0ee2020-01-27 16:34:48 -0700928}
929
930static inline void io_req_work_drop_env(struct io_kiocb *req)
931{
932 if (req->work.mm) {
933 mmdrop(req->work.mm);
934 req->work.mm = NULL;
935 }
936 if (req->work.creds) {
937 put_cred(req->work.creds);
938 req->work.creds = NULL;
939 }
Jens Axboeff002b32020-02-07 16:05:21 -0700940 if (req->work.fs) {
941 struct fs_struct *fs = req->work.fs;
942
943 spin_lock(&req->work.fs->lock);
944 if (--fs->users)
945 fs = NULL;
946 spin_unlock(&req->work.fs->lock);
947 if (fs)
948 free_fs_struct(fs);
949 }
Jens Axboe561fb042019-10-24 07:25:42 -0600950}
951
Jens Axboe94ae5e72019-11-14 19:39:52 -0700952static inline bool io_prep_async_work(struct io_kiocb *req,
953 struct io_kiocb **link)
Jens Axboe561fb042019-10-24 07:25:42 -0600954{
Jens Axboed3656342019-12-18 09:50:26 -0700955 const struct io_op_def *def = &io_op_defs[req->opcode];
Jens Axboe561fb042019-10-24 07:25:42 -0600956 bool do_hashed = false;
Jens Axboe54a91f32019-09-10 09:15:04 -0600957
Jens Axboed3656342019-12-18 09:50:26 -0700958 if (req->flags & REQ_F_ISREG) {
959 if (def->hash_reg_file)
Jens Axboe3529d8c2019-12-19 18:24:38 -0700960 do_hashed = true;
Jens Axboed3656342019-12-18 09:50:26 -0700961 } else {
962 if (def->unbound_nonreg_file)
Jens Axboe3529d8c2019-12-19 18:24:38 -0700963 req->work.flags |= IO_WQ_WORK_UNBOUND;
Jens Axboe54a91f32019-09-10 09:15:04 -0600964 }
Jens Axboecccf0ee2020-01-27 16:34:48 -0700965
966 io_req_work_grab_env(req, def);
Jens Axboe54a91f32019-09-10 09:15:04 -0600967
Jens Axboe94ae5e72019-11-14 19:39:52 -0700968 *link = io_prep_linked_timeout(req);
Jens Axboe561fb042019-10-24 07:25:42 -0600969 return do_hashed;
970}
971
Jackie Liua197f662019-11-08 08:09:12 -0700972static inline void io_queue_async_work(struct io_kiocb *req)
Jens Axboe561fb042019-10-24 07:25:42 -0600973{
Jackie Liua197f662019-11-08 08:09:12 -0700974 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe94ae5e72019-11-14 19:39:52 -0700975 struct io_kiocb *link;
976 bool do_hashed;
977
978 do_hashed = io_prep_async_work(req, &link);
Jens Axboe561fb042019-10-24 07:25:42 -0600979
980 trace_io_uring_queue_async_work(ctx, do_hashed, req, &req->work,
981 req->flags);
982 if (!do_hashed) {
983 io_wq_enqueue(ctx->io_wq, &req->work);
984 } else {
985 io_wq_enqueue_hashed(ctx->io_wq, &req->work,
986 file_inode(req->file));
987 }
Jens Axboe94ae5e72019-11-14 19:39:52 -0700988
989 if (link)
990 io_queue_linked_timeout(link);
Jens Axboe18d9be12019-09-10 09:13:05 -0600991}
992
Jens Axboe5262f562019-09-17 12:26:57 -0600993static void io_kill_timeout(struct io_kiocb *req)
994{
995 int ret;
996
Jens Axboe2d283902019-12-04 11:08:05 -0700997 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe5262f562019-09-17 12:26:57 -0600998 if (ret != -1) {
999 atomic_inc(&req->ctx->cq_timeouts);
Jens Axboe842f9612019-10-29 12:34:10 -06001000 list_del_init(&req->list);
Jens Axboe78e19bb2019-11-06 15:21:34 -07001001 io_cqring_fill_event(req, 0);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001002 io_put_req(req);
Jens Axboe5262f562019-09-17 12:26:57 -06001003 }
1004}
1005
1006static void io_kill_timeouts(struct io_ring_ctx *ctx)
1007{
1008 struct io_kiocb *req, *tmp;
1009
1010 spin_lock_irq(&ctx->completion_lock);
1011 list_for_each_entry_safe(req, tmp, &ctx->timeout_list, list)
1012 io_kill_timeout(req);
1013 spin_unlock_irq(&ctx->completion_lock);
1014}
1015
Jens Axboede0617e2019-04-06 21:51:27 -06001016static void io_commit_cqring(struct io_ring_ctx *ctx)
1017{
1018 struct io_kiocb *req;
1019
Jens Axboe5262f562019-09-17 12:26:57 -06001020 while ((req = io_get_timeout_req(ctx)) != NULL)
1021 io_kill_timeout(req);
1022
Jens Axboede0617e2019-04-06 21:51:27 -06001023 __io_commit_cqring(ctx);
1024
Pavel Begunkov87987892020-01-18 01:22:30 +03001025 while ((req = io_get_deferred_req(ctx)) != NULL)
Jackie Liua197f662019-11-08 08:09:12 -07001026 io_queue_async_work(req);
Jens Axboede0617e2019-04-06 21:51:27 -06001027}
1028
Jens Axboe2b188cc2019-01-07 10:46:33 -07001029static struct io_uring_cqe *io_get_cqring(struct io_ring_ctx *ctx)
1030{
Hristo Venev75b28af2019-08-26 17:23:46 +00001031 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001032 unsigned tail;
1033
1034 tail = ctx->cached_cq_tail;
Stefan Bühler115e12e2019-04-24 23:54:18 +02001035 /*
1036 * writes to the cq entry need to come after reading head; the
1037 * control dependency is enough as we're using WRITE_ONCE to
1038 * fill the cq entry
1039 */
Hristo Venev75b28af2019-08-26 17:23:46 +00001040 if (tail - READ_ONCE(rings->cq.head) == rings->cq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001041 return NULL;
1042
1043 ctx->cached_cq_tail++;
Hristo Venev75b28af2019-08-26 17:23:46 +00001044 return &rings->cqes[tail & ctx->cq_mask];
Jens Axboe2b188cc2019-01-07 10:46:33 -07001045}
1046
Jens Axboef2842ab2020-01-08 11:04:00 -07001047static inline bool io_should_trigger_evfd(struct io_ring_ctx *ctx)
1048{
Jens Axboef0b493e2020-02-01 21:30:11 -07001049 if (!ctx->cq_ev_fd)
1050 return false;
Jens Axboef2842ab2020-01-08 11:04:00 -07001051 if (!ctx->eventfd_async)
1052 return true;
1053 return io_wq_current_is_worker() || in_interrupt();
1054}
1055
Jens Axboef0b493e2020-02-01 21:30:11 -07001056static void __io_cqring_ev_posted(struct io_ring_ctx *ctx, bool trigger_ev)
Jens Axboe8c838782019-03-12 15:48:16 -06001057{
1058 if (waitqueue_active(&ctx->wait))
1059 wake_up(&ctx->wait);
1060 if (waitqueue_active(&ctx->sqo_wait))
1061 wake_up(&ctx->sqo_wait);
Jens Axboef0b493e2020-02-01 21:30:11 -07001062 if (trigger_ev)
Jens Axboe9b402842019-04-11 11:45:41 -06001063 eventfd_signal(ctx->cq_ev_fd, 1);
Jens Axboe8c838782019-03-12 15:48:16 -06001064}
1065
Jens Axboef0b493e2020-02-01 21:30:11 -07001066static void io_cqring_ev_posted(struct io_ring_ctx *ctx)
1067{
1068 __io_cqring_ev_posted(ctx, io_should_trigger_evfd(ctx));
1069}
1070
Jens Axboec4a2ed72019-11-21 21:01:26 -07001071/* Returns true if there are no backlogged entries after the flush */
1072static bool io_cqring_overflow_flush(struct io_ring_ctx *ctx, bool force)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001073{
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001074 struct io_rings *rings = ctx->rings;
1075 struct io_uring_cqe *cqe;
1076 struct io_kiocb *req;
1077 unsigned long flags;
1078 LIST_HEAD(list);
1079
1080 if (!force) {
1081 if (list_empty_careful(&ctx->cq_overflow_list))
Jens Axboec4a2ed72019-11-21 21:01:26 -07001082 return true;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001083 if ((ctx->cached_cq_tail - READ_ONCE(rings->cq.head) ==
1084 rings->cq_ring_entries))
Jens Axboec4a2ed72019-11-21 21:01:26 -07001085 return false;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001086 }
1087
1088 spin_lock_irqsave(&ctx->completion_lock, flags);
1089
1090 /* if force is set, the ring is going away. always drop after that */
1091 if (force)
Jens Axboe69b3e542020-01-08 11:01:46 -07001092 ctx->cq_overflow_flushed = 1;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001093
Jens Axboec4a2ed72019-11-21 21:01:26 -07001094 cqe = NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001095 while (!list_empty(&ctx->cq_overflow_list)) {
1096 cqe = io_get_cqring(ctx);
1097 if (!cqe && !force)
1098 break;
1099
1100 req = list_first_entry(&ctx->cq_overflow_list, struct io_kiocb,
1101 list);
1102 list_move(&req->list, &list);
1103 if (cqe) {
1104 WRITE_ONCE(cqe->user_data, req->user_data);
1105 WRITE_ONCE(cqe->res, req->result);
1106 WRITE_ONCE(cqe->flags, 0);
1107 } else {
1108 WRITE_ONCE(ctx->rings->cq_overflow,
1109 atomic_inc_return(&ctx->cached_cq_overflow));
1110 }
1111 }
1112
1113 io_commit_cqring(ctx);
Jens Axboead3eb2c2019-12-18 17:12:20 -07001114 if (cqe) {
1115 clear_bit(0, &ctx->sq_check_overflow);
1116 clear_bit(0, &ctx->cq_check_overflow);
1117 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001118 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1119 io_cqring_ev_posted(ctx);
1120
1121 while (!list_empty(&list)) {
1122 req = list_first_entry(&list, struct io_kiocb, list);
1123 list_del(&req->list);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001124 io_put_req(req);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001125 }
Jens Axboec4a2ed72019-11-21 21:01:26 -07001126
1127 return cqe != NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001128}
1129
Jens Axboe78e19bb2019-11-06 15:21:34 -07001130static void io_cqring_fill_event(struct io_kiocb *req, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001131{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001132 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001133 struct io_uring_cqe *cqe;
1134
Jens Axboe78e19bb2019-11-06 15:21:34 -07001135 trace_io_uring_complete(ctx, req->user_data, res);
Jens Axboe51c3ff62019-11-03 06:52:50 -07001136
Jens Axboe2b188cc2019-01-07 10:46:33 -07001137 /*
1138 * If we can't get a cq entry, userspace overflowed the
1139 * submission (by quite a lot). Increment the overflow count in
1140 * the ring.
1141 */
1142 cqe = io_get_cqring(ctx);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001143 if (likely(cqe)) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001144 WRITE_ONCE(cqe->user_data, req->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001145 WRITE_ONCE(cqe->res, res);
1146 WRITE_ONCE(cqe->flags, 0);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001147 } else if (ctx->cq_overflow_flushed) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07001148 WRITE_ONCE(ctx->rings->cq_overflow,
1149 atomic_inc_return(&ctx->cached_cq_overflow));
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001150 } else {
Jens Axboead3eb2c2019-12-18 17:12:20 -07001151 if (list_empty(&ctx->cq_overflow_list)) {
1152 set_bit(0, &ctx->sq_check_overflow);
1153 set_bit(0, &ctx->cq_check_overflow);
1154 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001155 refcount_inc(&req->refs);
1156 req->result = res;
1157 list_add_tail(&req->list, &ctx->cq_overflow_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001158 }
1159}
1160
Jens Axboe78e19bb2019-11-06 15:21:34 -07001161static void io_cqring_add_event(struct io_kiocb *req, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001162{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001163 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001164 unsigned long flags;
1165
1166 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboe78e19bb2019-11-06 15:21:34 -07001167 io_cqring_fill_event(req, res);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001168 io_commit_cqring(ctx);
1169 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1170
Jens Axboe8c838782019-03-12 15:48:16 -06001171 io_cqring_ev_posted(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001172}
1173
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001174static inline bool io_is_fallback_req(struct io_kiocb *req)
1175{
1176 return req == (struct io_kiocb *)
1177 ((unsigned long) req->ctx->fallback_req & ~1UL);
1178}
1179
1180static struct io_kiocb *io_get_fallback_req(struct io_ring_ctx *ctx)
1181{
1182 struct io_kiocb *req;
1183
1184 req = ctx->fallback_req;
1185 if (!test_and_set_bit_lock(0, (unsigned long *) ctx->fallback_req))
1186 return req;
1187
1188 return NULL;
1189}
1190
Jens Axboe2579f912019-01-09 09:10:43 -07001191static struct io_kiocb *io_get_req(struct io_ring_ctx *ctx,
1192 struct io_submit_state *state)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001193{
Jens Axboefd6fab22019-03-14 16:30:06 -06001194 gfp_t gfp = GFP_KERNEL | __GFP_NOWARN;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001195 struct io_kiocb *req;
1196
Jens Axboe2579f912019-01-09 09:10:43 -07001197 if (!state) {
Jens Axboefd6fab22019-03-14 16:30:06 -06001198 req = kmem_cache_alloc(req_cachep, gfp);
Jens Axboe2579f912019-01-09 09:10:43 -07001199 if (unlikely(!req))
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001200 goto fallback;
Jens Axboe2579f912019-01-09 09:10:43 -07001201 } else if (!state->free_reqs) {
1202 size_t sz;
1203 int ret;
1204
1205 sz = min_t(size_t, state->ios_left, ARRAY_SIZE(state->reqs));
Jens Axboefd6fab22019-03-14 16:30:06 -06001206 ret = kmem_cache_alloc_bulk(req_cachep, gfp, sz, state->reqs);
1207
1208 /*
1209 * Bulk alloc is all-or-nothing. If we fail to get a batch,
1210 * retry single alloc to be on the safe side.
1211 */
1212 if (unlikely(ret <= 0)) {
1213 state->reqs[0] = kmem_cache_alloc(req_cachep, gfp);
1214 if (!state->reqs[0])
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001215 goto fallback;
Jens Axboefd6fab22019-03-14 16:30:06 -06001216 ret = 1;
1217 }
Jens Axboe2579f912019-01-09 09:10:43 -07001218 state->free_reqs = ret - 1;
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03001219 req = state->reqs[ret - 1];
Jens Axboe2579f912019-01-09 09:10:43 -07001220 } else {
Jens Axboe2579f912019-01-09 09:10:43 -07001221 state->free_reqs--;
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03001222 req = state->reqs[state->free_reqs];
Jens Axboe2b188cc2019-01-07 10:46:33 -07001223 }
1224
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001225got_it:
Jens Axboe1a6b74f2019-12-02 10:33:15 -07001226 req->io = NULL;
Jens Axboe60c112b2019-06-21 10:20:18 -06001227 req->file = NULL;
Jens Axboe2579f912019-01-09 09:10:43 -07001228 req->ctx = ctx;
1229 req->flags = 0;
Jens Axboee65ef562019-03-12 10:16:44 -06001230 /* one is dropped after submission, the other at completion */
1231 refcount_set(&req->refs, 2);
Jens Axboe9e645e112019-05-10 16:07:28 -06001232 req->result = 0;
Jens Axboe561fb042019-10-24 07:25:42 -06001233 INIT_IO_WORK(&req->work, io_wq_submit_work);
Jens Axboe2579f912019-01-09 09:10:43 -07001234 return req;
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001235fallback:
1236 req = io_get_fallback_req(ctx);
1237 if (req)
1238 goto got_it;
Pavel Begunkov6805b322019-10-08 02:18:42 +03001239 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001240 return NULL;
1241}
1242
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03001243static void __io_req_do_free(struct io_kiocb *req)
Jens Axboedef596e2019-01-09 08:59:42 -07001244{
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03001245 if (likely(!io_is_fallback_req(req)))
1246 kmem_cache_free(req_cachep, req);
1247 else
1248 clear_bit_unlock(0, (unsigned long *) req->ctx->fallback_req);
1249}
1250
Jens Axboec6ca97b302019-12-28 12:11:08 -07001251static void __io_req_aux_free(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001252{
Jens Axboefcb323c2019-10-24 12:39:47 -06001253 struct io_ring_ctx *ctx = req->ctx;
1254
YueHaibing96fd84d2020-01-07 22:22:44 +08001255 kfree(req->io);
Jens Axboe05f3fb32019-12-09 11:22:50 -07001256 if (req->file) {
1257 if (req->flags & REQ_F_FIXED_FILE)
1258 percpu_ref_put(&ctx->file_data->refs);
1259 else
1260 fput(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001261 }
Jens Axboecccf0ee2020-01-27 16:34:48 -07001262
1263 io_req_work_drop_env(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001264}
1265
1266static void __io_free_req(struct io_kiocb *req)
1267{
Jens Axboec6ca97b302019-12-28 12:11:08 -07001268 __io_req_aux_free(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001269
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03001270 if (req->flags & REQ_F_NEED_CLEANUP)
1271 io_cleanup_req(req);
1272
Jens Axboefcb323c2019-10-24 12:39:47 -06001273 if (req->flags & REQ_F_INFLIGHT) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001274 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06001275 unsigned long flags;
1276
1277 spin_lock_irqsave(&ctx->inflight_lock, flags);
1278 list_del(&req->inflight_entry);
1279 if (waitqueue_active(&ctx->inflight_wait))
1280 wake_up(&ctx->inflight_wait);
1281 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
1282 }
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03001283
1284 percpu_ref_put(&req->ctx->refs);
1285 __io_req_do_free(req);
Jens Axboee65ef562019-03-12 10:16:44 -06001286}
1287
Jens Axboec6ca97b302019-12-28 12:11:08 -07001288struct req_batch {
1289 void *reqs[IO_IOPOLL_BATCH];
1290 int to_free;
1291 int need_iter;
1292};
1293
1294static void io_free_req_many(struct io_ring_ctx *ctx, struct req_batch *rb)
1295{
Jens Axboe10fef4b2020-01-09 07:52:28 -07001296 int fixed_refs = rb->to_free;
1297
Jens Axboec6ca97b302019-12-28 12:11:08 -07001298 if (!rb->to_free)
1299 return;
1300 if (rb->need_iter) {
1301 int i, inflight = 0;
1302 unsigned long flags;
1303
Jens Axboe10fef4b2020-01-09 07:52:28 -07001304 fixed_refs = 0;
Jens Axboec6ca97b302019-12-28 12:11:08 -07001305 for (i = 0; i < rb->to_free; i++) {
1306 struct io_kiocb *req = rb->reqs[i];
1307
Jens Axboe10fef4b2020-01-09 07:52:28 -07001308 if (req->flags & REQ_F_FIXED_FILE) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001309 req->file = NULL;
Jens Axboe10fef4b2020-01-09 07:52:28 -07001310 fixed_refs++;
1311 }
Jens Axboec6ca97b302019-12-28 12:11:08 -07001312 if (req->flags & REQ_F_INFLIGHT)
1313 inflight++;
Jens Axboec6ca97b302019-12-28 12:11:08 -07001314 __io_req_aux_free(req);
1315 }
1316 if (!inflight)
1317 goto do_free;
1318
1319 spin_lock_irqsave(&ctx->inflight_lock, flags);
1320 for (i = 0; i < rb->to_free; i++) {
1321 struct io_kiocb *req = rb->reqs[i];
1322
Jens Axboe10fef4b2020-01-09 07:52:28 -07001323 if (req->flags & REQ_F_INFLIGHT) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001324 list_del(&req->inflight_entry);
1325 if (!--inflight)
1326 break;
1327 }
1328 }
1329 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
1330
1331 if (waitqueue_active(&ctx->inflight_wait))
1332 wake_up(&ctx->inflight_wait);
1333 }
1334do_free:
1335 kmem_cache_free_bulk(req_cachep, rb->to_free, rb->reqs);
Jens Axboe10fef4b2020-01-09 07:52:28 -07001336 if (fixed_refs)
1337 percpu_ref_put_many(&ctx->file_data->refs, fixed_refs);
Jens Axboec6ca97b302019-12-28 12:11:08 -07001338 percpu_ref_put_many(&ctx->refs, rb->to_free);
Jens Axboec6ca97b302019-12-28 12:11:08 -07001339 rb->to_free = rb->need_iter = 0;
Jens Axboee65ef562019-03-12 10:16:44 -06001340}
1341
Jackie Liua197f662019-11-08 08:09:12 -07001342static bool io_link_cancel_timeout(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -06001343{
Jackie Liua197f662019-11-08 08:09:12 -07001344 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001345 int ret;
1346
Jens Axboe2d283902019-12-04 11:08:05 -07001347 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe2665abf2019-11-05 12:40:47 -07001348 if (ret != -1) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001349 io_cqring_fill_event(req, -ECANCELED);
Jens Axboe2665abf2019-11-05 12:40:47 -07001350 io_commit_cqring(ctx);
1351 req->flags &= ~REQ_F_LINK;
Jackie Liuec9c02a2019-11-08 23:50:36 +08001352 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07001353 return true;
1354 }
1355
1356 return false;
1357}
1358
Jens Axboeba816ad2019-09-28 11:36:45 -06001359static void io_req_link_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboe9e645e112019-05-10 16:07:28 -06001360{
Jens Axboe2665abf2019-11-05 12:40:47 -07001361 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001362 bool wake_ev = false;
Jens Axboe9e645e112019-05-10 16:07:28 -06001363
Jens Axboe4d7dd462019-11-20 13:03:52 -07001364 /* Already got next link */
1365 if (req->flags & REQ_F_LINK_NEXT)
1366 return;
1367
Jens Axboe9e645e112019-05-10 16:07:28 -06001368 /*
1369 * The list should never be empty when we are called here. But could
1370 * potentially happen if the chain is messed up, check to be on the
1371 * safe side.
1372 */
Pavel Begunkov44932332019-12-05 16:16:35 +03001373 while (!list_empty(&req->link_list)) {
1374 struct io_kiocb *nxt = list_first_entry(&req->link_list,
1375 struct io_kiocb, link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001376
Pavel Begunkov44932332019-12-05 16:16:35 +03001377 if (unlikely((req->flags & REQ_F_LINK_TIMEOUT) &&
1378 (nxt->flags & REQ_F_TIMEOUT))) {
1379 list_del_init(&nxt->link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001380 wake_ev |= io_link_cancel_timeout(nxt);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001381 req->flags &= ~REQ_F_LINK_TIMEOUT;
1382 continue;
1383 }
Jens Axboe9e645e112019-05-10 16:07:28 -06001384
Pavel Begunkov44932332019-12-05 16:16:35 +03001385 list_del_init(&req->link_list);
1386 if (!list_empty(&nxt->link_list))
1387 nxt->flags |= REQ_F_LINK;
Pavel Begunkovb18fdf72019-11-21 23:21:02 +03001388 *nxtptr = nxt;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001389 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06001390 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001391
Jens Axboe4d7dd462019-11-20 13:03:52 -07001392 req->flags |= REQ_F_LINK_NEXT;
Jens Axboe2665abf2019-11-05 12:40:47 -07001393 if (wake_ev)
1394 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001395}
1396
1397/*
1398 * Called if REQ_F_LINK is set, and we fail the head request
1399 */
1400static void io_fail_links(struct io_kiocb *req)
1401{
Jens Axboe2665abf2019-11-05 12:40:47 -07001402 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001403 unsigned long flags;
1404
1405 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboe9e645e112019-05-10 16:07:28 -06001406
1407 while (!list_empty(&req->link_list)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03001408 struct io_kiocb *link = list_first_entry(&req->link_list,
1409 struct io_kiocb, link_list);
Jens Axboe9e645e112019-05-10 16:07:28 -06001410
Pavel Begunkov44932332019-12-05 16:16:35 +03001411 list_del_init(&link->link_list);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02001412 trace_io_uring_fail_link(req, link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001413
1414 if ((req->flags & REQ_F_LINK_TIMEOUT) &&
Jens Axboed625c6e2019-12-17 19:53:05 -07001415 link->opcode == IORING_OP_LINK_TIMEOUT) {
Jackie Liua197f662019-11-08 08:09:12 -07001416 io_link_cancel_timeout(link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001417 } else {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001418 io_cqring_fill_event(link, -ECANCELED);
Jens Axboe978db572019-11-14 22:39:04 -07001419 __io_double_put_req(link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001420 }
Jens Axboe5d960722019-11-19 15:31:28 -07001421 req->flags &= ~REQ_F_LINK_TIMEOUT;
Jens Axboe9e645e112019-05-10 16:07:28 -06001422 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001423
1424 io_commit_cqring(ctx);
1425 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1426 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001427}
1428
Jens Axboe4d7dd462019-11-20 13:03:52 -07001429static void io_req_find_next(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboe9e645e112019-05-10 16:07:28 -06001430{
Jens Axboe4d7dd462019-11-20 13:03:52 -07001431 if (likely(!(req->flags & REQ_F_LINK)))
Jens Axboe2665abf2019-11-05 12:40:47 -07001432 return;
Jens Axboe2665abf2019-11-05 12:40:47 -07001433
Jens Axboe9e645e112019-05-10 16:07:28 -06001434 /*
1435 * If LINK is set, we have dependent requests in this chain. If we
1436 * didn't fail this request, queue the first one up, moving any other
1437 * dependencies to the next request. In case of failure, fail the rest
1438 * of the chain.
1439 */
Jens Axboe2665abf2019-11-05 12:40:47 -07001440 if (req->flags & REQ_F_FAIL_LINK) {
1441 io_fail_links(req);
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001442 } else if ((req->flags & (REQ_F_LINK_TIMEOUT | REQ_F_COMP_LOCKED)) ==
1443 REQ_F_LINK_TIMEOUT) {
Jens Axboe2665abf2019-11-05 12:40:47 -07001444 struct io_ring_ctx *ctx = req->ctx;
1445 unsigned long flags;
1446
1447 /*
1448 * If this is a timeout link, we could be racing with the
1449 * timeout timer. Grab the completion lock for this case to
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001450 * protect against that.
Jens Axboe2665abf2019-11-05 12:40:47 -07001451 */
1452 spin_lock_irqsave(&ctx->completion_lock, flags);
1453 io_req_link_next(req, nxt);
1454 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1455 } else {
1456 io_req_link_next(req, nxt);
Jens Axboe9e645e112019-05-10 16:07:28 -06001457 }
Jens Axboe4d7dd462019-11-20 13:03:52 -07001458}
Jens Axboe9e645e112019-05-10 16:07:28 -06001459
Jackie Liuc69f8db2019-11-09 11:00:08 +08001460static void io_free_req(struct io_kiocb *req)
1461{
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001462 struct io_kiocb *nxt = NULL;
1463
1464 io_req_find_next(req, &nxt);
Pavel Begunkov70cf9f32019-11-21 23:21:00 +03001465 __io_free_req(req);
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001466
1467 if (nxt)
1468 io_queue_async_work(nxt);
Jackie Liuc69f8db2019-11-09 11:00:08 +08001469}
1470
Jens Axboeba816ad2019-09-28 11:36:45 -06001471/*
1472 * Drop reference to request, return next in chain (if there is one) if this
1473 * was the last reference to this request.
1474 */
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001475__attribute__((nonnull))
Jackie Liuec9c02a2019-11-08 23:50:36 +08001476static void io_put_req_find_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboee65ef562019-03-12 10:16:44 -06001477{
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001478 io_req_find_next(req, nxtptr);
Jens Axboe4d7dd462019-11-20 13:03:52 -07001479
Jens Axboee65ef562019-03-12 10:16:44 -06001480 if (refcount_dec_and_test(&req->refs))
Jens Axboe4d7dd462019-11-20 13:03:52 -07001481 __io_free_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001482}
1483
Jens Axboe2b188cc2019-01-07 10:46:33 -07001484static void io_put_req(struct io_kiocb *req)
1485{
Jens Axboedef596e2019-01-09 08:59:42 -07001486 if (refcount_dec_and_test(&req->refs))
1487 io_free_req(req);
1488}
1489
Jens Axboe978db572019-11-14 22:39:04 -07001490/*
1491 * Must only be used if we don't need to care about links, usually from
1492 * within the completion handling itself.
1493 */
1494static void __io_double_put_req(struct io_kiocb *req)
Jens Axboea3a0e432019-08-20 11:03:11 -06001495{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001496 /* drop both submit and complete references */
1497 if (refcount_sub_and_test(2, &req->refs))
1498 __io_free_req(req);
1499}
1500
Jens Axboe978db572019-11-14 22:39:04 -07001501static void io_double_put_req(struct io_kiocb *req)
1502{
1503 /* drop both submit and complete references */
1504 if (refcount_sub_and_test(2, &req->refs))
1505 io_free_req(req);
1506}
1507
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001508static unsigned io_cqring_events(struct io_ring_ctx *ctx, bool noflush)
Jens Axboea3a0e432019-08-20 11:03:11 -06001509{
Jens Axboe84f97dc2019-11-06 11:27:53 -07001510 struct io_rings *rings = ctx->rings;
1511
Jens Axboead3eb2c2019-12-18 17:12:20 -07001512 if (test_bit(0, &ctx->cq_check_overflow)) {
1513 /*
1514 * noflush == true is from the waitqueue handler, just ensure
1515 * we wake up the task, and the next invocation will flush the
1516 * entries. We cannot safely to it from here.
1517 */
1518 if (noflush && !list_empty(&ctx->cq_overflow_list))
1519 return -1U;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001520
Jens Axboead3eb2c2019-12-18 17:12:20 -07001521 io_cqring_overflow_flush(ctx, false);
1522 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001523
Jens Axboea3a0e432019-08-20 11:03:11 -06001524 /* See comment at the top of this file */
1525 smp_rmb();
Jens Axboead3eb2c2019-12-18 17:12:20 -07001526 return ctx->cached_cq_tail - READ_ONCE(rings->cq.head);
Jens Axboea3a0e432019-08-20 11:03:11 -06001527}
1528
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03001529static inline unsigned int io_sqring_entries(struct io_ring_ctx *ctx)
1530{
1531 struct io_rings *rings = ctx->rings;
1532
1533 /* make sure SQ entry isn't read before tail */
1534 return smp_load_acquire(&rings->sq.tail) - ctx->cached_sq_head;
1535}
1536
Jens Axboe8237e042019-12-28 10:48:22 -07001537static inline bool io_req_multi_free(struct req_batch *rb, struct io_kiocb *req)
Jens Axboee94f1412019-12-19 12:06:02 -07001538{
Jens Axboec6ca97b302019-12-28 12:11:08 -07001539 if ((req->flags & REQ_F_LINK) || io_is_fallback_req(req))
1540 return false;
Jens Axboee94f1412019-12-19 12:06:02 -07001541
Jens Axboec6ca97b302019-12-28 12:11:08 -07001542 if (!(req->flags & REQ_F_FIXED_FILE) || req->io)
1543 rb->need_iter++;
1544
1545 rb->reqs[rb->to_free++] = req;
1546 if (unlikely(rb->to_free == ARRAY_SIZE(rb->reqs)))
1547 io_free_req_many(req->ctx, rb);
1548 return true;
Jens Axboee94f1412019-12-19 12:06:02 -07001549}
1550
Jens Axboedef596e2019-01-09 08:59:42 -07001551/*
1552 * Find and free completed poll iocbs
1553 */
1554static void io_iopoll_complete(struct io_ring_ctx *ctx, unsigned int *nr_events,
1555 struct list_head *done)
1556{
Jens Axboe8237e042019-12-28 10:48:22 -07001557 struct req_batch rb;
Jens Axboedef596e2019-01-09 08:59:42 -07001558 struct io_kiocb *req;
Jens Axboedef596e2019-01-09 08:59:42 -07001559
Jens Axboec6ca97b302019-12-28 12:11:08 -07001560 rb.to_free = rb.need_iter = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001561 while (!list_empty(done)) {
1562 req = list_first_entry(done, struct io_kiocb, list);
1563 list_del(&req->list);
1564
Jens Axboe78e19bb2019-11-06 15:21:34 -07001565 io_cqring_fill_event(req, req->result);
Jens Axboedef596e2019-01-09 08:59:42 -07001566 (*nr_events)++;
1567
Jens Axboe8237e042019-12-28 10:48:22 -07001568 if (refcount_dec_and_test(&req->refs) &&
1569 !io_req_multi_free(&rb, req))
1570 io_free_req(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001571 }
Jens Axboedef596e2019-01-09 08:59:42 -07001572
Jens Axboe09bb8392019-03-13 12:39:28 -06001573 io_commit_cqring(ctx);
Jens Axboe8237e042019-12-28 10:48:22 -07001574 io_free_req_many(ctx, &rb);
Jens Axboedef596e2019-01-09 08:59:42 -07001575}
1576
1577static int io_do_iopoll(struct io_ring_ctx *ctx, unsigned int *nr_events,
1578 long min)
1579{
1580 struct io_kiocb *req, *tmp;
1581 LIST_HEAD(done);
1582 bool spin;
1583 int ret;
1584
1585 /*
1586 * Only spin for completions if we don't have multiple devices hanging
1587 * off our complete list, and we're under the requested amount.
1588 */
1589 spin = !ctx->poll_multi_file && *nr_events < min;
1590
1591 ret = 0;
1592 list_for_each_entry_safe(req, tmp, &ctx->poll_list, list) {
Jens Axboe9adbd452019-12-20 08:45:55 -07001593 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboedef596e2019-01-09 08:59:42 -07001594
1595 /*
1596 * Move completed entries to our local list. If we find a
1597 * request that requires polling, break out and complete
1598 * the done list first, if we have entries there.
1599 */
1600 if (req->flags & REQ_F_IOPOLL_COMPLETED) {
1601 list_move_tail(&req->list, &done);
1602 continue;
1603 }
1604 if (!list_empty(&done))
1605 break;
1606
1607 ret = kiocb->ki_filp->f_op->iopoll(kiocb, spin);
1608 if (ret < 0)
1609 break;
1610
1611 if (ret && spin)
1612 spin = false;
1613 ret = 0;
1614 }
1615
1616 if (!list_empty(&done))
1617 io_iopoll_complete(ctx, nr_events, &done);
1618
1619 return ret;
1620}
1621
1622/*
Brian Gianforcarod195a662019-12-13 03:09:50 -08001623 * Poll for a minimum of 'min' events. Note that if min == 0 we consider that a
Jens Axboedef596e2019-01-09 08:59:42 -07001624 * non-spinning poll check - we'll still enter the driver poll loop, but only
1625 * as a non-spinning completion check.
1626 */
1627static int io_iopoll_getevents(struct io_ring_ctx *ctx, unsigned int *nr_events,
1628 long min)
1629{
Jens Axboe08f54392019-08-21 22:19:11 -06001630 while (!list_empty(&ctx->poll_list) && !need_resched()) {
Jens Axboedef596e2019-01-09 08:59:42 -07001631 int ret;
1632
1633 ret = io_do_iopoll(ctx, nr_events, min);
1634 if (ret < 0)
1635 return ret;
1636 if (!min || *nr_events >= min)
1637 return 0;
1638 }
1639
1640 return 1;
1641}
1642
1643/*
1644 * We can't just wait for polled events to come to us, we have to actively
1645 * find and complete them.
1646 */
1647static void io_iopoll_reap_events(struct io_ring_ctx *ctx)
1648{
1649 if (!(ctx->flags & IORING_SETUP_IOPOLL))
1650 return;
1651
1652 mutex_lock(&ctx->uring_lock);
1653 while (!list_empty(&ctx->poll_list)) {
1654 unsigned int nr_events = 0;
1655
1656 io_iopoll_getevents(ctx, &nr_events, 1);
Jens Axboe08f54392019-08-21 22:19:11 -06001657
1658 /*
1659 * Ensure we allow local-to-the-cpu processing to take place,
1660 * in this case we need to ensure that we reap all events.
1661 */
1662 cond_resched();
Jens Axboedef596e2019-01-09 08:59:42 -07001663 }
1664 mutex_unlock(&ctx->uring_lock);
1665}
1666
Jens Axboe2b2ed972019-10-25 10:06:15 -06001667static int __io_iopoll_check(struct io_ring_ctx *ctx, unsigned *nr_events,
1668 long min)
Jens Axboedef596e2019-01-09 08:59:42 -07001669{
Jens Axboe2b2ed972019-10-25 10:06:15 -06001670 int iters = 0, ret = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001671
1672 do {
1673 int tmin = 0;
1674
Jens Axboe500f9fb2019-08-19 12:15:59 -06001675 /*
Jens Axboea3a0e432019-08-20 11:03:11 -06001676 * Don't enter poll loop if we already have events pending.
1677 * If we do, we can potentially be spinning for commands that
1678 * already triggered a CQE (eg in error).
1679 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001680 if (io_cqring_events(ctx, false))
Jens Axboea3a0e432019-08-20 11:03:11 -06001681 break;
1682
1683 /*
Jens Axboe500f9fb2019-08-19 12:15:59 -06001684 * If a submit got punted to a workqueue, we can have the
1685 * application entering polling for a command before it gets
1686 * issued. That app will hold the uring_lock for the duration
1687 * of the poll right here, so we need to take a breather every
1688 * now and then to ensure that the issue has a chance to add
1689 * the poll to the issued list. Otherwise we can spin here
1690 * forever, while the workqueue is stuck trying to acquire the
1691 * very same mutex.
1692 */
1693 if (!(++iters & 7)) {
1694 mutex_unlock(&ctx->uring_lock);
1695 mutex_lock(&ctx->uring_lock);
1696 }
1697
Jens Axboedef596e2019-01-09 08:59:42 -07001698 if (*nr_events < min)
1699 tmin = min - *nr_events;
1700
1701 ret = io_iopoll_getevents(ctx, nr_events, tmin);
1702 if (ret <= 0)
1703 break;
1704 ret = 0;
1705 } while (min && !*nr_events && !need_resched());
1706
Jens Axboe2b2ed972019-10-25 10:06:15 -06001707 return ret;
1708}
1709
1710static int io_iopoll_check(struct io_ring_ctx *ctx, unsigned *nr_events,
1711 long min)
1712{
1713 int ret;
1714
1715 /*
1716 * We disallow the app entering submit/complete with polling, but we
1717 * still need to lock the ring to prevent racing with polled issue
1718 * that got punted to a workqueue.
1719 */
1720 mutex_lock(&ctx->uring_lock);
1721 ret = __io_iopoll_check(ctx, nr_events, min);
Jens Axboe500f9fb2019-08-19 12:15:59 -06001722 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07001723 return ret;
1724}
1725
Jens Axboe491381ce2019-10-17 09:20:46 -06001726static void kiocb_end_write(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001727{
Jens Axboe491381ce2019-10-17 09:20:46 -06001728 /*
1729 * Tell lockdep we inherited freeze protection from submission
1730 * thread.
1731 */
1732 if (req->flags & REQ_F_ISREG) {
1733 struct inode *inode = file_inode(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001734
Jens Axboe491381ce2019-10-17 09:20:46 -06001735 __sb_writers_acquired(inode->i_sb, SB_FREEZE_WRITE);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001736 }
Jens Axboe491381ce2019-10-17 09:20:46 -06001737 file_end_write(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001738}
1739
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001740static inline void req_set_fail_links(struct io_kiocb *req)
1741{
1742 if ((req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) == REQ_F_LINK)
1743 req->flags |= REQ_F_FAIL_LINK;
1744}
1745
Jens Axboeba816ad2019-09-28 11:36:45 -06001746static void io_complete_rw_common(struct kiocb *kiocb, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001747{
Jens Axboe9adbd452019-12-20 08:45:55 -07001748 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001749
Jens Axboe491381ce2019-10-17 09:20:46 -06001750 if (kiocb->ki_flags & IOCB_WRITE)
1751 kiocb_end_write(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001752
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001753 if (res != req->result)
1754 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07001755 io_cqring_add_event(req, res);
Jens Axboeba816ad2019-09-28 11:36:45 -06001756}
1757
1758static void io_complete_rw(struct kiocb *kiocb, long res, long res2)
1759{
Jens Axboe9adbd452019-12-20 08:45:55 -07001760 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboeba816ad2019-09-28 11:36:45 -06001761
1762 io_complete_rw_common(kiocb, res);
Jens Axboee65ef562019-03-12 10:16:44 -06001763 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001764}
1765
Jens Axboeba816ad2019-09-28 11:36:45 -06001766static struct io_kiocb *__io_complete_rw(struct kiocb *kiocb, long res)
1767{
Jens Axboe9adbd452019-12-20 08:45:55 -07001768 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001769 struct io_kiocb *nxt = NULL;
Jens Axboeba816ad2019-09-28 11:36:45 -06001770
1771 io_complete_rw_common(kiocb, res);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001772 io_put_req_find_next(req, &nxt);
1773
1774 return nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001775}
1776
Jens Axboedef596e2019-01-09 08:59:42 -07001777static void io_complete_rw_iopoll(struct kiocb *kiocb, long res, long res2)
1778{
Jens Axboe9adbd452019-12-20 08:45:55 -07001779 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboedef596e2019-01-09 08:59:42 -07001780
Jens Axboe491381ce2019-10-17 09:20:46 -06001781 if (kiocb->ki_flags & IOCB_WRITE)
1782 kiocb_end_write(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001783
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001784 if (res != req->result)
1785 req_set_fail_links(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06001786 req->result = res;
Jens Axboedef596e2019-01-09 08:59:42 -07001787 if (res != -EAGAIN)
1788 req->flags |= REQ_F_IOPOLL_COMPLETED;
1789}
1790
1791/*
1792 * After the iocb has been issued, it's safe to be found on the poll list.
1793 * Adding the kiocb to the list AFTER submission ensures that we don't
1794 * find it from a io_iopoll_getevents() thread before the issuer is done
1795 * accessing the kiocb cookie.
1796 */
1797static void io_iopoll_req_issued(struct io_kiocb *req)
1798{
1799 struct io_ring_ctx *ctx = req->ctx;
1800
1801 /*
1802 * Track whether we have multiple files in our lists. This will impact
1803 * how we do polling eventually, not spinning if we're on potentially
1804 * different devices.
1805 */
1806 if (list_empty(&ctx->poll_list)) {
1807 ctx->poll_multi_file = false;
1808 } else if (!ctx->poll_multi_file) {
1809 struct io_kiocb *list_req;
1810
1811 list_req = list_first_entry(&ctx->poll_list, struct io_kiocb,
1812 list);
Jens Axboe9adbd452019-12-20 08:45:55 -07001813 if (list_req->file != req->file)
Jens Axboedef596e2019-01-09 08:59:42 -07001814 ctx->poll_multi_file = true;
1815 }
1816
1817 /*
1818 * For fast devices, IO may have already completed. If it has, add
1819 * it to the front so we find it first.
1820 */
1821 if (req->flags & REQ_F_IOPOLL_COMPLETED)
1822 list_add(&req->list, &ctx->poll_list);
1823 else
1824 list_add_tail(&req->list, &ctx->poll_list);
1825}
1826
Jens Axboe3d6770f2019-04-13 11:50:54 -06001827static void io_file_put(struct io_submit_state *state)
Jens Axboe9a56a232019-01-09 09:06:50 -07001828{
Jens Axboe3d6770f2019-04-13 11:50:54 -06001829 if (state->file) {
Jens Axboe9a56a232019-01-09 09:06:50 -07001830 int diff = state->has_refs - state->used_refs;
1831
1832 if (diff)
1833 fput_many(state->file, diff);
1834 state->file = NULL;
1835 }
1836}
1837
1838/*
1839 * Get as many references to a file as we have IOs left in this submission,
1840 * assuming most submissions are for one file, or at least that each file
1841 * has more than one submission.
1842 */
1843static struct file *io_file_get(struct io_submit_state *state, int fd)
1844{
1845 if (!state)
1846 return fget(fd);
1847
1848 if (state->file) {
1849 if (state->fd == fd) {
1850 state->used_refs++;
1851 state->ios_left--;
1852 return state->file;
1853 }
Jens Axboe3d6770f2019-04-13 11:50:54 -06001854 io_file_put(state);
Jens Axboe9a56a232019-01-09 09:06:50 -07001855 }
1856 state->file = fget_many(fd, state->ios_left);
1857 if (!state->file)
1858 return NULL;
1859
1860 state->fd = fd;
1861 state->has_refs = state->ios_left;
1862 state->used_refs = 1;
1863 state->ios_left--;
1864 return state->file;
1865}
1866
Jens Axboe2b188cc2019-01-07 10:46:33 -07001867/*
1868 * If we tracked the file through the SCM inflight mechanism, we could support
1869 * any file. For now, just ensure that anything potentially problematic is done
1870 * inline.
1871 */
1872static bool io_file_supports_async(struct file *file)
1873{
1874 umode_t mode = file_inode(file)->i_mode;
1875
Jens Axboe10d59342019-12-09 20:16:22 -07001876 if (S_ISBLK(mode) || S_ISCHR(mode) || S_ISSOCK(mode))
Jens Axboe2b188cc2019-01-07 10:46:33 -07001877 return true;
1878 if (S_ISREG(mode) && file->f_op != &io_uring_fops)
1879 return true;
1880
1881 return false;
1882}
1883
Jens Axboe3529d8c2019-12-19 18:24:38 -07001884static int io_prep_rw(struct io_kiocb *req, const struct io_uring_sqe *sqe,
1885 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001886{
Jens Axboedef596e2019-01-09 08:59:42 -07001887 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9adbd452019-12-20 08:45:55 -07001888 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe09bb8392019-03-13 12:39:28 -06001889 unsigned ioprio;
1890 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001891
Jens Axboe491381ce2019-10-17 09:20:46 -06001892 if (S_ISREG(file_inode(req->file)->i_mode))
1893 req->flags |= REQ_F_ISREG;
1894
Jens Axboe2b188cc2019-01-07 10:46:33 -07001895 kiocb->ki_pos = READ_ONCE(sqe->off);
Jens Axboeba042912019-12-25 16:33:42 -07001896 if (kiocb->ki_pos == -1 && !(req->file->f_mode & FMODE_STREAM)) {
1897 req->flags |= REQ_F_CUR_POS;
1898 kiocb->ki_pos = req->file->f_pos;
1899 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001900 kiocb->ki_hint = ki_hint_validate(file_write_hint(kiocb->ki_filp));
Pavel Begunkov3e577dc2020-02-01 03:58:42 +03001901 kiocb->ki_flags = iocb_flags(kiocb->ki_filp);
1902 ret = kiocb_set_rw_flags(kiocb, READ_ONCE(sqe->rw_flags));
1903 if (unlikely(ret))
1904 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001905
1906 ioprio = READ_ONCE(sqe->ioprio);
1907 if (ioprio) {
1908 ret = ioprio_check_cap(ioprio);
1909 if (ret)
Jens Axboe09bb8392019-03-13 12:39:28 -06001910 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001911
1912 kiocb->ki_ioprio = ioprio;
1913 } else
1914 kiocb->ki_ioprio = get_current_ioprio();
1915
Stefan Bühler8449eed2019-04-27 20:34:19 +02001916 /* don't allow async punt if RWF_NOWAIT was requested */
Jens Axboe491381ce2019-10-17 09:20:46 -06001917 if ((kiocb->ki_flags & IOCB_NOWAIT) ||
1918 (req->file->f_flags & O_NONBLOCK))
Stefan Bühler8449eed2019-04-27 20:34:19 +02001919 req->flags |= REQ_F_NOWAIT;
1920
1921 if (force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001922 kiocb->ki_flags |= IOCB_NOWAIT;
Stefan Bühler8449eed2019-04-27 20:34:19 +02001923
Jens Axboedef596e2019-01-09 08:59:42 -07001924 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07001925 if (!(kiocb->ki_flags & IOCB_DIRECT) ||
1926 !kiocb->ki_filp->f_op->iopoll)
Jens Axboe09bb8392019-03-13 12:39:28 -06001927 return -EOPNOTSUPP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001928
Jens Axboedef596e2019-01-09 08:59:42 -07001929 kiocb->ki_flags |= IOCB_HIPRI;
1930 kiocb->ki_complete = io_complete_rw_iopoll;
Jens Axboe6873e0b2019-10-30 13:53:09 -06001931 req->result = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001932 } else {
Jens Axboe09bb8392019-03-13 12:39:28 -06001933 if (kiocb->ki_flags & IOCB_HIPRI)
1934 return -EINVAL;
Jens Axboedef596e2019-01-09 08:59:42 -07001935 kiocb->ki_complete = io_complete_rw;
1936 }
Jens Axboe9adbd452019-12-20 08:45:55 -07001937
Jens Axboe3529d8c2019-12-19 18:24:38 -07001938 req->rw.addr = READ_ONCE(sqe->addr);
1939 req->rw.len = READ_ONCE(sqe->len);
Jens Axboe9adbd452019-12-20 08:45:55 -07001940 /* we own ->private, reuse it for the buffer index */
1941 req->rw.kiocb.private = (void *) (unsigned long)
Jens Axboe3529d8c2019-12-19 18:24:38 -07001942 READ_ONCE(sqe->buf_index);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001943 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001944}
1945
1946static inline void io_rw_done(struct kiocb *kiocb, ssize_t ret)
1947{
1948 switch (ret) {
1949 case -EIOCBQUEUED:
1950 break;
1951 case -ERESTARTSYS:
1952 case -ERESTARTNOINTR:
1953 case -ERESTARTNOHAND:
1954 case -ERESTART_RESTARTBLOCK:
1955 /*
1956 * We can't just restart the syscall, since previously
1957 * submitted sqes may already be in progress. Just fail this
1958 * IO with EINTR.
1959 */
1960 ret = -EINTR;
1961 /* fall through */
1962 default:
1963 kiocb->ki_complete(kiocb, ret, 0);
1964 }
1965}
1966
Jens Axboeba816ad2019-09-28 11:36:45 -06001967static void kiocb_done(struct kiocb *kiocb, ssize_t ret, struct io_kiocb **nxt,
1968 bool in_async)
1969{
Jens Axboeba042912019-12-25 16:33:42 -07001970 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
1971
1972 if (req->flags & REQ_F_CUR_POS)
1973 req->file->f_pos = kiocb->ki_pos;
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001974 if (in_async && ret >= 0 && kiocb->ki_complete == io_complete_rw)
Jens Axboeba816ad2019-09-28 11:36:45 -06001975 *nxt = __io_complete_rw(kiocb, ret);
1976 else
1977 io_rw_done(kiocb, ret);
1978}
1979
Jens Axboe9adbd452019-12-20 08:45:55 -07001980static ssize_t io_import_fixed(struct io_kiocb *req, int rw,
Pavel Begunkov7d009162019-11-25 23:14:40 +03001981 struct iov_iter *iter)
Jens Axboeedafcce2019-01-09 09:16:05 -07001982{
Jens Axboe9adbd452019-12-20 08:45:55 -07001983 struct io_ring_ctx *ctx = req->ctx;
1984 size_t len = req->rw.len;
Jens Axboeedafcce2019-01-09 09:16:05 -07001985 struct io_mapped_ubuf *imu;
1986 unsigned index, buf_index;
1987 size_t offset;
1988 u64 buf_addr;
1989
1990 /* attempt to use fixed buffers without having provided iovecs */
1991 if (unlikely(!ctx->user_bufs))
1992 return -EFAULT;
1993
Jens Axboe9adbd452019-12-20 08:45:55 -07001994 buf_index = (unsigned long) req->rw.kiocb.private;
Jens Axboeedafcce2019-01-09 09:16:05 -07001995 if (unlikely(buf_index >= ctx->nr_user_bufs))
1996 return -EFAULT;
1997
1998 index = array_index_nospec(buf_index, ctx->nr_user_bufs);
1999 imu = &ctx->user_bufs[index];
Jens Axboe9adbd452019-12-20 08:45:55 -07002000 buf_addr = req->rw.addr;
Jens Axboeedafcce2019-01-09 09:16:05 -07002001
2002 /* overflow */
2003 if (buf_addr + len < buf_addr)
2004 return -EFAULT;
2005 /* not inside the mapped region */
2006 if (buf_addr < imu->ubuf || buf_addr + len > imu->ubuf + imu->len)
2007 return -EFAULT;
2008
2009 /*
2010 * May not be a start of buffer, set size appropriately
2011 * and advance us to the beginning.
2012 */
2013 offset = buf_addr - imu->ubuf;
2014 iov_iter_bvec(iter, rw, imu->bvec, imu->nr_bvecs, offset + len);
Jens Axboebd11b3a2019-07-20 08:37:31 -06002015
2016 if (offset) {
2017 /*
2018 * Don't use iov_iter_advance() here, as it's really slow for
2019 * using the latter parts of a big fixed buffer - it iterates
2020 * over each segment manually. We can cheat a bit here, because
2021 * we know that:
2022 *
2023 * 1) it's a BVEC iter, we set it up
2024 * 2) all bvecs are PAGE_SIZE in size, except potentially the
2025 * first and last bvec
2026 *
2027 * So just find our index, and adjust the iterator afterwards.
2028 * If the offset is within the first bvec (or the whole first
2029 * bvec, just use iov_iter_advance(). This makes it easier
2030 * since we can just skip the first segment, which may not
2031 * be PAGE_SIZE aligned.
2032 */
2033 const struct bio_vec *bvec = imu->bvec;
2034
2035 if (offset <= bvec->bv_len) {
2036 iov_iter_advance(iter, offset);
2037 } else {
2038 unsigned long seg_skip;
2039
2040 /* skip first vec */
2041 offset -= bvec->bv_len;
2042 seg_skip = 1 + (offset >> PAGE_SHIFT);
2043
2044 iter->bvec = bvec + seg_skip;
2045 iter->nr_segs -= seg_skip;
Aleix Roca Nonell99c79f62019-08-15 14:03:22 +02002046 iter->count -= bvec->bv_len + offset;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002047 iter->iov_offset = offset & ~PAGE_MASK;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002048 }
2049 }
2050
Jens Axboe5e559562019-11-13 16:12:46 -07002051 return len;
Jens Axboeedafcce2019-01-09 09:16:05 -07002052}
2053
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002054static ssize_t io_import_iovec(int rw, struct io_kiocb *req,
2055 struct iovec **iovec, struct iov_iter *iter)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002056{
Jens Axboe9adbd452019-12-20 08:45:55 -07002057 void __user *buf = u64_to_user_ptr(req->rw.addr);
2058 size_t sqe_len = req->rw.len;
Jens Axboeedafcce2019-01-09 09:16:05 -07002059 u8 opcode;
2060
Jens Axboed625c6e2019-12-17 19:53:05 -07002061 opcode = req->opcode;
Pavel Begunkov7d009162019-11-25 23:14:40 +03002062 if (opcode == IORING_OP_READ_FIXED || opcode == IORING_OP_WRITE_FIXED) {
Jens Axboeedafcce2019-01-09 09:16:05 -07002063 *iovec = NULL;
Jens Axboe9adbd452019-12-20 08:45:55 -07002064 return io_import_fixed(req, rw, iter);
Jens Axboeedafcce2019-01-09 09:16:05 -07002065 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002066
Jens Axboe9adbd452019-12-20 08:45:55 -07002067 /* buffer index only valid with fixed read/write */
2068 if (req->rw.kiocb.private)
2069 return -EINVAL;
2070
Jens Axboe3a6820f2019-12-22 15:19:35 -07002071 if (opcode == IORING_OP_READ || opcode == IORING_OP_WRITE) {
2072 ssize_t ret;
2073 ret = import_single_range(rw, buf, sqe_len, *iovec, iter);
2074 *iovec = NULL;
2075 return ret;
2076 }
2077
Jens Axboef67676d2019-12-02 11:03:47 -07002078 if (req->io) {
2079 struct io_async_rw *iorw = &req->io->rw;
2080
2081 *iovec = iorw->iov;
2082 iov_iter_init(iter, rw, *iovec, iorw->nr_segs, iorw->size);
2083 if (iorw->iov == iorw->fast_iov)
2084 *iovec = NULL;
2085 return iorw->size;
2086 }
2087
Jens Axboe2b188cc2019-01-07 10:46:33 -07002088#ifdef CONFIG_COMPAT
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002089 if (req->ctx->compat)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002090 return compat_import_iovec(rw, buf, sqe_len, UIO_FASTIOV,
2091 iovec, iter);
2092#endif
2093
2094 return import_iovec(rw, buf, sqe_len, UIO_FASTIOV, iovec, iter);
2095}
2096
Jens Axboe32960612019-09-23 11:05:34 -06002097/*
2098 * For files that don't have ->read_iter() and ->write_iter(), handle them
2099 * by looping over ->read() or ->write() manually.
2100 */
2101static ssize_t loop_rw_iter(int rw, struct file *file, struct kiocb *kiocb,
2102 struct iov_iter *iter)
2103{
2104 ssize_t ret = 0;
2105
2106 /*
2107 * Don't support polled IO through this interface, and we can't
2108 * support non-blocking either. For the latter, this just causes
2109 * the kiocb to be handled from an async context.
2110 */
2111 if (kiocb->ki_flags & IOCB_HIPRI)
2112 return -EOPNOTSUPP;
2113 if (kiocb->ki_flags & IOCB_NOWAIT)
2114 return -EAGAIN;
2115
2116 while (iov_iter_count(iter)) {
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002117 struct iovec iovec;
Jens Axboe32960612019-09-23 11:05:34 -06002118 ssize_t nr;
2119
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002120 if (!iov_iter_is_bvec(iter)) {
2121 iovec = iov_iter_iovec(iter);
2122 } else {
2123 /* fixed buffers import bvec */
2124 iovec.iov_base = kmap(iter->bvec->bv_page)
2125 + iter->iov_offset;
2126 iovec.iov_len = min(iter->count,
2127 iter->bvec->bv_len - iter->iov_offset);
2128 }
2129
Jens Axboe32960612019-09-23 11:05:34 -06002130 if (rw == READ) {
2131 nr = file->f_op->read(file, iovec.iov_base,
2132 iovec.iov_len, &kiocb->ki_pos);
2133 } else {
2134 nr = file->f_op->write(file, iovec.iov_base,
2135 iovec.iov_len, &kiocb->ki_pos);
2136 }
2137
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002138 if (iov_iter_is_bvec(iter))
2139 kunmap(iter->bvec->bv_page);
2140
Jens Axboe32960612019-09-23 11:05:34 -06002141 if (nr < 0) {
2142 if (!ret)
2143 ret = nr;
2144 break;
2145 }
2146 ret += nr;
2147 if (nr != iovec.iov_len)
2148 break;
2149 iov_iter_advance(iter, nr);
2150 }
2151
2152 return ret;
2153}
2154
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002155static void io_req_map_rw(struct io_kiocb *req, ssize_t io_size,
Jens Axboef67676d2019-12-02 11:03:47 -07002156 struct iovec *iovec, struct iovec *fast_iov,
2157 struct iov_iter *iter)
2158{
2159 req->io->rw.nr_segs = iter->nr_segs;
2160 req->io->rw.size = io_size;
2161 req->io->rw.iov = iovec;
2162 if (!req->io->rw.iov) {
2163 req->io->rw.iov = req->io->rw.fast_iov;
2164 memcpy(req->io->rw.iov, fast_iov,
2165 sizeof(struct iovec) * iter->nr_segs);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002166 } else {
2167 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboef67676d2019-12-02 11:03:47 -07002168 }
2169}
2170
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002171static int io_alloc_async_ctx(struct io_kiocb *req)
Jens Axboef67676d2019-12-02 11:03:47 -07002172{
Jens Axboed3656342019-12-18 09:50:26 -07002173 if (!io_op_defs[req->opcode].async_ctx)
2174 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002175 req->io = kmalloc(sizeof(*req->io), GFP_KERNEL);
Jens Axboe06b76d42019-12-19 14:44:26 -07002176 return req->io == NULL;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002177}
2178
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002179static int io_setup_async_rw(struct io_kiocb *req, ssize_t io_size,
2180 struct iovec *iovec, struct iovec *fast_iov,
2181 struct iov_iter *iter)
2182{
Jens Axboe980ad262020-01-24 23:08:54 -07002183 if (!io_op_defs[req->opcode].async_ctx)
Jens Axboe74566df2020-01-13 19:23:24 -07002184 return 0;
Jens Axboe5d204bc2020-01-31 12:06:52 -07002185 if (!req->io) {
2186 if (io_alloc_async_ctx(req))
2187 return -ENOMEM;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002188
Jens Axboe5d204bc2020-01-31 12:06:52 -07002189 io_req_map_rw(req, io_size, iovec, fast_iov, iter);
2190 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002191 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002192}
2193
Jens Axboe3529d8c2019-12-19 18:24:38 -07002194static int io_read_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2195 bool force_nonblock)
Jens Axboef67676d2019-12-02 11:03:47 -07002196{
Jens Axboe3529d8c2019-12-19 18:24:38 -07002197 struct io_async_ctx *io;
2198 struct iov_iter iter;
Jens Axboef67676d2019-12-02 11:03:47 -07002199 ssize_t ret;
2200
Jens Axboe3529d8c2019-12-19 18:24:38 -07002201 ret = io_prep_rw(req, sqe, force_nonblock);
2202 if (ret)
2203 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07002204
Jens Axboe3529d8c2019-12-19 18:24:38 -07002205 if (unlikely(!(req->file->f_mode & FMODE_READ)))
2206 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07002207
Jens Axboe3529d8c2019-12-19 18:24:38 -07002208 if (!req->io)
2209 return 0;
2210
2211 io = req->io;
2212 io->rw.iov = io->rw.fast_iov;
2213 req->io = NULL;
2214 ret = io_import_iovec(READ, req, &io->rw.iov, &iter);
2215 req->io = io;
2216 if (ret < 0)
2217 return ret;
2218
2219 io_req_map_rw(req, ret, io->rw.iov, io->rw.fast_iov, &iter);
2220 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002221}
2222
Pavel Begunkov267bc902019-11-07 01:41:08 +03002223static int io_read(struct io_kiocb *req, struct io_kiocb **nxt,
Jens Axboe8358e3a2019-04-23 08:17:58 -06002224 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002225{
2226 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07002227 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002228 struct iov_iter iter;
Jens Axboe31b51512019-01-18 22:56:34 -07002229 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07002230 ssize_t io_size, ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002231
Jens Axboe3529d8c2019-12-19 18:24:38 -07002232 ret = io_import_iovec(READ, req, &iovec, &iter);
Jens Axboe06b76d42019-12-19 14:44:26 -07002233 if (ret < 0)
2234 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002235
Jens Axboefd6c2e42019-12-18 12:19:41 -07002236 /* Ensure we clear previously set non-block flag */
2237 if (!force_nonblock)
Jens Axboe9adbd452019-12-20 08:45:55 -07002238 req->rw.kiocb.ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07002239
Bijan Mottahedeh797f3f52020-01-15 18:37:45 -08002240 req->result = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002241 io_size = ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06002242 if (req->flags & REQ_F_LINK)
Jens Axboef67676d2019-12-02 11:03:47 -07002243 req->result = io_size;
2244
2245 /*
2246 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
2247 * we know to async punt it even if it was opened O_NONBLOCK
2248 */
Jens Axboe9adbd452019-12-20 08:45:55 -07002249 if (force_nonblock && !io_file_supports_async(req->file)) {
Jens Axboef67676d2019-12-02 11:03:47 -07002250 req->flags |= REQ_F_MUST_PUNT;
2251 goto copy_iov;
2252 }
Jens Axboe9e645e112019-05-10 16:07:28 -06002253
Jens Axboe31b51512019-01-18 22:56:34 -07002254 iov_count = iov_iter_count(&iter);
Jens Axboe9adbd452019-12-20 08:45:55 -07002255 ret = rw_verify_area(READ, req->file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002256 if (!ret) {
2257 ssize_t ret2;
2258
Jens Axboe9adbd452019-12-20 08:45:55 -07002259 if (req->file->f_op->read_iter)
2260 ret2 = call_read_iter(req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002261 else
Jens Axboe9adbd452019-12-20 08:45:55 -07002262 ret2 = loop_rw_iter(READ, req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002263
Jens Axboe9d93a3f2019-05-15 13:53:07 -06002264 /* Catch -EAGAIN return for forced non-blocking submission */
Jens Axboef67676d2019-12-02 11:03:47 -07002265 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002266 kiocb_done(kiocb, ret2, nxt, req->in_async);
Jens Axboef67676d2019-12-02 11:03:47 -07002267 } else {
2268copy_iov:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002269 ret = io_setup_async_rw(req, io_size, iovec,
Jens Axboef67676d2019-12-02 11:03:47 -07002270 inline_vecs, &iter);
2271 if (ret)
2272 goto out_free;
2273 return -EAGAIN;
2274 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002275 }
Jens Axboef67676d2019-12-02 11:03:47 -07002276out_free:
Pavel Begunkov1e950812020-02-06 19:51:16 +03002277 kfree(iovec);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002278 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002279 return ret;
2280}
2281
Jens Axboe3529d8c2019-12-19 18:24:38 -07002282static int io_write_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2283 bool force_nonblock)
Jens Axboef67676d2019-12-02 11:03:47 -07002284{
Jens Axboe3529d8c2019-12-19 18:24:38 -07002285 struct io_async_ctx *io;
2286 struct iov_iter iter;
Jens Axboef67676d2019-12-02 11:03:47 -07002287 ssize_t ret;
2288
Jens Axboe3529d8c2019-12-19 18:24:38 -07002289 ret = io_prep_rw(req, sqe, force_nonblock);
2290 if (ret)
2291 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07002292
Jens Axboe3529d8c2019-12-19 18:24:38 -07002293 if (unlikely(!(req->file->f_mode & FMODE_WRITE)))
2294 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07002295
Jens Axboe3529d8c2019-12-19 18:24:38 -07002296 if (!req->io)
2297 return 0;
2298
2299 io = req->io;
2300 io->rw.iov = io->rw.fast_iov;
2301 req->io = NULL;
2302 ret = io_import_iovec(WRITE, req, &io->rw.iov, &iter);
2303 req->io = io;
2304 if (ret < 0)
2305 return ret;
2306
2307 io_req_map_rw(req, ret, io->rw.iov, io->rw.fast_iov, &iter);
2308 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002309}
2310
Pavel Begunkov267bc902019-11-07 01:41:08 +03002311static int io_write(struct io_kiocb *req, struct io_kiocb **nxt,
Jens Axboe8358e3a2019-04-23 08:17:58 -06002312 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002313{
2314 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07002315 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002316 struct iov_iter iter;
Jens Axboe31b51512019-01-18 22:56:34 -07002317 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07002318 ssize_t ret, io_size;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002319
Jens Axboe3529d8c2019-12-19 18:24:38 -07002320 ret = io_import_iovec(WRITE, req, &iovec, &iter);
Jens Axboe06b76d42019-12-19 14:44:26 -07002321 if (ret < 0)
2322 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002323
Jens Axboefd6c2e42019-12-18 12:19:41 -07002324 /* Ensure we clear previously set non-block flag */
2325 if (!force_nonblock)
Jens Axboe9adbd452019-12-20 08:45:55 -07002326 req->rw.kiocb.ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07002327
Bijan Mottahedeh797f3f52020-01-15 18:37:45 -08002328 req->result = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002329 io_size = ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06002330 if (req->flags & REQ_F_LINK)
Jens Axboef67676d2019-12-02 11:03:47 -07002331 req->result = io_size;
2332
2333 /*
2334 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
2335 * we know to async punt it even if it was opened O_NONBLOCK
2336 */
2337 if (force_nonblock && !io_file_supports_async(req->file)) {
2338 req->flags |= REQ_F_MUST_PUNT;
2339 goto copy_iov;
2340 }
2341
Jens Axboe10d59342019-12-09 20:16:22 -07002342 /* file path doesn't support NOWAIT for non-direct_IO */
2343 if (force_nonblock && !(kiocb->ki_flags & IOCB_DIRECT) &&
2344 (req->flags & REQ_F_ISREG))
Jens Axboef67676d2019-12-02 11:03:47 -07002345 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06002346
Jens Axboe31b51512019-01-18 22:56:34 -07002347 iov_count = iov_iter_count(&iter);
Jens Axboe9adbd452019-12-20 08:45:55 -07002348 ret = rw_verify_area(WRITE, req->file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002349 if (!ret) {
Roman Penyaev9bf79332019-03-25 20:09:24 +01002350 ssize_t ret2;
2351
Jens Axboe2b188cc2019-01-07 10:46:33 -07002352 /*
2353 * Open-code file_start_write here to grab freeze protection,
2354 * which will be released by another thread in
2355 * io_complete_rw(). Fool lockdep by telling it the lock got
2356 * released so that it doesn't complain about the held lock when
2357 * we return to userspace.
2358 */
Jens Axboe491381ce2019-10-17 09:20:46 -06002359 if (req->flags & REQ_F_ISREG) {
Jens Axboe9adbd452019-12-20 08:45:55 -07002360 __sb_start_write(file_inode(req->file)->i_sb,
Jens Axboe2b188cc2019-01-07 10:46:33 -07002361 SB_FREEZE_WRITE, true);
Jens Axboe9adbd452019-12-20 08:45:55 -07002362 __sb_writers_release(file_inode(req->file)->i_sb,
Jens Axboe2b188cc2019-01-07 10:46:33 -07002363 SB_FREEZE_WRITE);
2364 }
2365 kiocb->ki_flags |= IOCB_WRITE;
Roman Penyaev9bf79332019-03-25 20:09:24 +01002366
Jens Axboe9adbd452019-12-20 08:45:55 -07002367 if (req->file->f_op->write_iter)
2368 ret2 = call_write_iter(req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002369 else
Jens Axboe9adbd452019-12-20 08:45:55 -07002370 ret2 = loop_rw_iter(WRITE, req->file, kiocb, &iter);
Jens Axboefaac9962020-02-07 15:45:22 -07002371 /*
2372 * Raw bdev writes will -EOPNOTSUPP for IOCB_NOWAIT. Just
2373 * retry them without IOCB_NOWAIT.
2374 */
2375 if (ret2 == -EOPNOTSUPP && (kiocb->ki_flags & IOCB_NOWAIT))
2376 ret2 = -EAGAIN;
Jens Axboef67676d2019-12-02 11:03:47 -07002377 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002378 kiocb_done(kiocb, ret2, nxt, req->in_async);
Jens Axboef67676d2019-12-02 11:03:47 -07002379 } else {
2380copy_iov:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002381 ret = io_setup_async_rw(req, io_size, iovec,
Jens Axboef67676d2019-12-02 11:03:47 -07002382 inline_vecs, &iter);
2383 if (ret)
2384 goto out_free;
2385 return -EAGAIN;
2386 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002387 }
Jens Axboe31b51512019-01-18 22:56:34 -07002388out_free:
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002389 req->flags &= ~REQ_F_NEED_CLEANUP;
Pavel Begunkov1e950812020-02-06 19:51:16 +03002390 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002391 return ret;
2392}
2393
2394/*
2395 * IORING_OP_NOP just posts a completion event, nothing else.
2396 */
Jens Axboe78e19bb2019-11-06 15:21:34 -07002397static int io_nop(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002398{
2399 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002400
Jens Axboedef596e2019-01-09 08:59:42 -07002401 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
2402 return -EINVAL;
2403
Jens Axboe78e19bb2019-11-06 15:21:34 -07002404 io_cqring_add_event(req, 0);
Jens Axboee65ef562019-03-12 10:16:44 -06002405 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002406 return 0;
2407}
2408
Jens Axboe3529d8c2019-12-19 18:24:38 -07002409static int io_prep_fsync(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002410{
Jens Axboe6b063142019-01-10 22:13:58 -07002411 struct io_ring_ctx *ctx = req->ctx;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002412
Jens Axboe09bb8392019-03-13 12:39:28 -06002413 if (!req->file)
2414 return -EBADF;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002415
Jens Axboe6b063142019-01-10 22:13:58 -07002416 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboedef596e2019-01-09 08:59:42 -07002417 return -EINVAL;
Jens Axboeedafcce2019-01-09 09:16:05 -07002418 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002419 return -EINVAL;
2420
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002421 req->sync.flags = READ_ONCE(sqe->fsync_flags);
2422 if (unlikely(req->sync.flags & ~IORING_FSYNC_DATASYNC))
2423 return -EINVAL;
2424
2425 req->sync.off = READ_ONCE(sqe->off);
2426 req->sync.len = READ_ONCE(sqe->len);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002427 return 0;
2428}
2429
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002430static bool io_req_cancelled(struct io_kiocb *req)
2431{
2432 if (req->work.flags & IO_WQ_WORK_CANCEL) {
2433 req_set_fail_links(req);
2434 io_cqring_add_event(req, -ECANCELED);
2435 io_put_req(req);
2436 return true;
2437 }
2438
2439 return false;
2440}
2441
Jens Axboe78912932020-01-14 22:09:06 -07002442static void io_link_work_cb(struct io_wq_work **workptr)
2443{
2444 struct io_wq_work *work = *workptr;
2445 struct io_kiocb *link = work->data;
2446
2447 io_queue_linked_timeout(link);
2448 work->func = io_wq_submit_work;
2449}
2450
2451static void io_wq_assign_next(struct io_wq_work **workptr, struct io_kiocb *nxt)
2452{
2453 struct io_kiocb *link;
2454
2455 io_prep_async_work(nxt, &link);
2456 *workptr = &nxt->work;
2457 if (link) {
2458 nxt->work.flags |= IO_WQ_WORK_CB;
2459 nxt->work.func = io_link_work_cb;
2460 nxt->work.data = link;
2461 }
2462}
2463
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002464static void io_fsync_finish(struct io_wq_work **workptr)
2465{
2466 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2467 loff_t end = req->sync.off + req->sync.len;
2468 struct io_kiocb *nxt = NULL;
2469 int ret;
2470
2471 if (io_req_cancelled(req))
2472 return;
2473
Jens Axboe9adbd452019-12-20 08:45:55 -07002474 ret = vfs_fsync_range(req->file, req->sync.off,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002475 end > 0 ? end : LLONG_MAX,
2476 req->sync.flags & IORING_FSYNC_DATASYNC);
2477 if (ret < 0)
2478 req_set_fail_links(req);
2479 io_cqring_add_event(req, ret);
2480 io_put_req_find_next(req, &nxt);
2481 if (nxt)
Jens Axboe78912932020-01-14 22:09:06 -07002482 io_wq_assign_next(workptr, nxt);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002483}
2484
Jens Axboefc4df992019-12-10 14:38:45 -07002485static int io_fsync(struct io_kiocb *req, struct io_kiocb **nxt,
2486 bool force_nonblock)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002487{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002488 struct io_wq_work *work, *old_work;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002489
2490 /* fsync always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002491 if (force_nonblock) {
2492 io_put_req(req);
2493 req->work.func = io_fsync_finish;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002494 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002495 }
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002496
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002497 work = old_work = &req->work;
2498 io_fsync_finish(&work);
2499 if (work && work != old_work)
2500 *nxt = container_of(work, struct io_kiocb, work);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002501 return 0;
2502}
2503
Jens Axboed63d1b52019-12-10 10:38:56 -07002504static void io_fallocate_finish(struct io_wq_work **workptr)
2505{
2506 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2507 struct io_kiocb *nxt = NULL;
2508 int ret;
2509
2510 ret = vfs_fallocate(req->file, req->sync.mode, req->sync.off,
2511 req->sync.len);
2512 if (ret < 0)
2513 req_set_fail_links(req);
2514 io_cqring_add_event(req, ret);
2515 io_put_req_find_next(req, &nxt);
2516 if (nxt)
2517 io_wq_assign_next(workptr, nxt);
2518}
2519
2520static int io_fallocate_prep(struct io_kiocb *req,
2521 const struct io_uring_sqe *sqe)
2522{
2523 if (sqe->ioprio || sqe->buf_index || sqe->rw_flags)
2524 return -EINVAL;
2525
2526 req->sync.off = READ_ONCE(sqe->off);
2527 req->sync.len = READ_ONCE(sqe->addr);
2528 req->sync.mode = READ_ONCE(sqe->len);
2529 return 0;
2530}
2531
2532static int io_fallocate(struct io_kiocb *req, struct io_kiocb **nxt,
2533 bool force_nonblock)
2534{
2535 struct io_wq_work *work, *old_work;
2536
2537 /* fallocate always requiring blocking context */
2538 if (force_nonblock) {
2539 io_put_req(req);
2540 req->work.func = io_fallocate_finish;
2541 return -EAGAIN;
2542 }
2543
2544 work = old_work = &req->work;
2545 io_fallocate_finish(&work);
2546 if (work && work != old_work)
2547 *nxt = container_of(work, struct io_kiocb, work);
2548
2549 return 0;
2550}
2551
Jens Axboe15b71ab2019-12-11 11:20:36 -07002552static int io_openat_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2553{
Jens Axboef8748882020-01-08 17:47:02 -07002554 const char __user *fname;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002555 int ret;
2556
2557 if (sqe->ioprio || sqe->buf_index)
2558 return -EINVAL;
Jens Axboecf3040c2020-02-06 21:31:40 -07002559 if (sqe->flags & IOSQE_FIXED_FILE)
2560 return -EBADF;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002561
2562 req->open.dfd = READ_ONCE(sqe->fd);
Jens Axboec12cedf2020-01-08 17:41:21 -07002563 req->open.how.mode = READ_ONCE(sqe->len);
Jens Axboef8748882020-01-08 17:47:02 -07002564 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboec12cedf2020-01-08 17:41:21 -07002565 req->open.how.flags = READ_ONCE(sqe->open_flags);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002566
Jens Axboef8748882020-01-08 17:47:02 -07002567 req->open.filename = getname(fname);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002568 if (IS_ERR(req->open.filename)) {
2569 ret = PTR_ERR(req->open.filename);
2570 req->open.filename = NULL;
2571 return ret;
2572 }
2573
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03002574 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002575 return 0;
2576}
2577
Jens Axboecebdb982020-01-08 17:59:24 -07002578static int io_openat2_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2579{
2580 struct open_how __user *how;
2581 const char __user *fname;
2582 size_t len;
2583 int ret;
2584
2585 if (sqe->ioprio || sqe->buf_index)
2586 return -EINVAL;
Jens Axboecf3040c2020-02-06 21:31:40 -07002587 if (sqe->flags & IOSQE_FIXED_FILE)
2588 return -EBADF;
Jens Axboecebdb982020-01-08 17:59:24 -07002589
2590 req->open.dfd = READ_ONCE(sqe->fd);
2591 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
2592 how = u64_to_user_ptr(READ_ONCE(sqe->addr2));
2593 len = READ_ONCE(sqe->len);
2594
2595 if (len < OPEN_HOW_SIZE_VER0)
2596 return -EINVAL;
2597
2598 ret = copy_struct_from_user(&req->open.how, sizeof(req->open.how), how,
2599 len);
2600 if (ret)
2601 return ret;
2602
2603 if (!(req->open.how.flags & O_PATH) && force_o_largefile())
2604 req->open.how.flags |= O_LARGEFILE;
2605
2606 req->open.filename = getname(fname);
2607 if (IS_ERR(req->open.filename)) {
2608 ret = PTR_ERR(req->open.filename);
2609 req->open.filename = NULL;
2610 return ret;
2611 }
2612
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03002613 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboecebdb982020-01-08 17:59:24 -07002614 return 0;
2615}
2616
2617static int io_openat2(struct io_kiocb *req, struct io_kiocb **nxt,
2618 bool force_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07002619{
2620 struct open_flags op;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002621 struct file *file;
2622 int ret;
2623
Jens Axboef86cd202020-01-29 13:46:44 -07002624 if (force_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07002625 return -EAGAIN;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002626
Jens Axboecebdb982020-01-08 17:59:24 -07002627 ret = build_open_flags(&req->open.how, &op);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002628 if (ret)
2629 goto err;
2630
Jens Axboecebdb982020-01-08 17:59:24 -07002631 ret = get_unused_fd_flags(req->open.how.flags);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002632 if (ret < 0)
2633 goto err;
2634
2635 file = do_filp_open(req->open.dfd, req->open.filename, &op);
2636 if (IS_ERR(file)) {
2637 put_unused_fd(ret);
2638 ret = PTR_ERR(file);
2639 } else {
2640 fsnotify_open(file);
2641 fd_install(ret, file);
2642 }
2643err:
2644 putname(req->open.filename);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03002645 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002646 if (ret < 0)
2647 req_set_fail_links(req);
2648 io_cqring_add_event(req, ret);
2649 io_put_req_find_next(req, nxt);
2650 return 0;
2651}
2652
Jens Axboecebdb982020-01-08 17:59:24 -07002653static int io_openat(struct io_kiocb *req, struct io_kiocb **nxt,
2654 bool force_nonblock)
2655{
2656 req->open.how = build_open_how(req->open.how.flags, req->open.how.mode);
2657 return io_openat2(req, nxt, force_nonblock);
2658}
2659
Jens Axboe3e4827b2020-01-08 15:18:09 -07002660static int io_epoll_ctl_prep(struct io_kiocb *req,
2661 const struct io_uring_sqe *sqe)
2662{
2663#if defined(CONFIG_EPOLL)
2664 if (sqe->ioprio || sqe->buf_index)
2665 return -EINVAL;
2666
2667 req->epoll.epfd = READ_ONCE(sqe->fd);
2668 req->epoll.op = READ_ONCE(sqe->len);
2669 req->epoll.fd = READ_ONCE(sqe->off);
2670
2671 if (ep_op_has_event(req->epoll.op)) {
2672 struct epoll_event __user *ev;
2673
2674 ev = u64_to_user_ptr(READ_ONCE(sqe->addr));
2675 if (copy_from_user(&req->epoll.event, ev, sizeof(*ev)))
2676 return -EFAULT;
2677 }
2678
2679 return 0;
2680#else
2681 return -EOPNOTSUPP;
2682#endif
2683}
2684
2685static int io_epoll_ctl(struct io_kiocb *req, struct io_kiocb **nxt,
2686 bool force_nonblock)
2687{
2688#if defined(CONFIG_EPOLL)
2689 struct io_epoll *ie = &req->epoll;
2690 int ret;
2691
2692 ret = do_epoll_ctl(ie->epfd, ie->op, ie->fd, &ie->event, force_nonblock);
2693 if (force_nonblock && ret == -EAGAIN)
2694 return -EAGAIN;
2695
2696 if (ret < 0)
2697 req_set_fail_links(req);
2698 io_cqring_add_event(req, ret);
2699 io_put_req_find_next(req, nxt);
2700 return 0;
2701#else
2702 return -EOPNOTSUPP;
2703#endif
2704}
2705
Jens Axboec1ca7572019-12-25 22:18:28 -07002706static int io_madvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2707{
2708#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
2709 if (sqe->ioprio || sqe->buf_index || sqe->off)
2710 return -EINVAL;
2711
2712 req->madvise.addr = READ_ONCE(sqe->addr);
2713 req->madvise.len = READ_ONCE(sqe->len);
2714 req->madvise.advice = READ_ONCE(sqe->fadvise_advice);
2715 return 0;
2716#else
2717 return -EOPNOTSUPP;
2718#endif
2719}
2720
2721static int io_madvise(struct io_kiocb *req, struct io_kiocb **nxt,
2722 bool force_nonblock)
2723{
2724#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
2725 struct io_madvise *ma = &req->madvise;
2726 int ret;
2727
2728 if (force_nonblock)
2729 return -EAGAIN;
2730
2731 ret = do_madvise(ma->addr, ma->len, ma->advice);
2732 if (ret < 0)
2733 req_set_fail_links(req);
2734 io_cqring_add_event(req, ret);
2735 io_put_req_find_next(req, nxt);
2736 return 0;
2737#else
2738 return -EOPNOTSUPP;
2739#endif
2740}
2741
Jens Axboe4840e412019-12-25 22:03:45 -07002742static int io_fadvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2743{
2744 if (sqe->ioprio || sqe->buf_index || sqe->addr)
2745 return -EINVAL;
2746
2747 req->fadvise.offset = READ_ONCE(sqe->off);
2748 req->fadvise.len = READ_ONCE(sqe->len);
2749 req->fadvise.advice = READ_ONCE(sqe->fadvise_advice);
2750 return 0;
2751}
2752
2753static int io_fadvise(struct io_kiocb *req, struct io_kiocb **nxt,
2754 bool force_nonblock)
2755{
2756 struct io_fadvise *fa = &req->fadvise;
2757 int ret;
2758
Jens Axboe3e694262020-02-01 09:22:49 -07002759 if (force_nonblock) {
2760 switch (fa->advice) {
2761 case POSIX_FADV_NORMAL:
2762 case POSIX_FADV_RANDOM:
2763 case POSIX_FADV_SEQUENTIAL:
2764 break;
2765 default:
2766 return -EAGAIN;
2767 }
2768 }
Jens Axboe4840e412019-12-25 22:03:45 -07002769
2770 ret = vfs_fadvise(req->file, fa->offset, fa->len, fa->advice);
2771 if (ret < 0)
2772 req_set_fail_links(req);
2773 io_cqring_add_event(req, ret);
2774 io_put_req_find_next(req, nxt);
2775 return 0;
2776}
2777
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002778static int io_statx_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2779{
Jens Axboef8748882020-01-08 17:47:02 -07002780 const char __user *fname;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002781 unsigned lookup_flags;
2782 int ret;
2783
2784 if (sqe->ioprio || sqe->buf_index)
2785 return -EINVAL;
Jens Axboecf3040c2020-02-06 21:31:40 -07002786 if (sqe->flags & IOSQE_FIXED_FILE)
2787 return -EBADF;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002788
2789 req->open.dfd = READ_ONCE(sqe->fd);
2790 req->open.mask = READ_ONCE(sqe->len);
Jens Axboef8748882020-01-08 17:47:02 -07002791 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002792 req->open.buffer = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboec12cedf2020-01-08 17:41:21 -07002793 req->open.how.flags = READ_ONCE(sqe->statx_flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002794
Jens Axboec12cedf2020-01-08 17:41:21 -07002795 if (vfs_stat_set_lookup_flags(&lookup_flags, req->open.how.flags))
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002796 return -EINVAL;
2797
Jens Axboef8748882020-01-08 17:47:02 -07002798 req->open.filename = getname_flags(fname, lookup_flags, NULL);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002799 if (IS_ERR(req->open.filename)) {
2800 ret = PTR_ERR(req->open.filename);
2801 req->open.filename = NULL;
2802 return ret;
2803 }
2804
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03002805 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002806 return 0;
2807}
2808
2809static int io_statx(struct io_kiocb *req, struct io_kiocb **nxt,
2810 bool force_nonblock)
2811{
2812 struct io_open *ctx = &req->open;
2813 unsigned lookup_flags;
2814 struct path path;
2815 struct kstat stat;
2816 int ret;
2817
2818 if (force_nonblock)
2819 return -EAGAIN;
2820
Jens Axboec12cedf2020-01-08 17:41:21 -07002821 if (vfs_stat_set_lookup_flags(&lookup_flags, ctx->how.flags))
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002822 return -EINVAL;
2823
2824retry:
2825 /* filename_lookup() drops it, keep a reference */
2826 ctx->filename->refcnt++;
2827
2828 ret = filename_lookup(ctx->dfd, ctx->filename, lookup_flags, &path,
2829 NULL);
2830 if (ret)
2831 goto err;
2832
Jens Axboec12cedf2020-01-08 17:41:21 -07002833 ret = vfs_getattr(&path, &stat, ctx->mask, ctx->how.flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002834 path_put(&path);
2835 if (retry_estale(ret, lookup_flags)) {
2836 lookup_flags |= LOOKUP_REVAL;
2837 goto retry;
2838 }
2839 if (!ret)
2840 ret = cp_statx(&stat, ctx->buffer);
2841err:
2842 putname(ctx->filename);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03002843 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07002844 if (ret < 0)
2845 req_set_fail_links(req);
2846 io_cqring_add_event(req, ret);
2847 io_put_req_find_next(req, nxt);
2848 return 0;
2849}
2850
Jens Axboeb5dba592019-12-11 14:02:38 -07002851static int io_close_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2852{
2853 /*
2854 * If we queue this for async, it must not be cancellable. That would
2855 * leave the 'file' in an undeterminate state.
2856 */
2857 req->work.flags |= IO_WQ_WORK_NO_CANCEL;
2858
2859 if (sqe->ioprio || sqe->off || sqe->addr || sqe->len ||
2860 sqe->rw_flags || sqe->buf_index)
2861 return -EINVAL;
2862 if (sqe->flags & IOSQE_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07002863 return -EBADF;
Jens Axboeb5dba592019-12-11 14:02:38 -07002864
2865 req->close.fd = READ_ONCE(sqe->fd);
2866 if (req->file->f_op == &io_uring_fops ||
Pavel Begunkovb14cca02020-01-17 04:45:59 +03002867 req->close.fd == req->ctx->ring_fd)
Jens Axboeb5dba592019-12-11 14:02:38 -07002868 return -EBADF;
2869
2870 return 0;
2871}
2872
Pavel Begunkova93b3332020-02-08 14:04:34 +03002873/* only called when __close_fd_get_file() is done */
2874static void __io_close_finish(struct io_kiocb *req, struct io_kiocb **nxt)
2875{
2876 int ret;
2877
2878 ret = filp_close(req->close.put_file, req->work.files);
2879 if (ret < 0)
2880 req_set_fail_links(req);
2881 io_cqring_add_event(req, ret);
2882 fput(req->close.put_file);
2883 io_put_req_find_next(req, nxt);
2884}
2885
Jens Axboeb5dba592019-12-11 14:02:38 -07002886static void io_close_finish(struct io_wq_work **workptr)
2887{
2888 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2889 struct io_kiocb *nxt = NULL;
2890
Pavel Begunkova93b3332020-02-08 14:04:34 +03002891 __io_close_finish(req, &nxt);
Jens Axboeb5dba592019-12-11 14:02:38 -07002892 if (nxt)
2893 io_wq_assign_next(workptr, nxt);
2894}
2895
2896static int io_close(struct io_kiocb *req, struct io_kiocb **nxt,
2897 bool force_nonblock)
2898{
2899 int ret;
2900
2901 req->close.put_file = NULL;
2902 ret = __close_fd_get_file(req->close.fd, &req->close.put_file);
2903 if (ret < 0)
2904 return ret;
2905
2906 /* if the file has a flush method, be safe and punt to async */
Jens Axboef86cd202020-01-29 13:46:44 -07002907 if (req->close.put_file->f_op->flush && !io_wq_current_is_worker())
Jens Axboeb5dba592019-12-11 14:02:38 -07002908 goto eagain;
Jens Axboeb5dba592019-12-11 14:02:38 -07002909
2910 /*
2911 * No ->flush(), safely close from here and just punt the
2912 * fput() to async context.
2913 */
Pavel Begunkova93b3332020-02-08 14:04:34 +03002914 __io_close_finish(req, nxt);
2915 return 0;
Jens Axboeb5dba592019-12-11 14:02:38 -07002916eagain:
2917 req->work.func = io_close_finish;
Jens Axboe1a417f42020-01-31 17:16:48 -07002918 /*
2919 * Do manual async queue here to avoid grabbing files - we don't
2920 * need the files, and it'll cause io_close_finish() to close
2921 * the file again and cause a double CQE entry for this request
2922 */
2923 io_queue_async_work(req);
2924 return 0;
Jens Axboeb5dba592019-12-11 14:02:38 -07002925}
2926
Jens Axboe3529d8c2019-12-19 18:24:38 -07002927static int io_prep_sfr(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002928{
2929 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002930
2931 if (!req->file)
2932 return -EBADF;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002933
2934 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
2935 return -EINVAL;
2936 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
2937 return -EINVAL;
2938
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002939 req->sync.off = READ_ONCE(sqe->off);
2940 req->sync.len = READ_ONCE(sqe->len);
2941 req->sync.flags = READ_ONCE(sqe->sync_range_flags);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002942 return 0;
2943}
2944
2945static void io_sync_file_range_finish(struct io_wq_work **workptr)
2946{
2947 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
2948 struct io_kiocb *nxt = NULL;
2949 int ret;
2950
2951 if (io_req_cancelled(req))
2952 return;
2953
Jens Axboe9adbd452019-12-20 08:45:55 -07002954 ret = sync_file_range(req->file, req->sync.off, req->sync.len,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002955 req->sync.flags);
2956 if (ret < 0)
2957 req_set_fail_links(req);
2958 io_cqring_add_event(req, ret);
2959 io_put_req_find_next(req, &nxt);
2960 if (nxt)
Jens Axboe78912932020-01-14 22:09:06 -07002961 io_wq_assign_next(workptr, nxt);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002962}
2963
Jens Axboefc4df992019-12-10 14:38:45 -07002964static int io_sync_file_range(struct io_kiocb *req, struct io_kiocb **nxt,
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002965 bool force_nonblock)
2966{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002967 struct io_wq_work *work, *old_work;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002968
2969 /* sync_file_range always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002970 if (force_nonblock) {
2971 io_put_req(req);
2972 req->work.func = io_sync_file_range_finish;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002973 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002974 }
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002975
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002976 work = old_work = &req->work;
2977 io_sync_file_range_finish(&work);
2978 if (work && work != old_work)
2979 *nxt = container_of(work, struct io_kiocb, work);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06002980 return 0;
2981}
2982
Jens Axboe3529d8c2019-12-19 18:24:38 -07002983static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboeaa1fa282019-04-19 13:38:09 -06002984{
Jens Axboe03b12302019-12-02 18:50:25 -07002985#if defined(CONFIG_NET)
Jens Axboee47293f2019-12-20 08:58:21 -07002986 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07002987 struct io_async_ctx *io = req->io;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002988 int ret;
Jens Axboe03b12302019-12-02 18:50:25 -07002989
Jens Axboee47293f2019-12-20 08:58:21 -07002990 sr->msg_flags = READ_ONCE(sqe->msg_flags);
2991 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboefddafac2020-01-04 20:19:44 -07002992 sr->len = READ_ONCE(sqe->len);
Jens Axboe3529d8c2019-12-19 18:24:38 -07002993
Jens Axboefddafac2020-01-04 20:19:44 -07002994 if (!io || req->opcode == IORING_OP_SEND)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002995 return 0;
2996
Jens Axboed9688562019-12-09 19:35:20 -07002997 io->msg.iov = io->msg.fast_iov;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002998 ret = sendmsg_copy_msghdr(&io->msg.msg, sr->msg, sr->msg_flags,
Jens Axboee47293f2019-12-20 08:58:21 -07002999 &io->msg.iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003000 if (!ret)
3001 req->flags |= REQ_F_NEED_CLEANUP;
3002 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003003#else
Jens Axboee47293f2019-12-20 08:58:21 -07003004 return -EOPNOTSUPP;
Jens Axboe03b12302019-12-02 18:50:25 -07003005#endif
3006}
3007
Jens Axboefc4df992019-12-10 14:38:45 -07003008static int io_sendmsg(struct io_kiocb *req, struct io_kiocb **nxt,
3009 bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07003010{
3011#if defined(CONFIG_NET)
Jens Axboe0b416c32019-12-15 10:57:46 -07003012 struct io_async_msghdr *kmsg = NULL;
Jens Axboe03b12302019-12-02 18:50:25 -07003013 struct socket *sock;
3014 int ret;
3015
3016 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3017 return -EINVAL;
3018
3019 sock = sock_from_file(req->file, &ret);
3020 if (sock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003021 struct io_async_ctx io;
Jens Axboe03b12302019-12-02 18:50:25 -07003022 struct sockaddr_storage addr;
Jens Axboe03b12302019-12-02 18:50:25 -07003023 unsigned flags;
3024
Jens Axboe03b12302019-12-02 18:50:25 -07003025 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07003026 kmsg = &req->io->msg;
3027 kmsg->msg.msg_name = &addr;
3028 /* if iov is set, it's allocated already */
3029 if (!kmsg->iov)
3030 kmsg->iov = kmsg->fast_iov;
3031 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07003032 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07003033 struct io_sr_msg *sr = &req->sr_msg;
3034
Jens Axboe0b416c32019-12-15 10:57:46 -07003035 kmsg = &io.msg;
3036 kmsg->msg.msg_name = &addr;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003037
3038 io.msg.iov = io.msg.fast_iov;
3039 ret = sendmsg_copy_msghdr(&io.msg.msg, sr->msg,
3040 sr->msg_flags, &io.msg.iov);
Jens Axboe03b12302019-12-02 18:50:25 -07003041 if (ret)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003042 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003043 }
3044
Jens Axboee47293f2019-12-20 08:58:21 -07003045 flags = req->sr_msg.msg_flags;
3046 if (flags & MSG_DONTWAIT)
3047 req->flags |= REQ_F_NOWAIT;
3048 else if (force_nonblock)
3049 flags |= MSG_DONTWAIT;
3050
Jens Axboe0b416c32019-12-15 10:57:46 -07003051 ret = __sys_sendmsg_sock(sock, &kmsg->msg, flags);
Jens Axboe03b12302019-12-02 18:50:25 -07003052 if (force_nonblock && ret == -EAGAIN) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003053 if (req->io)
3054 return -EAGAIN;
Pavel Begunkov1e950812020-02-06 19:51:16 +03003055 if (io_alloc_async_ctx(req)) {
3056 if (kmsg && kmsg->iov != kmsg->fast_iov)
3057 kfree(kmsg->iov);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003058 return -ENOMEM;
Pavel Begunkov1e950812020-02-06 19:51:16 +03003059 }
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003060 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003061 memcpy(&req->io->msg, &io.msg, sizeof(io.msg));
Jens Axboe0b416c32019-12-15 10:57:46 -07003062 return -EAGAIN;
Jens Axboe03b12302019-12-02 18:50:25 -07003063 }
3064 if (ret == -ERESTARTSYS)
3065 ret = -EINTR;
3066 }
3067
Pavel Begunkov1e950812020-02-06 19:51:16 +03003068 if (kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07003069 kfree(kmsg->iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003070 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe03b12302019-12-02 18:50:25 -07003071 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003072 if (ret < 0)
3073 req_set_fail_links(req);
Jens Axboe03b12302019-12-02 18:50:25 -07003074 io_put_req_find_next(req, nxt);
3075 return 0;
3076#else
3077 return -EOPNOTSUPP;
3078#endif
3079}
3080
Jens Axboefddafac2020-01-04 20:19:44 -07003081static int io_send(struct io_kiocb *req, struct io_kiocb **nxt,
3082 bool force_nonblock)
3083{
3084#if defined(CONFIG_NET)
3085 struct socket *sock;
3086 int ret;
3087
3088 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3089 return -EINVAL;
3090
3091 sock = sock_from_file(req->file, &ret);
3092 if (sock) {
3093 struct io_sr_msg *sr = &req->sr_msg;
3094 struct msghdr msg;
3095 struct iovec iov;
3096 unsigned flags;
3097
3098 ret = import_single_range(WRITE, sr->buf, sr->len, &iov,
3099 &msg.msg_iter);
3100 if (ret)
3101 return ret;
3102
3103 msg.msg_name = NULL;
3104 msg.msg_control = NULL;
3105 msg.msg_controllen = 0;
3106 msg.msg_namelen = 0;
3107
3108 flags = req->sr_msg.msg_flags;
3109 if (flags & MSG_DONTWAIT)
3110 req->flags |= REQ_F_NOWAIT;
3111 else if (force_nonblock)
3112 flags |= MSG_DONTWAIT;
3113
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003114 msg.msg_flags = flags;
3115 ret = sock_sendmsg(sock, &msg);
Jens Axboefddafac2020-01-04 20:19:44 -07003116 if (force_nonblock && ret == -EAGAIN)
3117 return -EAGAIN;
3118 if (ret == -ERESTARTSYS)
3119 ret = -EINTR;
3120 }
3121
3122 io_cqring_add_event(req, ret);
3123 if (ret < 0)
3124 req_set_fail_links(req);
3125 io_put_req_find_next(req, nxt);
3126 return 0;
3127#else
3128 return -EOPNOTSUPP;
3129#endif
3130}
3131
Jens Axboe3529d8c2019-12-19 18:24:38 -07003132static int io_recvmsg_prep(struct io_kiocb *req,
3133 const struct io_uring_sqe *sqe)
Jens Axboe03b12302019-12-02 18:50:25 -07003134{
3135#if defined(CONFIG_NET)
Jens Axboee47293f2019-12-20 08:58:21 -07003136 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003137 struct io_async_ctx *io = req->io;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003138 int ret;
Jens Axboe06b76d42019-12-19 14:44:26 -07003139
Jens Axboe3529d8c2019-12-19 18:24:38 -07003140 sr->msg_flags = READ_ONCE(sqe->msg_flags);
3141 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003142 sr->len = READ_ONCE(sqe->len);
Jens Axboe3529d8c2019-12-19 18:24:38 -07003143
Jens Axboefddafac2020-01-04 20:19:44 -07003144 if (!io || req->opcode == IORING_OP_RECV)
Jens Axboe06b76d42019-12-19 14:44:26 -07003145 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07003146
Jens Axboed9688562019-12-09 19:35:20 -07003147 io->msg.iov = io->msg.fast_iov;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003148 ret = recvmsg_copy_msghdr(&io->msg.msg, sr->msg, sr->msg_flags,
Jens Axboee47293f2019-12-20 08:58:21 -07003149 &io->msg.uaddr, &io->msg.iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003150 if (!ret)
3151 req->flags |= REQ_F_NEED_CLEANUP;
3152 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003153#else
Jens Axboee47293f2019-12-20 08:58:21 -07003154 return -EOPNOTSUPP;
Jens Axboe03b12302019-12-02 18:50:25 -07003155#endif
3156}
3157
Jens Axboefc4df992019-12-10 14:38:45 -07003158static int io_recvmsg(struct io_kiocb *req, struct io_kiocb **nxt,
3159 bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07003160{
3161#if defined(CONFIG_NET)
Jens Axboe0b416c32019-12-15 10:57:46 -07003162 struct io_async_msghdr *kmsg = NULL;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003163 struct socket *sock;
3164 int ret;
3165
3166 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3167 return -EINVAL;
3168
3169 sock = sock_from_file(req->file, &ret);
3170 if (sock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003171 struct io_async_ctx io;
Jens Axboe03b12302019-12-02 18:50:25 -07003172 struct sockaddr_storage addr;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003173 unsigned flags;
3174
Jens Axboe03b12302019-12-02 18:50:25 -07003175 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07003176 kmsg = &req->io->msg;
3177 kmsg->msg.msg_name = &addr;
3178 /* if iov is set, it's allocated already */
3179 if (!kmsg->iov)
3180 kmsg->iov = kmsg->fast_iov;
3181 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07003182 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07003183 struct io_sr_msg *sr = &req->sr_msg;
3184
Jens Axboe0b416c32019-12-15 10:57:46 -07003185 kmsg = &io.msg;
3186 kmsg->msg.msg_name = &addr;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003187
3188 io.msg.iov = io.msg.fast_iov;
3189 ret = recvmsg_copy_msghdr(&io.msg.msg, sr->msg,
3190 sr->msg_flags, &io.msg.uaddr,
3191 &io.msg.iov);
Jens Axboe03b12302019-12-02 18:50:25 -07003192 if (ret)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003193 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003194 }
Jens Axboe0fa03c62019-04-19 13:34:07 -06003195
Jens Axboee47293f2019-12-20 08:58:21 -07003196 flags = req->sr_msg.msg_flags;
3197 if (flags & MSG_DONTWAIT)
3198 req->flags |= REQ_F_NOWAIT;
3199 else if (force_nonblock)
3200 flags |= MSG_DONTWAIT;
3201
3202 ret = __sys_recvmsg_sock(sock, &kmsg->msg, req->sr_msg.msg,
3203 kmsg->uaddr, flags);
Jens Axboe03b12302019-12-02 18:50:25 -07003204 if (force_nonblock && ret == -EAGAIN) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003205 if (req->io)
3206 return -EAGAIN;
Pavel Begunkov1e950812020-02-06 19:51:16 +03003207 if (io_alloc_async_ctx(req)) {
3208 if (kmsg && kmsg->iov != kmsg->fast_iov)
3209 kfree(kmsg->iov);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003210 return -ENOMEM;
Pavel Begunkov1e950812020-02-06 19:51:16 +03003211 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003212 memcpy(&req->io->msg, &io.msg, sizeof(io.msg));
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003213 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboe0b416c32019-12-15 10:57:46 -07003214 return -EAGAIN;
Jens Axboe03b12302019-12-02 18:50:25 -07003215 }
Jens Axboe441cdbd2019-12-02 18:49:10 -07003216 if (ret == -ERESTARTSYS)
3217 ret = -EINTR;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003218 }
3219
Pavel Begunkov1e950812020-02-06 19:51:16 +03003220 if (kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07003221 kfree(kmsg->iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003222 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe78e19bb2019-11-06 15:21:34 -07003223 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003224 if (ret < 0)
3225 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08003226 io_put_req_find_next(req, nxt);
Jens Axboe0fa03c62019-04-19 13:34:07 -06003227 return 0;
3228#else
3229 return -EOPNOTSUPP;
3230#endif
3231}
3232
Jens Axboefddafac2020-01-04 20:19:44 -07003233static int io_recv(struct io_kiocb *req, struct io_kiocb **nxt,
3234 bool force_nonblock)
3235{
3236#if defined(CONFIG_NET)
3237 struct socket *sock;
3238 int ret;
3239
3240 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3241 return -EINVAL;
3242
3243 sock = sock_from_file(req->file, &ret);
3244 if (sock) {
3245 struct io_sr_msg *sr = &req->sr_msg;
3246 struct msghdr msg;
3247 struct iovec iov;
3248 unsigned flags;
3249
3250 ret = import_single_range(READ, sr->buf, sr->len, &iov,
3251 &msg.msg_iter);
3252 if (ret)
3253 return ret;
3254
3255 msg.msg_name = NULL;
3256 msg.msg_control = NULL;
3257 msg.msg_controllen = 0;
3258 msg.msg_namelen = 0;
3259 msg.msg_iocb = NULL;
3260 msg.msg_flags = 0;
3261
3262 flags = req->sr_msg.msg_flags;
3263 if (flags & MSG_DONTWAIT)
3264 req->flags |= REQ_F_NOWAIT;
3265 else if (force_nonblock)
3266 flags |= MSG_DONTWAIT;
3267
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003268 ret = sock_recvmsg(sock, &msg, flags);
Jens Axboefddafac2020-01-04 20:19:44 -07003269 if (force_nonblock && ret == -EAGAIN)
3270 return -EAGAIN;
3271 if (ret == -ERESTARTSYS)
3272 ret = -EINTR;
3273 }
3274
3275 io_cqring_add_event(req, ret);
3276 if (ret < 0)
3277 req_set_fail_links(req);
3278 io_put_req_find_next(req, nxt);
3279 return 0;
3280#else
3281 return -EOPNOTSUPP;
3282#endif
3283}
3284
3285
Jens Axboe3529d8c2019-12-19 18:24:38 -07003286static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003287{
3288#if defined(CONFIG_NET)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003289 struct io_accept *accept = &req->accept;
3290
Jens Axboe17f2fe32019-10-17 14:42:58 -06003291 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3292 return -EINVAL;
Hrvoje Zeba8042d6c2019-11-25 14:40:22 -05003293 if (sqe->ioprio || sqe->len || sqe->buf_index)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003294 return -EINVAL;
3295
Jens Axboed55e5f52019-12-11 16:12:15 -07003296 accept->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
3297 accept->addr_len = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003298 accept->flags = READ_ONCE(sqe->accept_flags);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003299 return 0;
3300#else
3301 return -EOPNOTSUPP;
3302#endif
3303}
Jens Axboe17f2fe32019-10-17 14:42:58 -06003304
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003305#if defined(CONFIG_NET)
3306static int __io_accept(struct io_kiocb *req, struct io_kiocb **nxt,
3307 bool force_nonblock)
3308{
3309 struct io_accept *accept = &req->accept;
3310 unsigned file_flags;
3311 int ret;
3312
3313 file_flags = force_nonblock ? O_NONBLOCK : 0;
3314 ret = __sys_accept4_file(req->file, file_flags, accept->addr,
3315 accept->addr_len, accept->flags);
3316 if (ret == -EAGAIN && force_nonblock)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003317 return -EAGAIN;
Jens Axboe8e3cca12019-11-09 19:52:33 -07003318 if (ret == -ERESTARTSYS)
3319 ret = -EINTR;
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003320 if (ret < 0)
3321 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07003322 io_cqring_add_event(req, ret);
Jackie Liuec9c02a2019-11-08 23:50:36 +08003323 io_put_req_find_next(req, nxt);
Jens Axboe17f2fe32019-10-17 14:42:58 -06003324 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003325}
3326
3327static void io_accept_finish(struct io_wq_work **workptr)
3328{
3329 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
3330 struct io_kiocb *nxt = NULL;
3331
3332 if (io_req_cancelled(req))
3333 return;
3334 __io_accept(req, &nxt, false);
3335 if (nxt)
Jens Axboe78912932020-01-14 22:09:06 -07003336 io_wq_assign_next(workptr, nxt);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003337}
3338#endif
3339
3340static int io_accept(struct io_kiocb *req, struct io_kiocb **nxt,
3341 bool force_nonblock)
3342{
3343#if defined(CONFIG_NET)
3344 int ret;
3345
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003346 ret = __io_accept(req, nxt, force_nonblock);
3347 if (ret == -EAGAIN && force_nonblock) {
3348 req->work.func = io_accept_finish;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003349 io_put_req(req);
3350 return -EAGAIN;
3351 }
3352 return 0;
Jens Axboe17f2fe32019-10-17 14:42:58 -06003353#else
3354 return -EOPNOTSUPP;
3355#endif
3356}
3357
Jens Axboe3529d8c2019-12-19 18:24:38 -07003358static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef499a022019-12-02 16:28:46 -07003359{
3360#if defined(CONFIG_NET)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003361 struct io_connect *conn = &req->connect;
3362 struct io_async_ctx *io = req->io;
Jens Axboef499a022019-12-02 16:28:46 -07003363
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003364 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3365 return -EINVAL;
3366 if (sqe->ioprio || sqe->len || sqe->buf_index || sqe->rw_flags)
3367 return -EINVAL;
3368
Jens Axboe3529d8c2019-12-19 18:24:38 -07003369 conn->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
3370 conn->addr_len = READ_ONCE(sqe->addr2);
3371
3372 if (!io)
3373 return 0;
3374
3375 return move_addr_to_kernel(conn->addr, conn->addr_len,
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003376 &io->connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07003377#else
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003378 return -EOPNOTSUPP;
Jens Axboef499a022019-12-02 16:28:46 -07003379#endif
3380}
3381
Jens Axboefc4df992019-12-10 14:38:45 -07003382static int io_connect(struct io_kiocb *req, struct io_kiocb **nxt,
3383 bool force_nonblock)
Jens Axboef8e85cf2019-11-23 14:24:24 -07003384{
3385#if defined(CONFIG_NET)
Jens Axboef499a022019-12-02 16:28:46 -07003386 struct io_async_ctx __io, *io;
Jens Axboef8e85cf2019-11-23 14:24:24 -07003387 unsigned file_flags;
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003388 int ret;
Jens Axboef8e85cf2019-11-23 14:24:24 -07003389
Jens Axboef499a022019-12-02 16:28:46 -07003390 if (req->io) {
3391 io = req->io;
3392 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07003393 ret = move_addr_to_kernel(req->connect.addr,
3394 req->connect.addr_len,
3395 &__io.connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07003396 if (ret)
3397 goto out;
3398 io = &__io;
3399 }
3400
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003401 file_flags = force_nonblock ? O_NONBLOCK : 0;
3402
3403 ret = __sys_connect_file(req->file, &io->connect.address,
3404 req->connect.addr_len, file_flags);
Jens Axboe87f80d62019-12-03 11:23:54 -07003405 if ((ret == -EAGAIN || ret == -EINPROGRESS) && force_nonblock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003406 if (req->io)
3407 return -EAGAIN;
3408 if (io_alloc_async_ctx(req)) {
Jens Axboef499a022019-12-02 16:28:46 -07003409 ret = -ENOMEM;
3410 goto out;
3411 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003412 memcpy(&req->io->connect, &__io.connect, sizeof(__io.connect));
Jens Axboef8e85cf2019-11-23 14:24:24 -07003413 return -EAGAIN;
Jens Axboef499a022019-12-02 16:28:46 -07003414 }
Jens Axboef8e85cf2019-11-23 14:24:24 -07003415 if (ret == -ERESTARTSYS)
3416 ret = -EINTR;
Jens Axboef499a022019-12-02 16:28:46 -07003417out:
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003418 if (ret < 0)
3419 req_set_fail_links(req);
Jens Axboef8e85cf2019-11-23 14:24:24 -07003420 io_cqring_add_event(req, ret);
3421 io_put_req_find_next(req, nxt);
3422 return 0;
3423#else
3424 return -EOPNOTSUPP;
3425#endif
3426}
3427
Jens Axboe221c5eb2019-01-17 09:41:58 -07003428static void io_poll_remove_one(struct io_kiocb *req)
3429{
3430 struct io_poll_iocb *poll = &req->poll;
3431
3432 spin_lock(&poll->head->lock);
3433 WRITE_ONCE(poll->canceled, true);
Jens Axboe392edb42019-12-09 17:52:20 -07003434 if (!list_empty(&poll->wait.entry)) {
3435 list_del_init(&poll->wait.entry);
Jackie Liua197f662019-11-08 08:09:12 -07003436 io_queue_async_work(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003437 }
3438 spin_unlock(&poll->head->lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07003439 hash_del(&req->hash_node);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003440}
3441
3442static void io_poll_remove_all(struct io_ring_ctx *ctx)
3443{
Jens Axboe78076bb2019-12-04 19:56:40 -07003444 struct hlist_node *tmp;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003445 struct io_kiocb *req;
Jens Axboe78076bb2019-12-04 19:56:40 -07003446 int i;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003447
3448 spin_lock_irq(&ctx->completion_lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07003449 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
3450 struct hlist_head *list;
3451
3452 list = &ctx->cancel_hash[i];
3453 hlist_for_each_entry_safe(req, tmp, list, hash_node)
3454 io_poll_remove_one(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003455 }
3456 spin_unlock_irq(&ctx->completion_lock);
3457}
3458
Jens Axboe47f46762019-11-09 17:43:02 -07003459static int io_poll_cancel(struct io_ring_ctx *ctx, __u64 sqe_addr)
3460{
Jens Axboe78076bb2019-12-04 19:56:40 -07003461 struct hlist_head *list;
Jens Axboe47f46762019-11-09 17:43:02 -07003462 struct io_kiocb *req;
3463
Jens Axboe78076bb2019-12-04 19:56:40 -07003464 list = &ctx->cancel_hash[hash_long(sqe_addr, ctx->cancel_hash_bits)];
3465 hlist_for_each_entry(req, list, hash_node) {
3466 if (sqe_addr == req->user_data) {
Jens Axboeeac406c2019-11-14 12:09:58 -07003467 io_poll_remove_one(req);
3468 return 0;
3469 }
Jens Axboe47f46762019-11-09 17:43:02 -07003470 }
3471
3472 return -ENOENT;
3473}
3474
Jens Axboe3529d8c2019-12-19 18:24:38 -07003475static int io_poll_remove_prep(struct io_kiocb *req,
3476 const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07003477{
Jens Axboe221c5eb2019-01-17 09:41:58 -07003478 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3479 return -EINVAL;
3480 if (sqe->ioprio || sqe->off || sqe->len || sqe->buf_index ||
3481 sqe->poll_events)
3482 return -EINVAL;
3483
Jens Axboe0969e782019-12-17 18:40:57 -07003484 req->poll.addr = READ_ONCE(sqe->addr);
Jens Axboe0969e782019-12-17 18:40:57 -07003485 return 0;
3486}
3487
3488/*
3489 * Find a running poll command that matches one specified in sqe->addr,
3490 * and remove it if found.
3491 */
3492static int io_poll_remove(struct io_kiocb *req)
3493{
3494 struct io_ring_ctx *ctx = req->ctx;
3495 u64 addr;
3496 int ret;
3497
Jens Axboe0969e782019-12-17 18:40:57 -07003498 addr = req->poll.addr;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003499 spin_lock_irq(&ctx->completion_lock);
Jens Axboe0969e782019-12-17 18:40:57 -07003500 ret = io_poll_cancel(ctx, addr);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003501 spin_unlock_irq(&ctx->completion_lock);
3502
Jens Axboe78e19bb2019-11-06 15:21:34 -07003503 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003504 if (ret < 0)
3505 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06003506 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003507 return 0;
3508}
3509
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003510static void io_poll_complete(struct io_kiocb *req, __poll_t mask, int error)
Jens Axboe221c5eb2019-01-17 09:41:58 -07003511{
Jackie Liua197f662019-11-08 08:09:12 -07003512 struct io_ring_ctx *ctx = req->ctx;
3513
Jens Axboe8c838782019-03-12 15:48:16 -06003514 req->poll.done = true;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003515 if (error)
3516 io_cqring_fill_event(req, error);
3517 else
3518 io_cqring_fill_event(req, mangle_poll(mask));
Jens Axboe8c838782019-03-12 15:48:16 -06003519 io_commit_cqring(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003520}
3521
Jens Axboe561fb042019-10-24 07:25:42 -06003522static void io_poll_complete_work(struct io_wq_work **workptr)
Jens Axboe221c5eb2019-01-17 09:41:58 -07003523{
Jens Axboe561fb042019-10-24 07:25:42 -06003524 struct io_wq_work *work = *workptr;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003525 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
3526 struct io_poll_iocb *poll = &req->poll;
3527 struct poll_table_struct pt = { ._key = poll->events };
3528 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe89723d02019-11-05 15:32:58 -07003529 struct io_kiocb *nxt = NULL;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003530 __poll_t mask = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003531 int ret = 0;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003532
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003533 if (work->flags & IO_WQ_WORK_CANCEL) {
Jens Axboe561fb042019-10-24 07:25:42 -06003534 WRITE_ONCE(poll->canceled, true);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003535 ret = -ECANCELED;
3536 } else if (READ_ONCE(poll->canceled)) {
3537 ret = -ECANCELED;
3538 }
Jens Axboe561fb042019-10-24 07:25:42 -06003539
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003540 if (ret != -ECANCELED)
Jens Axboe221c5eb2019-01-17 09:41:58 -07003541 mask = vfs_poll(poll->file, &pt) & poll->events;
3542
3543 /*
3544 * Note that ->ki_cancel callers also delete iocb from active_reqs after
3545 * calling ->ki_cancel. We need the ctx_lock roundtrip here to
3546 * synchronize with them. In the cancellation case the list_del_init
3547 * itself is not actually needed, but harmless so we keep it in to
3548 * avoid further branches in the fast path.
3549 */
3550 spin_lock_irq(&ctx->completion_lock);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003551 if (!mask && ret != -ECANCELED) {
Jens Axboe392edb42019-12-09 17:52:20 -07003552 add_wait_queue(poll->head, &poll->wait);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003553 spin_unlock_irq(&ctx->completion_lock);
3554 return;
3555 }
Jens Axboe78076bb2019-12-04 19:56:40 -07003556 hash_del(&req->hash_node);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003557 io_poll_complete(req, mask, ret);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003558 spin_unlock_irq(&ctx->completion_lock);
3559
Jens Axboe8c838782019-03-12 15:48:16 -06003560 io_cqring_ev_posted(ctx);
Jens Axboe89723d02019-11-05 15:32:58 -07003561
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003562 if (ret < 0)
3563 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08003564 io_put_req_find_next(req, &nxt);
Jens Axboe89723d02019-11-05 15:32:58 -07003565 if (nxt)
Jens Axboe78912932020-01-14 22:09:06 -07003566 io_wq_assign_next(workptr, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003567}
3568
Jens Axboee94f1412019-12-19 12:06:02 -07003569static void __io_poll_flush(struct io_ring_ctx *ctx, struct llist_node *nodes)
3570{
Jens Axboee94f1412019-12-19 12:06:02 -07003571 struct io_kiocb *req, *tmp;
Jens Axboe8237e042019-12-28 10:48:22 -07003572 struct req_batch rb;
Jens Axboee94f1412019-12-19 12:06:02 -07003573
Jens Axboec6ca97b302019-12-28 12:11:08 -07003574 rb.to_free = rb.need_iter = 0;
Jens Axboee94f1412019-12-19 12:06:02 -07003575 spin_lock_irq(&ctx->completion_lock);
3576 llist_for_each_entry_safe(req, tmp, nodes, llist_node) {
3577 hash_del(&req->hash_node);
3578 io_poll_complete(req, req->result, 0);
3579
Jens Axboe8237e042019-12-28 10:48:22 -07003580 if (refcount_dec_and_test(&req->refs) &&
3581 !io_req_multi_free(&rb, req)) {
3582 req->flags |= REQ_F_COMP_LOCKED;
3583 io_free_req(req);
Jens Axboee94f1412019-12-19 12:06:02 -07003584 }
3585 }
3586 spin_unlock_irq(&ctx->completion_lock);
3587
3588 io_cqring_ev_posted(ctx);
Jens Axboe8237e042019-12-28 10:48:22 -07003589 io_free_req_many(ctx, &rb);
Jens Axboee94f1412019-12-19 12:06:02 -07003590}
3591
3592static void io_poll_flush(struct io_wq_work **workptr)
3593{
3594 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
3595 struct llist_node *nodes;
3596
3597 nodes = llist_del_all(&req->ctx->poll_llist);
3598 if (nodes)
3599 __io_poll_flush(req->ctx, nodes);
3600}
3601
Jens Axboef0b493e2020-02-01 21:30:11 -07003602static void io_poll_trigger_evfd(struct io_wq_work **workptr)
3603{
3604 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
3605
3606 eventfd_signal(req->ctx->cq_ev_fd, 1);
3607 io_put_req(req);
3608}
3609
Jens Axboe221c5eb2019-01-17 09:41:58 -07003610static int io_poll_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
3611 void *key)
3612{
Jens Axboee9444752019-11-26 15:02:04 -07003613 struct io_poll_iocb *poll = wait->private;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003614 struct io_kiocb *req = container_of(poll, struct io_kiocb, poll);
3615 struct io_ring_ctx *ctx = req->ctx;
3616 __poll_t mask = key_to_poll(key);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003617
3618 /* for instances that support it check for an event match first: */
Jens Axboe8c838782019-03-12 15:48:16 -06003619 if (mask && !(mask & poll->events))
3620 return 0;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003621
Jens Axboe392edb42019-12-09 17:52:20 -07003622 list_del_init(&poll->wait.entry);
Jens Axboe8c838782019-03-12 15:48:16 -06003623
Jens Axboe7c9e7f02019-11-12 08:15:53 -07003624 /*
3625 * Run completion inline if we can. We're using trylock here because
3626 * we are violating the completion_lock -> poll wq lock ordering.
3627 * If we have a link timeout we're going to need the completion_lock
3628 * for finalizing the request, mark us as having grabbed that already.
3629 */
Jens Axboee94f1412019-12-19 12:06:02 -07003630 if (mask) {
3631 unsigned long flags;
Jens Axboe8c838782019-03-12 15:48:16 -06003632
Jens Axboee94f1412019-12-19 12:06:02 -07003633 if (llist_empty(&ctx->poll_llist) &&
3634 spin_trylock_irqsave(&ctx->completion_lock, flags)) {
Jens Axboef0b493e2020-02-01 21:30:11 -07003635 bool trigger_ev;
3636
Jens Axboee94f1412019-12-19 12:06:02 -07003637 hash_del(&req->hash_node);
3638 io_poll_complete(req, mask, 0);
Jens Axboee94f1412019-12-19 12:06:02 -07003639
Jens Axboef0b493e2020-02-01 21:30:11 -07003640 trigger_ev = io_should_trigger_evfd(ctx);
3641 if (trigger_ev && eventfd_signal_count()) {
3642 trigger_ev = false;
3643 req->work.func = io_poll_trigger_evfd;
3644 } else {
3645 req->flags |= REQ_F_COMP_LOCKED;
3646 io_put_req(req);
3647 req = NULL;
3648 }
3649 spin_unlock_irqrestore(&ctx->completion_lock, flags);
3650 __io_cqring_ev_posted(ctx, trigger_ev);
Jens Axboee94f1412019-12-19 12:06:02 -07003651 } else {
3652 req->result = mask;
3653 req->llist_node.next = NULL;
3654 /* if the list wasn't empty, we're done */
3655 if (!llist_add(&req->llist_node, &ctx->poll_llist))
3656 req = NULL;
3657 else
3658 req->work.func = io_poll_flush;
3659 }
Jens Axboe8c838782019-03-12 15:48:16 -06003660 }
Jens Axboee94f1412019-12-19 12:06:02 -07003661 if (req)
3662 io_queue_async_work(req);
Jens Axboe8c838782019-03-12 15:48:16 -06003663
Jens Axboe221c5eb2019-01-17 09:41:58 -07003664 return 1;
3665}
3666
3667struct io_poll_table {
3668 struct poll_table_struct pt;
3669 struct io_kiocb *req;
3670 int error;
3671};
3672
3673static void io_poll_queue_proc(struct file *file, struct wait_queue_head *head,
3674 struct poll_table_struct *p)
3675{
3676 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
3677
3678 if (unlikely(pt->req->poll.head)) {
3679 pt->error = -EINVAL;
3680 return;
3681 }
3682
3683 pt->error = 0;
3684 pt->req->poll.head = head;
Jens Axboe392edb42019-12-09 17:52:20 -07003685 add_wait_queue(head, &pt->req->poll.wait);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003686}
3687
Jens Axboeeac406c2019-11-14 12:09:58 -07003688static void io_poll_req_insert(struct io_kiocb *req)
3689{
3690 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe78076bb2019-12-04 19:56:40 -07003691 struct hlist_head *list;
Jens Axboeeac406c2019-11-14 12:09:58 -07003692
Jens Axboe78076bb2019-12-04 19:56:40 -07003693 list = &ctx->cancel_hash[hash_long(req->user_data, ctx->cancel_hash_bits)];
3694 hlist_add_head(&req->hash_node, list);
Jens Axboeeac406c2019-11-14 12:09:58 -07003695}
3696
Jens Axboe3529d8c2019-12-19 18:24:38 -07003697static int io_poll_add_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07003698{
3699 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003700 u16 events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003701
3702 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3703 return -EINVAL;
3704 if (sqe->addr || sqe->ioprio || sqe->off || sqe->len || sqe->buf_index)
3705 return -EINVAL;
Jens Axboe09bb8392019-03-13 12:39:28 -06003706 if (!poll->file)
3707 return -EBADF;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003708
Jens Axboe221c5eb2019-01-17 09:41:58 -07003709 events = READ_ONCE(sqe->poll_events);
3710 poll->events = demangle_poll(events) | EPOLLERR | EPOLLHUP;
Jens Axboe0969e782019-12-17 18:40:57 -07003711 return 0;
3712}
3713
3714static int io_poll_add(struct io_kiocb *req, struct io_kiocb **nxt)
3715{
3716 struct io_poll_iocb *poll = &req->poll;
3717 struct io_ring_ctx *ctx = req->ctx;
3718 struct io_poll_table ipt;
3719 bool cancel = false;
3720 __poll_t mask;
Jens Axboe0969e782019-12-17 18:40:57 -07003721
3722 INIT_IO_WORK(&req->work, io_poll_complete_work);
Jens Axboe78076bb2019-12-04 19:56:40 -07003723 INIT_HLIST_NODE(&req->hash_node);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003724
Jens Axboe221c5eb2019-01-17 09:41:58 -07003725 poll->head = NULL;
Jens Axboe8c838782019-03-12 15:48:16 -06003726 poll->done = false;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003727 poll->canceled = false;
3728
3729 ipt.pt._qproc = io_poll_queue_proc;
3730 ipt.pt._key = poll->events;
3731 ipt.req = req;
3732 ipt.error = -EINVAL; /* same as no support for IOCB_CMD_POLL */
3733
3734 /* initialized the list so that we can do list_empty checks */
Jens Axboe392edb42019-12-09 17:52:20 -07003735 INIT_LIST_HEAD(&poll->wait.entry);
3736 init_waitqueue_func_entry(&poll->wait, io_poll_wake);
3737 poll->wait.private = poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003738
Jens Axboe36703242019-07-25 10:20:18 -06003739 INIT_LIST_HEAD(&req->list);
3740
Jens Axboe221c5eb2019-01-17 09:41:58 -07003741 mask = vfs_poll(poll->file, &ipt.pt) & poll->events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003742
3743 spin_lock_irq(&ctx->completion_lock);
Jens Axboe8c838782019-03-12 15:48:16 -06003744 if (likely(poll->head)) {
3745 spin_lock(&poll->head->lock);
Jens Axboe392edb42019-12-09 17:52:20 -07003746 if (unlikely(list_empty(&poll->wait.entry))) {
Jens Axboe8c838782019-03-12 15:48:16 -06003747 if (ipt.error)
3748 cancel = true;
3749 ipt.error = 0;
3750 mask = 0;
3751 }
3752 if (mask || ipt.error)
Jens Axboe392edb42019-12-09 17:52:20 -07003753 list_del_init(&poll->wait.entry);
Jens Axboe8c838782019-03-12 15:48:16 -06003754 else if (cancel)
3755 WRITE_ONCE(poll->canceled, true);
3756 else if (!poll->done) /* actually waiting for an event */
Jens Axboeeac406c2019-11-14 12:09:58 -07003757 io_poll_req_insert(req);
Jens Axboe8c838782019-03-12 15:48:16 -06003758 spin_unlock(&poll->head->lock);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003759 }
Jens Axboe8c838782019-03-12 15:48:16 -06003760 if (mask) { /* no async, we'd stolen it */
Jens Axboe8c838782019-03-12 15:48:16 -06003761 ipt.error = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07003762 io_poll_complete(req, mask, 0);
Jens Axboe8c838782019-03-12 15:48:16 -06003763 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07003764 spin_unlock_irq(&ctx->completion_lock);
3765
Jens Axboe8c838782019-03-12 15:48:16 -06003766 if (mask) {
3767 io_cqring_ev_posted(ctx);
Jackie Liuec9c02a2019-11-08 23:50:36 +08003768 io_put_req_find_next(req, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07003769 }
Jens Axboe8c838782019-03-12 15:48:16 -06003770 return ipt.error;
Jens Axboe221c5eb2019-01-17 09:41:58 -07003771}
3772
Jens Axboe5262f562019-09-17 12:26:57 -06003773static enum hrtimer_restart io_timeout_fn(struct hrtimer *timer)
3774{
Jens Axboead8a48a2019-11-15 08:49:11 -07003775 struct io_timeout_data *data = container_of(timer,
3776 struct io_timeout_data, timer);
3777 struct io_kiocb *req = data->req;
3778 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5262f562019-09-17 12:26:57 -06003779 unsigned long flags;
3780
Jens Axboe5262f562019-09-17 12:26:57 -06003781 atomic_inc(&ctx->cq_timeouts);
3782
3783 spin_lock_irqsave(&ctx->completion_lock, flags);
zhangyi (F)ef036812019-10-23 15:10:08 +08003784 /*
Jens Axboe11365042019-10-16 09:08:32 -06003785 * We could be racing with timeout deletion. If the list is empty,
3786 * then timeout lookup already found it and will be handling it.
zhangyi (F)ef036812019-10-23 15:10:08 +08003787 */
Jens Axboe842f9612019-10-29 12:34:10 -06003788 if (!list_empty(&req->list)) {
Jens Axboe11365042019-10-16 09:08:32 -06003789 struct io_kiocb *prev;
Jens Axboe5262f562019-09-17 12:26:57 -06003790
Jens Axboe11365042019-10-16 09:08:32 -06003791 /*
3792 * Adjust the reqs sequence before the current one because it
Brian Gianforcarod195a662019-12-13 03:09:50 -08003793 * will consume a slot in the cq_ring and the cq_tail
Jens Axboe11365042019-10-16 09:08:32 -06003794 * pointer will be increased, otherwise other timeout reqs may
3795 * return in advance without waiting for enough wait_nr.
3796 */
3797 prev = req;
3798 list_for_each_entry_continue_reverse(prev, &ctx->timeout_list, list)
3799 prev->sequence++;
Jens Axboe11365042019-10-16 09:08:32 -06003800 list_del_init(&req->list);
Jens Axboe11365042019-10-16 09:08:32 -06003801 }
Jens Axboe842f9612019-10-29 12:34:10 -06003802
Jens Axboe78e19bb2019-11-06 15:21:34 -07003803 io_cqring_fill_event(req, -ETIME);
Jens Axboe5262f562019-09-17 12:26:57 -06003804 io_commit_cqring(ctx);
3805 spin_unlock_irqrestore(&ctx->completion_lock, flags);
3806
3807 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003808 req_set_fail_links(req);
Jens Axboe5262f562019-09-17 12:26:57 -06003809 io_put_req(req);
3810 return HRTIMER_NORESTART;
3811}
3812
Jens Axboe47f46762019-11-09 17:43:02 -07003813static int io_timeout_cancel(struct io_ring_ctx *ctx, __u64 user_data)
3814{
3815 struct io_kiocb *req;
3816 int ret = -ENOENT;
3817
3818 list_for_each_entry(req, &ctx->timeout_list, list) {
3819 if (user_data == req->user_data) {
3820 list_del_init(&req->list);
3821 ret = 0;
3822 break;
3823 }
3824 }
3825
3826 if (ret == -ENOENT)
3827 return ret;
3828
Jens Axboe2d283902019-12-04 11:08:05 -07003829 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe47f46762019-11-09 17:43:02 -07003830 if (ret == -1)
3831 return -EALREADY;
3832
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003833 req_set_fail_links(req);
Jens Axboe47f46762019-11-09 17:43:02 -07003834 io_cqring_fill_event(req, -ECANCELED);
3835 io_put_req(req);
3836 return 0;
3837}
3838
Jens Axboe3529d8c2019-12-19 18:24:38 -07003839static int io_timeout_remove_prep(struct io_kiocb *req,
3840 const struct io_uring_sqe *sqe)
Jens Axboeb29472e2019-12-17 18:50:29 -07003841{
Jens Axboeb29472e2019-12-17 18:50:29 -07003842 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3843 return -EINVAL;
3844 if (sqe->flags || sqe->ioprio || sqe->buf_index || sqe->len)
3845 return -EINVAL;
3846
3847 req->timeout.addr = READ_ONCE(sqe->addr);
3848 req->timeout.flags = READ_ONCE(sqe->timeout_flags);
3849 if (req->timeout.flags)
3850 return -EINVAL;
3851
Jens Axboeb29472e2019-12-17 18:50:29 -07003852 return 0;
3853}
3854
Jens Axboe11365042019-10-16 09:08:32 -06003855/*
3856 * Remove or update an existing timeout command
3857 */
Jens Axboefc4df992019-12-10 14:38:45 -07003858static int io_timeout_remove(struct io_kiocb *req)
Jens Axboe11365042019-10-16 09:08:32 -06003859{
3860 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe47f46762019-11-09 17:43:02 -07003861 int ret;
Jens Axboe11365042019-10-16 09:08:32 -06003862
Jens Axboe11365042019-10-16 09:08:32 -06003863 spin_lock_irq(&ctx->completion_lock);
Jens Axboeb29472e2019-12-17 18:50:29 -07003864 ret = io_timeout_cancel(ctx, req->timeout.addr);
Jens Axboe11365042019-10-16 09:08:32 -06003865
Jens Axboe47f46762019-11-09 17:43:02 -07003866 io_cqring_fill_event(req, ret);
Jens Axboe11365042019-10-16 09:08:32 -06003867 io_commit_cqring(ctx);
3868 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06003869 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003870 if (ret < 0)
3871 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08003872 io_put_req(req);
Jens Axboe11365042019-10-16 09:08:32 -06003873 return 0;
Jens Axboe5262f562019-09-17 12:26:57 -06003874}
3875
Jens Axboe3529d8c2019-12-19 18:24:38 -07003876static int io_timeout_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboe2d283902019-12-04 11:08:05 -07003877 bool is_timeout_link)
Jens Axboe5262f562019-09-17 12:26:57 -06003878{
Jens Axboead8a48a2019-11-15 08:49:11 -07003879 struct io_timeout_data *data;
Jens Axboea41525a2019-10-15 16:48:15 -06003880 unsigned flags;
Jens Axboe5262f562019-09-17 12:26:57 -06003881
Jens Axboead8a48a2019-11-15 08:49:11 -07003882 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe5262f562019-09-17 12:26:57 -06003883 return -EINVAL;
Jens Axboead8a48a2019-11-15 08:49:11 -07003884 if (sqe->ioprio || sqe->buf_index || sqe->len != 1)
Jens Axboea41525a2019-10-15 16:48:15 -06003885 return -EINVAL;
Jens Axboe2d283902019-12-04 11:08:05 -07003886 if (sqe->off && is_timeout_link)
3887 return -EINVAL;
Jens Axboea41525a2019-10-15 16:48:15 -06003888 flags = READ_ONCE(sqe->timeout_flags);
3889 if (flags & ~IORING_TIMEOUT_ABS)
Jens Axboe5262f562019-09-17 12:26:57 -06003890 return -EINVAL;
Arnd Bergmannbdf20072019-10-01 09:53:29 -06003891
Jens Axboe26a61672019-12-20 09:02:01 -07003892 req->timeout.count = READ_ONCE(sqe->off);
3893
Jens Axboe3529d8c2019-12-19 18:24:38 -07003894 if (!req->io && io_alloc_async_ctx(req))
Jens Axboe26a61672019-12-20 09:02:01 -07003895 return -ENOMEM;
3896
3897 data = &req->io->timeout;
Jens Axboead8a48a2019-11-15 08:49:11 -07003898 data->req = req;
Jens Axboead8a48a2019-11-15 08:49:11 -07003899 req->flags |= REQ_F_TIMEOUT;
3900
3901 if (get_timespec64(&data->ts, u64_to_user_ptr(sqe->addr)))
Jens Axboe5262f562019-09-17 12:26:57 -06003902 return -EFAULT;
3903
Jens Axboe11365042019-10-16 09:08:32 -06003904 if (flags & IORING_TIMEOUT_ABS)
Jens Axboead8a48a2019-11-15 08:49:11 -07003905 data->mode = HRTIMER_MODE_ABS;
Jens Axboe11365042019-10-16 09:08:32 -06003906 else
Jens Axboead8a48a2019-11-15 08:49:11 -07003907 data->mode = HRTIMER_MODE_REL;
Jens Axboe11365042019-10-16 09:08:32 -06003908
Jens Axboead8a48a2019-11-15 08:49:11 -07003909 hrtimer_init(&data->timer, CLOCK_MONOTONIC, data->mode);
3910 return 0;
3911}
3912
Jens Axboefc4df992019-12-10 14:38:45 -07003913static int io_timeout(struct io_kiocb *req)
Jens Axboead8a48a2019-11-15 08:49:11 -07003914{
3915 unsigned count;
3916 struct io_ring_ctx *ctx = req->ctx;
3917 struct io_timeout_data *data;
3918 struct list_head *entry;
3919 unsigned span = 0;
Jens Axboead8a48a2019-11-15 08:49:11 -07003920
Jens Axboe2d283902019-12-04 11:08:05 -07003921 data = &req->io->timeout;
Jens Axboe93bd25b2019-11-11 23:34:31 -07003922
Jens Axboe5262f562019-09-17 12:26:57 -06003923 /*
3924 * sqe->off holds how many events that need to occur for this
Jens Axboe93bd25b2019-11-11 23:34:31 -07003925 * timeout event to be satisfied. If it isn't set, then this is
3926 * a pure timeout request, sequence isn't used.
Jens Axboe5262f562019-09-17 12:26:57 -06003927 */
Jens Axboe26a61672019-12-20 09:02:01 -07003928 count = req->timeout.count;
Jens Axboe93bd25b2019-11-11 23:34:31 -07003929 if (!count) {
3930 req->flags |= REQ_F_TIMEOUT_NOSEQ;
3931 spin_lock_irq(&ctx->completion_lock);
3932 entry = ctx->timeout_list.prev;
3933 goto add;
3934 }
Jens Axboe5262f562019-09-17 12:26:57 -06003935
3936 req->sequence = ctx->cached_sq_head + count - 1;
Jens Axboe2d283902019-12-04 11:08:05 -07003937 data->seq_offset = count;
Jens Axboe5262f562019-09-17 12:26:57 -06003938
3939 /*
3940 * Insertion sort, ensuring the first entry in the list is always
3941 * the one we need first.
3942 */
Jens Axboe5262f562019-09-17 12:26:57 -06003943 spin_lock_irq(&ctx->completion_lock);
3944 list_for_each_prev(entry, &ctx->timeout_list) {
3945 struct io_kiocb *nxt = list_entry(entry, struct io_kiocb, list);
yangerkun5da0fb12019-10-15 21:59:29 +08003946 unsigned nxt_sq_head;
3947 long long tmp, tmp_nxt;
Jens Axboe2d283902019-12-04 11:08:05 -07003948 u32 nxt_offset = nxt->io->timeout.seq_offset;
Jens Axboe5262f562019-09-17 12:26:57 -06003949
Jens Axboe93bd25b2019-11-11 23:34:31 -07003950 if (nxt->flags & REQ_F_TIMEOUT_NOSEQ)
3951 continue;
3952
yangerkun5da0fb12019-10-15 21:59:29 +08003953 /*
3954 * Since cached_sq_head + count - 1 can overflow, use type long
3955 * long to store it.
3956 */
3957 tmp = (long long)ctx->cached_sq_head + count - 1;
Pavel Begunkovcc42e0a2019-11-25 23:14:38 +03003958 nxt_sq_head = nxt->sequence - nxt_offset + 1;
3959 tmp_nxt = (long long)nxt_sq_head + nxt_offset - 1;
yangerkun5da0fb12019-10-15 21:59:29 +08003960
3961 /*
3962 * cached_sq_head may overflow, and it will never overflow twice
3963 * once there is some timeout req still be valid.
3964 */
3965 if (ctx->cached_sq_head < nxt_sq_head)
yangerkun8b07a652019-10-17 12:12:35 +08003966 tmp += UINT_MAX;
yangerkun5da0fb12019-10-15 21:59:29 +08003967
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08003968 if (tmp > tmp_nxt)
Jens Axboe5262f562019-09-17 12:26:57 -06003969 break;
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08003970
3971 /*
3972 * Sequence of reqs after the insert one and itself should
3973 * be adjusted because each timeout req consumes a slot.
3974 */
3975 span++;
3976 nxt->sequence++;
Jens Axboe5262f562019-09-17 12:26:57 -06003977 }
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08003978 req->sequence -= span;
Jens Axboe93bd25b2019-11-11 23:34:31 -07003979add:
Jens Axboe5262f562019-09-17 12:26:57 -06003980 list_add(&req->list, entry);
Jens Axboead8a48a2019-11-15 08:49:11 -07003981 data->timer.function = io_timeout_fn;
3982 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts), data->mode);
Jens Axboe842f9612019-10-29 12:34:10 -06003983 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06003984 return 0;
3985}
3986
Jens Axboe62755e32019-10-28 21:49:21 -06003987static bool io_cancel_cb(struct io_wq_work *work, void *data)
Jens Axboede0617e2019-04-06 21:51:27 -06003988{
Jens Axboe62755e32019-10-28 21:49:21 -06003989 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboede0617e2019-04-06 21:51:27 -06003990
Jens Axboe62755e32019-10-28 21:49:21 -06003991 return req->user_data == (unsigned long) data;
3992}
3993
Jens Axboee977d6d2019-11-05 12:39:45 -07003994static int io_async_cancel_one(struct io_ring_ctx *ctx, void *sqe_addr)
Jens Axboe62755e32019-10-28 21:49:21 -06003995{
Jens Axboe62755e32019-10-28 21:49:21 -06003996 enum io_wq_cancel cancel_ret;
Jens Axboe62755e32019-10-28 21:49:21 -06003997 int ret = 0;
3998
Jens Axboe62755e32019-10-28 21:49:21 -06003999 cancel_ret = io_wq_cancel_cb(ctx->io_wq, io_cancel_cb, sqe_addr);
4000 switch (cancel_ret) {
4001 case IO_WQ_CANCEL_OK:
4002 ret = 0;
4003 break;
4004 case IO_WQ_CANCEL_RUNNING:
4005 ret = -EALREADY;
4006 break;
4007 case IO_WQ_CANCEL_NOTFOUND:
4008 ret = -ENOENT;
4009 break;
4010 }
4011
Jens Axboee977d6d2019-11-05 12:39:45 -07004012 return ret;
4013}
4014
Jens Axboe47f46762019-11-09 17:43:02 -07004015static void io_async_find_and_cancel(struct io_ring_ctx *ctx,
4016 struct io_kiocb *req, __u64 sqe_addr,
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004017 struct io_kiocb **nxt, int success_ret)
Jens Axboe47f46762019-11-09 17:43:02 -07004018{
4019 unsigned long flags;
4020 int ret;
4021
4022 ret = io_async_cancel_one(ctx, (void *) (unsigned long) sqe_addr);
4023 if (ret != -ENOENT) {
4024 spin_lock_irqsave(&ctx->completion_lock, flags);
4025 goto done;
4026 }
4027
4028 spin_lock_irqsave(&ctx->completion_lock, flags);
4029 ret = io_timeout_cancel(ctx, sqe_addr);
4030 if (ret != -ENOENT)
4031 goto done;
4032 ret = io_poll_cancel(ctx, sqe_addr);
4033done:
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004034 if (!ret)
4035 ret = success_ret;
Jens Axboe47f46762019-11-09 17:43:02 -07004036 io_cqring_fill_event(req, ret);
4037 io_commit_cqring(ctx);
4038 spin_unlock_irqrestore(&ctx->completion_lock, flags);
4039 io_cqring_ev_posted(ctx);
4040
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004041 if (ret < 0)
4042 req_set_fail_links(req);
Jens Axboe47f46762019-11-09 17:43:02 -07004043 io_put_req_find_next(req, nxt);
4044}
4045
Jens Axboe3529d8c2019-12-19 18:24:38 -07004046static int io_async_cancel_prep(struct io_kiocb *req,
4047 const struct io_uring_sqe *sqe)
Jens Axboee977d6d2019-11-05 12:39:45 -07004048{
Jens Axboefbf23842019-12-17 18:45:56 -07004049 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboee977d6d2019-11-05 12:39:45 -07004050 return -EINVAL;
4051 if (sqe->flags || sqe->ioprio || sqe->off || sqe->len ||
4052 sqe->cancel_flags)
4053 return -EINVAL;
4054
Jens Axboefbf23842019-12-17 18:45:56 -07004055 req->cancel.addr = READ_ONCE(sqe->addr);
4056 return 0;
4057}
4058
4059static int io_async_cancel(struct io_kiocb *req, struct io_kiocb **nxt)
4060{
4061 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefbf23842019-12-17 18:45:56 -07004062
4063 io_async_find_and_cancel(ctx, req, req->cancel.addr, nxt, 0);
Jens Axboe62755e32019-10-28 21:49:21 -06004064 return 0;
4065}
4066
Jens Axboe05f3fb32019-12-09 11:22:50 -07004067static int io_files_update_prep(struct io_kiocb *req,
4068 const struct io_uring_sqe *sqe)
4069{
4070 if (sqe->flags || sqe->ioprio || sqe->rw_flags)
4071 return -EINVAL;
4072
4073 req->files_update.offset = READ_ONCE(sqe->off);
4074 req->files_update.nr_args = READ_ONCE(sqe->len);
4075 if (!req->files_update.nr_args)
4076 return -EINVAL;
4077 req->files_update.arg = READ_ONCE(sqe->addr);
4078 return 0;
4079}
4080
4081static int io_files_update(struct io_kiocb *req, bool force_nonblock)
4082{
4083 struct io_ring_ctx *ctx = req->ctx;
4084 struct io_uring_files_update up;
4085 int ret;
4086
Jens Axboef86cd202020-01-29 13:46:44 -07004087 if (force_nonblock)
Jens Axboe05f3fb32019-12-09 11:22:50 -07004088 return -EAGAIN;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004089
4090 up.offset = req->files_update.offset;
4091 up.fds = req->files_update.arg;
4092
4093 mutex_lock(&ctx->uring_lock);
4094 ret = __io_sqe_files_update(ctx, &up, req->files_update.nr_args);
4095 mutex_unlock(&ctx->uring_lock);
4096
4097 if (ret < 0)
4098 req_set_fail_links(req);
4099 io_cqring_add_event(req, ret);
4100 io_put_req(req);
4101 return 0;
4102}
4103
Jens Axboe3529d8c2019-12-19 18:24:38 -07004104static int io_req_defer_prep(struct io_kiocb *req,
4105 const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07004106{
Jens Axboee7815732019-12-17 19:45:06 -07004107 ssize_t ret = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07004108
Jens Axboef86cd202020-01-29 13:46:44 -07004109 if (io_op_defs[req->opcode].file_table) {
4110 ret = io_grab_files(req);
4111 if (unlikely(ret))
4112 return ret;
4113 }
4114
Jens Axboecccf0ee2020-01-27 16:34:48 -07004115 io_req_work_grab_env(req, &io_op_defs[req->opcode]);
4116
Jens Axboed625c6e2019-12-17 19:53:05 -07004117 switch (req->opcode) {
Jens Axboee7815732019-12-17 19:45:06 -07004118 case IORING_OP_NOP:
4119 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004120 case IORING_OP_READV:
4121 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004122 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004123 ret = io_read_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07004124 break;
4125 case IORING_OP_WRITEV:
4126 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004127 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004128 ret = io_write_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07004129 break;
Jens Axboe0969e782019-12-17 18:40:57 -07004130 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004131 ret = io_poll_add_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07004132 break;
4133 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004134 ret = io_poll_remove_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07004135 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004136 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004137 ret = io_prep_fsync(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004138 break;
4139 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004140 ret = io_prep_sfr(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004141 break;
Jens Axboe03b12302019-12-02 18:50:25 -07004142 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004143 case IORING_OP_SEND:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004144 ret = io_sendmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07004145 break;
4146 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004147 case IORING_OP_RECV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004148 ret = io_recvmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07004149 break;
Jens Axboef499a022019-12-02 16:28:46 -07004150 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004151 ret = io_connect_prep(req, sqe);
Jens Axboef499a022019-12-02 16:28:46 -07004152 break;
Jens Axboe2d283902019-12-04 11:08:05 -07004153 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004154 ret = io_timeout_prep(req, sqe, false);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004155 break;
Jens Axboeb29472e2019-12-17 18:50:29 -07004156 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004157 ret = io_timeout_remove_prep(req, sqe);
Jens Axboeb29472e2019-12-17 18:50:29 -07004158 break;
Jens Axboefbf23842019-12-17 18:45:56 -07004159 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004160 ret = io_async_cancel_prep(req, sqe);
Jens Axboefbf23842019-12-17 18:45:56 -07004161 break;
Jens Axboe2d283902019-12-04 11:08:05 -07004162 case IORING_OP_LINK_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004163 ret = io_timeout_prep(req, sqe, true);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004164 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004165 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004166 ret = io_accept_prep(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004167 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07004168 case IORING_OP_FALLOCATE:
4169 ret = io_fallocate_prep(req, sqe);
4170 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004171 case IORING_OP_OPENAT:
4172 ret = io_openat_prep(req, sqe);
4173 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07004174 case IORING_OP_CLOSE:
4175 ret = io_close_prep(req, sqe);
4176 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004177 case IORING_OP_FILES_UPDATE:
4178 ret = io_files_update_prep(req, sqe);
4179 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004180 case IORING_OP_STATX:
4181 ret = io_statx_prep(req, sqe);
4182 break;
Jens Axboe4840e412019-12-25 22:03:45 -07004183 case IORING_OP_FADVISE:
4184 ret = io_fadvise_prep(req, sqe);
4185 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07004186 case IORING_OP_MADVISE:
4187 ret = io_madvise_prep(req, sqe);
4188 break;
Jens Axboecebdb982020-01-08 17:59:24 -07004189 case IORING_OP_OPENAT2:
4190 ret = io_openat2_prep(req, sqe);
4191 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07004192 case IORING_OP_EPOLL_CTL:
4193 ret = io_epoll_ctl_prep(req, sqe);
4194 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004195 default:
Jens Axboee7815732019-12-17 19:45:06 -07004196 printk_once(KERN_WARNING "io_uring: unhandled opcode %d\n",
4197 req->opcode);
4198 ret = -EINVAL;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004199 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004200 }
4201
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004202 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07004203}
4204
Jens Axboe3529d8c2019-12-19 18:24:38 -07004205static int io_req_defer(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboede0617e2019-04-06 21:51:27 -06004206{
Jackie Liua197f662019-11-08 08:09:12 -07004207 struct io_ring_ctx *ctx = req->ctx;
Jens Axboef67676d2019-12-02 11:03:47 -07004208 int ret;
Jens Axboede0617e2019-04-06 21:51:27 -06004209
Bob Liu9d858b22019-11-13 18:06:25 +08004210 /* Still need defer if there is pending req in defer list. */
4211 if (!req_need_defer(req) && list_empty(&ctx->defer_list))
Jens Axboede0617e2019-04-06 21:51:27 -06004212 return 0;
4213
Jens Axboe3529d8c2019-12-19 18:24:38 -07004214 if (!req->io && io_alloc_async_ctx(req))
Jens Axboede0617e2019-04-06 21:51:27 -06004215 return -EAGAIN;
4216
Jens Axboe3529d8c2019-12-19 18:24:38 -07004217 ret = io_req_defer_prep(req, sqe);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004218 if (ret < 0)
Jens Axboe2d283902019-12-04 11:08:05 -07004219 return ret;
Jens Axboe2d283902019-12-04 11:08:05 -07004220
Jens Axboede0617e2019-04-06 21:51:27 -06004221 spin_lock_irq(&ctx->completion_lock);
Bob Liu9d858b22019-11-13 18:06:25 +08004222 if (!req_need_defer(req) && list_empty(&ctx->defer_list)) {
Jens Axboede0617e2019-04-06 21:51:27 -06004223 spin_unlock_irq(&ctx->completion_lock);
Jens Axboede0617e2019-04-06 21:51:27 -06004224 return 0;
4225 }
4226
Jens Axboe915967f2019-11-21 09:01:20 -07004227 trace_io_uring_defer(ctx, req, req->user_data);
Jens Axboede0617e2019-04-06 21:51:27 -06004228 list_add_tail(&req->list, &ctx->defer_list);
4229 spin_unlock_irq(&ctx->completion_lock);
4230 return -EIOCBQUEUED;
4231}
4232
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004233static void io_cleanup_req(struct io_kiocb *req)
4234{
4235 struct io_async_ctx *io = req->io;
4236
4237 switch (req->opcode) {
4238 case IORING_OP_READV:
4239 case IORING_OP_READ_FIXED:
4240 case IORING_OP_READ:
4241 case IORING_OP_WRITEV:
4242 case IORING_OP_WRITE_FIXED:
4243 case IORING_OP_WRITE:
4244 if (io->rw.iov != io->rw.fast_iov)
4245 kfree(io->rw.iov);
4246 break;
4247 case IORING_OP_SENDMSG:
4248 case IORING_OP_RECVMSG:
4249 if (io->msg.iov != io->msg.fast_iov)
4250 kfree(io->msg.iov);
4251 break;
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03004252 case IORING_OP_OPENAT:
4253 case IORING_OP_OPENAT2:
4254 case IORING_OP_STATX:
4255 putname(req->open.filename);
4256 break;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004257 }
4258
4259 req->flags &= ~REQ_F_NEED_CLEANUP;
4260}
4261
Jens Axboe3529d8c2019-12-19 18:24:38 -07004262static int io_issue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
4263 struct io_kiocb **nxt, bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004264{
Jackie Liua197f662019-11-08 08:09:12 -07004265 struct io_ring_ctx *ctx = req->ctx;
Jens Axboed625c6e2019-12-17 19:53:05 -07004266 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004267
Jens Axboed625c6e2019-12-17 19:53:05 -07004268 switch (req->opcode) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07004269 case IORING_OP_NOP:
Jens Axboe78e19bb2019-11-06 15:21:34 -07004270 ret = io_nop(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004271 break;
4272 case IORING_OP_READV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004273 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004274 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004275 if (sqe) {
4276 ret = io_read_prep(req, sqe, force_nonblock);
4277 if (ret < 0)
4278 break;
4279 }
Pavel Begunkov267bc902019-11-07 01:41:08 +03004280 ret = io_read(req, nxt, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004281 break;
4282 case IORING_OP_WRITEV:
Jens Axboeedafcce2019-01-09 09:16:05 -07004283 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004284 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004285 if (sqe) {
4286 ret = io_write_prep(req, sqe, force_nonblock);
4287 if (ret < 0)
4288 break;
4289 }
Pavel Begunkov267bc902019-11-07 01:41:08 +03004290 ret = io_write(req, nxt, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004291 break;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07004292 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004293 if (sqe) {
4294 ret = io_prep_fsync(req, sqe);
4295 if (ret < 0)
4296 break;
4297 }
Jens Axboefc4df992019-12-10 14:38:45 -07004298 ret = io_fsync(req, nxt, force_nonblock);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07004299 break;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004300 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004301 if (sqe) {
4302 ret = io_poll_add_prep(req, sqe);
4303 if (ret)
4304 break;
4305 }
Jens Axboefc4df992019-12-10 14:38:45 -07004306 ret = io_poll_add(req, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004307 break;
4308 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004309 if (sqe) {
4310 ret = io_poll_remove_prep(req, sqe);
4311 if (ret < 0)
4312 break;
4313 }
Jens Axboefc4df992019-12-10 14:38:45 -07004314 ret = io_poll_remove(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004315 break;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004316 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004317 if (sqe) {
4318 ret = io_prep_sfr(req, sqe);
4319 if (ret < 0)
4320 break;
4321 }
Jens Axboefc4df992019-12-10 14:38:45 -07004322 ret = io_sync_file_range(req, nxt, force_nonblock);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06004323 break;
Jens Axboe0fa03c62019-04-19 13:34:07 -06004324 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004325 case IORING_OP_SEND:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004326 if (sqe) {
4327 ret = io_sendmsg_prep(req, sqe);
4328 if (ret < 0)
4329 break;
4330 }
Jens Axboefddafac2020-01-04 20:19:44 -07004331 if (req->opcode == IORING_OP_SENDMSG)
4332 ret = io_sendmsg(req, nxt, force_nonblock);
4333 else
4334 ret = io_send(req, nxt, force_nonblock);
Jens Axboe0fa03c62019-04-19 13:34:07 -06004335 break;
Jens Axboeaa1fa282019-04-19 13:38:09 -06004336 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004337 case IORING_OP_RECV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004338 if (sqe) {
4339 ret = io_recvmsg_prep(req, sqe);
4340 if (ret)
4341 break;
4342 }
Jens Axboefddafac2020-01-04 20:19:44 -07004343 if (req->opcode == IORING_OP_RECVMSG)
4344 ret = io_recvmsg(req, nxt, force_nonblock);
4345 else
4346 ret = io_recv(req, nxt, force_nonblock);
Jens Axboeaa1fa282019-04-19 13:38:09 -06004347 break;
Jens Axboe5262f562019-09-17 12:26:57 -06004348 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004349 if (sqe) {
4350 ret = io_timeout_prep(req, sqe, false);
4351 if (ret)
4352 break;
4353 }
Jens Axboefc4df992019-12-10 14:38:45 -07004354 ret = io_timeout(req);
Jens Axboe5262f562019-09-17 12:26:57 -06004355 break;
Jens Axboe11365042019-10-16 09:08:32 -06004356 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004357 if (sqe) {
4358 ret = io_timeout_remove_prep(req, sqe);
4359 if (ret)
4360 break;
4361 }
Jens Axboefc4df992019-12-10 14:38:45 -07004362 ret = io_timeout_remove(req);
Jens Axboe11365042019-10-16 09:08:32 -06004363 break;
Jens Axboe17f2fe32019-10-17 14:42:58 -06004364 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004365 if (sqe) {
4366 ret = io_accept_prep(req, sqe);
4367 if (ret)
4368 break;
4369 }
Jens Axboefc4df992019-12-10 14:38:45 -07004370 ret = io_accept(req, nxt, force_nonblock);
Jens Axboe17f2fe32019-10-17 14:42:58 -06004371 break;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004372 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004373 if (sqe) {
4374 ret = io_connect_prep(req, sqe);
4375 if (ret)
4376 break;
4377 }
Jens Axboefc4df992019-12-10 14:38:45 -07004378 ret = io_connect(req, nxt, force_nonblock);
Jens Axboef8e85cf2019-11-23 14:24:24 -07004379 break;
Jens Axboe62755e32019-10-28 21:49:21 -06004380 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004381 if (sqe) {
4382 ret = io_async_cancel_prep(req, sqe);
4383 if (ret)
4384 break;
4385 }
Jens Axboefc4df992019-12-10 14:38:45 -07004386 ret = io_async_cancel(req, nxt);
Jens Axboe62755e32019-10-28 21:49:21 -06004387 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07004388 case IORING_OP_FALLOCATE:
4389 if (sqe) {
4390 ret = io_fallocate_prep(req, sqe);
4391 if (ret)
4392 break;
4393 }
4394 ret = io_fallocate(req, nxt, force_nonblock);
4395 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004396 case IORING_OP_OPENAT:
4397 if (sqe) {
4398 ret = io_openat_prep(req, sqe);
4399 if (ret)
4400 break;
4401 }
4402 ret = io_openat(req, nxt, force_nonblock);
4403 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07004404 case IORING_OP_CLOSE:
4405 if (sqe) {
4406 ret = io_close_prep(req, sqe);
4407 if (ret)
4408 break;
4409 }
4410 ret = io_close(req, nxt, force_nonblock);
4411 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004412 case IORING_OP_FILES_UPDATE:
4413 if (sqe) {
4414 ret = io_files_update_prep(req, sqe);
4415 if (ret)
4416 break;
4417 }
4418 ret = io_files_update(req, force_nonblock);
4419 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004420 case IORING_OP_STATX:
4421 if (sqe) {
4422 ret = io_statx_prep(req, sqe);
4423 if (ret)
4424 break;
4425 }
4426 ret = io_statx(req, nxt, force_nonblock);
4427 break;
Jens Axboe4840e412019-12-25 22:03:45 -07004428 case IORING_OP_FADVISE:
4429 if (sqe) {
4430 ret = io_fadvise_prep(req, sqe);
4431 if (ret)
4432 break;
4433 }
4434 ret = io_fadvise(req, nxt, force_nonblock);
4435 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07004436 case IORING_OP_MADVISE:
4437 if (sqe) {
4438 ret = io_madvise_prep(req, sqe);
4439 if (ret)
4440 break;
4441 }
4442 ret = io_madvise(req, nxt, force_nonblock);
4443 break;
Jens Axboecebdb982020-01-08 17:59:24 -07004444 case IORING_OP_OPENAT2:
4445 if (sqe) {
4446 ret = io_openat2_prep(req, sqe);
4447 if (ret)
4448 break;
4449 }
4450 ret = io_openat2(req, nxt, force_nonblock);
4451 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07004452 case IORING_OP_EPOLL_CTL:
4453 if (sqe) {
4454 ret = io_epoll_ctl_prep(req, sqe);
4455 if (ret)
4456 break;
4457 }
4458 ret = io_epoll_ctl(req, nxt, force_nonblock);
4459 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004460 default:
4461 ret = -EINVAL;
4462 break;
4463 }
4464
Jens Axboedef596e2019-01-09 08:59:42 -07004465 if (ret)
4466 return ret;
4467
4468 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboe11ba8202020-01-15 21:51:17 -07004469 const bool in_async = io_wq_current_is_worker();
4470
Jens Axboe9e645e112019-05-10 16:07:28 -06004471 if (req->result == -EAGAIN)
Jens Axboedef596e2019-01-09 08:59:42 -07004472 return -EAGAIN;
4473
Jens Axboe11ba8202020-01-15 21:51:17 -07004474 /* workqueue context doesn't hold uring_lock, grab it now */
4475 if (in_async)
4476 mutex_lock(&ctx->uring_lock);
4477
Jens Axboedef596e2019-01-09 08:59:42 -07004478 io_iopoll_req_issued(req);
Jens Axboe11ba8202020-01-15 21:51:17 -07004479
4480 if (in_async)
4481 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07004482 }
4483
4484 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004485}
4486
Jens Axboe561fb042019-10-24 07:25:42 -06004487static void io_wq_submit_work(struct io_wq_work **workptr)
Jens Axboe31b51512019-01-18 22:56:34 -07004488{
Jens Axboe561fb042019-10-24 07:25:42 -06004489 struct io_wq_work *work = *workptr;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004490 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboe561fb042019-10-24 07:25:42 -06004491 struct io_kiocb *nxt = NULL;
4492 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004493
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07004494 /* if NO_CANCEL is set, we must still run the work */
4495 if ((work->flags & (IO_WQ_WORK_CANCEL|IO_WQ_WORK_NO_CANCEL)) ==
4496 IO_WQ_WORK_CANCEL) {
Jens Axboe561fb042019-10-24 07:25:42 -06004497 ret = -ECANCELED;
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07004498 }
Jens Axboe31b51512019-01-18 22:56:34 -07004499
Jens Axboe561fb042019-10-24 07:25:42 -06004500 if (!ret) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03004501 req->in_async = true;
Jens Axboe561fb042019-10-24 07:25:42 -06004502 do {
Jens Axboe3529d8c2019-12-19 18:24:38 -07004503 ret = io_issue_sqe(req, NULL, &nxt, false);
Jens Axboe561fb042019-10-24 07:25:42 -06004504 /*
4505 * We can get EAGAIN for polled IO even though we're
4506 * forcing a sync submission from here, since we can't
4507 * wait for request slots on the block side.
4508 */
4509 if (ret != -EAGAIN)
4510 break;
4511 cond_resched();
4512 } while (1);
4513 }
Jens Axboe31b51512019-01-18 22:56:34 -07004514
Jens Axboe561fb042019-10-24 07:25:42 -06004515 /* drop submission reference */
Jackie Liuec9c02a2019-11-08 23:50:36 +08004516 io_put_req(req);
Jens Axboe817869d2019-04-30 14:44:05 -06004517
Jens Axboe561fb042019-10-24 07:25:42 -06004518 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004519 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07004520 io_cqring_add_event(req, ret);
Jens Axboe817869d2019-04-30 14:44:05 -06004521 io_put_req(req);
Jens Axboeedafcce2019-01-09 09:16:05 -07004522 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07004523
Jens Axboe561fb042019-10-24 07:25:42 -06004524 /* if a dependent link is ready, pass it back */
Jens Axboe78912932020-01-14 22:09:06 -07004525 if (!ret && nxt)
4526 io_wq_assign_next(workptr, nxt);
Jens Axboe31b51512019-01-18 22:56:34 -07004527}
Jens Axboe2b188cc2019-01-07 10:46:33 -07004528
Jens Axboe15b71ab2019-12-11 11:20:36 -07004529static int io_req_needs_file(struct io_kiocb *req, int fd)
Jens Axboe9e3aa612019-12-11 15:55:43 -07004530{
Jens Axboed3656342019-12-18 09:50:26 -07004531 if (!io_op_defs[req->opcode].needs_file)
Jens Axboe9e3aa612019-12-11 15:55:43 -07004532 return 0;
Jens Axboe0b5faf62020-02-06 21:42:51 -07004533 if ((fd == -1 || fd == AT_FDCWD) && io_op_defs[req->opcode].fd_non_neg)
Jens Axboed3656342019-12-18 09:50:26 -07004534 return 0;
4535 return 1;
Jens Axboe09bb8392019-03-13 12:39:28 -06004536}
4537
Jens Axboe65e19f52019-10-26 07:20:21 -06004538static inline struct file *io_file_from_index(struct io_ring_ctx *ctx,
4539 int index)
Jens Axboe09bb8392019-03-13 12:39:28 -06004540{
Jens Axboe65e19f52019-10-26 07:20:21 -06004541 struct fixed_file_table *table;
4542
Jens Axboe05f3fb32019-12-09 11:22:50 -07004543 table = &ctx->file_data->table[index >> IORING_FILE_TABLE_SHIFT];
4544 return table->files[index & IORING_FILE_TABLE_MASK];;
Jens Axboe65e19f52019-10-26 07:20:21 -06004545}
4546
Jens Axboe3529d8c2019-12-19 18:24:38 -07004547static int io_req_set_file(struct io_submit_state *state, struct io_kiocb *req,
4548 const struct io_uring_sqe *sqe)
Jens Axboe09bb8392019-03-13 12:39:28 -06004549{
Jackie Liua197f662019-11-08 08:09:12 -07004550 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe09bb8392019-03-13 12:39:28 -06004551 unsigned flags;
Jens Axboed3656342019-12-18 09:50:26 -07004552 int fd;
Jens Axboe09bb8392019-03-13 12:39:28 -06004553
Jens Axboe3529d8c2019-12-19 18:24:38 -07004554 flags = READ_ONCE(sqe->flags);
4555 fd = READ_ONCE(sqe->fd);
Jens Axboe09bb8392019-03-13 12:39:28 -06004556
Jens Axboed3656342019-12-18 09:50:26 -07004557 if (!io_req_needs_file(req, fd))
4558 return 0;
Jens Axboe09bb8392019-03-13 12:39:28 -06004559
4560 if (flags & IOSQE_FIXED_FILE) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07004561 if (unlikely(!ctx->file_data ||
Jens Axboe09bb8392019-03-13 12:39:28 -06004562 (unsigned) fd >= ctx->nr_user_files))
4563 return -EBADF;
Jens Axboeb7620122019-10-26 07:22:55 -06004564 fd = array_index_nospec(fd, ctx->nr_user_files);
Jens Axboe65e19f52019-10-26 07:20:21 -06004565 req->file = io_file_from_index(ctx, fd);
4566 if (!req->file)
Jens Axboe08a45172019-10-03 08:11:03 -06004567 return -EBADF;
Jens Axboe09bb8392019-03-13 12:39:28 -06004568 req->flags |= REQ_F_FIXED_FILE;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004569 percpu_ref_get(&ctx->file_data->refs);
Jens Axboe09bb8392019-03-13 12:39:28 -06004570 } else {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03004571 if (req->needs_fixed_file)
Jens Axboe09bb8392019-03-13 12:39:28 -06004572 return -EBADF;
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02004573 trace_io_uring_file_get(ctx, fd);
Jens Axboe09bb8392019-03-13 12:39:28 -06004574 req->file = io_file_get(state, fd);
4575 if (unlikely(!req->file))
4576 return -EBADF;
4577 }
4578
4579 return 0;
4580}
4581
Jackie Liua197f662019-11-08 08:09:12 -07004582static int io_grab_files(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004583{
Jens Axboefcb323c2019-10-24 12:39:47 -06004584 int ret = -EBADF;
Jackie Liua197f662019-11-08 08:09:12 -07004585 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06004586
Jens Axboef86cd202020-01-29 13:46:44 -07004587 if (req->work.files)
4588 return 0;
Pavel Begunkovb14cca02020-01-17 04:45:59 +03004589 if (!ctx->ring_file)
Jens Axboeb5dba592019-12-11 14:02:38 -07004590 return -EBADF;
4591
Jens Axboefcb323c2019-10-24 12:39:47 -06004592 rcu_read_lock();
4593 spin_lock_irq(&ctx->inflight_lock);
4594 /*
4595 * We use the f_ops->flush() handler to ensure that we can flush
4596 * out work accessing these files if the fd is closed. Check if
4597 * the fd has changed since we started down this path, and disallow
4598 * this operation if it has.
4599 */
Pavel Begunkovb14cca02020-01-17 04:45:59 +03004600 if (fcheck(ctx->ring_fd) == ctx->ring_file) {
Jens Axboefcb323c2019-10-24 12:39:47 -06004601 list_add(&req->inflight_entry, &ctx->inflight_list);
4602 req->flags |= REQ_F_INFLIGHT;
4603 req->work.files = current->files;
4604 ret = 0;
4605 }
4606 spin_unlock_irq(&ctx->inflight_lock);
4607 rcu_read_unlock();
4608
4609 return ret;
4610}
4611
Jens Axboe2665abf2019-11-05 12:40:47 -07004612static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer)
4613{
Jens Axboead8a48a2019-11-15 08:49:11 -07004614 struct io_timeout_data *data = container_of(timer,
4615 struct io_timeout_data, timer);
4616 struct io_kiocb *req = data->req;
Jens Axboe2665abf2019-11-05 12:40:47 -07004617 struct io_ring_ctx *ctx = req->ctx;
4618 struct io_kiocb *prev = NULL;
4619 unsigned long flags;
Jens Axboe2665abf2019-11-05 12:40:47 -07004620
4621 spin_lock_irqsave(&ctx->completion_lock, flags);
4622
4623 /*
4624 * We don't expect the list to be empty, that will only happen if we
4625 * race with the completion of the linked work.
4626 */
Pavel Begunkov44932332019-12-05 16:16:35 +03004627 if (!list_empty(&req->link_list)) {
4628 prev = list_entry(req->link_list.prev, struct io_kiocb,
4629 link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07004630 if (refcount_inc_not_zero(&prev->refs)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03004631 list_del_init(&req->link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07004632 prev->flags &= ~REQ_F_LINK_TIMEOUT;
4633 } else
Jens Axboe76a46e02019-11-10 23:34:16 -07004634 prev = NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07004635 }
4636
4637 spin_unlock_irqrestore(&ctx->completion_lock, flags);
4638
4639 if (prev) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004640 req_set_fail_links(prev);
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004641 io_async_find_and_cancel(ctx, req, prev->user_data, NULL,
4642 -ETIME);
Jens Axboe76a46e02019-11-10 23:34:16 -07004643 io_put_req(prev);
Jens Axboe47f46762019-11-09 17:43:02 -07004644 } else {
4645 io_cqring_add_event(req, -ETIME);
4646 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07004647 }
Jens Axboe2665abf2019-11-05 12:40:47 -07004648 return HRTIMER_NORESTART;
4649}
4650
Jens Axboead8a48a2019-11-15 08:49:11 -07004651static void io_queue_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07004652{
Jens Axboe76a46e02019-11-10 23:34:16 -07004653 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07004654
Jens Axboe76a46e02019-11-10 23:34:16 -07004655 /*
4656 * If the list is now empty, then our linked request finished before
4657 * we got a chance to setup the timer
4658 */
4659 spin_lock_irq(&ctx->completion_lock);
Pavel Begunkov44932332019-12-05 16:16:35 +03004660 if (!list_empty(&req->link_list)) {
Jens Axboe2d283902019-12-04 11:08:05 -07004661 struct io_timeout_data *data = &req->io->timeout;
Jens Axboe94ae5e72019-11-14 19:39:52 -07004662
Jens Axboead8a48a2019-11-15 08:49:11 -07004663 data->timer.function = io_link_timeout_fn;
4664 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts),
4665 data->mode);
Jens Axboe2665abf2019-11-05 12:40:47 -07004666 }
Jens Axboe76a46e02019-11-10 23:34:16 -07004667 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe2665abf2019-11-05 12:40:47 -07004668
Jens Axboe2665abf2019-11-05 12:40:47 -07004669 /* drop submission reference */
Jens Axboe76a46e02019-11-10 23:34:16 -07004670 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07004671}
4672
Jens Axboead8a48a2019-11-15 08:49:11 -07004673static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07004674{
4675 struct io_kiocb *nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004676
Jens Axboe2665abf2019-11-05 12:40:47 -07004677 if (!(req->flags & REQ_F_LINK))
4678 return NULL;
4679
Pavel Begunkov44932332019-12-05 16:16:35 +03004680 nxt = list_first_entry_or_null(&req->link_list, struct io_kiocb,
4681 link_list);
Jens Axboed625c6e2019-12-17 19:53:05 -07004682 if (!nxt || nxt->opcode != IORING_OP_LINK_TIMEOUT)
Jens Axboe76a46e02019-11-10 23:34:16 -07004683 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07004684
Jens Axboe76a46e02019-11-10 23:34:16 -07004685 req->flags |= REQ_F_LINK_TIMEOUT;
Jens Axboe76a46e02019-11-10 23:34:16 -07004686 return nxt;
Jens Axboe2665abf2019-11-05 12:40:47 -07004687}
4688
Jens Axboe3529d8c2019-12-19 18:24:38 -07004689static void __io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004690{
Jens Axboe4a0a7a12019-12-09 20:01:01 -07004691 struct io_kiocb *linked_timeout;
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03004692 struct io_kiocb *nxt = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004693 int ret;
4694
Jens Axboe4a0a7a12019-12-09 20:01:01 -07004695again:
4696 linked_timeout = io_prep_linked_timeout(req);
4697
Jens Axboe3529d8c2019-12-19 18:24:38 -07004698 ret = io_issue_sqe(req, sqe, &nxt, true);
Jens Axboe491381ce2019-10-17 09:20:46 -06004699
4700 /*
4701 * We async punt it if the file wasn't marked NOWAIT, or if the file
4702 * doesn't support non-blocking read/write attempts
4703 */
4704 if (ret == -EAGAIN && (!(req->flags & REQ_F_NOWAIT) ||
4705 (req->flags & REQ_F_MUST_PUNT))) {
Pavel Begunkov86a761f2020-01-22 23:09:36 +03004706punt:
Jens Axboef86cd202020-01-29 13:46:44 -07004707 if (io_op_defs[req->opcode].file_table) {
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03004708 ret = io_grab_files(req);
4709 if (ret)
4710 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004711 }
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03004712
4713 /*
4714 * Queued up for async execution, worker will release
4715 * submit reference when the iocb is actually submitted.
4716 */
4717 io_queue_async_work(req);
Jens Axboe4a0a7a12019-12-09 20:01:01 -07004718 goto done_req;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004719 }
Jens Axboee65ef562019-03-12 10:16:44 -06004720
Jens Axboefcb323c2019-10-24 12:39:47 -06004721err:
Jens Axboee65ef562019-03-12 10:16:44 -06004722 /* drop submission reference */
4723 io_put_req(req);
4724
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03004725 if (linked_timeout) {
Jens Axboe76a46e02019-11-10 23:34:16 -07004726 if (!ret)
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03004727 io_queue_linked_timeout(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07004728 else
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03004729 io_put_req(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07004730 }
4731
Jens Axboee65ef562019-03-12 10:16:44 -06004732 /* and drop final reference, if we failed */
Jens Axboe9e645e112019-05-10 16:07:28 -06004733 if (ret) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07004734 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004735 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06004736 io_put_req(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06004737 }
Jens Axboe4a0a7a12019-12-09 20:01:01 -07004738done_req:
4739 if (nxt) {
4740 req = nxt;
4741 nxt = NULL;
Pavel Begunkov86a761f2020-01-22 23:09:36 +03004742
4743 if (req->flags & REQ_F_FORCE_ASYNC)
4744 goto punt;
Jens Axboe4a0a7a12019-12-09 20:01:01 -07004745 goto again;
4746 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07004747}
4748
Jens Axboe3529d8c2019-12-19 18:24:38 -07004749static void io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jackie Liu4fe2c962019-09-09 20:50:40 +08004750{
4751 int ret;
4752
Jens Axboe3529d8c2019-12-19 18:24:38 -07004753 ret = io_req_defer(req, sqe);
Jackie Liu4fe2c962019-09-09 20:50:40 +08004754 if (ret) {
4755 if (ret != -EIOCBQUEUED) {
Pavel Begunkov11185912020-01-22 23:09:35 +03004756fail_req:
Jens Axboe78e19bb2019-11-06 15:21:34 -07004757 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004758 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07004759 io_double_put_req(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08004760 }
Pavel Begunkov25508782019-12-30 21:24:47 +03004761 } else if (req->flags & REQ_F_FORCE_ASYNC) {
Pavel Begunkov11185912020-01-22 23:09:35 +03004762 ret = io_req_defer_prep(req, sqe);
4763 if (unlikely(ret < 0))
4764 goto fail_req;
Jens Axboece35a472019-12-17 08:04:44 -07004765 /*
4766 * Never try inline submit of IOSQE_ASYNC is set, go straight
4767 * to async execution.
4768 */
4769 req->work.flags |= IO_WQ_WORK_CONCURRENT;
4770 io_queue_async_work(req);
4771 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07004772 __io_queue_sqe(req, sqe);
Jens Axboece35a472019-12-17 08:04:44 -07004773 }
Jackie Liu4fe2c962019-09-09 20:50:40 +08004774}
4775
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03004776static inline void io_queue_link_head(struct io_kiocb *req)
Jackie Liu4fe2c962019-09-09 20:50:40 +08004777{
Jens Axboe94ae5e72019-11-14 19:39:52 -07004778 if (unlikely(req->flags & REQ_F_FAIL_LINK)) {
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03004779 io_cqring_add_event(req, -ECANCELED);
4780 io_double_put_req(req);
4781 } else
Jens Axboe3529d8c2019-12-19 18:24:38 -07004782 io_queue_sqe(req, NULL);
Jackie Liu4fe2c962019-09-09 20:50:40 +08004783}
4784
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004785#define SQE_VALID_FLAGS (IOSQE_FIXED_FILE|IOSQE_IO_DRAIN|IOSQE_IO_LINK| \
Jens Axboece35a472019-12-17 08:04:44 -07004786 IOSQE_IO_HARDLINK | IOSQE_ASYNC)
Jens Axboe9e645e112019-05-10 16:07:28 -06004787
Jens Axboe3529d8c2019-12-19 18:24:38 -07004788static bool io_submit_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
4789 struct io_submit_state *state, struct io_kiocb **link)
Jens Axboe9e645e112019-05-10 16:07:28 -06004790{
Jens Axboe75c6a032020-01-28 10:15:23 -07004791 const struct cred *old_creds = NULL;
Jackie Liua197f662019-11-08 08:09:12 -07004792 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkov32fe5252019-12-17 22:26:58 +03004793 unsigned int sqe_flags;
Jens Axboe75c6a032020-01-28 10:15:23 -07004794 int ret, id;
Jens Axboe9e645e112019-05-10 16:07:28 -06004795
Pavel Begunkov32fe5252019-12-17 22:26:58 +03004796 sqe_flags = READ_ONCE(sqe->flags);
Jens Axboe9e645e112019-05-10 16:07:28 -06004797
4798 /* enforce forwards compatibility on users */
Pavel Begunkov32fe5252019-12-17 22:26:58 +03004799 if (unlikely(sqe_flags & ~SQE_VALID_FLAGS)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06004800 ret = -EINVAL;
Pavel Begunkov196be952019-11-07 01:41:06 +03004801 goto err_req;
Jens Axboe9e645e112019-05-10 16:07:28 -06004802 }
4803
Jens Axboe75c6a032020-01-28 10:15:23 -07004804 id = READ_ONCE(sqe->personality);
4805 if (id) {
4806 const struct cred *personality_creds;
4807
4808 personality_creds = idr_find(&ctx->personality_idr, id);
4809 if (unlikely(!personality_creds)) {
4810 ret = -EINVAL;
4811 goto err_req;
4812 }
4813 old_creds = override_creds(personality_creds);
4814 }
4815
Pavel Begunkov6b47ee62020-01-18 20:22:41 +03004816 /* same numerical values with corresponding REQ_F_*, safe to copy */
4817 req->flags |= sqe_flags & (IOSQE_IO_DRAIN|IOSQE_IO_HARDLINK|
4818 IOSQE_ASYNC);
Jens Axboe9e645e112019-05-10 16:07:28 -06004819
Jens Axboe3529d8c2019-12-19 18:24:38 -07004820 ret = io_req_set_file(state, req, sqe);
Jens Axboe9e645e112019-05-10 16:07:28 -06004821 if (unlikely(ret)) {
4822err_req:
Jens Axboe78e19bb2019-11-06 15:21:34 -07004823 io_cqring_add_event(req, ret);
4824 io_double_put_req(req);
Jens Axboe75c6a032020-01-28 10:15:23 -07004825 if (old_creds)
4826 revert_creds(old_creds);
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03004827 return false;
Jens Axboe9e645e112019-05-10 16:07:28 -06004828 }
4829
Jens Axboe9e645e112019-05-10 16:07:28 -06004830 /*
4831 * If we already have a head request, queue this one for async
4832 * submittal once the head completes. If we don't have a head but
4833 * IOSQE_IO_LINK is set in the sqe, start a new head. This one will be
4834 * submitted sync once the chain is complete. If none of those
4835 * conditions are true (normal request), then just queue it.
4836 */
4837 if (*link) {
Pavel Begunkov9d763772019-12-17 02:22:07 +03004838 struct io_kiocb *head = *link;
Jens Axboe9e645e112019-05-10 16:07:28 -06004839
Pavel Begunkov8cdf2192020-01-25 00:40:24 +03004840 /*
4841 * Taking sequential execution of a link, draining both sides
4842 * of the link also fullfils IOSQE_IO_DRAIN semantics for all
4843 * requests in the link. So, it drains the head and the
4844 * next after the link request. The last one is done via
4845 * drain_next flag to persist the effect across calls.
4846 */
Pavel Begunkov711be032020-01-17 03:57:59 +03004847 if (sqe_flags & IOSQE_IO_DRAIN) {
4848 head->flags |= REQ_F_IO_DRAIN;
4849 ctx->drain_next = 1;
4850 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004851 if (io_alloc_async_ctx(req)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06004852 ret = -EAGAIN;
4853 goto err_req;
4854 }
4855
Jens Axboe3529d8c2019-12-19 18:24:38 -07004856 ret = io_req_defer_prep(req, sqe);
Jens Axboe2d283902019-12-04 11:08:05 -07004857 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004858 /* fail even hard links since we don't submit */
Pavel Begunkov9d763772019-12-17 02:22:07 +03004859 head->flags |= REQ_F_FAIL_LINK;
Jens Axboef67676d2019-12-02 11:03:47 -07004860 goto err_req;
Jens Axboe2d283902019-12-04 11:08:05 -07004861 }
Pavel Begunkov9d763772019-12-17 02:22:07 +03004862 trace_io_uring_link(ctx, req, head);
4863 list_add_tail(&req->link_list, &head->link_list);
Jens Axboe9e645e112019-05-10 16:07:28 -06004864
Pavel Begunkov32fe5252019-12-17 22:26:58 +03004865 /* last request of a link, enqueue the link */
4866 if (!(sqe_flags & (IOSQE_IO_LINK|IOSQE_IO_HARDLINK))) {
4867 io_queue_link_head(head);
4868 *link = NULL;
4869 }
Jens Axboe9e645e112019-05-10 16:07:28 -06004870 } else {
Pavel Begunkov711be032020-01-17 03:57:59 +03004871 if (unlikely(ctx->drain_next)) {
4872 req->flags |= REQ_F_IO_DRAIN;
4873 req->ctx->drain_next = 0;
4874 }
4875 if (sqe_flags & (IOSQE_IO_LINK|IOSQE_IO_HARDLINK)) {
4876 req->flags |= REQ_F_LINK;
Pavel Begunkov711be032020-01-17 03:57:59 +03004877 INIT_LIST_HEAD(&req->link_list);
4878 ret = io_req_defer_prep(req, sqe);
4879 if (ret)
4880 req->flags |= REQ_F_FAIL_LINK;
4881 *link = req;
4882 } else {
4883 io_queue_sqe(req, sqe);
4884 }
Jens Axboe9e645e112019-05-10 16:07:28 -06004885 }
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03004886
Jens Axboe75c6a032020-01-28 10:15:23 -07004887 if (old_creds)
4888 revert_creds(old_creds);
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03004889 return true;
Jens Axboe9e645e112019-05-10 16:07:28 -06004890}
4891
Jens Axboe9a56a232019-01-09 09:06:50 -07004892/*
4893 * Batched submission is done, ensure local IO is flushed out.
4894 */
4895static void io_submit_state_end(struct io_submit_state *state)
4896{
4897 blk_finish_plug(&state->plug);
Jens Axboe3d6770f2019-04-13 11:50:54 -06004898 io_file_put(state);
Jens Axboe2579f912019-01-09 09:10:43 -07004899 if (state->free_reqs)
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03004900 kmem_cache_free_bulk(req_cachep, state->free_reqs, state->reqs);
Jens Axboe9a56a232019-01-09 09:06:50 -07004901}
4902
4903/*
4904 * Start submission side cache.
4905 */
4906static void io_submit_state_start(struct io_submit_state *state,
Jackie Liu22efde52019-12-02 17:14:52 +08004907 unsigned int max_ios)
Jens Axboe9a56a232019-01-09 09:06:50 -07004908{
4909 blk_start_plug(&state->plug);
Jens Axboe2579f912019-01-09 09:10:43 -07004910 state->free_reqs = 0;
Jens Axboe9a56a232019-01-09 09:06:50 -07004911 state->file = NULL;
4912 state->ios_left = max_ios;
4913}
4914
Jens Axboe2b188cc2019-01-07 10:46:33 -07004915static void io_commit_sqring(struct io_ring_ctx *ctx)
4916{
Hristo Venev75b28af2019-08-26 17:23:46 +00004917 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004918
Pavel Begunkovcaf582c2019-12-30 21:24:46 +03004919 /*
4920 * Ensure any loads from the SQEs are done at this point,
4921 * since once we write the new head, the application could
4922 * write new data to them.
4923 */
4924 smp_store_release(&rings->sq.head, ctx->cached_sq_head);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004925}
4926
4927/*
Jens Axboe3529d8c2019-12-19 18:24:38 -07004928 * Fetch an sqe, if one is available. Note that sqe_ptr will point to memory
Jens Axboe2b188cc2019-01-07 10:46:33 -07004929 * that is mapped by userspace. This means that care needs to be taken to
4930 * ensure that reads are stable, as we cannot rely on userspace always
4931 * being a good citizen. If members of the sqe are validated and then later
4932 * used, it's important that those reads are done through READ_ONCE() to
4933 * prevent a re-load down the line.
4934 */
Jens Axboe3529d8c2019-12-19 18:24:38 -07004935static bool io_get_sqring(struct io_ring_ctx *ctx, struct io_kiocb *req,
4936 const struct io_uring_sqe **sqe_ptr)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004937{
Hristo Venev75b28af2019-08-26 17:23:46 +00004938 u32 *sq_array = ctx->sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004939 unsigned head;
4940
4941 /*
4942 * The cached sq head (or cq tail) serves two purposes:
4943 *
4944 * 1) allows us to batch the cost of updating the user visible
4945 * head updates.
4946 * 2) allows the kernel side to track the head on its own, even
4947 * though the application is the one updating it.
4948 */
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03004949 head = READ_ONCE(sq_array[ctx->cached_sq_head & ctx->sq_mask]);
Pavel Begunkov9835d6f2019-11-21 21:24:56 +03004950 if (likely(head < ctx->sq_entries)) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03004951 /*
4952 * All io need record the previous position, if LINK vs DARIN,
4953 * it can be used to mark the position of the first IO in the
4954 * link list.
4955 */
4956 req->sequence = ctx->cached_sq_head;
Jens Axboe3529d8c2019-12-19 18:24:38 -07004957 *sqe_ptr = &ctx->sq_sqes[head];
4958 req->opcode = READ_ONCE((*sqe_ptr)->opcode);
4959 req->user_data = READ_ONCE((*sqe_ptr)->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004960 ctx->cached_sq_head++;
4961 return true;
4962 }
4963
4964 /* drop invalid entries */
4965 ctx->cached_sq_head++;
Jens Axboe498ccd92019-10-25 10:04:25 -06004966 ctx->cached_sq_dropped++;
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03004967 WRITE_ONCE(ctx->rings->sq_dropped, ctx->cached_sq_dropped);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004968 return false;
4969}
4970
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03004971static int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr,
Pavel Begunkovae9428c2019-11-06 00:22:14 +03004972 struct file *ring_file, int ring_fd,
4973 struct mm_struct **mm, bool async)
Jens Axboe6c271ce2019-01-10 11:22:30 -07004974{
4975 struct io_submit_state state, *statep = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06004976 struct io_kiocb *link = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06004977 int i, submitted = 0;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03004978 bool mm_fault = false;
Jens Axboe6c271ce2019-01-10 11:22:30 -07004979
Jens Axboec4a2ed72019-11-21 21:01:26 -07004980 /* if we have a backlog and couldn't flush it all, return BUSY */
Jens Axboead3eb2c2019-12-18 17:12:20 -07004981 if (test_bit(0, &ctx->sq_check_overflow)) {
4982 if (!list_empty(&ctx->cq_overflow_list) &&
4983 !io_cqring_overflow_flush(ctx, false))
4984 return -EBUSY;
4985 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07004986
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03004987 /* make sure SQ entry isn't read before tail */
4988 nr = min3(nr, ctx->sq_entries, io_sqring_entries(ctx));
Pavel Begunkov9ef4f122019-12-30 21:24:44 +03004989
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03004990 if (!percpu_ref_tryget_many(&ctx->refs, nr))
4991 return -EAGAIN;
Jens Axboe6c271ce2019-01-10 11:22:30 -07004992
4993 if (nr > IO_PLUG_THRESHOLD) {
Jackie Liu22efde52019-12-02 17:14:52 +08004994 io_submit_state_start(&state, nr);
Jens Axboe6c271ce2019-01-10 11:22:30 -07004995 statep = &state;
4996 }
4997
Pavel Begunkovb14cca02020-01-17 04:45:59 +03004998 ctx->ring_fd = ring_fd;
4999 ctx->ring_file = ring_file;
5000
Jens Axboe6c271ce2019-01-10 11:22:30 -07005001 for (i = 0; i < nr; i++) {
Jens Axboe3529d8c2019-12-19 18:24:38 -07005002 const struct io_uring_sqe *sqe;
Pavel Begunkov196be952019-11-07 01:41:06 +03005003 struct io_kiocb *req;
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005004 int err;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005005
Pavel Begunkov196be952019-11-07 01:41:06 +03005006 req = io_get_req(ctx, statep);
5007 if (unlikely(!req)) {
5008 if (!submitted)
5009 submitted = -EAGAIN;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005010 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06005011 }
Jens Axboe3529d8c2019-12-19 18:24:38 -07005012 if (!io_get_sqring(ctx, req, &sqe)) {
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03005013 __io_req_do_free(req);
Pavel Begunkov196be952019-11-07 01:41:06 +03005014 break;
5015 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005016
Jens Axboed3656342019-12-18 09:50:26 -07005017 /* will complete beyond this point, count as submitted */
5018 submitted++;
5019
5020 if (unlikely(req->opcode >= IORING_OP_LAST)) {
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005021 err = -EINVAL;
5022fail_req:
5023 io_cqring_add_event(req, err);
Jens Axboed3656342019-12-18 09:50:26 -07005024 io_double_put_req(req);
5025 break;
5026 }
5027
5028 if (io_op_defs[req->opcode].needs_mm && !*mm) {
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005029 mm_fault = mm_fault || !mmget_not_zero(ctx->sqo_mm);
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005030 if (unlikely(mm_fault)) {
5031 err = -EFAULT;
5032 goto fail_req;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005033 }
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005034 use_mm(ctx->sqo_mm);
5035 *mm = ctx->sqo_mm;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005036 }
5037
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03005038 req->in_async = async;
5039 req->needs_fixed_file = async;
Jens Axboe354420f2020-01-08 18:55:15 -07005040 trace_io_uring_submit_sqe(ctx, req->opcode, req->user_data,
5041 true, async);
Jens Axboe3529d8c2019-12-19 18:24:38 -07005042 if (!io_submit_sqe(req, sqe, statep, &link))
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03005043 break;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005044 }
5045
Pavel Begunkov9466f432020-01-25 22:34:01 +03005046 if (unlikely(submitted != nr)) {
5047 int ref_used = (submitted == -EAGAIN) ? 0 : submitted;
5048
5049 percpu_ref_put_many(&ctx->refs, nr - ref_used);
5050 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005051 if (link)
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005052 io_queue_link_head(link);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005053 if (statep)
5054 io_submit_state_end(&state);
5055
Pavel Begunkovae9428c2019-11-06 00:22:14 +03005056 /* Commit SQ ring head once we've consumed and submitted all SQEs */
5057 io_commit_sqring(ctx);
5058
Jens Axboe6c271ce2019-01-10 11:22:30 -07005059 return submitted;
5060}
5061
5062static int io_sq_thread(void *data)
5063{
Jens Axboe6c271ce2019-01-10 11:22:30 -07005064 struct io_ring_ctx *ctx = data;
5065 struct mm_struct *cur_mm = NULL;
Jens Axboe181e4482019-11-25 08:52:30 -07005066 const struct cred *old_cred;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005067 mm_segment_t old_fs;
5068 DEFINE_WAIT(wait);
5069 unsigned inflight;
5070 unsigned long timeout;
Jens Axboec1edbf52019-11-10 16:56:04 -07005071 int ret;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005072
Jens Axboe206aefd2019-11-07 18:27:42 -07005073 complete(&ctx->completions[1]);
Jackie Liua4c0b3d2019-07-08 13:41:12 +08005074
Jens Axboe6c271ce2019-01-10 11:22:30 -07005075 old_fs = get_fs();
5076 set_fs(USER_DS);
Jens Axboe181e4482019-11-25 08:52:30 -07005077 old_cred = override_creds(ctx->creds);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005078
Jens Axboec1edbf52019-11-10 16:56:04 -07005079 ret = timeout = inflight = 0;
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02005080 while (!kthread_should_park()) {
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005081 unsigned int to_submit;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005082
5083 if (inflight) {
5084 unsigned nr_events = 0;
5085
5086 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboe2b2ed972019-10-25 10:06:15 -06005087 /*
5088 * inflight is the count of the maximum possible
5089 * entries we submitted, but it can be smaller
5090 * if we dropped some of them. If we don't have
5091 * poll entries available, then we know that we
5092 * have nothing left to poll for. Reset the
5093 * inflight count to zero in that case.
5094 */
5095 mutex_lock(&ctx->uring_lock);
5096 if (!list_empty(&ctx->poll_list))
5097 __io_iopoll_check(ctx, &nr_events, 0);
5098 else
5099 inflight = 0;
5100 mutex_unlock(&ctx->uring_lock);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005101 } else {
5102 /*
5103 * Normal IO, just pretend everything completed.
5104 * We don't have to poll completions for that.
5105 */
5106 nr_events = inflight;
5107 }
5108
5109 inflight -= nr_events;
5110 if (!inflight)
5111 timeout = jiffies + ctx->sq_thread_idle;
5112 }
5113
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005114 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07005115
5116 /*
5117 * If submit got -EBUSY, flag us as needing the application
5118 * to enter the kernel to reap and flush events.
5119 */
5120 if (!to_submit || ret == -EBUSY) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07005121 /*
5122 * We're polling. If we're within the defined idle
5123 * period, then let us spin without work before going
Jens Axboec1edbf52019-11-10 16:56:04 -07005124 * to sleep. The exception is if we got EBUSY doing
5125 * more IO, we should wait for the application to
5126 * reap events and wake us up.
Jens Axboe6c271ce2019-01-10 11:22:30 -07005127 */
Jens Axboec1edbf52019-11-10 16:56:04 -07005128 if (inflight ||
Jens Axboedf069d82020-02-04 16:48:34 -07005129 (!time_after(jiffies, timeout) && ret != -EBUSY &&
5130 !percpu_ref_is_dying(&ctx->refs))) {
Jens Axboe9831a902019-09-19 09:48:55 -06005131 cond_resched();
Jens Axboe6c271ce2019-01-10 11:22:30 -07005132 continue;
5133 }
5134
5135 /*
5136 * Drop cur_mm before scheduling, we can't hold it for
5137 * long periods (or over schedule()). Do this before
5138 * adding ourselves to the waitqueue, as the unuse/drop
5139 * may sleep.
5140 */
5141 if (cur_mm) {
5142 unuse_mm(cur_mm);
5143 mmput(cur_mm);
5144 cur_mm = NULL;
5145 }
5146
5147 prepare_to_wait(&ctx->sqo_wait, &wait,
5148 TASK_INTERRUPTIBLE);
5149
5150 /* Tell userspace we may need a wakeup call */
Hristo Venev75b28af2019-08-26 17:23:46 +00005151 ctx->rings->sq_flags |= IORING_SQ_NEED_WAKEUP;
Stefan Bühler0d7bae62019-04-19 11:57:45 +02005152 /* make sure to read SQ tail after writing flags */
5153 smp_mb();
Jens Axboe6c271ce2019-01-10 11:22:30 -07005154
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005155 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07005156 if (!to_submit || ret == -EBUSY) {
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02005157 if (kthread_should_park()) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07005158 finish_wait(&ctx->sqo_wait, &wait);
5159 break;
5160 }
5161 if (signal_pending(current))
5162 flush_signals(current);
5163 schedule();
5164 finish_wait(&ctx->sqo_wait, &wait);
5165
Hristo Venev75b28af2019-08-26 17:23:46 +00005166 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005167 continue;
5168 }
5169 finish_wait(&ctx->sqo_wait, &wait);
5170
Hristo Venev75b28af2019-08-26 17:23:46 +00005171 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005172 }
5173
Jens Axboe8a4955f2019-12-09 14:52:35 -07005174 mutex_lock(&ctx->uring_lock);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005175 ret = io_submit_sqes(ctx, to_submit, NULL, -1, &cur_mm, true);
Jens Axboe8a4955f2019-12-09 14:52:35 -07005176 mutex_unlock(&ctx->uring_lock);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005177 if (ret > 0)
5178 inflight += ret;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005179 }
5180
5181 set_fs(old_fs);
5182 if (cur_mm) {
5183 unuse_mm(cur_mm);
5184 mmput(cur_mm);
5185 }
Jens Axboe181e4482019-11-25 08:52:30 -07005186 revert_creds(old_cred);
Jens Axboe06058632019-04-13 09:26:03 -06005187
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02005188 kthread_parkme();
Jens Axboe06058632019-04-13 09:26:03 -06005189
Jens Axboe6c271ce2019-01-10 11:22:30 -07005190 return 0;
5191}
5192
Jens Axboebda52162019-09-24 13:47:15 -06005193struct io_wait_queue {
5194 struct wait_queue_entry wq;
5195 struct io_ring_ctx *ctx;
5196 unsigned to_wait;
5197 unsigned nr_timeouts;
5198};
5199
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005200static inline bool io_should_wake(struct io_wait_queue *iowq, bool noflush)
Jens Axboebda52162019-09-24 13:47:15 -06005201{
5202 struct io_ring_ctx *ctx = iowq->ctx;
5203
5204 /*
Brian Gianforcarod195a662019-12-13 03:09:50 -08005205 * Wake up if we have enough events, or if a timeout occurred since we
Jens Axboebda52162019-09-24 13:47:15 -06005206 * started waiting. For timeouts, we always want to return to userspace,
5207 * regardless of event count.
5208 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005209 return io_cqring_events(ctx, noflush) >= iowq->to_wait ||
Jens Axboebda52162019-09-24 13:47:15 -06005210 atomic_read(&ctx->cq_timeouts) != iowq->nr_timeouts;
5211}
5212
5213static int io_wake_function(struct wait_queue_entry *curr, unsigned int mode,
5214 int wake_flags, void *key)
5215{
5216 struct io_wait_queue *iowq = container_of(curr, struct io_wait_queue,
5217 wq);
5218
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005219 /* use noflush == true, as we can't safely rely on locking context */
5220 if (!io_should_wake(iowq, true))
Jens Axboebda52162019-09-24 13:47:15 -06005221 return -1;
5222
5223 return autoremove_wake_function(curr, mode, wake_flags, key);
5224}
5225
Jens Axboe2b188cc2019-01-07 10:46:33 -07005226/*
5227 * Wait until events become available, if we don't already have some. The
5228 * application must reap them itself, as they reside on the shared cq ring.
5229 */
5230static int io_cqring_wait(struct io_ring_ctx *ctx, int min_events,
5231 const sigset_t __user *sig, size_t sigsz)
5232{
Jens Axboebda52162019-09-24 13:47:15 -06005233 struct io_wait_queue iowq = {
5234 .wq = {
5235 .private = current,
5236 .func = io_wake_function,
5237 .entry = LIST_HEAD_INIT(iowq.wq.entry),
5238 },
5239 .ctx = ctx,
5240 .to_wait = min_events,
5241 };
Hristo Venev75b28af2019-08-26 17:23:46 +00005242 struct io_rings *rings = ctx->rings;
Jackie Liue9ffa5c2019-10-29 11:16:42 +08005243 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005244
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005245 if (io_cqring_events(ctx, false) >= min_events)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005246 return 0;
5247
5248 if (sig) {
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01005249#ifdef CONFIG_COMPAT
5250 if (in_compat_syscall())
5251 ret = set_compat_user_sigmask((const compat_sigset_t __user *)sig,
Oleg Nesterovb7724342019-07-16 16:29:53 -07005252 sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01005253 else
5254#endif
Oleg Nesterovb7724342019-07-16 16:29:53 -07005255 ret = set_user_sigmask(sig, sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01005256
Jens Axboe2b188cc2019-01-07 10:46:33 -07005257 if (ret)
5258 return ret;
5259 }
5260
Jens Axboebda52162019-09-24 13:47:15 -06005261 iowq.nr_timeouts = atomic_read(&ctx->cq_timeouts);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02005262 trace_io_uring_cqring_wait(ctx, min_events);
Jens Axboebda52162019-09-24 13:47:15 -06005263 do {
5264 prepare_to_wait_exclusive(&ctx->wait, &iowq.wq,
5265 TASK_INTERRUPTIBLE);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005266 if (io_should_wake(&iowq, false))
Jens Axboebda52162019-09-24 13:47:15 -06005267 break;
5268 schedule();
5269 if (signal_pending(current)) {
Jackie Liue9ffa5c2019-10-29 11:16:42 +08005270 ret = -EINTR;
Jens Axboebda52162019-09-24 13:47:15 -06005271 break;
5272 }
5273 } while (1);
5274 finish_wait(&ctx->wait, &iowq.wq);
5275
Jackie Liue9ffa5c2019-10-29 11:16:42 +08005276 restore_saved_sigmask_unless(ret == -EINTR);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005277
Hristo Venev75b28af2019-08-26 17:23:46 +00005278 return READ_ONCE(rings->cq.head) == READ_ONCE(rings->cq.tail) ? ret : 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005279}
5280
Jens Axboe6b063142019-01-10 22:13:58 -07005281static void __io_sqe_files_unregister(struct io_ring_ctx *ctx)
5282{
5283#if defined(CONFIG_UNIX)
5284 if (ctx->ring_sock) {
5285 struct sock *sock = ctx->ring_sock->sk;
5286 struct sk_buff *skb;
5287
5288 while ((skb = skb_dequeue(&sock->sk_receive_queue)) != NULL)
5289 kfree_skb(skb);
5290 }
5291#else
5292 int i;
5293
Jens Axboe65e19f52019-10-26 07:20:21 -06005294 for (i = 0; i < ctx->nr_user_files; i++) {
5295 struct file *file;
5296
5297 file = io_file_from_index(ctx, i);
5298 if (file)
5299 fput(file);
5300 }
Jens Axboe6b063142019-01-10 22:13:58 -07005301#endif
5302}
5303
Jens Axboe05f3fb32019-12-09 11:22:50 -07005304static void io_file_ref_kill(struct percpu_ref *ref)
5305{
5306 struct fixed_file_data *data;
5307
5308 data = container_of(ref, struct fixed_file_data, refs);
5309 complete(&data->done);
5310}
5311
Jens Axboe6b063142019-01-10 22:13:58 -07005312static int io_sqe_files_unregister(struct io_ring_ctx *ctx)
5313{
Jens Axboe05f3fb32019-12-09 11:22:50 -07005314 struct fixed_file_data *data = ctx->file_data;
Jens Axboe65e19f52019-10-26 07:20:21 -06005315 unsigned nr_tables, i;
5316
Jens Axboe05f3fb32019-12-09 11:22:50 -07005317 if (!data)
Jens Axboe6b063142019-01-10 22:13:58 -07005318 return -ENXIO;
5319
Jens Axboe05f3fb32019-12-09 11:22:50 -07005320 percpu_ref_kill_and_confirm(&data->refs, io_file_ref_kill);
Jens Axboee46a7952020-01-17 11:15:34 -07005321 flush_work(&data->ref_work);
Jens Axboe2faf8522020-02-04 19:54:55 -07005322 wait_for_completion(&data->done);
5323 io_ring_file_ref_flush(data);
Jens Axboe05f3fb32019-12-09 11:22:50 -07005324 percpu_ref_exit(&data->refs);
5325
Jens Axboe6b063142019-01-10 22:13:58 -07005326 __io_sqe_files_unregister(ctx);
Jens Axboe65e19f52019-10-26 07:20:21 -06005327 nr_tables = DIV_ROUND_UP(ctx->nr_user_files, IORING_MAX_FILES_TABLE);
5328 for (i = 0; i < nr_tables; i++)
Jens Axboe05f3fb32019-12-09 11:22:50 -07005329 kfree(data->table[i].files);
5330 kfree(data->table);
5331 kfree(data);
5332 ctx->file_data = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07005333 ctx->nr_user_files = 0;
5334 return 0;
5335}
5336
Jens Axboe6c271ce2019-01-10 11:22:30 -07005337static void io_sq_thread_stop(struct io_ring_ctx *ctx)
5338{
5339 if (ctx->sqo_thread) {
Jens Axboe206aefd2019-11-07 18:27:42 -07005340 wait_for_completion(&ctx->completions[1]);
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02005341 /*
5342 * The park is a bit of a work-around, without it we get
5343 * warning spews on shutdown with SQPOLL set and affinity
5344 * set to a single CPU.
5345 */
Jens Axboe06058632019-04-13 09:26:03 -06005346 kthread_park(ctx->sqo_thread);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005347 kthread_stop(ctx->sqo_thread);
5348 ctx->sqo_thread = NULL;
5349 }
5350}
5351
Jens Axboe6b063142019-01-10 22:13:58 -07005352static void io_finish_async(struct io_ring_ctx *ctx)
5353{
Jens Axboe6c271ce2019-01-10 11:22:30 -07005354 io_sq_thread_stop(ctx);
5355
Jens Axboe561fb042019-10-24 07:25:42 -06005356 if (ctx->io_wq) {
5357 io_wq_destroy(ctx->io_wq);
5358 ctx->io_wq = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07005359 }
5360}
5361
5362#if defined(CONFIG_UNIX)
Jens Axboe6b063142019-01-10 22:13:58 -07005363/*
5364 * Ensure the UNIX gc is aware of our file set, so we are certain that
5365 * the io_uring can be safely unregistered on process exit, even if we have
5366 * loops in the file referencing.
5367 */
5368static int __io_sqe_files_scm(struct io_ring_ctx *ctx, int nr, int offset)
5369{
5370 struct sock *sk = ctx->ring_sock->sk;
5371 struct scm_fp_list *fpl;
5372 struct sk_buff *skb;
Jens Axboe08a45172019-10-03 08:11:03 -06005373 int i, nr_files;
Jens Axboe6b063142019-01-10 22:13:58 -07005374
5375 if (!capable(CAP_SYS_RESOURCE) && !capable(CAP_SYS_ADMIN)) {
5376 unsigned long inflight = ctx->user->unix_inflight + nr;
5377
5378 if (inflight > task_rlimit(current, RLIMIT_NOFILE))
5379 return -EMFILE;
5380 }
5381
5382 fpl = kzalloc(sizeof(*fpl), GFP_KERNEL);
5383 if (!fpl)
5384 return -ENOMEM;
5385
5386 skb = alloc_skb(0, GFP_KERNEL);
5387 if (!skb) {
5388 kfree(fpl);
5389 return -ENOMEM;
5390 }
5391
5392 skb->sk = sk;
Jens Axboe6b063142019-01-10 22:13:58 -07005393
Jens Axboe08a45172019-10-03 08:11:03 -06005394 nr_files = 0;
Jens Axboe6b063142019-01-10 22:13:58 -07005395 fpl->user = get_uid(ctx->user);
5396 for (i = 0; i < nr; i++) {
Jens Axboe65e19f52019-10-26 07:20:21 -06005397 struct file *file = io_file_from_index(ctx, i + offset);
5398
5399 if (!file)
Jens Axboe08a45172019-10-03 08:11:03 -06005400 continue;
Jens Axboe65e19f52019-10-26 07:20:21 -06005401 fpl->fp[nr_files] = get_file(file);
Jens Axboe08a45172019-10-03 08:11:03 -06005402 unix_inflight(fpl->user, fpl->fp[nr_files]);
5403 nr_files++;
Jens Axboe6b063142019-01-10 22:13:58 -07005404 }
5405
Jens Axboe08a45172019-10-03 08:11:03 -06005406 if (nr_files) {
5407 fpl->max = SCM_MAX_FD;
5408 fpl->count = nr_files;
5409 UNIXCB(skb).fp = fpl;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005410 skb->destructor = unix_destruct_scm;
Jens Axboe08a45172019-10-03 08:11:03 -06005411 refcount_add(skb->truesize, &sk->sk_wmem_alloc);
5412 skb_queue_head(&sk->sk_receive_queue, skb);
Jens Axboe6b063142019-01-10 22:13:58 -07005413
Jens Axboe08a45172019-10-03 08:11:03 -06005414 for (i = 0; i < nr_files; i++)
5415 fput(fpl->fp[i]);
5416 } else {
5417 kfree_skb(skb);
5418 kfree(fpl);
5419 }
Jens Axboe6b063142019-01-10 22:13:58 -07005420
5421 return 0;
5422}
5423
5424/*
5425 * If UNIX sockets are enabled, fd passing can cause a reference cycle which
5426 * causes regular reference counting to break down. We rely on the UNIX
5427 * garbage collection to take care of this problem for us.
5428 */
5429static int io_sqe_files_scm(struct io_ring_ctx *ctx)
5430{
5431 unsigned left, total;
5432 int ret = 0;
5433
5434 total = 0;
5435 left = ctx->nr_user_files;
5436 while (left) {
5437 unsigned this_files = min_t(unsigned, left, SCM_MAX_FD);
Jens Axboe6b063142019-01-10 22:13:58 -07005438
5439 ret = __io_sqe_files_scm(ctx, this_files, total);
5440 if (ret)
5441 break;
5442 left -= this_files;
5443 total += this_files;
5444 }
5445
5446 if (!ret)
5447 return 0;
5448
5449 while (total < ctx->nr_user_files) {
Jens Axboe65e19f52019-10-26 07:20:21 -06005450 struct file *file = io_file_from_index(ctx, total);
5451
5452 if (file)
5453 fput(file);
Jens Axboe6b063142019-01-10 22:13:58 -07005454 total++;
5455 }
5456
5457 return ret;
5458}
5459#else
5460static int io_sqe_files_scm(struct io_ring_ctx *ctx)
5461{
5462 return 0;
5463}
5464#endif
5465
Jens Axboe65e19f52019-10-26 07:20:21 -06005466static int io_sqe_alloc_file_tables(struct io_ring_ctx *ctx, unsigned nr_tables,
5467 unsigned nr_files)
5468{
5469 int i;
5470
5471 for (i = 0; i < nr_tables; i++) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07005472 struct fixed_file_table *table = &ctx->file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06005473 unsigned this_files;
5474
5475 this_files = min(nr_files, IORING_MAX_FILES_TABLE);
5476 table->files = kcalloc(this_files, sizeof(struct file *),
5477 GFP_KERNEL);
5478 if (!table->files)
5479 break;
5480 nr_files -= this_files;
5481 }
5482
5483 if (i == nr_tables)
5484 return 0;
5485
5486 for (i = 0; i < nr_tables; i++) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07005487 struct fixed_file_table *table = &ctx->file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06005488 kfree(table->files);
5489 }
5490 return 1;
5491}
5492
Jens Axboe05f3fb32019-12-09 11:22:50 -07005493static void io_ring_file_put(struct io_ring_ctx *ctx, struct file *file)
Jens Axboec3a31e62019-10-03 13:59:56 -06005494{
5495#if defined(CONFIG_UNIX)
Jens Axboec3a31e62019-10-03 13:59:56 -06005496 struct sock *sock = ctx->ring_sock->sk;
5497 struct sk_buff_head list, *head = &sock->sk_receive_queue;
5498 struct sk_buff *skb;
5499 int i;
5500
5501 __skb_queue_head_init(&list);
5502
5503 /*
5504 * Find the skb that holds this file in its SCM_RIGHTS. When found,
5505 * remove this entry and rearrange the file array.
5506 */
5507 skb = skb_dequeue(head);
5508 while (skb) {
5509 struct scm_fp_list *fp;
5510
5511 fp = UNIXCB(skb).fp;
5512 for (i = 0; i < fp->count; i++) {
5513 int left;
5514
5515 if (fp->fp[i] != file)
5516 continue;
5517
5518 unix_notinflight(fp->user, fp->fp[i]);
5519 left = fp->count - 1 - i;
5520 if (left) {
5521 memmove(&fp->fp[i], &fp->fp[i + 1],
5522 left * sizeof(struct file *));
5523 }
5524 fp->count--;
5525 if (!fp->count) {
5526 kfree_skb(skb);
5527 skb = NULL;
5528 } else {
5529 __skb_queue_tail(&list, skb);
5530 }
5531 fput(file);
5532 file = NULL;
5533 break;
5534 }
5535
5536 if (!file)
5537 break;
5538
5539 __skb_queue_tail(&list, skb);
5540
5541 skb = skb_dequeue(head);
5542 }
5543
5544 if (skb_peek(&list)) {
5545 spin_lock_irq(&head->lock);
5546 while ((skb = __skb_dequeue(&list)) != NULL)
5547 __skb_queue_tail(head, skb);
5548 spin_unlock_irq(&head->lock);
5549 }
5550#else
Jens Axboe05f3fb32019-12-09 11:22:50 -07005551 fput(file);
Jens Axboec3a31e62019-10-03 13:59:56 -06005552#endif
5553}
5554
Jens Axboe05f3fb32019-12-09 11:22:50 -07005555struct io_file_put {
5556 struct llist_node llist;
5557 struct file *file;
5558 struct completion *done;
5559};
5560
Jens Axboe2faf8522020-02-04 19:54:55 -07005561static void io_ring_file_ref_flush(struct fixed_file_data *data)
Jens Axboe05f3fb32019-12-09 11:22:50 -07005562{
5563 struct io_file_put *pfile, *tmp;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005564 struct llist_node *node;
5565
Jens Axboe05f3fb32019-12-09 11:22:50 -07005566 while ((node = llist_del_all(&data->put_llist)) != NULL) {
5567 llist_for_each_entry_safe(pfile, tmp, node, llist) {
5568 io_ring_file_put(data->ctx, pfile->file);
5569 if (pfile->done)
5570 complete(pfile->done);
5571 else
5572 kfree(pfile);
5573 }
5574 }
Jens Axboe2faf8522020-02-04 19:54:55 -07005575}
Jens Axboe05f3fb32019-12-09 11:22:50 -07005576
Jens Axboe2faf8522020-02-04 19:54:55 -07005577static void io_ring_file_ref_switch(struct work_struct *work)
5578{
5579 struct fixed_file_data *data;
5580
5581 data = container_of(work, struct fixed_file_data, ref_work);
5582 io_ring_file_ref_flush(data);
Jens Axboe05f3fb32019-12-09 11:22:50 -07005583 percpu_ref_get(&data->refs);
5584 percpu_ref_switch_to_percpu(&data->refs);
5585}
5586
5587static void io_file_data_ref_zero(struct percpu_ref *ref)
5588{
5589 struct fixed_file_data *data;
5590
5591 data = container_of(ref, struct fixed_file_data, refs);
5592
Jens Axboe2faf8522020-02-04 19:54:55 -07005593 /*
5594 * We can't safely switch from inside this context, punt to wq. If
5595 * the table ref is going away, the table is being unregistered.
5596 * Don't queue up the async work for that case, the caller will
5597 * handle it.
5598 */
5599 if (!percpu_ref_is_dying(&data->refs))
5600 queue_work(system_wq, &data->ref_work);
Jens Axboe05f3fb32019-12-09 11:22:50 -07005601}
5602
5603static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
5604 unsigned nr_args)
5605{
5606 __s32 __user *fds = (__s32 __user *) arg;
5607 unsigned nr_tables;
5608 struct file *file;
5609 int fd, ret = 0;
5610 unsigned i;
5611
5612 if (ctx->file_data)
5613 return -EBUSY;
5614 if (!nr_args)
5615 return -EINVAL;
5616 if (nr_args > IORING_MAX_FIXED_FILES)
5617 return -EMFILE;
5618
5619 ctx->file_data = kzalloc(sizeof(*ctx->file_data), GFP_KERNEL);
5620 if (!ctx->file_data)
5621 return -ENOMEM;
5622 ctx->file_data->ctx = ctx;
5623 init_completion(&ctx->file_data->done);
5624
5625 nr_tables = DIV_ROUND_UP(nr_args, IORING_MAX_FILES_TABLE);
5626 ctx->file_data->table = kcalloc(nr_tables,
5627 sizeof(struct fixed_file_table),
5628 GFP_KERNEL);
5629 if (!ctx->file_data->table) {
5630 kfree(ctx->file_data);
5631 ctx->file_data = NULL;
5632 return -ENOMEM;
5633 }
5634
5635 if (percpu_ref_init(&ctx->file_data->refs, io_file_data_ref_zero,
5636 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL)) {
5637 kfree(ctx->file_data->table);
5638 kfree(ctx->file_data);
5639 ctx->file_data = NULL;
5640 return -ENOMEM;
5641 }
5642 ctx->file_data->put_llist.first = NULL;
5643 INIT_WORK(&ctx->file_data->ref_work, io_ring_file_ref_switch);
5644
5645 if (io_sqe_alloc_file_tables(ctx, nr_tables, nr_args)) {
5646 percpu_ref_exit(&ctx->file_data->refs);
5647 kfree(ctx->file_data->table);
5648 kfree(ctx->file_data);
5649 ctx->file_data = NULL;
5650 return -ENOMEM;
5651 }
5652
5653 for (i = 0; i < nr_args; i++, ctx->nr_user_files++) {
5654 struct fixed_file_table *table;
5655 unsigned index;
5656
5657 ret = -EFAULT;
5658 if (copy_from_user(&fd, &fds[i], sizeof(fd)))
5659 break;
5660 /* allow sparse sets */
5661 if (fd == -1) {
5662 ret = 0;
5663 continue;
5664 }
5665
5666 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
5667 index = i & IORING_FILE_TABLE_MASK;
5668 file = fget(fd);
5669
5670 ret = -EBADF;
5671 if (!file)
5672 break;
5673
5674 /*
5675 * Don't allow io_uring instances to be registered. If UNIX
5676 * isn't enabled, then this causes a reference cycle and this
5677 * instance can never get freed. If UNIX is enabled we'll
5678 * handle it just fine, but there's still no point in allowing
5679 * a ring fd as it doesn't support regular read/write anyway.
5680 */
5681 if (file->f_op == &io_uring_fops) {
5682 fput(file);
5683 break;
5684 }
5685 ret = 0;
5686 table->files[index] = file;
5687 }
5688
5689 if (ret) {
5690 for (i = 0; i < ctx->nr_user_files; i++) {
5691 file = io_file_from_index(ctx, i);
5692 if (file)
5693 fput(file);
5694 }
5695 for (i = 0; i < nr_tables; i++)
5696 kfree(ctx->file_data->table[i].files);
5697
5698 kfree(ctx->file_data->table);
5699 kfree(ctx->file_data);
5700 ctx->file_data = NULL;
5701 ctx->nr_user_files = 0;
5702 return ret;
5703 }
5704
5705 ret = io_sqe_files_scm(ctx);
5706 if (ret)
5707 io_sqe_files_unregister(ctx);
5708
5709 return ret;
5710}
5711
Jens Axboec3a31e62019-10-03 13:59:56 -06005712static int io_sqe_file_register(struct io_ring_ctx *ctx, struct file *file,
5713 int index)
5714{
5715#if defined(CONFIG_UNIX)
5716 struct sock *sock = ctx->ring_sock->sk;
5717 struct sk_buff_head *head = &sock->sk_receive_queue;
5718 struct sk_buff *skb;
5719
5720 /*
5721 * See if we can merge this file into an existing skb SCM_RIGHTS
5722 * file set. If there's no room, fall back to allocating a new skb
5723 * and filling it in.
5724 */
5725 spin_lock_irq(&head->lock);
5726 skb = skb_peek(head);
5727 if (skb) {
5728 struct scm_fp_list *fpl = UNIXCB(skb).fp;
5729
5730 if (fpl->count < SCM_MAX_FD) {
5731 __skb_unlink(skb, head);
5732 spin_unlock_irq(&head->lock);
5733 fpl->fp[fpl->count] = get_file(file);
5734 unix_inflight(fpl->user, fpl->fp[fpl->count]);
5735 fpl->count++;
5736 spin_lock_irq(&head->lock);
5737 __skb_queue_head(head, skb);
5738 } else {
5739 skb = NULL;
5740 }
5741 }
5742 spin_unlock_irq(&head->lock);
5743
5744 if (skb) {
5745 fput(file);
5746 return 0;
5747 }
5748
5749 return __io_sqe_files_scm(ctx, 1, index);
5750#else
5751 return 0;
5752#endif
5753}
5754
Jens Axboe05f3fb32019-12-09 11:22:50 -07005755static void io_atomic_switch(struct percpu_ref *ref)
Jens Axboec3a31e62019-10-03 13:59:56 -06005756{
Jens Axboe05f3fb32019-12-09 11:22:50 -07005757 struct fixed_file_data *data;
5758
5759 data = container_of(ref, struct fixed_file_data, refs);
5760 clear_bit(FFD_F_ATOMIC, &data->state);
5761}
5762
5763static bool io_queue_file_removal(struct fixed_file_data *data,
5764 struct file *file)
5765{
5766 struct io_file_put *pfile, pfile_stack;
5767 DECLARE_COMPLETION_ONSTACK(done);
5768
5769 /*
5770 * If we fail allocating the struct we need for doing async reomval
5771 * of this file, just punt to sync and wait for it.
5772 */
5773 pfile = kzalloc(sizeof(*pfile), GFP_KERNEL);
5774 if (!pfile) {
5775 pfile = &pfile_stack;
5776 pfile->done = &done;
5777 }
5778
5779 pfile->file = file;
5780 llist_add(&pfile->llist, &data->put_llist);
5781
5782 if (pfile == &pfile_stack) {
5783 if (!test_and_set_bit(FFD_F_ATOMIC, &data->state)) {
5784 percpu_ref_put(&data->refs);
5785 percpu_ref_switch_to_atomic(&data->refs,
5786 io_atomic_switch);
5787 }
5788 wait_for_completion(&done);
5789 flush_work(&data->ref_work);
5790 return false;
5791 }
5792
5793 return true;
5794}
5795
5796static int __io_sqe_files_update(struct io_ring_ctx *ctx,
5797 struct io_uring_files_update *up,
5798 unsigned nr_args)
5799{
5800 struct fixed_file_data *data = ctx->file_data;
5801 bool ref_switch = false;
5802 struct file *file;
Jens Axboec3a31e62019-10-03 13:59:56 -06005803 __s32 __user *fds;
5804 int fd, i, err;
5805 __u32 done;
5806
Jens Axboe05f3fb32019-12-09 11:22:50 -07005807 if (check_add_overflow(up->offset, nr_args, &done))
Jens Axboec3a31e62019-10-03 13:59:56 -06005808 return -EOVERFLOW;
5809 if (done > ctx->nr_user_files)
5810 return -EINVAL;
5811
5812 done = 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005813 fds = u64_to_user_ptr(up->fds);
Jens Axboec3a31e62019-10-03 13:59:56 -06005814 while (nr_args) {
Jens Axboe65e19f52019-10-26 07:20:21 -06005815 struct fixed_file_table *table;
5816 unsigned index;
5817
Jens Axboec3a31e62019-10-03 13:59:56 -06005818 err = 0;
5819 if (copy_from_user(&fd, &fds[done], sizeof(fd))) {
5820 err = -EFAULT;
5821 break;
5822 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07005823 i = array_index_nospec(up->offset, ctx->nr_user_files);
5824 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
Jens Axboe65e19f52019-10-26 07:20:21 -06005825 index = i & IORING_FILE_TABLE_MASK;
5826 if (table->files[index]) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07005827 file = io_file_from_index(ctx, index);
Jens Axboe65e19f52019-10-26 07:20:21 -06005828 table->files[index] = NULL;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005829 if (io_queue_file_removal(data, file))
5830 ref_switch = true;
Jens Axboec3a31e62019-10-03 13:59:56 -06005831 }
5832 if (fd != -1) {
Jens Axboec3a31e62019-10-03 13:59:56 -06005833 file = fget(fd);
5834 if (!file) {
5835 err = -EBADF;
5836 break;
5837 }
5838 /*
5839 * Don't allow io_uring instances to be registered. If
5840 * UNIX isn't enabled, then this causes a reference
5841 * cycle and this instance can never get freed. If UNIX
5842 * is enabled we'll handle it just fine, but there's
5843 * still no point in allowing a ring fd as it doesn't
5844 * support regular read/write anyway.
5845 */
5846 if (file->f_op == &io_uring_fops) {
5847 fput(file);
5848 err = -EBADF;
5849 break;
5850 }
Jens Axboe65e19f52019-10-26 07:20:21 -06005851 table->files[index] = file;
Jens Axboec3a31e62019-10-03 13:59:56 -06005852 err = io_sqe_file_register(ctx, file, i);
5853 if (err)
5854 break;
5855 }
5856 nr_args--;
5857 done++;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005858 up->offset++;
5859 }
5860
5861 if (ref_switch && !test_and_set_bit(FFD_F_ATOMIC, &data->state)) {
5862 percpu_ref_put(&data->refs);
5863 percpu_ref_switch_to_atomic(&data->refs, io_atomic_switch);
Jens Axboec3a31e62019-10-03 13:59:56 -06005864 }
5865
5866 return done ? done : err;
5867}
Jens Axboe05f3fb32019-12-09 11:22:50 -07005868static int io_sqe_files_update(struct io_ring_ctx *ctx, void __user *arg,
5869 unsigned nr_args)
5870{
5871 struct io_uring_files_update up;
5872
5873 if (!ctx->file_data)
5874 return -ENXIO;
5875 if (!nr_args)
5876 return -EINVAL;
5877 if (copy_from_user(&up, arg, sizeof(up)))
5878 return -EFAULT;
5879 if (up.resv)
5880 return -EINVAL;
5881
5882 return __io_sqe_files_update(ctx, &up, nr_args);
5883}
Jens Axboec3a31e62019-10-03 13:59:56 -06005884
Jens Axboe7d723062019-11-12 22:31:31 -07005885static void io_put_work(struct io_wq_work *work)
5886{
5887 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
5888
5889 io_put_req(req);
5890}
5891
5892static void io_get_work(struct io_wq_work *work)
5893{
5894 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
5895
5896 refcount_inc(&req->refs);
5897}
5898
Pavel Begunkov24369c22020-01-28 03:15:48 +03005899static int io_init_wq_offload(struct io_ring_ctx *ctx,
5900 struct io_uring_params *p)
5901{
5902 struct io_wq_data data;
5903 struct fd f;
5904 struct io_ring_ctx *ctx_attach;
5905 unsigned int concurrency;
5906 int ret = 0;
5907
5908 data.user = ctx->user;
5909 data.get_work = io_get_work;
5910 data.put_work = io_put_work;
5911
5912 if (!(p->flags & IORING_SETUP_ATTACH_WQ)) {
5913 /* Do QD, or 4 * CPUS, whatever is smallest */
5914 concurrency = min(ctx->sq_entries, 4 * num_online_cpus());
5915
5916 ctx->io_wq = io_wq_create(concurrency, &data);
5917 if (IS_ERR(ctx->io_wq)) {
5918 ret = PTR_ERR(ctx->io_wq);
5919 ctx->io_wq = NULL;
5920 }
5921 return ret;
5922 }
5923
5924 f = fdget(p->wq_fd);
5925 if (!f.file)
5926 return -EBADF;
5927
5928 if (f.file->f_op != &io_uring_fops) {
5929 ret = -EINVAL;
5930 goto out_fput;
5931 }
5932
5933 ctx_attach = f.file->private_data;
5934 /* @io_wq is protected by holding the fd */
5935 if (!io_wq_get(ctx_attach->io_wq, &data)) {
5936 ret = -EINVAL;
5937 goto out_fput;
5938 }
5939
5940 ctx->io_wq = ctx_attach->io_wq;
5941out_fput:
5942 fdput(f);
5943 return ret;
5944}
5945
Jens Axboe6c271ce2019-01-10 11:22:30 -07005946static int io_sq_offload_start(struct io_ring_ctx *ctx,
5947 struct io_uring_params *p)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005948{
5949 int ret;
5950
Jens Axboe6c271ce2019-01-10 11:22:30 -07005951 init_waitqueue_head(&ctx->sqo_wait);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005952 mmgrab(current->mm);
5953 ctx->sqo_mm = current->mm;
5954
Jens Axboe6c271ce2019-01-10 11:22:30 -07005955 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboe3ec482d2019-04-08 10:51:01 -06005956 ret = -EPERM;
5957 if (!capable(CAP_SYS_ADMIN))
5958 goto err;
5959
Jens Axboe917257d2019-04-13 09:28:55 -06005960 ctx->sq_thread_idle = msecs_to_jiffies(p->sq_thread_idle);
5961 if (!ctx->sq_thread_idle)
5962 ctx->sq_thread_idle = HZ;
5963
Jens Axboe6c271ce2019-01-10 11:22:30 -07005964 if (p->flags & IORING_SETUP_SQ_AFF) {
Jens Axboe44a9bd12019-05-14 20:00:30 -06005965 int cpu = p->sq_thread_cpu;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005966
Jens Axboe917257d2019-04-13 09:28:55 -06005967 ret = -EINVAL;
Jens Axboe44a9bd12019-05-14 20:00:30 -06005968 if (cpu >= nr_cpu_ids)
5969 goto err;
Shenghui Wang7889f442019-05-07 16:03:19 +08005970 if (!cpu_online(cpu))
Jens Axboe917257d2019-04-13 09:28:55 -06005971 goto err;
5972
Jens Axboe6c271ce2019-01-10 11:22:30 -07005973 ctx->sqo_thread = kthread_create_on_cpu(io_sq_thread,
5974 ctx, cpu,
5975 "io_uring-sq");
5976 } else {
5977 ctx->sqo_thread = kthread_create(io_sq_thread, ctx,
5978 "io_uring-sq");
5979 }
5980 if (IS_ERR(ctx->sqo_thread)) {
5981 ret = PTR_ERR(ctx->sqo_thread);
5982 ctx->sqo_thread = NULL;
5983 goto err;
5984 }
5985 wake_up_process(ctx->sqo_thread);
5986 } else if (p->flags & IORING_SETUP_SQ_AFF) {
5987 /* Can't have SQ_AFF without SQPOLL */
5988 ret = -EINVAL;
5989 goto err;
5990 }
5991
Pavel Begunkov24369c22020-01-28 03:15:48 +03005992 ret = io_init_wq_offload(ctx, p);
5993 if (ret)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005994 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005995
5996 return 0;
5997err:
Jens Axboe54a91f32019-09-10 09:15:04 -06005998 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005999 mmdrop(ctx->sqo_mm);
6000 ctx->sqo_mm = NULL;
6001 return ret;
6002}
6003
6004static void io_unaccount_mem(struct user_struct *user, unsigned long nr_pages)
6005{
6006 atomic_long_sub(nr_pages, &user->locked_vm);
6007}
6008
6009static int io_account_mem(struct user_struct *user, unsigned long nr_pages)
6010{
6011 unsigned long page_limit, cur_pages, new_pages;
6012
6013 /* Don't allow more pages than we can safely lock */
6014 page_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
6015
6016 do {
6017 cur_pages = atomic_long_read(&user->locked_vm);
6018 new_pages = cur_pages + nr_pages;
6019 if (new_pages > page_limit)
6020 return -ENOMEM;
6021 } while (atomic_long_cmpxchg(&user->locked_vm, cur_pages,
6022 new_pages) != cur_pages);
6023
6024 return 0;
6025}
6026
6027static void io_mem_free(void *ptr)
6028{
Mark Rutland52e04ef2019-04-30 17:30:21 +01006029 struct page *page;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006030
Mark Rutland52e04ef2019-04-30 17:30:21 +01006031 if (!ptr)
6032 return;
6033
6034 page = virt_to_head_page(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006035 if (put_page_testzero(page))
6036 free_compound_page(page);
6037}
6038
6039static void *io_mem_alloc(size_t size)
6040{
6041 gfp_t gfp_flags = GFP_KERNEL | __GFP_ZERO | __GFP_NOWARN | __GFP_COMP |
6042 __GFP_NORETRY;
6043
6044 return (void *) __get_free_pages(gfp_flags, get_order(size));
6045}
6046
Hristo Venev75b28af2019-08-26 17:23:46 +00006047static unsigned long rings_size(unsigned sq_entries, unsigned cq_entries,
6048 size_t *sq_offset)
6049{
6050 struct io_rings *rings;
6051 size_t off, sq_array_size;
6052
6053 off = struct_size(rings, cqes, cq_entries);
6054 if (off == SIZE_MAX)
6055 return SIZE_MAX;
6056
6057#ifdef CONFIG_SMP
6058 off = ALIGN(off, SMP_CACHE_BYTES);
6059 if (off == 0)
6060 return SIZE_MAX;
6061#endif
6062
6063 sq_array_size = array_size(sizeof(u32), sq_entries);
6064 if (sq_array_size == SIZE_MAX)
6065 return SIZE_MAX;
6066
6067 if (check_add_overflow(off, sq_array_size, &off))
6068 return SIZE_MAX;
6069
6070 if (sq_offset)
6071 *sq_offset = off;
6072
6073 return off;
6074}
6075
Jens Axboe2b188cc2019-01-07 10:46:33 -07006076static unsigned long ring_pages(unsigned sq_entries, unsigned cq_entries)
6077{
Hristo Venev75b28af2019-08-26 17:23:46 +00006078 size_t pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006079
Hristo Venev75b28af2019-08-26 17:23:46 +00006080 pages = (size_t)1 << get_order(
6081 rings_size(sq_entries, cq_entries, NULL));
6082 pages += (size_t)1 << get_order(
6083 array_size(sizeof(struct io_uring_sqe), sq_entries));
Jens Axboe2b188cc2019-01-07 10:46:33 -07006084
Hristo Venev75b28af2019-08-26 17:23:46 +00006085 return pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006086}
6087
Jens Axboeedafcce2019-01-09 09:16:05 -07006088static int io_sqe_buffer_unregister(struct io_ring_ctx *ctx)
6089{
6090 int i, j;
6091
6092 if (!ctx->user_bufs)
6093 return -ENXIO;
6094
6095 for (i = 0; i < ctx->nr_user_bufs; i++) {
6096 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
6097
6098 for (j = 0; j < imu->nr_bvecs; j++)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08006099 unpin_user_page(imu->bvec[j].bv_page);
Jens Axboeedafcce2019-01-09 09:16:05 -07006100
6101 if (ctx->account_mem)
6102 io_unaccount_mem(ctx->user, imu->nr_bvecs);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006103 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07006104 imu->nr_bvecs = 0;
6105 }
6106
6107 kfree(ctx->user_bufs);
6108 ctx->user_bufs = NULL;
6109 ctx->nr_user_bufs = 0;
6110 return 0;
6111}
6112
6113static int io_copy_iov(struct io_ring_ctx *ctx, struct iovec *dst,
6114 void __user *arg, unsigned index)
6115{
6116 struct iovec __user *src;
6117
6118#ifdef CONFIG_COMPAT
6119 if (ctx->compat) {
6120 struct compat_iovec __user *ciovs;
6121 struct compat_iovec ciov;
6122
6123 ciovs = (struct compat_iovec __user *) arg;
6124 if (copy_from_user(&ciov, &ciovs[index], sizeof(ciov)))
6125 return -EFAULT;
6126
Jens Axboed55e5f52019-12-11 16:12:15 -07006127 dst->iov_base = u64_to_user_ptr((u64)ciov.iov_base);
Jens Axboeedafcce2019-01-09 09:16:05 -07006128 dst->iov_len = ciov.iov_len;
6129 return 0;
6130 }
6131#endif
6132 src = (struct iovec __user *) arg;
6133 if (copy_from_user(dst, &src[index], sizeof(*dst)))
6134 return -EFAULT;
6135 return 0;
6136}
6137
6138static int io_sqe_buffer_register(struct io_ring_ctx *ctx, void __user *arg,
6139 unsigned nr_args)
6140{
6141 struct vm_area_struct **vmas = NULL;
6142 struct page **pages = NULL;
6143 int i, j, got_pages = 0;
6144 int ret = -EINVAL;
6145
6146 if (ctx->user_bufs)
6147 return -EBUSY;
6148 if (!nr_args || nr_args > UIO_MAXIOV)
6149 return -EINVAL;
6150
6151 ctx->user_bufs = kcalloc(nr_args, sizeof(struct io_mapped_ubuf),
6152 GFP_KERNEL);
6153 if (!ctx->user_bufs)
6154 return -ENOMEM;
6155
6156 for (i = 0; i < nr_args; i++) {
6157 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
6158 unsigned long off, start, end, ubuf;
6159 int pret, nr_pages;
6160 struct iovec iov;
6161 size_t size;
6162
6163 ret = io_copy_iov(ctx, &iov, arg, i);
6164 if (ret)
Pavel Begunkova2786822019-05-26 12:35:47 +03006165 goto err;
Jens Axboeedafcce2019-01-09 09:16:05 -07006166
6167 /*
6168 * Don't impose further limits on the size and buffer
6169 * constraints here, we'll -EINVAL later when IO is
6170 * submitted if they are wrong.
6171 */
6172 ret = -EFAULT;
6173 if (!iov.iov_base || !iov.iov_len)
6174 goto err;
6175
6176 /* arbitrary limit, but we need something */
6177 if (iov.iov_len > SZ_1G)
6178 goto err;
6179
6180 ubuf = (unsigned long) iov.iov_base;
6181 end = (ubuf + iov.iov_len + PAGE_SIZE - 1) >> PAGE_SHIFT;
6182 start = ubuf >> PAGE_SHIFT;
6183 nr_pages = end - start;
6184
6185 if (ctx->account_mem) {
6186 ret = io_account_mem(ctx->user, nr_pages);
6187 if (ret)
6188 goto err;
6189 }
6190
6191 ret = 0;
6192 if (!pages || nr_pages > got_pages) {
6193 kfree(vmas);
6194 kfree(pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006195 pages = kvmalloc_array(nr_pages, sizeof(struct page *),
Jens Axboeedafcce2019-01-09 09:16:05 -07006196 GFP_KERNEL);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006197 vmas = kvmalloc_array(nr_pages,
Jens Axboeedafcce2019-01-09 09:16:05 -07006198 sizeof(struct vm_area_struct *),
6199 GFP_KERNEL);
6200 if (!pages || !vmas) {
6201 ret = -ENOMEM;
6202 if (ctx->account_mem)
6203 io_unaccount_mem(ctx->user, nr_pages);
6204 goto err;
6205 }
6206 got_pages = nr_pages;
6207 }
6208
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006209 imu->bvec = kvmalloc_array(nr_pages, sizeof(struct bio_vec),
Jens Axboeedafcce2019-01-09 09:16:05 -07006210 GFP_KERNEL);
6211 ret = -ENOMEM;
6212 if (!imu->bvec) {
6213 if (ctx->account_mem)
6214 io_unaccount_mem(ctx->user, nr_pages);
6215 goto err;
6216 }
6217
6218 ret = 0;
6219 down_read(&current->mm->mmap_sem);
John Hubbard2113b052020-01-30 22:13:13 -08006220 pret = pin_user_pages(ubuf, nr_pages,
Ira Weiny932f4a62019-05-13 17:17:03 -07006221 FOLL_WRITE | FOLL_LONGTERM,
6222 pages, vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07006223 if (pret == nr_pages) {
6224 /* don't support file backed memory */
6225 for (j = 0; j < nr_pages; j++) {
6226 struct vm_area_struct *vma = vmas[j];
6227
6228 if (vma->vm_file &&
6229 !is_file_hugepages(vma->vm_file)) {
6230 ret = -EOPNOTSUPP;
6231 break;
6232 }
6233 }
6234 } else {
6235 ret = pret < 0 ? pret : -EFAULT;
6236 }
6237 up_read(&current->mm->mmap_sem);
6238 if (ret) {
6239 /*
6240 * if we did partial map, or found file backed vmas,
6241 * release any pages we did get
6242 */
John Hubbard27c4d3a2019-08-04 19:32:06 -07006243 if (pret > 0)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08006244 unpin_user_pages(pages, pret);
Jens Axboeedafcce2019-01-09 09:16:05 -07006245 if (ctx->account_mem)
6246 io_unaccount_mem(ctx->user, nr_pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006247 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07006248 goto err;
6249 }
6250
6251 off = ubuf & ~PAGE_MASK;
6252 size = iov.iov_len;
6253 for (j = 0; j < nr_pages; j++) {
6254 size_t vec_len;
6255
6256 vec_len = min_t(size_t, size, PAGE_SIZE - off);
6257 imu->bvec[j].bv_page = pages[j];
6258 imu->bvec[j].bv_len = vec_len;
6259 imu->bvec[j].bv_offset = off;
6260 off = 0;
6261 size -= vec_len;
6262 }
6263 /* store original address for later verification */
6264 imu->ubuf = ubuf;
6265 imu->len = iov.iov_len;
6266 imu->nr_bvecs = nr_pages;
6267
6268 ctx->nr_user_bufs++;
6269 }
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006270 kvfree(pages);
6271 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07006272 return 0;
6273err:
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006274 kvfree(pages);
6275 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07006276 io_sqe_buffer_unregister(ctx);
6277 return ret;
6278}
6279
Jens Axboe9b402842019-04-11 11:45:41 -06006280static int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg)
6281{
6282 __s32 __user *fds = arg;
6283 int fd;
6284
6285 if (ctx->cq_ev_fd)
6286 return -EBUSY;
6287
6288 if (copy_from_user(&fd, fds, sizeof(*fds)))
6289 return -EFAULT;
6290
6291 ctx->cq_ev_fd = eventfd_ctx_fdget(fd);
6292 if (IS_ERR(ctx->cq_ev_fd)) {
6293 int ret = PTR_ERR(ctx->cq_ev_fd);
6294 ctx->cq_ev_fd = NULL;
6295 return ret;
6296 }
6297
6298 return 0;
6299}
6300
6301static int io_eventfd_unregister(struct io_ring_ctx *ctx)
6302{
6303 if (ctx->cq_ev_fd) {
6304 eventfd_ctx_put(ctx->cq_ev_fd);
6305 ctx->cq_ev_fd = NULL;
6306 return 0;
6307 }
6308
6309 return -ENXIO;
6310}
6311
Jens Axboe2b188cc2019-01-07 10:46:33 -07006312static void io_ring_ctx_free(struct io_ring_ctx *ctx)
6313{
Jens Axboe6b063142019-01-10 22:13:58 -07006314 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006315 if (ctx->sqo_mm)
6316 mmdrop(ctx->sqo_mm);
Jens Axboedef596e2019-01-09 08:59:42 -07006317
6318 io_iopoll_reap_events(ctx);
Jens Axboeedafcce2019-01-09 09:16:05 -07006319 io_sqe_buffer_unregister(ctx);
Jens Axboe6b063142019-01-10 22:13:58 -07006320 io_sqe_files_unregister(ctx);
Jens Axboe9b402842019-04-11 11:45:41 -06006321 io_eventfd_unregister(ctx);
Jens Axboedef596e2019-01-09 08:59:42 -07006322
Jens Axboe2b188cc2019-01-07 10:46:33 -07006323#if defined(CONFIG_UNIX)
Eric Biggers355e8d22019-06-12 14:58:43 -07006324 if (ctx->ring_sock) {
6325 ctx->ring_sock->file = NULL; /* so that iput() is called */
Jens Axboe2b188cc2019-01-07 10:46:33 -07006326 sock_release(ctx->ring_sock);
Eric Biggers355e8d22019-06-12 14:58:43 -07006327 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006328#endif
6329
Hristo Venev75b28af2019-08-26 17:23:46 +00006330 io_mem_free(ctx->rings);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006331 io_mem_free(ctx->sq_sqes);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006332
6333 percpu_ref_exit(&ctx->refs);
6334 if (ctx->account_mem)
6335 io_unaccount_mem(ctx->user,
6336 ring_pages(ctx->sq_entries, ctx->cq_entries));
6337 free_uid(ctx->user);
Jens Axboe181e4482019-11-25 08:52:30 -07006338 put_cred(ctx->creds);
Jens Axboe206aefd2019-11-07 18:27:42 -07006339 kfree(ctx->completions);
Jens Axboe78076bb2019-12-04 19:56:40 -07006340 kfree(ctx->cancel_hash);
Jens Axboe0ddf92e2019-11-08 08:52:53 -07006341 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006342 kfree(ctx);
6343}
6344
6345static __poll_t io_uring_poll(struct file *file, poll_table *wait)
6346{
6347 struct io_ring_ctx *ctx = file->private_data;
6348 __poll_t mask = 0;
6349
6350 poll_wait(file, &ctx->cq_wait, wait);
Stefan Bühler4f7067c2019-04-24 23:54:17 +02006351 /*
6352 * synchronizes with barrier from wq_has_sleeper call in
6353 * io_commit_cqring
6354 */
Jens Axboe2b188cc2019-01-07 10:46:33 -07006355 smp_rmb();
Hristo Venev75b28af2019-08-26 17:23:46 +00006356 if (READ_ONCE(ctx->rings->sq.tail) - ctx->cached_sq_head !=
6357 ctx->rings->sq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006358 mask |= EPOLLOUT | EPOLLWRNORM;
Stefano Garzarella63e5d812020-02-07 13:18:28 +01006359 if (io_cqring_events(ctx, false))
Jens Axboe2b188cc2019-01-07 10:46:33 -07006360 mask |= EPOLLIN | EPOLLRDNORM;
6361
6362 return mask;
6363}
6364
6365static int io_uring_fasync(int fd, struct file *file, int on)
6366{
6367 struct io_ring_ctx *ctx = file->private_data;
6368
6369 return fasync_helper(fd, file, on, &ctx->cq_fasync);
6370}
6371
Jens Axboe071698e2020-01-28 10:04:42 -07006372static int io_remove_personalities(int id, void *p, void *data)
6373{
6374 struct io_ring_ctx *ctx = data;
6375 const struct cred *cred;
6376
6377 cred = idr_remove(&ctx->personality_idr, id);
6378 if (cred)
6379 put_cred(cred);
6380 return 0;
6381}
6382
Jens Axboe2b188cc2019-01-07 10:46:33 -07006383static void io_ring_ctx_wait_and_kill(struct io_ring_ctx *ctx)
6384{
6385 mutex_lock(&ctx->uring_lock);
6386 percpu_ref_kill(&ctx->refs);
6387 mutex_unlock(&ctx->uring_lock);
6388
Jens Axboedf069d82020-02-04 16:48:34 -07006389 /*
6390 * Wait for sq thread to idle, if we have one. It won't spin on new
6391 * work after we've killed the ctx ref above. This is important to do
6392 * before we cancel existing commands, as the thread could otherwise
6393 * be queueing new work post that. If that's work we need to cancel,
6394 * it could cause shutdown to hang.
6395 */
6396 while (ctx->sqo_thread && !wq_has_sleeper(&ctx->sqo_wait))
6397 cpu_relax();
6398
Jens Axboe5262f562019-09-17 12:26:57 -06006399 io_kill_timeouts(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07006400 io_poll_remove_all(ctx);
Jens Axboe561fb042019-10-24 07:25:42 -06006401
6402 if (ctx->io_wq)
6403 io_wq_cancel_all(ctx->io_wq);
6404
Jens Axboedef596e2019-01-09 08:59:42 -07006405 io_iopoll_reap_events(ctx);
Jens Axboe15dff282019-11-13 09:09:23 -07006406 /* if we failed setting up the ctx, we might not have any rings */
6407 if (ctx->rings)
6408 io_cqring_overflow_flush(ctx, true);
Jens Axboe071698e2020-01-28 10:04:42 -07006409 idr_for_each(&ctx->personality_idr, io_remove_personalities, ctx);
Jens Axboe206aefd2019-11-07 18:27:42 -07006410 wait_for_completion(&ctx->completions[0]);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006411 io_ring_ctx_free(ctx);
6412}
6413
6414static int io_uring_release(struct inode *inode, struct file *file)
6415{
6416 struct io_ring_ctx *ctx = file->private_data;
6417
6418 file->private_data = NULL;
6419 io_ring_ctx_wait_and_kill(ctx);
6420 return 0;
6421}
6422
Jens Axboefcb323c2019-10-24 12:39:47 -06006423static void io_uring_cancel_files(struct io_ring_ctx *ctx,
6424 struct files_struct *files)
6425{
6426 struct io_kiocb *req;
6427 DEFINE_WAIT(wait);
6428
6429 while (!list_empty_careful(&ctx->inflight_list)) {
Jens Axboe768134d2019-11-10 20:30:53 -07006430 struct io_kiocb *cancel_req = NULL;
Jens Axboefcb323c2019-10-24 12:39:47 -06006431
6432 spin_lock_irq(&ctx->inflight_lock);
6433 list_for_each_entry(req, &ctx->inflight_list, inflight_entry) {
Jens Axboe768134d2019-11-10 20:30:53 -07006434 if (req->work.files != files)
6435 continue;
6436 /* req is being completed, ignore */
6437 if (!refcount_inc_not_zero(&req->refs))
6438 continue;
6439 cancel_req = req;
6440 break;
Jens Axboefcb323c2019-10-24 12:39:47 -06006441 }
Jens Axboe768134d2019-11-10 20:30:53 -07006442 if (cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06006443 prepare_to_wait(&ctx->inflight_wait, &wait,
Jens Axboe768134d2019-11-10 20:30:53 -07006444 TASK_UNINTERRUPTIBLE);
Jens Axboefcb323c2019-10-24 12:39:47 -06006445 spin_unlock_irq(&ctx->inflight_lock);
6446
Jens Axboe768134d2019-11-10 20:30:53 -07006447 /* We need to keep going until we don't find a matching req */
6448 if (!cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06006449 break;
Bob Liu2f6d9b92019-11-13 18:06:24 +08006450
6451 io_wq_cancel_work(ctx->io_wq, &cancel_req->work);
6452 io_put_req(cancel_req);
Jens Axboefcb323c2019-10-24 12:39:47 -06006453 schedule();
6454 }
Jens Axboe768134d2019-11-10 20:30:53 -07006455 finish_wait(&ctx->inflight_wait, &wait);
Jens Axboefcb323c2019-10-24 12:39:47 -06006456}
6457
6458static int io_uring_flush(struct file *file, void *data)
6459{
6460 struct io_ring_ctx *ctx = file->private_data;
6461
6462 io_uring_cancel_files(ctx, data);
Jens Axboefcb323c2019-10-24 12:39:47 -06006463 return 0;
6464}
6465
Roman Penyaev6c5c2402019-11-28 12:53:22 +01006466static void *io_uring_validate_mmap_request(struct file *file,
6467 loff_t pgoff, size_t sz)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006468{
Jens Axboe2b188cc2019-01-07 10:46:33 -07006469 struct io_ring_ctx *ctx = file->private_data;
Roman Penyaev6c5c2402019-11-28 12:53:22 +01006470 loff_t offset = pgoff << PAGE_SHIFT;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006471 struct page *page;
6472 void *ptr;
6473
6474 switch (offset) {
6475 case IORING_OFF_SQ_RING:
Hristo Venev75b28af2019-08-26 17:23:46 +00006476 case IORING_OFF_CQ_RING:
6477 ptr = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006478 break;
6479 case IORING_OFF_SQES:
6480 ptr = ctx->sq_sqes;
6481 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006482 default:
Roman Penyaev6c5c2402019-11-28 12:53:22 +01006483 return ERR_PTR(-EINVAL);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006484 }
6485
6486 page = virt_to_head_page(ptr);
Matthew Wilcox (Oracle)a50b8542019-09-23 15:34:25 -07006487 if (sz > page_size(page))
Roman Penyaev6c5c2402019-11-28 12:53:22 +01006488 return ERR_PTR(-EINVAL);
6489
6490 return ptr;
6491}
6492
6493#ifdef CONFIG_MMU
6494
6495static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
6496{
6497 size_t sz = vma->vm_end - vma->vm_start;
6498 unsigned long pfn;
6499 void *ptr;
6500
6501 ptr = io_uring_validate_mmap_request(file, vma->vm_pgoff, sz);
6502 if (IS_ERR(ptr))
6503 return PTR_ERR(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006504
6505 pfn = virt_to_phys(ptr) >> PAGE_SHIFT;
6506 return remap_pfn_range(vma, vma->vm_start, pfn, sz, vma->vm_page_prot);
6507}
6508
Roman Penyaev6c5c2402019-11-28 12:53:22 +01006509#else /* !CONFIG_MMU */
6510
6511static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
6512{
6513 return vma->vm_flags & (VM_SHARED | VM_MAYSHARE) ? 0 : -EINVAL;
6514}
6515
6516static unsigned int io_uring_nommu_mmap_capabilities(struct file *file)
6517{
6518 return NOMMU_MAP_DIRECT | NOMMU_MAP_READ | NOMMU_MAP_WRITE;
6519}
6520
6521static unsigned long io_uring_nommu_get_unmapped_area(struct file *file,
6522 unsigned long addr, unsigned long len,
6523 unsigned long pgoff, unsigned long flags)
6524{
6525 void *ptr;
6526
6527 ptr = io_uring_validate_mmap_request(file, pgoff, len);
6528 if (IS_ERR(ptr))
6529 return PTR_ERR(ptr);
6530
6531 return (unsigned long) ptr;
6532}
6533
6534#endif /* !CONFIG_MMU */
6535
Jens Axboe2b188cc2019-01-07 10:46:33 -07006536SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
6537 u32, min_complete, u32, flags, const sigset_t __user *, sig,
6538 size_t, sigsz)
6539{
6540 struct io_ring_ctx *ctx;
6541 long ret = -EBADF;
6542 int submitted = 0;
6543 struct fd f;
6544
Jens Axboe6c271ce2019-01-10 11:22:30 -07006545 if (flags & ~(IORING_ENTER_GETEVENTS | IORING_ENTER_SQ_WAKEUP))
Jens Axboe2b188cc2019-01-07 10:46:33 -07006546 return -EINVAL;
6547
6548 f = fdget(fd);
6549 if (!f.file)
6550 return -EBADF;
6551
6552 ret = -EOPNOTSUPP;
6553 if (f.file->f_op != &io_uring_fops)
6554 goto out_fput;
6555
6556 ret = -ENXIO;
6557 ctx = f.file->private_data;
6558 if (!percpu_ref_tryget(&ctx->refs))
6559 goto out_fput;
6560
Jens Axboe6c271ce2019-01-10 11:22:30 -07006561 /*
6562 * For SQ polling, the thread will do all submissions and completions.
6563 * Just return the requested submit count, and wake the thread if
6564 * we were asked to.
6565 */
Jens Axboeb2a9ead2019-09-12 14:19:16 -06006566 ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006567 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboec1edbf52019-11-10 16:56:04 -07006568 if (!list_empty_careful(&ctx->cq_overflow_list))
6569 io_cqring_overflow_flush(ctx, false);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006570 if (flags & IORING_ENTER_SQ_WAKEUP)
6571 wake_up(&ctx->sqo_wait);
6572 submitted = to_submit;
Jens Axboeb2a9ead2019-09-12 14:19:16 -06006573 } else if (to_submit) {
Pavel Begunkovae9428c2019-11-06 00:22:14 +03006574 struct mm_struct *cur_mm;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006575
6576 mutex_lock(&ctx->uring_lock);
Pavel Begunkovae9428c2019-11-06 00:22:14 +03006577 /* already have mm, so io_submit_sqes() won't try to grab it */
6578 cur_mm = ctx->sqo_mm;
6579 submitted = io_submit_sqes(ctx, to_submit, f.file, fd,
6580 &cur_mm, false);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006581 mutex_unlock(&ctx->uring_lock);
Pavel Begunkov7c504e652019-12-18 19:53:45 +03006582
6583 if (submitted != to_submit)
6584 goto out;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006585 }
6586 if (flags & IORING_ENTER_GETEVENTS) {
Jens Axboedef596e2019-01-09 08:59:42 -07006587 unsigned nr_events = 0;
6588
Jens Axboe2b188cc2019-01-07 10:46:33 -07006589 min_complete = min(min_complete, ctx->cq_entries);
6590
Jens Axboedef596e2019-01-09 08:59:42 -07006591 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07006592 ret = io_iopoll_check(ctx, &nr_events, min_complete);
Jens Axboedef596e2019-01-09 08:59:42 -07006593 } else {
6594 ret = io_cqring_wait(ctx, min_complete, sig, sigsz);
6595 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006596 }
6597
Pavel Begunkov7c504e652019-12-18 19:53:45 +03006598out:
Pavel Begunkov6805b322019-10-08 02:18:42 +03006599 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006600out_fput:
6601 fdput(f);
6602 return submitted ? submitted : ret;
6603}
6604
Jens Axboe87ce9552020-01-30 08:25:34 -07006605static int io_uring_show_cred(int id, void *p, void *data)
6606{
6607 const struct cred *cred = p;
6608 struct seq_file *m = data;
6609 struct user_namespace *uns = seq_user_ns(m);
6610 struct group_info *gi;
6611 kernel_cap_t cap;
6612 unsigned __capi;
6613 int g;
6614
6615 seq_printf(m, "%5d\n", id);
6616 seq_put_decimal_ull(m, "\tUid:\t", from_kuid_munged(uns, cred->uid));
6617 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->euid));
6618 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->suid));
6619 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->fsuid));
6620 seq_put_decimal_ull(m, "\n\tGid:\t", from_kgid_munged(uns, cred->gid));
6621 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->egid));
6622 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->sgid));
6623 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->fsgid));
6624 seq_puts(m, "\n\tGroups:\t");
6625 gi = cred->group_info;
6626 for (g = 0; g < gi->ngroups; g++) {
6627 seq_put_decimal_ull(m, g ? " " : "",
6628 from_kgid_munged(uns, gi->gid[g]));
6629 }
6630 seq_puts(m, "\n\tCapEff:\t");
6631 cap = cred->cap_effective;
6632 CAP_FOR_EACH_U32(__capi)
6633 seq_put_hex_ll(m, NULL, cap.cap[CAP_LAST_U32 - __capi], 8);
6634 seq_putc(m, '\n');
6635 return 0;
6636}
6637
6638static void __io_uring_show_fdinfo(struct io_ring_ctx *ctx, struct seq_file *m)
6639{
6640 int i;
6641
6642 mutex_lock(&ctx->uring_lock);
6643 seq_printf(m, "UserFiles:\t%u\n", ctx->nr_user_files);
6644 for (i = 0; i < ctx->nr_user_files; i++) {
6645 struct fixed_file_table *table;
6646 struct file *f;
6647
6648 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
6649 f = table->files[i & IORING_FILE_TABLE_MASK];
6650 if (f)
6651 seq_printf(m, "%5u: %s\n", i, file_dentry(f)->d_iname);
6652 else
6653 seq_printf(m, "%5u: <none>\n", i);
6654 }
6655 seq_printf(m, "UserBufs:\t%u\n", ctx->nr_user_bufs);
6656 for (i = 0; i < ctx->nr_user_bufs; i++) {
6657 struct io_mapped_ubuf *buf = &ctx->user_bufs[i];
6658
6659 seq_printf(m, "%5u: 0x%llx/%u\n", i, buf->ubuf,
6660 (unsigned int) buf->len);
6661 }
6662 if (!idr_is_empty(&ctx->personality_idr)) {
6663 seq_printf(m, "Personalities:\n");
6664 idr_for_each(&ctx->personality_idr, io_uring_show_cred, m);
6665 }
6666 mutex_unlock(&ctx->uring_lock);
6667}
6668
6669static void io_uring_show_fdinfo(struct seq_file *m, struct file *f)
6670{
6671 struct io_ring_ctx *ctx = f->private_data;
6672
6673 if (percpu_ref_tryget(&ctx->refs)) {
6674 __io_uring_show_fdinfo(ctx, m);
6675 percpu_ref_put(&ctx->refs);
6676 }
6677}
6678
Jens Axboe2b188cc2019-01-07 10:46:33 -07006679static const struct file_operations io_uring_fops = {
6680 .release = io_uring_release,
Jens Axboefcb323c2019-10-24 12:39:47 -06006681 .flush = io_uring_flush,
Jens Axboe2b188cc2019-01-07 10:46:33 -07006682 .mmap = io_uring_mmap,
Roman Penyaev6c5c2402019-11-28 12:53:22 +01006683#ifndef CONFIG_MMU
6684 .get_unmapped_area = io_uring_nommu_get_unmapped_area,
6685 .mmap_capabilities = io_uring_nommu_mmap_capabilities,
6686#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07006687 .poll = io_uring_poll,
6688 .fasync = io_uring_fasync,
Jens Axboe87ce9552020-01-30 08:25:34 -07006689 .show_fdinfo = io_uring_show_fdinfo,
Jens Axboe2b188cc2019-01-07 10:46:33 -07006690};
6691
6692static int io_allocate_scq_urings(struct io_ring_ctx *ctx,
6693 struct io_uring_params *p)
6694{
Hristo Venev75b28af2019-08-26 17:23:46 +00006695 struct io_rings *rings;
6696 size_t size, sq_array_offset;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006697
Hristo Venev75b28af2019-08-26 17:23:46 +00006698 size = rings_size(p->sq_entries, p->cq_entries, &sq_array_offset);
6699 if (size == SIZE_MAX)
6700 return -EOVERFLOW;
6701
6702 rings = io_mem_alloc(size);
6703 if (!rings)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006704 return -ENOMEM;
6705
Hristo Venev75b28af2019-08-26 17:23:46 +00006706 ctx->rings = rings;
6707 ctx->sq_array = (u32 *)((char *)rings + sq_array_offset);
6708 rings->sq_ring_mask = p->sq_entries - 1;
6709 rings->cq_ring_mask = p->cq_entries - 1;
6710 rings->sq_ring_entries = p->sq_entries;
6711 rings->cq_ring_entries = p->cq_entries;
6712 ctx->sq_mask = rings->sq_ring_mask;
6713 ctx->cq_mask = rings->cq_ring_mask;
6714 ctx->sq_entries = rings->sq_ring_entries;
6715 ctx->cq_entries = rings->cq_ring_entries;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006716
6717 size = array_size(sizeof(struct io_uring_sqe), p->sq_entries);
Jens Axboeeb065d32019-11-20 09:26:29 -07006718 if (size == SIZE_MAX) {
6719 io_mem_free(ctx->rings);
6720 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006721 return -EOVERFLOW;
Jens Axboeeb065d32019-11-20 09:26:29 -07006722 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006723
6724 ctx->sq_sqes = io_mem_alloc(size);
Jens Axboeeb065d32019-11-20 09:26:29 -07006725 if (!ctx->sq_sqes) {
6726 io_mem_free(ctx->rings);
6727 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006728 return -ENOMEM;
Jens Axboeeb065d32019-11-20 09:26:29 -07006729 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006730
Jens Axboe2b188cc2019-01-07 10:46:33 -07006731 return 0;
6732}
6733
6734/*
6735 * Allocate an anonymous fd, this is what constitutes the application
6736 * visible backing of an io_uring instance. The application mmaps this
6737 * fd to gain access to the SQ/CQ ring details. If UNIX sockets are enabled,
6738 * we have to tie this fd to a socket for file garbage collection purposes.
6739 */
6740static int io_uring_get_fd(struct io_ring_ctx *ctx)
6741{
6742 struct file *file;
6743 int ret;
6744
6745#if defined(CONFIG_UNIX)
6746 ret = sock_create_kern(&init_net, PF_UNIX, SOCK_RAW, IPPROTO_IP,
6747 &ctx->ring_sock);
6748 if (ret)
6749 return ret;
6750#endif
6751
6752 ret = get_unused_fd_flags(O_RDWR | O_CLOEXEC);
6753 if (ret < 0)
6754 goto err;
6755
6756 file = anon_inode_getfile("[io_uring]", &io_uring_fops, ctx,
6757 O_RDWR | O_CLOEXEC);
6758 if (IS_ERR(file)) {
6759 put_unused_fd(ret);
6760 ret = PTR_ERR(file);
6761 goto err;
6762 }
6763
6764#if defined(CONFIG_UNIX)
6765 ctx->ring_sock->file = file;
6766#endif
6767 fd_install(ret, file);
6768 return ret;
6769err:
6770#if defined(CONFIG_UNIX)
6771 sock_release(ctx->ring_sock);
6772 ctx->ring_sock = NULL;
6773#endif
6774 return ret;
6775}
6776
6777static int io_uring_create(unsigned entries, struct io_uring_params *p)
6778{
6779 struct user_struct *user = NULL;
6780 struct io_ring_ctx *ctx;
6781 bool account_mem;
6782 int ret;
6783
Jens Axboe8110c1a2019-12-28 15:39:54 -07006784 if (!entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006785 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07006786 if (entries > IORING_MAX_ENTRIES) {
6787 if (!(p->flags & IORING_SETUP_CLAMP))
6788 return -EINVAL;
6789 entries = IORING_MAX_ENTRIES;
6790 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006791
6792 /*
6793 * Use twice as many entries for the CQ ring. It's possible for the
6794 * application to drive a higher depth than the size of the SQ ring,
6795 * since the sqes are only used at submission time. This allows for
Jens Axboe33a107f2019-10-04 12:10:03 -06006796 * some flexibility in overcommitting a bit. If the application has
6797 * set IORING_SETUP_CQSIZE, it will have passed in the desired number
6798 * of CQ ring entries manually.
Jens Axboe2b188cc2019-01-07 10:46:33 -07006799 */
6800 p->sq_entries = roundup_pow_of_two(entries);
Jens Axboe33a107f2019-10-04 12:10:03 -06006801 if (p->flags & IORING_SETUP_CQSIZE) {
6802 /*
6803 * If IORING_SETUP_CQSIZE is set, we do the same roundup
6804 * to a power-of-two, if it isn't already. We do NOT impose
6805 * any cq vs sq ring sizing.
6806 */
Jens Axboe8110c1a2019-12-28 15:39:54 -07006807 if (p->cq_entries < p->sq_entries)
Jens Axboe33a107f2019-10-04 12:10:03 -06006808 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07006809 if (p->cq_entries > IORING_MAX_CQ_ENTRIES) {
6810 if (!(p->flags & IORING_SETUP_CLAMP))
6811 return -EINVAL;
6812 p->cq_entries = IORING_MAX_CQ_ENTRIES;
6813 }
Jens Axboe33a107f2019-10-04 12:10:03 -06006814 p->cq_entries = roundup_pow_of_two(p->cq_entries);
6815 } else {
6816 p->cq_entries = 2 * p->sq_entries;
6817 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07006818
6819 user = get_uid(current_user());
6820 account_mem = !capable(CAP_IPC_LOCK);
6821
6822 if (account_mem) {
6823 ret = io_account_mem(user,
6824 ring_pages(p->sq_entries, p->cq_entries));
6825 if (ret) {
6826 free_uid(user);
6827 return ret;
6828 }
6829 }
6830
6831 ctx = io_ring_ctx_alloc(p);
6832 if (!ctx) {
6833 if (account_mem)
6834 io_unaccount_mem(user, ring_pages(p->sq_entries,
6835 p->cq_entries));
6836 free_uid(user);
6837 return -ENOMEM;
6838 }
6839 ctx->compat = in_compat_syscall();
6840 ctx->account_mem = account_mem;
6841 ctx->user = user;
Jens Axboe0b8c0ec2019-12-02 08:50:00 -07006842 ctx->creds = get_current_cred();
Jens Axboe2b188cc2019-01-07 10:46:33 -07006843
6844 ret = io_allocate_scq_urings(ctx, p);
6845 if (ret)
6846 goto err;
6847
Jens Axboe6c271ce2019-01-10 11:22:30 -07006848 ret = io_sq_offload_start(ctx, p);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006849 if (ret)
6850 goto err;
6851
Jens Axboe2b188cc2019-01-07 10:46:33 -07006852 memset(&p->sq_off, 0, sizeof(p->sq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00006853 p->sq_off.head = offsetof(struct io_rings, sq.head);
6854 p->sq_off.tail = offsetof(struct io_rings, sq.tail);
6855 p->sq_off.ring_mask = offsetof(struct io_rings, sq_ring_mask);
6856 p->sq_off.ring_entries = offsetof(struct io_rings, sq_ring_entries);
6857 p->sq_off.flags = offsetof(struct io_rings, sq_flags);
6858 p->sq_off.dropped = offsetof(struct io_rings, sq_dropped);
6859 p->sq_off.array = (char *)ctx->sq_array - (char *)ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006860
6861 memset(&p->cq_off, 0, sizeof(p->cq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00006862 p->cq_off.head = offsetof(struct io_rings, cq.head);
6863 p->cq_off.tail = offsetof(struct io_rings, cq.tail);
6864 p->cq_off.ring_mask = offsetof(struct io_rings, cq_ring_mask);
6865 p->cq_off.ring_entries = offsetof(struct io_rings, cq_ring_entries);
6866 p->cq_off.overflow = offsetof(struct io_rings, cq_overflow);
6867 p->cq_off.cqes = offsetof(struct io_rings, cqes);
Jens Axboeac90f242019-09-06 10:26:21 -06006868
Jens Axboe044c1ab2019-10-28 09:15:33 -06006869 /*
6870 * Install ring fd as the very last thing, so we don't risk someone
6871 * having closed it before we finish setup
6872 */
6873 ret = io_uring_get_fd(ctx);
6874 if (ret < 0)
6875 goto err;
6876
Jens Axboeda8c9692019-12-02 18:51:26 -07006877 p->features = IORING_FEAT_SINGLE_MMAP | IORING_FEAT_NODROP |
Jens Axboecccf0ee2020-01-27 16:34:48 -07006878 IORING_FEAT_SUBMIT_STABLE | IORING_FEAT_RW_CUR_POS |
6879 IORING_FEAT_CUR_PERSONALITY;
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02006880 trace_io_uring_create(ret, ctx, p->sq_entries, p->cq_entries, p->flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006881 return ret;
6882err:
6883 io_ring_ctx_wait_and_kill(ctx);
6884 return ret;
6885}
6886
6887/*
6888 * Sets up an aio uring context, and returns the fd. Applications asks for a
6889 * ring size, we return the actual sq/cq ring sizes (among other things) in the
6890 * params structure passed in.
6891 */
6892static long io_uring_setup(u32 entries, struct io_uring_params __user *params)
6893{
6894 struct io_uring_params p;
6895 long ret;
6896 int i;
6897
6898 if (copy_from_user(&p, params, sizeof(p)))
6899 return -EFAULT;
6900 for (i = 0; i < ARRAY_SIZE(p.resv); i++) {
6901 if (p.resv[i])
6902 return -EINVAL;
6903 }
6904
Jens Axboe6c271ce2019-01-10 11:22:30 -07006905 if (p.flags & ~(IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL |
Jens Axboe8110c1a2019-12-28 15:39:54 -07006906 IORING_SETUP_SQ_AFF | IORING_SETUP_CQSIZE |
Pavel Begunkov24369c22020-01-28 03:15:48 +03006907 IORING_SETUP_CLAMP | IORING_SETUP_ATTACH_WQ))
Jens Axboe2b188cc2019-01-07 10:46:33 -07006908 return -EINVAL;
6909
6910 ret = io_uring_create(entries, &p);
6911 if (ret < 0)
6912 return ret;
6913
6914 if (copy_to_user(params, &p, sizeof(p)))
6915 return -EFAULT;
6916
6917 return ret;
6918}
6919
6920SYSCALL_DEFINE2(io_uring_setup, u32, entries,
6921 struct io_uring_params __user *, params)
6922{
6923 return io_uring_setup(entries, params);
6924}
6925
Jens Axboe66f4af92020-01-16 15:36:52 -07006926static int io_probe(struct io_ring_ctx *ctx, void __user *arg, unsigned nr_args)
6927{
6928 struct io_uring_probe *p;
6929 size_t size;
6930 int i, ret;
6931
6932 size = struct_size(p, ops, nr_args);
6933 if (size == SIZE_MAX)
6934 return -EOVERFLOW;
6935 p = kzalloc(size, GFP_KERNEL);
6936 if (!p)
6937 return -ENOMEM;
6938
6939 ret = -EFAULT;
6940 if (copy_from_user(p, arg, size))
6941 goto out;
6942 ret = -EINVAL;
6943 if (memchr_inv(p, 0, size))
6944 goto out;
6945
6946 p->last_op = IORING_OP_LAST - 1;
6947 if (nr_args > IORING_OP_LAST)
6948 nr_args = IORING_OP_LAST;
6949
6950 for (i = 0; i < nr_args; i++) {
6951 p->ops[i].op = i;
6952 if (!io_op_defs[i].not_supported)
6953 p->ops[i].flags = IO_URING_OP_SUPPORTED;
6954 }
6955 p->ops_len = i;
6956
6957 ret = 0;
6958 if (copy_to_user(arg, p, size))
6959 ret = -EFAULT;
6960out:
6961 kfree(p);
6962 return ret;
6963}
6964
Jens Axboe071698e2020-01-28 10:04:42 -07006965static int io_register_personality(struct io_ring_ctx *ctx)
6966{
6967 const struct cred *creds = get_current_cred();
6968 int id;
6969
6970 id = idr_alloc_cyclic(&ctx->personality_idr, (void *) creds, 1,
6971 USHRT_MAX, GFP_KERNEL);
6972 if (id < 0)
6973 put_cred(creds);
6974 return id;
6975}
6976
6977static int io_unregister_personality(struct io_ring_ctx *ctx, unsigned id)
6978{
6979 const struct cred *old_creds;
6980
6981 old_creds = idr_remove(&ctx->personality_idr, id);
6982 if (old_creds) {
6983 put_cred(old_creds);
6984 return 0;
6985 }
6986
6987 return -EINVAL;
6988}
6989
6990static bool io_register_op_must_quiesce(int op)
6991{
6992 switch (op) {
6993 case IORING_UNREGISTER_FILES:
6994 case IORING_REGISTER_FILES_UPDATE:
6995 case IORING_REGISTER_PROBE:
6996 case IORING_REGISTER_PERSONALITY:
6997 case IORING_UNREGISTER_PERSONALITY:
6998 return false;
6999 default:
7000 return true;
7001 }
7002}
7003
Jens Axboeedafcce2019-01-09 09:16:05 -07007004static int __io_uring_register(struct io_ring_ctx *ctx, unsigned opcode,
7005 void __user *arg, unsigned nr_args)
Jens Axboeb19062a2019-04-15 10:49:38 -06007006 __releases(ctx->uring_lock)
7007 __acquires(ctx->uring_lock)
Jens Axboeedafcce2019-01-09 09:16:05 -07007008{
7009 int ret;
7010
Jens Axboe35fa71a2019-04-22 10:23:23 -06007011 /*
7012 * We're inside the ring mutex, if the ref is already dying, then
7013 * someone else killed the ctx or is already going through
7014 * io_uring_register().
7015 */
7016 if (percpu_ref_is_dying(&ctx->refs))
7017 return -ENXIO;
7018
Jens Axboe071698e2020-01-28 10:04:42 -07007019 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07007020 percpu_ref_kill(&ctx->refs);
Jens Axboeb19062a2019-04-15 10:49:38 -06007021
Jens Axboe05f3fb32019-12-09 11:22:50 -07007022 /*
7023 * Drop uring mutex before waiting for references to exit. If
7024 * another thread is currently inside io_uring_enter() it might
7025 * need to grab the uring_lock to make progress. If we hold it
7026 * here across the drain wait, then we can deadlock. It's safe
7027 * to drop the mutex here, since no new references will come in
7028 * after we've killed the percpu ref.
7029 */
7030 mutex_unlock(&ctx->uring_lock);
Jens Axboec1503682020-01-08 08:26:07 -07007031 ret = wait_for_completion_interruptible(&ctx->completions[0]);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007032 mutex_lock(&ctx->uring_lock);
Jens Axboec1503682020-01-08 08:26:07 -07007033 if (ret) {
7034 percpu_ref_resurrect(&ctx->refs);
7035 ret = -EINTR;
7036 goto out;
7037 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07007038 }
Jens Axboeedafcce2019-01-09 09:16:05 -07007039
7040 switch (opcode) {
7041 case IORING_REGISTER_BUFFERS:
7042 ret = io_sqe_buffer_register(ctx, arg, nr_args);
7043 break;
7044 case IORING_UNREGISTER_BUFFERS:
7045 ret = -EINVAL;
7046 if (arg || nr_args)
7047 break;
7048 ret = io_sqe_buffer_unregister(ctx);
7049 break;
Jens Axboe6b063142019-01-10 22:13:58 -07007050 case IORING_REGISTER_FILES:
7051 ret = io_sqe_files_register(ctx, arg, nr_args);
7052 break;
7053 case IORING_UNREGISTER_FILES:
7054 ret = -EINVAL;
7055 if (arg || nr_args)
7056 break;
7057 ret = io_sqe_files_unregister(ctx);
7058 break;
Jens Axboec3a31e62019-10-03 13:59:56 -06007059 case IORING_REGISTER_FILES_UPDATE:
7060 ret = io_sqe_files_update(ctx, arg, nr_args);
7061 break;
Jens Axboe9b402842019-04-11 11:45:41 -06007062 case IORING_REGISTER_EVENTFD:
Jens Axboef2842ab2020-01-08 11:04:00 -07007063 case IORING_REGISTER_EVENTFD_ASYNC:
Jens Axboe9b402842019-04-11 11:45:41 -06007064 ret = -EINVAL;
7065 if (nr_args != 1)
7066 break;
7067 ret = io_eventfd_register(ctx, arg);
Jens Axboef2842ab2020-01-08 11:04:00 -07007068 if (ret)
7069 break;
7070 if (opcode == IORING_REGISTER_EVENTFD_ASYNC)
7071 ctx->eventfd_async = 1;
7072 else
7073 ctx->eventfd_async = 0;
Jens Axboe9b402842019-04-11 11:45:41 -06007074 break;
7075 case IORING_UNREGISTER_EVENTFD:
7076 ret = -EINVAL;
7077 if (arg || nr_args)
7078 break;
7079 ret = io_eventfd_unregister(ctx);
7080 break;
Jens Axboe66f4af92020-01-16 15:36:52 -07007081 case IORING_REGISTER_PROBE:
7082 ret = -EINVAL;
7083 if (!arg || nr_args > 256)
7084 break;
7085 ret = io_probe(ctx, arg, nr_args);
7086 break;
Jens Axboe071698e2020-01-28 10:04:42 -07007087 case IORING_REGISTER_PERSONALITY:
7088 ret = -EINVAL;
7089 if (arg || nr_args)
7090 break;
7091 ret = io_register_personality(ctx);
7092 break;
7093 case IORING_UNREGISTER_PERSONALITY:
7094 ret = -EINVAL;
7095 if (arg)
7096 break;
7097 ret = io_unregister_personality(ctx, nr_args);
7098 break;
Jens Axboeedafcce2019-01-09 09:16:05 -07007099 default:
7100 ret = -EINVAL;
7101 break;
7102 }
7103
Jens Axboe071698e2020-01-28 10:04:42 -07007104 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07007105 /* bring the ctx back to life */
Jens Axboe05f3fb32019-12-09 11:22:50 -07007106 percpu_ref_reinit(&ctx->refs);
Jens Axboec1503682020-01-08 08:26:07 -07007107out:
7108 reinit_completion(&ctx->completions[0]);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007109 }
Jens Axboeedafcce2019-01-09 09:16:05 -07007110 return ret;
7111}
7112
7113SYSCALL_DEFINE4(io_uring_register, unsigned int, fd, unsigned int, opcode,
7114 void __user *, arg, unsigned int, nr_args)
7115{
7116 struct io_ring_ctx *ctx;
7117 long ret = -EBADF;
7118 struct fd f;
7119
7120 f = fdget(fd);
7121 if (!f.file)
7122 return -EBADF;
7123
7124 ret = -EOPNOTSUPP;
7125 if (f.file->f_op != &io_uring_fops)
7126 goto out_fput;
7127
7128 ctx = f.file->private_data;
7129
7130 mutex_lock(&ctx->uring_lock);
7131 ret = __io_uring_register(ctx, opcode, arg, nr_args);
7132 mutex_unlock(&ctx->uring_lock);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02007133 trace_io_uring_register(ctx, opcode, ctx->nr_user_files, ctx->nr_user_bufs,
7134 ctx->cq_ev_fd != NULL, ret);
Jens Axboeedafcce2019-01-09 09:16:05 -07007135out_fput:
7136 fdput(f);
7137 return ret;
7138}
7139
Jens Axboe2b188cc2019-01-07 10:46:33 -07007140static int __init io_uring_init(void)
7141{
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01007142#define __BUILD_BUG_VERIFY_ELEMENT(stype, eoffset, etype, ename) do { \
7143 BUILD_BUG_ON(offsetof(stype, ename) != eoffset); \
7144 BUILD_BUG_ON(sizeof(etype) != sizeof_field(stype, ename)); \
7145} while (0)
7146
7147#define BUILD_BUG_SQE_ELEM(eoffset, etype, ename) \
7148 __BUILD_BUG_VERIFY_ELEMENT(struct io_uring_sqe, eoffset, etype, ename)
7149 BUILD_BUG_ON(sizeof(struct io_uring_sqe) != 64);
7150 BUILD_BUG_SQE_ELEM(0, __u8, opcode);
7151 BUILD_BUG_SQE_ELEM(1, __u8, flags);
7152 BUILD_BUG_SQE_ELEM(2, __u16, ioprio);
7153 BUILD_BUG_SQE_ELEM(4, __s32, fd);
7154 BUILD_BUG_SQE_ELEM(8, __u64, off);
7155 BUILD_BUG_SQE_ELEM(8, __u64, addr2);
7156 BUILD_BUG_SQE_ELEM(16, __u64, addr);
7157 BUILD_BUG_SQE_ELEM(24, __u32, len);
7158 BUILD_BUG_SQE_ELEM(28, __kernel_rwf_t, rw_flags);
7159 BUILD_BUG_SQE_ELEM(28, /* compat */ int, rw_flags);
7160 BUILD_BUG_SQE_ELEM(28, /* compat */ __u32, rw_flags);
7161 BUILD_BUG_SQE_ELEM(28, __u32, fsync_flags);
7162 BUILD_BUG_SQE_ELEM(28, __u16, poll_events);
7163 BUILD_BUG_SQE_ELEM(28, __u32, sync_range_flags);
7164 BUILD_BUG_SQE_ELEM(28, __u32, msg_flags);
7165 BUILD_BUG_SQE_ELEM(28, __u32, timeout_flags);
7166 BUILD_BUG_SQE_ELEM(28, __u32, accept_flags);
7167 BUILD_BUG_SQE_ELEM(28, __u32, cancel_flags);
7168 BUILD_BUG_SQE_ELEM(28, __u32, open_flags);
7169 BUILD_BUG_SQE_ELEM(28, __u32, statx_flags);
7170 BUILD_BUG_SQE_ELEM(28, __u32, fadvise_advice);
7171 BUILD_BUG_SQE_ELEM(32, __u64, user_data);
7172 BUILD_BUG_SQE_ELEM(40, __u16, buf_index);
7173 BUILD_BUG_SQE_ELEM(42, __u16, personality);
7174
Jens Axboed3656342019-12-18 09:50:26 -07007175 BUILD_BUG_ON(ARRAY_SIZE(io_op_defs) != IORING_OP_LAST);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007176 req_cachep = KMEM_CACHE(io_kiocb, SLAB_HWCACHE_ALIGN | SLAB_PANIC);
7177 return 0;
7178};
7179__initcall(io_uring_init);