blob: 9f1a462eb780da2e7acc0197cf2c84a770867ca8 [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);
Xiaoguang Wang32b22442020-03-11 09:26:09 +08001735 if (ctx->flags & IORING_SETUP_SQPOLL)
1736 io_cqring_ev_posted(ctx);
Jens Axboe8237e042019-12-28 10:48:22 -07001737 io_free_req_many(ctx, &rb);
Jens Axboedef596e2019-01-09 08:59:42 -07001738}
1739
1740static int io_do_iopoll(struct io_ring_ctx *ctx, unsigned int *nr_events,
1741 long min)
1742{
1743 struct io_kiocb *req, *tmp;
1744 LIST_HEAD(done);
1745 bool spin;
1746 int ret;
1747
1748 /*
1749 * Only spin for completions if we don't have multiple devices hanging
1750 * off our complete list, and we're under the requested amount.
1751 */
1752 spin = !ctx->poll_multi_file && *nr_events < min;
1753
1754 ret = 0;
1755 list_for_each_entry_safe(req, tmp, &ctx->poll_list, list) {
Jens Axboe9adbd452019-12-20 08:45:55 -07001756 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboedef596e2019-01-09 08:59:42 -07001757
1758 /*
1759 * Move completed entries to our local list. If we find a
1760 * request that requires polling, break out and complete
1761 * the done list first, if we have entries there.
1762 */
1763 if (req->flags & REQ_F_IOPOLL_COMPLETED) {
1764 list_move_tail(&req->list, &done);
1765 continue;
1766 }
1767 if (!list_empty(&done))
1768 break;
1769
1770 ret = kiocb->ki_filp->f_op->iopoll(kiocb, spin);
1771 if (ret < 0)
1772 break;
1773
1774 if (ret && spin)
1775 spin = false;
1776 ret = 0;
1777 }
1778
1779 if (!list_empty(&done))
1780 io_iopoll_complete(ctx, nr_events, &done);
1781
1782 return ret;
1783}
1784
1785/*
Brian Gianforcarod195a662019-12-13 03:09:50 -08001786 * Poll for a minimum of 'min' events. Note that if min == 0 we consider that a
Jens Axboedef596e2019-01-09 08:59:42 -07001787 * non-spinning poll check - we'll still enter the driver poll loop, but only
1788 * as a non-spinning completion check.
1789 */
1790static int io_iopoll_getevents(struct io_ring_ctx *ctx, unsigned int *nr_events,
1791 long min)
1792{
Jens Axboe08f54392019-08-21 22:19:11 -06001793 while (!list_empty(&ctx->poll_list) && !need_resched()) {
Jens Axboedef596e2019-01-09 08:59:42 -07001794 int ret;
1795
1796 ret = io_do_iopoll(ctx, nr_events, min);
1797 if (ret < 0)
1798 return ret;
1799 if (!min || *nr_events >= min)
1800 return 0;
1801 }
1802
1803 return 1;
1804}
1805
1806/*
1807 * We can't just wait for polled events to come to us, we have to actively
1808 * find and complete them.
1809 */
1810static void io_iopoll_reap_events(struct io_ring_ctx *ctx)
1811{
1812 if (!(ctx->flags & IORING_SETUP_IOPOLL))
1813 return;
1814
1815 mutex_lock(&ctx->uring_lock);
1816 while (!list_empty(&ctx->poll_list)) {
1817 unsigned int nr_events = 0;
1818
1819 io_iopoll_getevents(ctx, &nr_events, 1);
Jens Axboe08f54392019-08-21 22:19:11 -06001820
1821 /*
1822 * Ensure we allow local-to-the-cpu processing to take place,
1823 * in this case we need to ensure that we reap all events.
1824 */
1825 cond_resched();
Jens Axboedef596e2019-01-09 08:59:42 -07001826 }
1827 mutex_unlock(&ctx->uring_lock);
1828}
1829
Xiaoguang Wangc7849be2020-02-22 14:46:05 +08001830static int io_iopoll_check(struct io_ring_ctx *ctx, unsigned *nr_events,
1831 long min)
Jens Axboedef596e2019-01-09 08:59:42 -07001832{
Jens Axboe2b2ed972019-10-25 10:06:15 -06001833 int iters = 0, ret = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001834
Xiaoguang Wangc7849be2020-02-22 14:46:05 +08001835 /*
1836 * We disallow the app entering submit/complete with polling, but we
1837 * still need to lock the ring to prevent racing with polled issue
1838 * that got punted to a workqueue.
1839 */
1840 mutex_lock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07001841 do {
1842 int tmin = 0;
1843
Jens Axboe500f9fb2019-08-19 12:15:59 -06001844 /*
Jens Axboea3a0e432019-08-20 11:03:11 -06001845 * Don't enter poll loop if we already have events pending.
1846 * If we do, we can potentially be spinning for commands that
1847 * already triggered a CQE (eg in error).
1848 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001849 if (io_cqring_events(ctx, false))
Jens Axboea3a0e432019-08-20 11:03:11 -06001850 break;
1851
1852 /*
Jens Axboe500f9fb2019-08-19 12:15:59 -06001853 * If a submit got punted to a workqueue, we can have the
1854 * application entering polling for a command before it gets
1855 * issued. That app will hold the uring_lock for the duration
1856 * of the poll right here, so we need to take a breather every
1857 * now and then to ensure that the issue has a chance to add
1858 * the poll to the issued list. Otherwise we can spin here
1859 * forever, while the workqueue is stuck trying to acquire the
1860 * very same mutex.
1861 */
1862 if (!(++iters & 7)) {
1863 mutex_unlock(&ctx->uring_lock);
1864 mutex_lock(&ctx->uring_lock);
1865 }
1866
Jens Axboedef596e2019-01-09 08:59:42 -07001867 if (*nr_events < min)
1868 tmin = min - *nr_events;
1869
1870 ret = io_iopoll_getevents(ctx, nr_events, tmin);
1871 if (ret <= 0)
1872 break;
1873 ret = 0;
1874 } while (min && !*nr_events && !need_resched());
1875
Jens Axboe500f9fb2019-08-19 12:15:59 -06001876 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07001877 return ret;
1878}
1879
Jens Axboe491381ce2019-10-17 09:20:46 -06001880static void kiocb_end_write(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001881{
Jens Axboe491381ce2019-10-17 09:20:46 -06001882 /*
1883 * Tell lockdep we inherited freeze protection from submission
1884 * thread.
1885 */
1886 if (req->flags & REQ_F_ISREG) {
1887 struct inode *inode = file_inode(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001888
Jens Axboe491381ce2019-10-17 09:20:46 -06001889 __sb_writers_acquired(inode->i_sb, SB_FREEZE_WRITE);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001890 }
Jens Axboe491381ce2019-10-17 09:20:46 -06001891 file_end_write(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001892}
1893
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001894static inline void req_set_fail_links(struct io_kiocb *req)
1895{
1896 if ((req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) == REQ_F_LINK)
1897 req->flags |= REQ_F_FAIL_LINK;
1898}
1899
Jens Axboeba816ad2019-09-28 11:36:45 -06001900static void io_complete_rw_common(struct kiocb *kiocb, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001901{
Jens Axboe9adbd452019-12-20 08:45:55 -07001902 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001903 int cflags = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001904
Jens Axboe491381ce2019-10-17 09:20:46 -06001905 if (kiocb->ki_flags & IOCB_WRITE)
1906 kiocb_end_write(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001907
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001908 if (res != req->result)
1909 req_set_fail_links(req);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001910 if (req->flags & REQ_F_BUFFER_SELECTED)
1911 cflags = io_put_kbuf(req);
1912 __io_cqring_add_event(req, res, cflags);
Jens Axboeba816ad2019-09-28 11:36:45 -06001913}
1914
1915static void io_complete_rw(struct kiocb *kiocb, long res, long res2)
1916{
Jens Axboe9adbd452019-12-20 08:45:55 -07001917 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboeba816ad2019-09-28 11:36:45 -06001918
1919 io_complete_rw_common(kiocb, res);
Jens Axboee65ef562019-03-12 10:16:44 -06001920 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001921}
1922
Jens Axboedef596e2019-01-09 08:59:42 -07001923static void io_complete_rw_iopoll(struct kiocb *kiocb, long res, long res2)
1924{
Jens Axboe9adbd452019-12-20 08:45:55 -07001925 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboedef596e2019-01-09 08:59:42 -07001926
Jens Axboe491381ce2019-10-17 09:20:46 -06001927 if (kiocb->ki_flags & IOCB_WRITE)
1928 kiocb_end_write(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001929
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001930 if (res != req->result)
1931 req_set_fail_links(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06001932 req->result = res;
Jens Axboedef596e2019-01-09 08:59:42 -07001933 if (res != -EAGAIN)
1934 req->flags |= REQ_F_IOPOLL_COMPLETED;
1935}
1936
1937/*
1938 * After the iocb has been issued, it's safe to be found on the poll list.
1939 * Adding the kiocb to the list AFTER submission ensures that we don't
1940 * find it from a io_iopoll_getevents() thread before the issuer is done
1941 * accessing the kiocb cookie.
1942 */
1943static void io_iopoll_req_issued(struct io_kiocb *req)
1944{
1945 struct io_ring_ctx *ctx = req->ctx;
1946
1947 /*
1948 * Track whether we have multiple files in our lists. This will impact
1949 * how we do polling eventually, not spinning if we're on potentially
1950 * different devices.
1951 */
1952 if (list_empty(&ctx->poll_list)) {
1953 ctx->poll_multi_file = false;
1954 } else if (!ctx->poll_multi_file) {
1955 struct io_kiocb *list_req;
1956
1957 list_req = list_first_entry(&ctx->poll_list, struct io_kiocb,
1958 list);
Jens Axboe9adbd452019-12-20 08:45:55 -07001959 if (list_req->file != req->file)
Jens Axboedef596e2019-01-09 08:59:42 -07001960 ctx->poll_multi_file = true;
1961 }
1962
1963 /*
1964 * For fast devices, IO may have already completed. If it has, add
1965 * it to the front so we find it first.
1966 */
1967 if (req->flags & REQ_F_IOPOLL_COMPLETED)
1968 list_add(&req->list, &ctx->poll_list);
1969 else
1970 list_add_tail(&req->list, &ctx->poll_list);
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08001971
1972 if ((ctx->flags & IORING_SETUP_SQPOLL) &&
1973 wq_has_sleeper(&ctx->sqo_wait))
1974 wake_up(&ctx->sqo_wait);
Jens Axboedef596e2019-01-09 08:59:42 -07001975}
1976
Jens Axboe3d6770f2019-04-13 11:50:54 -06001977static void io_file_put(struct io_submit_state *state)
Jens Axboe9a56a232019-01-09 09:06:50 -07001978{
Jens Axboe3d6770f2019-04-13 11:50:54 -06001979 if (state->file) {
Jens Axboe9a56a232019-01-09 09:06:50 -07001980 int diff = state->has_refs - state->used_refs;
1981
1982 if (diff)
1983 fput_many(state->file, diff);
1984 state->file = NULL;
1985 }
1986}
1987
1988/*
1989 * Get as many references to a file as we have IOs left in this submission,
1990 * assuming most submissions are for one file, or at least that each file
1991 * has more than one submission.
1992 */
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001993static struct file *__io_file_get(struct io_submit_state *state, int fd)
Jens Axboe9a56a232019-01-09 09:06:50 -07001994{
1995 if (!state)
1996 return fget(fd);
1997
1998 if (state->file) {
1999 if (state->fd == fd) {
2000 state->used_refs++;
2001 state->ios_left--;
2002 return state->file;
2003 }
Jens Axboe3d6770f2019-04-13 11:50:54 -06002004 io_file_put(state);
Jens Axboe9a56a232019-01-09 09:06:50 -07002005 }
2006 state->file = fget_many(fd, state->ios_left);
2007 if (!state->file)
2008 return NULL;
2009
2010 state->fd = fd;
2011 state->has_refs = state->ios_left;
2012 state->used_refs = 1;
2013 state->ios_left--;
2014 return state->file;
2015}
2016
Jens Axboe2b188cc2019-01-07 10:46:33 -07002017/*
2018 * If we tracked the file through the SCM inflight mechanism, we could support
2019 * any file. For now, just ensure that anything potentially problematic is done
2020 * inline.
2021 */
2022static bool io_file_supports_async(struct file *file)
2023{
2024 umode_t mode = file_inode(file)->i_mode;
2025
Jens Axboe10d59342019-12-09 20:16:22 -07002026 if (S_ISBLK(mode) || S_ISCHR(mode) || S_ISSOCK(mode))
Jens Axboe2b188cc2019-01-07 10:46:33 -07002027 return true;
2028 if (S_ISREG(mode) && file->f_op != &io_uring_fops)
2029 return true;
2030
2031 return false;
2032}
2033
Jens Axboe3529d8c2019-12-19 18:24:38 -07002034static int io_prep_rw(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2035 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002036{
Jens Axboedef596e2019-01-09 08:59:42 -07002037 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9adbd452019-12-20 08:45:55 -07002038 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe09bb8392019-03-13 12:39:28 -06002039 unsigned ioprio;
2040 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002041
Jens Axboe491381ce2019-10-17 09:20:46 -06002042 if (S_ISREG(file_inode(req->file)->i_mode))
2043 req->flags |= REQ_F_ISREG;
2044
Jens Axboe2b188cc2019-01-07 10:46:33 -07002045 kiocb->ki_pos = READ_ONCE(sqe->off);
Jens Axboeba042912019-12-25 16:33:42 -07002046 if (kiocb->ki_pos == -1 && !(req->file->f_mode & FMODE_STREAM)) {
2047 req->flags |= REQ_F_CUR_POS;
2048 kiocb->ki_pos = req->file->f_pos;
2049 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002050 kiocb->ki_hint = ki_hint_validate(file_write_hint(kiocb->ki_filp));
Pavel Begunkov3e577dc2020-02-01 03:58:42 +03002051 kiocb->ki_flags = iocb_flags(kiocb->ki_filp);
2052 ret = kiocb_set_rw_flags(kiocb, READ_ONCE(sqe->rw_flags));
2053 if (unlikely(ret))
2054 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002055
2056 ioprio = READ_ONCE(sqe->ioprio);
2057 if (ioprio) {
2058 ret = ioprio_check_cap(ioprio);
2059 if (ret)
Jens Axboe09bb8392019-03-13 12:39:28 -06002060 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002061
2062 kiocb->ki_ioprio = ioprio;
2063 } else
2064 kiocb->ki_ioprio = get_current_ioprio();
2065
Stefan Bühler8449eed2019-04-27 20:34:19 +02002066 /* don't allow async punt if RWF_NOWAIT was requested */
Jens Axboe491381ce2019-10-17 09:20:46 -06002067 if ((kiocb->ki_flags & IOCB_NOWAIT) ||
2068 (req->file->f_flags & O_NONBLOCK))
Stefan Bühler8449eed2019-04-27 20:34:19 +02002069 req->flags |= REQ_F_NOWAIT;
2070
2071 if (force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002072 kiocb->ki_flags |= IOCB_NOWAIT;
Stefan Bühler8449eed2019-04-27 20:34:19 +02002073
Jens Axboedef596e2019-01-09 08:59:42 -07002074 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07002075 if (!(kiocb->ki_flags & IOCB_DIRECT) ||
2076 !kiocb->ki_filp->f_op->iopoll)
Jens Axboe09bb8392019-03-13 12:39:28 -06002077 return -EOPNOTSUPP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002078
Jens Axboedef596e2019-01-09 08:59:42 -07002079 kiocb->ki_flags |= IOCB_HIPRI;
2080 kiocb->ki_complete = io_complete_rw_iopoll;
Jens Axboe6873e0b2019-10-30 13:53:09 -06002081 req->result = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07002082 } else {
Jens Axboe09bb8392019-03-13 12:39:28 -06002083 if (kiocb->ki_flags & IOCB_HIPRI)
2084 return -EINVAL;
Jens Axboedef596e2019-01-09 08:59:42 -07002085 kiocb->ki_complete = io_complete_rw;
2086 }
Jens Axboe9adbd452019-12-20 08:45:55 -07002087
Jens Axboe3529d8c2019-12-19 18:24:38 -07002088 req->rw.addr = READ_ONCE(sqe->addr);
2089 req->rw.len = READ_ONCE(sqe->len);
Jens Axboebcda7ba2020-02-23 16:42:51 -07002090 /* we own ->private, reuse it for the buffer index / buffer ID */
Jens Axboe9adbd452019-12-20 08:45:55 -07002091 req->rw.kiocb.private = (void *) (unsigned long)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002092 READ_ONCE(sqe->buf_index);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002093 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002094}
2095
2096static inline void io_rw_done(struct kiocb *kiocb, ssize_t ret)
2097{
2098 switch (ret) {
2099 case -EIOCBQUEUED:
2100 break;
2101 case -ERESTARTSYS:
2102 case -ERESTARTNOINTR:
2103 case -ERESTARTNOHAND:
2104 case -ERESTART_RESTARTBLOCK:
2105 /*
2106 * We can't just restart the syscall, since previously
2107 * submitted sqes may already be in progress. Just fail this
2108 * IO with EINTR.
2109 */
2110 ret = -EINTR;
2111 /* fall through */
2112 default:
2113 kiocb->ki_complete(kiocb, ret, 0);
2114 }
2115}
2116
Pavel Begunkov014db002020-03-03 21:33:12 +03002117static void kiocb_done(struct kiocb *kiocb, ssize_t ret)
Jens Axboeba816ad2019-09-28 11:36:45 -06002118{
Jens Axboeba042912019-12-25 16:33:42 -07002119 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
2120
2121 if (req->flags & REQ_F_CUR_POS)
2122 req->file->f_pos = kiocb->ki_pos;
Pavel Begunkovbcaec082020-02-24 11:30:18 +03002123 if (ret >= 0 && kiocb->ki_complete == io_complete_rw)
Pavel Begunkov014db002020-03-03 21:33:12 +03002124 io_complete_rw(kiocb, ret, 0);
Jens Axboeba816ad2019-09-28 11:36:45 -06002125 else
2126 io_rw_done(kiocb, ret);
2127}
2128
Jens Axboe9adbd452019-12-20 08:45:55 -07002129static ssize_t io_import_fixed(struct io_kiocb *req, int rw,
Pavel Begunkov7d009162019-11-25 23:14:40 +03002130 struct iov_iter *iter)
Jens Axboeedafcce2019-01-09 09:16:05 -07002131{
Jens Axboe9adbd452019-12-20 08:45:55 -07002132 struct io_ring_ctx *ctx = req->ctx;
2133 size_t len = req->rw.len;
Jens Axboeedafcce2019-01-09 09:16:05 -07002134 struct io_mapped_ubuf *imu;
2135 unsigned index, buf_index;
2136 size_t offset;
2137 u64 buf_addr;
2138
2139 /* attempt to use fixed buffers without having provided iovecs */
2140 if (unlikely(!ctx->user_bufs))
2141 return -EFAULT;
2142
Jens Axboe9adbd452019-12-20 08:45:55 -07002143 buf_index = (unsigned long) req->rw.kiocb.private;
Jens Axboeedafcce2019-01-09 09:16:05 -07002144 if (unlikely(buf_index >= ctx->nr_user_bufs))
2145 return -EFAULT;
2146
2147 index = array_index_nospec(buf_index, ctx->nr_user_bufs);
2148 imu = &ctx->user_bufs[index];
Jens Axboe9adbd452019-12-20 08:45:55 -07002149 buf_addr = req->rw.addr;
Jens Axboeedafcce2019-01-09 09:16:05 -07002150
2151 /* overflow */
2152 if (buf_addr + len < buf_addr)
2153 return -EFAULT;
2154 /* not inside the mapped region */
2155 if (buf_addr < imu->ubuf || buf_addr + len > imu->ubuf + imu->len)
2156 return -EFAULT;
2157
2158 /*
2159 * May not be a start of buffer, set size appropriately
2160 * and advance us to the beginning.
2161 */
2162 offset = buf_addr - imu->ubuf;
2163 iov_iter_bvec(iter, rw, imu->bvec, imu->nr_bvecs, offset + len);
Jens Axboebd11b3a2019-07-20 08:37:31 -06002164
2165 if (offset) {
2166 /*
2167 * Don't use iov_iter_advance() here, as it's really slow for
2168 * using the latter parts of a big fixed buffer - it iterates
2169 * over each segment manually. We can cheat a bit here, because
2170 * we know that:
2171 *
2172 * 1) it's a BVEC iter, we set it up
2173 * 2) all bvecs are PAGE_SIZE in size, except potentially the
2174 * first and last bvec
2175 *
2176 * So just find our index, and adjust the iterator afterwards.
2177 * If the offset is within the first bvec (or the whole first
2178 * bvec, just use iov_iter_advance(). This makes it easier
2179 * since we can just skip the first segment, which may not
2180 * be PAGE_SIZE aligned.
2181 */
2182 const struct bio_vec *bvec = imu->bvec;
2183
2184 if (offset <= bvec->bv_len) {
2185 iov_iter_advance(iter, offset);
2186 } else {
2187 unsigned long seg_skip;
2188
2189 /* skip first vec */
2190 offset -= bvec->bv_len;
2191 seg_skip = 1 + (offset >> PAGE_SHIFT);
2192
2193 iter->bvec = bvec + seg_skip;
2194 iter->nr_segs -= seg_skip;
Aleix Roca Nonell99c79f62019-08-15 14:03:22 +02002195 iter->count -= bvec->bv_len + offset;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002196 iter->iov_offset = offset & ~PAGE_MASK;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002197 }
2198 }
2199
Jens Axboe5e559562019-11-13 16:12:46 -07002200 return len;
Jens Axboeedafcce2019-01-09 09:16:05 -07002201}
2202
Jens Axboebcda7ba2020-02-23 16:42:51 -07002203static void io_ring_submit_unlock(struct io_ring_ctx *ctx, bool needs_lock)
2204{
2205 if (needs_lock)
2206 mutex_unlock(&ctx->uring_lock);
2207}
2208
2209static void io_ring_submit_lock(struct io_ring_ctx *ctx, bool needs_lock)
2210{
2211 /*
2212 * "Normal" inline submissions always hold the uring_lock, since we
2213 * grab it from the system call. Same is true for the SQPOLL offload.
2214 * The only exception is when we've detached the request and issue it
2215 * from an async worker thread, grab the lock for that case.
2216 */
2217 if (needs_lock)
2218 mutex_lock(&ctx->uring_lock);
2219}
2220
2221static struct io_buffer *io_buffer_select(struct io_kiocb *req, size_t *len,
2222 int bgid, struct io_buffer *kbuf,
2223 bool needs_lock)
2224{
2225 struct io_buffer *head;
2226
2227 if (req->flags & REQ_F_BUFFER_SELECTED)
2228 return kbuf;
2229
2230 io_ring_submit_lock(req->ctx, needs_lock);
2231
2232 lockdep_assert_held(&req->ctx->uring_lock);
2233
2234 head = idr_find(&req->ctx->io_buffer_idr, bgid);
2235 if (head) {
2236 if (!list_empty(&head->list)) {
2237 kbuf = list_last_entry(&head->list, struct io_buffer,
2238 list);
2239 list_del(&kbuf->list);
2240 } else {
2241 kbuf = head;
2242 idr_remove(&req->ctx->io_buffer_idr, bgid);
2243 }
2244 if (*len > kbuf->len)
2245 *len = kbuf->len;
2246 } else {
2247 kbuf = ERR_PTR(-ENOBUFS);
2248 }
2249
2250 io_ring_submit_unlock(req->ctx, needs_lock);
2251
2252 return kbuf;
2253}
2254
Jens Axboe4d954c22020-02-27 07:31:19 -07002255static void __user *io_rw_buffer_select(struct io_kiocb *req, size_t *len,
2256 bool needs_lock)
2257{
2258 struct io_buffer *kbuf;
2259 int bgid;
2260
2261 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
2262 bgid = (int) (unsigned long) req->rw.kiocb.private;
2263 kbuf = io_buffer_select(req, len, bgid, kbuf, needs_lock);
2264 if (IS_ERR(kbuf))
2265 return kbuf;
2266 req->rw.addr = (u64) (unsigned long) kbuf;
2267 req->flags |= REQ_F_BUFFER_SELECTED;
2268 return u64_to_user_ptr(kbuf->addr);
2269}
2270
2271#ifdef CONFIG_COMPAT
2272static ssize_t io_compat_import(struct io_kiocb *req, struct iovec *iov,
2273 bool needs_lock)
2274{
2275 struct compat_iovec __user *uiov;
2276 compat_ssize_t clen;
2277 void __user *buf;
2278 ssize_t len;
2279
2280 uiov = u64_to_user_ptr(req->rw.addr);
2281 if (!access_ok(uiov, sizeof(*uiov)))
2282 return -EFAULT;
2283 if (__get_user(clen, &uiov->iov_len))
2284 return -EFAULT;
2285 if (clen < 0)
2286 return -EINVAL;
2287
2288 len = clen;
2289 buf = io_rw_buffer_select(req, &len, needs_lock);
2290 if (IS_ERR(buf))
2291 return PTR_ERR(buf);
2292 iov[0].iov_base = buf;
2293 iov[0].iov_len = (compat_size_t) len;
2294 return 0;
2295}
2296#endif
2297
2298static ssize_t __io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
2299 bool needs_lock)
2300{
2301 struct iovec __user *uiov = u64_to_user_ptr(req->rw.addr);
2302 void __user *buf;
2303 ssize_t len;
2304
2305 if (copy_from_user(iov, uiov, sizeof(*uiov)))
2306 return -EFAULT;
2307
2308 len = iov[0].iov_len;
2309 if (len < 0)
2310 return -EINVAL;
2311 buf = io_rw_buffer_select(req, &len, needs_lock);
2312 if (IS_ERR(buf))
2313 return PTR_ERR(buf);
2314 iov[0].iov_base = buf;
2315 iov[0].iov_len = len;
2316 return 0;
2317}
2318
2319static ssize_t io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
2320 bool needs_lock)
2321{
2322 if (req->flags & REQ_F_BUFFER_SELECTED)
2323 return 0;
2324 if (!req->rw.len)
2325 return 0;
2326 else if (req->rw.len > 1)
2327 return -EINVAL;
2328
2329#ifdef CONFIG_COMPAT
2330 if (req->ctx->compat)
2331 return io_compat_import(req, iov, needs_lock);
2332#endif
2333
2334 return __io_iov_buffer_select(req, iov, needs_lock);
2335}
2336
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002337static ssize_t io_import_iovec(int rw, struct io_kiocb *req,
Jens Axboebcda7ba2020-02-23 16:42:51 -07002338 struct iovec **iovec, struct iov_iter *iter,
2339 bool needs_lock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002340{
Jens Axboe9adbd452019-12-20 08:45:55 -07002341 void __user *buf = u64_to_user_ptr(req->rw.addr);
2342 size_t sqe_len = req->rw.len;
Jens Axboe4d954c22020-02-27 07:31:19 -07002343 ssize_t ret;
Jens Axboeedafcce2019-01-09 09:16:05 -07002344 u8 opcode;
2345
Jens Axboed625c6e2019-12-17 19:53:05 -07002346 opcode = req->opcode;
Pavel Begunkov7d009162019-11-25 23:14:40 +03002347 if (opcode == IORING_OP_READ_FIXED || opcode == IORING_OP_WRITE_FIXED) {
Jens Axboeedafcce2019-01-09 09:16:05 -07002348 *iovec = NULL;
Jens Axboe9adbd452019-12-20 08:45:55 -07002349 return io_import_fixed(req, rw, iter);
Jens Axboeedafcce2019-01-09 09:16:05 -07002350 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002351
Jens Axboebcda7ba2020-02-23 16:42:51 -07002352 /* buffer index only valid with fixed read/write, or buffer select */
2353 if (req->rw.kiocb.private && !(req->flags & REQ_F_BUFFER_SELECT))
Jens Axboe9adbd452019-12-20 08:45:55 -07002354 return -EINVAL;
2355
Jens Axboe3a6820f2019-12-22 15:19:35 -07002356 if (opcode == IORING_OP_READ || opcode == IORING_OP_WRITE) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07002357 if (req->flags & REQ_F_BUFFER_SELECT) {
Jens Axboe4d954c22020-02-27 07:31:19 -07002358 buf = io_rw_buffer_select(req, &sqe_len, needs_lock);
2359 if (IS_ERR(buf)) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07002360 *iovec = NULL;
Jens Axboe4d954c22020-02-27 07:31:19 -07002361 return PTR_ERR(buf);
Jens Axboebcda7ba2020-02-23 16:42:51 -07002362 }
Jens Axboebcda7ba2020-02-23 16:42:51 -07002363 }
2364
Jens Axboe3a6820f2019-12-22 15:19:35 -07002365 ret = import_single_range(rw, buf, sqe_len, *iovec, iter);
2366 *iovec = NULL;
Jens Axboe3a901592020-02-25 17:48:55 -07002367 return ret < 0 ? ret : sqe_len;
Jens Axboe3a6820f2019-12-22 15:19:35 -07002368 }
2369
Jens Axboef67676d2019-12-02 11:03:47 -07002370 if (req->io) {
2371 struct io_async_rw *iorw = &req->io->rw;
2372
2373 *iovec = iorw->iov;
2374 iov_iter_init(iter, rw, *iovec, iorw->nr_segs, iorw->size);
2375 if (iorw->iov == iorw->fast_iov)
2376 *iovec = NULL;
2377 return iorw->size;
2378 }
2379
Jens Axboe4d954c22020-02-27 07:31:19 -07002380 if (req->flags & REQ_F_BUFFER_SELECT) {
2381 ret = io_iov_buffer_select(req, *iovec, needs_lock);
2382 if (!ret)
2383 iov_iter_init(iter, rw, *iovec, 1, (*iovec)->iov_len);
2384 *iovec = NULL;
2385 return ret;
2386 }
2387
Jens Axboe2b188cc2019-01-07 10:46:33 -07002388#ifdef CONFIG_COMPAT
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002389 if (req->ctx->compat)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002390 return compat_import_iovec(rw, buf, sqe_len, UIO_FASTIOV,
2391 iovec, iter);
2392#endif
2393
2394 return import_iovec(rw, buf, sqe_len, UIO_FASTIOV, iovec, iter);
2395}
2396
Jens Axboe32960612019-09-23 11:05:34 -06002397/*
2398 * For files that don't have ->read_iter() and ->write_iter(), handle them
2399 * by looping over ->read() or ->write() manually.
2400 */
2401static ssize_t loop_rw_iter(int rw, struct file *file, struct kiocb *kiocb,
2402 struct iov_iter *iter)
2403{
2404 ssize_t ret = 0;
2405
2406 /*
2407 * Don't support polled IO through this interface, and we can't
2408 * support non-blocking either. For the latter, this just causes
2409 * the kiocb to be handled from an async context.
2410 */
2411 if (kiocb->ki_flags & IOCB_HIPRI)
2412 return -EOPNOTSUPP;
2413 if (kiocb->ki_flags & IOCB_NOWAIT)
2414 return -EAGAIN;
2415
2416 while (iov_iter_count(iter)) {
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002417 struct iovec iovec;
Jens Axboe32960612019-09-23 11:05:34 -06002418 ssize_t nr;
2419
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002420 if (!iov_iter_is_bvec(iter)) {
2421 iovec = iov_iter_iovec(iter);
2422 } else {
2423 /* fixed buffers import bvec */
2424 iovec.iov_base = kmap(iter->bvec->bv_page)
2425 + iter->iov_offset;
2426 iovec.iov_len = min(iter->count,
2427 iter->bvec->bv_len - iter->iov_offset);
2428 }
2429
Jens Axboe32960612019-09-23 11:05:34 -06002430 if (rw == READ) {
2431 nr = file->f_op->read(file, iovec.iov_base,
2432 iovec.iov_len, &kiocb->ki_pos);
2433 } else {
2434 nr = file->f_op->write(file, iovec.iov_base,
2435 iovec.iov_len, &kiocb->ki_pos);
2436 }
2437
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002438 if (iov_iter_is_bvec(iter))
2439 kunmap(iter->bvec->bv_page);
2440
Jens Axboe32960612019-09-23 11:05:34 -06002441 if (nr < 0) {
2442 if (!ret)
2443 ret = nr;
2444 break;
2445 }
2446 ret += nr;
2447 if (nr != iovec.iov_len)
2448 break;
2449 iov_iter_advance(iter, nr);
2450 }
2451
2452 return ret;
2453}
2454
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002455static void io_req_map_rw(struct io_kiocb *req, ssize_t io_size,
Jens Axboef67676d2019-12-02 11:03:47 -07002456 struct iovec *iovec, struct iovec *fast_iov,
2457 struct iov_iter *iter)
2458{
2459 req->io->rw.nr_segs = iter->nr_segs;
2460 req->io->rw.size = io_size;
2461 req->io->rw.iov = iovec;
2462 if (!req->io->rw.iov) {
2463 req->io->rw.iov = req->io->rw.fast_iov;
2464 memcpy(req->io->rw.iov, fast_iov,
2465 sizeof(struct iovec) * iter->nr_segs);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002466 } else {
2467 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboef67676d2019-12-02 11:03:47 -07002468 }
2469}
2470
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002471static int io_alloc_async_ctx(struct io_kiocb *req)
Jens Axboef67676d2019-12-02 11:03:47 -07002472{
Jens Axboed3656342019-12-18 09:50:26 -07002473 if (!io_op_defs[req->opcode].async_ctx)
2474 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002475 req->io = kmalloc(sizeof(*req->io), GFP_KERNEL);
Jens Axboe06b76d42019-12-19 14:44:26 -07002476 return req->io == NULL;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002477}
2478
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002479static int io_setup_async_rw(struct io_kiocb *req, ssize_t io_size,
2480 struct iovec *iovec, struct iovec *fast_iov,
2481 struct iov_iter *iter)
2482{
Jens Axboe980ad262020-01-24 23:08:54 -07002483 if (!io_op_defs[req->opcode].async_ctx)
Jens Axboe74566df2020-01-13 19:23:24 -07002484 return 0;
Jens Axboe5d204bc2020-01-31 12:06:52 -07002485 if (!req->io) {
2486 if (io_alloc_async_ctx(req))
2487 return -ENOMEM;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002488
Jens Axboe5d204bc2020-01-31 12:06:52 -07002489 io_req_map_rw(req, io_size, iovec, fast_iov, iter);
2490 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002491 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002492}
2493
Jens Axboe3529d8c2019-12-19 18:24:38 -07002494static int io_read_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2495 bool force_nonblock)
Jens Axboef67676d2019-12-02 11:03:47 -07002496{
Jens Axboe3529d8c2019-12-19 18:24:38 -07002497 struct io_async_ctx *io;
2498 struct iov_iter iter;
Jens Axboef67676d2019-12-02 11:03:47 -07002499 ssize_t ret;
2500
Jens Axboe3529d8c2019-12-19 18:24:38 -07002501 ret = io_prep_rw(req, sqe, force_nonblock);
2502 if (ret)
2503 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07002504
Jens Axboe3529d8c2019-12-19 18:24:38 -07002505 if (unlikely(!(req->file->f_mode & FMODE_READ)))
2506 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07002507
Pavel Begunkov5f798be2020-02-08 13:28:02 +03002508 /* either don't need iovec imported or already have it */
2509 if (!req->io || req->flags & REQ_F_NEED_CLEANUP)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002510 return 0;
2511
2512 io = req->io;
2513 io->rw.iov = io->rw.fast_iov;
2514 req->io = NULL;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002515 ret = io_import_iovec(READ, req, &io->rw.iov, &iter, !force_nonblock);
Jens Axboe3529d8c2019-12-19 18:24:38 -07002516 req->io = io;
2517 if (ret < 0)
2518 return ret;
2519
2520 io_req_map_rw(req, ret, io->rw.iov, io->rw.fast_iov, &iter);
2521 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002522}
2523
Pavel Begunkov014db002020-03-03 21:33:12 +03002524static int io_read(struct io_kiocb *req, bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002525{
2526 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07002527 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002528 struct iov_iter iter;
Jens Axboe31b51512019-01-18 22:56:34 -07002529 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07002530 ssize_t io_size, ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002531
Jens Axboebcda7ba2020-02-23 16:42:51 -07002532 ret = io_import_iovec(READ, req, &iovec, &iter, !force_nonblock);
Jens Axboe06b76d42019-12-19 14:44:26 -07002533 if (ret < 0)
2534 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002535
Jens Axboefd6c2e42019-12-18 12:19:41 -07002536 /* Ensure we clear previously set non-block flag */
2537 if (!force_nonblock)
Jens Axboe29de5f62020-02-20 09:56:08 -07002538 kiocb->ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07002539
Bijan Mottahedeh797f3f52020-01-15 18:37:45 -08002540 req->result = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002541 io_size = ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06002542 if (req->flags & REQ_F_LINK)
Jens Axboef67676d2019-12-02 11:03:47 -07002543 req->result = io_size;
2544
2545 /*
2546 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
2547 * we know to async punt it even if it was opened O_NONBLOCK
2548 */
Jens Axboe29de5f62020-02-20 09:56:08 -07002549 if (force_nonblock && !io_file_supports_async(req->file))
Jens Axboef67676d2019-12-02 11:03:47 -07002550 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06002551
Jens Axboe31b51512019-01-18 22:56:34 -07002552 iov_count = iov_iter_count(&iter);
Jens Axboe9adbd452019-12-20 08:45:55 -07002553 ret = rw_verify_area(READ, req->file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002554 if (!ret) {
2555 ssize_t ret2;
2556
Jens Axboe9adbd452019-12-20 08:45:55 -07002557 if (req->file->f_op->read_iter)
2558 ret2 = call_read_iter(req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002559 else
Jens Axboe9adbd452019-12-20 08:45:55 -07002560 ret2 = loop_rw_iter(READ, req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002561
Jens Axboe9d93a3f2019-05-15 13:53:07 -06002562 /* Catch -EAGAIN return for forced non-blocking submission */
Jens Axboef67676d2019-12-02 11:03:47 -07002563 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkov014db002020-03-03 21:33:12 +03002564 kiocb_done(kiocb, ret2);
Jens Axboef67676d2019-12-02 11:03:47 -07002565 } else {
2566copy_iov:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002567 ret = io_setup_async_rw(req, io_size, iovec,
Jens Axboef67676d2019-12-02 11:03:47 -07002568 inline_vecs, &iter);
2569 if (ret)
2570 goto out_free;
Jens Axboe29de5f62020-02-20 09:56:08 -07002571 /* any defer here is final, must blocking retry */
2572 if (!(req->flags & REQ_F_NOWAIT))
2573 req->flags |= REQ_F_MUST_PUNT;
Jens Axboef67676d2019-12-02 11:03:47 -07002574 return -EAGAIN;
2575 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002576 }
Jens Axboef67676d2019-12-02 11:03:47 -07002577out_free:
Pavel Begunkov1e950812020-02-06 19:51:16 +03002578 kfree(iovec);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002579 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002580 return ret;
2581}
2582
Jens Axboe3529d8c2019-12-19 18:24:38 -07002583static int io_write_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2584 bool force_nonblock)
Jens Axboef67676d2019-12-02 11:03:47 -07002585{
Jens Axboe3529d8c2019-12-19 18:24:38 -07002586 struct io_async_ctx *io;
2587 struct iov_iter iter;
Jens Axboef67676d2019-12-02 11:03:47 -07002588 ssize_t ret;
2589
Jens Axboe3529d8c2019-12-19 18:24:38 -07002590 ret = io_prep_rw(req, sqe, force_nonblock);
2591 if (ret)
2592 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07002593
Jens Axboe3529d8c2019-12-19 18:24:38 -07002594 if (unlikely(!(req->file->f_mode & FMODE_WRITE)))
2595 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07002596
Pavel Begunkov5f798be2020-02-08 13:28:02 +03002597 /* either don't need iovec imported or already have it */
2598 if (!req->io || req->flags & REQ_F_NEED_CLEANUP)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002599 return 0;
2600
2601 io = req->io;
2602 io->rw.iov = io->rw.fast_iov;
2603 req->io = NULL;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002604 ret = io_import_iovec(WRITE, req, &io->rw.iov, &iter, !force_nonblock);
Jens Axboe3529d8c2019-12-19 18:24:38 -07002605 req->io = io;
2606 if (ret < 0)
2607 return ret;
2608
2609 io_req_map_rw(req, ret, io->rw.iov, io->rw.fast_iov, &iter);
2610 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002611}
2612
Pavel Begunkov014db002020-03-03 21:33:12 +03002613static int io_write(struct io_kiocb *req, bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002614{
2615 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07002616 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002617 struct iov_iter iter;
Jens Axboe31b51512019-01-18 22:56:34 -07002618 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07002619 ssize_t ret, io_size;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002620
Jens Axboebcda7ba2020-02-23 16:42:51 -07002621 ret = io_import_iovec(WRITE, req, &iovec, &iter, !force_nonblock);
Jens Axboe06b76d42019-12-19 14:44:26 -07002622 if (ret < 0)
2623 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002624
Jens Axboefd6c2e42019-12-18 12:19:41 -07002625 /* Ensure we clear previously set non-block flag */
2626 if (!force_nonblock)
Jens Axboe9adbd452019-12-20 08:45:55 -07002627 req->rw.kiocb.ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07002628
Bijan Mottahedeh797f3f52020-01-15 18:37:45 -08002629 req->result = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002630 io_size = ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06002631 if (req->flags & REQ_F_LINK)
Jens Axboef67676d2019-12-02 11:03:47 -07002632 req->result = io_size;
2633
2634 /*
2635 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
2636 * we know to async punt it even if it was opened O_NONBLOCK
2637 */
Jens Axboe29de5f62020-02-20 09:56:08 -07002638 if (force_nonblock && !io_file_supports_async(req->file))
Jens Axboef67676d2019-12-02 11:03:47 -07002639 goto copy_iov;
Jens Axboef67676d2019-12-02 11:03:47 -07002640
Jens Axboe10d59342019-12-09 20:16:22 -07002641 /* file path doesn't support NOWAIT for non-direct_IO */
2642 if (force_nonblock && !(kiocb->ki_flags & IOCB_DIRECT) &&
2643 (req->flags & REQ_F_ISREG))
Jens Axboef67676d2019-12-02 11:03:47 -07002644 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06002645
Jens Axboe31b51512019-01-18 22:56:34 -07002646 iov_count = iov_iter_count(&iter);
Jens Axboe9adbd452019-12-20 08:45:55 -07002647 ret = rw_verify_area(WRITE, req->file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002648 if (!ret) {
Roman Penyaev9bf79332019-03-25 20:09:24 +01002649 ssize_t ret2;
2650
Jens Axboe2b188cc2019-01-07 10:46:33 -07002651 /*
2652 * Open-code file_start_write here to grab freeze protection,
2653 * which will be released by another thread in
2654 * io_complete_rw(). Fool lockdep by telling it the lock got
2655 * released so that it doesn't complain about the held lock when
2656 * we return to userspace.
2657 */
Jens Axboe491381ce2019-10-17 09:20:46 -06002658 if (req->flags & REQ_F_ISREG) {
Jens Axboe9adbd452019-12-20 08:45:55 -07002659 __sb_start_write(file_inode(req->file)->i_sb,
Jens Axboe2b188cc2019-01-07 10:46:33 -07002660 SB_FREEZE_WRITE, true);
Jens Axboe9adbd452019-12-20 08:45:55 -07002661 __sb_writers_release(file_inode(req->file)->i_sb,
Jens Axboe2b188cc2019-01-07 10:46:33 -07002662 SB_FREEZE_WRITE);
2663 }
2664 kiocb->ki_flags |= IOCB_WRITE;
Roman Penyaev9bf79332019-03-25 20:09:24 +01002665
Jens Axboe9adbd452019-12-20 08:45:55 -07002666 if (req->file->f_op->write_iter)
2667 ret2 = call_write_iter(req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002668 else
Jens Axboe9adbd452019-12-20 08:45:55 -07002669 ret2 = loop_rw_iter(WRITE, req->file, kiocb, &iter);
Jens Axboefaac9962020-02-07 15:45:22 -07002670 /*
2671 * Raw bdev writes will -EOPNOTSUPP for IOCB_NOWAIT. Just
2672 * retry them without IOCB_NOWAIT.
2673 */
2674 if (ret2 == -EOPNOTSUPP && (kiocb->ki_flags & IOCB_NOWAIT))
2675 ret2 = -EAGAIN;
Jens Axboef67676d2019-12-02 11:03:47 -07002676 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkov014db002020-03-03 21:33:12 +03002677 kiocb_done(kiocb, ret2);
Jens Axboef67676d2019-12-02 11:03:47 -07002678 } else {
2679copy_iov:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002680 ret = io_setup_async_rw(req, io_size, iovec,
Jens Axboef67676d2019-12-02 11:03:47 -07002681 inline_vecs, &iter);
2682 if (ret)
2683 goto out_free;
Jens Axboe29de5f62020-02-20 09:56:08 -07002684 /* any defer here is final, must blocking retry */
2685 req->flags |= REQ_F_MUST_PUNT;
Jens Axboef67676d2019-12-02 11:03:47 -07002686 return -EAGAIN;
2687 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002688 }
Jens Axboe31b51512019-01-18 22:56:34 -07002689out_free:
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002690 req->flags &= ~REQ_F_NEED_CLEANUP;
Pavel Begunkov1e950812020-02-06 19:51:16 +03002691 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002692 return ret;
2693}
2694
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002695static int io_splice_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2696{
2697 struct io_splice* sp = &req->splice;
2698 unsigned int valid_flags = SPLICE_F_FD_IN_FIXED | SPLICE_F_ALL;
2699 int ret;
2700
2701 if (req->flags & REQ_F_NEED_CLEANUP)
2702 return 0;
2703
2704 sp->file_in = NULL;
2705 sp->off_in = READ_ONCE(sqe->splice_off_in);
2706 sp->off_out = READ_ONCE(sqe->off);
2707 sp->len = READ_ONCE(sqe->len);
2708 sp->flags = READ_ONCE(sqe->splice_flags);
2709
2710 if (unlikely(sp->flags & ~valid_flags))
2711 return -EINVAL;
2712
2713 ret = io_file_get(NULL, req, READ_ONCE(sqe->splice_fd_in), &sp->file_in,
2714 (sp->flags & SPLICE_F_FD_IN_FIXED));
2715 if (ret)
2716 return ret;
2717 req->flags |= REQ_F_NEED_CLEANUP;
2718
2719 if (!S_ISREG(file_inode(sp->file_in)->i_mode))
2720 req->work.flags |= IO_WQ_WORK_UNBOUND;
2721
2722 return 0;
2723}
2724
2725static bool io_splice_punt(struct file *file)
2726{
2727 if (get_pipe_info(file))
2728 return false;
2729 if (!io_file_supports_async(file))
2730 return true;
2731 return !(file->f_mode & O_NONBLOCK);
2732}
2733
Pavel Begunkov014db002020-03-03 21:33:12 +03002734static int io_splice(struct io_kiocb *req, bool force_nonblock)
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002735{
2736 struct io_splice *sp = &req->splice;
2737 struct file *in = sp->file_in;
2738 struct file *out = sp->file_out;
2739 unsigned int flags = sp->flags & ~SPLICE_F_FD_IN_FIXED;
2740 loff_t *poff_in, *poff_out;
2741 long ret;
2742
2743 if (force_nonblock) {
2744 if (io_splice_punt(in) || io_splice_punt(out))
2745 return -EAGAIN;
2746 flags |= SPLICE_F_NONBLOCK;
2747 }
2748
2749 poff_in = (sp->off_in == -1) ? NULL : &sp->off_in;
2750 poff_out = (sp->off_out == -1) ? NULL : &sp->off_out;
2751 ret = do_splice(in, poff_in, out, poff_out, sp->len, flags);
2752 if (force_nonblock && ret == -EAGAIN)
2753 return -EAGAIN;
2754
2755 io_put_file(req, in, (sp->flags & SPLICE_F_FD_IN_FIXED));
2756 req->flags &= ~REQ_F_NEED_CLEANUP;
2757
2758 io_cqring_add_event(req, ret);
2759 if (ret != sp->len)
2760 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03002761 io_put_req(req);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002762 return 0;
2763}
2764
Jens Axboe2b188cc2019-01-07 10:46:33 -07002765/*
2766 * IORING_OP_NOP just posts a completion event, nothing else.
2767 */
Jens Axboe78e19bb2019-11-06 15:21:34 -07002768static int io_nop(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002769{
2770 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002771
Jens Axboedef596e2019-01-09 08:59:42 -07002772 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
2773 return -EINVAL;
2774
Jens Axboe78e19bb2019-11-06 15:21:34 -07002775 io_cqring_add_event(req, 0);
Jens Axboee65ef562019-03-12 10:16:44 -06002776 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002777 return 0;
2778}
2779
Jens Axboe3529d8c2019-12-19 18:24:38 -07002780static int io_prep_fsync(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002781{
Jens Axboe6b063142019-01-10 22:13:58 -07002782 struct io_ring_ctx *ctx = req->ctx;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002783
Jens Axboe09bb8392019-03-13 12:39:28 -06002784 if (!req->file)
2785 return -EBADF;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002786
Jens Axboe6b063142019-01-10 22:13:58 -07002787 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboedef596e2019-01-09 08:59:42 -07002788 return -EINVAL;
Jens Axboeedafcce2019-01-09 09:16:05 -07002789 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002790 return -EINVAL;
2791
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002792 req->sync.flags = READ_ONCE(sqe->fsync_flags);
2793 if (unlikely(req->sync.flags & ~IORING_FSYNC_DATASYNC))
2794 return -EINVAL;
2795
2796 req->sync.off = READ_ONCE(sqe->off);
2797 req->sync.len = READ_ONCE(sqe->len);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002798 return 0;
2799}
2800
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002801static bool io_req_cancelled(struct io_kiocb *req)
2802{
2803 if (req->work.flags & IO_WQ_WORK_CANCEL) {
2804 req_set_fail_links(req);
2805 io_cqring_add_event(req, -ECANCELED);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03002806 io_put_req(req);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002807 return true;
2808 }
2809
2810 return false;
2811}
2812
Pavel Begunkov014db002020-03-03 21:33:12 +03002813static void __io_fsync(struct io_kiocb *req)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002814{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002815 loff_t end = req->sync.off + req->sync.len;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002816 int ret;
2817
Jens Axboe9adbd452019-12-20 08:45:55 -07002818 ret = vfs_fsync_range(req->file, req->sync.off,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002819 end > 0 ? end : LLONG_MAX,
2820 req->sync.flags & IORING_FSYNC_DATASYNC);
2821 if (ret < 0)
2822 req_set_fail_links(req);
2823 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03002824 io_put_req(req);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002825}
2826
2827static void io_fsync_finish(struct io_wq_work **workptr)
2828{
2829 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002830
2831 if (io_req_cancelled(req))
2832 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03002833 __io_fsync(req);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03002834 io_steal_work(req, workptr);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002835}
2836
Pavel Begunkov014db002020-03-03 21:33:12 +03002837static int io_fsync(struct io_kiocb *req, bool force_nonblock)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002838{
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002839 /* fsync always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002840 if (force_nonblock) {
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002841 req->work.func = io_fsync_finish;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002842 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002843 }
Pavel Begunkov014db002020-03-03 21:33:12 +03002844 __io_fsync(req);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002845 return 0;
2846}
2847
Pavel Begunkov014db002020-03-03 21:33:12 +03002848static void __io_fallocate(struct io_kiocb *req)
Jens Axboed63d1b52019-12-10 10:38:56 -07002849{
Jens Axboed63d1b52019-12-10 10:38:56 -07002850 int ret;
2851
2852 ret = vfs_fallocate(req->file, req->sync.mode, req->sync.off,
2853 req->sync.len);
2854 if (ret < 0)
2855 req_set_fail_links(req);
2856 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03002857 io_put_req(req);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002858}
2859
2860static void io_fallocate_finish(struct io_wq_work **workptr)
2861{
2862 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002863
Pavel Begunkov594506f2020-03-03 21:33:11 +03002864 if (io_req_cancelled(req))
2865 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03002866 __io_fallocate(req);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03002867 io_steal_work(req, workptr);
Jens Axboed63d1b52019-12-10 10:38:56 -07002868}
2869
2870static int io_fallocate_prep(struct io_kiocb *req,
2871 const struct io_uring_sqe *sqe)
2872{
2873 if (sqe->ioprio || sqe->buf_index || sqe->rw_flags)
2874 return -EINVAL;
2875
2876 req->sync.off = READ_ONCE(sqe->off);
2877 req->sync.len = READ_ONCE(sqe->addr);
2878 req->sync.mode = READ_ONCE(sqe->len);
2879 return 0;
2880}
2881
Pavel Begunkov014db002020-03-03 21:33:12 +03002882static int io_fallocate(struct io_kiocb *req, bool force_nonblock)
Jens Axboed63d1b52019-12-10 10:38:56 -07002883{
Jens Axboed63d1b52019-12-10 10:38:56 -07002884 /* fallocate always requiring blocking context */
2885 if (force_nonblock) {
Jens Axboed63d1b52019-12-10 10:38:56 -07002886 req->work.func = io_fallocate_finish;
2887 return -EAGAIN;
2888 }
2889
Pavel Begunkov014db002020-03-03 21:33:12 +03002890 __io_fallocate(req);
Jens Axboed63d1b52019-12-10 10:38:56 -07002891 return 0;
2892}
2893
Jens Axboe15b71ab2019-12-11 11:20:36 -07002894static int io_openat_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2895{
Jens Axboef8748882020-01-08 17:47:02 -07002896 const char __user *fname;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002897 int ret;
2898
2899 if (sqe->ioprio || sqe->buf_index)
2900 return -EINVAL;
Jens Axboecf3040c2020-02-06 21:31:40 -07002901 if (sqe->flags & IOSQE_FIXED_FILE)
2902 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03002903 if (req->flags & REQ_F_NEED_CLEANUP)
2904 return 0;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002905
2906 req->open.dfd = READ_ONCE(sqe->fd);
Jens Axboec12cedf2020-01-08 17:41:21 -07002907 req->open.how.mode = READ_ONCE(sqe->len);
Jens Axboef8748882020-01-08 17:47:02 -07002908 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboec12cedf2020-01-08 17:41:21 -07002909 req->open.how.flags = READ_ONCE(sqe->open_flags);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002910
Jens Axboef8748882020-01-08 17:47:02 -07002911 req->open.filename = getname(fname);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002912 if (IS_ERR(req->open.filename)) {
2913 ret = PTR_ERR(req->open.filename);
2914 req->open.filename = NULL;
2915 return ret;
2916 }
2917
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03002918 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002919 return 0;
2920}
2921
Jens Axboecebdb982020-01-08 17:59:24 -07002922static int io_openat2_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2923{
2924 struct open_how __user *how;
2925 const char __user *fname;
2926 size_t len;
2927 int ret;
2928
2929 if (sqe->ioprio || sqe->buf_index)
2930 return -EINVAL;
Jens Axboecf3040c2020-02-06 21:31:40 -07002931 if (sqe->flags & IOSQE_FIXED_FILE)
2932 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03002933 if (req->flags & REQ_F_NEED_CLEANUP)
2934 return 0;
Jens Axboecebdb982020-01-08 17:59:24 -07002935
2936 req->open.dfd = READ_ONCE(sqe->fd);
2937 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
2938 how = u64_to_user_ptr(READ_ONCE(sqe->addr2));
2939 len = READ_ONCE(sqe->len);
2940
2941 if (len < OPEN_HOW_SIZE_VER0)
2942 return -EINVAL;
2943
2944 ret = copy_struct_from_user(&req->open.how, sizeof(req->open.how), how,
2945 len);
2946 if (ret)
2947 return ret;
2948
2949 if (!(req->open.how.flags & O_PATH) && force_o_largefile())
2950 req->open.how.flags |= O_LARGEFILE;
2951
2952 req->open.filename = getname(fname);
2953 if (IS_ERR(req->open.filename)) {
2954 ret = PTR_ERR(req->open.filename);
2955 req->open.filename = NULL;
2956 return ret;
2957 }
2958
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03002959 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboecebdb982020-01-08 17:59:24 -07002960 return 0;
2961}
2962
Pavel Begunkov014db002020-03-03 21:33:12 +03002963static int io_openat2(struct io_kiocb *req, bool force_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07002964{
2965 struct open_flags op;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002966 struct file *file;
2967 int ret;
2968
Jens Axboef86cd202020-01-29 13:46:44 -07002969 if (force_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07002970 return -EAGAIN;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002971
Jens Axboecebdb982020-01-08 17:59:24 -07002972 ret = build_open_flags(&req->open.how, &op);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002973 if (ret)
2974 goto err;
2975
Jens Axboecebdb982020-01-08 17:59:24 -07002976 ret = get_unused_fd_flags(req->open.how.flags);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002977 if (ret < 0)
2978 goto err;
2979
2980 file = do_filp_open(req->open.dfd, req->open.filename, &op);
2981 if (IS_ERR(file)) {
2982 put_unused_fd(ret);
2983 ret = PTR_ERR(file);
2984 } else {
2985 fsnotify_open(file);
2986 fd_install(ret, file);
2987 }
2988err:
2989 putname(req->open.filename);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03002990 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002991 if (ret < 0)
2992 req_set_fail_links(req);
2993 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03002994 io_put_req(req);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002995 return 0;
2996}
2997
Pavel Begunkov014db002020-03-03 21:33:12 +03002998static int io_openat(struct io_kiocb *req, bool force_nonblock)
Jens Axboecebdb982020-01-08 17:59:24 -07002999{
3000 req->open.how = build_open_how(req->open.how.flags, req->open.how.mode);
Pavel Begunkov014db002020-03-03 21:33:12 +03003001 return io_openat2(req, force_nonblock);
Jens Axboecebdb982020-01-08 17:59:24 -07003002}
3003
Jens Axboe067524e2020-03-02 16:32:28 -07003004static int io_remove_buffers_prep(struct io_kiocb *req,
3005 const struct io_uring_sqe *sqe)
3006{
3007 struct io_provide_buf *p = &req->pbuf;
3008 u64 tmp;
3009
3010 if (sqe->ioprio || sqe->rw_flags || sqe->addr || sqe->len || sqe->off)
3011 return -EINVAL;
3012
3013 tmp = READ_ONCE(sqe->fd);
3014 if (!tmp || tmp > USHRT_MAX)
3015 return -EINVAL;
3016
3017 memset(p, 0, sizeof(*p));
3018 p->nbufs = tmp;
3019 p->bgid = READ_ONCE(sqe->buf_group);
3020 return 0;
3021}
3022
3023static int __io_remove_buffers(struct io_ring_ctx *ctx, struct io_buffer *buf,
3024 int bgid, unsigned nbufs)
3025{
3026 unsigned i = 0;
3027
3028 /* shouldn't happen */
3029 if (!nbufs)
3030 return 0;
3031
3032 /* the head kbuf is the list itself */
3033 while (!list_empty(&buf->list)) {
3034 struct io_buffer *nxt;
3035
3036 nxt = list_first_entry(&buf->list, struct io_buffer, list);
3037 list_del(&nxt->list);
3038 kfree(nxt);
3039 if (++i == nbufs)
3040 return i;
3041 }
3042 i++;
3043 kfree(buf);
3044 idr_remove(&ctx->io_buffer_idr, bgid);
3045
3046 return i;
3047}
3048
3049static int io_remove_buffers(struct io_kiocb *req, bool force_nonblock)
3050{
3051 struct io_provide_buf *p = &req->pbuf;
3052 struct io_ring_ctx *ctx = req->ctx;
3053 struct io_buffer *head;
3054 int ret = 0;
3055
3056 io_ring_submit_lock(ctx, !force_nonblock);
3057
3058 lockdep_assert_held(&ctx->uring_lock);
3059
3060 ret = -ENOENT;
3061 head = idr_find(&ctx->io_buffer_idr, p->bgid);
3062 if (head)
3063 ret = __io_remove_buffers(ctx, head, p->bgid, p->nbufs);
3064
3065 io_ring_submit_lock(ctx, !force_nonblock);
3066 if (ret < 0)
3067 req_set_fail_links(req);
3068 io_cqring_add_event(req, ret);
3069 io_put_req(req);
3070 return 0;
3071}
3072
Jens Axboeddf0322d2020-02-23 16:41:33 -07003073static int io_provide_buffers_prep(struct io_kiocb *req,
3074 const struct io_uring_sqe *sqe)
3075{
3076 struct io_provide_buf *p = &req->pbuf;
3077 u64 tmp;
3078
3079 if (sqe->ioprio || sqe->rw_flags)
3080 return -EINVAL;
3081
3082 tmp = READ_ONCE(sqe->fd);
3083 if (!tmp || tmp > USHRT_MAX)
3084 return -E2BIG;
3085 p->nbufs = tmp;
3086 p->addr = READ_ONCE(sqe->addr);
3087 p->len = READ_ONCE(sqe->len);
3088
3089 if (!access_ok(u64_to_user_ptr(p->addr), p->len))
3090 return -EFAULT;
3091
3092 p->bgid = READ_ONCE(sqe->buf_group);
3093 tmp = READ_ONCE(sqe->off);
3094 if (tmp > USHRT_MAX)
3095 return -E2BIG;
3096 p->bid = tmp;
3097 return 0;
3098}
3099
3100static int io_add_buffers(struct io_provide_buf *pbuf, struct io_buffer **head)
3101{
3102 struct io_buffer *buf;
3103 u64 addr = pbuf->addr;
3104 int i, bid = pbuf->bid;
3105
3106 for (i = 0; i < pbuf->nbufs; i++) {
3107 buf = kmalloc(sizeof(*buf), GFP_KERNEL);
3108 if (!buf)
3109 break;
3110
3111 buf->addr = addr;
3112 buf->len = pbuf->len;
3113 buf->bid = bid;
3114 addr += pbuf->len;
3115 bid++;
3116 if (!*head) {
3117 INIT_LIST_HEAD(&buf->list);
3118 *head = buf;
3119 } else {
3120 list_add_tail(&buf->list, &(*head)->list);
3121 }
3122 }
3123
3124 return i ? i : -ENOMEM;
3125}
3126
Jens Axboeddf0322d2020-02-23 16:41:33 -07003127static int io_provide_buffers(struct io_kiocb *req, bool force_nonblock)
3128{
3129 struct io_provide_buf *p = &req->pbuf;
3130 struct io_ring_ctx *ctx = req->ctx;
3131 struct io_buffer *head, *list;
3132 int ret = 0;
3133
3134 io_ring_submit_lock(ctx, !force_nonblock);
3135
3136 lockdep_assert_held(&ctx->uring_lock);
3137
3138 list = head = idr_find(&ctx->io_buffer_idr, p->bgid);
3139
3140 ret = io_add_buffers(p, &head);
3141 if (ret < 0)
3142 goto out;
3143
3144 if (!list) {
3145 ret = idr_alloc(&ctx->io_buffer_idr, head, p->bgid, p->bgid + 1,
3146 GFP_KERNEL);
3147 if (ret < 0) {
Jens Axboe067524e2020-03-02 16:32:28 -07003148 __io_remove_buffers(ctx, head, p->bgid, -1U);
Jens Axboeddf0322d2020-02-23 16:41:33 -07003149 goto out;
3150 }
3151 }
3152out:
3153 io_ring_submit_unlock(ctx, !force_nonblock);
3154 if (ret < 0)
3155 req_set_fail_links(req);
3156 io_cqring_add_event(req, ret);
3157 io_put_req(req);
3158 return 0;
3159}
3160
Jens Axboe3e4827b2020-01-08 15:18:09 -07003161static int io_epoll_ctl_prep(struct io_kiocb *req,
3162 const struct io_uring_sqe *sqe)
3163{
3164#if defined(CONFIG_EPOLL)
3165 if (sqe->ioprio || sqe->buf_index)
3166 return -EINVAL;
3167
3168 req->epoll.epfd = READ_ONCE(sqe->fd);
3169 req->epoll.op = READ_ONCE(sqe->len);
3170 req->epoll.fd = READ_ONCE(sqe->off);
3171
3172 if (ep_op_has_event(req->epoll.op)) {
3173 struct epoll_event __user *ev;
3174
3175 ev = u64_to_user_ptr(READ_ONCE(sqe->addr));
3176 if (copy_from_user(&req->epoll.event, ev, sizeof(*ev)))
3177 return -EFAULT;
3178 }
3179
3180 return 0;
3181#else
3182 return -EOPNOTSUPP;
3183#endif
3184}
3185
Pavel Begunkov014db002020-03-03 21:33:12 +03003186static int io_epoll_ctl(struct io_kiocb *req, bool force_nonblock)
Jens Axboe3e4827b2020-01-08 15:18:09 -07003187{
3188#if defined(CONFIG_EPOLL)
3189 struct io_epoll *ie = &req->epoll;
3190 int ret;
3191
3192 ret = do_epoll_ctl(ie->epfd, ie->op, ie->fd, &ie->event, force_nonblock);
3193 if (force_nonblock && ret == -EAGAIN)
3194 return -EAGAIN;
3195
3196 if (ret < 0)
3197 req_set_fail_links(req);
3198 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003199 io_put_req(req);
Jens Axboe3e4827b2020-01-08 15:18:09 -07003200 return 0;
3201#else
3202 return -EOPNOTSUPP;
3203#endif
3204}
3205
Jens Axboec1ca7572019-12-25 22:18:28 -07003206static int io_madvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3207{
3208#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
3209 if (sqe->ioprio || sqe->buf_index || sqe->off)
3210 return -EINVAL;
3211
3212 req->madvise.addr = READ_ONCE(sqe->addr);
3213 req->madvise.len = READ_ONCE(sqe->len);
3214 req->madvise.advice = READ_ONCE(sqe->fadvise_advice);
3215 return 0;
3216#else
3217 return -EOPNOTSUPP;
3218#endif
3219}
3220
Pavel Begunkov014db002020-03-03 21:33:12 +03003221static int io_madvise(struct io_kiocb *req, bool force_nonblock)
Jens Axboec1ca7572019-12-25 22:18:28 -07003222{
3223#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
3224 struct io_madvise *ma = &req->madvise;
3225 int ret;
3226
3227 if (force_nonblock)
3228 return -EAGAIN;
3229
3230 ret = do_madvise(ma->addr, ma->len, ma->advice);
3231 if (ret < 0)
3232 req_set_fail_links(req);
3233 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003234 io_put_req(req);
Jens Axboec1ca7572019-12-25 22:18:28 -07003235 return 0;
3236#else
3237 return -EOPNOTSUPP;
3238#endif
3239}
3240
Jens Axboe4840e412019-12-25 22:03:45 -07003241static int io_fadvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3242{
3243 if (sqe->ioprio || sqe->buf_index || sqe->addr)
3244 return -EINVAL;
3245
3246 req->fadvise.offset = READ_ONCE(sqe->off);
3247 req->fadvise.len = READ_ONCE(sqe->len);
3248 req->fadvise.advice = READ_ONCE(sqe->fadvise_advice);
3249 return 0;
3250}
3251
Pavel Begunkov014db002020-03-03 21:33:12 +03003252static int io_fadvise(struct io_kiocb *req, bool force_nonblock)
Jens Axboe4840e412019-12-25 22:03:45 -07003253{
3254 struct io_fadvise *fa = &req->fadvise;
3255 int ret;
3256
Jens Axboe3e694262020-02-01 09:22:49 -07003257 if (force_nonblock) {
3258 switch (fa->advice) {
3259 case POSIX_FADV_NORMAL:
3260 case POSIX_FADV_RANDOM:
3261 case POSIX_FADV_SEQUENTIAL:
3262 break;
3263 default:
3264 return -EAGAIN;
3265 }
3266 }
Jens Axboe4840e412019-12-25 22:03:45 -07003267
3268 ret = vfs_fadvise(req->file, fa->offset, fa->len, fa->advice);
3269 if (ret < 0)
3270 req_set_fail_links(req);
3271 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003272 io_put_req(req);
Jens Axboe4840e412019-12-25 22:03:45 -07003273 return 0;
3274}
3275
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003276static int io_statx_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3277{
Jens Axboef8748882020-01-08 17:47:02 -07003278 const char __user *fname;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003279 unsigned lookup_flags;
3280 int ret;
3281
3282 if (sqe->ioprio || sqe->buf_index)
3283 return -EINVAL;
Jens Axboecf3040c2020-02-06 21:31:40 -07003284 if (sqe->flags & IOSQE_FIXED_FILE)
3285 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03003286 if (req->flags & REQ_F_NEED_CLEANUP)
3287 return 0;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003288
3289 req->open.dfd = READ_ONCE(sqe->fd);
3290 req->open.mask = READ_ONCE(sqe->len);
Jens Axboef8748882020-01-08 17:47:02 -07003291 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003292 req->open.buffer = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboec12cedf2020-01-08 17:41:21 -07003293 req->open.how.flags = READ_ONCE(sqe->statx_flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003294
Jens Axboec12cedf2020-01-08 17:41:21 -07003295 if (vfs_stat_set_lookup_flags(&lookup_flags, req->open.how.flags))
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003296 return -EINVAL;
3297
Jens Axboef8748882020-01-08 17:47:02 -07003298 req->open.filename = getname_flags(fname, lookup_flags, NULL);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003299 if (IS_ERR(req->open.filename)) {
3300 ret = PTR_ERR(req->open.filename);
3301 req->open.filename = NULL;
3302 return ret;
3303 }
3304
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003305 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003306 return 0;
3307}
3308
Pavel Begunkov014db002020-03-03 21:33:12 +03003309static int io_statx(struct io_kiocb *req, bool force_nonblock)
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003310{
3311 struct io_open *ctx = &req->open;
3312 unsigned lookup_flags;
3313 struct path path;
3314 struct kstat stat;
3315 int ret;
3316
3317 if (force_nonblock)
3318 return -EAGAIN;
3319
Jens Axboec12cedf2020-01-08 17:41:21 -07003320 if (vfs_stat_set_lookup_flags(&lookup_flags, ctx->how.flags))
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003321 return -EINVAL;
3322
3323retry:
3324 /* filename_lookup() drops it, keep a reference */
3325 ctx->filename->refcnt++;
3326
3327 ret = filename_lookup(ctx->dfd, ctx->filename, lookup_flags, &path,
3328 NULL);
3329 if (ret)
3330 goto err;
3331
Jens Axboec12cedf2020-01-08 17:41:21 -07003332 ret = vfs_getattr(&path, &stat, ctx->mask, ctx->how.flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003333 path_put(&path);
3334 if (retry_estale(ret, lookup_flags)) {
3335 lookup_flags |= LOOKUP_REVAL;
3336 goto retry;
3337 }
3338 if (!ret)
3339 ret = cp_statx(&stat, ctx->buffer);
3340err:
3341 putname(ctx->filename);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003342 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003343 if (ret < 0)
3344 req_set_fail_links(req);
3345 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003346 io_put_req(req);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003347 return 0;
3348}
3349
Jens Axboeb5dba592019-12-11 14:02:38 -07003350static int io_close_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3351{
3352 /*
3353 * If we queue this for async, it must not be cancellable. That would
3354 * leave the 'file' in an undeterminate state.
3355 */
3356 req->work.flags |= IO_WQ_WORK_NO_CANCEL;
3357
3358 if (sqe->ioprio || sqe->off || sqe->addr || sqe->len ||
3359 sqe->rw_flags || sqe->buf_index)
3360 return -EINVAL;
3361 if (sqe->flags & IOSQE_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07003362 return -EBADF;
Jens Axboeb5dba592019-12-11 14:02:38 -07003363
3364 req->close.fd = READ_ONCE(sqe->fd);
3365 if (req->file->f_op == &io_uring_fops ||
Pavel Begunkovb14cca02020-01-17 04:45:59 +03003366 req->close.fd == req->ctx->ring_fd)
Jens Axboeb5dba592019-12-11 14:02:38 -07003367 return -EBADF;
3368
3369 return 0;
3370}
3371
Pavel Begunkova93b3332020-02-08 14:04:34 +03003372/* only called when __close_fd_get_file() is done */
Pavel Begunkov014db002020-03-03 21:33:12 +03003373static void __io_close_finish(struct io_kiocb *req)
Pavel Begunkova93b3332020-02-08 14:04:34 +03003374{
3375 int ret;
3376
3377 ret = filp_close(req->close.put_file, req->work.files);
3378 if (ret < 0)
3379 req_set_fail_links(req);
3380 io_cqring_add_event(req, ret);
3381 fput(req->close.put_file);
Pavel Begunkov014db002020-03-03 21:33:12 +03003382 io_put_req(req);
Pavel Begunkova93b3332020-02-08 14:04:34 +03003383}
3384
Jens Axboeb5dba592019-12-11 14:02:38 -07003385static void io_close_finish(struct io_wq_work **workptr)
3386{
3387 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Jens Axboeb5dba592019-12-11 14:02:38 -07003388
Pavel Begunkov7fbeb952020-02-16 01:01:18 +03003389 /* not cancellable, don't do io_req_cancelled() */
Pavel Begunkov014db002020-03-03 21:33:12 +03003390 __io_close_finish(req);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03003391 io_steal_work(req, workptr);
Jens Axboeb5dba592019-12-11 14:02:38 -07003392}
3393
Pavel Begunkov014db002020-03-03 21:33:12 +03003394static int io_close(struct io_kiocb *req, bool force_nonblock)
Jens Axboeb5dba592019-12-11 14:02:38 -07003395{
3396 int ret;
3397
3398 req->close.put_file = NULL;
3399 ret = __close_fd_get_file(req->close.fd, &req->close.put_file);
3400 if (ret < 0)
3401 return ret;
3402
3403 /* if the file has a flush method, be safe and punt to async */
Pavel Begunkova2100672020-03-02 23:45:16 +03003404 if (req->close.put_file->f_op->flush && force_nonblock) {
Pavel Begunkov594506f2020-03-03 21:33:11 +03003405 /* submission ref will be dropped, take it for async */
3406 refcount_inc(&req->refs);
3407
Pavel Begunkova2100672020-03-02 23:45:16 +03003408 req->work.func = io_close_finish;
3409 /*
3410 * Do manual async queue here to avoid grabbing files - we don't
3411 * need the files, and it'll cause io_close_finish() to close
3412 * the file again and cause a double CQE entry for this request
3413 */
3414 io_queue_async_work(req);
3415 return 0;
3416 }
Jens Axboeb5dba592019-12-11 14:02:38 -07003417
3418 /*
3419 * No ->flush(), safely close from here and just punt the
3420 * fput() to async context.
3421 */
Pavel Begunkov014db002020-03-03 21:33:12 +03003422 __io_close_finish(req);
Pavel Begunkova93b3332020-02-08 14:04:34 +03003423 return 0;
Jens Axboeb5dba592019-12-11 14:02:38 -07003424}
3425
Jens Axboe3529d8c2019-12-19 18:24:38 -07003426static int io_prep_sfr(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003427{
3428 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003429
3430 if (!req->file)
3431 return -EBADF;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003432
3433 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
3434 return -EINVAL;
3435 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
3436 return -EINVAL;
3437
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003438 req->sync.off = READ_ONCE(sqe->off);
3439 req->sync.len = READ_ONCE(sqe->len);
3440 req->sync.flags = READ_ONCE(sqe->sync_range_flags);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003441 return 0;
3442}
3443
Pavel Begunkov014db002020-03-03 21:33:12 +03003444static void __io_sync_file_range(struct io_kiocb *req)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003445{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003446 int ret;
3447
Jens Axboe9adbd452019-12-20 08:45:55 -07003448 ret = sync_file_range(req->file, req->sync.off, req->sync.len,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003449 req->sync.flags);
3450 if (ret < 0)
3451 req_set_fail_links(req);
3452 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003453 io_put_req(req);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03003454}
3455
3456
3457static void io_sync_file_range_finish(struct io_wq_work **workptr)
3458{
3459 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
3460 struct io_kiocb *nxt = NULL;
3461
3462 if (io_req_cancelled(req))
3463 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03003464 __io_sync_file_range(req);
Pavel Begunkov594506f2020-03-03 21:33:11 +03003465 io_put_req(req); /* put submission ref */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003466 if (nxt)
Jens Axboe78912932020-01-14 22:09:06 -07003467 io_wq_assign_next(workptr, nxt);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003468}
3469
Pavel Begunkov014db002020-03-03 21:33:12 +03003470static int io_sync_file_range(struct io_kiocb *req, bool force_nonblock)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003471{
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003472 /* sync_file_range always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003473 if (force_nonblock) {
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003474 req->work.func = io_sync_file_range_finish;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003475 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003476 }
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003477
Pavel Begunkov014db002020-03-03 21:33:12 +03003478 __io_sync_file_range(req);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003479 return 0;
3480}
3481
YueHaibing469956e2020-03-04 15:53:52 +08003482#if defined(CONFIG_NET)
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003483static int io_setup_async_msg(struct io_kiocb *req,
3484 struct io_async_msghdr *kmsg)
3485{
3486 if (req->io)
3487 return -EAGAIN;
3488 if (io_alloc_async_ctx(req)) {
3489 if (kmsg->iov != kmsg->fast_iov)
3490 kfree(kmsg->iov);
3491 return -ENOMEM;
3492 }
3493 req->flags |= REQ_F_NEED_CLEANUP;
3494 memcpy(&req->io->msg, kmsg, sizeof(*kmsg));
3495 return -EAGAIN;
3496}
3497
Jens Axboe3529d8c2019-12-19 18:24:38 -07003498static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboeaa1fa282019-04-19 13:38:09 -06003499{
Jens Axboee47293f2019-12-20 08:58:21 -07003500 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003501 struct io_async_ctx *io = req->io;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003502 int ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003503
Jens Axboee47293f2019-12-20 08:58:21 -07003504 sr->msg_flags = READ_ONCE(sqe->msg_flags);
3505 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboefddafac2020-01-04 20:19:44 -07003506 sr->len = READ_ONCE(sqe->len);
Jens Axboe3529d8c2019-12-19 18:24:38 -07003507
Jens Axboed8768362020-02-27 14:17:49 -07003508#ifdef CONFIG_COMPAT
3509 if (req->ctx->compat)
3510 sr->msg_flags |= MSG_CMSG_COMPAT;
3511#endif
3512
Jens Axboefddafac2020-01-04 20:19:44 -07003513 if (!io || req->opcode == IORING_OP_SEND)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003514 return 0;
Pavel Begunkov5f798be2020-02-08 13:28:02 +03003515 /* iovec is already imported */
3516 if (req->flags & REQ_F_NEED_CLEANUP)
3517 return 0;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003518
Jens Axboed9688562019-12-09 19:35:20 -07003519 io->msg.iov = io->msg.fast_iov;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003520 ret = sendmsg_copy_msghdr(&io->msg.msg, sr->msg, sr->msg_flags,
Jens Axboee47293f2019-12-20 08:58:21 -07003521 &io->msg.iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003522 if (!ret)
3523 req->flags |= REQ_F_NEED_CLEANUP;
3524 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003525}
3526
Pavel Begunkov014db002020-03-03 21:33:12 +03003527static int io_sendmsg(struct io_kiocb *req, bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07003528{
Jens Axboe0b416c32019-12-15 10:57:46 -07003529 struct io_async_msghdr *kmsg = NULL;
Jens Axboe03b12302019-12-02 18:50:25 -07003530 struct socket *sock;
3531 int ret;
3532
3533 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3534 return -EINVAL;
3535
3536 sock = sock_from_file(req->file, &ret);
3537 if (sock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003538 struct io_async_ctx io;
Jens Axboe03b12302019-12-02 18:50:25 -07003539 unsigned flags;
3540
Jens Axboe03b12302019-12-02 18:50:25 -07003541 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07003542 kmsg = &req->io->msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003543 kmsg->msg.msg_name = &req->io->msg.addr;
Jens Axboe0b416c32019-12-15 10:57:46 -07003544 /* if iov is set, it's allocated already */
3545 if (!kmsg->iov)
3546 kmsg->iov = kmsg->fast_iov;
3547 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07003548 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07003549 struct io_sr_msg *sr = &req->sr_msg;
3550
Jens Axboe0b416c32019-12-15 10:57:46 -07003551 kmsg = &io.msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003552 kmsg->msg.msg_name = &io.msg.addr;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003553
3554 io.msg.iov = io.msg.fast_iov;
3555 ret = sendmsg_copy_msghdr(&io.msg.msg, sr->msg,
3556 sr->msg_flags, &io.msg.iov);
Jens Axboe03b12302019-12-02 18:50:25 -07003557 if (ret)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003558 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003559 }
3560
Jens Axboee47293f2019-12-20 08:58:21 -07003561 flags = req->sr_msg.msg_flags;
3562 if (flags & MSG_DONTWAIT)
3563 req->flags |= REQ_F_NOWAIT;
3564 else if (force_nonblock)
3565 flags |= MSG_DONTWAIT;
3566
Jens Axboe0b416c32019-12-15 10:57:46 -07003567 ret = __sys_sendmsg_sock(sock, &kmsg->msg, flags);
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003568 if (force_nonblock && ret == -EAGAIN)
3569 return io_setup_async_msg(req, kmsg);
Jens Axboe03b12302019-12-02 18:50:25 -07003570 if (ret == -ERESTARTSYS)
3571 ret = -EINTR;
3572 }
3573
Pavel Begunkov1e950812020-02-06 19:51:16 +03003574 if (kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07003575 kfree(kmsg->iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003576 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe03b12302019-12-02 18:50:25 -07003577 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003578 if (ret < 0)
3579 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003580 io_put_req(req);
Jens Axboe03b12302019-12-02 18:50:25 -07003581 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07003582}
3583
Pavel Begunkov014db002020-03-03 21:33:12 +03003584static int io_send(struct io_kiocb *req, bool force_nonblock)
Jens Axboefddafac2020-01-04 20:19:44 -07003585{
Jens Axboefddafac2020-01-04 20:19:44 -07003586 struct socket *sock;
3587 int ret;
3588
3589 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3590 return -EINVAL;
3591
3592 sock = sock_from_file(req->file, &ret);
3593 if (sock) {
3594 struct io_sr_msg *sr = &req->sr_msg;
3595 struct msghdr msg;
3596 struct iovec iov;
3597 unsigned flags;
3598
3599 ret = import_single_range(WRITE, sr->buf, sr->len, &iov,
3600 &msg.msg_iter);
3601 if (ret)
3602 return ret;
3603
3604 msg.msg_name = NULL;
3605 msg.msg_control = NULL;
3606 msg.msg_controllen = 0;
3607 msg.msg_namelen = 0;
3608
3609 flags = req->sr_msg.msg_flags;
3610 if (flags & MSG_DONTWAIT)
3611 req->flags |= REQ_F_NOWAIT;
3612 else if (force_nonblock)
3613 flags |= MSG_DONTWAIT;
3614
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003615 msg.msg_flags = flags;
3616 ret = sock_sendmsg(sock, &msg);
Jens Axboefddafac2020-01-04 20:19:44 -07003617 if (force_nonblock && ret == -EAGAIN)
3618 return -EAGAIN;
3619 if (ret == -ERESTARTSYS)
3620 ret = -EINTR;
3621 }
3622
3623 io_cqring_add_event(req, ret);
3624 if (ret < 0)
3625 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003626 io_put_req(req);
Jens Axboefddafac2020-01-04 20:19:44 -07003627 return 0;
Jens Axboefddafac2020-01-04 20:19:44 -07003628}
3629
Jens Axboe52de1fe2020-02-27 10:15:42 -07003630static int __io_recvmsg_copy_hdr(struct io_kiocb *req, struct io_async_ctx *io)
3631{
3632 struct io_sr_msg *sr = &req->sr_msg;
3633 struct iovec __user *uiov;
3634 size_t iov_len;
3635 int ret;
3636
3637 ret = __copy_msghdr_from_user(&io->msg.msg, sr->msg, &io->msg.uaddr,
3638 &uiov, &iov_len);
3639 if (ret)
3640 return ret;
3641
3642 if (req->flags & REQ_F_BUFFER_SELECT) {
3643 if (iov_len > 1)
3644 return -EINVAL;
3645 if (copy_from_user(io->msg.iov, uiov, sizeof(*uiov)))
3646 return -EFAULT;
3647 sr->len = io->msg.iov[0].iov_len;
3648 iov_iter_init(&io->msg.msg.msg_iter, READ, io->msg.iov, 1,
3649 sr->len);
3650 io->msg.iov = NULL;
3651 } else {
3652 ret = import_iovec(READ, uiov, iov_len, UIO_FASTIOV,
3653 &io->msg.iov, &io->msg.msg.msg_iter);
3654 if (ret > 0)
3655 ret = 0;
3656 }
3657
3658 return ret;
3659}
3660
3661#ifdef CONFIG_COMPAT
3662static int __io_compat_recvmsg_copy_hdr(struct io_kiocb *req,
3663 struct io_async_ctx *io)
3664{
3665 struct compat_msghdr __user *msg_compat;
3666 struct io_sr_msg *sr = &req->sr_msg;
3667 struct compat_iovec __user *uiov;
3668 compat_uptr_t ptr;
3669 compat_size_t len;
3670 int ret;
3671
3672 msg_compat = (struct compat_msghdr __user *) sr->msg;
3673 ret = __get_compat_msghdr(&io->msg.msg, msg_compat, &io->msg.uaddr,
3674 &ptr, &len);
3675 if (ret)
3676 return ret;
3677
3678 uiov = compat_ptr(ptr);
3679 if (req->flags & REQ_F_BUFFER_SELECT) {
3680 compat_ssize_t clen;
3681
3682 if (len > 1)
3683 return -EINVAL;
3684 if (!access_ok(uiov, sizeof(*uiov)))
3685 return -EFAULT;
3686 if (__get_user(clen, &uiov->iov_len))
3687 return -EFAULT;
3688 if (clen < 0)
3689 return -EINVAL;
3690 sr->len = io->msg.iov[0].iov_len;
3691 io->msg.iov = NULL;
3692 } else {
3693 ret = compat_import_iovec(READ, uiov, len, UIO_FASTIOV,
3694 &io->msg.iov,
3695 &io->msg.msg.msg_iter);
3696 if (ret < 0)
3697 return ret;
3698 }
3699
3700 return 0;
3701}
3702#endif
3703
3704static int io_recvmsg_copy_hdr(struct io_kiocb *req, struct io_async_ctx *io)
3705{
3706 io->msg.iov = io->msg.fast_iov;
3707
3708#ifdef CONFIG_COMPAT
3709 if (req->ctx->compat)
3710 return __io_compat_recvmsg_copy_hdr(req, io);
3711#endif
3712
3713 return __io_recvmsg_copy_hdr(req, io);
3714}
3715
Jens Axboebcda7ba2020-02-23 16:42:51 -07003716static struct io_buffer *io_recv_buffer_select(struct io_kiocb *req,
3717 int *cflags, bool needs_lock)
3718{
3719 struct io_sr_msg *sr = &req->sr_msg;
3720 struct io_buffer *kbuf;
3721
3722 if (!(req->flags & REQ_F_BUFFER_SELECT))
3723 return NULL;
3724
3725 kbuf = io_buffer_select(req, &sr->len, sr->bgid, sr->kbuf, needs_lock);
3726 if (IS_ERR(kbuf))
3727 return kbuf;
3728
3729 sr->kbuf = kbuf;
3730 req->flags |= REQ_F_BUFFER_SELECTED;
3731
3732 *cflags = kbuf->bid << IORING_CQE_BUFFER_SHIFT;
3733 *cflags |= IORING_CQE_F_BUFFER;
3734 return kbuf;
3735}
3736
Jens Axboe3529d8c2019-12-19 18:24:38 -07003737static int io_recvmsg_prep(struct io_kiocb *req,
3738 const struct io_uring_sqe *sqe)
Jens Axboe03b12302019-12-02 18:50:25 -07003739{
Jens Axboee47293f2019-12-20 08:58:21 -07003740 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003741 struct io_async_ctx *io = req->io;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003742 int ret;
Jens Axboe06b76d42019-12-19 14:44:26 -07003743
Jens Axboe3529d8c2019-12-19 18:24:38 -07003744 sr->msg_flags = READ_ONCE(sqe->msg_flags);
3745 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003746 sr->len = READ_ONCE(sqe->len);
Jens Axboebcda7ba2020-02-23 16:42:51 -07003747 sr->bgid = READ_ONCE(sqe->buf_group);
Jens Axboe3529d8c2019-12-19 18:24:38 -07003748
Jens Axboed8768362020-02-27 14:17:49 -07003749#ifdef CONFIG_COMPAT
3750 if (req->ctx->compat)
3751 sr->msg_flags |= MSG_CMSG_COMPAT;
3752#endif
3753
Jens Axboefddafac2020-01-04 20:19:44 -07003754 if (!io || req->opcode == IORING_OP_RECV)
Jens Axboe06b76d42019-12-19 14:44:26 -07003755 return 0;
Pavel Begunkov5f798be2020-02-08 13:28:02 +03003756 /* iovec is already imported */
3757 if (req->flags & REQ_F_NEED_CLEANUP)
3758 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07003759
Jens Axboe52de1fe2020-02-27 10:15:42 -07003760 ret = io_recvmsg_copy_hdr(req, io);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003761 if (!ret)
3762 req->flags |= REQ_F_NEED_CLEANUP;
3763 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003764}
3765
Pavel Begunkov014db002020-03-03 21:33:12 +03003766static int io_recvmsg(struct io_kiocb *req, bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07003767{
Jens Axboe0b416c32019-12-15 10:57:46 -07003768 struct io_async_msghdr *kmsg = NULL;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003769 struct socket *sock;
Jens Axboe52de1fe2020-02-27 10:15:42 -07003770 int ret, cflags = 0;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003771
3772 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3773 return -EINVAL;
3774
3775 sock = sock_from_file(req->file, &ret);
3776 if (sock) {
Jens Axboe52de1fe2020-02-27 10:15:42 -07003777 struct io_buffer *kbuf;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003778 struct io_async_ctx io;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003779 unsigned flags;
3780
Jens Axboe03b12302019-12-02 18:50:25 -07003781 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07003782 kmsg = &req->io->msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003783 kmsg->msg.msg_name = &req->io->msg.addr;
Jens Axboe0b416c32019-12-15 10:57:46 -07003784 /* if iov is set, it's allocated already */
3785 if (!kmsg->iov)
3786 kmsg->iov = kmsg->fast_iov;
3787 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07003788 } else {
Jens Axboe0b416c32019-12-15 10:57:46 -07003789 kmsg = &io.msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003790 kmsg->msg.msg_name = &io.msg.addr;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003791
Jens Axboe52de1fe2020-02-27 10:15:42 -07003792 ret = io_recvmsg_copy_hdr(req, &io);
Jens Axboe03b12302019-12-02 18:50:25 -07003793 if (ret)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003794 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003795 }
Jens Axboe0fa03c62019-04-19 13:34:07 -06003796
Jens Axboe52de1fe2020-02-27 10:15:42 -07003797 kbuf = io_recv_buffer_select(req, &cflags, !force_nonblock);
3798 if (IS_ERR(kbuf)) {
3799 return PTR_ERR(kbuf);
3800 } else if (kbuf) {
3801 kmsg->fast_iov[0].iov_base = u64_to_user_ptr(kbuf->addr);
3802 iov_iter_init(&kmsg->msg.msg_iter, READ, kmsg->iov,
3803 1, req->sr_msg.len);
3804 }
3805
Jens Axboee47293f2019-12-20 08:58:21 -07003806 flags = req->sr_msg.msg_flags;
3807 if (flags & MSG_DONTWAIT)
3808 req->flags |= REQ_F_NOWAIT;
3809 else if (force_nonblock)
3810 flags |= MSG_DONTWAIT;
3811
3812 ret = __sys_recvmsg_sock(sock, &kmsg->msg, req->sr_msg.msg,
3813 kmsg->uaddr, flags);
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003814 if (force_nonblock && ret == -EAGAIN)
3815 return io_setup_async_msg(req, kmsg);
Jens Axboe441cdbd2019-12-02 18:49:10 -07003816 if (ret == -ERESTARTSYS)
3817 ret = -EINTR;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003818 }
3819
Pavel Begunkov1e950812020-02-06 19:51:16 +03003820 if (kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07003821 kfree(kmsg->iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003822 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe52de1fe2020-02-27 10:15:42 -07003823 __io_cqring_add_event(req, ret, cflags);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003824 if (ret < 0)
3825 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003826 io_put_req(req);
Jens Axboe0fa03c62019-04-19 13:34:07 -06003827 return 0;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003828}
3829
Pavel Begunkov014db002020-03-03 21:33:12 +03003830static int io_recv(struct io_kiocb *req, bool force_nonblock)
Jens Axboefddafac2020-01-04 20:19:44 -07003831{
Jens Axboebcda7ba2020-02-23 16:42:51 -07003832 struct io_buffer *kbuf = NULL;
Jens Axboefddafac2020-01-04 20:19:44 -07003833 struct socket *sock;
Jens Axboebcda7ba2020-02-23 16:42:51 -07003834 int ret, cflags = 0;
Jens Axboefddafac2020-01-04 20:19:44 -07003835
3836 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3837 return -EINVAL;
3838
3839 sock = sock_from_file(req->file, &ret);
3840 if (sock) {
3841 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboebcda7ba2020-02-23 16:42:51 -07003842 void __user *buf = sr->buf;
Jens Axboefddafac2020-01-04 20:19:44 -07003843 struct msghdr msg;
3844 struct iovec iov;
3845 unsigned flags;
3846
Jens Axboebcda7ba2020-02-23 16:42:51 -07003847 kbuf = io_recv_buffer_select(req, &cflags, !force_nonblock);
3848 if (IS_ERR(kbuf))
3849 return PTR_ERR(kbuf);
3850 else if (kbuf)
3851 buf = u64_to_user_ptr(kbuf->addr);
Jens Axboefddafac2020-01-04 20:19:44 -07003852
Jens Axboebcda7ba2020-02-23 16:42:51 -07003853 ret = import_single_range(READ, buf, sr->len, &iov,
3854 &msg.msg_iter);
3855 if (ret) {
3856 kfree(kbuf);
3857 return ret;
3858 }
3859
3860 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboefddafac2020-01-04 20:19:44 -07003861 msg.msg_name = NULL;
3862 msg.msg_control = NULL;
3863 msg.msg_controllen = 0;
3864 msg.msg_namelen = 0;
3865 msg.msg_iocb = NULL;
3866 msg.msg_flags = 0;
3867
3868 flags = req->sr_msg.msg_flags;
3869 if (flags & MSG_DONTWAIT)
3870 req->flags |= REQ_F_NOWAIT;
3871 else if (force_nonblock)
3872 flags |= MSG_DONTWAIT;
3873
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003874 ret = sock_recvmsg(sock, &msg, flags);
Jens Axboefddafac2020-01-04 20:19:44 -07003875 if (force_nonblock && ret == -EAGAIN)
3876 return -EAGAIN;
3877 if (ret == -ERESTARTSYS)
3878 ret = -EINTR;
3879 }
3880
Jens Axboebcda7ba2020-02-23 16:42:51 -07003881 kfree(kbuf);
3882 req->flags &= ~REQ_F_NEED_CLEANUP;
3883 __io_cqring_add_event(req, ret, cflags);
Jens Axboefddafac2020-01-04 20:19:44 -07003884 if (ret < 0)
3885 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003886 io_put_req(req);
Jens Axboefddafac2020-01-04 20:19:44 -07003887 return 0;
Jens Axboefddafac2020-01-04 20:19:44 -07003888}
3889
Jens Axboe3529d8c2019-12-19 18:24:38 -07003890static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003891{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003892 struct io_accept *accept = &req->accept;
3893
Jens Axboe17f2fe32019-10-17 14:42:58 -06003894 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3895 return -EINVAL;
Hrvoje Zeba8042d6c2019-11-25 14:40:22 -05003896 if (sqe->ioprio || sqe->len || sqe->buf_index)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003897 return -EINVAL;
3898
Jens Axboed55e5f52019-12-11 16:12:15 -07003899 accept->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
3900 accept->addr_len = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003901 accept->flags = READ_ONCE(sqe->accept_flags);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003902 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003903}
Jens Axboe17f2fe32019-10-17 14:42:58 -06003904
Pavel Begunkov014db002020-03-03 21:33:12 +03003905static int __io_accept(struct io_kiocb *req, bool force_nonblock)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003906{
3907 struct io_accept *accept = &req->accept;
3908 unsigned file_flags;
3909 int ret;
3910
3911 file_flags = force_nonblock ? O_NONBLOCK : 0;
3912 ret = __sys_accept4_file(req->file, file_flags, accept->addr,
3913 accept->addr_len, accept->flags);
3914 if (ret == -EAGAIN && force_nonblock)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003915 return -EAGAIN;
Jens Axboe8e3cca12019-11-09 19:52:33 -07003916 if (ret == -ERESTARTSYS)
3917 ret = -EINTR;
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003918 if (ret < 0)
3919 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07003920 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003921 io_put_req(req);
Jens Axboe17f2fe32019-10-17 14:42:58 -06003922 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003923}
3924
3925static void io_accept_finish(struct io_wq_work **workptr)
3926{
3927 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003928
3929 if (io_req_cancelled(req))
3930 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03003931 __io_accept(req, false);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03003932 io_steal_work(req, workptr);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003933}
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003934
Pavel Begunkov014db002020-03-03 21:33:12 +03003935static int io_accept(struct io_kiocb *req, bool force_nonblock)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003936{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003937 int ret;
3938
Pavel Begunkov014db002020-03-03 21:33:12 +03003939 ret = __io_accept(req, force_nonblock);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003940 if (ret == -EAGAIN && force_nonblock) {
3941 req->work.func = io_accept_finish;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003942 return -EAGAIN;
3943 }
3944 return 0;
Jens Axboe17f2fe32019-10-17 14:42:58 -06003945}
3946
Jens Axboe3529d8c2019-12-19 18:24:38 -07003947static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef499a022019-12-02 16:28:46 -07003948{
Jens Axboe3529d8c2019-12-19 18:24:38 -07003949 struct io_connect *conn = &req->connect;
3950 struct io_async_ctx *io = req->io;
Jens Axboef499a022019-12-02 16:28:46 -07003951
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003952 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3953 return -EINVAL;
3954 if (sqe->ioprio || sqe->len || sqe->buf_index || sqe->rw_flags)
3955 return -EINVAL;
3956
Jens Axboe3529d8c2019-12-19 18:24:38 -07003957 conn->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
3958 conn->addr_len = READ_ONCE(sqe->addr2);
3959
3960 if (!io)
3961 return 0;
3962
3963 return move_addr_to_kernel(conn->addr, conn->addr_len,
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003964 &io->connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07003965}
3966
Pavel Begunkov014db002020-03-03 21:33:12 +03003967static int io_connect(struct io_kiocb *req, bool force_nonblock)
Jens Axboef8e85cf2019-11-23 14:24:24 -07003968{
Jens Axboef499a022019-12-02 16:28:46 -07003969 struct io_async_ctx __io, *io;
Jens Axboef8e85cf2019-11-23 14:24:24 -07003970 unsigned file_flags;
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003971 int ret;
Jens Axboef8e85cf2019-11-23 14:24:24 -07003972
Jens Axboef499a022019-12-02 16:28:46 -07003973 if (req->io) {
3974 io = req->io;
3975 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07003976 ret = move_addr_to_kernel(req->connect.addr,
3977 req->connect.addr_len,
3978 &__io.connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07003979 if (ret)
3980 goto out;
3981 io = &__io;
3982 }
3983
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003984 file_flags = force_nonblock ? O_NONBLOCK : 0;
3985
3986 ret = __sys_connect_file(req->file, &io->connect.address,
3987 req->connect.addr_len, file_flags);
Jens Axboe87f80d62019-12-03 11:23:54 -07003988 if ((ret == -EAGAIN || ret == -EINPROGRESS) && force_nonblock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003989 if (req->io)
3990 return -EAGAIN;
3991 if (io_alloc_async_ctx(req)) {
Jens Axboef499a022019-12-02 16:28:46 -07003992 ret = -ENOMEM;
3993 goto out;
3994 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003995 memcpy(&req->io->connect, &__io.connect, sizeof(__io.connect));
Jens Axboef8e85cf2019-11-23 14:24:24 -07003996 return -EAGAIN;
Jens Axboef499a022019-12-02 16:28:46 -07003997 }
Jens Axboef8e85cf2019-11-23 14:24:24 -07003998 if (ret == -ERESTARTSYS)
3999 ret = -EINTR;
Jens Axboef499a022019-12-02 16:28:46 -07004000out:
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004001 if (ret < 0)
4002 req_set_fail_links(req);
Jens Axboef8e85cf2019-11-23 14:24:24 -07004003 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03004004 io_put_req(req);
Jens Axboef8e85cf2019-11-23 14:24:24 -07004005 return 0;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004006}
YueHaibing469956e2020-03-04 15:53:52 +08004007#else /* !CONFIG_NET */
4008static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4009{
4010 return -EOPNOTSUPP;
4011}
4012
4013static int io_sendmsg(struct io_kiocb *req, bool force_nonblock)
4014{
4015 return -EOPNOTSUPP;
4016}
4017
4018static int io_send(struct io_kiocb *req, bool force_nonblock)
4019{
4020 return -EOPNOTSUPP;
4021}
4022
4023static int io_recvmsg_prep(struct io_kiocb *req,
4024 const struct io_uring_sqe *sqe)
4025{
4026 return -EOPNOTSUPP;
4027}
4028
4029static int io_recvmsg(struct io_kiocb *req, bool force_nonblock)
4030{
4031 return -EOPNOTSUPP;
4032}
4033
4034static int io_recv(struct io_kiocb *req, bool force_nonblock)
4035{
4036 return -EOPNOTSUPP;
4037}
4038
4039static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4040{
4041 return -EOPNOTSUPP;
4042}
4043
4044static int io_accept(struct io_kiocb *req, bool force_nonblock)
4045{
4046 return -EOPNOTSUPP;
4047}
4048
4049static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4050{
4051 return -EOPNOTSUPP;
4052}
4053
4054static int io_connect(struct io_kiocb *req, bool force_nonblock)
4055{
4056 return -EOPNOTSUPP;
4057}
4058#endif /* CONFIG_NET */
Jens Axboef8e85cf2019-11-23 14:24:24 -07004059
Jens Axboed7718a92020-02-14 22:23:12 -07004060struct io_poll_table {
4061 struct poll_table_struct pt;
4062 struct io_kiocb *req;
4063 int error;
4064};
4065
4066static void __io_queue_proc(struct io_poll_iocb *poll, struct io_poll_table *pt,
4067 struct wait_queue_head *head)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004068{
Jens Axboed7718a92020-02-14 22:23:12 -07004069 if (unlikely(poll->head)) {
4070 pt->error = -EINVAL;
4071 return;
4072 }
4073
4074 pt->error = 0;
4075 poll->head = head;
4076 add_wait_queue(head, &poll->wait);
4077}
4078
4079static void io_async_queue_proc(struct file *file, struct wait_queue_head *head,
4080 struct poll_table_struct *p)
4081{
4082 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
4083
4084 __io_queue_proc(&pt->req->apoll->poll, pt, head);
4085}
4086
4087static int __io_async_wake(struct io_kiocb *req, struct io_poll_iocb *poll,
4088 __poll_t mask, task_work_func_t func)
4089{
4090 struct task_struct *tsk;
4091
4092 /* for instances that support it check for an event match first: */
4093 if (mask && !(mask & poll->events))
4094 return 0;
4095
4096 trace_io_uring_task_add(req->ctx, req->opcode, req->user_data, mask);
4097
4098 list_del_init(&poll->wait.entry);
4099
4100 tsk = req->task;
4101 req->result = mask;
4102 init_task_work(&req->task_work, func);
4103 /*
4104 * If this fails, then the task is exiting. If that is the case, then
4105 * the exit check will ultimately cancel these work items. Hence we
4106 * don't need to check here and handle it specifically.
4107 */
4108 task_work_add(tsk, &req->task_work, true);
4109 wake_up_process(tsk);
4110 return 1;
4111}
4112
4113static void io_async_task_func(struct callback_head *cb)
4114{
4115 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
4116 struct async_poll *apoll = req->apoll;
4117 struct io_ring_ctx *ctx = req->ctx;
4118
4119 trace_io_uring_task_run(req->ctx, req->opcode, req->user_data);
4120
4121 WARN_ON_ONCE(!list_empty(&req->apoll->poll.wait.entry));
4122
4123 if (hash_hashed(&req->hash_node)) {
4124 spin_lock_irq(&ctx->completion_lock);
4125 hash_del(&req->hash_node);
4126 spin_unlock_irq(&ctx->completion_lock);
4127 }
4128
4129 /* restore ->work in case we need to retry again */
4130 memcpy(&req->work, &apoll->work, sizeof(req->work));
4131
4132 __set_current_state(TASK_RUNNING);
4133 mutex_lock(&ctx->uring_lock);
4134 __io_queue_sqe(req, NULL);
4135 mutex_unlock(&ctx->uring_lock);
4136
4137 kfree(apoll);
4138}
4139
4140static int io_async_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
4141 void *key)
4142{
4143 struct io_kiocb *req = wait->private;
4144 struct io_poll_iocb *poll = &req->apoll->poll;
4145
4146 trace_io_uring_poll_wake(req->ctx, req->opcode, req->user_data,
4147 key_to_poll(key));
4148
4149 return __io_async_wake(req, poll, key_to_poll(key), io_async_task_func);
4150}
4151
4152static void io_poll_req_insert(struct io_kiocb *req)
4153{
4154 struct io_ring_ctx *ctx = req->ctx;
4155 struct hlist_head *list;
4156
4157 list = &ctx->cancel_hash[hash_long(req->user_data, ctx->cancel_hash_bits)];
4158 hlist_add_head(&req->hash_node, list);
4159}
4160
4161static __poll_t __io_arm_poll_handler(struct io_kiocb *req,
4162 struct io_poll_iocb *poll,
4163 struct io_poll_table *ipt, __poll_t mask,
4164 wait_queue_func_t wake_func)
4165 __acquires(&ctx->completion_lock)
4166{
4167 struct io_ring_ctx *ctx = req->ctx;
4168 bool cancel = false;
4169
4170 poll->file = req->file;
4171 poll->head = NULL;
4172 poll->done = poll->canceled = false;
4173 poll->events = mask;
4174
4175 ipt->pt._key = mask;
4176 ipt->req = req;
4177 ipt->error = -EINVAL;
4178
4179 INIT_LIST_HEAD(&poll->wait.entry);
4180 init_waitqueue_func_entry(&poll->wait, wake_func);
4181 poll->wait.private = req;
4182
4183 mask = vfs_poll(req->file, &ipt->pt) & poll->events;
4184
4185 spin_lock_irq(&ctx->completion_lock);
4186 if (likely(poll->head)) {
4187 spin_lock(&poll->head->lock);
4188 if (unlikely(list_empty(&poll->wait.entry))) {
4189 if (ipt->error)
4190 cancel = true;
4191 ipt->error = 0;
4192 mask = 0;
4193 }
4194 if (mask || ipt->error)
4195 list_del_init(&poll->wait.entry);
4196 else if (cancel)
4197 WRITE_ONCE(poll->canceled, true);
4198 else if (!poll->done) /* actually waiting for an event */
4199 io_poll_req_insert(req);
4200 spin_unlock(&poll->head->lock);
4201 }
4202
4203 return mask;
4204}
4205
4206static bool io_arm_poll_handler(struct io_kiocb *req)
4207{
4208 const struct io_op_def *def = &io_op_defs[req->opcode];
4209 struct io_ring_ctx *ctx = req->ctx;
4210 struct async_poll *apoll;
4211 struct io_poll_table ipt;
4212 __poll_t mask, ret;
4213
4214 if (!req->file || !file_can_poll(req->file))
4215 return false;
4216 if (req->flags & (REQ_F_MUST_PUNT | REQ_F_POLLED))
4217 return false;
4218 if (!def->pollin && !def->pollout)
4219 return false;
4220
4221 apoll = kmalloc(sizeof(*apoll), GFP_ATOMIC);
4222 if (unlikely(!apoll))
4223 return false;
4224
4225 req->flags |= REQ_F_POLLED;
4226 memcpy(&apoll->work, &req->work, sizeof(req->work));
4227
4228 /*
4229 * Don't need a reference here, as we're adding it to the task
4230 * task_works list. If the task exits, the list is pruned.
4231 */
4232 req->task = current;
4233 req->apoll = apoll;
4234 INIT_HLIST_NODE(&req->hash_node);
4235
Nathan Chancellor8755d972020-03-02 16:01:19 -07004236 mask = 0;
Jens Axboed7718a92020-02-14 22:23:12 -07004237 if (def->pollin)
Nathan Chancellor8755d972020-03-02 16:01:19 -07004238 mask |= POLLIN | POLLRDNORM;
Jens Axboed7718a92020-02-14 22:23:12 -07004239 if (def->pollout)
4240 mask |= POLLOUT | POLLWRNORM;
4241 mask |= POLLERR | POLLPRI;
4242
4243 ipt.pt._qproc = io_async_queue_proc;
4244
4245 ret = __io_arm_poll_handler(req, &apoll->poll, &ipt, mask,
4246 io_async_wake);
4247 if (ret) {
4248 ipt.error = 0;
4249 apoll->poll.done = true;
4250 spin_unlock_irq(&ctx->completion_lock);
4251 memcpy(&req->work, &apoll->work, sizeof(req->work));
4252 kfree(apoll);
4253 return false;
4254 }
4255 spin_unlock_irq(&ctx->completion_lock);
4256 trace_io_uring_poll_arm(ctx, req->opcode, req->user_data, mask,
4257 apoll->poll.events);
4258 return true;
4259}
4260
4261static bool __io_poll_remove_one(struct io_kiocb *req,
4262 struct io_poll_iocb *poll)
4263{
Jens Axboeb41e9852020-02-17 09:52:41 -07004264 bool do_complete = false;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004265
4266 spin_lock(&poll->head->lock);
4267 WRITE_ONCE(poll->canceled, true);
Jens Axboe392edb42019-12-09 17:52:20 -07004268 if (!list_empty(&poll->wait.entry)) {
4269 list_del_init(&poll->wait.entry);
Jens Axboeb41e9852020-02-17 09:52:41 -07004270 do_complete = true;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004271 }
4272 spin_unlock(&poll->head->lock);
Jens Axboed7718a92020-02-14 22:23:12 -07004273 return do_complete;
4274}
4275
4276static bool io_poll_remove_one(struct io_kiocb *req)
4277{
4278 bool do_complete;
4279
4280 if (req->opcode == IORING_OP_POLL_ADD) {
4281 do_complete = __io_poll_remove_one(req, &req->poll);
4282 } else {
4283 /* non-poll requests have submit ref still */
4284 do_complete = __io_poll_remove_one(req, &req->apoll->poll);
4285 if (do_complete)
4286 io_put_req(req);
4287 }
4288
Jens Axboe78076bb2019-12-04 19:56:40 -07004289 hash_del(&req->hash_node);
Jens Axboed7718a92020-02-14 22:23:12 -07004290
Jens Axboeb41e9852020-02-17 09:52:41 -07004291 if (do_complete) {
4292 io_cqring_fill_event(req, -ECANCELED);
4293 io_commit_cqring(req->ctx);
4294 req->flags |= REQ_F_COMP_LOCKED;
4295 io_put_req(req);
4296 }
4297
4298 return do_complete;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004299}
4300
4301static void io_poll_remove_all(struct io_ring_ctx *ctx)
4302{
Jens Axboe78076bb2019-12-04 19:56:40 -07004303 struct hlist_node *tmp;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004304 struct io_kiocb *req;
Jens Axboe78076bb2019-12-04 19:56:40 -07004305 int i;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004306
4307 spin_lock_irq(&ctx->completion_lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07004308 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
4309 struct hlist_head *list;
4310
4311 list = &ctx->cancel_hash[i];
4312 hlist_for_each_entry_safe(req, tmp, list, hash_node)
4313 io_poll_remove_one(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004314 }
4315 spin_unlock_irq(&ctx->completion_lock);
Jens Axboeb41e9852020-02-17 09:52:41 -07004316
4317 io_cqring_ev_posted(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004318}
4319
Jens Axboe47f46762019-11-09 17:43:02 -07004320static int io_poll_cancel(struct io_ring_ctx *ctx, __u64 sqe_addr)
4321{
Jens Axboe78076bb2019-12-04 19:56:40 -07004322 struct hlist_head *list;
Jens Axboe47f46762019-11-09 17:43:02 -07004323 struct io_kiocb *req;
4324
Jens Axboe78076bb2019-12-04 19:56:40 -07004325 list = &ctx->cancel_hash[hash_long(sqe_addr, ctx->cancel_hash_bits)];
4326 hlist_for_each_entry(req, list, hash_node) {
Jens Axboeb41e9852020-02-17 09:52:41 -07004327 if (sqe_addr != req->user_data)
4328 continue;
4329 if (io_poll_remove_one(req))
Jens Axboeeac406c2019-11-14 12:09:58 -07004330 return 0;
Jens Axboeb41e9852020-02-17 09:52:41 -07004331 return -EALREADY;
Jens Axboe47f46762019-11-09 17:43:02 -07004332 }
4333
4334 return -ENOENT;
4335}
4336
Jens Axboe3529d8c2019-12-19 18:24:38 -07004337static int io_poll_remove_prep(struct io_kiocb *req,
4338 const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004339{
Jens Axboe221c5eb2019-01-17 09:41:58 -07004340 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4341 return -EINVAL;
4342 if (sqe->ioprio || sqe->off || sqe->len || sqe->buf_index ||
4343 sqe->poll_events)
4344 return -EINVAL;
4345
Jens Axboe0969e782019-12-17 18:40:57 -07004346 req->poll.addr = READ_ONCE(sqe->addr);
Jens Axboe0969e782019-12-17 18:40:57 -07004347 return 0;
4348}
4349
4350/*
4351 * Find a running poll command that matches one specified in sqe->addr,
4352 * and remove it if found.
4353 */
4354static int io_poll_remove(struct io_kiocb *req)
4355{
4356 struct io_ring_ctx *ctx = req->ctx;
4357 u64 addr;
4358 int ret;
4359
Jens Axboe0969e782019-12-17 18:40:57 -07004360 addr = req->poll.addr;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004361 spin_lock_irq(&ctx->completion_lock);
Jens Axboe0969e782019-12-17 18:40:57 -07004362 ret = io_poll_cancel(ctx, addr);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004363 spin_unlock_irq(&ctx->completion_lock);
4364
Jens Axboe78e19bb2019-11-06 15:21:34 -07004365 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004366 if (ret < 0)
4367 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06004368 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004369 return 0;
4370}
4371
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004372static void io_poll_complete(struct io_kiocb *req, __poll_t mask, int error)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004373{
Jackie Liua197f662019-11-08 08:09:12 -07004374 struct io_ring_ctx *ctx = req->ctx;
4375
Jens Axboe8c838782019-03-12 15:48:16 -06004376 req->poll.done = true;
Pavel Begunkovb0a20342020-02-28 10:36:35 +03004377 io_cqring_fill_event(req, error ? error : mangle_poll(mask));
Jens Axboe8c838782019-03-12 15:48:16 -06004378 io_commit_cqring(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004379}
4380
Jens Axboeb41e9852020-02-17 09:52:41 -07004381static void io_poll_task_handler(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004382{
Jens Axboe221c5eb2019-01-17 09:41:58 -07004383 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004384
Jens Axboe221c5eb2019-01-17 09:41:58 -07004385 spin_lock_irq(&ctx->completion_lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07004386 hash_del(&req->hash_node);
Jens Axboeb41e9852020-02-17 09:52:41 -07004387 io_poll_complete(req, req->result, 0);
4388 req->flags |= REQ_F_COMP_LOCKED;
4389 io_put_req_find_next(req, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004390 spin_unlock_irq(&ctx->completion_lock);
4391
Jens Axboe8c838782019-03-12 15:48:16 -06004392 io_cqring_ev_posted(ctx);
Jens Axboeb41e9852020-02-17 09:52:41 -07004393}
Jens Axboe89723d02019-11-05 15:32:58 -07004394
Jens Axboeb41e9852020-02-17 09:52:41 -07004395static void io_poll_task_func(struct callback_head *cb)
4396{
4397 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
4398 struct io_kiocb *nxt = NULL;
4399
4400 io_poll_task_handler(req, &nxt);
Jens Axboed7718a92020-02-14 22:23:12 -07004401 if (nxt) {
4402 struct io_ring_ctx *ctx = nxt->ctx;
4403
4404 mutex_lock(&ctx->uring_lock);
Jens Axboeb41e9852020-02-17 09:52:41 -07004405 __io_queue_sqe(nxt, NULL);
Jens Axboed7718a92020-02-14 22:23:12 -07004406 mutex_unlock(&ctx->uring_lock);
4407 }
Jens Axboef0b493e2020-02-01 21:30:11 -07004408}
4409
Jens Axboe221c5eb2019-01-17 09:41:58 -07004410static int io_poll_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
4411 void *key)
4412{
Jens Axboec2f2eb72020-02-10 09:07:05 -07004413 struct io_kiocb *req = wait->private;
4414 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004415
Jens Axboed7718a92020-02-14 22:23:12 -07004416 return __io_async_wake(req, poll, key_to_poll(key), io_poll_task_func);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004417}
4418
Jens Axboe221c5eb2019-01-17 09:41:58 -07004419static void io_poll_queue_proc(struct file *file, struct wait_queue_head *head,
4420 struct poll_table_struct *p)
4421{
4422 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
4423
Jens Axboed7718a92020-02-14 22:23:12 -07004424 __io_queue_proc(&pt->req->poll, pt, head);
Jens Axboeeac406c2019-11-14 12:09:58 -07004425}
4426
Jens Axboe3529d8c2019-12-19 18:24:38 -07004427static int io_poll_add_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004428{
4429 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004430 u16 events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004431
4432 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4433 return -EINVAL;
4434 if (sqe->addr || sqe->ioprio || sqe->off || sqe->len || sqe->buf_index)
4435 return -EINVAL;
Jens Axboe09bb8392019-03-13 12:39:28 -06004436 if (!poll->file)
4437 return -EBADF;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004438
Jens Axboe221c5eb2019-01-17 09:41:58 -07004439 events = READ_ONCE(sqe->poll_events);
4440 poll->events = demangle_poll(events) | EPOLLERR | EPOLLHUP;
Jens Axboeb41e9852020-02-17 09:52:41 -07004441
Jens Axboed7718a92020-02-14 22:23:12 -07004442 /*
4443 * Don't need a reference here, as we're adding it to the task
4444 * task_works list. If the task exits, the list is pruned.
4445 */
Jens Axboeb41e9852020-02-17 09:52:41 -07004446 req->task = current;
Jens Axboe0969e782019-12-17 18:40:57 -07004447 return 0;
4448}
4449
Pavel Begunkov014db002020-03-03 21:33:12 +03004450static int io_poll_add(struct io_kiocb *req)
Jens Axboe0969e782019-12-17 18:40:57 -07004451{
4452 struct io_poll_iocb *poll = &req->poll;
4453 struct io_ring_ctx *ctx = req->ctx;
4454 struct io_poll_table ipt;
Jens Axboe0969e782019-12-17 18:40:57 -07004455 __poll_t mask;
Jens Axboe0969e782019-12-17 18:40:57 -07004456
Jens Axboe78076bb2019-12-04 19:56:40 -07004457 INIT_HLIST_NODE(&req->hash_node);
Jens Axboe36703242019-07-25 10:20:18 -06004458 INIT_LIST_HEAD(&req->list);
Jens Axboed7718a92020-02-14 22:23:12 -07004459 ipt.pt._qproc = io_poll_queue_proc;
Jens Axboe36703242019-07-25 10:20:18 -06004460
Jens Axboed7718a92020-02-14 22:23:12 -07004461 mask = __io_arm_poll_handler(req, &req->poll, &ipt, poll->events,
4462 io_poll_wake);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004463
Jens Axboe8c838782019-03-12 15:48:16 -06004464 if (mask) { /* no async, we'd stolen it */
Jens Axboe8c838782019-03-12 15:48:16 -06004465 ipt.error = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004466 io_poll_complete(req, mask, 0);
Jens Axboe8c838782019-03-12 15:48:16 -06004467 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07004468 spin_unlock_irq(&ctx->completion_lock);
4469
Jens Axboe8c838782019-03-12 15:48:16 -06004470 if (mask) {
4471 io_cqring_ev_posted(ctx);
Pavel Begunkov014db002020-03-03 21:33:12 +03004472 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004473 }
Jens Axboe8c838782019-03-12 15:48:16 -06004474 return ipt.error;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004475}
4476
Jens Axboe5262f562019-09-17 12:26:57 -06004477static enum hrtimer_restart io_timeout_fn(struct hrtimer *timer)
4478{
Jens Axboead8a48a2019-11-15 08:49:11 -07004479 struct io_timeout_data *data = container_of(timer,
4480 struct io_timeout_data, timer);
4481 struct io_kiocb *req = data->req;
4482 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5262f562019-09-17 12:26:57 -06004483 unsigned long flags;
4484
Jens Axboe5262f562019-09-17 12:26:57 -06004485 atomic_inc(&ctx->cq_timeouts);
4486
4487 spin_lock_irqsave(&ctx->completion_lock, flags);
zhangyi (F)ef036812019-10-23 15:10:08 +08004488 /*
Jens Axboe11365042019-10-16 09:08:32 -06004489 * We could be racing with timeout deletion. If the list is empty,
4490 * then timeout lookup already found it and will be handling it.
zhangyi (F)ef036812019-10-23 15:10:08 +08004491 */
Jens Axboe842f9612019-10-29 12:34:10 -06004492 if (!list_empty(&req->list)) {
Jens Axboe11365042019-10-16 09:08:32 -06004493 struct io_kiocb *prev;
Jens Axboe5262f562019-09-17 12:26:57 -06004494
Jens Axboe11365042019-10-16 09:08:32 -06004495 /*
4496 * Adjust the reqs sequence before the current one because it
Brian Gianforcarod195a662019-12-13 03:09:50 -08004497 * will consume a slot in the cq_ring and the cq_tail
Jens Axboe11365042019-10-16 09:08:32 -06004498 * pointer will be increased, otherwise other timeout reqs may
4499 * return in advance without waiting for enough wait_nr.
4500 */
4501 prev = req;
4502 list_for_each_entry_continue_reverse(prev, &ctx->timeout_list, list)
4503 prev->sequence++;
Jens Axboe11365042019-10-16 09:08:32 -06004504 list_del_init(&req->list);
Jens Axboe11365042019-10-16 09:08:32 -06004505 }
Jens Axboe842f9612019-10-29 12:34:10 -06004506
Jens Axboe78e19bb2019-11-06 15:21:34 -07004507 io_cqring_fill_event(req, -ETIME);
Jens Axboe5262f562019-09-17 12:26:57 -06004508 io_commit_cqring(ctx);
4509 spin_unlock_irqrestore(&ctx->completion_lock, flags);
4510
4511 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004512 req_set_fail_links(req);
Jens Axboe5262f562019-09-17 12:26:57 -06004513 io_put_req(req);
4514 return HRTIMER_NORESTART;
4515}
4516
Jens Axboe47f46762019-11-09 17:43:02 -07004517static int io_timeout_cancel(struct io_ring_ctx *ctx, __u64 user_data)
4518{
4519 struct io_kiocb *req;
4520 int ret = -ENOENT;
4521
4522 list_for_each_entry(req, &ctx->timeout_list, list) {
4523 if (user_data == req->user_data) {
4524 list_del_init(&req->list);
4525 ret = 0;
4526 break;
4527 }
4528 }
4529
4530 if (ret == -ENOENT)
4531 return ret;
4532
Jens Axboe2d283902019-12-04 11:08:05 -07004533 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe47f46762019-11-09 17:43:02 -07004534 if (ret == -1)
4535 return -EALREADY;
4536
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004537 req_set_fail_links(req);
Jens Axboe47f46762019-11-09 17:43:02 -07004538 io_cqring_fill_event(req, -ECANCELED);
4539 io_put_req(req);
4540 return 0;
4541}
4542
Jens Axboe3529d8c2019-12-19 18:24:38 -07004543static int io_timeout_remove_prep(struct io_kiocb *req,
4544 const struct io_uring_sqe *sqe)
Jens Axboeb29472e2019-12-17 18:50:29 -07004545{
Jens Axboeb29472e2019-12-17 18:50:29 -07004546 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4547 return -EINVAL;
4548 if (sqe->flags || sqe->ioprio || sqe->buf_index || sqe->len)
4549 return -EINVAL;
4550
4551 req->timeout.addr = READ_ONCE(sqe->addr);
4552 req->timeout.flags = READ_ONCE(sqe->timeout_flags);
4553 if (req->timeout.flags)
4554 return -EINVAL;
4555
Jens Axboeb29472e2019-12-17 18:50:29 -07004556 return 0;
4557}
4558
Jens Axboe11365042019-10-16 09:08:32 -06004559/*
4560 * Remove or update an existing timeout command
4561 */
Jens Axboefc4df992019-12-10 14:38:45 -07004562static int io_timeout_remove(struct io_kiocb *req)
Jens Axboe11365042019-10-16 09:08:32 -06004563{
4564 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe47f46762019-11-09 17:43:02 -07004565 int ret;
Jens Axboe11365042019-10-16 09:08:32 -06004566
Jens Axboe11365042019-10-16 09:08:32 -06004567 spin_lock_irq(&ctx->completion_lock);
Jens Axboeb29472e2019-12-17 18:50:29 -07004568 ret = io_timeout_cancel(ctx, req->timeout.addr);
Jens Axboe11365042019-10-16 09:08:32 -06004569
Jens Axboe47f46762019-11-09 17:43:02 -07004570 io_cqring_fill_event(req, ret);
Jens Axboe11365042019-10-16 09:08:32 -06004571 io_commit_cqring(ctx);
4572 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06004573 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004574 if (ret < 0)
4575 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08004576 io_put_req(req);
Jens Axboe11365042019-10-16 09:08:32 -06004577 return 0;
Jens Axboe5262f562019-09-17 12:26:57 -06004578}
4579
Jens Axboe3529d8c2019-12-19 18:24:38 -07004580static int io_timeout_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboe2d283902019-12-04 11:08:05 -07004581 bool is_timeout_link)
Jens Axboe5262f562019-09-17 12:26:57 -06004582{
Jens Axboead8a48a2019-11-15 08:49:11 -07004583 struct io_timeout_data *data;
Jens Axboea41525a2019-10-15 16:48:15 -06004584 unsigned flags;
Jens Axboe5262f562019-09-17 12:26:57 -06004585
Jens Axboead8a48a2019-11-15 08:49:11 -07004586 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe5262f562019-09-17 12:26:57 -06004587 return -EINVAL;
Jens Axboead8a48a2019-11-15 08:49:11 -07004588 if (sqe->ioprio || sqe->buf_index || sqe->len != 1)
Jens Axboea41525a2019-10-15 16:48:15 -06004589 return -EINVAL;
Jens Axboe2d283902019-12-04 11:08:05 -07004590 if (sqe->off && is_timeout_link)
4591 return -EINVAL;
Jens Axboea41525a2019-10-15 16:48:15 -06004592 flags = READ_ONCE(sqe->timeout_flags);
4593 if (flags & ~IORING_TIMEOUT_ABS)
Jens Axboe5262f562019-09-17 12:26:57 -06004594 return -EINVAL;
Arnd Bergmannbdf20072019-10-01 09:53:29 -06004595
Jens Axboe26a61672019-12-20 09:02:01 -07004596 req->timeout.count = READ_ONCE(sqe->off);
4597
Jens Axboe3529d8c2019-12-19 18:24:38 -07004598 if (!req->io && io_alloc_async_ctx(req))
Jens Axboe26a61672019-12-20 09:02:01 -07004599 return -ENOMEM;
4600
4601 data = &req->io->timeout;
Jens Axboead8a48a2019-11-15 08:49:11 -07004602 data->req = req;
Jens Axboead8a48a2019-11-15 08:49:11 -07004603 req->flags |= REQ_F_TIMEOUT;
4604
4605 if (get_timespec64(&data->ts, u64_to_user_ptr(sqe->addr)))
Jens Axboe5262f562019-09-17 12:26:57 -06004606 return -EFAULT;
4607
Jens Axboe11365042019-10-16 09:08:32 -06004608 if (flags & IORING_TIMEOUT_ABS)
Jens Axboead8a48a2019-11-15 08:49:11 -07004609 data->mode = HRTIMER_MODE_ABS;
Jens Axboe11365042019-10-16 09:08:32 -06004610 else
Jens Axboead8a48a2019-11-15 08:49:11 -07004611 data->mode = HRTIMER_MODE_REL;
Jens Axboe11365042019-10-16 09:08:32 -06004612
Jens Axboead8a48a2019-11-15 08:49:11 -07004613 hrtimer_init(&data->timer, CLOCK_MONOTONIC, data->mode);
4614 return 0;
4615}
4616
Jens Axboefc4df992019-12-10 14:38:45 -07004617static int io_timeout(struct io_kiocb *req)
Jens Axboead8a48a2019-11-15 08:49:11 -07004618{
4619 unsigned count;
4620 struct io_ring_ctx *ctx = req->ctx;
4621 struct io_timeout_data *data;
4622 struct list_head *entry;
4623 unsigned span = 0;
Jens Axboead8a48a2019-11-15 08:49:11 -07004624
Jens Axboe2d283902019-12-04 11:08:05 -07004625 data = &req->io->timeout;
Jens Axboe93bd25b2019-11-11 23:34:31 -07004626
Jens Axboe5262f562019-09-17 12:26:57 -06004627 /*
4628 * sqe->off holds how many events that need to occur for this
Jens Axboe93bd25b2019-11-11 23:34:31 -07004629 * timeout event to be satisfied. If it isn't set, then this is
4630 * a pure timeout request, sequence isn't used.
Jens Axboe5262f562019-09-17 12:26:57 -06004631 */
Jens Axboe26a61672019-12-20 09:02:01 -07004632 count = req->timeout.count;
Jens Axboe93bd25b2019-11-11 23:34:31 -07004633 if (!count) {
4634 req->flags |= REQ_F_TIMEOUT_NOSEQ;
4635 spin_lock_irq(&ctx->completion_lock);
4636 entry = ctx->timeout_list.prev;
4637 goto add;
4638 }
Jens Axboe5262f562019-09-17 12:26:57 -06004639
4640 req->sequence = ctx->cached_sq_head + count - 1;
Jens Axboe2d283902019-12-04 11:08:05 -07004641 data->seq_offset = count;
Jens Axboe5262f562019-09-17 12:26:57 -06004642
4643 /*
4644 * Insertion sort, ensuring the first entry in the list is always
4645 * the one we need first.
4646 */
Jens Axboe5262f562019-09-17 12:26:57 -06004647 spin_lock_irq(&ctx->completion_lock);
4648 list_for_each_prev(entry, &ctx->timeout_list) {
4649 struct io_kiocb *nxt = list_entry(entry, struct io_kiocb, list);
yangerkun5da0fb12019-10-15 21:59:29 +08004650 unsigned nxt_sq_head;
4651 long long tmp, tmp_nxt;
Jens Axboe2d283902019-12-04 11:08:05 -07004652 u32 nxt_offset = nxt->io->timeout.seq_offset;
Jens Axboe5262f562019-09-17 12:26:57 -06004653
Jens Axboe93bd25b2019-11-11 23:34:31 -07004654 if (nxt->flags & REQ_F_TIMEOUT_NOSEQ)
4655 continue;
4656
yangerkun5da0fb12019-10-15 21:59:29 +08004657 /*
4658 * Since cached_sq_head + count - 1 can overflow, use type long
4659 * long to store it.
4660 */
4661 tmp = (long long)ctx->cached_sq_head + count - 1;
Pavel Begunkovcc42e0a2019-11-25 23:14:38 +03004662 nxt_sq_head = nxt->sequence - nxt_offset + 1;
4663 tmp_nxt = (long long)nxt_sq_head + nxt_offset - 1;
yangerkun5da0fb12019-10-15 21:59:29 +08004664
4665 /*
4666 * cached_sq_head may overflow, and it will never overflow twice
4667 * once there is some timeout req still be valid.
4668 */
4669 if (ctx->cached_sq_head < nxt_sq_head)
yangerkun8b07a652019-10-17 12:12:35 +08004670 tmp += UINT_MAX;
yangerkun5da0fb12019-10-15 21:59:29 +08004671
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004672 if (tmp > tmp_nxt)
Jens Axboe5262f562019-09-17 12:26:57 -06004673 break;
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004674
4675 /*
4676 * Sequence of reqs after the insert one and itself should
4677 * be adjusted because each timeout req consumes a slot.
4678 */
4679 span++;
4680 nxt->sequence++;
Jens Axboe5262f562019-09-17 12:26:57 -06004681 }
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004682 req->sequence -= span;
Jens Axboe93bd25b2019-11-11 23:34:31 -07004683add:
Jens Axboe5262f562019-09-17 12:26:57 -06004684 list_add(&req->list, entry);
Jens Axboead8a48a2019-11-15 08:49:11 -07004685 data->timer.function = io_timeout_fn;
4686 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts), data->mode);
Jens Axboe842f9612019-10-29 12:34:10 -06004687 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06004688 return 0;
4689}
4690
Jens Axboe62755e32019-10-28 21:49:21 -06004691static bool io_cancel_cb(struct io_wq_work *work, void *data)
Jens Axboede0617e2019-04-06 21:51:27 -06004692{
Jens Axboe62755e32019-10-28 21:49:21 -06004693 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboede0617e2019-04-06 21:51:27 -06004694
Jens Axboe62755e32019-10-28 21:49:21 -06004695 return req->user_data == (unsigned long) data;
4696}
4697
Jens Axboee977d6d2019-11-05 12:39:45 -07004698static int io_async_cancel_one(struct io_ring_ctx *ctx, void *sqe_addr)
Jens Axboe62755e32019-10-28 21:49:21 -06004699{
Jens Axboe62755e32019-10-28 21:49:21 -06004700 enum io_wq_cancel cancel_ret;
Jens Axboe62755e32019-10-28 21:49:21 -06004701 int ret = 0;
4702
Jens Axboe62755e32019-10-28 21:49:21 -06004703 cancel_ret = io_wq_cancel_cb(ctx->io_wq, io_cancel_cb, sqe_addr);
4704 switch (cancel_ret) {
4705 case IO_WQ_CANCEL_OK:
4706 ret = 0;
4707 break;
4708 case IO_WQ_CANCEL_RUNNING:
4709 ret = -EALREADY;
4710 break;
4711 case IO_WQ_CANCEL_NOTFOUND:
4712 ret = -ENOENT;
4713 break;
4714 }
4715
Jens Axboee977d6d2019-11-05 12:39:45 -07004716 return ret;
4717}
4718
Jens Axboe47f46762019-11-09 17:43:02 -07004719static void io_async_find_and_cancel(struct io_ring_ctx *ctx,
4720 struct io_kiocb *req, __u64 sqe_addr,
Pavel Begunkov014db002020-03-03 21:33:12 +03004721 int success_ret)
Jens Axboe47f46762019-11-09 17:43:02 -07004722{
4723 unsigned long flags;
4724 int ret;
4725
4726 ret = io_async_cancel_one(ctx, (void *) (unsigned long) sqe_addr);
4727 if (ret != -ENOENT) {
4728 spin_lock_irqsave(&ctx->completion_lock, flags);
4729 goto done;
4730 }
4731
4732 spin_lock_irqsave(&ctx->completion_lock, flags);
4733 ret = io_timeout_cancel(ctx, sqe_addr);
4734 if (ret != -ENOENT)
4735 goto done;
4736 ret = io_poll_cancel(ctx, sqe_addr);
4737done:
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004738 if (!ret)
4739 ret = success_ret;
Jens Axboe47f46762019-11-09 17:43:02 -07004740 io_cqring_fill_event(req, ret);
4741 io_commit_cqring(ctx);
4742 spin_unlock_irqrestore(&ctx->completion_lock, flags);
4743 io_cqring_ev_posted(ctx);
4744
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004745 if (ret < 0)
4746 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03004747 io_put_req(req);
Jens Axboe47f46762019-11-09 17:43:02 -07004748}
4749
Jens Axboe3529d8c2019-12-19 18:24:38 -07004750static int io_async_cancel_prep(struct io_kiocb *req,
4751 const struct io_uring_sqe *sqe)
Jens Axboee977d6d2019-11-05 12:39:45 -07004752{
Jens Axboefbf23842019-12-17 18:45:56 -07004753 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboee977d6d2019-11-05 12:39:45 -07004754 return -EINVAL;
4755 if (sqe->flags || sqe->ioprio || sqe->off || sqe->len ||
4756 sqe->cancel_flags)
4757 return -EINVAL;
4758
Jens Axboefbf23842019-12-17 18:45:56 -07004759 req->cancel.addr = READ_ONCE(sqe->addr);
4760 return 0;
4761}
4762
Pavel Begunkov014db002020-03-03 21:33:12 +03004763static int io_async_cancel(struct io_kiocb *req)
Jens Axboefbf23842019-12-17 18:45:56 -07004764{
4765 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefbf23842019-12-17 18:45:56 -07004766
Pavel Begunkov014db002020-03-03 21:33:12 +03004767 io_async_find_and_cancel(ctx, req, req->cancel.addr, 0);
Jens Axboe62755e32019-10-28 21:49:21 -06004768 return 0;
4769}
4770
Jens Axboe05f3fb32019-12-09 11:22:50 -07004771static int io_files_update_prep(struct io_kiocb *req,
4772 const struct io_uring_sqe *sqe)
4773{
4774 if (sqe->flags || sqe->ioprio || sqe->rw_flags)
4775 return -EINVAL;
4776
4777 req->files_update.offset = READ_ONCE(sqe->off);
4778 req->files_update.nr_args = READ_ONCE(sqe->len);
4779 if (!req->files_update.nr_args)
4780 return -EINVAL;
4781 req->files_update.arg = READ_ONCE(sqe->addr);
4782 return 0;
4783}
4784
4785static int io_files_update(struct io_kiocb *req, bool force_nonblock)
4786{
4787 struct io_ring_ctx *ctx = req->ctx;
4788 struct io_uring_files_update up;
4789 int ret;
4790
Jens Axboef86cd202020-01-29 13:46:44 -07004791 if (force_nonblock)
Jens Axboe05f3fb32019-12-09 11:22:50 -07004792 return -EAGAIN;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004793
4794 up.offset = req->files_update.offset;
4795 up.fds = req->files_update.arg;
4796
4797 mutex_lock(&ctx->uring_lock);
4798 ret = __io_sqe_files_update(ctx, &up, req->files_update.nr_args);
4799 mutex_unlock(&ctx->uring_lock);
4800
4801 if (ret < 0)
4802 req_set_fail_links(req);
4803 io_cqring_add_event(req, ret);
4804 io_put_req(req);
4805 return 0;
4806}
4807
Jens Axboe3529d8c2019-12-19 18:24:38 -07004808static int io_req_defer_prep(struct io_kiocb *req,
4809 const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07004810{
Jens Axboee7815732019-12-17 19:45:06 -07004811 ssize_t ret = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07004812
Jens Axboef86cd202020-01-29 13:46:44 -07004813 if (io_op_defs[req->opcode].file_table) {
4814 ret = io_grab_files(req);
4815 if (unlikely(ret))
4816 return ret;
4817 }
4818
Jens Axboecccf0ee2020-01-27 16:34:48 -07004819 io_req_work_grab_env(req, &io_op_defs[req->opcode]);
4820
Jens Axboed625c6e2019-12-17 19:53:05 -07004821 switch (req->opcode) {
Jens Axboee7815732019-12-17 19:45:06 -07004822 case IORING_OP_NOP:
4823 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004824 case IORING_OP_READV:
4825 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004826 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004827 ret = io_read_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07004828 break;
4829 case IORING_OP_WRITEV:
4830 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004831 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004832 ret = io_write_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07004833 break;
Jens Axboe0969e782019-12-17 18:40:57 -07004834 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004835 ret = io_poll_add_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07004836 break;
4837 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004838 ret = io_poll_remove_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07004839 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004840 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004841 ret = io_prep_fsync(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004842 break;
4843 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004844 ret = io_prep_sfr(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004845 break;
Jens Axboe03b12302019-12-02 18:50:25 -07004846 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004847 case IORING_OP_SEND:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004848 ret = io_sendmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07004849 break;
4850 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004851 case IORING_OP_RECV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004852 ret = io_recvmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07004853 break;
Jens Axboef499a022019-12-02 16:28:46 -07004854 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004855 ret = io_connect_prep(req, sqe);
Jens Axboef499a022019-12-02 16:28:46 -07004856 break;
Jens Axboe2d283902019-12-04 11:08:05 -07004857 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004858 ret = io_timeout_prep(req, sqe, false);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004859 break;
Jens Axboeb29472e2019-12-17 18:50:29 -07004860 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004861 ret = io_timeout_remove_prep(req, sqe);
Jens Axboeb29472e2019-12-17 18:50:29 -07004862 break;
Jens Axboefbf23842019-12-17 18:45:56 -07004863 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004864 ret = io_async_cancel_prep(req, sqe);
Jens Axboefbf23842019-12-17 18:45:56 -07004865 break;
Jens Axboe2d283902019-12-04 11:08:05 -07004866 case IORING_OP_LINK_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004867 ret = io_timeout_prep(req, sqe, true);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004868 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004869 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004870 ret = io_accept_prep(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004871 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07004872 case IORING_OP_FALLOCATE:
4873 ret = io_fallocate_prep(req, sqe);
4874 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004875 case IORING_OP_OPENAT:
4876 ret = io_openat_prep(req, sqe);
4877 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07004878 case IORING_OP_CLOSE:
4879 ret = io_close_prep(req, sqe);
4880 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004881 case IORING_OP_FILES_UPDATE:
4882 ret = io_files_update_prep(req, sqe);
4883 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004884 case IORING_OP_STATX:
4885 ret = io_statx_prep(req, sqe);
4886 break;
Jens Axboe4840e412019-12-25 22:03:45 -07004887 case IORING_OP_FADVISE:
4888 ret = io_fadvise_prep(req, sqe);
4889 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07004890 case IORING_OP_MADVISE:
4891 ret = io_madvise_prep(req, sqe);
4892 break;
Jens Axboecebdb982020-01-08 17:59:24 -07004893 case IORING_OP_OPENAT2:
4894 ret = io_openat2_prep(req, sqe);
4895 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07004896 case IORING_OP_EPOLL_CTL:
4897 ret = io_epoll_ctl_prep(req, sqe);
4898 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03004899 case IORING_OP_SPLICE:
4900 ret = io_splice_prep(req, sqe);
4901 break;
Jens Axboeddf0322d2020-02-23 16:41:33 -07004902 case IORING_OP_PROVIDE_BUFFERS:
4903 ret = io_provide_buffers_prep(req, sqe);
4904 break;
Jens Axboe067524e2020-03-02 16:32:28 -07004905 case IORING_OP_REMOVE_BUFFERS:
4906 ret = io_remove_buffers_prep(req, sqe);
4907 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004908 default:
Jens Axboee7815732019-12-17 19:45:06 -07004909 printk_once(KERN_WARNING "io_uring: unhandled opcode %d\n",
4910 req->opcode);
4911 ret = -EINVAL;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004912 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004913 }
4914
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004915 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07004916}
4917
Jens Axboe3529d8c2019-12-19 18:24:38 -07004918static int io_req_defer(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboede0617e2019-04-06 21:51:27 -06004919{
Jackie Liua197f662019-11-08 08:09:12 -07004920 struct io_ring_ctx *ctx = req->ctx;
Jens Axboef67676d2019-12-02 11:03:47 -07004921 int ret;
Jens Axboede0617e2019-04-06 21:51:27 -06004922
Bob Liu9d858b22019-11-13 18:06:25 +08004923 /* Still need defer if there is pending req in defer list. */
4924 if (!req_need_defer(req) && list_empty(&ctx->defer_list))
Jens Axboede0617e2019-04-06 21:51:27 -06004925 return 0;
4926
Jens Axboe3529d8c2019-12-19 18:24:38 -07004927 if (!req->io && io_alloc_async_ctx(req))
Jens Axboede0617e2019-04-06 21:51:27 -06004928 return -EAGAIN;
4929
Jens Axboe3529d8c2019-12-19 18:24:38 -07004930 ret = io_req_defer_prep(req, sqe);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004931 if (ret < 0)
Jens Axboe2d283902019-12-04 11:08:05 -07004932 return ret;
Jens Axboe2d283902019-12-04 11:08:05 -07004933
Jens Axboede0617e2019-04-06 21:51:27 -06004934 spin_lock_irq(&ctx->completion_lock);
Bob Liu9d858b22019-11-13 18:06:25 +08004935 if (!req_need_defer(req) && list_empty(&ctx->defer_list)) {
Jens Axboede0617e2019-04-06 21:51:27 -06004936 spin_unlock_irq(&ctx->completion_lock);
Jens Axboede0617e2019-04-06 21:51:27 -06004937 return 0;
4938 }
4939
Jens Axboe915967f2019-11-21 09:01:20 -07004940 trace_io_uring_defer(ctx, req, req->user_data);
Jens Axboede0617e2019-04-06 21:51:27 -06004941 list_add_tail(&req->list, &ctx->defer_list);
4942 spin_unlock_irq(&ctx->completion_lock);
4943 return -EIOCBQUEUED;
4944}
4945
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004946static void io_cleanup_req(struct io_kiocb *req)
4947{
4948 struct io_async_ctx *io = req->io;
4949
4950 switch (req->opcode) {
4951 case IORING_OP_READV:
4952 case IORING_OP_READ_FIXED:
4953 case IORING_OP_READ:
Jens Axboebcda7ba2020-02-23 16:42:51 -07004954 if (req->flags & REQ_F_BUFFER_SELECTED)
4955 kfree((void *)(unsigned long)req->rw.addr);
4956 /* fallthrough */
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004957 case IORING_OP_WRITEV:
4958 case IORING_OP_WRITE_FIXED:
4959 case IORING_OP_WRITE:
4960 if (io->rw.iov != io->rw.fast_iov)
4961 kfree(io->rw.iov);
4962 break;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004963 case IORING_OP_RECVMSG:
Jens Axboe52de1fe2020-02-27 10:15:42 -07004964 if (req->flags & REQ_F_BUFFER_SELECTED)
4965 kfree(req->sr_msg.kbuf);
4966 /* fallthrough */
4967 case IORING_OP_SENDMSG:
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004968 if (io->msg.iov != io->msg.fast_iov)
4969 kfree(io->msg.iov);
4970 break;
Jens Axboebcda7ba2020-02-23 16:42:51 -07004971 case IORING_OP_RECV:
4972 if (req->flags & REQ_F_BUFFER_SELECTED)
4973 kfree(req->sr_msg.kbuf);
4974 break;
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03004975 case IORING_OP_OPENAT:
4976 case IORING_OP_OPENAT2:
4977 case IORING_OP_STATX:
4978 putname(req->open.filename);
4979 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03004980 case IORING_OP_SPLICE:
4981 io_put_file(req, req->splice.file_in,
4982 (req->splice.flags & SPLICE_F_FD_IN_FIXED));
4983 break;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004984 }
4985
4986 req->flags &= ~REQ_F_NEED_CLEANUP;
4987}
4988
Jens Axboe3529d8c2019-12-19 18:24:38 -07004989static int io_issue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Pavel Begunkov014db002020-03-03 21:33:12 +03004990 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07004991{
Jackie Liua197f662019-11-08 08:09:12 -07004992 struct io_ring_ctx *ctx = req->ctx;
Jens Axboed625c6e2019-12-17 19:53:05 -07004993 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07004994
Jens Axboed625c6e2019-12-17 19:53:05 -07004995 switch (req->opcode) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07004996 case IORING_OP_NOP:
Jens Axboe78e19bb2019-11-06 15:21:34 -07004997 ret = io_nop(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07004998 break;
4999 case IORING_OP_READV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005000 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07005001 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005002 if (sqe) {
5003 ret = io_read_prep(req, sqe, force_nonblock);
5004 if (ret < 0)
5005 break;
5006 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005007 ret = io_read(req, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005008 break;
5009 case IORING_OP_WRITEV:
Jens Axboeedafcce2019-01-09 09:16:05 -07005010 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07005011 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005012 if (sqe) {
5013 ret = io_write_prep(req, sqe, force_nonblock);
5014 if (ret < 0)
5015 break;
5016 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005017 ret = io_write(req, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005018 break;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07005019 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005020 if (sqe) {
5021 ret = io_prep_fsync(req, sqe);
5022 if (ret < 0)
5023 break;
5024 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005025 ret = io_fsync(req, force_nonblock);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07005026 break;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005027 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005028 if (sqe) {
5029 ret = io_poll_add_prep(req, sqe);
5030 if (ret)
5031 break;
5032 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005033 ret = io_poll_add(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005034 break;
5035 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005036 if (sqe) {
5037 ret = io_poll_remove_prep(req, sqe);
5038 if (ret < 0)
5039 break;
5040 }
Jens Axboefc4df992019-12-10 14:38:45 -07005041 ret = io_poll_remove(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005042 break;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06005043 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005044 if (sqe) {
5045 ret = io_prep_sfr(req, sqe);
5046 if (ret < 0)
5047 break;
5048 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005049 ret = io_sync_file_range(req, force_nonblock);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06005050 break;
Jens Axboe0fa03c62019-04-19 13:34:07 -06005051 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005052 case IORING_OP_SEND:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005053 if (sqe) {
5054 ret = io_sendmsg_prep(req, sqe);
5055 if (ret < 0)
5056 break;
5057 }
Jens Axboefddafac2020-01-04 20:19:44 -07005058 if (req->opcode == IORING_OP_SENDMSG)
Pavel Begunkov014db002020-03-03 21:33:12 +03005059 ret = io_sendmsg(req, force_nonblock);
Jens Axboefddafac2020-01-04 20:19:44 -07005060 else
Pavel Begunkov014db002020-03-03 21:33:12 +03005061 ret = io_send(req, force_nonblock);
Jens Axboe0fa03c62019-04-19 13:34:07 -06005062 break;
Jens Axboeaa1fa282019-04-19 13:38:09 -06005063 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005064 case IORING_OP_RECV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005065 if (sqe) {
5066 ret = io_recvmsg_prep(req, sqe);
5067 if (ret)
5068 break;
5069 }
Jens Axboefddafac2020-01-04 20:19:44 -07005070 if (req->opcode == IORING_OP_RECVMSG)
Pavel Begunkov014db002020-03-03 21:33:12 +03005071 ret = io_recvmsg(req, force_nonblock);
Jens Axboefddafac2020-01-04 20:19:44 -07005072 else
Pavel Begunkov014db002020-03-03 21:33:12 +03005073 ret = io_recv(req, force_nonblock);
Jens Axboeaa1fa282019-04-19 13:38:09 -06005074 break;
Jens Axboe5262f562019-09-17 12:26:57 -06005075 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005076 if (sqe) {
5077 ret = io_timeout_prep(req, sqe, false);
5078 if (ret)
5079 break;
5080 }
Jens Axboefc4df992019-12-10 14:38:45 -07005081 ret = io_timeout(req);
Jens Axboe5262f562019-09-17 12:26:57 -06005082 break;
Jens Axboe11365042019-10-16 09:08:32 -06005083 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005084 if (sqe) {
5085 ret = io_timeout_remove_prep(req, sqe);
5086 if (ret)
5087 break;
5088 }
Jens Axboefc4df992019-12-10 14:38:45 -07005089 ret = io_timeout_remove(req);
Jens Axboe11365042019-10-16 09:08:32 -06005090 break;
Jens Axboe17f2fe32019-10-17 14:42:58 -06005091 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005092 if (sqe) {
5093 ret = io_accept_prep(req, sqe);
5094 if (ret)
5095 break;
5096 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005097 ret = io_accept(req, force_nonblock);
Jens Axboe17f2fe32019-10-17 14:42:58 -06005098 break;
Jens Axboef8e85cf2019-11-23 14:24:24 -07005099 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005100 if (sqe) {
5101 ret = io_connect_prep(req, sqe);
5102 if (ret)
5103 break;
5104 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005105 ret = io_connect(req, force_nonblock);
Jens Axboef8e85cf2019-11-23 14:24:24 -07005106 break;
Jens Axboe62755e32019-10-28 21:49:21 -06005107 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005108 if (sqe) {
5109 ret = io_async_cancel_prep(req, sqe);
5110 if (ret)
5111 break;
5112 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005113 ret = io_async_cancel(req);
Jens Axboe62755e32019-10-28 21:49:21 -06005114 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07005115 case IORING_OP_FALLOCATE:
5116 if (sqe) {
5117 ret = io_fallocate_prep(req, sqe);
5118 if (ret)
5119 break;
5120 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005121 ret = io_fallocate(req, force_nonblock);
Jens Axboed63d1b52019-12-10 10:38:56 -07005122 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07005123 case IORING_OP_OPENAT:
5124 if (sqe) {
5125 ret = io_openat_prep(req, sqe);
5126 if (ret)
5127 break;
5128 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005129 ret = io_openat(req, force_nonblock);
Jens Axboe15b71ab2019-12-11 11:20:36 -07005130 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07005131 case IORING_OP_CLOSE:
5132 if (sqe) {
5133 ret = io_close_prep(req, sqe);
5134 if (ret)
5135 break;
5136 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005137 ret = io_close(req, force_nonblock);
Jens Axboeb5dba592019-12-11 14:02:38 -07005138 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005139 case IORING_OP_FILES_UPDATE:
5140 if (sqe) {
5141 ret = io_files_update_prep(req, sqe);
5142 if (ret)
5143 break;
5144 }
5145 ret = io_files_update(req, force_nonblock);
5146 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07005147 case IORING_OP_STATX:
5148 if (sqe) {
5149 ret = io_statx_prep(req, sqe);
5150 if (ret)
5151 break;
5152 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005153 ret = io_statx(req, force_nonblock);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07005154 break;
Jens Axboe4840e412019-12-25 22:03:45 -07005155 case IORING_OP_FADVISE:
5156 if (sqe) {
5157 ret = io_fadvise_prep(req, sqe);
5158 if (ret)
5159 break;
5160 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005161 ret = io_fadvise(req, force_nonblock);
Jens Axboe4840e412019-12-25 22:03:45 -07005162 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07005163 case IORING_OP_MADVISE:
5164 if (sqe) {
5165 ret = io_madvise_prep(req, sqe);
5166 if (ret)
5167 break;
5168 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005169 ret = io_madvise(req, force_nonblock);
Jens Axboec1ca7572019-12-25 22:18:28 -07005170 break;
Jens Axboecebdb982020-01-08 17:59:24 -07005171 case IORING_OP_OPENAT2:
5172 if (sqe) {
5173 ret = io_openat2_prep(req, sqe);
5174 if (ret)
5175 break;
5176 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005177 ret = io_openat2(req, force_nonblock);
Jens Axboecebdb982020-01-08 17:59:24 -07005178 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07005179 case IORING_OP_EPOLL_CTL:
5180 if (sqe) {
5181 ret = io_epoll_ctl_prep(req, sqe);
5182 if (ret)
5183 break;
5184 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005185 ret = io_epoll_ctl(req, force_nonblock);
Jens Axboe3e4827b2020-01-08 15:18:09 -07005186 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005187 case IORING_OP_SPLICE:
5188 if (sqe) {
5189 ret = io_splice_prep(req, sqe);
5190 if (ret < 0)
5191 break;
5192 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005193 ret = io_splice(req, force_nonblock);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005194 break;
Jens Axboeddf0322d2020-02-23 16:41:33 -07005195 case IORING_OP_PROVIDE_BUFFERS:
5196 if (sqe) {
5197 ret = io_provide_buffers_prep(req, sqe);
5198 if (ret)
5199 break;
5200 }
5201 ret = io_provide_buffers(req, force_nonblock);
5202 break;
Jens Axboe067524e2020-03-02 16:32:28 -07005203 case IORING_OP_REMOVE_BUFFERS:
5204 if (sqe) {
5205 ret = io_remove_buffers_prep(req, sqe);
5206 if (ret)
5207 break;
5208 }
5209 ret = io_remove_buffers(req, force_nonblock);
5210 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005211 default:
5212 ret = -EINVAL;
5213 break;
5214 }
5215
Jens Axboedef596e2019-01-09 08:59:42 -07005216 if (ret)
5217 return ret;
5218
5219 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboe11ba8202020-01-15 21:51:17 -07005220 const bool in_async = io_wq_current_is_worker();
5221
Jens Axboe9e645e112019-05-10 16:07:28 -06005222 if (req->result == -EAGAIN)
Jens Axboedef596e2019-01-09 08:59:42 -07005223 return -EAGAIN;
5224
Jens Axboe11ba8202020-01-15 21:51:17 -07005225 /* workqueue context doesn't hold uring_lock, grab it now */
5226 if (in_async)
5227 mutex_lock(&ctx->uring_lock);
5228
Jens Axboedef596e2019-01-09 08:59:42 -07005229 io_iopoll_req_issued(req);
Jens Axboe11ba8202020-01-15 21:51:17 -07005230
5231 if (in_async)
5232 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07005233 }
5234
5235 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005236}
5237
Jens Axboe561fb042019-10-24 07:25:42 -06005238static void io_wq_submit_work(struct io_wq_work **workptr)
Jens Axboe31b51512019-01-18 22:56:34 -07005239{
Jens Axboe561fb042019-10-24 07:25:42 -06005240 struct io_wq_work *work = *workptr;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005241 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboe561fb042019-10-24 07:25:42 -06005242 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005243
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07005244 /* if NO_CANCEL is set, we must still run the work */
5245 if ((work->flags & (IO_WQ_WORK_CANCEL|IO_WQ_WORK_NO_CANCEL)) ==
5246 IO_WQ_WORK_CANCEL) {
Jens Axboe561fb042019-10-24 07:25:42 -06005247 ret = -ECANCELED;
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07005248 }
Jens Axboe31b51512019-01-18 22:56:34 -07005249
Jens Axboe561fb042019-10-24 07:25:42 -06005250 if (!ret) {
Jens Axboe561fb042019-10-24 07:25:42 -06005251 do {
Pavel Begunkov014db002020-03-03 21:33:12 +03005252 ret = io_issue_sqe(req, NULL, false);
Jens Axboe561fb042019-10-24 07:25:42 -06005253 /*
5254 * We can get EAGAIN for polled IO even though we're
5255 * forcing a sync submission from here, since we can't
5256 * wait for request slots on the block side.
5257 */
5258 if (ret != -EAGAIN)
5259 break;
5260 cond_resched();
5261 } while (1);
5262 }
Jens Axboe31b51512019-01-18 22:56:34 -07005263
Jens Axboe561fb042019-10-24 07:25:42 -06005264 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005265 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07005266 io_cqring_add_event(req, ret);
Jens Axboe817869d2019-04-30 14:44:05 -06005267 io_put_req(req);
Jens Axboeedafcce2019-01-09 09:16:05 -07005268 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07005269
Pavel Begunkove9fd9392020-03-04 16:14:12 +03005270 io_steal_work(req, workptr);
Jens Axboe31b51512019-01-18 22:56:34 -07005271}
Jens Axboe2b188cc2019-01-07 10:46:33 -07005272
Jens Axboe15b71ab2019-12-11 11:20:36 -07005273static int io_req_needs_file(struct io_kiocb *req, int fd)
Jens Axboe9e3aa612019-12-11 15:55:43 -07005274{
Jens Axboed3656342019-12-18 09:50:26 -07005275 if (!io_op_defs[req->opcode].needs_file)
Jens Axboe9e3aa612019-12-11 15:55:43 -07005276 return 0;
Jens Axboe0b5faf62020-02-06 21:42:51 -07005277 if ((fd == -1 || fd == AT_FDCWD) && io_op_defs[req->opcode].fd_non_neg)
Jens Axboed3656342019-12-18 09:50:26 -07005278 return 0;
5279 return 1;
Jens Axboe09bb8392019-03-13 12:39:28 -06005280}
5281
Jens Axboe65e19f52019-10-26 07:20:21 -06005282static inline struct file *io_file_from_index(struct io_ring_ctx *ctx,
5283 int index)
Jens Axboe09bb8392019-03-13 12:39:28 -06005284{
Jens Axboe65e19f52019-10-26 07:20:21 -06005285 struct fixed_file_table *table;
5286
Jens Axboe05f3fb32019-12-09 11:22:50 -07005287 table = &ctx->file_data->table[index >> IORING_FILE_TABLE_SHIFT];
5288 return table->files[index & IORING_FILE_TABLE_MASK];;
Jens Axboe65e19f52019-10-26 07:20:21 -06005289}
5290
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005291static int io_file_get(struct io_submit_state *state, struct io_kiocb *req,
5292 int fd, struct file **out_file, bool fixed)
5293{
5294 struct io_ring_ctx *ctx = req->ctx;
5295 struct file *file;
5296
5297 if (fixed) {
5298 if (unlikely(!ctx->file_data ||
5299 (unsigned) fd >= ctx->nr_user_files))
5300 return -EBADF;
5301 fd = array_index_nospec(fd, ctx->nr_user_files);
5302 file = io_file_from_index(ctx, fd);
5303 if (!file)
5304 return -EBADF;
5305 percpu_ref_get(&ctx->file_data->refs);
5306 } else {
5307 trace_io_uring_file_get(ctx, fd);
5308 file = __io_file_get(state, fd);
5309 if (unlikely(!file))
5310 return -EBADF;
5311 }
5312
5313 *out_file = file;
5314 return 0;
5315}
5316
Jens Axboe3529d8c2019-12-19 18:24:38 -07005317static int io_req_set_file(struct io_submit_state *state, struct io_kiocb *req,
5318 const struct io_uring_sqe *sqe)
Jens Axboe09bb8392019-03-13 12:39:28 -06005319{
5320 unsigned flags;
Jens Axboed3656342019-12-18 09:50:26 -07005321 int fd;
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005322 bool fixed;
Jens Axboe09bb8392019-03-13 12:39:28 -06005323
Jens Axboe3529d8c2019-12-19 18:24:38 -07005324 flags = READ_ONCE(sqe->flags);
5325 fd = READ_ONCE(sqe->fd);
Jens Axboe09bb8392019-03-13 12:39:28 -06005326
Jens Axboed3656342019-12-18 09:50:26 -07005327 if (!io_req_needs_file(req, fd))
5328 return 0;
Jens Axboe09bb8392019-03-13 12:39:28 -06005329
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005330 fixed = (flags & IOSQE_FIXED_FILE);
5331 if (unlikely(!fixed && req->needs_fixed_file))
5332 return -EBADF;
Jens Axboe09bb8392019-03-13 12:39:28 -06005333
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005334 return io_file_get(state, req, fd, &req->file, fixed);
Jens Axboe09bb8392019-03-13 12:39:28 -06005335}
5336
Jackie Liua197f662019-11-08 08:09:12 -07005337static int io_grab_files(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005338{
Jens Axboefcb323c2019-10-24 12:39:47 -06005339 int ret = -EBADF;
Jackie Liua197f662019-11-08 08:09:12 -07005340 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06005341
Jens Axboef86cd202020-01-29 13:46:44 -07005342 if (req->work.files)
5343 return 0;
Pavel Begunkovb14cca02020-01-17 04:45:59 +03005344 if (!ctx->ring_file)
Jens Axboeb5dba592019-12-11 14:02:38 -07005345 return -EBADF;
5346
Jens Axboefcb323c2019-10-24 12:39:47 -06005347 rcu_read_lock();
5348 spin_lock_irq(&ctx->inflight_lock);
5349 /*
5350 * We use the f_ops->flush() handler to ensure that we can flush
5351 * out work accessing these files if the fd is closed. Check if
5352 * the fd has changed since we started down this path, and disallow
5353 * this operation if it has.
5354 */
Pavel Begunkovb14cca02020-01-17 04:45:59 +03005355 if (fcheck(ctx->ring_fd) == ctx->ring_file) {
Jens Axboefcb323c2019-10-24 12:39:47 -06005356 list_add(&req->inflight_entry, &ctx->inflight_list);
5357 req->flags |= REQ_F_INFLIGHT;
5358 req->work.files = current->files;
5359 ret = 0;
5360 }
5361 spin_unlock_irq(&ctx->inflight_lock);
5362 rcu_read_unlock();
5363
5364 return ret;
5365}
5366
Jens Axboe2665abf2019-11-05 12:40:47 -07005367static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer)
5368{
Jens Axboead8a48a2019-11-15 08:49:11 -07005369 struct io_timeout_data *data = container_of(timer,
5370 struct io_timeout_data, timer);
5371 struct io_kiocb *req = data->req;
Jens Axboe2665abf2019-11-05 12:40:47 -07005372 struct io_ring_ctx *ctx = req->ctx;
5373 struct io_kiocb *prev = NULL;
5374 unsigned long flags;
Jens Axboe2665abf2019-11-05 12:40:47 -07005375
5376 spin_lock_irqsave(&ctx->completion_lock, flags);
5377
5378 /*
5379 * We don't expect the list to be empty, that will only happen if we
5380 * race with the completion of the linked work.
5381 */
Pavel Begunkov44932332019-12-05 16:16:35 +03005382 if (!list_empty(&req->link_list)) {
5383 prev = list_entry(req->link_list.prev, struct io_kiocb,
5384 link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07005385 if (refcount_inc_not_zero(&prev->refs)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03005386 list_del_init(&req->link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07005387 prev->flags &= ~REQ_F_LINK_TIMEOUT;
5388 } else
Jens Axboe76a46e02019-11-10 23:34:16 -07005389 prev = NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07005390 }
5391
5392 spin_unlock_irqrestore(&ctx->completion_lock, flags);
5393
5394 if (prev) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005395 req_set_fail_links(prev);
Pavel Begunkov014db002020-03-03 21:33:12 +03005396 io_async_find_and_cancel(ctx, req, prev->user_data, -ETIME);
Jens Axboe76a46e02019-11-10 23:34:16 -07005397 io_put_req(prev);
Jens Axboe47f46762019-11-09 17:43:02 -07005398 } else {
5399 io_cqring_add_event(req, -ETIME);
5400 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07005401 }
Jens Axboe2665abf2019-11-05 12:40:47 -07005402 return HRTIMER_NORESTART;
5403}
5404
Jens Axboead8a48a2019-11-15 08:49:11 -07005405static void io_queue_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07005406{
Jens Axboe76a46e02019-11-10 23:34:16 -07005407 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07005408
Jens Axboe76a46e02019-11-10 23:34:16 -07005409 /*
5410 * If the list is now empty, then our linked request finished before
5411 * we got a chance to setup the timer
5412 */
5413 spin_lock_irq(&ctx->completion_lock);
Pavel Begunkov44932332019-12-05 16:16:35 +03005414 if (!list_empty(&req->link_list)) {
Jens Axboe2d283902019-12-04 11:08:05 -07005415 struct io_timeout_data *data = &req->io->timeout;
Jens Axboe94ae5e72019-11-14 19:39:52 -07005416
Jens Axboead8a48a2019-11-15 08:49:11 -07005417 data->timer.function = io_link_timeout_fn;
5418 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts),
5419 data->mode);
Jens Axboe2665abf2019-11-05 12:40:47 -07005420 }
Jens Axboe76a46e02019-11-10 23:34:16 -07005421 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe2665abf2019-11-05 12:40:47 -07005422
Jens Axboe2665abf2019-11-05 12:40:47 -07005423 /* drop submission reference */
Jens Axboe76a46e02019-11-10 23:34:16 -07005424 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07005425}
5426
Jens Axboead8a48a2019-11-15 08:49:11 -07005427static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07005428{
5429 struct io_kiocb *nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005430
Jens Axboe2665abf2019-11-05 12:40:47 -07005431 if (!(req->flags & REQ_F_LINK))
5432 return NULL;
Jens Axboed7718a92020-02-14 22:23:12 -07005433 /* for polled retry, if flag is set, we already went through here */
5434 if (req->flags & REQ_F_POLLED)
5435 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07005436
Pavel Begunkov44932332019-12-05 16:16:35 +03005437 nxt = list_first_entry_or_null(&req->link_list, struct io_kiocb,
5438 link_list);
Jens Axboed625c6e2019-12-17 19:53:05 -07005439 if (!nxt || nxt->opcode != IORING_OP_LINK_TIMEOUT)
Jens Axboe76a46e02019-11-10 23:34:16 -07005440 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07005441
Jens Axboe76a46e02019-11-10 23:34:16 -07005442 req->flags |= REQ_F_LINK_TIMEOUT;
Jens Axboe76a46e02019-11-10 23:34:16 -07005443 return nxt;
Jens Axboe2665abf2019-11-05 12:40:47 -07005444}
5445
Jens Axboe3529d8c2019-12-19 18:24:38 -07005446static void __io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005447{
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005448 struct io_kiocb *linked_timeout;
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005449 struct io_kiocb *nxt;
Jens Axboe193155c2020-02-22 23:22:19 -07005450 const struct cred *old_creds = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005451 int ret;
5452
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005453again:
5454 linked_timeout = io_prep_linked_timeout(req);
5455
Jens Axboe193155c2020-02-22 23:22:19 -07005456 if (req->work.creds && req->work.creds != current_cred()) {
5457 if (old_creds)
5458 revert_creds(old_creds);
5459 if (old_creds == req->work.creds)
5460 old_creds = NULL; /* restored original creds */
5461 else
5462 old_creds = override_creds(req->work.creds);
5463 }
5464
Pavel Begunkov014db002020-03-03 21:33:12 +03005465 ret = io_issue_sqe(req, sqe, true);
Jens Axboe491381ce2019-10-17 09:20:46 -06005466
5467 /*
5468 * We async punt it if the file wasn't marked NOWAIT, or if the file
5469 * doesn't support non-blocking read/write attempts
5470 */
5471 if (ret == -EAGAIN && (!(req->flags & REQ_F_NOWAIT) ||
5472 (req->flags & REQ_F_MUST_PUNT))) {
Jens Axboed7718a92020-02-14 22:23:12 -07005473 if (io_arm_poll_handler(req)) {
5474 if (linked_timeout)
5475 io_queue_linked_timeout(linked_timeout);
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005476 goto exit;
Jens Axboed7718a92020-02-14 22:23:12 -07005477 }
Pavel Begunkov86a761f2020-01-22 23:09:36 +03005478punt:
Jens Axboef86cd202020-01-29 13:46:44 -07005479 if (io_op_defs[req->opcode].file_table) {
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03005480 ret = io_grab_files(req);
5481 if (ret)
5482 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005483 }
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03005484
5485 /*
5486 * Queued up for async execution, worker will release
5487 * submit reference when the iocb is actually submitted.
5488 */
5489 io_queue_async_work(req);
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005490 goto exit;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005491 }
Jens Axboee65ef562019-03-12 10:16:44 -06005492
Jens Axboefcb323c2019-10-24 12:39:47 -06005493err:
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005494 nxt = NULL;
Jens Axboee65ef562019-03-12 10:16:44 -06005495 /* drop submission reference */
Jens Axboe2a44f462020-02-25 13:25:41 -07005496 io_put_req_find_next(req, &nxt);
Jens Axboee65ef562019-03-12 10:16:44 -06005497
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03005498 if (linked_timeout) {
Jens Axboe76a46e02019-11-10 23:34:16 -07005499 if (!ret)
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03005500 io_queue_linked_timeout(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07005501 else
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03005502 io_put_req(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07005503 }
5504
Jens Axboee65ef562019-03-12 10:16:44 -06005505 /* and drop final reference, if we failed */
Jens Axboe9e645e112019-05-10 16:07:28 -06005506 if (ret) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07005507 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005508 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06005509 io_put_req(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06005510 }
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005511 if (nxt) {
5512 req = nxt;
Pavel Begunkov86a761f2020-01-22 23:09:36 +03005513
5514 if (req->flags & REQ_F_FORCE_ASYNC)
5515 goto punt;
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005516 goto again;
5517 }
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005518exit:
Jens Axboe193155c2020-02-22 23:22:19 -07005519 if (old_creds)
5520 revert_creds(old_creds);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005521}
5522
Jens Axboe3529d8c2019-12-19 18:24:38 -07005523static void io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jackie Liu4fe2c962019-09-09 20:50:40 +08005524{
5525 int ret;
5526
Jens Axboe3529d8c2019-12-19 18:24:38 -07005527 ret = io_req_defer(req, sqe);
Jackie Liu4fe2c962019-09-09 20:50:40 +08005528 if (ret) {
5529 if (ret != -EIOCBQUEUED) {
Pavel Begunkov11185912020-01-22 23:09:35 +03005530fail_req:
Jens Axboe78e19bb2019-11-06 15:21:34 -07005531 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005532 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07005533 io_double_put_req(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08005534 }
Pavel Begunkov25508782019-12-30 21:24:47 +03005535 } else if (req->flags & REQ_F_FORCE_ASYNC) {
Pavel Begunkov11185912020-01-22 23:09:35 +03005536 ret = io_req_defer_prep(req, sqe);
5537 if (unlikely(ret < 0))
5538 goto fail_req;
Jens Axboece35a472019-12-17 08:04:44 -07005539 /*
5540 * Never try inline submit of IOSQE_ASYNC is set, go straight
5541 * to async execution.
5542 */
5543 req->work.flags |= IO_WQ_WORK_CONCURRENT;
5544 io_queue_async_work(req);
5545 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07005546 __io_queue_sqe(req, sqe);
Jens Axboece35a472019-12-17 08:04:44 -07005547 }
Jackie Liu4fe2c962019-09-09 20:50:40 +08005548}
5549
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005550static inline void io_queue_link_head(struct io_kiocb *req)
Jackie Liu4fe2c962019-09-09 20:50:40 +08005551{
Jens Axboe94ae5e72019-11-14 19:39:52 -07005552 if (unlikely(req->flags & REQ_F_FAIL_LINK)) {
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005553 io_cqring_add_event(req, -ECANCELED);
5554 io_double_put_req(req);
5555 } else
Jens Axboe3529d8c2019-12-19 18:24:38 -07005556 io_queue_sqe(req, NULL);
Jackie Liu4fe2c962019-09-09 20:50:40 +08005557}
5558
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005559#define SQE_VALID_FLAGS (IOSQE_FIXED_FILE|IOSQE_IO_DRAIN|IOSQE_IO_LINK| \
Jens Axboebcda7ba2020-02-23 16:42:51 -07005560 IOSQE_IO_HARDLINK | IOSQE_ASYNC | \
5561 IOSQE_BUFFER_SELECT)
Jens Axboe9e645e112019-05-10 16:07:28 -06005562
Jens Axboe3529d8c2019-12-19 18:24:38 -07005563static bool io_submit_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
5564 struct io_submit_state *state, struct io_kiocb **link)
Jens Axboe9e645e112019-05-10 16:07:28 -06005565{
Jackie Liua197f662019-11-08 08:09:12 -07005566 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005567 unsigned int sqe_flags;
Jens Axboe75c6a032020-01-28 10:15:23 -07005568 int ret, id;
Jens Axboe9e645e112019-05-10 16:07:28 -06005569
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005570 sqe_flags = READ_ONCE(sqe->flags);
Jens Axboe9e645e112019-05-10 16:07:28 -06005571
5572 /* enforce forwards compatibility on users */
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005573 if (unlikely(sqe_flags & ~SQE_VALID_FLAGS)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06005574 ret = -EINVAL;
Pavel Begunkov196be952019-11-07 01:41:06 +03005575 goto err_req;
Jens Axboe9e645e112019-05-10 16:07:28 -06005576 }
5577
Jens Axboebcda7ba2020-02-23 16:42:51 -07005578 if ((sqe_flags & IOSQE_BUFFER_SELECT) &&
5579 !io_op_defs[req->opcode].buffer_select) {
5580 ret = -EOPNOTSUPP;
5581 goto err_req;
5582 }
5583
Jens Axboe75c6a032020-01-28 10:15:23 -07005584 id = READ_ONCE(sqe->personality);
5585 if (id) {
Jens Axboe193155c2020-02-22 23:22:19 -07005586 req->work.creds = idr_find(&ctx->personality_idr, id);
5587 if (unlikely(!req->work.creds)) {
Jens Axboe75c6a032020-01-28 10:15:23 -07005588 ret = -EINVAL;
5589 goto err_req;
5590 }
Jens Axboe193155c2020-02-22 23:22:19 -07005591 get_cred(req->work.creds);
Jens Axboe75c6a032020-01-28 10:15:23 -07005592 }
5593
Pavel Begunkov6b47ee62020-01-18 20:22:41 +03005594 /* same numerical values with corresponding REQ_F_*, safe to copy */
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005595 req->flags |= sqe_flags & (IOSQE_IO_DRAIN | IOSQE_IO_HARDLINK |
Jens Axboebcda7ba2020-02-23 16:42:51 -07005596 IOSQE_ASYNC | IOSQE_FIXED_FILE |
5597 IOSQE_BUFFER_SELECT);
Jens Axboe9e645e112019-05-10 16:07:28 -06005598
Jens Axboe3529d8c2019-12-19 18:24:38 -07005599 ret = io_req_set_file(state, req, sqe);
Jens Axboe9e645e112019-05-10 16:07:28 -06005600 if (unlikely(ret)) {
5601err_req:
Jens Axboe78e19bb2019-11-06 15:21:34 -07005602 io_cqring_add_event(req, ret);
5603 io_double_put_req(req);
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03005604 return false;
Jens Axboe9e645e112019-05-10 16:07:28 -06005605 }
5606
Jens Axboe9e645e112019-05-10 16:07:28 -06005607 /*
5608 * If we already have a head request, queue this one for async
5609 * submittal once the head completes. If we don't have a head but
5610 * IOSQE_IO_LINK is set in the sqe, start a new head. This one will be
5611 * submitted sync once the chain is complete. If none of those
5612 * conditions are true (normal request), then just queue it.
5613 */
5614 if (*link) {
Pavel Begunkov9d763772019-12-17 02:22:07 +03005615 struct io_kiocb *head = *link;
Jens Axboe9e645e112019-05-10 16:07:28 -06005616
Pavel Begunkov8cdf2192020-01-25 00:40:24 +03005617 /*
5618 * Taking sequential execution of a link, draining both sides
5619 * of the link also fullfils IOSQE_IO_DRAIN semantics for all
5620 * requests in the link. So, it drains the head and the
5621 * next after the link request. The last one is done via
5622 * drain_next flag to persist the effect across calls.
5623 */
Pavel Begunkov711be032020-01-17 03:57:59 +03005624 if (sqe_flags & IOSQE_IO_DRAIN) {
5625 head->flags |= REQ_F_IO_DRAIN;
5626 ctx->drain_next = 1;
5627 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07005628 if (io_alloc_async_ctx(req)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06005629 ret = -EAGAIN;
5630 goto err_req;
5631 }
5632
Jens Axboe3529d8c2019-12-19 18:24:38 -07005633 ret = io_req_defer_prep(req, sqe);
Jens Axboe2d283902019-12-04 11:08:05 -07005634 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005635 /* fail even hard links since we don't submit */
Pavel Begunkov9d763772019-12-17 02:22:07 +03005636 head->flags |= REQ_F_FAIL_LINK;
Jens Axboef67676d2019-12-02 11:03:47 -07005637 goto err_req;
Jens Axboe2d283902019-12-04 11:08:05 -07005638 }
Pavel Begunkov9d763772019-12-17 02:22:07 +03005639 trace_io_uring_link(ctx, req, head);
5640 list_add_tail(&req->link_list, &head->link_list);
Jens Axboe9e645e112019-05-10 16:07:28 -06005641
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005642 /* last request of a link, enqueue the link */
5643 if (!(sqe_flags & (IOSQE_IO_LINK|IOSQE_IO_HARDLINK))) {
5644 io_queue_link_head(head);
5645 *link = NULL;
5646 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005647 } else {
Pavel Begunkov711be032020-01-17 03:57:59 +03005648 if (unlikely(ctx->drain_next)) {
5649 req->flags |= REQ_F_IO_DRAIN;
5650 req->ctx->drain_next = 0;
5651 }
5652 if (sqe_flags & (IOSQE_IO_LINK|IOSQE_IO_HARDLINK)) {
5653 req->flags |= REQ_F_LINK;
Pavel Begunkov711be032020-01-17 03:57:59 +03005654 INIT_LIST_HEAD(&req->link_list);
5655 ret = io_req_defer_prep(req, sqe);
5656 if (ret)
5657 req->flags |= REQ_F_FAIL_LINK;
5658 *link = req;
5659 } else {
5660 io_queue_sqe(req, sqe);
5661 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005662 }
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03005663
5664 return true;
Jens Axboe9e645e112019-05-10 16:07:28 -06005665}
5666
Jens Axboe9a56a232019-01-09 09:06:50 -07005667/*
5668 * Batched submission is done, ensure local IO is flushed out.
5669 */
5670static void io_submit_state_end(struct io_submit_state *state)
5671{
5672 blk_finish_plug(&state->plug);
Jens Axboe3d6770f2019-04-13 11:50:54 -06005673 io_file_put(state);
Jens Axboe2579f912019-01-09 09:10:43 -07005674 if (state->free_reqs)
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03005675 kmem_cache_free_bulk(req_cachep, state->free_reqs, state->reqs);
Jens Axboe9a56a232019-01-09 09:06:50 -07005676}
5677
5678/*
5679 * Start submission side cache.
5680 */
5681static void io_submit_state_start(struct io_submit_state *state,
Jackie Liu22efde52019-12-02 17:14:52 +08005682 unsigned int max_ios)
Jens Axboe9a56a232019-01-09 09:06:50 -07005683{
5684 blk_start_plug(&state->plug);
Jens Axboe2579f912019-01-09 09:10:43 -07005685 state->free_reqs = 0;
Jens Axboe9a56a232019-01-09 09:06:50 -07005686 state->file = NULL;
5687 state->ios_left = max_ios;
5688}
5689
Jens Axboe2b188cc2019-01-07 10:46:33 -07005690static void io_commit_sqring(struct io_ring_ctx *ctx)
5691{
Hristo Venev75b28af2019-08-26 17:23:46 +00005692 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005693
Pavel Begunkovcaf582c2019-12-30 21:24:46 +03005694 /*
5695 * Ensure any loads from the SQEs are done at this point,
5696 * since once we write the new head, the application could
5697 * write new data to them.
5698 */
5699 smp_store_release(&rings->sq.head, ctx->cached_sq_head);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005700}
5701
5702/*
Jens Axboe3529d8c2019-12-19 18:24:38 -07005703 * Fetch an sqe, if one is available. Note that sqe_ptr will point to memory
Jens Axboe2b188cc2019-01-07 10:46:33 -07005704 * that is mapped by userspace. This means that care needs to be taken to
5705 * ensure that reads are stable, as we cannot rely on userspace always
5706 * being a good citizen. If members of the sqe are validated and then later
5707 * used, it's important that those reads are done through READ_ONCE() to
5708 * prevent a re-load down the line.
5709 */
Jens Axboe3529d8c2019-12-19 18:24:38 -07005710static bool io_get_sqring(struct io_ring_ctx *ctx, struct io_kiocb *req,
5711 const struct io_uring_sqe **sqe_ptr)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005712{
Hristo Venev75b28af2019-08-26 17:23:46 +00005713 u32 *sq_array = ctx->sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005714 unsigned head;
5715
5716 /*
5717 * The cached sq head (or cq tail) serves two purposes:
5718 *
5719 * 1) allows us to batch the cost of updating the user visible
5720 * head updates.
5721 * 2) allows the kernel side to track the head on its own, even
5722 * though the application is the one updating it.
5723 */
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005724 head = READ_ONCE(sq_array[ctx->cached_sq_head & ctx->sq_mask]);
Pavel Begunkov9835d6f2019-11-21 21:24:56 +03005725 if (likely(head < ctx->sq_entries)) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03005726 /*
5727 * All io need record the previous position, if LINK vs DARIN,
5728 * it can be used to mark the position of the first IO in the
5729 * link list.
5730 */
5731 req->sequence = ctx->cached_sq_head;
Jens Axboe3529d8c2019-12-19 18:24:38 -07005732 *sqe_ptr = &ctx->sq_sqes[head];
5733 req->opcode = READ_ONCE((*sqe_ptr)->opcode);
5734 req->user_data = READ_ONCE((*sqe_ptr)->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005735 ctx->cached_sq_head++;
5736 return true;
5737 }
5738
5739 /* drop invalid entries */
5740 ctx->cached_sq_head++;
Jens Axboe498ccd92019-10-25 10:04:25 -06005741 ctx->cached_sq_dropped++;
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005742 WRITE_ONCE(ctx->rings->sq_dropped, ctx->cached_sq_dropped);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005743 return false;
5744}
5745
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005746static int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr,
Pavel Begunkovae9428c2019-11-06 00:22:14 +03005747 struct file *ring_file, int ring_fd,
5748 struct mm_struct **mm, bool async)
Jens Axboe6c271ce2019-01-10 11:22:30 -07005749{
5750 struct io_submit_state state, *statep = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06005751 struct io_kiocb *link = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06005752 int i, submitted = 0;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005753 bool mm_fault = false;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005754
Jens Axboec4a2ed72019-11-21 21:01:26 -07005755 /* if we have a backlog and couldn't flush it all, return BUSY */
Jens Axboead3eb2c2019-12-18 17:12:20 -07005756 if (test_bit(0, &ctx->sq_check_overflow)) {
5757 if (!list_empty(&ctx->cq_overflow_list) &&
5758 !io_cqring_overflow_flush(ctx, false))
5759 return -EBUSY;
5760 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07005761
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005762 /* make sure SQ entry isn't read before tail */
5763 nr = min3(nr, ctx->sq_entries, io_sqring_entries(ctx));
Pavel Begunkov9ef4f122019-12-30 21:24:44 +03005764
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03005765 if (!percpu_ref_tryget_many(&ctx->refs, nr))
5766 return -EAGAIN;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005767
5768 if (nr > IO_PLUG_THRESHOLD) {
Jackie Liu22efde52019-12-02 17:14:52 +08005769 io_submit_state_start(&state, nr);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005770 statep = &state;
5771 }
5772
Pavel Begunkovb14cca02020-01-17 04:45:59 +03005773 ctx->ring_fd = ring_fd;
5774 ctx->ring_file = ring_file;
5775
Jens Axboe6c271ce2019-01-10 11:22:30 -07005776 for (i = 0; i < nr; i++) {
Jens Axboe3529d8c2019-12-19 18:24:38 -07005777 const struct io_uring_sqe *sqe;
Pavel Begunkov196be952019-11-07 01:41:06 +03005778 struct io_kiocb *req;
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005779 int err;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005780
Pavel Begunkov196be952019-11-07 01:41:06 +03005781 req = io_get_req(ctx, statep);
5782 if (unlikely(!req)) {
5783 if (!submitted)
5784 submitted = -EAGAIN;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005785 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06005786 }
Jens Axboe3529d8c2019-12-19 18:24:38 -07005787 if (!io_get_sqring(ctx, req, &sqe)) {
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03005788 __io_req_do_free(req);
Pavel Begunkov196be952019-11-07 01:41:06 +03005789 break;
5790 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005791
Jens Axboed3656342019-12-18 09:50:26 -07005792 /* will complete beyond this point, count as submitted */
5793 submitted++;
5794
5795 if (unlikely(req->opcode >= IORING_OP_LAST)) {
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005796 err = -EINVAL;
5797fail_req:
5798 io_cqring_add_event(req, err);
Jens Axboed3656342019-12-18 09:50:26 -07005799 io_double_put_req(req);
5800 break;
5801 }
5802
5803 if (io_op_defs[req->opcode].needs_mm && !*mm) {
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005804 mm_fault = mm_fault || !mmget_not_zero(ctx->sqo_mm);
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005805 if (unlikely(mm_fault)) {
5806 err = -EFAULT;
5807 goto fail_req;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005808 }
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005809 use_mm(ctx->sqo_mm);
5810 *mm = ctx->sqo_mm;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005811 }
5812
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03005813 req->needs_fixed_file = async;
Jens Axboe354420f2020-01-08 18:55:15 -07005814 trace_io_uring_submit_sqe(ctx, req->opcode, req->user_data,
5815 true, async);
Jens Axboe3529d8c2019-12-19 18:24:38 -07005816 if (!io_submit_sqe(req, sqe, statep, &link))
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03005817 break;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005818 }
5819
Pavel Begunkov9466f432020-01-25 22:34:01 +03005820 if (unlikely(submitted != nr)) {
5821 int ref_used = (submitted == -EAGAIN) ? 0 : submitted;
5822
5823 percpu_ref_put_many(&ctx->refs, nr - ref_used);
5824 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005825 if (link)
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005826 io_queue_link_head(link);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005827 if (statep)
5828 io_submit_state_end(&state);
5829
Pavel Begunkovae9428c2019-11-06 00:22:14 +03005830 /* Commit SQ ring head once we've consumed and submitted all SQEs */
5831 io_commit_sqring(ctx);
5832
Jens Axboe6c271ce2019-01-10 11:22:30 -07005833 return submitted;
5834}
5835
5836static int io_sq_thread(void *data)
5837{
Jens Axboe6c271ce2019-01-10 11:22:30 -07005838 struct io_ring_ctx *ctx = data;
5839 struct mm_struct *cur_mm = NULL;
Jens Axboe181e4482019-11-25 08:52:30 -07005840 const struct cred *old_cred;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005841 mm_segment_t old_fs;
5842 DEFINE_WAIT(wait);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005843 unsigned long timeout;
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005844 int ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005845
Jens Axboe206aefd2019-11-07 18:27:42 -07005846 complete(&ctx->completions[1]);
Jackie Liua4c0b3d2019-07-08 13:41:12 +08005847
Jens Axboe6c271ce2019-01-10 11:22:30 -07005848 old_fs = get_fs();
5849 set_fs(USER_DS);
Jens Axboe181e4482019-11-25 08:52:30 -07005850 old_cred = override_creds(ctx->creds);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005851
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005852 timeout = jiffies + ctx->sq_thread_idle;
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02005853 while (!kthread_should_park()) {
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005854 unsigned int to_submit;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005855
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005856 if (!list_empty(&ctx->poll_list)) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07005857 unsigned nr_events = 0;
5858
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005859 mutex_lock(&ctx->uring_lock);
5860 if (!list_empty(&ctx->poll_list))
5861 io_iopoll_getevents(ctx, &nr_events, 0);
5862 else
Jens Axboe6c271ce2019-01-10 11:22:30 -07005863 timeout = jiffies + ctx->sq_thread_idle;
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005864 mutex_unlock(&ctx->uring_lock);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005865 }
5866
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005867 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07005868
5869 /*
5870 * If submit got -EBUSY, flag us as needing the application
5871 * to enter the kernel to reap and flush events.
5872 */
5873 if (!to_submit || ret == -EBUSY) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07005874 /*
Stefano Garzarella7143b5a2020-02-21 16:42:16 +01005875 * Drop cur_mm before scheduling, we can't hold it for
5876 * long periods (or over schedule()). Do this before
5877 * adding ourselves to the waitqueue, as the unuse/drop
5878 * may sleep.
5879 */
5880 if (cur_mm) {
5881 unuse_mm(cur_mm);
5882 mmput(cur_mm);
5883 cur_mm = NULL;
5884 }
5885
5886 /*
Jens Axboe6c271ce2019-01-10 11:22:30 -07005887 * We're polling. If we're within the defined idle
5888 * period, then let us spin without work before going
Jens Axboec1edbf52019-11-10 16:56:04 -07005889 * to sleep. The exception is if we got EBUSY doing
5890 * more IO, we should wait for the application to
5891 * reap events and wake us up.
Jens Axboe6c271ce2019-01-10 11:22:30 -07005892 */
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005893 if (!list_empty(&ctx->poll_list) ||
Jens Axboedf069d82020-02-04 16:48:34 -07005894 (!time_after(jiffies, timeout) && ret != -EBUSY &&
5895 !percpu_ref_is_dying(&ctx->refs))) {
Jens Axboeb41e9852020-02-17 09:52:41 -07005896 if (current->task_works)
5897 task_work_run();
Jens Axboe9831a902019-09-19 09:48:55 -06005898 cond_resched();
Jens Axboe6c271ce2019-01-10 11:22:30 -07005899 continue;
5900 }
5901
Jens Axboe6c271ce2019-01-10 11:22:30 -07005902 prepare_to_wait(&ctx->sqo_wait, &wait,
5903 TASK_INTERRUPTIBLE);
5904
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005905 /*
5906 * While doing polled IO, before going to sleep, we need
5907 * to check if there are new reqs added to poll_list, it
5908 * is because reqs may have been punted to io worker and
5909 * will be added to poll_list later, hence check the
5910 * poll_list again.
5911 */
5912 if ((ctx->flags & IORING_SETUP_IOPOLL) &&
5913 !list_empty_careful(&ctx->poll_list)) {
5914 finish_wait(&ctx->sqo_wait, &wait);
5915 continue;
5916 }
5917
Jens Axboe6c271ce2019-01-10 11:22:30 -07005918 /* Tell userspace we may need a wakeup call */
Hristo Venev75b28af2019-08-26 17:23:46 +00005919 ctx->rings->sq_flags |= IORING_SQ_NEED_WAKEUP;
Stefan Bühler0d7bae62019-04-19 11:57:45 +02005920 /* make sure to read SQ tail after writing flags */
5921 smp_mb();
Jens Axboe6c271ce2019-01-10 11:22:30 -07005922
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005923 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07005924 if (!to_submit || ret == -EBUSY) {
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02005925 if (kthread_should_park()) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07005926 finish_wait(&ctx->sqo_wait, &wait);
5927 break;
5928 }
Jens Axboeb41e9852020-02-17 09:52:41 -07005929 if (current->task_works) {
5930 task_work_run();
5931 continue;
5932 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07005933 if (signal_pending(current))
5934 flush_signals(current);
5935 schedule();
5936 finish_wait(&ctx->sqo_wait, &wait);
5937
Hristo Venev75b28af2019-08-26 17:23:46 +00005938 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005939 continue;
5940 }
5941 finish_wait(&ctx->sqo_wait, &wait);
5942
Hristo Venev75b28af2019-08-26 17:23:46 +00005943 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005944 }
5945
Jens Axboe8a4955f2019-12-09 14:52:35 -07005946 mutex_lock(&ctx->uring_lock);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005947 ret = io_submit_sqes(ctx, to_submit, NULL, -1, &cur_mm, true);
Jens Axboe8a4955f2019-12-09 14:52:35 -07005948 mutex_unlock(&ctx->uring_lock);
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005949 timeout = jiffies + ctx->sq_thread_idle;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005950 }
5951
Jens Axboeb41e9852020-02-17 09:52:41 -07005952 if (current->task_works)
5953 task_work_run();
5954
Jens Axboe6c271ce2019-01-10 11:22:30 -07005955 set_fs(old_fs);
5956 if (cur_mm) {
5957 unuse_mm(cur_mm);
5958 mmput(cur_mm);
5959 }
Jens Axboe181e4482019-11-25 08:52:30 -07005960 revert_creds(old_cred);
Jens Axboe06058632019-04-13 09:26:03 -06005961
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02005962 kthread_parkme();
Jens Axboe06058632019-04-13 09:26:03 -06005963
Jens Axboe6c271ce2019-01-10 11:22:30 -07005964 return 0;
5965}
5966
Jens Axboebda52162019-09-24 13:47:15 -06005967struct io_wait_queue {
5968 struct wait_queue_entry wq;
5969 struct io_ring_ctx *ctx;
5970 unsigned to_wait;
5971 unsigned nr_timeouts;
5972};
5973
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005974static inline bool io_should_wake(struct io_wait_queue *iowq, bool noflush)
Jens Axboebda52162019-09-24 13:47:15 -06005975{
5976 struct io_ring_ctx *ctx = iowq->ctx;
5977
5978 /*
Brian Gianforcarod195a662019-12-13 03:09:50 -08005979 * Wake up if we have enough events, or if a timeout occurred since we
Jens Axboebda52162019-09-24 13:47:15 -06005980 * started waiting. For timeouts, we always want to return to userspace,
5981 * regardless of event count.
5982 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005983 return io_cqring_events(ctx, noflush) >= iowq->to_wait ||
Jens Axboebda52162019-09-24 13:47:15 -06005984 atomic_read(&ctx->cq_timeouts) != iowq->nr_timeouts;
5985}
5986
5987static int io_wake_function(struct wait_queue_entry *curr, unsigned int mode,
5988 int wake_flags, void *key)
5989{
5990 struct io_wait_queue *iowq = container_of(curr, struct io_wait_queue,
5991 wq);
5992
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005993 /* use noflush == true, as we can't safely rely on locking context */
5994 if (!io_should_wake(iowq, true))
Jens Axboebda52162019-09-24 13:47:15 -06005995 return -1;
5996
5997 return autoremove_wake_function(curr, mode, wake_flags, key);
5998}
5999
Jens Axboe2b188cc2019-01-07 10:46:33 -07006000/*
6001 * Wait until events become available, if we don't already have some. The
6002 * application must reap them itself, as they reside on the shared cq ring.
6003 */
6004static int io_cqring_wait(struct io_ring_ctx *ctx, int min_events,
6005 const sigset_t __user *sig, size_t sigsz)
6006{
Jens Axboebda52162019-09-24 13:47:15 -06006007 struct io_wait_queue iowq = {
6008 .wq = {
6009 .private = current,
6010 .func = io_wake_function,
6011 .entry = LIST_HEAD_INIT(iowq.wq.entry),
6012 },
6013 .ctx = ctx,
6014 .to_wait = min_events,
6015 };
Hristo Venev75b28af2019-08-26 17:23:46 +00006016 struct io_rings *rings = ctx->rings;
Jackie Liue9ffa5c2019-10-29 11:16:42 +08006017 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006018
Jens Axboeb41e9852020-02-17 09:52:41 -07006019 do {
6020 if (io_cqring_events(ctx, false) >= min_events)
6021 return 0;
6022 if (!current->task_works)
6023 break;
6024 task_work_run();
6025 } while (1);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006026
6027 if (sig) {
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006028#ifdef CONFIG_COMPAT
6029 if (in_compat_syscall())
6030 ret = set_compat_user_sigmask((const compat_sigset_t __user *)sig,
Oleg Nesterovb7724342019-07-16 16:29:53 -07006031 sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006032 else
6033#endif
Oleg Nesterovb7724342019-07-16 16:29:53 -07006034 ret = set_user_sigmask(sig, sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006035
Jens Axboe2b188cc2019-01-07 10:46:33 -07006036 if (ret)
6037 return ret;
6038 }
6039
Jens Axboebda52162019-09-24 13:47:15 -06006040 iowq.nr_timeouts = atomic_read(&ctx->cq_timeouts);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02006041 trace_io_uring_cqring_wait(ctx, min_events);
Jens Axboebda52162019-09-24 13:47:15 -06006042 do {
6043 prepare_to_wait_exclusive(&ctx->wait, &iowq.wq,
6044 TASK_INTERRUPTIBLE);
Jens Axboeb41e9852020-02-17 09:52:41 -07006045 if (current->task_works)
6046 task_work_run();
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006047 if (io_should_wake(&iowq, false))
Jens Axboebda52162019-09-24 13:47:15 -06006048 break;
6049 schedule();
6050 if (signal_pending(current)) {
Jackie Liue9ffa5c2019-10-29 11:16:42 +08006051 ret = -EINTR;
Jens Axboebda52162019-09-24 13:47:15 -06006052 break;
6053 }
6054 } while (1);
6055 finish_wait(&ctx->wait, &iowq.wq);
6056
Jackie Liue9ffa5c2019-10-29 11:16:42 +08006057 restore_saved_sigmask_unless(ret == -EINTR);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006058
Hristo Venev75b28af2019-08-26 17:23:46 +00006059 return READ_ONCE(rings->cq.head) == READ_ONCE(rings->cq.tail) ? ret : 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006060}
6061
Jens Axboe6b063142019-01-10 22:13:58 -07006062static void __io_sqe_files_unregister(struct io_ring_ctx *ctx)
6063{
6064#if defined(CONFIG_UNIX)
6065 if (ctx->ring_sock) {
6066 struct sock *sock = ctx->ring_sock->sk;
6067 struct sk_buff *skb;
6068
6069 while ((skb = skb_dequeue(&sock->sk_receive_queue)) != NULL)
6070 kfree_skb(skb);
6071 }
6072#else
6073 int i;
6074
Jens Axboe65e19f52019-10-26 07:20:21 -06006075 for (i = 0; i < ctx->nr_user_files; i++) {
6076 struct file *file;
6077
6078 file = io_file_from_index(ctx, i);
6079 if (file)
6080 fput(file);
6081 }
Jens Axboe6b063142019-01-10 22:13:58 -07006082#endif
6083}
6084
Jens Axboe05f3fb32019-12-09 11:22:50 -07006085static void io_file_ref_kill(struct percpu_ref *ref)
6086{
6087 struct fixed_file_data *data;
6088
6089 data = container_of(ref, struct fixed_file_data, refs);
6090 complete(&data->done);
6091}
6092
Jens Axboe6b063142019-01-10 22:13:58 -07006093static int io_sqe_files_unregister(struct io_ring_ctx *ctx)
6094{
Jens Axboe05f3fb32019-12-09 11:22:50 -07006095 struct fixed_file_data *data = ctx->file_data;
Jens Axboe65e19f52019-10-26 07:20:21 -06006096 unsigned nr_tables, i;
6097
Jens Axboe05f3fb32019-12-09 11:22:50 -07006098 if (!data)
Jens Axboe6b063142019-01-10 22:13:58 -07006099 return -ENXIO;
6100
Jens Axboe05f3fb32019-12-09 11:22:50 -07006101 percpu_ref_kill_and_confirm(&data->refs, io_file_ref_kill);
Jens Axboee46a7952020-01-17 11:15:34 -07006102 flush_work(&data->ref_work);
Jens Axboe2faf8522020-02-04 19:54:55 -07006103 wait_for_completion(&data->done);
6104 io_ring_file_ref_flush(data);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006105 percpu_ref_exit(&data->refs);
6106
Jens Axboe6b063142019-01-10 22:13:58 -07006107 __io_sqe_files_unregister(ctx);
Jens Axboe65e19f52019-10-26 07:20:21 -06006108 nr_tables = DIV_ROUND_UP(ctx->nr_user_files, IORING_MAX_FILES_TABLE);
6109 for (i = 0; i < nr_tables; i++)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006110 kfree(data->table[i].files);
6111 kfree(data->table);
6112 kfree(data);
6113 ctx->file_data = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07006114 ctx->nr_user_files = 0;
6115 return 0;
6116}
6117
Jens Axboe6c271ce2019-01-10 11:22:30 -07006118static void io_sq_thread_stop(struct io_ring_ctx *ctx)
6119{
6120 if (ctx->sqo_thread) {
Jens Axboe206aefd2019-11-07 18:27:42 -07006121 wait_for_completion(&ctx->completions[1]);
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02006122 /*
6123 * The park is a bit of a work-around, without it we get
6124 * warning spews on shutdown with SQPOLL set and affinity
6125 * set to a single CPU.
6126 */
Jens Axboe06058632019-04-13 09:26:03 -06006127 kthread_park(ctx->sqo_thread);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006128 kthread_stop(ctx->sqo_thread);
6129 ctx->sqo_thread = NULL;
6130 }
6131}
6132
Jens Axboe6b063142019-01-10 22:13:58 -07006133static void io_finish_async(struct io_ring_ctx *ctx)
6134{
Jens Axboe6c271ce2019-01-10 11:22:30 -07006135 io_sq_thread_stop(ctx);
6136
Jens Axboe561fb042019-10-24 07:25:42 -06006137 if (ctx->io_wq) {
6138 io_wq_destroy(ctx->io_wq);
6139 ctx->io_wq = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07006140 }
6141}
6142
6143#if defined(CONFIG_UNIX)
Jens Axboe6b063142019-01-10 22:13:58 -07006144/*
6145 * Ensure the UNIX gc is aware of our file set, so we are certain that
6146 * the io_uring can be safely unregistered on process exit, even if we have
6147 * loops in the file referencing.
6148 */
6149static int __io_sqe_files_scm(struct io_ring_ctx *ctx, int nr, int offset)
6150{
6151 struct sock *sk = ctx->ring_sock->sk;
6152 struct scm_fp_list *fpl;
6153 struct sk_buff *skb;
Jens Axboe08a45172019-10-03 08:11:03 -06006154 int i, nr_files;
Jens Axboe6b063142019-01-10 22:13:58 -07006155
6156 if (!capable(CAP_SYS_RESOURCE) && !capable(CAP_SYS_ADMIN)) {
6157 unsigned long inflight = ctx->user->unix_inflight + nr;
6158
6159 if (inflight > task_rlimit(current, RLIMIT_NOFILE))
6160 return -EMFILE;
6161 }
6162
6163 fpl = kzalloc(sizeof(*fpl), GFP_KERNEL);
6164 if (!fpl)
6165 return -ENOMEM;
6166
6167 skb = alloc_skb(0, GFP_KERNEL);
6168 if (!skb) {
6169 kfree(fpl);
6170 return -ENOMEM;
6171 }
6172
6173 skb->sk = sk;
Jens Axboe6b063142019-01-10 22:13:58 -07006174
Jens Axboe08a45172019-10-03 08:11:03 -06006175 nr_files = 0;
Jens Axboe6b063142019-01-10 22:13:58 -07006176 fpl->user = get_uid(ctx->user);
6177 for (i = 0; i < nr; i++) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006178 struct file *file = io_file_from_index(ctx, i + offset);
6179
6180 if (!file)
Jens Axboe08a45172019-10-03 08:11:03 -06006181 continue;
Jens Axboe65e19f52019-10-26 07:20:21 -06006182 fpl->fp[nr_files] = get_file(file);
Jens Axboe08a45172019-10-03 08:11:03 -06006183 unix_inflight(fpl->user, fpl->fp[nr_files]);
6184 nr_files++;
Jens Axboe6b063142019-01-10 22:13:58 -07006185 }
6186
Jens Axboe08a45172019-10-03 08:11:03 -06006187 if (nr_files) {
6188 fpl->max = SCM_MAX_FD;
6189 fpl->count = nr_files;
6190 UNIXCB(skb).fp = fpl;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006191 skb->destructor = unix_destruct_scm;
Jens Axboe08a45172019-10-03 08:11:03 -06006192 refcount_add(skb->truesize, &sk->sk_wmem_alloc);
6193 skb_queue_head(&sk->sk_receive_queue, skb);
Jens Axboe6b063142019-01-10 22:13:58 -07006194
Jens Axboe08a45172019-10-03 08:11:03 -06006195 for (i = 0; i < nr_files; i++)
6196 fput(fpl->fp[i]);
6197 } else {
6198 kfree_skb(skb);
6199 kfree(fpl);
6200 }
Jens Axboe6b063142019-01-10 22:13:58 -07006201
6202 return 0;
6203}
6204
6205/*
6206 * If UNIX sockets are enabled, fd passing can cause a reference cycle which
6207 * causes regular reference counting to break down. We rely on the UNIX
6208 * garbage collection to take care of this problem for us.
6209 */
6210static int io_sqe_files_scm(struct io_ring_ctx *ctx)
6211{
6212 unsigned left, total;
6213 int ret = 0;
6214
6215 total = 0;
6216 left = ctx->nr_user_files;
6217 while (left) {
6218 unsigned this_files = min_t(unsigned, left, SCM_MAX_FD);
Jens Axboe6b063142019-01-10 22:13:58 -07006219
6220 ret = __io_sqe_files_scm(ctx, this_files, total);
6221 if (ret)
6222 break;
6223 left -= this_files;
6224 total += this_files;
6225 }
6226
6227 if (!ret)
6228 return 0;
6229
6230 while (total < ctx->nr_user_files) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006231 struct file *file = io_file_from_index(ctx, total);
6232
6233 if (file)
6234 fput(file);
Jens Axboe6b063142019-01-10 22:13:58 -07006235 total++;
6236 }
6237
6238 return ret;
6239}
6240#else
6241static int io_sqe_files_scm(struct io_ring_ctx *ctx)
6242{
6243 return 0;
6244}
6245#endif
6246
Jens Axboe65e19f52019-10-26 07:20:21 -06006247static int io_sqe_alloc_file_tables(struct io_ring_ctx *ctx, unsigned nr_tables,
6248 unsigned nr_files)
6249{
6250 int i;
6251
6252 for (i = 0; i < nr_tables; i++) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006253 struct fixed_file_table *table = &ctx->file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06006254 unsigned this_files;
6255
6256 this_files = min(nr_files, IORING_MAX_FILES_TABLE);
6257 table->files = kcalloc(this_files, sizeof(struct file *),
6258 GFP_KERNEL);
6259 if (!table->files)
6260 break;
6261 nr_files -= this_files;
6262 }
6263
6264 if (i == nr_tables)
6265 return 0;
6266
6267 for (i = 0; i < nr_tables; i++) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006268 struct fixed_file_table *table = &ctx->file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06006269 kfree(table->files);
6270 }
6271 return 1;
6272}
6273
Jens Axboe05f3fb32019-12-09 11:22:50 -07006274static void io_ring_file_put(struct io_ring_ctx *ctx, struct file *file)
Jens Axboec3a31e62019-10-03 13:59:56 -06006275{
6276#if defined(CONFIG_UNIX)
Jens Axboec3a31e62019-10-03 13:59:56 -06006277 struct sock *sock = ctx->ring_sock->sk;
6278 struct sk_buff_head list, *head = &sock->sk_receive_queue;
6279 struct sk_buff *skb;
6280 int i;
6281
6282 __skb_queue_head_init(&list);
6283
6284 /*
6285 * Find the skb that holds this file in its SCM_RIGHTS. When found,
6286 * remove this entry and rearrange the file array.
6287 */
6288 skb = skb_dequeue(head);
6289 while (skb) {
6290 struct scm_fp_list *fp;
6291
6292 fp = UNIXCB(skb).fp;
6293 for (i = 0; i < fp->count; i++) {
6294 int left;
6295
6296 if (fp->fp[i] != file)
6297 continue;
6298
6299 unix_notinflight(fp->user, fp->fp[i]);
6300 left = fp->count - 1 - i;
6301 if (left) {
6302 memmove(&fp->fp[i], &fp->fp[i + 1],
6303 left * sizeof(struct file *));
6304 }
6305 fp->count--;
6306 if (!fp->count) {
6307 kfree_skb(skb);
6308 skb = NULL;
6309 } else {
6310 __skb_queue_tail(&list, skb);
6311 }
6312 fput(file);
6313 file = NULL;
6314 break;
6315 }
6316
6317 if (!file)
6318 break;
6319
6320 __skb_queue_tail(&list, skb);
6321
6322 skb = skb_dequeue(head);
6323 }
6324
6325 if (skb_peek(&list)) {
6326 spin_lock_irq(&head->lock);
6327 while ((skb = __skb_dequeue(&list)) != NULL)
6328 __skb_queue_tail(head, skb);
6329 spin_unlock_irq(&head->lock);
6330 }
6331#else
Jens Axboe05f3fb32019-12-09 11:22:50 -07006332 fput(file);
Jens Axboec3a31e62019-10-03 13:59:56 -06006333#endif
6334}
6335
Jens Axboe05f3fb32019-12-09 11:22:50 -07006336struct io_file_put {
6337 struct llist_node llist;
6338 struct file *file;
6339 struct completion *done;
6340};
6341
Jens Axboe2faf8522020-02-04 19:54:55 -07006342static void io_ring_file_ref_flush(struct fixed_file_data *data)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006343{
6344 struct io_file_put *pfile, *tmp;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006345 struct llist_node *node;
6346
Jens Axboe05f3fb32019-12-09 11:22:50 -07006347 while ((node = llist_del_all(&data->put_llist)) != NULL) {
6348 llist_for_each_entry_safe(pfile, tmp, node, llist) {
6349 io_ring_file_put(data->ctx, pfile->file);
6350 if (pfile->done)
6351 complete(pfile->done);
6352 else
6353 kfree(pfile);
6354 }
6355 }
Jens Axboe2faf8522020-02-04 19:54:55 -07006356}
Jens Axboe05f3fb32019-12-09 11:22:50 -07006357
Jens Axboe2faf8522020-02-04 19:54:55 -07006358static void io_ring_file_ref_switch(struct work_struct *work)
6359{
6360 struct fixed_file_data *data;
6361
6362 data = container_of(work, struct fixed_file_data, ref_work);
6363 io_ring_file_ref_flush(data);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006364 percpu_ref_switch_to_percpu(&data->refs);
6365}
6366
6367static void io_file_data_ref_zero(struct percpu_ref *ref)
6368{
6369 struct fixed_file_data *data;
6370
6371 data = container_of(ref, struct fixed_file_data, refs);
6372
Jens Axboe2faf8522020-02-04 19:54:55 -07006373 /*
6374 * We can't safely switch from inside this context, punt to wq. If
6375 * the table ref is going away, the table is being unregistered.
6376 * Don't queue up the async work for that case, the caller will
6377 * handle it.
6378 */
6379 if (!percpu_ref_is_dying(&data->refs))
6380 queue_work(system_wq, &data->ref_work);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006381}
6382
6383static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
6384 unsigned nr_args)
6385{
6386 __s32 __user *fds = (__s32 __user *) arg;
6387 unsigned nr_tables;
6388 struct file *file;
6389 int fd, ret = 0;
6390 unsigned i;
6391
6392 if (ctx->file_data)
6393 return -EBUSY;
6394 if (!nr_args)
6395 return -EINVAL;
6396 if (nr_args > IORING_MAX_FIXED_FILES)
6397 return -EMFILE;
6398
6399 ctx->file_data = kzalloc(sizeof(*ctx->file_data), GFP_KERNEL);
6400 if (!ctx->file_data)
6401 return -ENOMEM;
6402 ctx->file_data->ctx = ctx;
6403 init_completion(&ctx->file_data->done);
6404
6405 nr_tables = DIV_ROUND_UP(nr_args, IORING_MAX_FILES_TABLE);
6406 ctx->file_data->table = kcalloc(nr_tables,
6407 sizeof(struct fixed_file_table),
6408 GFP_KERNEL);
6409 if (!ctx->file_data->table) {
6410 kfree(ctx->file_data);
6411 ctx->file_data = NULL;
6412 return -ENOMEM;
6413 }
6414
6415 if (percpu_ref_init(&ctx->file_data->refs, io_file_data_ref_zero,
6416 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL)) {
6417 kfree(ctx->file_data->table);
6418 kfree(ctx->file_data);
6419 ctx->file_data = NULL;
6420 return -ENOMEM;
6421 }
6422 ctx->file_data->put_llist.first = NULL;
6423 INIT_WORK(&ctx->file_data->ref_work, io_ring_file_ref_switch);
6424
6425 if (io_sqe_alloc_file_tables(ctx, nr_tables, nr_args)) {
6426 percpu_ref_exit(&ctx->file_data->refs);
6427 kfree(ctx->file_data->table);
6428 kfree(ctx->file_data);
6429 ctx->file_data = NULL;
6430 return -ENOMEM;
6431 }
6432
6433 for (i = 0; i < nr_args; i++, ctx->nr_user_files++) {
6434 struct fixed_file_table *table;
6435 unsigned index;
6436
6437 ret = -EFAULT;
6438 if (copy_from_user(&fd, &fds[i], sizeof(fd)))
6439 break;
6440 /* allow sparse sets */
6441 if (fd == -1) {
6442 ret = 0;
6443 continue;
6444 }
6445
6446 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
6447 index = i & IORING_FILE_TABLE_MASK;
6448 file = fget(fd);
6449
6450 ret = -EBADF;
6451 if (!file)
6452 break;
6453
6454 /*
6455 * Don't allow io_uring instances to be registered. If UNIX
6456 * isn't enabled, then this causes a reference cycle and this
6457 * instance can never get freed. If UNIX is enabled we'll
6458 * handle it just fine, but there's still no point in allowing
6459 * a ring fd as it doesn't support regular read/write anyway.
6460 */
6461 if (file->f_op == &io_uring_fops) {
6462 fput(file);
6463 break;
6464 }
6465 ret = 0;
6466 table->files[index] = file;
6467 }
6468
6469 if (ret) {
6470 for (i = 0; i < ctx->nr_user_files; i++) {
6471 file = io_file_from_index(ctx, i);
6472 if (file)
6473 fput(file);
6474 }
6475 for (i = 0; i < nr_tables; i++)
6476 kfree(ctx->file_data->table[i].files);
6477
6478 kfree(ctx->file_data->table);
6479 kfree(ctx->file_data);
6480 ctx->file_data = NULL;
6481 ctx->nr_user_files = 0;
6482 return ret;
6483 }
6484
6485 ret = io_sqe_files_scm(ctx);
6486 if (ret)
6487 io_sqe_files_unregister(ctx);
6488
6489 return ret;
6490}
6491
Jens Axboec3a31e62019-10-03 13:59:56 -06006492static int io_sqe_file_register(struct io_ring_ctx *ctx, struct file *file,
6493 int index)
6494{
6495#if defined(CONFIG_UNIX)
6496 struct sock *sock = ctx->ring_sock->sk;
6497 struct sk_buff_head *head = &sock->sk_receive_queue;
6498 struct sk_buff *skb;
6499
6500 /*
6501 * See if we can merge this file into an existing skb SCM_RIGHTS
6502 * file set. If there's no room, fall back to allocating a new skb
6503 * and filling it in.
6504 */
6505 spin_lock_irq(&head->lock);
6506 skb = skb_peek(head);
6507 if (skb) {
6508 struct scm_fp_list *fpl = UNIXCB(skb).fp;
6509
6510 if (fpl->count < SCM_MAX_FD) {
6511 __skb_unlink(skb, head);
6512 spin_unlock_irq(&head->lock);
6513 fpl->fp[fpl->count] = get_file(file);
6514 unix_inflight(fpl->user, fpl->fp[fpl->count]);
6515 fpl->count++;
6516 spin_lock_irq(&head->lock);
6517 __skb_queue_head(head, skb);
6518 } else {
6519 skb = NULL;
6520 }
6521 }
6522 spin_unlock_irq(&head->lock);
6523
6524 if (skb) {
6525 fput(file);
6526 return 0;
6527 }
6528
6529 return __io_sqe_files_scm(ctx, 1, index);
6530#else
6531 return 0;
6532#endif
6533}
6534
Jens Axboe05f3fb32019-12-09 11:22:50 -07006535static void io_atomic_switch(struct percpu_ref *ref)
Jens Axboec3a31e62019-10-03 13:59:56 -06006536{
Jens Axboe05f3fb32019-12-09 11:22:50 -07006537 struct fixed_file_data *data;
6538
Jens Axboedd3db2a2020-02-26 10:23:43 -07006539 /*
6540 * Juggle reference to ensure we hit zero, if needed, so we can
6541 * switch back to percpu mode
6542 */
Jens Axboe05f3fb32019-12-09 11:22:50 -07006543 data = container_of(ref, struct fixed_file_data, refs);
Jens Axboedd3db2a2020-02-26 10:23:43 -07006544 percpu_ref_put(&data->refs);
6545 percpu_ref_get(&data->refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006546}
6547
6548static bool io_queue_file_removal(struct fixed_file_data *data,
6549 struct file *file)
6550{
6551 struct io_file_put *pfile, pfile_stack;
6552 DECLARE_COMPLETION_ONSTACK(done);
6553
6554 /*
6555 * If we fail allocating the struct we need for doing async reomval
6556 * of this file, just punt to sync and wait for it.
6557 */
6558 pfile = kzalloc(sizeof(*pfile), GFP_KERNEL);
6559 if (!pfile) {
6560 pfile = &pfile_stack;
6561 pfile->done = &done;
6562 }
6563
6564 pfile->file = file;
6565 llist_add(&pfile->llist, &data->put_llist);
6566
6567 if (pfile == &pfile_stack) {
Jens Axboedd3db2a2020-02-26 10:23:43 -07006568 percpu_ref_switch_to_atomic(&data->refs, io_atomic_switch);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006569 wait_for_completion(&done);
6570 flush_work(&data->ref_work);
6571 return false;
6572 }
6573
6574 return true;
6575}
6576
6577static int __io_sqe_files_update(struct io_ring_ctx *ctx,
6578 struct io_uring_files_update *up,
6579 unsigned nr_args)
6580{
6581 struct fixed_file_data *data = ctx->file_data;
6582 bool ref_switch = false;
6583 struct file *file;
Jens Axboec3a31e62019-10-03 13:59:56 -06006584 __s32 __user *fds;
6585 int fd, i, err;
6586 __u32 done;
6587
Jens Axboe05f3fb32019-12-09 11:22:50 -07006588 if (check_add_overflow(up->offset, nr_args, &done))
Jens Axboec3a31e62019-10-03 13:59:56 -06006589 return -EOVERFLOW;
6590 if (done > ctx->nr_user_files)
6591 return -EINVAL;
6592
6593 done = 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006594 fds = u64_to_user_ptr(up->fds);
Jens Axboec3a31e62019-10-03 13:59:56 -06006595 while (nr_args) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006596 struct fixed_file_table *table;
6597 unsigned index;
6598
Jens Axboec3a31e62019-10-03 13:59:56 -06006599 err = 0;
6600 if (copy_from_user(&fd, &fds[done], sizeof(fd))) {
6601 err = -EFAULT;
6602 break;
6603 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07006604 i = array_index_nospec(up->offset, ctx->nr_user_files);
6605 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
Jens Axboe65e19f52019-10-26 07:20:21 -06006606 index = i & IORING_FILE_TABLE_MASK;
6607 if (table->files[index]) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006608 file = io_file_from_index(ctx, index);
Jens Axboe65e19f52019-10-26 07:20:21 -06006609 table->files[index] = NULL;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006610 if (io_queue_file_removal(data, file))
6611 ref_switch = true;
Jens Axboec3a31e62019-10-03 13:59:56 -06006612 }
6613 if (fd != -1) {
Jens Axboec3a31e62019-10-03 13:59:56 -06006614 file = fget(fd);
6615 if (!file) {
6616 err = -EBADF;
6617 break;
6618 }
6619 /*
6620 * Don't allow io_uring instances to be registered. If
6621 * UNIX isn't enabled, then this causes a reference
6622 * cycle and this instance can never get freed. If UNIX
6623 * is enabled we'll handle it just fine, but there's
6624 * still no point in allowing a ring fd as it doesn't
6625 * support regular read/write anyway.
6626 */
6627 if (file->f_op == &io_uring_fops) {
6628 fput(file);
6629 err = -EBADF;
6630 break;
6631 }
Jens Axboe65e19f52019-10-26 07:20:21 -06006632 table->files[index] = file;
Jens Axboec3a31e62019-10-03 13:59:56 -06006633 err = io_sqe_file_register(ctx, file, i);
6634 if (err)
6635 break;
6636 }
6637 nr_args--;
6638 done++;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006639 up->offset++;
6640 }
6641
Jens Axboedd3db2a2020-02-26 10:23:43 -07006642 if (ref_switch)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006643 percpu_ref_switch_to_atomic(&data->refs, io_atomic_switch);
Jens Axboec3a31e62019-10-03 13:59:56 -06006644
6645 return done ? done : err;
6646}
Jens Axboe05f3fb32019-12-09 11:22:50 -07006647static int io_sqe_files_update(struct io_ring_ctx *ctx, void __user *arg,
6648 unsigned nr_args)
6649{
6650 struct io_uring_files_update up;
6651
6652 if (!ctx->file_data)
6653 return -ENXIO;
6654 if (!nr_args)
6655 return -EINVAL;
6656 if (copy_from_user(&up, arg, sizeof(up)))
6657 return -EFAULT;
6658 if (up.resv)
6659 return -EINVAL;
6660
6661 return __io_sqe_files_update(ctx, &up, nr_args);
6662}
Jens Axboec3a31e62019-10-03 13:59:56 -06006663
Pavel Begunkove9fd9392020-03-04 16:14:12 +03006664static void io_free_work(struct io_wq_work *work)
Jens Axboe7d723062019-11-12 22:31:31 -07006665{
6666 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
6667
Pavel Begunkove9fd9392020-03-04 16:14:12 +03006668 /* Consider that io_steal_work() relies on this ref */
Jens Axboe7d723062019-11-12 22:31:31 -07006669 io_put_req(req);
6670}
6671
Pavel Begunkov24369c22020-01-28 03:15:48 +03006672static int io_init_wq_offload(struct io_ring_ctx *ctx,
6673 struct io_uring_params *p)
6674{
6675 struct io_wq_data data;
6676 struct fd f;
6677 struct io_ring_ctx *ctx_attach;
6678 unsigned int concurrency;
6679 int ret = 0;
6680
6681 data.user = ctx->user;
Pavel Begunkove9fd9392020-03-04 16:14:12 +03006682 data.free_work = io_free_work;
Pavel Begunkov24369c22020-01-28 03:15:48 +03006683
6684 if (!(p->flags & IORING_SETUP_ATTACH_WQ)) {
6685 /* Do QD, or 4 * CPUS, whatever is smallest */
6686 concurrency = min(ctx->sq_entries, 4 * num_online_cpus());
6687
6688 ctx->io_wq = io_wq_create(concurrency, &data);
6689 if (IS_ERR(ctx->io_wq)) {
6690 ret = PTR_ERR(ctx->io_wq);
6691 ctx->io_wq = NULL;
6692 }
6693 return ret;
6694 }
6695
6696 f = fdget(p->wq_fd);
6697 if (!f.file)
6698 return -EBADF;
6699
6700 if (f.file->f_op != &io_uring_fops) {
6701 ret = -EINVAL;
6702 goto out_fput;
6703 }
6704
6705 ctx_attach = f.file->private_data;
6706 /* @io_wq is protected by holding the fd */
6707 if (!io_wq_get(ctx_attach->io_wq, &data)) {
6708 ret = -EINVAL;
6709 goto out_fput;
6710 }
6711
6712 ctx->io_wq = ctx_attach->io_wq;
6713out_fput:
6714 fdput(f);
6715 return ret;
6716}
6717
Jens Axboe6c271ce2019-01-10 11:22:30 -07006718static int io_sq_offload_start(struct io_ring_ctx *ctx,
6719 struct io_uring_params *p)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006720{
6721 int ret;
6722
Jens Axboe6c271ce2019-01-10 11:22:30 -07006723 init_waitqueue_head(&ctx->sqo_wait);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006724 mmgrab(current->mm);
6725 ctx->sqo_mm = current->mm;
6726
Jens Axboe6c271ce2019-01-10 11:22:30 -07006727 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboe3ec482d2019-04-08 10:51:01 -06006728 ret = -EPERM;
6729 if (!capable(CAP_SYS_ADMIN))
6730 goto err;
6731
Jens Axboe917257d2019-04-13 09:28:55 -06006732 ctx->sq_thread_idle = msecs_to_jiffies(p->sq_thread_idle);
6733 if (!ctx->sq_thread_idle)
6734 ctx->sq_thread_idle = HZ;
6735
Jens Axboe6c271ce2019-01-10 11:22:30 -07006736 if (p->flags & IORING_SETUP_SQ_AFF) {
Jens Axboe44a9bd12019-05-14 20:00:30 -06006737 int cpu = p->sq_thread_cpu;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006738
Jens Axboe917257d2019-04-13 09:28:55 -06006739 ret = -EINVAL;
Jens Axboe44a9bd12019-05-14 20:00:30 -06006740 if (cpu >= nr_cpu_ids)
6741 goto err;
Shenghui Wang7889f442019-05-07 16:03:19 +08006742 if (!cpu_online(cpu))
Jens Axboe917257d2019-04-13 09:28:55 -06006743 goto err;
6744
Jens Axboe6c271ce2019-01-10 11:22:30 -07006745 ctx->sqo_thread = kthread_create_on_cpu(io_sq_thread,
6746 ctx, cpu,
6747 "io_uring-sq");
6748 } else {
6749 ctx->sqo_thread = kthread_create(io_sq_thread, ctx,
6750 "io_uring-sq");
6751 }
6752 if (IS_ERR(ctx->sqo_thread)) {
6753 ret = PTR_ERR(ctx->sqo_thread);
6754 ctx->sqo_thread = NULL;
6755 goto err;
6756 }
6757 wake_up_process(ctx->sqo_thread);
6758 } else if (p->flags & IORING_SETUP_SQ_AFF) {
6759 /* Can't have SQ_AFF without SQPOLL */
6760 ret = -EINVAL;
6761 goto err;
6762 }
6763
Pavel Begunkov24369c22020-01-28 03:15:48 +03006764 ret = io_init_wq_offload(ctx, p);
6765 if (ret)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006766 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006767
6768 return 0;
6769err:
Jens Axboe54a91f32019-09-10 09:15:04 -06006770 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006771 mmdrop(ctx->sqo_mm);
6772 ctx->sqo_mm = NULL;
6773 return ret;
6774}
6775
6776static void io_unaccount_mem(struct user_struct *user, unsigned long nr_pages)
6777{
6778 atomic_long_sub(nr_pages, &user->locked_vm);
6779}
6780
6781static int io_account_mem(struct user_struct *user, unsigned long nr_pages)
6782{
6783 unsigned long page_limit, cur_pages, new_pages;
6784
6785 /* Don't allow more pages than we can safely lock */
6786 page_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
6787
6788 do {
6789 cur_pages = atomic_long_read(&user->locked_vm);
6790 new_pages = cur_pages + nr_pages;
6791 if (new_pages > page_limit)
6792 return -ENOMEM;
6793 } while (atomic_long_cmpxchg(&user->locked_vm, cur_pages,
6794 new_pages) != cur_pages);
6795
6796 return 0;
6797}
6798
6799static void io_mem_free(void *ptr)
6800{
Mark Rutland52e04ef2019-04-30 17:30:21 +01006801 struct page *page;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006802
Mark Rutland52e04ef2019-04-30 17:30:21 +01006803 if (!ptr)
6804 return;
6805
6806 page = virt_to_head_page(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006807 if (put_page_testzero(page))
6808 free_compound_page(page);
6809}
6810
6811static void *io_mem_alloc(size_t size)
6812{
6813 gfp_t gfp_flags = GFP_KERNEL | __GFP_ZERO | __GFP_NOWARN | __GFP_COMP |
6814 __GFP_NORETRY;
6815
6816 return (void *) __get_free_pages(gfp_flags, get_order(size));
6817}
6818
Hristo Venev75b28af2019-08-26 17:23:46 +00006819static unsigned long rings_size(unsigned sq_entries, unsigned cq_entries,
6820 size_t *sq_offset)
6821{
6822 struct io_rings *rings;
6823 size_t off, sq_array_size;
6824
6825 off = struct_size(rings, cqes, cq_entries);
6826 if (off == SIZE_MAX)
6827 return SIZE_MAX;
6828
6829#ifdef CONFIG_SMP
6830 off = ALIGN(off, SMP_CACHE_BYTES);
6831 if (off == 0)
6832 return SIZE_MAX;
6833#endif
6834
6835 sq_array_size = array_size(sizeof(u32), sq_entries);
6836 if (sq_array_size == SIZE_MAX)
6837 return SIZE_MAX;
6838
6839 if (check_add_overflow(off, sq_array_size, &off))
6840 return SIZE_MAX;
6841
6842 if (sq_offset)
6843 *sq_offset = off;
6844
6845 return off;
6846}
6847
Jens Axboe2b188cc2019-01-07 10:46:33 -07006848static unsigned long ring_pages(unsigned sq_entries, unsigned cq_entries)
6849{
Hristo Venev75b28af2019-08-26 17:23:46 +00006850 size_t pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006851
Hristo Venev75b28af2019-08-26 17:23:46 +00006852 pages = (size_t)1 << get_order(
6853 rings_size(sq_entries, cq_entries, NULL));
6854 pages += (size_t)1 << get_order(
6855 array_size(sizeof(struct io_uring_sqe), sq_entries));
Jens Axboe2b188cc2019-01-07 10:46:33 -07006856
Hristo Venev75b28af2019-08-26 17:23:46 +00006857 return pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006858}
6859
Jens Axboeedafcce2019-01-09 09:16:05 -07006860static int io_sqe_buffer_unregister(struct io_ring_ctx *ctx)
6861{
6862 int i, j;
6863
6864 if (!ctx->user_bufs)
6865 return -ENXIO;
6866
6867 for (i = 0; i < ctx->nr_user_bufs; i++) {
6868 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
6869
6870 for (j = 0; j < imu->nr_bvecs; j++)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08006871 unpin_user_page(imu->bvec[j].bv_page);
Jens Axboeedafcce2019-01-09 09:16:05 -07006872
6873 if (ctx->account_mem)
6874 io_unaccount_mem(ctx->user, imu->nr_bvecs);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006875 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07006876 imu->nr_bvecs = 0;
6877 }
6878
6879 kfree(ctx->user_bufs);
6880 ctx->user_bufs = NULL;
6881 ctx->nr_user_bufs = 0;
6882 return 0;
6883}
6884
6885static int io_copy_iov(struct io_ring_ctx *ctx, struct iovec *dst,
6886 void __user *arg, unsigned index)
6887{
6888 struct iovec __user *src;
6889
6890#ifdef CONFIG_COMPAT
6891 if (ctx->compat) {
6892 struct compat_iovec __user *ciovs;
6893 struct compat_iovec ciov;
6894
6895 ciovs = (struct compat_iovec __user *) arg;
6896 if (copy_from_user(&ciov, &ciovs[index], sizeof(ciov)))
6897 return -EFAULT;
6898
Jens Axboed55e5f52019-12-11 16:12:15 -07006899 dst->iov_base = u64_to_user_ptr((u64)ciov.iov_base);
Jens Axboeedafcce2019-01-09 09:16:05 -07006900 dst->iov_len = ciov.iov_len;
6901 return 0;
6902 }
6903#endif
6904 src = (struct iovec __user *) arg;
6905 if (copy_from_user(dst, &src[index], sizeof(*dst)))
6906 return -EFAULT;
6907 return 0;
6908}
6909
6910static int io_sqe_buffer_register(struct io_ring_ctx *ctx, void __user *arg,
6911 unsigned nr_args)
6912{
6913 struct vm_area_struct **vmas = NULL;
6914 struct page **pages = NULL;
6915 int i, j, got_pages = 0;
6916 int ret = -EINVAL;
6917
6918 if (ctx->user_bufs)
6919 return -EBUSY;
6920 if (!nr_args || nr_args > UIO_MAXIOV)
6921 return -EINVAL;
6922
6923 ctx->user_bufs = kcalloc(nr_args, sizeof(struct io_mapped_ubuf),
6924 GFP_KERNEL);
6925 if (!ctx->user_bufs)
6926 return -ENOMEM;
6927
6928 for (i = 0; i < nr_args; i++) {
6929 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
6930 unsigned long off, start, end, ubuf;
6931 int pret, nr_pages;
6932 struct iovec iov;
6933 size_t size;
6934
6935 ret = io_copy_iov(ctx, &iov, arg, i);
6936 if (ret)
Pavel Begunkova2786822019-05-26 12:35:47 +03006937 goto err;
Jens Axboeedafcce2019-01-09 09:16:05 -07006938
6939 /*
6940 * Don't impose further limits on the size and buffer
6941 * constraints here, we'll -EINVAL later when IO is
6942 * submitted if they are wrong.
6943 */
6944 ret = -EFAULT;
6945 if (!iov.iov_base || !iov.iov_len)
6946 goto err;
6947
6948 /* arbitrary limit, but we need something */
6949 if (iov.iov_len > SZ_1G)
6950 goto err;
6951
6952 ubuf = (unsigned long) iov.iov_base;
6953 end = (ubuf + iov.iov_len + PAGE_SIZE - 1) >> PAGE_SHIFT;
6954 start = ubuf >> PAGE_SHIFT;
6955 nr_pages = end - start;
6956
6957 if (ctx->account_mem) {
6958 ret = io_account_mem(ctx->user, nr_pages);
6959 if (ret)
6960 goto err;
6961 }
6962
6963 ret = 0;
6964 if (!pages || nr_pages > got_pages) {
6965 kfree(vmas);
6966 kfree(pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006967 pages = kvmalloc_array(nr_pages, sizeof(struct page *),
Jens Axboeedafcce2019-01-09 09:16:05 -07006968 GFP_KERNEL);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006969 vmas = kvmalloc_array(nr_pages,
Jens Axboeedafcce2019-01-09 09:16:05 -07006970 sizeof(struct vm_area_struct *),
6971 GFP_KERNEL);
6972 if (!pages || !vmas) {
6973 ret = -ENOMEM;
6974 if (ctx->account_mem)
6975 io_unaccount_mem(ctx->user, nr_pages);
6976 goto err;
6977 }
6978 got_pages = nr_pages;
6979 }
6980
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006981 imu->bvec = kvmalloc_array(nr_pages, sizeof(struct bio_vec),
Jens Axboeedafcce2019-01-09 09:16:05 -07006982 GFP_KERNEL);
6983 ret = -ENOMEM;
6984 if (!imu->bvec) {
6985 if (ctx->account_mem)
6986 io_unaccount_mem(ctx->user, nr_pages);
6987 goto err;
6988 }
6989
6990 ret = 0;
6991 down_read(&current->mm->mmap_sem);
John Hubbard2113b052020-01-30 22:13:13 -08006992 pret = pin_user_pages(ubuf, nr_pages,
Ira Weiny932f4a62019-05-13 17:17:03 -07006993 FOLL_WRITE | FOLL_LONGTERM,
6994 pages, vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07006995 if (pret == nr_pages) {
6996 /* don't support file backed memory */
6997 for (j = 0; j < nr_pages; j++) {
6998 struct vm_area_struct *vma = vmas[j];
6999
7000 if (vma->vm_file &&
7001 !is_file_hugepages(vma->vm_file)) {
7002 ret = -EOPNOTSUPP;
7003 break;
7004 }
7005 }
7006 } else {
7007 ret = pret < 0 ? pret : -EFAULT;
7008 }
7009 up_read(&current->mm->mmap_sem);
7010 if (ret) {
7011 /*
7012 * if we did partial map, or found file backed vmas,
7013 * release any pages we did get
7014 */
John Hubbard27c4d3a2019-08-04 19:32:06 -07007015 if (pret > 0)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08007016 unpin_user_pages(pages, pret);
Jens Axboeedafcce2019-01-09 09:16:05 -07007017 if (ctx->account_mem)
7018 io_unaccount_mem(ctx->user, nr_pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007019 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07007020 goto err;
7021 }
7022
7023 off = ubuf & ~PAGE_MASK;
7024 size = iov.iov_len;
7025 for (j = 0; j < nr_pages; j++) {
7026 size_t vec_len;
7027
7028 vec_len = min_t(size_t, size, PAGE_SIZE - off);
7029 imu->bvec[j].bv_page = pages[j];
7030 imu->bvec[j].bv_len = vec_len;
7031 imu->bvec[j].bv_offset = off;
7032 off = 0;
7033 size -= vec_len;
7034 }
7035 /* store original address for later verification */
7036 imu->ubuf = ubuf;
7037 imu->len = iov.iov_len;
7038 imu->nr_bvecs = nr_pages;
7039
7040 ctx->nr_user_bufs++;
7041 }
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007042 kvfree(pages);
7043 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007044 return 0;
7045err:
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007046 kvfree(pages);
7047 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007048 io_sqe_buffer_unregister(ctx);
7049 return ret;
7050}
7051
Jens Axboe9b402842019-04-11 11:45:41 -06007052static int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg)
7053{
7054 __s32 __user *fds = arg;
7055 int fd;
7056
7057 if (ctx->cq_ev_fd)
7058 return -EBUSY;
7059
7060 if (copy_from_user(&fd, fds, sizeof(*fds)))
7061 return -EFAULT;
7062
7063 ctx->cq_ev_fd = eventfd_ctx_fdget(fd);
7064 if (IS_ERR(ctx->cq_ev_fd)) {
7065 int ret = PTR_ERR(ctx->cq_ev_fd);
7066 ctx->cq_ev_fd = NULL;
7067 return ret;
7068 }
7069
7070 return 0;
7071}
7072
7073static int io_eventfd_unregister(struct io_ring_ctx *ctx)
7074{
7075 if (ctx->cq_ev_fd) {
7076 eventfd_ctx_put(ctx->cq_ev_fd);
7077 ctx->cq_ev_fd = NULL;
7078 return 0;
7079 }
7080
7081 return -ENXIO;
7082}
7083
Jens Axboe5a2e7452020-02-23 16:23:11 -07007084static int __io_destroy_buffers(int id, void *p, void *data)
7085{
7086 struct io_ring_ctx *ctx = data;
7087 struct io_buffer *buf = p;
7088
Jens Axboe067524e2020-03-02 16:32:28 -07007089 __io_remove_buffers(ctx, buf, id, -1U);
Jens Axboe5a2e7452020-02-23 16:23:11 -07007090 return 0;
7091}
7092
7093static void io_destroy_buffers(struct io_ring_ctx *ctx)
7094{
7095 idr_for_each(&ctx->io_buffer_idr, __io_destroy_buffers, ctx);
7096 idr_destroy(&ctx->io_buffer_idr);
7097}
7098
Jens Axboe2b188cc2019-01-07 10:46:33 -07007099static void io_ring_ctx_free(struct io_ring_ctx *ctx)
7100{
Jens Axboe6b063142019-01-10 22:13:58 -07007101 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007102 if (ctx->sqo_mm)
7103 mmdrop(ctx->sqo_mm);
Jens Axboedef596e2019-01-09 08:59:42 -07007104
7105 io_iopoll_reap_events(ctx);
Jens Axboeedafcce2019-01-09 09:16:05 -07007106 io_sqe_buffer_unregister(ctx);
Jens Axboe6b063142019-01-10 22:13:58 -07007107 io_sqe_files_unregister(ctx);
Jens Axboe9b402842019-04-11 11:45:41 -06007108 io_eventfd_unregister(ctx);
Jens Axboe5a2e7452020-02-23 16:23:11 -07007109 io_destroy_buffers(ctx);
Jens Axboe41726c92020-02-23 13:11:42 -07007110 idr_destroy(&ctx->personality_idr);
Jens Axboedef596e2019-01-09 08:59:42 -07007111
Jens Axboe2b188cc2019-01-07 10:46:33 -07007112#if defined(CONFIG_UNIX)
Eric Biggers355e8d22019-06-12 14:58:43 -07007113 if (ctx->ring_sock) {
7114 ctx->ring_sock->file = NULL; /* so that iput() is called */
Jens Axboe2b188cc2019-01-07 10:46:33 -07007115 sock_release(ctx->ring_sock);
Eric Biggers355e8d22019-06-12 14:58:43 -07007116 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007117#endif
7118
Hristo Venev75b28af2019-08-26 17:23:46 +00007119 io_mem_free(ctx->rings);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007120 io_mem_free(ctx->sq_sqes);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007121
7122 percpu_ref_exit(&ctx->refs);
7123 if (ctx->account_mem)
7124 io_unaccount_mem(ctx->user,
7125 ring_pages(ctx->sq_entries, ctx->cq_entries));
7126 free_uid(ctx->user);
Jens Axboe181e4482019-11-25 08:52:30 -07007127 put_cred(ctx->creds);
Jens Axboe206aefd2019-11-07 18:27:42 -07007128 kfree(ctx->completions);
Jens Axboe78076bb2019-12-04 19:56:40 -07007129 kfree(ctx->cancel_hash);
Jens Axboe0ddf92e2019-11-08 08:52:53 -07007130 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007131 kfree(ctx);
7132}
7133
7134static __poll_t io_uring_poll(struct file *file, poll_table *wait)
7135{
7136 struct io_ring_ctx *ctx = file->private_data;
7137 __poll_t mask = 0;
7138
7139 poll_wait(file, &ctx->cq_wait, wait);
Stefan Bühler4f7067c2019-04-24 23:54:17 +02007140 /*
7141 * synchronizes with barrier from wq_has_sleeper call in
7142 * io_commit_cqring
7143 */
Jens Axboe2b188cc2019-01-07 10:46:33 -07007144 smp_rmb();
Hristo Venev75b28af2019-08-26 17:23:46 +00007145 if (READ_ONCE(ctx->rings->sq.tail) - ctx->cached_sq_head !=
7146 ctx->rings->sq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007147 mask |= EPOLLOUT | EPOLLWRNORM;
Stefano Garzarella63e5d812020-02-07 13:18:28 +01007148 if (io_cqring_events(ctx, false))
Jens Axboe2b188cc2019-01-07 10:46:33 -07007149 mask |= EPOLLIN | EPOLLRDNORM;
7150
7151 return mask;
7152}
7153
7154static int io_uring_fasync(int fd, struct file *file, int on)
7155{
7156 struct io_ring_ctx *ctx = file->private_data;
7157
7158 return fasync_helper(fd, file, on, &ctx->cq_fasync);
7159}
7160
Jens Axboe071698e2020-01-28 10:04:42 -07007161static int io_remove_personalities(int id, void *p, void *data)
7162{
7163 struct io_ring_ctx *ctx = data;
7164 const struct cred *cred;
7165
7166 cred = idr_remove(&ctx->personality_idr, id);
7167 if (cred)
7168 put_cred(cred);
7169 return 0;
7170}
7171
Jens Axboe2b188cc2019-01-07 10:46:33 -07007172static void io_ring_ctx_wait_and_kill(struct io_ring_ctx *ctx)
7173{
7174 mutex_lock(&ctx->uring_lock);
7175 percpu_ref_kill(&ctx->refs);
7176 mutex_unlock(&ctx->uring_lock);
7177
Jens Axboedf069d82020-02-04 16:48:34 -07007178 /*
7179 * Wait for sq thread to idle, if we have one. It won't spin on new
7180 * work after we've killed the ctx ref above. This is important to do
7181 * before we cancel existing commands, as the thread could otherwise
7182 * be queueing new work post that. If that's work we need to cancel,
7183 * it could cause shutdown to hang.
7184 */
7185 while (ctx->sqo_thread && !wq_has_sleeper(&ctx->sqo_wait))
7186 cpu_relax();
7187
Jens Axboe5262f562019-09-17 12:26:57 -06007188 io_kill_timeouts(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07007189 io_poll_remove_all(ctx);
Jens Axboe561fb042019-10-24 07:25:42 -06007190
7191 if (ctx->io_wq)
7192 io_wq_cancel_all(ctx->io_wq);
7193
Jens Axboedef596e2019-01-09 08:59:42 -07007194 io_iopoll_reap_events(ctx);
Jens Axboe15dff282019-11-13 09:09:23 -07007195 /* if we failed setting up the ctx, we might not have any rings */
7196 if (ctx->rings)
7197 io_cqring_overflow_flush(ctx, true);
Jens Axboe071698e2020-01-28 10:04:42 -07007198 idr_for_each(&ctx->personality_idr, io_remove_personalities, ctx);
Jens Axboe206aefd2019-11-07 18:27:42 -07007199 wait_for_completion(&ctx->completions[0]);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007200 io_ring_ctx_free(ctx);
7201}
7202
7203static int io_uring_release(struct inode *inode, struct file *file)
7204{
7205 struct io_ring_ctx *ctx = file->private_data;
7206
7207 file->private_data = NULL;
7208 io_ring_ctx_wait_and_kill(ctx);
7209 return 0;
7210}
7211
Jens Axboefcb323c2019-10-24 12:39:47 -06007212static void io_uring_cancel_files(struct io_ring_ctx *ctx,
7213 struct files_struct *files)
7214{
7215 struct io_kiocb *req;
7216 DEFINE_WAIT(wait);
7217
7218 while (!list_empty_careful(&ctx->inflight_list)) {
Jens Axboe768134d2019-11-10 20:30:53 -07007219 struct io_kiocb *cancel_req = NULL;
Jens Axboefcb323c2019-10-24 12:39:47 -06007220
7221 spin_lock_irq(&ctx->inflight_lock);
7222 list_for_each_entry(req, &ctx->inflight_list, inflight_entry) {
Jens Axboe768134d2019-11-10 20:30:53 -07007223 if (req->work.files != files)
7224 continue;
7225 /* req is being completed, ignore */
7226 if (!refcount_inc_not_zero(&req->refs))
7227 continue;
7228 cancel_req = req;
7229 break;
Jens Axboefcb323c2019-10-24 12:39:47 -06007230 }
Jens Axboe768134d2019-11-10 20:30:53 -07007231 if (cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06007232 prepare_to_wait(&ctx->inflight_wait, &wait,
Jens Axboe768134d2019-11-10 20:30:53 -07007233 TASK_UNINTERRUPTIBLE);
Jens Axboefcb323c2019-10-24 12:39:47 -06007234 spin_unlock_irq(&ctx->inflight_lock);
7235
Jens Axboe768134d2019-11-10 20:30:53 -07007236 /* We need to keep going until we don't find a matching req */
7237 if (!cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06007238 break;
Bob Liu2f6d9b92019-11-13 18:06:24 +08007239
Jens Axboe2ca10252020-02-13 17:17:35 -07007240 if (cancel_req->flags & REQ_F_OVERFLOW) {
7241 spin_lock_irq(&ctx->completion_lock);
7242 list_del(&cancel_req->list);
7243 cancel_req->flags &= ~REQ_F_OVERFLOW;
7244 if (list_empty(&ctx->cq_overflow_list)) {
7245 clear_bit(0, &ctx->sq_check_overflow);
7246 clear_bit(0, &ctx->cq_check_overflow);
7247 }
7248 spin_unlock_irq(&ctx->completion_lock);
7249
7250 WRITE_ONCE(ctx->rings->cq_overflow,
7251 atomic_inc_return(&ctx->cached_cq_overflow));
7252
7253 /*
7254 * Put inflight ref and overflow ref. If that's
7255 * all we had, then we're done with this request.
7256 */
7257 if (refcount_sub_and_test(2, &cancel_req->refs)) {
7258 io_put_req(cancel_req);
7259 continue;
7260 }
7261 }
7262
Bob Liu2f6d9b92019-11-13 18:06:24 +08007263 io_wq_cancel_work(ctx->io_wq, &cancel_req->work);
7264 io_put_req(cancel_req);
Jens Axboefcb323c2019-10-24 12:39:47 -06007265 schedule();
7266 }
Jens Axboe768134d2019-11-10 20:30:53 -07007267 finish_wait(&ctx->inflight_wait, &wait);
Jens Axboefcb323c2019-10-24 12:39:47 -06007268}
7269
7270static int io_uring_flush(struct file *file, void *data)
7271{
7272 struct io_ring_ctx *ctx = file->private_data;
7273
7274 io_uring_cancel_files(ctx, data);
Jens Axboe6ab23142020-02-08 20:23:59 -07007275
7276 /*
7277 * If the task is going away, cancel work it may have pending
7278 */
7279 if (fatal_signal_pending(current) || (current->flags & PF_EXITING))
7280 io_wq_cancel_pid(ctx->io_wq, task_pid_vnr(current));
7281
Jens Axboefcb323c2019-10-24 12:39:47 -06007282 return 0;
7283}
7284
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007285static void *io_uring_validate_mmap_request(struct file *file,
7286 loff_t pgoff, size_t sz)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007287{
Jens Axboe2b188cc2019-01-07 10:46:33 -07007288 struct io_ring_ctx *ctx = file->private_data;
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007289 loff_t offset = pgoff << PAGE_SHIFT;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007290 struct page *page;
7291 void *ptr;
7292
7293 switch (offset) {
7294 case IORING_OFF_SQ_RING:
Hristo Venev75b28af2019-08-26 17:23:46 +00007295 case IORING_OFF_CQ_RING:
7296 ptr = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007297 break;
7298 case IORING_OFF_SQES:
7299 ptr = ctx->sq_sqes;
7300 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007301 default:
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007302 return ERR_PTR(-EINVAL);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007303 }
7304
7305 page = virt_to_head_page(ptr);
Matthew Wilcox (Oracle)a50b8542019-09-23 15:34:25 -07007306 if (sz > page_size(page))
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007307 return ERR_PTR(-EINVAL);
7308
7309 return ptr;
7310}
7311
7312#ifdef CONFIG_MMU
7313
7314static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
7315{
7316 size_t sz = vma->vm_end - vma->vm_start;
7317 unsigned long pfn;
7318 void *ptr;
7319
7320 ptr = io_uring_validate_mmap_request(file, vma->vm_pgoff, sz);
7321 if (IS_ERR(ptr))
7322 return PTR_ERR(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007323
7324 pfn = virt_to_phys(ptr) >> PAGE_SHIFT;
7325 return remap_pfn_range(vma, vma->vm_start, pfn, sz, vma->vm_page_prot);
7326}
7327
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007328#else /* !CONFIG_MMU */
7329
7330static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
7331{
7332 return vma->vm_flags & (VM_SHARED | VM_MAYSHARE) ? 0 : -EINVAL;
7333}
7334
7335static unsigned int io_uring_nommu_mmap_capabilities(struct file *file)
7336{
7337 return NOMMU_MAP_DIRECT | NOMMU_MAP_READ | NOMMU_MAP_WRITE;
7338}
7339
7340static unsigned long io_uring_nommu_get_unmapped_area(struct file *file,
7341 unsigned long addr, unsigned long len,
7342 unsigned long pgoff, unsigned long flags)
7343{
7344 void *ptr;
7345
7346 ptr = io_uring_validate_mmap_request(file, pgoff, len);
7347 if (IS_ERR(ptr))
7348 return PTR_ERR(ptr);
7349
7350 return (unsigned long) ptr;
7351}
7352
7353#endif /* !CONFIG_MMU */
7354
Jens Axboe2b188cc2019-01-07 10:46:33 -07007355SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
7356 u32, min_complete, u32, flags, const sigset_t __user *, sig,
7357 size_t, sigsz)
7358{
7359 struct io_ring_ctx *ctx;
7360 long ret = -EBADF;
7361 int submitted = 0;
7362 struct fd f;
7363
Jens Axboeb41e9852020-02-17 09:52:41 -07007364 if (current->task_works)
7365 task_work_run();
7366
Jens Axboe6c271ce2019-01-10 11:22:30 -07007367 if (flags & ~(IORING_ENTER_GETEVENTS | IORING_ENTER_SQ_WAKEUP))
Jens Axboe2b188cc2019-01-07 10:46:33 -07007368 return -EINVAL;
7369
7370 f = fdget(fd);
7371 if (!f.file)
7372 return -EBADF;
7373
7374 ret = -EOPNOTSUPP;
7375 if (f.file->f_op != &io_uring_fops)
7376 goto out_fput;
7377
7378 ret = -ENXIO;
7379 ctx = f.file->private_data;
7380 if (!percpu_ref_tryget(&ctx->refs))
7381 goto out_fput;
7382
Jens Axboe6c271ce2019-01-10 11:22:30 -07007383 /*
7384 * For SQ polling, the thread will do all submissions and completions.
7385 * Just return the requested submit count, and wake the thread if
7386 * we were asked to.
7387 */
Jens Axboeb2a9ead2019-09-12 14:19:16 -06007388 ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007389 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboec1edbf52019-11-10 16:56:04 -07007390 if (!list_empty_careful(&ctx->cq_overflow_list))
7391 io_cqring_overflow_flush(ctx, false);
Jens Axboe6c271ce2019-01-10 11:22:30 -07007392 if (flags & IORING_ENTER_SQ_WAKEUP)
7393 wake_up(&ctx->sqo_wait);
7394 submitted = to_submit;
Jens Axboeb2a9ead2019-09-12 14:19:16 -06007395 } else if (to_submit) {
Pavel Begunkovae9428c2019-11-06 00:22:14 +03007396 struct mm_struct *cur_mm;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007397
7398 mutex_lock(&ctx->uring_lock);
Pavel Begunkovae9428c2019-11-06 00:22:14 +03007399 /* already have mm, so io_submit_sqes() won't try to grab it */
7400 cur_mm = ctx->sqo_mm;
7401 submitted = io_submit_sqes(ctx, to_submit, f.file, fd,
7402 &cur_mm, false);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007403 mutex_unlock(&ctx->uring_lock);
Pavel Begunkov7c504e652019-12-18 19:53:45 +03007404
7405 if (submitted != to_submit)
7406 goto out;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007407 }
7408 if (flags & IORING_ENTER_GETEVENTS) {
Jens Axboedef596e2019-01-09 08:59:42 -07007409 unsigned nr_events = 0;
7410
Jens Axboe2b188cc2019-01-07 10:46:33 -07007411 min_complete = min(min_complete, ctx->cq_entries);
7412
Xiaoguang Wang32b22442020-03-11 09:26:09 +08007413 /*
7414 * When SETUP_IOPOLL and SETUP_SQPOLL are both enabled, user
7415 * space applications don't need to do io completion events
7416 * polling again, they can rely on io_sq_thread to do polling
7417 * work, which can reduce cpu usage and uring_lock contention.
7418 */
7419 if (ctx->flags & IORING_SETUP_IOPOLL &&
7420 !(ctx->flags & IORING_SETUP_SQPOLL)) {
Jens Axboedef596e2019-01-09 08:59:42 -07007421 ret = io_iopoll_check(ctx, &nr_events, min_complete);
Jens Axboedef596e2019-01-09 08:59:42 -07007422 } else {
7423 ret = io_cqring_wait(ctx, min_complete, sig, sigsz);
7424 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007425 }
7426
Pavel Begunkov7c504e652019-12-18 19:53:45 +03007427out:
Pavel Begunkov6805b322019-10-08 02:18:42 +03007428 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007429out_fput:
7430 fdput(f);
7431 return submitted ? submitted : ret;
7432}
7433
Tobias Klauserbebdb652020-02-26 18:38:32 +01007434#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -07007435static int io_uring_show_cred(int id, void *p, void *data)
7436{
7437 const struct cred *cred = p;
7438 struct seq_file *m = data;
7439 struct user_namespace *uns = seq_user_ns(m);
7440 struct group_info *gi;
7441 kernel_cap_t cap;
7442 unsigned __capi;
7443 int g;
7444
7445 seq_printf(m, "%5d\n", id);
7446 seq_put_decimal_ull(m, "\tUid:\t", from_kuid_munged(uns, cred->uid));
7447 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->euid));
7448 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->suid));
7449 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->fsuid));
7450 seq_put_decimal_ull(m, "\n\tGid:\t", from_kgid_munged(uns, cred->gid));
7451 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->egid));
7452 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->sgid));
7453 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->fsgid));
7454 seq_puts(m, "\n\tGroups:\t");
7455 gi = cred->group_info;
7456 for (g = 0; g < gi->ngroups; g++) {
7457 seq_put_decimal_ull(m, g ? " " : "",
7458 from_kgid_munged(uns, gi->gid[g]));
7459 }
7460 seq_puts(m, "\n\tCapEff:\t");
7461 cap = cred->cap_effective;
7462 CAP_FOR_EACH_U32(__capi)
7463 seq_put_hex_ll(m, NULL, cap.cap[CAP_LAST_U32 - __capi], 8);
7464 seq_putc(m, '\n');
7465 return 0;
7466}
7467
7468static void __io_uring_show_fdinfo(struct io_ring_ctx *ctx, struct seq_file *m)
7469{
7470 int i;
7471
7472 mutex_lock(&ctx->uring_lock);
7473 seq_printf(m, "UserFiles:\t%u\n", ctx->nr_user_files);
7474 for (i = 0; i < ctx->nr_user_files; i++) {
7475 struct fixed_file_table *table;
7476 struct file *f;
7477
7478 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
7479 f = table->files[i & IORING_FILE_TABLE_MASK];
7480 if (f)
7481 seq_printf(m, "%5u: %s\n", i, file_dentry(f)->d_iname);
7482 else
7483 seq_printf(m, "%5u: <none>\n", i);
7484 }
7485 seq_printf(m, "UserBufs:\t%u\n", ctx->nr_user_bufs);
7486 for (i = 0; i < ctx->nr_user_bufs; i++) {
7487 struct io_mapped_ubuf *buf = &ctx->user_bufs[i];
7488
7489 seq_printf(m, "%5u: 0x%llx/%u\n", i, buf->ubuf,
7490 (unsigned int) buf->len);
7491 }
7492 if (!idr_is_empty(&ctx->personality_idr)) {
7493 seq_printf(m, "Personalities:\n");
7494 idr_for_each(&ctx->personality_idr, io_uring_show_cred, m);
7495 }
Jens Axboed7718a92020-02-14 22:23:12 -07007496 seq_printf(m, "PollList:\n");
7497 spin_lock_irq(&ctx->completion_lock);
7498 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
7499 struct hlist_head *list = &ctx->cancel_hash[i];
7500 struct io_kiocb *req;
7501
7502 hlist_for_each_entry(req, list, hash_node)
7503 seq_printf(m, " op=%d, task_works=%d\n", req->opcode,
7504 req->task->task_works != NULL);
7505 }
7506 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe87ce9552020-01-30 08:25:34 -07007507 mutex_unlock(&ctx->uring_lock);
7508}
7509
7510static void io_uring_show_fdinfo(struct seq_file *m, struct file *f)
7511{
7512 struct io_ring_ctx *ctx = f->private_data;
7513
7514 if (percpu_ref_tryget(&ctx->refs)) {
7515 __io_uring_show_fdinfo(ctx, m);
7516 percpu_ref_put(&ctx->refs);
7517 }
7518}
Tobias Klauserbebdb652020-02-26 18:38:32 +01007519#endif
Jens Axboe87ce9552020-01-30 08:25:34 -07007520
Jens Axboe2b188cc2019-01-07 10:46:33 -07007521static const struct file_operations io_uring_fops = {
7522 .release = io_uring_release,
Jens Axboefcb323c2019-10-24 12:39:47 -06007523 .flush = io_uring_flush,
Jens Axboe2b188cc2019-01-07 10:46:33 -07007524 .mmap = io_uring_mmap,
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007525#ifndef CONFIG_MMU
7526 .get_unmapped_area = io_uring_nommu_get_unmapped_area,
7527 .mmap_capabilities = io_uring_nommu_mmap_capabilities,
7528#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07007529 .poll = io_uring_poll,
7530 .fasync = io_uring_fasync,
Tobias Klauserbebdb652020-02-26 18:38:32 +01007531#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -07007532 .show_fdinfo = io_uring_show_fdinfo,
Tobias Klauserbebdb652020-02-26 18:38:32 +01007533#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07007534};
7535
7536static int io_allocate_scq_urings(struct io_ring_ctx *ctx,
7537 struct io_uring_params *p)
7538{
Hristo Venev75b28af2019-08-26 17:23:46 +00007539 struct io_rings *rings;
7540 size_t size, sq_array_offset;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007541
Hristo Venev75b28af2019-08-26 17:23:46 +00007542 size = rings_size(p->sq_entries, p->cq_entries, &sq_array_offset);
7543 if (size == SIZE_MAX)
7544 return -EOVERFLOW;
7545
7546 rings = io_mem_alloc(size);
7547 if (!rings)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007548 return -ENOMEM;
7549
Hristo Venev75b28af2019-08-26 17:23:46 +00007550 ctx->rings = rings;
7551 ctx->sq_array = (u32 *)((char *)rings + sq_array_offset);
7552 rings->sq_ring_mask = p->sq_entries - 1;
7553 rings->cq_ring_mask = p->cq_entries - 1;
7554 rings->sq_ring_entries = p->sq_entries;
7555 rings->cq_ring_entries = p->cq_entries;
7556 ctx->sq_mask = rings->sq_ring_mask;
7557 ctx->cq_mask = rings->cq_ring_mask;
7558 ctx->sq_entries = rings->sq_ring_entries;
7559 ctx->cq_entries = rings->cq_ring_entries;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007560
7561 size = array_size(sizeof(struct io_uring_sqe), p->sq_entries);
Jens Axboeeb065d32019-11-20 09:26:29 -07007562 if (size == SIZE_MAX) {
7563 io_mem_free(ctx->rings);
7564 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007565 return -EOVERFLOW;
Jens Axboeeb065d32019-11-20 09:26:29 -07007566 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007567
7568 ctx->sq_sqes = io_mem_alloc(size);
Jens Axboeeb065d32019-11-20 09:26:29 -07007569 if (!ctx->sq_sqes) {
7570 io_mem_free(ctx->rings);
7571 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007572 return -ENOMEM;
Jens Axboeeb065d32019-11-20 09:26:29 -07007573 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007574
Jens Axboe2b188cc2019-01-07 10:46:33 -07007575 return 0;
7576}
7577
7578/*
7579 * Allocate an anonymous fd, this is what constitutes the application
7580 * visible backing of an io_uring instance. The application mmaps this
7581 * fd to gain access to the SQ/CQ ring details. If UNIX sockets are enabled,
7582 * we have to tie this fd to a socket for file garbage collection purposes.
7583 */
7584static int io_uring_get_fd(struct io_ring_ctx *ctx)
7585{
7586 struct file *file;
7587 int ret;
7588
7589#if defined(CONFIG_UNIX)
7590 ret = sock_create_kern(&init_net, PF_UNIX, SOCK_RAW, IPPROTO_IP,
7591 &ctx->ring_sock);
7592 if (ret)
7593 return ret;
7594#endif
7595
7596 ret = get_unused_fd_flags(O_RDWR | O_CLOEXEC);
7597 if (ret < 0)
7598 goto err;
7599
7600 file = anon_inode_getfile("[io_uring]", &io_uring_fops, ctx,
7601 O_RDWR | O_CLOEXEC);
7602 if (IS_ERR(file)) {
7603 put_unused_fd(ret);
7604 ret = PTR_ERR(file);
7605 goto err;
7606 }
7607
7608#if defined(CONFIG_UNIX)
7609 ctx->ring_sock->file = file;
7610#endif
7611 fd_install(ret, file);
7612 return ret;
7613err:
7614#if defined(CONFIG_UNIX)
7615 sock_release(ctx->ring_sock);
7616 ctx->ring_sock = NULL;
7617#endif
7618 return ret;
7619}
7620
7621static int io_uring_create(unsigned entries, struct io_uring_params *p)
7622{
7623 struct user_struct *user = NULL;
7624 struct io_ring_ctx *ctx;
7625 bool account_mem;
7626 int ret;
7627
Jens Axboe8110c1a2019-12-28 15:39:54 -07007628 if (!entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007629 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07007630 if (entries > IORING_MAX_ENTRIES) {
7631 if (!(p->flags & IORING_SETUP_CLAMP))
7632 return -EINVAL;
7633 entries = IORING_MAX_ENTRIES;
7634 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007635
7636 /*
7637 * Use twice as many entries for the CQ ring. It's possible for the
7638 * application to drive a higher depth than the size of the SQ ring,
7639 * since the sqes are only used at submission time. This allows for
Jens Axboe33a107f2019-10-04 12:10:03 -06007640 * some flexibility in overcommitting a bit. If the application has
7641 * set IORING_SETUP_CQSIZE, it will have passed in the desired number
7642 * of CQ ring entries manually.
Jens Axboe2b188cc2019-01-07 10:46:33 -07007643 */
7644 p->sq_entries = roundup_pow_of_two(entries);
Jens Axboe33a107f2019-10-04 12:10:03 -06007645 if (p->flags & IORING_SETUP_CQSIZE) {
7646 /*
7647 * If IORING_SETUP_CQSIZE is set, we do the same roundup
7648 * to a power-of-two, if it isn't already. We do NOT impose
7649 * any cq vs sq ring sizing.
7650 */
Jens Axboe8110c1a2019-12-28 15:39:54 -07007651 if (p->cq_entries < p->sq_entries)
Jens Axboe33a107f2019-10-04 12:10:03 -06007652 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07007653 if (p->cq_entries > IORING_MAX_CQ_ENTRIES) {
7654 if (!(p->flags & IORING_SETUP_CLAMP))
7655 return -EINVAL;
7656 p->cq_entries = IORING_MAX_CQ_ENTRIES;
7657 }
Jens Axboe33a107f2019-10-04 12:10:03 -06007658 p->cq_entries = roundup_pow_of_two(p->cq_entries);
7659 } else {
7660 p->cq_entries = 2 * p->sq_entries;
7661 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007662
7663 user = get_uid(current_user());
7664 account_mem = !capable(CAP_IPC_LOCK);
7665
7666 if (account_mem) {
7667 ret = io_account_mem(user,
7668 ring_pages(p->sq_entries, p->cq_entries));
7669 if (ret) {
7670 free_uid(user);
7671 return ret;
7672 }
7673 }
7674
7675 ctx = io_ring_ctx_alloc(p);
7676 if (!ctx) {
7677 if (account_mem)
7678 io_unaccount_mem(user, ring_pages(p->sq_entries,
7679 p->cq_entries));
7680 free_uid(user);
7681 return -ENOMEM;
7682 }
7683 ctx->compat = in_compat_syscall();
7684 ctx->account_mem = account_mem;
7685 ctx->user = user;
Jens Axboe0b8c0ec2019-12-02 08:50:00 -07007686 ctx->creds = get_current_cred();
Jens Axboe2b188cc2019-01-07 10:46:33 -07007687
7688 ret = io_allocate_scq_urings(ctx, p);
7689 if (ret)
7690 goto err;
7691
Jens Axboe6c271ce2019-01-10 11:22:30 -07007692 ret = io_sq_offload_start(ctx, p);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007693 if (ret)
7694 goto err;
7695
Jens Axboe2b188cc2019-01-07 10:46:33 -07007696 memset(&p->sq_off, 0, sizeof(p->sq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00007697 p->sq_off.head = offsetof(struct io_rings, sq.head);
7698 p->sq_off.tail = offsetof(struct io_rings, sq.tail);
7699 p->sq_off.ring_mask = offsetof(struct io_rings, sq_ring_mask);
7700 p->sq_off.ring_entries = offsetof(struct io_rings, sq_ring_entries);
7701 p->sq_off.flags = offsetof(struct io_rings, sq_flags);
7702 p->sq_off.dropped = offsetof(struct io_rings, sq_dropped);
7703 p->sq_off.array = (char *)ctx->sq_array - (char *)ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007704
7705 memset(&p->cq_off, 0, sizeof(p->cq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00007706 p->cq_off.head = offsetof(struct io_rings, cq.head);
7707 p->cq_off.tail = offsetof(struct io_rings, cq.tail);
7708 p->cq_off.ring_mask = offsetof(struct io_rings, cq_ring_mask);
7709 p->cq_off.ring_entries = offsetof(struct io_rings, cq_ring_entries);
7710 p->cq_off.overflow = offsetof(struct io_rings, cq_overflow);
7711 p->cq_off.cqes = offsetof(struct io_rings, cqes);
Jens Axboeac90f242019-09-06 10:26:21 -06007712
Jens Axboe044c1ab2019-10-28 09:15:33 -06007713 /*
7714 * Install ring fd as the very last thing, so we don't risk someone
7715 * having closed it before we finish setup
7716 */
7717 ret = io_uring_get_fd(ctx);
7718 if (ret < 0)
7719 goto err;
7720
Jens Axboeda8c9692019-12-02 18:51:26 -07007721 p->features = IORING_FEAT_SINGLE_MMAP | IORING_FEAT_NODROP |
Jens Axboecccf0ee2020-01-27 16:34:48 -07007722 IORING_FEAT_SUBMIT_STABLE | IORING_FEAT_RW_CUR_POS |
Jens Axboed7718a92020-02-14 22:23:12 -07007723 IORING_FEAT_CUR_PERSONALITY | IORING_FEAT_FAST_POLL;
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02007724 trace_io_uring_create(ret, ctx, p->sq_entries, p->cq_entries, p->flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007725 return ret;
7726err:
7727 io_ring_ctx_wait_and_kill(ctx);
7728 return ret;
7729}
7730
7731/*
7732 * Sets up an aio uring context, and returns the fd. Applications asks for a
7733 * ring size, we return the actual sq/cq ring sizes (among other things) in the
7734 * params structure passed in.
7735 */
7736static long io_uring_setup(u32 entries, struct io_uring_params __user *params)
7737{
7738 struct io_uring_params p;
7739 long ret;
7740 int i;
7741
7742 if (copy_from_user(&p, params, sizeof(p)))
7743 return -EFAULT;
7744 for (i = 0; i < ARRAY_SIZE(p.resv); i++) {
7745 if (p.resv[i])
7746 return -EINVAL;
7747 }
7748
Jens Axboe6c271ce2019-01-10 11:22:30 -07007749 if (p.flags & ~(IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL |
Jens Axboe8110c1a2019-12-28 15:39:54 -07007750 IORING_SETUP_SQ_AFF | IORING_SETUP_CQSIZE |
Pavel Begunkov24369c22020-01-28 03:15:48 +03007751 IORING_SETUP_CLAMP | IORING_SETUP_ATTACH_WQ))
Jens Axboe2b188cc2019-01-07 10:46:33 -07007752 return -EINVAL;
7753
7754 ret = io_uring_create(entries, &p);
7755 if (ret < 0)
7756 return ret;
7757
7758 if (copy_to_user(params, &p, sizeof(p)))
7759 return -EFAULT;
7760
7761 return ret;
7762}
7763
7764SYSCALL_DEFINE2(io_uring_setup, u32, entries,
7765 struct io_uring_params __user *, params)
7766{
7767 return io_uring_setup(entries, params);
7768}
7769
Jens Axboe66f4af92020-01-16 15:36:52 -07007770static int io_probe(struct io_ring_ctx *ctx, void __user *arg, unsigned nr_args)
7771{
7772 struct io_uring_probe *p;
7773 size_t size;
7774 int i, ret;
7775
7776 size = struct_size(p, ops, nr_args);
7777 if (size == SIZE_MAX)
7778 return -EOVERFLOW;
7779 p = kzalloc(size, GFP_KERNEL);
7780 if (!p)
7781 return -ENOMEM;
7782
7783 ret = -EFAULT;
7784 if (copy_from_user(p, arg, size))
7785 goto out;
7786 ret = -EINVAL;
7787 if (memchr_inv(p, 0, size))
7788 goto out;
7789
7790 p->last_op = IORING_OP_LAST - 1;
7791 if (nr_args > IORING_OP_LAST)
7792 nr_args = IORING_OP_LAST;
7793
7794 for (i = 0; i < nr_args; i++) {
7795 p->ops[i].op = i;
7796 if (!io_op_defs[i].not_supported)
7797 p->ops[i].flags = IO_URING_OP_SUPPORTED;
7798 }
7799 p->ops_len = i;
7800
7801 ret = 0;
7802 if (copy_to_user(arg, p, size))
7803 ret = -EFAULT;
7804out:
7805 kfree(p);
7806 return ret;
7807}
7808
Jens Axboe071698e2020-01-28 10:04:42 -07007809static int io_register_personality(struct io_ring_ctx *ctx)
7810{
7811 const struct cred *creds = get_current_cred();
7812 int id;
7813
7814 id = idr_alloc_cyclic(&ctx->personality_idr, (void *) creds, 1,
7815 USHRT_MAX, GFP_KERNEL);
7816 if (id < 0)
7817 put_cred(creds);
7818 return id;
7819}
7820
7821static int io_unregister_personality(struct io_ring_ctx *ctx, unsigned id)
7822{
7823 const struct cred *old_creds;
7824
7825 old_creds = idr_remove(&ctx->personality_idr, id);
7826 if (old_creds) {
7827 put_cred(old_creds);
7828 return 0;
7829 }
7830
7831 return -EINVAL;
7832}
7833
7834static bool io_register_op_must_quiesce(int op)
7835{
7836 switch (op) {
7837 case IORING_UNREGISTER_FILES:
7838 case IORING_REGISTER_FILES_UPDATE:
7839 case IORING_REGISTER_PROBE:
7840 case IORING_REGISTER_PERSONALITY:
7841 case IORING_UNREGISTER_PERSONALITY:
7842 return false;
7843 default:
7844 return true;
7845 }
7846}
7847
Jens Axboeedafcce2019-01-09 09:16:05 -07007848static int __io_uring_register(struct io_ring_ctx *ctx, unsigned opcode,
7849 void __user *arg, unsigned nr_args)
Jens Axboeb19062a2019-04-15 10:49:38 -06007850 __releases(ctx->uring_lock)
7851 __acquires(ctx->uring_lock)
Jens Axboeedafcce2019-01-09 09:16:05 -07007852{
7853 int ret;
7854
Jens Axboe35fa71a2019-04-22 10:23:23 -06007855 /*
7856 * We're inside the ring mutex, if the ref is already dying, then
7857 * someone else killed the ctx or is already going through
7858 * io_uring_register().
7859 */
7860 if (percpu_ref_is_dying(&ctx->refs))
7861 return -ENXIO;
7862
Jens Axboe071698e2020-01-28 10:04:42 -07007863 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07007864 percpu_ref_kill(&ctx->refs);
Jens Axboeb19062a2019-04-15 10:49:38 -06007865
Jens Axboe05f3fb32019-12-09 11:22:50 -07007866 /*
7867 * Drop uring mutex before waiting for references to exit. If
7868 * another thread is currently inside io_uring_enter() it might
7869 * need to grab the uring_lock to make progress. If we hold it
7870 * here across the drain wait, then we can deadlock. It's safe
7871 * to drop the mutex here, since no new references will come in
7872 * after we've killed the percpu ref.
7873 */
7874 mutex_unlock(&ctx->uring_lock);
Jens Axboec1503682020-01-08 08:26:07 -07007875 ret = wait_for_completion_interruptible(&ctx->completions[0]);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007876 mutex_lock(&ctx->uring_lock);
Jens Axboec1503682020-01-08 08:26:07 -07007877 if (ret) {
7878 percpu_ref_resurrect(&ctx->refs);
7879 ret = -EINTR;
7880 goto out;
7881 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07007882 }
Jens Axboeedafcce2019-01-09 09:16:05 -07007883
7884 switch (opcode) {
7885 case IORING_REGISTER_BUFFERS:
7886 ret = io_sqe_buffer_register(ctx, arg, nr_args);
7887 break;
7888 case IORING_UNREGISTER_BUFFERS:
7889 ret = -EINVAL;
7890 if (arg || nr_args)
7891 break;
7892 ret = io_sqe_buffer_unregister(ctx);
7893 break;
Jens Axboe6b063142019-01-10 22:13:58 -07007894 case IORING_REGISTER_FILES:
7895 ret = io_sqe_files_register(ctx, arg, nr_args);
7896 break;
7897 case IORING_UNREGISTER_FILES:
7898 ret = -EINVAL;
7899 if (arg || nr_args)
7900 break;
7901 ret = io_sqe_files_unregister(ctx);
7902 break;
Jens Axboec3a31e62019-10-03 13:59:56 -06007903 case IORING_REGISTER_FILES_UPDATE:
7904 ret = io_sqe_files_update(ctx, arg, nr_args);
7905 break;
Jens Axboe9b402842019-04-11 11:45:41 -06007906 case IORING_REGISTER_EVENTFD:
Jens Axboef2842ab2020-01-08 11:04:00 -07007907 case IORING_REGISTER_EVENTFD_ASYNC:
Jens Axboe9b402842019-04-11 11:45:41 -06007908 ret = -EINVAL;
7909 if (nr_args != 1)
7910 break;
7911 ret = io_eventfd_register(ctx, arg);
Jens Axboef2842ab2020-01-08 11:04:00 -07007912 if (ret)
7913 break;
7914 if (opcode == IORING_REGISTER_EVENTFD_ASYNC)
7915 ctx->eventfd_async = 1;
7916 else
7917 ctx->eventfd_async = 0;
Jens Axboe9b402842019-04-11 11:45:41 -06007918 break;
7919 case IORING_UNREGISTER_EVENTFD:
7920 ret = -EINVAL;
7921 if (arg || nr_args)
7922 break;
7923 ret = io_eventfd_unregister(ctx);
7924 break;
Jens Axboe66f4af92020-01-16 15:36:52 -07007925 case IORING_REGISTER_PROBE:
7926 ret = -EINVAL;
7927 if (!arg || nr_args > 256)
7928 break;
7929 ret = io_probe(ctx, arg, nr_args);
7930 break;
Jens Axboe071698e2020-01-28 10:04:42 -07007931 case IORING_REGISTER_PERSONALITY:
7932 ret = -EINVAL;
7933 if (arg || nr_args)
7934 break;
7935 ret = io_register_personality(ctx);
7936 break;
7937 case IORING_UNREGISTER_PERSONALITY:
7938 ret = -EINVAL;
7939 if (arg)
7940 break;
7941 ret = io_unregister_personality(ctx, nr_args);
7942 break;
Jens Axboeedafcce2019-01-09 09:16:05 -07007943 default:
7944 ret = -EINVAL;
7945 break;
7946 }
7947
Jens Axboe071698e2020-01-28 10:04:42 -07007948 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07007949 /* bring the ctx back to life */
Jens Axboe05f3fb32019-12-09 11:22:50 -07007950 percpu_ref_reinit(&ctx->refs);
Jens Axboec1503682020-01-08 08:26:07 -07007951out:
7952 reinit_completion(&ctx->completions[0]);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007953 }
Jens Axboeedafcce2019-01-09 09:16:05 -07007954 return ret;
7955}
7956
7957SYSCALL_DEFINE4(io_uring_register, unsigned int, fd, unsigned int, opcode,
7958 void __user *, arg, unsigned int, nr_args)
7959{
7960 struct io_ring_ctx *ctx;
7961 long ret = -EBADF;
7962 struct fd f;
7963
7964 f = fdget(fd);
7965 if (!f.file)
7966 return -EBADF;
7967
7968 ret = -EOPNOTSUPP;
7969 if (f.file->f_op != &io_uring_fops)
7970 goto out_fput;
7971
7972 ctx = f.file->private_data;
7973
7974 mutex_lock(&ctx->uring_lock);
7975 ret = __io_uring_register(ctx, opcode, arg, nr_args);
7976 mutex_unlock(&ctx->uring_lock);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02007977 trace_io_uring_register(ctx, opcode, ctx->nr_user_files, ctx->nr_user_bufs,
7978 ctx->cq_ev_fd != NULL, ret);
Jens Axboeedafcce2019-01-09 09:16:05 -07007979out_fput:
7980 fdput(f);
7981 return ret;
7982}
7983
Jens Axboe2b188cc2019-01-07 10:46:33 -07007984static int __init io_uring_init(void)
7985{
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01007986#define __BUILD_BUG_VERIFY_ELEMENT(stype, eoffset, etype, ename) do { \
7987 BUILD_BUG_ON(offsetof(stype, ename) != eoffset); \
7988 BUILD_BUG_ON(sizeof(etype) != sizeof_field(stype, ename)); \
7989} while (0)
7990
7991#define BUILD_BUG_SQE_ELEM(eoffset, etype, ename) \
7992 __BUILD_BUG_VERIFY_ELEMENT(struct io_uring_sqe, eoffset, etype, ename)
7993 BUILD_BUG_ON(sizeof(struct io_uring_sqe) != 64);
7994 BUILD_BUG_SQE_ELEM(0, __u8, opcode);
7995 BUILD_BUG_SQE_ELEM(1, __u8, flags);
7996 BUILD_BUG_SQE_ELEM(2, __u16, ioprio);
7997 BUILD_BUG_SQE_ELEM(4, __s32, fd);
7998 BUILD_BUG_SQE_ELEM(8, __u64, off);
7999 BUILD_BUG_SQE_ELEM(8, __u64, addr2);
8000 BUILD_BUG_SQE_ELEM(16, __u64, addr);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03008001 BUILD_BUG_SQE_ELEM(16, __u64, splice_off_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008002 BUILD_BUG_SQE_ELEM(24, __u32, len);
8003 BUILD_BUG_SQE_ELEM(28, __kernel_rwf_t, rw_flags);
8004 BUILD_BUG_SQE_ELEM(28, /* compat */ int, rw_flags);
8005 BUILD_BUG_SQE_ELEM(28, /* compat */ __u32, rw_flags);
8006 BUILD_BUG_SQE_ELEM(28, __u32, fsync_flags);
8007 BUILD_BUG_SQE_ELEM(28, __u16, poll_events);
8008 BUILD_BUG_SQE_ELEM(28, __u32, sync_range_flags);
8009 BUILD_BUG_SQE_ELEM(28, __u32, msg_flags);
8010 BUILD_BUG_SQE_ELEM(28, __u32, timeout_flags);
8011 BUILD_BUG_SQE_ELEM(28, __u32, accept_flags);
8012 BUILD_BUG_SQE_ELEM(28, __u32, cancel_flags);
8013 BUILD_BUG_SQE_ELEM(28, __u32, open_flags);
8014 BUILD_BUG_SQE_ELEM(28, __u32, statx_flags);
8015 BUILD_BUG_SQE_ELEM(28, __u32, fadvise_advice);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03008016 BUILD_BUG_SQE_ELEM(28, __u32, splice_flags);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008017 BUILD_BUG_SQE_ELEM(32, __u64, user_data);
8018 BUILD_BUG_SQE_ELEM(40, __u16, buf_index);
8019 BUILD_BUG_SQE_ELEM(42, __u16, personality);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03008020 BUILD_BUG_SQE_ELEM(44, __s32, splice_fd_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008021
Jens Axboed3656342019-12-18 09:50:26 -07008022 BUILD_BUG_ON(ARRAY_SIZE(io_op_defs) != IORING_OP_LAST);
Jens Axboe84557872020-03-03 15:28:17 -07008023 BUILD_BUG_ON(__REQ_F_LAST_BIT >= 8 * sizeof(int));
Jens Axboe2b188cc2019-01-07 10:46:33 -07008024 req_cachep = KMEM_CACHE(io_kiocb, SLAB_HWCACHE_ALIGN | SLAB_PANIC);
8025 return 0;
8026};
8027__initcall(io_uring_init);