blob: 05260ed485ad15ffd67cd18f75c3767511f8e4c4 [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>
Jens Axboe52de1fe2020-02-27 10:15:42 -070047#include <net/compat.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070048#include <linux/refcount.h>
49#include <linux/uio.h>
Pavel Begunkov6b47ee62020-01-18 20:22:41 +030050#include <linux/bits.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070051
52#include <linux/sched/signal.h>
53#include <linux/fs.h>
54#include <linux/file.h>
55#include <linux/fdtable.h>
56#include <linux/mm.h>
57#include <linux/mman.h>
58#include <linux/mmu_context.h>
59#include <linux/percpu.h>
60#include <linux/slab.h>
Jens Axboe6c271ce2019-01-10 11:22:30 -070061#include <linux/kthread.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070062#include <linux/blkdev.h>
Jens Axboeedafcce2019-01-09 09:16:05 -070063#include <linux/bvec.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070064#include <linux/net.h>
65#include <net/sock.h>
66#include <net/af_unix.h>
Jens Axboe6b063142019-01-10 22:13:58 -070067#include <net/scm.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070068#include <linux/anon_inodes.h>
69#include <linux/sched/mm.h>
70#include <linux/uaccess.h>
71#include <linux/nospec.h>
Jens Axboeedafcce2019-01-09 09:16:05 -070072#include <linux/sizes.h>
73#include <linux/hugetlb.h>
Jens Axboeaa4c3962019-11-29 10:14:00 -070074#include <linux/highmem.h>
Jens Axboe15b71ab2019-12-11 11:20:36 -070075#include <linux/namei.h>
76#include <linux/fsnotify.h>
Jens Axboe4840e412019-12-25 22:03:45 -070077#include <linux/fadvise.h>
Jens Axboe3e4827b2020-01-08 15:18:09 -070078#include <linux/eventpoll.h>
Jens Axboeff002b32020-02-07 16:05:21 -070079#include <linux/fs_struct.h>
Pavel Begunkov7d67af22020-02-24 11:32:45 +030080#include <linux/splice.h>
Jens Axboeb41e9852020-02-17 09:52:41 -070081#include <linux/task_work.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070082
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +020083#define CREATE_TRACE_POINTS
84#include <trace/events/io_uring.h>
85
Jens Axboe2b188cc2019-01-07 10:46:33 -070086#include <uapi/linux/io_uring.h>
87
88#include "internal.h"
Jens Axboe561fb042019-10-24 07:25:42 -060089#include "io-wq.h"
Jens Axboe2b188cc2019-01-07 10:46:33 -070090
Daniel Xu5277dea2019-09-14 14:23:45 -070091#define IORING_MAX_ENTRIES 32768
Jens Axboe33a107f2019-10-04 12:10:03 -060092#define IORING_MAX_CQ_ENTRIES (2 * IORING_MAX_ENTRIES)
Jens Axboe65e19f52019-10-26 07:20:21 -060093
94/*
95 * Shift of 9 is 512 entries, or exactly one page on 64-bit archs
96 */
97#define IORING_FILE_TABLE_SHIFT 9
98#define IORING_MAX_FILES_TABLE (1U << IORING_FILE_TABLE_SHIFT)
99#define IORING_FILE_TABLE_MASK (IORING_MAX_FILES_TABLE - 1)
100#define IORING_MAX_FIXED_FILES (64 * IORING_MAX_FILES_TABLE)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700101
102struct io_uring {
103 u32 head ____cacheline_aligned_in_smp;
104 u32 tail ____cacheline_aligned_in_smp;
105};
106
Stefan Bühler1e84b972019-04-24 23:54:16 +0200107/*
Hristo Venev75b28af2019-08-26 17:23:46 +0000108 * This data is shared with the application through the mmap at offsets
109 * IORING_OFF_SQ_RING and IORING_OFF_CQ_RING.
Stefan Bühler1e84b972019-04-24 23:54:16 +0200110 *
111 * The offsets to the member fields are published through struct
112 * io_sqring_offsets when calling io_uring_setup.
113 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000114struct io_rings {
Stefan Bühler1e84b972019-04-24 23:54:16 +0200115 /*
116 * Head and tail offsets into the ring; the offsets need to be
117 * masked to get valid indices.
118 *
Hristo Venev75b28af2019-08-26 17:23:46 +0000119 * The kernel controls head of the sq ring and the tail of the cq ring,
120 * and the application controls tail of the sq ring and the head of the
121 * cq ring.
Stefan Bühler1e84b972019-04-24 23:54:16 +0200122 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000123 struct io_uring sq, cq;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200124 /*
Hristo Venev75b28af2019-08-26 17:23:46 +0000125 * Bitmasks to apply to head and tail offsets (constant, equals
Stefan Bühler1e84b972019-04-24 23:54:16 +0200126 * ring_entries - 1)
127 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000128 u32 sq_ring_mask, cq_ring_mask;
129 /* Ring sizes (constant, power of 2) */
130 u32 sq_ring_entries, cq_ring_entries;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200131 /*
132 * Number of invalid entries dropped by the kernel due to
133 * invalid index stored in array
134 *
135 * Written by the kernel, shouldn't be modified by the
136 * application (i.e. get number of "new events" by comparing to
137 * cached value).
138 *
139 * After a new SQ head value was read by the application this
140 * counter includes all submissions that were dropped reaching
141 * the new SQ head (and possibly more).
142 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000143 u32 sq_dropped;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200144 /*
145 * Runtime flags
146 *
147 * Written by the kernel, shouldn't be modified by the
148 * application.
149 *
150 * The application needs a full memory barrier before checking
151 * for IORING_SQ_NEED_WAKEUP after updating the sq tail.
152 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000153 u32 sq_flags;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200154 /*
155 * Number of completion events lost because the queue was full;
156 * this should be avoided by the application by making sure
LimingWu0b4295b2019-12-05 20:18:18 +0800157 * there are not more requests pending than there is space in
Stefan Bühler1e84b972019-04-24 23:54:16 +0200158 * the completion queue.
159 *
160 * Written by the kernel, shouldn't be modified by the
161 * application (i.e. get number of "new events" by comparing to
162 * cached value).
163 *
164 * As completion events come in out of order this counter is not
165 * ordered with any other data.
166 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000167 u32 cq_overflow;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200168 /*
169 * Ring buffer of completion events.
170 *
171 * The kernel writes completion events fresh every time they are
172 * produced, so the application is allowed to modify pending
173 * entries.
174 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000175 struct io_uring_cqe cqes[] ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700176};
177
Jens Axboeedafcce2019-01-09 09:16:05 -0700178struct io_mapped_ubuf {
179 u64 ubuf;
180 size_t len;
181 struct bio_vec *bvec;
182 unsigned int nr_bvecs;
183};
184
Jens Axboe65e19f52019-10-26 07:20:21 -0600185struct fixed_file_table {
186 struct file **files;
Jens Axboe31b51512019-01-18 22:56:34 -0700187};
188
Jens Axboe05f3fb32019-12-09 11:22:50 -0700189struct fixed_file_data {
190 struct fixed_file_table *table;
191 struct io_ring_ctx *ctx;
192
193 struct percpu_ref refs;
194 struct llist_head put_llist;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700195 struct work_struct ref_work;
196 struct completion done;
197};
198
Jens Axboe5a2e7452020-02-23 16:23:11 -0700199struct io_buffer {
200 struct list_head list;
201 __u64 addr;
202 __s32 len;
203 __u16 bid;
204};
205
Jens Axboe2b188cc2019-01-07 10:46:33 -0700206struct io_ring_ctx {
207 struct {
208 struct percpu_ref refs;
209 } ____cacheline_aligned_in_smp;
210
211 struct {
212 unsigned int flags;
Randy Dunlape1d85332020-02-05 20:57:10 -0800213 unsigned int compat: 1;
214 unsigned int account_mem: 1;
215 unsigned int cq_overflow_flushed: 1;
216 unsigned int drain_next: 1;
217 unsigned int eventfd_async: 1;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700218
Hristo Venev75b28af2019-08-26 17:23:46 +0000219 /*
220 * Ring buffer of indices into array of io_uring_sqe, which is
221 * mmapped by the application using the IORING_OFF_SQES offset.
222 *
223 * This indirection could e.g. be used to assign fixed
224 * io_uring_sqe entries to operations and only submit them to
225 * the queue when needed.
226 *
227 * The kernel modifies neither the indices array nor the entries
228 * array.
229 */
230 u32 *sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700231 unsigned cached_sq_head;
232 unsigned sq_entries;
233 unsigned sq_mask;
Jens Axboe6c271ce2019-01-10 11:22:30 -0700234 unsigned sq_thread_idle;
Jens Axboe498ccd92019-10-25 10:04:25 -0600235 unsigned cached_sq_dropped;
Jens Axboe206aefd2019-11-07 18:27:42 -0700236 atomic_t cached_cq_overflow;
Jens Axboead3eb2c2019-12-18 17:12:20 -0700237 unsigned long sq_check_overflow;
Jens Axboede0617e2019-04-06 21:51:27 -0600238
239 struct list_head defer_list;
Jens Axboe5262f562019-09-17 12:26:57 -0600240 struct list_head timeout_list;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700241 struct list_head cq_overflow_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700242
Jens Axboefcb323c2019-10-24 12:39:47 -0600243 wait_queue_head_t inflight_wait;
Jens Axboead3eb2c2019-12-18 17:12:20 -0700244 struct io_uring_sqe *sq_sqes;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700245 } ____cacheline_aligned_in_smp;
246
Hristo Venev75b28af2019-08-26 17:23:46 +0000247 struct io_rings *rings;
248
Jens Axboe2b188cc2019-01-07 10:46:33 -0700249 /* IO offload */
Jens Axboe561fb042019-10-24 07:25:42 -0600250 struct io_wq *io_wq;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700251 struct task_struct *sqo_thread; /* if using sq thread polling */
252 struct mm_struct *sqo_mm;
253 wait_queue_head_t sqo_wait;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700254
Jens Axboe6b063142019-01-10 22:13:58 -0700255 /*
256 * If used, fixed file set. Writers must ensure that ->refs is dead,
257 * readers must ensure that ->refs is alive as long as the file* is
258 * used. Only updated through io_uring_register(2).
259 */
Jens Axboe05f3fb32019-12-09 11:22:50 -0700260 struct fixed_file_data *file_data;
Jens Axboe6b063142019-01-10 22:13:58 -0700261 unsigned nr_user_files;
Pavel Begunkovb14cca02020-01-17 04:45:59 +0300262 int ring_fd;
263 struct file *ring_file;
Jens Axboe6b063142019-01-10 22:13:58 -0700264
Jens Axboeedafcce2019-01-09 09:16:05 -0700265 /* if used, fixed mapped user buffers */
266 unsigned nr_user_bufs;
267 struct io_mapped_ubuf *user_bufs;
268
Jens Axboe2b188cc2019-01-07 10:46:33 -0700269 struct user_struct *user;
270
Jens Axboe0b8c0ec2019-12-02 08:50:00 -0700271 const struct cred *creds;
Jens Axboe181e4482019-11-25 08:52:30 -0700272
Jens Axboe206aefd2019-11-07 18:27:42 -0700273 /* 0 is for ctx quiesce/reinit/free, 1 is for sqo_thread started */
274 struct completion *completions;
275
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700276 /* if all else fails... */
277 struct io_kiocb *fallback_req;
278
Jens Axboe206aefd2019-11-07 18:27:42 -0700279#if defined(CONFIG_UNIX)
280 struct socket *ring_sock;
281#endif
282
Jens Axboe5a2e7452020-02-23 16:23:11 -0700283 struct idr io_buffer_idr;
284
Jens Axboe071698e2020-01-28 10:04:42 -0700285 struct idr personality_idr;
286
Jens Axboe206aefd2019-11-07 18:27:42 -0700287 struct {
288 unsigned cached_cq_tail;
289 unsigned cq_entries;
290 unsigned cq_mask;
291 atomic_t cq_timeouts;
Jens Axboead3eb2c2019-12-18 17:12:20 -0700292 unsigned long cq_check_overflow;
Jens Axboe206aefd2019-11-07 18:27:42 -0700293 struct wait_queue_head cq_wait;
294 struct fasync_struct *cq_fasync;
295 struct eventfd_ctx *cq_ev_fd;
296 } ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700297
298 struct {
299 struct mutex uring_lock;
300 wait_queue_head_t wait;
301 } ____cacheline_aligned_in_smp;
302
303 struct {
304 spinlock_t completion_lock;
Jens Axboee94f1412019-12-19 12:06:02 -0700305
Jens Axboedef596e2019-01-09 08:59:42 -0700306 /*
307 * ->poll_list is protected by the ctx->uring_lock for
308 * io_uring instances that don't use IORING_SETUP_SQPOLL.
309 * For SQPOLL, only the single threaded io_sq_thread() will
310 * manipulate the list, hence no extra locking is needed there.
311 */
312 struct list_head poll_list;
Jens Axboe78076bb2019-12-04 19:56:40 -0700313 struct hlist_head *cancel_hash;
314 unsigned cancel_hash_bits;
Jens Axboee94f1412019-12-19 12:06:02 -0700315 bool poll_multi_file;
Jens Axboefcb323c2019-10-24 12:39:47 -0600316
317 spinlock_t inflight_lock;
318 struct list_head inflight_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700319 } ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700320};
321
Jens Axboe09bb8392019-03-13 12:39:28 -0600322/*
323 * First field must be the file pointer in all the
324 * iocb unions! See also 'struct kiocb' in <linux/fs.h>
325 */
Jens Axboe221c5eb2019-01-17 09:41:58 -0700326struct io_poll_iocb {
327 struct file *file;
Jens Axboe0969e782019-12-17 18:40:57 -0700328 union {
329 struct wait_queue_head *head;
330 u64 addr;
331 };
Jens Axboe221c5eb2019-01-17 09:41:58 -0700332 __poll_t events;
Jens Axboe8c838782019-03-12 15:48:16 -0600333 bool done;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700334 bool canceled;
Jens Axboe392edb42019-12-09 17:52:20 -0700335 struct wait_queue_entry wait;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700336};
337
Jens Axboeb5dba592019-12-11 14:02:38 -0700338struct io_close {
339 struct file *file;
340 struct file *put_file;
341 int fd;
342};
343
Jens Axboead8a48a2019-11-15 08:49:11 -0700344struct io_timeout_data {
345 struct io_kiocb *req;
346 struct hrtimer timer;
347 struct timespec64 ts;
348 enum hrtimer_mode mode;
Pavel Begunkovcc42e0a2019-11-25 23:14:38 +0300349 u32 seq_offset;
Jens Axboead8a48a2019-11-15 08:49:11 -0700350};
351
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700352struct io_accept {
353 struct file *file;
354 struct sockaddr __user *addr;
355 int __user *addr_len;
356 int flags;
357};
358
359struct io_sync {
360 struct file *file;
361 loff_t len;
362 loff_t off;
363 int flags;
Jens Axboed63d1b52019-12-10 10:38:56 -0700364 int mode;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700365};
366
Jens Axboefbf23842019-12-17 18:45:56 -0700367struct io_cancel {
368 struct file *file;
369 u64 addr;
370};
371
Jens Axboeb29472e2019-12-17 18:50:29 -0700372struct io_timeout {
373 struct file *file;
374 u64 addr;
375 int flags;
Jens Axboe26a61672019-12-20 09:02:01 -0700376 unsigned count;
Jens Axboeb29472e2019-12-17 18:50:29 -0700377};
378
Jens Axboe9adbd452019-12-20 08:45:55 -0700379struct io_rw {
380 /* NOTE: kiocb has the file as the first member, so don't do it here */
381 struct kiocb kiocb;
382 u64 addr;
383 u64 len;
384};
385
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700386struct io_connect {
387 struct file *file;
388 struct sockaddr __user *addr;
389 int addr_len;
390};
391
Jens Axboee47293f2019-12-20 08:58:21 -0700392struct io_sr_msg {
393 struct file *file;
Jens Axboefddafac2020-01-04 20:19:44 -0700394 union {
395 struct user_msghdr __user *msg;
396 void __user *buf;
397 };
Jens Axboee47293f2019-12-20 08:58:21 -0700398 int msg_flags;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700399 int bgid;
Jens Axboefddafac2020-01-04 20:19:44 -0700400 size_t len;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700401 struct io_buffer *kbuf;
Jens Axboee47293f2019-12-20 08:58:21 -0700402};
403
Jens Axboe15b71ab2019-12-11 11:20:36 -0700404struct io_open {
405 struct file *file;
406 int dfd;
Jens Axboeeddc7ef2019-12-13 21:18:10 -0700407 union {
Jens Axboeeddc7ef2019-12-13 21:18:10 -0700408 unsigned mask;
409 };
Jens Axboe15b71ab2019-12-11 11:20:36 -0700410 struct filename *filename;
Jens Axboeeddc7ef2019-12-13 21:18:10 -0700411 struct statx __user *buffer;
Jens Axboec12cedf2020-01-08 17:41:21 -0700412 struct open_how how;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700413};
414
Jens Axboe05f3fb32019-12-09 11:22:50 -0700415struct io_files_update {
416 struct file *file;
417 u64 arg;
418 u32 nr_args;
419 u32 offset;
420};
421
Jens Axboe4840e412019-12-25 22:03:45 -0700422struct io_fadvise {
423 struct file *file;
424 u64 offset;
425 u32 len;
426 u32 advice;
427};
428
Jens Axboec1ca7572019-12-25 22:18:28 -0700429struct io_madvise {
430 struct file *file;
431 u64 addr;
432 u32 len;
433 u32 advice;
434};
435
Jens Axboe3e4827b2020-01-08 15:18:09 -0700436struct io_epoll {
437 struct file *file;
438 int epfd;
439 int op;
440 int fd;
441 struct epoll_event event;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700442};
443
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300444struct io_splice {
445 struct file *file_out;
446 struct file *file_in;
447 loff_t off_out;
448 loff_t off_in;
449 u64 len;
450 unsigned int flags;
451};
452
Jens Axboeddf0322d2020-02-23 16:41:33 -0700453struct io_provide_buf {
454 struct file *file;
455 __u64 addr;
456 __s32 len;
457 __u32 bgid;
458 __u16 nbufs;
459 __u16 bid;
460};
461
Jens Axboef499a022019-12-02 16:28:46 -0700462struct io_async_connect {
463 struct sockaddr_storage address;
464};
465
Jens Axboe03b12302019-12-02 18:50:25 -0700466struct io_async_msghdr {
467 struct iovec fast_iov[UIO_FASTIOV];
468 struct iovec *iov;
469 struct sockaddr __user *uaddr;
470 struct msghdr msg;
Jens Axboeb5379162020-02-09 11:29:15 -0700471 struct sockaddr_storage addr;
Jens Axboe03b12302019-12-02 18:50:25 -0700472};
473
Jens Axboef67676d2019-12-02 11:03:47 -0700474struct io_async_rw {
475 struct iovec fast_iov[UIO_FASTIOV];
476 struct iovec *iov;
477 ssize_t nr_segs;
478 ssize_t size;
479};
480
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700481struct io_async_ctx {
Jens Axboef67676d2019-12-02 11:03:47 -0700482 union {
483 struct io_async_rw rw;
Jens Axboe03b12302019-12-02 18:50:25 -0700484 struct io_async_msghdr msg;
Jens Axboef499a022019-12-02 16:28:46 -0700485 struct io_async_connect connect;
Jens Axboe2d283902019-12-04 11:08:05 -0700486 struct io_timeout_data timeout;
Jens Axboef67676d2019-12-02 11:03:47 -0700487 };
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700488};
489
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300490enum {
491 REQ_F_FIXED_FILE_BIT = IOSQE_FIXED_FILE_BIT,
492 REQ_F_IO_DRAIN_BIT = IOSQE_IO_DRAIN_BIT,
493 REQ_F_LINK_BIT = IOSQE_IO_LINK_BIT,
494 REQ_F_HARDLINK_BIT = IOSQE_IO_HARDLINK_BIT,
495 REQ_F_FORCE_ASYNC_BIT = IOSQE_ASYNC_BIT,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700496 REQ_F_BUFFER_SELECT_BIT = IOSQE_BUFFER_SELECT_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300497
498 REQ_F_LINK_NEXT_BIT,
499 REQ_F_FAIL_LINK_BIT,
500 REQ_F_INFLIGHT_BIT,
501 REQ_F_CUR_POS_BIT,
502 REQ_F_NOWAIT_BIT,
503 REQ_F_IOPOLL_COMPLETED_BIT,
504 REQ_F_LINK_TIMEOUT_BIT,
505 REQ_F_TIMEOUT_BIT,
506 REQ_F_ISREG_BIT,
507 REQ_F_MUST_PUNT_BIT,
508 REQ_F_TIMEOUT_NOSEQ_BIT,
509 REQ_F_COMP_LOCKED_BIT,
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300510 REQ_F_NEED_CLEANUP_BIT,
Jens Axboe2ca10252020-02-13 17:17:35 -0700511 REQ_F_OVERFLOW_BIT,
Jens Axboed7718a92020-02-14 22:23:12 -0700512 REQ_F_POLLED_BIT,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700513 REQ_F_BUFFER_SELECTED_BIT,
Jens Axboe84557872020-03-03 15:28:17 -0700514
515 /* not a real bit, just to check we're not overflowing the space */
516 __REQ_F_LAST_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300517};
518
519enum {
520 /* ctx owns file */
521 REQ_F_FIXED_FILE = BIT(REQ_F_FIXED_FILE_BIT),
522 /* drain existing IO first */
523 REQ_F_IO_DRAIN = BIT(REQ_F_IO_DRAIN_BIT),
524 /* linked sqes */
525 REQ_F_LINK = BIT(REQ_F_LINK_BIT),
526 /* doesn't sever on completion < 0 */
527 REQ_F_HARDLINK = BIT(REQ_F_HARDLINK_BIT),
528 /* IOSQE_ASYNC */
529 REQ_F_FORCE_ASYNC = BIT(REQ_F_FORCE_ASYNC_BIT),
Jens Axboebcda7ba2020-02-23 16:42:51 -0700530 /* IOSQE_BUFFER_SELECT */
531 REQ_F_BUFFER_SELECT = BIT(REQ_F_BUFFER_SELECT_BIT),
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300532
533 /* already grabbed next link */
534 REQ_F_LINK_NEXT = BIT(REQ_F_LINK_NEXT_BIT),
535 /* fail rest of links */
536 REQ_F_FAIL_LINK = BIT(REQ_F_FAIL_LINK_BIT),
537 /* on inflight list */
538 REQ_F_INFLIGHT = BIT(REQ_F_INFLIGHT_BIT),
539 /* read/write uses file position */
540 REQ_F_CUR_POS = BIT(REQ_F_CUR_POS_BIT),
541 /* must not punt to workers */
542 REQ_F_NOWAIT = BIT(REQ_F_NOWAIT_BIT),
543 /* polled IO has completed */
544 REQ_F_IOPOLL_COMPLETED = BIT(REQ_F_IOPOLL_COMPLETED_BIT),
545 /* has linked timeout */
546 REQ_F_LINK_TIMEOUT = BIT(REQ_F_LINK_TIMEOUT_BIT),
547 /* timeout request */
548 REQ_F_TIMEOUT = BIT(REQ_F_TIMEOUT_BIT),
549 /* regular file */
550 REQ_F_ISREG = BIT(REQ_F_ISREG_BIT),
551 /* must be punted even for NONBLOCK */
552 REQ_F_MUST_PUNT = BIT(REQ_F_MUST_PUNT_BIT),
553 /* no timeout sequence */
554 REQ_F_TIMEOUT_NOSEQ = BIT(REQ_F_TIMEOUT_NOSEQ_BIT),
555 /* completion under lock */
556 REQ_F_COMP_LOCKED = BIT(REQ_F_COMP_LOCKED_BIT),
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300557 /* needs cleanup */
558 REQ_F_NEED_CLEANUP = BIT(REQ_F_NEED_CLEANUP_BIT),
Jens Axboe2ca10252020-02-13 17:17:35 -0700559 /* in overflow list */
560 REQ_F_OVERFLOW = BIT(REQ_F_OVERFLOW_BIT),
Jens Axboed7718a92020-02-14 22:23:12 -0700561 /* already went through poll handler */
562 REQ_F_POLLED = BIT(REQ_F_POLLED_BIT),
Jens Axboebcda7ba2020-02-23 16:42:51 -0700563 /* buffer already selected */
564 REQ_F_BUFFER_SELECTED = BIT(REQ_F_BUFFER_SELECTED_BIT),
Jens Axboed7718a92020-02-14 22:23:12 -0700565};
566
567struct async_poll {
568 struct io_poll_iocb poll;
569 struct io_wq_work work;
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300570};
571
Jens Axboe09bb8392019-03-13 12:39:28 -0600572/*
573 * NOTE! Each of the iocb union members has the file pointer
574 * as the first entry in their struct definition. So you can
575 * access the file pointer through any of the sub-structs,
576 * or directly as just 'ki_filp' in this struct.
577 */
Jens Axboe2b188cc2019-01-07 10:46:33 -0700578struct io_kiocb {
Jens Axboe221c5eb2019-01-17 09:41:58 -0700579 union {
Jens Axboe09bb8392019-03-13 12:39:28 -0600580 struct file *file;
Jens Axboe9adbd452019-12-20 08:45:55 -0700581 struct io_rw rw;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700582 struct io_poll_iocb poll;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700583 struct io_accept accept;
584 struct io_sync sync;
Jens Axboefbf23842019-12-17 18:45:56 -0700585 struct io_cancel cancel;
Jens Axboeb29472e2019-12-17 18:50:29 -0700586 struct io_timeout timeout;
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700587 struct io_connect connect;
Jens Axboee47293f2019-12-20 08:58:21 -0700588 struct io_sr_msg sr_msg;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700589 struct io_open open;
Jens Axboeb5dba592019-12-11 14:02:38 -0700590 struct io_close close;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700591 struct io_files_update files_update;
Jens Axboe4840e412019-12-25 22:03:45 -0700592 struct io_fadvise fadvise;
Jens Axboec1ca7572019-12-25 22:18:28 -0700593 struct io_madvise madvise;
Jens Axboe3e4827b2020-01-08 15:18:09 -0700594 struct io_epoll epoll;
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300595 struct io_splice splice;
Jens Axboeddf0322d2020-02-23 16:41:33 -0700596 struct io_provide_buf pbuf;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700597 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700598
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700599 struct io_async_ctx *io;
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +0300600 bool needs_fixed_file;
Jens Axboed625c6e2019-12-17 19:53:05 -0700601 u8 opcode;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700602
603 struct io_ring_ctx *ctx;
Jens Axboed7718a92020-02-14 22:23:12 -0700604 struct list_head list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700605 unsigned int flags;
Jens Axboec16361c2019-01-17 08:39:48 -0700606 refcount_t refs;
Jens Axboe4ed734b2020-03-20 11:23:41 -0600607 union {
608 struct task_struct *task;
609 unsigned long fsize;
610 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700611 u64 user_data;
Jens Axboe9e645e112019-05-10 16:07:28 -0600612 u32 result;
Jens Axboede0617e2019-04-06 21:51:27 -0600613 u32 sequence;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700614
Jens Axboed7718a92020-02-14 22:23:12 -0700615 struct list_head link_list;
616
Jens Axboefcb323c2019-10-24 12:39:47 -0600617 struct list_head inflight_entry;
618
Jens Axboeb41e9852020-02-17 09:52:41 -0700619 union {
620 /*
621 * Only commands that never go async can use the below fields,
Jens Axboed7718a92020-02-14 22:23:12 -0700622 * obviously. Right now only IORING_OP_POLL_ADD uses them, and
623 * async armed poll handlers for regular commands. The latter
624 * restore the work, if needed.
Jens Axboeb41e9852020-02-17 09:52:41 -0700625 */
626 struct {
Jens Axboeb41e9852020-02-17 09:52:41 -0700627 struct callback_head task_work;
Jens Axboed7718a92020-02-14 22:23:12 -0700628 struct hlist_node hash_node;
629 struct async_poll *apoll;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700630 int cflags;
Jens Axboeb41e9852020-02-17 09:52:41 -0700631 };
632 struct io_wq_work work;
633 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700634};
635
636#define IO_PLUG_THRESHOLD 2
Jens Axboedef596e2019-01-09 08:59:42 -0700637#define IO_IOPOLL_BATCH 8
Jens Axboe2b188cc2019-01-07 10:46:33 -0700638
Jens Axboe9a56a232019-01-09 09:06:50 -0700639struct io_submit_state {
640 struct blk_plug plug;
641
642 /*
Jens Axboe2579f912019-01-09 09:10:43 -0700643 * io_kiocb alloc cache
644 */
645 void *reqs[IO_IOPOLL_BATCH];
Pavel Begunkov6c8a3132020-02-01 03:58:00 +0300646 unsigned int free_reqs;
Jens Axboe2579f912019-01-09 09:10:43 -0700647
648 /*
Jens Axboe9a56a232019-01-09 09:06:50 -0700649 * File reference cache
650 */
651 struct file *file;
652 unsigned int fd;
653 unsigned int has_refs;
654 unsigned int used_refs;
655 unsigned int ios_left;
656};
657
Jens Axboed3656342019-12-18 09:50:26 -0700658struct io_op_def {
659 /* needs req->io allocated for deferral/async */
660 unsigned async_ctx : 1;
661 /* needs current->mm setup, does mm access */
662 unsigned needs_mm : 1;
663 /* needs req->file assigned */
664 unsigned needs_file : 1;
665 /* needs req->file assigned IFF fd is >= 0 */
666 unsigned fd_non_neg : 1;
667 /* hash wq insertion if file is a regular file */
668 unsigned hash_reg_file : 1;
669 /* unbound wq insertion if file is a non-regular file */
670 unsigned unbound_nonreg_file : 1;
Jens Axboe66f4af92020-01-16 15:36:52 -0700671 /* opcode is not supported by this kernel */
672 unsigned not_supported : 1;
Jens Axboef86cd202020-01-29 13:46:44 -0700673 /* needs file table */
674 unsigned file_table : 1;
Jens Axboeff002b32020-02-07 16:05:21 -0700675 /* needs ->fs */
676 unsigned needs_fs : 1;
Jens Axboe8a727582020-02-20 09:59:44 -0700677 /* set if opcode supports polled "wait" */
678 unsigned pollin : 1;
679 unsigned pollout : 1;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700680 /* op supports buffer selection */
681 unsigned buffer_select : 1;
Jens Axboed3656342019-12-18 09:50:26 -0700682};
683
684static const struct io_op_def io_op_defs[] = {
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300685 [IORING_OP_NOP] = {},
686 [IORING_OP_READV] = {
Jens Axboed3656342019-12-18 09:50:26 -0700687 .async_ctx = 1,
688 .needs_mm = 1,
689 .needs_file = 1,
690 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700691 .pollin = 1,
Jens Axboe4d954c22020-02-27 07:31:19 -0700692 .buffer_select = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700693 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300694 [IORING_OP_WRITEV] = {
Jens Axboed3656342019-12-18 09:50:26 -0700695 .async_ctx = 1,
696 .needs_mm = 1,
697 .needs_file = 1,
698 .hash_reg_file = 1,
699 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700700 .pollout = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700701 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300702 [IORING_OP_FSYNC] = {
Jens Axboed3656342019-12-18 09:50:26 -0700703 .needs_file = 1,
704 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300705 [IORING_OP_READ_FIXED] = {
Jens Axboed3656342019-12-18 09:50:26 -0700706 .needs_file = 1,
707 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700708 .pollin = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700709 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300710 [IORING_OP_WRITE_FIXED] = {
Jens Axboed3656342019-12-18 09:50:26 -0700711 .needs_file = 1,
712 .hash_reg_file = 1,
713 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700714 .pollout = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700715 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300716 [IORING_OP_POLL_ADD] = {
Jens Axboed3656342019-12-18 09:50:26 -0700717 .needs_file = 1,
718 .unbound_nonreg_file = 1,
719 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300720 [IORING_OP_POLL_REMOVE] = {},
721 [IORING_OP_SYNC_FILE_RANGE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700722 .needs_file = 1,
723 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300724 [IORING_OP_SENDMSG] = {
Jens Axboed3656342019-12-18 09:50:26 -0700725 .async_ctx = 1,
726 .needs_mm = 1,
727 .needs_file = 1,
728 .unbound_nonreg_file = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700729 .needs_fs = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700730 .pollout = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700731 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300732 [IORING_OP_RECVMSG] = {
Jens Axboed3656342019-12-18 09:50:26 -0700733 .async_ctx = 1,
734 .needs_mm = 1,
735 .needs_file = 1,
736 .unbound_nonreg_file = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700737 .needs_fs = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700738 .pollin = 1,
Jens Axboe52de1fe2020-02-27 10:15:42 -0700739 .buffer_select = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700740 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300741 [IORING_OP_TIMEOUT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700742 .async_ctx = 1,
743 .needs_mm = 1,
744 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300745 [IORING_OP_TIMEOUT_REMOVE] = {},
746 [IORING_OP_ACCEPT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700747 .needs_mm = 1,
748 .needs_file = 1,
749 .unbound_nonreg_file = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700750 .file_table = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700751 .pollin = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700752 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300753 [IORING_OP_ASYNC_CANCEL] = {},
754 [IORING_OP_LINK_TIMEOUT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700755 .async_ctx = 1,
756 .needs_mm = 1,
757 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300758 [IORING_OP_CONNECT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700759 .async_ctx = 1,
760 .needs_mm = 1,
761 .needs_file = 1,
762 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700763 .pollout = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700764 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300765 [IORING_OP_FALLOCATE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700766 .needs_file = 1,
767 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300768 [IORING_OP_OPENAT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700769 .needs_file = 1,
770 .fd_non_neg = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700771 .file_table = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700772 .needs_fs = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700773 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300774 [IORING_OP_CLOSE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700775 .needs_file = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700776 .file_table = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700777 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300778 [IORING_OP_FILES_UPDATE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700779 .needs_mm = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700780 .file_table = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700781 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300782 [IORING_OP_STATX] = {
Jens Axboed3656342019-12-18 09:50:26 -0700783 .needs_mm = 1,
784 .needs_file = 1,
785 .fd_non_neg = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700786 .needs_fs = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700787 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300788 [IORING_OP_READ] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -0700789 .needs_mm = 1,
790 .needs_file = 1,
791 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700792 .pollin = 1,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700793 .buffer_select = 1,
Jens Axboe3a6820f2019-12-22 15:19:35 -0700794 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300795 [IORING_OP_WRITE] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -0700796 .needs_mm = 1,
797 .needs_file = 1,
798 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700799 .pollout = 1,
Jens Axboe3a6820f2019-12-22 15:19:35 -0700800 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300801 [IORING_OP_FADVISE] = {
Jens Axboe4840e412019-12-25 22:03:45 -0700802 .needs_file = 1,
803 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300804 [IORING_OP_MADVISE] = {
Jens Axboec1ca7572019-12-25 22:18:28 -0700805 .needs_mm = 1,
806 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300807 [IORING_OP_SEND] = {
Jens Axboefddafac2020-01-04 20:19:44 -0700808 .needs_mm = 1,
809 .needs_file = 1,
810 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700811 .pollout = 1,
Jens Axboefddafac2020-01-04 20:19:44 -0700812 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300813 [IORING_OP_RECV] = {
Jens Axboefddafac2020-01-04 20:19:44 -0700814 .needs_mm = 1,
815 .needs_file = 1,
816 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700817 .pollin = 1,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700818 .buffer_select = 1,
Jens Axboefddafac2020-01-04 20:19:44 -0700819 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300820 [IORING_OP_OPENAT2] = {
Jens Axboecebdb982020-01-08 17:59:24 -0700821 .needs_file = 1,
822 .fd_non_neg = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700823 .file_table = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700824 .needs_fs = 1,
Jens Axboecebdb982020-01-08 17:59:24 -0700825 },
Jens Axboe3e4827b2020-01-08 15:18:09 -0700826 [IORING_OP_EPOLL_CTL] = {
827 .unbound_nonreg_file = 1,
828 .file_table = 1,
829 },
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300830 [IORING_OP_SPLICE] = {
831 .needs_file = 1,
832 .hash_reg_file = 1,
833 .unbound_nonreg_file = 1,
Jens Axboeddf0322d2020-02-23 16:41:33 -0700834 },
835 [IORING_OP_PROVIDE_BUFFERS] = {},
Jens Axboe067524e2020-03-02 16:32:28 -0700836 [IORING_OP_REMOVE_BUFFERS] = {},
Jens Axboed3656342019-12-18 09:50:26 -0700837};
838
Jens Axboe561fb042019-10-24 07:25:42 -0600839static void io_wq_submit_work(struct io_wq_work **workptr);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700840static void io_cqring_fill_event(struct io_kiocb *req, long res);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800841static void io_put_req(struct io_kiocb *req);
Jens Axboe978db572019-11-14 22:39:04 -0700842static void __io_double_put_req(struct io_kiocb *req);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700843static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req);
844static void io_queue_linked_timeout(struct io_kiocb *req);
Jens Axboe05f3fb32019-12-09 11:22:50 -0700845static int __io_sqe_files_update(struct io_ring_ctx *ctx,
846 struct io_uring_files_update *ip,
847 unsigned nr_args);
Jens Axboef86cd202020-01-29 13:46:44 -0700848static int io_grab_files(struct io_kiocb *req);
Jens Axboe2faf8522020-02-04 19:54:55 -0700849static void io_ring_file_ref_flush(struct fixed_file_data *data);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300850static void io_cleanup_req(struct io_kiocb *req);
Jens Axboeb41e9852020-02-17 09:52:41 -0700851static int io_file_get(struct io_submit_state *state, struct io_kiocb *req,
852 int fd, struct file **out_file, bool fixed);
853static void __io_queue_sqe(struct io_kiocb *req,
854 const struct io_uring_sqe *sqe);
Jens Axboede0617e2019-04-06 21:51:27 -0600855
Jens Axboe2b188cc2019-01-07 10:46:33 -0700856static struct kmem_cache *req_cachep;
857
858static const struct file_operations io_uring_fops;
859
860struct sock *io_uring_get_socket(struct file *file)
861{
862#if defined(CONFIG_UNIX)
863 if (file->f_op == &io_uring_fops) {
864 struct io_ring_ctx *ctx = file->private_data;
865
866 return ctx->ring_sock->sk;
867 }
868#endif
869 return NULL;
870}
871EXPORT_SYMBOL(io_uring_get_socket);
872
873static void io_ring_ctx_ref_free(struct percpu_ref *ref)
874{
875 struct io_ring_ctx *ctx = container_of(ref, struct io_ring_ctx, refs);
876
Jens Axboe206aefd2019-11-07 18:27:42 -0700877 complete(&ctx->completions[0]);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700878}
879
880static struct io_ring_ctx *io_ring_ctx_alloc(struct io_uring_params *p)
881{
882 struct io_ring_ctx *ctx;
Jens Axboe78076bb2019-12-04 19:56:40 -0700883 int hash_bits;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700884
885 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
886 if (!ctx)
887 return NULL;
888
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700889 ctx->fallback_req = kmem_cache_alloc(req_cachep, GFP_KERNEL);
890 if (!ctx->fallback_req)
891 goto err;
892
Jens Axboe206aefd2019-11-07 18:27:42 -0700893 ctx->completions = kmalloc(2 * sizeof(struct completion), GFP_KERNEL);
894 if (!ctx->completions)
895 goto err;
896
Jens Axboe78076bb2019-12-04 19:56:40 -0700897 /*
898 * Use 5 bits less than the max cq entries, that should give us around
899 * 32 entries per hash list if totally full and uniformly spread.
900 */
901 hash_bits = ilog2(p->cq_entries);
902 hash_bits -= 5;
903 if (hash_bits <= 0)
904 hash_bits = 1;
905 ctx->cancel_hash_bits = hash_bits;
906 ctx->cancel_hash = kmalloc((1U << hash_bits) * sizeof(struct hlist_head),
907 GFP_KERNEL);
908 if (!ctx->cancel_hash)
909 goto err;
910 __hash_init(ctx->cancel_hash, 1U << hash_bits);
911
Roman Gushchin21482892019-05-07 10:01:48 -0700912 if (percpu_ref_init(&ctx->refs, io_ring_ctx_ref_free,
Jens Axboe206aefd2019-11-07 18:27:42 -0700913 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL))
914 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700915
916 ctx->flags = p->flags;
917 init_waitqueue_head(&ctx->cq_wait);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700918 INIT_LIST_HEAD(&ctx->cq_overflow_list);
Jens Axboe206aefd2019-11-07 18:27:42 -0700919 init_completion(&ctx->completions[0]);
920 init_completion(&ctx->completions[1]);
Jens Axboe5a2e7452020-02-23 16:23:11 -0700921 idr_init(&ctx->io_buffer_idr);
Jens Axboe071698e2020-01-28 10:04:42 -0700922 idr_init(&ctx->personality_idr);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700923 mutex_init(&ctx->uring_lock);
924 init_waitqueue_head(&ctx->wait);
925 spin_lock_init(&ctx->completion_lock);
Jens Axboedef596e2019-01-09 08:59:42 -0700926 INIT_LIST_HEAD(&ctx->poll_list);
Jens Axboede0617e2019-04-06 21:51:27 -0600927 INIT_LIST_HEAD(&ctx->defer_list);
Jens Axboe5262f562019-09-17 12:26:57 -0600928 INIT_LIST_HEAD(&ctx->timeout_list);
Jens Axboefcb323c2019-10-24 12:39:47 -0600929 init_waitqueue_head(&ctx->inflight_wait);
930 spin_lock_init(&ctx->inflight_lock);
931 INIT_LIST_HEAD(&ctx->inflight_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700932 return ctx;
Jens Axboe206aefd2019-11-07 18:27:42 -0700933err:
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700934 if (ctx->fallback_req)
935 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe206aefd2019-11-07 18:27:42 -0700936 kfree(ctx->completions);
Jens Axboe78076bb2019-12-04 19:56:40 -0700937 kfree(ctx->cancel_hash);
Jens Axboe206aefd2019-11-07 18:27:42 -0700938 kfree(ctx);
939 return NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700940}
941
Bob Liu9d858b22019-11-13 18:06:25 +0800942static inline bool __req_need_defer(struct io_kiocb *req)
Jens Axboede0617e2019-04-06 21:51:27 -0600943{
Jackie Liua197f662019-11-08 08:09:12 -0700944 struct io_ring_ctx *ctx = req->ctx;
945
Jens Axboe498ccd92019-10-25 10:04:25 -0600946 return req->sequence != ctx->cached_cq_tail + ctx->cached_sq_dropped
947 + atomic_read(&ctx->cached_cq_overflow);
Jens Axboede0617e2019-04-06 21:51:27 -0600948}
949
Bob Liu9d858b22019-11-13 18:06:25 +0800950static inline bool req_need_defer(struct io_kiocb *req)
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600951{
Pavel Begunkov87987892020-01-18 01:22:30 +0300952 if (unlikely(req->flags & REQ_F_IO_DRAIN))
Bob Liu9d858b22019-11-13 18:06:25 +0800953 return __req_need_defer(req);
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600954
Bob Liu9d858b22019-11-13 18:06:25 +0800955 return false;
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600956}
957
958static struct io_kiocb *io_get_deferred_req(struct io_ring_ctx *ctx)
Jens Axboede0617e2019-04-06 21:51:27 -0600959{
960 struct io_kiocb *req;
961
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600962 req = list_first_entry_or_null(&ctx->defer_list, struct io_kiocb, list);
Bob Liu9d858b22019-11-13 18:06:25 +0800963 if (req && !req_need_defer(req)) {
Jens Axboede0617e2019-04-06 21:51:27 -0600964 list_del_init(&req->list);
965 return req;
966 }
967
968 return NULL;
969}
970
Jens Axboe5262f562019-09-17 12:26:57 -0600971static struct io_kiocb *io_get_timeout_req(struct io_ring_ctx *ctx)
972{
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600973 struct io_kiocb *req;
974
975 req = list_first_entry_or_null(&ctx->timeout_list, struct io_kiocb, list);
Jens Axboe93bd25b2019-11-11 23:34:31 -0700976 if (req) {
977 if (req->flags & REQ_F_TIMEOUT_NOSEQ)
978 return NULL;
Linus Torvaldsfb4b3d32019-11-25 10:40:27 -0800979 if (!__req_need_defer(req)) {
Jens Axboe93bd25b2019-11-11 23:34:31 -0700980 list_del_init(&req->list);
981 return req;
982 }
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600983 }
984
985 return NULL;
Jens Axboe5262f562019-09-17 12:26:57 -0600986}
987
Jens Axboede0617e2019-04-06 21:51:27 -0600988static void __io_commit_cqring(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700989{
Hristo Venev75b28af2019-08-26 17:23:46 +0000990 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700991
Pavel Begunkov07910152020-01-17 03:52:46 +0300992 /* order cqe stores with ring update */
993 smp_store_release(&rings->cq.tail, ctx->cached_cq_tail);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700994
Pavel Begunkov07910152020-01-17 03:52:46 +0300995 if (wq_has_sleeper(&ctx->cq_wait)) {
996 wake_up_interruptible(&ctx->cq_wait);
997 kill_fasync(&ctx->cq_fasync, SIGIO, POLL_IN);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700998 }
999}
1000
Jens Axboecccf0ee2020-01-27 16:34:48 -07001001static inline void io_req_work_grab_env(struct io_kiocb *req,
1002 const struct io_op_def *def)
Jens Axboe18d9be12019-09-10 09:13:05 -06001003{
Jens Axboecccf0ee2020-01-27 16:34:48 -07001004 if (!req->work.mm && def->needs_mm) {
1005 mmgrab(current->mm);
1006 req->work.mm = current->mm;
1007 }
1008 if (!req->work.creds)
1009 req->work.creds = get_current_cred();
Jens Axboeff002b32020-02-07 16:05:21 -07001010 if (!req->work.fs && def->needs_fs) {
1011 spin_lock(&current->fs->lock);
1012 if (!current->fs->in_exec) {
1013 req->work.fs = current->fs;
1014 req->work.fs->users++;
1015 } else {
1016 req->work.flags |= IO_WQ_WORK_CANCEL;
1017 }
1018 spin_unlock(&current->fs->lock);
1019 }
Jens Axboe6ab23142020-02-08 20:23:59 -07001020 if (!req->work.task_pid)
1021 req->work.task_pid = task_pid_vnr(current);
Jens Axboecccf0ee2020-01-27 16:34:48 -07001022}
1023
1024static inline void io_req_work_drop_env(struct io_kiocb *req)
1025{
1026 if (req->work.mm) {
1027 mmdrop(req->work.mm);
1028 req->work.mm = NULL;
1029 }
1030 if (req->work.creds) {
1031 put_cred(req->work.creds);
1032 req->work.creds = NULL;
1033 }
Jens Axboeff002b32020-02-07 16:05:21 -07001034 if (req->work.fs) {
1035 struct fs_struct *fs = req->work.fs;
1036
1037 spin_lock(&req->work.fs->lock);
1038 if (--fs->users)
1039 fs = NULL;
1040 spin_unlock(&req->work.fs->lock);
1041 if (fs)
1042 free_fs_struct(fs);
1043 }
Jens Axboe561fb042019-10-24 07:25:42 -06001044}
1045
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001046static inline void io_prep_async_work(struct io_kiocb *req,
Jens Axboe94ae5e72019-11-14 19:39:52 -07001047 struct io_kiocb **link)
Jens Axboe561fb042019-10-24 07:25:42 -06001048{
Jens Axboed3656342019-12-18 09:50:26 -07001049 const struct io_op_def *def = &io_op_defs[req->opcode];
Jens Axboe54a91f32019-09-10 09:15:04 -06001050
Jens Axboed3656342019-12-18 09:50:26 -07001051 if (req->flags & REQ_F_ISREG) {
1052 if (def->hash_reg_file)
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001053 io_wq_hash_work(&req->work, file_inode(req->file));
Jens Axboed3656342019-12-18 09:50:26 -07001054 } else {
1055 if (def->unbound_nonreg_file)
Jens Axboe3529d8c2019-12-19 18:24:38 -07001056 req->work.flags |= IO_WQ_WORK_UNBOUND;
Jens Axboe54a91f32019-09-10 09:15:04 -06001057 }
Jens Axboecccf0ee2020-01-27 16:34:48 -07001058
1059 io_req_work_grab_env(req, def);
Jens Axboe54a91f32019-09-10 09:15:04 -06001060
Jens Axboe94ae5e72019-11-14 19:39:52 -07001061 *link = io_prep_linked_timeout(req);
Jens Axboe561fb042019-10-24 07:25:42 -06001062}
1063
Jackie Liua197f662019-11-08 08:09:12 -07001064static inline void io_queue_async_work(struct io_kiocb *req)
Jens Axboe561fb042019-10-24 07:25:42 -06001065{
Jackie Liua197f662019-11-08 08:09:12 -07001066 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001067 struct io_kiocb *link;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001068
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001069 io_prep_async_work(req, &link);
Jens Axboe561fb042019-10-24 07:25:42 -06001070
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001071 trace_io_uring_queue_async_work(ctx, io_wq_is_hashed(&req->work), req,
1072 &req->work, req->flags);
1073 io_wq_enqueue(ctx->io_wq, &req->work);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001074
1075 if (link)
1076 io_queue_linked_timeout(link);
Jens Axboe18d9be12019-09-10 09:13:05 -06001077}
1078
Jens Axboe5262f562019-09-17 12:26:57 -06001079static void io_kill_timeout(struct io_kiocb *req)
1080{
1081 int ret;
1082
Jens Axboe2d283902019-12-04 11:08:05 -07001083 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe5262f562019-09-17 12:26:57 -06001084 if (ret != -1) {
1085 atomic_inc(&req->ctx->cq_timeouts);
Jens Axboe842f9612019-10-29 12:34:10 -06001086 list_del_init(&req->list);
Jens Axboe78e19bb2019-11-06 15:21:34 -07001087 io_cqring_fill_event(req, 0);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001088 io_put_req(req);
Jens Axboe5262f562019-09-17 12:26:57 -06001089 }
1090}
1091
1092static void io_kill_timeouts(struct io_ring_ctx *ctx)
1093{
1094 struct io_kiocb *req, *tmp;
1095
1096 spin_lock_irq(&ctx->completion_lock);
1097 list_for_each_entry_safe(req, tmp, &ctx->timeout_list, list)
1098 io_kill_timeout(req);
1099 spin_unlock_irq(&ctx->completion_lock);
1100}
1101
Jens Axboede0617e2019-04-06 21:51:27 -06001102static void io_commit_cqring(struct io_ring_ctx *ctx)
1103{
1104 struct io_kiocb *req;
1105
Jens Axboe5262f562019-09-17 12:26:57 -06001106 while ((req = io_get_timeout_req(ctx)) != NULL)
1107 io_kill_timeout(req);
1108
Jens Axboede0617e2019-04-06 21:51:27 -06001109 __io_commit_cqring(ctx);
1110
Pavel Begunkov87987892020-01-18 01:22:30 +03001111 while ((req = io_get_deferred_req(ctx)) != NULL)
Jackie Liua197f662019-11-08 08:09:12 -07001112 io_queue_async_work(req);
Jens Axboede0617e2019-04-06 21:51:27 -06001113}
1114
Jens Axboe2b188cc2019-01-07 10:46:33 -07001115static struct io_uring_cqe *io_get_cqring(struct io_ring_ctx *ctx)
1116{
Hristo Venev75b28af2019-08-26 17:23:46 +00001117 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001118 unsigned tail;
1119
1120 tail = ctx->cached_cq_tail;
Stefan Bühler115e12e2019-04-24 23:54:18 +02001121 /*
1122 * writes to the cq entry need to come after reading head; the
1123 * control dependency is enough as we're using WRITE_ONCE to
1124 * fill the cq entry
1125 */
Hristo Venev75b28af2019-08-26 17:23:46 +00001126 if (tail - READ_ONCE(rings->cq.head) == rings->cq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001127 return NULL;
1128
1129 ctx->cached_cq_tail++;
Hristo Venev75b28af2019-08-26 17:23:46 +00001130 return &rings->cqes[tail & ctx->cq_mask];
Jens Axboe2b188cc2019-01-07 10:46:33 -07001131}
1132
Jens Axboef2842ab2020-01-08 11:04:00 -07001133static inline bool io_should_trigger_evfd(struct io_ring_ctx *ctx)
1134{
Jens Axboef0b493e2020-02-01 21:30:11 -07001135 if (!ctx->cq_ev_fd)
1136 return false;
Jens Axboef2842ab2020-01-08 11:04:00 -07001137 if (!ctx->eventfd_async)
1138 return true;
Jens Axboeb41e9852020-02-17 09:52:41 -07001139 return io_wq_current_is_worker();
Jens Axboef2842ab2020-01-08 11:04:00 -07001140}
1141
Jens Axboeb41e9852020-02-17 09:52:41 -07001142static void io_cqring_ev_posted(struct io_ring_ctx *ctx)
Jens Axboe8c838782019-03-12 15:48:16 -06001143{
1144 if (waitqueue_active(&ctx->wait))
1145 wake_up(&ctx->wait);
1146 if (waitqueue_active(&ctx->sqo_wait))
1147 wake_up(&ctx->sqo_wait);
Jens Axboeb41e9852020-02-17 09:52:41 -07001148 if (io_should_trigger_evfd(ctx))
Jens Axboe9b402842019-04-11 11:45:41 -06001149 eventfd_signal(ctx->cq_ev_fd, 1);
Jens Axboe8c838782019-03-12 15:48:16 -06001150}
1151
Jens Axboec4a2ed72019-11-21 21:01:26 -07001152/* Returns true if there are no backlogged entries after the flush */
1153static bool io_cqring_overflow_flush(struct io_ring_ctx *ctx, bool force)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001154{
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001155 struct io_rings *rings = ctx->rings;
1156 struct io_uring_cqe *cqe;
1157 struct io_kiocb *req;
1158 unsigned long flags;
1159 LIST_HEAD(list);
1160
1161 if (!force) {
1162 if (list_empty_careful(&ctx->cq_overflow_list))
Jens Axboec4a2ed72019-11-21 21:01:26 -07001163 return true;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001164 if ((ctx->cached_cq_tail - READ_ONCE(rings->cq.head) ==
1165 rings->cq_ring_entries))
Jens Axboec4a2ed72019-11-21 21:01:26 -07001166 return false;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001167 }
1168
1169 spin_lock_irqsave(&ctx->completion_lock, flags);
1170
1171 /* if force is set, the ring is going away. always drop after that */
1172 if (force)
Jens Axboe69b3e542020-01-08 11:01:46 -07001173 ctx->cq_overflow_flushed = 1;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001174
Jens Axboec4a2ed72019-11-21 21:01:26 -07001175 cqe = NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001176 while (!list_empty(&ctx->cq_overflow_list)) {
1177 cqe = io_get_cqring(ctx);
1178 if (!cqe && !force)
1179 break;
1180
1181 req = list_first_entry(&ctx->cq_overflow_list, struct io_kiocb,
1182 list);
1183 list_move(&req->list, &list);
Jens Axboe2ca10252020-02-13 17:17:35 -07001184 req->flags &= ~REQ_F_OVERFLOW;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001185 if (cqe) {
1186 WRITE_ONCE(cqe->user_data, req->user_data);
1187 WRITE_ONCE(cqe->res, req->result);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001188 WRITE_ONCE(cqe->flags, req->cflags);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001189 } else {
1190 WRITE_ONCE(ctx->rings->cq_overflow,
1191 atomic_inc_return(&ctx->cached_cq_overflow));
1192 }
1193 }
1194
1195 io_commit_cqring(ctx);
Jens Axboead3eb2c2019-12-18 17:12:20 -07001196 if (cqe) {
1197 clear_bit(0, &ctx->sq_check_overflow);
1198 clear_bit(0, &ctx->cq_check_overflow);
1199 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001200 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1201 io_cqring_ev_posted(ctx);
1202
1203 while (!list_empty(&list)) {
1204 req = list_first_entry(&list, struct io_kiocb, list);
1205 list_del(&req->list);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001206 io_put_req(req);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001207 }
Jens Axboec4a2ed72019-11-21 21:01:26 -07001208
1209 return cqe != NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001210}
1211
Jens Axboebcda7ba2020-02-23 16:42:51 -07001212static void __io_cqring_fill_event(struct io_kiocb *req, long res, long cflags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001213{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001214 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001215 struct io_uring_cqe *cqe;
1216
Jens Axboe78e19bb2019-11-06 15:21:34 -07001217 trace_io_uring_complete(ctx, req->user_data, res);
Jens Axboe51c3ff62019-11-03 06:52:50 -07001218
Jens Axboe2b188cc2019-01-07 10:46:33 -07001219 /*
1220 * If we can't get a cq entry, userspace overflowed the
1221 * submission (by quite a lot). Increment the overflow count in
1222 * the ring.
1223 */
1224 cqe = io_get_cqring(ctx);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001225 if (likely(cqe)) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001226 WRITE_ONCE(cqe->user_data, req->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001227 WRITE_ONCE(cqe->res, res);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001228 WRITE_ONCE(cqe->flags, cflags);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001229 } else if (ctx->cq_overflow_flushed) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07001230 WRITE_ONCE(ctx->rings->cq_overflow,
1231 atomic_inc_return(&ctx->cached_cq_overflow));
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001232 } else {
Jens Axboead3eb2c2019-12-18 17:12:20 -07001233 if (list_empty(&ctx->cq_overflow_list)) {
1234 set_bit(0, &ctx->sq_check_overflow);
1235 set_bit(0, &ctx->cq_check_overflow);
1236 }
Jens Axboe2ca10252020-02-13 17:17:35 -07001237 req->flags |= REQ_F_OVERFLOW;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001238 refcount_inc(&req->refs);
1239 req->result = res;
Jens Axboebcda7ba2020-02-23 16:42:51 -07001240 req->cflags = cflags;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001241 list_add_tail(&req->list, &ctx->cq_overflow_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001242 }
1243}
1244
Jens Axboebcda7ba2020-02-23 16:42:51 -07001245static void io_cqring_fill_event(struct io_kiocb *req, long res)
1246{
1247 __io_cqring_fill_event(req, res, 0);
1248}
1249
1250static void __io_cqring_add_event(struct io_kiocb *req, long res, long cflags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001251{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001252 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001253 unsigned long flags;
1254
1255 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001256 __io_cqring_fill_event(req, res, cflags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001257 io_commit_cqring(ctx);
1258 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1259
Jens Axboe8c838782019-03-12 15:48:16 -06001260 io_cqring_ev_posted(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001261}
1262
Jens Axboebcda7ba2020-02-23 16:42:51 -07001263static void io_cqring_add_event(struct io_kiocb *req, long res)
1264{
1265 __io_cqring_add_event(req, res, 0);
1266}
1267
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001268static inline bool io_is_fallback_req(struct io_kiocb *req)
1269{
1270 return req == (struct io_kiocb *)
1271 ((unsigned long) req->ctx->fallback_req & ~1UL);
1272}
1273
1274static struct io_kiocb *io_get_fallback_req(struct io_ring_ctx *ctx)
1275{
1276 struct io_kiocb *req;
1277
1278 req = ctx->fallback_req;
1279 if (!test_and_set_bit_lock(0, (unsigned long *) ctx->fallback_req))
1280 return req;
1281
1282 return NULL;
1283}
1284
Jens Axboe2579f912019-01-09 09:10:43 -07001285static struct io_kiocb *io_get_req(struct io_ring_ctx *ctx,
1286 struct io_submit_state *state)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001287{
Jens Axboefd6fab22019-03-14 16:30:06 -06001288 gfp_t gfp = GFP_KERNEL | __GFP_NOWARN;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001289 struct io_kiocb *req;
1290
Jens Axboe2579f912019-01-09 09:10:43 -07001291 if (!state) {
Jens Axboefd6fab22019-03-14 16:30:06 -06001292 req = kmem_cache_alloc(req_cachep, gfp);
Jens Axboe2579f912019-01-09 09:10:43 -07001293 if (unlikely(!req))
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001294 goto fallback;
Jens Axboe2579f912019-01-09 09:10:43 -07001295 } else if (!state->free_reqs) {
1296 size_t sz;
1297 int ret;
1298
1299 sz = min_t(size_t, state->ios_left, ARRAY_SIZE(state->reqs));
Jens Axboefd6fab22019-03-14 16:30:06 -06001300 ret = kmem_cache_alloc_bulk(req_cachep, gfp, sz, state->reqs);
1301
1302 /*
1303 * Bulk alloc is all-or-nothing. If we fail to get a batch,
1304 * retry single alloc to be on the safe side.
1305 */
1306 if (unlikely(ret <= 0)) {
1307 state->reqs[0] = kmem_cache_alloc(req_cachep, gfp);
1308 if (!state->reqs[0])
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001309 goto fallback;
Jens Axboefd6fab22019-03-14 16:30:06 -06001310 ret = 1;
1311 }
Jens Axboe2579f912019-01-09 09:10:43 -07001312 state->free_reqs = ret - 1;
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03001313 req = state->reqs[ret - 1];
Jens Axboe2579f912019-01-09 09:10:43 -07001314 } else {
Jens Axboe2579f912019-01-09 09:10:43 -07001315 state->free_reqs--;
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03001316 req = state->reqs[state->free_reqs];
Jens Axboe2b188cc2019-01-07 10:46:33 -07001317 }
1318
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001319got_it:
Jens Axboe1a6b74f2019-12-02 10:33:15 -07001320 req->io = NULL;
Jens Axboe60c112b2019-06-21 10:20:18 -06001321 req->file = NULL;
Jens Axboe2579f912019-01-09 09:10:43 -07001322 req->ctx = ctx;
1323 req->flags = 0;
Jens Axboee65ef562019-03-12 10:16:44 -06001324 /* one is dropped after submission, the other at completion */
1325 refcount_set(&req->refs, 2);
Jens Axboe9e645e112019-05-10 16:07:28 -06001326 req->result = 0;
Jens Axboe561fb042019-10-24 07:25:42 -06001327 INIT_IO_WORK(&req->work, io_wq_submit_work);
Jens Axboe2579f912019-01-09 09:10:43 -07001328 return req;
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001329fallback:
1330 req = io_get_fallback_req(ctx);
1331 if (req)
1332 goto got_it;
Pavel Begunkov6805b322019-10-08 02:18:42 +03001333 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001334 return NULL;
1335}
1336
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001337static inline void io_put_file(struct io_kiocb *req, struct file *file,
1338 bool fixed)
1339{
1340 if (fixed)
1341 percpu_ref_put(&req->ctx->file_data->refs);
1342 else
1343 fput(file);
1344}
1345
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03001346static void __io_req_do_free(struct io_kiocb *req)
Jens Axboedef596e2019-01-09 08:59:42 -07001347{
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03001348 if (likely(!io_is_fallback_req(req)))
1349 kmem_cache_free(req_cachep, req);
1350 else
1351 clear_bit_unlock(0, (unsigned long *) req->ctx->fallback_req);
1352}
1353
Jens Axboec6ca97b302019-12-28 12:11:08 -07001354static void __io_req_aux_free(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001355{
Pavel Begunkov929a3af2020-02-19 00:19:09 +03001356 if (req->flags & REQ_F_NEED_CLEANUP)
1357 io_cleanup_req(req);
1358
YueHaibing96fd84d2020-01-07 22:22:44 +08001359 kfree(req->io);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001360 if (req->file)
1361 io_put_file(req, req->file, (req->flags & REQ_F_FIXED_FILE));
Jens Axboecccf0ee2020-01-27 16:34:48 -07001362
1363 io_req_work_drop_env(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001364}
1365
1366static void __io_free_req(struct io_kiocb *req)
1367{
Jens Axboec6ca97b302019-12-28 12:11:08 -07001368 __io_req_aux_free(req);
Jens Axboefcb323c2019-10-24 12:39:47 -06001369
Jens Axboefcb323c2019-10-24 12:39:47 -06001370 if (req->flags & REQ_F_INFLIGHT) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001371 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06001372 unsigned long flags;
1373
1374 spin_lock_irqsave(&ctx->inflight_lock, flags);
1375 list_del(&req->inflight_entry);
1376 if (waitqueue_active(&ctx->inflight_wait))
1377 wake_up(&ctx->inflight_wait);
1378 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
1379 }
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03001380
1381 percpu_ref_put(&req->ctx->refs);
1382 __io_req_do_free(req);
Jens Axboee65ef562019-03-12 10:16:44 -06001383}
1384
Jens Axboec6ca97b302019-12-28 12:11:08 -07001385struct req_batch {
1386 void *reqs[IO_IOPOLL_BATCH];
1387 int to_free;
1388 int need_iter;
1389};
1390
1391static void io_free_req_many(struct io_ring_ctx *ctx, struct req_batch *rb)
1392{
Jens Axboe10fef4b2020-01-09 07:52:28 -07001393 int fixed_refs = rb->to_free;
1394
Jens Axboec6ca97b302019-12-28 12:11:08 -07001395 if (!rb->to_free)
1396 return;
1397 if (rb->need_iter) {
1398 int i, inflight = 0;
1399 unsigned long flags;
1400
Jens Axboe10fef4b2020-01-09 07:52:28 -07001401 fixed_refs = 0;
Jens Axboec6ca97b302019-12-28 12:11:08 -07001402 for (i = 0; i < rb->to_free; i++) {
1403 struct io_kiocb *req = rb->reqs[i];
1404
Jens Axboe10fef4b2020-01-09 07:52:28 -07001405 if (req->flags & REQ_F_FIXED_FILE) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001406 req->file = NULL;
Jens Axboe10fef4b2020-01-09 07:52:28 -07001407 fixed_refs++;
1408 }
Jens Axboec6ca97b302019-12-28 12:11:08 -07001409 if (req->flags & REQ_F_INFLIGHT)
1410 inflight++;
Jens Axboec6ca97b302019-12-28 12:11:08 -07001411 __io_req_aux_free(req);
1412 }
1413 if (!inflight)
1414 goto do_free;
1415
1416 spin_lock_irqsave(&ctx->inflight_lock, flags);
1417 for (i = 0; i < rb->to_free; i++) {
1418 struct io_kiocb *req = rb->reqs[i];
1419
Jens Axboe10fef4b2020-01-09 07:52:28 -07001420 if (req->flags & REQ_F_INFLIGHT) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001421 list_del(&req->inflight_entry);
1422 if (!--inflight)
1423 break;
1424 }
1425 }
1426 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
1427
1428 if (waitqueue_active(&ctx->inflight_wait))
1429 wake_up(&ctx->inflight_wait);
1430 }
1431do_free:
1432 kmem_cache_free_bulk(req_cachep, rb->to_free, rb->reqs);
Jens Axboe10fef4b2020-01-09 07:52:28 -07001433 if (fixed_refs)
1434 percpu_ref_put_many(&ctx->file_data->refs, fixed_refs);
Jens Axboec6ca97b302019-12-28 12:11:08 -07001435 percpu_ref_put_many(&ctx->refs, rb->to_free);
Jens Axboec6ca97b302019-12-28 12:11:08 -07001436 rb->to_free = rb->need_iter = 0;
Jens Axboee65ef562019-03-12 10:16:44 -06001437}
1438
Jackie Liua197f662019-11-08 08:09:12 -07001439static bool io_link_cancel_timeout(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -06001440{
Jackie Liua197f662019-11-08 08:09:12 -07001441 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001442 int ret;
1443
Jens Axboe2d283902019-12-04 11:08:05 -07001444 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe2665abf2019-11-05 12:40:47 -07001445 if (ret != -1) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001446 io_cqring_fill_event(req, -ECANCELED);
Jens Axboe2665abf2019-11-05 12:40:47 -07001447 io_commit_cqring(ctx);
1448 req->flags &= ~REQ_F_LINK;
Jackie Liuec9c02a2019-11-08 23:50:36 +08001449 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07001450 return true;
1451 }
1452
1453 return false;
1454}
1455
Jens Axboeba816ad2019-09-28 11:36:45 -06001456static void io_req_link_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboe9e645e112019-05-10 16:07:28 -06001457{
Jens Axboe2665abf2019-11-05 12:40:47 -07001458 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001459 bool wake_ev = false;
Jens Axboe9e645e112019-05-10 16:07:28 -06001460
Jens Axboe4d7dd462019-11-20 13:03:52 -07001461 /* Already got next link */
1462 if (req->flags & REQ_F_LINK_NEXT)
1463 return;
1464
Jens Axboe9e645e112019-05-10 16:07:28 -06001465 /*
1466 * The list should never be empty when we are called here. But could
1467 * potentially happen if the chain is messed up, check to be on the
1468 * safe side.
1469 */
Pavel Begunkov44932332019-12-05 16:16:35 +03001470 while (!list_empty(&req->link_list)) {
1471 struct io_kiocb *nxt = list_first_entry(&req->link_list,
1472 struct io_kiocb, link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001473
Pavel Begunkov44932332019-12-05 16:16:35 +03001474 if (unlikely((req->flags & REQ_F_LINK_TIMEOUT) &&
1475 (nxt->flags & REQ_F_TIMEOUT))) {
1476 list_del_init(&nxt->link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001477 wake_ev |= io_link_cancel_timeout(nxt);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001478 req->flags &= ~REQ_F_LINK_TIMEOUT;
1479 continue;
1480 }
Jens Axboe9e645e112019-05-10 16:07:28 -06001481
Pavel Begunkov44932332019-12-05 16:16:35 +03001482 list_del_init(&req->link_list);
1483 if (!list_empty(&nxt->link_list))
1484 nxt->flags |= REQ_F_LINK;
Pavel Begunkovb18fdf72019-11-21 23:21:02 +03001485 *nxtptr = nxt;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001486 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06001487 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001488
Jens Axboe4d7dd462019-11-20 13:03:52 -07001489 req->flags |= REQ_F_LINK_NEXT;
Jens Axboe2665abf2019-11-05 12:40:47 -07001490 if (wake_ev)
1491 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001492}
1493
1494/*
1495 * Called if REQ_F_LINK is set, and we fail the head request
1496 */
1497static void io_fail_links(struct io_kiocb *req)
1498{
Jens Axboe2665abf2019-11-05 12:40:47 -07001499 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001500 unsigned long flags;
1501
1502 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboe9e645e112019-05-10 16:07:28 -06001503
1504 while (!list_empty(&req->link_list)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03001505 struct io_kiocb *link = list_first_entry(&req->link_list,
1506 struct io_kiocb, link_list);
Jens Axboe9e645e112019-05-10 16:07:28 -06001507
Pavel Begunkov44932332019-12-05 16:16:35 +03001508 list_del_init(&link->link_list);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02001509 trace_io_uring_fail_link(req, link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001510
1511 if ((req->flags & REQ_F_LINK_TIMEOUT) &&
Jens Axboed625c6e2019-12-17 19:53:05 -07001512 link->opcode == IORING_OP_LINK_TIMEOUT) {
Jackie Liua197f662019-11-08 08:09:12 -07001513 io_link_cancel_timeout(link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001514 } else {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001515 io_cqring_fill_event(link, -ECANCELED);
Jens Axboe978db572019-11-14 22:39:04 -07001516 __io_double_put_req(link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001517 }
Jens Axboe5d960722019-11-19 15:31:28 -07001518 req->flags &= ~REQ_F_LINK_TIMEOUT;
Jens Axboe9e645e112019-05-10 16:07:28 -06001519 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001520
1521 io_commit_cqring(ctx);
1522 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1523 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001524}
1525
Jens Axboe4d7dd462019-11-20 13:03:52 -07001526static void io_req_find_next(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboe9e645e112019-05-10 16:07:28 -06001527{
Jens Axboe4d7dd462019-11-20 13:03:52 -07001528 if (likely(!(req->flags & REQ_F_LINK)))
Jens Axboe2665abf2019-11-05 12:40:47 -07001529 return;
Jens Axboe2665abf2019-11-05 12:40:47 -07001530
Jens Axboe9e645e112019-05-10 16:07:28 -06001531 /*
1532 * If LINK is set, we have dependent requests in this chain. If we
1533 * didn't fail this request, queue the first one up, moving any other
1534 * dependencies to the next request. In case of failure, fail the rest
1535 * of the chain.
1536 */
Jens Axboe2665abf2019-11-05 12:40:47 -07001537 if (req->flags & REQ_F_FAIL_LINK) {
1538 io_fail_links(req);
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001539 } else if ((req->flags & (REQ_F_LINK_TIMEOUT | REQ_F_COMP_LOCKED)) ==
1540 REQ_F_LINK_TIMEOUT) {
Jens Axboe2665abf2019-11-05 12:40:47 -07001541 struct io_ring_ctx *ctx = req->ctx;
1542 unsigned long flags;
1543
1544 /*
1545 * If this is a timeout link, we could be racing with the
1546 * timeout timer. Grab the completion lock for this case to
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001547 * protect against that.
Jens Axboe2665abf2019-11-05 12:40:47 -07001548 */
1549 spin_lock_irqsave(&ctx->completion_lock, flags);
1550 io_req_link_next(req, nxt);
1551 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1552 } else {
1553 io_req_link_next(req, nxt);
Jens Axboe9e645e112019-05-10 16:07:28 -06001554 }
Jens Axboe4d7dd462019-11-20 13:03:52 -07001555}
Jens Axboe9e645e112019-05-10 16:07:28 -06001556
Jackie Liuc69f8db2019-11-09 11:00:08 +08001557static void io_free_req(struct io_kiocb *req)
1558{
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001559 struct io_kiocb *nxt = NULL;
1560
1561 io_req_find_next(req, &nxt);
Pavel Begunkov70cf9f32019-11-21 23:21:00 +03001562 __io_free_req(req);
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001563
1564 if (nxt)
1565 io_queue_async_work(nxt);
Jackie Liuc69f8db2019-11-09 11:00:08 +08001566}
1567
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001568static void io_link_work_cb(struct io_wq_work **workptr)
1569{
1570 struct io_wq_work *work = *workptr;
1571 struct io_kiocb *link = work->data;
1572
1573 io_queue_linked_timeout(link);
1574 io_wq_submit_work(workptr);
1575}
1576
1577static void io_wq_assign_next(struct io_wq_work **workptr, struct io_kiocb *nxt)
1578{
1579 struct io_kiocb *link;
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001580 const struct io_op_def *def = &io_op_defs[nxt->opcode];
1581
1582 if ((nxt->flags & REQ_F_ISREG) && def->hash_reg_file)
1583 io_wq_hash_work(&nxt->work, file_inode(nxt->file));
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001584
1585 *workptr = &nxt->work;
1586 link = io_prep_linked_timeout(nxt);
1587 if (link) {
1588 nxt->work.func = io_link_work_cb;
1589 nxt->work.data = link;
1590 }
1591}
1592
Jens Axboeba816ad2019-09-28 11:36:45 -06001593/*
1594 * Drop reference to request, return next in chain (if there is one) if this
1595 * was the last reference to this request.
1596 */
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001597__attribute__((nonnull))
Jackie Liuec9c02a2019-11-08 23:50:36 +08001598static void io_put_req_find_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboee65ef562019-03-12 10:16:44 -06001599{
Jens Axboe2a44f462020-02-25 13:25:41 -07001600 if (refcount_dec_and_test(&req->refs)) {
1601 io_req_find_next(req, nxtptr);
Jens Axboe4d7dd462019-11-20 13:03:52 -07001602 __io_free_req(req);
Jens Axboe2a44f462020-02-25 13:25:41 -07001603 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001604}
1605
Jens Axboe2b188cc2019-01-07 10:46:33 -07001606static void io_put_req(struct io_kiocb *req)
1607{
Jens Axboedef596e2019-01-09 08:59:42 -07001608 if (refcount_dec_and_test(&req->refs))
1609 io_free_req(req);
1610}
1611
Pavel Begunkove9fd9392020-03-04 16:14:12 +03001612static void io_steal_work(struct io_kiocb *req,
1613 struct io_wq_work **workptr)
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001614{
1615 /*
1616 * It's in an io-wq worker, so there always should be at least
1617 * one reference, which will be dropped in io_put_work() just
1618 * after the current handler returns.
1619 *
1620 * It also means, that if the counter dropped to 1, then there is
1621 * no asynchronous users left, so it's safe to steal the next work.
1622 */
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001623 if (refcount_read(&req->refs) == 1) {
1624 struct io_kiocb *nxt = NULL;
1625
1626 io_req_find_next(req, &nxt);
1627 if (nxt)
1628 io_wq_assign_next(workptr, nxt);
1629 }
1630}
1631
Jens Axboe978db572019-11-14 22:39:04 -07001632/*
1633 * Must only be used if we don't need to care about links, usually from
1634 * within the completion handling itself.
1635 */
1636static void __io_double_put_req(struct io_kiocb *req)
Jens Axboea3a0e432019-08-20 11:03:11 -06001637{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001638 /* drop both submit and complete references */
1639 if (refcount_sub_and_test(2, &req->refs))
1640 __io_free_req(req);
1641}
1642
Jens Axboe978db572019-11-14 22:39:04 -07001643static void io_double_put_req(struct io_kiocb *req)
1644{
1645 /* drop both submit and complete references */
1646 if (refcount_sub_and_test(2, &req->refs))
1647 io_free_req(req);
1648}
1649
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001650static unsigned io_cqring_events(struct io_ring_ctx *ctx, bool noflush)
Jens Axboea3a0e432019-08-20 11:03:11 -06001651{
Jens Axboe84f97dc2019-11-06 11:27:53 -07001652 struct io_rings *rings = ctx->rings;
1653
Jens Axboead3eb2c2019-12-18 17:12:20 -07001654 if (test_bit(0, &ctx->cq_check_overflow)) {
1655 /*
1656 * noflush == true is from the waitqueue handler, just ensure
1657 * we wake up the task, and the next invocation will flush the
1658 * entries. We cannot safely to it from here.
1659 */
1660 if (noflush && !list_empty(&ctx->cq_overflow_list))
1661 return -1U;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001662
Jens Axboead3eb2c2019-12-18 17:12:20 -07001663 io_cqring_overflow_flush(ctx, false);
1664 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001665
Jens Axboea3a0e432019-08-20 11:03:11 -06001666 /* See comment at the top of this file */
1667 smp_rmb();
Jens Axboead3eb2c2019-12-18 17:12:20 -07001668 return ctx->cached_cq_tail - READ_ONCE(rings->cq.head);
Jens Axboea3a0e432019-08-20 11:03:11 -06001669}
1670
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03001671static inline unsigned int io_sqring_entries(struct io_ring_ctx *ctx)
1672{
1673 struct io_rings *rings = ctx->rings;
1674
1675 /* make sure SQ entry isn't read before tail */
1676 return smp_load_acquire(&rings->sq.tail) - ctx->cached_sq_head;
1677}
1678
Jens Axboe8237e042019-12-28 10:48:22 -07001679static inline bool io_req_multi_free(struct req_batch *rb, struct io_kiocb *req)
Jens Axboee94f1412019-12-19 12:06:02 -07001680{
Jens Axboec6ca97b302019-12-28 12:11:08 -07001681 if ((req->flags & REQ_F_LINK) || io_is_fallback_req(req))
1682 return false;
Jens Axboee94f1412019-12-19 12:06:02 -07001683
Jens Axboec6ca97b302019-12-28 12:11:08 -07001684 if (!(req->flags & REQ_F_FIXED_FILE) || req->io)
1685 rb->need_iter++;
1686
1687 rb->reqs[rb->to_free++] = req;
1688 if (unlikely(rb->to_free == ARRAY_SIZE(rb->reqs)))
1689 io_free_req_many(req->ctx, rb);
1690 return true;
Jens Axboee94f1412019-12-19 12:06:02 -07001691}
1692
Jens Axboebcda7ba2020-02-23 16:42:51 -07001693static int io_put_kbuf(struct io_kiocb *req)
1694{
Jens Axboe4d954c22020-02-27 07:31:19 -07001695 struct io_buffer *kbuf;
Jens Axboebcda7ba2020-02-23 16:42:51 -07001696 int cflags;
1697
Jens Axboe4d954c22020-02-27 07:31:19 -07001698 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
Jens Axboebcda7ba2020-02-23 16:42:51 -07001699 cflags = kbuf->bid << IORING_CQE_BUFFER_SHIFT;
1700 cflags |= IORING_CQE_F_BUFFER;
1701 req->rw.addr = 0;
1702 kfree(kbuf);
1703 return cflags;
1704}
1705
Jens Axboedef596e2019-01-09 08:59:42 -07001706/*
1707 * Find and free completed poll iocbs
1708 */
1709static void io_iopoll_complete(struct io_ring_ctx *ctx, unsigned int *nr_events,
1710 struct list_head *done)
1711{
Jens Axboe8237e042019-12-28 10:48:22 -07001712 struct req_batch rb;
Jens Axboedef596e2019-01-09 08:59:42 -07001713 struct io_kiocb *req;
Jens Axboedef596e2019-01-09 08:59:42 -07001714
Jens Axboec6ca97b302019-12-28 12:11:08 -07001715 rb.to_free = rb.need_iter = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001716 while (!list_empty(done)) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07001717 int cflags = 0;
1718
Jens Axboedef596e2019-01-09 08:59:42 -07001719 req = list_first_entry(done, struct io_kiocb, list);
1720 list_del(&req->list);
1721
Jens Axboebcda7ba2020-02-23 16:42:51 -07001722 if (req->flags & REQ_F_BUFFER_SELECTED)
1723 cflags = io_put_kbuf(req);
1724
1725 __io_cqring_fill_event(req, req->result, cflags);
Jens Axboedef596e2019-01-09 08:59:42 -07001726 (*nr_events)++;
1727
Jens Axboe8237e042019-12-28 10:48:22 -07001728 if (refcount_dec_and_test(&req->refs) &&
1729 !io_req_multi_free(&rb, req))
1730 io_free_req(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001731 }
Jens Axboedef596e2019-01-09 08:59:42 -07001732
Jens Axboe09bb8392019-03-13 12:39:28 -06001733 io_commit_cqring(ctx);
Xiaoguang Wang32b22442020-03-11 09:26:09 +08001734 if (ctx->flags & IORING_SETUP_SQPOLL)
1735 io_cqring_ev_posted(ctx);
Jens Axboe8237e042019-12-28 10:48:22 -07001736 io_free_req_many(ctx, &rb);
Jens Axboedef596e2019-01-09 08:59:42 -07001737}
1738
1739static int io_do_iopoll(struct io_ring_ctx *ctx, unsigned int *nr_events,
1740 long min)
1741{
1742 struct io_kiocb *req, *tmp;
1743 LIST_HEAD(done);
1744 bool spin;
1745 int ret;
1746
1747 /*
1748 * Only spin for completions if we don't have multiple devices hanging
1749 * off our complete list, and we're under the requested amount.
1750 */
1751 spin = !ctx->poll_multi_file && *nr_events < min;
1752
1753 ret = 0;
1754 list_for_each_entry_safe(req, tmp, &ctx->poll_list, list) {
Jens Axboe9adbd452019-12-20 08:45:55 -07001755 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboedef596e2019-01-09 08:59:42 -07001756
1757 /*
1758 * Move completed entries to our local list. If we find a
1759 * request that requires polling, break out and complete
1760 * the done list first, if we have entries there.
1761 */
1762 if (req->flags & REQ_F_IOPOLL_COMPLETED) {
1763 list_move_tail(&req->list, &done);
1764 continue;
1765 }
1766 if (!list_empty(&done))
1767 break;
1768
1769 ret = kiocb->ki_filp->f_op->iopoll(kiocb, spin);
1770 if (ret < 0)
1771 break;
1772
1773 if (ret && spin)
1774 spin = false;
1775 ret = 0;
1776 }
1777
1778 if (!list_empty(&done))
1779 io_iopoll_complete(ctx, nr_events, &done);
1780
1781 return ret;
1782}
1783
1784/*
Brian Gianforcarod195a662019-12-13 03:09:50 -08001785 * Poll for a minimum of 'min' events. Note that if min == 0 we consider that a
Jens Axboedef596e2019-01-09 08:59:42 -07001786 * non-spinning poll check - we'll still enter the driver poll loop, but only
1787 * as a non-spinning completion check.
1788 */
1789static int io_iopoll_getevents(struct io_ring_ctx *ctx, unsigned int *nr_events,
1790 long min)
1791{
Jens Axboe08f54392019-08-21 22:19:11 -06001792 while (!list_empty(&ctx->poll_list) && !need_resched()) {
Jens Axboedef596e2019-01-09 08:59:42 -07001793 int ret;
1794
1795 ret = io_do_iopoll(ctx, nr_events, min);
1796 if (ret < 0)
1797 return ret;
1798 if (!min || *nr_events >= min)
1799 return 0;
1800 }
1801
1802 return 1;
1803}
1804
1805/*
1806 * We can't just wait for polled events to come to us, we have to actively
1807 * find and complete them.
1808 */
1809static void io_iopoll_reap_events(struct io_ring_ctx *ctx)
1810{
1811 if (!(ctx->flags & IORING_SETUP_IOPOLL))
1812 return;
1813
1814 mutex_lock(&ctx->uring_lock);
1815 while (!list_empty(&ctx->poll_list)) {
1816 unsigned int nr_events = 0;
1817
1818 io_iopoll_getevents(ctx, &nr_events, 1);
Jens Axboe08f54392019-08-21 22:19:11 -06001819
1820 /*
1821 * Ensure we allow local-to-the-cpu processing to take place,
1822 * in this case we need to ensure that we reap all events.
1823 */
1824 cond_resched();
Jens Axboedef596e2019-01-09 08:59:42 -07001825 }
1826 mutex_unlock(&ctx->uring_lock);
1827}
1828
Xiaoguang Wangc7849be2020-02-22 14:46:05 +08001829static int io_iopoll_check(struct io_ring_ctx *ctx, unsigned *nr_events,
1830 long min)
Jens Axboedef596e2019-01-09 08:59:42 -07001831{
Jens Axboe2b2ed972019-10-25 10:06:15 -06001832 int iters = 0, ret = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001833
Xiaoguang Wangc7849be2020-02-22 14:46:05 +08001834 /*
1835 * We disallow the app entering submit/complete with polling, but we
1836 * still need to lock the ring to prevent racing with polled issue
1837 * that got punted to a workqueue.
1838 */
1839 mutex_lock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07001840 do {
1841 int tmin = 0;
1842
Jens Axboe500f9fb2019-08-19 12:15:59 -06001843 /*
Jens Axboea3a0e432019-08-20 11:03:11 -06001844 * Don't enter poll loop if we already have events pending.
1845 * If we do, we can potentially be spinning for commands that
1846 * already triggered a CQE (eg in error).
1847 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001848 if (io_cqring_events(ctx, false))
Jens Axboea3a0e432019-08-20 11:03:11 -06001849 break;
1850
1851 /*
Jens Axboe500f9fb2019-08-19 12:15:59 -06001852 * If a submit got punted to a workqueue, we can have the
1853 * application entering polling for a command before it gets
1854 * issued. That app will hold the uring_lock for the duration
1855 * of the poll right here, so we need to take a breather every
1856 * now and then to ensure that the issue has a chance to add
1857 * the poll to the issued list. Otherwise we can spin here
1858 * forever, while the workqueue is stuck trying to acquire the
1859 * very same mutex.
1860 */
1861 if (!(++iters & 7)) {
1862 mutex_unlock(&ctx->uring_lock);
1863 mutex_lock(&ctx->uring_lock);
1864 }
1865
Jens Axboedef596e2019-01-09 08:59:42 -07001866 if (*nr_events < min)
1867 tmin = min - *nr_events;
1868
1869 ret = io_iopoll_getevents(ctx, nr_events, tmin);
1870 if (ret <= 0)
1871 break;
1872 ret = 0;
1873 } while (min && !*nr_events && !need_resched());
1874
Jens Axboe500f9fb2019-08-19 12:15:59 -06001875 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07001876 return ret;
1877}
1878
Jens Axboe491381ce2019-10-17 09:20:46 -06001879static void kiocb_end_write(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001880{
Jens Axboe491381ce2019-10-17 09:20:46 -06001881 /*
1882 * Tell lockdep we inherited freeze protection from submission
1883 * thread.
1884 */
1885 if (req->flags & REQ_F_ISREG) {
1886 struct inode *inode = file_inode(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001887
Jens Axboe491381ce2019-10-17 09:20:46 -06001888 __sb_writers_acquired(inode->i_sb, SB_FREEZE_WRITE);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001889 }
Jens Axboe491381ce2019-10-17 09:20:46 -06001890 file_end_write(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001891}
1892
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001893static inline void req_set_fail_links(struct io_kiocb *req)
1894{
1895 if ((req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) == REQ_F_LINK)
1896 req->flags |= REQ_F_FAIL_LINK;
1897}
1898
Jens Axboeba816ad2019-09-28 11:36:45 -06001899static void io_complete_rw_common(struct kiocb *kiocb, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001900{
Jens Axboe9adbd452019-12-20 08:45:55 -07001901 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001902 int cflags = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001903
Jens Axboe491381ce2019-10-17 09:20:46 -06001904 if (kiocb->ki_flags & IOCB_WRITE)
1905 kiocb_end_write(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001906
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001907 if (res != req->result)
1908 req_set_fail_links(req);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001909 if (req->flags & REQ_F_BUFFER_SELECTED)
1910 cflags = io_put_kbuf(req);
1911 __io_cqring_add_event(req, res, cflags);
Jens Axboeba816ad2019-09-28 11:36:45 -06001912}
1913
1914static void io_complete_rw(struct kiocb *kiocb, long res, long res2)
1915{
Jens Axboe9adbd452019-12-20 08:45:55 -07001916 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboeba816ad2019-09-28 11:36:45 -06001917
1918 io_complete_rw_common(kiocb, res);
Jens Axboee65ef562019-03-12 10:16:44 -06001919 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001920}
1921
Jens Axboedef596e2019-01-09 08:59:42 -07001922static void io_complete_rw_iopoll(struct kiocb *kiocb, long res, long res2)
1923{
Jens Axboe9adbd452019-12-20 08:45:55 -07001924 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboedef596e2019-01-09 08:59:42 -07001925
Jens Axboe491381ce2019-10-17 09:20:46 -06001926 if (kiocb->ki_flags & IOCB_WRITE)
1927 kiocb_end_write(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001928
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001929 if (res != req->result)
1930 req_set_fail_links(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06001931 req->result = res;
Jens Axboedef596e2019-01-09 08:59:42 -07001932 if (res != -EAGAIN)
1933 req->flags |= REQ_F_IOPOLL_COMPLETED;
1934}
1935
1936/*
1937 * After the iocb has been issued, it's safe to be found on the poll list.
1938 * Adding the kiocb to the list AFTER submission ensures that we don't
1939 * find it from a io_iopoll_getevents() thread before the issuer is done
1940 * accessing the kiocb cookie.
1941 */
1942static void io_iopoll_req_issued(struct io_kiocb *req)
1943{
1944 struct io_ring_ctx *ctx = req->ctx;
1945
1946 /*
1947 * Track whether we have multiple files in our lists. This will impact
1948 * how we do polling eventually, not spinning if we're on potentially
1949 * different devices.
1950 */
1951 if (list_empty(&ctx->poll_list)) {
1952 ctx->poll_multi_file = false;
1953 } else if (!ctx->poll_multi_file) {
1954 struct io_kiocb *list_req;
1955
1956 list_req = list_first_entry(&ctx->poll_list, struct io_kiocb,
1957 list);
Jens Axboe9adbd452019-12-20 08:45:55 -07001958 if (list_req->file != req->file)
Jens Axboedef596e2019-01-09 08:59:42 -07001959 ctx->poll_multi_file = true;
1960 }
1961
1962 /*
1963 * For fast devices, IO may have already completed. If it has, add
1964 * it to the front so we find it first.
1965 */
1966 if (req->flags & REQ_F_IOPOLL_COMPLETED)
1967 list_add(&req->list, &ctx->poll_list);
1968 else
1969 list_add_tail(&req->list, &ctx->poll_list);
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08001970
1971 if ((ctx->flags & IORING_SETUP_SQPOLL) &&
1972 wq_has_sleeper(&ctx->sqo_wait))
1973 wake_up(&ctx->sqo_wait);
Jens Axboedef596e2019-01-09 08:59:42 -07001974}
1975
Jens Axboe3d6770f2019-04-13 11:50:54 -06001976static void io_file_put(struct io_submit_state *state)
Jens Axboe9a56a232019-01-09 09:06:50 -07001977{
Jens Axboe3d6770f2019-04-13 11:50:54 -06001978 if (state->file) {
Jens Axboe9a56a232019-01-09 09:06:50 -07001979 int diff = state->has_refs - state->used_refs;
1980
1981 if (diff)
1982 fput_many(state->file, diff);
1983 state->file = NULL;
1984 }
1985}
1986
1987/*
1988 * Get as many references to a file as we have IOs left in this submission,
1989 * assuming most submissions are for one file, or at least that each file
1990 * has more than one submission.
1991 */
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001992static struct file *__io_file_get(struct io_submit_state *state, int fd)
Jens Axboe9a56a232019-01-09 09:06:50 -07001993{
1994 if (!state)
1995 return fget(fd);
1996
1997 if (state->file) {
1998 if (state->fd == fd) {
1999 state->used_refs++;
2000 state->ios_left--;
2001 return state->file;
2002 }
Jens Axboe3d6770f2019-04-13 11:50:54 -06002003 io_file_put(state);
Jens Axboe9a56a232019-01-09 09:06:50 -07002004 }
2005 state->file = fget_many(fd, state->ios_left);
2006 if (!state->file)
2007 return NULL;
2008
2009 state->fd = fd;
2010 state->has_refs = state->ios_left;
2011 state->used_refs = 1;
2012 state->ios_left--;
2013 return state->file;
2014}
2015
Jens Axboe2b188cc2019-01-07 10:46:33 -07002016/*
2017 * If we tracked the file through the SCM inflight mechanism, we could support
2018 * any file. For now, just ensure that anything potentially problematic is done
2019 * inline.
2020 */
2021static bool io_file_supports_async(struct file *file)
2022{
2023 umode_t mode = file_inode(file)->i_mode;
2024
Jens Axboe10d59342019-12-09 20:16:22 -07002025 if (S_ISBLK(mode) || S_ISCHR(mode) || S_ISSOCK(mode))
Jens Axboe2b188cc2019-01-07 10:46:33 -07002026 return true;
2027 if (S_ISREG(mode) && file->f_op != &io_uring_fops)
2028 return true;
2029
2030 return false;
2031}
2032
Jens Axboe3529d8c2019-12-19 18:24:38 -07002033static int io_prep_rw(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2034 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002035{
Jens Axboedef596e2019-01-09 08:59:42 -07002036 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9adbd452019-12-20 08:45:55 -07002037 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe09bb8392019-03-13 12:39:28 -06002038 unsigned ioprio;
2039 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002040
Jens Axboe491381ce2019-10-17 09:20:46 -06002041 if (S_ISREG(file_inode(req->file)->i_mode))
2042 req->flags |= REQ_F_ISREG;
2043
Jens Axboe2b188cc2019-01-07 10:46:33 -07002044 kiocb->ki_pos = READ_ONCE(sqe->off);
Jens Axboeba042912019-12-25 16:33:42 -07002045 if (kiocb->ki_pos == -1 && !(req->file->f_mode & FMODE_STREAM)) {
2046 req->flags |= REQ_F_CUR_POS;
2047 kiocb->ki_pos = req->file->f_pos;
2048 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002049 kiocb->ki_hint = ki_hint_validate(file_write_hint(kiocb->ki_filp));
Pavel Begunkov3e577dc2020-02-01 03:58:42 +03002050 kiocb->ki_flags = iocb_flags(kiocb->ki_filp);
2051 ret = kiocb_set_rw_flags(kiocb, READ_ONCE(sqe->rw_flags));
2052 if (unlikely(ret))
2053 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002054
2055 ioprio = READ_ONCE(sqe->ioprio);
2056 if (ioprio) {
2057 ret = ioprio_check_cap(ioprio);
2058 if (ret)
Jens Axboe09bb8392019-03-13 12:39:28 -06002059 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002060
2061 kiocb->ki_ioprio = ioprio;
2062 } else
2063 kiocb->ki_ioprio = get_current_ioprio();
2064
Stefan Bühler8449eed2019-04-27 20:34:19 +02002065 /* don't allow async punt if RWF_NOWAIT was requested */
Jens Axboe491381ce2019-10-17 09:20:46 -06002066 if ((kiocb->ki_flags & IOCB_NOWAIT) ||
2067 (req->file->f_flags & O_NONBLOCK))
Stefan Bühler8449eed2019-04-27 20:34:19 +02002068 req->flags |= REQ_F_NOWAIT;
2069
2070 if (force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002071 kiocb->ki_flags |= IOCB_NOWAIT;
Stefan Bühler8449eed2019-04-27 20:34:19 +02002072
Jens Axboedef596e2019-01-09 08:59:42 -07002073 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07002074 if (!(kiocb->ki_flags & IOCB_DIRECT) ||
2075 !kiocb->ki_filp->f_op->iopoll)
Jens Axboe09bb8392019-03-13 12:39:28 -06002076 return -EOPNOTSUPP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002077
Jens Axboedef596e2019-01-09 08:59:42 -07002078 kiocb->ki_flags |= IOCB_HIPRI;
2079 kiocb->ki_complete = io_complete_rw_iopoll;
Jens Axboe6873e0b2019-10-30 13:53:09 -06002080 req->result = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07002081 } else {
Jens Axboe09bb8392019-03-13 12:39:28 -06002082 if (kiocb->ki_flags & IOCB_HIPRI)
2083 return -EINVAL;
Jens Axboedef596e2019-01-09 08:59:42 -07002084 kiocb->ki_complete = io_complete_rw;
2085 }
Jens Axboe9adbd452019-12-20 08:45:55 -07002086
Jens Axboe3529d8c2019-12-19 18:24:38 -07002087 req->rw.addr = READ_ONCE(sqe->addr);
2088 req->rw.len = READ_ONCE(sqe->len);
Jens Axboebcda7ba2020-02-23 16:42:51 -07002089 /* we own ->private, reuse it for the buffer index / buffer ID */
Jens Axboe9adbd452019-12-20 08:45:55 -07002090 req->rw.kiocb.private = (void *) (unsigned long)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002091 READ_ONCE(sqe->buf_index);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002092 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002093}
2094
2095static inline void io_rw_done(struct kiocb *kiocb, ssize_t ret)
2096{
2097 switch (ret) {
2098 case -EIOCBQUEUED:
2099 break;
2100 case -ERESTARTSYS:
2101 case -ERESTARTNOINTR:
2102 case -ERESTARTNOHAND:
2103 case -ERESTART_RESTARTBLOCK:
2104 /*
2105 * We can't just restart the syscall, since previously
2106 * submitted sqes may already be in progress. Just fail this
2107 * IO with EINTR.
2108 */
2109 ret = -EINTR;
2110 /* fall through */
2111 default:
2112 kiocb->ki_complete(kiocb, ret, 0);
2113 }
2114}
2115
Pavel Begunkov014db002020-03-03 21:33:12 +03002116static void kiocb_done(struct kiocb *kiocb, ssize_t ret)
Jens Axboeba816ad2019-09-28 11:36:45 -06002117{
Jens Axboeba042912019-12-25 16:33:42 -07002118 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
2119
2120 if (req->flags & REQ_F_CUR_POS)
2121 req->file->f_pos = kiocb->ki_pos;
Pavel Begunkovbcaec082020-02-24 11:30:18 +03002122 if (ret >= 0 && kiocb->ki_complete == io_complete_rw)
Pavel Begunkov014db002020-03-03 21:33:12 +03002123 io_complete_rw(kiocb, ret, 0);
Jens Axboeba816ad2019-09-28 11:36:45 -06002124 else
2125 io_rw_done(kiocb, ret);
2126}
2127
Jens Axboe9adbd452019-12-20 08:45:55 -07002128static ssize_t io_import_fixed(struct io_kiocb *req, int rw,
Pavel Begunkov7d009162019-11-25 23:14:40 +03002129 struct iov_iter *iter)
Jens Axboeedafcce2019-01-09 09:16:05 -07002130{
Jens Axboe9adbd452019-12-20 08:45:55 -07002131 struct io_ring_ctx *ctx = req->ctx;
2132 size_t len = req->rw.len;
Jens Axboeedafcce2019-01-09 09:16:05 -07002133 struct io_mapped_ubuf *imu;
2134 unsigned index, buf_index;
2135 size_t offset;
2136 u64 buf_addr;
2137
2138 /* attempt to use fixed buffers without having provided iovecs */
2139 if (unlikely(!ctx->user_bufs))
2140 return -EFAULT;
2141
Jens Axboe9adbd452019-12-20 08:45:55 -07002142 buf_index = (unsigned long) req->rw.kiocb.private;
Jens Axboeedafcce2019-01-09 09:16:05 -07002143 if (unlikely(buf_index >= ctx->nr_user_bufs))
2144 return -EFAULT;
2145
2146 index = array_index_nospec(buf_index, ctx->nr_user_bufs);
2147 imu = &ctx->user_bufs[index];
Jens Axboe9adbd452019-12-20 08:45:55 -07002148 buf_addr = req->rw.addr;
Jens Axboeedafcce2019-01-09 09:16:05 -07002149
2150 /* overflow */
2151 if (buf_addr + len < buf_addr)
2152 return -EFAULT;
2153 /* not inside the mapped region */
2154 if (buf_addr < imu->ubuf || buf_addr + len > imu->ubuf + imu->len)
2155 return -EFAULT;
2156
2157 /*
2158 * May not be a start of buffer, set size appropriately
2159 * and advance us to the beginning.
2160 */
2161 offset = buf_addr - imu->ubuf;
2162 iov_iter_bvec(iter, rw, imu->bvec, imu->nr_bvecs, offset + len);
Jens Axboebd11b3a2019-07-20 08:37:31 -06002163
2164 if (offset) {
2165 /*
2166 * Don't use iov_iter_advance() here, as it's really slow for
2167 * using the latter parts of a big fixed buffer - it iterates
2168 * over each segment manually. We can cheat a bit here, because
2169 * we know that:
2170 *
2171 * 1) it's a BVEC iter, we set it up
2172 * 2) all bvecs are PAGE_SIZE in size, except potentially the
2173 * first and last bvec
2174 *
2175 * So just find our index, and adjust the iterator afterwards.
2176 * If the offset is within the first bvec (or the whole first
2177 * bvec, just use iov_iter_advance(). This makes it easier
2178 * since we can just skip the first segment, which may not
2179 * be PAGE_SIZE aligned.
2180 */
2181 const struct bio_vec *bvec = imu->bvec;
2182
2183 if (offset <= bvec->bv_len) {
2184 iov_iter_advance(iter, offset);
2185 } else {
2186 unsigned long seg_skip;
2187
2188 /* skip first vec */
2189 offset -= bvec->bv_len;
2190 seg_skip = 1 + (offset >> PAGE_SHIFT);
2191
2192 iter->bvec = bvec + seg_skip;
2193 iter->nr_segs -= seg_skip;
Aleix Roca Nonell99c79f62019-08-15 14:03:22 +02002194 iter->count -= bvec->bv_len + offset;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002195 iter->iov_offset = offset & ~PAGE_MASK;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002196 }
2197 }
2198
Jens Axboe5e559562019-11-13 16:12:46 -07002199 return len;
Jens Axboeedafcce2019-01-09 09:16:05 -07002200}
2201
Jens Axboebcda7ba2020-02-23 16:42:51 -07002202static void io_ring_submit_unlock(struct io_ring_ctx *ctx, bool needs_lock)
2203{
2204 if (needs_lock)
2205 mutex_unlock(&ctx->uring_lock);
2206}
2207
2208static void io_ring_submit_lock(struct io_ring_ctx *ctx, bool needs_lock)
2209{
2210 /*
2211 * "Normal" inline submissions always hold the uring_lock, since we
2212 * grab it from the system call. Same is true for the SQPOLL offload.
2213 * The only exception is when we've detached the request and issue it
2214 * from an async worker thread, grab the lock for that case.
2215 */
2216 if (needs_lock)
2217 mutex_lock(&ctx->uring_lock);
2218}
2219
2220static struct io_buffer *io_buffer_select(struct io_kiocb *req, size_t *len,
2221 int bgid, struct io_buffer *kbuf,
2222 bool needs_lock)
2223{
2224 struct io_buffer *head;
2225
2226 if (req->flags & REQ_F_BUFFER_SELECTED)
2227 return kbuf;
2228
2229 io_ring_submit_lock(req->ctx, needs_lock);
2230
2231 lockdep_assert_held(&req->ctx->uring_lock);
2232
2233 head = idr_find(&req->ctx->io_buffer_idr, bgid);
2234 if (head) {
2235 if (!list_empty(&head->list)) {
2236 kbuf = list_last_entry(&head->list, struct io_buffer,
2237 list);
2238 list_del(&kbuf->list);
2239 } else {
2240 kbuf = head;
2241 idr_remove(&req->ctx->io_buffer_idr, bgid);
2242 }
2243 if (*len > kbuf->len)
2244 *len = kbuf->len;
2245 } else {
2246 kbuf = ERR_PTR(-ENOBUFS);
2247 }
2248
2249 io_ring_submit_unlock(req->ctx, needs_lock);
2250
2251 return kbuf;
2252}
2253
Jens Axboe4d954c22020-02-27 07:31:19 -07002254static void __user *io_rw_buffer_select(struct io_kiocb *req, size_t *len,
2255 bool needs_lock)
2256{
2257 struct io_buffer *kbuf;
2258 int bgid;
2259
2260 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
2261 bgid = (int) (unsigned long) req->rw.kiocb.private;
2262 kbuf = io_buffer_select(req, len, bgid, kbuf, needs_lock);
2263 if (IS_ERR(kbuf))
2264 return kbuf;
2265 req->rw.addr = (u64) (unsigned long) kbuf;
2266 req->flags |= REQ_F_BUFFER_SELECTED;
2267 return u64_to_user_ptr(kbuf->addr);
2268}
2269
2270#ifdef CONFIG_COMPAT
2271static ssize_t io_compat_import(struct io_kiocb *req, struct iovec *iov,
2272 bool needs_lock)
2273{
2274 struct compat_iovec __user *uiov;
2275 compat_ssize_t clen;
2276 void __user *buf;
2277 ssize_t len;
2278
2279 uiov = u64_to_user_ptr(req->rw.addr);
2280 if (!access_ok(uiov, sizeof(*uiov)))
2281 return -EFAULT;
2282 if (__get_user(clen, &uiov->iov_len))
2283 return -EFAULT;
2284 if (clen < 0)
2285 return -EINVAL;
2286
2287 len = clen;
2288 buf = io_rw_buffer_select(req, &len, needs_lock);
2289 if (IS_ERR(buf))
2290 return PTR_ERR(buf);
2291 iov[0].iov_base = buf;
2292 iov[0].iov_len = (compat_size_t) len;
2293 return 0;
2294}
2295#endif
2296
2297static ssize_t __io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
2298 bool needs_lock)
2299{
2300 struct iovec __user *uiov = u64_to_user_ptr(req->rw.addr);
2301 void __user *buf;
2302 ssize_t len;
2303
2304 if (copy_from_user(iov, uiov, sizeof(*uiov)))
2305 return -EFAULT;
2306
2307 len = iov[0].iov_len;
2308 if (len < 0)
2309 return -EINVAL;
2310 buf = io_rw_buffer_select(req, &len, needs_lock);
2311 if (IS_ERR(buf))
2312 return PTR_ERR(buf);
2313 iov[0].iov_base = buf;
2314 iov[0].iov_len = len;
2315 return 0;
2316}
2317
2318static ssize_t io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
2319 bool needs_lock)
2320{
2321 if (req->flags & REQ_F_BUFFER_SELECTED)
2322 return 0;
2323 if (!req->rw.len)
2324 return 0;
2325 else if (req->rw.len > 1)
2326 return -EINVAL;
2327
2328#ifdef CONFIG_COMPAT
2329 if (req->ctx->compat)
2330 return io_compat_import(req, iov, needs_lock);
2331#endif
2332
2333 return __io_iov_buffer_select(req, iov, needs_lock);
2334}
2335
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002336static ssize_t io_import_iovec(int rw, struct io_kiocb *req,
Jens Axboebcda7ba2020-02-23 16:42:51 -07002337 struct iovec **iovec, struct iov_iter *iter,
2338 bool needs_lock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002339{
Jens Axboe9adbd452019-12-20 08:45:55 -07002340 void __user *buf = u64_to_user_ptr(req->rw.addr);
2341 size_t sqe_len = req->rw.len;
Jens Axboe4d954c22020-02-27 07:31:19 -07002342 ssize_t ret;
Jens Axboeedafcce2019-01-09 09:16:05 -07002343 u8 opcode;
2344
Jens Axboed625c6e2019-12-17 19:53:05 -07002345 opcode = req->opcode;
Pavel Begunkov7d009162019-11-25 23:14:40 +03002346 if (opcode == IORING_OP_READ_FIXED || opcode == IORING_OP_WRITE_FIXED) {
Jens Axboeedafcce2019-01-09 09:16:05 -07002347 *iovec = NULL;
Jens Axboe9adbd452019-12-20 08:45:55 -07002348 return io_import_fixed(req, rw, iter);
Jens Axboeedafcce2019-01-09 09:16:05 -07002349 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002350
Jens Axboebcda7ba2020-02-23 16:42:51 -07002351 /* buffer index only valid with fixed read/write, or buffer select */
2352 if (req->rw.kiocb.private && !(req->flags & REQ_F_BUFFER_SELECT))
Jens Axboe9adbd452019-12-20 08:45:55 -07002353 return -EINVAL;
2354
Jens Axboe3a6820f2019-12-22 15:19:35 -07002355 if (opcode == IORING_OP_READ || opcode == IORING_OP_WRITE) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07002356 if (req->flags & REQ_F_BUFFER_SELECT) {
Jens Axboe4d954c22020-02-27 07:31:19 -07002357 buf = io_rw_buffer_select(req, &sqe_len, needs_lock);
2358 if (IS_ERR(buf)) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07002359 *iovec = NULL;
Jens Axboe4d954c22020-02-27 07:31:19 -07002360 return PTR_ERR(buf);
Jens Axboebcda7ba2020-02-23 16:42:51 -07002361 }
Jens Axboe3f9d6442020-03-11 12:27:04 -06002362 req->rw.len = sqe_len;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002363 }
2364
Jens Axboe3a6820f2019-12-22 15:19:35 -07002365 ret = import_single_range(rw, buf, sqe_len, *iovec, iter);
2366 *iovec = NULL;
Jens Axboe3a901592020-02-25 17:48:55 -07002367 return ret < 0 ? ret : sqe_len;
Jens Axboe3a6820f2019-12-22 15:19:35 -07002368 }
2369
Jens Axboef67676d2019-12-02 11:03:47 -07002370 if (req->io) {
2371 struct io_async_rw *iorw = &req->io->rw;
2372
2373 *iovec = iorw->iov;
2374 iov_iter_init(iter, rw, *iovec, iorw->nr_segs, iorw->size);
2375 if (iorw->iov == iorw->fast_iov)
2376 *iovec = NULL;
2377 return iorw->size;
2378 }
2379
Jens Axboe4d954c22020-02-27 07:31:19 -07002380 if (req->flags & REQ_F_BUFFER_SELECT) {
2381 ret = io_iov_buffer_select(req, *iovec, needs_lock);
Jens Axboe3f9d6442020-03-11 12:27:04 -06002382 if (!ret) {
2383 ret = (*iovec)->iov_len;
2384 iov_iter_init(iter, rw, *iovec, 1, ret);
2385 }
Jens Axboe4d954c22020-02-27 07:31:19 -07002386 *iovec = NULL;
2387 return ret;
2388 }
2389
Jens Axboe2b188cc2019-01-07 10:46:33 -07002390#ifdef CONFIG_COMPAT
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002391 if (req->ctx->compat)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002392 return compat_import_iovec(rw, buf, sqe_len, UIO_FASTIOV,
2393 iovec, iter);
2394#endif
2395
2396 return import_iovec(rw, buf, sqe_len, UIO_FASTIOV, iovec, iter);
2397}
2398
Jens Axboe32960612019-09-23 11:05:34 -06002399/*
2400 * For files that don't have ->read_iter() and ->write_iter(), handle them
2401 * by looping over ->read() or ->write() manually.
2402 */
2403static ssize_t loop_rw_iter(int rw, struct file *file, struct kiocb *kiocb,
2404 struct iov_iter *iter)
2405{
2406 ssize_t ret = 0;
2407
2408 /*
2409 * Don't support polled IO through this interface, and we can't
2410 * support non-blocking either. For the latter, this just causes
2411 * the kiocb to be handled from an async context.
2412 */
2413 if (kiocb->ki_flags & IOCB_HIPRI)
2414 return -EOPNOTSUPP;
2415 if (kiocb->ki_flags & IOCB_NOWAIT)
2416 return -EAGAIN;
2417
2418 while (iov_iter_count(iter)) {
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002419 struct iovec iovec;
Jens Axboe32960612019-09-23 11:05:34 -06002420 ssize_t nr;
2421
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002422 if (!iov_iter_is_bvec(iter)) {
2423 iovec = iov_iter_iovec(iter);
2424 } else {
2425 /* fixed buffers import bvec */
2426 iovec.iov_base = kmap(iter->bvec->bv_page)
2427 + iter->iov_offset;
2428 iovec.iov_len = min(iter->count,
2429 iter->bvec->bv_len - iter->iov_offset);
2430 }
2431
Jens Axboe32960612019-09-23 11:05:34 -06002432 if (rw == READ) {
2433 nr = file->f_op->read(file, iovec.iov_base,
2434 iovec.iov_len, &kiocb->ki_pos);
2435 } else {
2436 nr = file->f_op->write(file, iovec.iov_base,
2437 iovec.iov_len, &kiocb->ki_pos);
2438 }
2439
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002440 if (iov_iter_is_bvec(iter))
2441 kunmap(iter->bvec->bv_page);
2442
Jens Axboe32960612019-09-23 11:05:34 -06002443 if (nr < 0) {
2444 if (!ret)
2445 ret = nr;
2446 break;
2447 }
2448 ret += nr;
2449 if (nr != iovec.iov_len)
2450 break;
2451 iov_iter_advance(iter, nr);
2452 }
2453
2454 return ret;
2455}
2456
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002457static void io_req_map_rw(struct io_kiocb *req, ssize_t io_size,
Jens Axboef67676d2019-12-02 11:03:47 -07002458 struct iovec *iovec, struct iovec *fast_iov,
2459 struct iov_iter *iter)
2460{
2461 req->io->rw.nr_segs = iter->nr_segs;
2462 req->io->rw.size = io_size;
2463 req->io->rw.iov = iovec;
2464 if (!req->io->rw.iov) {
2465 req->io->rw.iov = req->io->rw.fast_iov;
2466 memcpy(req->io->rw.iov, fast_iov,
2467 sizeof(struct iovec) * iter->nr_segs);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002468 } else {
2469 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboef67676d2019-12-02 11:03:47 -07002470 }
2471}
2472
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002473static int io_alloc_async_ctx(struct io_kiocb *req)
Jens Axboef67676d2019-12-02 11:03:47 -07002474{
Jens Axboed3656342019-12-18 09:50:26 -07002475 if (!io_op_defs[req->opcode].async_ctx)
2476 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002477 req->io = kmalloc(sizeof(*req->io), GFP_KERNEL);
Jens Axboe06b76d42019-12-19 14:44:26 -07002478 return req->io == NULL;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002479}
2480
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002481static int io_setup_async_rw(struct io_kiocb *req, ssize_t io_size,
2482 struct iovec *iovec, struct iovec *fast_iov,
2483 struct iov_iter *iter)
2484{
Jens Axboe980ad262020-01-24 23:08:54 -07002485 if (!io_op_defs[req->opcode].async_ctx)
Jens Axboe74566df2020-01-13 19:23:24 -07002486 return 0;
Jens Axboe5d204bc2020-01-31 12:06:52 -07002487 if (!req->io) {
2488 if (io_alloc_async_ctx(req))
2489 return -ENOMEM;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002490
Jens Axboe5d204bc2020-01-31 12:06:52 -07002491 io_req_map_rw(req, io_size, iovec, fast_iov, iter);
2492 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002493 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002494}
2495
Jens Axboe3529d8c2019-12-19 18:24:38 -07002496static int io_read_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2497 bool force_nonblock)
Jens Axboef67676d2019-12-02 11:03:47 -07002498{
Jens Axboe3529d8c2019-12-19 18:24:38 -07002499 struct io_async_ctx *io;
2500 struct iov_iter iter;
Jens Axboef67676d2019-12-02 11:03:47 -07002501 ssize_t ret;
2502
Jens Axboe3529d8c2019-12-19 18:24:38 -07002503 ret = io_prep_rw(req, sqe, force_nonblock);
2504 if (ret)
2505 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07002506
Jens Axboe3529d8c2019-12-19 18:24:38 -07002507 if (unlikely(!(req->file->f_mode & FMODE_READ)))
2508 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07002509
Pavel Begunkov5f798be2020-02-08 13:28:02 +03002510 /* either don't need iovec imported or already have it */
2511 if (!req->io || req->flags & REQ_F_NEED_CLEANUP)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002512 return 0;
2513
2514 io = req->io;
2515 io->rw.iov = io->rw.fast_iov;
2516 req->io = NULL;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002517 ret = io_import_iovec(READ, req, &io->rw.iov, &iter, !force_nonblock);
Jens Axboe3529d8c2019-12-19 18:24:38 -07002518 req->io = io;
2519 if (ret < 0)
2520 return ret;
2521
2522 io_req_map_rw(req, ret, io->rw.iov, io->rw.fast_iov, &iter);
2523 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002524}
2525
Pavel Begunkov014db002020-03-03 21:33:12 +03002526static int io_read(struct io_kiocb *req, bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002527{
2528 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07002529 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002530 struct iov_iter iter;
Jens Axboe31b51512019-01-18 22:56:34 -07002531 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07002532 ssize_t io_size, ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002533
Jens Axboebcda7ba2020-02-23 16:42:51 -07002534 ret = io_import_iovec(READ, req, &iovec, &iter, !force_nonblock);
Jens Axboe06b76d42019-12-19 14:44:26 -07002535 if (ret < 0)
2536 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002537
Jens Axboefd6c2e42019-12-18 12:19:41 -07002538 /* Ensure we clear previously set non-block flag */
2539 if (!force_nonblock)
Jens Axboe29de5f62020-02-20 09:56:08 -07002540 kiocb->ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07002541
Bijan Mottahedeh797f3f52020-01-15 18:37:45 -08002542 req->result = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002543 io_size = ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06002544 if (req->flags & REQ_F_LINK)
Jens Axboef67676d2019-12-02 11:03:47 -07002545 req->result = io_size;
2546
2547 /*
2548 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
2549 * we know to async punt it even if it was opened O_NONBLOCK
2550 */
Jens Axboe29de5f62020-02-20 09:56:08 -07002551 if (force_nonblock && !io_file_supports_async(req->file))
Jens Axboef67676d2019-12-02 11:03:47 -07002552 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06002553
Jens Axboe31b51512019-01-18 22:56:34 -07002554 iov_count = iov_iter_count(&iter);
Jens Axboe9adbd452019-12-20 08:45:55 -07002555 ret = rw_verify_area(READ, req->file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002556 if (!ret) {
2557 ssize_t ret2;
2558
Jens Axboe9adbd452019-12-20 08:45:55 -07002559 if (req->file->f_op->read_iter)
2560 ret2 = call_read_iter(req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002561 else
Jens Axboe9adbd452019-12-20 08:45:55 -07002562 ret2 = loop_rw_iter(READ, req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002563
Jens Axboe9d93a3f2019-05-15 13:53:07 -06002564 /* Catch -EAGAIN return for forced non-blocking submission */
Jens Axboef67676d2019-12-02 11:03:47 -07002565 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkov014db002020-03-03 21:33:12 +03002566 kiocb_done(kiocb, ret2);
Jens Axboef67676d2019-12-02 11:03:47 -07002567 } else {
2568copy_iov:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002569 ret = io_setup_async_rw(req, io_size, iovec,
Jens Axboef67676d2019-12-02 11:03:47 -07002570 inline_vecs, &iter);
2571 if (ret)
2572 goto out_free;
Jens Axboe29de5f62020-02-20 09:56:08 -07002573 /* any defer here is final, must blocking retry */
2574 if (!(req->flags & REQ_F_NOWAIT))
2575 req->flags |= REQ_F_MUST_PUNT;
Jens Axboef67676d2019-12-02 11:03:47 -07002576 return -EAGAIN;
2577 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002578 }
Jens Axboef67676d2019-12-02 11:03:47 -07002579out_free:
Pavel Begunkov1e950812020-02-06 19:51:16 +03002580 kfree(iovec);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002581 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002582 return ret;
2583}
2584
Jens Axboe3529d8c2019-12-19 18:24:38 -07002585static int io_write_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2586 bool force_nonblock)
Jens Axboef67676d2019-12-02 11:03:47 -07002587{
Jens Axboe3529d8c2019-12-19 18:24:38 -07002588 struct io_async_ctx *io;
2589 struct iov_iter iter;
Jens Axboef67676d2019-12-02 11:03:47 -07002590 ssize_t ret;
2591
Jens Axboe3529d8c2019-12-19 18:24:38 -07002592 ret = io_prep_rw(req, sqe, force_nonblock);
2593 if (ret)
2594 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07002595
Jens Axboe3529d8c2019-12-19 18:24:38 -07002596 if (unlikely(!(req->file->f_mode & FMODE_WRITE)))
2597 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07002598
Jens Axboe4ed734b2020-03-20 11:23:41 -06002599 req->fsize = rlimit(RLIMIT_FSIZE);
2600
Pavel Begunkov5f798be2020-02-08 13:28:02 +03002601 /* either don't need iovec imported or already have it */
2602 if (!req->io || req->flags & REQ_F_NEED_CLEANUP)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002603 return 0;
2604
2605 io = req->io;
2606 io->rw.iov = io->rw.fast_iov;
2607 req->io = NULL;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002608 ret = io_import_iovec(WRITE, req, &io->rw.iov, &iter, !force_nonblock);
Jens Axboe3529d8c2019-12-19 18:24:38 -07002609 req->io = io;
2610 if (ret < 0)
2611 return ret;
2612
2613 io_req_map_rw(req, ret, io->rw.iov, io->rw.fast_iov, &iter);
2614 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002615}
2616
Pavel Begunkov014db002020-03-03 21:33:12 +03002617static int io_write(struct io_kiocb *req, bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002618{
2619 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07002620 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002621 struct iov_iter iter;
Jens Axboe31b51512019-01-18 22:56:34 -07002622 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07002623 ssize_t ret, io_size;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002624
Jens Axboebcda7ba2020-02-23 16:42:51 -07002625 ret = io_import_iovec(WRITE, req, &iovec, &iter, !force_nonblock);
Jens Axboe06b76d42019-12-19 14:44:26 -07002626 if (ret < 0)
2627 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002628
Jens Axboefd6c2e42019-12-18 12:19:41 -07002629 /* Ensure we clear previously set non-block flag */
2630 if (!force_nonblock)
Jens Axboe9adbd452019-12-20 08:45:55 -07002631 req->rw.kiocb.ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07002632
Bijan Mottahedeh797f3f52020-01-15 18:37:45 -08002633 req->result = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002634 io_size = ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06002635 if (req->flags & REQ_F_LINK)
Jens Axboef67676d2019-12-02 11:03:47 -07002636 req->result = io_size;
2637
2638 /*
2639 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
2640 * we know to async punt it even if it was opened O_NONBLOCK
2641 */
Jens Axboe29de5f62020-02-20 09:56:08 -07002642 if (force_nonblock && !io_file_supports_async(req->file))
Jens Axboef67676d2019-12-02 11:03:47 -07002643 goto copy_iov;
Jens Axboef67676d2019-12-02 11:03:47 -07002644
Jens Axboe10d59342019-12-09 20:16:22 -07002645 /* file path doesn't support NOWAIT for non-direct_IO */
2646 if (force_nonblock && !(kiocb->ki_flags & IOCB_DIRECT) &&
2647 (req->flags & REQ_F_ISREG))
Jens Axboef67676d2019-12-02 11:03:47 -07002648 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06002649
Jens Axboe31b51512019-01-18 22:56:34 -07002650 iov_count = iov_iter_count(&iter);
Jens Axboe9adbd452019-12-20 08:45:55 -07002651 ret = rw_verify_area(WRITE, req->file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002652 if (!ret) {
Roman Penyaev9bf79332019-03-25 20:09:24 +01002653 ssize_t ret2;
2654
Jens Axboe2b188cc2019-01-07 10:46:33 -07002655 /*
2656 * Open-code file_start_write here to grab freeze protection,
2657 * which will be released by another thread in
2658 * io_complete_rw(). Fool lockdep by telling it the lock got
2659 * released so that it doesn't complain about the held lock when
2660 * we return to userspace.
2661 */
Jens Axboe491381ce2019-10-17 09:20:46 -06002662 if (req->flags & REQ_F_ISREG) {
Jens Axboe9adbd452019-12-20 08:45:55 -07002663 __sb_start_write(file_inode(req->file)->i_sb,
Jens Axboe2b188cc2019-01-07 10:46:33 -07002664 SB_FREEZE_WRITE, true);
Jens Axboe9adbd452019-12-20 08:45:55 -07002665 __sb_writers_release(file_inode(req->file)->i_sb,
Jens Axboe2b188cc2019-01-07 10:46:33 -07002666 SB_FREEZE_WRITE);
2667 }
2668 kiocb->ki_flags |= IOCB_WRITE;
Roman Penyaev9bf79332019-03-25 20:09:24 +01002669
Jens Axboe4ed734b2020-03-20 11:23:41 -06002670 if (!force_nonblock)
2671 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = req->fsize;
2672
Jens Axboe9adbd452019-12-20 08:45:55 -07002673 if (req->file->f_op->write_iter)
2674 ret2 = call_write_iter(req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002675 else
Jens Axboe9adbd452019-12-20 08:45:55 -07002676 ret2 = loop_rw_iter(WRITE, req->file, kiocb, &iter);
Jens Axboe4ed734b2020-03-20 11:23:41 -06002677
2678 if (!force_nonblock)
2679 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = RLIM_INFINITY;
2680
Jens Axboefaac9962020-02-07 15:45:22 -07002681 /*
2682 * Raw bdev writes will -EOPNOTSUPP for IOCB_NOWAIT. Just
2683 * retry them without IOCB_NOWAIT.
2684 */
2685 if (ret2 == -EOPNOTSUPP && (kiocb->ki_flags & IOCB_NOWAIT))
2686 ret2 = -EAGAIN;
Jens Axboef67676d2019-12-02 11:03:47 -07002687 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkov014db002020-03-03 21:33:12 +03002688 kiocb_done(kiocb, ret2);
Jens Axboef67676d2019-12-02 11:03:47 -07002689 } else {
2690copy_iov:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002691 ret = io_setup_async_rw(req, io_size, iovec,
Jens Axboef67676d2019-12-02 11:03:47 -07002692 inline_vecs, &iter);
2693 if (ret)
2694 goto out_free;
Jens Axboe29de5f62020-02-20 09:56:08 -07002695 /* any defer here is final, must blocking retry */
2696 req->flags |= REQ_F_MUST_PUNT;
Jens Axboef67676d2019-12-02 11:03:47 -07002697 return -EAGAIN;
2698 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002699 }
Jens Axboe31b51512019-01-18 22:56:34 -07002700out_free:
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002701 req->flags &= ~REQ_F_NEED_CLEANUP;
Pavel Begunkov1e950812020-02-06 19:51:16 +03002702 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002703 return ret;
2704}
2705
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002706static int io_splice_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2707{
2708 struct io_splice* sp = &req->splice;
2709 unsigned int valid_flags = SPLICE_F_FD_IN_FIXED | SPLICE_F_ALL;
2710 int ret;
2711
2712 if (req->flags & REQ_F_NEED_CLEANUP)
2713 return 0;
2714
2715 sp->file_in = NULL;
2716 sp->off_in = READ_ONCE(sqe->splice_off_in);
2717 sp->off_out = READ_ONCE(sqe->off);
2718 sp->len = READ_ONCE(sqe->len);
2719 sp->flags = READ_ONCE(sqe->splice_flags);
2720
2721 if (unlikely(sp->flags & ~valid_flags))
2722 return -EINVAL;
2723
2724 ret = io_file_get(NULL, req, READ_ONCE(sqe->splice_fd_in), &sp->file_in,
2725 (sp->flags & SPLICE_F_FD_IN_FIXED));
2726 if (ret)
2727 return ret;
2728 req->flags |= REQ_F_NEED_CLEANUP;
2729
2730 if (!S_ISREG(file_inode(sp->file_in)->i_mode))
2731 req->work.flags |= IO_WQ_WORK_UNBOUND;
2732
2733 return 0;
2734}
2735
2736static bool io_splice_punt(struct file *file)
2737{
2738 if (get_pipe_info(file))
2739 return false;
2740 if (!io_file_supports_async(file))
2741 return true;
2742 return !(file->f_mode & O_NONBLOCK);
2743}
2744
Pavel Begunkov014db002020-03-03 21:33:12 +03002745static int io_splice(struct io_kiocb *req, bool force_nonblock)
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002746{
2747 struct io_splice *sp = &req->splice;
2748 struct file *in = sp->file_in;
2749 struct file *out = sp->file_out;
2750 unsigned int flags = sp->flags & ~SPLICE_F_FD_IN_FIXED;
2751 loff_t *poff_in, *poff_out;
2752 long ret;
2753
2754 if (force_nonblock) {
2755 if (io_splice_punt(in) || io_splice_punt(out))
2756 return -EAGAIN;
2757 flags |= SPLICE_F_NONBLOCK;
2758 }
2759
2760 poff_in = (sp->off_in == -1) ? NULL : &sp->off_in;
2761 poff_out = (sp->off_out == -1) ? NULL : &sp->off_out;
2762 ret = do_splice(in, poff_in, out, poff_out, sp->len, flags);
2763 if (force_nonblock && ret == -EAGAIN)
2764 return -EAGAIN;
2765
2766 io_put_file(req, in, (sp->flags & SPLICE_F_FD_IN_FIXED));
2767 req->flags &= ~REQ_F_NEED_CLEANUP;
2768
2769 io_cqring_add_event(req, ret);
2770 if (ret != sp->len)
2771 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03002772 io_put_req(req);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002773 return 0;
2774}
2775
Jens Axboe2b188cc2019-01-07 10:46:33 -07002776/*
2777 * IORING_OP_NOP just posts a completion event, nothing else.
2778 */
Jens Axboe78e19bb2019-11-06 15:21:34 -07002779static int io_nop(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002780{
2781 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002782
Jens Axboedef596e2019-01-09 08:59:42 -07002783 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
2784 return -EINVAL;
2785
Jens Axboe78e19bb2019-11-06 15:21:34 -07002786 io_cqring_add_event(req, 0);
Jens Axboee65ef562019-03-12 10:16:44 -06002787 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002788 return 0;
2789}
2790
Jens Axboe3529d8c2019-12-19 18:24:38 -07002791static int io_prep_fsync(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002792{
Jens Axboe6b063142019-01-10 22:13:58 -07002793 struct io_ring_ctx *ctx = req->ctx;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002794
Jens Axboe09bb8392019-03-13 12:39:28 -06002795 if (!req->file)
2796 return -EBADF;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002797
Jens Axboe6b063142019-01-10 22:13:58 -07002798 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboedef596e2019-01-09 08:59:42 -07002799 return -EINVAL;
Jens Axboeedafcce2019-01-09 09:16:05 -07002800 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002801 return -EINVAL;
2802
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002803 req->sync.flags = READ_ONCE(sqe->fsync_flags);
2804 if (unlikely(req->sync.flags & ~IORING_FSYNC_DATASYNC))
2805 return -EINVAL;
2806
2807 req->sync.off = READ_ONCE(sqe->off);
2808 req->sync.len = READ_ONCE(sqe->len);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002809 return 0;
2810}
2811
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002812static bool io_req_cancelled(struct io_kiocb *req)
2813{
2814 if (req->work.flags & IO_WQ_WORK_CANCEL) {
2815 req_set_fail_links(req);
2816 io_cqring_add_event(req, -ECANCELED);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03002817 io_put_req(req);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002818 return true;
2819 }
2820
2821 return false;
2822}
2823
Pavel Begunkov014db002020-03-03 21:33:12 +03002824static void __io_fsync(struct io_kiocb *req)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002825{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002826 loff_t end = req->sync.off + req->sync.len;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002827 int ret;
2828
Jens Axboe9adbd452019-12-20 08:45:55 -07002829 ret = vfs_fsync_range(req->file, req->sync.off,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002830 end > 0 ? end : LLONG_MAX,
2831 req->sync.flags & IORING_FSYNC_DATASYNC);
2832 if (ret < 0)
2833 req_set_fail_links(req);
2834 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03002835 io_put_req(req);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002836}
2837
2838static void io_fsync_finish(struct io_wq_work **workptr)
2839{
2840 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002841
2842 if (io_req_cancelled(req))
2843 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03002844 __io_fsync(req);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03002845 io_steal_work(req, workptr);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002846}
2847
Pavel Begunkov014db002020-03-03 21:33:12 +03002848static int io_fsync(struct io_kiocb *req, bool force_nonblock)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002849{
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002850 /* fsync always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002851 if (force_nonblock) {
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002852 req->work.func = io_fsync_finish;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002853 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002854 }
Pavel Begunkov014db002020-03-03 21:33:12 +03002855 __io_fsync(req);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002856 return 0;
2857}
2858
Pavel Begunkov014db002020-03-03 21:33:12 +03002859static void __io_fallocate(struct io_kiocb *req)
Jens Axboed63d1b52019-12-10 10:38:56 -07002860{
Jens Axboed63d1b52019-12-10 10:38:56 -07002861 int ret;
2862
Jens Axboe4ed734b2020-03-20 11:23:41 -06002863 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = req->fsize;
Jens Axboed63d1b52019-12-10 10:38:56 -07002864 ret = vfs_fallocate(req->file, req->sync.mode, req->sync.off,
2865 req->sync.len);
Jens Axboe4ed734b2020-03-20 11:23:41 -06002866 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = RLIM_INFINITY;
Jens Axboed63d1b52019-12-10 10:38:56 -07002867 if (ret < 0)
2868 req_set_fail_links(req);
2869 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03002870 io_put_req(req);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002871}
2872
2873static void io_fallocate_finish(struct io_wq_work **workptr)
2874{
2875 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002876
Pavel Begunkov594506f2020-03-03 21:33:11 +03002877 if (io_req_cancelled(req))
2878 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03002879 __io_fallocate(req);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03002880 io_steal_work(req, workptr);
Jens Axboed63d1b52019-12-10 10:38:56 -07002881}
2882
2883static int io_fallocate_prep(struct io_kiocb *req,
2884 const struct io_uring_sqe *sqe)
2885{
2886 if (sqe->ioprio || sqe->buf_index || sqe->rw_flags)
2887 return -EINVAL;
2888
2889 req->sync.off = READ_ONCE(sqe->off);
2890 req->sync.len = READ_ONCE(sqe->addr);
2891 req->sync.mode = READ_ONCE(sqe->len);
Jens Axboe4ed734b2020-03-20 11:23:41 -06002892 req->fsize = rlimit(RLIMIT_FSIZE);
Jens Axboed63d1b52019-12-10 10:38:56 -07002893 return 0;
2894}
2895
Pavel Begunkov014db002020-03-03 21:33:12 +03002896static int io_fallocate(struct io_kiocb *req, bool force_nonblock)
Jens Axboed63d1b52019-12-10 10:38:56 -07002897{
Jens Axboed63d1b52019-12-10 10:38:56 -07002898 /* fallocate always requiring blocking context */
2899 if (force_nonblock) {
Jens Axboed63d1b52019-12-10 10:38:56 -07002900 req->work.func = io_fallocate_finish;
2901 return -EAGAIN;
2902 }
2903
Pavel Begunkov014db002020-03-03 21:33:12 +03002904 __io_fallocate(req);
Jens Axboed63d1b52019-12-10 10:38:56 -07002905 return 0;
2906}
2907
Jens Axboe15b71ab2019-12-11 11:20:36 -07002908static int io_openat_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2909{
Jens Axboef8748882020-01-08 17:47:02 -07002910 const char __user *fname;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002911 int ret;
2912
2913 if (sqe->ioprio || sqe->buf_index)
2914 return -EINVAL;
Jens Axboecf3040c2020-02-06 21:31:40 -07002915 if (sqe->flags & IOSQE_FIXED_FILE)
2916 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03002917 if (req->flags & REQ_F_NEED_CLEANUP)
2918 return 0;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002919
2920 req->open.dfd = READ_ONCE(sqe->fd);
Jens Axboec12cedf2020-01-08 17:41:21 -07002921 req->open.how.mode = READ_ONCE(sqe->len);
Jens Axboef8748882020-01-08 17:47:02 -07002922 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboec12cedf2020-01-08 17:41:21 -07002923 req->open.how.flags = READ_ONCE(sqe->open_flags);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002924
Jens Axboef8748882020-01-08 17:47:02 -07002925 req->open.filename = getname(fname);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002926 if (IS_ERR(req->open.filename)) {
2927 ret = PTR_ERR(req->open.filename);
2928 req->open.filename = NULL;
2929 return ret;
2930 }
2931
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03002932 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002933 return 0;
2934}
2935
Jens Axboecebdb982020-01-08 17:59:24 -07002936static int io_openat2_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2937{
2938 struct open_how __user *how;
2939 const char __user *fname;
2940 size_t len;
2941 int ret;
2942
2943 if (sqe->ioprio || sqe->buf_index)
2944 return -EINVAL;
Jens Axboecf3040c2020-02-06 21:31:40 -07002945 if (sqe->flags & IOSQE_FIXED_FILE)
2946 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03002947 if (req->flags & REQ_F_NEED_CLEANUP)
2948 return 0;
Jens Axboecebdb982020-01-08 17:59:24 -07002949
2950 req->open.dfd = READ_ONCE(sqe->fd);
2951 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
2952 how = u64_to_user_ptr(READ_ONCE(sqe->addr2));
2953 len = READ_ONCE(sqe->len);
2954
2955 if (len < OPEN_HOW_SIZE_VER0)
2956 return -EINVAL;
2957
2958 ret = copy_struct_from_user(&req->open.how, sizeof(req->open.how), how,
2959 len);
2960 if (ret)
2961 return ret;
2962
2963 if (!(req->open.how.flags & O_PATH) && force_o_largefile())
2964 req->open.how.flags |= O_LARGEFILE;
2965
2966 req->open.filename = getname(fname);
2967 if (IS_ERR(req->open.filename)) {
2968 ret = PTR_ERR(req->open.filename);
2969 req->open.filename = NULL;
2970 return ret;
2971 }
2972
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03002973 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboecebdb982020-01-08 17:59:24 -07002974 return 0;
2975}
2976
Pavel Begunkov014db002020-03-03 21:33:12 +03002977static int io_openat2(struct io_kiocb *req, bool force_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07002978{
2979 struct open_flags op;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002980 struct file *file;
2981 int ret;
2982
Jens Axboef86cd202020-01-29 13:46:44 -07002983 if (force_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07002984 return -EAGAIN;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002985
Jens Axboecebdb982020-01-08 17:59:24 -07002986 ret = build_open_flags(&req->open.how, &op);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002987 if (ret)
2988 goto err;
2989
Jens Axboecebdb982020-01-08 17:59:24 -07002990 ret = get_unused_fd_flags(req->open.how.flags);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002991 if (ret < 0)
2992 goto err;
2993
2994 file = do_filp_open(req->open.dfd, req->open.filename, &op);
2995 if (IS_ERR(file)) {
2996 put_unused_fd(ret);
2997 ret = PTR_ERR(file);
2998 } else {
2999 fsnotify_open(file);
3000 fd_install(ret, file);
3001 }
3002err:
3003 putname(req->open.filename);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003004 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003005 if (ret < 0)
3006 req_set_fail_links(req);
3007 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003008 io_put_req(req);
Jens Axboe15b71ab2019-12-11 11:20:36 -07003009 return 0;
3010}
3011
Pavel Begunkov014db002020-03-03 21:33:12 +03003012static int io_openat(struct io_kiocb *req, bool force_nonblock)
Jens Axboecebdb982020-01-08 17:59:24 -07003013{
3014 req->open.how = build_open_how(req->open.how.flags, req->open.how.mode);
Pavel Begunkov014db002020-03-03 21:33:12 +03003015 return io_openat2(req, force_nonblock);
Jens Axboecebdb982020-01-08 17:59:24 -07003016}
3017
Jens Axboe067524e2020-03-02 16:32:28 -07003018static int io_remove_buffers_prep(struct io_kiocb *req,
3019 const struct io_uring_sqe *sqe)
3020{
3021 struct io_provide_buf *p = &req->pbuf;
3022 u64 tmp;
3023
3024 if (sqe->ioprio || sqe->rw_flags || sqe->addr || sqe->len || sqe->off)
3025 return -EINVAL;
3026
3027 tmp = READ_ONCE(sqe->fd);
3028 if (!tmp || tmp > USHRT_MAX)
3029 return -EINVAL;
3030
3031 memset(p, 0, sizeof(*p));
3032 p->nbufs = tmp;
3033 p->bgid = READ_ONCE(sqe->buf_group);
3034 return 0;
3035}
3036
3037static int __io_remove_buffers(struct io_ring_ctx *ctx, struct io_buffer *buf,
3038 int bgid, unsigned nbufs)
3039{
3040 unsigned i = 0;
3041
3042 /* shouldn't happen */
3043 if (!nbufs)
3044 return 0;
3045
3046 /* the head kbuf is the list itself */
3047 while (!list_empty(&buf->list)) {
3048 struct io_buffer *nxt;
3049
3050 nxt = list_first_entry(&buf->list, struct io_buffer, list);
3051 list_del(&nxt->list);
3052 kfree(nxt);
3053 if (++i == nbufs)
3054 return i;
3055 }
3056 i++;
3057 kfree(buf);
3058 idr_remove(&ctx->io_buffer_idr, bgid);
3059
3060 return i;
3061}
3062
3063static int io_remove_buffers(struct io_kiocb *req, bool force_nonblock)
3064{
3065 struct io_provide_buf *p = &req->pbuf;
3066 struct io_ring_ctx *ctx = req->ctx;
3067 struct io_buffer *head;
3068 int ret = 0;
3069
3070 io_ring_submit_lock(ctx, !force_nonblock);
3071
3072 lockdep_assert_held(&ctx->uring_lock);
3073
3074 ret = -ENOENT;
3075 head = idr_find(&ctx->io_buffer_idr, p->bgid);
3076 if (head)
3077 ret = __io_remove_buffers(ctx, head, p->bgid, p->nbufs);
3078
3079 io_ring_submit_lock(ctx, !force_nonblock);
3080 if (ret < 0)
3081 req_set_fail_links(req);
3082 io_cqring_add_event(req, ret);
3083 io_put_req(req);
3084 return 0;
3085}
3086
Jens Axboeddf0322d2020-02-23 16:41:33 -07003087static int io_provide_buffers_prep(struct io_kiocb *req,
3088 const struct io_uring_sqe *sqe)
3089{
3090 struct io_provide_buf *p = &req->pbuf;
3091 u64 tmp;
3092
3093 if (sqe->ioprio || sqe->rw_flags)
3094 return -EINVAL;
3095
3096 tmp = READ_ONCE(sqe->fd);
3097 if (!tmp || tmp > USHRT_MAX)
3098 return -E2BIG;
3099 p->nbufs = tmp;
3100 p->addr = READ_ONCE(sqe->addr);
3101 p->len = READ_ONCE(sqe->len);
3102
3103 if (!access_ok(u64_to_user_ptr(p->addr), p->len))
3104 return -EFAULT;
3105
3106 p->bgid = READ_ONCE(sqe->buf_group);
3107 tmp = READ_ONCE(sqe->off);
3108 if (tmp > USHRT_MAX)
3109 return -E2BIG;
3110 p->bid = tmp;
3111 return 0;
3112}
3113
3114static int io_add_buffers(struct io_provide_buf *pbuf, struct io_buffer **head)
3115{
3116 struct io_buffer *buf;
3117 u64 addr = pbuf->addr;
3118 int i, bid = pbuf->bid;
3119
3120 for (i = 0; i < pbuf->nbufs; i++) {
3121 buf = kmalloc(sizeof(*buf), GFP_KERNEL);
3122 if (!buf)
3123 break;
3124
3125 buf->addr = addr;
3126 buf->len = pbuf->len;
3127 buf->bid = bid;
3128 addr += pbuf->len;
3129 bid++;
3130 if (!*head) {
3131 INIT_LIST_HEAD(&buf->list);
3132 *head = buf;
3133 } else {
3134 list_add_tail(&buf->list, &(*head)->list);
3135 }
3136 }
3137
3138 return i ? i : -ENOMEM;
3139}
3140
Jens Axboeddf0322d2020-02-23 16:41:33 -07003141static int io_provide_buffers(struct io_kiocb *req, bool force_nonblock)
3142{
3143 struct io_provide_buf *p = &req->pbuf;
3144 struct io_ring_ctx *ctx = req->ctx;
3145 struct io_buffer *head, *list;
3146 int ret = 0;
3147
3148 io_ring_submit_lock(ctx, !force_nonblock);
3149
3150 lockdep_assert_held(&ctx->uring_lock);
3151
3152 list = head = idr_find(&ctx->io_buffer_idr, p->bgid);
3153
3154 ret = io_add_buffers(p, &head);
3155 if (ret < 0)
3156 goto out;
3157
3158 if (!list) {
3159 ret = idr_alloc(&ctx->io_buffer_idr, head, p->bgid, p->bgid + 1,
3160 GFP_KERNEL);
3161 if (ret < 0) {
Jens Axboe067524e2020-03-02 16:32:28 -07003162 __io_remove_buffers(ctx, head, p->bgid, -1U);
Jens Axboeddf0322d2020-02-23 16:41:33 -07003163 goto out;
3164 }
3165 }
3166out:
3167 io_ring_submit_unlock(ctx, !force_nonblock);
3168 if (ret < 0)
3169 req_set_fail_links(req);
3170 io_cqring_add_event(req, ret);
3171 io_put_req(req);
3172 return 0;
3173}
3174
Jens Axboe3e4827b2020-01-08 15:18:09 -07003175static int io_epoll_ctl_prep(struct io_kiocb *req,
3176 const struct io_uring_sqe *sqe)
3177{
3178#if defined(CONFIG_EPOLL)
3179 if (sqe->ioprio || sqe->buf_index)
3180 return -EINVAL;
3181
3182 req->epoll.epfd = READ_ONCE(sqe->fd);
3183 req->epoll.op = READ_ONCE(sqe->len);
3184 req->epoll.fd = READ_ONCE(sqe->off);
3185
3186 if (ep_op_has_event(req->epoll.op)) {
3187 struct epoll_event __user *ev;
3188
3189 ev = u64_to_user_ptr(READ_ONCE(sqe->addr));
3190 if (copy_from_user(&req->epoll.event, ev, sizeof(*ev)))
3191 return -EFAULT;
3192 }
3193
3194 return 0;
3195#else
3196 return -EOPNOTSUPP;
3197#endif
3198}
3199
Pavel Begunkov014db002020-03-03 21:33:12 +03003200static int io_epoll_ctl(struct io_kiocb *req, bool force_nonblock)
Jens Axboe3e4827b2020-01-08 15:18:09 -07003201{
3202#if defined(CONFIG_EPOLL)
3203 struct io_epoll *ie = &req->epoll;
3204 int ret;
3205
3206 ret = do_epoll_ctl(ie->epfd, ie->op, ie->fd, &ie->event, force_nonblock);
3207 if (force_nonblock && ret == -EAGAIN)
3208 return -EAGAIN;
3209
3210 if (ret < 0)
3211 req_set_fail_links(req);
3212 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003213 io_put_req(req);
Jens Axboe3e4827b2020-01-08 15:18:09 -07003214 return 0;
3215#else
3216 return -EOPNOTSUPP;
3217#endif
3218}
3219
Jens Axboec1ca7572019-12-25 22:18:28 -07003220static int io_madvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3221{
3222#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
3223 if (sqe->ioprio || sqe->buf_index || sqe->off)
3224 return -EINVAL;
3225
3226 req->madvise.addr = READ_ONCE(sqe->addr);
3227 req->madvise.len = READ_ONCE(sqe->len);
3228 req->madvise.advice = READ_ONCE(sqe->fadvise_advice);
3229 return 0;
3230#else
3231 return -EOPNOTSUPP;
3232#endif
3233}
3234
Pavel Begunkov014db002020-03-03 21:33:12 +03003235static int io_madvise(struct io_kiocb *req, bool force_nonblock)
Jens Axboec1ca7572019-12-25 22:18:28 -07003236{
3237#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
3238 struct io_madvise *ma = &req->madvise;
3239 int ret;
3240
3241 if (force_nonblock)
3242 return -EAGAIN;
3243
3244 ret = do_madvise(ma->addr, ma->len, ma->advice);
3245 if (ret < 0)
3246 req_set_fail_links(req);
3247 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003248 io_put_req(req);
Jens Axboec1ca7572019-12-25 22:18:28 -07003249 return 0;
3250#else
3251 return -EOPNOTSUPP;
3252#endif
3253}
3254
Jens Axboe4840e412019-12-25 22:03:45 -07003255static int io_fadvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3256{
3257 if (sqe->ioprio || sqe->buf_index || sqe->addr)
3258 return -EINVAL;
3259
3260 req->fadvise.offset = READ_ONCE(sqe->off);
3261 req->fadvise.len = READ_ONCE(sqe->len);
3262 req->fadvise.advice = READ_ONCE(sqe->fadvise_advice);
3263 return 0;
3264}
3265
Pavel Begunkov014db002020-03-03 21:33:12 +03003266static int io_fadvise(struct io_kiocb *req, bool force_nonblock)
Jens Axboe4840e412019-12-25 22:03:45 -07003267{
3268 struct io_fadvise *fa = &req->fadvise;
3269 int ret;
3270
Jens Axboe3e694262020-02-01 09:22:49 -07003271 if (force_nonblock) {
3272 switch (fa->advice) {
3273 case POSIX_FADV_NORMAL:
3274 case POSIX_FADV_RANDOM:
3275 case POSIX_FADV_SEQUENTIAL:
3276 break;
3277 default:
3278 return -EAGAIN;
3279 }
3280 }
Jens Axboe4840e412019-12-25 22:03:45 -07003281
3282 ret = vfs_fadvise(req->file, fa->offset, fa->len, fa->advice);
3283 if (ret < 0)
3284 req_set_fail_links(req);
3285 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003286 io_put_req(req);
Jens Axboe4840e412019-12-25 22:03:45 -07003287 return 0;
3288}
3289
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003290static int io_statx_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3291{
Jens Axboef8748882020-01-08 17:47:02 -07003292 const char __user *fname;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003293 unsigned lookup_flags;
3294 int ret;
3295
3296 if (sqe->ioprio || sqe->buf_index)
3297 return -EINVAL;
Jens Axboecf3040c2020-02-06 21:31:40 -07003298 if (sqe->flags & IOSQE_FIXED_FILE)
3299 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03003300 if (req->flags & REQ_F_NEED_CLEANUP)
3301 return 0;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003302
3303 req->open.dfd = READ_ONCE(sqe->fd);
3304 req->open.mask = READ_ONCE(sqe->len);
Jens Axboef8748882020-01-08 17:47:02 -07003305 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003306 req->open.buffer = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboec12cedf2020-01-08 17:41:21 -07003307 req->open.how.flags = READ_ONCE(sqe->statx_flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003308
Jens Axboec12cedf2020-01-08 17:41:21 -07003309 if (vfs_stat_set_lookup_flags(&lookup_flags, req->open.how.flags))
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003310 return -EINVAL;
3311
Jens Axboef8748882020-01-08 17:47:02 -07003312 req->open.filename = getname_flags(fname, lookup_flags, NULL);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003313 if (IS_ERR(req->open.filename)) {
3314 ret = PTR_ERR(req->open.filename);
3315 req->open.filename = NULL;
3316 return ret;
3317 }
3318
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003319 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003320 return 0;
3321}
3322
Pavel Begunkov014db002020-03-03 21:33:12 +03003323static int io_statx(struct io_kiocb *req, bool force_nonblock)
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003324{
3325 struct io_open *ctx = &req->open;
3326 unsigned lookup_flags;
3327 struct path path;
3328 struct kstat stat;
3329 int ret;
3330
3331 if (force_nonblock)
3332 return -EAGAIN;
3333
Jens Axboec12cedf2020-01-08 17:41:21 -07003334 if (vfs_stat_set_lookup_flags(&lookup_flags, ctx->how.flags))
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003335 return -EINVAL;
3336
3337retry:
3338 /* filename_lookup() drops it, keep a reference */
3339 ctx->filename->refcnt++;
3340
3341 ret = filename_lookup(ctx->dfd, ctx->filename, lookup_flags, &path,
3342 NULL);
3343 if (ret)
3344 goto err;
3345
Jens Axboec12cedf2020-01-08 17:41:21 -07003346 ret = vfs_getattr(&path, &stat, ctx->mask, ctx->how.flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003347 path_put(&path);
3348 if (retry_estale(ret, lookup_flags)) {
3349 lookup_flags |= LOOKUP_REVAL;
3350 goto retry;
3351 }
3352 if (!ret)
3353 ret = cp_statx(&stat, ctx->buffer);
3354err:
3355 putname(ctx->filename);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003356 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003357 if (ret < 0)
3358 req_set_fail_links(req);
3359 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003360 io_put_req(req);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003361 return 0;
3362}
3363
Jens Axboeb5dba592019-12-11 14:02:38 -07003364static int io_close_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3365{
3366 /*
3367 * If we queue this for async, it must not be cancellable. That would
3368 * leave the 'file' in an undeterminate state.
3369 */
3370 req->work.flags |= IO_WQ_WORK_NO_CANCEL;
3371
3372 if (sqe->ioprio || sqe->off || sqe->addr || sqe->len ||
3373 sqe->rw_flags || sqe->buf_index)
3374 return -EINVAL;
3375 if (sqe->flags & IOSQE_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07003376 return -EBADF;
Jens Axboeb5dba592019-12-11 14:02:38 -07003377
3378 req->close.fd = READ_ONCE(sqe->fd);
3379 if (req->file->f_op == &io_uring_fops ||
Pavel Begunkovb14cca02020-01-17 04:45:59 +03003380 req->close.fd == req->ctx->ring_fd)
Jens Axboeb5dba592019-12-11 14:02:38 -07003381 return -EBADF;
3382
3383 return 0;
3384}
3385
Pavel Begunkova93b3332020-02-08 14:04:34 +03003386/* only called when __close_fd_get_file() is done */
Pavel Begunkov014db002020-03-03 21:33:12 +03003387static void __io_close_finish(struct io_kiocb *req)
Pavel Begunkova93b3332020-02-08 14:04:34 +03003388{
3389 int ret;
3390
3391 ret = filp_close(req->close.put_file, req->work.files);
3392 if (ret < 0)
3393 req_set_fail_links(req);
3394 io_cqring_add_event(req, ret);
3395 fput(req->close.put_file);
Pavel Begunkov014db002020-03-03 21:33:12 +03003396 io_put_req(req);
Pavel Begunkova93b3332020-02-08 14:04:34 +03003397}
3398
Jens Axboeb5dba592019-12-11 14:02:38 -07003399static void io_close_finish(struct io_wq_work **workptr)
3400{
3401 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Jens Axboeb5dba592019-12-11 14:02:38 -07003402
Pavel Begunkov7fbeb952020-02-16 01:01:18 +03003403 /* not cancellable, don't do io_req_cancelled() */
Pavel Begunkov014db002020-03-03 21:33:12 +03003404 __io_close_finish(req);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03003405 io_steal_work(req, workptr);
Jens Axboeb5dba592019-12-11 14:02:38 -07003406}
3407
Pavel Begunkov014db002020-03-03 21:33:12 +03003408static int io_close(struct io_kiocb *req, bool force_nonblock)
Jens Axboeb5dba592019-12-11 14:02:38 -07003409{
3410 int ret;
3411
3412 req->close.put_file = NULL;
3413 ret = __close_fd_get_file(req->close.fd, &req->close.put_file);
3414 if (ret < 0)
3415 return ret;
3416
3417 /* if the file has a flush method, be safe and punt to async */
Pavel Begunkova2100672020-03-02 23:45:16 +03003418 if (req->close.put_file->f_op->flush && force_nonblock) {
Pavel Begunkov594506f2020-03-03 21:33:11 +03003419 /* submission ref will be dropped, take it for async */
3420 refcount_inc(&req->refs);
3421
Pavel Begunkova2100672020-03-02 23:45:16 +03003422 req->work.func = io_close_finish;
3423 /*
3424 * Do manual async queue here to avoid grabbing files - we don't
3425 * need the files, and it'll cause io_close_finish() to close
3426 * the file again and cause a double CQE entry for this request
3427 */
3428 io_queue_async_work(req);
3429 return 0;
3430 }
Jens Axboeb5dba592019-12-11 14:02:38 -07003431
3432 /*
3433 * No ->flush(), safely close from here and just punt the
3434 * fput() to async context.
3435 */
Pavel Begunkov014db002020-03-03 21:33:12 +03003436 __io_close_finish(req);
Pavel Begunkova93b3332020-02-08 14:04:34 +03003437 return 0;
Jens Axboeb5dba592019-12-11 14:02:38 -07003438}
3439
Jens Axboe3529d8c2019-12-19 18:24:38 -07003440static int io_prep_sfr(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003441{
3442 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003443
3444 if (!req->file)
3445 return -EBADF;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003446
3447 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
3448 return -EINVAL;
3449 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
3450 return -EINVAL;
3451
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003452 req->sync.off = READ_ONCE(sqe->off);
3453 req->sync.len = READ_ONCE(sqe->len);
3454 req->sync.flags = READ_ONCE(sqe->sync_range_flags);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003455 return 0;
3456}
3457
Pavel Begunkov014db002020-03-03 21:33:12 +03003458static void __io_sync_file_range(struct io_kiocb *req)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003459{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003460 int ret;
3461
Jens Axboe9adbd452019-12-20 08:45:55 -07003462 ret = sync_file_range(req->file, req->sync.off, req->sync.len,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003463 req->sync.flags);
3464 if (ret < 0)
3465 req_set_fail_links(req);
3466 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003467 io_put_req(req);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03003468}
3469
3470
3471static void io_sync_file_range_finish(struct io_wq_work **workptr)
3472{
3473 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
3474 struct io_kiocb *nxt = NULL;
3475
3476 if (io_req_cancelled(req))
3477 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03003478 __io_sync_file_range(req);
Pavel Begunkov594506f2020-03-03 21:33:11 +03003479 io_put_req(req); /* put submission ref */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003480 if (nxt)
Jens Axboe78912932020-01-14 22:09:06 -07003481 io_wq_assign_next(workptr, nxt);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003482}
3483
Pavel Begunkov014db002020-03-03 21:33:12 +03003484static int io_sync_file_range(struct io_kiocb *req, bool force_nonblock)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003485{
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003486 /* sync_file_range always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003487 if (force_nonblock) {
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003488 req->work.func = io_sync_file_range_finish;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003489 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003490 }
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003491
Pavel Begunkov014db002020-03-03 21:33:12 +03003492 __io_sync_file_range(req);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003493 return 0;
3494}
3495
YueHaibing469956e2020-03-04 15:53:52 +08003496#if defined(CONFIG_NET)
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003497static int io_setup_async_msg(struct io_kiocb *req,
3498 struct io_async_msghdr *kmsg)
3499{
3500 if (req->io)
3501 return -EAGAIN;
3502 if (io_alloc_async_ctx(req)) {
3503 if (kmsg->iov != kmsg->fast_iov)
3504 kfree(kmsg->iov);
3505 return -ENOMEM;
3506 }
3507 req->flags |= REQ_F_NEED_CLEANUP;
3508 memcpy(&req->io->msg, kmsg, sizeof(*kmsg));
3509 return -EAGAIN;
3510}
3511
Jens Axboe3529d8c2019-12-19 18:24:38 -07003512static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboeaa1fa282019-04-19 13:38:09 -06003513{
Jens Axboee47293f2019-12-20 08:58:21 -07003514 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003515 struct io_async_ctx *io = req->io;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003516 int ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003517
Jens Axboee47293f2019-12-20 08:58:21 -07003518 sr->msg_flags = READ_ONCE(sqe->msg_flags);
3519 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboefddafac2020-01-04 20:19:44 -07003520 sr->len = READ_ONCE(sqe->len);
Jens Axboe3529d8c2019-12-19 18:24:38 -07003521
Jens Axboed8768362020-02-27 14:17:49 -07003522#ifdef CONFIG_COMPAT
3523 if (req->ctx->compat)
3524 sr->msg_flags |= MSG_CMSG_COMPAT;
3525#endif
3526
Jens Axboefddafac2020-01-04 20:19:44 -07003527 if (!io || req->opcode == IORING_OP_SEND)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003528 return 0;
Pavel Begunkov5f798be2020-02-08 13:28:02 +03003529 /* iovec is already imported */
3530 if (req->flags & REQ_F_NEED_CLEANUP)
3531 return 0;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003532
Jens Axboed9688562019-12-09 19:35:20 -07003533 io->msg.iov = io->msg.fast_iov;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003534 ret = sendmsg_copy_msghdr(&io->msg.msg, sr->msg, sr->msg_flags,
Jens Axboee47293f2019-12-20 08:58:21 -07003535 &io->msg.iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003536 if (!ret)
3537 req->flags |= REQ_F_NEED_CLEANUP;
3538 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003539}
3540
Pavel Begunkov014db002020-03-03 21:33:12 +03003541static int io_sendmsg(struct io_kiocb *req, bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07003542{
Jens Axboe0b416c32019-12-15 10:57:46 -07003543 struct io_async_msghdr *kmsg = NULL;
Jens Axboe03b12302019-12-02 18:50:25 -07003544 struct socket *sock;
3545 int ret;
3546
3547 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3548 return -EINVAL;
3549
3550 sock = sock_from_file(req->file, &ret);
3551 if (sock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003552 struct io_async_ctx io;
Jens Axboe03b12302019-12-02 18:50:25 -07003553 unsigned flags;
3554
Jens Axboe03b12302019-12-02 18:50:25 -07003555 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07003556 kmsg = &req->io->msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003557 kmsg->msg.msg_name = &req->io->msg.addr;
Jens Axboe0b416c32019-12-15 10:57:46 -07003558 /* if iov is set, it's allocated already */
3559 if (!kmsg->iov)
3560 kmsg->iov = kmsg->fast_iov;
3561 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07003562 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07003563 struct io_sr_msg *sr = &req->sr_msg;
3564
Jens Axboe0b416c32019-12-15 10:57:46 -07003565 kmsg = &io.msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003566 kmsg->msg.msg_name = &io.msg.addr;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003567
3568 io.msg.iov = io.msg.fast_iov;
3569 ret = sendmsg_copy_msghdr(&io.msg.msg, sr->msg,
3570 sr->msg_flags, &io.msg.iov);
Jens Axboe03b12302019-12-02 18:50:25 -07003571 if (ret)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003572 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003573 }
3574
Jens Axboee47293f2019-12-20 08:58:21 -07003575 flags = req->sr_msg.msg_flags;
3576 if (flags & MSG_DONTWAIT)
3577 req->flags |= REQ_F_NOWAIT;
3578 else if (force_nonblock)
3579 flags |= MSG_DONTWAIT;
3580
Jens Axboe0b416c32019-12-15 10:57:46 -07003581 ret = __sys_sendmsg_sock(sock, &kmsg->msg, flags);
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003582 if (force_nonblock && ret == -EAGAIN)
3583 return io_setup_async_msg(req, kmsg);
Jens Axboe03b12302019-12-02 18:50:25 -07003584 if (ret == -ERESTARTSYS)
3585 ret = -EINTR;
3586 }
3587
Pavel Begunkov1e950812020-02-06 19:51:16 +03003588 if (kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07003589 kfree(kmsg->iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003590 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe03b12302019-12-02 18:50:25 -07003591 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003592 if (ret < 0)
3593 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003594 io_put_req(req);
Jens Axboe03b12302019-12-02 18:50:25 -07003595 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07003596}
3597
Pavel Begunkov014db002020-03-03 21:33:12 +03003598static int io_send(struct io_kiocb *req, bool force_nonblock)
Jens Axboefddafac2020-01-04 20:19:44 -07003599{
Jens Axboefddafac2020-01-04 20:19:44 -07003600 struct socket *sock;
3601 int ret;
3602
3603 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3604 return -EINVAL;
3605
3606 sock = sock_from_file(req->file, &ret);
3607 if (sock) {
3608 struct io_sr_msg *sr = &req->sr_msg;
3609 struct msghdr msg;
3610 struct iovec iov;
3611 unsigned flags;
3612
3613 ret = import_single_range(WRITE, sr->buf, sr->len, &iov,
3614 &msg.msg_iter);
3615 if (ret)
3616 return ret;
3617
3618 msg.msg_name = NULL;
3619 msg.msg_control = NULL;
3620 msg.msg_controllen = 0;
3621 msg.msg_namelen = 0;
3622
3623 flags = req->sr_msg.msg_flags;
3624 if (flags & MSG_DONTWAIT)
3625 req->flags |= REQ_F_NOWAIT;
3626 else if (force_nonblock)
3627 flags |= MSG_DONTWAIT;
3628
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003629 msg.msg_flags = flags;
3630 ret = sock_sendmsg(sock, &msg);
Jens Axboefddafac2020-01-04 20:19:44 -07003631 if (force_nonblock && ret == -EAGAIN)
3632 return -EAGAIN;
3633 if (ret == -ERESTARTSYS)
3634 ret = -EINTR;
3635 }
3636
3637 io_cqring_add_event(req, ret);
3638 if (ret < 0)
3639 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003640 io_put_req(req);
Jens Axboefddafac2020-01-04 20:19:44 -07003641 return 0;
Jens Axboefddafac2020-01-04 20:19:44 -07003642}
3643
Jens Axboe52de1fe2020-02-27 10:15:42 -07003644static int __io_recvmsg_copy_hdr(struct io_kiocb *req, struct io_async_ctx *io)
3645{
3646 struct io_sr_msg *sr = &req->sr_msg;
3647 struct iovec __user *uiov;
3648 size_t iov_len;
3649 int ret;
3650
3651 ret = __copy_msghdr_from_user(&io->msg.msg, sr->msg, &io->msg.uaddr,
3652 &uiov, &iov_len);
3653 if (ret)
3654 return ret;
3655
3656 if (req->flags & REQ_F_BUFFER_SELECT) {
3657 if (iov_len > 1)
3658 return -EINVAL;
3659 if (copy_from_user(io->msg.iov, uiov, sizeof(*uiov)))
3660 return -EFAULT;
3661 sr->len = io->msg.iov[0].iov_len;
3662 iov_iter_init(&io->msg.msg.msg_iter, READ, io->msg.iov, 1,
3663 sr->len);
3664 io->msg.iov = NULL;
3665 } else {
3666 ret = import_iovec(READ, uiov, iov_len, UIO_FASTIOV,
3667 &io->msg.iov, &io->msg.msg.msg_iter);
3668 if (ret > 0)
3669 ret = 0;
3670 }
3671
3672 return ret;
3673}
3674
3675#ifdef CONFIG_COMPAT
3676static int __io_compat_recvmsg_copy_hdr(struct io_kiocb *req,
3677 struct io_async_ctx *io)
3678{
3679 struct compat_msghdr __user *msg_compat;
3680 struct io_sr_msg *sr = &req->sr_msg;
3681 struct compat_iovec __user *uiov;
3682 compat_uptr_t ptr;
3683 compat_size_t len;
3684 int ret;
3685
3686 msg_compat = (struct compat_msghdr __user *) sr->msg;
3687 ret = __get_compat_msghdr(&io->msg.msg, msg_compat, &io->msg.uaddr,
3688 &ptr, &len);
3689 if (ret)
3690 return ret;
3691
3692 uiov = compat_ptr(ptr);
3693 if (req->flags & REQ_F_BUFFER_SELECT) {
3694 compat_ssize_t clen;
3695
3696 if (len > 1)
3697 return -EINVAL;
3698 if (!access_ok(uiov, sizeof(*uiov)))
3699 return -EFAULT;
3700 if (__get_user(clen, &uiov->iov_len))
3701 return -EFAULT;
3702 if (clen < 0)
3703 return -EINVAL;
3704 sr->len = io->msg.iov[0].iov_len;
3705 io->msg.iov = NULL;
3706 } else {
3707 ret = compat_import_iovec(READ, uiov, len, UIO_FASTIOV,
3708 &io->msg.iov,
3709 &io->msg.msg.msg_iter);
3710 if (ret < 0)
3711 return ret;
3712 }
3713
3714 return 0;
3715}
3716#endif
3717
3718static int io_recvmsg_copy_hdr(struct io_kiocb *req, struct io_async_ctx *io)
3719{
3720 io->msg.iov = io->msg.fast_iov;
3721
3722#ifdef CONFIG_COMPAT
3723 if (req->ctx->compat)
3724 return __io_compat_recvmsg_copy_hdr(req, io);
3725#endif
3726
3727 return __io_recvmsg_copy_hdr(req, io);
3728}
3729
Jens Axboebcda7ba2020-02-23 16:42:51 -07003730static struct io_buffer *io_recv_buffer_select(struct io_kiocb *req,
3731 int *cflags, bool needs_lock)
3732{
3733 struct io_sr_msg *sr = &req->sr_msg;
3734 struct io_buffer *kbuf;
3735
3736 if (!(req->flags & REQ_F_BUFFER_SELECT))
3737 return NULL;
3738
3739 kbuf = io_buffer_select(req, &sr->len, sr->bgid, sr->kbuf, needs_lock);
3740 if (IS_ERR(kbuf))
3741 return kbuf;
3742
3743 sr->kbuf = kbuf;
3744 req->flags |= REQ_F_BUFFER_SELECTED;
3745
3746 *cflags = kbuf->bid << IORING_CQE_BUFFER_SHIFT;
3747 *cflags |= IORING_CQE_F_BUFFER;
3748 return kbuf;
3749}
3750
Jens Axboe3529d8c2019-12-19 18:24:38 -07003751static int io_recvmsg_prep(struct io_kiocb *req,
3752 const struct io_uring_sqe *sqe)
Jens Axboe03b12302019-12-02 18:50:25 -07003753{
Jens Axboee47293f2019-12-20 08:58:21 -07003754 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003755 struct io_async_ctx *io = req->io;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003756 int ret;
Jens Axboe06b76d42019-12-19 14:44:26 -07003757
Jens Axboe3529d8c2019-12-19 18:24:38 -07003758 sr->msg_flags = READ_ONCE(sqe->msg_flags);
3759 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003760 sr->len = READ_ONCE(sqe->len);
Jens Axboebcda7ba2020-02-23 16:42:51 -07003761 sr->bgid = READ_ONCE(sqe->buf_group);
Jens Axboe3529d8c2019-12-19 18:24:38 -07003762
Jens Axboed8768362020-02-27 14:17:49 -07003763#ifdef CONFIG_COMPAT
3764 if (req->ctx->compat)
3765 sr->msg_flags |= MSG_CMSG_COMPAT;
3766#endif
3767
Jens Axboefddafac2020-01-04 20:19:44 -07003768 if (!io || req->opcode == IORING_OP_RECV)
Jens Axboe06b76d42019-12-19 14:44:26 -07003769 return 0;
Pavel Begunkov5f798be2020-02-08 13:28:02 +03003770 /* iovec is already imported */
3771 if (req->flags & REQ_F_NEED_CLEANUP)
3772 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07003773
Jens Axboe52de1fe2020-02-27 10:15:42 -07003774 ret = io_recvmsg_copy_hdr(req, io);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003775 if (!ret)
3776 req->flags |= REQ_F_NEED_CLEANUP;
3777 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003778}
3779
Pavel Begunkov014db002020-03-03 21:33:12 +03003780static int io_recvmsg(struct io_kiocb *req, bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07003781{
Jens Axboe0b416c32019-12-15 10:57:46 -07003782 struct io_async_msghdr *kmsg = NULL;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003783 struct socket *sock;
Jens Axboe52de1fe2020-02-27 10:15:42 -07003784 int ret, cflags = 0;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003785
3786 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3787 return -EINVAL;
3788
3789 sock = sock_from_file(req->file, &ret);
3790 if (sock) {
Jens Axboe52de1fe2020-02-27 10:15:42 -07003791 struct io_buffer *kbuf;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003792 struct io_async_ctx io;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003793 unsigned flags;
3794
Jens Axboe03b12302019-12-02 18:50:25 -07003795 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07003796 kmsg = &req->io->msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003797 kmsg->msg.msg_name = &req->io->msg.addr;
Jens Axboe0b416c32019-12-15 10:57:46 -07003798 /* if iov is set, it's allocated already */
3799 if (!kmsg->iov)
3800 kmsg->iov = kmsg->fast_iov;
3801 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07003802 } else {
Jens Axboe0b416c32019-12-15 10:57:46 -07003803 kmsg = &io.msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003804 kmsg->msg.msg_name = &io.msg.addr;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003805
Jens Axboe52de1fe2020-02-27 10:15:42 -07003806 ret = io_recvmsg_copy_hdr(req, &io);
Jens Axboe03b12302019-12-02 18:50:25 -07003807 if (ret)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003808 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003809 }
Jens Axboe0fa03c62019-04-19 13:34:07 -06003810
Jens Axboe52de1fe2020-02-27 10:15:42 -07003811 kbuf = io_recv_buffer_select(req, &cflags, !force_nonblock);
3812 if (IS_ERR(kbuf)) {
3813 return PTR_ERR(kbuf);
3814 } else if (kbuf) {
3815 kmsg->fast_iov[0].iov_base = u64_to_user_ptr(kbuf->addr);
3816 iov_iter_init(&kmsg->msg.msg_iter, READ, kmsg->iov,
3817 1, req->sr_msg.len);
3818 }
3819
Jens Axboee47293f2019-12-20 08:58:21 -07003820 flags = req->sr_msg.msg_flags;
3821 if (flags & MSG_DONTWAIT)
3822 req->flags |= REQ_F_NOWAIT;
3823 else if (force_nonblock)
3824 flags |= MSG_DONTWAIT;
3825
3826 ret = __sys_recvmsg_sock(sock, &kmsg->msg, req->sr_msg.msg,
3827 kmsg->uaddr, flags);
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003828 if (force_nonblock && ret == -EAGAIN)
3829 return io_setup_async_msg(req, kmsg);
Jens Axboe441cdbd2019-12-02 18:49:10 -07003830 if (ret == -ERESTARTSYS)
3831 ret = -EINTR;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003832 }
3833
Pavel Begunkov1e950812020-02-06 19:51:16 +03003834 if (kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07003835 kfree(kmsg->iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003836 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe52de1fe2020-02-27 10:15:42 -07003837 __io_cqring_add_event(req, ret, cflags);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003838 if (ret < 0)
3839 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003840 io_put_req(req);
Jens Axboe0fa03c62019-04-19 13:34:07 -06003841 return 0;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003842}
3843
Pavel Begunkov014db002020-03-03 21:33:12 +03003844static int io_recv(struct io_kiocb *req, bool force_nonblock)
Jens Axboefddafac2020-01-04 20:19:44 -07003845{
Jens Axboebcda7ba2020-02-23 16:42:51 -07003846 struct io_buffer *kbuf = NULL;
Jens Axboefddafac2020-01-04 20:19:44 -07003847 struct socket *sock;
Jens Axboebcda7ba2020-02-23 16:42:51 -07003848 int ret, cflags = 0;
Jens Axboefddafac2020-01-04 20:19:44 -07003849
3850 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3851 return -EINVAL;
3852
3853 sock = sock_from_file(req->file, &ret);
3854 if (sock) {
3855 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboebcda7ba2020-02-23 16:42:51 -07003856 void __user *buf = sr->buf;
Jens Axboefddafac2020-01-04 20:19:44 -07003857 struct msghdr msg;
3858 struct iovec iov;
3859 unsigned flags;
3860
Jens Axboebcda7ba2020-02-23 16:42:51 -07003861 kbuf = io_recv_buffer_select(req, &cflags, !force_nonblock);
3862 if (IS_ERR(kbuf))
3863 return PTR_ERR(kbuf);
3864 else if (kbuf)
3865 buf = u64_to_user_ptr(kbuf->addr);
Jens Axboefddafac2020-01-04 20:19:44 -07003866
Jens Axboebcda7ba2020-02-23 16:42:51 -07003867 ret = import_single_range(READ, buf, sr->len, &iov,
3868 &msg.msg_iter);
3869 if (ret) {
3870 kfree(kbuf);
3871 return ret;
3872 }
3873
3874 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboefddafac2020-01-04 20:19:44 -07003875 msg.msg_name = NULL;
3876 msg.msg_control = NULL;
3877 msg.msg_controllen = 0;
3878 msg.msg_namelen = 0;
3879 msg.msg_iocb = NULL;
3880 msg.msg_flags = 0;
3881
3882 flags = req->sr_msg.msg_flags;
3883 if (flags & MSG_DONTWAIT)
3884 req->flags |= REQ_F_NOWAIT;
3885 else if (force_nonblock)
3886 flags |= MSG_DONTWAIT;
3887
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003888 ret = sock_recvmsg(sock, &msg, flags);
Jens Axboefddafac2020-01-04 20:19:44 -07003889 if (force_nonblock && ret == -EAGAIN)
3890 return -EAGAIN;
3891 if (ret == -ERESTARTSYS)
3892 ret = -EINTR;
3893 }
3894
Jens Axboebcda7ba2020-02-23 16:42:51 -07003895 kfree(kbuf);
3896 req->flags &= ~REQ_F_NEED_CLEANUP;
3897 __io_cqring_add_event(req, ret, cflags);
Jens Axboefddafac2020-01-04 20:19:44 -07003898 if (ret < 0)
3899 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003900 io_put_req(req);
Jens Axboefddafac2020-01-04 20:19:44 -07003901 return 0;
Jens Axboefddafac2020-01-04 20:19:44 -07003902}
3903
Jens Axboe3529d8c2019-12-19 18:24:38 -07003904static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003905{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003906 struct io_accept *accept = &req->accept;
3907
Jens Axboe17f2fe32019-10-17 14:42:58 -06003908 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3909 return -EINVAL;
Hrvoje Zeba8042d6c2019-11-25 14:40:22 -05003910 if (sqe->ioprio || sqe->len || sqe->buf_index)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003911 return -EINVAL;
3912
Jens Axboed55e5f52019-12-11 16:12:15 -07003913 accept->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
3914 accept->addr_len = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003915 accept->flags = READ_ONCE(sqe->accept_flags);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003916 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003917}
Jens Axboe17f2fe32019-10-17 14:42:58 -06003918
Pavel Begunkov014db002020-03-03 21:33:12 +03003919static int __io_accept(struct io_kiocb *req, bool force_nonblock)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003920{
3921 struct io_accept *accept = &req->accept;
3922 unsigned file_flags;
3923 int ret;
3924
3925 file_flags = force_nonblock ? O_NONBLOCK : 0;
3926 ret = __sys_accept4_file(req->file, file_flags, accept->addr,
3927 accept->addr_len, accept->flags);
3928 if (ret == -EAGAIN && force_nonblock)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003929 return -EAGAIN;
Jens Axboe8e3cca12019-11-09 19:52:33 -07003930 if (ret == -ERESTARTSYS)
3931 ret = -EINTR;
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003932 if (ret < 0)
3933 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07003934 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003935 io_put_req(req);
Jens Axboe17f2fe32019-10-17 14:42:58 -06003936 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003937}
3938
3939static void io_accept_finish(struct io_wq_work **workptr)
3940{
3941 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003942
3943 if (io_req_cancelled(req))
3944 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03003945 __io_accept(req, false);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03003946 io_steal_work(req, workptr);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003947}
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003948
Pavel Begunkov014db002020-03-03 21:33:12 +03003949static int io_accept(struct io_kiocb *req, bool force_nonblock)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003950{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003951 int ret;
3952
Pavel Begunkov014db002020-03-03 21:33:12 +03003953 ret = __io_accept(req, force_nonblock);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003954 if (ret == -EAGAIN && force_nonblock) {
3955 req->work.func = io_accept_finish;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003956 return -EAGAIN;
3957 }
3958 return 0;
Jens Axboe17f2fe32019-10-17 14:42:58 -06003959}
3960
Jens Axboe3529d8c2019-12-19 18:24:38 -07003961static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef499a022019-12-02 16:28:46 -07003962{
Jens Axboe3529d8c2019-12-19 18:24:38 -07003963 struct io_connect *conn = &req->connect;
3964 struct io_async_ctx *io = req->io;
Jens Axboef499a022019-12-02 16:28:46 -07003965
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003966 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3967 return -EINVAL;
3968 if (sqe->ioprio || sqe->len || sqe->buf_index || sqe->rw_flags)
3969 return -EINVAL;
3970
Jens Axboe3529d8c2019-12-19 18:24:38 -07003971 conn->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
3972 conn->addr_len = READ_ONCE(sqe->addr2);
3973
3974 if (!io)
3975 return 0;
3976
3977 return move_addr_to_kernel(conn->addr, conn->addr_len,
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003978 &io->connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07003979}
3980
Pavel Begunkov014db002020-03-03 21:33:12 +03003981static int io_connect(struct io_kiocb *req, bool force_nonblock)
Jens Axboef8e85cf2019-11-23 14:24:24 -07003982{
Jens Axboef499a022019-12-02 16:28:46 -07003983 struct io_async_ctx __io, *io;
Jens Axboef8e85cf2019-11-23 14:24:24 -07003984 unsigned file_flags;
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003985 int ret;
Jens Axboef8e85cf2019-11-23 14:24:24 -07003986
Jens Axboef499a022019-12-02 16:28:46 -07003987 if (req->io) {
3988 io = req->io;
3989 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07003990 ret = move_addr_to_kernel(req->connect.addr,
3991 req->connect.addr_len,
3992 &__io.connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07003993 if (ret)
3994 goto out;
3995 io = &__io;
3996 }
3997
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003998 file_flags = force_nonblock ? O_NONBLOCK : 0;
3999
4000 ret = __sys_connect_file(req->file, &io->connect.address,
4001 req->connect.addr_len, file_flags);
Jens Axboe87f80d62019-12-03 11:23:54 -07004002 if ((ret == -EAGAIN || ret == -EINPROGRESS) && force_nonblock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004003 if (req->io)
4004 return -EAGAIN;
4005 if (io_alloc_async_ctx(req)) {
Jens Axboef499a022019-12-02 16:28:46 -07004006 ret = -ENOMEM;
4007 goto out;
4008 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004009 memcpy(&req->io->connect, &__io.connect, sizeof(__io.connect));
Jens Axboef8e85cf2019-11-23 14:24:24 -07004010 return -EAGAIN;
Jens Axboef499a022019-12-02 16:28:46 -07004011 }
Jens Axboef8e85cf2019-11-23 14:24:24 -07004012 if (ret == -ERESTARTSYS)
4013 ret = -EINTR;
Jens Axboef499a022019-12-02 16:28:46 -07004014out:
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004015 if (ret < 0)
4016 req_set_fail_links(req);
Jens Axboef8e85cf2019-11-23 14:24:24 -07004017 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03004018 io_put_req(req);
Jens Axboef8e85cf2019-11-23 14:24:24 -07004019 return 0;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004020}
YueHaibing469956e2020-03-04 15:53:52 +08004021#else /* !CONFIG_NET */
4022static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4023{
4024 return -EOPNOTSUPP;
4025}
4026
4027static int io_sendmsg(struct io_kiocb *req, bool force_nonblock)
4028{
4029 return -EOPNOTSUPP;
4030}
4031
4032static int io_send(struct io_kiocb *req, bool force_nonblock)
4033{
4034 return -EOPNOTSUPP;
4035}
4036
4037static int io_recvmsg_prep(struct io_kiocb *req,
4038 const struct io_uring_sqe *sqe)
4039{
4040 return -EOPNOTSUPP;
4041}
4042
4043static int io_recvmsg(struct io_kiocb *req, bool force_nonblock)
4044{
4045 return -EOPNOTSUPP;
4046}
4047
4048static int io_recv(struct io_kiocb *req, bool force_nonblock)
4049{
4050 return -EOPNOTSUPP;
4051}
4052
4053static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4054{
4055 return -EOPNOTSUPP;
4056}
4057
4058static int io_accept(struct io_kiocb *req, bool force_nonblock)
4059{
4060 return -EOPNOTSUPP;
4061}
4062
4063static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4064{
4065 return -EOPNOTSUPP;
4066}
4067
4068static int io_connect(struct io_kiocb *req, bool force_nonblock)
4069{
4070 return -EOPNOTSUPP;
4071}
4072#endif /* CONFIG_NET */
Jens Axboef8e85cf2019-11-23 14:24:24 -07004073
Jens Axboed7718a92020-02-14 22:23:12 -07004074struct io_poll_table {
4075 struct poll_table_struct pt;
4076 struct io_kiocb *req;
4077 int error;
4078};
4079
4080static void __io_queue_proc(struct io_poll_iocb *poll, struct io_poll_table *pt,
4081 struct wait_queue_head *head)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004082{
Jens Axboed7718a92020-02-14 22:23:12 -07004083 if (unlikely(poll->head)) {
4084 pt->error = -EINVAL;
4085 return;
4086 }
4087
4088 pt->error = 0;
4089 poll->head = head;
4090 add_wait_queue(head, &poll->wait);
4091}
4092
4093static void io_async_queue_proc(struct file *file, struct wait_queue_head *head,
4094 struct poll_table_struct *p)
4095{
4096 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
4097
4098 __io_queue_proc(&pt->req->apoll->poll, pt, head);
4099}
4100
4101static int __io_async_wake(struct io_kiocb *req, struct io_poll_iocb *poll,
4102 __poll_t mask, task_work_func_t func)
4103{
4104 struct task_struct *tsk;
4105
4106 /* for instances that support it check for an event match first: */
4107 if (mask && !(mask & poll->events))
4108 return 0;
4109
4110 trace_io_uring_task_add(req->ctx, req->opcode, req->user_data, mask);
4111
4112 list_del_init(&poll->wait.entry);
4113
4114 tsk = req->task;
4115 req->result = mask;
4116 init_task_work(&req->task_work, func);
4117 /*
4118 * If this fails, then the task is exiting. If that is the case, then
4119 * the exit check will ultimately cancel these work items. Hence we
4120 * don't need to check here and handle it specifically.
4121 */
4122 task_work_add(tsk, &req->task_work, true);
4123 wake_up_process(tsk);
4124 return 1;
4125}
4126
4127static void io_async_task_func(struct callback_head *cb)
4128{
4129 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
4130 struct async_poll *apoll = req->apoll;
4131 struct io_ring_ctx *ctx = req->ctx;
4132
4133 trace_io_uring_task_run(req->ctx, req->opcode, req->user_data);
4134
4135 WARN_ON_ONCE(!list_empty(&req->apoll->poll.wait.entry));
4136
4137 if (hash_hashed(&req->hash_node)) {
4138 spin_lock_irq(&ctx->completion_lock);
4139 hash_del(&req->hash_node);
4140 spin_unlock_irq(&ctx->completion_lock);
4141 }
4142
4143 /* restore ->work in case we need to retry again */
4144 memcpy(&req->work, &apoll->work, sizeof(req->work));
4145
4146 __set_current_state(TASK_RUNNING);
4147 mutex_lock(&ctx->uring_lock);
4148 __io_queue_sqe(req, NULL);
4149 mutex_unlock(&ctx->uring_lock);
4150
4151 kfree(apoll);
4152}
4153
4154static int io_async_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
4155 void *key)
4156{
4157 struct io_kiocb *req = wait->private;
4158 struct io_poll_iocb *poll = &req->apoll->poll;
4159
4160 trace_io_uring_poll_wake(req->ctx, req->opcode, req->user_data,
4161 key_to_poll(key));
4162
4163 return __io_async_wake(req, poll, key_to_poll(key), io_async_task_func);
4164}
4165
4166static void io_poll_req_insert(struct io_kiocb *req)
4167{
4168 struct io_ring_ctx *ctx = req->ctx;
4169 struct hlist_head *list;
4170
4171 list = &ctx->cancel_hash[hash_long(req->user_data, ctx->cancel_hash_bits)];
4172 hlist_add_head(&req->hash_node, list);
4173}
4174
4175static __poll_t __io_arm_poll_handler(struct io_kiocb *req,
4176 struct io_poll_iocb *poll,
4177 struct io_poll_table *ipt, __poll_t mask,
4178 wait_queue_func_t wake_func)
4179 __acquires(&ctx->completion_lock)
4180{
4181 struct io_ring_ctx *ctx = req->ctx;
4182 bool cancel = false;
4183
4184 poll->file = req->file;
4185 poll->head = NULL;
4186 poll->done = poll->canceled = false;
4187 poll->events = mask;
4188
4189 ipt->pt._key = mask;
4190 ipt->req = req;
4191 ipt->error = -EINVAL;
4192
4193 INIT_LIST_HEAD(&poll->wait.entry);
4194 init_waitqueue_func_entry(&poll->wait, wake_func);
4195 poll->wait.private = req;
4196
4197 mask = vfs_poll(req->file, &ipt->pt) & poll->events;
4198
4199 spin_lock_irq(&ctx->completion_lock);
4200 if (likely(poll->head)) {
4201 spin_lock(&poll->head->lock);
4202 if (unlikely(list_empty(&poll->wait.entry))) {
4203 if (ipt->error)
4204 cancel = true;
4205 ipt->error = 0;
4206 mask = 0;
4207 }
4208 if (mask || ipt->error)
4209 list_del_init(&poll->wait.entry);
4210 else if (cancel)
4211 WRITE_ONCE(poll->canceled, true);
4212 else if (!poll->done) /* actually waiting for an event */
4213 io_poll_req_insert(req);
4214 spin_unlock(&poll->head->lock);
4215 }
4216
4217 return mask;
4218}
4219
4220static bool io_arm_poll_handler(struct io_kiocb *req)
4221{
4222 const struct io_op_def *def = &io_op_defs[req->opcode];
4223 struct io_ring_ctx *ctx = req->ctx;
4224 struct async_poll *apoll;
4225 struct io_poll_table ipt;
4226 __poll_t mask, ret;
4227
4228 if (!req->file || !file_can_poll(req->file))
4229 return false;
4230 if (req->flags & (REQ_F_MUST_PUNT | REQ_F_POLLED))
4231 return false;
4232 if (!def->pollin && !def->pollout)
4233 return false;
4234
4235 apoll = kmalloc(sizeof(*apoll), GFP_ATOMIC);
4236 if (unlikely(!apoll))
4237 return false;
4238
4239 req->flags |= REQ_F_POLLED;
4240 memcpy(&apoll->work, &req->work, sizeof(req->work));
4241
4242 /*
4243 * Don't need a reference here, as we're adding it to the task
4244 * task_works list. If the task exits, the list is pruned.
4245 */
4246 req->task = current;
4247 req->apoll = apoll;
4248 INIT_HLIST_NODE(&req->hash_node);
4249
Nathan Chancellor8755d972020-03-02 16:01:19 -07004250 mask = 0;
Jens Axboed7718a92020-02-14 22:23:12 -07004251 if (def->pollin)
Nathan Chancellor8755d972020-03-02 16:01:19 -07004252 mask |= POLLIN | POLLRDNORM;
Jens Axboed7718a92020-02-14 22:23:12 -07004253 if (def->pollout)
4254 mask |= POLLOUT | POLLWRNORM;
4255 mask |= POLLERR | POLLPRI;
4256
4257 ipt.pt._qproc = io_async_queue_proc;
4258
4259 ret = __io_arm_poll_handler(req, &apoll->poll, &ipt, mask,
4260 io_async_wake);
4261 if (ret) {
4262 ipt.error = 0;
4263 apoll->poll.done = true;
4264 spin_unlock_irq(&ctx->completion_lock);
4265 memcpy(&req->work, &apoll->work, sizeof(req->work));
4266 kfree(apoll);
4267 return false;
4268 }
4269 spin_unlock_irq(&ctx->completion_lock);
4270 trace_io_uring_poll_arm(ctx, req->opcode, req->user_data, mask,
4271 apoll->poll.events);
4272 return true;
4273}
4274
4275static bool __io_poll_remove_one(struct io_kiocb *req,
4276 struct io_poll_iocb *poll)
4277{
Jens Axboeb41e9852020-02-17 09:52:41 -07004278 bool do_complete = false;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004279
4280 spin_lock(&poll->head->lock);
4281 WRITE_ONCE(poll->canceled, true);
Jens Axboe392edb42019-12-09 17:52:20 -07004282 if (!list_empty(&poll->wait.entry)) {
4283 list_del_init(&poll->wait.entry);
Jens Axboeb41e9852020-02-17 09:52:41 -07004284 do_complete = true;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004285 }
4286 spin_unlock(&poll->head->lock);
Jens Axboed7718a92020-02-14 22:23:12 -07004287 return do_complete;
4288}
4289
4290static bool io_poll_remove_one(struct io_kiocb *req)
4291{
4292 bool do_complete;
4293
4294 if (req->opcode == IORING_OP_POLL_ADD) {
4295 do_complete = __io_poll_remove_one(req, &req->poll);
4296 } else {
4297 /* non-poll requests have submit ref still */
4298 do_complete = __io_poll_remove_one(req, &req->apoll->poll);
4299 if (do_complete)
4300 io_put_req(req);
4301 }
4302
Jens Axboe78076bb2019-12-04 19:56:40 -07004303 hash_del(&req->hash_node);
Jens Axboed7718a92020-02-14 22:23:12 -07004304
Jens Axboeb41e9852020-02-17 09:52:41 -07004305 if (do_complete) {
4306 io_cqring_fill_event(req, -ECANCELED);
4307 io_commit_cqring(req->ctx);
4308 req->flags |= REQ_F_COMP_LOCKED;
4309 io_put_req(req);
4310 }
4311
4312 return do_complete;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004313}
4314
4315static void io_poll_remove_all(struct io_ring_ctx *ctx)
4316{
Jens Axboe78076bb2019-12-04 19:56:40 -07004317 struct hlist_node *tmp;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004318 struct io_kiocb *req;
Jens Axboe78076bb2019-12-04 19:56:40 -07004319 int i;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004320
4321 spin_lock_irq(&ctx->completion_lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07004322 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
4323 struct hlist_head *list;
4324
4325 list = &ctx->cancel_hash[i];
4326 hlist_for_each_entry_safe(req, tmp, list, hash_node)
4327 io_poll_remove_one(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004328 }
4329 spin_unlock_irq(&ctx->completion_lock);
Jens Axboeb41e9852020-02-17 09:52:41 -07004330
4331 io_cqring_ev_posted(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004332}
4333
Jens Axboe47f46762019-11-09 17:43:02 -07004334static int io_poll_cancel(struct io_ring_ctx *ctx, __u64 sqe_addr)
4335{
Jens Axboe78076bb2019-12-04 19:56:40 -07004336 struct hlist_head *list;
Jens Axboe47f46762019-11-09 17:43:02 -07004337 struct io_kiocb *req;
4338
Jens Axboe78076bb2019-12-04 19:56:40 -07004339 list = &ctx->cancel_hash[hash_long(sqe_addr, ctx->cancel_hash_bits)];
4340 hlist_for_each_entry(req, list, hash_node) {
Jens Axboeb41e9852020-02-17 09:52:41 -07004341 if (sqe_addr != req->user_data)
4342 continue;
4343 if (io_poll_remove_one(req))
Jens Axboeeac406c2019-11-14 12:09:58 -07004344 return 0;
Jens Axboeb41e9852020-02-17 09:52:41 -07004345 return -EALREADY;
Jens Axboe47f46762019-11-09 17:43:02 -07004346 }
4347
4348 return -ENOENT;
4349}
4350
Jens Axboe3529d8c2019-12-19 18:24:38 -07004351static int io_poll_remove_prep(struct io_kiocb *req,
4352 const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004353{
Jens Axboe221c5eb2019-01-17 09:41:58 -07004354 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4355 return -EINVAL;
4356 if (sqe->ioprio || sqe->off || sqe->len || sqe->buf_index ||
4357 sqe->poll_events)
4358 return -EINVAL;
4359
Jens Axboe0969e782019-12-17 18:40:57 -07004360 req->poll.addr = READ_ONCE(sqe->addr);
Jens Axboe0969e782019-12-17 18:40:57 -07004361 return 0;
4362}
4363
4364/*
4365 * Find a running poll command that matches one specified in sqe->addr,
4366 * and remove it if found.
4367 */
4368static int io_poll_remove(struct io_kiocb *req)
4369{
4370 struct io_ring_ctx *ctx = req->ctx;
4371 u64 addr;
4372 int ret;
4373
Jens Axboe0969e782019-12-17 18:40:57 -07004374 addr = req->poll.addr;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004375 spin_lock_irq(&ctx->completion_lock);
Jens Axboe0969e782019-12-17 18:40:57 -07004376 ret = io_poll_cancel(ctx, addr);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004377 spin_unlock_irq(&ctx->completion_lock);
4378
Jens Axboe78e19bb2019-11-06 15:21:34 -07004379 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004380 if (ret < 0)
4381 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06004382 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004383 return 0;
4384}
4385
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004386static void io_poll_complete(struct io_kiocb *req, __poll_t mask, int error)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004387{
Jackie Liua197f662019-11-08 08:09:12 -07004388 struct io_ring_ctx *ctx = req->ctx;
4389
Jens Axboe8c838782019-03-12 15:48:16 -06004390 req->poll.done = true;
Pavel Begunkovb0a20342020-02-28 10:36:35 +03004391 io_cqring_fill_event(req, error ? error : mangle_poll(mask));
Jens Axboe8c838782019-03-12 15:48:16 -06004392 io_commit_cqring(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004393}
4394
Jens Axboeb41e9852020-02-17 09:52:41 -07004395static void io_poll_task_handler(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004396{
Jens Axboe221c5eb2019-01-17 09:41:58 -07004397 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004398
Jens Axboe221c5eb2019-01-17 09:41:58 -07004399 spin_lock_irq(&ctx->completion_lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07004400 hash_del(&req->hash_node);
Jens Axboeb41e9852020-02-17 09:52:41 -07004401 io_poll_complete(req, req->result, 0);
4402 req->flags |= REQ_F_COMP_LOCKED;
4403 io_put_req_find_next(req, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004404 spin_unlock_irq(&ctx->completion_lock);
4405
Jens Axboe8c838782019-03-12 15:48:16 -06004406 io_cqring_ev_posted(ctx);
Jens Axboeb41e9852020-02-17 09:52:41 -07004407}
Jens Axboe89723d02019-11-05 15:32:58 -07004408
Jens Axboeb41e9852020-02-17 09:52:41 -07004409static void io_poll_task_func(struct callback_head *cb)
4410{
4411 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
4412 struct io_kiocb *nxt = NULL;
4413
4414 io_poll_task_handler(req, &nxt);
Jens Axboed7718a92020-02-14 22:23:12 -07004415 if (nxt) {
4416 struct io_ring_ctx *ctx = nxt->ctx;
4417
4418 mutex_lock(&ctx->uring_lock);
Jens Axboeb41e9852020-02-17 09:52:41 -07004419 __io_queue_sqe(nxt, NULL);
Jens Axboed7718a92020-02-14 22:23:12 -07004420 mutex_unlock(&ctx->uring_lock);
4421 }
Jens Axboef0b493e2020-02-01 21:30:11 -07004422}
4423
Jens Axboe221c5eb2019-01-17 09:41:58 -07004424static int io_poll_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
4425 void *key)
4426{
Jens Axboec2f2eb72020-02-10 09:07:05 -07004427 struct io_kiocb *req = wait->private;
4428 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004429
Jens Axboed7718a92020-02-14 22:23:12 -07004430 return __io_async_wake(req, poll, key_to_poll(key), io_poll_task_func);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004431}
4432
Jens Axboe221c5eb2019-01-17 09:41:58 -07004433static void io_poll_queue_proc(struct file *file, struct wait_queue_head *head,
4434 struct poll_table_struct *p)
4435{
4436 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
4437
Jens Axboed7718a92020-02-14 22:23:12 -07004438 __io_queue_proc(&pt->req->poll, pt, head);
Jens Axboeeac406c2019-11-14 12:09:58 -07004439}
4440
Jens Axboe3529d8c2019-12-19 18:24:38 -07004441static int io_poll_add_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004442{
4443 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004444 u16 events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004445
4446 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4447 return -EINVAL;
4448 if (sqe->addr || sqe->ioprio || sqe->off || sqe->len || sqe->buf_index)
4449 return -EINVAL;
Jens Axboe09bb8392019-03-13 12:39:28 -06004450 if (!poll->file)
4451 return -EBADF;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004452
Jens Axboe221c5eb2019-01-17 09:41:58 -07004453 events = READ_ONCE(sqe->poll_events);
4454 poll->events = demangle_poll(events) | EPOLLERR | EPOLLHUP;
Jens Axboeb41e9852020-02-17 09:52:41 -07004455
Jens Axboed7718a92020-02-14 22:23:12 -07004456 /*
4457 * Don't need a reference here, as we're adding it to the task
4458 * task_works list. If the task exits, the list is pruned.
4459 */
Jens Axboeb41e9852020-02-17 09:52:41 -07004460 req->task = current;
Jens Axboe0969e782019-12-17 18:40:57 -07004461 return 0;
4462}
4463
Pavel Begunkov014db002020-03-03 21:33:12 +03004464static int io_poll_add(struct io_kiocb *req)
Jens Axboe0969e782019-12-17 18:40:57 -07004465{
4466 struct io_poll_iocb *poll = &req->poll;
4467 struct io_ring_ctx *ctx = req->ctx;
4468 struct io_poll_table ipt;
Jens Axboe0969e782019-12-17 18:40:57 -07004469 __poll_t mask;
Jens Axboe0969e782019-12-17 18:40:57 -07004470
Jens Axboe78076bb2019-12-04 19:56:40 -07004471 INIT_HLIST_NODE(&req->hash_node);
Jens Axboe36703242019-07-25 10:20:18 -06004472 INIT_LIST_HEAD(&req->list);
Jens Axboed7718a92020-02-14 22:23:12 -07004473 ipt.pt._qproc = io_poll_queue_proc;
Jens Axboe36703242019-07-25 10:20:18 -06004474
Jens Axboed7718a92020-02-14 22:23:12 -07004475 mask = __io_arm_poll_handler(req, &req->poll, &ipt, poll->events,
4476 io_poll_wake);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004477
Jens Axboe8c838782019-03-12 15:48:16 -06004478 if (mask) { /* no async, we'd stolen it */
Jens Axboe8c838782019-03-12 15:48:16 -06004479 ipt.error = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004480 io_poll_complete(req, mask, 0);
Jens Axboe8c838782019-03-12 15:48:16 -06004481 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07004482 spin_unlock_irq(&ctx->completion_lock);
4483
Jens Axboe8c838782019-03-12 15:48:16 -06004484 if (mask) {
4485 io_cqring_ev_posted(ctx);
Pavel Begunkov014db002020-03-03 21:33:12 +03004486 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004487 }
Jens Axboe8c838782019-03-12 15:48:16 -06004488 return ipt.error;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004489}
4490
Jens Axboe5262f562019-09-17 12:26:57 -06004491static enum hrtimer_restart io_timeout_fn(struct hrtimer *timer)
4492{
Jens Axboead8a48a2019-11-15 08:49:11 -07004493 struct io_timeout_data *data = container_of(timer,
4494 struct io_timeout_data, timer);
4495 struct io_kiocb *req = data->req;
4496 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5262f562019-09-17 12:26:57 -06004497 unsigned long flags;
4498
Jens Axboe5262f562019-09-17 12:26:57 -06004499 atomic_inc(&ctx->cq_timeouts);
4500
4501 spin_lock_irqsave(&ctx->completion_lock, flags);
zhangyi (F)ef036812019-10-23 15:10:08 +08004502 /*
Jens Axboe11365042019-10-16 09:08:32 -06004503 * We could be racing with timeout deletion. If the list is empty,
4504 * then timeout lookup already found it and will be handling it.
zhangyi (F)ef036812019-10-23 15:10:08 +08004505 */
Jens Axboe842f9612019-10-29 12:34:10 -06004506 if (!list_empty(&req->list)) {
Jens Axboe11365042019-10-16 09:08:32 -06004507 struct io_kiocb *prev;
Jens Axboe5262f562019-09-17 12:26:57 -06004508
Jens Axboe11365042019-10-16 09:08:32 -06004509 /*
4510 * Adjust the reqs sequence before the current one because it
Brian Gianforcarod195a662019-12-13 03:09:50 -08004511 * will consume a slot in the cq_ring and the cq_tail
Jens Axboe11365042019-10-16 09:08:32 -06004512 * pointer will be increased, otherwise other timeout reqs may
4513 * return in advance without waiting for enough wait_nr.
4514 */
4515 prev = req;
4516 list_for_each_entry_continue_reverse(prev, &ctx->timeout_list, list)
4517 prev->sequence++;
Jens Axboe11365042019-10-16 09:08:32 -06004518 list_del_init(&req->list);
Jens Axboe11365042019-10-16 09:08:32 -06004519 }
Jens Axboe842f9612019-10-29 12:34:10 -06004520
Jens Axboe78e19bb2019-11-06 15:21:34 -07004521 io_cqring_fill_event(req, -ETIME);
Jens Axboe5262f562019-09-17 12:26:57 -06004522 io_commit_cqring(ctx);
4523 spin_unlock_irqrestore(&ctx->completion_lock, flags);
4524
4525 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004526 req_set_fail_links(req);
Jens Axboe5262f562019-09-17 12:26:57 -06004527 io_put_req(req);
4528 return HRTIMER_NORESTART;
4529}
4530
Jens Axboe47f46762019-11-09 17:43:02 -07004531static int io_timeout_cancel(struct io_ring_ctx *ctx, __u64 user_data)
4532{
4533 struct io_kiocb *req;
4534 int ret = -ENOENT;
4535
4536 list_for_each_entry(req, &ctx->timeout_list, list) {
4537 if (user_data == req->user_data) {
4538 list_del_init(&req->list);
4539 ret = 0;
4540 break;
4541 }
4542 }
4543
4544 if (ret == -ENOENT)
4545 return ret;
4546
Jens Axboe2d283902019-12-04 11:08:05 -07004547 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe47f46762019-11-09 17:43:02 -07004548 if (ret == -1)
4549 return -EALREADY;
4550
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004551 req_set_fail_links(req);
Jens Axboe47f46762019-11-09 17:43:02 -07004552 io_cqring_fill_event(req, -ECANCELED);
4553 io_put_req(req);
4554 return 0;
4555}
4556
Jens Axboe3529d8c2019-12-19 18:24:38 -07004557static int io_timeout_remove_prep(struct io_kiocb *req,
4558 const struct io_uring_sqe *sqe)
Jens Axboeb29472e2019-12-17 18:50:29 -07004559{
Jens Axboeb29472e2019-12-17 18:50:29 -07004560 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4561 return -EINVAL;
4562 if (sqe->flags || sqe->ioprio || sqe->buf_index || sqe->len)
4563 return -EINVAL;
4564
4565 req->timeout.addr = READ_ONCE(sqe->addr);
4566 req->timeout.flags = READ_ONCE(sqe->timeout_flags);
4567 if (req->timeout.flags)
4568 return -EINVAL;
4569
Jens Axboeb29472e2019-12-17 18:50:29 -07004570 return 0;
4571}
4572
Jens Axboe11365042019-10-16 09:08:32 -06004573/*
4574 * Remove or update an existing timeout command
4575 */
Jens Axboefc4df992019-12-10 14:38:45 -07004576static int io_timeout_remove(struct io_kiocb *req)
Jens Axboe11365042019-10-16 09:08:32 -06004577{
4578 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe47f46762019-11-09 17:43:02 -07004579 int ret;
Jens Axboe11365042019-10-16 09:08:32 -06004580
Jens Axboe11365042019-10-16 09:08:32 -06004581 spin_lock_irq(&ctx->completion_lock);
Jens Axboeb29472e2019-12-17 18:50:29 -07004582 ret = io_timeout_cancel(ctx, req->timeout.addr);
Jens Axboe11365042019-10-16 09:08:32 -06004583
Jens Axboe47f46762019-11-09 17:43:02 -07004584 io_cqring_fill_event(req, ret);
Jens Axboe11365042019-10-16 09:08:32 -06004585 io_commit_cqring(ctx);
4586 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06004587 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004588 if (ret < 0)
4589 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08004590 io_put_req(req);
Jens Axboe11365042019-10-16 09:08:32 -06004591 return 0;
Jens Axboe5262f562019-09-17 12:26:57 -06004592}
4593
Jens Axboe3529d8c2019-12-19 18:24:38 -07004594static int io_timeout_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboe2d283902019-12-04 11:08:05 -07004595 bool is_timeout_link)
Jens Axboe5262f562019-09-17 12:26:57 -06004596{
Jens Axboead8a48a2019-11-15 08:49:11 -07004597 struct io_timeout_data *data;
Jens Axboea41525a2019-10-15 16:48:15 -06004598 unsigned flags;
Jens Axboe5262f562019-09-17 12:26:57 -06004599
Jens Axboead8a48a2019-11-15 08:49:11 -07004600 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe5262f562019-09-17 12:26:57 -06004601 return -EINVAL;
Jens Axboead8a48a2019-11-15 08:49:11 -07004602 if (sqe->ioprio || sqe->buf_index || sqe->len != 1)
Jens Axboea41525a2019-10-15 16:48:15 -06004603 return -EINVAL;
Jens Axboe2d283902019-12-04 11:08:05 -07004604 if (sqe->off && is_timeout_link)
4605 return -EINVAL;
Jens Axboea41525a2019-10-15 16:48:15 -06004606 flags = READ_ONCE(sqe->timeout_flags);
4607 if (flags & ~IORING_TIMEOUT_ABS)
Jens Axboe5262f562019-09-17 12:26:57 -06004608 return -EINVAL;
Arnd Bergmannbdf20072019-10-01 09:53:29 -06004609
Jens Axboe26a61672019-12-20 09:02:01 -07004610 req->timeout.count = READ_ONCE(sqe->off);
4611
Jens Axboe3529d8c2019-12-19 18:24:38 -07004612 if (!req->io && io_alloc_async_ctx(req))
Jens Axboe26a61672019-12-20 09:02:01 -07004613 return -ENOMEM;
4614
4615 data = &req->io->timeout;
Jens Axboead8a48a2019-11-15 08:49:11 -07004616 data->req = req;
Jens Axboead8a48a2019-11-15 08:49:11 -07004617 req->flags |= REQ_F_TIMEOUT;
4618
4619 if (get_timespec64(&data->ts, u64_to_user_ptr(sqe->addr)))
Jens Axboe5262f562019-09-17 12:26:57 -06004620 return -EFAULT;
4621
Jens Axboe11365042019-10-16 09:08:32 -06004622 if (flags & IORING_TIMEOUT_ABS)
Jens Axboead8a48a2019-11-15 08:49:11 -07004623 data->mode = HRTIMER_MODE_ABS;
Jens Axboe11365042019-10-16 09:08:32 -06004624 else
Jens Axboead8a48a2019-11-15 08:49:11 -07004625 data->mode = HRTIMER_MODE_REL;
Jens Axboe11365042019-10-16 09:08:32 -06004626
Jens Axboead8a48a2019-11-15 08:49:11 -07004627 hrtimer_init(&data->timer, CLOCK_MONOTONIC, data->mode);
4628 return 0;
4629}
4630
Jens Axboefc4df992019-12-10 14:38:45 -07004631static int io_timeout(struct io_kiocb *req)
Jens Axboead8a48a2019-11-15 08:49:11 -07004632{
4633 unsigned count;
4634 struct io_ring_ctx *ctx = req->ctx;
4635 struct io_timeout_data *data;
4636 struct list_head *entry;
4637 unsigned span = 0;
Jens Axboead8a48a2019-11-15 08:49:11 -07004638
Jens Axboe2d283902019-12-04 11:08:05 -07004639 data = &req->io->timeout;
Jens Axboe93bd25b2019-11-11 23:34:31 -07004640
Jens Axboe5262f562019-09-17 12:26:57 -06004641 /*
4642 * sqe->off holds how many events that need to occur for this
Jens Axboe93bd25b2019-11-11 23:34:31 -07004643 * timeout event to be satisfied. If it isn't set, then this is
4644 * a pure timeout request, sequence isn't used.
Jens Axboe5262f562019-09-17 12:26:57 -06004645 */
Jens Axboe26a61672019-12-20 09:02:01 -07004646 count = req->timeout.count;
Jens Axboe93bd25b2019-11-11 23:34:31 -07004647 if (!count) {
4648 req->flags |= REQ_F_TIMEOUT_NOSEQ;
4649 spin_lock_irq(&ctx->completion_lock);
4650 entry = ctx->timeout_list.prev;
4651 goto add;
4652 }
Jens Axboe5262f562019-09-17 12:26:57 -06004653
4654 req->sequence = ctx->cached_sq_head + count - 1;
Jens Axboe2d283902019-12-04 11:08:05 -07004655 data->seq_offset = count;
Jens Axboe5262f562019-09-17 12:26:57 -06004656
4657 /*
4658 * Insertion sort, ensuring the first entry in the list is always
4659 * the one we need first.
4660 */
Jens Axboe5262f562019-09-17 12:26:57 -06004661 spin_lock_irq(&ctx->completion_lock);
4662 list_for_each_prev(entry, &ctx->timeout_list) {
4663 struct io_kiocb *nxt = list_entry(entry, struct io_kiocb, list);
yangerkun5da0fb12019-10-15 21:59:29 +08004664 unsigned nxt_sq_head;
4665 long long tmp, tmp_nxt;
Jens Axboe2d283902019-12-04 11:08:05 -07004666 u32 nxt_offset = nxt->io->timeout.seq_offset;
Jens Axboe5262f562019-09-17 12:26:57 -06004667
Jens Axboe93bd25b2019-11-11 23:34:31 -07004668 if (nxt->flags & REQ_F_TIMEOUT_NOSEQ)
4669 continue;
4670
yangerkun5da0fb12019-10-15 21:59:29 +08004671 /*
4672 * Since cached_sq_head + count - 1 can overflow, use type long
4673 * long to store it.
4674 */
4675 tmp = (long long)ctx->cached_sq_head + count - 1;
Pavel Begunkovcc42e0a2019-11-25 23:14:38 +03004676 nxt_sq_head = nxt->sequence - nxt_offset + 1;
4677 tmp_nxt = (long long)nxt_sq_head + nxt_offset - 1;
yangerkun5da0fb12019-10-15 21:59:29 +08004678
4679 /*
4680 * cached_sq_head may overflow, and it will never overflow twice
4681 * once there is some timeout req still be valid.
4682 */
4683 if (ctx->cached_sq_head < nxt_sq_head)
yangerkun8b07a652019-10-17 12:12:35 +08004684 tmp += UINT_MAX;
yangerkun5da0fb12019-10-15 21:59:29 +08004685
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004686 if (tmp > tmp_nxt)
Jens Axboe5262f562019-09-17 12:26:57 -06004687 break;
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004688
4689 /*
4690 * Sequence of reqs after the insert one and itself should
4691 * be adjusted because each timeout req consumes a slot.
4692 */
4693 span++;
4694 nxt->sequence++;
Jens Axboe5262f562019-09-17 12:26:57 -06004695 }
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004696 req->sequence -= span;
Jens Axboe93bd25b2019-11-11 23:34:31 -07004697add:
Jens Axboe5262f562019-09-17 12:26:57 -06004698 list_add(&req->list, entry);
Jens Axboead8a48a2019-11-15 08:49:11 -07004699 data->timer.function = io_timeout_fn;
4700 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts), data->mode);
Jens Axboe842f9612019-10-29 12:34:10 -06004701 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06004702 return 0;
4703}
4704
Jens Axboe62755e32019-10-28 21:49:21 -06004705static bool io_cancel_cb(struct io_wq_work *work, void *data)
Jens Axboede0617e2019-04-06 21:51:27 -06004706{
Jens Axboe62755e32019-10-28 21:49:21 -06004707 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboede0617e2019-04-06 21:51:27 -06004708
Jens Axboe62755e32019-10-28 21:49:21 -06004709 return req->user_data == (unsigned long) data;
4710}
4711
Jens Axboee977d6d2019-11-05 12:39:45 -07004712static int io_async_cancel_one(struct io_ring_ctx *ctx, void *sqe_addr)
Jens Axboe62755e32019-10-28 21:49:21 -06004713{
Jens Axboe62755e32019-10-28 21:49:21 -06004714 enum io_wq_cancel cancel_ret;
Jens Axboe62755e32019-10-28 21:49:21 -06004715 int ret = 0;
4716
Jens Axboe62755e32019-10-28 21:49:21 -06004717 cancel_ret = io_wq_cancel_cb(ctx->io_wq, io_cancel_cb, sqe_addr);
4718 switch (cancel_ret) {
4719 case IO_WQ_CANCEL_OK:
4720 ret = 0;
4721 break;
4722 case IO_WQ_CANCEL_RUNNING:
4723 ret = -EALREADY;
4724 break;
4725 case IO_WQ_CANCEL_NOTFOUND:
4726 ret = -ENOENT;
4727 break;
4728 }
4729
Jens Axboee977d6d2019-11-05 12:39:45 -07004730 return ret;
4731}
4732
Jens Axboe47f46762019-11-09 17:43:02 -07004733static void io_async_find_and_cancel(struct io_ring_ctx *ctx,
4734 struct io_kiocb *req, __u64 sqe_addr,
Pavel Begunkov014db002020-03-03 21:33:12 +03004735 int success_ret)
Jens Axboe47f46762019-11-09 17:43:02 -07004736{
4737 unsigned long flags;
4738 int ret;
4739
4740 ret = io_async_cancel_one(ctx, (void *) (unsigned long) sqe_addr);
4741 if (ret != -ENOENT) {
4742 spin_lock_irqsave(&ctx->completion_lock, flags);
4743 goto done;
4744 }
4745
4746 spin_lock_irqsave(&ctx->completion_lock, flags);
4747 ret = io_timeout_cancel(ctx, sqe_addr);
4748 if (ret != -ENOENT)
4749 goto done;
4750 ret = io_poll_cancel(ctx, sqe_addr);
4751done:
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004752 if (!ret)
4753 ret = success_ret;
Jens Axboe47f46762019-11-09 17:43:02 -07004754 io_cqring_fill_event(req, ret);
4755 io_commit_cqring(ctx);
4756 spin_unlock_irqrestore(&ctx->completion_lock, flags);
4757 io_cqring_ev_posted(ctx);
4758
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004759 if (ret < 0)
4760 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03004761 io_put_req(req);
Jens Axboe47f46762019-11-09 17:43:02 -07004762}
4763
Jens Axboe3529d8c2019-12-19 18:24:38 -07004764static int io_async_cancel_prep(struct io_kiocb *req,
4765 const struct io_uring_sqe *sqe)
Jens Axboee977d6d2019-11-05 12:39:45 -07004766{
Jens Axboefbf23842019-12-17 18:45:56 -07004767 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboee977d6d2019-11-05 12:39:45 -07004768 return -EINVAL;
4769 if (sqe->flags || sqe->ioprio || sqe->off || sqe->len ||
4770 sqe->cancel_flags)
4771 return -EINVAL;
4772
Jens Axboefbf23842019-12-17 18:45:56 -07004773 req->cancel.addr = READ_ONCE(sqe->addr);
4774 return 0;
4775}
4776
Pavel Begunkov014db002020-03-03 21:33:12 +03004777static int io_async_cancel(struct io_kiocb *req)
Jens Axboefbf23842019-12-17 18:45:56 -07004778{
4779 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefbf23842019-12-17 18:45:56 -07004780
Pavel Begunkov014db002020-03-03 21:33:12 +03004781 io_async_find_and_cancel(ctx, req, req->cancel.addr, 0);
Jens Axboe62755e32019-10-28 21:49:21 -06004782 return 0;
4783}
4784
Jens Axboe05f3fb32019-12-09 11:22:50 -07004785static int io_files_update_prep(struct io_kiocb *req,
4786 const struct io_uring_sqe *sqe)
4787{
4788 if (sqe->flags || sqe->ioprio || sqe->rw_flags)
4789 return -EINVAL;
4790
4791 req->files_update.offset = READ_ONCE(sqe->off);
4792 req->files_update.nr_args = READ_ONCE(sqe->len);
4793 if (!req->files_update.nr_args)
4794 return -EINVAL;
4795 req->files_update.arg = READ_ONCE(sqe->addr);
4796 return 0;
4797}
4798
4799static int io_files_update(struct io_kiocb *req, bool force_nonblock)
4800{
4801 struct io_ring_ctx *ctx = req->ctx;
4802 struct io_uring_files_update up;
4803 int ret;
4804
Jens Axboef86cd202020-01-29 13:46:44 -07004805 if (force_nonblock)
Jens Axboe05f3fb32019-12-09 11:22:50 -07004806 return -EAGAIN;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004807
4808 up.offset = req->files_update.offset;
4809 up.fds = req->files_update.arg;
4810
4811 mutex_lock(&ctx->uring_lock);
4812 ret = __io_sqe_files_update(ctx, &up, req->files_update.nr_args);
4813 mutex_unlock(&ctx->uring_lock);
4814
4815 if (ret < 0)
4816 req_set_fail_links(req);
4817 io_cqring_add_event(req, ret);
4818 io_put_req(req);
4819 return 0;
4820}
4821
Jens Axboe3529d8c2019-12-19 18:24:38 -07004822static int io_req_defer_prep(struct io_kiocb *req,
4823 const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07004824{
Jens Axboee7815732019-12-17 19:45:06 -07004825 ssize_t ret = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07004826
Jens Axboef86cd202020-01-29 13:46:44 -07004827 if (io_op_defs[req->opcode].file_table) {
4828 ret = io_grab_files(req);
4829 if (unlikely(ret))
4830 return ret;
4831 }
4832
Jens Axboecccf0ee2020-01-27 16:34:48 -07004833 io_req_work_grab_env(req, &io_op_defs[req->opcode]);
4834
Jens Axboed625c6e2019-12-17 19:53:05 -07004835 switch (req->opcode) {
Jens Axboee7815732019-12-17 19:45:06 -07004836 case IORING_OP_NOP:
4837 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004838 case IORING_OP_READV:
4839 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004840 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004841 ret = io_read_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07004842 break;
4843 case IORING_OP_WRITEV:
4844 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004845 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004846 ret = io_write_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07004847 break;
Jens Axboe0969e782019-12-17 18:40:57 -07004848 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004849 ret = io_poll_add_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07004850 break;
4851 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004852 ret = io_poll_remove_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07004853 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004854 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004855 ret = io_prep_fsync(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004856 break;
4857 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004858 ret = io_prep_sfr(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004859 break;
Jens Axboe03b12302019-12-02 18:50:25 -07004860 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004861 case IORING_OP_SEND:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004862 ret = io_sendmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07004863 break;
4864 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004865 case IORING_OP_RECV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004866 ret = io_recvmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07004867 break;
Jens Axboef499a022019-12-02 16:28:46 -07004868 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004869 ret = io_connect_prep(req, sqe);
Jens Axboef499a022019-12-02 16:28:46 -07004870 break;
Jens Axboe2d283902019-12-04 11:08:05 -07004871 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004872 ret = io_timeout_prep(req, sqe, false);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004873 break;
Jens Axboeb29472e2019-12-17 18:50:29 -07004874 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004875 ret = io_timeout_remove_prep(req, sqe);
Jens Axboeb29472e2019-12-17 18:50:29 -07004876 break;
Jens Axboefbf23842019-12-17 18:45:56 -07004877 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004878 ret = io_async_cancel_prep(req, sqe);
Jens Axboefbf23842019-12-17 18:45:56 -07004879 break;
Jens Axboe2d283902019-12-04 11:08:05 -07004880 case IORING_OP_LINK_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004881 ret = io_timeout_prep(req, sqe, true);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004882 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004883 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004884 ret = io_accept_prep(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004885 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07004886 case IORING_OP_FALLOCATE:
4887 ret = io_fallocate_prep(req, sqe);
4888 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004889 case IORING_OP_OPENAT:
4890 ret = io_openat_prep(req, sqe);
4891 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07004892 case IORING_OP_CLOSE:
4893 ret = io_close_prep(req, sqe);
4894 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004895 case IORING_OP_FILES_UPDATE:
4896 ret = io_files_update_prep(req, sqe);
4897 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004898 case IORING_OP_STATX:
4899 ret = io_statx_prep(req, sqe);
4900 break;
Jens Axboe4840e412019-12-25 22:03:45 -07004901 case IORING_OP_FADVISE:
4902 ret = io_fadvise_prep(req, sqe);
4903 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07004904 case IORING_OP_MADVISE:
4905 ret = io_madvise_prep(req, sqe);
4906 break;
Jens Axboecebdb982020-01-08 17:59:24 -07004907 case IORING_OP_OPENAT2:
4908 ret = io_openat2_prep(req, sqe);
4909 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07004910 case IORING_OP_EPOLL_CTL:
4911 ret = io_epoll_ctl_prep(req, sqe);
4912 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03004913 case IORING_OP_SPLICE:
4914 ret = io_splice_prep(req, sqe);
4915 break;
Jens Axboeddf0322d2020-02-23 16:41:33 -07004916 case IORING_OP_PROVIDE_BUFFERS:
4917 ret = io_provide_buffers_prep(req, sqe);
4918 break;
Jens Axboe067524e2020-03-02 16:32:28 -07004919 case IORING_OP_REMOVE_BUFFERS:
4920 ret = io_remove_buffers_prep(req, sqe);
4921 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004922 default:
Jens Axboee7815732019-12-17 19:45:06 -07004923 printk_once(KERN_WARNING "io_uring: unhandled opcode %d\n",
4924 req->opcode);
4925 ret = -EINVAL;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004926 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004927 }
4928
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004929 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07004930}
4931
Jens Axboe3529d8c2019-12-19 18:24:38 -07004932static int io_req_defer(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboede0617e2019-04-06 21:51:27 -06004933{
Jackie Liua197f662019-11-08 08:09:12 -07004934 struct io_ring_ctx *ctx = req->ctx;
Jens Axboef67676d2019-12-02 11:03:47 -07004935 int ret;
Jens Axboede0617e2019-04-06 21:51:27 -06004936
Bob Liu9d858b22019-11-13 18:06:25 +08004937 /* Still need defer if there is pending req in defer list. */
4938 if (!req_need_defer(req) && list_empty(&ctx->defer_list))
Jens Axboede0617e2019-04-06 21:51:27 -06004939 return 0;
4940
Jens Axboe3529d8c2019-12-19 18:24:38 -07004941 if (!req->io && io_alloc_async_ctx(req))
Jens Axboede0617e2019-04-06 21:51:27 -06004942 return -EAGAIN;
4943
Jens Axboe3529d8c2019-12-19 18:24:38 -07004944 ret = io_req_defer_prep(req, sqe);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004945 if (ret < 0)
Jens Axboe2d283902019-12-04 11:08:05 -07004946 return ret;
Jens Axboe2d283902019-12-04 11:08:05 -07004947
Jens Axboede0617e2019-04-06 21:51:27 -06004948 spin_lock_irq(&ctx->completion_lock);
Bob Liu9d858b22019-11-13 18:06:25 +08004949 if (!req_need_defer(req) && list_empty(&ctx->defer_list)) {
Jens Axboede0617e2019-04-06 21:51:27 -06004950 spin_unlock_irq(&ctx->completion_lock);
Jens Axboede0617e2019-04-06 21:51:27 -06004951 return 0;
4952 }
4953
Jens Axboe915967f2019-11-21 09:01:20 -07004954 trace_io_uring_defer(ctx, req, req->user_data);
Jens Axboede0617e2019-04-06 21:51:27 -06004955 list_add_tail(&req->list, &ctx->defer_list);
4956 spin_unlock_irq(&ctx->completion_lock);
4957 return -EIOCBQUEUED;
4958}
4959
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004960static void io_cleanup_req(struct io_kiocb *req)
4961{
4962 struct io_async_ctx *io = req->io;
4963
4964 switch (req->opcode) {
4965 case IORING_OP_READV:
4966 case IORING_OP_READ_FIXED:
4967 case IORING_OP_READ:
Jens Axboebcda7ba2020-02-23 16:42:51 -07004968 if (req->flags & REQ_F_BUFFER_SELECTED)
4969 kfree((void *)(unsigned long)req->rw.addr);
4970 /* fallthrough */
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004971 case IORING_OP_WRITEV:
4972 case IORING_OP_WRITE_FIXED:
4973 case IORING_OP_WRITE:
4974 if (io->rw.iov != io->rw.fast_iov)
4975 kfree(io->rw.iov);
4976 break;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004977 case IORING_OP_RECVMSG:
Jens Axboe52de1fe2020-02-27 10:15:42 -07004978 if (req->flags & REQ_F_BUFFER_SELECTED)
4979 kfree(req->sr_msg.kbuf);
4980 /* fallthrough */
4981 case IORING_OP_SENDMSG:
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004982 if (io->msg.iov != io->msg.fast_iov)
4983 kfree(io->msg.iov);
4984 break;
Jens Axboebcda7ba2020-02-23 16:42:51 -07004985 case IORING_OP_RECV:
4986 if (req->flags & REQ_F_BUFFER_SELECTED)
4987 kfree(req->sr_msg.kbuf);
4988 break;
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03004989 case IORING_OP_OPENAT:
4990 case IORING_OP_OPENAT2:
4991 case IORING_OP_STATX:
4992 putname(req->open.filename);
4993 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03004994 case IORING_OP_SPLICE:
4995 io_put_file(req, req->splice.file_in,
4996 (req->splice.flags & SPLICE_F_FD_IN_FIXED));
4997 break;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004998 }
4999
5000 req->flags &= ~REQ_F_NEED_CLEANUP;
5001}
5002
Jens Axboe3529d8c2019-12-19 18:24:38 -07005003static int io_issue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Pavel Begunkov014db002020-03-03 21:33:12 +03005004 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005005{
Jackie Liua197f662019-11-08 08:09:12 -07005006 struct io_ring_ctx *ctx = req->ctx;
Jens Axboed625c6e2019-12-17 19:53:05 -07005007 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005008
Jens Axboed625c6e2019-12-17 19:53:05 -07005009 switch (req->opcode) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07005010 case IORING_OP_NOP:
Jens Axboe78e19bb2019-11-06 15:21:34 -07005011 ret = io_nop(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005012 break;
5013 case IORING_OP_READV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005014 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07005015 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005016 if (sqe) {
5017 ret = io_read_prep(req, sqe, force_nonblock);
5018 if (ret < 0)
5019 break;
5020 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005021 ret = io_read(req, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005022 break;
5023 case IORING_OP_WRITEV:
Jens Axboeedafcce2019-01-09 09:16:05 -07005024 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07005025 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005026 if (sqe) {
5027 ret = io_write_prep(req, sqe, force_nonblock);
5028 if (ret < 0)
5029 break;
5030 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005031 ret = io_write(req, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005032 break;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07005033 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005034 if (sqe) {
5035 ret = io_prep_fsync(req, sqe);
5036 if (ret < 0)
5037 break;
5038 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005039 ret = io_fsync(req, force_nonblock);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07005040 break;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005041 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005042 if (sqe) {
5043 ret = io_poll_add_prep(req, sqe);
5044 if (ret)
5045 break;
5046 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005047 ret = io_poll_add(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005048 break;
5049 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005050 if (sqe) {
5051 ret = io_poll_remove_prep(req, sqe);
5052 if (ret < 0)
5053 break;
5054 }
Jens Axboefc4df992019-12-10 14:38:45 -07005055 ret = io_poll_remove(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005056 break;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06005057 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005058 if (sqe) {
5059 ret = io_prep_sfr(req, sqe);
5060 if (ret < 0)
5061 break;
5062 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005063 ret = io_sync_file_range(req, force_nonblock);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06005064 break;
Jens Axboe0fa03c62019-04-19 13:34:07 -06005065 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005066 case IORING_OP_SEND:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005067 if (sqe) {
5068 ret = io_sendmsg_prep(req, sqe);
5069 if (ret < 0)
5070 break;
5071 }
Jens Axboefddafac2020-01-04 20:19:44 -07005072 if (req->opcode == IORING_OP_SENDMSG)
Pavel Begunkov014db002020-03-03 21:33:12 +03005073 ret = io_sendmsg(req, force_nonblock);
Jens Axboefddafac2020-01-04 20:19:44 -07005074 else
Pavel Begunkov014db002020-03-03 21:33:12 +03005075 ret = io_send(req, force_nonblock);
Jens Axboe0fa03c62019-04-19 13:34:07 -06005076 break;
Jens Axboeaa1fa282019-04-19 13:38:09 -06005077 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005078 case IORING_OP_RECV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005079 if (sqe) {
5080 ret = io_recvmsg_prep(req, sqe);
5081 if (ret)
5082 break;
5083 }
Jens Axboefddafac2020-01-04 20:19:44 -07005084 if (req->opcode == IORING_OP_RECVMSG)
Pavel Begunkov014db002020-03-03 21:33:12 +03005085 ret = io_recvmsg(req, force_nonblock);
Jens Axboefddafac2020-01-04 20:19:44 -07005086 else
Pavel Begunkov014db002020-03-03 21:33:12 +03005087 ret = io_recv(req, force_nonblock);
Jens Axboeaa1fa282019-04-19 13:38:09 -06005088 break;
Jens Axboe5262f562019-09-17 12:26:57 -06005089 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005090 if (sqe) {
5091 ret = io_timeout_prep(req, sqe, false);
5092 if (ret)
5093 break;
5094 }
Jens Axboefc4df992019-12-10 14:38:45 -07005095 ret = io_timeout(req);
Jens Axboe5262f562019-09-17 12:26:57 -06005096 break;
Jens Axboe11365042019-10-16 09:08:32 -06005097 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005098 if (sqe) {
5099 ret = io_timeout_remove_prep(req, sqe);
5100 if (ret)
5101 break;
5102 }
Jens Axboefc4df992019-12-10 14:38:45 -07005103 ret = io_timeout_remove(req);
Jens Axboe11365042019-10-16 09:08:32 -06005104 break;
Jens Axboe17f2fe32019-10-17 14:42:58 -06005105 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005106 if (sqe) {
5107 ret = io_accept_prep(req, sqe);
5108 if (ret)
5109 break;
5110 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005111 ret = io_accept(req, force_nonblock);
Jens Axboe17f2fe32019-10-17 14:42:58 -06005112 break;
Jens Axboef8e85cf2019-11-23 14:24:24 -07005113 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005114 if (sqe) {
5115 ret = io_connect_prep(req, sqe);
5116 if (ret)
5117 break;
5118 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005119 ret = io_connect(req, force_nonblock);
Jens Axboef8e85cf2019-11-23 14:24:24 -07005120 break;
Jens Axboe62755e32019-10-28 21:49:21 -06005121 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005122 if (sqe) {
5123 ret = io_async_cancel_prep(req, sqe);
5124 if (ret)
5125 break;
5126 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005127 ret = io_async_cancel(req);
Jens Axboe62755e32019-10-28 21:49:21 -06005128 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07005129 case IORING_OP_FALLOCATE:
5130 if (sqe) {
5131 ret = io_fallocate_prep(req, sqe);
5132 if (ret)
5133 break;
5134 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005135 ret = io_fallocate(req, force_nonblock);
Jens Axboed63d1b52019-12-10 10:38:56 -07005136 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07005137 case IORING_OP_OPENAT:
5138 if (sqe) {
5139 ret = io_openat_prep(req, sqe);
5140 if (ret)
5141 break;
5142 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005143 ret = io_openat(req, force_nonblock);
Jens Axboe15b71ab2019-12-11 11:20:36 -07005144 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07005145 case IORING_OP_CLOSE:
5146 if (sqe) {
5147 ret = io_close_prep(req, sqe);
5148 if (ret)
5149 break;
5150 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005151 ret = io_close(req, force_nonblock);
Jens Axboeb5dba592019-12-11 14:02:38 -07005152 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005153 case IORING_OP_FILES_UPDATE:
5154 if (sqe) {
5155 ret = io_files_update_prep(req, sqe);
5156 if (ret)
5157 break;
5158 }
5159 ret = io_files_update(req, force_nonblock);
5160 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07005161 case IORING_OP_STATX:
5162 if (sqe) {
5163 ret = io_statx_prep(req, sqe);
5164 if (ret)
5165 break;
5166 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005167 ret = io_statx(req, force_nonblock);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07005168 break;
Jens Axboe4840e412019-12-25 22:03:45 -07005169 case IORING_OP_FADVISE:
5170 if (sqe) {
5171 ret = io_fadvise_prep(req, sqe);
5172 if (ret)
5173 break;
5174 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005175 ret = io_fadvise(req, force_nonblock);
Jens Axboe4840e412019-12-25 22:03:45 -07005176 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07005177 case IORING_OP_MADVISE:
5178 if (sqe) {
5179 ret = io_madvise_prep(req, sqe);
5180 if (ret)
5181 break;
5182 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005183 ret = io_madvise(req, force_nonblock);
Jens Axboec1ca7572019-12-25 22:18:28 -07005184 break;
Jens Axboecebdb982020-01-08 17:59:24 -07005185 case IORING_OP_OPENAT2:
5186 if (sqe) {
5187 ret = io_openat2_prep(req, sqe);
5188 if (ret)
5189 break;
5190 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005191 ret = io_openat2(req, force_nonblock);
Jens Axboecebdb982020-01-08 17:59:24 -07005192 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07005193 case IORING_OP_EPOLL_CTL:
5194 if (sqe) {
5195 ret = io_epoll_ctl_prep(req, sqe);
5196 if (ret)
5197 break;
5198 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005199 ret = io_epoll_ctl(req, force_nonblock);
Jens Axboe3e4827b2020-01-08 15:18:09 -07005200 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005201 case IORING_OP_SPLICE:
5202 if (sqe) {
5203 ret = io_splice_prep(req, sqe);
5204 if (ret < 0)
5205 break;
5206 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005207 ret = io_splice(req, force_nonblock);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005208 break;
Jens Axboeddf0322d2020-02-23 16:41:33 -07005209 case IORING_OP_PROVIDE_BUFFERS:
5210 if (sqe) {
5211 ret = io_provide_buffers_prep(req, sqe);
5212 if (ret)
5213 break;
5214 }
5215 ret = io_provide_buffers(req, force_nonblock);
5216 break;
Jens Axboe067524e2020-03-02 16:32:28 -07005217 case IORING_OP_REMOVE_BUFFERS:
5218 if (sqe) {
5219 ret = io_remove_buffers_prep(req, sqe);
5220 if (ret)
5221 break;
5222 }
5223 ret = io_remove_buffers(req, force_nonblock);
5224 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005225 default:
5226 ret = -EINVAL;
5227 break;
5228 }
5229
Jens Axboedef596e2019-01-09 08:59:42 -07005230 if (ret)
5231 return ret;
5232
5233 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboe11ba8202020-01-15 21:51:17 -07005234 const bool in_async = io_wq_current_is_worker();
5235
Jens Axboe9e645e112019-05-10 16:07:28 -06005236 if (req->result == -EAGAIN)
Jens Axboedef596e2019-01-09 08:59:42 -07005237 return -EAGAIN;
5238
Jens Axboe11ba8202020-01-15 21:51:17 -07005239 /* workqueue context doesn't hold uring_lock, grab it now */
5240 if (in_async)
5241 mutex_lock(&ctx->uring_lock);
5242
Jens Axboedef596e2019-01-09 08:59:42 -07005243 io_iopoll_req_issued(req);
Jens Axboe11ba8202020-01-15 21:51:17 -07005244
5245 if (in_async)
5246 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07005247 }
5248
5249 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005250}
5251
Jens Axboe561fb042019-10-24 07:25:42 -06005252static void io_wq_submit_work(struct io_wq_work **workptr)
Jens Axboe31b51512019-01-18 22:56:34 -07005253{
Jens Axboe561fb042019-10-24 07:25:42 -06005254 struct io_wq_work *work = *workptr;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005255 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboe561fb042019-10-24 07:25:42 -06005256 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005257
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07005258 /* if NO_CANCEL is set, we must still run the work */
5259 if ((work->flags & (IO_WQ_WORK_CANCEL|IO_WQ_WORK_NO_CANCEL)) ==
5260 IO_WQ_WORK_CANCEL) {
Jens Axboe561fb042019-10-24 07:25:42 -06005261 ret = -ECANCELED;
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07005262 }
Jens Axboe31b51512019-01-18 22:56:34 -07005263
Jens Axboe561fb042019-10-24 07:25:42 -06005264 if (!ret) {
Jens Axboe561fb042019-10-24 07:25:42 -06005265 do {
Pavel Begunkov014db002020-03-03 21:33:12 +03005266 ret = io_issue_sqe(req, NULL, false);
Jens Axboe561fb042019-10-24 07:25:42 -06005267 /*
5268 * We can get EAGAIN for polled IO even though we're
5269 * forcing a sync submission from here, since we can't
5270 * wait for request slots on the block side.
5271 */
5272 if (ret != -EAGAIN)
5273 break;
5274 cond_resched();
5275 } while (1);
5276 }
Jens Axboe31b51512019-01-18 22:56:34 -07005277
Jens Axboe561fb042019-10-24 07:25:42 -06005278 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005279 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07005280 io_cqring_add_event(req, ret);
Jens Axboe817869d2019-04-30 14:44:05 -06005281 io_put_req(req);
Jens Axboeedafcce2019-01-09 09:16:05 -07005282 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07005283
Pavel Begunkove9fd9392020-03-04 16:14:12 +03005284 io_steal_work(req, workptr);
Jens Axboe31b51512019-01-18 22:56:34 -07005285}
Jens Axboe2b188cc2019-01-07 10:46:33 -07005286
Jens Axboe15b71ab2019-12-11 11:20:36 -07005287static int io_req_needs_file(struct io_kiocb *req, int fd)
Jens Axboe9e3aa612019-12-11 15:55:43 -07005288{
Jens Axboed3656342019-12-18 09:50:26 -07005289 if (!io_op_defs[req->opcode].needs_file)
Jens Axboe9e3aa612019-12-11 15:55:43 -07005290 return 0;
Jens Axboe0b5faf62020-02-06 21:42:51 -07005291 if ((fd == -1 || fd == AT_FDCWD) && io_op_defs[req->opcode].fd_non_neg)
Jens Axboed3656342019-12-18 09:50:26 -07005292 return 0;
5293 return 1;
Jens Axboe09bb8392019-03-13 12:39:28 -06005294}
5295
Jens Axboe65e19f52019-10-26 07:20:21 -06005296static inline struct file *io_file_from_index(struct io_ring_ctx *ctx,
5297 int index)
Jens Axboe09bb8392019-03-13 12:39:28 -06005298{
Jens Axboe65e19f52019-10-26 07:20:21 -06005299 struct fixed_file_table *table;
5300
Jens Axboe05f3fb32019-12-09 11:22:50 -07005301 table = &ctx->file_data->table[index >> IORING_FILE_TABLE_SHIFT];
5302 return table->files[index & IORING_FILE_TABLE_MASK];;
Jens Axboe65e19f52019-10-26 07:20:21 -06005303}
5304
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005305static int io_file_get(struct io_submit_state *state, struct io_kiocb *req,
5306 int fd, struct file **out_file, bool fixed)
5307{
5308 struct io_ring_ctx *ctx = req->ctx;
5309 struct file *file;
5310
5311 if (fixed) {
5312 if (unlikely(!ctx->file_data ||
5313 (unsigned) fd >= ctx->nr_user_files))
5314 return -EBADF;
5315 fd = array_index_nospec(fd, ctx->nr_user_files);
5316 file = io_file_from_index(ctx, fd);
5317 if (!file)
5318 return -EBADF;
5319 percpu_ref_get(&ctx->file_data->refs);
5320 } else {
5321 trace_io_uring_file_get(ctx, fd);
5322 file = __io_file_get(state, fd);
5323 if (unlikely(!file))
5324 return -EBADF;
5325 }
5326
5327 *out_file = file;
5328 return 0;
5329}
5330
Jens Axboe3529d8c2019-12-19 18:24:38 -07005331static int io_req_set_file(struct io_submit_state *state, struct io_kiocb *req,
5332 const struct io_uring_sqe *sqe)
Jens Axboe09bb8392019-03-13 12:39:28 -06005333{
5334 unsigned flags;
Jens Axboed3656342019-12-18 09:50:26 -07005335 int fd;
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005336 bool fixed;
Jens Axboe09bb8392019-03-13 12:39:28 -06005337
Jens Axboe3529d8c2019-12-19 18:24:38 -07005338 flags = READ_ONCE(sqe->flags);
5339 fd = READ_ONCE(sqe->fd);
Jens Axboe09bb8392019-03-13 12:39:28 -06005340
Jens Axboed3656342019-12-18 09:50:26 -07005341 if (!io_req_needs_file(req, fd))
5342 return 0;
Jens Axboe09bb8392019-03-13 12:39:28 -06005343
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005344 fixed = (flags & IOSQE_FIXED_FILE);
5345 if (unlikely(!fixed && req->needs_fixed_file))
5346 return -EBADF;
Jens Axboe09bb8392019-03-13 12:39:28 -06005347
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005348 return io_file_get(state, req, fd, &req->file, fixed);
Jens Axboe09bb8392019-03-13 12:39:28 -06005349}
5350
Jackie Liua197f662019-11-08 08:09:12 -07005351static int io_grab_files(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005352{
Jens Axboefcb323c2019-10-24 12:39:47 -06005353 int ret = -EBADF;
Jackie Liua197f662019-11-08 08:09:12 -07005354 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06005355
Jens Axboef86cd202020-01-29 13:46:44 -07005356 if (req->work.files)
5357 return 0;
Pavel Begunkovb14cca02020-01-17 04:45:59 +03005358 if (!ctx->ring_file)
Jens Axboeb5dba592019-12-11 14:02:38 -07005359 return -EBADF;
5360
Jens Axboefcb323c2019-10-24 12:39:47 -06005361 rcu_read_lock();
5362 spin_lock_irq(&ctx->inflight_lock);
5363 /*
5364 * We use the f_ops->flush() handler to ensure that we can flush
5365 * out work accessing these files if the fd is closed. Check if
5366 * the fd has changed since we started down this path, and disallow
5367 * this operation if it has.
5368 */
Pavel Begunkovb14cca02020-01-17 04:45:59 +03005369 if (fcheck(ctx->ring_fd) == ctx->ring_file) {
Jens Axboefcb323c2019-10-24 12:39:47 -06005370 list_add(&req->inflight_entry, &ctx->inflight_list);
5371 req->flags |= REQ_F_INFLIGHT;
5372 req->work.files = current->files;
5373 ret = 0;
5374 }
5375 spin_unlock_irq(&ctx->inflight_lock);
5376 rcu_read_unlock();
5377
5378 return ret;
5379}
5380
Jens Axboe2665abf2019-11-05 12:40:47 -07005381static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer)
5382{
Jens Axboead8a48a2019-11-15 08:49:11 -07005383 struct io_timeout_data *data = container_of(timer,
5384 struct io_timeout_data, timer);
5385 struct io_kiocb *req = data->req;
Jens Axboe2665abf2019-11-05 12:40:47 -07005386 struct io_ring_ctx *ctx = req->ctx;
5387 struct io_kiocb *prev = NULL;
5388 unsigned long flags;
Jens Axboe2665abf2019-11-05 12:40:47 -07005389
5390 spin_lock_irqsave(&ctx->completion_lock, flags);
5391
5392 /*
5393 * We don't expect the list to be empty, that will only happen if we
5394 * race with the completion of the linked work.
5395 */
Pavel Begunkov44932332019-12-05 16:16:35 +03005396 if (!list_empty(&req->link_list)) {
5397 prev = list_entry(req->link_list.prev, struct io_kiocb,
5398 link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07005399 if (refcount_inc_not_zero(&prev->refs)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03005400 list_del_init(&req->link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07005401 prev->flags &= ~REQ_F_LINK_TIMEOUT;
5402 } else
Jens Axboe76a46e02019-11-10 23:34:16 -07005403 prev = NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07005404 }
5405
5406 spin_unlock_irqrestore(&ctx->completion_lock, flags);
5407
5408 if (prev) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005409 req_set_fail_links(prev);
Pavel Begunkov014db002020-03-03 21:33:12 +03005410 io_async_find_and_cancel(ctx, req, prev->user_data, -ETIME);
Jens Axboe76a46e02019-11-10 23:34:16 -07005411 io_put_req(prev);
Jens Axboe47f46762019-11-09 17:43:02 -07005412 } else {
5413 io_cqring_add_event(req, -ETIME);
5414 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07005415 }
Jens Axboe2665abf2019-11-05 12:40:47 -07005416 return HRTIMER_NORESTART;
5417}
5418
Jens Axboead8a48a2019-11-15 08:49:11 -07005419static void io_queue_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07005420{
Jens Axboe76a46e02019-11-10 23:34:16 -07005421 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07005422
Jens Axboe76a46e02019-11-10 23:34:16 -07005423 /*
5424 * If the list is now empty, then our linked request finished before
5425 * we got a chance to setup the timer
5426 */
5427 spin_lock_irq(&ctx->completion_lock);
Pavel Begunkov44932332019-12-05 16:16:35 +03005428 if (!list_empty(&req->link_list)) {
Jens Axboe2d283902019-12-04 11:08:05 -07005429 struct io_timeout_data *data = &req->io->timeout;
Jens Axboe94ae5e72019-11-14 19:39:52 -07005430
Jens Axboead8a48a2019-11-15 08:49:11 -07005431 data->timer.function = io_link_timeout_fn;
5432 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts),
5433 data->mode);
Jens Axboe2665abf2019-11-05 12:40:47 -07005434 }
Jens Axboe76a46e02019-11-10 23:34:16 -07005435 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe2665abf2019-11-05 12:40:47 -07005436
Jens Axboe2665abf2019-11-05 12:40:47 -07005437 /* drop submission reference */
Jens Axboe76a46e02019-11-10 23:34:16 -07005438 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07005439}
5440
Jens Axboead8a48a2019-11-15 08:49:11 -07005441static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07005442{
5443 struct io_kiocb *nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005444
Jens Axboe2665abf2019-11-05 12:40:47 -07005445 if (!(req->flags & REQ_F_LINK))
5446 return NULL;
Jens Axboed7718a92020-02-14 22:23:12 -07005447 /* for polled retry, if flag is set, we already went through here */
5448 if (req->flags & REQ_F_POLLED)
5449 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07005450
Pavel Begunkov44932332019-12-05 16:16:35 +03005451 nxt = list_first_entry_or_null(&req->link_list, struct io_kiocb,
5452 link_list);
Jens Axboed625c6e2019-12-17 19:53:05 -07005453 if (!nxt || nxt->opcode != IORING_OP_LINK_TIMEOUT)
Jens Axboe76a46e02019-11-10 23:34:16 -07005454 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07005455
Jens Axboe76a46e02019-11-10 23:34:16 -07005456 req->flags |= REQ_F_LINK_TIMEOUT;
Jens Axboe76a46e02019-11-10 23:34:16 -07005457 return nxt;
Jens Axboe2665abf2019-11-05 12:40:47 -07005458}
5459
Jens Axboe3529d8c2019-12-19 18:24:38 -07005460static void __io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005461{
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005462 struct io_kiocb *linked_timeout;
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005463 struct io_kiocb *nxt;
Jens Axboe193155c2020-02-22 23:22:19 -07005464 const struct cred *old_creds = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005465 int ret;
5466
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005467again:
5468 linked_timeout = io_prep_linked_timeout(req);
5469
Jens Axboe193155c2020-02-22 23:22:19 -07005470 if (req->work.creds && req->work.creds != current_cred()) {
5471 if (old_creds)
5472 revert_creds(old_creds);
5473 if (old_creds == req->work.creds)
5474 old_creds = NULL; /* restored original creds */
5475 else
5476 old_creds = override_creds(req->work.creds);
5477 }
5478
Pavel Begunkov014db002020-03-03 21:33:12 +03005479 ret = io_issue_sqe(req, sqe, true);
Jens Axboe491381ce2019-10-17 09:20:46 -06005480
5481 /*
5482 * We async punt it if the file wasn't marked NOWAIT, or if the file
5483 * doesn't support non-blocking read/write attempts
5484 */
5485 if (ret == -EAGAIN && (!(req->flags & REQ_F_NOWAIT) ||
5486 (req->flags & REQ_F_MUST_PUNT))) {
Jens Axboed7718a92020-02-14 22:23:12 -07005487 if (io_arm_poll_handler(req)) {
5488 if (linked_timeout)
5489 io_queue_linked_timeout(linked_timeout);
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005490 goto exit;
Jens Axboed7718a92020-02-14 22:23:12 -07005491 }
Pavel Begunkov86a761f2020-01-22 23:09:36 +03005492punt:
Jens Axboef86cd202020-01-29 13:46:44 -07005493 if (io_op_defs[req->opcode].file_table) {
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03005494 ret = io_grab_files(req);
5495 if (ret)
5496 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005497 }
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03005498
5499 /*
5500 * Queued up for async execution, worker will release
5501 * submit reference when the iocb is actually submitted.
5502 */
5503 io_queue_async_work(req);
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005504 goto exit;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005505 }
Jens Axboee65ef562019-03-12 10:16:44 -06005506
Jens Axboefcb323c2019-10-24 12:39:47 -06005507err:
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005508 nxt = NULL;
Jens Axboee65ef562019-03-12 10:16:44 -06005509 /* drop submission reference */
Jens Axboe2a44f462020-02-25 13:25:41 -07005510 io_put_req_find_next(req, &nxt);
Jens Axboee65ef562019-03-12 10:16:44 -06005511
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03005512 if (linked_timeout) {
Jens Axboe76a46e02019-11-10 23:34:16 -07005513 if (!ret)
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03005514 io_queue_linked_timeout(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07005515 else
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03005516 io_put_req(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07005517 }
5518
Jens Axboee65ef562019-03-12 10:16:44 -06005519 /* and drop final reference, if we failed */
Jens Axboe9e645e112019-05-10 16:07:28 -06005520 if (ret) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07005521 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005522 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06005523 io_put_req(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06005524 }
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005525 if (nxt) {
5526 req = nxt;
Pavel Begunkov86a761f2020-01-22 23:09:36 +03005527
5528 if (req->flags & REQ_F_FORCE_ASYNC)
5529 goto punt;
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005530 goto again;
5531 }
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005532exit:
Jens Axboe193155c2020-02-22 23:22:19 -07005533 if (old_creds)
5534 revert_creds(old_creds);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005535}
5536
Jens Axboe3529d8c2019-12-19 18:24:38 -07005537static void io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jackie Liu4fe2c962019-09-09 20:50:40 +08005538{
5539 int ret;
5540
Jens Axboe3529d8c2019-12-19 18:24:38 -07005541 ret = io_req_defer(req, sqe);
Jackie Liu4fe2c962019-09-09 20:50:40 +08005542 if (ret) {
5543 if (ret != -EIOCBQUEUED) {
Pavel Begunkov11185912020-01-22 23:09:35 +03005544fail_req:
Jens Axboe78e19bb2019-11-06 15:21:34 -07005545 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005546 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07005547 io_double_put_req(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08005548 }
Pavel Begunkov25508782019-12-30 21:24:47 +03005549 } else if (req->flags & REQ_F_FORCE_ASYNC) {
Pavel Begunkov11185912020-01-22 23:09:35 +03005550 ret = io_req_defer_prep(req, sqe);
5551 if (unlikely(ret < 0))
5552 goto fail_req;
Jens Axboece35a472019-12-17 08:04:44 -07005553 /*
5554 * Never try inline submit of IOSQE_ASYNC is set, go straight
5555 * to async execution.
5556 */
5557 req->work.flags |= IO_WQ_WORK_CONCURRENT;
5558 io_queue_async_work(req);
5559 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07005560 __io_queue_sqe(req, sqe);
Jens Axboece35a472019-12-17 08:04:44 -07005561 }
Jackie Liu4fe2c962019-09-09 20:50:40 +08005562}
5563
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005564static inline void io_queue_link_head(struct io_kiocb *req)
Jackie Liu4fe2c962019-09-09 20:50:40 +08005565{
Jens Axboe94ae5e72019-11-14 19:39:52 -07005566 if (unlikely(req->flags & REQ_F_FAIL_LINK)) {
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005567 io_cqring_add_event(req, -ECANCELED);
5568 io_double_put_req(req);
5569 } else
Jens Axboe3529d8c2019-12-19 18:24:38 -07005570 io_queue_sqe(req, NULL);
Jackie Liu4fe2c962019-09-09 20:50:40 +08005571}
5572
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005573#define SQE_VALID_FLAGS (IOSQE_FIXED_FILE|IOSQE_IO_DRAIN|IOSQE_IO_LINK| \
Jens Axboebcda7ba2020-02-23 16:42:51 -07005574 IOSQE_IO_HARDLINK | IOSQE_ASYNC | \
5575 IOSQE_BUFFER_SELECT)
Jens Axboe9e645e112019-05-10 16:07:28 -06005576
Jens Axboe3529d8c2019-12-19 18:24:38 -07005577static bool io_submit_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
5578 struct io_submit_state *state, struct io_kiocb **link)
Jens Axboe9e645e112019-05-10 16:07:28 -06005579{
Jackie Liua197f662019-11-08 08:09:12 -07005580 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005581 unsigned int sqe_flags;
Jens Axboe75c6a032020-01-28 10:15:23 -07005582 int ret, id;
Jens Axboe9e645e112019-05-10 16:07:28 -06005583
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005584 sqe_flags = READ_ONCE(sqe->flags);
Jens Axboe9e645e112019-05-10 16:07:28 -06005585
5586 /* enforce forwards compatibility on users */
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005587 if (unlikely(sqe_flags & ~SQE_VALID_FLAGS)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06005588 ret = -EINVAL;
Pavel Begunkov196be952019-11-07 01:41:06 +03005589 goto err_req;
Jens Axboe9e645e112019-05-10 16:07:28 -06005590 }
5591
Jens Axboebcda7ba2020-02-23 16:42:51 -07005592 if ((sqe_flags & IOSQE_BUFFER_SELECT) &&
5593 !io_op_defs[req->opcode].buffer_select) {
5594 ret = -EOPNOTSUPP;
5595 goto err_req;
5596 }
5597
Jens Axboe75c6a032020-01-28 10:15:23 -07005598 id = READ_ONCE(sqe->personality);
5599 if (id) {
Jens Axboe193155c2020-02-22 23:22:19 -07005600 req->work.creds = idr_find(&ctx->personality_idr, id);
5601 if (unlikely(!req->work.creds)) {
Jens Axboe75c6a032020-01-28 10:15:23 -07005602 ret = -EINVAL;
5603 goto err_req;
5604 }
Jens Axboe193155c2020-02-22 23:22:19 -07005605 get_cred(req->work.creds);
Jens Axboe75c6a032020-01-28 10:15:23 -07005606 }
5607
Pavel Begunkov6b47ee62020-01-18 20:22:41 +03005608 /* same numerical values with corresponding REQ_F_*, safe to copy */
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005609 req->flags |= sqe_flags & (IOSQE_IO_DRAIN | IOSQE_IO_HARDLINK |
Jens Axboebcda7ba2020-02-23 16:42:51 -07005610 IOSQE_ASYNC | IOSQE_FIXED_FILE |
5611 IOSQE_BUFFER_SELECT);
Jens Axboe9e645e112019-05-10 16:07:28 -06005612
Jens Axboe3529d8c2019-12-19 18:24:38 -07005613 ret = io_req_set_file(state, req, sqe);
Jens Axboe9e645e112019-05-10 16:07:28 -06005614 if (unlikely(ret)) {
5615err_req:
Jens Axboe78e19bb2019-11-06 15:21:34 -07005616 io_cqring_add_event(req, ret);
5617 io_double_put_req(req);
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03005618 return false;
Jens Axboe9e645e112019-05-10 16:07:28 -06005619 }
5620
Jens Axboe9e645e112019-05-10 16:07:28 -06005621 /*
5622 * If we already have a head request, queue this one for async
5623 * submittal once the head completes. If we don't have a head but
5624 * IOSQE_IO_LINK is set in the sqe, start a new head. This one will be
5625 * submitted sync once the chain is complete. If none of those
5626 * conditions are true (normal request), then just queue it.
5627 */
5628 if (*link) {
Pavel Begunkov9d763772019-12-17 02:22:07 +03005629 struct io_kiocb *head = *link;
Jens Axboe9e645e112019-05-10 16:07:28 -06005630
Pavel Begunkov8cdf2192020-01-25 00:40:24 +03005631 /*
5632 * Taking sequential execution of a link, draining both sides
5633 * of the link also fullfils IOSQE_IO_DRAIN semantics for all
5634 * requests in the link. So, it drains the head and the
5635 * next after the link request. The last one is done via
5636 * drain_next flag to persist the effect across calls.
5637 */
Pavel Begunkov711be032020-01-17 03:57:59 +03005638 if (sqe_flags & IOSQE_IO_DRAIN) {
5639 head->flags |= REQ_F_IO_DRAIN;
5640 ctx->drain_next = 1;
5641 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07005642 if (io_alloc_async_ctx(req)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06005643 ret = -EAGAIN;
5644 goto err_req;
5645 }
5646
Jens Axboe3529d8c2019-12-19 18:24:38 -07005647 ret = io_req_defer_prep(req, sqe);
Jens Axboe2d283902019-12-04 11:08:05 -07005648 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005649 /* fail even hard links since we don't submit */
Pavel Begunkov9d763772019-12-17 02:22:07 +03005650 head->flags |= REQ_F_FAIL_LINK;
Jens Axboef67676d2019-12-02 11:03:47 -07005651 goto err_req;
Jens Axboe2d283902019-12-04 11:08:05 -07005652 }
Pavel Begunkov9d763772019-12-17 02:22:07 +03005653 trace_io_uring_link(ctx, req, head);
5654 list_add_tail(&req->link_list, &head->link_list);
Jens Axboe9e645e112019-05-10 16:07:28 -06005655
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005656 /* last request of a link, enqueue the link */
5657 if (!(sqe_flags & (IOSQE_IO_LINK|IOSQE_IO_HARDLINK))) {
5658 io_queue_link_head(head);
5659 *link = NULL;
5660 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005661 } else {
Pavel Begunkov711be032020-01-17 03:57:59 +03005662 if (unlikely(ctx->drain_next)) {
5663 req->flags |= REQ_F_IO_DRAIN;
5664 req->ctx->drain_next = 0;
5665 }
5666 if (sqe_flags & (IOSQE_IO_LINK|IOSQE_IO_HARDLINK)) {
5667 req->flags |= REQ_F_LINK;
Pavel Begunkov711be032020-01-17 03:57:59 +03005668 INIT_LIST_HEAD(&req->link_list);
5669 ret = io_req_defer_prep(req, sqe);
5670 if (ret)
5671 req->flags |= REQ_F_FAIL_LINK;
5672 *link = req;
5673 } else {
5674 io_queue_sqe(req, sqe);
5675 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005676 }
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03005677
5678 return true;
Jens Axboe9e645e112019-05-10 16:07:28 -06005679}
5680
Jens Axboe9a56a232019-01-09 09:06:50 -07005681/*
5682 * Batched submission is done, ensure local IO is flushed out.
5683 */
5684static void io_submit_state_end(struct io_submit_state *state)
5685{
5686 blk_finish_plug(&state->plug);
Jens Axboe3d6770f2019-04-13 11:50:54 -06005687 io_file_put(state);
Jens Axboe2579f912019-01-09 09:10:43 -07005688 if (state->free_reqs)
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03005689 kmem_cache_free_bulk(req_cachep, state->free_reqs, state->reqs);
Jens Axboe9a56a232019-01-09 09:06:50 -07005690}
5691
5692/*
5693 * Start submission side cache.
5694 */
5695static void io_submit_state_start(struct io_submit_state *state,
Jackie Liu22efde52019-12-02 17:14:52 +08005696 unsigned int max_ios)
Jens Axboe9a56a232019-01-09 09:06:50 -07005697{
5698 blk_start_plug(&state->plug);
Jens Axboe2579f912019-01-09 09:10:43 -07005699 state->free_reqs = 0;
Jens Axboe9a56a232019-01-09 09:06:50 -07005700 state->file = NULL;
5701 state->ios_left = max_ios;
5702}
5703
Jens Axboe2b188cc2019-01-07 10:46:33 -07005704static void io_commit_sqring(struct io_ring_ctx *ctx)
5705{
Hristo Venev75b28af2019-08-26 17:23:46 +00005706 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005707
Pavel Begunkovcaf582c2019-12-30 21:24:46 +03005708 /*
5709 * Ensure any loads from the SQEs are done at this point,
5710 * since once we write the new head, the application could
5711 * write new data to them.
5712 */
5713 smp_store_release(&rings->sq.head, ctx->cached_sq_head);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005714}
5715
5716/*
Jens Axboe3529d8c2019-12-19 18:24:38 -07005717 * Fetch an sqe, if one is available. Note that sqe_ptr will point to memory
Jens Axboe2b188cc2019-01-07 10:46:33 -07005718 * that is mapped by userspace. This means that care needs to be taken to
5719 * ensure that reads are stable, as we cannot rely on userspace always
5720 * being a good citizen. If members of the sqe are validated and then later
5721 * used, it's important that those reads are done through READ_ONCE() to
5722 * prevent a re-load down the line.
5723 */
Jens Axboe3529d8c2019-12-19 18:24:38 -07005724static bool io_get_sqring(struct io_ring_ctx *ctx, struct io_kiocb *req,
5725 const struct io_uring_sqe **sqe_ptr)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005726{
Hristo Venev75b28af2019-08-26 17:23:46 +00005727 u32 *sq_array = ctx->sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005728 unsigned head;
5729
5730 /*
5731 * The cached sq head (or cq tail) serves two purposes:
5732 *
5733 * 1) allows us to batch the cost of updating the user visible
5734 * head updates.
5735 * 2) allows the kernel side to track the head on its own, even
5736 * though the application is the one updating it.
5737 */
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005738 head = READ_ONCE(sq_array[ctx->cached_sq_head & ctx->sq_mask]);
Pavel Begunkov9835d6f2019-11-21 21:24:56 +03005739 if (likely(head < ctx->sq_entries)) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03005740 /*
5741 * All io need record the previous position, if LINK vs DARIN,
5742 * it can be used to mark the position of the first IO in the
5743 * link list.
5744 */
5745 req->sequence = ctx->cached_sq_head;
Jens Axboe3529d8c2019-12-19 18:24:38 -07005746 *sqe_ptr = &ctx->sq_sqes[head];
5747 req->opcode = READ_ONCE((*sqe_ptr)->opcode);
5748 req->user_data = READ_ONCE((*sqe_ptr)->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005749 ctx->cached_sq_head++;
5750 return true;
5751 }
5752
5753 /* drop invalid entries */
5754 ctx->cached_sq_head++;
Jens Axboe498ccd92019-10-25 10:04:25 -06005755 ctx->cached_sq_dropped++;
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005756 WRITE_ONCE(ctx->rings->sq_dropped, ctx->cached_sq_dropped);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005757 return false;
5758}
5759
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005760static int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr,
Pavel Begunkovae9428c2019-11-06 00:22:14 +03005761 struct file *ring_file, int ring_fd,
5762 struct mm_struct **mm, bool async)
Jens Axboe6c271ce2019-01-10 11:22:30 -07005763{
5764 struct io_submit_state state, *statep = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06005765 struct io_kiocb *link = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06005766 int i, submitted = 0;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005767 bool mm_fault = false;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005768
Jens Axboec4a2ed72019-11-21 21:01:26 -07005769 /* if we have a backlog and couldn't flush it all, return BUSY */
Jens Axboead3eb2c2019-12-18 17:12:20 -07005770 if (test_bit(0, &ctx->sq_check_overflow)) {
5771 if (!list_empty(&ctx->cq_overflow_list) &&
5772 !io_cqring_overflow_flush(ctx, false))
5773 return -EBUSY;
5774 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07005775
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005776 /* make sure SQ entry isn't read before tail */
5777 nr = min3(nr, ctx->sq_entries, io_sqring_entries(ctx));
Pavel Begunkov9ef4f122019-12-30 21:24:44 +03005778
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03005779 if (!percpu_ref_tryget_many(&ctx->refs, nr))
5780 return -EAGAIN;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005781
5782 if (nr > IO_PLUG_THRESHOLD) {
Jackie Liu22efde52019-12-02 17:14:52 +08005783 io_submit_state_start(&state, nr);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005784 statep = &state;
5785 }
5786
Pavel Begunkovb14cca02020-01-17 04:45:59 +03005787 ctx->ring_fd = ring_fd;
5788 ctx->ring_file = ring_file;
5789
Jens Axboe6c271ce2019-01-10 11:22:30 -07005790 for (i = 0; i < nr; i++) {
Jens Axboe3529d8c2019-12-19 18:24:38 -07005791 const struct io_uring_sqe *sqe;
Pavel Begunkov196be952019-11-07 01:41:06 +03005792 struct io_kiocb *req;
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005793 int err;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005794
Pavel Begunkov196be952019-11-07 01:41:06 +03005795 req = io_get_req(ctx, statep);
5796 if (unlikely(!req)) {
5797 if (!submitted)
5798 submitted = -EAGAIN;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005799 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06005800 }
Jens Axboe3529d8c2019-12-19 18:24:38 -07005801 if (!io_get_sqring(ctx, req, &sqe)) {
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03005802 __io_req_do_free(req);
Pavel Begunkov196be952019-11-07 01:41:06 +03005803 break;
5804 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005805
Jens Axboed3656342019-12-18 09:50:26 -07005806 /* will complete beyond this point, count as submitted */
5807 submitted++;
5808
5809 if (unlikely(req->opcode >= IORING_OP_LAST)) {
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005810 err = -EINVAL;
5811fail_req:
5812 io_cqring_add_event(req, err);
Jens Axboed3656342019-12-18 09:50:26 -07005813 io_double_put_req(req);
5814 break;
5815 }
5816
5817 if (io_op_defs[req->opcode].needs_mm && !*mm) {
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005818 mm_fault = mm_fault || !mmget_not_zero(ctx->sqo_mm);
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005819 if (unlikely(mm_fault)) {
5820 err = -EFAULT;
5821 goto fail_req;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005822 }
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005823 use_mm(ctx->sqo_mm);
5824 *mm = ctx->sqo_mm;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005825 }
5826
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03005827 req->needs_fixed_file = async;
Jens Axboe354420f2020-01-08 18:55:15 -07005828 trace_io_uring_submit_sqe(ctx, req->opcode, req->user_data,
5829 true, async);
Jens Axboe3529d8c2019-12-19 18:24:38 -07005830 if (!io_submit_sqe(req, sqe, statep, &link))
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03005831 break;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005832 }
5833
Pavel Begunkov9466f432020-01-25 22:34:01 +03005834 if (unlikely(submitted != nr)) {
5835 int ref_used = (submitted == -EAGAIN) ? 0 : submitted;
5836
5837 percpu_ref_put_many(&ctx->refs, nr - ref_used);
5838 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005839 if (link)
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005840 io_queue_link_head(link);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005841 if (statep)
5842 io_submit_state_end(&state);
5843
Pavel Begunkovae9428c2019-11-06 00:22:14 +03005844 /* Commit SQ ring head once we've consumed and submitted all SQEs */
5845 io_commit_sqring(ctx);
5846
Jens Axboe6c271ce2019-01-10 11:22:30 -07005847 return submitted;
5848}
5849
5850static int io_sq_thread(void *data)
5851{
Jens Axboe6c271ce2019-01-10 11:22:30 -07005852 struct io_ring_ctx *ctx = data;
5853 struct mm_struct *cur_mm = NULL;
Jens Axboe181e4482019-11-25 08:52:30 -07005854 const struct cred *old_cred;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005855 mm_segment_t old_fs;
5856 DEFINE_WAIT(wait);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005857 unsigned long timeout;
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005858 int ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005859
Jens Axboe206aefd2019-11-07 18:27:42 -07005860 complete(&ctx->completions[1]);
Jackie Liua4c0b3d2019-07-08 13:41:12 +08005861
Jens Axboe6c271ce2019-01-10 11:22:30 -07005862 old_fs = get_fs();
5863 set_fs(USER_DS);
Jens Axboe181e4482019-11-25 08:52:30 -07005864 old_cred = override_creds(ctx->creds);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005865
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005866 timeout = jiffies + ctx->sq_thread_idle;
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02005867 while (!kthread_should_park()) {
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005868 unsigned int to_submit;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005869
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005870 if (!list_empty(&ctx->poll_list)) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07005871 unsigned nr_events = 0;
5872
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005873 mutex_lock(&ctx->uring_lock);
5874 if (!list_empty(&ctx->poll_list))
5875 io_iopoll_getevents(ctx, &nr_events, 0);
5876 else
Jens Axboe6c271ce2019-01-10 11:22:30 -07005877 timeout = jiffies + ctx->sq_thread_idle;
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005878 mutex_unlock(&ctx->uring_lock);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005879 }
5880
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005881 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07005882
5883 /*
5884 * If submit got -EBUSY, flag us as needing the application
5885 * to enter the kernel to reap and flush events.
5886 */
5887 if (!to_submit || ret == -EBUSY) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07005888 /*
Stefano Garzarella7143b5a2020-02-21 16:42:16 +01005889 * Drop cur_mm before scheduling, we can't hold it for
5890 * long periods (or over schedule()). Do this before
5891 * adding ourselves to the waitqueue, as the unuse/drop
5892 * may sleep.
5893 */
5894 if (cur_mm) {
5895 unuse_mm(cur_mm);
5896 mmput(cur_mm);
5897 cur_mm = NULL;
5898 }
5899
5900 /*
Jens Axboe6c271ce2019-01-10 11:22:30 -07005901 * We're polling. If we're within the defined idle
5902 * period, then let us spin without work before going
Jens Axboec1edbf52019-11-10 16:56:04 -07005903 * to sleep. The exception is if we got EBUSY doing
5904 * more IO, we should wait for the application to
5905 * reap events and wake us up.
Jens Axboe6c271ce2019-01-10 11:22:30 -07005906 */
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005907 if (!list_empty(&ctx->poll_list) ||
Jens Axboedf069d82020-02-04 16:48:34 -07005908 (!time_after(jiffies, timeout) && ret != -EBUSY &&
5909 !percpu_ref_is_dying(&ctx->refs))) {
Jens Axboeb41e9852020-02-17 09:52:41 -07005910 if (current->task_works)
5911 task_work_run();
Jens Axboe9831a902019-09-19 09:48:55 -06005912 cond_resched();
Jens Axboe6c271ce2019-01-10 11:22:30 -07005913 continue;
5914 }
5915
Jens Axboe6c271ce2019-01-10 11:22:30 -07005916 prepare_to_wait(&ctx->sqo_wait, &wait,
5917 TASK_INTERRUPTIBLE);
5918
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005919 /*
5920 * While doing polled IO, before going to sleep, we need
5921 * to check if there are new reqs added to poll_list, it
5922 * is because reqs may have been punted to io worker and
5923 * will be added to poll_list later, hence check the
5924 * poll_list again.
5925 */
5926 if ((ctx->flags & IORING_SETUP_IOPOLL) &&
5927 !list_empty_careful(&ctx->poll_list)) {
5928 finish_wait(&ctx->sqo_wait, &wait);
5929 continue;
5930 }
5931
Jens Axboe6c271ce2019-01-10 11:22:30 -07005932 /* Tell userspace we may need a wakeup call */
Hristo Venev75b28af2019-08-26 17:23:46 +00005933 ctx->rings->sq_flags |= IORING_SQ_NEED_WAKEUP;
Stefan Bühler0d7bae62019-04-19 11:57:45 +02005934 /* make sure to read SQ tail after writing flags */
5935 smp_mb();
Jens Axboe6c271ce2019-01-10 11:22:30 -07005936
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005937 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07005938 if (!to_submit || ret == -EBUSY) {
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02005939 if (kthread_should_park()) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07005940 finish_wait(&ctx->sqo_wait, &wait);
5941 break;
5942 }
Jens Axboeb41e9852020-02-17 09:52:41 -07005943 if (current->task_works) {
5944 task_work_run();
5945 continue;
5946 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07005947 if (signal_pending(current))
5948 flush_signals(current);
5949 schedule();
5950 finish_wait(&ctx->sqo_wait, &wait);
5951
Hristo Venev75b28af2019-08-26 17:23:46 +00005952 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005953 continue;
5954 }
5955 finish_wait(&ctx->sqo_wait, &wait);
5956
Hristo Venev75b28af2019-08-26 17:23:46 +00005957 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005958 }
5959
Jens Axboe8a4955f2019-12-09 14:52:35 -07005960 mutex_lock(&ctx->uring_lock);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005961 ret = io_submit_sqes(ctx, to_submit, NULL, -1, &cur_mm, true);
Jens Axboe8a4955f2019-12-09 14:52:35 -07005962 mutex_unlock(&ctx->uring_lock);
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005963 timeout = jiffies + ctx->sq_thread_idle;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005964 }
5965
Jens Axboeb41e9852020-02-17 09:52:41 -07005966 if (current->task_works)
5967 task_work_run();
5968
Jens Axboe6c271ce2019-01-10 11:22:30 -07005969 set_fs(old_fs);
5970 if (cur_mm) {
5971 unuse_mm(cur_mm);
5972 mmput(cur_mm);
5973 }
Jens Axboe181e4482019-11-25 08:52:30 -07005974 revert_creds(old_cred);
Jens Axboe06058632019-04-13 09:26:03 -06005975
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02005976 kthread_parkme();
Jens Axboe06058632019-04-13 09:26:03 -06005977
Jens Axboe6c271ce2019-01-10 11:22:30 -07005978 return 0;
5979}
5980
Jens Axboebda52162019-09-24 13:47:15 -06005981struct io_wait_queue {
5982 struct wait_queue_entry wq;
5983 struct io_ring_ctx *ctx;
5984 unsigned to_wait;
5985 unsigned nr_timeouts;
5986};
5987
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005988static inline bool io_should_wake(struct io_wait_queue *iowq, bool noflush)
Jens Axboebda52162019-09-24 13:47:15 -06005989{
5990 struct io_ring_ctx *ctx = iowq->ctx;
5991
5992 /*
Brian Gianforcarod195a662019-12-13 03:09:50 -08005993 * Wake up if we have enough events, or if a timeout occurred since we
Jens Axboebda52162019-09-24 13:47:15 -06005994 * started waiting. For timeouts, we always want to return to userspace,
5995 * regardless of event count.
5996 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005997 return io_cqring_events(ctx, noflush) >= iowq->to_wait ||
Jens Axboebda52162019-09-24 13:47:15 -06005998 atomic_read(&ctx->cq_timeouts) != iowq->nr_timeouts;
5999}
6000
6001static int io_wake_function(struct wait_queue_entry *curr, unsigned int mode,
6002 int wake_flags, void *key)
6003{
6004 struct io_wait_queue *iowq = container_of(curr, struct io_wait_queue,
6005 wq);
6006
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006007 /* use noflush == true, as we can't safely rely on locking context */
6008 if (!io_should_wake(iowq, true))
Jens Axboebda52162019-09-24 13:47:15 -06006009 return -1;
6010
6011 return autoremove_wake_function(curr, mode, wake_flags, key);
6012}
6013
Jens Axboe2b188cc2019-01-07 10:46:33 -07006014/*
6015 * Wait until events become available, if we don't already have some. The
6016 * application must reap them itself, as they reside on the shared cq ring.
6017 */
6018static int io_cqring_wait(struct io_ring_ctx *ctx, int min_events,
6019 const sigset_t __user *sig, size_t sigsz)
6020{
Jens Axboebda52162019-09-24 13:47:15 -06006021 struct io_wait_queue iowq = {
6022 .wq = {
6023 .private = current,
6024 .func = io_wake_function,
6025 .entry = LIST_HEAD_INIT(iowq.wq.entry),
6026 },
6027 .ctx = ctx,
6028 .to_wait = min_events,
6029 };
Hristo Venev75b28af2019-08-26 17:23:46 +00006030 struct io_rings *rings = ctx->rings;
Jackie Liue9ffa5c2019-10-29 11:16:42 +08006031 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006032
Jens Axboeb41e9852020-02-17 09:52:41 -07006033 do {
6034 if (io_cqring_events(ctx, false) >= min_events)
6035 return 0;
6036 if (!current->task_works)
6037 break;
6038 task_work_run();
6039 } while (1);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006040
6041 if (sig) {
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006042#ifdef CONFIG_COMPAT
6043 if (in_compat_syscall())
6044 ret = set_compat_user_sigmask((const compat_sigset_t __user *)sig,
Oleg Nesterovb7724342019-07-16 16:29:53 -07006045 sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006046 else
6047#endif
Oleg Nesterovb7724342019-07-16 16:29:53 -07006048 ret = set_user_sigmask(sig, sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006049
Jens Axboe2b188cc2019-01-07 10:46:33 -07006050 if (ret)
6051 return ret;
6052 }
6053
Jens Axboebda52162019-09-24 13:47:15 -06006054 iowq.nr_timeouts = atomic_read(&ctx->cq_timeouts);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02006055 trace_io_uring_cqring_wait(ctx, min_events);
Jens Axboebda52162019-09-24 13:47:15 -06006056 do {
6057 prepare_to_wait_exclusive(&ctx->wait, &iowq.wq,
6058 TASK_INTERRUPTIBLE);
Jens Axboeb41e9852020-02-17 09:52:41 -07006059 if (current->task_works)
6060 task_work_run();
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006061 if (io_should_wake(&iowq, false))
Jens Axboebda52162019-09-24 13:47:15 -06006062 break;
6063 schedule();
6064 if (signal_pending(current)) {
Jackie Liue9ffa5c2019-10-29 11:16:42 +08006065 ret = -EINTR;
Jens Axboebda52162019-09-24 13:47:15 -06006066 break;
6067 }
6068 } while (1);
6069 finish_wait(&ctx->wait, &iowq.wq);
6070
Jackie Liue9ffa5c2019-10-29 11:16:42 +08006071 restore_saved_sigmask_unless(ret == -EINTR);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006072
Hristo Venev75b28af2019-08-26 17:23:46 +00006073 return READ_ONCE(rings->cq.head) == READ_ONCE(rings->cq.tail) ? ret : 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006074}
6075
Jens Axboe6b063142019-01-10 22:13:58 -07006076static void __io_sqe_files_unregister(struct io_ring_ctx *ctx)
6077{
6078#if defined(CONFIG_UNIX)
6079 if (ctx->ring_sock) {
6080 struct sock *sock = ctx->ring_sock->sk;
6081 struct sk_buff *skb;
6082
6083 while ((skb = skb_dequeue(&sock->sk_receive_queue)) != NULL)
6084 kfree_skb(skb);
6085 }
6086#else
6087 int i;
6088
Jens Axboe65e19f52019-10-26 07:20:21 -06006089 for (i = 0; i < ctx->nr_user_files; i++) {
6090 struct file *file;
6091
6092 file = io_file_from_index(ctx, i);
6093 if (file)
6094 fput(file);
6095 }
Jens Axboe6b063142019-01-10 22:13:58 -07006096#endif
6097}
6098
Jens Axboe05f3fb32019-12-09 11:22:50 -07006099static void io_file_ref_kill(struct percpu_ref *ref)
6100{
6101 struct fixed_file_data *data;
6102
6103 data = container_of(ref, struct fixed_file_data, refs);
6104 complete(&data->done);
6105}
6106
Jens Axboe6b063142019-01-10 22:13:58 -07006107static int io_sqe_files_unregister(struct io_ring_ctx *ctx)
6108{
Jens Axboe05f3fb32019-12-09 11:22:50 -07006109 struct fixed_file_data *data = ctx->file_data;
Jens Axboe65e19f52019-10-26 07:20:21 -06006110 unsigned nr_tables, i;
6111
Jens Axboe05f3fb32019-12-09 11:22:50 -07006112 if (!data)
Jens Axboe6b063142019-01-10 22:13:58 -07006113 return -ENXIO;
6114
Jens Axboe05f3fb32019-12-09 11:22:50 -07006115 percpu_ref_kill_and_confirm(&data->refs, io_file_ref_kill);
Jens Axboee46a7952020-01-17 11:15:34 -07006116 flush_work(&data->ref_work);
Jens Axboe2faf8522020-02-04 19:54:55 -07006117 wait_for_completion(&data->done);
6118 io_ring_file_ref_flush(data);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006119 percpu_ref_exit(&data->refs);
6120
Jens Axboe6b063142019-01-10 22:13:58 -07006121 __io_sqe_files_unregister(ctx);
Jens Axboe65e19f52019-10-26 07:20:21 -06006122 nr_tables = DIV_ROUND_UP(ctx->nr_user_files, IORING_MAX_FILES_TABLE);
6123 for (i = 0; i < nr_tables; i++)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006124 kfree(data->table[i].files);
6125 kfree(data->table);
6126 kfree(data);
6127 ctx->file_data = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07006128 ctx->nr_user_files = 0;
6129 return 0;
6130}
6131
Jens Axboe6c271ce2019-01-10 11:22:30 -07006132static void io_sq_thread_stop(struct io_ring_ctx *ctx)
6133{
6134 if (ctx->sqo_thread) {
Jens Axboe206aefd2019-11-07 18:27:42 -07006135 wait_for_completion(&ctx->completions[1]);
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02006136 /*
6137 * The park is a bit of a work-around, without it we get
6138 * warning spews on shutdown with SQPOLL set and affinity
6139 * set to a single CPU.
6140 */
Jens Axboe06058632019-04-13 09:26:03 -06006141 kthread_park(ctx->sqo_thread);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006142 kthread_stop(ctx->sqo_thread);
6143 ctx->sqo_thread = NULL;
6144 }
6145}
6146
Jens Axboe6b063142019-01-10 22:13:58 -07006147static void io_finish_async(struct io_ring_ctx *ctx)
6148{
Jens Axboe6c271ce2019-01-10 11:22:30 -07006149 io_sq_thread_stop(ctx);
6150
Jens Axboe561fb042019-10-24 07:25:42 -06006151 if (ctx->io_wq) {
6152 io_wq_destroy(ctx->io_wq);
6153 ctx->io_wq = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07006154 }
6155}
6156
6157#if defined(CONFIG_UNIX)
Jens Axboe6b063142019-01-10 22:13:58 -07006158/*
6159 * Ensure the UNIX gc is aware of our file set, so we are certain that
6160 * the io_uring can be safely unregistered on process exit, even if we have
6161 * loops in the file referencing.
6162 */
6163static int __io_sqe_files_scm(struct io_ring_ctx *ctx, int nr, int offset)
6164{
6165 struct sock *sk = ctx->ring_sock->sk;
6166 struct scm_fp_list *fpl;
6167 struct sk_buff *skb;
Jens Axboe08a45172019-10-03 08:11:03 -06006168 int i, nr_files;
Jens Axboe6b063142019-01-10 22:13:58 -07006169
6170 if (!capable(CAP_SYS_RESOURCE) && !capable(CAP_SYS_ADMIN)) {
6171 unsigned long inflight = ctx->user->unix_inflight + nr;
6172
6173 if (inflight > task_rlimit(current, RLIMIT_NOFILE))
6174 return -EMFILE;
6175 }
6176
6177 fpl = kzalloc(sizeof(*fpl), GFP_KERNEL);
6178 if (!fpl)
6179 return -ENOMEM;
6180
6181 skb = alloc_skb(0, GFP_KERNEL);
6182 if (!skb) {
6183 kfree(fpl);
6184 return -ENOMEM;
6185 }
6186
6187 skb->sk = sk;
Jens Axboe6b063142019-01-10 22:13:58 -07006188
Jens Axboe08a45172019-10-03 08:11:03 -06006189 nr_files = 0;
Jens Axboe6b063142019-01-10 22:13:58 -07006190 fpl->user = get_uid(ctx->user);
6191 for (i = 0; i < nr; i++) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006192 struct file *file = io_file_from_index(ctx, i + offset);
6193
6194 if (!file)
Jens Axboe08a45172019-10-03 08:11:03 -06006195 continue;
Jens Axboe65e19f52019-10-26 07:20:21 -06006196 fpl->fp[nr_files] = get_file(file);
Jens Axboe08a45172019-10-03 08:11:03 -06006197 unix_inflight(fpl->user, fpl->fp[nr_files]);
6198 nr_files++;
Jens Axboe6b063142019-01-10 22:13:58 -07006199 }
6200
Jens Axboe08a45172019-10-03 08:11:03 -06006201 if (nr_files) {
6202 fpl->max = SCM_MAX_FD;
6203 fpl->count = nr_files;
6204 UNIXCB(skb).fp = fpl;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006205 skb->destructor = unix_destruct_scm;
Jens Axboe08a45172019-10-03 08:11:03 -06006206 refcount_add(skb->truesize, &sk->sk_wmem_alloc);
6207 skb_queue_head(&sk->sk_receive_queue, skb);
Jens Axboe6b063142019-01-10 22:13:58 -07006208
Jens Axboe08a45172019-10-03 08:11:03 -06006209 for (i = 0; i < nr_files; i++)
6210 fput(fpl->fp[i]);
6211 } else {
6212 kfree_skb(skb);
6213 kfree(fpl);
6214 }
Jens Axboe6b063142019-01-10 22:13:58 -07006215
6216 return 0;
6217}
6218
6219/*
6220 * If UNIX sockets are enabled, fd passing can cause a reference cycle which
6221 * causes regular reference counting to break down. We rely on the UNIX
6222 * garbage collection to take care of this problem for us.
6223 */
6224static int io_sqe_files_scm(struct io_ring_ctx *ctx)
6225{
6226 unsigned left, total;
6227 int ret = 0;
6228
6229 total = 0;
6230 left = ctx->nr_user_files;
6231 while (left) {
6232 unsigned this_files = min_t(unsigned, left, SCM_MAX_FD);
Jens Axboe6b063142019-01-10 22:13:58 -07006233
6234 ret = __io_sqe_files_scm(ctx, this_files, total);
6235 if (ret)
6236 break;
6237 left -= this_files;
6238 total += this_files;
6239 }
6240
6241 if (!ret)
6242 return 0;
6243
6244 while (total < ctx->nr_user_files) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006245 struct file *file = io_file_from_index(ctx, total);
6246
6247 if (file)
6248 fput(file);
Jens Axboe6b063142019-01-10 22:13:58 -07006249 total++;
6250 }
6251
6252 return ret;
6253}
6254#else
6255static int io_sqe_files_scm(struct io_ring_ctx *ctx)
6256{
6257 return 0;
6258}
6259#endif
6260
Jens Axboe65e19f52019-10-26 07:20:21 -06006261static int io_sqe_alloc_file_tables(struct io_ring_ctx *ctx, unsigned nr_tables,
6262 unsigned nr_files)
6263{
6264 int i;
6265
6266 for (i = 0; i < nr_tables; i++) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006267 struct fixed_file_table *table = &ctx->file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06006268 unsigned this_files;
6269
6270 this_files = min(nr_files, IORING_MAX_FILES_TABLE);
6271 table->files = kcalloc(this_files, sizeof(struct file *),
6272 GFP_KERNEL);
6273 if (!table->files)
6274 break;
6275 nr_files -= this_files;
6276 }
6277
6278 if (i == nr_tables)
6279 return 0;
6280
6281 for (i = 0; i < nr_tables; i++) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006282 struct fixed_file_table *table = &ctx->file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06006283 kfree(table->files);
6284 }
6285 return 1;
6286}
6287
Jens Axboe05f3fb32019-12-09 11:22:50 -07006288static void io_ring_file_put(struct io_ring_ctx *ctx, struct file *file)
Jens Axboec3a31e62019-10-03 13:59:56 -06006289{
6290#if defined(CONFIG_UNIX)
Jens Axboec3a31e62019-10-03 13:59:56 -06006291 struct sock *sock = ctx->ring_sock->sk;
6292 struct sk_buff_head list, *head = &sock->sk_receive_queue;
6293 struct sk_buff *skb;
6294 int i;
6295
6296 __skb_queue_head_init(&list);
6297
6298 /*
6299 * Find the skb that holds this file in its SCM_RIGHTS. When found,
6300 * remove this entry and rearrange the file array.
6301 */
6302 skb = skb_dequeue(head);
6303 while (skb) {
6304 struct scm_fp_list *fp;
6305
6306 fp = UNIXCB(skb).fp;
6307 for (i = 0; i < fp->count; i++) {
6308 int left;
6309
6310 if (fp->fp[i] != file)
6311 continue;
6312
6313 unix_notinflight(fp->user, fp->fp[i]);
6314 left = fp->count - 1 - i;
6315 if (left) {
6316 memmove(&fp->fp[i], &fp->fp[i + 1],
6317 left * sizeof(struct file *));
6318 }
6319 fp->count--;
6320 if (!fp->count) {
6321 kfree_skb(skb);
6322 skb = NULL;
6323 } else {
6324 __skb_queue_tail(&list, skb);
6325 }
6326 fput(file);
6327 file = NULL;
6328 break;
6329 }
6330
6331 if (!file)
6332 break;
6333
6334 __skb_queue_tail(&list, skb);
6335
6336 skb = skb_dequeue(head);
6337 }
6338
6339 if (skb_peek(&list)) {
6340 spin_lock_irq(&head->lock);
6341 while ((skb = __skb_dequeue(&list)) != NULL)
6342 __skb_queue_tail(head, skb);
6343 spin_unlock_irq(&head->lock);
6344 }
6345#else
Jens Axboe05f3fb32019-12-09 11:22:50 -07006346 fput(file);
Jens Axboec3a31e62019-10-03 13:59:56 -06006347#endif
6348}
6349
Jens Axboe05f3fb32019-12-09 11:22:50 -07006350struct io_file_put {
6351 struct llist_node llist;
6352 struct file *file;
6353 struct completion *done;
6354};
6355
Jens Axboe2faf8522020-02-04 19:54:55 -07006356static void io_ring_file_ref_flush(struct fixed_file_data *data)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006357{
6358 struct io_file_put *pfile, *tmp;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006359 struct llist_node *node;
6360
Jens Axboe05f3fb32019-12-09 11:22:50 -07006361 while ((node = llist_del_all(&data->put_llist)) != NULL) {
6362 llist_for_each_entry_safe(pfile, tmp, node, llist) {
6363 io_ring_file_put(data->ctx, pfile->file);
6364 if (pfile->done)
6365 complete(pfile->done);
6366 else
6367 kfree(pfile);
6368 }
6369 }
Jens Axboe2faf8522020-02-04 19:54:55 -07006370}
Jens Axboe05f3fb32019-12-09 11:22:50 -07006371
Jens Axboe2faf8522020-02-04 19:54:55 -07006372static void io_ring_file_ref_switch(struct work_struct *work)
6373{
6374 struct fixed_file_data *data;
6375
6376 data = container_of(work, struct fixed_file_data, ref_work);
6377 io_ring_file_ref_flush(data);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006378 percpu_ref_switch_to_percpu(&data->refs);
6379}
6380
6381static void io_file_data_ref_zero(struct percpu_ref *ref)
6382{
6383 struct fixed_file_data *data;
6384
6385 data = container_of(ref, struct fixed_file_data, refs);
6386
Jens Axboe2faf8522020-02-04 19:54:55 -07006387 /*
6388 * We can't safely switch from inside this context, punt to wq. If
6389 * the table ref is going away, the table is being unregistered.
6390 * Don't queue up the async work for that case, the caller will
6391 * handle it.
6392 */
6393 if (!percpu_ref_is_dying(&data->refs))
6394 queue_work(system_wq, &data->ref_work);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006395}
6396
6397static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
6398 unsigned nr_args)
6399{
6400 __s32 __user *fds = (__s32 __user *) arg;
6401 unsigned nr_tables;
6402 struct file *file;
6403 int fd, ret = 0;
6404 unsigned i;
6405
6406 if (ctx->file_data)
6407 return -EBUSY;
6408 if (!nr_args)
6409 return -EINVAL;
6410 if (nr_args > IORING_MAX_FIXED_FILES)
6411 return -EMFILE;
6412
6413 ctx->file_data = kzalloc(sizeof(*ctx->file_data), GFP_KERNEL);
6414 if (!ctx->file_data)
6415 return -ENOMEM;
6416 ctx->file_data->ctx = ctx;
6417 init_completion(&ctx->file_data->done);
6418
6419 nr_tables = DIV_ROUND_UP(nr_args, IORING_MAX_FILES_TABLE);
6420 ctx->file_data->table = kcalloc(nr_tables,
6421 sizeof(struct fixed_file_table),
6422 GFP_KERNEL);
6423 if (!ctx->file_data->table) {
6424 kfree(ctx->file_data);
6425 ctx->file_data = NULL;
6426 return -ENOMEM;
6427 }
6428
6429 if (percpu_ref_init(&ctx->file_data->refs, io_file_data_ref_zero,
6430 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL)) {
6431 kfree(ctx->file_data->table);
6432 kfree(ctx->file_data);
6433 ctx->file_data = NULL;
6434 return -ENOMEM;
6435 }
6436 ctx->file_data->put_llist.first = NULL;
6437 INIT_WORK(&ctx->file_data->ref_work, io_ring_file_ref_switch);
6438
6439 if (io_sqe_alloc_file_tables(ctx, nr_tables, nr_args)) {
6440 percpu_ref_exit(&ctx->file_data->refs);
6441 kfree(ctx->file_data->table);
6442 kfree(ctx->file_data);
6443 ctx->file_data = NULL;
6444 return -ENOMEM;
6445 }
6446
6447 for (i = 0; i < nr_args; i++, ctx->nr_user_files++) {
6448 struct fixed_file_table *table;
6449 unsigned index;
6450
6451 ret = -EFAULT;
6452 if (copy_from_user(&fd, &fds[i], sizeof(fd)))
6453 break;
6454 /* allow sparse sets */
6455 if (fd == -1) {
6456 ret = 0;
6457 continue;
6458 }
6459
6460 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
6461 index = i & IORING_FILE_TABLE_MASK;
6462 file = fget(fd);
6463
6464 ret = -EBADF;
6465 if (!file)
6466 break;
6467
6468 /*
6469 * Don't allow io_uring instances to be registered. If UNIX
6470 * isn't enabled, then this causes a reference cycle and this
6471 * instance can never get freed. If UNIX is enabled we'll
6472 * handle it just fine, but there's still no point in allowing
6473 * a ring fd as it doesn't support regular read/write anyway.
6474 */
6475 if (file->f_op == &io_uring_fops) {
6476 fput(file);
6477 break;
6478 }
6479 ret = 0;
6480 table->files[index] = file;
6481 }
6482
6483 if (ret) {
6484 for (i = 0; i < ctx->nr_user_files; i++) {
6485 file = io_file_from_index(ctx, i);
6486 if (file)
6487 fput(file);
6488 }
6489 for (i = 0; i < nr_tables; i++)
6490 kfree(ctx->file_data->table[i].files);
6491
6492 kfree(ctx->file_data->table);
6493 kfree(ctx->file_data);
6494 ctx->file_data = NULL;
6495 ctx->nr_user_files = 0;
6496 return ret;
6497 }
6498
6499 ret = io_sqe_files_scm(ctx);
6500 if (ret)
6501 io_sqe_files_unregister(ctx);
6502
6503 return ret;
6504}
6505
Jens Axboec3a31e62019-10-03 13:59:56 -06006506static int io_sqe_file_register(struct io_ring_ctx *ctx, struct file *file,
6507 int index)
6508{
6509#if defined(CONFIG_UNIX)
6510 struct sock *sock = ctx->ring_sock->sk;
6511 struct sk_buff_head *head = &sock->sk_receive_queue;
6512 struct sk_buff *skb;
6513
6514 /*
6515 * See if we can merge this file into an existing skb SCM_RIGHTS
6516 * file set. If there's no room, fall back to allocating a new skb
6517 * and filling it in.
6518 */
6519 spin_lock_irq(&head->lock);
6520 skb = skb_peek(head);
6521 if (skb) {
6522 struct scm_fp_list *fpl = UNIXCB(skb).fp;
6523
6524 if (fpl->count < SCM_MAX_FD) {
6525 __skb_unlink(skb, head);
6526 spin_unlock_irq(&head->lock);
6527 fpl->fp[fpl->count] = get_file(file);
6528 unix_inflight(fpl->user, fpl->fp[fpl->count]);
6529 fpl->count++;
6530 spin_lock_irq(&head->lock);
6531 __skb_queue_head(head, skb);
6532 } else {
6533 skb = NULL;
6534 }
6535 }
6536 spin_unlock_irq(&head->lock);
6537
6538 if (skb) {
6539 fput(file);
6540 return 0;
6541 }
6542
6543 return __io_sqe_files_scm(ctx, 1, index);
6544#else
6545 return 0;
6546#endif
6547}
6548
Jens Axboe05f3fb32019-12-09 11:22:50 -07006549static void io_atomic_switch(struct percpu_ref *ref)
Jens Axboec3a31e62019-10-03 13:59:56 -06006550{
Jens Axboe05f3fb32019-12-09 11:22:50 -07006551 struct fixed_file_data *data;
6552
Jens Axboedd3db2a2020-02-26 10:23:43 -07006553 /*
6554 * Juggle reference to ensure we hit zero, if needed, so we can
6555 * switch back to percpu mode
6556 */
Jens Axboe05f3fb32019-12-09 11:22:50 -07006557 data = container_of(ref, struct fixed_file_data, refs);
Jens Axboedd3db2a2020-02-26 10:23:43 -07006558 percpu_ref_put(&data->refs);
6559 percpu_ref_get(&data->refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006560}
6561
6562static bool io_queue_file_removal(struct fixed_file_data *data,
6563 struct file *file)
6564{
6565 struct io_file_put *pfile, pfile_stack;
6566 DECLARE_COMPLETION_ONSTACK(done);
6567
6568 /*
6569 * If we fail allocating the struct we need for doing async reomval
6570 * of this file, just punt to sync and wait for it.
6571 */
6572 pfile = kzalloc(sizeof(*pfile), GFP_KERNEL);
6573 if (!pfile) {
6574 pfile = &pfile_stack;
6575 pfile->done = &done;
6576 }
6577
6578 pfile->file = file;
6579 llist_add(&pfile->llist, &data->put_llist);
6580
6581 if (pfile == &pfile_stack) {
Jens Axboedd3db2a2020-02-26 10:23:43 -07006582 percpu_ref_switch_to_atomic(&data->refs, io_atomic_switch);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006583 wait_for_completion(&done);
6584 flush_work(&data->ref_work);
6585 return false;
6586 }
6587
6588 return true;
6589}
6590
6591static int __io_sqe_files_update(struct io_ring_ctx *ctx,
6592 struct io_uring_files_update *up,
6593 unsigned nr_args)
6594{
6595 struct fixed_file_data *data = ctx->file_data;
6596 bool ref_switch = false;
6597 struct file *file;
Jens Axboec3a31e62019-10-03 13:59:56 -06006598 __s32 __user *fds;
6599 int fd, i, err;
6600 __u32 done;
6601
Jens Axboe05f3fb32019-12-09 11:22:50 -07006602 if (check_add_overflow(up->offset, nr_args, &done))
Jens Axboec3a31e62019-10-03 13:59:56 -06006603 return -EOVERFLOW;
6604 if (done > ctx->nr_user_files)
6605 return -EINVAL;
6606
6607 done = 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006608 fds = u64_to_user_ptr(up->fds);
Jens Axboec3a31e62019-10-03 13:59:56 -06006609 while (nr_args) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006610 struct fixed_file_table *table;
6611 unsigned index;
6612
Jens Axboec3a31e62019-10-03 13:59:56 -06006613 err = 0;
6614 if (copy_from_user(&fd, &fds[done], sizeof(fd))) {
6615 err = -EFAULT;
6616 break;
6617 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07006618 i = array_index_nospec(up->offset, ctx->nr_user_files);
6619 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
Jens Axboe65e19f52019-10-26 07:20:21 -06006620 index = i & IORING_FILE_TABLE_MASK;
6621 if (table->files[index]) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006622 file = io_file_from_index(ctx, index);
Jens Axboe65e19f52019-10-26 07:20:21 -06006623 table->files[index] = NULL;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006624 if (io_queue_file_removal(data, file))
6625 ref_switch = true;
Jens Axboec3a31e62019-10-03 13:59:56 -06006626 }
6627 if (fd != -1) {
Jens Axboec3a31e62019-10-03 13:59:56 -06006628 file = fget(fd);
6629 if (!file) {
6630 err = -EBADF;
6631 break;
6632 }
6633 /*
6634 * Don't allow io_uring instances to be registered. If
6635 * UNIX isn't enabled, then this causes a reference
6636 * cycle and this instance can never get freed. If UNIX
6637 * is enabled we'll handle it just fine, but there's
6638 * still no point in allowing a ring fd as it doesn't
6639 * support regular read/write anyway.
6640 */
6641 if (file->f_op == &io_uring_fops) {
6642 fput(file);
6643 err = -EBADF;
6644 break;
6645 }
Jens Axboe65e19f52019-10-26 07:20:21 -06006646 table->files[index] = file;
Jens Axboec3a31e62019-10-03 13:59:56 -06006647 err = io_sqe_file_register(ctx, file, i);
6648 if (err)
6649 break;
6650 }
6651 nr_args--;
6652 done++;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006653 up->offset++;
6654 }
6655
Jens Axboedd3db2a2020-02-26 10:23:43 -07006656 if (ref_switch)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006657 percpu_ref_switch_to_atomic(&data->refs, io_atomic_switch);
Jens Axboec3a31e62019-10-03 13:59:56 -06006658
6659 return done ? done : err;
6660}
Jens Axboe05f3fb32019-12-09 11:22:50 -07006661static int io_sqe_files_update(struct io_ring_ctx *ctx, void __user *arg,
6662 unsigned nr_args)
6663{
6664 struct io_uring_files_update up;
6665
6666 if (!ctx->file_data)
6667 return -ENXIO;
6668 if (!nr_args)
6669 return -EINVAL;
6670 if (copy_from_user(&up, arg, sizeof(up)))
6671 return -EFAULT;
6672 if (up.resv)
6673 return -EINVAL;
6674
6675 return __io_sqe_files_update(ctx, &up, nr_args);
6676}
Jens Axboec3a31e62019-10-03 13:59:56 -06006677
Pavel Begunkove9fd9392020-03-04 16:14:12 +03006678static void io_free_work(struct io_wq_work *work)
Jens Axboe7d723062019-11-12 22:31:31 -07006679{
6680 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
6681
Pavel Begunkove9fd9392020-03-04 16:14:12 +03006682 /* Consider that io_steal_work() relies on this ref */
Jens Axboe7d723062019-11-12 22:31:31 -07006683 io_put_req(req);
6684}
6685
Pavel Begunkov24369c22020-01-28 03:15:48 +03006686static int io_init_wq_offload(struct io_ring_ctx *ctx,
6687 struct io_uring_params *p)
6688{
6689 struct io_wq_data data;
6690 struct fd f;
6691 struct io_ring_ctx *ctx_attach;
6692 unsigned int concurrency;
6693 int ret = 0;
6694
6695 data.user = ctx->user;
Pavel Begunkove9fd9392020-03-04 16:14:12 +03006696 data.free_work = io_free_work;
Pavel Begunkov24369c22020-01-28 03:15:48 +03006697
6698 if (!(p->flags & IORING_SETUP_ATTACH_WQ)) {
6699 /* Do QD, or 4 * CPUS, whatever is smallest */
6700 concurrency = min(ctx->sq_entries, 4 * num_online_cpus());
6701
6702 ctx->io_wq = io_wq_create(concurrency, &data);
6703 if (IS_ERR(ctx->io_wq)) {
6704 ret = PTR_ERR(ctx->io_wq);
6705 ctx->io_wq = NULL;
6706 }
6707 return ret;
6708 }
6709
6710 f = fdget(p->wq_fd);
6711 if (!f.file)
6712 return -EBADF;
6713
6714 if (f.file->f_op != &io_uring_fops) {
6715 ret = -EINVAL;
6716 goto out_fput;
6717 }
6718
6719 ctx_attach = f.file->private_data;
6720 /* @io_wq is protected by holding the fd */
6721 if (!io_wq_get(ctx_attach->io_wq, &data)) {
6722 ret = -EINVAL;
6723 goto out_fput;
6724 }
6725
6726 ctx->io_wq = ctx_attach->io_wq;
6727out_fput:
6728 fdput(f);
6729 return ret;
6730}
6731
Jens Axboe6c271ce2019-01-10 11:22:30 -07006732static int io_sq_offload_start(struct io_ring_ctx *ctx,
6733 struct io_uring_params *p)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006734{
6735 int ret;
6736
Jens Axboe6c271ce2019-01-10 11:22:30 -07006737 init_waitqueue_head(&ctx->sqo_wait);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006738 mmgrab(current->mm);
6739 ctx->sqo_mm = current->mm;
6740
Jens Axboe6c271ce2019-01-10 11:22:30 -07006741 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboe3ec482d2019-04-08 10:51:01 -06006742 ret = -EPERM;
6743 if (!capable(CAP_SYS_ADMIN))
6744 goto err;
6745
Jens Axboe917257d2019-04-13 09:28:55 -06006746 ctx->sq_thread_idle = msecs_to_jiffies(p->sq_thread_idle);
6747 if (!ctx->sq_thread_idle)
6748 ctx->sq_thread_idle = HZ;
6749
Jens Axboe6c271ce2019-01-10 11:22:30 -07006750 if (p->flags & IORING_SETUP_SQ_AFF) {
Jens Axboe44a9bd12019-05-14 20:00:30 -06006751 int cpu = p->sq_thread_cpu;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006752
Jens Axboe917257d2019-04-13 09:28:55 -06006753 ret = -EINVAL;
Jens Axboe44a9bd12019-05-14 20:00:30 -06006754 if (cpu >= nr_cpu_ids)
6755 goto err;
Shenghui Wang7889f442019-05-07 16:03:19 +08006756 if (!cpu_online(cpu))
Jens Axboe917257d2019-04-13 09:28:55 -06006757 goto err;
6758
Jens Axboe6c271ce2019-01-10 11:22:30 -07006759 ctx->sqo_thread = kthread_create_on_cpu(io_sq_thread,
6760 ctx, cpu,
6761 "io_uring-sq");
6762 } else {
6763 ctx->sqo_thread = kthread_create(io_sq_thread, ctx,
6764 "io_uring-sq");
6765 }
6766 if (IS_ERR(ctx->sqo_thread)) {
6767 ret = PTR_ERR(ctx->sqo_thread);
6768 ctx->sqo_thread = NULL;
6769 goto err;
6770 }
6771 wake_up_process(ctx->sqo_thread);
6772 } else if (p->flags & IORING_SETUP_SQ_AFF) {
6773 /* Can't have SQ_AFF without SQPOLL */
6774 ret = -EINVAL;
6775 goto err;
6776 }
6777
Pavel Begunkov24369c22020-01-28 03:15:48 +03006778 ret = io_init_wq_offload(ctx, p);
6779 if (ret)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006780 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006781
6782 return 0;
6783err:
Jens Axboe54a91f32019-09-10 09:15:04 -06006784 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006785 mmdrop(ctx->sqo_mm);
6786 ctx->sqo_mm = NULL;
6787 return ret;
6788}
6789
6790static void io_unaccount_mem(struct user_struct *user, unsigned long nr_pages)
6791{
6792 atomic_long_sub(nr_pages, &user->locked_vm);
6793}
6794
6795static int io_account_mem(struct user_struct *user, unsigned long nr_pages)
6796{
6797 unsigned long page_limit, cur_pages, new_pages;
6798
6799 /* Don't allow more pages than we can safely lock */
6800 page_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
6801
6802 do {
6803 cur_pages = atomic_long_read(&user->locked_vm);
6804 new_pages = cur_pages + nr_pages;
6805 if (new_pages > page_limit)
6806 return -ENOMEM;
6807 } while (atomic_long_cmpxchg(&user->locked_vm, cur_pages,
6808 new_pages) != cur_pages);
6809
6810 return 0;
6811}
6812
6813static void io_mem_free(void *ptr)
6814{
Mark Rutland52e04ef2019-04-30 17:30:21 +01006815 struct page *page;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006816
Mark Rutland52e04ef2019-04-30 17:30:21 +01006817 if (!ptr)
6818 return;
6819
6820 page = virt_to_head_page(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006821 if (put_page_testzero(page))
6822 free_compound_page(page);
6823}
6824
6825static void *io_mem_alloc(size_t size)
6826{
6827 gfp_t gfp_flags = GFP_KERNEL | __GFP_ZERO | __GFP_NOWARN | __GFP_COMP |
6828 __GFP_NORETRY;
6829
6830 return (void *) __get_free_pages(gfp_flags, get_order(size));
6831}
6832
Hristo Venev75b28af2019-08-26 17:23:46 +00006833static unsigned long rings_size(unsigned sq_entries, unsigned cq_entries,
6834 size_t *sq_offset)
6835{
6836 struct io_rings *rings;
6837 size_t off, sq_array_size;
6838
6839 off = struct_size(rings, cqes, cq_entries);
6840 if (off == SIZE_MAX)
6841 return SIZE_MAX;
6842
6843#ifdef CONFIG_SMP
6844 off = ALIGN(off, SMP_CACHE_BYTES);
6845 if (off == 0)
6846 return SIZE_MAX;
6847#endif
6848
6849 sq_array_size = array_size(sizeof(u32), sq_entries);
6850 if (sq_array_size == SIZE_MAX)
6851 return SIZE_MAX;
6852
6853 if (check_add_overflow(off, sq_array_size, &off))
6854 return SIZE_MAX;
6855
6856 if (sq_offset)
6857 *sq_offset = off;
6858
6859 return off;
6860}
6861
Jens Axboe2b188cc2019-01-07 10:46:33 -07006862static unsigned long ring_pages(unsigned sq_entries, unsigned cq_entries)
6863{
Hristo Venev75b28af2019-08-26 17:23:46 +00006864 size_t pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006865
Hristo Venev75b28af2019-08-26 17:23:46 +00006866 pages = (size_t)1 << get_order(
6867 rings_size(sq_entries, cq_entries, NULL));
6868 pages += (size_t)1 << get_order(
6869 array_size(sizeof(struct io_uring_sqe), sq_entries));
Jens Axboe2b188cc2019-01-07 10:46:33 -07006870
Hristo Venev75b28af2019-08-26 17:23:46 +00006871 return pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006872}
6873
Jens Axboeedafcce2019-01-09 09:16:05 -07006874static int io_sqe_buffer_unregister(struct io_ring_ctx *ctx)
6875{
6876 int i, j;
6877
6878 if (!ctx->user_bufs)
6879 return -ENXIO;
6880
6881 for (i = 0; i < ctx->nr_user_bufs; i++) {
6882 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
6883
6884 for (j = 0; j < imu->nr_bvecs; j++)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08006885 unpin_user_page(imu->bvec[j].bv_page);
Jens Axboeedafcce2019-01-09 09:16:05 -07006886
6887 if (ctx->account_mem)
6888 io_unaccount_mem(ctx->user, imu->nr_bvecs);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006889 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07006890 imu->nr_bvecs = 0;
6891 }
6892
6893 kfree(ctx->user_bufs);
6894 ctx->user_bufs = NULL;
6895 ctx->nr_user_bufs = 0;
6896 return 0;
6897}
6898
6899static int io_copy_iov(struct io_ring_ctx *ctx, struct iovec *dst,
6900 void __user *arg, unsigned index)
6901{
6902 struct iovec __user *src;
6903
6904#ifdef CONFIG_COMPAT
6905 if (ctx->compat) {
6906 struct compat_iovec __user *ciovs;
6907 struct compat_iovec ciov;
6908
6909 ciovs = (struct compat_iovec __user *) arg;
6910 if (copy_from_user(&ciov, &ciovs[index], sizeof(ciov)))
6911 return -EFAULT;
6912
Jens Axboed55e5f52019-12-11 16:12:15 -07006913 dst->iov_base = u64_to_user_ptr((u64)ciov.iov_base);
Jens Axboeedafcce2019-01-09 09:16:05 -07006914 dst->iov_len = ciov.iov_len;
6915 return 0;
6916 }
6917#endif
6918 src = (struct iovec __user *) arg;
6919 if (copy_from_user(dst, &src[index], sizeof(*dst)))
6920 return -EFAULT;
6921 return 0;
6922}
6923
6924static int io_sqe_buffer_register(struct io_ring_ctx *ctx, void __user *arg,
6925 unsigned nr_args)
6926{
6927 struct vm_area_struct **vmas = NULL;
6928 struct page **pages = NULL;
6929 int i, j, got_pages = 0;
6930 int ret = -EINVAL;
6931
6932 if (ctx->user_bufs)
6933 return -EBUSY;
6934 if (!nr_args || nr_args > UIO_MAXIOV)
6935 return -EINVAL;
6936
6937 ctx->user_bufs = kcalloc(nr_args, sizeof(struct io_mapped_ubuf),
6938 GFP_KERNEL);
6939 if (!ctx->user_bufs)
6940 return -ENOMEM;
6941
6942 for (i = 0; i < nr_args; i++) {
6943 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
6944 unsigned long off, start, end, ubuf;
6945 int pret, nr_pages;
6946 struct iovec iov;
6947 size_t size;
6948
6949 ret = io_copy_iov(ctx, &iov, arg, i);
6950 if (ret)
Pavel Begunkova2786822019-05-26 12:35:47 +03006951 goto err;
Jens Axboeedafcce2019-01-09 09:16:05 -07006952
6953 /*
6954 * Don't impose further limits on the size and buffer
6955 * constraints here, we'll -EINVAL later when IO is
6956 * submitted if they are wrong.
6957 */
6958 ret = -EFAULT;
6959 if (!iov.iov_base || !iov.iov_len)
6960 goto err;
6961
6962 /* arbitrary limit, but we need something */
6963 if (iov.iov_len > SZ_1G)
6964 goto err;
6965
6966 ubuf = (unsigned long) iov.iov_base;
6967 end = (ubuf + iov.iov_len + PAGE_SIZE - 1) >> PAGE_SHIFT;
6968 start = ubuf >> PAGE_SHIFT;
6969 nr_pages = end - start;
6970
6971 if (ctx->account_mem) {
6972 ret = io_account_mem(ctx->user, nr_pages);
6973 if (ret)
6974 goto err;
6975 }
6976
6977 ret = 0;
6978 if (!pages || nr_pages > got_pages) {
6979 kfree(vmas);
6980 kfree(pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006981 pages = kvmalloc_array(nr_pages, sizeof(struct page *),
Jens Axboeedafcce2019-01-09 09:16:05 -07006982 GFP_KERNEL);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006983 vmas = kvmalloc_array(nr_pages,
Jens Axboeedafcce2019-01-09 09:16:05 -07006984 sizeof(struct vm_area_struct *),
6985 GFP_KERNEL);
6986 if (!pages || !vmas) {
6987 ret = -ENOMEM;
6988 if (ctx->account_mem)
6989 io_unaccount_mem(ctx->user, nr_pages);
6990 goto err;
6991 }
6992 got_pages = nr_pages;
6993 }
6994
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006995 imu->bvec = kvmalloc_array(nr_pages, sizeof(struct bio_vec),
Jens Axboeedafcce2019-01-09 09:16:05 -07006996 GFP_KERNEL);
6997 ret = -ENOMEM;
6998 if (!imu->bvec) {
6999 if (ctx->account_mem)
7000 io_unaccount_mem(ctx->user, nr_pages);
7001 goto err;
7002 }
7003
7004 ret = 0;
7005 down_read(&current->mm->mmap_sem);
John Hubbard2113b052020-01-30 22:13:13 -08007006 pret = pin_user_pages(ubuf, nr_pages,
Ira Weiny932f4a62019-05-13 17:17:03 -07007007 FOLL_WRITE | FOLL_LONGTERM,
7008 pages, vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007009 if (pret == nr_pages) {
7010 /* don't support file backed memory */
7011 for (j = 0; j < nr_pages; j++) {
7012 struct vm_area_struct *vma = vmas[j];
7013
7014 if (vma->vm_file &&
7015 !is_file_hugepages(vma->vm_file)) {
7016 ret = -EOPNOTSUPP;
7017 break;
7018 }
7019 }
7020 } else {
7021 ret = pret < 0 ? pret : -EFAULT;
7022 }
7023 up_read(&current->mm->mmap_sem);
7024 if (ret) {
7025 /*
7026 * if we did partial map, or found file backed vmas,
7027 * release any pages we did get
7028 */
John Hubbard27c4d3a2019-08-04 19:32:06 -07007029 if (pret > 0)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08007030 unpin_user_pages(pages, pret);
Jens Axboeedafcce2019-01-09 09:16:05 -07007031 if (ctx->account_mem)
7032 io_unaccount_mem(ctx->user, nr_pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007033 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07007034 goto err;
7035 }
7036
7037 off = ubuf & ~PAGE_MASK;
7038 size = iov.iov_len;
7039 for (j = 0; j < nr_pages; j++) {
7040 size_t vec_len;
7041
7042 vec_len = min_t(size_t, size, PAGE_SIZE - off);
7043 imu->bvec[j].bv_page = pages[j];
7044 imu->bvec[j].bv_len = vec_len;
7045 imu->bvec[j].bv_offset = off;
7046 off = 0;
7047 size -= vec_len;
7048 }
7049 /* store original address for later verification */
7050 imu->ubuf = ubuf;
7051 imu->len = iov.iov_len;
7052 imu->nr_bvecs = nr_pages;
7053
7054 ctx->nr_user_bufs++;
7055 }
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007056 kvfree(pages);
7057 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007058 return 0;
7059err:
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007060 kvfree(pages);
7061 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007062 io_sqe_buffer_unregister(ctx);
7063 return ret;
7064}
7065
Jens Axboe9b402842019-04-11 11:45:41 -06007066static int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg)
7067{
7068 __s32 __user *fds = arg;
7069 int fd;
7070
7071 if (ctx->cq_ev_fd)
7072 return -EBUSY;
7073
7074 if (copy_from_user(&fd, fds, sizeof(*fds)))
7075 return -EFAULT;
7076
7077 ctx->cq_ev_fd = eventfd_ctx_fdget(fd);
7078 if (IS_ERR(ctx->cq_ev_fd)) {
7079 int ret = PTR_ERR(ctx->cq_ev_fd);
7080 ctx->cq_ev_fd = NULL;
7081 return ret;
7082 }
7083
7084 return 0;
7085}
7086
7087static int io_eventfd_unregister(struct io_ring_ctx *ctx)
7088{
7089 if (ctx->cq_ev_fd) {
7090 eventfd_ctx_put(ctx->cq_ev_fd);
7091 ctx->cq_ev_fd = NULL;
7092 return 0;
7093 }
7094
7095 return -ENXIO;
7096}
7097
Jens Axboe5a2e7452020-02-23 16:23:11 -07007098static int __io_destroy_buffers(int id, void *p, void *data)
7099{
7100 struct io_ring_ctx *ctx = data;
7101 struct io_buffer *buf = p;
7102
Jens Axboe067524e2020-03-02 16:32:28 -07007103 __io_remove_buffers(ctx, buf, id, -1U);
Jens Axboe5a2e7452020-02-23 16:23:11 -07007104 return 0;
7105}
7106
7107static void io_destroy_buffers(struct io_ring_ctx *ctx)
7108{
7109 idr_for_each(&ctx->io_buffer_idr, __io_destroy_buffers, ctx);
7110 idr_destroy(&ctx->io_buffer_idr);
7111}
7112
Jens Axboe2b188cc2019-01-07 10:46:33 -07007113static void io_ring_ctx_free(struct io_ring_ctx *ctx)
7114{
Jens Axboe6b063142019-01-10 22:13:58 -07007115 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007116 if (ctx->sqo_mm)
7117 mmdrop(ctx->sqo_mm);
Jens Axboedef596e2019-01-09 08:59:42 -07007118
7119 io_iopoll_reap_events(ctx);
Jens Axboeedafcce2019-01-09 09:16:05 -07007120 io_sqe_buffer_unregister(ctx);
Jens Axboe6b063142019-01-10 22:13:58 -07007121 io_sqe_files_unregister(ctx);
Jens Axboe9b402842019-04-11 11:45:41 -06007122 io_eventfd_unregister(ctx);
Jens Axboe5a2e7452020-02-23 16:23:11 -07007123 io_destroy_buffers(ctx);
Jens Axboe41726c92020-02-23 13:11:42 -07007124 idr_destroy(&ctx->personality_idr);
Jens Axboedef596e2019-01-09 08:59:42 -07007125
Jens Axboe2b188cc2019-01-07 10:46:33 -07007126#if defined(CONFIG_UNIX)
Eric Biggers355e8d22019-06-12 14:58:43 -07007127 if (ctx->ring_sock) {
7128 ctx->ring_sock->file = NULL; /* so that iput() is called */
Jens Axboe2b188cc2019-01-07 10:46:33 -07007129 sock_release(ctx->ring_sock);
Eric Biggers355e8d22019-06-12 14:58:43 -07007130 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007131#endif
7132
Hristo Venev75b28af2019-08-26 17:23:46 +00007133 io_mem_free(ctx->rings);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007134 io_mem_free(ctx->sq_sqes);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007135
7136 percpu_ref_exit(&ctx->refs);
7137 if (ctx->account_mem)
7138 io_unaccount_mem(ctx->user,
7139 ring_pages(ctx->sq_entries, ctx->cq_entries));
7140 free_uid(ctx->user);
Jens Axboe181e4482019-11-25 08:52:30 -07007141 put_cred(ctx->creds);
Jens Axboe206aefd2019-11-07 18:27:42 -07007142 kfree(ctx->completions);
Jens Axboe78076bb2019-12-04 19:56:40 -07007143 kfree(ctx->cancel_hash);
Jens Axboe0ddf92e2019-11-08 08:52:53 -07007144 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007145 kfree(ctx);
7146}
7147
7148static __poll_t io_uring_poll(struct file *file, poll_table *wait)
7149{
7150 struct io_ring_ctx *ctx = file->private_data;
7151 __poll_t mask = 0;
7152
7153 poll_wait(file, &ctx->cq_wait, wait);
Stefan Bühler4f7067c2019-04-24 23:54:17 +02007154 /*
7155 * synchronizes with barrier from wq_has_sleeper call in
7156 * io_commit_cqring
7157 */
Jens Axboe2b188cc2019-01-07 10:46:33 -07007158 smp_rmb();
Hristo Venev75b28af2019-08-26 17:23:46 +00007159 if (READ_ONCE(ctx->rings->sq.tail) - ctx->cached_sq_head !=
7160 ctx->rings->sq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007161 mask |= EPOLLOUT | EPOLLWRNORM;
Stefano Garzarella63e5d812020-02-07 13:18:28 +01007162 if (io_cqring_events(ctx, false))
Jens Axboe2b188cc2019-01-07 10:46:33 -07007163 mask |= EPOLLIN | EPOLLRDNORM;
7164
7165 return mask;
7166}
7167
7168static int io_uring_fasync(int fd, struct file *file, int on)
7169{
7170 struct io_ring_ctx *ctx = file->private_data;
7171
7172 return fasync_helper(fd, file, on, &ctx->cq_fasync);
7173}
7174
Jens Axboe071698e2020-01-28 10:04:42 -07007175static int io_remove_personalities(int id, void *p, void *data)
7176{
7177 struct io_ring_ctx *ctx = data;
7178 const struct cred *cred;
7179
7180 cred = idr_remove(&ctx->personality_idr, id);
7181 if (cred)
7182 put_cred(cred);
7183 return 0;
7184}
7185
Jens Axboe2b188cc2019-01-07 10:46:33 -07007186static void io_ring_ctx_wait_and_kill(struct io_ring_ctx *ctx)
7187{
7188 mutex_lock(&ctx->uring_lock);
7189 percpu_ref_kill(&ctx->refs);
7190 mutex_unlock(&ctx->uring_lock);
7191
Jens Axboedf069d82020-02-04 16:48:34 -07007192 /*
7193 * Wait for sq thread to idle, if we have one. It won't spin on new
7194 * work after we've killed the ctx ref above. This is important to do
7195 * before we cancel existing commands, as the thread could otherwise
7196 * be queueing new work post that. If that's work we need to cancel,
7197 * it could cause shutdown to hang.
7198 */
7199 while (ctx->sqo_thread && !wq_has_sleeper(&ctx->sqo_wait))
7200 cpu_relax();
7201
Jens Axboe5262f562019-09-17 12:26:57 -06007202 io_kill_timeouts(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07007203 io_poll_remove_all(ctx);
Jens Axboe561fb042019-10-24 07:25:42 -06007204
7205 if (ctx->io_wq)
7206 io_wq_cancel_all(ctx->io_wq);
7207
Jens Axboedef596e2019-01-09 08:59:42 -07007208 io_iopoll_reap_events(ctx);
Jens Axboe15dff282019-11-13 09:09:23 -07007209 /* if we failed setting up the ctx, we might not have any rings */
7210 if (ctx->rings)
7211 io_cqring_overflow_flush(ctx, true);
Jens Axboe071698e2020-01-28 10:04:42 -07007212 idr_for_each(&ctx->personality_idr, io_remove_personalities, ctx);
Jens Axboe206aefd2019-11-07 18:27:42 -07007213 wait_for_completion(&ctx->completions[0]);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007214 io_ring_ctx_free(ctx);
7215}
7216
7217static int io_uring_release(struct inode *inode, struct file *file)
7218{
7219 struct io_ring_ctx *ctx = file->private_data;
7220
7221 file->private_data = NULL;
7222 io_ring_ctx_wait_and_kill(ctx);
7223 return 0;
7224}
7225
Jens Axboefcb323c2019-10-24 12:39:47 -06007226static void io_uring_cancel_files(struct io_ring_ctx *ctx,
7227 struct files_struct *files)
7228{
7229 struct io_kiocb *req;
7230 DEFINE_WAIT(wait);
7231
7232 while (!list_empty_careful(&ctx->inflight_list)) {
Jens Axboe768134d2019-11-10 20:30:53 -07007233 struct io_kiocb *cancel_req = NULL;
Jens Axboefcb323c2019-10-24 12:39:47 -06007234
7235 spin_lock_irq(&ctx->inflight_lock);
7236 list_for_each_entry(req, &ctx->inflight_list, inflight_entry) {
Jens Axboe768134d2019-11-10 20:30:53 -07007237 if (req->work.files != files)
7238 continue;
7239 /* req is being completed, ignore */
7240 if (!refcount_inc_not_zero(&req->refs))
7241 continue;
7242 cancel_req = req;
7243 break;
Jens Axboefcb323c2019-10-24 12:39:47 -06007244 }
Jens Axboe768134d2019-11-10 20:30:53 -07007245 if (cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06007246 prepare_to_wait(&ctx->inflight_wait, &wait,
Jens Axboe768134d2019-11-10 20:30:53 -07007247 TASK_UNINTERRUPTIBLE);
Jens Axboefcb323c2019-10-24 12:39:47 -06007248 spin_unlock_irq(&ctx->inflight_lock);
7249
Jens Axboe768134d2019-11-10 20:30:53 -07007250 /* We need to keep going until we don't find a matching req */
7251 if (!cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06007252 break;
Bob Liu2f6d9b92019-11-13 18:06:24 +08007253
Jens Axboe2ca10252020-02-13 17:17:35 -07007254 if (cancel_req->flags & REQ_F_OVERFLOW) {
7255 spin_lock_irq(&ctx->completion_lock);
7256 list_del(&cancel_req->list);
7257 cancel_req->flags &= ~REQ_F_OVERFLOW;
7258 if (list_empty(&ctx->cq_overflow_list)) {
7259 clear_bit(0, &ctx->sq_check_overflow);
7260 clear_bit(0, &ctx->cq_check_overflow);
7261 }
7262 spin_unlock_irq(&ctx->completion_lock);
7263
7264 WRITE_ONCE(ctx->rings->cq_overflow,
7265 atomic_inc_return(&ctx->cached_cq_overflow));
7266
7267 /*
7268 * Put inflight ref and overflow ref. If that's
7269 * all we had, then we're done with this request.
7270 */
7271 if (refcount_sub_and_test(2, &cancel_req->refs)) {
7272 io_put_req(cancel_req);
7273 continue;
7274 }
7275 }
7276
Bob Liu2f6d9b92019-11-13 18:06:24 +08007277 io_wq_cancel_work(ctx->io_wq, &cancel_req->work);
7278 io_put_req(cancel_req);
Jens Axboefcb323c2019-10-24 12:39:47 -06007279 schedule();
7280 }
Jens Axboe768134d2019-11-10 20:30:53 -07007281 finish_wait(&ctx->inflight_wait, &wait);
Jens Axboefcb323c2019-10-24 12:39:47 -06007282}
7283
7284static int io_uring_flush(struct file *file, void *data)
7285{
7286 struct io_ring_ctx *ctx = file->private_data;
7287
7288 io_uring_cancel_files(ctx, data);
Jens Axboe6ab23142020-02-08 20:23:59 -07007289
7290 /*
7291 * If the task is going away, cancel work it may have pending
7292 */
7293 if (fatal_signal_pending(current) || (current->flags & PF_EXITING))
7294 io_wq_cancel_pid(ctx->io_wq, task_pid_vnr(current));
7295
Jens Axboefcb323c2019-10-24 12:39:47 -06007296 return 0;
7297}
7298
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007299static void *io_uring_validate_mmap_request(struct file *file,
7300 loff_t pgoff, size_t sz)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007301{
Jens Axboe2b188cc2019-01-07 10:46:33 -07007302 struct io_ring_ctx *ctx = file->private_data;
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007303 loff_t offset = pgoff << PAGE_SHIFT;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007304 struct page *page;
7305 void *ptr;
7306
7307 switch (offset) {
7308 case IORING_OFF_SQ_RING:
Hristo Venev75b28af2019-08-26 17:23:46 +00007309 case IORING_OFF_CQ_RING:
7310 ptr = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007311 break;
7312 case IORING_OFF_SQES:
7313 ptr = ctx->sq_sqes;
7314 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007315 default:
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007316 return ERR_PTR(-EINVAL);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007317 }
7318
7319 page = virt_to_head_page(ptr);
Matthew Wilcox (Oracle)a50b8542019-09-23 15:34:25 -07007320 if (sz > page_size(page))
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007321 return ERR_PTR(-EINVAL);
7322
7323 return ptr;
7324}
7325
7326#ifdef CONFIG_MMU
7327
7328static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
7329{
7330 size_t sz = vma->vm_end - vma->vm_start;
7331 unsigned long pfn;
7332 void *ptr;
7333
7334 ptr = io_uring_validate_mmap_request(file, vma->vm_pgoff, sz);
7335 if (IS_ERR(ptr))
7336 return PTR_ERR(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007337
7338 pfn = virt_to_phys(ptr) >> PAGE_SHIFT;
7339 return remap_pfn_range(vma, vma->vm_start, pfn, sz, vma->vm_page_prot);
7340}
7341
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007342#else /* !CONFIG_MMU */
7343
7344static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
7345{
7346 return vma->vm_flags & (VM_SHARED | VM_MAYSHARE) ? 0 : -EINVAL;
7347}
7348
7349static unsigned int io_uring_nommu_mmap_capabilities(struct file *file)
7350{
7351 return NOMMU_MAP_DIRECT | NOMMU_MAP_READ | NOMMU_MAP_WRITE;
7352}
7353
7354static unsigned long io_uring_nommu_get_unmapped_area(struct file *file,
7355 unsigned long addr, unsigned long len,
7356 unsigned long pgoff, unsigned long flags)
7357{
7358 void *ptr;
7359
7360 ptr = io_uring_validate_mmap_request(file, pgoff, len);
7361 if (IS_ERR(ptr))
7362 return PTR_ERR(ptr);
7363
7364 return (unsigned long) ptr;
7365}
7366
7367#endif /* !CONFIG_MMU */
7368
Jens Axboe2b188cc2019-01-07 10:46:33 -07007369SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
7370 u32, min_complete, u32, flags, const sigset_t __user *, sig,
7371 size_t, sigsz)
7372{
7373 struct io_ring_ctx *ctx;
7374 long ret = -EBADF;
7375 int submitted = 0;
7376 struct fd f;
7377
Jens Axboeb41e9852020-02-17 09:52:41 -07007378 if (current->task_works)
7379 task_work_run();
7380
Jens Axboe6c271ce2019-01-10 11:22:30 -07007381 if (flags & ~(IORING_ENTER_GETEVENTS | IORING_ENTER_SQ_WAKEUP))
Jens Axboe2b188cc2019-01-07 10:46:33 -07007382 return -EINVAL;
7383
7384 f = fdget(fd);
7385 if (!f.file)
7386 return -EBADF;
7387
7388 ret = -EOPNOTSUPP;
7389 if (f.file->f_op != &io_uring_fops)
7390 goto out_fput;
7391
7392 ret = -ENXIO;
7393 ctx = f.file->private_data;
7394 if (!percpu_ref_tryget(&ctx->refs))
7395 goto out_fput;
7396
Jens Axboe6c271ce2019-01-10 11:22:30 -07007397 /*
7398 * For SQ polling, the thread will do all submissions and completions.
7399 * Just return the requested submit count, and wake the thread if
7400 * we were asked to.
7401 */
Jens Axboeb2a9ead2019-09-12 14:19:16 -06007402 ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007403 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboec1edbf52019-11-10 16:56:04 -07007404 if (!list_empty_careful(&ctx->cq_overflow_list))
7405 io_cqring_overflow_flush(ctx, false);
Jens Axboe6c271ce2019-01-10 11:22:30 -07007406 if (flags & IORING_ENTER_SQ_WAKEUP)
7407 wake_up(&ctx->sqo_wait);
7408 submitted = to_submit;
Jens Axboeb2a9ead2019-09-12 14:19:16 -06007409 } else if (to_submit) {
Pavel Begunkovae9428c2019-11-06 00:22:14 +03007410 struct mm_struct *cur_mm;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007411
7412 mutex_lock(&ctx->uring_lock);
Pavel Begunkovae9428c2019-11-06 00:22:14 +03007413 /* already have mm, so io_submit_sqes() won't try to grab it */
7414 cur_mm = ctx->sqo_mm;
7415 submitted = io_submit_sqes(ctx, to_submit, f.file, fd,
7416 &cur_mm, false);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007417 mutex_unlock(&ctx->uring_lock);
Pavel Begunkov7c504e652019-12-18 19:53:45 +03007418
7419 if (submitted != to_submit)
7420 goto out;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007421 }
7422 if (flags & IORING_ENTER_GETEVENTS) {
Jens Axboedef596e2019-01-09 08:59:42 -07007423 unsigned nr_events = 0;
7424
Jens Axboe2b188cc2019-01-07 10:46:33 -07007425 min_complete = min(min_complete, ctx->cq_entries);
7426
Xiaoguang Wang32b22442020-03-11 09:26:09 +08007427 /*
7428 * When SETUP_IOPOLL and SETUP_SQPOLL are both enabled, user
7429 * space applications don't need to do io completion events
7430 * polling again, they can rely on io_sq_thread to do polling
7431 * work, which can reduce cpu usage and uring_lock contention.
7432 */
7433 if (ctx->flags & IORING_SETUP_IOPOLL &&
7434 !(ctx->flags & IORING_SETUP_SQPOLL)) {
Jens Axboedef596e2019-01-09 08:59:42 -07007435 ret = io_iopoll_check(ctx, &nr_events, min_complete);
Jens Axboedef596e2019-01-09 08:59:42 -07007436 } else {
7437 ret = io_cqring_wait(ctx, min_complete, sig, sigsz);
7438 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007439 }
7440
Pavel Begunkov7c504e652019-12-18 19:53:45 +03007441out:
Pavel Begunkov6805b322019-10-08 02:18:42 +03007442 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007443out_fput:
7444 fdput(f);
7445 return submitted ? submitted : ret;
7446}
7447
Tobias Klauserbebdb652020-02-26 18:38:32 +01007448#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -07007449static int io_uring_show_cred(int id, void *p, void *data)
7450{
7451 const struct cred *cred = p;
7452 struct seq_file *m = data;
7453 struct user_namespace *uns = seq_user_ns(m);
7454 struct group_info *gi;
7455 kernel_cap_t cap;
7456 unsigned __capi;
7457 int g;
7458
7459 seq_printf(m, "%5d\n", id);
7460 seq_put_decimal_ull(m, "\tUid:\t", from_kuid_munged(uns, cred->uid));
7461 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->euid));
7462 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->suid));
7463 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->fsuid));
7464 seq_put_decimal_ull(m, "\n\tGid:\t", from_kgid_munged(uns, cred->gid));
7465 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->egid));
7466 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->sgid));
7467 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->fsgid));
7468 seq_puts(m, "\n\tGroups:\t");
7469 gi = cred->group_info;
7470 for (g = 0; g < gi->ngroups; g++) {
7471 seq_put_decimal_ull(m, g ? " " : "",
7472 from_kgid_munged(uns, gi->gid[g]));
7473 }
7474 seq_puts(m, "\n\tCapEff:\t");
7475 cap = cred->cap_effective;
7476 CAP_FOR_EACH_U32(__capi)
7477 seq_put_hex_ll(m, NULL, cap.cap[CAP_LAST_U32 - __capi], 8);
7478 seq_putc(m, '\n');
7479 return 0;
7480}
7481
7482static void __io_uring_show_fdinfo(struct io_ring_ctx *ctx, struct seq_file *m)
7483{
7484 int i;
7485
7486 mutex_lock(&ctx->uring_lock);
7487 seq_printf(m, "UserFiles:\t%u\n", ctx->nr_user_files);
7488 for (i = 0; i < ctx->nr_user_files; i++) {
7489 struct fixed_file_table *table;
7490 struct file *f;
7491
7492 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
7493 f = table->files[i & IORING_FILE_TABLE_MASK];
7494 if (f)
7495 seq_printf(m, "%5u: %s\n", i, file_dentry(f)->d_iname);
7496 else
7497 seq_printf(m, "%5u: <none>\n", i);
7498 }
7499 seq_printf(m, "UserBufs:\t%u\n", ctx->nr_user_bufs);
7500 for (i = 0; i < ctx->nr_user_bufs; i++) {
7501 struct io_mapped_ubuf *buf = &ctx->user_bufs[i];
7502
7503 seq_printf(m, "%5u: 0x%llx/%u\n", i, buf->ubuf,
7504 (unsigned int) buf->len);
7505 }
7506 if (!idr_is_empty(&ctx->personality_idr)) {
7507 seq_printf(m, "Personalities:\n");
7508 idr_for_each(&ctx->personality_idr, io_uring_show_cred, m);
7509 }
Jens Axboed7718a92020-02-14 22:23:12 -07007510 seq_printf(m, "PollList:\n");
7511 spin_lock_irq(&ctx->completion_lock);
7512 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
7513 struct hlist_head *list = &ctx->cancel_hash[i];
7514 struct io_kiocb *req;
7515
7516 hlist_for_each_entry(req, list, hash_node)
7517 seq_printf(m, " op=%d, task_works=%d\n", req->opcode,
7518 req->task->task_works != NULL);
7519 }
7520 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe87ce9552020-01-30 08:25:34 -07007521 mutex_unlock(&ctx->uring_lock);
7522}
7523
7524static void io_uring_show_fdinfo(struct seq_file *m, struct file *f)
7525{
7526 struct io_ring_ctx *ctx = f->private_data;
7527
7528 if (percpu_ref_tryget(&ctx->refs)) {
7529 __io_uring_show_fdinfo(ctx, m);
7530 percpu_ref_put(&ctx->refs);
7531 }
7532}
Tobias Klauserbebdb652020-02-26 18:38:32 +01007533#endif
Jens Axboe87ce9552020-01-30 08:25:34 -07007534
Jens Axboe2b188cc2019-01-07 10:46:33 -07007535static const struct file_operations io_uring_fops = {
7536 .release = io_uring_release,
Jens Axboefcb323c2019-10-24 12:39:47 -06007537 .flush = io_uring_flush,
Jens Axboe2b188cc2019-01-07 10:46:33 -07007538 .mmap = io_uring_mmap,
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007539#ifndef CONFIG_MMU
7540 .get_unmapped_area = io_uring_nommu_get_unmapped_area,
7541 .mmap_capabilities = io_uring_nommu_mmap_capabilities,
7542#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07007543 .poll = io_uring_poll,
7544 .fasync = io_uring_fasync,
Tobias Klauserbebdb652020-02-26 18:38:32 +01007545#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -07007546 .show_fdinfo = io_uring_show_fdinfo,
Tobias Klauserbebdb652020-02-26 18:38:32 +01007547#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07007548};
7549
7550static int io_allocate_scq_urings(struct io_ring_ctx *ctx,
7551 struct io_uring_params *p)
7552{
Hristo Venev75b28af2019-08-26 17:23:46 +00007553 struct io_rings *rings;
7554 size_t size, sq_array_offset;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007555
Hristo Venev75b28af2019-08-26 17:23:46 +00007556 size = rings_size(p->sq_entries, p->cq_entries, &sq_array_offset);
7557 if (size == SIZE_MAX)
7558 return -EOVERFLOW;
7559
7560 rings = io_mem_alloc(size);
7561 if (!rings)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007562 return -ENOMEM;
7563
Hristo Venev75b28af2019-08-26 17:23:46 +00007564 ctx->rings = rings;
7565 ctx->sq_array = (u32 *)((char *)rings + sq_array_offset);
7566 rings->sq_ring_mask = p->sq_entries - 1;
7567 rings->cq_ring_mask = p->cq_entries - 1;
7568 rings->sq_ring_entries = p->sq_entries;
7569 rings->cq_ring_entries = p->cq_entries;
7570 ctx->sq_mask = rings->sq_ring_mask;
7571 ctx->cq_mask = rings->cq_ring_mask;
7572 ctx->sq_entries = rings->sq_ring_entries;
7573 ctx->cq_entries = rings->cq_ring_entries;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007574
7575 size = array_size(sizeof(struct io_uring_sqe), p->sq_entries);
Jens Axboeeb065d32019-11-20 09:26:29 -07007576 if (size == SIZE_MAX) {
7577 io_mem_free(ctx->rings);
7578 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007579 return -EOVERFLOW;
Jens Axboeeb065d32019-11-20 09:26:29 -07007580 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007581
7582 ctx->sq_sqes = io_mem_alloc(size);
Jens Axboeeb065d32019-11-20 09:26:29 -07007583 if (!ctx->sq_sqes) {
7584 io_mem_free(ctx->rings);
7585 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007586 return -ENOMEM;
Jens Axboeeb065d32019-11-20 09:26:29 -07007587 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007588
Jens Axboe2b188cc2019-01-07 10:46:33 -07007589 return 0;
7590}
7591
7592/*
7593 * Allocate an anonymous fd, this is what constitutes the application
7594 * visible backing of an io_uring instance. The application mmaps this
7595 * fd to gain access to the SQ/CQ ring details. If UNIX sockets are enabled,
7596 * we have to tie this fd to a socket for file garbage collection purposes.
7597 */
7598static int io_uring_get_fd(struct io_ring_ctx *ctx)
7599{
7600 struct file *file;
7601 int ret;
7602
7603#if defined(CONFIG_UNIX)
7604 ret = sock_create_kern(&init_net, PF_UNIX, SOCK_RAW, IPPROTO_IP,
7605 &ctx->ring_sock);
7606 if (ret)
7607 return ret;
7608#endif
7609
7610 ret = get_unused_fd_flags(O_RDWR | O_CLOEXEC);
7611 if (ret < 0)
7612 goto err;
7613
7614 file = anon_inode_getfile("[io_uring]", &io_uring_fops, ctx,
7615 O_RDWR | O_CLOEXEC);
7616 if (IS_ERR(file)) {
7617 put_unused_fd(ret);
7618 ret = PTR_ERR(file);
7619 goto err;
7620 }
7621
7622#if defined(CONFIG_UNIX)
7623 ctx->ring_sock->file = file;
7624#endif
7625 fd_install(ret, file);
7626 return ret;
7627err:
7628#if defined(CONFIG_UNIX)
7629 sock_release(ctx->ring_sock);
7630 ctx->ring_sock = NULL;
7631#endif
7632 return ret;
7633}
7634
7635static int io_uring_create(unsigned entries, struct io_uring_params *p)
7636{
7637 struct user_struct *user = NULL;
7638 struct io_ring_ctx *ctx;
7639 bool account_mem;
7640 int ret;
7641
Jens Axboe8110c1a2019-12-28 15:39:54 -07007642 if (!entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007643 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07007644 if (entries > IORING_MAX_ENTRIES) {
7645 if (!(p->flags & IORING_SETUP_CLAMP))
7646 return -EINVAL;
7647 entries = IORING_MAX_ENTRIES;
7648 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007649
7650 /*
7651 * Use twice as many entries for the CQ ring. It's possible for the
7652 * application to drive a higher depth than the size of the SQ ring,
7653 * since the sqes are only used at submission time. This allows for
Jens Axboe33a107f2019-10-04 12:10:03 -06007654 * some flexibility in overcommitting a bit. If the application has
7655 * set IORING_SETUP_CQSIZE, it will have passed in the desired number
7656 * of CQ ring entries manually.
Jens Axboe2b188cc2019-01-07 10:46:33 -07007657 */
7658 p->sq_entries = roundup_pow_of_two(entries);
Jens Axboe33a107f2019-10-04 12:10:03 -06007659 if (p->flags & IORING_SETUP_CQSIZE) {
7660 /*
7661 * If IORING_SETUP_CQSIZE is set, we do the same roundup
7662 * to a power-of-two, if it isn't already. We do NOT impose
7663 * any cq vs sq ring sizing.
7664 */
Jens Axboe8110c1a2019-12-28 15:39:54 -07007665 if (p->cq_entries < p->sq_entries)
Jens Axboe33a107f2019-10-04 12:10:03 -06007666 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07007667 if (p->cq_entries > IORING_MAX_CQ_ENTRIES) {
7668 if (!(p->flags & IORING_SETUP_CLAMP))
7669 return -EINVAL;
7670 p->cq_entries = IORING_MAX_CQ_ENTRIES;
7671 }
Jens Axboe33a107f2019-10-04 12:10:03 -06007672 p->cq_entries = roundup_pow_of_two(p->cq_entries);
7673 } else {
7674 p->cq_entries = 2 * p->sq_entries;
7675 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007676
7677 user = get_uid(current_user());
7678 account_mem = !capable(CAP_IPC_LOCK);
7679
7680 if (account_mem) {
7681 ret = io_account_mem(user,
7682 ring_pages(p->sq_entries, p->cq_entries));
7683 if (ret) {
7684 free_uid(user);
7685 return ret;
7686 }
7687 }
7688
7689 ctx = io_ring_ctx_alloc(p);
7690 if (!ctx) {
7691 if (account_mem)
7692 io_unaccount_mem(user, ring_pages(p->sq_entries,
7693 p->cq_entries));
7694 free_uid(user);
7695 return -ENOMEM;
7696 }
7697 ctx->compat = in_compat_syscall();
7698 ctx->account_mem = account_mem;
7699 ctx->user = user;
Jens Axboe0b8c0ec2019-12-02 08:50:00 -07007700 ctx->creds = get_current_cred();
Jens Axboe2b188cc2019-01-07 10:46:33 -07007701
7702 ret = io_allocate_scq_urings(ctx, p);
7703 if (ret)
7704 goto err;
7705
Jens Axboe6c271ce2019-01-10 11:22:30 -07007706 ret = io_sq_offload_start(ctx, p);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007707 if (ret)
7708 goto err;
7709
Jens Axboe2b188cc2019-01-07 10:46:33 -07007710 memset(&p->sq_off, 0, sizeof(p->sq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00007711 p->sq_off.head = offsetof(struct io_rings, sq.head);
7712 p->sq_off.tail = offsetof(struct io_rings, sq.tail);
7713 p->sq_off.ring_mask = offsetof(struct io_rings, sq_ring_mask);
7714 p->sq_off.ring_entries = offsetof(struct io_rings, sq_ring_entries);
7715 p->sq_off.flags = offsetof(struct io_rings, sq_flags);
7716 p->sq_off.dropped = offsetof(struct io_rings, sq_dropped);
7717 p->sq_off.array = (char *)ctx->sq_array - (char *)ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007718
7719 memset(&p->cq_off, 0, sizeof(p->cq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00007720 p->cq_off.head = offsetof(struct io_rings, cq.head);
7721 p->cq_off.tail = offsetof(struct io_rings, cq.tail);
7722 p->cq_off.ring_mask = offsetof(struct io_rings, cq_ring_mask);
7723 p->cq_off.ring_entries = offsetof(struct io_rings, cq_ring_entries);
7724 p->cq_off.overflow = offsetof(struct io_rings, cq_overflow);
7725 p->cq_off.cqes = offsetof(struct io_rings, cqes);
Jens Axboeac90f242019-09-06 10:26:21 -06007726
Jens Axboe044c1ab2019-10-28 09:15:33 -06007727 /*
7728 * Install ring fd as the very last thing, so we don't risk someone
7729 * having closed it before we finish setup
7730 */
7731 ret = io_uring_get_fd(ctx);
7732 if (ret < 0)
7733 goto err;
7734
Jens Axboeda8c9692019-12-02 18:51:26 -07007735 p->features = IORING_FEAT_SINGLE_MMAP | IORING_FEAT_NODROP |
Jens Axboecccf0ee2020-01-27 16:34:48 -07007736 IORING_FEAT_SUBMIT_STABLE | IORING_FEAT_RW_CUR_POS |
Jens Axboed7718a92020-02-14 22:23:12 -07007737 IORING_FEAT_CUR_PERSONALITY | IORING_FEAT_FAST_POLL;
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02007738 trace_io_uring_create(ret, ctx, p->sq_entries, p->cq_entries, p->flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007739 return ret;
7740err:
7741 io_ring_ctx_wait_and_kill(ctx);
7742 return ret;
7743}
7744
7745/*
7746 * Sets up an aio uring context, and returns the fd. Applications asks for a
7747 * ring size, we return the actual sq/cq ring sizes (among other things) in the
7748 * params structure passed in.
7749 */
7750static long io_uring_setup(u32 entries, struct io_uring_params __user *params)
7751{
7752 struct io_uring_params p;
7753 long ret;
7754 int i;
7755
7756 if (copy_from_user(&p, params, sizeof(p)))
7757 return -EFAULT;
7758 for (i = 0; i < ARRAY_SIZE(p.resv); i++) {
7759 if (p.resv[i])
7760 return -EINVAL;
7761 }
7762
Jens Axboe6c271ce2019-01-10 11:22:30 -07007763 if (p.flags & ~(IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL |
Jens Axboe8110c1a2019-12-28 15:39:54 -07007764 IORING_SETUP_SQ_AFF | IORING_SETUP_CQSIZE |
Pavel Begunkov24369c22020-01-28 03:15:48 +03007765 IORING_SETUP_CLAMP | IORING_SETUP_ATTACH_WQ))
Jens Axboe2b188cc2019-01-07 10:46:33 -07007766 return -EINVAL;
7767
7768 ret = io_uring_create(entries, &p);
7769 if (ret < 0)
7770 return ret;
7771
7772 if (copy_to_user(params, &p, sizeof(p)))
7773 return -EFAULT;
7774
7775 return ret;
7776}
7777
7778SYSCALL_DEFINE2(io_uring_setup, u32, entries,
7779 struct io_uring_params __user *, params)
7780{
7781 return io_uring_setup(entries, params);
7782}
7783
Jens Axboe66f4af92020-01-16 15:36:52 -07007784static int io_probe(struct io_ring_ctx *ctx, void __user *arg, unsigned nr_args)
7785{
7786 struct io_uring_probe *p;
7787 size_t size;
7788 int i, ret;
7789
7790 size = struct_size(p, ops, nr_args);
7791 if (size == SIZE_MAX)
7792 return -EOVERFLOW;
7793 p = kzalloc(size, GFP_KERNEL);
7794 if (!p)
7795 return -ENOMEM;
7796
7797 ret = -EFAULT;
7798 if (copy_from_user(p, arg, size))
7799 goto out;
7800 ret = -EINVAL;
7801 if (memchr_inv(p, 0, size))
7802 goto out;
7803
7804 p->last_op = IORING_OP_LAST - 1;
7805 if (nr_args > IORING_OP_LAST)
7806 nr_args = IORING_OP_LAST;
7807
7808 for (i = 0; i < nr_args; i++) {
7809 p->ops[i].op = i;
7810 if (!io_op_defs[i].not_supported)
7811 p->ops[i].flags = IO_URING_OP_SUPPORTED;
7812 }
7813 p->ops_len = i;
7814
7815 ret = 0;
7816 if (copy_to_user(arg, p, size))
7817 ret = -EFAULT;
7818out:
7819 kfree(p);
7820 return ret;
7821}
7822
Jens Axboe071698e2020-01-28 10:04:42 -07007823static int io_register_personality(struct io_ring_ctx *ctx)
7824{
7825 const struct cred *creds = get_current_cred();
7826 int id;
7827
7828 id = idr_alloc_cyclic(&ctx->personality_idr, (void *) creds, 1,
7829 USHRT_MAX, GFP_KERNEL);
7830 if (id < 0)
7831 put_cred(creds);
7832 return id;
7833}
7834
7835static int io_unregister_personality(struct io_ring_ctx *ctx, unsigned id)
7836{
7837 const struct cred *old_creds;
7838
7839 old_creds = idr_remove(&ctx->personality_idr, id);
7840 if (old_creds) {
7841 put_cred(old_creds);
7842 return 0;
7843 }
7844
7845 return -EINVAL;
7846}
7847
7848static bool io_register_op_must_quiesce(int op)
7849{
7850 switch (op) {
7851 case IORING_UNREGISTER_FILES:
7852 case IORING_REGISTER_FILES_UPDATE:
7853 case IORING_REGISTER_PROBE:
7854 case IORING_REGISTER_PERSONALITY:
7855 case IORING_UNREGISTER_PERSONALITY:
7856 return false;
7857 default:
7858 return true;
7859 }
7860}
7861
Jens Axboeedafcce2019-01-09 09:16:05 -07007862static int __io_uring_register(struct io_ring_ctx *ctx, unsigned opcode,
7863 void __user *arg, unsigned nr_args)
Jens Axboeb19062a2019-04-15 10:49:38 -06007864 __releases(ctx->uring_lock)
7865 __acquires(ctx->uring_lock)
Jens Axboeedafcce2019-01-09 09:16:05 -07007866{
7867 int ret;
7868
Jens Axboe35fa71a2019-04-22 10:23:23 -06007869 /*
7870 * We're inside the ring mutex, if the ref is already dying, then
7871 * someone else killed the ctx or is already going through
7872 * io_uring_register().
7873 */
7874 if (percpu_ref_is_dying(&ctx->refs))
7875 return -ENXIO;
7876
Jens Axboe071698e2020-01-28 10:04:42 -07007877 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07007878 percpu_ref_kill(&ctx->refs);
Jens Axboeb19062a2019-04-15 10:49:38 -06007879
Jens Axboe05f3fb32019-12-09 11:22:50 -07007880 /*
7881 * Drop uring mutex before waiting for references to exit. If
7882 * another thread is currently inside io_uring_enter() it might
7883 * need to grab the uring_lock to make progress. If we hold it
7884 * here across the drain wait, then we can deadlock. It's safe
7885 * to drop the mutex here, since no new references will come in
7886 * after we've killed the percpu ref.
7887 */
7888 mutex_unlock(&ctx->uring_lock);
Jens Axboec1503682020-01-08 08:26:07 -07007889 ret = wait_for_completion_interruptible(&ctx->completions[0]);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007890 mutex_lock(&ctx->uring_lock);
Jens Axboec1503682020-01-08 08:26:07 -07007891 if (ret) {
7892 percpu_ref_resurrect(&ctx->refs);
7893 ret = -EINTR;
7894 goto out;
7895 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07007896 }
Jens Axboeedafcce2019-01-09 09:16:05 -07007897
7898 switch (opcode) {
7899 case IORING_REGISTER_BUFFERS:
7900 ret = io_sqe_buffer_register(ctx, arg, nr_args);
7901 break;
7902 case IORING_UNREGISTER_BUFFERS:
7903 ret = -EINVAL;
7904 if (arg || nr_args)
7905 break;
7906 ret = io_sqe_buffer_unregister(ctx);
7907 break;
Jens Axboe6b063142019-01-10 22:13:58 -07007908 case IORING_REGISTER_FILES:
7909 ret = io_sqe_files_register(ctx, arg, nr_args);
7910 break;
7911 case IORING_UNREGISTER_FILES:
7912 ret = -EINVAL;
7913 if (arg || nr_args)
7914 break;
7915 ret = io_sqe_files_unregister(ctx);
7916 break;
Jens Axboec3a31e62019-10-03 13:59:56 -06007917 case IORING_REGISTER_FILES_UPDATE:
7918 ret = io_sqe_files_update(ctx, arg, nr_args);
7919 break;
Jens Axboe9b402842019-04-11 11:45:41 -06007920 case IORING_REGISTER_EVENTFD:
Jens Axboef2842ab2020-01-08 11:04:00 -07007921 case IORING_REGISTER_EVENTFD_ASYNC:
Jens Axboe9b402842019-04-11 11:45:41 -06007922 ret = -EINVAL;
7923 if (nr_args != 1)
7924 break;
7925 ret = io_eventfd_register(ctx, arg);
Jens Axboef2842ab2020-01-08 11:04:00 -07007926 if (ret)
7927 break;
7928 if (opcode == IORING_REGISTER_EVENTFD_ASYNC)
7929 ctx->eventfd_async = 1;
7930 else
7931 ctx->eventfd_async = 0;
Jens Axboe9b402842019-04-11 11:45:41 -06007932 break;
7933 case IORING_UNREGISTER_EVENTFD:
7934 ret = -EINVAL;
7935 if (arg || nr_args)
7936 break;
7937 ret = io_eventfd_unregister(ctx);
7938 break;
Jens Axboe66f4af92020-01-16 15:36:52 -07007939 case IORING_REGISTER_PROBE:
7940 ret = -EINVAL;
7941 if (!arg || nr_args > 256)
7942 break;
7943 ret = io_probe(ctx, arg, nr_args);
7944 break;
Jens Axboe071698e2020-01-28 10:04:42 -07007945 case IORING_REGISTER_PERSONALITY:
7946 ret = -EINVAL;
7947 if (arg || nr_args)
7948 break;
7949 ret = io_register_personality(ctx);
7950 break;
7951 case IORING_UNREGISTER_PERSONALITY:
7952 ret = -EINVAL;
7953 if (arg)
7954 break;
7955 ret = io_unregister_personality(ctx, nr_args);
7956 break;
Jens Axboeedafcce2019-01-09 09:16:05 -07007957 default:
7958 ret = -EINVAL;
7959 break;
7960 }
7961
Jens Axboe071698e2020-01-28 10:04:42 -07007962 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07007963 /* bring the ctx back to life */
Jens Axboe05f3fb32019-12-09 11:22:50 -07007964 percpu_ref_reinit(&ctx->refs);
Jens Axboec1503682020-01-08 08:26:07 -07007965out:
7966 reinit_completion(&ctx->completions[0]);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007967 }
Jens Axboeedafcce2019-01-09 09:16:05 -07007968 return ret;
7969}
7970
7971SYSCALL_DEFINE4(io_uring_register, unsigned int, fd, unsigned int, opcode,
7972 void __user *, arg, unsigned int, nr_args)
7973{
7974 struct io_ring_ctx *ctx;
7975 long ret = -EBADF;
7976 struct fd f;
7977
7978 f = fdget(fd);
7979 if (!f.file)
7980 return -EBADF;
7981
7982 ret = -EOPNOTSUPP;
7983 if (f.file->f_op != &io_uring_fops)
7984 goto out_fput;
7985
7986 ctx = f.file->private_data;
7987
7988 mutex_lock(&ctx->uring_lock);
7989 ret = __io_uring_register(ctx, opcode, arg, nr_args);
7990 mutex_unlock(&ctx->uring_lock);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02007991 trace_io_uring_register(ctx, opcode, ctx->nr_user_files, ctx->nr_user_bufs,
7992 ctx->cq_ev_fd != NULL, ret);
Jens Axboeedafcce2019-01-09 09:16:05 -07007993out_fput:
7994 fdput(f);
7995 return ret;
7996}
7997
Jens Axboe2b188cc2019-01-07 10:46:33 -07007998static int __init io_uring_init(void)
7999{
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008000#define __BUILD_BUG_VERIFY_ELEMENT(stype, eoffset, etype, ename) do { \
8001 BUILD_BUG_ON(offsetof(stype, ename) != eoffset); \
8002 BUILD_BUG_ON(sizeof(etype) != sizeof_field(stype, ename)); \
8003} while (0)
8004
8005#define BUILD_BUG_SQE_ELEM(eoffset, etype, ename) \
8006 __BUILD_BUG_VERIFY_ELEMENT(struct io_uring_sqe, eoffset, etype, ename)
8007 BUILD_BUG_ON(sizeof(struct io_uring_sqe) != 64);
8008 BUILD_BUG_SQE_ELEM(0, __u8, opcode);
8009 BUILD_BUG_SQE_ELEM(1, __u8, flags);
8010 BUILD_BUG_SQE_ELEM(2, __u16, ioprio);
8011 BUILD_BUG_SQE_ELEM(4, __s32, fd);
8012 BUILD_BUG_SQE_ELEM(8, __u64, off);
8013 BUILD_BUG_SQE_ELEM(8, __u64, addr2);
8014 BUILD_BUG_SQE_ELEM(16, __u64, addr);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03008015 BUILD_BUG_SQE_ELEM(16, __u64, splice_off_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008016 BUILD_BUG_SQE_ELEM(24, __u32, len);
8017 BUILD_BUG_SQE_ELEM(28, __kernel_rwf_t, rw_flags);
8018 BUILD_BUG_SQE_ELEM(28, /* compat */ int, rw_flags);
8019 BUILD_BUG_SQE_ELEM(28, /* compat */ __u32, rw_flags);
8020 BUILD_BUG_SQE_ELEM(28, __u32, fsync_flags);
8021 BUILD_BUG_SQE_ELEM(28, __u16, poll_events);
8022 BUILD_BUG_SQE_ELEM(28, __u32, sync_range_flags);
8023 BUILD_BUG_SQE_ELEM(28, __u32, msg_flags);
8024 BUILD_BUG_SQE_ELEM(28, __u32, timeout_flags);
8025 BUILD_BUG_SQE_ELEM(28, __u32, accept_flags);
8026 BUILD_BUG_SQE_ELEM(28, __u32, cancel_flags);
8027 BUILD_BUG_SQE_ELEM(28, __u32, open_flags);
8028 BUILD_BUG_SQE_ELEM(28, __u32, statx_flags);
8029 BUILD_BUG_SQE_ELEM(28, __u32, fadvise_advice);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03008030 BUILD_BUG_SQE_ELEM(28, __u32, splice_flags);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008031 BUILD_BUG_SQE_ELEM(32, __u64, user_data);
8032 BUILD_BUG_SQE_ELEM(40, __u16, buf_index);
8033 BUILD_BUG_SQE_ELEM(42, __u16, personality);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03008034 BUILD_BUG_SQE_ELEM(44, __s32, splice_fd_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008035
Jens Axboed3656342019-12-18 09:50:26 -07008036 BUILD_BUG_ON(ARRAY_SIZE(io_op_defs) != IORING_OP_LAST);
Jens Axboe84557872020-03-03 15:28:17 -07008037 BUILD_BUG_ON(__REQ_F_LAST_BIT >= 8 * sizeof(int));
Jens Axboe2b188cc2019-01-07 10:46:33 -07008038 req_cachep = KMEM_CACHE(io_kiocb, SLAB_HWCACHE_ALIGN | SLAB_PANIC);
8039 return 0;
8040};
8041__initcall(io_uring_init);