blob: 4bbad2ed4ae34f69fd5acbf73bab218f724788e1 [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 Axboed7718a92020-02-14 22:23:12 -0700607 struct task_struct *task;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700608 u64 user_data;
Jens Axboe9e645e112019-05-10 16:07:28 -0600609 u32 result;
Jens Axboede0617e2019-04-06 21:51:27 -0600610 u32 sequence;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700611
Jens Axboed7718a92020-02-14 22:23:12 -0700612 struct list_head link_list;
613
Jens Axboefcb323c2019-10-24 12:39:47 -0600614 struct list_head inflight_entry;
615
Jens Axboeb41e9852020-02-17 09:52:41 -0700616 union {
617 /*
618 * Only commands that never go async can use the below fields,
Jens Axboed7718a92020-02-14 22:23:12 -0700619 * obviously. Right now only IORING_OP_POLL_ADD uses them, and
620 * async armed poll handlers for regular commands. The latter
621 * restore the work, if needed.
Jens Axboeb41e9852020-02-17 09:52:41 -0700622 */
623 struct {
Jens Axboeb41e9852020-02-17 09:52:41 -0700624 struct callback_head task_work;
Jens Axboed7718a92020-02-14 22:23:12 -0700625 struct hlist_node hash_node;
626 struct async_poll *apoll;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700627 int cflags;
Jens Axboeb41e9852020-02-17 09:52:41 -0700628 };
629 struct io_wq_work work;
630 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700631};
632
633#define IO_PLUG_THRESHOLD 2
Jens Axboedef596e2019-01-09 08:59:42 -0700634#define IO_IOPOLL_BATCH 8
Jens Axboe2b188cc2019-01-07 10:46:33 -0700635
Jens Axboe9a56a232019-01-09 09:06:50 -0700636struct io_submit_state {
637 struct blk_plug plug;
638
639 /*
Jens Axboe2579f912019-01-09 09:10:43 -0700640 * io_kiocb alloc cache
641 */
642 void *reqs[IO_IOPOLL_BATCH];
Pavel Begunkov6c8a3132020-02-01 03:58:00 +0300643 unsigned int free_reqs;
Jens Axboe2579f912019-01-09 09:10:43 -0700644
645 /*
Jens Axboe9a56a232019-01-09 09:06:50 -0700646 * File reference cache
647 */
648 struct file *file;
649 unsigned int fd;
650 unsigned int has_refs;
651 unsigned int used_refs;
652 unsigned int ios_left;
653};
654
Jens Axboed3656342019-12-18 09:50:26 -0700655struct io_op_def {
656 /* needs req->io allocated for deferral/async */
657 unsigned async_ctx : 1;
658 /* needs current->mm setup, does mm access */
659 unsigned needs_mm : 1;
660 /* needs req->file assigned */
661 unsigned needs_file : 1;
662 /* needs req->file assigned IFF fd is >= 0 */
663 unsigned fd_non_neg : 1;
664 /* hash wq insertion if file is a regular file */
665 unsigned hash_reg_file : 1;
666 /* unbound wq insertion if file is a non-regular file */
667 unsigned unbound_nonreg_file : 1;
Jens Axboe66f4af92020-01-16 15:36:52 -0700668 /* opcode is not supported by this kernel */
669 unsigned not_supported : 1;
Jens Axboef86cd202020-01-29 13:46:44 -0700670 /* needs file table */
671 unsigned file_table : 1;
Jens Axboeff002b32020-02-07 16:05:21 -0700672 /* needs ->fs */
673 unsigned needs_fs : 1;
Jens Axboe8a727582020-02-20 09:59:44 -0700674 /* set if opcode supports polled "wait" */
675 unsigned pollin : 1;
676 unsigned pollout : 1;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700677 /* op supports buffer selection */
678 unsigned buffer_select : 1;
Jens Axboed3656342019-12-18 09:50:26 -0700679};
680
681static const struct io_op_def io_op_defs[] = {
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300682 [IORING_OP_NOP] = {},
683 [IORING_OP_READV] = {
Jens Axboed3656342019-12-18 09:50:26 -0700684 .async_ctx = 1,
685 .needs_mm = 1,
686 .needs_file = 1,
687 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700688 .pollin = 1,
Jens Axboe4d954c22020-02-27 07:31:19 -0700689 .buffer_select = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700690 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300691 [IORING_OP_WRITEV] = {
Jens Axboed3656342019-12-18 09:50:26 -0700692 .async_ctx = 1,
693 .needs_mm = 1,
694 .needs_file = 1,
695 .hash_reg_file = 1,
696 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700697 .pollout = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700698 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300699 [IORING_OP_FSYNC] = {
Jens Axboed3656342019-12-18 09:50:26 -0700700 .needs_file = 1,
701 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300702 [IORING_OP_READ_FIXED] = {
Jens Axboed3656342019-12-18 09:50:26 -0700703 .needs_file = 1,
704 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700705 .pollin = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700706 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300707 [IORING_OP_WRITE_FIXED] = {
Jens Axboed3656342019-12-18 09:50:26 -0700708 .needs_file = 1,
709 .hash_reg_file = 1,
710 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700711 .pollout = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700712 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300713 [IORING_OP_POLL_ADD] = {
Jens Axboed3656342019-12-18 09:50:26 -0700714 .needs_file = 1,
715 .unbound_nonreg_file = 1,
716 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300717 [IORING_OP_POLL_REMOVE] = {},
718 [IORING_OP_SYNC_FILE_RANGE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700719 .needs_file = 1,
720 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300721 [IORING_OP_SENDMSG] = {
Jens Axboed3656342019-12-18 09:50:26 -0700722 .async_ctx = 1,
723 .needs_mm = 1,
724 .needs_file = 1,
725 .unbound_nonreg_file = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700726 .needs_fs = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700727 .pollout = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700728 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300729 [IORING_OP_RECVMSG] = {
Jens Axboed3656342019-12-18 09:50:26 -0700730 .async_ctx = 1,
731 .needs_mm = 1,
732 .needs_file = 1,
733 .unbound_nonreg_file = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700734 .needs_fs = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700735 .pollin = 1,
Jens Axboe52de1fe2020-02-27 10:15:42 -0700736 .buffer_select = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700737 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300738 [IORING_OP_TIMEOUT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700739 .async_ctx = 1,
740 .needs_mm = 1,
741 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300742 [IORING_OP_TIMEOUT_REMOVE] = {},
743 [IORING_OP_ACCEPT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700744 .needs_mm = 1,
745 .needs_file = 1,
746 .unbound_nonreg_file = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700747 .file_table = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700748 .pollin = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700749 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300750 [IORING_OP_ASYNC_CANCEL] = {},
751 [IORING_OP_LINK_TIMEOUT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700752 .async_ctx = 1,
753 .needs_mm = 1,
754 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300755 [IORING_OP_CONNECT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700756 .async_ctx = 1,
757 .needs_mm = 1,
758 .needs_file = 1,
759 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700760 .pollout = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700761 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300762 [IORING_OP_FALLOCATE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700763 .needs_file = 1,
764 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300765 [IORING_OP_OPENAT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700766 .needs_file = 1,
767 .fd_non_neg = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700768 .file_table = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700769 .needs_fs = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700770 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300771 [IORING_OP_CLOSE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700772 .needs_file = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700773 .file_table = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700774 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300775 [IORING_OP_FILES_UPDATE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700776 .needs_mm = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700777 .file_table = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700778 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300779 [IORING_OP_STATX] = {
Jens Axboed3656342019-12-18 09:50:26 -0700780 .needs_mm = 1,
781 .needs_file = 1,
782 .fd_non_neg = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700783 .needs_fs = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700784 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300785 [IORING_OP_READ] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -0700786 .needs_mm = 1,
787 .needs_file = 1,
788 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700789 .pollin = 1,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700790 .buffer_select = 1,
Jens Axboe3a6820f2019-12-22 15:19:35 -0700791 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300792 [IORING_OP_WRITE] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -0700793 .needs_mm = 1,
794 .needs_file = 1,
795 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700796 .pollout = 1,
Jens Axboe3a6820f2019-12-22 15:19:35 -0700797 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300798 [IORING_OP_FADVISE] = {
Jens Axboe4840e412019-12-25 22:03:45 -0700799 .needs_file = 1,
800 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300801 [IORING_OP_MADVISE] = {
Jens Axboec1ca7572019-12-25 22:18:28 -0700802 .needs_mm = 1,
803 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300804 [IORING_OP_SEND] = {
Jens Axboefddafac2020-01-04 20:19:44 -0700805 .needs_mm = 1,
806 .needs_file = 1,
807 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700808 .pollout = 1,
Jens Axboefddafac2020-01-04 20:19:44 -0700809 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300810 [IORING_OP_RECV] = {
Jens Axboefddafac2020-01-04 20:19:44 -0700811 .needs_mm = 1,
812 .needs_file = 1,
813 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700814 .pollin = 1,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700815 .buffer_select = 1,
Jens Axboefddafac2020-01-04 20:19:44 -0700816 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300817 [IORING_OP_OPENAT2] = {
Jens Axboecebdb982020-01-08 17:59:24 -0700818 .needs_file = 1,
819 .fd_non_neg = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700820 .file_table = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700821 .needs_fs = 1,
Jens Axboecebdb982020-01-08 17:59:24 -0700822 },
Jens Axboe3e4827b2020-01-08 15:18:09 -0700823 [IORING_OP_EPOLL_CTL] = {
824 .unbound_nonreg_file = 1,
825 .file_table = 1,
826 },
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300827 [IORING_OP_SPLICE] = {
828 .needs_file = 1,
829 .hash_reg_file = 1,
830 .unbound_nonreg_file = 1,
Jens Axboeddf0322d2020-02-23 16:41:33 -0700831 },
832 [IORING_OP_PROVIDE_BUFFERS] = {},
Jens Axboe067524e2020-03-02 16:32:28 -0700833 [IORING_OP_REMOVE_BUFFERS] = {},
Jens Axboed3656342019-12-18 09:50:26 -0700834};
835
Jens Axboe561fb042019-10-24 07:25:42 -0600836static void io_wq_submit_work(struct io_wq_work **workptr);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700837static void io_cqring_fill_event(struct io_kiocb *req, long res);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800838static void io_put_req(struct io_kiocb *req);
Jens Axboe978db572019-11-14 22:39:04 -0700839static void __io_double_put_req(struct io_kiocb *req);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700840static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req);
841static void io_queue_linked_timeout(struct io_kiocb *req);
Jens Axboe05f3fb32019-12-09 11:22:50 -0700842static int __io_sqe_files_update(struct io_ring_ctx *ctx,
843 struct io_uring_files_update *ip,
844 unsigned nr_args);
Jens Axboef86cd202020-01-29 13:46:44 -0700845static int io_grab_files(struct io_kiocb *req);
Jens Axboe2faf8522020-02-04 19:54:55 -0700846static void io_ring_file_ref_flush(struct fixed_file_data *data);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300847static void io_cleanup_req(struct io_kiocb *req);
Jens Axboeb41e9852020-02-17 09:52:41 -0700848static int io_file_get(struct io_submit_state *state, struct io_kiocb *req,
849 int fd, struct file **out_file, bool fixed);
850static void __io_queue_sqe(struct io_kiocb *req,
851 const struct io_uring_sqe *sqe);
Jens Axboede0617e2019-04-06 21:51:27 -0600852
Jens Axboe2b188cc2019-01-07 10:46:33 -0700853static struct kmem_cache *req_cachep;
854
855static const struct file_operations io_uring_fops;
856
857struct sock *io_uring_get_socket(struct file *file)
858{
859#if defined(CONFIG_UNIX)
860 if (file->f_op == &io_uring_fops) {
861 struct io_ring_ctx *ctx = file->private_data;
862
863 return ctx->ring_sock->sk;
864 }
865#endif
866 return NULL;
867}
868EXPORT_SYMBOL(io_uring_get_socket);
869
870static void io_ring_ctx_ref_free(struct percpu_ref *ref)
871{
872 struct io_ring_ctx *ctx = container_of(ref, struct io_ring_ctx, refs);
873
Jens Axboe206aefd2019-11-07 18:27:42 -0700874 complete(&ctx->completions[0]);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700875}
876
877static struct io_ring_ctx *io_ring_ctx_alloc(struct io_uring_params *p)
878{
879 struct io_ring_ctx *ctx;
Jens Axboe78076bb2019-12-04 19:56:40 -0700880 int hash_bits;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700881
882 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
883 if (!ctx)
884 return NULL;
885
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700886 ctx->fallback_req = kmem_cache_alloc(req_cachep, GFP_KERNEL);
887 if (!ctx->fallback_req)
888 goto err;
889
Jens Axboe206aefd2019-11-07 18:27:42 -0700890 ctx->completions = kmalloc(2 * sizeof(struct completion), GFP_KERNEL);
891 if (!ctx->completions)
892 goto err;
893
Jens Axboe78076bb2019-12-04 19:56:40 -0700894 /*
895 * Use 5 bits less than the max cq entries, that should give us around
896 * 32 entries per hash list if totally full and uniformly spread.
897 */
898 hash_bits = ilog2(p->cq_entries);
899 hash_bits -= 5;
900 if (hash_bits <= 0)
901 hash_bits = 1;
902 ctx->cancel_hash_bits = hash_bits;
903 ctx->cancel_hash = kmalloc((1U << hash_bits) * sizeof(struct hlist_head),
904 GFP_KERNEL);
905 if (!ctx->cancel_hash)
906 goto err;
907 __hash_init(ctx->cancel_hash, 1U << hash_bits);
908
Roman Gushchin21482892019-05-07 10:01:48 -0700909 if (percpu_ref_init(&ctx->refs, io_ring_ctx_ref_free,
Jens Axboe206aefd2019-11-07 18:27:42 -0700910 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL))
911 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700912
913 ctx->flags = p->flags;
914 init_waitqueue_head(&ctx->cq_wait);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700915 INIT_LIST_HEAD(&ctx->cq_overflow_list);
Jens Axboe206aefd2019-11-07 18:27:42 -0700916 init_completion(&ctx->completions[0]);
917 init_completion(&ctx->completions[1]);
Jens Axboe5a2e7452020-02-23 16:23:11 -0700918 idr_init(&ctx->io_buffer_idr);
Jens Axboe071698e2020-01-28 10:04:42 -0700919 idr_init(&ctx->personality_idr);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700920 mutex_init(&ctx->uring_lock);
921 init_waitqueue_head(&ctx->wait);
922 spin_lock_init(&ctx->completion_lock);
Jens Axboedef596e2019-01-09 08:59:42 -0700923 INIT_LIST_HEAD(&ctx->poll_list);
Jens Axboede0617e2019-04-06 21:51:27 -0600924 INIT_LIST_HEAD(&ctx->defer_list);
Jens Axboe5262f562019-09-17 12:26:57 -0600925 INIT_LIST_HEAD(&ctx->timeout_list);
Jens Axboefcb323c2019-10-24 12:39:47 -0600926 init_waitqueue_head(&ctx->inflight_wait);
927 spin_lock_init(&ctx->inflight_lock);
928 INIT_LIST_HEAD(&ctx->inflight_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700929 return ctx;
Jens Axboe206aefd2019-11-07 18:27:42 -0700930err:
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700931 if (ctx->fallback_req)
932 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe206aefd2019-11-07 18:27:42 -0700933 kfree(ctx->completions);
Jens Axboe78076bb2019-12-04 19:56:40 -0700934 kfree(ctx->cancel_hash);
Jens Axboe206aefd2019-11-07 18:27:42 -0700935 kfree(ctx);
936 return NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700937}
938
Bob Liu9d858b22019-11-13 18:06:25 +0800939static inline bool __req_need_defer(struct io_kiocb *req)
Jens Axboede0617e2019-04-06 21:51:27 -0600940{
Jackie Liua197f662019-11-08 08:09:12 -0700941 struct io_ring_ctx *ctx = req->ctx;
942
Jens Axboe498ccd92019-10-25 10:04:25 -0600943 return req->sequence != ctx->cached_cq_tail + ctx->cached_sq_dropped
944 + atomic_read(&ctx->cached_cq_overflow);
Jens Axboede0617e2019-04-06 21:51:27 -0600945}
946
Bob Liu9d858b22019-11-13 18:06:25 +0800947static inline bool req_need_defer(struct io_kiocb *req)
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600948{
Pavel Begunkov87987892020-01-18 01:22:30 +0300949 if (unlikely(req->flags & REQ_F_IO_DRAIN))
Bob Liu9d858b22019-11-13 18:06:25 +0800950 return __req_need_defer(req);
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600951
Bob Liu9d858b22019-11-13 18:06:25 +0800952 return false;
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600953}
954
955static struct io_kiocb *io_get_deferred_req(struct io_ring_ctx *ctx)
Jens Axboede0617e2019-04-06 21:51:27 -0600956{
957 struct io_kiocb *req;
958
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600959 req = list_first_entry_or_null(&ctx->defer_list, struct io_kiocb, list);
Bob Liu9d858b22019-11-13 18:06:25 +0800960 if (req && !req_need_defer(req)) {
Jens Axboede0617e2019-04-06 21:51:27 -0600961 list_del_init(&req->list);
962 return req;
963 }
964
965 return NULL;
966}
967
Jens Axboe5262f562019-09-17 12:26:57 -0600968static struct io_kiocb *io_get_timeout_req(struct io_ring_ctx *ctx)
969{
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600970 struct io_kiocb *req;
971
972 req = list_first_entry_or_null(&ctx->timeout_list, struct io_kiocb, list);
Jens Axboe93bd25b2019-11-11 23:34:31 -0700973 if (req) {
974 if (req->flags & REQ_F_TIMEOUT_NOSEQ)
975 return NULL;
Linus Torvaldsfb4b3d32019-11-25 10:40:27 -0800976 if (!__req_need_defer(req)) {
Jens Axboe93bd25b2019-11-11 23:34:31 -0700977 list_del_init(&req->list);
978 return req;
979 }
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600980 }
981
982 return NULL;
Jens Axboe5262f562019-09-17 12:26:57 -0600983}
984
Jens Axboede0617e2019-04-06 21:51:27 -0600985static void __io_commit_cqring(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700986{
Hristo Venev75b28af2019-08-26 17:23:46 +0000987 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700988
Pavel Begunkov07910152020-01-17 03:52:46 +0300989 /* order cqe stores with ring update */
990 smp_store_release(&rings->cq.tail, ctx->cached_cq_tail);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700991
Pavel Begunkov07910152020-01-17 03:52:46 +0300992 if (wq_has_sleeper(&ctx->cq_wait)) {
993 wake_up_interruptible(&ctx->cq_wait);
994 kill_fasync(&ctx->cq_fasync, SIGIO, POLL_IN);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700995 }
996}
997
Jens Axboecccf0ee2020-01-27 16:34:48 -0700998static inline void io_req_work_grab_env(struct io_kiocb *req,
999 const struct io_op_def *def)
Jens Axboe18d9be12019-09-10 09:13:05 -06001000{
Jens Axboecccf0ee2020-01-27 16:34:48 -07001001 if (!req->work.mm && def->needs_mm) {
1002 mmgrab(current->mm);
1003 req->work.mm = current->mm;
1004 }
1005 if (!req->work.creds)
1006 req->work.creds = get_current_cred();
Jens Axboeff002b32020-02-07 16:05:21 -07001007 if (!req->work.fs && def->needs_fs) {
1008 spin_lock(&current->fs->lock);
1009 if (!current->fs->in_exec) {
1010 req->work.fs = current->fs;
1011 req->work.fs->users++;
1012 } else {
1013 req->work.flags |= IO_WQ_WORK_CANCEL;
1014 }
1015 spin_unlock(&current->fs->lock);
1016 }
Jens Axboe6ab23142020-02-08 20:23:59 -07001017 if (!req->work.task_pid)
1018 req->work.task_pid = task_pid_vnr(current);
Jens Axboecccf0ee2020-01-27 16:34:48 -07001019}
1020
1021static inline void io_req_work_drop_env(struct io_kiocb *req)
1022{
1023 if (req->work.mm) {
1024 mmdrop(req->work.mm);
1025 req->work.mm = NULL;
1026 }
1027 if (req->work.creds) {
1028 put_cred(req->work.creds);
1029 req->work.creds = NULL;
1030 }
Jens Axboeff002b32020-02-07 16:05:21 -07001031 if (req->work.fs) {
1032 struct fs_struct *fs = req->work.fs;
1033
1034 spin_lock(&req->work.fs->lock);
1035 if (--fs->users)
1036 fs = NULL;
1037 spin_unlock(&req->work.fs->lock);
1038 if (fs)
1039 free_fs_struct(fs);
1040 }
Jens Axboe561fb042019-10-24 07:25:42 -06001041}
1042
Jens Axboe94ae5e72019-11-14 19:39:52 -07001043static inline bool io_prep_async_work(struct io_kiocb *req,
1044 struct io_kiocb **link)
Jens Axboe561fb042019-10-24 07:25:42 -06001045{
Jens Axboed3656342019-12-18 09:50:26 -07001046 const struct io_op_def *def = &io_op_defs[req->opcode];
Jens Axboe561fb042019-10-24 07:25:42 -06001047 bool do_hashed = false;
Jens Axboe54a91f32019-09-10 09:15:04 -06001048
Jens Axboed3656342019-12-18 09:50:26 -07001049 if (req->flags & REQ_F_ISREG) {
1050 if (def->hash_reg_file)
Jens Axboe3529d8c2019-12-19 18:24:38 -07001051 do_hashed = true;
Jens Axboed3656342019-12-18 09:50:26 -07001052 } else {
1053 if (def->unbound_nonreg_file)
Jens Axboe3529d8c2019-12-19 18:24:38 -07001054 req->work.flags |= IO_WQ_WORK_UNBOUND;
Jens Axboe54a91f32019-09-10 09:15:04 -06001055 }
Jens Axboecccf0ee2020-01-27 16:34:48 -07001056
1057 io_req_work_grab_env(req, def);
Jens Axboe54a91f32019-09-10 09:15:04 -06001058
Jens Axboe94ae5e72019-11-14 19:39:52 -07001059 *link = io_prep_linked_timeout(req);
Jens Axboe561fb042019-10-24 07:25:42 -06001060 return do_hashed;
1061}
1062
Jackie Liua197f662019-11-08 08:09:12 -07001063static inline void io_queue_async_work(struct io_kiocb *req)
Jens Axboe561fb042019-10-24 07:25:42 -06001064{
Jackie Liua197f662019-11-08 08:09:12 -07001065 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001066 struct io_kiocb *link;
1067 bool do_hashed;
1068
1069 do_hashed = io_prep_async_work(req, &link);
Jens Axboe561fb042019-10-24 07:25:42 -06001070
1071 trace_io_uring_queue_async_work(ctx, do_hashed, req, &req->work,
1072 req->flags);
1073 if (!do_hashed) {
1074 io_wq_enqueue(ctx->io_wq, &req->work);
1075 } else {
1076 io_wq_enqueue_hashed(ctx->io_wq, &req->work,
1077 file_inode(req->file));
1078 }
Jens Axboe94ae5e72019-11-14 19:39:52 -07001079
1080 if (link)
1081 io_queue_linked_timeout(link);
Jens Axboe18d9be12019-09-10 09:13:05 -06001082}
1083
Jens Axboe5262f562019-09-17 12:26:57 -06001084static void io_kill_timeout(struct io_kiocb *req)
1085{
1086 int ret;
1087
Jens Axboe2d283902019-12-04 11:08:05 -07001088 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe5262f562019-09-17 12:26:57 -06001089 if (ret != -1) {
1090 atomic_inc(&req->ctx->cq_timeouts);
Jens Axboe842f9612019-10-29 12:34:10 -06001091 list_del_init(&req->list);
Jens Axboe78e19bb2019-11-06 15:21:34 -07001092 io_cqring_fill_event(req, 0);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001093 io_put_req(req);
Jens Axboe5262f562019-09-17 12:26:57 -06001094 }
1095}
1096
1097static void io_kill_timeouts(struct io_ring_ctx *ctx)
1098{
1099 struct io_kiocb *req, *tmp;
1100
1101 spin_lock_irq(&ctx->completion_lock);
1102 list_for_each_entry_safe(req, tmp, &ctx->timeout_list, list)
1103 io_kill_timeout(req);
1104 spin_unlock_irq(&ctx->completion_lock);
1105}
1106
Jens Axboede0617e2019-04-06 21:51:27 -06001107static void io_commit_cqring(struct io_ring_ctx *ctx)
1108{
1109 struct io_kiocb *req;
1110
Jens Axboe5262f562019-09-17 12:26:57 -06001111 while ((req = io_get_timeout_req(ctx)) != NULL)
1112 io_kill_timeout(req);
1113
Jens Axboede0617e2019-04-06 21:51:27 -06001114 __io_commit_cqring(ctx);
1115
Pavel Begunkov87987892020-01-18 01:22:30 +03001116 while ((req = io_get_deferred_req(ctx)) != NULL)
Jackie Liua197f662019-11-08 08:09:12 -07001117 io_queue_async_work(req);
Jens Axboede0617e2019-04-06 21:51:27 -06001118}
1119
Jens Axboe2b188cc2019-01-07 10:46:33 -07001120static struct io_uring_cqe *io_get_cqring(struct io_ring_ctx *ctx)
1121{
Hristo Venev75b28af2019-08-26 17:23:46 +00001122 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001123 unsigned tail;
1124
1125 tail = ctx->cached_cq_tail;
Stefan Bühler115e12e2019-04-24 23:54:18 +02001126 /*
1127 * writes to the cq entry need to come after reading head; the
1128 * control dependency is enough as we're using WRITE_ONCE to
1129 * fill the cq entry
1130 */
Hristo Venev75b28af2019-08-26 17:23:46 +00001131 if (tail - READ_ONCE(rings->cq.head) == rings->cq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001132 return NULL;
1133
1134 ctx->cached_cq_tail++;
Hristo Venev75b28af2019-08-26 17:23:46 +00001135 return &rings->cqes[tail & ctx->cq_mask];
Jens Axboe2b188cc2019-01-07 10:46:33 -07001136}
1137
Jens Axboef2842ab2020-01-08 11:04:00 -07001138static inline bool io_should_trigger_evfd(struct io_ring_ctx *ctx)
1139{
Jens Axboef0b493e2020-02-01 21:30:11 -07001140 if (!ctx->cq_ev_fd)
1141 return false;
Jens Axboef2842ab2020-01-08 11:04:00 -07001142 if (!ctx->eventfd_async)
1143 return true;
Jens Axboeb41e9852020-02-17 09:52:41 -07001144 return io_wq_current_is_worker();
Jens Axboef2842ab2020-01-08 11:04:00 -07001145}
1146
Jens Axboeb41e9852020-02-17 09:52:41 -07001147static void io_cqring_ev_posted(struct io_ring_ctx *ctx)
Jens Axboe8c838782019-03-12 15:48:16 -06001148{
1149 if (waitqueue_active(&ctx->wait))
1150 wake_up(&ctx->wait);
1151 if (waitqueue_active(&ctx->sqo_wait))
1152 wake_up(&ctx->sqo_wait);
Jens Axboeb41e9852020-02-17 09:52:41 -07001153 if (io_should_trigger_evfd(ctx))
Jens Axboe9b402842019-04-11 11:45:41 -06001154 eventfd_signal(ctx->cq_ev_fd, 1);
Jens Axboe8c838782019-03-12 15:48:16 -06001155}
1156
Jens Axboec4a2ed72019-11-21 21:01:26 -07001157/* Returns true if there are no backlogged entries after the flush */
1158static bool io_cqring_overflow_flush(struct io_ring_ctx *ctx, bool force)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001159{
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001160 struct io_rings *rings = ctx->rings;
1161 struct io_uring_cqe *cqe;
1162 struct io_kiocb *req;
1163 unsigned long flags;
1164 LIST_HEAD(list);
1165
1166 if (!force) {
1167 if (list_empty_careful(&ctx->cq_overflow_list))
Jens Axboec4a2ed72019-11-21 21:01:26 -07001168 return true;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001169 if ((ctx->cached_cq_tail - READ_ONCE(rings->cq.head) ==
1170 rings->cq_ring_entries))
Jens Axboec4a2ed72019-11-21 21:01:26 -07001171 return false;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001172 }
1173
1174 spin_lock_irqsave(&ctx->completion_lock, flags);
1175
1176 /* if force is set, the ring is going away. always drop after that */
1177 if (force)
Jens Axboe69b3e542020-01-08 11:01:46 -07001178 ctx->cq_overflow_flushed = 1;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001179
Jens Axboec4a2ed72019-11-21 21:01:26 -07001180 cqe = NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001181 while (!list_empty(&ctx->cq_overflow_list)) {
1182 cqe = io_get_cqring(ctx);
1183 if (!cqe && !force)
1184 break;
1185
1186 req = list_first_entry(&ctx->cq_overflow_list, struct io_kiocb,
1187 list);
1188 list_move(&req->list, &list);
Jens Axboe2ca10252020-02-13 17:17:35 -07001189 req->flags &= ~REQ_F_OVERFLOW;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001190 if (cqe) {
1191 WRITE_ONCE(cqe->user_data, req->user_data);
1192 WRITE_ONCE(cqe->res, req->result);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001193 WRITE_ONCE(cqe->flags, req->cflags);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001194 } else {
1195 WRITE_ONCE(ctx->rings->cq_overflow,
1196 atomic_inc_return(&ctx->cached_cq_overflow));
1197 }
1198 }
1199
1200 io_commit_cqring(ctx);
Jens Axboead3eb2c2019-12-18 17:12:20 -07001201 if (cqe) {
1202 clear_bit(0, &ctx->sq_check_overflow);
1203 clear_bit(0, &ctx->cq_check_overflow);
1204 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001205 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1206 io_cqring_ev_posted(ctx);
1207
1208 while (!list_empty(&list)) {
1209 req = list_first_entry(&list, struct io_kiocb, list);
1210 list_del(&req->list);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001211 io_put_req(req);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001212 }
Jens Axboec4a2ed72019-11-21 21:01:26 -07001213
1214 return cqe != NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001215}
1216
Jens Axboebcda7ba2020-02-23 16:42:51 -07001217static void __io_cqring_fill_event(struct io_kiocb *req, long res, long cflags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001218{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001219 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001220 struct io_uring_cqe *cqe;
1221
Jens Axboe78e19bb2019-11-06 15:21:34 -07001222 trace_io_uring_complete(ctx, req->user_data, res);
Jens Axboe51c3ff62019-11-03 06:52:50 -07001223
Jens Axboe2b188cc2019-01-07 10:46:33 -07001224 /*
1225 * If we can't get a cq entry, userspace overflowed the
1226 * submission (by quite a lot). Increment the overflow count in
1227 * the ring.
1228 */
1229 cqe = io_get_cqring(ctx);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001230 if (likely(cqe)) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001231 WRITE_ONCE(cqe->user_data, req->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001232 WRITE_ONCE(cqe->res, res);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001233 WRITE_ONCE(cqe->flags, cflags);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001234 } else if (ctx->cq_overflow_flushed) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07001235 WRITE_ONCE(ctx->rings->cq_overflow,
1236 atomic_inc_return(&ctx->cached_cq_overflow));
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001237 } else {
Jens Axboead3eb2c2019-12-18 17:12:20 -07001238 if (list_empty(&ctx->cq_overflow_list)) {
1239 set_bit(0, &ctx->sq_check_overflow);
1240 set_bit(0, &ctx->cq_check_overflow);
1241 }
Jens Axboe2ca10252020-02-13 17:17:35 -07001242 req->flags |= REQ_F_OVERFLOW;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001243 refcount_inc(&req->refs);
1244 req->result = res;
Jens Axboebcda7ba2020-02-23 16:42:51 -07001245 req->cflags = cflags;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001246 list_add_tail(&req->list, &ctx->cq_overflow_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001247 }
1248}
1249
Jens Axboebcda7ba2020-02-23 16:42:51 -07001250static void io_cqring_fill_event(struct io_kiocb *req, long res)
1251{
1252 __io_cqring_fill_event(req, res, 0);
1253}
1254
1255static void __io_cqring_add_event(struct io_kiocb *req, long res, long cflags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001256{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001257 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001258 unsigned long flags;
1259
1260 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001261 __io_cqring_fill_event(req, res, cflags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001262 io_commit_cqring(ctx);
1263 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1264
Jens Axboe8c838782019-03-12 15:48:16 -06001265 io_cqring_ev_posted(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001266}
1267
Jens Axboebcda7ba2020-02-23 16:42:51 -07001268static void io_cqring_add_event(struct io_kiocb *req, long res)
1269{
1270 __io_cqring_add_event(req, res, 0);
1271}
1272
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001273static inline bool io_is_fallback_req(struct io_kiocb *req)
1274{
1275 return req == (struct io_kiocb *)
1276 ((unsigned long) req->ctx->fallback_req & ~1UL);
1277}
1278
1279static struct io_kiocb *io_get_fallback_req(struct io_ring_ctx *ctx)
1280{
1281 struct io_kiocb *req;
1282
1283 req = ctx->fallback_req;
1284 if (!test_and_set_bit_lock(0, (unsigned long *) ctx->fallback_req))
1285 return req;
1286
1287 return NULL;
1288}
1289
Jens Axboe2579f912019-01-09 09:10:43 -07001290static struct io_kiocb *io_get_req(struct io_ring_ctx *ctx,
1291 struct io_submit_state *state)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001292{
Jens Axboefd6fab22019-03-14 16:30:06 -06001293 gfp_t gfp = GFP_KERNEL | __GFP_NOWARN;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001294 struct io_kiocb *req;
1295
Jens Axboe2579f912019-01-09 09:10:43 -07001296 if (!state) {
Jens Axboefd6fab22019-03-14 16:30:06 -06001297 req = kmem_cache_alloc(req_cachep, gfp);
Jens Axboe2579f912019-01-09 09:10:43 -07001298 if (unlikely(!req))
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001299 goto fallback;
Jens Axboe2579f912019-01-09 09:10:43 -07001300 } else if (!state->free_reqs) {
1301 size_t sz;
1302 int ret;
1303
1304 sz = min_t(size_t, state->ios_left, ARRAY_SIZE(state->reqs));
Jens Axboefd6fab22019-03-14 16:30:06 -06001305 ret = kmem_cache_alloc_bulk(req_cachep, gfp, sz, state->reqs);
1306
1307 /*
1308 * Bulk alloc is all-or-nothing. If we fail to get a batch,
1309 * retry single alloc to be on the safe side.
1310 */
1311 if (unlikely(ret <= 0)) {
1312 state->reqs[0] = kmem_cache_alloc(req_cachep, gfp);
1313 if (!state->reqs[0])
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001314 goto fallback;
Jens Axboefd6fab22019-03-14 16:30:06 -06001315 ret = 1;
1316 }
Jens Axboe2579f912019-01-09 09:10:43 -07001317 state->free_reqs = ret - 1;
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03001318 req = state->reqs[ret - 1];
Jens Axboe2579f912019-01-09 09:10:43 -07001319 } else {
Jens Axboe2579f912019-01-09 09:10:43 -07001320 state->free_reqs--;
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03001321 req = state->reqs[state->free_reqs];
Jens Axboe2b188cc2019-01-07 10:46:33 -07001322 }
1323
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001324got_it:
Jens Axboe1a6b74f2019-12-02 10:33:15 -07001325 req->io = NULL;
Jens Axboe60c112b2019-06-21 10:20:18 -06001326 req->file = NULL;
Jens Axboe2579f912019-01-09 09:10:43 -07001327 req->ctx = ctx;
1328 req->flags = 0;
Jens Axboee65ef562019-03-12 10:16:44 -06001329 /* one is dropped after submission, the other at completion */
1330 refcount_set(&req->refs, 2);
Jens Axboe9e645e112019-05-10 16:07:28 -06001331 req->result = 0;
Jens Axboe561fb042019-10-24 07:25:42 -06001332 INIT_IO_WORK(&req->work, io_wq_submit_work);
Jens Axboe2579f912019-01-09 09:10:43 -07001333 return req;
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001334fallback:
1335 req = io_get_fallback_req(ctx);
1336 if (req)
1337 goto got_it;
Pavel Begunkov6805b322019-10-08 02:18:42 +03001338 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001339 return NULL;
1340}
1341
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001342static inline void io_put_file(struct io_kiocb *req, struct file *file,
1343 bool fixed)
1344{
1345 if (fixed)
1346 percpu_ref_put(&req->ctx->file_data->refs);
1347 else
1348 fput(file);
1349}
1350
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03001351static void __io_req_do_free(struct io_kiocb *req)
Jens Axboedef596e2019-01-09 08:59:42 -07001352{
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03001353 if (likely(!io_is_fallback_req(req)))
1354 kmem_cache_free(req_cachep, req);
1355 else
1356 clear_bit_unlock(0, (unsigned long *) req->ctx->fallback_req);
1357}
1358
Jens Axboec6ca97b302019-12-28 12:11:08 -07001359static void __io_req_aux_free(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001360{
Pavel Begunkov929a3af2020-02-19 00:19:09 +03001361 if (req->flags & REQ_F_NEED_CLEANUP)
1362 io_cleanup_req(req);
1363
YueHaibing96fd84d2020-01-07 22:22:44 +08001364 kfree(req->io);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001365 if (req->file)
1366 io_put_file(req, req->file, (req->flags & REQ_F_FIXED_FILE));
Jens Axboecccf0ee2020-01-27 16:34:48 -07001367
1368 io_req_work_drop_env(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001369}
1370
1371static void __io_free_req(struct io_kiocb *req)
1372{
Jens Axboec6ca97b302019-12-28 12:11:08 -07001373 __io_req_aux_free(req);
Jens Axboefcb323c2019-10-24 12:39:47 -06001374
Jens Axboefcb323c2019-10-24 12:39:47 -06001375 if (req->flags & REQ_F_INFLIGHT) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001376 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06001377 unsigned long flags;
1378
1379 spin_lock_irqsave(&ctx->inflight_lock, flags);
1380 list_del(&req->inflight_entry);
1381 if (waitqueue_active(&ctx->inflight_wait))
1382 wake_up(&ctx->inflight_wait);
1383 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
1384 }
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03001385
1386 percpu_ref_put(&req->ctx->refs);
1387 __io_req_do_free(req);
Jens Axboee65ef562019-03-12 10:16:44 -06001388}
1389
Jens Axboec6ca97b302019-12-28 12:11:08 -07001390struct req_batch {
1391 void *reqs[IO_IOPOLL_BATCH];
1392 int to_free;
1393 int need_iter;
1394};
1395
1396static void io_free_req_many(struct io_ring_ctx *ctx, struct req_batch *rb)
1397{
Jens Axboe10fef4b2020-01-09 07:52:28 -07001398 int fixed_refs = rb->to_free;
1399
Jens Axboec6ca97b302019-12-28 12:11:08 -07001400 if (!rb->to_free)
1401 return;
1402 if (rb->need_iter) {
1403 int i, inflight = 0;
1404 unsigned long flags;
1405
Jens Axboe10fef4b2020-01-09 07:52:28 -07001406 fixed_refs = 0;
Jens Axboec6ca97b302019-12-28 12:11:08 -07001407 for (i = 0; i < rb->to_free; i++) {
1408 struct io_kiocb *req = rb->reqs[i];
1409
Jens Axboe10fef4b2020-01-09 07:52:28 -07001410 if (req->flags & REQ_F_FIXED_FILE) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001411 req->file = NULL;
Jens Axboe10fef4b2020-01-09 07:52:28 -07001412 fixed_refs++;
1413 }
Jens Axboec6ca97b302019-12-28 12:11:08 -07001414 if (req->flags & REQ_F_INFLIGHT)
1415 inflight++;
Jens Axboec6ca97b302019-12-28 12:11:08 -07001416 __io_req_aux_free(req);
1417 }
1418 if (!inflight)
1419 goto do_free;
1420
1421 spin_lock_irqsave(&ctx->inflight_lock, flags);
1422 for (i = 0; i < rb->to_free; i++) {
1423 struct io_kiocb *req = rb->reqs[i];
1424
Jens Axboe10fef4b2020-01-09 07:52:28 -07001425 if (req->flags & REQ_F_INFLIGHT) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001426 list_del(&req->inflight_entry);
1427 if (!--inflight)
1428 break;
1429 }
1430 }
1431 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
1432
1433 if (waitqueue_active(&ctx->inflight_wait))
1434 wake_up(&ctx->inflight_wait);
1435 }
1436do_free:
1437 kmem_cache_free_bulk(req_cachep, rb->to_free, rb->reqs);
Jens Axboe10fef4b2020-01-09 07:52:28 -07001438 if (fixed_refs)
1439 percpu_ref_put_many(&ctx->file_data->refs, fixed_refs);
Jens Axboec6ca97b302019-12-28 12:11:08 -07001440 percpu_ref_put_many(&ctx->refs, rb->to_free);
Jens Axboec6ca97b302019-12-28 12:11:08 -07001441 rb->to_free = rb->need_iter = 0;
Jens Axboee65ef562019-03-12 10:16:44 -06001442}
1443
Jackie Liua197f662019-11-08 08:09:12 -07001444static bool io_link_cancel_timeout(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -06001445{
Jackie Liua197f662019-11-08 08:09:12 -07001446 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001447 int ret;
1448
Jens Axboe2d283902019-12-04 11:08:05 -07001449 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe2665abf2019-11-05 12:40:47 -07001450 if (ret != -1) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001451 io_cqring_fill_event(req, -ECANCELED);
Jens Axboe2665abf2019-11-05 12:40:47 -07001452 io_commit_cqring(ctx);
1453 req->flags &= ~REQ_F_LINK;
Jackie Liuec9c02a2019-11-08 23:50:36 +08001454 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07001455 return true;
1456 }
1457
1458 return false;
1459}
1460
Jens Axboeba816ad2019-09-28 11:36:45 -06001461static void io_req_link_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboe9e645e112019-05-10 16:07:28 -06001462{
Jens Axboe2665abf2019-11-05 12:40:47 -07001463 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001464 bool wake_ev = false;
Jens Axboe9e645e112019-05-10 16:07:28 -06001465
Jens Axboe4d7dd462019-11-20 13:03:52 -07001466 /* Already got next link */
1467 if (req->flags & REQ_F_LINK_NEXT)
1468 return;
1469
Jens Axboe9e645e112019-05-10 16:07:28 -06001470 /*
1471 * The list should never be empty when we are called here. But could
1472 * potentially happen if the chain is messed up, check to be on the
1473 * safe side.
1474 */
Pavel Begunkov44932332019-12-05 16:16:35 +03001475 while (!list_empty(&req->link_list)) {
1476 struct io_kiocb *nxt = list_first_entry(&req->link_list,
1477 struct io_kiocb, link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001478
Pavel Begunkov44932332019-12-05 16:16:35 +03001479 if (unlikely((req->flags & REQ_F_LINK_TIMEOUT) &&
1480 (nxt->flags & REQ_F_TIMEOUT))) {
1481 list_del_init(&nxt->link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001482 wake_ev |= io_link_cancel_timeout(nxt);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001483 req->flags &= ~REQ_F_LINK_TIMEOUT;
1484 continue;
1485 }
Jens Axboe9e645e112019-05-10 16:07:28 -06001486
Pavel Begunkov44932332019-12-05 16:16:35 +03001487 list_del_init(&req->link_list);
1488 if (!list_empty(&nxt->link_list))
1489 nxt->flags |= REQ_F_LINK;
Pavel Begunkovb18fdf72019-11-21 23:21:02 +03001490 *nxtptr = nxt;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001491 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06001492 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001493
Jens Axboe4d7dd462019-11-20 13:03:52 -07001494 req->flags |= REQ_F_LINK_NEXT;
Jens Axboe2665abf2019-11-05 12:40:47 -07001495 if (wake_ev)
1496 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001497}
1498
1499/*
1500 * Called if REQ_F_LINK is set, and we fail the head request
1501 */
1502static void io_fail_links(struct io_kiocb *req)
1503{
Jens Axboe2665abf2019-11-05 12:40:47 -07001504 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001505 unsigned long flags;
1506
1507 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboe9e645e112019-05-10 16:07:28 -06001508
1509 while (!list_empty(&req->link_list)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03001510 struct io_kiocb *link = list_first_entry(&req->link_list,
1511 struct io_kiocb, link_list);
Jens Axboe9e645e112019-05-10 16:07:28 -06001512
Pavel Begunkov44932332019-12-05 16:16:35 +03001513 list_del_init(&link->link_list);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02001514 trace_io_uring_fail_link(req, link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001515
1516 if ((req->flags & REQ_F_LINK_TIMEOUT) &&
Jens Axboed625c6e2019-12-17 19:53:05 -07001517 link->opcode == IORING_OP_LINK_TIMEOUT) {
Jackie Liua197f662019-11-08 08:09:12 -07001518 io_link_cancel_timeout(link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001519 } else {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001520 io_cqring_fill_event(link, -ECANCELED);
Jens Axboe978db572019-11-14 22:39:04 -07001521 __io_double_put_req(link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001522 }
Jens Axboe5d960722019-11-19 15:31:28 -07001523 req->flags &= ~REQ_F_LINK_TIMEOUT;
Jens Axboe9e645e112019-05-10 16:07:28 -06001524 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001525
1526 io_commit_cqring(ctx);
1527 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1528 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001529}
1530
Jens Axboe4d7dd462019-11-20 13:03:52 -07001531static void io_req_find_next(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboe9e645e112019-05-10 16:07:28 -06001532{
Jens Axboe4d7dd462019-11-20 13:03:52 -07001533 if (likely(!(req->flags & REQ_F_LINK)))
Jens Axboe2665abf2019-11-05 12:40:47 -07001534 return;
Jens Axboe2665abf2019-11-05 12:40:47 -07001535
Jens Axboe9e645e112019-05-10 16:07:28 -06001536 /*
1537 * If LINK is set, we have dependent requests in this chain. If we
1538 * didn't fail this request, queue the first one up, moving any other
1539 * dependencies to the next request. In case of failure, fail the rest
1540 * of the chain.
1541 */
Jens Axboe2665abf2019-11-05 12:40:47 -07001542 if (req->flags & REQ_F_FAIL_LINK) {
1543 io_fail_links(req);
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001544 } else if ((req->flags & (REQ_F_LINK_TIMEOUT | REQ_F_COMP_LOCKED)) ==
1545 REQ_F_LINK_TIMEOUT) {
Jens Axboe2665abf2019-11-05 12:40:47 -07001546 struct io_ring_ctx *ctx = req->ctx;
1547 unsigned long flags;
1548
1549 /*
1550 * If this is a timeout link, we could be racing with the
1551 * timeout timer. Grab the completion lock for this case to
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001552 * protect against that.
Jens Axboe2665abf2019-11-05 12:40:47 -07001553 */
1554 spin_lock_irqsave(&ctx->completion_lock, flags);
1555 io_req_link_next(req, nxt);
1556 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1557 } else {
1558 io_req_link_next(req, nxt);
Jens Axboe9e645e112019-05-10 16:07:28 -06001559 }
Jens Axboe4d7dd462019-11-20 13:03:52 -07001560}
Jens Axboe9e645e112019-05-10 16:07:28 -06001561
Jackie Liuc69f8db2019-11-09 11:00:08 +08001562static void io_free_req(struct io_kiocb *req)
1563{
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001564 struct io_kiocb *nxt = NULL;
1565
1566 io_req_find_next(req, &nxt);
Pavel Begunkov70cf9f32019-11-21 23:21:00 +03001567 __io_free_req(req);
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001568
1569 if (nxt)
1570 io_queue_async_work(nxt);
Jackie Liuc69f8db2019-11-09 11:00:08 +08001571}
1572
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001573static void io_link_work_cb(struct io_wq_work **workptr)
1574{
1575 struct io_wq_work *work = *workptr;
1576 struct io_kiocb *link = work->data;
1577
1578 io_queue_linked_timeout(link);
1579 io_wq_submit_work(workptr);
1580}
1581
1582static void io_wq_assign_next(struct io_wq_work **workptr, struct io_kiocb *nxt)
1583{
1584 struct io_kiocb *link;
1585
1586 *workptr = &nxt->work;
1587 link = io_prep_linked_timeout(nxt);
1588 if (link) {
1589 nxt->work.func = io_link_work_cb;
1590 nxt->work.data = link;
1591 }
1592}
1593
Jens Axboeba816ad2019-09-28 11:36:45 -06001594/*
1595 * Drop reference to request, return next in chain (if there is one) if this
1596 * was the last reference to this request.
1597 */
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001598__attribute__((nonnull))
Jackie Liuec9c02a2019-11-08 23:50:36 +08001599static void io_put_req_find_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboee65ef562019-03-12 10:16:44 -06001600{
Jens Axboe2a44f462020-02-25 13:25:41 -07001601 if (refcount_dec_and_test(&req->refs)) {
1602 io_req_find_next(req, nxtptr);
Jens Axboe4d7dd462019-11-20 13:03:52 -07001603 __io_free_req(req);
Jens Axboe2a44f462020-02-25 13:25:41 -07001604 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001605}
1606
Jens Axboe2b188cc2019-01-07 10:46:33 -07001607static void io_put_req(struct io_kiocb *req)
1608{
Jens Axboedef596e2019-01-09 08:59:42 -07001609 if (refcount_dec_and_test(&req->refs))
1610 io_free_req(req);
1611}
1612
Pavel Begunkove9fd9392020-03-04 16:14:12 +03001613static void io_steal_work(struct io_kiocb *req,
1614 struct io_wq_work **workptr)
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001615{
1616 /*
1617 * It's in an io-wq worker, so there always should be at least
1618 * one reference, which will be dropped in io_put_work() just
1619 * after the current handler returns.
1620 *
1621 * It also means, that if the counter dropped to 1, then there is
1622 * no asynchronous users left, so it's safe to steal the next work.
1623 */
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001624 if (refcount_read(&req->refs) == 1) {
1625 struct io_kiocb *nxt = NULL;
1626
1627 io_req_find_next(req, &nxt);
1628 if (nxt)
1629 io_wq_assign_next(workptr, nxt);
1630 }
1631}
1632
Jens Axboe978db572019-11-14 22:39:04 -07001633/*
1634 * Must only be used if we don't need to care about links, usually from
1635 * within the completion handling itself.
1636 */
1637static void __io_double_put_req(struct io_kiocb *req)
Jens Axboea3a0e432019-08-20 11:03:11 -06001638{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001639 /* drop both submit and complete references */
1640 if (refcount_sub_and_test(2, &req->refs))
1641 __io_free_req(req);
1642}
1643
Jens Axboe978db572019-11-14 22:39:04 -07001644static void io_double_put_req(struct io_kiocb *req)
1645{
1646 /* drop both submit and complete references */
1647 if (refcount_sub_and_test(2, &req->refs))
1648 io_free_req(req);
1649}
1650
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001651static unsigned io_cqring_events(struct io_ring_ctx *ctx, bool noflush)
Jens Axboea3a0e432019-08-20 11:03:11 -06001652{
Jens Axboe84f97dc2019-11-06 11:27:53 -07001653 struct io_rings *rings = ctx->rings;
1654
Jens Axboead3eb2c2019-12-18 17:12:20 -07001655 if (test_bit(0, &ctx->cq_check_overflow)) {
1656 /*
1657 * noflush == true is from the waitqueue handler, just ensure
1658 * we wake up the task, and the next invocation will flush the
1659 * entries. We cannot safely to it from here.
1660 */
1661 if (noflush && !list_empty(&ctx->cq_overflow_list))
1662 return -1U;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001663
Jens Axboead3eb2c2019-12-18 17:12:20 -07001664 io_cqring_overflow_flush(ctx, false);
1665 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001666
Jens Axboea3a0e432019-08-20 11:03:11 -06001667 /* See comment at the top of this file */
1668 smp_rmb();
Jens Axboead3eb2c2019-12-18 17:12:20 -07001669 return ctx->cached_cq_tail - READ_ONCE(rings->cq.head);
Jens Axboea3a0e432019-08-20 11:03:11 -06001670}
1671
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03001672static inline unsigned int io_sqring_entries(struct io_ring_ctx *ctx)
1673{
1674 struct io_rings *rings = ctx->rings;
1675
1676 /* make sure SQ entry isn't read before tail */
1677 return smp_load_acquire(&rings->sq.tail) - ctx->cached_sq_head;
1678}
1679
Jens Axboe8237e042019-12-28 10:48:22 -07001680static inline bool io_req_multi_free(struct req_batch *rb, struct io_kiocb *req)
Jens Axboee94f1412019-12-19 12:06:02 -07001681{
Jens Axboec6ca97b302019-12-28 12:11:08 -07001682 if ((req->flags & REQ_F_LINK) || io_is_fallback_req(req))
1683 return false;
Jens Axboee94f1412019-12-19 12:06:02 -07001684
Jens Axboec6ca97b302019-12-28 12:11:08 -07001685 if (!(req->flags & REQ_F_FIXED_FILE) || req->io)
1686 rb->need_iter++;
1687
1688 rb->reqs[rb->to_free++] = req;
1689 if (unlikely(rb->to_free == ARRAY_SIZE(rb->reqs)))
1690 io_free_req_many(req->ctx, rb);
1691 return true;
Jens Axboee94f1412019-12-19 12:06:02 -07001692}
1693
Jens Axboebcda7ba2020-02-23 16:42:51 -07001694static int io_put_kbuf(struct io_kiocb *req)
1695{
Jens Axboe4d954c22020-02-27 07:31:19 -07001696 struct io_buffer *kbuf;
Jens Axboebcda7ba2020-02-23 16:42:51 -07001697 int cflags;
1698
Jens Axboe4d954c22020-02-27 07:31:19 -07001699 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
Jens Axboebcda7ba2020-02-23 16:42:51 -07001700 cflags = kbuf->bid << IORING_CQE_BUFFER_SHIFT;
1701 cflags |= IORING_CQE_F_BUFFER;
1702 req->rw.addr = 0;
1703 kfree(kbuf);
1704 return cflags;
1705}
1706
Jens Axboedef596e2019-01-09 08:59:42 -07001707/*
1708 * Find and free completed poll iocbs
1709 */
1710static void io_iopoll_complete(struct io_ring_ctx *ctx, unsigned int *nr_events,
1711 struct list_head *done)
1712{
Jens Axboe8237e042019-12-28 10:48:22 -07001713 struct req_batch rb;
Jens Axboedef596e2019-01-09 08:59:42 -07001714 struct io_kiocb *req;
Jens Axboedef596e2019-01-09 08:59:42 -07001715
Jens Axboec6ca97b302019-12-28 12:11:08 -07001716 rb.to_free = rb.need_iter = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001717 while (!list_empty(done)) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07001718 int cflags = 0;
1719
Jens Axboedef596e2019-01-09 08:59:42 -07001720 req = list_first_entry(done, struct io_kiocb, list);
1721 list_del(&req->list);
1722
Jens Axboebcda7ba2020-02-23 16:42:51 -07001723 if (req->flags & REQ_F_BUFFER_SELECTED)
1724 cflags = io_put_kbuf(req);
1725
1726 __io_cqring_fill_event(req, req->result, cflags);
Jens Axboedef596e2019-01-09 08:59:42 -07001727 (*nr_events)++;
1728
Jens Axboe8237e042019-12-28 10:48:22 -07001729 if (refcount_dec_and_test(&req->refs) &&
1730 !io_req_multi_free(&rb, req))
1731 io_free_req(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001732 }
Jens Axboedef596e2019-01-09 08:59:42 -07001733
Jens Axboe09bb8392019-03-13 12:39:28 -06001734 io_commit_cqring(ctx);
Jens Axboe8237e042019-12-28 10:48:22 -07001735 io_free_req_many(ctx, &rb);
Jens Axboedef596e2019-01-09 08:59:42 -07001736}
1737
1738static int io_do_iopoll(struct io_ring_ctx *ctx, unsigned int *nr_events,
1739 long min)
1740{
1741 struct io_kiocb *req, *tmp;
1742 LIST_HEAD(done);
1743 bool spin;
1744 int ret;
1745
1746 /*
1747 * Only spin for completions if we don't have multiple devices hanging
1748 * off our complete list, and we're under the requested amount.
1749 */
1750 spin = !ctx->poll_multi_file && *nr_events < min;
1751
1752 ret = 0;
1753 list_for_each_entry_safe(req, tmp, &ctx->poll_list, list) {
Jens Axboe9adbd452019-12-20 08:45:55 -07001754 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboedef596e2019-01-09 08:59:42 -07001755
1756 /*
1757 * Move completed entries to our local list. If we find a
1758 * request that requires polling, break out and complete
1759 * the done list first, if we have entries there.
1760 */
1761 if (req->flags & REQ_F_IOPOLL_COMPLETED) {
1762 list_move_tail(&req->list, &done);
1763 continue;
1764 }
1765 if (!list_empty(&done))
1766 break;
1767
1768 ret = kiocb->ki_filp->f_op->iopoll(kiocb, spin);
1769 if (ret < 0)
1770 break;
1771
1772 if (ret && spin)
1773 spin = false;
1774 ret = 0;
1775 }
1776
1777 if (!list_empty(&done))
1778 io_iopoll_complete(ctx, nr_events, &done);
1779
1780 return ret;
1781}
1782
1783/*
Brian Gianforcarod195a662019-12-13 03:09:50 -08001784 * Poll for a minimum of 'min' events. Note that if min == 0 we consider that a
Jens Axboedef596e2019-01-09 08:59:42 -07001785 * non-spinning poll check - we'll still enter the driver poll loop, but only
1786 * as a non-spinning completion check.
1787 */
1788static int io_iopoll_getevents(struct io_ring_ctx *ctx, unsigned int *nr_events,
1789 long min)
1790{
Jens Axboe08f54392019-08-21 22:19:11 -06001791 while (!list_empty(&ctx->poll_list) && !need_resched()) {
Jens Axboedef596e2019-01-09 08:59:42 -07001792 int ret;
1793
1794 ret = io_do_iopoll(ctx, nr_events, min);
1795 if (ret < 0)
1796 return ret;
1797 if (!min || *nr_events >= min)
1798 return 0;
1799 }
1800
1801 return 1;
1802}
1803
1804/*
1805 * We can't just wait for polled events to come to us, we have to actively
1806 * find and complete them.
1807 */
1808static void io_iopoll_reap_events(struct io_ring_ctx *ctx)
1809{
1810 if (!(ctx->flags & IORING_SETUP_IOPOLL))
1811 return;
1812
1813 mutex_lock(&ctx->uring_lock);
1814 while (!list_empty(&ctx->poll_list)) {
1815 unsigned int nr_events = 0;
1816
1817 io_iopoll_getevents(ctx, &nr_events, 1);
Jens Axboe08f54392019-08-21 22:19:11 -06001818
1819 /*
1820 * Ensure we allow local-to-the-cpu processing to take place,
1821 * in this case we need to ensure that we reap all events.
1822 */
1823 cond_resched();
Jens Axboedef596e2019-01-09 08:59:42 -07001824 }
1825 mutex_unlock(&ctx->uring_lock);
1826}
1827
Xiaoguang Wangc7849be2020-02-22 14:46:05 +08001828static int io_iopoll_check(struct io_ring_ctx *ctx, unsigned *nr_events,
1829 long min)
Jens Axboedef596e2019-01-09 08:59:42 -07001830{
Jens Axboe2b2ed972019-10-25 10:06:15 -06001831 int iters = 0, ret = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001832
Xiaoguang Wangc7849be2020-02-22 14:46:05 +08001833 /*
1834 * We disallow the app entering submit/complete with polling, but we
1835 * still need to lock the ring to prevent racing with polled issue
1836 * that got punted to a workqueue.
1837 */
1838 mutex_lock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07001839 do {
1840 int tmin = 0;
1841
Jens Axboe500f9fb2019-08-19 12:15:59 -06001842 /*
Jens Axboea3a0e432019-08-20 11:03:11 -06001843 * Don't enter poll loop if we already have events pending.
1844 * If we do, we can potentially be spinning for commands that
1845 * already triggered a CQE (eg in error).
1846 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001847 if (io_cqring_events(ctx, false))
Jens Axboea3a0e432019-08-20 11:03:11 -06001848 break;
1849
1850 /*
Jens Axboe500f9fb2019-08-19 12:15:59 -06001851 * If a submit got punted to a workqueue, we can have the
1852 * application entering polling for a command before it gets
1853 * issued. That app will hold the uring_lock for the duration
1854 * of the poll right here, so we need to take a breather every
1855 * now and then to ensure that the issue has a chance to add
1856 * the poll to the issued list. Otherwise we can spin here
1857 * forever, while the workqueue is stuck trying to acquire the
1858 * very same mutex.
1859 */
1860 if (!(++iters & 7)) {
1861 mutex_unlock(&ctx->uring_lock);
1862 mutex_lock(&ctx->uring_lock);
1863 }
1864
Jens Axboedef596e2019-01-09 08:59:42 -07001865 if (*nr_events < min)
1866 tmin = min - *nr_events;
1867
1868 ret = io_iopoll_getevents(ctx, nr_events, tmin);
1869 if (ret <= 0)
1870 break;
1871 ret = 0;
1872 } while (min && !*nr_events && !need_resched());
1873
Jens Axboe500f9fb2019-08-19 12:15:59 -06001874 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07001875 return ret;
1876}
1877
Jens Axboe491381ce2019-10-17 09:20:46 -06001878static void kiocb_end_write(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001879{
Jens Axboe491381ce2019-10-17 09:20:46 -06001880 /*
1881 * Tell lockdep we inherited freeze protection from submission
1882 * thread.
1883 */
1884 if (req->flags & REQ_F_ISREG) {
1885 struct inode *inode = file_inode(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001886
Jens Axboe491381ce2019-10-17 09:20:46 -06001887 __sb_writers_acquired(inode->i_sb, SB_FREEZE_WRITE);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001888 }
Jens Axboe491381ce2019-10-17 09:20:46 -06001889 file_end_write(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001890}
1891
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001892static inline void req_set_fail_links(struct io_kiocb *req)
1893{
1894 if ((req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) == REQ_F_LINK)
1895 req->flags |= REQ_F_FAIL_LINK;
1896}
1897
Jens Axboeba816ad2019-09-28 11:36:45 -06001898static void io_complete_rw_common(struct kiocb *kiocb, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001899{
Jens Axboe9adbd452019-12-20 08:45:55 -07001900 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001901 int cflags = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001902
Jens Axboe491381ce2019-10-17 09:20:46 -06001903 if (kiocb->ki_flags & IOCB_WRITE)
1904 kiocb_end_write(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001905
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001906 if (res != req->result)
1907 req_set_fail_links(req);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001908 if (req->flags & REQ_F_BUFFER_SELECTED)
1909 cflags = io_put_kbuf(req);
1910 __io_cqring_add_event(req, res, cflags);
Jens Axboeba816ad2019-09-28 11:36:45 -06001911}
1912
1913static void io_complete_rw(struct kiocb *kiocb, long res, long res2)
1914{
Jens Axboe9adbd452019-12-20 08:45:55 -07001915 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboeba816ad2019-09-28 11:36:45 -06001916
1917 io_complete_rw_common(kiocb, res);
Jens Axboee65ef562019-03-12 10:16:44 -06001918 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001919}
1920
Jens Axboedef596e2019-01-09 08:59:42 -07001921static void io_complete_rw_iopoll(struct kiocb *kiocb, long res, long res2)
1922{
Jens Axboe9adbd452019-12-20 08:45:55 -07001923 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboedef596e2019-01-09 08:59:42 -07001924
Jens Axboe491381ce2019-10-17 09:20:46 -06001925 if (kiocb->ki_flags & IOCB_WRITE)
1926 kiocb_end_write(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001927
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001928 if (res != req->result)
1929 req_set_fail_links(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06001930 req->result = res;
Jens Axboedef596e2019-01-09 08:59:42 -07001931 if (res != -EAGAIN)
1932 req->flags |= REQ_F_IOPOLL_COMPLETED;
1933}
1934
1935/*
1936 * After the iocb has been issued, it's safe to be found on the poll list.
1937 * Adding the kiocb to the list AFTER submission ensures that we don't
1938 * find it from a io_iopoll_getevents() thread before the issuer is done
1939 * accessing the kiocb cookie.
1940 */
1941static void io_iopoll_req_issued(struct io_kiocb *req)
1942{
1943 struct io_ring_ctx *ctx = req->ctx;
1944
1945 /*
1946 * Track whether we have multiple files in our lists. This will impact
1947 * how we do polling eventually, not spinning if we're on potentially
1948 * different devices.
1949 */
1950 if (list_empty(&ctx->poll_list)) {
1951 ctx->poll_multi_file = false;
1952 } else if (!ctx->poll_multi_file) {
1953 struct io_kiocb *list_req;
1954
1955 list_req = list_first_entry(&ctx->poll_list, struct io_kiocb,
1956 list);
Jens Axboe9adbd452019-12-20 08:45:55 -07001957 if (list_req->file != req->file)
Jens Axboedef596e2019-01-09 08:59:42 -07001958 ctx->poll_multi_file = true;
1959 }
1960
1961 /*
1962 * For fast devices, IO may have already completed. If it has, add
1963 * it to the front so we find it first.
1964 */
1965 if (req->flags & REQ_F_IOPOLL_COMPLETED)
1966 list_add(&req->list, &ctx->poll_list);
1967 else
1968 list_add_tail(&req->list, &ctx->poll_list);
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08001969
1970 if ((ctx->flags & IORING_SETUP_SQPOLL) &&
1971 wq_has_sleeper(&ctx->sqo_wait))
1972 wake_up(&ctx->sqo_wait);
Jens Axboedef596e2019-01-09 08:59:42 -07001973}
1974
Jens Axboe3d6770f2019-04-13 11:50:54 -06001975static void io_file_put(struct io_submit_state *state)
Jens Axboe9a56a232019-01-09 09:06:50 -07001976{
Jens Axboe3d6770f2019-04-13 11:50:54 -06001977 if (state->file) {
Jens Axboe9a56a232019-01-09 09:06:50 -07001978 int diff = state->has_refs - state->used_refs;
1979
1980 if (diff)
1981 fput_many(state->file, diff);
1982 state->file = NULL;
1983 }
1984}
1985
1986/*
1987 * Get as many references to a file as we have IOs left in this submission,
1988 * assuming most submissions are for one file, or at least that each file
1989 * has more than one submission.
1990 */
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001991static struct file *__io_file_get(struct io_submit_state *state, int fd)
Jens Axboe9a56a232019-01-09 09:06:50 -07001992{
1993 if (!state)
1994 return fget(fd);
1995
1996 if (state->file) {
1997 if (state->fd == fd) {
1998 state->used_refs++;
1999 state->ios_left--;
2000 return state->file;
2001 }
Jens Axboe3d6770f2019-04-13 11:50:54 -06002002 io_file_put(state);
Jens Axboe9a56a232019-01-09 09:06:50 -07002003 }
2004 state->file = fget_many(fd, state->ios_left);
2005 if (!state->file)
2006 return NULL;
2007
2008 state->fd = fd;
2009 state->has_refs = state->ios_left;
2010 state->used_refs = 1;
2011 state->ios_left--;
2012 return state->file;
2013}
2014
Jens Axboe2b188cc2019-01-07 10:46:33 -07002015/*
2016 * If we tracked the file through the SCM inflight mechanism, we could support
2017 * any file. For now, just ensure that anything potentially problematic is done
2018 * inline.
2019 */
2020static bool io_file_supports_async(struct file *file)
2021{
2022 umode_t mode = file_inode(file)->i_mode;
2023
Jens Axboe10d59342019-12-09 20:16:22 -07002024 if (S_ISBLK(mode) || S_ISCHR(mode) || S_ISSOCK(mode))
Jens Axboe2b188cc2019-01-07 10:46:33 -07002025 return true;
2026 if (S_ISREG(mode) && file->f_op != &io_uring_fops)
2027 return true;
2028
2029 return false;
2030}
2031
Jens Axboe3529d8c2019-12-19 18:24:38 -07002032static int io_prep_rw(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2033 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002034{
Jens Axboedef596e2019-01-09 08:59:42 -07002035 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9adbd452019-12-20 08:45:55 -07002036 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe09bb8392019-03-13 12:39:28 -06002037 unsigned ioprio;
2038 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002039
Jens Axboe491381ce2019-10-17 09:20:46 -06002040 if (S_ISREG(file_inode(req->file)->i_mode))
2041 req->flags |= REQ_F_ISREG;
2042
Jens Axboe2b188cc2019-01-07 10:46:33 -07002043 kiocb->ki_pos = READ_ONCE(sqe->off);
Jens Axboeba042912019-12-25 16:33:42 -07002044 if (kiocb->ki_pos == -1 && !(req->file->f_mode & FMODE_STREAM)) {
2045 req->flags |= REQ_F_CUR_POS;
2046 kiocb->ki_pos = req->file->f_pos;
2047 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002048 kiocb->ki_hint = ki_hint_validate(file_write_hint(kiocb->ki_filp));
Pavel Begunkov3e577dc2020-02-01 03:58:42 +03002049 kiocb->ki_flags = iocb_flags(kiocb->ki_filp);
2050 ret = kiocb_set_rw_flags(kiocb, READ_ONCE(sqe->rw_flags));
2051 if (unlikely(ret))
2052 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002053
2054 ioprio = READ_ONCE(sqe->ioprio);
2055 if (ioprio) {
2056 ret = ioprio_check_cap(ioprio);
2057 if (ret)
Jens Axboe09bb8392019-03-13 12:39:28 -06002058 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002059
2060 kiocb->ki_ioprio = ioprio;
2061 } else
2062 kiocb->ki_ioprio = get_current_ioprio();
2063
Stefan Bühler8449eed2019-04-27 20:34:19 +02002064 /* don't allow async punt if RWF_NOWAIT was requested */
Jens Axboe491381ce2019-10-17 09:20:46 -06002065 if ((kiocb->ki_flags & IOCB_NOWAIT) ||
2066 (req->file->f_flags & O_NONBLOCK))
Stefan Bühler8449eed2019-04-27 20:34:19 +02002067 req->flags |= REQ_F_NOWAIT;
2068
2069 if (force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002070 kiocb->ki_flags |= IOCB_NOWAIT;
Stefan Bühler8449eed2019-04-27 20:34:19 +02002071
Jens Axboedef596e2019-01-09 08:59:42 -07002072 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07002073 if (!(kiocb->ki_flags & IOCB_DIRECT) ||
2074 !kiocb->ki_filp->f_op->iopoll)
Jens Axboe09bb8392019-03-13 12:39:28 -06002075 return -EOPNOTSUPP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002076
Jens Axboedef596e2019-01-09 08:59:42 -07002077 kiocb->ki_flags |= IOCB_HIPRI;
2078 kiocb->ki_complete = io_complete_rw_iopoll;
Jens Axboe6873e0b2019-10-30 13:53:09 -06002079 req->result = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07002080 } else {
Jens Axboe09bb8392019-03-13 12:39:28 -06002081 if (kiocb->ki_flags & IOCB_HIPRI)
2082 return -EINVAL;
Jens Axboedef596e2019-01-09 08:59:42 -07002083 kiocb->ki_complete = io_complete_rw;
2084 }
Jens Axboe9adbd452019-12-20 08:45:55 -07002085
Jens Axboe3529d8c2019-12-19 18:24:38 -07002086 req->rw.addr = READ_ONCE(sqe->addr);
2087 req->rw.len = READ_ONCE(sqe->len);
Jens Axboebcda7ba2020-02-23 16:42:51 -07002088 /* we own ->private, reuse it for the buffer index / buffer ID */
Jens Axboe9adbd452019-12-20 08:45:55 -07002089 req->rw.kiocb.private = (void *) (unsigned long)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002090 READ_ONCE(sqe->buf_index);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002091 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002092}
2093
2094static inline void io_rw_done(struct kiocb *kiocb, ssize_t ret)
2095{
2096 switch (ret) {
2097 case -EIOCBQUEUED:
2098 break;
2099 case -ERESTARTSYS:
2100 case -ERESTARTNOINTR:
2101 case -ERESTARTNOHAND:
2102 case -ERESTART_RESTARTBLOCK:
2103 /*
2104 * We can't just restart the syscall, since previously
2105 * submitted sqes may already be in progress. Just fail this
2106 * IO with EINTR.
2107 */
2108 ret = -EINTR;
2109 /* fall through */
2110 default:
2111 kiocb->ki_complete(kiocb, ret, 0);
2112 }
2113}
2114
Pavel Begunkov014db002020-03-03 21:33:12 +03002115static void kiocb_done(struct kiocb *kiocb, ssize_t ret)
Jens Axboeba816ad2019-09-28 11:36:45 -06002116{
Jens Axboeba042912019-12-25 16:33:42 -07002117 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
2118
2119 if (req->flags & REQ_F_CUR_POS)
2120 req->file->f_pos = kiocb->ki_pos;
Pavel Begunkovbcaec082020-02-24 11:30:18 +03002121 if (ret >= 0 && kiocb->ki_complete == io_complete_rw)
Pavel Begunkov014db002020-03-03 21:33:12 +03002122 io_complete_rw(kiocb, ret, 0);
Jens Axboeba816ad2019-09-28 11:36:45 -06002123 else
2124 io_rw_done(kiocb, ret);
2125}
2126
Jens Axboe9adbd452019-12-20 08:45:55 -07002127static ssize_t io_import_fixed(struct io_kiocb *req, int rw,
Pavel Begunkov7d009162019-11-25 23:14:40 +03002128 struct iov_iter *iter)
Jens Axboeedafcce2019-01-09 09:16:05 -07002129{
Jens Axboe9adbd452019-12-20 08:45:55 -07002130 struct io_ring_ctx *ctx = req->ctx;
2131 size_t len = req->rw.len;
Jens Axboeedafcce2019-01-09 09:16:05 -07002132 struct io_mapped_ubuf *imu;
2133 unsigned index, buf_index;
2134 size_t offset;
2135 u64 buf_addr;
2136
2137 /* attempt to use fixed buffers without having provided iovecs */
2138 if (unlikely(!ctx->user_bufs))
2139 return -EFAULT;
2140
Jens Axboe9adbd452019-12-20 08:45:55 -07002141 buf_index = (unsigned long) req->rw.kiocb.private;
Jens Axboeedafcce2019-01-09 09:16:05 -07002142 if (unlikely(buf_index >= ctx->nr_user_bufs))
2143 return -EFAULT;
2144
2145 index = array_index_nospec(buf_index, ctx->nr_user_bufs);
2146 imu = &ctx->user_bufs[index];
Jens Axboe9adbd452019-12-20 08:45:55 -07002147 buf_addr = req->rw.addr;
Jens Axboeedafcce2019-01-09 09:16:05 -07002148
2149 /* overflow */
2150 if (buf_addr + len < buf_addr)
2151 return -EFAULT;
2152 /* not inside the mapped region */
2153 if (buf_addr < imu->ubuf || buf_addr + len > imu->ubuf + imu->len)
2154 return -EFAULT;
2155
2156 /*
2157 * May not be a start of buffer, set size appropriately
2158 * and advance us to the beginning.
2159 */
2160 offset = buf_addr - imu->ubuf;
2161 iov_iter_bvec(iter, rw, imu->bvec, imu->nr_bvecs, offset + len);
Jens Axboebd11b3a2019-07-20 08:37:31 -06002162
2163 if (offset) {
2164 /*
2165 * Don't use iov_iter_advance() here, as it's really slow for
2166 * using the latter parts of a big fixed buffer - it iterates
2167 * over each segment manually. We can cheat a bit here, because
2168 * we know that:
2169 *
2170 * 1) it's a BVEC iter, we set it up
2171 * 2) all bvecs are PAGE_SIZE in size, except potentially the
2172 * first and last bvec
2173 *
2174 * So just find our index, and adjust the iterator afterwards.
2175 * If the offset is within the first bvec (or the whole first
2176 * bvec, just use iov_iter_advance(). This makes it easier
2177 * since we can just skip the first segment, which may not
2178 * be PAGE_SIZE aligned.
2179 */
2180 const struct bio_vec *bvec = imu->bvec;
2181
2182 if (offset <= bvec->bv_len) {
2183 iov_iter_advance(iter, offset);
2184 } else {
2185 unsigned long seg_skip;
2186
2187 /* skip first vec */
2188 offset -= bvec->bv_len;
2189 seg_skip = 1 + (offset >> PAGE_SHIFT);
2190
2191 iter->bvec = bvec + seg_skip;
2192 iter->nr_segs -= seg_skip;
Aleix Roca Nonell99c79f62019-08-15 14:03:22 +02002193 iter->count -= bvec->bv_len + offset;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002194 iter->iov_offset = offset & ~PAGE_MASK;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002195 }
2196 }
2197
Jens Axboe5e559562019-11-13 16:12:46 -07002198 return len;
Jens Axboeedafcce2019-01-09 09:16:05 -07002199}
2200
Jens Axboebcda7ba2020-02-23 16:42:51 -07002201static void io_ring_submit_unlock(struct io_ring_ctx *ctx, bool needs_lock)
2202{
2203 if (needs_lock)
2204 mutex_unlock(&ctx->uring_lock);
2205}
2206
2207static void io_ring_submit_lock(struct io_ring_ctx *ctx, bool needs_lock)
2208{
2209 /*
2210 * "Normal" inline submissions always hold the uring_lock, since we
2211 * grab it from the system call. Same is true for the SQPOLL offload.
2212 * The only exception is when we've detached the request and issue it
2213 * from an async worker thread, grab the lock for that case.
2214 */
2215 if (needs_lock)
2216 mutex_lock(&ctx->uring_lock);
2217}
2218
2219static struct io_buffer *io_buffer_select(struct io_kiocb *req, size_t *len,
2220 int bgid, struct io_buffer *kbuf,
2221 bool needs_lock)
2222{
2223 struct io_buffer *head;
2224
2225 if (req->flags & REQ_F_BUFFER_SELECTED)
2226 return kbuf;
2227
2228 io_ring_submit_lock(req->ctx, needs_lock);
2229
2230 lockdep_assert_held(&req->ctx->uring_lock);
2231
2232 head = idr_find(&req->ctx->io_buffer_idr, bgid);
2233 if (head) {
2234 if (!list_empty(&head->list)) {
2235 kbuf = list_last_entry(&head->list, struct io_buffer,
2236 list);
2237 list_del(&kbuf->list);
2238 } else {
2239 kbuf = head;
2240 idr_remove(&req->ctx->io_buffer_idr, bgid);
2241 }
2242 if (*len > kbuf->len)
2243 *len = kbuf->len;
2244 } else {
2245 kbuf = ERR_PTR(-ENOBUFS);
2246 }
2247
2248 io_ring_submit_unlock(req->ctx, needs_lock);
2249
2250 return kbuf;
2251}
2252
Jens Axboe4d954c22020-02-27 07:31:19 -07002253static void __user *io_rw_buffer_select(struct io_kiocb *req, size_t *len,
2254 bool needs_lock)
2255{
2256 struct io_buffer *kbuf;
2257 int bgid;
2258
2259 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
2260 bgid = (int) (unsigned long) req->rw.kiocb.private;
2261 kbuf = io_buffer_select(req, len, bgid, kbuf, needs_lock);
2262 if (IS_ERR(kbuf))
2263 return kbuf;
2264 req->rw.addr = (u64) (unsigned long) kbuf;
2265 req->flags |= REQ_F_BUFFER_SELECTED;
2266 return u64_to_user_ptr(kbuf->addr);
2267}
2268
2269#ifdef CONFIG_COMPAT
2270static ssize_t io_compat_import(struct io_kiocb *req, struct iovec *iov,
2271 bool needs_lock)
2272{
2273 struct compat_iovec __user *uiov;
2274 compat_ssize_t clen;
2275 void __user *buf;
2276 ssize_t len;
2277
2278 uiov = u64_to_user_ptr(req->rw.addr);
2279 if (!access_ok(uiov, sizeof(*uiov)))
2280 return -EFAULT;
2281 if (__get_user(clen, &uiov->iov_len))
2282 return -EFAULT;
2283 if (clen < 0)
2284 return -EINVAL;
2285
2286 len = clen;
2287 buf = io_rw_buffer_select(req, &len, needs_lock);
2288 if (IS_ERR(buf))
2289 return PTR_ERR(buf);
2290 iov[0].iov_base = buf;
2291 iov[0].iov_len = (compat_size_t) len;
2292 return 0;
2293}
2294#endif
2295
2296static ssize_t __io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
2297 bool needs_lock)
2298{
2299 struct iovec __user *uiov = u64_to_user_ptr(req->rw.addr);
2300 void __user *buf;
2301 ssize_t len;
2302
2303 if (copy_from_user(iov, uiov, sizeof(*uiov)))
2304 return -EFAULT;
2305
2306 len = iov[0].iov_len;
2307 if (len < 0)
2308 return -EINVAL;
2309 buf = io_rw_buffer_select(req, &len, needs_lock);
2310 if (IS_ERR(buf))
2311 return PTR_ERR(buf);
2312 iov[0].iov_base = buf;
2313 iov[0].iov_len = len;
2314 return 0;
2315}
2316
2317static ssize_t io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
2318 bool needs_lock)
2319{
2320 if (req->flags & REQ_F_BUFFER_SELECTED)
2321 return 0;
2322 if (!req->rw.len)
2323 return 0;
2324 else if (req->rw.len > 1)
2325 return -EINVAL;
2326
2327#ifdef CONFIG_COMPAT
2328 if (req->ctx->compat)
2329 return io_compat_import(req, iov, needs_lock);
2330#endif
2331
2332 return __io_iov_buffer_select(req, iov, needs_lock);
2333}
2334
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002335static ssize_t io_import_iovec(int rw, struct io_kiocb *req,
Jens Axboebcda7ba2020-02-23 16:42:51 -07002336 struct iovec **iovec, struct iov_iter *iter,
2337 bool needs_lock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002338{
Jens Axboe9adbd452019-12-20 08:45:55 -07002339 void __user *buf = u64_to_user_ptr(req->rw.addr);
2340 size_t sqe_len = req->rw.len;
Jens Axboe4d954c22020-02-27 07:31:19 -07002341 ssize_t ret;
Jens Axboeedafcce2019-01-09 09:16:05 -07002342 u8 opcode;
2343
Jens Axboed625c6e2019-12-17 19:53:05 -07002344 opcode = req->opcode;
Pavel Begunkov7d009162019-11-25 23:14:40 +03002345 if (opcode == IORING_OP_READ_FIXED || opcode == IORING_OP_WRITE_FIXED) {
Jens Axboeedafcce2019-01-09 09:16:05 -07002346 *iovec = NULL;
Jens Axboe9adbd452019-12-20 08:45:55 -07002347 return io_import_fixed(req, rw, iter);
Jens Axboeedafcce2019-01-09 09:16:05 -07002348 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002349
Jens Axboebcda7ba2020-02-23 16:42:51 -07002350 /* buffer index only valid with fixed read/write, or buffer select */
2351 if (req->rw.kiocb.private && !(req->flags & REQ_F_BUFFER_SELECT))
Jens Axboe9adbd452019-12-20 08:45:55 -07002352 return -EINVAL;
2353
Jens Axboe3a6820f2019-12-22 15:19:35 -07002354 if (opcode == IORING_OP_READ || opcode == IORING_OP_WRITE) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07002355 if (req->flags & REQ_F_BUFFER_SELECT) {
Jens Axboe4d954c22020-02-27 07:31:19 -07002356 buf = io_rw_buffer_select(req, &sqe_len, needs_lock);
2357 if (IS_ERR(buf)) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07002358 *iovec = NULL;
Jens Axboe4d954c22020-02-27 07:31:19 -07002359 return PTR_ERR(buf);
Jens Axboebcda7ba2020-02-23 16:42:51 -07002360 }
Jens Axboebcda7ba2020-02-23 16:42:51 -07002361 }
2362
Jens Axboe3a6820f2019-12-22 15:19:35 -07002363 ret = import_single_range(rw, buf, sqe_len, *iovec, iter);
2364 *iovec = NULL;
Jens Axboe3a901592020-02-25 17:48:55 -07002365 return ret < 0 ? ret : sqe_len;
Jens Axboe3a6820f2019-12-22 15:19:35 -07002366 }
2367
Jens Axboef67676d2019-12-02 11:03:47 -07002368 if (req->io) {
2369 struct io_async_rw *iorw = &req->io->rw;
2370
2371 *iovec = iorw->iov;
2372 iov_iter_init(iter, rw, *iovec, iorw->nr_segs, iorw->size);
2373 if (iorw->iov == iorw->fast_iov)
2374 *iovec = NULL;
2375 return iorw->size;
2376 }
2377
Jens Axboe4d954c22020-02-27 07:31:19 -07002378 if (req->flags & REQ_F_BUFFER_SELECT) {
2379 ret = io_iov_buffer_select(req, *iovec, needs_lock);
2380 if (!ret)
2381 iov_iter_init(iter, rw, *iovec, 1, (*iovec)->iov_len);
2382 *iovec = NULL;
2383 return ret;
2384 }
2385
Jens Axboe2b188cc2019-01-07 10:46:33 -07002386#ifdef CONFIG_COMPAT
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002387 if (req->ctx->compat)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002388 return compat_import_iovec(rw, buf, sqe_len, UIO_FASTIOV,
2389 iovec, iter);
2390#endif
2391
2392 return import_iovec(rw, buf, sqe_len, UIO_FASTIOV, iovec, iter);
2393}
2394
Jens Axboe32960612019-09-23 11:05:34 -06002395/*
2396 * For files that don't have ->read_iter() and ->write_iter(), handle them
2397 * by looping over ->read() or ->write() manually.
2398 */
2399static ssize_t loop_rw_iter(int rw, struct file *file, struct kiocb *kiocb,
2400 struct iov_iter *iter)
2401{
2402 ssize_t ret = 0;
2403
2404 /*
2405 * Don't support polled IO through this interface, and we can't
2406 * support non-blocking either. For the latter, this just causes
2407 * the kiocb to be handled from an async context.
2408 */
2409 if (kiocb->ki_flags & IOCB_HIPRI)
2410 return -EOPNOTSUPP;
2411 if (kiocb->ki_flags & IOCB_NOWAIT)
2412 return -EAGAIN;
2413
2414 while (iov_iter_count(iter)) {
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002415 struct iovec iovec;
Jens Axboe32960612019-09-23 11:05:34 -06002416 ssize_t nr;
2417
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002418 if (!iov_iter_is_bvec(iter)) {
2419 iovec = iov_iter_iovec(iter);
2420 } else {
2421 /* fixed buffers import bvec */
2422 iovec.iov_base = kmap(iter->bvec->bv_page)
2423 + iter->iov_offset;
2424 iovec.iov_len = min(iter->count,
2425 iter->bvec->bv_len - iter->iov_offset);
2426 }
2427
Jens Axboe32960612019-09-23 11:05:34 -06002428 if (rw == READ) {
2429 nr = file->f_op->read(file, iovec.iov_base,
2430 iovec.iov_len, &kiocb->ki_pos);
2431 } else {
2432 nr = file->f_op->write(file, iovec.iov_base,
2433 iovec.iov_len, &kiocb->ki_pos);
2434 }
2435
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002436 if (iov_iter_is_bvec(iter))
2437 kunmap(iter->bvec->bv_page);
2438
Jens Axboe32960612019-09-23 11:05:34 -06002439 if (nr < 0) {
2440 if (!ret)
2441 ret = nr;
2442 break;
2443 }
2444 ret += nr;
2445 if (nr != iovec.iov_len)
2446 break;
2447 iov_iter_advance(iter, nr);
2448 }
2449
2450 return ret;
2451}
2452
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002453static void io_req_map_rw(struct io_kiocb *req, ssize_t io_size,
Jens Axboef67676d2019-12-02 11:03:47 -07002454 struct iovec *iovec, struct iovec *fast_iov,
2455 struct iov_iter *iter)
2456{
2457 req->io->rw.nr_segs = iter->nr_segs;
2458 req->io->rw.size = io_size;
2459 req->io->rw.iov = iovec;
2460 if (!req->io->rw.iov) {
2461 req->io->rw.iov = req->io->rw.fast_iov;
2462 memcpy(req->io->rw.iov, fast_iov,
2463 sizeof(struct iovec) * iter->nr_segs);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002464 } else {
2465 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboef67676d2019-12-02 11:03:47 -07002466 }
2467}
2468
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002469static int io_alloc_async_ctx(struct io_kiocb *req)
Jens Axboef67676d2019-12-02 11:03:47 -07002470{
Jens Axboed3656342019-12-18 09:50:26 -07002471 if (!io_op_defs[req->opcode].async_ctx)
2472 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002473 req->io = kmalloc(sizeof(*req->io), GFP_KERNEL);
Jens Axboe06b76d42019-12-19 14:44:26 -07002474 return req->io == NULL;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002475}
2476
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002477static int io_setup_async_rw(struct io_kiocb *req, ssize_t io_size,
2478 struct iovec *iovec, struct iovec *fast_iov,
2479 struct iov_iter *iter)
2480{
Jens Axboe980ad262020-01-24 23:08:54 -07002481 if (!io_op_defs[req->opcode].async_ctx)
Jens Axboe74566df2020-01-13 19:23:24 -07002482 return 0;
Jens Axboe5d204bc2020-01-31 12:06:52 -07002483 if (!req->io) {
2484 if (io_alloc_async_ctx(req))
2485 return -ENOMEM;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002486
Jens Axboe5d204bc2020-01-31 12:06:52 -07002487 io_req_map_rw(req, io_size, iovec, fast_iov, iter);
2488 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002489 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002490}
2491
Jens Axboe3529d8c2019-12-19 18:24:38 -07002492static int io_read_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2493 bool force_nonblock)
Jens Axboef67676d2019-12-02 11:03:47 -07002494{
Jens Axboe3529d8c2019-12-19 18:24:38 -07002495 struct io_async_ctx *io;
2496 struct iov_iter iter;
Jens Axboef67676d2019-12-02 11:03:47 -07002497 ssize_t ret;
2498
Jens Axboe3529d8c2019-12-19 18:24:38 -07002499 ret = io_prep_rw(req, sqe, force_nonblock);
2500 if (ret)
2501 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07002502
Jens Axboe3529d8c2019-12-19 18:24:38 -07002503 if (unlikely(!(req->file->f_mode & FMODE_READ)))
2504 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07002505
Pavel Begunkov5f798be2020-02-08 13:28:02 +03002506 /* either don't need iovec imported or already have it */
2507 if (!req->io || req->flags & REQ_F_NEED_CLEANUP)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002508 return 0;
2509
2510 io = req->io;
2511 io->rw.iov = io->rw.fast_iov;
2512 req->io = NULL;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002513 ret = io_import_iovec(READ, req, &io->rw.iov, &iter, !force_nonblock);
Jens Axboe3529d8c2019-12-19 18:24:38 -07002514 req->io = io;
2515 if (ret < 0)
2516 return ret;
2517
2518 io_req_map_rw(req, ret, io->rw.iov, io->rw.fast_iov, &iter);
2519 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002520}
2521
Pavel Begunkov014db002020-03-03 21:33:12 +03002522static int io_read(struct io_kiocb *req, bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002523{
2524 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07002525 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002526 struct iov_iter iter;
Jens Axboe31b51512019-01-18 22:56:34 -07002527 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07002528 ssize_t io_size, ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002529
Jens Axboebcda7ba2020-02-23 16:42:51 -07002530 ret = io_import_iovec(READ, req, &iovec, &iter, !force_nonblock);
Jens Axboe06b76d42019-12-19 14:44:26 -07002531 if (ret < 0)
2532 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002533
Jens Axboefd6c2e42019-12-18 12:19:41 -07002534 /* Ensure we clear previously set non-block flag */
2535 if (!force_nonblock)
Jens Axboe29de5f62020-02-20 09:56:08 -07002536 kiocb->ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07002537
Bijan Mottahedeh797f3f52020-01-15 18:37:45 -08002538 req->result = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002539 io_size = ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06002540 if (req->flags & REQ_F_LINK)
Jens Axboef67676d2019-12-02 11:03:47 -07002541 req->result = io_size;
2542
2543 /*
2544 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
2545 * we know to async punt it even if it was opened O_NONBLOCK
2546 */
Jens Axboe29de5f62020-02-20 09:56:08 -07002547 if (force_nonblock && !io_file_supports_async(req->file))
Jens Axboef67676d2019-12-02 11:03:47 -07002548 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06002549
Jens Axboe31b51512019-01-18 22:56:34 -07002550 iov_count = iov_iter_count(&iter);
Jens Axboe9adbd452019-12-20 08:45:55 -07002551 ret = rw_verify_area(READ, req->file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002552 if (!ret) {
2553 ssize_t ret2;
2554
Jens Axboe9adbd452019-12-20 08:45:55 -07002555 if (req->file->f_op->read_iter)
2556 ret2 = call_read_iter(req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002557 else
Jens Axboe9adbd452019-12-20 08:45:55 -07002558 ret2 = loop_rw_iter(READ, req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002559
Jens Axboe9d93a3f2019-05-15 13:53:07 -06002560 /* Catch -EAGAIN return for forced non-blocking submission */
Jens Axboef67676d2019-12-02 11:03:47 -07002561 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkov014db002020-03-03 21:33:12 +03002562 kiocb_done(kiocb, ret2);
Jens Axboef67676d2019-12-02 11:03:47 -07002563 } else {
2564copy_iov:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002565 ret = io_setup_async_rw(req, io_size, iovec,
Jens Axboef67676d2019-12-02 11:03:47 -07002566 inline_vecs, &iter);
2567 if (ret)
2568 goto out_free;
Jens Axboe29de5f62020-02-20 09:56:08 -07002569 /* any defer here is final, must blocking retry */
2570 if (!(req->flags & REQ_F_NOWAIT))
2571 req->flags |= REQ_F_MUST_PUNT;
Jens Axboef67676d2019-12-02 11:03:47 -07002572 return -EAGAIN;
2573 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002574 }
Jens Axboef67676d2019-12-02 11:03:47 -07002575out_free:
Pavel Begunkov1e950812020-02-06 19:51:16 +03002576 kfree(iovec);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002577 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002578 return ret;
2579}
2580
Jens Axboe3529d8c2019-12-19 18:24:38 -07002581static int io_write_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2582 bool force_nonblock)
Jens Axboef67676d2019-12-02 11:03:47 -07002583{
Jens Axboe3529d8c2019-12-19 18:24:38 -07002584 struct io_async_ctx *io;
2585 struct iov_iter iter;
Jens Axboef67676d2019-12-02 11:03:47 -07002586 ssize_t ret;
2587
Jens Axboe3529d8c2019-12-19 18:24:38 -07002588 ret = io_prep_rw(req, sqe, force_nonblock);
2589 if (ret)
2590 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07002591
Jens Axboe3529d8c2019-12-19 18:24:38 -07002592 if (unlikely(!(req->file->f_mode & FMODE_WRITE)))
2593 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07002594
Pavel Begunkov5f798be2020-02-08 13:28:02 +03002595 /* either don't need iovec imported or already have it */
2596 if (!req->io || req->flags & REQ_F_NEED_CLEANUP)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002597 return 0;
2598
2599 io = req->io;
2600 io->rw.iov = io->rw.fast_iov;
2601 req->io = NULL;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002602 ret = io_import_iovec(WRITE, req, &io->rw.iov, &iter, !force_nonblock);
Jens Axboe3529d8c2019-12-19 18:24:38 -07002603 req->io = io;
2604 if (ret < 0)
2605 return ret;
2606
2607 io_req_map_rw(req, ret, io->rw.iov, io->rw.fast_iov, &iter);
2608 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002609}
2610
Pavel Begunkov014db002020-03-03 21:33:12 +03002611static int io_write(struct io_kiocb *req, bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002612{
2613 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07002614 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002615 struct iov_iter iter;
Jens Axboe31b51512019-01-18 22:56:34 -07002616 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07002617 ssize_t ret, io_size;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002618
Jens Axboebcda7ba2020-02-23 16:42:51 -07002619 ret = io_import_iovec(WRITE, req, &iovec, &iter, !force_nonblock);
Jens Axboe06b76d42019-12-19 14:44:26 -07002620 if (ret < 0)
2621 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002622
Jens Axboefd6c2e42019-12-18 12:19:41 -07002623 /* Ensure we clear previously set non-block flag */
2624 if (!force_nonblock)
Jens Axboe9adbd452019-12-20 08:45:55 -07002625 req->rw.kiocb.ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07002626
Bijan Mottahedeh797f3f52020-01-15 18:37:45 -08002627 req->result = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002628 io_size = ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06002629 if (req->flags & REQ_F_LINK)
Jens Axboef67676d2019-12-02 11:03:47 -07002630 req->result = io_size;
2631
2632 /*
2633 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
2634 * we know to async punt it even if it was opened O_NONBLOCK
2635 */
Jens Axboe29de5f62020-02-20 09:56:08 -07002636 if (force_nonblock && !io_file_supports_async(req->file))
Jens Axboef67676d2019-12-02 11:03:47 -07002637 goto copy_iov;
Jens Axboef67676d2019-12-02 11:03:47 -07002638
Jens Axboe10d59342019-12-09 20:16:22 -07002639 /* file path doesn't support NOWAIT for non-direct_IO */
2640 if (force_nonblock && !(kiocb->ki_flags & IOCB_DIRECT) &&
2641 (req->flags & REQ_F_ISREG))
Jens Axboef67676d2019-12-02 11:03:47 -07002642 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06002643
Jens Axboe31b51512019-01-18 22:56:34 -07002644 iov_count = iov_iter_count(&iter);
Jens Axboe9adbd452019-12-20 08:45:55 -07002645 ret = rw_verify_area(WRITE, req->file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002646 if (!ret) {
Roman Penyaev9bf79332019-03-25 20:09:24 +01002647 ssize_t ret2;
2648
Jens Axboe2b188cc2019-01-07 10:46:33 -07002649 /*
2650 * Open-code file_start_write here to grab freeze protection,
2651 * which will be released by another thread in
2652 * io_complete_rw(). Fool lockdep by telling it the lock got
2653 * released so that it doesn't complain about the held lock when
2654 * we return to userspace.
2655 */
Jens Axboe491381ce2019-10-17 09:20:46 -06002656 if (req->flags & REQ_F_ISREG) {
Jens Axboe9adbd452019-12-20 08:45:55 -07002657 __sb_start_write(file_inode(req->file)->i_sb,
Jens Axboe2b188cc2019-01-07 10:46:33 -07002658 SB_FREEZE_WRITE, true);
Jens Axboe9adbd452019-12-20 08:45:55 -07002659 __sb_writers_release(file_inode(req->file)->i_sb,
Jens Axboe2b188cc2019-01-07 10:46:33 -07002660 SB_FREEZE_WRITE);
2661 }
2662 kiocb->ki_flags |= IOCB_WRITE;
Roman Penyaev9bf79332019-03-25 20:09:24 +01002663
Jens Axboe9adbd452019-12-20 08:45:55 -07002664 if (req->file->f_op->write_iter)
2665 ret2 = call_write_iter(req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002666 else
Jens Axboe9adbd452019-12-20 08:45:55 -07002667 ret2 = loop_rw_iter(WRITE, req->file, kiocb, &iter);
Jens Axboefaac9962020-02-07 15:45:22 -07002668 /*
2669 * Raw bdev writes will -EOPNOTSUPP for IOCB_NOWAIT. Just
2670 * retry them without IOCB_NOWAIT.
2671 */
2672 if (ret2 == -EOPNOTSUPP && (kiocb->ki_flags & IOCB_NOWAIT))
2673 ret2 = -EAGAIN;
Jens Axboef67676d2019-12-02 11:03:47 -07002674 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkov014db002020-03-03 21:33:12 +03002675 kiocb_done(kiocb, ret2);
Jens Axboef67676d2019-12-02 11:03:47 -07002676 } else {
2677copy_iov:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002678 ret = io_setup_async_rw(req, io_size, iovec,
Jens Axboef67676d2019-12-02 11:03:47 -07002679 inline_vecs, &iter);
2680 if (ret)
2681 goto out_free;
Jens Axboe29de5f62020-02-20 09:56:08 -07002682 /* any defer here is final, must blocking retry */
2683 req->flags |= REQ_F_MUST_PUNT;
Jens Axboef67676d2019-12-02 11:03:47 -07002684 return -EAGAIN;
2685 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002686 }
Jens Axboe31b51512019-01-18 22:56:34 -07002687out_free:
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002688 req->flags &= ~REQ_F_NEED_CLEANUP;
Pavel Begunkov1e950812020-02-06 19:51:16 +03002689 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002690 return ret;
2691}
2692
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002693static int io_splice_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2694{
2695 struct io_splice* sp = &req->splice;
2696 unsigned int valid_flags = SPLICE_F_FD_IN_FIXED | SPLICE_F_ALL;
2697 int ret;
2698
2699 if (req->flags & REQ_F_NEED_CLEANUP)
2700 return 0;
2701
2702 sp->file_in = NULL;
2703 sp->off_in = READ_ONCE(sqe->splice_off_in);
2704 sp->off_out = READ_ONCE(sqe->off);
2705 sp->len = READ_ONCE(sqe->len);
2706 sp->flags = READ_ONCE(sqe->splice_flags);
2707
2708 if (unlikely(sp->flags & ~valid_flags))
2709 return -EINVAL;
2710
2711 ret = io_file_get(NULL, req, READ_ONCE(sqe->splice_fd_in), &sp->file_in,
2712 (sp->flags & SPLICE_F_FD_IN_FIXED));
2713 if (ret)
2714 return ret;
2715 req->flags |= REQ_F_NEED_CLEANUP;
2716
2717 if (!S_ISREG(file_inode(sp->file_in)->i_mode))
2718 req->work.flags |= IO_WQ_WORK_UNBOUND;
2719
2720 return 0;
2721}
2722
2723static bool io_splice_punt(struct file *file)
2724{
2725 if (get_pipe_info(file))
2726 return false;
2727 if (!io_file_supports_async(file))
2728 return true;
2729 return !(file->f_mode & O_NONBLOCK);
2730}
2731
Pavel Begunkov014db002020-03-03 21:33:12 +03002732static int io_splice(struct io_kiocb *req, bool force_nonblock)
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002733{
2734 struct io_splice *sp = &req->splice;
2735 struct file *in = sp->file_in;
2736 struct file *out = sp->file_out;
2737 unsigned int flags = sp->flags & ~SPLICE_F_FD_IN_FIXED;
2738 loff_t *poff_in, *poff_out;
2739 long ret;
2740
2741 if (force_nonblock) {
2742 if (io_splice_punt(in) || io_splice_punt(out))
2743 return -EAGAIN;
2744 flags |= SPLICE_F_NONBLOCK;
2745 }
2746
2747 poff_in = (sp->off_in == -1) ? NULL : &sp->off_in;
2748 poff_out = (sp->off_out == -1) ? NULL : &sp->off_out;
2749 ret = do_splice(in, poff_in, out, poff_out, sp->len, flags);
2750 if (force_nonblock && ret == -EAGAIN)
2751 return -EAGAIN;
2752
2753 io_put_file(req, in, (sp->flags & SPLICE_F_FD_IN_FIXED));
2754 req->flags &= ~REQ_F_NEED_CLEANUP;
2755
2756 io_cqring_add_event(req, ret);
2757 if (ret != sp->len)
2758 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03002759 io_put_req(req);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002760 return 0;
2761}
2762
Jens Axboe2b188cc2019-01-07 10:46:33 -07002763/*
2764 * IORING_OP_NOP just posts a completion event, nothing else.
2765 */
Jens Axboe78e19bb2019-11-06 15:21:34 -07002766static int io_nop(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002767{
2768 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002769
Jens Axboedef596e2019-01-09 08:59:42 -07002770 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
2771 return -EINVAL;
2772
Jens Axboe78e19bb2019-11-06 15:21:34 -07002773 io_cqring_add_event(req, 0);
Jens Axboee65ef562019-03-12 10:16:44 -06002774 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002775 return 0;
2776}
2777
Jens Axboe3529d8c2019-12-19 18:24:38 -07002778static int io_prep_fsync(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002779{
Jens Axboe6b063142019-01-10 22:13:58 -07002780 struct io_ring_ctx *ctx = req->ctx;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002781
Jens Axboe09bb8392019-03-13 12:39:28 -06002782 if (!req->file)
2783 return -EBADF;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002784
Jens Axboe6b063142019-01-10 22:13:58 -07002785 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboedef596e2019-01-09 08:59:42 -07002786 return -EINVAL;
Jens Axboeedafcce2019-01-09 09:16:05 -07002787 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002788 return -EINVAL;
2789
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002790 req->sync.flags = READ_ONCE(sqe->fsync_flags);
2791 if (unlikely(req->sync.flags & ~IORING_FSYNC_DATASYNC))
2792 return -EINVAL;
2793
2794 req->sync.off = READ_ONCE(sqe->off);
2795 req->sync.len = READ_ONCE(sqe->len);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002796 return 0;
2797}
2798
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002799static bool io_req_cancelled(struct io_kiocb *req)
2800{
2801 if (req->work.flags & IO_WQ_WORK_CANCEL) {
2802 req_set_fail_links(req);
2803 io_cqring_add_event(req, -ECANCELED);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03002804 io_put_req(req);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002805 return true;
2806 }
2807
2808 return false;
2809}
2810
Pavel Begunkov014db002020-03-03 21:33:12 +03002811static void __io_fsync(struct io_kiocb *req)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002812{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002813 loff_t end = req->sync.off + req->sync.len;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002814 int ret;
2815
Jens Axboe9adbd452019-12-20 08:45:55 -07002816 ret = vfs_fsync_range(req->file, req->sync.off,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002817 end > 0 ? end : LLONG_MAX,
2818 req->sync.flags & IORING_FSYNC_DATASYNC);
2819 if (ret < 0)
2820 req_set_fail_links(req);
2821 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03002822 io_put_req(req);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002823}
2824
2825static void io_fsync_finish(struct io_wq_work **workptr)
2826{
2827 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002828
2829 if (io_req_cancelled(req))
2830 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03002831 __io_fsync(req);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03002832 io_steal_work(req, workptr);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002833}
2834
Pavel Begunkov014db002020-03-03 21:33:12 +03002835static int io_fsync(struct io_kiocb *req, bool force_nonblock)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002836{
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002837 /* fsync always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002838 if (force_nonblock) {
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002839 req->work.func = io_fsync_finish;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002840 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002841 }
Pavel Begunkov014db002020-03-03 21:33:12 +03002842 __io_fsync(req);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002843 return 0;
2844}
2845
Pavel Begunkov014db002020-03-03 21:33:12 +03002846static void __io_fallocate(struct io_kiocb *req)
Jens Axboed63d1b52019-12-10 10:38:56 -07002847{
Jens Axboed63d1b52019-12-10 10:38:56 -07002848 int ret;
2849
2850 ret = vfs_fallocate(req->file, req->sync.mode, req->sync.off,
2851 req->sync.len);
2852 if (ret < 0)
2853 req_set_fail_links(req);
2854 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03002855 io_put_req(req);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002856}
2857
2858static void io_fallocate_finish(struct io_wq_work **workptr)
2859{
2860 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002861
Pavel Begunkov594506f2020-03-03 21:33:11 +03002862 if (io_req_cancelled(req))
2863 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03002864 __io_fallocate(req);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03002865 io_steal_work(req, workptr);
Jens Axboed63d1b52019-12-10 10:38:56 -07002866}
2867
2868static int io_fallocate_prep(struct io_kiocb *req,
2869 const struct io_uring_sqe *sqe)
2870{
2871 if (sqe->ioprio || sqe->buf_index || sqe->rw_flags)
2872 return -EINVAL;
2873
2874 req->sync.off = READ_ONCE(sqe->off);
2875 req->sync.len = READ_ONCE(sqe->addr);
2876 req->sync.mode = READ_ONCE(sqe->len);
2877 return 0;
2878}
2879
Pavel Begunkov014db002020-03-03 21:33:12 +03002880static int io_fallocate(struct io_kiocb *req, bool force_nonblock)
Jens Axboed63d1b52019-12-10 10:38:56 -07002881{
Jens Axboed63d1b52019-12-10 10:38:56 -07002882 /* fallocate always requiring blocking context */
2883 if (force_nonblock) {
Jens Axboed63d1b52019-12-10 10:38:56 -07002884 req->work.func = io_fallocate_finish;
2885 return -EAGAIN;
2886 }
2887
Pavel Begunkov014db002020-03-03 21:33:12 +03002888 __io_fallocate(req);
Jens Axboed63d1b52019-12-10 10:38:56 -07002889 return 0;
2890}
2891
Jens Axboe15b71ab2019-12-11 11:20:36 -07002892static int io_openat_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2893{
Jens Axboef8748882020-01-08 17:47:02 -07002894 const char __user *fname;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002895 int ret;
2896
2897 if (sqe->ioprio || sqe->buf_index)
2898 return -EINVAL;
Jens Axboecf3040c2020-02-06 21:31:40 -07002899 if (sqe->flags & IOSQE_FIXED_FILE)
2900 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03002901 if (req->flags & REQ_F_NEED_CLEANUP)
2902 return 0;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002903
2904 req->open.dfd = READ_ONCE(sqe->fd);
Jens Axboec12cedf2020-01-08 17:41:21 -07002905 req->open.how.mode = READ_ONCE(sqe->len);
Jens Axboef8748882020-01-08 17:47:02 -07002906 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboec12cedf2020-01-08 17:41:21 -07002907 req->open.how.flags = READ_ONCE(sqe->open_flags);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002908
Jens Axboef8748882020-01-08 17:47:02 -07002909 req->open.filename = getname(fname);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002910 if (IS_ERR(req->open.filename)) {
2911 ret = PTR_ERR(req->open.filename);
2912 req->open.filename = NULL;
2913 return ret;
2914 }
2915
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03002916 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002917 return 0;
2918}
2919
Jens Axboecebdb982020-01-08 17:59:24 -07002920static int io_openat2_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2921{
2922 struct open_how __user *how;
2923 const char __user *fname;
2924 size_t len;
2925 int ret;
2926
2927 if (sqe->ioprio || sqe->buf_index)
2928 return -EINVAL;
Jens Axboecf3040c2020-02-06 21:31:40 -07002929 if (sqe->flags & IOSQE_FIXED_FILE)
2930 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03002931 if (req->flags & REQ_F_NEED_CLEANUP)
2932 return 0;
Jens Axboecebdb982020-01-08 17:59:24 -07002933
2934 req->open.dfd = READ_ONCE(sqe->fd);
2935 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
2936 how = u64_to_user_ptr(READ_ONCE(sqe->addr2));
2937 len = READ_ONCE(sqe->len);
2938
2939 if (len < OPEN_HOW_SIZE_VER0)
2940 return -EINVAL;
2941
2942 ret = copy_struct_from_user(&req->open.how, sizeof(req->open.how), how,
2943 len);
2944 if (ret)
2945 return ret;
2946
2947 if (!(req->open.how.flags & O_PATH) && force_o_largefile())
2948 req->open.how.flags |= O_LARGEFILE;
2949
2950 req->open.filename = getname(fname);
2951 if (IS_ERR(req->open.filename)) {
2952 ret = PTR_ERR(req->open.filename);
2953 req->open.filename = NULL;
2954 return ret;
2955 }
2956
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03002957 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboecebdb982020-01-08 17:59:24 -07002958 return 0;
2959}
2960
Pavel Begunkov014db002020-03-03 21:33:12 +03002961static int io_openat2(struct io_kiocb *req, bool force_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07002962{
2963 struct open_flags op;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002964 struct file *file;
2965 int ret;
2966
Jens Axboef86cd202020-01-29 13:46:44 -07002967 if (force_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07002968 return -EAGAIN;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002969
Jens Axboecebdb982020-01-08 17:59:24 -07002970 ret = build_open_flags(&req->open.how, &op);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002971 if (ret)
2972 goto err;
2973
Jens Axboecebdb982020-01-08 17:59:24 -07002974 ret = get_unused_fd_flags(req->open.how.flags);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002975 if (ret < 0)
2976 goto err;
2977
2978 file = do_filp_open(req->open.dfd, req->open.filename, &op);
2979 if (IS_ERR(file)) {
2980 put_unused_fd(ret);
2981 ret = PTR_ERR(file);
2982 } else {
2983 fsnotify_open(file);
2984 fd_install(ret, file);
2985 }
2986err:
2987 putname(req->open.filename);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03002988 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002989 if (ret < 0)
2990 req_set_fail_links(req);
2991 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03002992 io_put_req(req);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002993 return 0;
2994}
2995
Pavel Begunkov014db002020-03-03 21:33:12 +03002996static int io_openat(struct io_kiocb *req, bool force_nonblock)
Jens Axboecebdb982020-01-08 17:59:24 -07002997{
2998 req->open.how = build_open_how(req->open.how.flags, req->open.how.mode);
Pavel Begunkov014db002020-03-03 21:33:12 +03002999 return io_openat2(req, force_nonblock);
Jens Axboecebdb982020-01-08 17:59:24 -07003000}
3001
Jens Axboe067524e2020-03-02 16:32:28 -07003002static int io_remove_buffers_prep(struct io_kiocb *req,
3003 const struct io_uring_sqe *sqe)
3004{
3005 struct io_provide_buf *p = &req->pbuf;
3006 u64 tmp;
3007
3008 if (sqe->ioprio || sqe->rw_flags || sqe->addr || sqe->len || sqe->off)
3009 return -EINVAL;
3010
3011 tmp = READ_ONCE(sqe->fd);
3012 if (!tmp || tmp > USHRT_MAX)
3013 return -EINVAL;
3014
3015 memset(p, 0, sizeof(*p));
3016 p->nbufs = tmp;
3017 p->bgid = READ_ONCE(sqe->buf_group);
3018 return 0;
3019}
3020
3021static int __io_remove_buffers(struct io_ring_ctx *ctx, struct io_buffer *buf,
3022 int bgid, unsigned nbufs)
3023{
3024 unsigned i = 0;
3025
3026 /* shouldn't happen */
3027 if (!nbufs)
3028 return 0;
3029
3030 /* the head kbuf is the list itself */
3031 while (!list_empty(&buf->list)) {
3032 struct io_buffer *nxt;
3033
3034 nxt = list_first_entry(&buf->list, struct io_buffer, list);
3035 list_del(&nxt->list);
3036 kfree(nxt);
3037 if (++i == nbufs)
3038 return i;
3039 }
3040 i++;
3041 kfree(buf);
3042 idr_remove(&ctx->io_buffer_idr, bgid);
3043
3044 return i;
3045}
3046
3047static int io_remove_buffers(struct io_kiocb *req, bool force_nonblock)
3048{
3049 struct io_provide_buf *p = &req->pbuf;
3050 struct io_ring_ctx *ctx = req->ctx;
3051 struct io_buffer *head;
3052 int ret = 0;
3053
3054 io_ring_submit_lock(ctx, !force_nonblock);
3055
3056 lockdep_assert_held(&ctx->uring_lock);
3057
3058 ret = -ENOENT;
3059 head = idr_find(&ctx->io_buffer_idr, p->bgid);
3060 if (head)
3061 ret = __io_remove_buffers(ctx, head, p->bgid, p->nbufs);
3062
3063 io_ring_submit_lock(ctx, !force_nonblock);
3064 if (ret < 0)
3065 req_set_fail_links(req);
3066 io_cqring_add_event(req, ret);
3067 io_put_req(req);
3068 return 0;
3069}
3070
Jens Axboeddf0322d2020-02-23 16:41:33 -07003071static int io_provide_buffers_prep(struct io_kiocb *req,
3072 const struct io_uring_sqe *sqe)
3073{
3074 struct io_provide_buf *p = &req->pbuf;
3075 u64 tmp;
3076
3077 if (sqe->ioprio || sqe->rw_flags)
3078 return -EINVAL;
3079
3080 tmp = READ_ONCE(sqe->fd);
3081 if (!tmp || tmp > USHRT_MAX)
3082 return -E2BIG;
3083 p->nbufs = tmp;
3084 p->addr = READ_ONCE(sqe->addr);
3085 p->len = READ_ONCE(sqe->len);
3086
3087 if (!access_ok(u64_to_user_ptr(p->addr), p->len))
3088 return -EFAULT;
3089
3090 p->bgid = READ_ONCE(sqe->buf_group);
3091 tmp = READ_ONCE(sqe->off);
3092 if (tmp > USHRT_MAX)
3093 return -E2BIG;
3094 p->bid = tmp;
3095 return 0;
3096}
3097
3098static int io_add_buffers(struct io_provide_buf *pbuf, struct io_buffer **head)
3099{
3100 struct io_buffer *buf;
3101 u64 addr = pbuf->addr;
3102 int i, bid = pbuf->bid;
3103
3104 for (i = 0; i < pbuf->nbufs; i++) {
3105 buf = kmalloc(sizeof(*buf), GFP_KERNEL);
3106 if (!buf)
3107 break;
3108
3109 buf->addr = addr;
3110 buf->len = pbuf->len;
3111 buf->bid = bid;
3112 addr += pbuf->len;
3113 bid++;
3114 if (!*head) {
3115 INIT_LIST_HEAD(&buf->list);
3116 *head = buf;
3117 } else {
3118 list_add_tail(&buf->list, &(*head)->list);
3119 }
3120 }
3121
3122 return i ? i : -ENOMEM;
3123}
3124
Jens Axboeddf0322d2020-02-23 16:41:33 -07003125static int io_provide_buffers(struct io_kiocb *req, bool force_nonblock)
3126{
3127 struct io_provide_buf *p = &req->pbuf;
3128 struct io_ring_ctx *ctx = req->ctx;
3129 struct io_buffer *head, *list;
3130 int ret = 0;
3131
3132 io_ring_submit_lock(ctx, !force_nonblock);
3133
3134 lockdep_assert_held(&ctx->uring_lock);
3135
3136 list = head = idr_find(&ctx->io_buffer_idr, p->bgid);
3137
3138 ret = io_add_buffers(p, &head);
3139 if (ret < 0)
3140 goto out;
3141
3142 if (!list) {
3143 ret = idr_alloc(&ctx->io_buffer_idr, head, p->bgid, p->bgid + 1,
3144 GFP_KERNEL);
3145 if (ret < 0) {
Jens Axboe067524e2020-03-02 16:32:28 -07003146 __io_remove_buffers(ctx, head, p->bgid, -1U);
Jens Axboeddf0322d2020-02-23 16:41:33 -07003147 goto out;
3148 }
3149 }
3150out:
3151 io_ring_submit_unlock(ctx, !force_nonblock);
3152 if (ret < 0)
3153 req_set_fail_links(req);
3154 io_cqring_add_event(req, ret);
3155 io_put_req(req);
3156 return 0;
3157}
3158
Jens Axboe3e4827b2020-01-08 15:18:09 -07003159static int io_epoll_ctl_prep(struct io_kiocb *req,
3160 const struct io_uring_sqe *sqe)
3161{
3162#if defined(CONFIG_EPOLL)
3163 if (sqe->ioprio || sqe->buf_index)
3164 return -EINVAL;
3165
3166 req->epoll.epfd = READ_ONCE(sqe->fd);
3167 req->epoll.op = READ_ONCE(sqe->len);
3168 req->epoll.fd = READ_ONCE(sqe->off);
3169
3170 if (ep_op_has_event(req->epoll.op)) {
3171 struct epoll_event __user *ev;
3172
3173 ev = u64_to_user_ptr(READ_ONCE(sqe->addr));
3174 if (copy_from_user(&req->epoll.event, ev, sizeof(*ev)))
3175 return -EFAULT;
3176 }
3177
3178 return 0;
3179#else
3180 return -EOPNOTSUPP;
3181#endif
3182}
3183
Pavel Begunkov014db002020-03-03 21:33:12 +03003184static int io_epoll_ctl(struct io_kiocb *req, bool force_nonblock)
Jens Axboe3e4827b2020-01-08 15:18:09 -07003185{
3186#if defined(CONFIG_EPOLL)
3187 struct io_epoll *ie = &req->epoll;
3188 int ret;
3189
3190 ret = do_epoll_ctl(ie->epfd, ie->op, ie->fd, &ie->event, force_nonblock);
3191 if (force_nonblock && ret == -EAGAIN)
3192 return -EAGAIN;
3193
3194 if (ret < 0)
3195 req_set_fail_links(req);
3196 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003197 io_put_req(req);
Jens Axboe3e4827b2020-01-08 15:18:09 -07003198 return 0;
3199#else
3200 return -EOPNOTSUPP;
3201#endif
3202}
3203
Jens Axboec1ca7572019-12-25 22:18:28 -07003204static int io_madvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3205{
3206#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
3207 if (sqe->ioprio || sqe->buf_index || sqe->off)
3208 return -EINVAL;
3209
3210 req->madvise.addr = READ_ONCE(sqe->addr);
3211 req->madvise.len = READ_ONCE(sqe->len);
3212 req->madvise.advice = READ_ONCE(sqe->fadvise_advice);
3213 return 0;
3214#else
3215 return -EOPNOTSUPP;
3216#endif
3217}
3218
Pavel Begunkov014db002020-03-03 21:33:12 +03003219static int io_madvise(struct io_kiocb *req, bool force_nonblock)
Jens Axboec1ca7572019-12-25 22:18:28 -07003220{
3221#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
3222 struct io_madvise *ma = &req->madvise;
3223 int ret;
3224
3225 if (force_nonblock)
3226 return -EAGAIN;
3227
3228 ret = do_madvise(ma->addr, ma->len, ma->advice);
3229 if (ret < 0)
3230 req_set_fail_links(req);
3231 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003232 io_put_req(req);
Jens Axboec1ca7572019-12-25 22:18:28 -07003233 return 0;
3234#else
3235 return -EOPNOTSUPP;
3236#endif
3237}
3238
Jens Axboe4840e412019-12-25 22:03:45 -07003239static int io_fadvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3240{
3241 if (sqe->ioprio || sqe->buf_index || sqe->addr)
3242 return -EINVAL;
3243
3244 req->fadvise.offset = READ_ONCE(sqe->off);
3245 req->fadvise.len = READ_ONCE(sqe->len);
3246 req->fadvise.advice = READ_ONCE(sqe->fadvise_advice);
3247 return 0;
3248}
3249
Pavel Begunkov014db002020-03-03 21:33:12 +03003250static int io_fadvise(struct io_kiocb *req, bool force_nonblock)
Jens Axboe4840e412019-12-25 22:03:45 -07003251{
3252 struct io_fadvise *fa = &req->fadvise;
3253 int ret;
3254
Jens Axboe3e694262020-02-01 09:22:49 -07003255 if (force_nonblock) {
3256 switch (fa->advice) {
3257 case POSIX_FADV_NORMAL:
3258 case POSIX_FADV_RANDOM:
3259 case POSIX_FADV_SEQUENTIAL:
3260 break;
3261 default:
3262 return -EAGAIN;
3263 }
3264 }
Jens Axboe4840e412019-12-25 22:03:45 -07003265
3266 ret = vfs_fadvise(req->file, fa->offset, fa->len, fa->advice);
3267 if (ret < 0)
3268 req_set_fail_links(req);
3269 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003270 io_put_req(req);
Jens Axboe4840e412019-12-25 22:03:45 -07003271 return 0;
3272}
3273
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003274static int io_statx_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3275{
Jens Axboef8748882020-01-08 17:47:02 -07003276 const char __user *fname;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003277 unsigned lookup_flags;
3278 int ret;
3279
3280 if (sqe->ioprio || sqe->buf_index)
3281 return -EINVAL;
Jens Axboecf3040c2020-02-06 21:31:40 -07003282 if (sqe->flags & IOSQE_FIXED_FILE)
3283 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03003284 if (req->flags & REQ_F_NEED_CLEANUP)
3285 return 0;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003286
3287 req->open.dfd = READ_ONCE(sqe->fd);
3288 req->open.mask = READ_ONCE(sqe->len);
Jens Axboef8748882020-01-08 17:47:02 -07003289 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003290 req->open.buffer = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboec12cedf2020-01-08 17:41:21 -07003291 req->open.how.flags = READ_ONCE(sqe->statx_flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003292
Jens Axboec12cedf2020-01-08 17:41:21 -07003293 if (vfs_stat_set_lookup_flags(&lookup_flags, req->open.how.flags))
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003294 return -EINVAL;
3295
Jens Axboef8748882020-01-08 17:47:02 -07003296 req->open.filename = getname_flags(fname, lookup_flags, NULL);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003297 if (IS_ERR(req->open.filename)) {
3298 ret = PTR_ERR(req->open.filename);
3299 req->open.filename = NULL;
3300 return ret;
3301 }
3302
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003303 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003304 return 0;
3305}
3306
Pavel Begunkov014db002020-03-03 21:33:12 +03003307static int io_statx(struct io_kiocb *req, bool force_nonblock)
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003308{
3309 struct io_open *ctx = &req->open;
3310 unsigned lookup_flags;
3311 struct path path;
3312 struct kstat stat;
3313 int ret;
3314
3315 if (force_nonblock)
3316 return -EAGAIN;
3317
Jens Axboec12cedf2020-01-08 17:41:21 -07003318 if (vfs_stat_set_lookup_flags(&lookup_flags, ctx->how.flags))
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003319 return -EINVAL;
3320
3321retry:
3322 /* filename_lookup() drops it, keep a reference */
3323 ctx->filename->refcnt++;
3324
3325 ret = filename_lookup(ctx->dfd, ctx->filename, lookup_flags, &path,
3326 NULL);
3327 if (ret)
3328 goto err;
3329
Jens Axboec12cedf2020-01-08 17:41:21 -07003330 ret = vfs_getattr(&path, &stat, ctx->mask, ctx->how.flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003331 path_put(&path);
3332 if (retry_estale(ret, lookup_flags)) {
3333 lookup_flags |= LOOKUP_REVAL;
3334 goto retry;
3335 }
3336 if (!ret)
3337 ret = cp_statx(&stat, ctx->buffer);
3338err:
3339 putname(ctx->filename);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003340 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003341 if (ret < 0)
3342 req_set_fail_links(req);
3343 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003344 io_put_req(req);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003345 return 0;
3346}
3347
Jens Axboeb5dba592019-12-11 14:02:38 -07003348static int io_close_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3349{
3350 /*
3351 * If we queue this for async, it must not be cancellable. That would
3352 * leave the 'file' in an undeterminate state.
3353 */
3354 req->work.flags |= IO_WQ_WORK_NO_CANCEL;
3355
3356 if (sqe->ioprio || sqe->off || sqe->addr || sqe->len ||
3357 sqe->rw_flags || sqe->buf_index)
3358 return -EINVAL;
3359 if (sqe->flags & IOSQE_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07003360 return -EBADF;
Jens Axboeb5dba592019-12-11 14:02:38 -07003361
3362 req->close.fd = READ_ONCE(sqe->fd);
3363 if (req->file->f_op == &io_uring_fops ||
Pavel Begunkovb14cca02020-01-17 04:45:59 +03003364 req->close.fd == req->ctx->ring_fd)
Jens Axboeb5dba592019-12-11 14:02:38 -07003365 return -EBADF;
3366
3367 return 0;
3368}
3369
Pavel Begunkova93b3332020-02-08 14:04:34 +03003370/* only called when __close_fd_get_file() is done */
Pavel Begunkov014db002020-03-03 21:33:12 +03003371static void __io_close_finish(struct io_kiocb *req)
Pavel Begunkova93b3332020-02-08 14:04:34 +03003372{
3373 int ret;
3374
3375 ret = filp_close(req->close.put_file, req->work.files);
3376 if (ret < 0)
3377 req_set_fail_links(req);
3378 io_cqring_add_event(req, ret);
3379 fput(req->close.put_file);
Pavel Begunkov014db002020-03-03 21:33:12 +03003380 io_put_req(req);
Pavel Begunkova93b3332020-02-08 14:04:34 +03003381}
3382
Jens Axboeb5dba592019-12-11 14:02:38 -07003383static void io_close_finish(struct io_wq_work **workptr)
3384{
3385 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Jens Axboeb5dba592019-12-11 14:02:38 -07003386
Pavel Begunkov7fbeb952020-02-16 01:01:18 +03003387 /* not cancellable, don't do io_req_cancelled() */
Pavel Begunkov014db002020-03-03 21:33:12 +03003388 __io_close_finish(req);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03003389 io_steal_work(req, workptr);
Jens Axboeb5dba592019-12-11 14:02:38 -07003390}
3391
Pavel Begunkov014db002020-03-03 21:33:12 +03003392static int io_close(struct io_kiocb *req, bool force_nonblock)
Jens Axboeb5dba592019-12-11 14:02:38 -07003393{
3394 int ret;
3395
3396 req->close.put_file = NULL;
3397 ret = __close_fd_get_file(req->close.fd, &req->close.put_file);
3398 if (ret < 0)
3399 return ret;
3400
3401 /* if the file has a flush method, be safe and punt to async */
Pavel Begunkova2100672020-03-02 23:45:16 +03003402 if (req->close.put_file->f_op->flush && force_nonblock) {
Pavel Begunkov594506f2020-03-03 21:33:11 +03003403 /* submission ref will be dropped, take it for async */
3404 refcount_inc(&req->refs);
3405
Pavel Begunkova2100672020-03-02 23:45:16 +03003406 req->work.func = io_close_finish;
3407 /*
3408 * Do manual async queue here to avoid grabbing files - we don't
3409 * need the files, and it'll cause io_close_finish() to close
3410 * the file again and cause a double CQE entry for this request
3411 */
3412 io_queue_async_work(req);
3413 return 0;
3414 }
Jens Axboeb5dba592019-12-11 14:02:38 -07003415
3416 /*
3417 * No ->flush(), safely close from here and just punt the
3418 * fput() to async context.
3419 */
Pavel Begunkov014db002020-03-03 21:33:12 +03003420 __io_close_finish(req);
Pavel Begunkova93b3332020-02-08 14:04:34 +03003421 return 0;
Jens Axboeb5dba592019-12-11 14:02:38 -07003422}
3423
Jens Axboe3529d8c2019-12-19 18:24:38 -07003424static int io_prep_sfr(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003425{
3426 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003427
3428 if (!req->file)
3429 return -EBADF;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003430
3431 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
3432 return -EINVAL;
3433 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
3434 return -EINVAL;
3435
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003436 req->sync.off = READ_ONCE(sqe->off);
3437 req->sync.len = READ_ONCE(sqe->len);
3438 req->sync.flags = READ_ONCE(sqe->sync_range_flags);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003439 return 0;
3440}
3441
Pavel Begunkov014db002020-03-03 21:33:12 +03003442static void __io_sync_file_range(struct io_kiocb *req)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003443{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003444 int ret;
3445
Jens Axboe9adbd452019-12-20 08:45:55 -07003446 ret = sync_file_range(req->file, req->sync.off, req->sync.len,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003447 req->sync.flags);
3448 if (ret < 0)
3449 req_set_fail_links(req);
3450 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003451 io_put_req(req);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03003452}
3453
3454
3455static void io_sync_file_range_finish(struct io_wq_work **workptr)
3456{
3457 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
3458 struct io_kiocb *nxt = NULL;
3459
3460 if (io_req_cancelled(req))
3461 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03003462 __io_sync_file_range(req);
Pavel Begunkov594506f2020-03-03 21:33:11 +03003463 io_put_req(req); /* put submission ref */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003464 if (nxt)
Jens Axboe78912932020-01-14 22:09:06 -07003465 io_wq_assign_next(workptr, nxt);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003466}
3467
Pavel Begunkov014db002020-03-03 21:33:12 +03003468static int io_sync_file_range(struct io_kiocb *req, bool force_nonblock)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003469{
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003470 /* sync_file_range always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003471 if (force_nonblock) {
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003472 req->work.func = io_sync_file_range_finish;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003473 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003474 }
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003475
Pavel Begunkov014db002020-03-03 21:33:12 +03003476 __io_sync_file_range(req);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003477 return 0;
3478}
3479
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003480static int io_setup_async_msg(struct io_kiocb *req,
3481 struct io_async_msghdr *kmsg)
3482{
3483 if (req->io)
3484 return -EAGAIN;
3485 if (io_alloc_async_ctx(req)) {
3486 if (kmsg->iov != kmsg->fast_iov)
3487 kfree(kmsg->iov);
3488 return -ENOMEM;
3489 }
3490 req->flags |= REQ_F_NEED_CLEANUP;
3491 memcpy(&req->io->msg, kmsg, sizeof(*kmsg));
3492 return -EAGAIN;
3493}
3494
Jens Axboe3529d8c2019-12-19 18:24:38 -07003495static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboeaa1fa282019-04-19 13:38:09 -06003496{
Jens Axboe03b12302019-12-02 18:50:25 -07003497#if defined(CONFIG_NET)
Jens Axboee47293f2019-12-20 08:58:21 -07003498 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003499 struct io_async_ctx *io = req->io;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003500 int ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003501
Jens Axboee47293f2019-12-20 08:58:21 -07003502 sr->msg_flags = READ_ONCE(sqe->msg_flags);
3503 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboefddafac2020-01-04 20:19:44 -07003504 sr->len = READ_ONCE(sqe->len);
Jens Axboe3529d8c2019-12-19 18:24:38 -07003505
Jens Axboed8768362020-02-27 14:17:49 -07003506#ifdef CONFIG_COMPAT
3507 if (req->ctx->compat)
3508 sr->msg_flags |= MSG_CMSG_COMPAT;
3509#endif
3510
Jens Axboefddafac2020-01-04 20:19:44 -07003511 if (!io || req->opcode == IORING_OP_SEND)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003512 return 0;
Pavel Begunkov5f798be2020-02-08 13:28:02 +03003513 /* iovec is already imported */
3514 if (req->flags & REQ_F_NEED_CLEANUP)
3515 return 0;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003516
Jens Axboed9688562019-12-09 19:35:20 -07003517 io->msg.iov = io->msg.fast_iov;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003518 ret = sendmsg_copy_msghdr(&io->msg.msg, sr->msg, sr->msg_flags,
Jens Axboee47293f2019-12-20 08:58:21 -07003519 &io->msg.iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003520 if (!ret)
3521 req->flags |= REQ_F_NEED_CLEANUP;
3522 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003523#else
Jens Axboee47293f2019-12-20 08:58:21 -07003524 return -EOPNOTSUPP;
Jens Axboe03b12302019-12-02 18:50:25 -07003525#endif
3526}
3527
Pavel Begunkov014db002020-03-03 21:33:12 +03003528static int io_sendmsg(struct io_kiocb *req, bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07003529{
3530#if defined(CONFIG_NET)
Jens Axboe0b416c32019-12-15 10:57:46 -07003531 struct io_async_msghdr *kmsg = NULL;
Jens Axboe03b12302019-12-02 18:50:25 -07003532 struct socket *sock;
3533 int ret;
3534
3535 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3536 return -EINVAL;
3537
3538 sock = sock_from_file(req->file, &ret);
3539 if (sock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003540 struct io_async_ctx io;
Jens Axboe03b12302019-12-02 18:50:25 -07003541 unsigned flags;
3542
Jens Axboe03b12302019-12-02 18:50:25 -07003543 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07003544 kmsg = &req->io->msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003545 kmsg->msg.msg_name = &req->io->msg.addr;
Jens Axboe0b416c32019-12-15 10:57:46 -07003546 /* if iov is set, it's allocated already */
3547 if (!kmsg->iov)
3548 kmsg->iov = kmsg->fast_iov;
3549 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07003550 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07003551 struct io_sr_msg *sr = &req->sr_msg;
3552
Jens Axboe0b416c32019-12-15 10:57:46 -07003553 kmsg = &io.msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003554 kmsg->msg.msg_name = &io.msg.addr;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003555
3556 io.msg.iov = io.msg.fast_iov;
3557 ret = sendmsg_copy_msghdr(&io.msg.msg, sr->msg,
3558 sr->msg_flags, &io.msg.iov);
Jens Axboe03b12302019-12-02 18:50:25 -07003559 if (ret)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003560 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003561 }
3562
Jens Axboee47293f2019-12-20 08:58:21 -07003563 flags = req->sr_msg.msg_flags;
3564 if (flags & MSG_DONTWAIT)
3565 req->flags |= REQ_F_NOWAIT;
3566 else if (force_nonblock)
3567 flags |= MSG_DONTWAIT;
3568
Jens Axboe0b416c32019-12-15 10:57:46 -07003569 ret = __sys_sendmsg_sock(sock, &kmsg->msg, flags);
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003570 if (force_nonblock && ret == -EAGAIN)
3571 return io_setup_async_msg(req, kmsg);
Jens Axboe03b12302019-12-02 18:50:25 -07003572 if (ret == -ERESTARTSYS)
3573 ret = -EINTR;
3574 }
3575
Pavel Begunkov1e950812020-02-06 19:51:16 +03003576 if (kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07003577 kfree(kmsg->iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003578 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe03b12302019-12-02 18:50:25 -07003579 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003580 if (ret < 0)
3581 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003582 io_put_req(req);
Jens Axboe03b12302019-12-02 18:50:25 -07003583 return 0;
3584#else
3585 return -EOPNOTSUPP;
3586#endif
3587}
3588
Pavel Begunkov014db002020-03-03 21:33:12 +03003589static int io_send(struct io_kiocb *req, bool force_nonblock)
Jens Axboefddafac2020-01-04 20:19:44 -07003590{
3591#if defined(CONFIG_NET)
3592 struct socket *sock;
3593 int ret;
3594
3595 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3596 return -EINVAL;
3597
3598 sock = sock_from_file(req->file, &ret);
3599 if (sock) {
3600 struct io_sr_msg *sr = &req->sr_msg;
3601 struct msghdr msg;
3602 struct iovec iov;
3603 unsigned flags;
3604
3605 ret = import_single_range(WRITE, sr->buf, sr->len, &iov,
3606 &msg.msg_iter);
3607 if (ret)
3608 return ret;
3609
3610 msg.msg_name = NULL;
3611 msg.msg_control = NULL;
3612 msg.msg_controllen = 0;
3613 msg.msg_namelen = 0;
3614
3615 flags = req->sr_msg.msg_flags;
3616 if (flags & MSG_DONTWAIT)
3617 req->flags |= REQ_F_NOWAIT;
3618 else if (force_nonblock)
3619 flags |= MSG_DONTWAIT;
3620
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003621 msg.msg_flags = flags;
3622 ret = sock_sendmsg(sock, &msg);
Jens Axboefddafac2020-01-04 20:19:44 -07003623 if (force_nonblock && ret == -EAGAIN)
3624 return -EAGAIN;
3625 if (ret == -ERESTARTSYS)
3626 ret = -EINTR;
3627 }
3628
3629 io_cqring_add_event(req, ret);
3630 if (ret < 0)
3631 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003632 io_put_req(req);
Jens Axboefddafac2020-01-04 20:19:44 -07003633 return 0;
3634#else
3635 return -EOPNOTSUPP;
3636#endif
3637}
3638
Jens Axboe52de1fe2020-02-27 10:15:42 -07003639static int __io_recvmsg_copy_hdr(struct io_kiocb *req, struct io_async_ctx *io)
3640{
3641 struct io_sr_msg *sr = &req->sr_msg;
3642 struct iovec __user *uiov;
3643 size_t iov_len;
3644 int ret;
3645
3646 ret = __copy_msghdr_from_user(&io->msg.msg, sr->msg, &io->msg.uaddr,
3647 &uiov, &iov_len);
3648 if (ret)
3649 return ret;
3650
3651 if (req->flags & REQ_F_BUFFER_SELECT) {
3652 if (iov_len > 1)
3653 return -EINVAL;
3654 if (copy_from_user(io->msg.iov, uiov, sizeof(*uiov)))
3655 return -EFAULT;
3656 sr->len = io->msg.iov[0].iov_len;
3657 iov_iter_init(&io->msg.msg.msg_iter, READ, io->msg.iov, 1,
3658 sr->len);
3659 io->msg.iov = NULL;
3660 } else {
3661 ret = import_iovec(READ, uiov, iov_len, UIO_FASTIOV,
3662 &io->msg.iov, &io->msg.msg.msg_iter);
3663 if (ret > 0)
3664 ret = 0;
3665 }
3666
3667 return ret;
3668}
3669
3670#ifdef CONFIG_COMPAT
3671static int __io_compat_recvmsg_copy_hdr(struct io_kiocb *req,
3672 struct io_async_ctx *io)
3673{
3674 struct compat_msghdr __user *msg_compat;
3675 struct io_sr_msg *sr = &req->sr_msg;
3676 struct compat_iovec __user *uiov;
3677 compat_uptr_t ptr;
3678 compat_size_t len;
3679 int ret;
3680
3681 msg_compat = (struct compat_msghdr __user *) sr->msg;
3682 ret = __get_compat_msghdr(&io->msg.msg, msg_compat, &io->msg.uaddr,
3683 &ptr, &len);
3684 if (ret)
3685 return ret;
3686
3687 uiov = compat_ptr(ptr);
3688 if (req->flags & REQ_F_BUFFER_SELECT) {
3689 compat_ssize_t clen;
3690
3691 if (len > 1)
3692 return -EINVAL;
3693 if (!access_ok(uiov, sizeof(*uiov)))
3694 return -EFAULT;
3695 if (__get_user(clen, &uiov->iov_len))
3696 return -EFAULT;
3697 if (clen < 0)
3698 return -EINVAL;
3699 sr->len = io->msg.iov[0].iov_len;
3700 io->msg.iov = NULL;
3701 } else {
3702 ret = compat_import_iovec(READ, uiov, len, UIO_FASTIOV,
3703 &io->msg.iov,
3704 &io->msg.msg.msg_iter);
3705 if (ret < 0)
3706 return ret;
3707 }
3708
3709 return 0;
3710}
3711#endif
3712
3713static int io_recvmsg_copy_hdr(struct io_kiocb *req, struct io_async_ctx *io)
3714{
3715 io->msg.iov = io->msg.fast_iov;
3716
3717#ifdef CONFIG_COMPAT
3718 if (req->ctx->compat)
3719 return __io_compat_recvmsg_copy_hdr(req, io);
3720#endif
3721
3722 return __io_recvmsg_copy_hdr(req, io);
3723}
3724
Jens Axboebcda7ba2020-02-23 16:42:51 -07003725static struct io_buffer *io_recv_buffer_select(struct io_kiocb *req,
3726 int *cflags, bool needs_lock)
3727{
3728 struct io_sr_msg *sr = &req->sr_msg;
3729 struct io_buffer *kbuf;
3730
3731 if (!(req->flags & REQ_F_BUFFER_SELECT))
3732 return NULL;
3733
3734 kbuf = io_buffer_select(req, &sr->len, sr->bgid, sr->kbuf, needs_lock);
3735 if (IS_ERR(kbuf))
3736 return kbuf;
3737
3738 sr->kbuf = kbuf;
3739 req->flags |= REQ_F_BUFFER_SELECTED;
3740
3741 *cflags = kbuf->bid << IORING_CQE_BUFFER_SHIFT;
3742 *cflags |= IORING_CQE_F_BUFFER;
3743 return kbuf;
3744}
3745
Jens Axboe3529d8c2019-12-19 18:24:38 -07003746static int io_recvmsg_prep(struct io_kiocb *req,
3747 const struct io_uring_sqe *sqe)
Jens Axboe03b12302019-12-02 18:50:25 -07003748{
3749#if defined(CONFIG_NET)
Jens Axboee47293f2019-12-20 08:58:21 -07003750 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003751 struct io_async_ctx *io = req->io;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003752 int ret;
Jens Axboe06b76d42019-12-19 14:44:26 -07003753
Jens Axboe3529d8c2019-12-19 18:24:38 -07003754 sr->msg_flags = READ_ONCE(sqe->msg_flags);
3755 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003756 sr->len = READ_ONCE(sqe->len);
Jens Axboebcda7ba2020-02-23 16:42:51 -07003757 sr->bgid = READ_ONCE(sqe->buf_group);
Jens Axboe3529d8c2019-12-19 18:24:38 -07003758
Jens Axboed8768362020-02-27 14:17:49 -07003759#ifdef CONFIG_COMPAT
3760 if (req->ctx->compat)
3761 sr->msg_flags |= MSG_CMSG_COMPAT;
3762#endif
3763
Jens Axboefddafac2020-01-04 20:19:44 -07003764 if (!io || req->opcode == IORING_OP_RECV)
Jens Axboe06b76d42019-12-19 14:44:26 -07003765 return 0;
Pavel Begunkov5f798be2020-02-08 13:28:02 +03003766 /* iovec is already imported */
3767 if (req->flags & REQ_F_NEED_CLEANUP)
3768 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07003769
Jens Axboe52de1fe2020-02-27 10:15:42 -07003770 ret = io_recvmsg_copy_hdr(req, io);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003771 if (!ret)
3772 req->flags |= REQ_F_NEED_CLEANUP;
3773 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003774#else
Jens Axboee47293f2019-12-20 08:58:21 -07003775 return -EOPNOTSUPP;
Jens Axboe03b12302019-12-02 18:50:25 -07003776#endif
3777}
3778
Pavel Begunkov014db002020-03-03 21:33:12 +03003779static int io_recvmsg(struct io_kiocb *req, bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07003780{
3781#if defined(CONFIG_NET)
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;
3842#else
3843 return -EOPNOTSUPP;
3844#endif
3845}
3846
Pavel Begunkov014db002020-03-03 21:33:12 +03003847static int io_recv(struct io_kiocb *req, bool force_nonblock)
Jens Axboefddafac2020-01-04 20:19:44 -07003848{
3849#if defined(CONFIG_NET)
Jens Axboebcda7ba2020-02-23 16:42:51 -07003850 struct io_buffer *kbuf = NULL;
Jens Axboefddafac2020-01-04 20:19:44 -07003851 struct socket *sock;
Jens Axboebcda7ba2020-02-23 16:42:51 -07003852 int ret, cflags = 0;
Jens Axboefddafac2020-01-04 20:19:44 -07003853
3854 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3855 return -EINVAL;
3856
3857 sock = sock_from_file(req->file, &ret);
3858 if (sock) {
3859 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboebcda7ba2020-02-23 16:42:51 -07003860 void __user *buf = sr->buf;
Jens Axboefddafac2020-01-04 20:19:44 -07003861 struct msghdr msg;
3862 struct iovec iov;
3863 unsigned flags;
3864
Jens Axboebcda7ba2020-02-23 16:42:51 -07003865 kbuf = io_recv_buffer_select(req, &cflags, !force_nonblock);
3866 if (IS_ERR(kbuf))
3867 return PTR_ERR(kbuf);
3868 else if (kbuf)
3869 buf = u64_to_user_ptr(kbuf->addr);
Jens Axboefddafac2020-01-04 20:19:44 -07003870
Jens Axboebcda7ba2020-02-23 16:42:51 -07003871 ret = import_single_range(READ, buf, sr->len, &iov,
3872 &msg.msg_iter);
3873 if (ret) {
3874 kfree(kbuf);
3875 return ret;
3876 }
3877
3878 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboefddafac2020-01-04 20:19:44 -07003879 msg.msg_name = NULL;
3880 msg.msg_control = NULL;
3881 msg.msg_controllen = 0;
3882 msg.msg_namelen = 0;
3883 msg.msg_iocb = NULL;
3884 msg.msg_flags = 0;
3885
3886 flags = req->sr_msg.msg_flags;
3887 if (flags & MSG_DONTWAIT)
3888 req->flags |= REQ_F_NOWAIT;
3889 else if (force_nonblock)
3890 flags |= MSG_DONTWAIT;
3891
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003892 ret = sock_recvmsg(sock, &msg, flags);
Jens Axboefddafac2020-01-04 20:19:44 -07003893 if (force_nonblock && ret == -EAGAIN)
3894 return -EAGAIN;
3895 if (ret == -ERESTARTSYS)
3896 ret = -EINTR;
3897 }
3898
Jens Axboebcda7ba2020-02-23 16:42:51 -07003899 kfree(kbuf);
3900 req->flags &= ~REQ_F_NEED_CLEANUP;
3901 __io_cqring_add_event(req, ret, cflags);
Jens Axboefddafac2020-01-04 20:19:44 -07003902 if (ret < 0)
3903 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003904 io_put_req(req);
Jens Axboefddafac2020-01-04 20:19:44 -07003905 return 0;
3906#else
3907 return -EOPNOTSUPP;
3908#endif
3909}
3910
3911
Jens Axboe3529d8c2019-12-19 18:24:38 -07003912static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003913{
3914#if defined(CONFIG_NET)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003915 struct io_accept *accept = &req->accept;
3916
Jens Axboe17f2fe32019-10-17 14:42:58 -06003917 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3918 return -EINVAL;
Hrvoje Zeba8042d6c2019-11-25 14:40:22 -05003919 if (sqe->ioprio || sqe->len || sqe->buf_index)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003920 return -EINVAL;
3921
Jens Axboed55e5f52019-12-11 16:12:15 -07003922 accept->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
3923 accept->addr_len = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003924 accept->flags = READ_ONCE(sqe->accept_flags);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003925 return 0;
3926#else
3927 return -EOPNOTSUPP;
3928#endif
3929}
Jens Axboe17f2fe32019-10-17 14:42:58 -06003930
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003931#if defined(CONFIG_NET)
Pavel Begunkov014db002020-03-03 21:33:12 +03003932static int __io_accept(struct io_kiocb *req, bool force_nonblock)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003933{
3934 struct io_accept *accept = &req->accept;
3935 unsigned file_flags;
3936 int ret;
3937
3938 file_flags = force_nonblock ? O_NONBLOCK : 0;
3939 ret = __sys_accept4_file(req->file, file_flags, accept->addr,
3940 accept->addr_len, accept->flags);
3941 if (ret == -EAGAIN && force_nonblock)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003942 return -EAGAIN;
Jens Axboe8e3cca12019-11-09 19:52:33 -07003943 if (ret == -ERESTARTSYS)
3944 ret = -EINTR;
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003945 if (ret < 0)
3946 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07003947 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003948 io_put_req(req);
Jens Axboe17f2fe32019-10-17 14:42:58 -06003949 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003950}
3951
3952static void io_accept_finish(struct io_wq_work **workptr)
3953{
3954 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003955
3956 if (io_req_cancelled(req))
3957 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03003958 __io_accept(req, false);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03003959 io_steal_work(req, workptr);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003960}
3961#endif
3962
Pavel Begunkov014db002020-03-03 21:33:12 +03003963static int io_accept(struct io_kiocb *req, bool force_nonblock)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003964{
3965#if defined(CONFIG_NET)
3966 int ret;
3967
Pavel Begunkov014db002020-03-03 21:33:12 +03003968 ret = __io_accept(req, force_nonblock);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003969 if (ret == -EAGAIN && force_nonblock) {
3970 req->work.func = io_accept_finish;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003971 return -EAGAIN;
3972 }
3973 return 0;
Jens Axboe17f2fe32019-10-17 14:42:58 -06003974#else
3975 return -EOPNOTSUPP;
3976#endif
3977}
3978
Jens Axboe3529d8c2019-12-19 18:24:38 -07003979static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef499a022019-12-02 16:28:46 -07003980{
3981#if defined(CONFIG_NET)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003982 struct io_connect *conn = &req->connect;
3983 struct io_async_ctx *io = req->io;
Jens Axboef499a022019-12-02 16:28:46 -07003984
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003985 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3986 return -EINVAL;
3987 if (sqe->ioprio || sqe->len || sqe->buf_index || sqe->rw_flags)
3988 return -EINVAL;
3989
Jens Axboe3529d8c2019-12-19 18:24:38 -07003990 conn->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
3991 conn->addr_len = READ_ONCE(sqe->addr2);
3992
3993 if (!io)
3994 return 0;
3995
3996 return move_addr_to_kernel(conn->addr, conn->addr_len,
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003997 &io->connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07003998#else
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003999 return -EOPNOTSUPP;
Jens Axboef499a022019-12-02 16:28:46 -07004000#endif
4001}
4002
Pavel Begunkov014db002020-03-03 21:33:12 +03004003static int io_connect(struct io_kiocb *req, bool force_nonblock)
Jens Axboef8e85cf2019-11-23 14:24:24 -07004004{
4005#if defined(CONFIG_NET)
Jens Axboef499a022019-12-02 16:28:46 -07004006 struct io_async_ctx __io, *io;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004007 unsigned file_flags;
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004008 int ret;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004009
Jens Axboef499a022019-12-02 16:28:46 -07004010 if (req->io) {
4011 io = req->io;
4012 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07004013 ret = move_addr_to_kernel(req->connect.addr,
4014 req->connect.addr_len,
4015 &__io.connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07004016 if (ret)
4017 goto out;
4018 io = &__io;
4019 }
4020
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004021 file_flags = force_nonblock ? O_NONBLOCK : 0;
4022
4023 ret = __sys_connect_file(req->file, &io->connect.address,
4024 req->connect.addr_len, file_flags);
Jens Axboe87f80d62019-12-03 11:23:54 -07004025 if ((ret == -EAGAIN || ret == -EINPROGRESS) && force_nonblock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004026 if (req->io)
4027 return -EAGAIN;
4028 if (io_alloc_async_ctx(req)) {
Jens Axboef499a022019-12-02 16:28:46 -07004029 ret = -ENOMEM;
4030 goto out;
4031 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004032 memcpy(&req->io->connect, &__io.connect, sizeof(__io.connect));
Jens Axboef8e85cf2019-11-23 14:24:24 -07004033 return -EAGAIN;
Jens Axboef499a022019-12-02 16:28:46 -07004034 }
Jens Axboef8e85cf2019-11-23 14:24:24 -07004035 if (ret == -ERESTARTSYS)
4036 ret = -EINTR;
Jens Axboef499a022019-12-02 16:28:46 -07004037out:
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004038 if (ret < 0)
4039 req_set_fail_links(req);
Jens Axboef8e85cf2019-11-23 14:24:24 -07004040 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03004041 io_put_req(req);
Jens Axboef8e85cf2019-11-23 14:24:24 -07004042 return 0;
4043#else
4044 return -EOPNOTSUPP;
4045#endif
4046}
4047
Jens Axboed7718a92020-02-14 22:23:12 -07004048struct io_poll_table {
4049 struct poll_table_struct pt;
4050 struct io_kiocb *req;
4051 int error;
4052};
4053
4054static void __io_queue_proc(struct io_poll_iocb *poll, struct io_poll_table *pt,
4055 struct wait_queue_head *head)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004056{
Jens Axboed7718a92020-02-14 22:23:12 -07004057 if (unlikely(poll->head)) {
4058 pt->error = -EINVAL;
4059 return;
4060 }
4061
4062 pt->error = 0;
4063 poll->head = head;
4064 add_wait_queue(head, &poll->wait);
4065}
4066
4067static void io_async_queue_proc(struct file *file, struct wait_queue_head *head,
4068 struct poll_table_struct *p)
4069{
4070 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
4071
4072 __io_queue_proc(&pt->req->apoll->poll, pt, head);
4073}
4074
4075static int __io_async_wake(struct io_kiocb *req, struct io_poll_iocb *poll,
4076 __poll_t mask, task_work_func_t func)
4077{
4078 struct task_struct *tsk;
4079
4080 /* for instances that support it check for an event match first: */
4081 if (mask && !(mask & poll->events))
4082 return 0;
4083
4084 trace_io_uring_task_add(req->ctx, req->opcode, req->user_data, mask);
4085
4086 list_del_init(&poll->wait.entry);
4087
4088 tsk = req->task;
4089 req->result = mask;
4090 init_task_work(&req->task_work, func);
4091 /*
4092 * If this fails, then the task is exiting. If that is the case, then
4093 * the exit check will ultimately cancel these work items. Hence we
4094 * don't need to check here and handle it specifically.
4095 */
4096 task_work_add(tsk, &req->task_work, true);
4097 wake_up_process(tsk);
4098 return 1;
4099}
4100
4101static void io_async_task_func(struct callback_head *cb)
4102{
4103 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
4104 struct async_poll *apoll = req->apoll;
4105 struct io_ring_ctx *ctx = req->ctx;
4106
4107 trace_io_uring_task_run(req->ctx, req->opcode, req->user_data);
4108
4109 WARN_ON_ONCE(!list_empty(&req->apoll->poll.wait.entry));
4110
4111 if (hash_hashed(&req->hash_node)) {
4112 spin_lock_irq(&ctx->completion_lock);
4113 hash_del(&req->hash_node);
4114 spin_unlock_irq(&ctx->completion_lock);
4115 }
4116
4117 /* restore ->work in case we need to retry again */
4118 memcpy(&req->work, &apoll->work, sizeof(req->work));
4119
4120 __set_current_state(TASK_RUNNING);
4121 mutex_lock(&ctx->uring_lock);
4122 __io_queue_sqe(req, NULL);
4123 mutex_unlock(&ctx->uring_lock);
4124
4125 kfree(apoll);
4126}
4127
4128static int io_async_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
4129 void *key)
4130{
4131 struct io_kiocb *req = wait->private;
4132 struct io_poll_iocb *poll = &req->apoll->poll;
4133
4134 trace_io_uring_poll_wake(req->ctx, req->opcode, req->user_data,
4135 key_to_poll(key));
4136
4137 return __io_async_wake(req, poll, key_to_poll(key), io_async_task_func);
4138}
4139
4140static void io_poll_req_insert(struct io_kiocb *req)
4141{
4142 struct io_ring_ctx *ctx = req->ctx;
4143 struct hlist_head *list;
4144
4145 list = &ctx->cancel_hash[hash_long(req->user_data, ctx->cancel_hash_bits)];
4146 hlist_add_head(&req->hash_node, list);
4147}
4148
4149static __poll_t __io_arm_poll_handler(struct io_kiocb *req,
4150 struct io_poll_iocb *poll,
4151 struct io_poll_table *ipt, __poll_t mask,
4152 wait_queue_func_t wake_func)
4153 __acquires(&ctx->completion_lock)
4154{
4155 struct io_ring_ctx *ctx = req->ctx;
4156 bool cancel = false;
4157
4158 poll->file = req->file;
4159 poll->head = NULL;
4160 poll->done = poll->canceled = false;
4161 poll->events = mask;
4162
4163 ipt->pt._key = mask;
4164 ipt->req = req;
4165 ipt->error = -EINVAL;
4166
4167 INIT_LIST_HEAD(&poll->wait.entry);
4168 init_waitqueue_func_entry(&poll->wait, wake_func);
4169 poll->wait.private = req;
4170
4171 mask = vfs_poll(req->file, &ipt->pt) & poll->events;
4172
4173 spin_lock_irq(&ctx->completion_lock);
4174 if (likely(poll->head)) {
4175 spin_lock(&poll->head->lock);
4176 if (unlikely(list_empty(&poll->wait.entry))) {
4177 if (ipt->error)
4178 cancel = true;
4179 ipt->error = 0;
4180 mask = 0;
4181 }
4182 if (mask || ipt->error)
4183 list_del_init(&poll->wait.entry);
4184 else if (cancel)
4185 WRITE_ONCE(poll->canceled, true);
4186 else if (!poll->done) /* actually waiting for an event */
4187 io_poll_req_insert(req);
4188 spin_unlock(&poll->head->lock);
4189 }
4190
4191 return mask;
4192}
4193
4194static bool io_arm_poll_handler(struct io_kiocb *req)
4195{
4196 const struct io_op_def *def = &io_op_defs[req->opcode];
4197 struct io_ring_ctx *ctx = req->ctx;
4198 struct async_poll *apoll;
4199 struct io_poll_table ipt;
4200 __poll_t mask, ret;
4201
4202 if (!req->file || !file_can_poll(req->file))
4203 return false;
4204 if (req->flags & (REQ_F_MUST_PUNT | REQ_F_POLLED))
4205 return false;
4206 if (!def->pollin && !def->pollout)
4207 return false;
4208
4209 apoll = kmalloc(sizeof(*apoll), GFP_ATOMIC);
4210 if (unlikely(!apoll))
4211 return false;
4212
4213 req->flags |= REQ_F_POLLED;
4214 memcpy(&apoll->work, &req->work, sizeof(req->work));
4215
4216 /*
4217 * Don't need a reference here, as we're adding it to the task
4218 * task_works list. If the task exits, the list is pruned.
4219 */
4220 req->task = current;
4221 req->apoll = apoll;
4222 INIT_HLIST_NODE(&req->hash_node);
4223
Nathan Chancellor8755d972020-03-02 16:01:19 -07004224 mask = 0;
Jens Axboed7718a92020-02-14 22:23:12 -07004225 if (def->pollin)
Nathan Chancellor8755d972020-03-02 16:01:19 -07004226 mask |= POLLIN | POLLRDNORM;
Jens Axboed7718a92020-02-14 22:23:12 -07004227 if (def->pollout)
4228 mask |= POLLOUT | POLLWRNORM;
4229 mask |= POLLERR | POLLPRI;
4230
4231 ipt.pt._qproc = io_async_queue_proc;
4232
4233 ret = __io_arm_poll_handler(req, &apoll->poll, &ipt, mask,
4234 io_async_wake);
4235 if (ret) {
4236 ipt.error = 0;
4237 apoll->poll.done = true;
4238 spin_unlock_irq(&ctx->completion_lock);
4239 memcpy(&req->work, &apoll->work, sizeof(req->work));
4240 kfree(apoll);
4241 return false;
4242 }
4243 spin_unlock_irq(&ctx->completion_lock);
4244 trace_io_uring_poll_arm(ctx, req->opcode, req->user_data, mask,
4245 apoll->poll.events);
4246 return true;
4247}
4248
4249static bool __io_poll_remove_one(struct io_kiocb *req,
4250 struct io_poll_iocb *poll)
4251{
Jens Axboeb41e9852020-02-17 09:52:41 -07004252 bool do_complete = false;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004253
4254 spin_lock(&poll->head->lock);
4255 WRITE_ONCE(poll->canceled, true);
Jens Axboe392edb42019-12-09 17:52:20 -07004256 if (!list_empty(&poll->wait.entry)) {
4257 list_del_init(&poll->wait.entry);
Jens Axboeb41e9852020-02-17 09:52:41 -07004258 do_complete = true;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004259 }
4260 spin_unlock(&poll->head->lock);
Jens Axboed7718a92020-02-14 22:23:12 -07004261 return do_complete;
4262}
4263
4264static bool io_poll_remove_one(struct io_kiocb *req)
4265{
4266 bool do_complete;
4267
4268 if (req->opcode == IORING_OP_POLL_ADD) {
4269 do_complete = __io_poll_remove_one(req, &req->poll);
4270 } else {
4271 /* non-poll requests have submit ref still */
4272 do_complete = __io_poll_remove_one(req, &req->apoll->poll);
4273 if (do_complete)
4274 io_put_req(req);
4275 }
4276
Jens Axboe78076bb2019-12-04 19:56:40 -07004277 hash_del(&req->hash_node);
Jens Axboed7718a92020-02-14 22:23:12 -07004278
Jens Axboeb41e9852020-02-17 09:52:41 -07004279 if (do_complete) {
4280 io_cqring_fill_event(req, -ECANCELED);
4281 io_commit_cqring(req->ctx);
4282 req->flags |= REQ_F_COMP_LOCKED;
4283 io_put_req(req);
4284 }
4285
4286 return do_complete;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004287}
4288
4289static void io_poll_remove_all(struct io_ring_ctx *ctx)
4290{
Jens Axboe78076bb2019-12-04 19:56:40 -07004291 struct hlist_node *tmp;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004292 struct io_kiocb *req;
Jens Axboe78076bb2019-12-04 19:56:40 -07004293 int i;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004294
4295 spin_lock_irq(&ctx->completion_lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07004296 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
4297 struct hlist_head *list;
4298
4299 list = &ctx->cancel_hash[i];
4300 hlist_for_each_entry_safe(req, tmp, list, hash_node)
4301 io_poll_remove_one(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004302 }
4303 spin_unlock_irq(&ctx->completion_lock);
Jens Axboeb41e9852020-02-17 09:52:41 -07004304
4305 io_cqring_ev_posted(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004306}
4307
Jens Axboe47f46762019-11-09 17:43:02 -07004308static int io_poll_cancel(struct io_ring_ctx *ctx, __u64 sqe_addr)
4309{
Jens Axboe78076bb2019-12-04 19:56:40 -07004310 struct hlist_head *list;
Jens Axboe47f46762019-11-09 17:43:02 -07004311 struct io_kiocb *req;
4312
Jens Axboe78076bb2019-12-04 19:56:40 -07004313 list = &ctx->cancel_hash[hash_long(sqe_addr, ctx->cancel_hash_bits)];
4314 hlist_for_each_entry(req, list, hash_node) {
Jens Axboeb41e9852020-02-17 09:52:41 -07004315 if (sqe_addr != req->user_data)
4316 continue;
4317 if (io_poll_remove_one(req))
Jens Axboeeac406c2019-11-14 12:09:58 -07004318 return 0;
Jens Axboeb41e9852020-02-17 09:52:41 -07004319 return -EALREADY;
Jens Axboe47f46762019-11-09 17:43:02 -07004320 }
4321
4322 return -ENOENT;
4323}
4324
Jens Axboe3529d8c2019-12-19 18:24:38 -07004325static int io_poll_remove_prep(struct io_kiocb *req,
4326 const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004327{
Jens Axboe221c5eb2019-01-17 09:41:58 -07004328 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4329 return -EINVAL;
4330 if (sqe->ioprio || sqe->off || sqe->len || sqe->buf_index ||
4331 sqe->poll_events)
4332 return -EINVAL;
4333
Jens Axboe0969e782019-12-17 18:40:57 -07004334 req->poll.addr = READ_ONCE(sqe->addr);
Jens Axboe0969e782019-12-17 18:40:57 -07004335 return 0;
4336}
4337
4338/*
4339 * Find a running poll command that matches one specified in sqe->addr,
4340 * and remove it if found.
4341 */
4342static int io_poll_remove(struct io_kiocb *req)
4343{
4344 struct io_ring_ctx *ctx = req->ctx;
4345 u64 addr;
4346 int ret;
4347
Jens Axboe0969e782019-12-17 18:40:57 -07004348 addr = req->poll.addr;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004349 spin_lock_irq(&ctx->completion_lock);
Jens Axboe0969e782019-12-17 18:40:57 -07004350 ret = io_poll_cancel(ctx, addr);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004351 spin_unlock_irq(&ctx->completion_lock);
4352
Jens Axboe78e19bb2019-11-06 15:21:34 -07004353 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004354 if (ret < 0)
4355 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06004356 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004357 return 0;
4358}
4359
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004360static void io_poll_complete(struct io_kiocb *req, __poll_t mask, int error)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004361{
Jackie Liua197f662019-11-08 08:09:12 -07004362 struct io_ring_ctx *ctx = req->ctx;
4363
Jens Axboe8c838782019-03-12 15:48:16 -06004364 req->poll.done = true;
Pavel Begunkovb0a20342020-02-28 10:36:35 +03004365 io_cqring_fill_event(req, error ? error : mangle_poll(mask));
Jens Axboe8c838782019-03-12 15:48:16 -06004366 io_commit_cqring(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004367}
4368
Jens Axboeb41e9852020-02-17 09:52:41 -07004369static void io_poll_task_handler(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004370{
Jens Axboe221c5eb2019-01-17 09:41:58 -07004371 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004372
Jens Axboe221c5eb2019-01-17 09:41:58 -07004373 spin_lock_irq(&ctx->completion_lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07004374 hash_del(&req->hash_node);
Jens Axboeb41e9852020-02-17 09:52:41 -07004375 io_poll_complete(req, req->result, 0);
4376 req->flags |= REQ_F_COMP_LOCKED;
4377 io_put_req_find_next(req, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004378 spin_unlock_irq(&ctx->completion_lock);
4379
Jens Axboe8c838782019-03-12 15:48:16 -06004380 io_cqring_ev_posted(ctx);
Jens Axboeb41e9852020-02-17 09:52:41 -07004381}
Jens Axboe89723d02019-11-05 15:32:58 -07004382
Jens Axboeb41e9852020-02-17 09:52:41 -07004383static void io_poll_task_func(struct callback_head *cb)
4384{
4385 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
4386 struct io_kiocb *nxt = NULL;
4387
4388 io_poll_task_handler(req, &nxt);
Jens Axboed7718a92020-02-14 22:23:12 -07004389 if (nxt) {
4390 struct io_ring_ctx *ctx = nxt->ctx;
4391
4392 mutex_lock(&ctx->uring_lock);
Jens Axboeb41e9852020-02-17 09:52:41 -07004393 __io_queue_sqe(nxt, NULL);
Jens Axboed7718a92020-02-14 22:23:12 -07004394 mutex_unlock(&ctx->uring_lock);
4395 }
Jens Axboef0b493e2020-02-01 21:30:11 -07004396}
4397
Jens Axboe221c5eb2019-01-17 09:41:58 -07004398static int io_poll_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
4399 void *key)
4400{
Jens Axboec2f2eb72020-02-10 09:07:05 -07004401 struct io_kiocb *req = wait->private;
4402 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004403
Jens Axboed7718a92020-02-14 22:23:12 -07004404 return __io_async_wake(req, poll, key_to_poll(key), io_poll_task_func);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004405}
4406
Jens Axboe221c5eb2019-01-17 09:41:58 -07004407static void io_poll_queue_proc(struct file *file, struct wait_queue_head *head,
4408 struct poll_table_struct *p)
4409{
4410 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
4411
Jens Axboed7718a92020-02-14 22:23:12 -07004412 __io_queue_proc(&pt->req->poll, pt, head);
Jens Axboeeac406c2019-11-14 12:09:58 -07004413}
4414
Jens Axboe3529d8c2019-12-19 18:24:38 -07004415static int io_poll_add_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004416{
4417 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004418 u16 events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004419
4420 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4421 return -EINVAL;
4422 if (sqe->addr || sqe->ioprio || sqe->off || sqe->len || sqe->buf_index)
4423 return -EINVAL;
Jens Axboe09bb8392019-03-13 12:39:28 -06004424 if (!poll->file)
4425 return -EBADF;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004426
Jens Axboe221c5eb2019-01-17 09:41:58 -07004427 events = READ_ONCE(sqe->poll_events);
4428 poll->events = demangle_poll(events) | EPOLLERR | EPOLLHUP;
Jens Axboeb41e9852020-02-17 09:52:41 -07004429
Jens Axboed7718a92020-02-14 22:23:12 -07004430 /*
4431 * Don't need a reference here, as we're adding it to the task
4432 * task_works list. If the task exits, the list is pruned.
4433 */
Jens Axboeb41e9852020-02-17 09:52:41 -07004434 req->task = current;
Jens Axboe0969e782019-12-17 18:40:57 -07004435 return 0;
4436}
4437
Pavel Begunkov014db002020-03-03 21:33:12 +03004438static int io_poll_add(struct io_kiocb *req)
Jens Axboe0969e782019-12-17 18:40:57 -07004439{
4440 struct io_poll_iocb *poll = &req->poll;
4441 struct io_ring_ctx *ctx = req->ctx;
4442 struct io_poll_table ipt;
Jens Axboe0969e782019-12-17 18:40:57 -07004443 __poll_t mask;
Jens Axboe0969e782019-12-17 18:40:57 -07004444
Jens Axboe78076bb2019-12-04 19:56:40 -07004445 INIT_HLIST_NODE(&req->hash_node);
Jens Axboe36703242019-07-25 10:20:18 -06004446 INIT_LIST_HEAD(&req->list);
Jens Axboed7718a92020-02-14 22:23:12 -07004447 ipt.pt._qproc = io_poll_queue_proc;
Jens Axboe36703242019-07-25 10:20:18 -06004448
Jens Axboed7718a92020-02-14 22:23:12 -07004449 mask = __io_arm_poll_handler(req, &req->poll, &ipt, poll->events,
4450 io_poll_wake);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004451
Jens Axboe8c838782019-03-12 15:48:16 -06004452 if (mask) { /* no async, we'd stolen it */
Jens Axboe8c838782019-03-12 15:48:16 -06004453 ipt.error = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004454 io_poll_complete(req, mask, 0);
Jens Axboe8c838782019-03-12 15:48:16 -06004455 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07004456 spin_unlock_irq(&ctx->completion_lock);
4457
Jens Axboe8c838782019-03-12 15:48:16 -06004458 if (mask) {
4459 io_cqring_ev_posted(ctx);
Pavel Begunkov014db002020-03-03 21:33:12 +03004460 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004461 }
Jens Axboe8c838782019-03-12 15:48:16 -06004462 return ipt.error;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004463}
4464
Jens Axboe5262f562019-09-17 12:26:57 -06004465static enum hrtimer_restart io_timeout_fn(struct hrtimer *timer)
4466{
Jens Axboead8a48a2019-11-15 08:49:11 -07004467 struct io_timeout_data *data = container_of(timer,
4468 struct io_timeout_data, timer);
4469 struct io_kiocb *req = data->req;
4470 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5262f562019-09-17 12:26:57 -06004471 unsigned long flags;
4472
Jens Axboe5262f562019-09-17 12:26:57 -06004473 atomic_inc(&ctx->cq_timeouts);
4474
4475 spin_lock_irqsave(&ctx->completion_lock, flags);
zhangyi (F)ef036812019-10-23 15:10:08 +08004476 /*
Jens Axboe11365042019-10-16 09:08:32 -06004477 * We could be racing with timeout deletion. If the list is empty,
4478 * then timeout lookup already found it and will be handling it.
zhangyi (F)ef036812019-10-23 15:10:08 +08004479 */
Jens Axboe842f9612019-10-29 12:34:10 -06004480 if (!list_empty(&req->list)) {
Jens Axboe11365042019-10-16 09:08:32 -06004481 struct io_kiocb *prev;
Jens Axboe5262f562019-09-17 12:26:57 -06004482
Jens Axboe11365042019-10-16 09:08:32 -06004483 /*
4484 * Adjust the reqs sequence before the current one because it
Brian Gianforcarod195a662019-12-13 03:09:50 -08004485 * will consume a slot in the cq_ring and the cq_tail
Jens Axboe11365042019-10-16 09:08:32 -06004486 * pointer will be increased, otherwise other timeout reqs may
4487 * return in advance without waiting for enough wait_nr.
4488 */
4489 prev = req;
4490 list_for_each_entry_continue_reverse(prev, &ctx->timeout_list, list)
4491 prev->sequence++;
Jens Axboe11365042019-10-16 09:08:32 -06004492 list_del_init(&req->list);
Jens Axboe11365042019-10-16 09:08:32 -06004493 }
Jens Axboe842f9612019-10-29 12:34:10 -06004494
Jens Axboe78e19bb2019-11-06 15:21:34 -07004495 io_cqring_fill_event(req, -ETIME);
Jens Axboe5262f562019-09-17 12:26:57 -06004496 io_commit_cqring(ctx);
4497 spin_unlock_irqrestore(&ctx->completion_lock, flags);
4498
4499 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004500 req_set_fail_links(req);
Jens Axboe5262f562019-09-17 12:26:57 -06004501 io_put_req(req);
4502 return HRTIMER_NORESTART;
4503}
4504
Jens Axboe47f46762019-11-09 17:43:02 -07004505static int io_timeout_cancel(struct io_ring_ctx *ctx, __u64 user_data)
4506{
4507 struct io_kiocb *req;
4508 int ret = -ENOENT;
4509
4510 list_for_each_entry(req, &ctx->timeout_list, list) {
4511 if (user_data == req->user_data) {
4512 list_del_init(&req->list);
4513 ret = 0;
4514 break;
4515 }
4516 }
4517
4518 if (ret == -ENOENT)
4519 return ret;
4520
Jens Axboe2d283902019-12-04 11:08:05 -07004521 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe47f46762019-11-09 17:43:02 -07004522 if (ret == -1)
4523 return -EALREADY;
4524
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004525 req_set_fail_links(req);
Jens Axboe47f46762019-11-09 17:43:02 -07004526 io_cqring_fill_event(req, -ECANCELED);
4527 io_put_req(req);
4528 return 0;
4529}
4530
Jens Axboe3529d8c2019-12-19 18:24:38 -07004531static int io_timeout_remove_prep(struct io_kiocb *req,
4532 const struct io_uring_sqe *sqe)
Jens Axboeb29472e2019-12-17 18:50:29 -07004533{
Jens Axboeb29472e2019-12-17 18:50:29 -07004534 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4535 return -EINVAL;
4536 if (sqe->flags || sqe->ioprio || sqe->buf_index || sqe->len)
4537 return -EINVAL;
4538
4539 req->timeout.addr = READ_ONCE(sqe->addr);
4540 req->timeout.flags = READ_ONCE(sqe->timeout_flags);
4541 if (req->timeout.flags)
4542 return -EINVAL;
4543
Jens Axboeb29472e2019-12-17 18:50:29 -07004544 return 0;
4545}
4546
Jens Axboe11365042019-10-16 09:08:32 -06004547/*
4548 * Remove or update an existing timeout command
4549 */
Jens Axboefc4df992019-12-10 14:38:45 -07004550static int io_timeout_remove(struct io_kiocb *req)
Jens Axboe11365042019-10-16 09:08:32 -06004551{
4552 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe47f46762019-11-09 17:43:02 -07004553 int ret;
Jens Axboe11365042019-10-16 09:08:32 -06004554
Jens Axboe11365042019-10-16 09:08:32 -06004555 spin_lock_irq(&ctx->completion_lock);
Jens Axboeb29472e2019-12-17 18:50:29 -07004556 ret = io_timeout_cancel(ctx, req->timeout.addr);
Jens Axboe11365042019-10-16 09:08:32 -06004557
Jens Axboe47f46762019-11-09 17:43:02 -07004558 io_cqring_fill_event(req, ret);
Jens Axboe11365042019-10-16 09:08:32 -06004559 io_commit_cqring(ctx);
4560 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06004561 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004562 if (ret < 0)
4563 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08004564 io_put_req(req);
Jens Axboe11365042019-10-16 09:08:32 -06004565 return 0;
Jens Axboe5262f562019-09-17 12:26:57 -06004566}
4567
Jens Axboe3529d8c2019-12-19 18:24:38 -07004568static int io_timeout_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboe2d283902019-12-04 11:08:05 -07004569 bool is_timeout_link)
Jens Axboe5262f562019-09-17 12:26:57 -06004570{
Jens Axboead8a48a2019-11-15 08:49:11 -07004571 struct io_timeout_data *data;
Jens Axboea41525a2019-10-15 16:48:15 -06004572 unsigned flags;
Jens Axboe5262f562019-09-17 12:26:57 -06004573
Jens Axboead8a48a2019-11-15 08:49:11 -07004574 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe5262f562019-09-17 12:26:57 -06004575 return -EINVAL;
Jens Axboead8a48a2019-11-15 08:49:11 -07004576 if (sqe->ioprio || sqe->buf_index || sqe->len != 1)
Jens Axboea41525a2019-10-15 16:48:15 -06004577 return -EINVAL;
Jens Axboe2d283902019-12-04 11:08:05 -07004578 if (sqe->off && is_timeout_link)
4579 return -EINVAL;
Jens Axboea41525a2019-10-15 16:48:15 -06004580 flags = READ_ONCE(sqe->timeout_flags);
4581 if (flags & ~IORING_TIMEOUT_ABS)
Jens Axboe5262f562019-09-17 12:26:57 -06004582 return -EINVAL;
Arnd Bergmannbdf20072019-10-01 09:53:29 -06004583
Jens Axboe26a61672019-12-20 09:02:01 -07004584 req->timeout.count = READ_ONCE(sqe->off);
4585
Jens Axboe3529d8c2019-12-19 18:24:38 -07004586 if (!req->io && io_alloc_async_ctx(req))
Jens Axboe26a61672019-12-20 09:02:01 -07004587 return -ENOMEM;
4588
4589 data = &req->io->timeout;
Jens Axboead8a48a2019-11-15 08:49:11 -07004590 data->req = req;
Jens Axboead8a48a2019-11-15 08:49:11 -07004591 req->flags |= REQ_F_TIMEOUT;
4592
4593 if (get_timespec64(&data->ts, u64_to_user_ptr(sqe->addr)))
Jens Axboe5262f562019-09-17 12:26:57 -06004594 return -EFAULT;
4595
Jens Axboe11365042019-10-16 09:08:32 -06004596 if (flags & IORING_TIMEOUT_ABS)
Jens Axboead8a48a2019-11-15 08:49:11 -07004597 data->mode = HRTIMER_MODE_ABS;
Jens Axboe11365042019-10-16 09:08:32 -06004598 else
Jens Axboead8a48a2019-11-15 08:49:11 -07004599 data->mode = HRTIMER_MODE_REL;
Jens Axboe11365042019-10-16 09:08:32 -06004600
Jens Axboead8a48a2019-11-15 08:49:11 -07004601 hrtimer_init(&data->timer, CLOCK_MONOTONIC, data->mode);
4602 return 0;
4603}
4604
Jens Axboefc4df992019-12-10 14:38:45 -07004605static int io_timeout(struct io_kiocb *req)
Jens Axboead8a48a2019-11-15 08:49:11 -07004606{
4607 unsigned count;
4608 struct io_ring_ctx *ctx = req->ctx;
4609 struct io_timeout_data *data;
4610 struct list_head *entry;
4611 unsigned span = 0;
Jens Axboead8a48a2019-11-15 08:49:11 -07004612
Jens Axboe2d283902019-12-04 11:08:05 -07004613 data = &req->io->timeout;
Jens Axboe93bd25b2019-11-11 23:34:31 -07004614
Jens Axboe5262f562019-09-17 12:26:57 -06004615 /*
4616 * sqe->off holds how many events that need to occur for this
Jens Axboe93bd25b2019-11-11 23:34:31 -07004617 * timeout event to be satisfied. If it isn't set, then this is
4618 * a pure timeout request, sequence isn't used.
Jens Axboe5262f562019-09-17 12:26:57 -06004619 */
Jens Axboe26a61672019-12-20 09:02:01 -07004620 count = req->timeout.count;
Jens Axboe93bd25b2019-11-11 23:34:31 -07004621 if (!count) {
4622 req->flags |= REQ_F_TIMEOUT_NOSEQ;
4623 spin_lock_irq(&ctx->completion_lock);
4624 entry = ctx->timeout_list.prev;
4625 goto add;
4626 }
Jens Axboe5262f562019-09-17 12:26:57 -06004627
4628 req->sequence = ctx->cached_sq_head + count - 1;
Jens Axboe2d283902019-12-04 11:08:05 -07004629 data->seq_offset = count;
Jens Axboe5262f562019-09-17 12:26:57 -06004630
4631 /*
4632 * Insertion sort, ensuring the first entry in the list is always
4633 * the one we need first.
4634 */
Jens Axboe5262f562019-09-17 12:26:57 -06004635 spin_lock_irq(&ctx->completion_lock);
4636 list_for_each_prev(entry, &ctx->timeout_list) {
4637 struct io_kiocb *nxt = list_entry(entry, struct io_kiocb, list);
yangerkun5da0fb12019-10-15 21:59:29 +08004638 unsigned nxt_sq_head;
4639 long long tmp, tmp_nxt;
Jens Axboe2d283902019-12-04 11:08:05 -07004640 u32 nxt_offset = nxt->io->timeout.seq_offset;
Jens Axboe5262f562019-09-17 12:26:57 -06004641
Jens Axboe93bd25b2019-11-11 23:34:31 -07004642 if (nxt->flags & REQ_F_TIMEOUT_NOSEQ)
4643 continue;
4644
yangerkun5da0fb12019-10-15 21:59:29 +08004645 /*
4646 * Since cached_sq_head + count - 1 can overflow, use type long
4647 * long to store it.
4648 */
4649 tmp = (long long)ctx->cached_sq_head + count - 1;
Pavel Begunkovcc42e0a2019-11-25 23:14:38 +03004650 nxt_sq_head = nxt->sequence - nxt_offset + 1;
4651 tmp_nxt = (long long)nxt_sq_head + nxt_offset - 1;
yangerkun5da0fb12019-10-15 21:59:29 +08004652
4653 /*
4654 * cached_sq_head may overflow, and it will never overflow twice
4655 * once there is some timeout req still be valid.
4656 */
4657 if (ctx->cached_sq_head < nxt_sq_head)
yangerkun8b07a652019-10-17 12:12:35 +08004658 tmp += UINT_MAX;
yangerkun5da0fb12019-10-15 21:59:29 +08004659
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004660 if (tmp > tmp_nxt)
Jens Axboe5262f562019-09-17 12:26:57 -06004661 break;
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004662
4663 /*
4664 * Sequence of reqs after the insert one and itself should
4665 * be adjusted because each timeout req consumes a slot.
4666 */
4667 span++;
4668 nxt->sequence++;
Jens Axboe5262f562019-09-17 12:26:57 -06004669 }
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004670 req->sequence -= span;
Jens Axboe93bd25b2019-11-11 23:34:31 -07004671add:
Jens Axboe5262f562019-09-17 12:26:57 -06004672 list_add(&req->list, entry);
Jens Axboead8a48a2019-11-15 08:49:11 -07004673 data->timer.function = io_timeout_fn;
4674 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts), data->mode);
Jens Axboe842f9612019-10-29 12:34:10 -06004675 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06004676 return 0;
4677}
4678
Jens Axboe62755e32019-10-28 21:49:21 -06004679static bool io_cancel_cb(struct io_wq_work *work, void *data)
Jens Axboede0617e2019-04-06 21:51:27 -06004680{
Jens Axboe62755e32019-10-28 21:49:21 -06004681 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboede0617e2019-04-06 21:51:27 -06004682
Jens Axboe62755e32019-10-28 21:49:21 -06004683 return req->user_data == (unsigned long) data;
4684}
4685
Jens Axboee977d6d2019-11-05 12:39:45 -07004686static int io_async_cancel_one(struct io_ring_ctx *ctx, void *sqe_addr)
Jens Axboe62755e32019-10-28 21:49:21 -06004687{
Jens Axboe62755e32019-10-28 21:49:21 -06004688 enum io_wq_cancel cancel_ret;
Jens Axboe62755e32019-10-28 21:49:21 -06004689 int ret = 0;
4690
Jens Axboe62755e32019-10-28 21:49:21 -06004691 cancel_ret = io_wq_cancel_cb(ctx->io_wq, io_cancel_cb, sqe_addr);
4692 switch (cancel_ret) {
4693 case IO_WQ_CANCEL_OK:
4694 ret = 0;
4695 break;
4696 case IO_WQ_CANCEL_RUNNING:
4697 ret = -EALREADY;
4698 break;
4699 case IO_WQ_CANCEL_NOTFOUND:
4700 ret = -ENOENT;
4701 break;
4702 }
4703
Jens Axboee977d6d2019-11-05 12:39:45 -07004704 return ret;
4705}
4706
Jens Axboe47f46762019-11-09 17:43:02 -07004707static void io_async_find_and_cancel(struct io_ring_ctx *ctx,
4708 struct io_kiocb *req, __u64 sqe_addr,
Pavel Begunkov014db002020-03-03 21:33:12 +03004709 int success_ret)
Jens Axboe47f46762019-11-09 17:43:02 -07004710{
4711 unsigned long flags;
4712 int ret;
4713
4714 ret = io_async_cancel_one(ctx, (void *) (unsigned long) sqe_addr);
4715 if (ret != -ENOENT) {
4716 spin_lock_irqsave(&ctx->completion_lock, flags);
4717 goto done;
4718 }
4719
4720 spin_lock_irqsave(&ctx->completion_lock, flags);
4721 ret = io_timeout_cancel(ctx, sqe_addr);
4722 if (ret != -ENOENT)
4723 goto done;
4724 ret = io_poll_cancel(ctx, sqe_addr);
4725done:
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004726 if (!ret)
4727 ret = success_ret;
Jens Axboe47f46762019-11-09 17:43:02 -07004728 io_cqring_fill_event(req, ret);
4729 io_commit_cqring(ctx);
4730 spin_unlock_irqrestore(&ctx->completion_lock, flags);
4731 io_cqring_ev_posted(ctx);
4732
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004733 if (ret < 0)
4734 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03004735 io_put_req(req);
Jens Axboe47f46762019-11-09 17:43:02 -07004736}
4737
Jens Axboe3529d8c2019-12-19 18:24:38 -07004738static int io_async_cancel_prep(struct io_kiocb *req,
4739 const struct io_uring_sqe *sqe)
Jens Axboee977d6d2019-11-05 12:39:45 -07004740{
Jens Axboefbf23842019-12-17 18:45:56 -07004741 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboee977d6d2019-11-05 12:39:45 -07004742 return -EINVAL;
4743 if (sqe->flags || sqe->ioprio || sqe->off || sqe->len ||
4744 sqe->cancel_flags)
4745 return -EINVAL;
4746
Jens Axboefbf23842019-12-17 18:45:56 -07004747 req->cancel.addr = READ_ONCE(sqe->addr);
4748 return 0;
4749}
4750
Pavel Begunkov014db002020-03-03 21:33:12 +03004751static int io_async_cancel(struct io_kiocb *req)
Jens Axboefbf23842019-12-17 18:45:56 -07004752{
4753 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefbf23842019-12-17 18:45:56 -07004754
Pavel Begunkov014db002020-03-03 21:33:12 +03004755 io_async_find_and_cancel(ctx, req, req->cancel.addr, 0);
Jens Axboe62755e32019-10-28 21:49:21 -06004756 return 0;
4757}
4758
Jens Axboe05f3fb32019-12-09 11:22:50 -07004759static int io_files_update_prep(struct io_kiocb *req,
4760 const struct io_uring_sqe *sqe)
4761{
4762 if (sqe->flags || sqe->ioprio || sqe->rw_flags)
4763 return -EINVAL;
4764
4765 req->files_update.offset = READ_ONCE(sqe->off);
4766 req->files_update.nr_args = READ_ONCE(sqe->len);
4767 if (!req->files_update.nr_args)
4768 return -EINVAL;
4769 req->files_update.arg = READ_ONCE(sqe->addr);
4770 return 0;
4771}
4772
4773static int io_files_update(struct io_kiocb *req, bool force_nonblock)
4774{
4775 struct io_ring_ctx *ctx = req->ctx;
4776 struct io_uring_files_update up;
4777 int ret;
4778
Jens Axboef86cd202020-01-29 13:46:44 -07004779 if (force_nonblock)
Jens Axboe05f3fb32019-12-09 11:22:50 -07004780 return -EAGAIN;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004781
4782 up.offset = req->files_update.offset;
4783 up.fds = req->files_update.arg;
4784
4785 mutex_lock(&ctx->uring_lock);
4786 ret = __io_sqe_files_update(ctx, &up, req->files_update.nr_args);
4787 mutex_unlock(&ctx->uring_lock);
4788
4789 if (ret < 0)
4790 req_set_fail_links(req);
4791 io_cqring_add_event(req, ret);
4792 io_put_req(req);
4793 return 0;
4794}
4795
Jens Axboe3529d8c2019-12-19 18:24:38 -07004796static int io_req_defer_prep(struct io_kiocb *req,
4797 const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07004798{
Jens Axboee7815732019-12-17 19:45:06 -07004799 ssize_t ret = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07004800
Jens Axboef86cd202020-01-29 13:46:44 -07004801 if (io_op_defs[req->opcode].file_table) {
4802 ret = io_grab_files(req);
4803 if (unlikely(ret))
4804 return ret;
4805 }
4806
Jens Axboecccf0ee2020-01-27 16:34:48 -07004807 io_req_work_grab_env(req, &io_op_defs[req->opcode]);
4808
Jens Axboed625c6e2019-12-17 19:53:05 -07004809 switch (req->opcode) {
Jens Axboee7815732019-12-17 19:45:06 -07004810 case IORING_OP_NOP:
4811 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004812 case IORING_OP_READV:
4813 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004814 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004815 ret = io_read_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07004816 break;
4817 case IORING_OP_WRITEV:
4818 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004819 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004820 ret = io_write_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07004821 break;
Jens Axboe0969e782019-12-17 18:40:57 -07004822 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004823 ret = io_poll_add_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07004824 break;
4825 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004826 ret = io_poll_remove_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07004827 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004828 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004829 ret = io_prep_fsync(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004830 break;
4831 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004832 ret = io_prep_sfr(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004833 break;
Jens Axboe03b12302019-12-02 18:50:25 -07004834 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004835 case IORING_OP_SEND:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004836 ret = io_sendmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07004837 break;
4838 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004839 case IORING_OP_RECV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004840 ret = io_recvmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07004841 break;
Jens Axboef499a022019-12-02 16:28:46 -07004842 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004843 ret = io_connect_prep(req, sqe);
Jens Axboef499a022019-12-02 16:28:46 -07004844 break;
Jens Axboe2d283902019-12-04 11:08:05 -07004845 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004846 ret = io_timeout_prep(req, sqe, false);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004847 break;
Jens Axboeb29472e2019-12-17 18:50:29 -07004848 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004849 ret = io_timeout_remove_prep(req, sqe);
Jens Axboeb29472e2019-12-17 18:50:29 -07004850 break;
Jens Axboefbf23842019-12-17 18:45:56 -07004851 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004852 ret = io_async_cancel_prep(req, sqe);
Jens Axboefbf23842019-12-17 18:45:56 -07004853 break;
Jens Axboe2d283902019-12-04 11:08:05 -07004854 case IORING_OP_LINK_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004855 ret = io_timeout_prep(req, sqe, true);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004856 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004857 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004858 ret = io_accept_prep(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004859 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07004860 case IORING_OP_FALLOCATE:
4861 ret = io_fallocate_prep(req, sqe);
4862 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004863 case IORING_OP_OPENAT:
4864 ret = io_openat_prep(req, sqe);
4865 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07004866 case IORING_OP_CLOSE:
4867 ret = io_close_prep(req, sqe);
4868 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004869 case IORING_OP_FILES_UPDATE:
4870 ret = io_files_update_prep(req, sqe);
4871 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004872 case IORING_OP_STATX:
4873 ret = io_statx_prep(req, sqe);
4874 break;
Jens Axboe4840e412019-12-25 22:03:45 -07004875 case IORING_OP_FADVISE:
4876 ret = io_fadvise_prep(req, sqe);
4877 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07004878 case IORING_OP_MADVISE:
4879 ret = io_madvise_prep(req, sqe);
4880 break;
Jens Axboecebdb982020-01-08 17:59:24 -07004881 case IORING_OP_OPENAT2:
4882 ret = io_openat2_prep(req, sqe);
4883 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07004884 case IORING_OP_EPOLL_CTL:
4885 ret = io_epoll_ctl_prep(req, sqe);
4886 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03004887 case IORING_OP_SPLICE:
4888 ret = io_splice_prep(req, sqe);
4889 break;
Jens Axboeddf0322d2020-02-23 16:41:33 -07004890 case IORING_OP_PROVIDE_BUFFERS:
4891 ret = io_provide_buffers_prep(req, sqe);
4892 break;
Jens Axboe067524e2020-03-02 16:32:28 -07004893 case IORING_OP_REMOVE_BUFFERS:
4894 ret = io_remove_buffers_prep(req, sqe);
4895 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004896 default:
Jens Axboee7815732019-12-17 19:45:06 -07004897 printk_once(KERN_WARNING "io_uring: unhandled opcode %d\n",
4898 req->opcode);
4899 ret = -EINVAL;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004900 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004901 }
4902
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004903 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07004904}
4905
Jens Axboe3529d8c2019-12-19 18:24:38 -07004906static int io_req_defer(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboede0617e2019-04-06 21:51:27 -06004907{
Jackie Liua197f662019-11-08 08:09:12 -07004908 struct io_ring_ctx *ctx = req->ctx;
Jens Axboef67676d2019-12-02 11:03:47 -07004909 int ret;
Jens Axboede0617e2019-04-06 21:51:27 -06004910
Bob Liu9d858b22019-11-13 18:06:25 +08004911 /* Still need defer if there is pending req in defer list. */
4912 if (!req_need_defer(req) && list_empty(&ctx->defer_list))
Jens Axboede0617e2019-04-06 21:51:27 -06004913 return 0;
4914
Jens Axboe3529d8c2019-12-19 18:24:38 -07004915 if (!req->io && io_alloc_async_ctx(req))
Jens Axboede0617e2019-04-06 21:51:27 -06004916 return -EAGAIN;
4917
Jens Axboe3529d8c2019-12-19 18:24:38 -07004918 ret = io_req_defer_prep(req, sqe);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004919 if (ret < 0)
Jens Axboe2d283902019-12-04 11:08:05 -07004920 return ret;
Jens Axboe2d283902019-12-04 11:08:05 -07004921
Jens Axboede0617e2019-04-06 21:51:27 -06004922 spin_lock_irq(&ctx->completion_lock);
Bob Liu9d858b22019-11-13 18:06:25 +08004923 if (!req_need_defer(req) && list_empty(&ctx->defer_list)) {
Jens Axboede0617e2019-04-06 21:51:27 -06004924 spin_unlock_irq(&ctx->completion_lock);
Jens Axboede0617e2019-04-06 21:51:27 -06004925 return 0;
4926 }
4927
Jens Axboe915967f2019-11-21 09:01:20 -07004928 trace_io_uring_defer(ctx, req, req->user_data);
Jens Axboede0617e2019-04-06 21:51:27 -06004929 list_add_tail(&req->list, &ctx->defer_list);
4930 spin_unlock_irq(&ctx->completion_lock);
4931 return -EIOCBQUEUED;
4932}
4933
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004934static void io_cleanup_req(struct io_kiocb *req)
4935{
4936 struct io_async_ctx *io = req->io;
4937
4938 switch (req->opcode) {
4939 case IORING_OP_READV:
4940 case IORING_OP_READ_FIXED:
4941 case IORING_OP_READ:
Jens Axboebcda7ba2020-02-23 16:42:51 -07004942 if (req->flags & REQ_F_BUFFER_SELECTED)
4943 kfree((void *)(unsigned long)req->rw.addr);
4944 /* fallthrough */
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004945 case IORING_OP_WRITEV:
4946 case IORING_OP_WRITE_FIXED:
4947 case IORING_OP_WRITE:
4948 if (io->rw.iov != io->rw.fast_iov)
4949 kfree(io->rw.iov);
4950 break;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004951 case IORING_OP_RECVMSG:
Jens Axboe52de1fe2020-02-27 10:15:42 -07004952 if (req->flags & REQ_F_BUFFER_SELECTED)
4953 kfree(req->sr_msg.kbuf);
4954 /* fallthrough */
4955 case IORING_OP_SENDMSG:
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004956 if (io->msg.iov != io->msg.fast_iov)
4957 kfree(io->msg.iov);
4958 break;
Jens Axboebcda7ba2020-02-23 16:42:51 -07004959 case IORING_OP_RECV:
4960 if (req->flags & REQ_F_BUFFER_SELECTED)
4961 kfree(req->sr_msg.kbuf);
4962 break;
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03004963 case IORING_OP_OPENAT:
4964 case IORING_OP_OPENAT2:
4965 case IORING_OP_STATX:
4966 putname(req->open.filename);
4967 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03004968 case IORING_OP_SPLICE:
4969 io_put_file(req, req->splice.file_in,
4970 (req->splice.flags & SPLICE_F_FD_IN_FIXED));
4971 break;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004972 }
4973
4974 req->flags &= ~REQ_F_NEED_CLEANUP;
4975}
4976
Jens Axboe3529d8c2019-12-19 18:24:38 -07004977static int io_issue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Pavel Begunkov014db002020-03-03 21:33:12 +03004978 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004979{
Jackie Liua197f662019-11-08 08:09:12 -07004980 struct io_ring_ctx *ctx = req->ctx;
Jens Axboed625c6e2019-12-17 19:53:05 -07004981 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004982
Jens Axboed625c6e2019-12-17 19:53:05 -07004983 switch (req->opcode) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07004984 case IORING_OP_NOP:
Jens Axboe78e19bb2019-11-06 15:21:34 -07004985 ret = io_nop(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004986 break;
4987 case IORING_OP_READV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004988 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004989 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004990 if (sqe) {
4991 ret = io_read_prep(req, sqe, force_nonblock);
4992 if (ret < 0)
4993 break;
4994 }
Pavel Begunkov014db002020-03-03 21:33:12 +03004995 ret = io_read(req, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004996 break;
4997 case IORING_OP_WRITEV:
Jens Axboeedafcce2019-01-09 09:16:05 -07004998 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004999 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005000 if (sqe) {
5001 ret = io_write_prep(req, sqe, force_nonblock);
5002 if (ret < 0)
5003 break;
5004 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005005 ret = io_write(req, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005006 break;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07005007 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005008 if (sqe) {
5009 ret = io_prep_fsync(req, sqe);
5010 if (ret < 0)
5011 break;
5012 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005013 ret = io_fsync(req, force_nonblock);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07005014 break;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005015 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005016 if (sqe) {
5017 ret = io_poll_add_prep(req, sqe);
5018 if (ret)
5019 break;
5020 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005021 ret = io_poll_add(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005022 break;
5023 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005024 if (sqe) {
5025 ret = io_poll_remove_prep(req, sqe);
5026 if (ret < 0)
5027 break;
5028 }
Jens Axboefc4df992019-12-10 14:38:45 -07005029 ret = io_poll_remove(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005030 break;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06005031 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005032 if (sqe) {
5033 ret = io_prep_sfr(req, sqe);
5034 if (ret < 0)
5035 break;
5036 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005037 ret = io_sync_file_range(req, force_nonblock);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06005038 break;
Jens Axboe0fa03c62019-04-19 13:34:07 -06005039 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005040 case IORING_OP_SEND:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005041 if (sqe) {
5042 ret = io_sendmsg_prep(req, sqe);
5043 if (ret < 0)
5044 break;
5045 }
Jens Axboefddafac2020-01-04 20:19:44 -07005046 if (req->opcode == IORING_OP_SENDMSG)
Pavel Begunkov014db002020-03-03 21:33:12 +03005047 ret = io_sendmsg(req, force_nonblock);
Jens Axboefddafac2020-01-04 20:19:44 -07005048 else
Pavel Begunkov014db002020-03-03 21:33:12 +03005049 ret = io_send(req, force_nonblock);
Jens Axboe0fa03c62019-04-19 13:34:07 -06005050 break;
Jens Axboeaa1fa282019-04-19 13:38:09 -06005051 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005052 case IORING_OP_RECV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005053 if (sqe) {
5054 ret = io_recvmsg_prep(req, sqe);
5055 if (ret)
5056 break;
5057 }
Jens Axboefddafac2020-01-04 20:19:44 -07005058 if (req->opcode == IORING_OP_RECVMSG)
Pavel Begunkov014db002020-03-03 21:33:12 +03005059 ret = io_recvmsg(req, force_nonblock);
Jens Axboefddafac2020-01-04 20:19:44 -07005060 else
Pavel Begunkov014db002020-03-03 21:33:12 +03005061 ret = io_recv(req, force_nonblock);
Jens Axboeaa1fa282019-04-19 13:38:09 -06005062 break;
Jens Axboe5262f562019-09-17 12:26:57 -06005063 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005064 if (sqe) {
5065 ret = io_timeout_prep(req, sqe, false);
5066 if (ret)
5067 break;
5068 }
Jens Axboefc4df992019-12-10 14:38:45 -07005069 ret = io_timeout(req);
Jens Axboe5262f562019-09-17 12:26:57 -06005070 break;
Jens Axboe11365042019-10-16 09:08:32 -06005071 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005072 if (sqe) {
5073 ret = io_timeout_remove_prep(req, sqe);
5074 if (ret)
5075 break;
5076 }
Jens Axboefc4df992019-12-10 14:38:45 -07005077 ret = io_timeout_remove(req);
Jens Axboe11365042019-10-16 09:08:32 -06005078 break;
Jens Axboe17f2fe32019-10-17 14:42:58 -06005079 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005080 if (sqe) {
5081 ret = io_accept_prep(req, sqe);
5082 if (ret)
5083 break;
5084 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005085 ret = io_accept(req, force_nonblock);
Jens Axboe17f2fe32019-10-17 14:42:58 -06005086 break;
Jens Axboef8e85cf2019-11-23 14:24:24 -07005087 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005088 if (sqe) {
5089 ret = io_connect_prep(req, sqe);
5090 if (ret)
5091 break;
5092 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005093 ret = io_connect(req, force_nonblock);
Jens Axboef8e85cf2019-11-23 14:24:24 -07005094 break;
Jens Axboe62755e32019-10-28 21:49:21 -06005095 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005096 if (sqe) {
5097 ret = io_async_cancel_prep(req, sqe);
5098 if (ret)
5099 break;
5100 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005101 ret = io_async_cancel(req);
Jens Axboe62755e32019-10-28 21:49:21 -06005102 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07005103 case IORING_OP_FALLOCATE:
5104 if (sqe) {
5105 ret = io_fallocate_prep(req, sqe);
5106 if (ret)
5107 break;
5108 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005109 ret = io_fallocate(req, force_nonblock);
Jens Axboed63d1b52019-12-10 10:38:56 -07005110 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07005111 case IORING_OP_OPENAT:
5112 if (sqe) {
5113 ret = io_openat_prep(req, sqe);
5114 if (ret)
5115 break;
5116 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005117 ret = io_openat(req, force_nonblock);
Jens Axboe15b71ab2019-12-11 11:20:36 -07005118 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07005119 case IORING_OP_CLOSE:
5120 if (sqe) {
5121 ret = io_close_prep(req, sqe);
5122 if (ret)
5123 break;
5124 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005125 ret = io_close(req, force_nonblock);
Jens Axboeb5dba592019-12-11 14:02:38 -07005126 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005127 case IORING_OP_FILES_UPDATE:
5128 if (sqe) {
5129 ret = io_files_update_prep(req, sqe);
5130 if (ret)
5131 break;
5132 }
5133 ret = io_files_update(req, force_nonblock);
5134 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07005135 case IORING_OP_STATX:
5136 if (sqe) {
5137 ret = io_statx_prep(req, sqe);
5138 if (ret)
5139 break;
5140 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005141 ret = io_statx(req, force_nonblock);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07005142 break;
Jens Axboe4840e412019-12-25 22:03:45 -07005143 case IORING_OP_FADVISE:
5144 if (sqe) {
5145 ret = io_fadvise_prep(req, sqe);
5146 if (ret)
5147 break;
5148 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005149 ret = io_fadvise(req, force_nonblock);
Jens Axboe4840e412019-12-25 22:03:45 -07005150 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07005151 case IORING_OP_MADVISE:
5152 if (sqe) {
5153 ret = io_madvise_prep(req, sqe);
5154 if (ret)
5155 break;
5156 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005157 ret = io_madvise(req, force_nonblock);
Jens Axboec1ca7572019-12-25 22:18:28 -07005158 break;
Jens Axboecebdb982020-01-08 17:59:24 -07005159 case IORING_OP_OPENAT2:
5160 if (sqe) {
5161 ret = io_openat2_prep(req, sqe);
5162 if (ret)
5163 break;
5164 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005165 ret = io_openat2(req, force_nonblock);
Jens Axboecebdb982020-01-08 17:59:24 -07005166 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07005167 case IORING_OP_EPOLL_CTL:
5168 if (sqe) {
5169 ret = io_epoll_ctl_prep(req, sqe);
5170 if (ret)
5171 break;
5172 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005173 ret = io_epoll_ctl(req, force_nonblock);
Jens Axboe3e4827b2020-01-08 15:18:09 -07005174 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005175 case IORING_OP_SPLICE:
5176 if (sqe) {
5177 ret = io_splice_prep(req, sqe);
5178 if (ret < 0)
5179 break;
5180 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005181 ret = io_splice(req, force_nonblock);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005182 break;
Jens Axboeddf0322d2020-02-23 16:41:33 -07005183 case IORING_OP_PROVIDE_BUFFERS:
5184 if (sqe) {
5185 ret = io_provide_buffers_prep(req, sqe);
5186 if (ret)
5187 break;
5188 }
5189 ret = io_provide_buffers(req, force_nonblock);
5190 break;
Jens Axboe067524e2020-03-02 16:32:28 -07005191 case IORING_OP_REMOVE_BUFFERS:
5192 if (sqe) {
5193 ret = io_remove_buffers_prep(req, sqe);
5194 if (ret)
5195 break;
5196 }
5197 ret = io_remove_buffers(req, force_nonblock);
5198 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005199 default:
5200 ret = -EINVAL;
5201 break;
5202 }
5203
Jens Axboedef596e2019-01-09 08:59:42 -07005204 if (ret)
5205 return ret;
5206
5207 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboe11ba8202020-01-15 21:51:17 -07005208 const bool in_async = io_wq_current_is_worker();
5209
Jens Axboe9e645e112019-05-10 16:07:28 -06005210 if (req->result == -EAGAIN)
Jens Axboedef596e2019-01-09 08:59:42 -07005211 return -EAGAIN;
5212
Jens Axboe11ba8202020-01-15 21:51:17 -07005213 /* workqueue context doesn't hold uring_lock, grab it now */
5214 if (in_async)
5215 mutex_lock(&ctx->uring_lock);
5216
Jens Axboedef596e2019-01-09 08:59:42 -07005217 io_iopoll_req_issued(req);
Jens Axboe11ba8202020-01-15 21:51:17 -07005218
5219 if (in_async)
5220 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07005221 }
5222
5223 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005224}
5225
Jens Axboe561fb042019-10-24 07:25:42 -06005226static void io_wq_submit_work(struct io_wq_work **workptr)
Jens Axboe31b51512019-01-18 22:56:34 -07005227{
Jens Axboe561fb042019-10-24 07:25:42 -06005228 struct io_wq_work *work = *workptr;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005229 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboe561fb042019-10-24 07:25:42 -06005230 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005231
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07005232 /* if NO_CANCEL is set, we must still run the work */
5233 if ((work->flags & (IO_WQ_WORK_CANCEL|IO_WQ_WORK_NO_CANCEL)) ==
5234 IO_WQ_WORK_CANCEL) {
Jens Axboe561fb042019-10-24 07:25:42 -06005235 ret = -ECANCELED;
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07005236 }
Jens Axboe31b51512019-01-18 22:56:34 -07005237
Jens Axboe561fb042019-10-24 07:25:42 -06005238 if (!ret) {
Jens Axboe561fb042019-10-24 07:25:42 -06005239 do {
Pavel Begunkov014db002020-03-03 21:33:12 +03005240 ret = io_issue_sqe(req, NULL, false);
Jens Axboe561fb042019-10-24 07:25:42 -06005241 /*
5242 * We can get EAGAIN for polled IO even though we're
5243 * forcing a sync submission from here, since we can't
5244 * wait for request slots on the block side.
5245 */
5246 if (ret != -EAGAIN)
5247 break;
5248 cond_resched();
5249 } while (1);
5250 }
Jens Axboe31b51512019-01-18 22:56:34 -07005251
Jens Axboe561fb042019-10-24 07:25:42 -06005252 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005253 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07005254 io_cqring_add_event(req, ret);
Jens Axboe817869d2019-04-30 14:44:05 -06005255 io_put_req(req);
Jens Axboeedafcce2019-01-09 09:16:05 -07005256 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07005257
Pavel Begunkove9fd9392020-03-04 16:14:12 +03005258 io_steal_work(req, workptr);
Jens Axboe31b51512019-01-18 22:56:34 -07005259}
Jens Axboe2b188cc2019-01-07 10:46:33 -07005260
Jens Axboe15b71ab2019-12-11 11:20:36 -07005261static int io_req_needs_file(struct io_kiocb *req, int fd)
Jens Axboe9e3aa612019-12-11 15:55:43 -07005262{
Jens Axboed3656342019-12-18 09:50:26 -07005263 if (!io_op_defs[req->opcode].needs_file)
Jens Axboe9e3aa612019-12-11 15:55:43 -07005264 return 0;
Jens Axboe0b5faf62020-02-06 21:42:51 -07005265 if ((fd == -1 || fd == AT_FDCWD) && io_op_defs[req->opcode].fd_non_neg)
Jens Axboed3656342019-12-18 09:50:26 -07005266 return 0;
5267 return 1;
Jens Axboe09bb8392019-03-13 12:39:28 -06005268}
5269
Jens Axboe65e19f52019-10-26 07:20:21 -06005270static inline struct file *io_file_from_index(struct io_ring_ctx *ctx,
5271 int index)
Jens Axboe09bb8392019-03-13 12:39:28 -06005272{
Jens Axboe65e19f52019-10-26 07:20:21 -06005273 struct fixed_file_table *table;
5274
Jens Axboe05f3fb32019-12-09 11:22:50 -07005275 table = &ctx->file_data->table[index >> IORING_FILE_TABLE_SHIFT];
5276 return table->files[index & IORING_FILE_TABLE_MASK];;
Jens Axboe65e19f52019-10-26 07:20:21 -06005277}
5278
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005279static int io_file_get(struct io_submit_state *state, struct io_kiocb *req,
5280 int fd, struct file **out_file, bool fixed)
5281{
5282 struct io_ring_ctx *ctx = req->ctx;
5283 struct file *file;
5284
5285 if (fixed) {
5286 if (unlikely(!ctx->file_data ||
5287 (unsigned) fd >= ctx->nr_user_files))
5288 return -EBADF;
5289 fd = array_index_nospec(fd, ctx->nr_user_files);
5290 file = io_file_from_index(ctx, fd);
5291 if (!file)
5292 return -EBADF;
5293 percpu_ref_get(&ctx->file_data->refs);
5294 } else {
5295 trace_io_uring_file_get(ctx, fd);
5296 file = __io_file_get(state, fd);
5297 if (unlikely(!file))
5298 return -EBADF;
5299 }
5300
5301 *out_file = file;
5302 return 0;
5303}
5304
Jens Axboe3529d8c2019-12-19 18:24:38 -07005305static int io_req_set_file(struct io_submit_state *state, struct io_kiocb *req,
5306 const struct io_uring_sqe *sqe)
Jens Axboe09bb8392019-03-13 12:39:28 -06005307{
5308 unsigned flags;
Jens Axboed3656342019-12-18 09:50:26 -07005309 int fd;
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005310 bool fixed;
Jens Axboe09bb8392019-03-13 12:39:28 -06005311
Jens Axboe3529d8c2019-12-19 18:24:38 -07005312 flags = READ_ONCE(sqe->flags);
5313 fd = READ_ONCE(sqe->fd);
Jens Axboe09bb8392019-03-13 12:39:28 -06005314
Jens Axboed3656342019-12-18 09:50:26 -07005315 if (!io_req_needs_file(req, fd))
5316 return 0;
Jens Axboe09bb8392019-03-13 12:39:28 -06005317
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005318 fixed = (flags & IOSQE_FIXED_FILE);
5319 if (unlikely(!fixed && req->needs_fixed_file))
5320 return -EBADF;
Jens Axboe09bb8392019-03-13 12:39:28 -06005321
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005322 return io_file_get(state, req, fd, &req->file, fixed);
Jens Axboe09bb8392019-03-13 12:39:28 -06005323}
5324
Jackie Liua197f662019-11-08 08:09:12 -07005325static int io_grab_files(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005326{
Jens Axboefcb323c2019-10-24 12:39:47 -06005327 int ret = -EBADF;
Jackie Liua197f662019-11-08 08:09:12 -07005328 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06005329
Jens Axboef86cd202020-01-29 13:46:44 -07005330 if (req->work.files)
5331 return 0;
Pavel Begunkovb14cca02020-01-17 04:45:59 +03005332 if (!ctx->ring_file)
Jens Axboeb5dba592019-12-11 14:02:38 -07005333 return -EBADF;
5334
Jens Axboefcb323c2019-10-24 12:39:47 -06005335 rcu_read_lock();
5336 spin_lock_irq(&ctx->inflight_lock);
5337 /*
5338 * We use the f_ops->flush() handler to ensure that we can flush
5339 * out work accessing these files if the fd is closed. Check if
5340 * the fd has changed since we started down this path, and disallow
5341 * this operation if it has.
5342 */
Pavel Begunkovb14cca02020-01-17 04:45:59 +03005343 if (fcheck(ctx->ring_fd) == ctx->ring_file) {
Jens Axboefcb323c2019-10-24 12:39:47 -06005344 list_add(&req->inflight_entry, &ctx->inflight_list);
5345 req->flags |= REQ_F_INFLIGHT;
5346 req->work.files = current->files;
5347 ret = 0;
5348 }
5349 spin_unlock_irq(&ctx->inflight_lock);
5350 rcu_read_unlock();
5351
5352 return ret;
5353}
5354
Jens Axboe2665abf2019-11-05 12:40:47 -07005355static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer)
5356{
Jens Axboead8a48a2019-11-15 08:49:11 -07005357 struct io_timeout_data *data = container_of(timer,
5358 struct io_timeout_data, timer);
5359 struct io_kiocb *req = data->req;
Jens Axboe2665abf2019-11-05 12:40:47 -07005360 struct io_ring_ctx *ctx = req->ctx;
5361 struct io_kiocb *prev = NULL;
5362 unsigned long flags;
Jens Axboe2665abf2019-11-05 12:40:47 -07005363
5364 spin_lock_irqsave(&ctx->completion_lock, flags);
5365
5366 /*
5367 * We don't expect the list to be empty, that will only happen if we
5368 * race with the completion of the linked work.
5369 */
Pavel Begunkov44932332019-12-05 16:16:35 +03005370 if (!list_empty(&req->link_list)) {
5371 prev = list_entry(req->link_list.prev, struct io_kiocb,
5372 link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07005373 if (refcount_inc_not_zero(&prev->refs)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03005374 list_del_init(&req->link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07005375 prev->flags &= ~REQ_F_LINK_TIMEOUT;
5376 } else
Jens Axboe76a46e02019-11-10 23:34:16 -07005377 prev = NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07005378 }
5379
5380 spin_unlock_irqrestore(&ctx->completion_lock, flags);
5381
5382 if (prev) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005383 req_set_fail_links(prev);
Pavel Begunkov014db002020-03-03 21:33:12 +03005384 io_async_find_and_cancel(ctx, req, prev->user_data, -ETIME);
Jens Axboe76a46e02019-11-10 23:34:16 -07005385 io_put_req(prev);
Jens Axboe47f46762019-11-09 17:43:02 -07005386 } else {
5387 io_cqring_add_event(req, -ETIME);
5388 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07005389 }
Jens Axboe2665abf2019-11-05 12:40:47 -07005390 return HRTIMER_NORESTART;
5391}
5392
Jens Axboead8a48a2019-11-15 08:49:11 -07005393static void io_queue_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07005394{
Jens Axboe76a46e02019-11-10 23:34:16 -07005395 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07005396
Jens Axboe76a46e02019-11-10 23:34:16 -07005397 /*
5398 * If the list is now empty, then our linked request finished before
5399 * we got a chance to setup the timer
5400 */
5401 spin_lock_irq(&ctx->completion_lock);
Pavel Begunkov44932332019-12-05 16:16:35 +03005402 if (!list_empty(&req->link_list)) {
Jens Axboe2d283902019-12-04 11:08:05 -07005403 struct io_timeout_data *data = &req->io->timeout;
Jens Axboe94ae5e72019-11-14 19:39:52 -07005404
Jens Axboead8a48a2019-11-15 08:49:11 -07005405 data->timer.function = io_link_timeout_fn;
5406 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts),
5407 data->mode);
Jens Axboe2665abf2019-11-05 12:40:47 -07005408 }
Jens Axboe76a46e02019-11-10 23:34:16 -07005409 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe2665abf2019-11-05 12:40:47 -07005410
Jens Axboe2665abf2019-11-05 12:40:47 -07005411 /* drop submission reference */
Jens Axboe76a46e02019-11-10 23:34:16 -07005412 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07005413}
5414
Jens Axboead8a48a2019-11-15 08:49:11 -07005415static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07005416{
5417 struct io_kiocb *nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005418
Jens Axboe2665abf2019-11-05 12:40:47 -07005419 if (!(req->flags & REQ_F_LINK))
5420 return NULL;
Jens Axboed7718a92020-02-14 22:23:12 -07005421 /* for polled retry, if flag is set, we already went through here */
5422 if (req->flags & REQ_F_POLLED)
5423 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07005424
Pavel Begunkov44932332019-12-05 16:16:35 +03005425 nxt = list_first_entry_or_null(&req->link_list, struct io_kiocb,
5426 link_list);
Jens Axboed625c6e2019-12-17 19:53:05 -07005427 if (!nxt || nxt->opcode != IORING_OP_LINK_TIMEOUT)
Jens Axboe76a46e02019-11-10 23:34:16 -07005428 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07005429
Jens Axboe76a46e02019-11-10 23:34:16 -07005430 req->flags |= REQ_F_LINK_TIMEOUT;
Jens Axboe76a46e02019-11-10 23:34:16 -07005431 return nxt;
Jens Axboe2665abf2019-11-05 12:40:47 -07005432}
5433
Jens Axboe3529d8c2019-12-19 18:24:38 -07005434static void __io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005435{
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005436 struct io_kiocb *linked_timeout;
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005437 struct io_kiocb *nxt;
Jens Axboe193155c2020-02-22 23:22:19 -07005438 const struct cred *old_creds = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005439 int ret;
5440
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005441again:
5442 linked_timeout = io_prep_linked_timeout(req);
5443
Jens Axboe193155c2020-02-22 23:22:19 -07005444 if (req->work.creds && req->work.creds != current_cred()) {
5445 if (old_creds)
5446 revert_creds(old_creds);
5447 if (old_creds == req->work.creds)
5448 old_creds = NULL; /* restored original creds */
5449 else
5450 old_creds = override_creds(req->work.creds);
5451 }
5452
Pavel Begunkov014db002020-03-03 21:33:12 +03005453 ret = io_issue_sqe(req, sqe, true);
Jens Axboe491381ce2019-10-17 09:20:46 -06005454
5455 /*
5456 * We async punt it if the file wasn't marked NOWAIT, or if the file
5457 * doesn't support non-blocking read/write attempts
5458 */
5459 if (ret == -EAGAIN && (!(req->flags & REQ_F_NOWAIT) ||
5460 (req->flags & REQ_F_MUST_PUNT))) {
Jens Axboed7718a92020-02-14 22:23:12 -07005461 if (io_arm_poll_handler(req)) {
5462 if (linked_timeout)
5463 io_queue_linked_timeout(linked_timeout);
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005464 goto exit;
Jens Axboed7718a92020-02-14 22:23:12 -07005465 }
Pavel Begunkov86a761f2020-01-22 23:09:36 +03005466punt:
Jens Axboef86cd202020-01-29 13:46:44 -07005467 if (io_op_defs[req->opcode].file_table) {
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03005468 ret = io_grab_files(req);
5469 if (ret)
5470 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005471 }
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03005472
5473 /*
5474 * Queued up for async execution, worker will release
5475 * submit reference when the iocb is actually submitted.
5476 */
5477 io_queue_async_work(req);
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005478 goto exit;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005479 }
Jens Axboee65ef562019-03-12 10:16:44 -06005480
Jens Axboefcb323c2019-10-24 12:39:47 -06005481err:
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005482 nxt = NULL;
Jens Axboee65ef562019-03-12 10:16:44 -06005483 /* drop submission reference */
Jens Axboe2a44f462020-02-25 13:25:41 -07005484 io_put_req_find_next(req, &nxt);
Jens Axboee65ef562019-03-12 10:16:44 -06005485
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03005486 if (linked_timeout) {
Jens Axboe76a46e02019-11-10 23:34:16 -07005487 if (!ret)
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03005488 io_queue_linked_timeout(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07005489 else
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03005490 io_put_req(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07005491 }
5492
Jens Axboee65ef562019-03-12 10:16:44 -06005493 /* and drop final reference, if we failed */
Jens Axboe9e645e112019-05-10 16:07:28 -06005494 if (ret) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07005495 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005496 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06005497 io_put_req(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06005498 }
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005499 if (nxt) {
5500 req = nxt;
Pavel Begunkov86a761f2020-01-22 23:09:36 +03005501
5502 if (req->flags & REQ_F_FORCE_ASYNC)
5503 goto punt;
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005504 goto again;
5505 }
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005506exit:
Jens Axboe193155c2020-02-22 23:22:19 -07005507 if (old_creds)
5508 revert_creds(old_creds);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005509}
5510
Jens Axboe3529d8c2019-12-19 18:24:38 -07005511static void io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jackie Liu4fe2c962019-09-09 20:50:40 +08005512{
5513 int ret;
5514
Jens Axboe3529d8c2019-12-19 18:24:38 -07005515 ret = io_req_defer(req, sqe);
Jackie Liu4fe2c962019-09-09 20:50:40 +08005516 if (ret) {
5517 if (ret != -EIOCBQUEUED) {
Pavel Begunkov11185912020-01-22 23:09:35 +03005518fail_req:
Jens Axboe78e19bb2019-11-06 15:21:34 -07005519 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005520 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07005521 io_double_put_req(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08005522 }
Pavel Begunkov25508782019-12-30 21:24:47 +03005523 } else if (req->flags & REQ_F_FORCE_ASYNC) {
Pavel Begunkov11185912020-01-22 23:09:35 +03005524 ret = io_req_defer_prep(req, sqe);
5525 if (unlikely(ret < 0))
5526 goto fail_req;
Jens Axboece35a472019-12-17 08:04:44 -07005527 /*
5528 * Never try inline submit of IOSQE_ASYNC is set, go straight
5529 * to async execution.
5530 */
5531 req->work.flags |= IO_WQ_WORK_CONCURRENT;
5532 io_queue_async_work(req);
5533 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07005534 __io_queue_sqe(req, sqe);
Jens Axboece35a472019-12-17 08:04:44 -07005535 }
Jackie Liu4fe2c962019-09-09 20:50:40 +08005536}
5537
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005538static inline void io_queue_link_head(struct io_kiocb *req)
Jackie Liu4fe2c962019-09-09 20:50:40 +08005539{
Jens Axboe94ae5e72019-11-14 19:39:52 -07005540 if (unlikely(req->flags & REQ_F_FAIL_LINK)) {
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005541 io_cqring_add_event(req, -ECANCELED);
5542 io_double_put_req(req);
5543 } else
Jens Axboe3529d8c2019-12-19 18:24:38 -07005544 io_queue_sqe(req, NULL);
Jackie Liu4fe2c962019-09-09 20:50:40 +08005545}
5546
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005547#define SQE_VALID_FLAGS (IOSQE_FIXED_FILE|IOSQE_IO_DRAIN|IOSQE_IO_LINK| \
Jens Axboebcda7ba2020-02-23 16:42:51 -07005548 IOSQE_IO_HARDLINK | IOSQE_ASYNC | \
5549 IOSQE_BUFFER_SELECT)
Jens Axboe9e645e112019-05-10 16:07:28 -06005550
Jens Axboe3529d8c2019-12-19 18:24:38 -07005551static bool io_submit_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
5552 struct io_submit_state *state, struct io_kiocb **link)
Jens Axboe9e645e112019-05-10 16:07:28 -06005553{
Jackie Liua197f662019-11-08 08:09:12 -07005554 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005555 unsigned int sqe_flags;
Jens Axboe75c6a032020-01-28 10:15:23 -07005556 int ret, id;
Jens Axboe9e645e112019-05-10 16:07:28 -06005557
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005558 sqe_flags = READ_ONCE(sqe->flags);
Jens Axboe9e645e112019-05-10 16:07:28 -06005559
5560 /* enforce forwards compatibility on users */
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005561 if (unlikely(sqe_flags & ~SQE_VALID_FLAGS)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06005562 ret = -EINVAL;
Pavel Begunkov196be952019-11-07 01:41:06 +03005563 goto err_req;
Jens Axboe9e645e112019-05-10 16:07:28 -06005564 }
5565
Jens Axboebcda7ba2020-02-23 16:42:51 -07005566 if ((sqe_flags & IOSQE_BUFFER_SELECT) &&
5567 !io_op_defs[req->opcode].buffer_select) {
5568 ret = -EOPNOTSUPP;
5569 goto err_req;
5570 }
5571
Jens Axboe75c6a032020-01-28 10:15:23 -07005572 id = READ_ONCE(sqe->personality);
5573 if (id) {
Jens Axboe193155c2020-02-22 23:22:19 -07005574 req->work.creds = idr_find(&ctx->personality_idr, id);
5575 if (unlikely(!req->work.creds)) {
Jens Axboe75c6a032020-01-28 10:15:23 -07005576 ret = -EINVAL;
5577 goto err_req;
5578 }
Jens Axboe193155c2020-02-22 23:22:19 -07005579 get_cred(req->work.creds);
Jens Axboe75c6a032020-01-28 10:15:23 -07005580 }
5581
Pavel Begunkov6b47ee62020-01-18 20:22:41 +03005582 /* same numerical values with corresponding REQ_F_*, safe to copy */
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005583 req->flags |= sqe_flags & (IOSQE_IO_DRAIN | IOSQE_IO_HARDLINK |
Jens Axboebcda7ba2020-02-23 16:42:51 -07005584 IOSQE_ASYNC | IOSQE_FIXED_FILE |
5585 IOSQE_BUFFER_SELECT);
Jens Axboe9e645e112019-05-10 16:07:28 -06005586
Jens Axboe3529d8c2019-12-19 18:24:38 -07005587 ret = io_req_set_file(state, req, sqe);
Jens Axboe9e645e112019-05-10 16:07:28 -06005588 if (unlikely(ret)) {
5589err_req:
Jens Axboe78e19bb2019-11-06 15:21:34 -07005590 io_cqring_add_event(req, ret);
5591 io_double_put_req(req);
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03005592 return false;
Jens Axboe9e645e112019-05-10 16:07:28 -06005593 }
5594
Jens Axboe9e645e112019-05-10 16:07:28 -06005595 /*
5596 * If we already have a head request, queue this one for async
5597 * submittal once the head completes. If we don't have a head but
5598 * IOSQE_IO_LINK is set in the sqe, start a new head. This one will be
5599 * submitted sync once the chain is complete. If none of those
5600 * conditions are true (normal request), then just queue it.
5601 */
5602 if (*link) {
Pavel Begunkov9d763772019-12-17 02:22:07 +03005603 struct io_kiocb *head = *link;
Jens Axboe9e645e112019-05-10 16:07:28 -06005604
Pavel Begunkov8cdf2192020-01-25 00:40:24 +03005605 /*
5606 * Taking sequential execution of a link, draining both sides
5607 * of the link also fullfils IOSQE_IO_DRAIN semantics for all
5608 * requests in the link. So, it drains the head and the
5609 * next after the link request. The last one is done via
5610 * drain_next flag to persist the effect across calls.
5611 */
Pavel Begunkov711be032020-01-17 03:57:59 +03005612 if (sqe_flags & IOSQE_IO_DRAIN) {
5613 head->flags |= REQ_F_IO_DRAIN;
5614 ctx->drain_next = 1;
5615 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07005616 if (io_alloc_async_ctx(req)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06005617 ret = -EAGAIN;
5618 goto err_req;
5619 }
5620
Jens Axboe3529d8c2019-12-19 18:24:38 -07005621 ret = io_req_defer_prep(req, sqe);
Jens Axboe2d283902019-12-04 11:08:05 -07005622 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005623 /* fail even hard links since we don't submit */
Pavel Begunkov9d763772019-12-17 02:22:07 +03005624 head->flags |= REQ_F_FAIL_LINK;
Jens Axboef67676d2019-12-02 11:03:47 -07005625 goto err_req;
Jens Axboe2d283902019-12-04 11:08:05 -07005626 }
Pavel Begunkov9d763772019-12-17 02:22:07 +03005627 trace_io_uring_link(ctx, req, head);
5628 list_add_tail(&req->link_list, &head->link_list);
Jens Axboe9e645e112019-05-10 16:07:28 -06005629
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005630 /* last request of a link, enqueue the link */
5631 if (!(sqe_flags & (IOSQE_IO_LINK|IOSQE_IO_HARDLINK))) {
5632 io_queue_link_head(head);
5633 *link = NULL;
5634 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005635 } else {
Pavel Begunkov711be032020-01-17 03:57:59 +03005636 if (unlikely(ctx->drain_next)) {
5637 req->flags |= REQ_F_IO_DRAIN;
5638 req->ctx->drain_next = 0;
5639 }
5640 if (sqe_flags & (IOSQE_IO_LINK|IOSQE_IO_HARDLINK)) {
5641 req->flags |= REQ_F_LINK;
Pavel Begunkov711be032020-01-17 03:57:59 +03005642 INIT_LIST_HEAD(&req->link_list);
5643 ret = io_req_defer_prep(req, sqe);
5644 if (ret)
5645 req->flags |= REQ_F_FAIL_LINK;
5646 *link = req;
5647 } else {
5648 io_queue_sqe(req, sqe);
5649 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005650 }
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03005651
5652 return true;
Jens Axboe9e645e112019-05-10 16:07:28 -06005653}
5654
Jens Axboe9a56a232019-01-09 09:06:50 -07005655/*
5656 * Batched submission is done, ensure local IO is flushed out.
5657 */
5658static void io_submit_state_end(struct io_submit_state *state)
5659{
5660 blk_finish_plug(&state->plug);
Jens Axboe3d6770f2019-04-13 11:50:54 -06005661 io_file_put(state);
Jens Axboe2579f912019-01-09 09:10:43 -07005662 if (state->free_reqs)
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03005663 kmem_cache_free_bulk(req_cachep, state->free_reqs, state->reqs);
Jens Axboe9a56a232019-01-09 09:06:50 -07005664}
5665
5666/*
5667 * Start submission side cache.
5668 */
5669static void io_submit_state_start(struct io_submit_state *state,
Jackie Liu22efde52019-12-02 17:14:52 +08005670 unsigned int max_ios)
Jens Axboe9a56a232019-01-09 09:06:50 -07005671{
5672 blk_start_plug(&state->plug);
Jens Axboe2579f912019-01-09 09:10:43 -07005673 state->free_reqs = 0;
Jens Axboe9a56a232019-01-09 09:06:50 -07005674 state->file = NULL;
5675 state->ios_left = max_ios;
5676}
5677
Jens Axboe2b188cc2019-01-07 10:46:33 -07005678static void io_commit_sqring(struct io_ring_ctx *ctx)
5679{
Hristo Venev75b28af2019-08-26 17:23:46 +00005680 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005681
Pavel Begunkovcaf582c2019-12-30 21:24:46 +03005682 /*
5683 * Ensure any loads from the SQEs are done at this point,
5684 * since once we write the new head, the application could
5685 * write new data to them.
5686 */
5687 smp_store_release(&rings->sq.head, ctx->cached_sq_head);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005688}
5689
5690/*
Jens Axboe3529d8c2019-12-19 18:24:38 -07005691 * Fetch an sqe, if one is available. Note that sqe_ptr will point to memory
Jens Axboe2b188cc2019-01-07 10:46:33 -07005692 * that is mapped by userspace. This means that care needs to be taken to
5693 * ensure that reads are stable, as we cannot rely on userspace always
5694 * being a good citizen. If members of the sqe are validated and then later
5695 * used, it's important that those reads are done through READ_ONCE() to
5696 * prevent a re-load down the line.
5697 */
Jens Axboe3529d8c2019-12-19 18:24:38 -07005698static bool io_get_sqring(struct io_ring_ctx *ctx, struct io_kiocb *req,
5699 const struct io_uring_sqe **sqe_ptr)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005700{
Hristo Venev75b28af2019-08-26 17:23:46 +00005701 u32 *sq_array = ctx->sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005702 unsigned head;
5703
5704 /*
5705 * The cached sq head (or cq tail) serves two purposes:
5706 *
5707 * 1) allows us to batch the cost of updating the user visible
5708 * head updates.
5709 * 2) allows the kernel side to track the head on its own, even
5710 * though the application is the one updating it.
5711 */
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005712 head = READ_ONCE(sq_array[ctx->cached_sq_head & ctx->sq_mask]);
Pavel Begunkov9835d6f2019-11-21 21:24:56 +03005713 if (likely(head < ctx->sq_entries)) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03005714 /*
5715 * All io need record the previous position, if LINK vs DARIN,
5716 * it can be used to mark the position of the first IO in the
5717 * link list.
5718 */
5719 req->sequence = ctx->cached_sq_head;
Jens Axboe3529d8c2019-12-19 18:24:38 -07005720 *sqe_ptr = &ctx->sq_sqes[head];
5721 req->opcode = READ_ONCE((*sqe_ptr)->opcode);
5722 req->user_data = READ_ONCE((*sqe_ptr)->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005723 ctx->cached_sq_head++;
5724 return true;
5725 }
5726
5727 /* drop invalid entries */
5728 ctx->cached_sq_head++;
Jens Axboe498ccd92019-10-25 10:04:25 -06005729 ctx->cached_sq_dropped++;
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005730 WRITE_ONCE(ctx->rings->sq_dropped, ctx->cached_sq_dropped);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005731 return false;
5732}
5733
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005734static int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr,
Pavel Begunkovae9428c2019-11-06 00:22:14 +03005735 struct file *ring_file, int ring_fd,
5736 struct mm_struct **mm, bool async)
Jens Axboe6c271ce2019-01-10 11:22:30 -07005737{
5738 struct io_submit_state state, *statep = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06005739 struct io_kiocb *link = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06005740 int i, submitted = 0;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005741 bool mm_fault = false;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005742
Jens Axboec4a2ed72019-11-21 21:01:26 -07005743 /* if we have a backlog and couldn't flush it all, return BUSY */
Jens Axboead3eb2c2019-12-18 17:12:20 -07005744 if (test_bit(0, &ctx->sq_check_overflow)) {
5745 if (!list_empty(&ctx->cq_overflow_list) &&
5746 !io_cqring_overflow_flush(ctx, false))
5747 return -EBUSY;
5748 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07005749
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005750 /* make sure SQ entry isn't read before tail */
5751 nr = min3(nr, ctx->sq_entries, io_sqring_entries(ctx));
Pavel Begunkov9ef4f122019-12-30 21:24:44 +03005752
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03005753 if (!percpu_ref_tryget_many(&ctx->refs, nr))
5754 return -EAGAIN;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005755
5756 if (nr > IO_PLUG_THRESHOLD) {
Jackie Liu22efde52019-12-02 17:14:52 +08005757 io_submit_state_start(&state, nr);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005758 statep = &state;
5759 }
5760
Pavel Begunkovb14cca02020-01-17 04:45:59 +03005761 ctx->ring_fd = ring_fd;
5762 ctx->ring_file = ring_file;
5763
Jens Axboe6c271ce2019-01-10 11:22:30 -07005764 for (i = 0; i < nr; i++) {
Jens Axboe3529d8c2019-12-19 18:24:38 -07005765 const struct io_uring_sqe *sqe;
Pavel Begunkov196be952019-11-07 01:41:06 +03005766 struct io_kiocb *req;
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005767 int err;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005768
Pavel Begunkov196be952019-11-07 01:41:06 +03005769 req = io_get_req(ctx, statep);
5770 if (unlikely(!req)) {
5771 if (!submitted)
5772 submitted = -EAGAIN;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005773 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06005774 }
Jens Axboe3529d8c2019-12-19 18:24:38 -07005775 if (!io_get_sqring(ctx, req, &sqe)) {
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03005776 __io_req_do_free(req);
Pavel Begunkov196be952019-11-07 01:41:06 +03005777 break;
5778 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005779
Jens Axboed3656342019-12-18 09:50:26 -07005780 /* will complete beyond this point, count as submitted */
5781 submitted++;
5782
5783 if (unlikely(req->opcode >= IORING_OP_LAST)) {
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005784 err = -EINVAL;
5785fail_req:
5786 io_cqring_add_event(req, err);
Jens Axboed3656342019-12-18 09:50:26 -07005787 io_double_put_req(req);
5788 break;
5789 }
5790
5791 if (io_op_defs[req->opcode].needs_mm && !*mm) {
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005792 mm_fault = mm_fault || !mmget_not_zero(ctx->sqo_mm);
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005793 if (unlikely(mm_fault)) {
5794 err = -EFAULT;
5795 goto fail_req;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005796 }
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005797 use_mm(ctx->sqo_mm);
5798 *mm = ctx->sqo_mm;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005799 }
5800
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03005801 req->needs_fixed_file = async;
Jens Axboe354420f2020-01-08 18:55:15 -07005802 trace_io_uring_submit_sqe(ctx, req->opcode, req->user_data,
5803 true, async);
Jens Axboe3529d8c2019-12-19 18:24:38 -07005804 if (!io_submit_sqe(req, sqe, statep, &link))
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03005805 break;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005806 }
5807
Pavel Begunkov9466f432020-01-25 22:34:01 +03005808 if (unlikely(submitted != nr)) {
5809 int ref_used = (submitted == -EAGAIN) ? 0 : submitted;
5810
5811 percpu_ref_put_many(&ctx->refs, nr - ref_used);
5812 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005813 if (link)
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005814 io_queue_link_head(link);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005815 if (statep)
5816 io_submit_state_end(&state);
5817
Pavel Begunkovae9428c2019-11-06 00:22:14 +03005818 /* Commit SQ ring head once we've consumed and submitted all SQEs */
5819 io_commit_sqring(ctx);
5820
Jens Axboe6c271ce2019-01-10 11:22:30 -07005821 return submitted;
5822}
5823
5824static int io_sq_thread(void *data)
5825{
Jens Axboe6c271ce2019-01-10 11:22:30 -07005826 struct io_ring_ctx *ctx = data;
5827 struct mm_struct *cur_mm = NULL;
Jens Axboe181e4482019-11-25 08:52:30 -07005828 const struct cred *old_cred;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005829 mm_segment_t old_fs;
5830 DEFINE_WAIT(wait);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005831 unsigned long timeout;
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005832 int ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005833
Jens Axboe206aefd2019-11-07 18:27:42 -07005834 complete(&ctx->completions[1]);
Jackie Liua4c0b3d2019-07-08 13:41:12 +08005835
Jens Axboe6c271ce2019-01-10 11:22:30 -07005836 old_fs = get_fs();
5837 set_fs(USER_DS);
Jens Axboe181e4482019-11-25 08:52:30 -07005838 old_cred = override_creds(ctx->creds);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005839
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005840 timeout = jiffies + ctx->sq_thread_idle;
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02005841 while (!kthread_should_park()) {
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005842 unsigned int to_submit;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005843
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005844 if (!list_empty(&ctx->poll_list)) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07005845 unsigned nr_events = 0;
5846
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005847 mutex_lock(&ctx->uring_lock);
5848 if (!list_empty(&ctx->poll_list))
5849 io_iopoll_getevents(ctx, &nr_events, 0);
5850 else
Jens Axboe6c271ce2019-01-10 11:22:30 -07005851 timeout = jiffies + ctx->sq_thread_idle;
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005852 mutex_unlock(&ctx->uring_lock);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005853 }
5854
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005855 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07005856
5857 /*
5858 * If submit got -EBUSY, flag us as needing the application
5859 * to enter the kernel to reap and flush events.
5860 */
5861 if (!to_submit || ret == -EBUSY) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07005862 /*
Stefano Garzarella7143b5a2020-02-21 16:42:16 +01005863 * Drop cur_mm before scheduling, we can't hold it for
5864 * long periods (or over schedule()). Do this before
5865 * adding ourselves to the waitqueue, as the unuse/drop
5866 * may sleep.
5867 */
5868 if (cur_mm) {
5869 unuse_mm(cur_mm);
5870 mmput(cur_mm);
5871 cur_mm = NULL;
5872 }
5873
5874 /*
Jens Axboe6c271ce2019-01-10 11:22:30 -07005875 * We're polling. If we're within the defined idle
5876 * period, then let us spin without work before going
Jens Axboec1edbf52019-11-10 16:56:04 -07005877 * to sleep. The exception is if we got EBUSY doing
5878 * more IO, we should wait for the application to
5879 * reap events and wake us up.
Jens Axboe6c271ce2019-01-10 11:22:30 -07005880 */
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005881 if (!list_empty(&ctx->poll_list) ||
Jens Axboedf069d82020-02-04 16:48:34 -07005882 (!time_after(jiffies, timeout) && ret != -EBUSY &&
5883 !percpu_ref_is_dying(&ctx->refs))) {
Jens Axboeb41e9852020-02-17 09:52:41 -07005884 if (current->task_works)
5885 task_work_run();
Jens Axboe9831a902019-09-19 09:48:55 -06005886 cond_resched();
Jens Axboe6c271ce2019-01-10 11:22:30 -07005887 continue;
5888 }
5889
Jens Axboe6c271ce2019-01-10 11:22:30 -07005890 prepare_to_wait(&ctx->sqo_wait, &wait,
5891 TASK_INTERRUPTIBLE);
5892
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005893 /*
5894 * While doing polled IO, before going to sleep, we need
5895 * to check if there are new reqs added to poll_list, it
5896 * is because reqs may have been punted to io worker and
5897 * will be added to poll_list later, hence check the
5898 * poll_list again.
5899 */
5900 if ((ctx->flags & IORING_SETUP_IOPOLL) &&
5901 !list_empty_careful(&ctx->poll_list)) {
5902 finish_wait(&ctx->sqo_wait, &wait);
5903 continue;
5904 }
5905
Jens Axboe6c271ce2019-01-10 11:22:30 -07005906 /* Tell userspace we may need a wakeup call */
Hristo Venev75b28af2019-08-26 17:23:46 +00005907 ctx->rings->sq_flags |= IORING_SQ_NEED_WAKEUP;
Stefan Bühler0d7bae62019-04-19 11:57:45 +02005908 /* make sure to read SQ tail after writing flags */
5909 smp_mb();
Jens Axboe6c271ce2019-01-10 11:22:30 -07005910
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005911 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07005912 if (!to_submit || ret == -EBUSY) {
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02005913 if (kthread_should_park()) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07005914 finish_wait(&ctx->sqo_wait, &wait);
5915 break;
5916 }
Jens Axboeb41e9852020-02-17 09:52:41 -07005917 if (current->task_works) {
5918 task_work_run();
5919 continue;
5920 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07005921 if (signal_pending(current))
5922 flush_signals(current);
5923 schedule();
5924 finish_wait(&ctx->sqo_wait, &wait);
5925
Hristo Venev75b28af2019-08-26 17:23:46 +00005926 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005927 continue;
5928 }
5929 finish_wait(&ctx->sqo_wait, &wait);
5930
Hristo Venev75b28af2019-08-26 17:23:46 +00005931 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005932 }
5933
Jens Axboe8a4955f2019-12-09 14:52:35 -07005934 mutex_lock(&ctx->uring_lock);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005935 ret = io_submit_sqes(ctx, to_submit, NULL, -1, &cur_mm, true);
Jens Axboe8a4955f2019-12-09 14:52:35 -07005936 mutex_unlock(&ctx->uring_lock);
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005937 timeout = jiffies + ctx->sq_thread_idle;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005938 }
5939
Jens Axboeb41e9852020-02-17 09:52:41 -07005940 if (current->task_works)
5941 task_work_run();
5942
Jens Axboe6c271ce2019-01-10 11:22:30 -07005943 set_fs(old_fs);
5944 if (cur_mm) {
5945 unuse_mm(cur_mm);
5946 mmput(cur_mm);
5947 }
Jens Axboe181e4482019-11-25 08:52:30 -07005948 revert_creds(old_cred);
Jens Axboe06058632019-04-13 09:26:03 -06005949
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02005950 kthread_parkme();
Jens Axboe06058632019-04-13 09:26:03 -06005951
Jens Axboe6c271ce2019-01-10 11:22:30 -07005952 return 0;
5953}
5954
Jens Axboebda52162019-09-24 13:47:15 -06005955struct io_wait_queue {
5956 struct wait_queue_entry wq;
5957 struct io_ring_ctx *ctx;
5958 unsigned to_wait;
5959 unsigned nr_timeouts;
5960};
5961
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005962static inline bool io_should_wake(struct io_wait_queue *iowq, bool noflush)
Jens Axboebda52162019-09-24 13:47:15 -06005963{
5964 struct io_ring_ctx *ctx = iowq->ctx;
5965
5966 /*
Brian Gianforcarod195a662019-12-13 03:09:50 -08005967 * Wake up if we have enough events, or if a timeout occurred since we
Jens Axboebda52162019-09-24 13:47:15 -06005968 * started waiting. For timeouts, we always want to return to userspace,
5969 * regardless of event count.
5970 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005971 return io_cqring_events(ctx, noflush) >= iowq->to_wait ||
Jens Axboebda52162019-09-24 13:47:15 -06005972 atomic_read(&ctx->cq_timeouts) != iowq->nr_timeouts;
5973}
5974
5975static int io_wake_function(struct wait_queue_entry *curr, unsigned int mode,
5976 int wake_flags, void *key)
5977{
5978 struct io_wait_queue *iowq = container_of(curr, struct io_wait_queue,
5979 wq);
5980
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005981 /* use noflush == true, as we can't safely rely on locking context */
5982 if (!io_should_wake(iowq, true))
Jens Axboebda52162019-09-24 13:47:15 -06005983 return -1;
5984
5985 return autoremove_wake_function(curr, mode, wake_flags, key);
5986}
5987
Jens Axboe2b188cc2019-01-07 10:46:33 -07005988/*
5989 * Wait until events become available, if we don't already have some. The
5990 * application must reap them itself, as they reside on the shared cq ring.
5991 */
5992static int io_cqring_wait(struct io_ring_ctx *ctx, int min_events,
5993 const sigset_t __user *sig, size_t sigsz)
5994{
Jens Axboebda52162019-09-24 13:47:15 -06005995 struct io_wait_queue iowq = {
5996 .wq = {
5997 .private = current,
5998 .func = io_wake_function,
5999 .entry = LIST_HEAD_INIT(iowq.wq.entry),
6000 },
6001 .ctx = ctx,
6002 .to_wait = min_events,
6003 };
Hristo Venev75b28af2019-08-26 17:23:46 +00006004 struct io_rings *rings = ctx->rings;
Jackie Liue9ffa5c2019-10-29 11:16:42 +08006005 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006006
Jens Axboeb41e9852020-02-17 09:52:41 -07006007 do {
6008 if (io_cqring_events(ctx, false) >= min_events)
6009 return 0;
6010 if (!current->task_works)
6011 break;
6012 task_work_run();
6013 } while (1);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006014
6015 if (sig) {
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006016#ifdef CONFIG_COMPAT
6017 if (in_compat_syscall())
6018 ret = set_compat_user_sigmask((const compat_sigset_t __user *)sig,
Oleg Nesterovb7724342019-07-16 16:29:53 -07006019 sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006020 else
6021#endif
Oleg Nesterovb7724342019-07-16 16:29:53 -07006022 ret = set_user_sigmask(sig, sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006023
Jens Axboe2b188cc2019-01-07 10:46:33 -07006024 if (ret)
6025 return ret;
6026 }
6027
Jens Axboebda52162019-09-24 13:47:15 -06006028 iowq.nr_timeouts = atomic_read(&ctx->cq_timeouts);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02006029 trace_io_uring_cqring_wait(ctx, min_events);
Jens Axboebda52162019-09-24 13:47:15 -06006030 do {
6031 prepare_to_wait_exclusive(&ctx->wait, &iowq.wq,
6032 TASK_INTERRUPTIBLE);
Jens Axboeb41e9852020-02-17 09:52:41 -07006033 if (current->task_works)
6034 task_work_run();
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006035 if (io_should_wake(&iowq, false))
Jens Axboebda52162019-09-24 13:47:15 -06006036 break;
6037 schedule();
6038 if (signal_pending(current)) {
Jackie Liue9ffa5c2019-10-29 11:16:42 +08006039 ret = -EINTR;
Jens Axboebda52162019-09-24 13:47:15 -06006040 break;
6041 }
6042 } while (1);
6043 finish_wait(&ctx->wait, &iowq.wq);
6044
Jackie Liue9ffa5c2019-10-29 11:16:42 +08006045 restore_saved_sigmask_unless(ret == -EINTR);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006046
Hristo Venev75b28af2019-08-26 17:23:46 +00006047 return READ_ONCE(rings->cq.head) == READ_ONCE(rings->cq.tail) ? ret : 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006048}
6049
Jens Axboe6b063142019-01-10 22:13:58 -07006050static void __io_sqe_files_unregister(struct io_ring_ctx *ctx)
6051{
6052#if defined(CONFIG_UNIX)
6053 if (ctx->ring_sock) {
6054 struct sock *sock = ctx->ring_sock->sk;
6055 struct sk_buff *skb;
6056
6057 while ((skb = skb_dequeue(&sock->sk_receive_queue)) != NULL)
6058 kfree_skb(skb);
6059 }
6060#else
6061 int i;
6062
Jens Axboe65e19f52019-10-26 07:20:21 -06006063 for (i = 0; i < ctx->nr_user_files; i++) {
6064 struct file *file;
6065
6066 file = io_file_from_index(ctx, i);
6067 if (file)
6068 fput(file);
6069 }
Jens Axboe6b063142019-01-10 22:13:58 -07006070#endif
6071}
6072
Jens Axboe05f3fb32019-12-09 11:22:50 -07006073static void io_file_ref_kill(struct percpu_ref *ref)
6074{
6075 struct fixed_file_data *data;
6076
6077 data = container_of(ref, struct fixed_file_data, refs);
6078 complete(&data->done);
6079}
6080
Jens Axboe6b063142019-01-10 22:13:58 -07006081static int io_sqe_files_unregister(struct io_ring_ctx *ctx)
6082{
Jens Axboe05f3fb32019-12-09 11:22:50 -07006083 struct fixed_file_data *data = ctx->file_data;
Jens Axboe65e19f52019-10-26 07:20:21 -06006084 unsigned nr_tables, i;
6085
Jens Axboe05f3fb32019-12-09 11:22:50 -07006086 if (!data)
Jens Axboe6b063142019-01-10 22:13:58 -07006087 return -ENXIO;
6088
Jens Axboe05f3fb32019-12-09 11:22:50 -07006089 percpu_ref_kill_and_confirm(&data->refs, io_file_ref_kill);
Jens Axboee46a7952020-01-17 11:15:34 -07006090 flush_work(&data->ref_work);
Jens Axboe2faf8522020-02-04 19:54:55 -07006091 wait_for_completion(&data->done);
6092 io_ring_file_ref_flush(data);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006093 percpu_ref_exit(&data->refs);
6094
Jens Axboe6b063142019-01-10 22:13:58 -07006095 __io_sqe_files_unregister(ctx);
Jens Axboe65e19f52019-10-26 07:20:21 -06006096 nr_tables = DIV_ROUND_UP(ctx->nr_user_files, IORING_MAX_FILES_TABLE);
6097 for (i = 0; i < nr_tables; i++)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006098 kfree(data->table[i].files);
6099 kfree(data->table);
6100 kfree(data);
6101 ctx->file_data = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07006102 ctx->nr_user_files = 0;
6103 return 0;
6104}
6105
Jens Axboe6c271ce2019-01-10 11:22:30 -07006106static void io_sq_thread_stop(struct io_ring_ctx *ctx)
6107{
6108 if (ctx->sqo_thread) {
Jens Axboe206aefd2019-11-07 18:27:42 -07006109 wait_for_completion(&ctx->completions[1]);
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02006110 /*
6111 * The park is a bit of a work-around, without it we get
6112 * warning spews on shutdown with SQPOLL set and affinity
6113 * set to a single CPU.
6114 */
Jens Axboe06058632019-04-13 09:26:03 -06006115 kthread_park(ctx->sqo_thread);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006116 kthread_stop(ctx->sqo_thread);
6117 ctx->sqo_thread = NULL;
6118 }
6119}
6120
Jens Axboe6b063142019-01-10 22:13:58 -07006121static void io_finish_async(struct io_ring_ctx *ctx)
6122{
Jens Axboe6c271ce2019-01-10 11:22:30 -07006123 io_sq_thread_stop(ctx);
6124
Jens Axboe561fb042019-10-24 07:25:42 -06006125 if (ctx->io_wq) {
6126 io_wq_destroy(ctx->io_wq);
6127 ctx->io_wq = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07006128 }
6129}
6130
6131#if defined(CONFIG_UNIX)
Jens Axboe6b063142019-01-10 22:13:58 -07006132/*
6133 * Ensure the UNIX gc is aware of our file set, so we are certain that
6134 * the io_uring can be safely unregistered on process exit, even if we have
6135 * loops in the file referencing.
6136 */
6137static int __io_sqe_files_scm(struct io_ring_ctx *ctx, int nr, int offset)
6138{
6139 struct sock *sk = ctx->ring_sock->sk;
6140 struct scm_fp_list *fpl;
6141 struct sk_buff *skb;
Jens Axboe08a45172019-10-03 08:11:03 -06006142 int i, nr_files;
Jens Axboe6b063142019-01-10 22:13:58 -07006143
6144 if (!capable(CAP_SYS_RESOURCE) && !capable(CAP_SYS_ADMIN)) {
6145 unsigned long inflight = ctx->user->unix_inflight + nr;
6146
6147 if (inflight > task_rlimit(current, RLIMIT_NOFILE))
6148 return -EMFILE;
6149 }
6150
6151 fpl = kzalloc(sizeof(*fpl), GFP_KERNEL);
6152 if (!fpl)
6153 return -ENOMEM;
6154
6155 skb = alloc_skb(0, GFP_KERNEL);
6156 if (!skb) {
6157 kfree(fpl);
6158 return -ENOMEM;
6159 }
6160
6161 skb->sk = sk;
Jens Axboe6b063142019-01-10 22:13:58 -07006162
Jens Axboe08a45172019-10-03 08:11:03 -06006163 nr_files = 0;
Jens Axboe6b063142019-01-10 22:13:58 -07006164 fpl->user = get_uid(ctx->user);
6165 for (i = 0; i < nr; i++) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006166 struct file *file = io_file_from_index(ctx, i + offset);
6167
6168 if (!file)
Jens Axboe08a45172019-10-03 08:11:03 -06006169 continue;
Jens Axboe65e19f52019-10-26 07:20:21 -06006170 fpl->fp[nr_files] = get_file(file);
Jens Axboe08a45172019-10-03 08:11:03 -06006171 unix_inflight(fpl->user, fpl->fp[nr_files]);
6172 nr_files++;
Jens Axboe6b063142019-01-10 22:13:58 -07006173 }
6174
Jens Axboe08a45172019-10-03 08:11:03 -06006175 if (nr_files) {
6176 fpl->max = SCM_MAX_FD;
6177 fpl->count = nr_files;
6178 UNIXCB(skb).fp = fpl;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006179 skb->destructor = unix_destruct_scm;
Jens Axboe08a45172019-10-03 08:11:03 -06006180 refcount_add(skb->truesize, &sk->sk_wmem_alloc);
6181 skb_queue_head(&sk->sk_receive_queue, skb);
Jens Axboe6b063142019-01-10 22:13:58 -07006182
Jens Axboe08a45172019-10-03 08:11:03 -06006183 for (i = 0; i < nr_files; i++)
6184 fput(fpl->fp[i]);
6185 } else {
6186 kfree_skb(skb);
6187 kfree(fpl);
6188 }
Jens Axboe6b063142019-01-10 22:13:58 -07006189
6190 return 0;
6191}
6192
6193/*
6194 * If UNIX sockets are enabled, fd passing can cause a reference cycle which
6195 * causes regular reference counting to break down. We rely on the UNIX
6196 * garbage collection to take care of this problem for us.
6197 */
6198static int io_sqe_files_scm(struct io_ring_ctx *ctx)
6199{
6200 unsigned left, total;
6201 int ret = 0;
6202
6203 total = 0;
6204 left = ctx->nr_user_files;
6205 while (left) {
6206 unsigned this_files = min_t(unsigned, left, SCM_MAX_FD);
Jens Axboe6b063142019-01-10 22:13:58 -07006207
6208 ret = __io_sqe_files_scm(ctx, this_files, total);
6209 if (ret)
6210 break;
6211 left -= this_files;
6212 total += this_files;
6213 }
6214
6215 if (!ret)
6216 return 0;
6217
6218 while (total < ctx->nr_user_files) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006219 struct file *file = io_file_from_index(ctx, total);
6220
6221 if (file)
6222 fput(file);
Jens Axboe6b063142019-01-10 22:13:58 -07006223 total++;
6224 }
6225
6226 return ret;
6227}
6228#else
6229static int io_sqe_files_scm(struct io_ring_ctx *ctx)
6230{
6231 return 0;
6232}
6233#endif
6234
Jens Axboe65e19f52019-10-26 07:20:21 -06006235static int io_sqe_alloc_file_tables(struct io_ring_ctx *ctx, unsigned nr_tables,
6236 unsigned nr_files)
6237{
6238 int i;
6239
6240 for (i = 0; i < nr_tables; i++) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006241 struct fixed_file_table *table = &ctx->file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06006242 unsigned this_files;
6243
6244 this_files = min(nr_files, IORING_MAX_FILES_TABLE);
6245 table->files = kcalloc(this_files, sizeof(struct file *),
6246 GFP_KERNEL);
6247 if (!table->files)
6248 break;
6249 nr_files -= this_files;
6250 }
6251
6252 if (i == nr_tables)
6253 return 0;
6254
6255 for (i = 0; i < nr_tables; i++) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006256 struct fixed_file_table *table = &ctx->file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06006257 kfree(table->files);
6258 }
6259 return 1;
6260}
6261
Jens Axboe05f3fb32019-12-09 11:22:50 -07006262static void io_ring_file_put(struct io_ring_ctx *ctx, struct file *file)
Jens Axboec3a31e62019-10-03 13:59:56 -06006263{
6264#if defined(CONFIG_UNIX)
Jens Axboec3a31e62019-10-03 13:59:56 -06006265 struct sock *sock = ctx->ring_sock->sk;
6266 struct sk_buff_head list, *head = &sock->sk_receive_queue;
6267 struct sk_buff *skb;
6268 int i;
6269
6270 __skb_queue_head_init(&list);
6271
6272 /*
6273 * Find the skb that holds this file in its SCM_RIGHTS. When found,
6274 * remove this entry and rearrange the file array.
6275 */
6276 skb = skb_dequeue(head);
6277 while (skb) {
6278 struct scm_fp_list *fp;
6279
6280 fp = UNIXCB(skb).fp;
6281 for (i = 0; i < fp->count; i++) {
6282 int left;
6283
6284 if (fp->fp[i] != file)
6285 continue;
6286
6287 unix_notinflight(fp->user, fp->fp[i]);
6288 left = fp->count - 1 - i;
6289 if (left) {
6290 memmove(&fp->fp[i], &fp->fp[i + 1],
6291 left * sizeof(struct file *));
6292 }
6293 fp->count--;
6294 if (!fp->count) {
6295 kfree_skb(skb);
6296 skb = NULL;
6297 } else {
6298 __skb_queue_tail(&list, skb);
6299 }
6300 fput(file);
6301 file = NULL;
6302 break;
6303 }
6304
6305 if (!file)
6306 break;
6307
6308 __skb_queue_tail(&list, skb);
6309
6310 skb = skb_dequeue(head);
6311 }
6312
6313 if (skb_peek(&list)) {
6314 spin_lock_irq(&head->lock);
6315 while ((skb = __skb_dequeue(&list)) != NULL)
6316 __skb_queue_tail(head, skb);
6317 spin_unlock_irq(&head->lock);
6318 }
6319#else
Jens Axboe05f3fb32019-12-09 11:22:50 -07006320 fput(file);
Jens Axboec3a31e62019-10-03 13:59:56 -06006321#endif
6322}
6323
Jens Axboe05f3fb32019-12-09 11:22:50 -07006324struct io_file_put {
6325 struct llist_node llist;
6326 struct file *file;
6327 struct completion *done;
6328};
6329
Jens Axboe2faf8522020-02-04 19:54:55 -07006330static void io_ring_file_ref_flush(struct fixed_file_data *data)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006331{
6332 struct io_file_put *pfile, *tmp;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006333 struct llist_node *node;
6334
Jens Axboe05f3fb32019-12-09 11:22:50 -07006335 while ((node = llist_del_all(&data->put_llist)) != NULL) {
6336 llist_for_each_entry_safe(pfile, tmp, node, llist) {
6337 io_ring_file_put(data->ctx, pfile->file);
6338 if (pfile->done)
6339 complete(pfile->done);
6340 else
6341 kfree(pfile);
6342 }
6343 }
Jens Axboe2faf8522020-02-04 19:54:55 -07006344}
Jens Axboe05f3fb32019-12-09 11:22:50 -07006345
Jens Axboe2faf8522020-02-04 19:54:55 -07006346static void io_ring_file_ref_switch(struct work_struct *work)
6347{
6348 struct fixed_file_data *data;
6349
6350 data = container_of(work, struct fixed_file_data, ref_work);
6351 io_ring_file_ref_flush(data);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006352 percpu_ref_switch_to_percpu(&data->refs);
6353}
6354
6355static void io_file_data_ref_zero(struct percpu_ref *ref)
6356{
6357 struct fixed_file_data *data;
6358
6359 data = container_of(ref, struct fixed_file_data, refs);
6360
Jens Axboe2faf8522020-02-04 19:54:55 -07006361 /*
6362 * We can't safely switch from inside this context, punt to wq. If
6363 * the table ref is going away, the table is being unregistered.
6364 * Don't queue up the async work for that case, the caller will
6365 * handle it.
6366 */
6367 if (!percpu_ref_is_dying(&data->refs))
6368 queue_work(system_wq, &data->ref_work);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006369}
6370
6371static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
6372 unsigned nr_args)
6373{
6374 __s32 __user *fds = (__s32 __user *) arg;
6375 unsigned nr_tables;
6376 struct file *file;
6377 int fd, ret = 0;
6378 unsigned i;
6379
6380 if (ctx->file_data)
6381 return -EBUSY;
6382 if (!nr_args)
6383 return -EINVAL;
6384 if (nr_args > IORING_MAX_FIXED_FILES)
6385 return -EMFILE;
6386
6387 ctx->file_data = kzalloc(sizeof(*ctx->file_data), GFP_KERNEL);
6388 if (!ctx->file_data)
6389 return -ENOMEM;
6390 ctx->file_data->ctx = ctx;
6391 init_completion(&ctx->file_data->done);
6392
6393 nr_tables = DIV_ROUND_UP(nr_args, IORING_MAX_FILES_TABLE);
6394 ctx->file_data->table = kcalloc(nr_tables,
6395 sizeof(struct fixed_file_table),
6396 GFP_KERNEL);
6397 if (!ctx->file_data->table) {
6398 kfree(ctx->file_data);
6399 ctx->file_data = NULL;
6400 return -ENOMEM;
6401 }
6402
6403 if (percpu_ref_init(&ctx->file_data->refs, io_file_data_ref_zero,
6404 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL)) {
6405 kfree(ctx->file_data->table);
6406 kfree(ctx->file_data);
6407 ctx->file_data = NULL;
6408 return -ENOMEM;
6409 }
6410 ctx->file_data->put_llist.first = NULL;
6411 INIT_WORK(&ctx->file_data->ref_work, io_ring_file_ref_switch);
6412
6413 if (io_sqe_alloc_file_tables(ctx, nr_tables, nr_args)) {
6414 percpu_ref_exit(&ctx->file_data->refs);
6415 kfree(ctx->file_data->table);
6416 kfree(ctx->file_data);
6417 ctx->file_data = NULL;
6418 return -ENOMEM;
6419 }
6420
6421 for (i = 0; i < nr_args; i++, ctx->nr_user_files++) {
6422 struct fixed_file_table *table;
6423 unsigned index;
6424
6425 ret = -EFAULT;
6426 if (copy_from_user(&fd, &fds[i], sizeof(fd)))
6427 break;
6428 /* allow sparse sets */
6429 if (fd == -1) {
6430 ret = 0;
6431 continue;
6432 }
6433
6434 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
6435 index = i & IORING_FILE_TABLE_MASK;
6436 file = fget(fd);
6437
6438 ret = -EBADF;
6439 if (!file)
6440 break;
6441
6442 /*
6443 * Don't allow io_uring instances to be registered. If UNIX
6444 * isn't enabled, then this causes a reference cycle and this
6445 * instance can never get freed. If UNIX is enabled we'll
6446 * handle it just fine, but there's still no point in allowing
6447 * a ring fd as it doesn't support regular read/write anyway.
6448 */
6449 if (file->f_op == &io_uring_fops) {
6450 fput(file);
6451 break;
6452 }
6453 ret = 0;
6454 table->files[index] = file;
6455 }
6456
6457 if (ret) {
6458 for (i = 0; i < ctx->nr_user_files; i++) {
6459 file = io_file_from_index(ctx, i);
6460 if (file)
6461 fput(file);
6462 }
6463 for (i = 0; i < nr_tables; i++)
6464 kfree(ctx->file_data->table[i].files);
6465
6466 kfree(ctx->file_data->table);
6467 kfree(ctx->file_data);
6468 ctx->file_data = NULL;
6469 ctx->nr_user_files = 0;
6470 return ret;
6471 }
6472
6473 ret = io_sqe_files_scm(ctx);
6474 if (ret)
6475 io_sqe_files_unregister(ctx);
6476
6477 return ret;
6478}
6479
Jens Axboec3a31e62019-10-03 13:59:56 -06006480static int io_sqe_file_register(struct io_ring_ctx *ctx, struct file *file,
6481 int index)
6482{
6483#if defined(CONFIG_UNIX)
6484 struct sock *sock = ctx->ring_sock->sk;
6485 struct sk_buff_head *head = &sock->sk_receive_queue;
6486 struct sk_buff *skb;
6487
6488 /*
6489 * See if we can merge this file into an existing skb SCM_RIGHTS
6490 * file set. If there's no room, fall back to allocating a new skb
6491 * and filling it in.
6492 */
6493 spin_lock_irq(&head->lock);
6494 skb = skb_peek(head);
6495 if (skb) {
6496 struct scm_fp_list *fpl = UNIXCB(skb).fp;
6497
6498 if (fpl->count < SCM_MAX_FD) {
6499 __skb_unlink(skb, head);
6500 spin_unlock_irq(&head->lock);
6501 fpl->fp[fpl->count] = get_file(file);
6502 unix_inflight(fpl->user, fpl->fp[fpl->count]);
6503 fpl->count++;
6504 spin_lock_irq(&head->lock);
6505 __skb_queue_head(head, skb);
6506 } else {
6507 skb = NULL;
6508 }
6509 }
6510 spin_unlock_irq(&head->lock);
6511
6512 if (skb) {
6513 fput(file);
6514 return 0;
6515 }
6516
6517 return __io_sqe_files_scm(ctx, 1, index);
6518#else
6519 return 0;
6520#endif
6521}
6522
Jens Axboe05f3fb32019-12-09 11:22:50 -07006523static void io_atomic_switch(struct percpu_ref *ref)
Jens Axboec3a31e62019-10-03 13:59:56 -06006524{
Jens Axboe05f3fb32019-12-09 11:22:50 -07006525 struct fixed_file_data *data;
6526
Jens Axboedd3db2a2020-02-26 10:23:43 -07006527 /*
6528 * Juggle reference to ensure we hit zero, if needed, so we can
6529 * switch back to percpu mode
6530 */
Jens Axboe05f3fb32019-12-09 11:22:50 -07006531 data = container_of(ref, struct fixed_file_data, refs);
Jens Axboedd3db2a2020-02-26 10:23:43 -07006532 percpu_ref_put(&data->refs);
6533 percpu_ref_get(&data->refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006534}
6535
6536static bool io_queue_file_removal(struct fixed_file_data *data,
6537 struct file *file)
6538{
6539 struct io_file_put *pfile, pfile_stack;
6540 DECLARE_COMPLETION_ONSTACK(done);
6541
6542 /*
6543 * If we fail allocating the struct we need for doing async reomval
6544 * of this file, just punt to sync and wait for it.
6545 */
6546 pfile = kzalloc(sizeof(*pfile), GFP_KERNEL);
6547 if (!pfile) {
6548 pfile = &pfile_stack;
6549 pfile->done = &done;
6550 }
6551
6552 pfile->file = file;
6553 llist_add(&pfile->llist, &data->put_llist);
6554
6555 if (pfile == &pfile_stack) {
Jens Axboedd3db2a2020-02-26 10:23:43 -07006556 percpu_ref_switch_to_atomic(&data->refs, io_atomic_switch);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006557 wait_for_completion(&done);
6558 flush_work(&data->ref_work);
6559 return false;
6560 }
6561
6562 return true;
6563}
6564
6565static int __io_sqe_files_update(struct io_ring_ctx *ctx,
6566 struct io_uring_files_update *up,
6567 unsigned nr_args)
6568{
6569 struct fixed_file_data *data = ctx->file_data;
6570 bool ref_switch = false;
6571 struct file *file;
Jens Axboec3a31e62019-10-03 13:59:56 -06006572 __s32 __user *fds;
6573 int fd, i, err;
6574 __u32 done;
6575
Jens Axboe05f3fb32019-12-09 11:22:50 -07006576 if (check_add_overflow(up->offset, nr_args, &done))
Jens Axboec3a31e62019-10-03 13:59:56 -06006577 return -EOVERFLOW;
6578 if (done > ctx->nr_user_files)
6579 return -EINVAL;
6580
6581 done = 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006582 fds = u64_to_user_ptr(up->fds);
Jens Axboec3a31e62019-10-03 13:59:56 -06006583 while (nr_args) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006584 struct fixed_file_table *table;
6585 unsigned index;
6586
Jens Axboec3a31e62019-10-03 13:59:56 -06006587 err = 0;
6588 if (copy_from_user(&fd, &fds[done], sizeof(fd))) {
6589 err = -EFAULT;
6590 break;
6591 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07006592 i = array_index_nospec(up->offset, ctx->nr_user_files);
6593 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
Jens Axboe65e19f52019-10-26 07:20:21 -06006594 index = i & IORING_FILE_TABLE_MASK;
6595 if (table->files[index]) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006596 file = io_file_from_index(ctx, index);
Jens Axboe65e19f52019-10-26 07:20:21 -06006597 table->files[index] = NULL;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006598 if (io_queue_file_removal(data, file))
6599 ref_switch = true;
Jens Axboec3a31e62019-10-03 13:59:56 -06006600 }
6601 if (fd != -1) {
Jens Axboec3a31e62019-10-03 13:59:56 -06006602 file = fget(fd);
6603 if (!file) {
6604 err = -EBADF;
6605 break;
6606 }
6607 /*
6608 * Don't allow io_uring instances to be registered. If
6609 * UNIX isn't enabled, then this causes a reference
6610 * cycle and this instance can never get freed. If UNIX
6611 * is enabled we'll handle it just fine, but there's
6612 * still no point in allowing a ring fd as it doesn't
6613 * support regular read/write anyway.
6614 */
6615 if (file->f_op == &io_uring_fops) {
6616 fput(file);
6617 err = -EBADF;
6618 break;
6619 }
Jens Axboe65e19f52019-10-26 07:20:21 -06006620 table->files[index] = file;
Jens Axboec3a31e62019-10-03 13:59:56 -06006621 err = io_sqe_file_register(ctx, file, i);
6622 if (err)
6623 break;
6624 }
6625 nr_args--;
6626 done++;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006627 up->offset++;
6628 }
6629
Jens Axboedd3db2a2020-02-26 10:23:43 -07006630 if (ref_switch)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006631 percpu_ref_switch_to_atomic(&data->refs, io_atomic_switch);
Jens Axboec3a31e62019-10-03 13:59:56 -06006632
6633 return done ? done : err;
6634}
Jens Axboe05f3fb32019-12-09 11:22:50 -07006635static int io_sqe_files_update(struct io_ring_ctx *ctx, void __user *arg,
6636 unsigned nr_args)
6637{
6638 struct io_uring_files_update up;
6639
6640 if (!ctx->file_data)
6641 return -ENXIO;
6642 if (!nr_args)
6643 return -EINVAL;
6644 if (copy_from_user(&up, arg, sizeof(up)))
6645 return -EFAULT;
6646 if (up.resv)
6647 return -EINVAL;
6648
6649 return __io_sqe_files_update(ctx, &up, nr_args);
6650}
Jens Axboec3a31e62019-10-03 13:59:56 -06006651
Pavel Begunkove9fd9392020-03-04 16:14:12 +03006652static void io_free_work(struct io_wq_work *work)
Jens Axboe7d723062019-11-12 22:31:31 -07006653{
6654 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
6655
Pavel Begunkove9fd9392020-03-04 16:14:12 +03006656 /* Consider that io_steal_work() relies on this ref */
Jens Axboe7d723062019-11-12 22:31:31 -07006657 io_put_req(req);
6658}
6659
Pavel Begunkov24369c22020-01-28 03:15:48 +03006660static int io_init_wq_offload(struct io_ring_ctx *ctx,
6661 struct io_uring_params *p)
6662{
6663 struct io_wq_data data;
6664 struct fd f;
6665 struct io_ring_ctx *ctx_attach;
6666 unsigned int concurrency;
6667 int ret = 0;
6668
6669 data.user = ctx->user;
Pavel Begunkove9fd9392020-03-04 16:14:12 +03006670 data.free_work = io_free_work;
Pavel Begunkov24369c22020-01-28 03:15:48 +03006671
6672 if (!(p->flags & IORING_SETUP_ATTACH_WQ)) {
6673 /* Do QD, or 4 * CPUS, whatever is smallest */
6674 concurrency = min(ctx->sq_entries, 4 * num_online_cpus());
6675
6676 ctx->io_wq = io_wq_create(concurrency, &data);
6677 if (IS_ERR(ctx->io_wq)) {
6678 ret = PTR_ERR(ctx->io_wq);
6679 ctx->io_wq = NULL;
6680 }
6681 return ret;
6682 }
6683
6684 f = fdget(p->wq_fd);
6685 if (!f.file)
6686 return -EBADF;
6687
6688 if (f.file->f_op != &io_uring_fops) {
6689 ret = -EINVAL;
6690 goto out_fput;
6691 }
6692
6693 ctx_attach = f.file->private_data;
6694 /* @io_wq is protected by holding the fd */
6695 if (!io_wq_get(ctx_attach->io_wq, &data)) {
6696 ret = -EINVAL;
6697 goto out_fput;
6698 }
6699
6700 ctx->io_wq = ctx_attach->io_wq;
6701out_fput:
6702 fdput(f);
6703 return ret;
6704}
6705
Jens Axboe6c271ce2019-01-10 11:22:30 -07006706static int io_sq_offload_start(struct io_ring_ctx *ctx,
6707 struct io_uring_params *p)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006708{
6709 int ret;
6710
Jens Axboe6c271ce2019-01-10 11:22:30 -07006711 init_waitqueue_head(&ctx->sqo_wait);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006712 mmgrab(current->mm);
6713 ctx->sqo_mm = current->mm;
6714
Jens Axboe6c271ce2019-01-10 11:22:30 -07006715 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboe3ec482d2019-04-08 10:51:01 -06006716 ret = -EPERM;
6717 if (!capable(CAP_SYS_ADMIN))
6718 goto err;
6719
Jens Axboe917257d2019-04-13 09:28:55 -06006720 ctx->sq_thread_idle = msecs_to_jiffies(p->sq_thread_idle);
6721 if (!ctx->sq_thread_idle)
6722 ctx->sq_thread_idle = HZ;
6723
Jens Axboe6c271ce2019-01-10 11:22:30 -07006724 if (p->flags & IORING_SETUP_SQ_AFF) {
Jens Axboe44a9bd12019-05-14 20:00:30 -06006725 int cpu = p->sq_thread_cpu;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006726
Jens Axboe917257d2019-04-13 09:28:55 -06006727 ret = -EINVAL;
Jens Axboe44a9bd12019-05-14 20:00:30 -06006728 if (cpu >= nr_cpu_ids)
6729 goto err;
Shenghui Wang7889f442019-05-07 16:03:19 +08006730 if (!cpu_online(cpu))
Jens Axboe917257d2019-04-13 09:28:55 -06006731 goto err;
6732
Jens Axboe6c271ce2019-01-10 11:22:30 -07006733 ctx->sqo_thread = kthread_create_on_cpu(io_sq_thread,
6734 ctx, cpu,
6735 "io_uring-sq");
6736 } else {
6737 ctx->sqo_thread = kthread_create(io_sq_thread, ctx,
6738 "io_uring-sq");
6739 }
6740 if (IS_ERR(ctx->sqo_thread)) {
6741 ret = PTR_ERR(ctx->sqo_thread);
6742 ctx->sqo_thread = NULL;
6743 goto err;
6744 }
6745 wake_up_process(ctx->sqo_thread);
6746 } else if (p->flags & IORING_SETUP_SQ_AFF) {
6747 /* Can't have SQ_AFF without SQPOLL */
6748 ret = -EINVAL;
6749 goto err;
6750 }
6751
Pavel Begunkov24369c22020-01-28 03:15:48 +03006752 ret = io_init_wq_offload(ctx, p);
6753 if (ret)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006754 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006755
6756 return 0;
6757err:
Jens Axboe54a91f32019-09-10 09:15:04 -06006758 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006759 mmdrop(ctx->sqo_mm);
6760 ctx->sqo_mm = NULL;
6761 return ret;
6762}
6763
6764static void io_unaccount_mem(struct user_struct *user, unsigned long nr_pages)
6765{
6766 atomic_long_sub(nr_pages, &user->locked_vm);
6767}
6768
6769static int io_account_mem(struct user_struct *user, unsigned long nr_pages)
6770{
6771 unsigned long page_limit, cur_pages, new_pages;
6772
6773 /* Don't allow more pages than we can safely lock */
6774 page_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
6775
6776 do {
6777 cur_pages = atomic_long_read(&user->locked_vm);
6778 new_pages = cur_pages + nr_pages;
6779 if (new_pages > page_limit)
6780 return -ENOMEM;
6781 } while (atomic_long_cmpxchg(&user->locked_vm, cur_pages,
6782 new_pages) != cur_pages);
6783
6784 return 0;
6785}
6786
6787static void io_mem_free(void *ptr)
6788{
Mark Rutland52e04ef2019-04-30 17:30:21 +01006789 struct page *page;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006790
Mark Rutland52e04ef2019-04-30 17:30:21 +01006791 if (!ptr)
6792 return;
6793
6794 page = virt_to_head_page(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006795 if (put_page_testzero(page))
6796 free_compound_page(page);
6797}
6798
6799static void *io_mem_alloc(size_t size)
6800{
6801 gfp_t gfp_flags = GFP_KERNEL | __GFP_ZERO | __GFP_NOWARN | __GFP_COMP |
6802 __GFP_NORETRY;
6803
6804 return (void *) __get_free_pages(gfp_flags, get_order(size));
6805}
6806
Hristo Venev75b28af2019-08-26 17:23:46 +00006807static unsigned long rings_size(unsigned sq_entries, unsigned cq_entries,
6808 size_t *sq_offset)
6809{
6810 struct io_rings *rings;
6811 size_t off, sq_array_size;
6812
6813 off = struct_size(rings, cqes, cq_entries);
6814 if (off == SIZE_MAX)
6815 return SIZE_MAX;
6816
6817#ifdef CONFIG_SMP
6818 off = ALIGN(off, SMP_CACHE_BYTES);
6819 if (off == 0)
6820 return SIZE_MAX;
6821#endif
6822
6823 sq_array_size = array_size(sizeof(u32), sq_entries);
6824 if (sq_array_size == SIZE_MAX)
6825 return SIZE_MAX;
6826
6827 if (check_add_overflow(off, sq_array_size, &off))
6828 return SIZE_MAX;
6829
6830 if (sq_offset)
6831 *sq_offset = off;
6832
6833 return off;
6834}
6835
Jens Axboe2b188cc2019-01-07 10:46:33 -07006836static unsigned long ring_pages(unsigned sq_entries, unsigned cq_entries)
6837{
Hristo Venev75b28af2019-08-26 17:23:46 +00006838 size_t pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006839
Hristo Venev75b28af2019-08-26 17:23:46 +00006840 pages = (size_t)1 << get_order(
6841 rings_size(sq_entries, cq_entries, NULL));
6842 pages += (size_t)1 << get_order(
6843 array_size(sizeof(struct io_uring_sqe), sq_entries));
Jens Axboe2b188cc2019-01-07 10:46:33 -07006844
Hristo Venev75b28af2019-08-26 17:23:46 +00006845 return pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006846}
6847
Jens Axboeedafcce2019-01-09 09:16:05 -07006848static int io_sqe_buffer_unregister(struct io_ring_ctx *ctx)
6849{
6850 int i, j;
6851
6852 if (!ctx->user_bufs)
6853 return -ENXIO;
6854
6855 for (i = 0; i < ctx->nr_user_bufs; i++) {
6856 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
6857
6858 for (j = 0; j < imu->nr_bvecs; j++)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08006859 unpin_user_page(imu->bvec[j].bv_page);
Jens Axboeedafcce2019-01-09 09:16:05 -07006860
6861 if (ctx->account_mem)
6862 io_unaccount_mem(ctx->user, imu->nr_bvecs);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006863 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07006864 imu->nr_bvecs = 0;
6865 }
6866
6867 kfree(ctx->user_bufs);
6868 ctx->user_bufs = NULL;
6869 ctx->nr_user_bufs = 0;
6870 return 0;
6871}
6872
6873static int io_copy_iov(struct io_ring_ctx *ctx, struct iovec *dst,
6874 void __user *arg, unsigned index)
6875{
6876 struct iovec __user *src;
6877
6878#ifdef CONFIG_COMPAT
6879 if (ctx->compat) {
6880 struct compat_iovec __user *ciovs;
6881 struct compat_iovec ciov;
6882
6883 ciovs = (struct compat_iovec __user *) arg;
6884 if (copy_from_user(&ciov, &ciovs[index], sizeof(ciov)))
6885 return -EFAULT;
6886
Jens Axboed55e5f52019-12-11 16:12:15 -07006887 dst->iov_base = u64_to_user_ptr((u64)ciov.iov_base);
Jens Axboeedafcce2019-01-09 09:16:05 -07006888 dst->iov_len = ciov.iov_len;
6889 return 0;
6890 }
6891#endif
6892 src = (struct iovec __user *) arg;
6893 if (copy_from_user(dst, &src[index], sizeof(*dst)))
6894 return -EFAULT;
6895 return 0;
6896}
6897
6898static int io_sqe_buffer_register(struct io_ring_ctx *ctx, void __user *arg,
6899 unsigned nr_args)
6900{
6901 struct vm_area_struct **vmas = NULL;
6902 struct page **pages = NULL;
6903 int i, j, got_pages = 0;
6904 int ret = -EINVAL;
6905
6906 if (ctx->user_bufs)
6907 return -EBUSY;
6908 if (!nr_args || nr_args > UIO_MAXIOV)
6909 return -EINVAL;
6910
6911 ctx->user_bufs = kcalloc(nr_args, sizeof(struct io_mapped_ubuf),
6912 GFP_KERNEL);
6913 if (!ctx->user_bufs)
6914 return -ENOMEM;
6915
6916 for (i = 0; i < nr_args; i++) {
6917 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
6918 unsigned long off, start, end, ubuf;
6919 int pret, nr_pages;
6920 struct iovec iov;
6921 size_t size;
6922
6923 ret = io_copy_iov(ctx, &iov, arg, i);
6924 if (ret)
Pavel Begunkova2786822019-05-26 12:35:47 +03006925 goto err;
Jens Axboeedafcce2019-01-09 09:16:05 -07006926
6927 /*
6928 * Don't impose further limits on the size and buffer
6929 * constraints here, we'll -EINVAL later when IO is
6930 * submitted if they are wrong.
6931 */
6932 ret = -EFAULT;
6933 if (!iov.iov_base || !iov.iov_len)
6934 goto err;
6935
6936 /* arbitrary limit, but we need something */
6937 if (iov.iov_len > SZ_1G)
6938 goto err;
6939
6940 ubuf = (unsigned long) iov.iov_base;
6941 end = (ubuf + iov.iov_len + PAGE_SIZE - 1) >> PAGE_SHIFT;
6942 start = ubuf >> PAGE_SHIFT;
6943 nr_pages = end - start;
6944
6945 if (ctx->account_mem) {
6946 ret = io_account_mem(ctx->user, nr_pages);
6947 if (ret)
6948 goto err;
6949 }
6950
6951 ret = 0;
6952 if (!pages || nr_pages > got_pages) {
6953 kfree(vmas);
6954 kfree(pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006955 pages = kvmalloc_array(nr_pages, sizeof(struct page *),
Jens Axboeedafcce2019-01-09 09:16:05 -07006956 GFP_KERNEL);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006957 vmas = kvmalloc_array(nr_pages,
Jens Axboeedafcce2019-01-09 09:16:05 -07006958 sizeof(struct vm_area_struct *),
6959 GFP_KERNEL);
6960 if (!pages || !vmas) {
6961 ret = -ENOMEM;
6962 if (ctx->account_mem)
6963 io_unaccount_mem(ctx->user, nr_pages);
6964 goto err;
6965 }
6966 got_pages = nr_pages;
6967 }
6968
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006969 imu->bvec = kvmalloc_array(nr_pages, sizeof(struct bio_vec),
Jens Axboeedafcce2019-01-09 09:16:05 -07006970 GFP_KERNEL);
6971 ret = -ENOMEM;
6972 if (!imu->bvec) {
6973 if (ctx->account_mem)
6974 io_unaccount_mem(ctx->user, nr_pages);
6975 goto err;
6976 }
6977
6978 ret = 0;
6979 down_read(&current->mm->mmap_sem);
John Hubbard2113b052020-01-30 22:13:13 -08006980 pret = pin_user_pages(ubuf, nr_pages,
Ira Weiny932f4a62019-05-13 17:17:03 -07006981 FOLL_WRITE | FOLL_LONGTERM,
6982 pages, vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07006983 if (pret == nr_pages) {
6984 /* don't support file backed memory */
6985 for (j = 0; j < nr_pages; j++) {
6986 struct vm_area_struct *vma = vmas[j];
6987
6988 if (vma->vm_file &&
6989 !is_file_hugepages(vma->vm_file)) {
6990 ret = -EOPNOTSUPP;
6991 break;
6992 }
6993 }
6994 } else {
6995 ret = pret < 0 ? pret : -EFAULT;
6996 }
6997 up_read(&current->mm->mmap_sem);
6998 if (ret) {
6999 /*
7000 * if we did partial map, or found file backed vmas,
7001 * release any pages we did get
7002 */
John Hubbard27c4d3a2019-08-04 19:32:06 -07007003 if (pret > 0)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08007004 unpin_user_pages(pages, pret);
Jens Axboeedafcce2019-01-09 09:16:05 -07007005 if (ctx->account_mem)
7006 io_unaccount_mem(ctx->user, nr_pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007007 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07007008 goto err;
7009 }
7010
7011 off = ubuf & ~PAGE_MASK;
7012 size = iov.iov_len;
7013 for (j = 0; j < nr_pages; j++) {
7014 size_t vec_len;
7015
7016 vec_len = min_t(size_t, size, PAGE_SIZE - off);
7017 imu->bvec[j].bv_page = pages[j];
7018 imu->bvec[j].bv_len = vec_len;
7019 imu->bvec[j].bv_offset = off;
7020 off = 0;
7021 size -= vec_len;
7022 }
7023 /* store original address for later verification */
7024 imu->ubuf = ubuf;
7025 imu->len = iov.iov_len;
7026 imu->nr_bvecs = nr_pages;
7027
7028 ctx->nr_user_bufs++;
7029 }
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007030 kvfree(pages);
7031 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007032 return 0;
7033err:
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007034 kvfree(pages);
7035 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007036 io_sqe_buffer_unregister(ctx);
7037 return ret;
7038}
7039
Jens Axboe9b402842019-04-11 11:45:41 -06007040static int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg)
7041{
7042 __s32 __user *fds = arg;
7043 int fd;
7044
7045 if (ctx->cq_ev_fd)
7046 return -EBUSY;
7047
7048 if (copy_from_user(&fd, fds, sizeof(*fds)))
7049 return -EFAULT;
7050
7051 ctx->cq_ev_fd = eventfd_ctx_fdget(fd);
7052 if (IS_ERR(ctx->cq_ev_fd)) {
7053 int ret = PTR_ERR(ctx->cq_ev_fd);
7054 ctx->cq_ev_fd = NULL;
7055 return ret;
7056 }
7057
7058 return 0;
7059}
7060
7061static int io_eventfd_unregister(struct io_ring_ctx *ctx)
7062{
7063 if (ctx->cq_ev_fd) {
7064 eventfd_ctx_put(ctx->cq_ev_fd);
7065 ctx->cq_ev_fd = NULL;
7066 return 0;
7067 }
7068
7069 return -ENXIO;
7070}
7071
Jens Axboe5a2e7452020-02-23 16:23:11 -07007072static int __io_destroy_buffers(int id, void *p, void *data)
7073{
7074 struct io_ring_ctx *ctx = data;
7075 struct io_buffer *buf = p;
7076
Jens Axboe067524e2020-03-02 16:32:28 -07007077 __io_remove_buffers(ctx, buf, id, -1U);
Jens Axboe5a2e7452020-02-23 16:23:11 -07007078 return 0;
7079}
7080
7081static void io_destroy_buffers(struct io_ring_ctx *ctx)
7082{
7083 idr_for_each(&ctx->io_buffer_idr, __io_destroy_buffers, ctx);
7084 idr_destroy(&ctx->io_buffer_idr);
7085}
7086
Jens Axboe2b188cc2019-01-07 10:46:33 -07007087static void io_ring_ctx_free(struct io_ring_ctx *ctx)
7088{
Jens Axboe6b063142019-01-10 22:13:58 -07007089 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007090 if (ctx->sqo_mm)
7091 mmdrop(ctx->sqo_mm);
Jens Axboedef596e2019-01-09 08:59:42 -07007092
7093 io_iopoll_reap_events(ctx);
Jens Axboeedafcce2019-01-09 09:16:05 -07007094 io_sqe_buffer_unregister(ctx);
Jens Axboe6b063142019-01-10 22:13:58 -07007095 io_sqe_files_unregister(ctx);
Jens Axboe9b402842019-04-11 11:45:41 -06007096 io_eventfd_unregister(ctx);
Jens Axboe5a2e7452020-02-23 16:23:11 -07007097 io_destroy_buffers(ctx);
Jens Axboe41726c92020-02-23 13:11:42 -07007098 idr_destroy(&ctx->personality_idr);
Jens Axboedef596e2019-01-09 08:59:42 -07007099
Jens Axboe2b188cc2019-01-07 10:46:33 -07007100#if defined(CONFIG_UNIX)
Eric Biggers355e8d22019-06-12 14:58:43 -07007101 if (ctx->ring_sock) {
7102 ctx->ring_sock->file = NULL; /* so that iput() is called */
Jens Axboe2b188cc2019-01-07 10:46:33 -07007103 sock_release(ctx->ring_sock);
Eric Biggers355e8d22019-06-12 14:58:43 -07007104 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007105#endif
7106
Hristo Venev75b28af2019-08-26 17:23:46 +00007107 io_mem_free(ctx->rings);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007108 io_mem_free(ctx->sq_sqes);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007109
7110 percpu_ref_exit(&ctx->refs);
7111 if (ctx->account_mem)
7112 io_unaccount_mem(ctx->user,
7113 ring_pages(ctx->sq_entries, ctx->cq_entries));
7114 free_uid(ctx->user);
Jens Axboe181e4482019-11-25 08:52:30 -07007115 put_cred(ctx->creds);
Jens Axboe206aefd2019-11-07 18:27:42 -07007116 kfree(ctx->completions);
Jens Axboe78076bb2019-12-04 19:56:40 -07007117 kfree(ctx->cancel_hash);
Jens Axboe0ddf92e2019-11-08 08:52:53 -07007118 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007119 kfree(ctx);
7120}
7121
7122static __poll_t io_uring_poll(struct file *file, poll_table *wait)
7123{
7124 struct io_ring_ctx *ctx = file->private_data;
7125 __poll_t mask = 0;
7126
7127 poll_wait(file, &ctx->cq_wait, wait);
Stefan Bühler4f7067c2019-04-24 23:54:17 +02007128 /*
7129 * synchronizes with barrier from wq_has_sleeper call in
7130 * io_commit_cqring
7131 */
Jens Axboe2b188cc2019-01-07 10:46:33 -07007132 smp_rmb();
Hristo Venev75b28af2019-08-26 17:23:46 +00007133 if (READ_ONCE(ctx->rings->sq.tail) - ctx->cached_sq_head !=
7134 ctx->rings->sq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007135 mask |= EPOLLOUT | EPOLLWRNORM;
Stefano Garzarella63e5d812020-02-07 13:18:28 +01007136 if (io_cqring_events(ctx, false))
Jens Axboe2b188cc2019-01-07 10:46:33 -07007137 mask |= EPOLLIN | EPOLLRDNORM;
7138
7139 return mask;
7140}
7141
7142static int io_uring_fasync(int fd, struct file *file, int on)
7143{
7144 struct io_ring_ctx *ctx = file->private_data;
7145
7146 return fasync_helper(fd, file, on, &ctx->cq_fasync);
7147}
7148
Jens Axboe071698e2020-01-28 10:04:42 -07007149static int io_remove_personalities(int id, void *p, void *data)
7150{
7151 struct io_ring_ctx *ctx = data;
7152 const struct cred *cred;
7153
7154 cred = idr_remove(&ctx->personality_idr, id);
7155 if (cred)
7156 put_cred(cred);
7157 return 0;
7158}
7159
Jens Axboe2b188cc2019-01-07 10:46:33 -07007160static void io_ring_ctx_wait_and_kill(struct io_ring_ctx *ctx)
7161{
7162 mutex_lock(&ctx->uring_lock);
7163 percpu_ref_kill(&ctx->refs);
7164 mutex_unlock(&ctx->uring_lock);
7165
Jens Axboedf069d82020-02-04 16:48:34 -07007166 /*
7167 * Wait for sq thread to idle, if we have one. It won't spin on new
7168 * work after we've killed the ctx ref above. This is important to do
7169 * before we cancel existing commands, as the thread could otherwise
7170 * be queueing new work post that. If that's work we need to cancel,
7171 * it could cause shutdown to hang.
7172 */
7173 while (ctx->sqo_thread && !wq_has_sleeper(&ctx->sqo_wait))
7174 cpu_relax();
7175
Jens Axboe5262f562019-09-17 12:26:57 -06007176 io_kill_timeouts(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07007177 io_poll_remove_all(ctx);
Jens Axboe561fb042019-10-24 07:25:42 -06007178
7179 if (ctx->io_wq)
7180 io_wq_cancel_all(ctx->io_wq);
7181
Jens Axboedef596e2019-01-09 08:59:42 -07007182 io_iopoll_reap_events(ctx);
Jens Axboe15dff282019-11-13 09:09:23 -07007183 /* if we failed setting up the ctx, we might not have any rings */
7184 if (ctx->rings)
7185 io_cqring_overflow_flush(ctx, true);
Jens Axboe071698e2020-01-28 10:04:42 -07007186 idr_for_each(&ctx->personality_idr, io_remove_personalities, ctx);
Jens Axboe206aefd2019-11-07 18:27:42 -07007187 wait_for_completion(&ctx->completions[0]);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007188 io_ring_ctx_free(ctx);
7189}
7190
7191static int io_uring_release(struct inode *inode, struct file *file)
7192{
7193 struct io_ring_ctx *ctx = file->private_data;
7194
7195 file->private_data = NULL;
7196 io_ring_ctx_wait_and_kill(ctx);
7197 return 0;
7198}
7199
Jens Axboefcb323c2019-10-24 12:39:47 -06007200static void io_uring_cancel_files(struct io_ring_ctx *ctx,
7201 struct files_struct *files)
7202{
7203 struct io_kiocb *req;
7204 DEFINE_WAIT(wait);
7205
7206 while (!list_empty_careful(&ctx->inflight_list)) {
Jens Axboe768134d2019-11-10 20:30:53 -07007207 struct io_kiocb *cancel_req = NULL;
Jens Axboefcb323c2019-10-24 12:39:47 -06007208
7209 spin_lock_irq(&ctx->inflight_lock);
7210 list_for_each_entry(req, &ctx->inflight_list, inflight_entry) {
Jens Axboe768134d2019-11-10 20:30:53 -07007211 if (req->work.files != files)
7212 continue;
7213 /* req is being completed, ignore */
7214 if (!refcount_inc_not_zero(&req->refs))
7215 continue;
7216 cancel_req = req;
7217 break;
Jens Axboefcb323c2019-10-24 12:39:47 -06007218 }
Jens Axboe768134d2019-11-10 20:30:53 -07007219 if (cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06007220 prepare_to_wait(&ctx->inflight_wait, &wait,
Jens Axboe768134d2019-11-10 20:30:53 -07007221 TASK_UNINTERRUPTIBLE);
Jens Axboefcb323c2019-10-24 12:39:47 -06007222 spin_unlock_irq(&ctx->inflight_lock);
7223
Jens Axboe768134d2019-11-10 20:30:53 -07007224 /* We need to keep going until we don't find a matching req */
7225 if (!cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06007226 break;
Bob Liu2f6d9b92019-11-13 18:06:24 +08007227
Jens Axboe2ca10252020-02-13 17:17:35 -07007228 if (cancel_req->flags & REQ_F_OVERFLOW) {
7229 spin_lock_irq(&ctx->completion_lock);
7230 list_del(&cancel_req->list);
7231 cancel_req->flags &= ~REQ_F_OVERFLOW;
7232 if (list_empty(&ctx->cq_overflow_list)) {
7233 clear_bit(0, &ctx->sq_check_overflow);
7234 clear_bit(0, &ctx->cq_check_overflow);
7235 }
7236 spin_unlock_irq(&ctx->completion_lock);
7237
7238 WRITE_ONCE(ctx->rings->cq_overflow,
7239 atomic_inc_return(&ctx->cached_cq_overflow));
7240
7241 /*
7242 * Put inflight ref and overflow ref. If that's
7243 * all we had, then we're done with this request.
7244 */
7245 if (refcount_sub_and_test(2, &cancel_req->refs)) {
7246 io_put_req(cancel_req);
7247 continue;
7248 }
7249 }
7250
Bob Liu2f6d9b92019-11-13 18:06:24 +08007251 io_wq_cancel_work(ctx->io_wq, &cancel_req->work);
7252 io_put_req(cancel_req);
Jens Axboefcb323c2019-10-24 12:39:47 -06007253 schedule();
7254 }
Jens Axboe768134d2019-11-10 20:30:53 -07007255 finish_wait(&ctx->inflight_wait, &wait);
Jens Axboefcb323c2019-10-24 12:39:47 -06007256}
7257
7258static int io_uring_flush(struct file *file, void *data)
7259{
7260 struct io_ring_ctx *ctx = file->private_data;
7261
7262 io_uring_cancel_files(ctx, data);
Jens Axboe6ab23142020-02-08 20:23:59 -07007263
7264 /*
7265 * If the task is going away, cancel work it may have pending
7266 */
7267 if (fatal_signal_pending(current) || (current->flags & PF_EXITING))
7268 io_wq_cancel_pid(ctx->io_wq, task_pid_vnr(current));
7269
Jens Axboefcb323c2019-10-24 12:39:47 -06007270 return 0;
7271}
7272
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007273static void *io_uring_validate_mmap_request(struct file *file,
7274 loff_t pgoff, size_t sz)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007275{
Jens Axboe2b188cc2019-01-07 10:46:33 -07007276 struct io_ring_ctx *ctx = file->private_data;
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007277 loff_t offset = pgoff << PAGE_SHIFT;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007278 struct page *page;
7279 void *ptr;
7280
7281 switch (offset) {
7282 case IORING_OFF_SQ_RING:
Hristo Venev75b28af2019-08-26 17:23:46 +00007283 case IORING_OFF_CQ_RING:
7284 ptr = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007285 break;
7286 case IORING_OFF_SQES:
7287 ptr = ctx->sq_sqes;
7288 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007289 default:
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007290 return ERR_PTR(-EINVAL);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007291 }
7292
7293 page = virt_to_head_page(ptr);
Matthew Wilcox (Oracle)a50b8542019-09-23 15:34:25 -07007294 if (sz > page_size(page))
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007295 return ERR_PTR(-EINVAL);
7296
7297 return ptr;
7298}
7299
7300#ifdef CONFIG_MMU
7301
7302static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
7303{
7304 size_t sz = vma->vm_end - vma->vm_start;
7305 unsigned long pfn;
7306 void *ptr;
7307
7308 ptr = io_uring_validate_mmap_request(file, vma->vm_pgoff, sz);
7309 if (IS_ERR(ptr))
7310 return PTR_ERR(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007311
7312 pfn = virt_to_phys(ptr) >> PAGE_SHIFT;
7313 return remap_pfn_range(vma, vma->vm_start, pfn, sz, vma->vm_page_prot);
7314}
7315
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007316#else /* !CONFIG_MMU */
7317
7318static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
7319{
7320 return vma->vm_flags & (VM_SHARED | VM_MAYSHARE) ? 0 : -EINVAL;
7321}
7322
7323static unsigned int io_uring_nommu_mmap_capabilities(struct file *file)
7324{
7325 return NOMMU_MAP_DIRECT | NOMMU_MAP_READ | NOMMU_MAP_WRITE;
7326}
7327
7328static unsigned long io_uring_nommu_get_unmapped_area(struct file *file,
7329 unsigned long addr, unsigned long len,
7330 unsigned long pgoff, unsigned long flags)
7331{
7332 void *ptr;
7333
7334 ptr = io_uring_validate_mmap_request(file, pgoff, len);
7335 if (IS_ERR(ptr))
7336 return PTR_ERR(ptr);
7337
7338 return (unsigned long) ptr;
7339}
7340
7341#endif /* !CONFIG_MMU */
7342
Jens Axboe2b188cc2019-01-07 10:46:33 -07007343SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
7344 u32, min_complete, u32, flags, const sigset_t __user *, sig,
7345 size_t, sigsz)
7346{
7347 struct io_ring_ctx *ctx;
7348 long ret = -EBADF;
7349 int submitted = 0;
7350 struct fd f;
7351
Jens Axboeb41e9852020-02-17 09:52:41 -07007352 if (current->task_works)
7353 task_work_run();
7354
Jens Axboe6c271ce2019-01-10 11:22:30 -07007355 if (flags & ~(IORING_ENTER_GETEVENTS | IORING_ENTER_SQ_WAKEUP))
Jens Axboe2b188cc2019-01-07 10:46:33 -07007356 return -EINVAL;
7357
7358 f = fdget(fd);
7359 if (!f.file)
7360 return -EBADF;
7361
7362 ret = -EOPNOTSUPP;
7363 if (f.file->f_op != &io_uring_fops)
7364 goto out_fput;
7365
7366 ret = -ENXIO;
7367 ctx = f.file->private_data;
7368 if (!percpu_ref_tryget(&ctx->refs))
7369 goto out_fput;
7370
Jens Axboe6c271ce2019-01-10 11:22:30 -07007371 /*
7372 * For SQ polling, the thread will do all submissions and completions.
7373 * Just return the requested submit count, and wake the thread if
7374 * we were asked to.
7375 */
Jens Axboeb2a9ead2019-09-12 14:19:16 -06007376 ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007377 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboec1edbf52019-11-10 16:56:04 -07007378 if (!list_empty_careful(&ctx->cq_overflow_list))
7379 io_cqring_overflow_flush(ctx, false);
Jens Axboe6c271ce2019-01-10 11:22:30 -07007380 if (flags & IORING_ENTER_SQ_WAKEUP)
7381 wake_up(&ctx->sqo_wait);
7382 submitted = to_submit;
Jens Axboeb2a9ead2019-09-12 14:19:16 -06007383 } else if (to_submit) {
Pavel Begunkovae9428c2019-11-06 00:22:14 +03007384 struct mm_struct *cur_mm;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007385
7386 mutex_lock(&ctx->uring_lock);
Pavel Begunkovae9428c2019-11-06 00:22:14 +03007387 /* already have mm, so io_submit_sqes() won't try to grab it */
7388 cur_mm = ctx->sqo_mm;
7389 submitted = io_submit_sqes(ctx, to_submit, f.file, fd,
7390 &cur_mm, false);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007391 mutex_unlock(&ctx->uring_lock);
Pavel Begunkov7c504e652019-12-18 19:53:45 +03007392
7393 if (submitted != to_submit)
7394 goto out;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007395 }
7396 if (flags & IORING_ENTER_GETEVENTS) {
Jens Axboedef596e2019-01-09 08:59:42 -07007397 unsigned nr_events = 0;
7398
Jens Axboe2b188cc2019-01-07 10:46:33 -07007399 min_complete = min(min_complete, ctx->cq_entries);
7400
Jens Axboedef596e2019-01-09 08:59:42 -07007401 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07007402 ret = io_iopoll_check(ctx, &nr_events, min_complete);
Jens Axboedef596e2019-01-09 08:59:42 -07007403 } else {
7404 ret = io_cqring_wait(ctx, min_complete, sig, sigsz);
7405 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007406 }
7407
Pavel Begunkov7c504e652019-12-18 19:53:45 +03007408out:
Pavel Begunkov6805b322019-10-08 02:18:42 +03007409 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007410out_fput:
7411 fdput(f);
7412 return submitted ? submitted : ret;
7413}
7414
Tobias Klauserbebdb652020-02-26 18:38:32 +01007415#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -07007416static int io_uring_show_cred(int id, void *p, void *data)
7417{
7418 const struct cred *cred = p;
7419 struct seq_file *m = data;
7420 struct user_namespace *uns = seq_user_ns(m);
7421 struct group_info *gi;
7422 kernel_cap_t cap;
7423 unsigned __capi;
7424 int g;
7425
7426 seq_printf(m, "%5d\n", id);
7427 seq_put_decimal_ull(m, "\tUid:\t", from_kuid_munged(uns, cred->uid));
7428 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->euid));
7429 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->suid));
7430 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->fsuid));
7431 seq_put_decimal_ull(m, "\n\tGid:\t", from_kgid_munged(uns, cred->gid));
7432 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->egid));
7433 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->sgid));
7434 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->fsgid));
7435 seq_puts(m, "\n\tGroups:\t");
7436 gi = cred->group_info;
7437 for (g = 0; g < gi->ngroups; g++) {
7438 seq_put_decimal_ull(m, g ? " " : "",
7439 from_kgid_munged(uns, gi->gid[g]));
7440 }
7441 seq_puts(m, "\n\tCapEff:\t");
7442 cap = cred->cap_effective;
7443 CAP_FOR_EACH_U32(__capi)
7444 seq_put_hex_ll(m, NULL, cap.cap[CAP_LAST_U32 - __capi], 8);
7445 seq_putc(m, '\n');
7446 return 0;
7447}
7448
7449static void __io_uring_show_fdinfo(struct io_ring_ctx *ctx, struct seq_file *m)
7450{
7451 int i;
7452
7453 mutex_lock(&ctx->uring_lock);
7454 seq_printf(m, "UserFiles:\t%u\n", ctx->nr_user_files);
7455 for (i = 0; i < ctx->nr_user_files; i++) {
7456 struct fixed_file_table *table;
7457 struct file *f;
7458
7459 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
7460 f = table->files[i & IORING_FILE_TABLE_MASK];
7461 if (f)
7462 seq_printf(m, "%5u: %s\n", i, file_dentry(f)->d_iname);
7463 else
7464 seq_printf(m, "%5u: <none>\n", i);
7465 }
7466 seq_printf(m, "UserBufs:\t%u\n", ctx->nr_user_bufs);
7467 for (i = 0; i < ctx->nr_user_bufs; i++) {
7468 struct io_mapped_ubuf *buf = &ctx->user_bufs[i];
7469
7470 seq_printf(m, "%5u: 0x%llx/%u\n", i, buf->ubuf,
7471 (unsigned int) buf->len);
7472 }
7473 if (!idr_is_empty(&ctx->personality_idr)) {
7474 seq_printf(m, "Personalities:\n");
7475 idr_for_each(&ctx->personality_idr, io_uring_show_cred, m);
7476 }
Jens Axboed7718a92020-02-14 22:23:12 -07007477 seq_printf(m, "PollList:\n");
7478 spin_lock_irq(&ctx->completion_lock);
7479 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
7480 struct hlist_head *list = &ctx->cancel_hash[i];
7481 struct io_kiocb *req;
7482
7483 hlist_for_each_entry(req, list, hash_node)
7484 seq_printf(m, " op=%d, task_works=%d\n", req->opcode,
7485 req->task->task_works != NULL);
7486 }
7487 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe87ce9552020-01-30 08:25:34 -07007488 mutex_unlock(&ctx->uring_lock);
7489}
7490
7491static void io_uring_show_fdinfo(struct seq_file *m, struct file *f)
7492{
7493 struct io_ring_ctx *ctx = f->private_data;
7494
7495 if (percpu_ref_tryget(&ctx->refs)) {
7496 __io_uring_show_fdinfo(ctx, m);
7497 percpu_ref_put(&ctx->refs);
7498 }
7499}
Tobias Klauserbebdb652020-02-26 18:38:32 +01007500#endif
Jens Axboe87ce9552020-01-30 08:25:34 -07007501
Jens Axboe2b188cc2019-01-07 10:46:33 -07007502static const struct file_operations io_uring_fops = {
7503 .release = io_uring_release,
Jens Axboefcb323c2019-10-24 12:39:47 -06007504 .flush = io_uring_flush,
Jens Axboe2b188cc2019-01-07 10:46:33 -07007505 .mmap = io_uring_mmap,
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007506#ifndef CONFIG_MMU
7507 .get_unmapped_area = io_uring_nommu_get_unmapped_area,
7508 .mmap_capabilities = io_uring_nommu_mmap_capabilities,
7509#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07007510 .poll = io_uring_poll,
7511 .fasync = io_uring_fasync,
Tobias Klauserbebdb652020-02-26 18:38:32 +01007512#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -07007513 .show_fdinfo = io_uring_show_fdinfo,
Tobias Klauserbebdb652020-02-26 18:38:32 +01007514#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07007515};
7516
7517static int io_allocate_scq_urings(struct io_ring_ctx *ctx,
7518 struct io_uring_params *p)
7519{
Hristo Venev75b28af2019-08-26 17:23:46 +00007520 struct io_rings *rings;
7521 size_t size, sq_array_offset;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007522
Hristo Venev75b28af2019-08-26 17:23:46 +00007523 size = rings_size(p->sq_entries, p->cq_entries, &sq_array_offset);
7524 if (size == SIZE_MAX)
7525 return -EOVERFLOW;
7526
7527 rings = io_mem_alloc(size);
7528 if (!rings)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007529 return -ENOMEM;
7530
Hristo Venev75b28af2019-08-26 17:23:46 +00007531 ctx->rings = rings;
7532 ctx->sq_array = (u32 *)((char *)rings + sq_array_offset);
7533 rings->sq_ring_mask = p->sq_entries - 1;
7534 rings->cq_ring_mask = p->cq_entries - 1;
7535 rings->sq_ring_entries = p->sq_entries;
7536 rings->cq_ring_entries = p->cq_entries;
7537 ctx->sq_mask = rings->sq_ring_mask;
7538 ctx->cq_mask = rings->cq_ring_mask;
7539 ctx->sq_entries = rings->sq_ring_entries;
7540 ctx->cq_entries = rings->cq_ring_entries;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007541
7542 size = array_size(sizeof(struct io_uring_sqe), p->sq_entries);
Jens Axboeeb065d32019-11-20 09:26:29 -07007543 if (size == SIZE_MAX) {
7544 io_mem_free(ctx->rings);
7545 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007546 return -EOVERFLOW;
Jens Axboeeb065d32019-11-20 09:26:29 -07007547 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007548
7549 ctx->sq_sqes = io_mem_alloc(size);
Jens Axboeeb065d32019-11-20 09:26:29 -07007550 if (!ctx->sq_sqes) {
7551 io_mem_free(ctx->rings);
7552 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007553 return -ENOMEM;
Jens Axboeeb065d32019-11-20 09:26:29 -07007554 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007555
Jens Axboe2b188cc2019-01-07 10:46:33 -07007556 return 0;
7557}
7558
7559/*
7560 * Allocate an anonymous fd, this is what constitutes the application
7561 * visible backing of an io_uring instance. The application mmaps this
7562 * fd to gain access to the SQ/CQ ring details. If UNIX sockets are enabled,
7563 * we have to tie this fd to a socket for file garbage collection purposes.
7564 */
7565static int io_uring_get_fd(struct io_ring_ctx *ctx)
7566{
7567 struct file *file;
7568 int ret;
7569
7570#if defined(CONFIG_UNIX)
7571 ret = sock_create_kern(&init_net, PF_UNIX, SOCK_RAW, IPPROTO_IP,
7572 &ctx->ring_sock);
7573 if (ret)
7574 return ret;
7575#endif
7576
7577 ret = get_unused_fd_flags(O_RDWR | O_CLOEXEC);
7578 if (ret < 0)
7579 goto err;
7580
7581 file = anon_inode_getfile("[io_uring]", &io_uring_fops, ctx,
7582 O_RDWR | O_CLOEXEC);
7583 if (IS_ERR(file)) {
7584 put_unused_fd(ret);
7585 ret = PTR_ERR(file);
7586 goto err;
7587 }
7588
7589#if defined(CONFIG_UNIX)
7590 ctx->ring_sock->file = file;
7591#endif
7592 fd_install(ret, file);
7593 return ret;
7594err:
7595#if defined(CONFIG_UNIX)
7596 sock_release(ctx->ring_sock);
7597 ctx->ring_sock = NULL;
7598#endif
7599 return ret;
7600}
7601
7602static int io_uring_create(unsigned entries, struct io_uring_params *p)
7603{
7604 struct user_struct *user = NULL;
7605 struct io_ring_ctx *ctx;
7606 bool account_mem;
7607 int ret;
7608
Jens Axboe8110c1a2019-12-28 15:39:54 -07007609 if (!entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007610 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07007611 if (entries > IORING_MAX_ENTRIES) {
7612 if (!(p->flags & IORING_SETUP_CLAMP))
7613 return -EINVAL;
7614 entries = IORING_MAX_ENTRIES;
7615 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007616
7617 /*
7618 * Use twice as many entries for the CQ ring. It's possible for the
7619 * application to drive a higher depth than the size of the SQ ring,
7620 * since the sqes are only used at submission time. This allows for
Jens Axboe33a107f2019-10-04 12:10:03 -06007621 * some flexibility in overcommitting a bit. If the application has
7622 * set IORING_SETUP_CQSIZE, it will have passed in the desired number
7623 * of CQ ring entries manually.
Jens Axboe2b188cc2019-01-07 10:46:33 -07007624 */
7625 p->sq_entries = roundup_pow_of_two(entries);
Jens Axboe33a107f2019-10-04 12:10:03 -06007626 if (p->flags & IORING_SETUP_CQSIZE) {
7627 /*
7628 * If IORING_SETUP_CQSIZE is set, we do the same roundup
7629 * to a power-of-two, if it isn't already. We do NOT impose
7630 * any cq vs sq ring sizing.
7631 */
Jens Axboe8110c1a2019-12-28 15:39:54 -07007632 if (p->cq_entries < p->sq_entries)
Jens Axboe33a107f2019-10-04 12:10:03 -06007633 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07007634 if (p->cq_entries > IORING_MAX_CQ_ENTRIES) {
7635 if (!(p->flags & IORING_SETUP_CLAMP))
7636 return -EINVAL;
7637 p->cq_entries = IORING_MAX_CQ_ENTRIES;
7638 }
Jens Axboe33a107f2019-10-04 12:10:03 -06007639 p->cq_entries = roundup_pow_of_two(p->cq_entries);
7640 } else {
7641 p->cq_entries = 2 * p->sq_entries;
7642 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007643
7644 user = get_uid(current_user());
7645 account_mem = !capable(CAP_IPC_LOCK);
7646
7647 if (account_mem) {
7648 ret = io_account_mem(user,
7649 ring_pages(p->sq_entries, p->cq_entries));
7650 if (ret) {
7651 free_uid(user);
7652 return ret;
7653 }
7654 }
7655
7656 ctx = io_ring_ctx_alloc(p);
7657 if (!ctx) {
7658 if (account_mem)
7659 io_unaccount_mem(user, ring_pages(p->sq_entries,
7660 p->cq_entries));
7661 free_uid(user);
7662 return -ENOMEM;
7663 }
7664 ctx->compat = in_compat_syscall();
7665 ctx->account_mem = account_mem;
7666 ctx->user = user;
Jens Axboe0b8c0ec2019-12-02 08:50:00 -07007667 ctx->creds = get_current_cred();
Jens Axboe2b188cc2019-01-07 10:46:33 -07007668
7669 ret = io_allocate_scq_urings(ctx, p);
7670 if (ret)
7671 goto err;
7672
Jens Axboe6c271ce2019-01-10 11:22:30 -07007673 ret = io_sq_offload_start(ctx, p);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007674 if (ret)
7675 goto err;
7676
Jens Axboe2b188cc2019-01-07 10:46:33 -07007677 memset(&p->sq_off, 0, sizeof(p->sq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00007678 p->sq_off.head = offsetof(struct io_rings, sq.head);
7679 p->sq_off.tail = offsetof(struct io_rings, sq.tail);
7680 p->sq_off.ring_mask = offsetof(struct io_rings, sq_ring_mask);
7681 p->sq_off.ring_entries = offsetof(struct io_rings, sq_ring_entries);
7682 p->sq_off.flags = offsetof(struct io_rings, sq_flags);
7683 p->sq_off.dropped = offsetof(struct io_rings, sq_dropped);
7684 p->sq_off.array = (char *)ctx->sq_array - (char *)ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007685
7686 memset(&p->cq_off, 0, sizeof(p->cq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00007687 p->cq_off.head = offsetof(struct io_rings, cq.head);
7688 p->cq_off.tail = offsetof(struct io_rings, cq.tail);
7689 p->cq_off.ring_mask = offsetof(struct io_rings, cq_ring_mask);
7690 p->cq_off.ring_entries = offsetof(struct io_rings, cq_ring_entries);
7691 p->cq_off.overflow = offsetof(struct io_rings, cq_overflow);
7692 p->cq_off.cqes = offsetof(struct io_rings, cqes);
Jens Axboeac90f242019-09-06 10:26:21 -06007693
Jens Axboe044c1ab2019-10-28 09:15:33 -06007694 /*
7695 * Install ring fd as the very last thing, so we don't risk someone
7696 * having closed it before we finish setup
7697 */
7698 ret = io_uring_get_fd(ctx);
7699 if (ret < 0)
7700 goto err;
7701
Jens Axboeda8c9692019-12-02 18:51:26 -07007702 p->features = IORING_FEAT_SINGLE_MMAP | IORING_FEAT_NODROP |
Jens Axboecccf0ee2020-01-27 16:34:48 -07007703 IORING_FEAT_SUBMIT_STABLE | IORING_FEAT_RW_CUR_POS |
Jens Axboed7718a92020-02-14 22:23:12 -07007704 IORING_FEAT_CUR_PERSONALITY | IORING_FEAT_FAST_POLL;
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02007705 trace_io_uring_create(ret, ctx, p->sq_entries, p->cq_entries, p->flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007706 return ret;
7707err:
7708 io_ring_ctx_wait_and_kill(ctx);
7709 return ret;
7710}
7711
7712/*
7713 * Sets up an aio uring context, and returns the fd. Applications asks for a
7714 * ring size, we return the actual sq/cq ring sizes (among other things) in the
7715 * params structure passed in.
7716 */
7717static long io_uring_setup(u32 entries, struct io_uring_params __user *params)
7718{
7719 struct io_uring_params p;
7720 long ret;
7721 int i;
7722
7723 if (copy_from_user(&p, params, sizeof(p)))
7724 return -EFAULT;
7725 for (i = 0; i < ARRAY_SIZE(p.resv); i++) {
7726 if (p.resv[i])
7727 return -EINVAL;
7728 }
7729
Jens Axboe6c271ce2019-01-10 11:22:30 -07007730 if (p.flags & ~(IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL |
Jens Axboe8110c1a2019-12-28 15:39:54 -07007731 IORING_SETUP_SQ_AFF | IORING_SETUP_CQSIZE |
Pavel Begunkov24369c22020-01-28 03:15:48 +03007732 IORING_SETUP_CLAMP | IORING_SETUP_ATTACH_WQ))
Jens Axboe2b188cc2019-01-07 10:46:33 -07007733 return -EINVAL;
7734
7735 ret = io_uring_create(entries, &p);
7736 if (ret < 0)
7737 return ret;
7738
7739 if (copy_to_user(params, &p, sizeof(p)))
7740 return -EFAULT;
7741
7742 return ret;
7743}
7744
7745SYSCALL_DEFINE2(io_uring_setup, u32, entries,
7746 struct io_uring_params __user *, params)
7747{
7748 return io_uring_setup(entries, params);
7749}
7750
Jens Axboe66f4af92020-01-16 15:36:52 -07007751static int io_probe(struct io_ring_ctx *ctx, void __user *arg, unsigned nr_args)
7752{
7753 struct io_uring_probe *p;
7754 size_t size;
7755 int i, ret;
7756
7757 size = struct_size(p, ops, nr_args);
7758 if (size == SIZE_MAX)
7759 return -EOVERFLOW;
7760 p = kzalloc(size, GFP_KERNEL);
7761 if (!p)
7762 return -ENOMEM;
7763
7764 ret = -EFAULT;
7765 if (copy_from_user(p, arg, size))
7766 goto out;
7767 ret = -EINVAL;
7768 if (memchr_inv(p, 0, size))
7769 goto out;
7770
7771 p->last_op = IORING_OP_LAST - 1;
7772 if (nr_args > IORING_OP_LAST)
7773 nr_args = IORING_OP_LAST;
7774
7775 for (i = 0; i < nr_args; i++) {
7776 p->ops[i].op = i;
7777 if (!io_op_defs[i].not_supported)
7778 p->ops[i].flags = IO_URING_OP_SUPPORTED;
7779 }
7780 p->ops_len = i;
7781
7782 ret = 0;
7783 if (copy_to_user(arg, p, size))
7784 ret = -EFAULT;
7785out:
7786 kfree(p);
7787 return ret;
7788}
7789
Jens Axboe071698e2020-01-28 10:04:42 -07007790static int io_register_personality(struct io_ring_ctx *ctx)
7791{
7792 const struct cred *creds = get_current_cred();
7793 int id;
7794
7795 id = idr_alloc_cyclic(&ctx->personality_idr, (void *) creds, 1,
7796 USHRT_MAX, GFP_KERNEL);
7797 if (id < 0)
7798 put_cred(creds);
7799 return id;
7800}
7801
7802static int io_unregister_personality(struct io_ring_ctx *ctx, unsigned id)
7803{
7804 const struct cred *old_creds;
7805
7806 old_creds = idr_remove(&ctx->personality_idr, id);
7807 if (old_creds) {
7808 put_cred(old_creds);
7809 return 0;
7810 }
7811
7812 return -EINVAL;
7813}
7814
7815static bool io_register_op_must_quiesce(int op)
7816{
7817 switch (op) {
7818 case IORING_UNREGISTER_FILES:
7819 case IORING_REGISTER_FILES_UPDATE:
7820 case IORING_REGISTER_PROBE:
7821 case IORING_REGISTER_PERSONALITY:
7822 case IORING_UNREGISTER_PERSONALITY:
7823 return false;
7824 default:
7825 return true;
7826 }
7827}
7828
Jens Axboeedafcce2019-01-09 09:16:05 -07007829static int __io_uring_register(struct io_ring_ctx *ctx, unsigned opcode,
7830 void __user *arg, unsigned nr_args)
Jens Axboeb19062a2019-04-15 10:49:38 -06007831 __releases(ctx->uring_lock)
7832 __acquires(ctx->uring_lock)
Jens Axboeedafcce2019-01-09 09:16:05 -07007833{
7834 int ret;
7835
Jens Axboe35fa71a2019-04-22 10:23:23 -06007836 /*
7837 * We're inside the ring mutex, if the ref is already dying, then
7838 * someone else killed the ctx or is already going through
7839 * io_uring_register().
7840 */
7841 if (percpu_ref_is_dying(&ctx->refs))
7842 return -ENXIO;
7843
Jens Axboe071698e2020-01-28 10:04:42 -07007844 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07007845 percpu_ref_kill(&ctx->refs);
Jens Axboeb19062a2019-04-15 10:49:38 -06007846
Jens Axboe05f3fb32019-12-09 11:22:50 -07007847 /*
7848 * Drop uring mutex before waiting for references to exit. If
7849 * another thread is currently inside io_uring_enter() it might
7850 * need to grab the uring_lock to make progress. If we hold it
7851 * here across the drain wait, then we can deadlock. It's safe
7852 * to drop the mutex here, since no new references will come in
7853 * after we've killed the percpu ref.
7854 */
7855 mutex_unlock(&ctx->uring_lock);
Jens Axboec1503682020-01-08 08:26:07 -07007856 ret = wait_for_completion_interruptible(&ctx->completions[0]);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007857 mutex_lock(&ctx->uring_lock);
Jens Axboec1503682020-01-08 08:26:07 -07007858 if (ret) {
7859 percpu_ref_resurrect(&ctx->refs);
7860 ret = -EINTR;
7861 goto out;
7862 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07007863 }
Jens Axboeedafcce2019-01-09 09:16:05 -07007864
7865 switch (opcode) {
7866 case IORING_REGISTER_BUFFERS:
7867 ret = io_sqe_buffer_register(ctx, arg, nr_args);
7868 break;
7869 case IORING_UNREGISTER_BUFFERS:
7870 ret = -EINVAL;
7871 if (arg || nr_args)
7872 break;
7873 ret = io_sqe_buffer_unregister(ctx);
7874 break;
Jens Axboe6b063142019-01-10 22:13:58 -07007875 case IORING_REGISTER_FILES:
7876 ret = io_sqe_files_register(ctx, arg, nr_args);
7877 break;
7878 case IORING_UNREGISTER_FILES:
7879 ret = -EINVAL;
7880 if (arg || nr_args)
7881 break;
7882 ret = io_sqe_files_unregister(ctx);
7883 break;
Jens Axboec3a31e62019-10-03 13:59:56 -06007884 case IORING_REGISTER_FILES_UPDATE:
7885 ret = io_sqe_files_update(ctx, arg, nr_args);
7886 break;
Jens Axboe9b402842019-04-11 11:45:41 -06007887 case IORING_REGISTER_EVENTFD:
Jens Axboef2842ab2020-01-08 11:04:00 -07007888 case IORING_REGISTER_EVENTFD_ASYNC:
Jens Axboe9b402842019-04-11 11:45:41 -06007889 ret = -EINVAL;
7890 if (nr_args != 1)
7891 break;
7892 ret = io_eventfd_register(ctx, arg);
Jens Axboef2842ab2020-01-08 11:04:00 -07007893 if (ret)
7894 break;
7895 if (opcode == IORING_REGISTER_EVENTFD_ASYNC)
7896 ctx->eventfd_async = 1;
7897 else
7898 ctx->eventfd_async = 0;
Jens Axboe9b402842019-04-11 11:45:41 -06007899 break;
7900 case IORING_UNREGISTER_EVENTFD:
7901 ret = -EINVAL;
7902 if (arg || nr_args)
7903 break;
7904 ret = io_eventfd_unregister(ctx);
7905 break;
Jens Axboe66f4af92020-01-16 15:36:52 -07007906 case IORING_REGISTER_PROBE:
7907 ret = -EINVAL;
7908 if (!arg || nr_args > 256)
7909 break;
7910 ret = io_probe(ctx, arg, nr_args);
7911 break;
Jens Axboe071698e2020-01-28 10:04:42 -07007912 case IORING_REGISTER_PERSONALITY:
7913 ret = -EINVAL;
7914 if (arg || nr_args)
7915 break;
7916 ret = io_register_personality(ctx);
7917 break;
7918 case IORING_UNREGISTER_PERSONALITY:
7919 ret = -EINVAL;
7920 if (arg)
7921 break;
7922 ret = io_unregister_personality(ctx, nr_args);
7923 break;
Jens Axboeedafcce2019-01-09 09:16:05 -07007924 default:
7925 ret = -EINVAL;
7926 break;
7927 }
7928
Jens Axboe071698e2020-01-28 10:04:42 -07007929 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07007930 /* bring the ctx back to life */
Jens Axboe05f3fb32019-12-09 11:22:50 -07007931 percpu_ref_reinit(&ctx->refs);
Jens Axboec1503682020-01-08 08:26:07 -07007932out:
7933 reinit_completion(&ctx->completions[0]);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007934 }
Jens Axboeedafcce2019-01-09 09:16:05 -07007935 return ret;
7936}
7937
7938SYSCALL_DEFINE4(io_uring_register, unsigned int, fd, unsigned int, opcode,
7939 void __user *, arg, unsigned int, nr_args)
7940{
7941 struct io_ring_ctx *ctx;
7942 long ret = -EBADF;
7943 struct fd f;
7944
7945 f = fdget(fd);
7946 if (!f.file)
7947 return -EBADF;
7948
7949 ret = -EOPNOTSUPP;
7950 if (f.file->f_op != &io_uring_fops)
7951 goto out_fput;
7952
7953 ctx = f.file->private_data;
7954
7955 mutex_lock(&ctx->uring_lock);
7956 ret = __io_uring_register(ctx, opcode, arg, nr_args);
7957 mutex_unlock(&ctx->uring_lock);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02007958 trace_io_uring_register(ctx, opcode, ctx->nr_user_files, ctx->nr_user_bufs,
7959 ctx->cq_ev_fd != NULL, ret);
Jens Axboeedafcce2019-01-09 09:16:05 -07007960out_fput:
7961 fdput(f);
7962 return ret;
7963}
7964
Jens Axboe2b188cc2019-01-07 10:46:33 -07007965static int __init io_uring_init(void)
7966{
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01007967#define __BUILD_BUG_VERIFY_ELEMENT(stype, eoffset, etype, ename) do { \
7968 BUILD_BUG_ON(offsetof(stype, ename) != eoffset); \
7969 BUILD_BUG_ON(sizeof(etype) != sizeof_field(stype, ename)); \
7970} while (0)
7971
7972#define BUILD_BUG_SQE_ELEM(eoffset, etype, ename) \
7973 __BUILD_BUG_VERIFY_ELEMENT(struct io_uring_sqe, eoffset, etype, ename)
7974 BUILD_BUG_ON(sizeof(struct io_uring_sqe) != 64);
7975 BUILD_BUG_SQE_ELEM(0, __u8, opcode);
7976 BUILD_BUG_SQE_ELEM(1, __u8, flags);
7977 BUILD_BUG_SQE_ELEM(2, __u16, ioprio);
7978 BUILD_BUG_SQE_ELEM(4, __s32, fd);
7979 BUILD_BUG_SQE_ELEM(8, __u64, off);
7980 BUILD_BUG_SQE_ELEM(8, __u64, addr2);
7981 BUILD_BUG_SQE_ELEM(16, __u64, addr);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03007982 BUILD_BUG_SQE_ELEM(16, __u64, splice_off_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01007983 BUILD_BUG_SQE_ELEM(24, __u32, len);
7984 BUILD_BUG_SQE_ELEM(28, __kernel_rwf_t, rw_flags);
7985 BUILD_BUG_SQE_ELEM(28, /* compat */ int, rw_flags);
7986 BUILD_BUG_SQE_ELEM(28, /* compat */ __u32, rw_flags);
7987 BUILD_BUG_SQE_ELEM(28, __u32, fsync_flags);
7988 BUILD_BUG_SQE_ELEM(28, __u16, poll_events);
7989 BUILD_BUG_SQE_ELEM(28, __u32, sync_range_flags);
7990 BUILD_BUG_SQE_ELEM(28, __u32, msg_flags);
7991 BUILD_BUG_SQE_ELEM(28, __u32, timeout_flags);
7992 BUILD_BUG_SQE_ELEM(28, __u32, accept_flags);
7993 BUILD_BUG_SQE_ELEM(28, __u32, cancel_flags);
7994 BUILD_BUG_SQE_ELEM(28, __u32, open_flags);
7995 BUILD_BUG_SQE_ELEM(28, __u32, statx_flags);
7996 BUILD_BUG_SQE_ELEM(28, __u32, fadvise_advice);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03007997 BUILD_BUG_SQE_ELEM(28, __u32, splice_flags);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01007998 BUILD_BUG_SQE_ELEM(32, __u64, user_data);
7999 BUILD_BUG_SQE_ELEM(40, __u16, buf_index);
8000 BUILD_BUG_SQE_ELEM(42, __u16, personality);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03008001 BUILD_BUG_SQE_ELEM(44, __s32, splice_fd_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008002
Jens Axboed3656342019-12-18 09:50:26 -07008003 BUILD_BUG_ON(ARRAY_SIZE(io_op_defs) != IORING_OP_LAST);
Jens Axboe84557872020-03-03 15:28:17 -07008004 BUILD_BUG_ON(__REQ_F_LAST_BIT >= 8 * sizeof(int));
Jens Axboe2b188cc2019-01-07 10:46:33 -07008005 req_cachep = KMEM_CACHE(io_kiocb, SLAB_HWCACHE_ALIGN | SLAB_PANIC);
8006 return 0;
8007};
8008__initcall(io_uring_init);