blob: 2d54d33659256513ec9a0e91d5b848623eb21bfb [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 /*
Stefano Garzarella0d9b5b32020-05-15 18:38:04 +0200145 * Runtime SQ flags
Stefan Bühler1e84b972019-04-24 23:54:16 +0200146 *
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 /*
Stefano Garzarella0d9b5b32020-05-15 18:38:04 +0200155 * Runtime CQ flags
156 *
157 * Written by the application, shouldn't be modified by the
158 * kernel.
159 */
160 u32 cq_flags;
161 /*
Stefan Bühler1e84b972019-04-24 23:54:16 +0200162 * Number of completion events lost because the queue was full;
163 * this should be avoided by the application by making sure
LimingWu0b4295b2019-12-05 20:18:18 +0800164 * there are not more requests pending than there is space in
Stefan Bühler1e84b972019-04-24 23:54:16 +0200165 * the completion queue.
166 *
167 * Written by the kernel, shouldn't be modified by the
168 * application (i.e. get number of "new events" by comparing to
169 * cached value).
170 *
171 * As completion events come in out of order this counter is not
172 * ordered with any other data.
173 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000174 u32 cq_overflow;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200175 /*
176 * Ring buffer of completion events.
177 *
178 * The kernel writes completion events fresh every time they are
179 * produced, so the application is allowed to modify pending
180 * entries.
181 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000182 struct io_uring_cqe cqes[] ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700183};
184
Jens Axboeedafcce2019-01-09 09:16:05 -0700185struct io_mapped_ubuf {
186 u64 ubuf;
187 size_t len;
188 struct bio_vec *bvec;
189 unsigned int nr_bvecs;
190};
191
Jens Axboe65e19f52019-10-26 07:20:21 -0600192struct fixed_file_table {
193 struct file **files;
Jens Axboe31b51512019-01-18 22:56:34 -0700194};
195
Xiaoguang Wang05589552020-03-31 14:05:18 +0800196struct fixed_file_ref_node {
197 struct percpu_ref refs;
198 struct list_head node;
199 struct list_head file_list;
200 struct fixed_file_data *file_data;
Jens Axboe4a38aed22020-05-14 17:21:15 -0600201 struct llist_node llist;
Xiaoguang Wang05589552020-03-31 14:05:18 +0800202};
203
Jens Axboe05f3fb32019-12-09 11:22:50 -0700204struct fixed_file_data {
205 struct fixed_file_table *table;
206 struct io_ring_ctx *ctx;
207
Xiaoguang Wang05589552020-03-31 14:05:18 +0800208 struct percpu_ref *cur_refs;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700209 struct percpu_ref refs;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700210 struct completion done;
Xiaoguang Wang05589552020-03-31 14:05:18 +0800211 struct list_head ref_list;
212 spinlock_t lock;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700213};
214
Jens Axboe5a2e7452020-02-23 16:23:11 -0700215struct io_buffer {
216 struct list_head list;
217 __u64 addr;
218 __s32 len;
219 __u16 bid;
220};
221
Jens Axboe2b188cc2019-01-07 10:46:33 -0700222struct io_ring_ctx {
223 struct {
224 struct percpu_ref refs;
225 } ____cacheline_aligned_in_smp;
226
227 struct {
228 unsigned int flags;
Randy Dunlape1d85332020-02-05 20:57:10 -0800229 unsigned int compat: 1;
230 unsigned int account_mem: 1;
231 unsigned int cq_overflow_flushed: 1;
232 unsigned int drain_next: 1;
233 unsigned int eventfd_async: 1;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700234
Hristo Venev75b28af2019-08-26 17:23:46 +0000235 /*
236 * Ring buffer of indices into array of io_uring_sqe, which is
237 * mmapped by the application using the IORING_OFF_SQES offset.
238 *
239 * This indirection could e.g. be used to assign fixed
240 * io_uring_sqe entries to operations and only submit them to
241 * the queue when needed.
242 *
243 * The kernel modifies neither the indices array nor the entries
244 * array.
245 */
246 u32 *sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700247 unsigned cached_sq_head;
248 unsigned sq_entries;
249 unsigned sq_mask;
Jens Axboe6c271ce2019-01-10 11:22:30 -0700250 unsigned sq_thread_idle;
Jens Axboe498ccd92019-10-25 10:04:25 -0600251 unsigned cached_sq_dropped;
Jens Axboe206aefd2019-11-07 18:27:42 -0700252 atomic_t cached_cq_overflow;
Jens Axboead3eb2c2019-12-18 17:12:20 -0700253 unsigned long sq_check_overflow;
Jens Axboede0617e2019-04-06 21:51:27 -0600254
255 struct list_head defer_list;
Jens Axboe5262f562019-09-17 12:26:57 -0600256 struct list_head timeout_list;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700257 struct list_head cq_overflow_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700258
Jens Axboefcb323c2019-10-24 12:39:47 -0600259 wait_queue_head_t inflight_wait;
Jens Axboead3eb2c2019-12-18 17:12:20 -0700260 struct io_uring_sqe *sq_sqes;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700261 } ____cacheline_aligned_in_smp;
262
Hristo Venev75b28af2019-08-26 17:23:46 +0000263 struct io_rings *rings;
264
Jens Axboe2b188cc2019-01-07 10:46:33 -0700265 /* IO offload */
Jens Axboe561fb042019-10-24 07:25:42 -0600266 struct io_wq *io_wq;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700267 struct task_struct *sqo_thread; /* if using sq thread polling */
268 struct mm_struct *sqo_mm;
269 wait_queue_head_t sqo_wait;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700270
Jens Axboe6b063142019-01-10 22:13:58 -0700271 /*
272 * If used, fixed file set. Writers must ensure that ->refs is dead,
273 * readers must ensure that ->refs is alive as long as the file* is
274 * used. Only updated through io_uring_register(2).
275 */
Jens Axboe05f3fb32019-12-09 11:22:50 -0700276 struct fixed_file_data *file_data;
Jens Axboe6b063142019-01-10 22:13:58 -0700277 unsigned nr_user_files;
Pavel Begunkovb14cca02020-01-17 04:45:59 +0300278 int ring_fd;
279 struct file *ring_file;
Jens Axboe6b063142019-01-10 22:13:58 -0700280
Jens Axboeedafcce2019-01-09 09:16:05 -0700281 /* if used, fixed mapped user buffers */
282 unsigned nr_user_bufs;
283 struct io_mapped_ubuf *user_bufs;
284
Jens Axboe2b188cc2019-01-07 10:46:33 -0700285 struct user_struct *user;
286
Jens Axboe0b8c0ec2019-12-02 08:50:00 -0700287 const struct cred *creds;
Jens Axboe181e4482019-11-25 08:52:30 -0700288
Jens Axboe0f158b42020-05-14 17:18:39 -0600289 struct completion ref_comp;
290 struct completion sq_thread_comp;
Jens Axboe206aefd2019-11-07 18:27:42 -0700291
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700292 /* if all else fails... */
293 struct io_kiocb *fallback_req;
294
Jens Axboe206aefd2019-11-07 18:27:42 -0700295#if defined(CONFIG_UNIX)
296 struct socket *ring_sock;
297#endif
298
Jens Axboe5a2e7452020-02-23 16:23:11 -0700299 struct idr io_buffer_idr;
300
Jens Axboe071698e2020-01-28 10:04:42 -0700301 struct idr personality_idr;
302
Jens Axboe206aefd2019-11-07 18:27:42 -0700303 struct {
304 unsigned cached_cq_tail;
305 unsigned cq_entries;
306 unsigned cq_mask;
307 atomic_t cq_timeouts;
Jens Axboead3eb2c2019-12-18 17:12:20 -0700308 unsigned long cq_check_overflow;
Jens Axboe206aefd2019-11-07 18:27:42 -0700309 struct wait_queue_head cq_wait;
310 struct fasync_struct *cq_fasync;
311 struct eventfd_ctx *cq_ev_fd;
312 } ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700313
314 struct {
315 struct mutex uring_lock;
316 wait_queue_head_t wait;
317 } ____cacheline_aligned_in_smp;
318
319 struct {
320 spinlock_t completion_lock;
Jens Axboee94f1412019-12-19 12:06:02 -0700321
Jens Axboedef596e2019-01-09 08:59:42 -0700322 /*
323 * ->poll_list is protected by the ctx->uring_lock for
324 * io_uring instances that don't use IORING_SETUP_SQPOLL.
325 * For SQPOLL, only the single threaded io_sq_thread() will
326 * manipulate the list, hence no extra locking is needed there.
327 */
328 struct list_head poll_list;
Jens Axboe78076bb2019-12-04 19:56:40 -0700329 struct hlist_head *cancel_hash;
330 unsigned cancel_hash_bits;
Jens Axboee94f1412019-12-19 12:06:02 -0700331 bool poll_multi_file;
Jens Axboefcb323c2019-10-24 12:39:47 -0600332
333 spinlock_t inflight_lock;
334 struct list_head inflight_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700335 } ____cacheline_aligned_in_smp;
Jens Axboe85faa7b2020-04-09 18:14:00 -0600336
Jens Axboe4a38aed22020-05-14 17:21:15 -0600337 struct delayed_work file_put_work;
338 struct llist_head file_put_llist;
339
Jens Axboe85faa7b2020-04-09 18:14:00 -0600340 struct work_struct exit_work;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700341};
342
Jens Axboe09bb8392019-03-13 12:39:28 -0600343/*
344 * First field must be the file pointer in all the
345 * iocb unions! See also 'struct kiocb' in <linux/fs.h>
346 */
Jens Axboe221c5eb2019-01-17 09:41:58 -0700347struct io_poll_iocb {
348 struct file *file;
Jens Axboe0969e782019-12-17 18:40:57 -0700349 union {
350 struct wait_queue_head *head;
351 u64 addr;
352 };
Jens Axboe221c5eb2019-01-17 09:41:58 -0700353 __poll_t events;
Jens Axboe8c838782019-03-12 15:48:16 -0600354 bool done;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700355 bool canceled;
Jens Axboe392edb42019-12-09 17:52:20 -0700356 struct wait_queue_entry wait;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700357};
358
Jens Axboeb5dba592019-12-11 14:02:38 -0700359struct io_close {
360 struct file *file;
361 struct file *put_file;
362 int fd;
363};
364
Jens Axboead8a48a2019-11-15 08:49:11 -0700365struct io_timeout_data {
366 struct io_kiocb *req;
367 struct hrtimer timer;
368 struct timespec64 ts;
369 enum hrtimer_mode mode;
370};
371
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700372struct io_accept {
373 struct file *file;
374 struct sockaddr __user *addr;
375 int __user *addr_len;
376 int flags;
Jens Axboe09952e32020-03-19 20:16:56 -0600377 unsigned long nofile;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700378};
379
380struct io_sync {
381 struct file *file;
382 loff_t len;
383 loff_t off;
384 int flags;
Jens Axboed63d1b52019-12-10 10:38:56 -0700385 int mode;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700386};
387
Jens Axboefbf23842019-12-17 18:45:56 -0700388struct io_cancel {
389 struct file *file;
390 u64 addr;
391};
392
Jens Axboeb29472e2019-12-17 18:50:29 -0700393struct io_timeout {
394 struct file *file;
395 u64 addr;
396 int flags;
Pavel Begunkovb55ce732020-04-15 00:39:49 +0300397 u32 count;
Jens Axboeb29472e2019-12-17 18:50:29 -0700398};
399
Jens Axboe9adbd452019-12-20 08:45:55 -0700400struct io_rw {
401 /* NOTE: kiocb has the file as the first member, so don't do it here */
402 struct kiocb kiocb;
403 u64 addr;
404 u64 len;
405};
406
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700407struct io_connect {
408 struct file *file;
409 struct sockaddr __user *addr;
410 int addr_len;
411};
412
Jens Axboee47293f2019-12-20 08:58:21 -0700413struct io_sr_msg {
414 struct file *file;
Jens Axboefddafac2020-01-04 20:19:44 -0700415 union {
416 struct user_msghdr __user *msg;
417 void __user *buf;
418 };
Jens Axboee47293f2019-12-20 08:58:21 -0700419 int msg_flags;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700420 int bgid;
Jens Axboefddafac2020-01-04 20:19:44 -0700421 size_t len;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700422 struct io_buffer *kbuf;
Jens Axboee47293f2019-12-20 08:58:21 -0700423};
424
Jens Axboe15b71ab2019-12-11 11:20:36 -0700425struct io_open {
426 struct file *file;
427 int dfd;
Jens Axboeeddc7ef2019-12-13 21:18:10 -0700428 union {
Jens Axboeeddc7ef2019-12-13 21:18:10 -0700429 unsigned mask;
430 };
Jens Axboe15b71ab2019-12-11 11:20:36 -0700431 struct filename *filename;
Jens Axboeeddc7ef2019-12-13 21:18:10 -0700432 struct statx __user *buffer;
Jens Axboec12cedf2020-01-08 17:41:21 -0700433 struct open_how how;
Jens Axboe4022e7a2020-03-19 19:23:18 -0600434 unsigned long nofile;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700435};
436
Jens Axboe05f3fb32019-12-09 11:22:50 -0700437struct io_files_update {
438 struct file *file;
439 u64 arg;
440 u32 nr_args;
441 u32 offset;
442};
443
Jens Axboe4840e412019-12-25 22:03:45 -0700444struct io_fadvise {
445 struct file *file;
446 u64 offset;
447 u32 len;
448 u32 advice;
449};
450
Jens Axboec1ca7572019-12-25 22:18:28 -0700451struct io_madvise {
452 struct file *file;
453 u64 addr;
454 u32 len;
455 u32 advice;
456};
457
Jens Axboe3e4827b2020-01-08 15:18:09 -0700458struct io_epoll {
459 struct file *file;
460 int epfd;
461 int op;
462 int fd;
463 struct epoll_event event;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700464};
465
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300466struct io_splice {
467 struct file *file_out;
468 struct file *file_in;
469 loff_t off_out;
470 loff_t off_in;
471 u64 len;
472 unsigned int flags;
473};
474
Jens Axboeddf0322d2020-02-23 16:41:33 -0700475struct io_provide_buf {
476 struct file *file;
477 __u64 addr;
478 __s32 len;
479 __u32 bgid;
480 __u16 nbufs;
481 __u16 bid;
482};
483
Jens Axboef499a022019-12-02 16:28:46 -0700484struct io_async_connect {
485 struct sockaddr_storage address;
486};
487
Jens Axboe03b12302019-12-02 18:50:25 -0700488struct io_async_msghdr {
489 struct iovec fast_iov[UIO_FASTIOV];
490 struct iovec *iov;
491 struct sockaddr __user *uaddr;
492 struct msghdr msg;
Jens Axboeb5379162020-02-09 11:29:15 -0700493 struct sockaddr_storage addr;
Jens Axboe03b12302019-12-02 18:50:25 -0700494};
495
Jens Axboef67676d2019-12-02 11:03:47 -0700496struct io_async_rw {
497 struct iovec fast_iov[UIO_FASTIOV];
498 struct iovec *iov;
499 ssize_t nr_segs;
500 ssize_t size;
501};
502
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700503struct io_async_ctx {
Jens Axboef67676d2019-12-02 11:03:47 -0700504 union {
505 struct io_async_rw rw;
Jens Axboe03b12302019-12-02 18:50:25 -0700506 struct io_async_msghdr msg;
Jens Axboef499a022019-12-02 16:28:46 -0700507 struct io_async_connect connect;
Jens Axboe2d283902019-12-04 11:08:05 -0700508 struct io_timeout_data timeout;
Jens Axboef67676d2019-12-02 11:03:47 -0700509 };
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700510};
511
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300512enum {
513 REQ_F_FIXED_FILE_BIT = IOSQE_FIXED_FILE_BIT,
514 REQ_F_IO_DRAIN_BIT = IOSQE_IO_DRAIN_BIT,
515 REQ_F_LINK_BIT = IOSQE_IO_LINK_BIT,
516 REQ_F_HARDLINK_BIT = IOSQE_IO_HARDLINK_BIT,
517 REQ_F_FORCE_ASYNC_BIT = IOSQE_ASYNC_BIT,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700518 REQ_F_BUFFER_SELECT_BIT = IOSQE_BUFFER_SELECT_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300519
Pavel Begunkovdea3b492020-04-12 02:05:04 +0300520 REQ_F_LINK_HEAD_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300521 REQ_F_LINK_NEXT_BIT,
522 REQ_F_FAIL_LINK_BIT,
523 REQ_F_INFLIGHT_BIT,
524 REQ_F_CUR_POS_BIT,
525 REQ_F_NOWAIT_BIT,
526 REQ_F_IOPOLL_COMPLETED_BIT,
527 REQ_F_LINK_TIMEOUT_BIT,
528 REQ_F_TIMEOUT_BIT,
529 REQ_F_ISREG_BIT,
530 REQ_F_MUST_PUNT_BIT,
531 REQ_F_TIMEOUT_NOSEQ_BIT,
532 REQ_F_COMP_LOCKED_BIT,
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300533 REQ_F_NEED_CLEANUP_BIT,
Jens Axboe2ca10252020-02-13 17:17:35 -0700534 REQ_F_OVERFLOW_BIT,
Jens Axboed7718a92020-02-14 22:23:12 -0700535 REQ_F_POLLED_BIT,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700536 REQ_F_BUFFER_SELECTED_BIT,
Jens Axboe5b0bbee2020-04-27 10:41:22 -0600537 REQ_F_NO_FILE_TABLE_BIT,
Jens Axboe84557872020-03-03 15:28:17 -0700538
539 /* not a real bit, just to check we're not overflowing the space */
540 __REQ_F_LAST_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300541};
542
543enum {
544 /* ctx owns file */
545 REQ_F_FIXED_FILE = BIT(REQ_F_FIXED_FILE_BIT),
546 /* drain existing IO first */
547 REQ_F_IO_DRAIN = BIT(REQ_F_IO_DRAIN_BIT),
548 /* linked sqes */
549 REQ_F_LINK = BIT(REQ_F_LINK_BIT),
550 /* doesn't sever on completion < 0 */
551 REQ_F_HARDLINK = BIT(REQ_F_HARDLINK_BIT),
552 /* IOSQE_ASYNC */
553 REQ_F_FORCE_ASYNC = BIT(REQ_F_FORCE_ASYNC_BIT),
Jens Axboebcda7ba2020-02-23 16:42:51 -0700554 /* IOSQE_BUFFER_SELECT */
555 REQ_F_BUFFER_SELECT = BIT(REQ_F_BUFFER_SELECT_BIT),
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300556
Pavel Begunkovdea3b492020-04-12 02:05:04 +0300557 /* head of a link */
558 REQ_F_LINK_HEAD = BIT(REQ_F_LINK_HEAD_BIT),
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300559 /* already grabbed next link */
560 REQ_F_LINK_NEXT = BIT(REQ_F_LINK_NEXT_BIT),
561 /* fail rest of links */
562 REQ_F_FAIL_LINK = BIT(REQ_F_FAIL_LINK_BIT),
563 /* on inflight list */
564 REQ_F_INFLIGHT = BIT(REQ_F_INFLIGHT_BIT),
565 /* read/write uses file position */
566 REQ_F_CUR_POS = BIT(REQ_F_CUR_POS_BIT),
567 /* must not punt to workers */
568 REQ_F_NOWAIT = BIT(REQ_F_NOWAIT_BIT),
569 /* polled IO has completed */
570 REQ_F_IOPOLL_COMPLETED = BIT(REQ_F_IOPOLL_COMPLETED_BIT),
571 /* has linked timeout */
572 REQ_F_LINK_TIMEOUT = BIT(REQ_F_LINK_TIMEOUT_BIT),
573 /* timeout request */
574 REQ_F_TIMEOUT = BIT(REQ_F_TIMEOUT_BIT),
575 /* regular file */
576 REQ_F_ISREG = BIT(REQ_F_ISREG_BIT),
577 /* must be punted even for NONBLOCK */
578 REQ_F_MUST_PUNT = BIT(REQ_F_MUST_PUNT_BIT),
579 /* no timeout sequence */
580 REQ_F_TIMEOUT_NOSEQ = BIT(REQ_F_TIMEOUT_NOSEQ_BIT),
581 /* completion under lock */
582 REQ_F_COMP_LOCKED = BIT(REQ_F_COMP_LOCKED_BIT),
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300583 /* needs cleanup */
584 REQ_F_NEED_CLEANUP = BIT(REQ_F_NEED_CLEANUP_BIT),
Jens Axboe2ca10252020-02-13 17:17:35 -0700585 /* in overflow list */
586 REQ_F_OVERFLOW = BIT(REQ_F_OVERFLOW_BIT),
Jens Axboed7718a92020-02-14 22:23:12 -0700587 /* already went through poll handler */
588 REQ_F_POLLED = BIT(REQ_F_POLLED_BIT),
Jens Axboebcda7ba2020-02-23 16:42:51 -0700589 /* buffer already selected */
590 REQ_F_BUFFER_SELECTED = BIT(REQ_F_BUFFER_SELECTED_BIT),
Jens Axboe5b0bbee2020-04-27 10:41:22 -0600591 /* doesn't need file table for this request */
592 REQ_F_NO_FILE_TABLE = BIT(REQ_F_NO_FILE_TABLE_BIT),
Jens Axboed7718a92020-02-14 22:23:12 -0700593};
594
595struct async_poll {
596 struct io_poll_iocb poll;
597 struct io_wq_work work;
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300598};
599
Jens Axboe09bb8392019-03-13 12:39:28 -0600600/*
601 * NOTE! Each of the iocb union members has the file pointer
602 * as the first entry in their struct definition. So you can
603 * access the file pointer through any of the sub-structs,
604 * or directly as just 'ki_filp' in this struct.
605 */
Jens Axboe2b188cc2019-01-07 10:46:33 -0700606struct io_kiocb {
Jens Axboe221c5eb2019-01-17 09:41:58 -0700607 union {
Jens Axboe09bb8392019-03-13 12:39:28 -0600608 struct file *file;
Jens Axboe9adbd452019-12-20 08:45:55 -0700609 struct io_rw rw;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700610 struct io_poll_iocb poll;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700611 struct io_accept accept;
612 struct io_sync sync;
Jens Axboefbf23842019-12-17 18:45:56 -0700613 struct io_cancel cancel;
Jens Axboeb29472e2019-12-17 18:50:29 -0700614 struct io_timeout timeout;
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700615 struct io_connect connect;
Jens Axboee47293f2019-12-20 08:58:21 -0700616 struct io_sr_msg sr_msg;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700617 struct io_open open;
Jens Axboeb5dba592019-12-11 14:02:38 -0700618 struct io_close close;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700619 struct io_files_update files_update;
Jens Axboe4840e412019-12-25 22:03:45 -0700620 struct io_fadvise fadvise;
Jens Axboec1ca7572019-12-25 22:18:28 -0700621 struct io_madvise madvise;
Jens Axboe3e4827b2020-01-08 15:18:09 -0700622 struct io_epoll epoll;
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300623 struct io_splice splice;
Jens Axboeddf0322d2020-02-23 16:41:33 -0700624 struct io_provide_buf pbuf;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700625 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700626
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700627 struct io_async_ctx *io;
Pavel Begunkovc398ecb2020-04-09 08:17:59 +0300628 int cflags;
Jens Axboed625c6e2019-12-17 19:53:05 -0700629 u8 opcode;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700630
631 struct io_ring_ctx *ctx;
Jens Axboed7718a92020-02-14 22:23:12 -0700632 struct list_head list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700633 unsigned int flags;
Jens Axboec16361c2019-01-17 08:39:48 -0700634 refcount_t refs;
Jens Axboe3537b6a2020-04-03 11:19:06 -0600635 struct task_struct *task;
636 unsigned long fsize;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700637 u64 user_data;
Jens Axboe9e645e112019-05-10 16:07:28 -0600638 u32 result;
Jens Axboede0617e2019-04-06 21:51:27 -0600639 u32 sequence;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700640
Jens Axboed7718a92020-02-14 22:23:12 -0700641 struct list_head link_list;
642
Jens Axboefcb323c2019-10-24 12:39:47 -0600643 struct list_head inflight_entry;
644
Xiaoguang Wang05589552020-03-31 14:05:18 +0800645 struct percpu_ref *fixed_file_refs;
646
Jens Axboeb41e9852020-02-17 09:52:41 -0700647 union {
648 /*
649 * Only commands that never go async can use the below fields,
Jens Axboed7718a92020-02-14 22:23:12 -0700650 * obviously. Right now only IORING_OP_POLL_ADD uses them, and
651 * async armed poll handlers for regular commands. The latter
652 * restore the work, if needed.
Jens Axboeb41e9852020-02-17 09:52:41 -0700653 */
654 struct {
Jens Axboeb41e9852020-02-17 09:52:41 -0700655 struct callback_head task_work;
Jens Axboed7718a92020-02-14 22:23:12 -0700656 struct hlist_node hash_node;
657 struct async_poll *apoll;
Jens Axboeb41e9852020-02-17 09:52:41 -0700658 };
659 struct io_wq_work work;
660 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700661};
662
663#define IO_PLUG_THRESHOLD 2
Jens Axboedef596e2019-01-09 08:59:42 -0700664#define IO_IOPOLL_BATCH 8
Jens Axboe2b188cc2019-01-07 10:46:33 -0700665
Jens Axboe9a56a232019-01-09 09:06:50 -0700666struct io_submit_state {
667 struct blk_plug plug;
668
669 /*
Jens Axboe2579f912019-01-09 09:10:43 -0700670 * io_kiocb alloc cache
671 */
672 void *reqs[IO_IOPOLL_BATCH];
Pavel Begunkov6c8a3132020-02-01 03:58:00 +0300673 unsigned int free_reqs;
Jens Axboe2579f912019-01-09 09:10:43 -0700674
675 /*
Jens Axboe9a56a232019-01-09 09:06:50 -0700676 * File reference cache
677 */
678 struct file *file;
679 unsigned int fd;
680 unsigned int has_refs;
681 unsigned int used_refs;
682 unsigned int ios_left;
683};
684
Jens Axboed3656342019-12-18 09:50:26 -0700685struct io_op_def {
686 /* needs req->io allocated for deferral/async */
687 unsigned async_ctx : 1;
688 /* needs current->mm setup, does mm access */
689 unsigned needs_mm : 1;
690 /* needs req->file assigned */
691 unsigned needs_file : 1;
Jens Axboed3656342019-12-18 09:50:26 -0700692 /* hash wq insertion if file is a regular file */
693 unsigned hash_reg_file : 1;
694 /* unbound wq insertion if file is a non-regular file */
695 unsigned unbound_nonreg_file : 1;
Jens Axboe66f4af92020-01-16 15:36:52 -0700696 /* opcode is not supported by this kernel */
697 unsigned not_supported : 1;
Jens Axboef86cd202020-01-29 13:46:44 -0700698 /* needs file table */
699 unsigned file_table : 1;
Jens Axboeff002b32020-02-07 16:05:21 -0700700 /* needs ->fs */
701 unsigned needs_fs : 1;
Jens Axboe8a727582020-02-20 09:59:44 -0700702 /* set if opcode supports polled "wait" */
703 unsigned pollin : 1;
704 unsigned pollout : 1;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700705 /* op supports buffer selection */
706 unsigned buffer_select : 1;
Jens Axboed3656342019-12-18 09:50:26 -0700707};
708
709static const struct io_op_def io_op_defs[] = {
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300710 [IORING_OP_NOP] = {},
711 [IORING_OP_READV] = {
Jens Axboed3656342019-12-18 09:50:26 -0700712 .async_ctx = 1,
713 .needs_mm = 1,
714 .needs_file = 1,
715 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700716 .pollin = 1,
Jens Axboe4d954c22020-02-27 07:31:19 -0700717 .buffer_select = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700718 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300719 [IORING_OP_WRITEV] = {
Jens Axboed3656342019-12-18 09:50:26 -0700720 .async_ctx = 1,
721 .needs_mm = 1,
722 .needs_file = 1,
723 .hash_reg_file = 1,
724 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700725 .pollout = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700726 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300727 [IORING_OP_FSYNC] = {
Jens Axboed3656342019-12-18 09:50:26 -0700728 .needs_file = 1,
729 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300730 [IORING_OP_READ_FIXED] = {
Jens Axboed3656342019-12-18 09:50:26 -0700731 .needs_file = 1,
732 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700733 .pollin = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700734 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300735 [IORING_OP_WRITE_FIXED] = {
Jens Axboed3656342019-12-18 09:50:26 -0700736 .needs_file = 1,
737 .hash_reg_file = 1,
738 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700739 .pollout = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700740 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300741 [IORING_OP_POLL_ADD] = {
Jens Axboed3656342019-12-18 09:50:26 -0700742 .needs_file = 1,
743 .unbound_nonreg_file = 1,
744 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300745 [IORING_OP_POLL_REMOVE] = {},
746 [IORING_OP_SYNC_FILE_RANGE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700747 .needs_file = 1,
748 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300749 [IORING_OP_SENDMSG] = {
Jens Axboed3656342019-12-18 09:50:26 -0700750 .async_ctx = 1,
751 .needs_mm = 1,
752 .needs_file = 1,
753 .unbound_nonreg_file = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700754 .needs_fs = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700755 .pollout = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700756 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300757 [IORING_OP_RECVMSG] = {
Jens Axboed3656342019-12-18 09:50:26 -0700758 .async_ctx = 1,
759 .needs_mm = 1,
760 .needs_file = 1,
761 .unbound_nonreg_file = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700762 .needs_fs = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700763 .pollin = 1,
Jens Axboe52de1fe2020-02-27 10:15:42 -0700764 .buffer_select = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700765 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300766 [IORING_OP_TIMEOUT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700767 .async_ctx = 1,
768 .needs_mm = 1,
769 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300770 [IORING_OP_TIMEOUT_REMOVE] = {},
771 [IORING_OP_ACCEPT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700772 .needs_mm = 1,
773 .needs_file = 1,
774 .unbound_nonreg_file = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700775 .file_table = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700776 .pollin = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700777 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300778 [IORING_OP_ASYNC_CANCEL] = {},
779 [IORING_OP_LINK_TIMEOUT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700780 .async_ctx = 1,
781 .needs_mm = 1,
782 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300783 [IORING_OP_CONNECT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700784 .async_ctx = 1,
785 .needs_mm = 1,
786 .needs_file = 1,
787 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700788 .pollout = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700789 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300790 [IORING_OP_FALLOCATE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700791 .needs_file = 1,
792 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300793 [IORING_OP_OPENAT] = {
Jens Axboef86cd202020-01-29 13:46:44 -0700794 .file_table = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700795 .needs_fs = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700796 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300797 [IORING_OP_CLOSE] = {
Jens Axboef86cd202020-01-29 13:46:44 -0700798 .file_table = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700799 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300800 [IORING_OP_FILES_UPDATE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700801 .needs_mm = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700802 .file_table = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700803 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300804 [IORING_OP_STATX] = {
Jens Axboed3656342019-12-18 09:50:26 -0700805 .needs_mm = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700806 .needs_fs = 1,
Jens Axboe5b0bbee2020-04-27 10:41:22 -0600807 .file_table = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700808 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300809 [IORING_OP_READ] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -0700810 .needs_mm = 1,
811 .needs_file = 1,
812 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700813 .pollin = 1,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700814 .buffer_select = 1,
Jens Axboe3a6820f2019-12-22 15:19:35 -0700815 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300816 [IORING_OP_WRITE] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -0700817 .needs_mm = 1,
818 .needs_file = 1,
819 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700820 .pollout = 1,
Jens Axboe3a6820f2019-12-22 15:19:35 -0700821 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300822 [IORING_OP_FADVISE] = {
Jens Axboe4840e412019-12-25 22:03:45 -0700823 .needs_file = 1,
824 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300825 [IORING_OP_MADVISE] = {
Jens Axboec1ca7572019-12-25 22:18:28 -0700826 .needs_mm = 1,
827 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300828 [IORING_OP_SEND] = {
Jens Axboefddafac2020-01-04 20:19:44 -0700829 .needs_mm = 1,
830 .needs_file = 1,
831 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700832 .pollout = 1,
Jens Axboefddafac2020-01-04 20:19:44 -0700833 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300834 [IORING_OP_RECV] = {
Jens Axboefddafac2020-01-04 20:19:44 -0700835 .needs_mm = 1,
836 .needs_file = 1,
837 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700838 .pollin = 1,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700839 .buffer_select = 1,
Jens Axboefddafac2020-01-04 20:19:44 -0700840 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300841 [IORING_OP_OPENAT2] = {
Jens Axboef86cd202020-01-29 13:46:44 -0700842 .file_table = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700843 .needs_fs = 1,
Jens Axboecebdb982020-01-08 17:59:24 -0700844 },
Jens Axboe3e4827b2020-01-08 15:18:09 -0700845 [IORING_OP_EPOLL_CTL] = {
846 .unbound_nonreg_file = 1,
847 .file_table = 1,
848 },
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300849 [IORING_OP_SPLICE] = {
850 .needs_file = 1,
851 .hash_reg_file = 1,
852 .unbound_nonreg_file = 1,
Jens Axboeddf0322d2020-02-23 16:41:33 -0700853 },
854 [IORING_OP_PROVIDE_BUFFERS] = {},
Jens Axboe067524e2020-03-02 16:32:28 -0700855 [IORING_OP_REMOVE_BUFFERS] = {},
Jens Axboed3656342019-12-18 09:50:26 -0700856};
857
Jens Axboe561fb042019-10-24 07:25:42 -0600858static void io_wq_submit_work(struct io_wq_work **workptr);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700859static void io_cqring_fill_event(struct io_kiocb *req, long res);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800860static void io_put_req(struct io_kiocb *req);
Jens Axboe978db572019-11-14 22:39:04 -0700861static void __io_double_put_req(struct io_kiocb *req);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700862static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req);
863static void io_queue_linked_timeout(struct io_kiocb *req);
Jens Axboe05f3fb32019-12-09 11:22:50 -0700864static int __io_sqe_files_update(struct io_ring_ctx *ctx,
865 struct io_uring_files_update *ip,
866 unsigned nr_args);
Jens Axboef86cd202020-01-29 13:46:44 -0700867static int io_grab_files(struct io_kiocb *req);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300868static void io_cleanup_req(struct io_kiocb *req);
Jens Axboeb41e9852020-02-17 09:52:41 -0700869static int io_file_get(struct io_submit_state *state, struct io_kiocb *req,
870 int fd, struct file **out_file, bool fixed);
871static void __io_queue_sqe(struct io_kiocb *req,
872 const struct io_uring_sqe *sqe);
Jens Axboede0617e2019-04-06 21:51:27 -0600873
Jens Axboe2b188cc2019-01-07 10:46:33 -0700874static struct kmem_cache *req_cachep;
875
876static const struct file_operations io_uring_fops;
877
878struct sock *io_uring_get_socket(struct file *file)
879{
880#if defined(CONFIG_UNIX)
881 if (file->f_op == &io_uring_fops) {
882 struct io_ring_ctx *ctx = file->private_data;
883
884 return ctx->ring_sock->sk;
885 }
886#endif
887 return NULL;
888}
889EXPORT_SYMBOL(io_uring_get_socket);
890
Jens Axboe4a38aed22020-05-14 17:21:15 -0600891static void io_file_put_work(struct work_struct *work);
892
Pavel Begunkov0cdaf762020-05-17 14:13:40 +0300893static inline bool io_async_submit(struct io_ring_ctx *ctx)
894{
895 return ctx->flags & IORING_SETUP_SQPOLL;
896}
897
Jens Axboe2b188cc2019-01-07 10:46:33 -0700898static void io_ring_ctx_ref_free(struct percpu_ref *ref)
899{
900 struct io_ring_ctx *ctx = container_of(ref, struct io_ring_ctx, refs);
901
Jens Axboe0f158b42020-05-14 17:18:39 -0600902 complete(&ctx->ref_comp);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700903}
904
905static struct io_ring_ctx *io_ring_ctx_alloc(struct io_uring_params *p)
906{
907 struct io_ring_ctx *ctx;
Jens Axboe78076bb2019-12-04 19:56:40 -0700908 int hash_bits;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700909
910 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
911 if (!ctx)
912 return NULL;
913
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700914 ctx->fallback_req = kmem_cache_alloc(req_cachep, GFP_KERNEL);
915 if (!ctx->fallback_req)
916 goto err;
917
Jens Axboe78076bb2019-12-04 19:56:40 -0700918 /*
919 * Use 5 bits less than the max cq entries, that should give us around
920 * 32 entries per hash list if totally full and uniformly spread.
921 */
922 hash_bits = ilog2(p->cq_entries);
923 hash_bits -= 5;
924 if (hash_bits <= 0)
925 hash_bits = 1;
926 ctx->cancel_hash_bits = hash_bits;
927 ctx->cancel_hash = kmalloc((1U << hash_bits) * sizeof(struct hlist_head),
928 GFP_KERNEL);
929 if (!ctx->cancel_hash)
930 goto err;
931 __hash_init(ctx->cancel_hash, 1U << hash_bits);
932
Roman Gushchin21482892019-05-07 10:01:48 -0700933 if (percpu_ref_init(&ctx->refs, io_ring_ctx_ref_free,
Jens Axboe206aefd2019-11-07 18:27:42 -0700934 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL))
935 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700936
937 ctx->flags = p->flags;
938 init_waitqueue_head(&ctx->cq_wait);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700939 INIT_LIST_HEAD(&ctx->cq_overflow_list);
Jens Axboe0f158b42020-05-14 17:18:39 -0600940 init_completion(&ctx->ref_comp);
941 init_completion(&ctx->sq_thread_comp);
Jens Axboe5a2e7452020-02-23 16:23:11 -0700942 idr_init(&ctx->io_buffer_idr);
Jens Axboe071698e2020-01-28 10:04:42 -0700943 idr_init(&ctx->personality_idr);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700944 mutex_init(&ctx->uring_lock);
945 init_waitqueue_head(&ctx->wait);
946 spin_lock_init(&ctx->completion_lock);
Jens Axboedef596e2019-01-09 08:59:42 -0700947 INIT_LIST_HEAD(&ctx->poll_list);
Jens Axboede0617e2019-04-06 21:51:27 -0600948 INIT_LIST_HEAD(&ctx->defer_list);
Jens Axboe5262f562019-09-17 12:26:57 -0600949 INIT_LIST_HEAD(&ctx->timeout_list);
Jens Axboefcb323c2019-10-24 12:39:47 -0600950 init_waitqueue_head(&ctx->inflight_wait);
951 spin_lock_init(&ctx->inflight_lock);
952 INIT_LIST_HEAD(&ctx->inflight_list);
Jens Axboe4a38aed22020-05-14 17:21:15 -0600953 INIT_DELAYED_WORK(&ctx->file_put_work, io_file_put_work);
954 init_llist_head(&ctx->file_put_llist);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700955 return ctx;
Jens Axboe206aefd2019-11-07 18:27:42 -0700956err:
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700957 if (ctx->fallback_req)
958 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe78076bb2019-12-04 19:56:40 -0700959 kfree(ctx->cancel_hash);
Jens Axboe206aefd2019-11-07 18:27:42 -0700960 kfree(ctx);
961 return NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700962}
963
Bob Liu9d858b22019-11-13 18:06:25 +0800964static inline bool __req_need_defer(struct io_kiocb *req)
Jens Axboede0617e2019-04-06 21:51:27 -0600965{
Jackie Liua197f662019-11-08 08:09:12 -0700966 struct io_ring_ctx *ctx = req->ctx;
967
Pavel Begunkov31af27c2020-04-15 00:39:50 +0300968 return req->sequence != ctx->cached_cq_tail
969 + atomic_read(&ctx->cached_cq_overflow);
Jens Axboede0617e2019-04-06 21:51:27 -0600970}
971
Bob Liu9d858b22019-11-13 18:06:25 +0800972static inline bool req_need_defer(struct io_kiocb *req)
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600973{
Pavel Begunkov87987892020-01-18 01:22:30 +0300974 if (unlikely(req->flags & REQ_F_IO_DRAIN))
Bob Liu9d858b22019-11-13 18:06:25 +0800975 return __req_need_defer(req);
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600976
Bob Liu9d858b22019-11-13 18:06:25 +0800977 return false;
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600978}
979
980static struct io_kiocb *io_get_deferred_req(struct io_ring_ctx *ctx)
Jens Axboede0617e2019-04-06 21:51:27 -0600981{
982 struct io_kiocb *req;
983
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600984 req = list_first_entry_or_null(&ctx->defer_list, struct io_kiocb, list);
Bob Liu9d858b22019-11-13 18:06:25 +0800985 if (req && !req_need_defer(req)) {
Jens Axboede0617e2019-04-06 21:51:27 -0600986 list_del_init(&req->list);
987 return req;
988 }
989
990 return NULL;
991}
992
Jens Axboe5262f562019-09-17 12:26:57 -0600993static struct io_kiocb *io_get_timeout_req(struct io_ring_ctx *ctx)
994{
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600995 struct io_kiocb *req;
996
997 req = list_first_entry_or_null(&ctx->timeout_list, struct io_kiocb, list);
Jens Axboe93bd25b2019-11-11 23:34:31 -0700998 if (req) {
999 if (req->flags & REQ_F_TIMEOUT_NOSEQ)
1000 return NULL;
Linus Torvaldsfb4b3d32019-11-25 10:40:27 -08001001 if (!__req_need_defer(req)) {
Jens Axboe93bd25b2019-11-11 23:34:31 -07001002 list_del_init(&req->list);
1003 return req;
1004 }
Jens Axboe7adf4ea2019-10-10 21:42:58 -06001005 }
1006
1007 return NULL;
Jens Axboe5262f562019-09-17 12:26:57 -06001008}
1009
Jens Axboede0617e2019-04-06 21:51:27 -06001010static void __io_commit_cqring(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001011{
Hristo Venev75b28af2019-08-26 17:23:46 +00001012 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001013
Pavel Begunkov07910152020-01-17 03:52:46 +03001014 /* order cqe stores with ring update */
1015 smp_store_release(&rings->cq.tail, ctx->cached_cq_tail);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001016
Pavel Begunkov07910152020-01-17 03:52:46 +03001017 if (wq_has_sleeper(&ctx->cq_wait)) {
1018 wake_up_interruptible(&ctx->cq_wait);
1019 kill_fasync(&ctx->cq_fasync, SIGIO, POLL_IN);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001020 }
1021}
1022
Jens Axboecccf0ee2020-01-27 16:34:48 -07001023static inline void io_req_work_grab_env(struct io_kiocb *req,
1024 const struct io_op_def *def)
Jens Axboe18d9be12019-09-10 09:13:05 -06001025{
Jens Axboecccf0ee2020-01-27 16:34:48 -07001026 if (!req->work.mm && def->needs_mm) {
1027 mmgrab(current->mm);
1028 req->work.mm = current->mm;
1029 }
1030 if (!req->work.creds)
1031 req->work.creds = get_current_cred();
Jens Axboeff002b32020-02-07 16:05:21 -07001032 if (!req->work.fs && def->needs_fs) {
1033 spin_lock(&current->fs->lock);
1034 if (!current->fs->in_exec) {
1035 req->work.fs = current->fs;
1036 req->work.fs->users++;
1037 } else {
1038 req->work.flags |= IO_WQ_WORK_CANCEL;
1039 }
1040 spin_unlock(&current->fs->lock);
1041 }
Jens Axboe6ab23142020-02-08 20:23:59 -07001042 if (!req->work.task_pid)
1043 req->work.task_pid = task_pid_vnr(current);
Jens Axboecccf0ee2020-01-27 16:34:48 -07001044}
1045
1046static inline void io_req_work_drop_env(struct io_kiocb *req)
1047{
1048 if (req->work.mm) {
1049 mmdrop(req->work.mm);
1050 req->work.mm = NULL;
1051 }
1052 if (req->work.creds) {
1053 put_cred(req->work.creds);
1054 req->work.creds = NULL;
1055 }
Jens Axboeff002b32020-02-07 16:05:21 -07001056 if (req->work.fs) {
1057 struct fs_struct *fs = req->work.fs;
1058
1059 spin_lock(&req->work.fs->lock);
1060 if (--fs->users)
1061 fs = NULL;
1062 spin_unlock(&req->work.fs->lock);
1063 if (fs)
1064 free_fs_struct(fs);
1065 }
Jens Axboe561fb042019-10-24 07:25:42 -06001066}
1067
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001068static inline void io_prep_async_work(struct io_kiocb *req,
Jens Axboe94ae5e72019-11-14 19:39:52 -07001069 struct io_kiocb **link)
Jens Axboe561fb042019-10-24 07:25:42 -06001070{
Jens Axboed3656342019-12-18 09:50:26 -07001071 const struct io_op_def *def = &io_op_defs[req->opcode];
Jens Axboe54a91f32019-09-10 09:15:04 -06001072
Jens Axboed3656342019-12-18 09:50:26 -07001073 if (req->flags & REQ_F_ISREG) {
1074 if (def->hash_reg_file)
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001075 io_wq_hash_work(&req->work, file_inode(req->file));
Jens Axboed3656342019-12-18 09:50:26 -07001076 } else {
1077 if (def->unbound_nonreg_file)
Jens Axboe3529d8c2019-12-19 18:24:38 -07001078 req->work.flags |= IO_WQ_WORK_UNBOUND;
Jens Axboe54a91f32019-09-10 09:15:04 -06001079 }
Jens Axboecccf0ee2020-01-27 16:34:48 -07001080
1081 io_req_work_grab_env(req, def);
Jens Axboe54a91f32019-09-10 09:15:04 -06001082
Jens Axboe94ae5e72019-11-14 19:39:52 -07001083 *link = io_prep_linked_timeout(req);
Jens Axboe561fb042019-10-24 07:25:42 -06001084}
1085
Jackie Liua197f662019-11-08 08:09:12 -07001086static inline void io_queue_async_work(struct io_kiocb *req)
Jens Axboe561fb042019-10-24 07:25:42 -06001087{
Jackie Liua197f662019-11-08 08:09:12 -07001088 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001089 struct io_kiocb *link;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001090
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001091 io_prep_async_work(req, &link);
Jens Axboe561fb042019-10-24 07:25:42 -06001092
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001093 trace_io_uring_queue_async_work(ctx, io_wq_is_hashed(&req->work), req,
1094 &req->work, req->flags);
1095 io_wq_enqueue(ctx->io_wq, &req->work);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001096
1097 if (link)
1098 io_queue_linked_timeout(link);
Jens Axboe18d9be12019-09-10 09:13:05 -06001099}
1100
Jens Axboe5262f562019-09-17 12:26:57 -06001101static void io_kill_timeout(struct io_kiocb *req)
1102{
1103 int ret;
1104
Jens Axboe2d283902019-12-04 11:08:05 -07001105 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe5262f562019-09-17 12:26:57 -06001106 if (ret != -1) {
1107 atomic_inc(&req->ctx->cq_timeouts);
Jens Axboe842f9612019-10-29 12:34:10 -06001108 list_del_init(&req->list);
Pavel Begunkovf0e20b82020-03-07 01:15:22 +03001109 req->flags |= REQ_F_COMP_LOCKED;
Jens Axboe78e19bb2019-11-06 15:21:34 -07001110 io_cqring_fill_event(req, 0);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001111 io_put_req(req);
Jens Axboe5262f562019-09-17 12:26:57 -06001112 }
1113}
1114
1115static void io_kill_timeouts(struct io_ring_ctx *ctx)
1116{
1117 struct io_kiocb *req, *tmp;
1118
1119 spin_lock_irq(&ctx->completion_lock);
1120 list_for_each_entry_safe(req, tmp, &ctx->timeout_list, list)
1121 io_kill_timeout(req);
1122 spin_unlock_irq(&ctx->completion_lock);
1123}
1124
Jens Axboede0617e2019-04-06 21:51:27 -06001125static void io_commit_cqring(struct io_ring_ctx *ctx)
1126{
1127 struct io_kiocb *req;
1128
Jens Axboe5262f562019-09-17 12:26:57 -06001129 while ((req = io_get_timeout_req(ctx)) != NULL)
1130 io_kill_timeout(req);
1131
Jens Axboede0617e2019-04-06 21:51:27 -06001132 __io_commit_cqring(ctx);
1133
Pavel Begunkov87987892020-01-18 01:22:30 +03001134 while ((req = io_get_deferred_req(ctx)) != NULL)
Jackie Liua197f662019-11-08 08:09:12 -07001135 io_queue_async_work(req);
Jens Axboede0617e2019-04-06 21:51:27 -06001136}
1137
Jens Axboe2b188cc2019-01-07 10:46:33 -07001138static struct io_uring_cqe *io_get_cqring(struct io_ring_ctx *ctx)
1139{
Hristo Venev75b28af2019-08-26 17:23:46 +00001140 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001141 unsigned tail;
1142
1143 tail = ctx->cached_cq_tail;
Stefan Bühler115e12e2019-04-24 23:54:18 +02001144 /*
1145 * writes to the cq entry need to come after reading head; the
1146 * control dependency is enough as we're using WRITE_ONCE to
1147 * fill the cq entry
1148 */
Hristo Venev75b28af2019-08-26 17:23:46 +00001149 if (tail - READ_ONCE(rings->cq.head) == rings->cq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001150 return NULL;
1151
1152 ctx->cached_cq_tail++;
Hristo Venev75b28af2019-08-26 17:23:46 +00001153 return &rings->cqes[tail & ctx->cq_mask];
Jens Axboe2b188cc2019-01-07 10:46:33 -07001154}
1155
Jens Axboef2842ab2020-01-08 11:04:00 -07001156static inline bool io_should_trigger_evfd(struct io_ring_ctx *ctx)
1157{
Jens Axboef0b493e2020-02-01 21:30:11 -07001158 if (!ctx->cq_ev_fd)
1159 return false;
Stefano Garzarella7e55a192020-05-15 18:38:05 +02001160 if (READ_ONCE(ctx->rings->cq_flags) & IORING_CQ_EVENTFD_DISABLED)
1161 return false;
Jens Axboef2842ab2020-01-08 11:04:00 -07001162 if (!ctx->eventfd_async)
1163 return true;
Jens Axboeb41e9852020-02-17 09:52:41 -07001164 return io_wq_current_is_worker();
Jens Axboef2842ab2020-01-08 11:04:00 -07001165}
1166
Jens Axboeb41e9852020-02-17 09:52:41 -07001167static void io_cqring_ev_posted(struct io_ring_ctx *ctx)
Jens Axboe8c838782019-03-12 15:48:16 -06001168{
1169 if (waitqueue_active(&ctx->wait))
1170 wake_up(&ctx->wait);
1171 if (waitqueue_active(&ctx->sqo_wait))
1172 wake_up(&ctx->sqo_wait);
Jens Axboeb41e9852020-02-17 09:52:41 -07001173 if (io_should_trigger_evfd(ctx))
Jens Axboe9b402842019-04-11 11:45:41 -06001174 eventfd_signal(ctx->cq_ev_fd, 1);
Jens Axboe8c838782019-03-12 15:48:16 -06001175}
1176
Jens Axboec4a2ed72019-11-21 21:01:26 -07001177/* Returns true if there are no backlogged entries after the flush */
1178static bool io_cqring_overflow_flush(struct io_ring_ctx *ctx, bool force)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001179{
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001180 struct io_rings *rings = ctx->rings;
1181 struct io_uring_cqe *cqe;
1182 struct io_kiocb *req;
1183 unsigned long flags;
1184 LIST_HEAD(list);
1185
1186 if (!force) {
1187 if (list_empty_careful(&ctx->cq_overflow_list))
Jens Axboec4a2ed72019-11-21 21:01:26 -07001188 return true;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001189 if ((ctx->cached_cq_tail - READ_ONCE(rings->cq.head) ==
1190 rings->cq_ring_entries))
Jens Axboec4a2ed72019-11-21 21:01:26 -07001191 return false;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001192 }
1193
1194 spin_lock_irqsave(&ctx->completion_lock, flags);
1195
1196 /* if force is set, the ring is going away. always drop after that */
1197 if (force)
Jens Axboe69b3e542020-01-08 11:01:46 -07001198 ctx->cq_overflow_flushed = 1;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001199
Jens Axboec4a2ed72019-11-21 21:01:26 -07001200 cqe = NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001201 while (!list_empty(&ctx->cq_overflow_list)) {
1202 cqe = io_get_cqring(ctx);
1203 if (!cqe && !force)
1204 break;
1205
1206 req = list_first_entry(&ctx->cq_overflow_list, struct io_kiocb,
1207 list);
1208 list_move(&req->list, &list);
Jens Axboe2ca10252020-02-13 17:17:35 -07001209 req->flags &= ~REQ_F_OVERFLOW;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001210 if (cqe) {
1211 WRITE_ONCE(cqe->user_data, req->user_data);
1212 WRITE_ONCE(cqe->res, req->result);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001213 WRITE_ONCE(cqe->flags, req->cflags);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001214 } else {
1215 WRITE_ONCE(ctx->rings->cq_overflow,
1216 atomic_inc_return(&ctx->cached_cq_overflow));
1217 }
1218 }
1219
1220 io_commit_cqring(ctx);
Jens Axboead3eb2c2019-12-18 17:12:20 -07001221 if (cqe) {
1222 clear_bit(0, &ctx->sq_check_overflow);
1223 clear_bit(0, &ctx->cq_check_overflow);
1224 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001225 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1226 io_cqring_ev_posted(ctx);
1227
1228 while (!list_empty(&list)) {
1229 req = list_first_entry(&list, struct io_kiocb, list);
1230 list_del(&req->list);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001231 io_put_req(req);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001232 }
Jens Axboec4a2ed72019-11-21 21:01:26 -07001233
1234 return cqe != NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001235}
1236
Jens Axboebcda7ba2020-02-23 16:42:51 -07001237static void __io_cqring_fill_event(struct io_kiocb *req, long res, long cflags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001238{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001239 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001240 struct io_uring_cqe *cqe;
1241
Jens Axboe78e19bb2019-11-06 15:21:34 -07001242 trace_io_uring_complete(ctx, req->user_data, res);
Jens Axboe51c3ff62019-11-03 06:52:50 -07001243
Jens Axboe2b188cc2019-01-07 10:46:33 -07001244 /*
1245 * If we can't get a cq entry, userspace overflowed the
1246 * submission (by quite a lot). Increment the overflow count in
1247 * the ring.
1248 */
1249 cqe = io_get_cqring(ctx);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001250 if (likely(cqe)) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001251 WRITE_ONCE(cqe->user_data, req->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001252 WRITE_ONCE(cqe->res, res);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001253 WRITE_ONCE(cqe->flags, cflags);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001254 } else if (ctx->cq_overflow_flushed) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07001255 WRITE_ONCE(ctx->rings->cq_overflow,
1256 atomic_inc_return(&ctx->cached_cq_overflow));
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001257 } else {
Jens Axboead3eb2c2019-12-18 17:12:20 -07001258 if (list_empty(&ctx->cq_overflow_list)) {
1259 set_bit(0, &ctx->sq_check_overflow);
1260 set_bit(0, &ctx->cq_check_overflow);
1261 }
Jens Axboe2ca10252020-02-13 17:17:35 -07001262 req->flags |= REQ_F_OVERFLOW;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001263 refcount_inc(&req->refs);
1264 req->result = res;
Jens Axboebcda7ba2020-02-23 16:42:51 -07001265 req->cflags = cflags;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001266 list_add_tail(&req->list, &ctx->cq_overflow_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001267 }
1268}
1269
Jens Axboebcda7ba2020-02-23 16:42:51 -07001270static void io_cqring_fill_event(struct io_kiocb *req, long res)
1271{
1272 __io_cqring_fill_event(req, res, 0);
1273}
1274
1275static void __io_cqring_add_event(struct io_kiocb *req, long res, long cflags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001276{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001277 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001278 unsigned long flags;
1279
1280 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001281 __io_cqring_fill_event(req, res, cflags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001282 io_commit_cqring(ctx);
1283 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1284
Jens Axboe8c838782019-03-12 15:48:16 -06001285 io_cqring_ev_posted(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001286}
1287
Jens Axboebcda7ba2020-02-23 16:42:51 -07001288static void io_cqring_add_event(struct io_kiocb *req, long res)
1289{
1290 __io_cqring_add_event(req, res, 0);
1291}
1292
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001293static inline bool io_is_fallback_req(struct io_kiocb *req)
1294{
1295 return req == (struct io_kiocb *)
1296 ((unsigned long) req->ctx->fallback_req & ~1UL);
1297}
1298
1299static struct io_kiocb *io_get_fallback_req(struct io_ring_ctx *ctx)
1300{
1301 struct io_kiocb *req;
1302
1303 req = ctx->fallback_req;
Bijan Mottahedehdd461af2020-04-29 17:47:50 -07001304 if (!test_and_set_bit_lock(0, (unsigned long *) &ctx->fallback_req))
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001305 return req;
1306
1307 return NULL;
1308}
1309
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03001310static struct io_kiocb *io_alloc_req(struct io_ring_ctx *ctx,
1311 struct io_submit_state *state)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001312{
Jens Axboefd6fab22019-03-14 16:30:06 -06001313 gfp_t gfp = GFP_KERNEL | __GFP_NOWARN;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001314 struct io_kiocb *req;
1315
Jens Axboe2579f912019-01-09 09:10:43 -07001316 if (!state) {
Jens Axboefd6fab22019-03-14 16:30:06 -06001317 req = kmem_cache_alloc(req_cachep, gfp);
Jens Axboe2579f912019-01-09 09:10:43 -07001318 if (unlikely(!req))
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001319 goto fallback;
Jens Axboe2579f912019-01-09 09:10:43 -07001320 } else if (!state->free_reqs) {
1321 size_t sz;
1322 int ret;
1323
1324 sz = min_t(size_t, state->ios_left, ARRAY_SIZE(state->reqs));
Jens Axboefd6fab22019-03-14 16:30:06 -06001325 ret = kmem_cache_alloc_bulk(req_cachep, gfp, sz, state->reqs);
1326
1327 /*
1328 * Bulk alloc is all-or-nothing. If we fail to get a batch,
1329 * retry single alloc to be on the safe side.
1330 */
1331 if (unlikely(ret <= 0)) {
1332 state->reqs[0] = kmem_cache_alloc(req_cachep, gfp);
1333 if (!state->reqs[0])
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001334 goto fallback;
Jens Axboefd6fab22019-03-14 16:30:06 -06001335 ret = 1;
1336 }
Jens Axboe2579f912019-01-09 09:10:43 -07001337 state->free_reqs = ret - 1;
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03001338 req = state->reqs[ret - 1];
Jens Axboe2579f912019-01-09 09:10:43 -07001339 } else {
Jens Axboe2579f912019-01-09 09:10:43 -07001340 state->free_reqs--;
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03001341 req = state->reqs[state->free_reqs];
Jens Axboe2b188cc2019-01-07 10:46:33 -07001342 }
1343
Jens Axboe2579f912019-01-09 09:10:43 -07001344 return req;
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001345fallback:
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03001346 return io_get_fallback_req(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001347}
1348
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001349static inline void io_put_file(struct io_kiocb *req, struct file *file,
1350 bool fixed)
1351{
1352 if (fixed)
Xiaoguang Wang05589552020-03-31 14:05:18 +08001353 percpu_ref_put(req->fixed_file_refs);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001354 else
1355 fput(file);
1356}
1357
Jens Axboec6ca97b302019-12-28 12:11:08 -07001358static void __io_req_aux_free(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001359{
Pavel Begunkov929a3af2020-02-19 00:19:09 +03001360 if (req->flags & REQ_F_NEED_CLEANUP)
1361 io_cleanup_req(req);
1362
YueHaibing96fd84d2020-01-07 22:22:44 +08001363 kfree(req->io);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001364 if (req->file)
1365 io_put_file(req, req->file, (req->flags & REQ_F_FIXED_FILE));
Jens Axboe3537b6a2020-04-03 11:19:06 -06001366 if (req->task)
1367 put_task_struct(req->task);
Jens Axboecccf0ee2020-01-27 16:34:48 -07001368
1369 io_req_work_drop_env(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001370}
1371
1372static void __io_free_req(struct io_kiocb *req)
1373{
Jens Axboec6ca97b302019-12-28 12:11:08 -07001374 __io_req_aux_free(req);
Jens Axboefcb323c2019-10-24 12:39:47 -06001375
Jens Axboefcb323c2019-10-24 12:39:47 -06001376 if (req->flags & REQ_F_INFLIGHT) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001377 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06001378 unsigned long flags;
1379
1380 spin_lock_irqsave(&ctx->inflight_lock, flags);
1381 list_del(&req->inflight_entry);
1382 if (waitqueue_active(&ctx->inflight_wait))
1383 wake_up(&ctx->inflight_wait);
1384 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
1385 }
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03001386
1387 percpu_ref_put(&req->ctx->refs);
Pavel Begunkovb1e50e52020-04-08 08:58:44 +03001388 if (likely(!io_is_fallback_req(req)))
1389 kmem_cache_free(req_cachep, req);
1390 else
Bijan Mottahedehdd461af2020-04-29 17:47:50 -07001391 clear_bit_unlock(0, (unsigned long *) &req->ctx->fallback_req);
Jens Axboee65ef562019-03-12 10:16:44 -06001392}
1393
Jens Axboec6ca97b302019-12-28 12:11:08 -07001394struct req_batch {
1395 void *reqs[IO_IOPOLL_BATCH];
1396 int to_free;
1397 int need_iter;
1398};
1399
1400static void io_free_req_many(struct io_ring_ctx *ctx, struct req_batch *rb)
1401{
1402 if (!rb->to_free)
1403 return;
1404 if (rb->need_iter) {
1405 int i, inflight = 0;
1406 unsigned long flags;
1407
1408 for (i = 0; i < rb->to_free; i++) {
1409 struct io_kiocb *req = rb->reqs[i];
1410
Jens Axboe10fef4b2020-01-09 07:52:28 -07001411 if (req->flags & REQ_F_FIXED_FILE) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001412 req->file = NULL;
Xiaoguang Wang05589552020-03-31 14:05:18 +08001413 percpu_ref_put(req->fixed_file_refs);
Jens Axboe10fef4b2020-01-09 07:52:28 -07001414 }
Jens Axboec6ca97b302019-12-28 12:11:08 -07001415 if (req->flags & REQ_F_INFLIGHT)
1416 inflight++;
Jens Axboec6ca97b302019-12-28 12:11:08 -07001417 __io_req_aux_free(req);
1418 }
1419 if (!inflight)
1420 goto do_free;
1421
1422 spin_lock_irqsave(&ctx->inflight_lock, flags);
1423 for (i = 0; i < rb->to_free; i++) {
1424 struct io_kiocb *req = rb->reqs[i];
1425
Jens Axboe10fef4b2020-01-09 07:52:28 -07001426 if (req->flags & REQ_F_INFLIGHT) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001427 list_del(&req->inflight_entry);
1428 if (!--inflight)
1429 break;
1430 }
1431 }
1432 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
1433
1434 if (waitqueue_active(&ctx->inflight_wait))
1435 wake_up(&ctx->inflight_wait);
1436 }
1437do_free:
1438 kmem_cache_free_bulk(req_cachep, rb->to_free, rb->reqs);
1439 percpu_ref_put_many(&ctx->refs, rb->to_free);
Jens Axboec6ca97b302019-12-28 12:11:08 -07001440 rb->to_free = rb->need_iter = 0;
Jens Axboee65ef562019-03-12 10:16:44 -06001441}
1442
Jackie Liua197f662019-11-08 08:09:12 -07001443static bool io_link_cancel_timeout(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -06001444{
Jackie Liua197f662019-11-08 08:09:12 -07001445 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001446 int ret;
1447
Jens Axboe2d283902019-12-04 11:08:05 -07001448 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe2665abf2019-11-05 12:40:47 -07001449 if (ret != -1) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001450 io_cqring_fill_event(req, -ECANCELED);
Jens Axboe2665abf2019-11-05 12:40:47 -07001451 io_commit_cqring(ctx);
Pavel Begunkovdea3b492020-04-12 02:05:04 +03001452 req->flags &= ~REQ_F_LINK_HEAD;
Jackie Liuec9c02a2019-11-08 23:50:36 +08001453 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07001454 return true;
1455 }
1456
1457 return false;
1458}
1459
Jens Axboeba816ad2019-09-28 11:36:45 -06001460static void io_req_link_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboe9e645e112019-05-10 16:07:28 -06001461{
Jens Axboe2665abf2019-11-05 12:40:47 -07001462 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001463 bool wake_ev = false;
Jens Axboe9e645e112019-05-10 16:07:28 -06001464
Jens Axboe4d7dd462019-11-20 13:03:52 -07001465 /* Already got next link */
1466 if (req->flags & REQ_F_LINK_NEXT)
1467 return;
1468
Jens Axboe9e645e112019-05-10 16:07:28 -06001469 /*
1470 * The list should never be empty when we are called here. But could
1471 * potentially happen if the chain is messed up, check to be on the
1472 * safe side.
1473 */
Pavel Begunkov44932332019-12-05 16:16:35 +03001474 while (!list_empty(&req->link_list)) {
1475 struct io_kiocb *nxt = list_first_entry(&req->link_list,
1476 struct io_kiocb, link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001477
Pavel Begunkov44932332019-12-05 16:16:35 +03001478 if (unlikely((req->flags & REQ_F_LINK_TIMEOUT) &&
1479 (nxt->flags & REQ_F_TIMEOUT))) {
1480 list_del_init(&nxt->link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001481 wake_ev |= io_link_cancel_timeout(nxt);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001482 req->flags &= ~REQ_F_LINK_TIMEOUT;
1483 continue;
1484 }
Jens Axboe9e645e112019-05-10 16:07:28 -06001485
Pavel Begunkov44932332019-12-05 16:16:35 +03001486 list_del_init(&req->link_list);
1487 if (!list_empty(&nxt->link_list))
Pavel Begunkovdea3b492020-04-12 02:05:04 +03001488 nxt->flags |= REQ_F_LINK_HEAD;
Pavel Begunkovb18fdf72019-11-21 23:21:02 +03001489 *nxtptr = nxt;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001490 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06001491 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001492
Jens Axboe4d7dd462019-11-20 13:03:52 -07001493 req->flags |= REQ_F_LINK_NEXT;
Jens Axboe2665abf2019-11-05 12:40:47 -07001494 if (wake_ev)
1495 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001496}
1497
1498/*
Pavel Begunkovdea3b492020-04-12 02:05:04 +03001499 * Called if REQ_F_LINK_HEAD is set, and we fail the head request
Jens Axboe9e645e112019-05-10 16:07:28 -06001500 */
1501static void io_fail_links(struct io_kiocb *req)
1502{
Jens Axboe2665abf2019-11-05 12:40:47 -07001503 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001504 unsigned long flags;
1505
1506 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboe9e645e112019-05-10 16:07:28 -06001507
1508 while (!list_empty(&req->link_list)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03001509 struct io_kiocb *link = list_first_entry(&req->link_list,
1510 struct io_kiocb, link_list);
Jens Axboe9e645e112019-05-10 16:07:28 -06001511
Pavel Begunkov44932332019-12-05 16:16:35 +03001512 list_del_init(&link->link_list);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02001513 trace_io_uring_fail_link(req, link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001514
1515 if ((req->flags & REQ_F_LINK_TIMEOUT) &&
Jens Axboed625c6e2019-12-17 19:53:05 -07001516 link->opcode == IORING_OP_LINK_TIMEOUT) {
Jackie Liua197f662019-11-08 08:09:12 -07001517 io_link_cancel_timeout(link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001518 } else {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001519 io_cqring_fill_event(link, -ECANCELED);
Jens Axboe978db572019-11-14 22:39:04 -07001520 __io_double_put_req(link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001521 }
Jens Axboe5d960722019-11-19 15:31:28 -07001522 req->flags &= ~REQ_F_LINK_TIMEOUT;
Jens Axboe9e645e112019-05-10 16:07:28 -06001523 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001524
1525 io_commit_cqring(ctx);
1526 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1527 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001528}
1529
Jens Axboe4d7dd462019-11-20 13:03:52 -07001530static void io_req_find_next(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboe9e645e112019-05-10 16:07:28 -06001531{
Pavel Begunkovdea3b492020-04-12 02:05:04 +03001532 if (likely(!(req->flags & REQ_F_LINK_HEAD)))
Jens Axboe2665abf2019-11-05 12:40:47 -07001533 return;
Jens Axboe2665abf2019-11-05 12:40:47 -07001534
Jens Axboe9e645e112019-05-10 16:07:28 -06001535 /*
1536 * If LINK is set, we have dependent requests in this chain. If we
1537 * didn't fail this request, queue the first one up, moving any other
1538 * dependencies to the next request. In case of failure, fail the rest
1539 * of the chain.
1540 */
Jens Axboe2665abf2019-11-05 12:40:47 -07001541 if (req->flags & REQ_F_FAIL_LINK) {
1542 io_fail_links(req);
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001543 } else if ((req->flags & (REQ_F_LINK_TIMEOUT | REQ_F_COMP_LOCKED)) ==
1544 REQ_F_LINK_TIMEOUT) {
Jens Axboe2665abf2019-11-05 12:40:47 -07001545 struct io_ring_ctx *ctx = req->ctx;
1546 unsigned long flags;
1547
1548 /*
1549 * If this is a timeout link, we could be racing with the
1550 * timeout timer. Grab the completion lock for this case to
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001551 * protect against that.
Jens Axboe2665abf2019-11-05 12:40:47 -07001552 */
1553 spin_lock_irqsave(&ctx->completion_lock, flags);
1554 io_req_link_next(req, nxt);
1555 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1556 } else {
1557 io_req_link_next(req, nxt);
Jens Axboe9e645e112019-05-10 16:07:28 -06001558 }
Jens Axboe4d7dd462019-11-20 13:03:52 -07001559}
Jens Axboe9e645e112019-05-10 16:07:28 -06001560
Jackie Liuc69f8db2019-11-09 11:00:08 +08001561static void io_free_req(struct io_kiocb *req)
1562{
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001563 struct io_kiocb *nxt = NULL;
1564
1565 io_req_find_next(req, &nxt);
Pavel Begunkov70cf9f32019-11-21 23:21:00 +03001566 __io_free_req(req);
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001567
1568 if (nxt)
1569 io_queue_async_work(nxt);
Jackie Liuc69f8db2019-11-09 11:00:08 +08001570}
1571
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001572static void io_link_work_cb(struct io_wq_work **workptr)
1573{
Pavel Begunkov18a542f2020-03-23 00:23:29 +03001574 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
1575 struct io_kiocb *link;
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001576
Pavel Begunkov18a542f2020-03-23 00:23:29 +03001577 link = list_first_entry(&req->link_list, struct io_kiocb, link_list);
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001578 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;
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001585 const struct io_op_def *def = &io_op_defs[nxt->opcode];
1586
1587 if ((nxt->flags & REQ_F_ISREG) && def->hash_reg_file)
1588 io_wq_hash_work(&nxt->work, file_inode(nxt->file));
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001589
1590 *workptr = &nxt->work;
1591 link = io_prep_linked_timeout(nxt);
Pavel Begunkov18a542f2020-03-23 00:23:29 +03001592 if (link)
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001593 nxt->work.func = io_link_work_cb;
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001594}
1595
Jens Axboeba816ad2019-09-28 11:36:45 -06001596/*
1597 * Drop reference to request, return next in chain (if there is one) if this
1598 * was the last reference to this request.
1599 */
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001600__attribute__((nonnull))
Jackie Liuec9c02a2019-11-08 23:50:36 +08001601static void io_put_req_find_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboee65ef562019-03-12 10:16:44 -06001602{
Jens Axboe2a44f462020-02-25 13:25:41 -07001603 if (refcount_dec_and_test(&req->refs)) {
1604 io_req_find_next(req, nxtptr);
Jens Axboe4d7dd462019-11-20 13:03:52 -07001605 __io_free_req(req);
Jens Axboe2a44f462020-02-25 13:25:41 -07001606 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001607}
1608
Jens Axboe2b188cc2019-01-07 10:46:33 -07001609static void io_put_req(struct io_kiocb *req)
1610{
Jens Axboedef596e2019-01-09 08:59:42 -07001611 if (refcount_dec_and_test(&req->refs))
1612 io_free_req(req);
1613}
1614
Pavel Begunkove9fd9392020-03-04 16:14:12 +03001615static void io_steal_work(struct io_kiocb *req,
1616 struct io_wq_work **workptr)
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001617{
1618 /*
1619 * It's in an io-wq worker, so there always should be at least
1620 * one reference, which will be dropped in io_put_work() just
1621 * after the current handler returns.
1622 *
1623 * It also means, that if the counter dropped to 1, then there is
1624 * no asynchronous users left, so it's safe to steal the next work.
1625 */
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001626 if (refcount_read(&req->refs) == 1) {
1627 struct io_kiocb *nxt = NULL;
1628
1629 io_req_find_next(req, &nxt);
1630 if (nxt)
1631 io_wq_assign_next(workptr, nxt);
1632 }
1633}
1634
Jens Axboe978db572019-11-14 22:39:04 -07001635/*
1636 * Must only be used if we don't need to care about links, usually from
1637 * within the completion handling itself.
1638 */
1639static void __io_double_put_req(struct io_kiocb *req)
Jens Axboea3a0e432019-08-20 11:03:11 -06001640{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001641 /* drop both submit and complete references */
1642 if (refcount_sub_and_test(2, &req->refs))
1643 __io_free_req(req);
1644}
1645
Jens Axboe978db572019-11-14 22:39:04 -07001646static void io_double_put_req(struct io_kiocb *req)
1647{
1648 /* drop both submit and complete references */
1649 if (refcount_sub_and_test(2, &req->refs))
1650 io_free_req(req);
1651}
1652
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001653static unsigned io_cqring_events(struct io_ring_ctx *ctx, bool noflush)
Jens Axboea3a0e432019-08-20 11:03:11 -06001654{
Jens Axboe84f97dc2019-11-06 11:27:53 -07001655 struct io_rings *rings = ctx->rings;
1656
Jens Axboead3eb2c2019-12-18 17:12:20 -07001657 if (test_bit(0, &ctx->cq_check_overflow)) {
1658 /*
1659 * noflush == true is from the waitqueue handler, just ensure
1660 * we wake up the task, and the next invocation will flush the
1661 * entries. We cannot safely to it from here.
1662 */
1663 if (noflush && !list_empty(&ctx->cq_overflow_list))
1664 return -1U;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001665
Jens Axboead3eb2c2019-12-18 17:12:20 -07001666 io_cqring_overflow_flush(ctx, false);
1667 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001668
Jens Axboea3a0e432019-08-20 11:03:11 -06001669 /* See comment at the top of this file */
1670 smp_rmb();
Jens Axboead3eb2c2019-12-18 17:12:20 -07001671 return ctx->cached_cq_tail - READ_ONCE(rings->cq.head);
Jens Axboea3a0e432019-08-20 11:03:11 -06001672}
1673
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03001674static inline unsigned int io_sqring_entries(struct io_ring_ctx *ctx)
1675{
1676 struct io_rings *rings = ctx->rings;
1677
1678 /* make sure SQ entry isn't read before tail */
1679 return smp_load_acquire(&rings->sq.tail) - ctx->cached_sq_head;
1680}
1681
Jens Axboe8237e042019-12-28 10:48:22 -07001682static inline bool io_req_multi_free(struct req_batch *rb, struct io_kiocb *req)
Jens Axboee94f1412019-12-19 12:06:02 -07001683{
Pavel Begunkovdea3b492020-04-12 02:05:04 +03001684 if ((req->flags & REQ_F_LINK_HEAD) || io_is_fallback_req(req))
Jens Axboec6ca97b302019-12-28 12:11:08 -07001685 return false;
Jens Axboee94f1412019-12-19 12:06:02 -07001686
Jens Axboec6ca97b302019-12-28 12:11:08 -07001687 if (!(req->flags & REQ_F_FIXED_FILE) || req->io)
1688 rb->need_iter++;
1689
1690 rb->reqs[rb->to_free++] = req;
1691 if (unlikely(rb->to_free == ARRAY_SIZE(rb->reqs)))
1692 io_free_req_many(req->ctx, rb);
1693 return true;
Jens Axboee94f1412019-12-19 12:06:02 -07001694}
1695
Jens Axboebcda7ba2020-02-23 16:42:51 -07001696static int io_put_kbuf(struct io_kiocb *req)
1697{
Jens Axboe4d954c22020-02-27 07:31:19 -07001698 struct io_buffer *kbuf;
Jens Axboebcda7ba2020-02-23 16:42:51 -07001699 int cflags;
1700
Jens Axboe4d954c22020-02-27 07:31:19 -07001701 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
Jens Axboebcda7ba2020-02-23 16:42:51 -07001702 cflags = kbuf->bid << IORING_CQE_BUFFER_SHIFT;
1703 cflags |= IORING_CQE_F_BUFFER;
1704 req->rw.addr = 0;
1705 kfree(kbuf);
1706 return cflags;
1707}
1708
Jens Axboedef596e2019-01-09 08:59:42 -07001709/*
1710 * Find and free completed poll iocbs
1711 */
1712static void io_iopoll_complete(struct io_ring_ctx *ctx, unsigned int *nr_events,
1713 struct list_head *done)
1714{
Jens Axboe8237e042019-12-28 10:48:22 -07001715 struct req_batch rb;
Jens Axboedef596e2019-01-09 08:59:42 -07001716 struct io_kiocb *req;
Jens Axboedef596e2019-01-09 08:59:42 -07001717
Jens Axboec6ca97b302019-12-28 12:11:08 -07001718 rb.to_free = rb.need_iter = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001719 while (!list_empty(done)) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07001720 int cflags = 0;
1721
Jens Axboedef596e2019-01-09 08:59:42 -07001722 req = list_first_entry(done, struct io_kiocb, list);
1723 list_del(&req->list);
1724
Jens Axboebcda7ba2020-02-23 16:42:51 -07001725 if (req->flags & REQ_F_BUFFER_SELECTED)
1726 cflags = io_put_kbuf(req);
1727
1728 __io_cqring_fill_event(req, req->result, cflags);
Jens Axboedef596e2019-01-09 08:59:42 -07001729 (*nr_events)++;
1730
Jens Axboe8237e042019-12-28 10:48:22 -07001731 if (refcount_dec_and_test(&req->refs) &&
1732 !io_req_multi_free(&rb, req))
1733 io_free_req(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001734 }
Jens Axboedef596e2019-01-09 08:59:42 -07001735
Jens Axboe09bb8392019-03-13 12:39:28 -06001736 io_commit_cqring(ctx);
Xiaoguang Wang32b22442020-03-11 09:26:09 +08001737 if (ctx->flags & IORING_SETUP_SQPOLL)
1738 io_cqring_ev_posted(ctx);
Jens Axboe8237e042019-12-28 10:48:22 -07001739 io_free_req_many(ctx, &rb);
Jens Axboedef596e2019-01-09 08:59:42 -07001740}
1741
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001742static void io_iopoll_queue(struct list_head *again)
1743{
1744 struct io_kiocb *req;
1745
1746 do {
1747 req = list_first_entry(again, struct io_kiocb, list);
1748 list_del(&req->list);
1749 refcount_inc(&req->refs);
1750 io_queue_async_work(req);
1751 } while (!list_empty(again));
1752}
1753
Jens Axboedef596e2019-01-09 08:59:42 -07001754static int io_do_iopoll(struct io_ring_ctx *ctx, unsigned int *nr_events,
1755 long min)
1756{
1757 struct io_kiocb *req, *tmp;
1758 LIST_HEAD(done);
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001759 LIST_HEAD(again);
Jens Axboedef596e2019-01-09 08:59:42 -07001760 bool spin;
1761 int ret;
1762
1763 /*
1764 * Only spin for completions if we don't have multiple devices hanging
1765 * off our complete list, and we're under the requested amount.
1766 */
1767 spin = !ctx->poll_multi_file && *nr_events < min;
1768
1769 ret = 0;
1770 list_for_each_entry_safe(req, tmp, &ctx->poll_list, list) {
Jens Axboe9adbd452019-12-20 08:45:55 -07001771 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboedef596e2019-01-09 08:59:42 -07001772
1773 /*
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001774 * Move completed and retryable entries to our local lists.
1775 * If we find a request that requires polling, break out
1776 * and complete those lists first, if we have entries there.
Jens Axboedef596e2019-01-09 08:59:42 -07001777 */
1778 if (req->flags & REQ_F_IOPOLL_COMPLETED) {
1779 list_move_tail(&req->list, &done);
1780 continue;
1781 }
1782 if (!list_empty(&done))
1783 break;
1784
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001785 if (req->result == -EAGAIN) {
1786 list_move_tail(&req->list, &again);
1787 continue;
1788 }
1789 if (!list_empty(&again))
1790 break;
1791
Jens Axboedef596e2019-01-09 08:59:42 -07001792 ret = kiocb->ki_filp->f_op->iopoll(kiocb, spin);
1793 if (ret < 0)
1794 break;
1795
1796 if (ret && spin)
1797 spin = false;
1798 ret = 0;
1799 }
1800
1801 if (!list_empty(&done))
1802 io_iopoll_complete(ctx, nr_events, &done);
1803
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001804 if (!list_empty(&again))
1805 io_iopoll_queue(&again);
1806
Jens Axboedef596e2019-01-09 08:59:42 -07001807 return ret;
1808}
1809
1810/*
Brian Gianforcarod195a662019-12-13 03:09:50 -08001811 * Poll for a minimum of 'min' events. Note that if min == 0 we consider that a
Jens Axboedef596e2019-01-09 08:59:42 -07001812 * non-spinning poll check - we'll still enter the driver poll loop, but only
1813 * as a non-spinning completion check.
1814 */
1815static int io_iopoll_getevents(struct io_ring_ctx *ctx, unsigned int *nr_events,
1816 long min)
1817{
Jens Axboe08f54392019-08-21 22:19:11 -06001818 while (!list_empty(&ctx->poll_list) && !need_resched()) {
Jens Axboedef596e2019-01-09 08:59:42 -07001819 int ret;
1820
1821 ret = io_do_iopoll(ctx, nr_events, min);
1822 if (ret < 0)
1823 return ret;
1824 if (!min || *nr_events >= min)
1825 return 0;
1826 }
1827
1828 return 1;
1829}
1830
1831/*
1832 * We can't just wait for polled events to come to us, we have to actively
1833 * find and complete them.
1834 */
1835static void io_iopoll_reap_events(struct io_ring_ctx *ctx)
1836{
1837 if (!(ctx->flags & IORING_SETUP_IOPOLL))
1838 return;
1839
1840 mutex_lock(&ctx->uring_lock);
1841 while (!list_empty(&ctx->poll_list)) {
1842 unsigned int nr_events = 0;
1843
1844 io_iopoll_getevents(ctx, &nr_events, 1);
Jens Axboe08f54392019-08-21 22:19:11 -06001845
1846 /*
1847 * Ensure we allow local-to-the-cpu processing to take place,
1848 * in this case we need to ensure that we reap all events.
1849 */
1850 cond_resched();
Jens Axboedef596e2019-01-09 08:59:42 -07001851 }
1852 mutex_unlock(&ctx->uring_lock);
1853}
1854
Xiaoguang Wangc7849be2020-02-22 14:46:05 +08001855static int io_iopoll_check(struct io_ring_ctx *ctx, unsigned *nr_events,
1856 long min)
Jens Axboedef596e2019-01-09 08:59:42 -07001857{
Jens Axboe2b2ed972019-10-25 10:06:15 -06001858 int iters = 0, ret = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001859
Xiaoguang Wangc7849be2020-02-22 14:46:05 +08001860 /*
1861 * We disallow the app entering submit/complete with polling, but we
1862 * still need to lock the ring to prevent racing with polled issue
1863 * that got punted to a workqueue.
1864 */
1865 mutex_lock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07001866 do {
1867 int tmin = 0;
1868
Jens Axboe500f9fb2019-08-19 12:15:59 -06001869 /*
Jens Axboea3a0e432019-08-20 11:03:11 -06001870 * Don't enter poll loop if we already have events pending.
1871 * If we do, we can potentially be spinning for commands that
1872 * already triggered a CQE (eg in error).
1873 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001874 if (io_cqring_events(ctx, false))
Jens Axboea3a0e432019-08-20 11:03:11 -06001875 break;
1876
1877 /*
Jens Axboe500f9fb2019-08-19 12:15:59 -06001878 * If a submit got punted to a workqueue, we can have the
1879 * application entering polling for a command before it gets
1880 * issued. That app will hold the uring_lock for the duration
1881 * of the poll right here, so we need to take a breather every
1882 * now and then to ensure that the issue has a chance to add
1883 * the poll to the issued list. Otherwise we can spin here
1884 * forever, while the workqueue is stuck trying to acquire the
1885 * very same mutex.
1886 */
1887 if (!(++iters & 7)) {
1888 mutex_unlock(&ctx->uring_lock);
1889 mutex_lock(&ctx->uring_lock);
1890 }
1891
Jens Axboedef596e2019-01-09 08:59:42 -07001892 if (*nr_events < min)
1893 tmin = min - *nr_events;
1894
1895 ret = io_iopoll_getevents(ctx, nr_events, tmin);
1896 if (ret <= 0)
1897 break;
1898 ret = 0;
1899 } while (min && !*nr_events && !need_resched());
1900
Jens Axboe500f9fb2019-08-19 12:15:59 -06001901 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07001902 return ret;
1903}
1904
Jens Axboe491381ce2019-10-17 09:20:46 -06001905static void kiocb_end_write(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001906{
Jens Axboe491381ce2019-10-17 09:20:46 -06001907 /*
1908 * Tell lockdep we inherited freeze protection from submission
1909 * thread.
1910 */
1911 if (req->flags & REQ_F_ISREG) {
1912 struct inode *inode = file_inode(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001913
Jens Axboe491381ce2019-10-17 09:20:46 -06001914 __sb_writers_acquired(inode->i_sb, SB_FREEZE_WRITE);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001915 }
Jens Axboe491381ce2019-10-17 09:20:46 -06001916 file_end_write(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001917}
1918
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001919static inline void req_set_fail_links(struct io_kiocb *req)
1920{
1921 if ((req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) == REQ_F_LINK)
1922 req->flags |= REQ_F_FAIL_LINK;
1923}
1924
Jens Axboeba816ad2019-09-28 11:36:45 -06001925static void io_complete_rw_common(struct kiocb *kiocb, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001926{
Jens Axboe9adbd452019-12-20 08:45:55 -07001927 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001928 int cflags = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001929
Jens Axboe491381ce2019-10-17 09:20:46 -06001930 if (kiocb->ki_flags & IOCB_WRITE)
1931 kiocb_end_write(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001932
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001933 if (res != req->result)
1934 req_set_fail_links(req);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001935 if (req->flags & REQ_F_BUFFER_SELECTED)
1936 cflags = io_put_kbuf(req);
1937 __io_cqring_add_event(req, res, cflags);
Jens Axboeba816ad2019-09-28 11:36:45 -06001938}
1939
1940static void io_complete_rw(struct kiocb *kiocb, long res, long res2)
1941{
Jens Axboe9adbd452019-12-20 08:45:55 -07001942 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboeba816ad2019-09-28 11:36:45 -06001943
1944 io_complete_rw_common(kiocb, res);
Jens Axboee65ef562019-03-12 10:16:44 -06001945 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001946}
1947
Jens Axboedef596e2019-01-09 08:59:42 -07001948static void io_complete_rw_iopoll(struct kiocb *kiocb, long res, long res2)
1949{
Jens Axboe9adbd452019-12-20 08:45:55 -07001950 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboedef596e2019-01-09 08:59:42 -07001951
Jens Axboe491381ce2019-10-17 09:20:46 -06001952 if (kiocb->ki_flags & IOCB_WRITE)
1953 kiocb_end_write(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001954
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001955 if (res != req->result)
1956 req_set_fail_links(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06001957 req->result = res;
Jens Axboedef596e2019-01-09 08:59:42 -07001958 if (res != -EAGAIN)
1959 req->flags |= REQ_F_IOPOLL_COMPLETED;
1960}
1961
1962/*
1963 * After the iocb has been issued, it's safe to be found on the poll list.
1964 * Adding the kiocb to the list AFTER submission ensures that we don't
1965 * find it from a io_iopoll_getevents() thread before the issuer is done
1966 * accessing the kiocb cookie.
1967 */
1968static void io_iopoll_req_issued(struct io_kiocb *req)
1969{
1970 struct io_ring_ctx *ctx = req->ctx;
1971
1972 /*
1973 * Track whether we have multiple files in our lists. This will impact
1974 * how we do polling eventually, not spinning if we're on potentially
1975 * different devices.
1976 */
1977 if (list_empty(&ctx->poll_list)) {
1978 ctx->poll_multi_file = false;
1979 } else if (!ctx->poll_multi_file) {
1980 struct io_kiocb *list_req;
1981
1982 list_req = list_first_entry(&ctx->poll_list, struct io_kiocb,
1983 list);
Jens Axboe9adbd452019-12-20 08:45:55 -07001984 if (list_req->file != req->file)
Jens Axboedef596e2019-01-09 08:59:42 -07001985 ctx->poll_multi_file = true;
1986 }
1987
1988 /*
1989 * For fast devices, IO may have already completed. If it has, add
1990 * it to the front so we find it first.
1991 */
1992 if (req->flags & REQ_F_IOPOLL_COMPLETED)
1993 list_add(&req->list, &ctx->poll_list);
1994 else
1995 list_add_tail(&req->list, &ctx->poll_list);
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08001996
1997 if ((ctx->flags & IORING_SETUP_SQPOLL) &&
1998 wq_has_sleeper(&ctx->sqo_wait))
1999 wake_up(&ctx->sqo_wait);
Jens Axboedef596e2019-01-09 08:59:42 -07002000}
2001
Jens Axboe3d6770f2019-04-13 11:50:54 -06002002static void io_file_put(struct io_submit_state *state)
Jens Axboe9a56a232019-01-09 09:06:50 -07002003{
Jens Axboe3d6770f2019-04-13 11:50:54 -06002004 if (state->file) {
Jens Axboe9a56a232019-01-09 09:06:50 -07002005 int diff = state->has_refs - state->used_refs;
2006
2007 if (diff)
2008 fput_many(state->file, diff);
2009 state->file = NULL;
2010 }
2011}
2012
2013/*
2014 * Get as many references to a file as we have IOs left in this submission,
2015 * assuming most submissions are for one file, or at least that each file
2016 * has more than one submission.
2017 */
Pavel Begunkov8da11c12020-02-24 11:32:44 +03002018static struct file *__io_file_get(struct io_submit_state *state, int fd)
Jens Axboe9a56a232019-01-09 09:06:50 -07002019{
2020 if (!state)
2021 return fget(fd);
2022
2023 if (state->file) {
2024 if (state->fd == fd) {
2025 state->used_refs++;
2026 state->ios_left--;
2027 return state->file;
2028 }
Jens Axboe3d6770f2019-04-13 11:50:54 -06002029 io_file_put(state);
Jens Axboe9a56a232019-01-09 09:06:50 -07002030 }
2031 state->file = fget_many(fd, state->ios_left);
2032 if (!state->file)
2033 return NULL;
2034
2035 state->fd = fd;
2036 state->has_refs = state->ios_left;
2037 state->used_refs = 1;
2038 state->ios_left--;
2039 return state->file;
2040}
2041
Jens Axboe2b188cc2019-01-07 10:46:33 -07002042/*
2043 * If we tracked the file through the SCM inflight mechanism, we could support
2044 * any file. For now, just ensure that anything potentially problematic is done
2045 * inline.
2046 */
Jens Axboeaf197f52020-04-28 13:15:06 -06002047static bool io_file_supports_async(struct file *file, int rw)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002048{
2049 umode_t mode = file_inode(file)->i_mode;
2050
Jens Axboe10d59342019-12-09 20:16:22 -07002051 if (S_ISBLK(mode) || S_ISCHR(mode) || S_ISSOCK(mode))
Jens Axboe2b188cc2019-01-07 10:46:33 -07002052 return true;
2053 if (S_ISREG(mode) && file->f_op != &io_uring_fops)
2054 return true;
2055
Jens Axboeaf197f52020-04-28 13:15:06 -06002056 if (!(file->f_mode & FMODE_NOWAIT))
2057 return false;
2058
2059 if (rw == READ)
2060 return file->f_op->read_iter != NULL;
2061
2062 return file->f_op->write_iter != NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002063}
2064
Jens Axboe3529d8c2019-12-19 18:24:38 -07002065static int io_prep_rw(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2066 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002067{
Jens Axboedef596e2019-01-09 08:59:42 -07002068 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9adbd452019-12-20 08:45:55 -07002069 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe09bb8392019-03-13 12:39:28 -06002070 unsigned ioprio;
2071 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002072
Jens Axboe491381ce2019-10-17 09:20:46 -06002073 if (S_ISREG(file_inode(req->file)->i_mode))
2074 req->flags |= REQ_F_ISREG;
2075
Jens Axboe2b188cc2019-01-07 10:46:33 -07002076 kiocb->ki_pos = READ_ONCE(sqe->off);
Jens Axboeba042912019-12-25 16:33:42 -07002077 if (kiocb->ki_pos == -1 && !(req->file->f_mode & FMODE_STREAM)) {
2078 req->flags |= REQ_F_CUR_POS;
2079 kiocb->ki_pos = req->file->f_pos;
2080 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002081 kiocb->ki_hint = ki_hint_validate(file_write_hint(kiocb->ki_filp));
Pavel Begunkov3e577dc2020-02-01 03:58:42 +03002082 kiocb->ki_flags = iocb_flags(kiocb->ki_filp);
2083 ret = kiocb_set_rw_flags(kiocb, READ_ONCE(sqe->rw_flags));
2084 if (unlikely(ret))
2085 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002086
2087 ioprio = READ_ONCE(sqe->ioprio);
2088 if (ioprio) {
2089 ret = ioprio_check_cap(ioprio);
2090 if (ret)
Jens Axboe09bb8392019-03-13 12:39:28 -06002091 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002092
2093 kiocb->ki_ioprio = ioprio;
2094 } else
2095 kiocb->ki_ioprio = get_current_ioprio();
2096
Stefan Bühler8449eed2019-04-27 20:34:19 +02002097 /* don't allow async punt if RWF_NOWAIT was requested */
Jens Axboe491381ce2019-10-17 09:20:46 -06002098 if ((kiocb->ki_flags & IOCB_NOWAIT) ||
2099 (req->file->f_flags & O_NONBLOCK))
Stefan Bühler8449eed2019-04-27 20:34:19 +02002100 req->flags |= REQ_F_NOWAIT;
2101
2102 if (force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002103 kiocb->ki_flags |= IOCB_NOWAIT;
Stefan Bühler8449eed2019-04-27 20:34:19 +02002104
Jens Axboedef596e2019-01-09 08:59:42 -07002105 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07002106 if (!(kiocb->ki_flags & IOCB_DIRECT) ||
2107 !kiocb->ki_filp->f_op->iopoll)
Jens Axboe09bb8392019-03-13 12:39:28 -06002108 return -EOPNOTSUPP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002109
Jens Axboedef596e2019-01-09 08:59:42 -07002110 kiocb->ki_flags |= IOCB_HIPRI;
2111 kiocb->ki_complete = io_complete_rw_iopoll;
Jens Axboe6873e0b2019-10-30 13:53:09 -06002112 req->result = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07002113 } else {
Jens Axboe09bb8392019-03-13 12:39:28 -06002114 if (kiocb->ki_flags & IOCB_HIPRI)
2115 return -EINVAL;
Jens Axboedef596e2019-01-09 08:59:42 -07002116 kiocb->ki_complete = io_complete_rw;
2117 }
Jens Axboe9adbd452019-12-20 08:45:55 -07002118
Jens Axboe3529d8c2019-12-19 18:24:38 -07002119 req->rw.addr = READ_ONCE(sqe->addr);
2120 req->rw.len = READ_ONCE(sqe->len);
Jens Axboebcda7ba2020-02-23 16:42:51 -07002121 /* we own ->private, reuse it for the buffer index / buffer ID */
Jens Axboe9adbd452019-12-20 08:45:55 -07002122 req->rw.kiocb.private = (void *) (unsigned long)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002123 READ_ONCE(sqe->buf_index);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002124 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002125}
2126
2127static inline void io_rw_done(struct kiocb *kiocb, ssize_t ret)
2128{
2129 switch (ret) {
2130 case -EIOCBQUEUED:
2131 break;
2132 case -ERESTARTSYS:
2133 case -ERESTARTNOINTR:
2134 case -ERESTARTNOHAND:
2135 case -ERESTART_RESTARTBLOCK:
2136 /*
2137 * We can't just restart the syscall, since previously
2138 * submitted sqes may already be in progress. Just fail this
2139 * IO with EINTR.
2140 */
2141 ret = -EINTR;
2142 /* fall through */
2143 default:
2144 kiocb->ki_complete(kiocb, ret, 0);
2145 }
2146}
2147
Pavel Begunkov014db002020-03-03 21:33:12 +03002148static void kiocb_done(struct kiocb *kiocb, ssize_t ret)
Jens Axboeba816ad2019-09-28 11:36:45 -06002149{
Jens Axboeba042912019-12-25 16:33:42 -07002150 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
2151
2152 if (req->flags & REQ_F_CUR_POS)
2153 req->file->f_pos = kiocb->ki_pos;
Pavel Begunkovbcaec082020-02-24 11:30:18 +03002154 if (ret >= 0 && kiocb->ki_complete == io_complete_rw)
Pavel Begunkov014db002020-03-03 21:33:12 +03002155 io_complete_rw(kiocb, ret, 0);
Jens Axboeba816ad2019-09-28 11:36:45 -06002156 else
2157 io_rw_done(kiocb, ret);
2158}
2159
Jens Axboe9adbd452019-12-20 08:45:55 -07002160static ssize_t io_import_fixed(struct io_kiocb *req, int rw,
Pavel Begunkov7d009162019-11-25 23:14:40 +03002161 struct iov_iter *iter)
Jens Axboeedafcce2019-01-09 09:16:05 -07002162{
Jens Axboe9adbd452019-12-20 08:45:55 -07002163 struct io_ring_ctx *ctx = req->ctx;
2164 size_t len = req->rw.len;
Jens Axboeedafcce2019-01-09 09:16:05 -07002165 struct io_mapped_ubuf *imu;
2166 unsigned index, buf_index;
2167 size_t offset;
2168 u64 buf_addr;
2169
2170 /* attempt to use fixed buffers without having provided iovecs */
2171 if (unlikely(!ctx->user_bufs))
2172 return -EFAULT;
2173
Jens Axboe9adbd452019-12-20 08:45:55 -07002174 buf_index = (unsigned long) req->rw.kiocb.private;
Jens Axboeedafcce2019-01-09 09:16:05 -07002175 if (unlikely(buf_index >= ctx->nr_user_bufs))
2176 return -EFAULT;
2177
2178 index = array_index_nospec(buf_index, ctx->nr_user_bufs);
2179 imu = &ctx->user_bufs[index];
Jens Axboe9adbd452019-12-20 08:45:55 -07002180 buf_addr = req->rw.addr;
Jens Axboeedafcce2019-01-09 09:16:05 -07002181
2182 /* overflow */
2183 if (buf_addr + len < buf_addr)
2184 return -EFAULT;
2185 /* not inside the mapped region */
2186 if (buf_addr < imu->ubuf || buf_addr + len > imu->ubuf + imu->len)
2187 return -EFAULT;
2188
2189 /*
2190 * May not be a start of buffer, set size appropriately
2191 * and advance us to the beginning.
2192 */
2193 offset = buf_addr - imu->ubuf;
2194 iov_iter_bvec(iter, rw, imu->bvec, imu->nr_bvecs, offset + len);
Jens Axboebd11b3a2019-07-20 08:37:31 -06002195
2196 if (offset) {
2197 /*
2198 * Don't use iov_iter_advance() here, as it's really slow for
2199 * using the latter parts of a big fixed buffer - it iterates
2200 * over each segment manually. We can cheat a bit here, because
2201 * we know that:
2202 *
2203 * 1) it's a BVEC iter, we set it up
2204 * 2) all bvecs are PAGE_SIZE in size, except potentially the
2205 * first and last bvec
2206 *
2207 * So just find our index, and adjust the iterator afterwards.
2208 * If the offset is within the first bvec (or the whole first
2209 * bvec, just use iov_iter_advance(). This makes it easier
2210 * since we can just skip the first segment, which may not
2211 * be PAGE_SIZE aligned.
2212 */
2213 const struct bio_vec *bvec = imu->bvec;
2214
2215 if (offset <= bvec->bv_len) {
2216 iov_iter_advance(iter, offset);
2217 } else {
2218 unsigned long seg_skip;
2219
2220 /* skip first vec */
2221 offset -= bvec->bv_len;
2222 seg_skip = 1 + (offset >> PAGE_SHIFT);
2223
2224 iter->bvec = bvec + seg_skip;
2225 iter->nr_segs -= seg_skip;
Aleix Roca Nonell99c79f62019-08-15 14:03:22 +02002226 iter->count -= bvec->bv_len + offset;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002227 iter->iov_offset = offset & ~PAGE_MASK;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002228 }
2229 }
2230
Jens Axboe5e559562019-11-13 16:12:46 -07002231 return len;
Jens Axboeedafcce2019-01-09 09:16:05 -07002232}
2233
Jens Axboebcda7ba2020-02-23 16:42:51 -07002234static void io_ring_submit_unlock(struct io_ring_ctx *ctx, bool needs_lock)
2235{
2236 if (needs_lock)
2237 mutex_unlock(&ctx->uring_lock);
2238}
2239
2240static void io_ring_submit_lock(struct io_ring_ctx *ctx, bool needs_lock)
2241{
2242 /*
2243 * "Normal" inline submissions always hold the uring_lock, since we
2244 * grab it from the system call. Same is true for the SQPOLL offload.
2245 * The only exception is when we've detached the request and issue it
2246 * from an async worker thread, grab the lock for that case.
2247 */
2248 if (needs_lock)
2249 mutex_lock(&ctx->uring_lock);
2250}
2251
2252static struct io_buffer *io_buffer_select(struct io_kiocb *req, size_t *len,
2253 int bgid, struct io_buffer *kbuf,
2254 bool needs_lock)
2255{
2256 struct io_buffer *head;
2257
2258 if (req->flags & REQ_F_BUFFER_SELECTED)
2259 return kbuf;
2260
2261 io_ring_submit_lock(req->ctx, needs_lock);
2262
2263 lockdep_assert_held(&req->ctx->uring_lock);
2264
2265 head = idr_find(&req->ctx->io_buffer_idr, bgid);
2266 if (head) {
2267 if (!list_empty(&head->list)) {
2268 kbuf = list_last_entry(&head->list, struct io_buffer,
2269 list);
2270 list_del(&kbuf->list);
2271 } else {
2272 kbuf = head;
2273 idr_remove(&req->ctx->io_buffer_idr, bgid);
2274 }
2275 if (*len > kbuf->len)
2276 *len = kbuf->len;
2277 } else {
2278 kbuf = ERR_PTR(-ENOBUFS);
2279 }
2280
2281 io_ring_submit_unlock(req->ctx, needs_lock);
2282
2283 return kbuf;
2284}
2285
Jens Axboe4d954c22020-02-27 07:31:19 -07002286static void __user *io_rw_buffer_select(struct io_kiocb *req, size_t *len,
2287 bool needs_lock)
2288{
2289 struct io_buffer *kbuf;
2290 int bgid;
2291
2292 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
2293 bgid = (int) (unsigned long) req->rw.kiocb.private;
2294 kbuf = io_buffer_select(req, len, bgid, kbuf, needs_lock);
2295 if (IS_ERR(kbuf))
2296 return kbuf;
2297 req->rw.addr = (u64) (unsigned long) kbuf;
2298 req->flags |= REQ_F_BUFFER_SELECTED;
2299 return u64_to_user_ptr(kbuf->addr);
2300}
2301
2302#ifdef CONFIG_COMPAT
2303static ssize_t io_compat_import(struct io_kiocb *req, struct iovec *iov,
2304 bool needs_lock)
2305{
2306 struct compat_iovec __user *uiov;
2307 compat_ssize_t clen;
2308 void __user *buf;
2309 ssize_t len;
2310
2311 uiov = u64_to_user_ptr(req->rw.addr);
2312 if (!access_ok(uiov, sizeof(*uiov)))
2313 return -EFAULT;
2314 if (__get_user(clen, &uiov->iov_len))
2315 return -EFAULT;
2316 if (clen < 0)
2317 return -EINVAL;
2318
2319 len = clen;
2320 buf = io_rw_buffer_select(req, &len, needs_lock);
2321 if (IS_ERR(buf))
2322 return PTR_ERR(buf);
2323 iov[0].iov_base = buf;
2324 iov[0].iov_len = (compat_size_t) len;
2325 return 0;
2326}
2327#endif
2328
2329static ssize_t __io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
2330 bool needs_lock)
2331{
2332 struct iovec __user *uiov = u64_to_user_ptr(req->rw.addr);
2333 void __user *buf;
2334 ssize_t len;
2335
2336 if (copy_from_user(iov, uiov, sizeof(*uiov)))
2337 return -EFAULT;
2338
2339 len = iov[0].iov_len;
2340 if (len < 0)
2341 return -EINVAL;
2342 buf = io_rw_buffer_select(req, &len, needs_lock);
2343 if (IS_ERR(buf))
2344 return PTR_ERR(buf);
2345 iov[0].iov_base = buf;
2346 iov[0].iov_len = len;
2347 return 0;
2348}
2349
2350static ssize_t io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
2351 bool needs_lock)
2352{
2353 if (req->flags & REQ_F_BUFFER_SELECTED)
2354 return 0;
2355 if (!req->rw.len)
2356 return 0;
2357 else if (req->rw.len > 1)
2358 return -EINVAL;
2359
2360#ifdef CONFIG_COMPAT
2361 if (req->ctx->compat)
2362 return io_compat_import(req, iov, needs_lock);
2363#endif
2364
2365 return __io_iov_buffer_select(req, iov, needs_lock);
2366}
2367
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002368static ssize_t io_import_iovec(int rw, struct io_kiocb *req,
Jens Axboebcda7ba2020-02-23 16:42:51 -07002369 struct iovec **iovec, struct iov_iter *iter,
2370 bool needs_lock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002371{
Jens Axboe9adbd452019-12-20 08:45:55 -07002372 void __user *buf = u64_to_user_ptr(req->rw.addr);
2373 size_t sqe_len = req->rw.len;
Jens Axboe4d954c22020-02-27 07:31:19 -07002374 ssize_t ret;
Jens Axboeedafcce2019-01-09 09:16:05 -07002375 u8 opcode;
2376
Jens Axboed625c6e2019-12-17 19:53:05 -07002377 opcode = req->opcode;
Pavel Begunkov7d009162019-11-25 23:14:40 +03002378 if (opcode == IORING_OP_READ_FIXED || opcode == IORING_OP_WRITE_FIXED) {
Jens Axboeedafcce2019-01-09 09:16:05 -07002379 *iovec = NULL;
Jens Axboe9adbd452019-12-20 08:45:55 -07002380 return io_import_fixed(req, rw, iter);
Jens Axboeedafcce2019-01-09 09:16:05 -07002381 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002382
Jens Axboebcda7ba2020-02-23 16:42:51 -07002383 /* buffer index only valid with fixed read/write, or buffer select */
2384 if (req->rw.kiocb.private && !(req->flags & REQ_F_BUFFER_SELECT))
Jens Axboe9adbd452019-12-20 08:45:55 -07002385 return -EINVAL;
2386
Jens Axboe3a6820f2019-12-22 15:19:35 -07002387 if (opcode == IORING_OP_READ || opcode == IORING_OP_WRITE) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07002388 if (req->flags & REQ_F_BUFFER_SELECT) {
Jens Axboe4d954c22020-02-27 07:31:19 -07002389 buf = io_rw_buffer_select(req, &sqe_len, needs_lock);
2390 if (IS_ERR(buf)) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07002391 *iovec = NULL;
Jens Axboe4d954c22020-02-27 07:31:19 -07002392 return PTR_ERR(buf);
Jens Axboebcda7ba2020-02-23 16:42:51 -07002393 }
Jens Axboe3f9d6442020-03-11 12:27:04 -06002394 req->rw.len = sqe_len;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002395 }
2396
Jens Axboe3a6820f2019-12-22 15:19:35 -07002397 ret = import_single_range(rw, buf, sqe_len, *iovec, iter);
2398 *iovec = NULL;
Jens Axboe3a901592020-02-25 17:48:55 -07002399 return ret < 0 ? ret : sqe_len;
Jens Axboe3a6820f2019-12-22 15:19:35 -07002400 }
2401
Jens Axboef67676d2019-12-02 11:03:47 -07002402 if (req->io) {
2403 struct io_async_rw *iorw = &req->io->rw;
2404
2405 *iovec = iorw->iov;
2406 iov_iter_init(iter, rw, *iovec, iorw->nr_segs, iorw->size);
2407 if (iorw->iov == iorw->fast_iov)
2408 *iovec = NULL;
2409 return iorw->size;
2410 }
2411
Jens Axboe4d954c22020-02-27 07:31:19 -07002412 if (req->flags & REQ_F_BUFFER_SELECT) {
2413 ret = io_iov_buffer_select(req, *iovec, needs_lock);
Jens Axboe3f9d6442020-03-11 12:27:04 -06002414 if (!ret) {
2415 ret = (*iovec)->iov_len;
2416 iov_iter_init(iter, rw, *iovec, 1, ret);
2417 }
Jens Axboe4d954c22020-02-27 07:31:19 -07002418 *iovec = NULL;
2419 return ret;
2420 }
2421
Jens Axboe2b188cc2019-01-07 10:46:33 -07002422#ifdef CONFIG_COMPAT
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002423 if (req->ctx->compat)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002424 return compat_import_iovec(rw, buf, sqe_len, UIO_FASTIOV,
2425 iovec, iter);
2426#endif
2427
2428 return import_iovec(rw, buf, sqe_len, UIO_FASTIOV, iovec, iter);
2429}
2430
Jens Axboe32960612019-09-23 11:05:34 -06002431/*
2432 * For files that don't have ->read_iter() and ->write_iter(), handle them
2433 * by looping over ->read() or ->write() manually.
2434 */
2435static ssize_t loop_rw_iter(int rw, struct file *file, struct kiocb *kiocb,
2436 struct iov_iter *iter)
2437{
2438 ssize_t ret = 0;
2439
2440 /*
2441 * Don't support polled IO through this interface, and we can't
2442 * support non-blocking either. For the latter, this just causes
2443 * the kiocb to be handled from an async context.
2444 */
2445 if (kiocb->ki_flags & IOCB_HIPRI)
2446 return -EOPNOTSUPP;
2447 if (kiocb->ki_flags & IOCB_NOWAIT)
2448 return -EAGAIN;
2449
2450 while (iov_iter_count(iter)) {
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002451 struct iovec iovec;
Jens Axboe32960612019-09-23 11:05:34 -06002452 ssize_t nr;
2453
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002454 if (!iov_iter_is_bvec(iter)) {
2455 iovec = iov_iter_iovec(iter);
2456 } else {
2457 /* fixed buffers import bvec */
2458 iovec.iov_base = kmap(iter->bvec->bv_page)
2459 + iter->iov_offset;
2460 iovec.iov_len = min(iter->count,
2461 iter->bvec->bv_len - iter->iov_offset);
2462 }
2463
Jens Axboe32960612019-09-23 11:05:34 -06002464 if (rw == READ) {
2465 nr = file->f_op->read(file, iovec.iov_base,
2466 iovec.iov_len, &kiocb->ki_pos);
2467 } else {
2468 nr = file->f_op->write(file, iovec.iov_base,
2469 iovec.iov_len, &kiocb->ki_pos);
2470 }
2471
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002472 if (iov_iter_is_bvec(iter))
2473 kunmap(iter->bvec->bv_page);
2474
Jens Axboe32960612019-09-23 11:05:34 -06002475 if (nr < 0) {
2476 if (!ret)
2477 ret = nr;
2478 break;
2479 }
2480 ret += nr;
2481 if (nr != iovec.iov_len)
2482 break;
2483 iov_iter_advance(iter, nr);
2484 }
2485
2486 return ret;
2487}
2488
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002489static void io_req_map_rw(struct io_kiocb *req, ssize_t io_size,
Jens Axboef67676d2019-12-02 11:03:47 -07002490 struct iovec *iovec, struct iovec *fast_iov,
2491 struct iov_iter *iter)
2492{
2493 req->io->rw.nr_segs = iter->nr_segs;
2494 req->io->rw.size = io_size;
2495 req->io->rw.iov = iovec;
2496 if (!req->io->rw.iov) {
2497 req->io->rw.iov = req->io->rw.fast_iov;
Xiaoguang Wang45097da2020-04-08 22:29:58 +08002498 if (req->io->rw.iov != fast_iov)
2499 memcpy(req->io->rw.iov, fast_iov,
2500 sizeof(struct iovec) * iter->nr_segs);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002501 } else {
2502 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboef67676d2019-12-02 11:03:47 -07002503 }
2504}
2505
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08002506static inline int __io_alloc_async_ctx(struct io_kiocb *req)
2507{
2508 req->io = kmalloc(sizeof(*req->io), GFP_KERNEL);
2509 return req->io == NULL;
2510}
2511
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002512static int io_alloc_async_ctx(struct io_kiocb *req)
Jens Axboef67676d2019-12-02 11:03:47 -07002513{
Jens Axboed3656342019-12-18 09:50:26 -07002514 if (!io_op_defs[req->opcode].async_ctx)
2515 return 0;
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08002516
2517 return __io_alloc_async_ctx(req);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002518}
2519
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002520static int io_setup_async_rw(struct io_kiocb *req, ssize_t io_size,
2521 struct iovec *iovec, struct iovec *fast_iov,
2522 struct iov_iter *iter)
2523{
Jens Axboe980ad262020-01-24 23:08:54 -07002524 if (!io_op_defs[req->opcode].async_ctx)
Jens Axboe74566df2020-01-13 19:23:24 -07002525 return 0;
Jens Axboe5d204bc2020-01-31 12:06:52 -07002526 if (!req->io) {
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08002527 if (__io_alloc_async_ctx(req))
Jens Axboe5d204bc2020-01-31 12:06:52 -07002528 return -ENOMEM;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002529
Jens Axboe5d204bc2020-01-31 12:06:52 -07002530 io_req_map_rw(req, io_size, iovec, fast_iov, iter);
2531 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002532 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002533}
2534
Jens Axboe3529d8c2019-12-19 18:24:38 -07002535static int io_read_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2536 bool force_nonblock)
Jens Axboef67676d2019-12-02 11:03:47 -07002537{
Jens Axboe3529d8c2019-12-19 18:24:38 -07002538 struct io_async_ctx *io;
2539 struct iov_iter iter;
Jens Axboef67676d2019-12-02 11:03:47 -07002540 ssize_t ret;
2541
Jens Axboe3529d8c2019-12-19 18:24:38 -07002542 ret = io_prep_rw(req, sqe, force_nonblock);
2543 if (ret)
2544 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07002545
Jens Axboe3529d8c2019-12-19 18:24:38 -07002546 if (unlikely(!(req->file->f_mode & FMODE_READ)))
2547 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07002548
Pavel Begunkov5f798be2020-02-08 13:28:02 +03002549 /* either don't need iovec imported or already have it */
2550 if (!req->io || req->flags & REQ_F_NEED_CLEANUP)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002551 return 0;
2552
2553 io = req->io;
2554 io->rw.iov = io->rw.fast_iov;
2555 req->io = NULL;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002556 ret = io_import_iovec(READ, req, &io->rw.iov, &iter, !force_nonblock);
Jens Axboe3529d8c2019-12-19 18:24:38 -07002557 req->io = io;
2558 if (ret < 0)
2559 return ret;
2560
2561 io_req_map_rw(req, ret, io->rw.iov, io->rw.fast_iov, &iter);
2562 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002563}
2564
Pavel Begunkov014db002020-03-03 21:33:12 +03002565static int io_read(struct io_kiocb *req, bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002566{
2567 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07002568 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002569 struct iov_iter iter;
Jens Axboe31b51512019-01-18 22:56:34 -07002570 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07002571 ssize_t io_size, ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002572
Jens Axboebcda7ba2020-02-23 16:42:51 -07002573 ret = io_import_iovec(READ, req, &iovec, &iter, !force_nonblock);
Jens Axboe06b76d42019-12-19 14:44:26 -07002574 if (ret < 0)
2575 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002576
Jens Axboefd6c2e42019-12-18 12:19:41 -07002577 /* Ensure we clear previously set non-block flag */
2578 if (!force_nonblock)
Jens Axboe29de5f62020-02-20 09:56:08 -07002579 kiocb->ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07002580
Bijan Mottahedeh797f3f52020-01-15 18:37:45 -08002581 req->result = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002582 io_size = ret;
Pavel Begunkovdea3b492020-04-12 02:05:04 +03002583 if (req->flags & REQ_F_LINK_HEAD)
Jens Axboef67676d2019-12-02 11:03:47 -07002584 req->result = io_size;
2585
2586 /*
2587 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
2588 * we know to async punt it even if it was opened O_NONBLOCK
2589 */
Jens Axboeaf197f52020-04-28 13:15:06 -06002590 if (force_nonblock && !io_file_supports_async(req->file, READ))
Jens Axboef67676d2019-12-02 11:03:47 -07002591 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06002592
Jens Axboe31b51512019-01-18 22:56:34 -07002593 iov_count = iov_iter_count(&iter);
Jens Axboe9adbd452019-12-20 08:45:55 -07002594 ret = rw_verify_area(READ, req->file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002595 if (!ret) {
2596 ssize_t ret2;
2597
Jens Axboe9adbd452019-12-20 08:45:55 -07002598 if (req->file->f_op->read_iter)
2599 ret2 = call_read_iter(req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002600 else
Jens Axboe9adbd452019-12-20 08:45:55 -07002601 ret2 = loop_rw_iter(READ, req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002602
Jens Axboe9d93a3f2019-05-15 13:53:07 -06002603 /* Catch -EAGAIN return for forced non-blocking submission */
Jens Axboef67676d2019-12-02 11:03:47 -07002604 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkov014db002020-03-03 21:33:12 +03002605 kiocb_done(kiocb, ret2);
Jens Axboef67676d2019-12-02 11:03:47 -07002606 } else {
2607copy_iov:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002608 ret = io_setup_async_rw(req, io_size, iovec,
Jens Axboef67676d2019-12-02 11:03:47 -07002609 inline_vecs, &iter);
2610 if (ret)
2611 goto out_free;
Jens Axboe29de5f62020-02-20 09:56:08 -07002612 /* any defer here is final, must blocking retry */
Jens Axboe490e8962020-04-28 13:16:53 -06002613 if (!(req->flags & REQ_F_NOWAIT) &&
2614 !file_can_poll(req->file))
Jens Axboe29de5f62020-02-20 09:56:08 -07002615 req->flags |= REQ_F_MUST_PUNT;
Jens Axboef67676d2019-12-02 11:03:47 -07002616 return -EAGAIN;
2617 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002618 }
Jens Axboef67676d2019-12-02 11:03:47 -07002619out_free:
Pavel Begunkov1e950812020-02-06 19:51:16 +03002620 kfree(iovec);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002621 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002622 return ret;
2623}
2624
Jens Axboe3529d8c2019-12-19 18:24:38 -07002625static int io_write_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2626 bool force_nonblock)
Jens Axboef67676d2019-12-02 11:03:47 -07002627{
Jens Axboe3529d8c2019-12-19 18:24:38 -07002628 struct io_async_ctx *io;
2629 struct iov_iter iter;
Jens Axboef67676d2019-12-02 11:03:47 -07002630 ssize_t ret;
2631
Jens Axboe3529d8c2019-12-19 18:24:38 -07002632 ret = io_prep_rw(req, sqe, force_nonblock);
2633 if (ret)
2634 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07002635
Jens Axboe3529d8c2019-12-19 18:24:38 -07002636 if (unlikely(!(req->file->f_mode & FMODE_WRITE)))
2637 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07002638
Jens Axboe4ed734b2020-03-20 11:23:41 -06002639 req->fsize = rlimit(RLIMIT_FSIZE);
2640
Pavel Begunkov5f798be2020-02-08 13:28:02 +03002641 /* either don't need iovec imported or already have it */
2642 if (!req->io || req->flags & REQ_F_NEED_CLEANUP)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002643 return 0;
2644
2645 io = req->io;
2646 io->rw.iov = io->rw.fast_iov;
2647 req->io = NULL;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002648 ret = io_import_iovec(WRITE, req, &io->rw.iov, &iter, !force_nonblock);
Jens Axboe3529d8c2019-12-19 18:24:38 -07002649 req->io = io;
2650 if (ret < 0)
2651 return ret;
2652
2653 io_req_map_rw(req, ret, io->rw.iov, io->rw.fast_iov, &iter);
2654 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002655}
2656
Pavel Begunkov014db002020-03-03 21:33:12 +03002657static int io_write(struct io_kiocb *req, bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002658{
2659 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07002660 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002661 struct iov_iter iter;
Jens Axboe31b51512019-01-18 22:56:34 -07002662 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07002663 ssize_t ret, io_size;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002664
Jens Axboebcda7ba2020-02-23 16:42:51 -07002665 ret = io_import_iovec(WRITE, req, &iovec, &iter, !force_nonblock);
Jens Axboe06b76d42019-12-19 14:44:26 -07002666 if (ret < 0)
2667 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002668
Jens Axboefd6c2e42019-12-18 12:19:41 -07002669 /* Ensure we clear previously set non-block flag */
2670 if (!force_nonblock)
Jens Axboe9adbd452019-12-20 08:45:55 -07002671 req->rw.kiocb.ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07002672
Bijan Mottahedeh797f3f52020-01-15 18:37:45 -08002673 req->result = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002674 io_size = ret;
Pavel Begunkovdea3b492020-04-12 02:05:04 +03002675 if (req->flags & REQ_F_LINK_HEAD)
Jens Axboef67676d2019-12-02 11:03:47 -07002676 req->result = io_size;
2677
2678 /*
2679 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
2680 * we know to async punt it even if it was opened O_NONBLOCK
2681 */
Jens Axboeaf197f52020-04-28 13:15:06 -06002682 if (force_nonblock && !io_file_supports_async(req->file, WRITE))
Jens Axboef67676d2019-12-02 11:03:47 -07002683 goto copy_iov;
Jens Axboef67676d2019-12-02 11:03:47 -07002684
Jens Axboe10d59342019-12-09 20:16:22 -07002685 /* file path doesn't support NOWAIT for non-direct_IO */
2686 if (force_nonblock && !(kiocb->ki_flags & IOCB_DIRECT) &&
2687 (req->flags & REQ_F_ISREG))
Jens Axboef67676d2019-12-02 11:03:47 -07002688 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06002689
Jens Axboe31b51512019-01-18 22:56:34 -07002690 iov_count = iov_iter_count(&iter);
Jens Axboe9adbd452019-12-20 08:45:55 -07002691 ret = rw_verify_area(WRITE, req->file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002692 if (!ret) {
Roman Penyaev9bf79332019-03-25 20:09:24 +01002693 ssize_t ret2;
2694
Jens Axboe2b188cc2019-01-07 10:46:33 -07002695 /*
2696 * Open-code file_start_write here to grab freeze protection,
2697 * which will be released by another thread in
2698 * io_complete_rw(). Fool lockdep by telling it the lock got
2699 * released so that it doesn't complain about the held lock when
2700 * we return to userspace.
2701 */
Jens Axboe491381ce2019-10-17 09:20:46 -06002702 if (req->flags & REQ_F_ISREG) {
Jens Axboe9adbd452019-12-20 08:45:55 -07002703 __sb_start_write(file_inode(req->file)->i_sb,
Jens Axboe2b188cc2019-01-07 10:46:33 -07002704 SB_FREEZE_WRITE, true);
Jens Axboe9adbd452019-12-20 08:45:55 -07002705 __sb_writers_release(file_inode(req->file)->i_sb,
Jens Axboe2b188cc2019-01-07 10:46:33 -07002706 SB_FREEZE_WRITE);
2707 }
2708 kiocb->ki_flags |= IOCB_WRITE;
Roman Penyaev9bf79332019-03-25 20:09:24 +01002709
Jens Axboe4ed734b2020-03-20 11:23:41 -06002710 if (!force_nonblock)
2711 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = req->fsize;
2712
Jens Axboe9adbd452019-12-20 08:45:55 -07002713 if (req->file->f_op->write_iter)
2714 ret2 = call_write_iter(req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002715 else
Jens Axboe9adbd452019-12-20 08:45:55 -07002716 ret2 = loop_rw_iter(WRITE, req->file, kiocb, &iter);
Jens Axboe4ed734b2020-03-20 11:23:41 -06002717
2718 if (!force_nonblock)
2719 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = RLIM_INFINITY;
2720
Jens Axboefaac9962020-02-07 15:45:22 -07002721 /*
Chucheng Luobff60352020-03-25 11:31:38 +08002722 * Raw bdev writes will return -EOPNOTSUPP for IOCB_NOWAIT. Just
Jens Axboefaac9962020-02-07 15:45:22 -07002723 * retry them without IOCB_NOWAIT.
2724 */
2725 if (ret2 == -EOPNOTSUPP && (kiocb->ki_flags & IOCB_NOWAIT))
2726 ret2 = -EAGAIN;
Jens Axboef67676d2019-12-02 11:03:47 -07002727 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkov014db002020-03-03 21:33:12 +03002728 kiocb_done(kiocb, ret2);
Jens Axboef67676d2019-12-02 11:03:47 -07002729 } else {
2730copy_iov:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002731 ret = io_setup_async_rw(req, io_size, iovec,
Jens Axboef67676d2019-12-02 11:03:47 -07002732 inline_vecs, &iter);
2733 if (ret)
2734 goto out_free;
Jens Axboe29de5f62020-02-20 09:56:08 -07002735 /* any defer here is final, must blocking retry */
Jens Axboe490e8962020-04-28 13:16:53 -06002736 if (!file_can_poll(req->file))
2737 req->flags |= REQ_F_MUST_PUNT;
Jens Axboef67676d2019-12-02 11:03:47 -07002738 return -EAGAIN;
2739 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002740 }
Jens Axboe31b51512019-01-18 22:56:34 -07002741out_free:
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002742 req->flags &= ~REQ_F_NEED_CLEANUP;
Pavel Begunkov1e950812020-02-06 19:51:16 +03002743 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002744 return ret;
2745}
2746
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002747static int io_splice_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2748{
2749 struct io_splice* sp = &req->splice;
2750 unsigned int valid_flags = SPLICE_F_FD_IN_FIXED | SPLICE_F_ALL;
2751 int ret;
2752
2753 if (req->flags & REQ_F_NEED_CLEANUP)
2754 return 0;
2755
2756 sp->file_in = NULL;
2757 sp->off_in = READ_ONCE(sqe->splice_off_in);
2758 sp->off_out = READ_ONCE(sqe->off);
2759 sp->len = READ_ONCE(sqe->len);
2760 sp->flags = READ_ONCE(sqe->splice_flags);
2761
2762 if (unlikely(sp->flags & ~valid_flags))
2763 return -EINVAL;
2764
2765 ret = io_file_get(NULL, req, READ_ONCE(sqe->splice_fd_in), &sp->file_in,
2766 (sp->flags & SPLICE_F_FD_IN_FIXED));
2767 if (ret)
2768 return ret;
2769 req->flags |= REQ_F_NEED_CLEANUP;
2770
2771 if (!S_ISREG(file_inode(sp->file_in)->i_mode))
2772 req->work.flags |= IO_WQ_WORK_UNBOUND;
2773
2774 return 0;
2775}
2776
Pavel Begunkov014db002020-03-03 21:33:12 +03002777static int io_splice(struct io_kiocb *req, bool force_nonblock)
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002778{
2779 struct io_splice *sp = &req->splice;
2780 struct file *in = sp->file_in;
2781 struct file *out = sp->file_out;
2782 unsigned int flags = sp->flags & ~SPLICE_F_FD_IN_FIXED;
2783 loff_t *poff_in, *poff_out;
2784 long ret;
2785
Pavel Begunkov2fb3e822020-05-01 17:09:38 +03002786 if (force_nonblock)
2787 return -EAGAIN;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002788
2789 poff_in = (sp->off_in == -1) ? NULL : &sp->off_in;
2790 poff_out = (sp->off_out == -1) ? NULL : &sp->off_out;
2791 ret = do_splice(in, poff_in, out, poff_out, sp->len, flags);
2792 if (force_nonblock && ret == -EAGAIN)
2793 return -EAGAIN;
2794
2795 io_put_file(req, in, (sp->flags & SPLICE_F_FD_IN_FIXED));
2796 req->flags &= ~REQ_F_NEED_CLEANUP;
2797
2798 io_cqring_add_event(req, ret);
2799 if (ret != sp->len)
2800 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03002801 io_put_req(req);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002802 return 0;
2803}
2804
Jens Axboe2b188cc2019-01-07 10:46:33 -07002805/*
2806 * IORING_OP_NOP just posts a completion event, nothing else.
2807 */
Jens Axboe78e19bb2019-11-06 15:21:34 -07002808static int io_nop(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002809{
2810 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002811
Jens Axboedef596e2019-01-09 08:59:42 -07002812 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
2813 return -EINVAL;
2814
Jens Axboe78e19bb2019-11-06 15:21:34 -07002815 io_cqring_add_event(req, 0);
Jens Axboee65ef562019-03-12 10:16:44 -06002816 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002817 return 0;
2818}
2819
Jens Axboe3529d8c2019-12-19 18:24:38 -07002820static int io_prep_fsync(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002821{
Jens Axboe6b063142019-01-10 22:13:58 -07002822 struct io_ring_ctx *ctx = req->ctx;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002823
Jens Axboe09bb8392019-03-13 12:39:28 -06002824 if (!req->file)
2825 return -EBADF;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002826
Jens Axboe6b063142019-01-10 22:13:58 -07002827 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboedef596e2019-01-09 08:59:42 -07002828 return -EINVAL;
Jens Axboeedafcce2019-01-09 09:16:05 -07002829 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002830 return -EINVAL;
2831
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002832 req->sync.flags = READ_ONCE(sqe->fsync_flags);
2833 if (unlikely(req->sync.flags & ~IORING_FSYNC_DATASYNC))
2834 return -EINVAL;
2835
2836 req->sync.off = READ_ONCE(sqe->off);
2837 req->sync.len = READ_ONCE(sqe->len);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002838 return 0;
2839}
2840
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002841static bool io_req_cancelled(struct io_kiocb *req)
2842{
2843 if (req->work.flags & IO_WQ_WORK_CANCEL) {
2844 req_set_fail_links(req);
2845 io_cqring_add_event(req, -ECANCELED);
2846 io_put_req(req);
2847 return true;
2848 }
2849
2850 return false;
2851}
2852
Pavel Begunkov014db002020-03-03 21:33:12 +03002853static void __io_fsync(struct io_kiocb *req)
Jens Axboe78912932020-01-14 22:09:06 -07002854{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002855 loff_t end = req->sync.off + req->sync.len;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002856 int ret;
2857
Jens Axboe9adbd452019-12-20 08:45:55 -07002858 ret = vfs_fsync_range(req->file, req->sync.off,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002859 end > 0 ? end : LLONG_MAX,
2860 req->sync.flags & IORING_FSYNC_DATASYNC);
2861 if (ret < 0)
2862 req_set_fail_links(req);
2863 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03002864 io_put_req(req);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002865}
2866
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002867static void io_fsync_finish(struct io_wq_work **workptr)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002868{
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002869 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002870
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002871 if (io_req_cancelled(req))
2872 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03002873 __io_fsync(req);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03002874 io_steal_work(req, workptr);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002875}
2876
Pavel Begunkov014db002020-03-03 21:33:12 +03002877static int io_fsync(struct io_kiocb *req, bool force_nonblock)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002878{
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002879 /* fsync always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002880 if (force_nonblock) {
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002881 req->work.func = io_fsync_finish;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002882 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002883 }
Pavel Begunkov014db002020-03-03 21:33:12 +03002884 __io_fsync(req);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002885 return 0;
2886}
2887
Pavel Begunkov014db002020-03-03 21:33:12 +03002888static void __io_fallocate(struct io_kiocb *req)
Jens Axboed63d1b52019-12-10 10:38:56 -07002889{
Jens Axboed63d1b52019-12-10 10:38:56 -07002890 int ret;
2891
Jens Axboe4ed734b2020-03-20 11:23:41 -06002892 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = req->fsize;
Jens Axboed63d1b52019-12-10 10:38:56 -07002893 ret = vfs_fallocate(req->file, req->sync.mode, req->sync.off,
2894 req->sync.len);
Jens Axboe4ed734b2020-03-20 11:23:41 -06002895 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = RLIM_INFINITY;
Jens Axboed63d1b52019-12-10 10:38:56 -07002896 if (ret < 0)
2897 req_set_fail_links(req);
2898 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03002899 io_put_req(req);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002900}
2901
Jens Axboe2b188cc2019-01-07 10:46:33 -07002902static void io_fallocate_finish(struct io_wq_work **workptr)
2903{
2904 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Jens Axboed63d1b52019-12-10 10:38:56 -07002905
2906 if (io_req_cancelled(req))
2907 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03002908 __io_fallocate(req);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03002909 io_steal_work(req, workptr);
Jens Axboed63d1b52019-12-10 10:38:56 -07002910}
2911
2912static int io_fallocate_prep(struct io_kiocb *req,
2913 const struct io_uring_sqe *sqe)
2914{
2915 if (sqe->ioprio || sqe->buf_index || sqe->rw_flags)
2916 return -EINVAL;
2917
2918 req->sync.off = READ_ONCE(sqe->off);
2919 req->sync.len = READ_ONCE(sqe->addr);
2920 req->sync.mode = READ_ONCE(sqe->len);
Jens Axboe4ed734b2020-03-20 11:23:41 -06002921 req->fsize = rlimit(RLIMIT_FSIZE);
Jens Axboed63d1b52019-12-10 10:38:56 -07002922 return 0;
2923}
2924
Pavel Begunkov014db002020-03-03 21:33:12 +03002925static int io_fallocate(struct io_kiocb *req, bool force_nonblock)
Jens Axboed63d1b52019-12-10 10:38:56 -07002926{
Jens Axboed63d1b52019-12-10 10:38:56 -07002927 /* fallocate always requiring blocking context */
2928 if (force_nonblock) {
Jens Axboed63d1b52019-12-10 10:38:56 -07002929 req->work.func = io_fallocate_finish;
2930 return -EAGAIN;
2931 }
2932
Pavel Begunkov014db002020-03-03 21:33:12 +03002933 __io_fallocate(req);
Jens Axboed63d1b52019-12-10 10:38:56 -07002934 return 0;
2935}
2936
Jens Axboe15b71ab2019-12-11 11:20:36 -07002937static int io_openat_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2938{
Jens Axboef8748882020-01-08 17:47:02 -07002939 const char __user *fname;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002940 int ret;
2941
2942 if (sqe->ioprio || sqe->buf_index)
2943 return -EINVAL;
Pavel Begunkov9c280f92020-04-08 08:58:46 +03002944 if (req->flags & REQ_F_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07002945 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03002946 if (req->flags & REQ_F_NEED_CLEANUP)
2947 return 0;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002948
2949 req->open.dfd = READ_ONCE(sqe->fd);
Jens Axboec12cedf2020-01-08 17:41:21 -07002950 req->open.how.mode = READ_ONCE(sqe->len);
Jens Axboef8748882020-01-08 17:47:02 -07002951 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboec12cedf2020-01-08 17:41:21 -07002952 req->open.how.flags = READ_ONCE(sqe->open_flags);
Jens Axboe08a1d26eb2020-04-08 09:20:54 -06002953 if (force_o_largefile())
2954 req->open.how.flags |= O_LARGEFILE;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002955
Jens Axboef8748882020-01-08 17:47:02 -07002956 req->open.filename = getname(fname);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002957 if (IS_ERR(req->open.filename)) {
2958 ret = PTR_ERR(req->open.filename);
2959 req->open.filename = NULL;
2960 return ret;
2961 }
2962
Jens Axboe4022e7a2020-03-19 19:23:18 -06002963 req->open.nofile = rlimit(RLIMIT_NOFILE);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03002964 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002965 return 0;
2966}
2967
Jens Axboecebdb982020-01-08 17:59:24 -07002968static int io_openat2_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2969{
2970 struct open_how __user *how;
2971 const char __user *fname;
2972 size_t len;
2973 int ret;
2974
2975 if (sqe->ioprio || sqe->buf_index)
2976 return -EINVAL;
Pavel Begunkov9c280f92020-04-08 08:58:46 +03002977 if (req->flags & REQ_F_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07002978 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03002979 if (req->flags & REQ_F_NEED_CLEANUP)
2980 return 0;
Jens Axboecebdb982020-01-08 17:59:24 -07002981
2982 req->open.dfd = READ_ONCE(sqe->fd);
2983 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
2984 how = u64_to_user_ptr(READ_ONCE(sqe->addr2));
2985 len = READ_ONCE(sqe->len);
2986
2987 if (len < OPEN_HOW_SIZE_VER0)
2988 return -EINVAL;
2989
2990 ret = copy_struct_from_user(&req->open.how, sizeof(req->open.how), how,
2991 len);
2992 if (ret)
2993 return ret;
2994
2995 if (!(req->open.how.flags & O_PATH) && force_o_largefile())
2996 req->open.how.flags |= O_LARGEFILE;
2997
2998 req->open.filename = getname(fname);
2999 if (IS_ERR(req->open.filename)) {
3000 ret = PTR_ERR(req->open.filename);
3001 req->open.filename = NULL;
3002 return ret;
3003 }
3004
Jens Axboe4022e7a2020-03-19 19:23:18 -06003005 req->open.nofile = rlimit(RLIMIT_NOFILE);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003006 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboecebdb982020-01-08 17:59:24 -07003007 return 0;
3008}
3009
Pavel Begunkov014db002020-03-03 21:33:12 +03003010static int io_openat2(struct io_kiocb *req, bool force_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07003011{
3012 struct open_flags op;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003013 struct file *file;
3014 int ret;
3015
Jens Axboef86cd202020-01-29 13:46:44 -07003016 if (force_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07003017 return -EAGAIN;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003018
Jens Axboecebdb982020-01-08 17:59:24 -07003019 ret = build_open_flags(&req->open.how, &op);
Jens Axboe15b71ab2019-12-11 11:20:36 -07003020 if (ret)
3021 goto err;
3022
Jens Axboe4022e7a2020-03-19 19:23:18 -06003023 ret = __get_unused_fd_flags(req->open.how.flags, req->open.nofile);
Jens Axboe15b71ab2019-12-11 11:20:36 -07003024 if (ret < 0)
3025 goto err;
3026
3027 file = do_filp_open(req->open.dfd, req->open.filename, &op);
3028 if (IS_ERR(file)) {
3029 put_unused_fd(ret);
3030 ret = PTR_ERR(file);
3031 } else {
3032 fsnotify_open(file);
3033 fd_install(ret, file);
3034 }
3035err:
3036 putname(req->open.filename);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003037 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003038 if (ret < 0)
3039 req_set_fail_links(req);
3040 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003041 io_put_req(req);
Jens Axboe15b71ab2019-12-11 11:20:36 -07003042 return 0;
3043}
3044
Pavel Begunkov014db002020-03-03 21:33:12 +03003045static int io_openat(struct io_kiocb *req, bool force_nonblock)
Jens Axboecebdb982020-01-08 17:59:24 -07003046{
3047 req->open.how = build_open_how(req->open.how.flags, req->open.how.mode);
Pavel Begunkov014db002020-03-03 21:33:12 +03003048 return io_openat2(req, force_nonblock);
Jens Axboecebdb982020-01-08 17:59:24 -07003049}
3050
Jens Axboe067524e2020-03-02 16:32:28 -07003051static int io_remove_buffers_prep(struct io_kiocb *req,
3052 const struct io_uring_sqe *sqe)
3053{
3054 struct io_provide_buf *p = &req->pbuf;
3055 u64 tmp;
3056
3057 if (sqe->ioprio || sqe->rw_flags || sqe->addr || sqe->len || sqe->off)
3058 return -EINVAL;
3059
3060 tmp = READ_ONCE(sqe->fd);
3061 if (!tmp || tmp > USHRT_MAX)
3062 return -EINVAL;
3063
3064 memset(p, 0, sizeof(*p));
3065 p->nbufs = tmp;
3066 p->bgid = READ_ONCE(sqe->buf_group);
3067 return 0;
3068}
3069
3070static int __io_remove_buffers(struct io_ring_ctx *ctx, struct io_buffer *buf,
3071 int bgid, unsigned nbufs)
3072{
3073 unsigned i = 0;
3074
3075 /* shouldn't happen */
3076 if (!nbufs)
3077 return 0;
3078
3079 /* the head kbuf is the list itself */
3080 while (!list_empty(&buf->list)) {
3081 struct io_buffer *nxt;
3082
3083 nxt = list_first_entry(&buf->list, struct io_buffer, list);
3084 list_del(&nxt->list);
3085 kfree(nxt);
3086 if (++i == nbufs)
3087 return i;
3088 }
3089 i++;
3090 kfree(buf);
3091 idr_remove(&ctx->io_buffer_idr, bgid);
3092
3093 return i;
3094}
3095
3096static int io_remove_buffers(struct io_kiocb *req, bool force_nonblock)
3097{
3098 struct io_provide_buf *p = &req->pbuf;
3099 struct io_ring_ctx *ctx = req->ctx;
3100 struct io_buffer *head;
3101 int ret = 0;
3102
3103 io_ring_submit_lock(ctx, !force_nonblock);
3104
3105 lockdep_assert_held(&ctx->uring_lock);
3106
3107 ret = -ENOENT;
3108 head = idr_find(&ctx->io_buffer_idr, p->bgid);
3109 if (head)
3110 ret = __io_remove_buffers(ctx, head, p->bgid, p->nbufs);
3111
3112 io_ring_submit_lock(ctx, !force_nonblock);
3113 if (ret < 0)
3114 req_set_fail_links(req);
3115 io_cqring_add_event(req, ret);
3116 io_put_req(req);
3117 return 0;
3118}
3119
Jens Axboeddf0322d2020-02-23 16:41:33 -07003120static int io_provide_buffers_prep(struct io_kiocb *req,
3121 const struct io_uring_sqe *sqe)
3122{
3123 struct io_provide_buf *p = &req->pbuf;
3124 u64 tmp;
3125
3126 if (sqe->ioprio || sqe->rw_flags)
3127 return -EINVAL;
3128
3129 tmp = READ_ONCE(sqe->fd);
3130 if (!tmp || tmp > USHRT_MAX)
3131 return -E2BIG;
3132 p->nbufs = tmp;
3133 p->addr = READ_ONCE(sqe->addr);
3134 p->len = READ_ONCE(sqe->len);
3135
3136 if (!access_ok(u64_to_user_ptr(p->addr), p->len))
3137 return -EFAULT;
3138
3139 p->bgid = READ_ONCE(sqe->buf_group);
3140 tmp = READ_ONCE(sqe->off);
3141 if (tmp > USHRT_MAX)
3142 return -E2BIG;
3143 p->bid = tmp;
3144 return 0;
3145}
3146
3147static int io_add_buffers(struct io_provide_buf *pbuf, struct io_buffer **head)
3148{
3149 struct io_buffer *buf;
3150 u64 addr = pbuf->addr;
3151 int i, bid = pbuf->bid;
3152
3153 for (i = 0; i < pbuf->nbufs; i++) {
3154 buf = kmalloc(sizeof(*buf), GFP_KERNEL);
3155 if (!buf)
3156 break;
3157
3158 buf->addr = addr;
3159 buf->len = pbuf->len;
3160 buf->bid = bid;
3161 addr += pbuf->len;
3162 bid++;
3163 if (!*head) {
3164 INIT_LIST_HEAD(&buf->list);
3165 *head = buf;
3166 } else {
3167 list_add_tail(&buf->list, &(*head)->list);
3168 }
3169 }
3170
3171 return i ? i : -ENOMEM;
3172}
3173
Jens Axboeddf0322d2020-02-23 16:41:33 -07003174static int io_provide_buffers(struct io_kiocb *req, bool force_nonblock)
3175{
3176 struct io_provide_buf *p = &req->pbuf;
3177 struct io_ring_ctx *ctx = req->ctx;
3178 struct io_buffer *head, *list;
3179 int ret = 0;
3180
3181 io_ring_submit_lock(ctx, !force_nonblock);
3182
3183 lockdep_assert_held(&ctx->uring_lock);
3184
3185 list = head = idr_find(&ctx->io_buffer_idr, p->bgid);
3186
3187 ret = io_add_buffers(p, &head);
3188 if (ret < 0)
3189 goto out;
3190
3191 if (!list) {
3192 ret = idr_alloc(&ctx->io_buffer_idr, head, p->bgid, p->bgid + 1,
3193 GFP_KERNEL);
3194 if (ret < 0) {
Jens Axboe067524e2020-03-02 16:32:28 -07003195 __io_remove_buffers(ctx, head, p->bgid, -1U);
Jens Axboeddf0322d2020-02-23 16:41:33 -07003196 goto out;
3197 }
3198 }
3199out:
3200 io_ring_submit_unlock(ctx, !force_nonblock);
3201 if (ret < 0)
3202 req_set_fail_links(req);
3203 io_cqring_add_event(req, ret);
3204 io_put_req(req);
3205 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003206}
3207
Jens Axboe3e4827b2020-01-08 15:18:09 -07003208static int io_epoll_ctl_prep(struct io_kiocb *req,
3209 const struct io_uring_sqe *sqe)
3210{
3211#if defined(CONFIG_EPOLL)
3212 if (sqe->ioprio || sqe->buf_index)
3213 return -EINVAL;
3214
3215 req->epoll.epfd = READ_ONCE(sqe->fd);
3216 req->epoll.op = READ_ONCE(sqe->len);
3217 req->epoll.fd = READ_ONCE(sqe->off);
3218
3219 if (ep_op_has_event(req->epoll.op)) {
3220 struct epoll_event __user *ev;
3221
3222 ev = u64_to_user_ptr(READ_ONCE(sqe->addr));
3223 if (copy_from_user(&req->epoll.event, ev, sizeof(*ev)))
3224 return -EFAULT;
3225 }
3226
3227 return 0;
3228#else
3229 return -EOPNOTSUPP;
3230#endif
3231}
3232
Pavel Begunkov014db002020-03-03 21:33:12 +03003233static int io_epoll_ctl(struct io_kiocb *req, bool force_nonblock)
Jens Axboe3e4827b2020-01-08 15:18:09 -07003234{
3235#if defined(CONFIG_EPOLL)
3236 struct io_epoll *ie = &req->epoll;
3237 int ret;
3238
3239 ret = do_epoll_ctl(ie->epfd, ie->op, ie->fd, &ie->event, force_nonblock);
3240 if (force_nonblock && ret == -EAGAIN)
3241 return -EAGAIN;
3242
3243 if (ret < 0)
3244 req_set_fail_links(req);
3245 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003246 io_put_req(req);
Jens Axboe3e4827b2020-01-08 15:18:09 -07003247 return 0;
3248#else
3249 return -EOPNOTSUPP;
3250#endif
3251}
3252
Jens Axboec1ca7572019-12-25 22:18:28 -07003253static int io_madvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3254{
3255#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
3256 if (sqe->ioprio || sqe->buf_index || sqe->off)
3257 return -EINVAL;
3258
3259 req->madvise.addr = READ_ONCE(sqe->addr);
3260 req->madvise.len = READ_ONCE(sqe->len);
3261 req->madvise.advice = READ_ONCE(sqe->fadvise_advice);
3262 return 0;
3263#else
3264 return -EOPNOTSUPP;
3265#endif
3266}
3267
Pavel Begunkov014db002020-03-03 21:33:12 +03003268static int io_madvise(struct io_kiocb *req, bool force_nonblock)
Jens Axboec1ca7572019-12-25 22:18:28 -07003269{
3270#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
3271 struct io_madvise *ma = &req->madvise;
3272 int ret;
3273
3274 if (force_nonblock)
3275 return -EAGAIN;
3276
3277 ret = do_madvise(ma->addr, ma->len, ma->advice);
3278 if (ret < 0)
3279 req_set_fail_links(req);
3280 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003281 io_put_req(req);
Jens Axboec1ca7572019-12-25 22:18:28 -07003282 return 0;
3283#else
3284 return -EOPNOTSUPP;
3285#endif
3286}
3287
Jens Axboe4840e412019-12-25 22:03:45 -07003288static int io_fadvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3289{
3290 if (sqe->ioprio || sqe->buf_index || sqe->addr)
3291 return -EINVAL;
3292
3293 req->fadvise.offset = READ_ONCE(sqe->off);
3294 req->fadvise.len = READ_ONCE(sqe->len);
3295 req->fadvise.advice = READ_ONCE(sqe->fadvise_advice);
3296 return 0;
3297}
3298
Pavel Begunkov014db002020-03-03 21:33:12 +03003299static int io_fadvise(struct io_kiocb *req, bool force_nonblock)
Jens Axboe4840e412019-12-25 22:03:45 -07003300{
3301 struct io_fadvise *fa = &req->fadvise;
3302 int ret;
3303
Jens Axboe3e694262020-02-01 09:22:49 -07003304 if (force_nonblock) {
3305 switch (fa->advice) {
3306 case POSIX_FADV_NORMAL:
3307 case POSIX_FADV_RANDOM:
3308 case POSIX_FADV_SEQUENTIAL:
3309 break;
3310 default:
3311 return -EAGAIN;
3312 }
3313 }
Jens Axboe4840e412019-12-25 22:03:45 -07003314
3315 ret = vfs_fadvise(req->file, fa->offset, fa->len, fa->advice);
3316 if (ret < 0)
3317 req_set_fail_links(req);
3318 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003319 io_put_req(req);
Jens Axboe4840e412019-12-25 22:03:45 -07003320 return 0;
3321}
3322
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003323static int io_statx_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3324{
Jens Axboef8748882020-01-08 17:47:02 -07003325 const char __user *fname;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003326 unsigned lookup_flags;
3327 int ret;
3328
3329 if (sqe->ioprio || sqe->buf_index)
3330 return -EINVAL;
Pavel Begunkov9c280f92020-04-08 08:58:46 +03003331 if (req->flags & REQ_F_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07003332 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03003333 if (req->flags & REQ_F_NEED_CLEANUP)
3334 return 0;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003335
3336 req->open.dfd = READ_ONCE(sqe->fd);
3337 req->open.mask = READ_ONCE(sqe->len);
Jens Axboef8748882020-01-08 17:47:02 -07003338 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003339 req->open.buffer = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboec12cedf2020-01-08 17:41:21 -07003340 req->open.how.flags = READ_ONCE(sqe->statx_flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003341
Jens Axboec12cedf2020-01-08 17:41:21 -07003342 if (vfs_stat_set_lookup_flags(&lookup_flags, req->open.how.flags))
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003343 return -EINVAL;
3344
Jens Axboef8748882020-01-08 17:47:02 -07003345 req->open.filename = getname_flags(fname, lookup_flags, NULL);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003346 if (IS_ERR(req->open.filename)) {
3347 ret = PTR_ERR(req->open.filename);
3348 req->open.filename = NULL;
3349 return ret;
3350 }
3351
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003352 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003353 return 0;
3354}
3355
Pavel Begunkov014db002020-03-03 21:33:12 +03003356static int io_statx(struct io_kiocb *req, bool force_nonblock)
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003357{
3358 struct io_open *ctx = &req->open;
3359 unsigned lookup_flags;
3360 struct path path;
3361 struct kstat stat;
3362 int ret;
3363
Jens Axboe5b0bbee2020-04-27 10:41:22 -06003364 if (force_nonblock) {
3365 /* only need file table for an actual valid fd */
3366 if (ctx->dfd == -1 || ctx->dfd == AT_FDCWD)
3367 req->flags |= REQ_F_NO_FILE_TABLE;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003368 return -EAGAIN;
Jens Axboe5b0bbee2020-04-27 10:41:22 -06003369 }
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003370
Jens Axboec12cedf2020-01-08 17:41:21 -07003371 if (vfs_stat_set_lookup_flags(&lookup_flags, ctx->how.flags))
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003372 return -EINVAL;
3373
3374retry:
3375 /* filename_lookup() drops it, keep a reference */
3376 ctx->filename->refcnt++;
3377
3378 ret = filename_lookup(ctx->dfd, ctx->filename, lookup_flags, &path,
3379 NULL);
3380 if (ret)
3381 goto err;
3382
Jens Axboec12cedf2020-01-08 17:41:21 -07003383 ret = vfs_getattr(&path, &stat, ctx->mask, ctx->how.flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003384 path_put(&path);
3385 if (retry_estale(ret, lookup_flags)) {
3386 lookup_flags |= LOOKUP_REVAL;
3387 goto retry;
3388 }
3389 if (!ret)
3390 ret = cp_statx(&stat, ctx->buffer);
3391err:
3392 putname(ctx->filename);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003393 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003394 if (ret < 0)
3395 req_set_fail_links(req);
3396 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003397 io_put_req(req);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003398 return 0;
3399}
3400
Jens Axboeb5dba592019-12-11 14:02:38 -07003401static int io_close_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3402{
3403 /*
3404 * If we queue this for async, it must not be cancellable. That would
3405 * leave the 'file' in an undeterminate state.
3406 */
3407 req->work.flags |= IO_WQ_WORK_NO_CANCEL;
3408
3409 if (sqe->ioprio || sqe->off || sqe->addr || sqe->len ||
3410 sqe->rw_flags || sqe->buf_index)
3411 return -EINVAL;
Pavel Begunkov9c280f92020-04-08 08:58:46 +03003412 if (req->flags & REQ_F_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07003413 return -EBADF;
Jens Axboeb5dba592019-12-11 14:02:38 -07003414
3415 req->close.fd = READ_ONCE(sqe->fd);
Jens Axboeb5dba592019-12-11 14:02:38 -07003416 return 0;
3417}
3418
Pavel Begunkova93b3332020-02-08 14:04:34 +03003419/* only called when __close_fd_get_file() is done */
Pavel Begunkov014db002020-03-03 21:33:12 +03003420static void __io_close_finish(struct io_kiocb *req)
Pavel Begunkova93b3332020-02-08 14:04:34 +03003421{
3422 int ret;
3423
3424 ret = filp_close(req->close.put_file, req->work.files);
3425 if (ret < 0)
3426 req_set_fail_links(req);
3427 io_cqring_add_event(req, ret);
3428 fput(req->close.put_file);
Pavel Begunkov014db002020-03-03 21:33:12 +03003429 io_put_req(req);
Pavel Begunkova93b3332020-02-08 14:04:34 +03003430}
3431
Jens Axboeb5dba592019-12-11 14:02:38 -07003432static void io_close_finish(struct io_wq_work **workptr)
3433{
3434 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Jens Axboeb5dba592019-12-11 14:02:38 -07003435
Pavel Begunkov7fbeb952020-02-16 01:01:18 +03003436 /* not cancellable, don't do io_req_cancelled() */
Pavel Begunkov014db002020-03-03 21:33:12 +03003437 __io_close_finish(req);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03003438 io_steal_work(req, workptr);
Jens Axboeb5dba592019-12-11 14:02:38 -07003439}
3440
Pavel Begunkov014db002020-03-03 21:33:12 +03003441static int io_close(struct io_kiocb *req, bool force_nonblock)
Jens Axboeb5dba592019-12-11 14:02:38 -07003442{
3443 int ret;
3444
3445 req->close.put_file = NULL;
3446 ret = __close_fd_get_file(req->close.fd, &req->close.put_file);
Jens Axboe904fbcb2020-05-08 21:27:24 -06003447 if (ret < 0) {
3448 if (ret == -ENOENT)
3449 ret = -EBADF;
Jens Axboeb5dba592019-12-11 14:02:38 -07003450 return ret;
Jens Axboe904fbcb2020-05-08 21:27:24 -06003451 }
Jens Axboeb5dba592019-12-11 14:02:38 -07003452
3453 /* if the file has a flush method, be safe and punt to async */
Pavel Begunkova2100672020-03-02 23:45:16 +03003454 if (req->close.put_file->f_op->flush && force_nonblock) {
Pavel Begunkov594506f2020-03-03 21:33:11 +03003455 /* submission ref will be dropped, take it for async */
3456 refcount_inc(&req->refs);
3457
Pavel Begunkova2100672020-03-02 23:45:16 +03003458 req->work.func = io_close_finish;
3459 /*
3460 * Do manual async queue here to avoid grabbing files - we don't
3461 * need the files, and it'll cause io_close_finish() to close
3462 * the file again and cause a double CQE entry for this request
3463 */
3464 io_queue_async_work(req);
3465 return 0;
3466 }
Jens Axboeb5dba592019-12-11 14:02:38 -07003467
3468 /*
3469 * No ->flush(), safely close from here and just punt the
3470 * fput() to async context.
3471 */
Pavel Begunkov014db002020-03-03 21:33:12 +03003472 __io_close_finish(req);
Jens Axboe1a417f42020-01-31 17:16:48 -07003473 return 0;
Jens Axboeb5dba592019-12-11 14:02:38 -07003474}
3475
Jens Axboe3529d8c2019-12-19 18:24:38 -07003476static int io_prep_sfr(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003477{
3478 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003479
3480 if (!req->file)
3481 return -EBADF;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003482
3483 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
3484 return -EINVAL;
3485 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
3486 return -EINVAL;
3487
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003488 req->sync.off = READ_ONCE(sqe->off);
3489 req->sync.len = READ_ONCE(sqe->len);
3490 req->sync.flags = READ_ONCE(sqe->sync_range_flags);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003491 return 0;
3492}
3493
Pavel Begunkov014db002020-03-03 21:33:12 +03003494static void __io_sync_file_range(struct io_kiocb *req)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003495{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003496 int ret;
3497
Jens Axboe9adbd452019-12-20 08:45:55 -07003498 ret = sync_file_range(req->file, req->sync.off, req->sync.len,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003499 req->sync.flags);
3500 if (ret < 0)
3501 req_set_fail_links(req);
3502 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003503 io_put_req(req);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03003504}
3505
3506
3507static void io_sync_file_range_finish(struct io_wq_work **workptr)
3508{
3509 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03003510
3511 if (io_req_cancelled(req))
3512 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03003513 __io_sync_file_range(req);
Pavel Begunkov7759a0b2020-05-01 17:09:36 +03003514 io_steal_work(req, workptr);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003515}
3516
Pavel Begunkov014db002020-03-03 21:33:12 +03003517static int io_sync_file_range(struct io_kiocb *req, bool force_nonblock)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003518{
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003519 /* sync_file_range always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003520 if (force_nonblock) {
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003521 req->work.func = io_sync_file_range_finish;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003522 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003523 }
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003524
Pavel Begunkov014db002020-03-03 21:33:12 +03003525 __io_sync_file_range(req);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003526 return 0;
3527}
3528
YueHaibing469956e2020-03-04 15:53:52 +08003529#if defined(CONFIG_NET)
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003530static int io_setup_async_msg(struct io_kiocb *req,
3531 struct io_async_msghdr *kmsg)
3532{
3533 if (req->io)
3534 return -EAGAIN;
3535 if (io_alloc_async_ctx(req)) {
3536 if (kmsg->iov != kmsg->fast_iov)
3537 kfree(kmsg->iov);
3538 return -ENOMEM;
3539 }
3540 req->flags |= REQ_F_NEED_CLEANUP;
3541 memcpy(&req->io->msg, kmsg, sizeof(*kmsg));
3542 return -EAGAIN;
3543}
3544
Jens Axboe3529d8c2019-12-19 18:24:38 -07003545static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboeaa1fa282019-04-19 13:38:09 -06003546{
Jens Axboee47293f2019-12-20 08:58:21 -07003547 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003548 struct io_async_ctx *io = req->io;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003549 int ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003550
Jens Axboee47293f2019-12-20 08:58:21 -07003551 sr->msg_flags = READ_ONCE(sqe->msg_flags);
3552 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboefddafac2020-01-04 20:19:44 -07003553 sr->len = READ_ONCE(sqe->len);
Jens Axboe3529d8c2019-12-19 18:24:38 -07003554
Jens Axboed8768362020-02-27 14:17:49 -07003555#ifdef CONFIG_COMPAT
3556 if (req->ctx->compat)
3557 sr->msg_flags |= MSG_CMSG_COMPAT;
3558#endif
3559
Jens Axboefddafac2020-01-04 20:19:44 -07003560 if (!io || req->opcode == IORING_OP_SEND)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003561 return 0;
Pavel Begunkov5f798be2020-02-08 13:28:02 +03003562 /* iovec is already imported */
3563 if (req->flags & REQ_F_NEED_CLEANUP)
3564 return 0;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003565
Jens Axboed9688562019-12-09 19:35:20 -07003566 io->msg.iov = io->msg.fast_iov;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003567 ret = sendmsg_copy_msghdr(&io->msg.msg, sr->msg, sr->msg_flags,
Jens Axboee47293f2019-12-20 08:58:21 -07003568 &io->msg.iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003569 if (!ret)
3570 req->flags |= REQ_F_NEED_CLEANUP;
3571 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003572}
3573
Pavel Begunkov014db002020-03-03 21:33:12 +03003574static int io_sendmsg(struct io_kiocb *req, bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07003575{
Jens Axboe0b416c32019-12-15 10:57:46 -07003576 struct io_async_msghdr *kmsg = NULL;
Jens Axboe03b12302019-12-02 18:50:25 -07003577 struct socket *sock;
3578 int ret;
3579
3580 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3581 return -EINVAL;
3582
3583 sock = sock_from_file(req->file, &ret);
3584 if (sock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003585 struct io_async_ctx io;
Jens Axboe03b12302019-12-02 18:50:25 -07003586 unsigned flags;
3587
Jens Axboe03b12302019-12-02 18:50:25 -07003588 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07003589 kmsg = &req->io->msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003590 kmsg->msg.msg_name = &req->io->msg.addr;
Jens Axboe0b416c32019-12-15 10:57:46 -07003591 /* if iov is set, it's allocated already */
3592 if (!kmsg->iov)
3593 kmsg->iov = kmsg->fast_iov;
3594 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07003595 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07003596 struct io_sr_msg *sr = &req->sr_msg;
3597
Jens Axboe0b416c32019-12-15 10:57:46 -07003598 kmsg = &io.msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003599 kmsg->msg.msg_name = &io.msg.addr;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003600
3601 io.msg.iov = io.msg.fast_iov;
3602 ret = sendmsg_copy_msghdr(&io.msg.msg, sr->msg,
3603 sr->msg_flags, &io.msg.iov);
Jens Axboe03b12302019-12-02 18:50:25 -07003604 if (ret)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003605 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003606 }
3607
Jens Axboee47293f2019-12-20 08:58:21 -07003608 flags = req->sr_msg.msg_flags;
3609 if (flags & MSG_DONTWAIT)
3610 req->flags |= REQ_F_NOWAIT;
3611 else if (force_nonblock)
3612 flags |= MSG_DONTWAIT;
3613
Jens Axboe0b416c32019-12-15 10:57:46 -07003614 ret = __sys_sendmsg_sock(sock, &kmsg->msg, flags);
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003615 if (force_nonblock && ret == -EAGAIN)
3616 return io_setup_async_msg(req, kmsg);
Jens Axboe03b12302019-12-02 18:50:25 -07003617 if (ret == -ERESTARTSYS)
3618 ret = -EINTR;
3619 }
3620
Pavel Begunkov1e950812020-02-06 19:51:16 +03003621 if (kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07003622 kfree(kmsg->iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003623 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe03b12302019-12-02 18:50:25 -07003624 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003625 if (ret < 0)
3626 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003627 io_put_req(req);
Jens Axboe03b12302019-12-02 18:50:25 -07003628 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07003629}
3630
Pavel Begunkov014db002020-03-03 21:33:12 +03003631static int io_send(struct io_kiocb *req, bool force_nonblock)
Jens Axboefddafac2020-01-04 20:19:44 -07003632{
Jens Axboefddafac2020-01-04 20:19:44 -07003633 struct socket *sock;
3634 int ret;
3635
3636 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3637 return -EINVAL;
3638
3639 sock = sock_from_file(req->file, &ret);
3640 if (sock) {
3641 struct io_sr_msg *sr = &req->sr_msg;
3642 struct msghdr msg;
3643 struct iovec iov;
3644 unsigned flags;
3645
3646 ret = import_single_range(WRITE, sr->buf, sr->len, &iov,
3647 &msg.msg_iter);
3648 if (ret)
3649 return ret;
3650
3651 msg.msg_name = NULL;
3652 msg.msg_control = NULL;
3653 msg.msg_controllen = 0;
3654 msg.msg_namelen = 0;
3655
3656 flags = req->sr_msg.msg_flags;
3657 if (flags & MSG_DONTWAIT)
3658 req->flags |= REQ_F_NOWAIT;
3659 else if (force_nonblock)
3660 flags |= MSG_DONTWAIT;
3661
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003662 msg.msg_flags = flags;
3663 ret = sock_sendmsg(sock, &msg);
Jens Axboefddafac2020-01-04 20:19:44 -07003664 if (force_nonblock && ret == -EAGAIN)
3665 return -EAGAIN;
3666 if (ret == -ERESTARTSYS)
3667 ret = -EINTR;
3668 }
3669
3670 io_cqring_add_event(req, ret);
3671 if (ret < 0)
3672 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003673 io_put_req(req);
Jens Axboefddafac2020-01-04 20:19:44 -07003674 return 0;
Jens Axboefddafac2020-01-04 20:19:44 -07003675}
3676
Jens Axboe52de1fe2020-02-27 10:15:42 -07003677static int __io_recvmsg_copy_hdr(struct io_kiocb *req, struct io_async_ctx *io)
3678{
3679 struct io_sr_msg *sr = &req->sr_msg;
3680 struct iovec __user *uiov;
3681 size_t iov_len;
3682 int ret;
3683
3684 ret = __copy_msghdr_from_user(&io->msg.msg, sr->msg, &io->msg.uaddr,
3685 &uiov, &iov_len);
3686 if (ret)
3687 return ret;
3688
3689 if (req->flags & REQ_F_BUFFER_SELECT) {
3690 if (iov_len > 1)
3691 return -EINVAL;
3692 if (copy_from_user(io->msg.iov, uiov, sizeof(*uiov)))
3693 return -EFAULT;
3694 sr->len = io->msg.iov[0].iov_len;
3695 iov_iter_init(&io->msg.msg.msg_iter, READ, io->msg.iov, 1,
3696 sr->len);
3697 io->msg.iov = NULL;
3698 } else {
3699 ret = import_iovec(READ, uiov, iov_len, UIO_FASTIOV,
3700 &io->msg.iov, &io->msg.msg.msg_iter);
3701 if (ret > 0)
3702 ret = 0;
3703 }
3704
3705 return ret;
3706}
3707
3708#ifdef CONFIG_COMPAT
3709static int __io_compat_recvmsg_copy_hdr(struct io_kiocb *req,
3710 struct io_async_ctx *io)
3711{
3712 struct compat_msghdr __user *msg_compat;
3713 struct io_sr_msg *sr = &req->sr_msg;
3714 struct compat_iovec __user *uiov;
3715 compat_uptr_t ptr;
3716 compat_size_t len;
3717 int ret;
3718
3719 msg_compat = (struct compat_msghdr __user *) sr->msg;
3720 ret = __get_compat_msghdr(&io->msg.msg, msg_compat, &io->msg.uaddr,
3721 &ptr, &len);
3722 if (ret)
3723 return ret;
3724
3725 uiov = compat_ptr(ptr);
3726 if (req->flags & REQ_F_BUFFER_SELECT) {
3727 compat_ssize_t clen;
3728
3729 if (len > 1)
3730 return -EINVAL;
3731 if (!access_ok(uiov, sizeof(*uiov)))
3732 return -EFAULT;
3733 if (__get_user(clen, &uiov->iov_len))
3734 return -EFAULT;
3735 if (clen < 0)
3736 return -EINVAL;
3737 sr->len = io->msg.iov[0].iov_len;
3738 io->msg.iov = NULL;
3739 } else {
3740 ret = compat_import_iovec(READ, uiov, len, UIO_FASTIOV,
3741 &io->msg.iov,
3742 &io->msg.msg.msg_iter);
3743 if (ret < 0)
3744 return ret;
3745 }
3746
3747 return 0;
3748}
Jens Axboe03b12302019-12-02 18:50:25 -07003749#endif
Jens Axboe52de1fe2020-02-27 10:15:42 -07003750
3751static int io_recvmsg_copy_hdr(struct io_kiocb *req, struct io_async_ctx *io)
3752{
3753 io->msg.iov = io->msg.fast_iov;
3754
3755#ifdef CONFIG_COMPAT
3756 if (req->ctx->compat)
3757 return __io_compat_recvmsg_copy_hdr(req, io);
3758#endif
3759
3760 return __io_recvmsg_copy_hdr(req, io);
3761}
3762
Jens Axboebcda7ba2020-02-23 16:42:51 -07003763static struct io_buffer *io_recv_buffer_select(struct io_kiocb *req,
3764 int *cflags, bool needs_lock)
3765{
3766 struct io_sr_msg *sr = &req->sr_msg;
3767 struct io_buffer *kbuf;
3768
3769 if (!(req->flags & REQ_F_BUFFER_SELECT))
3770 return NULL;
3771
3772 kbuf = io_buffer_select(req, &sr->len, sr->bgid, sr->kbuf, needs_lock);
3773 if (IS_ERR(kbuf))
3774 return kbuf;
3775
3776 sr->kbuf = kbuf;
3777 req->flags |= REQ_F_BUFFER_SELECTED;
3778
3779 *cflags = kbuf->bid << IORING_CQE_BUFFER_SHIFT;
3780 *cflags |= IORING_CQE_F_BUFFER;
3781 return kbuf;
Jens Axboe03b12302019-12-02 18:50:25 -07003782}
3783
Jens Axboe3529d8c2019-12-19 18:24:38 -07003784static int io_recvmsg_prep(struct io_kiocb *req,
3785 const struct io_uring_sqe *sqe)
Jens Axboe03b12302019-12-02 18:50:25 -07003786{
Jens Axboee47293f2019-12-20 08:58:21 -07003787 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003788 struct io_async_ctx *io = req->io;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003789 int ret;
Jens Axboe06b76d42019-12-19 14:44:26 -07003790
Jens Axboe3529d8c2019-12-19 18:24:38 -07003791 sr->msg_flags = READ_ONCE(sqe->msg_flags);
3792 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003793 sr->len = READ_ONCE(sqe->len);
Jens Axboebcda7ba2020-02-23 16:42:51 -07003794 sr->bgid = READ_ONCE(sqe->buf_group);
Jens Axboe3529d8c2019-12-19 18:24:38 -07003795
Jens Axboed8768362020-02-27 14:17:49 -07003796#ifdef CONFIG_COMPAT
3797 if (req->ctx->compat)
3798 sr->msg_flags |= MSG_CMSG_COMPAT;
3799#endif
3800
Jens Axboefddafac2020-01-04 20:19:44 -07003801 if (!io || req->opcode == IORING_OP_RECV)
Jens Axboe06b76d42019-12-19 14:44:26 -07003802 return 0;
Pavel Begunkov5f798be2020-02-08 13:28:02 +03003803 /* iovec is already imported */
3804 if (req->flags & REQ_F_NEED_CLEANUP)
3805 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07003806
Jens Axboe52de1fe2020-02-27 10:15:42 -07003807 ret = io_recvmsg_copy_hdr(req, io);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003808 if (!ret)
3809 req->flags |= REQ_F_NEED_CLEANUP;
3810 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003811}
3812
Pavel Begunkov014db002020-03-03 21:33:12 +03003813static int io_recvmsg(struct io_kiocb *req, bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07003814{
Jens Axboe0b416c32019-12-15 10:57:46 -07003815 struct io_async_msghdr *kmsg = NULL;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003816 struct socket *sock;
Jens Axboe52de1fe2020-02-27 10:15:42 -07003817 int ret, cflags = 0;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003818
3819 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3820 return -EINVAL;
3821
3822 sock = sock_from_file(req->file, &ret);
3823 if (sock) {
Jens Axboe52de1fe2020-02-27 10:15:42 -07003824 struct io_buffer *kbuf;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003825 struct io_async_ctx io;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003826 unsigned flags;
3827
Jens Axboe03b12302019-12-02 18:50:25 -07003828 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07003829 kmsg = &req->io->msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003830 kmsg->msg.msg_name = &req->io->msg.addr;
Jens Axboe0b416c32019-12-15 10:57:46 -07003831 /* if iov is set, it's allocated already */
3832 if (!kmsg->iov)
3833 kmsg->iov = kmsg->fast_iov;
3834 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07003835 } else {
Jens Axboe0b416c32019-12-15 10:57:46 -07003836 kmsg = &io.msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003837 kmsg->msg.msg_name = &io.msg.addr;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003838
Jens Axboe52de1fe2020-02-27 10:15:42 -07003839 ret = io_recvmsg_copy_hdr(req, &io);
Jens Axboe03b12302019-12-02 18:50:25 -07003840 if (ret)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003841 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003842 }
Jens Axboe0fa03c62019-04-19 13:34:07 -06003843
Jens Axboe52de1fe2020-02-27 10:15:42 -07003844 kbuf = io_recv_buffer_select(req, &cflags, !force_nonblock);
3845 if (IS_ERR(kbuf)) {
3846 return PTR_ERR(kbuf);
3847 } else if (kbuf) {
3848 kmsg->fast_iov[0].iov_base = u64_to_user_ptr(kbuf->addr);
3849 iov_iter_init(&kmsg->msg.msg_iter, READ, kmsg->iov,
3850 1, req->sr_msg.len);
3851 }
3852
Jens Axboee47293f2019-12-20 08:58:21 -07003853 flags = req->sr_msg.msg_flags;
3854 if (flags & MSG_DONTWAIT)
3855 req->flags |= REQ_F_NOWAIT;
3856 else if (force_nonblock)
3857 flags |= MSG_DONTWAIT;
3858
3859 ret = __sys_recvmsg_sock(sock, &kmsg->msg, req->sr_msg.msg,
3860 kmsg->uaddr, flags);
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003861 if (force_nonblock && ret == -EAGAIN)
3862 return io_setup_async_msg(req, kmsg);
Jens Axboe441cdbd2019-12-02 18:49:10 -07003863 if (ret == -ERESTARTSYS)
3864 ret = -EINTR;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003865 }
3866
Pavel Begunkov1e950812020-02-06 19:51:16 +03003867 if (kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07003868 kfree(kmsg->iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003869 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe52de1fe2020-02-27 10:15:42 -07003870 __io_cqring_add_event(req, ret, cflags);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003871 if (ret < 0)
3872 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003873 io_put_req(req);
Jens Axboe0fa03c62019-04-19 13:34:07 -06003874 return 0;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003875}
3876
Pavel Begunkov014db002020-03-03 21:33:12 +03003877static int io_recv(struct io_kiocb *req, bool force_nonblock)
Jens Axboefddafac2020-01-04 20:19:44 -07003878{
Jens Axboebcda7ba2020-02-23 16:42:51 -07003879 struct io_buffer *kbuf = NULL;
Jens Axboefddafac2020-01-04 20:19:44 -07003880 struct socket *sock;
Jens Axboebcda7ba2020-02-23 16:42:51 -07003881 int ret, cflags = 0;
Jens Axboefddafac2020-01-04 20:19:44 -07003882
3883 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3884 return -EINVAL;
3885
3886 sock = sock_from_file(req->file, &ret);
3887 if (sock) {
3888 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboebcda7ba2020-02-23 16:42:51 -07003889 void __user *buf = sr->buf;
Jens Axboefddafac2020-01-04 20:19:44 -07003890 struct msghdr msg;
3891 struct iovec iov;
3892 unsigned flags;
3893
Jens Axboebcda7ba2020-02-23 16:42:51 -07003894 kbuf = io_recv_buffer_select(req, &cflags, !force_nonblock);
3895 if (IS_ERR(kbuf))
3896 return PTR_ERR(kbuf);
3897 else if (kbuf)
3898 buf = u64_to_user_ptr(kbuf->addr);
Jens Axboefddafac2020-01-04 20:19:44 -07003899
Jens Axboebcda7ba2020-02-23 16:42:51 -07003900 ret = import_single_range(READ, buf, sr->len, &iov,
3901 &msg.msg_iter);
3902 if (ret) {
3903 kfree(kbuf);
3904 return ret;
3905 }
3906
3907 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboefddafac2020-01-04 20:19:44 -07003908 msg.msg_name = NULL;
3909 msg.msg_control = NULL;
3910 msg.msg_controllen = 0;
3911 msg.msg_namelen = 0;
3912 msg.msg_iocb = NULL;
3913 msg.msg_flags = 0;
3914
3915 flags = req->sr_msg.msg_flags;
3916 if (flags & MSG_DONTWAIT)
3917 req->flags |= REQ_F_NOWAIT;
3918 else if (force_nonblock)
3919 flags |= MSG_DONTWAIT;
3920
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003921 ret = sock_recvmsg(sock, &msg, flags);
Jens Axboefddafac2020-01-04 20:19:44 -07003922 if (force_nonblock && ret == -EAGAIN)
3923 return -EAGAIN;
3924 if (ret == -ERESTARTSYS)
3925 ret = -EINTR;
3926 }
3927
Jens Axboebcda7ba2020-02-23 16:42:51 -07003928 kfree(kbuf);
3929 req->flags &= ~REQ_F_NEED_CLEANUP;
3930 __io_cqring_add_event(req, ret, cflags);
Jens Axboefddafac2020-01-04 20:19:44 -07003931 if (ret < 0)
3932 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003933 io_put_req(req);
Jens Axboefddafac2020-01-04 20:19:44 -07003934 return 0;
Jens Axboefddafac2020-01-04 20:19:44 -07003935}
3936
Jens Axboe3529d8c2019-12-19 18:24:38 -07003937static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003938{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003939 struct io_accept *accept = &req->accept;
3940
Jens Axboe17f2fe32019-10-17 14:42:58 -06003941 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3942 return -EINVAL;
Hrvoje Zeba8042d6c2019-11-25 14:40:22 -05003943 if (sqe->ioprio || sqe->len || sqe->buf_index)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003944 return -EINVAL;
3945
Jens Axboed55e5f52019-12-11 16:12:15 -07003946 accept->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
3947 accept->addr_len = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003948 accept->flags = READ_ONCE(sqe->accept_flags);
Jens Axboe09952e32020-03-19 20:16:56 -06003949 accept->nofile = rlimit(RLIMIT_NOFILE);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003950 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003951}
Jens Axboe17f2fe32019-10-17 14:42:58 -06003952
Pavel Begunkov014db002020-03-03 21:33:12 +03003953static int __io_accept(struct io_kiocb *req, bool force_nonblock)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003954{
3955 struct io_accept *accept = &req->accept;
3956 unsigned file_flags;
3957 int ret;
3958
3959 file_flags = force_nonblock ? O_NONBLOCK : 0;
3960 ret = __sys_accept4_file(req->file, file_flags, accept->addr,
Jens Axboe09952e32020-03-19 20:16:56 -06003961 accept->addr_len, accept->flags,
3962 accept->nofile);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003963 if (ret == -EAGAIN && force_nonblock)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003964 return -EAGAIN;
Jens Axboe8e3cca12019-11-09 19:52:33 -07003965 if (ret == -ERESTARTSYS)
3966 ret = -EINTR;
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003967 if (ret < 0)
3968 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07003969 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003970 io_put_req(req);
Jens Axboe17f2fe32019-10-17 14:42:58 -06003971 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003972}
3973
3974static void io_accept_finish(struct io_wq_work **workptr)
3975{
3976 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003977
3978 if (io_req_cancelled(req))
3979 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03003980 __io_accept(req, false);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03003981 io_steal_work(req, workptr);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003982}
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003983
Pavel Begunkov014db002020-03-03 21:33:12 +03003984static int io_accept(struct io_kiocb *req, bool force_nonblock)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003985{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003986 int ret;
3987
Pavel Begunkov014db002020-03-03 21:33:12 +03003988 ret = __io_accept(req, force_nonblock);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003989 if (ret == -EAGAIN && force_nonblock) {
3990 req->work.func = io_accept_finish;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003991 return -EAGAIN;
3992 }
3993 return 0;
Jens Axboe17f2fe32019-10-17 14:42:58 -06003994}
3995
Jens Axboe3529d8c2019-12-19 18:24:38 -07003996static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef499a022019-12-02 16:28:46 -07003997{
Jens Axboe3529d8c2019-12-19 18:24:38 -07003998 struct io_connect *conn = &req->connect;
3999 struct io_async_ctx *io = req->io;
Jens Axboef499a022019-12-02 16:28:46 -07004000
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004001 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
4002 return -EINVAL;
4003 if (sqe->ioprio || sqe->len || sqe->buf_index || sqe->rw_flags)
4004 return -EINVAL;
4005
Jens Axboe3529d8c2019-12-19 18:24:38 -07004006 conn->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
4007 conn->addr_len = READ_ONCE(sqe->addr2);
4008
4009 if (!io)
4010 return 0;
4011
4012 return move_addr_to_kernel(conn->addr, conn->addr_len,
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004013 &io->connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07004014}
4015
Pavel Begunkov014db002020-03-03 21:33:12 +03004016static int io_connect(struct io_kiocb *req, bool force_nonblock)
Jens Axboef8e85cf2019-11-23 14:24:24 -07004017{
Jens Axboef499a022019-12-02 16:28:46 -07004018 struct io_async_ctx __io, *io;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004019 unsigned file_flags;
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004020 int ret;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004021
Jens Axboef499a022019-12-02 16:28:46 -07004022 if (req->io) {
4023 io = req->io;
4024 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07004025 ret = move_addr_to_kernel(req->connect.addr,
4026 req->connect.addr_len,
4027 &__io.connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07004028 if (ret)
4029 goto out;
4030 io = &__io;
4031 }
4032
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004033 file_flags = force_nonblock ? O_NONBLOCK : 0;
4034
4035 ret = __sys_connect_file(req->file, &io->connect.address,
4036 req->connect.addr_len, file_flags);
Jens Axboe87f80d62019-12-03 11:23:54 -07004037 if ((ret == -EAGAIN || ret == -EINPROGRESS) && force_nonblock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004038 if (req->io)
4039 return -EAGAIN;
4040 if (io_alloc_async_ctx(req)) {
Jens Axboef499a022019-12-02 16:28:46 -07004041 ret = -ENOMEM;
4042 goto out;
4043 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004044 memcpy(&req->io->connect, &__io.connect, sizeof(__io.connect));
Jens Axboef8e85cf2019-11-23 14:24:24 -07004045 return -EAGAIN;
Jens Axboef499a022019-12-02 16:28:46 -07004046 }
Jens Axboef8e85cf2019-11-23 14:24:24 -07004047 if (ret == -ERESTARTSYS)
4048 ret = -EINTR;
Jens Axboef499a022019-12-02 16:28:46 -07004049out:
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004050 if (ret < 0)
4051 req_set_fail_links(req);
Jens Axboef8e85cf2019-11-23 14:24:24 -07004052 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03004053 io_put_req(req);
Jens Axboef8e85cf2019-11-23 14:24:24 -07004054 return 0;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004055}
YueHaibing469956e2020-03-04 15:53:52 +08004056#else /* !CONFIG_NET */
4057static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4058{
Jens Axboef8e85cf2019-11-23 14:24:24 -07004059 return -EOPNOTSUPP;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004060}
4061
YueHaibing469956e2020-03-04 15:53:52 +08004062static int io_sendmsg(struct io_kiocb *req, bool force_nonblock)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004063{
YueHaibing469956e2020-03-04 15:53:52 +08004064 return -EOPNOTSUPP;
4065}
4066
4067static int io_send(struct io_kiocb *req, bool force_nonblock)
4068{
4069 return -EOPNOTSUPP;
4070}
4071
4072static int io_recvmsg_prep(struct io_kiocb *req,
4073 const struct io_uring_sqe *sqe)
4074{
4075 return -EOPNOTSUPP;
4076}
4077
4078static int io_recvmsg(struct io_kiocb *req, bool force_nonblock)
4079{
4080 return -EOPNOTSUPP;
4081}
4082
4083static int io_recv(struct io_kiocb *req, bool force_nonblock)
4084{
4085 return -EOPNOTSUPP;
4086}
4087
4088static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4089{
4090 return -EOPNOTSUPP;
4091}
4092
4093static int io_accept(struct io_kiocb *req, bool force_nonblock)
4094{
4095 return -EOPNOTSUPP;
4096}
4097
4098static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4099{
4100 return -EOPNOTSUPP;
4101}
4102
4103static int io_connect(struct io_kiocb *req, bool force_nonblock)
4104{
4105 return -EOPNOTSUPP;
4106}
4107#endif /* CONFIG_NET */
Jens Axboe2b188cc2019-01-07 10:46:33 -07004108
Jens Axboed7718a92020-02-14 22:23:12 -07004109struct io_poll_table {
4110 struct poll_table_struct pt;
4111 struct io_kiocb *req;
4112 int error;
4113};
4114
Jens Axboed7718a92020-02-14 22:23:12 -07004115static int __io_async_wake(struct io_kiocb *req, struct io_poll_iocb *poll,
4116 __poll_t mask, task_work_func_t func)
4117{
4118 struct task_struct *tsk;
Jens Axboeaa96bf82020-04-03 11:26:26 -06004119 int ret;
Jens Axboed7718a92020-02-14 22:23:12 -07004120
4121 /* for instances that support it check for an event match first: */
4122 if (mask && !(mask & poll->events))
4123 return 0;
4124
4125 trace_io_uring_task_add(req->ctx, req->opcode, req->user_data, mask);
4126
4127 list_del_init(&poll->wait.entry);
4128
4129 tsk = req->task;
4130 req->result = mask;
4131 init_task_work(&req->task_work, func);
4132 /*
Jens Axboeaa96bf82020-04-03 11:26:26 -06004133 * If this fails, then the task is exiting. Punt to one of the io-wq
4134 * threads to ensure the work gets run, we can't always rely on exit
4135 * cancelation taking care of this.
Jens Axboed7718a92020-02-14 22:23:12 -07004136 */
Jens Axboeaa96bf82020-04-03 11:26:26 -06004137 ret = task_work_add(tsk, &req->task_work, true);
4138 if (unlikely(ret)) {
4139 tsk = io_wq_get_task(req->ctx->io_wq);
4140 task_work_add(tsk, &req->task_work, true);
4141 }
Jens Axboed7718a92020-02-14 22:23:12 -07004142 wake_up_process(tsk);
4143 return 1;
4144}
4145
Jens Axboe74ce6ce2020-04-13 11:09:12 -06004146static bool io_poll_rewait(struct io_kiocb *req, struct io_poll_iocb *poll)
4147 __acquires(&req->ctx->completion_lock)
4148{
4149 struct io_ring_ctx *ctx = req->ctx;
4150
4151 if (!req->result && !READ_ONCE(poll->canceled)) {
4152 struct poll_table_struct pt = { ._key = poll->events };
4153
4154 req->result = vfs_poll(req->file, &pt) & poll->events;
4155 }
4156
4157 spin_lock_irq(&ctx->completion_lock);
4158 if (!req->result && !READ_ONCE(poll->canceled)) {
4159 add_wait_queue(poll->head, &poll->wait);
4160 return true;
4161 }
4162
4163 return false;
4164}
4165
Jens Axboe18bceab2020-05-15 11:56:54 -06004166static void io_poll_remove_double(struct io_kiocb *req)
4167{
4168 struct io_poll_iocb *poll = (struct io_poll_iocb *) req->io;
4169
4170 lockdep_assert_held(&req->ctx->completion_lock);
4171
4172 if (poll && poll->head) {
4173 struct wait_queue_head *head = poll->head;
4174
4175 spin_lock(&head->lock);
4176 list_del_init(&poll->wait.entry);
4177 if (poll->wait.private)
4178 refcount_dec(&req->refs);
4179 poll->head = NULL;
4180 spin_unlock(&head->lock);
4181 }
4182}
4183
4184static void io_poll_complete(struct io_kiocb *req, __poll_t mask, int error)
4185{
4186 struct io_ring_ctx *ctx = req->ctx;
4187
4188 io_poll_remove_double(req);
4189 req->poll.done = true;
4190 io_cqring_fill_event(req, error ? error : mangle_poll(mask));
4191 io_commit_cqring(ctx);
4192}
4193
4194static void io_poll_task_handler(struct io_kiocb *req, struct io_kiocb **nxt)
4195{
4196 struct io_ring_ctx *ctx = req->ctx;
4197
4198 if (io_poll_rewait(req, &req->poll)) {
4199 spin_unlock_irq(&ctx->completion_lock);
4200 return;
4201 }
4202
4203 hash_del(&req->hash_node);
4204 io_poll_complete(req, req->result, 0);
4205 req->flags |= REQ_F_COMP_LOCKED;
4206 io_put_req_find_next(req, nxt);
4207 spin_unlock_irq(&ctx->completion_lock);
4208
4209 io_cqring_ev_posted(ctx);
4210}
4211
4212static void io_poll_task_func(struct callback_head *cb)
4213{
4214 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
4215 struct io_kiocb *nxt = NULL;
4216
4217 io_poll_task_handler(req, &nxt);
4218 if (nxt) {
4219 struct io_ring_ctx *ctx = nxt->ctx;
4220
4221 mutex_lock(&ctx->uring_lock);
4222 __io_queue_sqe(nxt, NULL);
4223 mutex_unlock(&ctx->uring_lock);
4224 }
4225}
4226
4227static int io_poll_double_wake(struct wait_queue_entry *wait, unsigned mode,
4228 int sync, void *key)
4229{
4230 struct io_kiocb *req = wait->private;
4231 struct io_poll_iocb *poll = (struct io_poll_iocb *) req->io;
4232 __poll_t mask = key_to_poll(key);
4233
4234 /* for instances that support it check for an event match first: */
4235 if (mask && !(mask & poll->events))
4236 return 0;
4237
4238 if (req->poll.head) {
4239 bool done;
4240
4241 spin_lock(&req->poll.head->lock);
4242 done = list_empty(&req->poll.wait.entry);
4243 if (!done)
4244 list_del_init(&req->poll.wait.entry);
4245 spin_unlock(&req->poll.head->lock);
4246 if (!done)
4247 __io_async_wake(req, poll, mask, io_poll_task_func);
4248 }
4249 refcount_dec(&req->refs);
4250 return 1;
4251}
4252
4253static void io_init_poll_iocb(struct io_poll_iocb *poll, __poll_t events,
4254 wait_queue_func_t wake_func)
4255{
4256 poll->head = NULL;
4257 poll->done = false;
4258 poll->canceled = false;
4259 poll->events = events;
4260 INIT_LIST_HEAD(&poll->wait.entry);
4261 init_waitqueue_func_entry(&poll->wait, wake_func);
4262}
4263
4264static void __io_queue_proc(struct io_poll_iocb *poll, struct io_poll_table *pt,
4265 struct wait_queue_head *head)
4266{
4267 struct io_kiocb *req = pt->req;
4268
4269 /*
4270 * If poll->head is already set, it's because the file being polled
4271 * uses multiple waitqueues for poll handling (eg one for read, one
4272 * for write). Setup a separate io_poll_iocb if this happens.
4273 */
4274 if (unlikely(poll->head)) {
4275 /* already have a 2nd entry, fail a third attempt */
4276 if (req->io) {
4277 pt->error = -EINVAL;
4278 return;
4279 }
4280 poll = kmalloc(sizeof(*poll), GFP_ATOMIC);
4281 if (!poll) {
4282 pt->error = -ENOMEM;
4283 return;
4284 }
4285 io_init_poll_iocb(poll, req->poll.events, io_poll_double_wake);
4286 refcount_inc(&req->refs);
4287 poll->wait.private = req;
4288 req->io = (void *) poll;
4289 }
4290
4291 pt->error = 0;
4292 poll->head = head;
4293 add_wait_queue(head, &poll->wait);
4294}
4295
4296static void io_async_queue_proc(struct file *file, struct wait_queue_head *head,
4297 struct poll_table_struct *p)
4298{
4299 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
4300
4301 __io_queue_proc(&pt->req->apoll->poll, pt, head);
4302}
4303
Jens Axboed7718a92020-02-14 22:23:12 -07004304static void io_async_task_func(struct callback_head *cb)
4305{
4306 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
4307 struct async_poll *apoll = req->apoll;
4308 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2bae0472020-04-13 11:16:34 -06004309 bool canceled;
Jens Axboed7718a92020-02-14 22:23:12 -07004310
4311 trace_io_uring_task_run(req->ctx, req->opcode, req->user_data);
4312
Jens Axboe74ce6ce2020-04-13 11:09:12 -06004313 if (io_poll_rewait(req, &apoll->poll)) {
Jens Axboed7718a92020-02-14 22:23:12 -07004314 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe74ce6ce2020-04-13 11:09:12 -06004315 return;
Jens Axboed7718a92020-02-14 22:23:12 -07004316 }
4317
Jens Axboe74ce6ce2020-04-13 11:09:12 -06004318 if (hash_hashed(&req->hash_node))
4319 hash_del(&req->hash_node);
4320
Jens Axboe2bae0472020-04-13 11:16:34 -06004321 canceled = READ_ONCE(apoll->poll.canceled);
4322 if (canceled) {
4323 io_cqring_fill_event(req, -ECANCELED);
4324 io_commit_cqring(ctx);
4325 }
4326
Jens Axboe74ce6ce2020-04-13 11:09:12 -06004327 spin_unlock_irq(&ctx->completion_lock);
4328
Xiaoguang Wang44575a62020-04-19 10:06:55 +08004329 /* restore ->work in case we need to retry again */
4330 memcpy(&req->work, &apoll->work, sizeof(req->work));
4331
Jens Axboe2bae0472020-04-13 11:16:34 -06004332 if (canceled) {
4333 kfree(apoll);
4334 io_cqring_ev_posted(ctx);
4335 req_set_fail_links(req);
Xiaoguang Wang44575a62020-04-19 10:06:55 +08004336 io_double_put_req(req);
Jens Axboe2bae0472020-04-13 11:16:34 -06004337 return;
4338 }
4339
Jens Axboed7718a92020-02-14 22:23:12 -07004340 __set_current_state(TASK_RUNNING);
4341 mutex_lock(&ctx->uring_lock);
4342 __io_queue_sqe(req, NULL);
4343 mutex_unlock(&ctx->uring_lock);
4344
4345 kfree(apoll);
4346}
4347
4348static int io_async_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
4349 void *key)
4350{
4351 struct io_kiocb *req = wait->private;
4352 struct io_poll_iocb *poll = &req->apoll->poll;
4353
4354 trace_io_uring_poll_wake(req->ctx, req->opcode, req->user_data,
4355 key_to_poll(key));
4356
4357 return __io_async_wake(req, poll, key_to_poll(key), io_async_task_func);
4358}
4359
4360static void io_poll_req_insert(struct io_kiocb *req)
4361{
4362 struct io_ring_ctx *ctx = req->ctx;
4363 struct hlist_head *list;
4364
4365 list = &ctx->cancel_hash[hash_long(req->user_data, ctx->cancel_hash_bits)];
4366 hlist_add_head(&req->hash_node, list);
4367}
4368
4369static __poll_t __io_arm_poll_handler(struct io_kiocb *req,
4370 struct io_poll_iocb *poll,
4371 struct io_poll_table *ipt, __poll_t mask,
4372 wait_queue_func_t wake_func)
4373 __acquires(&ctx->completion_lock)
4374{
4375 struct io_ring_ctx *ctx = req->ctx;
4376 bool cancel = false;
4377
4378 poll->file = req->file;
Jens Axboe18bceab2020-05-15 11:56:54 -06004379 io_init_poll_iocb(poll, mask, wake_func);
4380 poll->wait.private = req;
Jens Axboed7718a92020-02-14 22:23:12 -07004381
4382 ipt->pt._key = mask;
4383 ipt->req = req;
4384 ipt->error = -EINVAL;
4385
Jens Axboed7718a92020-02-14 22:23:12 -07004386 mask = vfs_poll(req->file, &ipt->pt) & poll->events;
4387
4388 spin_lock_irq(&ctx->completion_lock);
4389 if (likely(poll->head)) {
4390 spin_lock(&poll->head->lock);
4391 if (unlikely(list_empty(&poll->wait.entry))) {
4392 if (ipt->error)
4393 cancel = true;
4394 ipt->error = 0;
4395 mask = 0;
4396 }
4397 if (mask || ipt->error)
4398 list_del_init(&poll->wait.entry);
4399 else if (cancel)
4400 WRITE_ONCE(poll->canceled, true);
4401 else if (!poll->done) /* actually waiting for an event */
4402 io_poll_req_insert(req);
4403 spin_unlock(&poll->head->lock);
4404 }
4405
4406 return mask;
4407}
4408
4409static bool io_arm_poll_handler(struct io_kiocb *req)
4410{
4411 const struct io_op_def *def = &io_op_defs[req->opcode];
4412 struct io_ring_ctx *ctx = req->ctx;
4413 struct async_poll *apoll;
4414 struct io_poll_table ipt;
4415 __poll_t mask, ret;
Jens Axboe18bceab2020-05-15 11:56:54 -06004416 bool had_io;
Jens Axboed7718a92020-02-14 22:23:12 -07004417
4418 if (!req->file || !file_can_poll(req->file))
4419 return false;
4420 if (req->flags & (REQ_F_MUST_PUNT | REQ_F_POLLED))
4421 return false;
4422 if (!def->pollin && !def->pollout)
4423 return false;
4424
4425 apoll = kmalloc(sizeof(*apoll), GFP_ATOMIC);
4426 if (unlikely(!apoll))
4427 return false;
4428
4429 req->flags |= REQ_F_POLLED;
4430 memcpy(&apoll->work, &req->work, sizeof(req->work));
Jens Axboe18bceab2020-05-15 11:56:54 -06004431 had_io = req->io != NULL;
Jens Axboed7718a92020-02-14 22:23:12 -07004432
Jens Axboe3537b6a2020-04-03 11:19:06 -06004433 get_task_struct(current);
Jens Axboed7718a92020-02-14 22:23:12 -07004434 req->task = current;
4435 req->apoll = apoll;
4436 INIT_HLIST_NODE(&req->hash_node);
4437
Nathan Chancellor8755d972020-03-02 16:01:19 -07004438 mask = 0;
Jens Axboed7718a92020-02-14 22:23:12 -07004439 if (def->pollin)
Nathan Chancellor8755d972020-03-02 16:01:19 -07004440 mask |= POLLIN | POLLRDNORM;
Jens Axboed7718a92020-02-14 22:23:12 -07004441 if (def->pollout)
4442 mask |= POLLOUT | POLLWRNORM;
4443 mask |= POLLERR | POLLPRI;
4444
4445 ipt.pt._qproc = io_async_queue_proc;
4446
4447 ret = __io_arm_poll_handler(req, &apoll->poll, &ipt, mask,
4448 io_async_wake);
4449 if (ret) {
4450 ipt.error = 0;
Jens Axboe18bceab2020-05-15 11:56:54 -06004451 /* only remove double add if we did it here */
4452 if (!had_io)
4453 io_poll_remove_double(req);
Jens Axboed7718a92020-02-14 22:23:12 -07004454 spin_unlock_irq(&ctx->completion_lock);
4455 memcpy(&req->work, &apoll->work, sizeof(req->work));
4456 kfree(apoll);
4457 return false;
4458 }
4459 spin_unlock_irq(&ctx->completion_lock);
4460 trace_io_uring_poll_arm(ctx, req->opcode, req->user_data, mask,
4461 apoll->poll.events);
4462 return true;
4463}
4464
4465static bool __io_poll_remove_one(struct io_kiocb *req,
4466 struct io_poll_iocb *poll)
4467{
Jens Axboeb41e9852020-02-17 09:52:41 -07004468 bool do_complete = false;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004469
4470 spin_lock(&poll->head->lock);
4471 WRITE_ONCE(poll->canceled, true);
Jens Axboe392edb42019-12-09 17:52:20 -07004472 if (!list_empty(&poll->wait.entry)) {
4473 list_del_init(&poll->wait.entry);
Jens Axboeb41e9852020-02-17 09:52:41 -07004474 do_complete = true;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004475 }
4476 spin_unlock(&poll->head->lock);
Jens Axboe3bfa5bc2020-05-17 13:54:12 -06004477 hash_del(&req->hash_node);
Jens Axboed7718a92020-02-14 22:23:12 -07004478 return do_complete;
4479}
4480
4481static bool io_poll_remove_one(struct io_kiocb *req)
4482{
4483 bool do_complete;
4484
4485 if (req->opcode == IORING_OP_POLL_ADD) {
Jens Axboe18bceab2020-05-15 11:56:54 -06004486 io_poll_remove_double(req);
Jens Axboed7718a92020-02-14 22:23:12 -07004487 do_complete = __io_poll_remove_one(req, &req->poll);
4488 } else {
Jens Axboe3bfa5bc2020-05-17 13:54:12 -06004489 struct async_poll *apoll = req->apoll;
4490
Jens Axboed7718a92020-02-14 22:23:12 -07004491 /* non-poll requests have submit ref still */
Jens Axboe3bfa5bc2020-05-17 13:54:12 -06004492 do_complete = __io_poll_remove_one(req, &apoll->poll);
4493 if (do_complete) {
Jens Axboed7718a92020-02-14 22:23:12 -07004494 io_put_req(req);
Jens Axboe3bfa5bc2020-05-17 13:54:12 -06004495 /*
4496 * restore ->work because we will call
4497 * io_req_work_drop_env below when dropping the
4498 * final reference.
4499 */
4500 memcpy(&req->work, &apoll->work, sizeof(req->work));
4501 kfree(apoll);
4502 }
Xiaoguang Wangb1f573b2020-04-12 14:50:54 +08004503 }
4504
Jens Axboeb41e9852020-02-17 09:52:41 -07004505 if (do_complete) {
4506 io_cqring_fill_event(req, -ECANCELED);
4507 io_commit_cqring(req->ctx);
4508 req->flags |= REQ_F_COMP_LOCKED;
4509 io_put_req(req);
4510 }
4511
4512 return do_complete;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004513}
4514
4515static void io_poll_remove_all(struct io_ring_ctx *ctx)
4516{
Jens Axboe78076bb2019-12-04 19:56:40 -07004517 struct hlist_node *tmp;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004518 struct io_kiocb *req;
Jens Axboe8e2e1fa2020-04-13 17:05:14 -06004519 int posted = 0, i;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004520
4521 spin_lock_irq(&ctx->completion_lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07004522 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
4523 struct hlist_head *list;
4524
4525 list = &ctx->cancel_hash[i];
4526 hlist_for_each_entry_safe(req, tmp, list, hash_node)
Jens Axboe8e2e1fa2020-04-13 17:05:14 -06004527 posted += io_poll_remove_one(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004528 }
4529 spin_unlock_irq(&ctx->completion_lock);
Jens Axboeb41e9852020-02-17 09:52:41 -07004530
Jens Axboe8e2e1fa2020-04-13 17:05:14 -06004531 if (posted)
4532 io_cqring_ev_posted(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004533}
4534
Jens Axboe47f46762019-11-09 17:43:02 -07004535static int io_poll_cancel(struct io_ring_ctx *ctx, __u64 sqe_addr)
4536{
Jens Axboe78076bb2019-12-04 19:56:40 -07004537 struct hlist_head *list;
Jens Axboe47f46762019-11-09 17:43:02 -07004538 struct io_kiocb *req;
4539
Jens Axboe78076bb2019-12-04 19:56:40 -07004540 list = &ctx->cancel_hash[hash_long(sqe_addr, ctx->cancel_hash_bits)];
4541 hlist_for_each_entry(req, list, hash_node) {
Jens Axboeb41e9852020-02-17 09:52:41 -07004542 if (sqe_addr != req->user_data)
4543 continue;
4544 if (io_poll_remove_one(req))
Jens Axboeeac406c2019-11-14 12:09:58 -07004545 return 0;
Jens Axboeb41e9852020-02-17 09:52:41 -07004546 return -EALREADY;
Jens Axboe47f46762019-11-09 17:43:02 -07004547 }
4548
4549 return -ENOENT;
4550}
4551
Jens Axboe3529d8c2019-12-19 18:24:38 -07004552static int io_poll_remove_prep(struct io_kiocb *req,
4553 const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004554{
Jens Axboe221c5eb2019-01-17 09:41:58 -07004555 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4556 return -EINVAL;
4557 if (sqe->ioprio || sqe->off || sqe->len || sqe->buf_index ||
4558 sqe->poll_events)
4559 return -EINVAL;
4560
Jens Axboe0969e782019-12-17 18:40:57 -07004561 req->poll.addr = READ_ONCE(sqe->addr);
Jens Axboe0969e782019-12-17 18:40:57 -07004562 return 0;
4563}
4564
4565/*
4566 * Find a running poll command that matches one specified in sqe->addr,
4567 * and remove it if found.
4568 */
4569static int io_poll_remove(struct io_kiocb *req)
4570{
4571 struct io_ring_ctx *ctx = req->ctx;
4572 u64 addr;
4573 int ret;
4574
Jens Axboe0969e782019-12-17 18:40:57 -07004575 addr = req->poll.addr;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004576 spin_lock_irq(&ctx->completion_lock);
Jens Axboe0969e782019-12-17 18:40:57 -07004577 ret = io_poll_cancel(ctx, addr);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004578 spin_unlock_irq(&ctx->completion_lock);
4579
Jens Axboe78e19bb2019-11-06 15:21:34 -07004580 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004581 if (ret < 0)
4582 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06004583 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004584 return 0;
4585}
4586
Jens Axboe221c5eb2019-01-17 09:41:58 -07004587static int io_poll_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
4588 void *key)
4589{
Jens Axboec2f2eb72020-02-10 09:07:05 -07004590 struct io_kiocb *req = wait->private;
4591 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004592
Jens Axboed7718a92020-02-14 22:23:12 -07004593 return __io_async_wake(req, poll, key_to_poll(key), io_poll_task_func);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004594}
4595
Jens Axboe221c5eb2019-01-17 09:41:58 -07004596static void io_poll_queue_proc(struct file *file, struct wait_queue_head *head,
4597 struct poll_table_struct *p)
4598{
4599 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
4600
Jens Axboed7718a92020-02-14 22:23:12 -07004601 __io_queue_proc(&pt->req->poll, pt, head);
Jens Axboeeac406c2019-11-14 12:09:58 -07004602}
4603
Jens Axboe3529d8c2019-12-19 18:24:38 -07004604static int io_poll_add_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004605{
4606 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004607 u16 events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004608
4609 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4610 return -EINVAL;
4611 if (sqe->addr || sqe->ioprio || sqe->off || sqe->len || sqe->buf_index)
4612 return -EINVAL;
Jens Axboe09bb8392019-03-13 12:39:28 -06004613 if (!poll->file)
4614 return -EBADF;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004615
Jens Axboe221c5eb2019-01-17 09:41:58 -07004616 events = READ_ONCE(sqe->poll_events);
4617 poll->events = demangle_poll(events) | EPOLLERR | EPOLLHUP;
Jens Axboeb41e9852020-02-17 09:52:41 -07004618
Jens Axboe3537b6a2020-04-03 11:19:06 -06004619 get_task_struct(current);
Jens Axboeb41e9852020-02-17 09:52:41 -07004620 req->task = current;
Jens Axboe0969e782019-12-17 18:40:57 -07004621 return 0;
4622}
4623
Pavel Begunkov014db002020-03-03 21:33:12 +03004624static int io_poll_add(struct io_kiocb *req)
Jens Axboe0969e782019-12-17 18:40:57 -07004625{
4626 struct io_poll_iocb *poll = &req->poll;
4627 struct io_ring_ctx *ctx = req->ctx;
4628 struct io_poll_table ipt;
Jens Axboe0969e782019-12-17 18:40:57 -07004629 __poll_t mask;
Jens Axboe0969e782019-12-17 18:40:57 -07004630
Jens Axboe78076bb2019-12-04 19:56:40 -07004631 INIT_HLIST_NODE(&req->hash_node);
Jens Axboe36703242019-07-25 10:20:18 -06004632 INIT_LIST_HEAD(&req->list);
Jens Axboed7718a92020-02-14 22:23:12 -07004633 ipt.pt._qproc = io_poll_queue_proc;
Jens Axboe36703242019-07-25 10:20:18 -06004634
Jens Axboed7718a92020-02-14 22:23:12 -07004635 mask = __io_arm_poll_handler(req, &req->poll, &ipt, poll->events,
4636 io_poll_wake);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004637
Jens Axboe8c838782019-03-12 15:48:16 -06004638 if (mask) { /* no async, we'd stolen it */
Jens Axboe8c838782019-03-12 15:48:16 -06004639 ipt.error = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004640 io_poll_complete(req, mask, 0);
Jens Axboe8c838782019-03-12 15:48:16 -06004641 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07004642 spin_unlock_irq(&ctx->completion_lock);
4643
Jens Axboe8c838782019-03-12 15:48:16 -06004644 if (mask) {
4645 io_cqring_ev_posted(ctx);
Pavel Begunkov014db002020-03-03 21:33:12 +03004646 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004647 }
Jens Axboe8c838782019-03-12 15:48:16 -06004648 return ipt.error;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004649}
4650
Jens Axboe5262f562019-09-17 12:26:57 -06004651static enum hrtimer_restart io_timeout_fn(struct hrtimer *timer)
4652{
Jens Axboead8a48a2019-11-15 08:49:11 -07004653 struct io_timeout_data *data = container_of(timer,
4654 struct io_timeout_data, timer);
4655 struct io_kiocb *req = data->req;
4656 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5262f562019-09-17 12:26:57 -06004657 unsigned long flags;
4658
Jens Axboe5262f562019-09-17 12:26:57 -06004659 atomic_inc(&ctx->cq_timeouts);
4660
4661 spin_lock_irqsave(&ctx->completion_lock, flags);
zhangyi (F)ef036812019-10-23 15:10:08 +08004662 /*
Jens Axboe11365042019-10-16 09:08:32 -06004663 * We could be racing with timeout deletion. If the list is empty,
4664 * then timeout lookup already found it and will be handling it.
zhangyi (F)ef036812019-10-23 15:10:08 +08004665 */
Jens Axboe842f9612019-10-29 12:34:10 -06004666 if (!list_empty(&req->list)) {
Jens Axboe11365042019-10-16 09:08:32 -06004667 struct io_kiocb *prev;
Jens Axboe5262f562019-09-17 12:26:57 -06004668
Jens Axboe11365042019-10-16 09:08:32 -06004669 /*
4670 * Adjust the reqs sequence before the current one because it
Brian Gianforcarod195a662019-12-13 03:09:50 -08004671 * will consume a slot in the cq_ring and the cq_tail
Jens Axboe11365042019-10-16 09:08:32 -06004672 * pointer will be increased, otherwise other timeout reqs may
4673 * return in advance without waiting for enough wait_nr.
4674 */
4675 prev = req;
4676 list_for_each_entry_continue_reverse(prev, &ctx->timeout_list, list)
4677 prev->sequence++;
Jens Axboe11365042019-10-16 09:08:32 -06004678 list_del_init(&req->list);
Jens Axboe11365042019-10-16 09:08:32 -06004679 }
Jens Axboe842f9612019-10-29 12:34:10 -06004680
Jens Axboe78e19bb2019-11-06 15:21:34 -07004681 io_cqring_fill_event(req, -ETIME);
Jens Axboe5262f562019-09-17 12:26:57 -06004682 io_commit_cqring(ctx);
4683 spin_unlock_irqrestore(&ctx->completion_lock, flags);
4684
4685 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004686 req_set_fail_links(req);
Jens Axboe5262f562019-09-17 12:26:57 -06004687 io_put_req(req);
4688 return HRTIMER_NORESTART;
4689}
4690
Jens Axboe47f46762019-11-09 17:43:02 -07004691static int io_timeout_cancel(struct io_ring_ctx *ctx, __u64 user_data)
4692{
4693 struct io_kiocb *req;
4694 int ret = -ENOENT;
4695
4696 list_for_each_entry(req, &ctx->timeout_list, list) {
4697 if (user_data == req->user_data) {
4698 list_del_init(&req->list);
4699 ret = 0;
4700 break;
4701 }
4702 }
4703
4704 if (ret == -ENOENT)
4705 return ret;
4706
Jens Axboe2d283902019-12-04 11:08:05 -07004707 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe47f46762019-11-09 17:43:02 -07004708 if (ret == -1)
4709 return -EALREADY;
4710
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004711 req_set_fail_links(req);
Jens Axboe47f46762019-11-09 17:43:02 -07004712 io_cqring_fill_event(req, -ECANCELED);
4713 io_put_req(req);
4714 return 0;
4715}
4716
Jens Axboe3529d8c2019-12-19 18:24:38 -07004717static int io_timeout_remove_prep(struct io_kiocb *req,
4718 const struct io_uring_sqe *sqe)
Jens Axboeb29472e2019-12-17 18:50:29 -07004719{
Jens Axboeb29472e2019-12-17 18:50:29 -07004720 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4721 return -EINVAL;
4722 if (sqe->flags || sqe->ioprio || sqe->buf_index || sqe->len)
4723 return -EINVAL;
4724
4725 req->timeout.addr = READ_ONCE(sqe->addr);
4726 req->timeout.flags = READ_ONCE(sqe->timeout_flags);
4727 if (req->timeout.flags)
4728 return -EINVAL;
4729
Jens Axboeb29472e2019-12-17 18:50:29 -07004730 return 0;
4731}
4732
Jens Axboe11365042019-10-16 09:08:32 -06004733/*
4734 * Remove or update an existing timeout command
4735 */
Jens Axboefc4df992019-12-10 14:38:45 -07004736static int io_timeout_remove(struct io_kiocb *req)
Jens Axboe11365042019-10-16 09:08:32 -06004737{
4738 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe47f46762019-11-09 17:43:02 -07004739 int ret;
Jens Axboe11365042019-10-16 09:08:32 -06004740
Jens Axboe11365042019-10-16 09:08:32 -06004741 spin_lock_irq(&ctx->completion_lock);
Jens Axboeb29472e2019-12-17 18:50:29 -07004742 ret = io_timeout_cancel(ctx, req->timeout.addr);
Jens Axboe11365042019-10-16 09:08:32 -06004743
Jens Axboe47f46762019-11-09 17:43:02 -07004744 io_cqring_fill_event(req, ret);
Jens Axboe11365042019-10-16 09:08:32 -06004745 io_commit_cqring(ctx);
4746 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06004747 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004748 if (ret < 0)
4749 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08004750 io_put_req(req);
Jens Axboe11365042019-10-16 09:08:32 -06004751 return 0;
Jens Axboe5262f562019-09-17 12:26:57 -06004752}
4753
Jens Axboe3529d8c2019-12-19 18:24:38 -07004754static int io_timeout_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboe2d283902019-12-04 11:08:05 -07004755 bool is_timeout_link)
Jens Axboe5262f562019-09-17 12:26:57 -06004756{
Jens Axboead8a48a2019-11-15 08:49:11 -07004757 struct io_timeout_data *data;
Jens Axboea41525a2019-10-15 16:48:15 -06004758 unsigned flags;
Jens Axboe5262f562019-09-17 12:26:57 -06004759
Jens Axboead8a48a2019-11-15 08:49:11 -07004760 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe5262f562019-09-17 12:26:57 -06004761 return -EINVAL;
Jens Axboead8a48a2019-11-15 08:49:11 -07004762 if (sqe->ioprio || sqe->buf_index || sqe->len != 1)
Jens Axboea41525a2019-10-15 16:48:15 -06004763 return -EINVAL;
Jens Axboe2d283902019-12-04 11:08:05 -07004764 if (sqe->off && is_timeout_link)
4765 return -EINVAL;
Jens Axboea41525a2019-10-15 16:48:15 -06004766 flags = READ_ONCE(sqe->timeout_flags);
4767 if (flags & ~IORING_TIMEOUT_ABS)
Jens Axboe5262f562019-09-17 12:26:57 -06004768 return -EINVAL;
Arnd Bergmannbdf20072019-10-01 09:53:29 -06004769
Jens Axboe26a61672019-12-20 09:02:01 -07004770 req->timeout.count = READ_ONCE(sqe->off);
4771
Jens Axboe3529d8c2019-12-19 18:24:38 -07004772 if (!req->io && io_alloc_async_ctx(req))
Jens Axboe26a61672019-12-20 09:02:01 -07004773 return -ENOMEM;
4774
4775 data = &req->io->timeout;
Jens Axboead8a48a2019-11-15 08:49:11 -07004776 data->req = req;
Jens Axboead8a48a2019-11-15 08:49:11 -07004777 req->flags |= REQ_F_TIMEOUT;
4778
4779 if (get_timespec64(&data->ts, u64_to_user_ptr(sqe->addr)))
Jens Axboe5262f562019-09-17 12:26:57 -06004780 return -EFAULT;
4781
Jens Axboe11365042019-10-16 09:08:32 -06004782 if (flags & IORING_TIMEOUT_ABS)
Jens Axboead8a48a2019-11-15 08:49:11 -07004783 data->mode = HRTIMER_MODE_ABS;
Jens Axboe11365042019-10-16 09:08:32 -06004784 else
Jens Axboead8a48a2019-11-15 08:49:11 -07004785 data->mode = HRTIMER_MODE_REL;
Jens Axboe11365042019-10-16 09:08:32 -06004786
Jens Axboead8a48a2019-11-15 08:49:11 -07004787 hrtimer_init(&data->timer, CLOCK_MONOTONIC, data->mode);
4788 return 0;
4789}
4790
Jens Axboefc4df992019-12-10 14:38:45 -07004791static int io_timeout(struct io_kiocb *req)
Jens Axboead8a48a2019-11-15 08:49:11 -07004792{
Jens Axboead8a48a2019-11-15 08:49:11 -07004793 struct io_ring_ctx *ctx = req->ctx;
4794 struct io_timeout_data *data;
4795 struct list_head *entry;
4796 unsigned span = 0;
Pavel Begunkovb55ce732020-04-15 00:39:49 +03004797 u32 count = req->timeout.count;
Pavel Begunkov22cad152020-04-15 00:39:48 +03004798 u32 seq = req->sequence;
Jens Axboead8a48a2019-11-15 08:49:11 -07004799
Jens Axboe2d283902019-12-04 11:08:05 -07004800 data = &req->io->timeout;
Jens Axboe93bd25b2019-11-11 23:34:31 -07004801
Jens Axboe5262f562019-09-17 12:26:57 -06004802 /*
4803 * sqe->off holds how many events that need to occur for this
Jens Axboe93bd25b2019-11-11 23:34:31 -07004804 * timeout event to be satisfied. If it isn't set, then this is
4805 * a pure timeout request, sequence isn't used.
Jens Axboe5262f562019-09-17 12:26:57 -06004806 */
Jens Axboe93bd25b2019-11-11 23:34:31 -07004807 if (!count) {
4808 req->flags |= REQ_F_TIMEOUT_NOSEQ;
4809 spin_lock_irq(&ctx->completion_lock);
4810 entry = ctx->timeout_list.prev;
4811 goto add;
4812 }
Jens Axboe5262f562019-09-17 12:26:57 -06004813
Pavel Begunkov22cad152020-04-15 00:39:48 +03004814 req->sequence = seq + count;
Jens Axboe5262f562019-09-17 12:26:57 -06004815
4816 /*
4817 * Insertion sort, ensuring the first entry in the list is always
4818 * the one we need first.
4819 */
Jens Axboe5262f562019-09-17 12:26:57 -06004820 spin_lock_irq(&ctx->completion_lock);
4821 list_for_each_prev(entry, &ctx->timeout_list) {
4822 struct io_kiocb *nxt = list_entry(entry, struct io_kiocb, list);
Pavel Begunkov22cad152020-04-15 00:39:48 +03004823 unsigned nxt_seq;
yangerkun5da0fb12019-10-15 21:59:29 +08004824 long long tmp, tmp_nxt;
Pavel Begunkovb55ce732020-04-15 00:39:49 +03004825 u32 nxt_offset = nxt->timeout.count;
Jens Axboe5262f562019-09-17 12:26:57 -06004826
Jens Axboe93bd25b2019-11-11 23:34:31 -07004827 if (nxt->flags & REQ_F_TIMEOUT_NOSEQ)
4828 continue;
4829
yangerkun5da0fb12019-10-15 21:59:29 +08004830 /*
Pavel Begunkov22cad152020-04-15 00:39:48 +03004831 * Since seq + count can overflow, use type long
yangerkun5da0fb12019-10-15 21:59:29 +08004832 * long to store it.
4833 */
Pavel Begunkov22cad152020-04-15 00:39:48 +03004834 tmp = (long long)seq + count;
4835 nxt_seq = nxt->sequence - nxt_offset;
4836 tmp_nxt = (long long)nxt_seq + nxt_offset;
yangerkun5da0fb12019-10-15 21:59:29 +08004837
4838 /*
4839 * cached_sq_head may overflow, and it will never overflow twice
4840 * once there is some timeout req still be valid.
4841 */
Pavel Begunkov22cad152020-04-15 00:39:48 +03004842 if (seq < nxt_seq)
yangerkun8b07a652019-10-17 12:12:35 +08004843 tmp += UINT_MAX;
yangerkun5da0fb12019-10-15 21:59:29 +08004844
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004845 if (tmp > tmp_nxt)
Jens Axboe5262f562019-09-17 12:26:57 -06004846 break;
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004847
4848 /*
4849 * Sequence of reqs after the insert one and itself should
4850 * be adjusted because each timeout req consumes a slot.
4851 */
4852 span++;
4853 nxt->sequence++;
Jens Axboe5262f562019-09-17 12:26:57 -06004854 }
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004855 req->sequence -= span;
Jens Axboe93bd25b2019-11-11 23:34:31 -07004856add:
Jens Axboe5262f562019-09-17 12:26:57 -06004857 list_add(&req->list, entry);
Jens Axboead8a48a2019-11-15 08:49:11 -07004858 data->timer.function = io_timeout_fn;
4859 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts), data->mode);
Jens Axboe842f9612019-10-29 12:34:10 -06004860 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06004861 return 0;
4862}
4863
Jens Axboe62755e32019-10-28 21:49:21 -06004864static bool io_cancel_cb(struct io_wq_work *work, void *data)
Jens Axboede0617e2019-04-06 21:51:27 -06004865{
Jens Axboe62755e32019-10-28 21:49:21 -06004866 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboede0617e2019-04-06 21:51:27 -06004867
Jens Axboe62755e32019-10-28 21:49:21 -06004868 return req->user_data == (unsigned long) data;
4869}
4870
Jens Axboee977d6d2019-11-05 12:39:45 -07004871static int io_async_cancel_one(struct io_ring_ctx *ctx, void *sqe_addr)
Jens Axboe62755e32019-10-28 21:49:21 -06004872{
Jens Axboe62755e32019-10-28 21:49:21 -06004873 enum io_wq_cancel cancel_ret;
Jens Axboe62755e32019-10-28 21:49:21 -06004874 int ret = 0;
4875
Jens Axboe62755e32019-10-28 21:49:21 -06004876 cancel_ret = io_wq_cancel_cb(ctx->io_wq, io_cancel_cb, sqe_addr);
4877 switch (cancel_ret) {
4878 case IO_WQ_CANCEL_OK:
4879 ret = 0;
4880 break;
4881 case IO_WQ_CANCEL_RUNNING:
4882 ret = -EALREADY;
4883 break;
4884 case IO_WQ_CANCEL_NOTFOUND:
4885 ret = -ENOENT;
4886 break;
4887 }
4888
Jens Axboee977d6d2019-11-05 12:39:45 -07004889 return ret;
4890}
4891
Jens Axboe47f46762019-11-09 17:43:02 -07004892static void io_async_find_and_cancel(struct io_ring_ctx *ctx,
4893 struct io_kiocb *req, __u64 sqe_addr,
Pavel Begunkov014db002020-03-03 21:33:12 +03004894 int success_ret)
Jens Axboe47f46762019-11-09 17:43:02 -07004895{
4896 unsigned long flags;
4897 int ret;
4898
4899 ret = io_async_cancel_one(ctx, (void *) (unsigned long) sqe_addr);
4900 if (ret != -ENOENT) {
4901 spin_lock_irqsave(&ctx->completion_lock, flags);
4902 goto done;
4903 }
4904
4905 spin_lock_irqsave(&ctx->completion_lock, flags);
4906 ret = io_timeout_cancel(ctx, sqe_addr);
4907 if (ret != -ENOENT)
4908 goto done;
4909 ret = io_poll_cancel(ctx, sqe_addr);
4910done:
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004911 if (!ret)
4912 ret = success_ret;
Jens Axboe47f46762019-11-09 17:43:02 -07004913 io_cqring_fill_event(req, ret);
4914 io_commit_cqring(ctx);
4915 spin_unlock_irqrestore(&ctx->completion_lock, flags);
4916 io_cqring_ev_posted(ctx);
4917
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004918 if (ret < 0)
4919 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03004920 io_put_req(req);
Jens Axboe47f46762019-11-09 17:43:02 -07004921}
4922
Jens Axboe3529d8c2019-12-19 18:24:38 -07004923static int io_async_cancel_prep(struct io_kiocb *req,
4924 const struct io_uring_sqe *sqe)
Jens Axboee977d6d2019-11-05 12:39:45 -07004925{
Jens Axboefbf23842019-12-17 18:45:56 -07004926 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboee977d6d2019-11-05 12:39:45 -07004927 return -EINVAL;
4928 if (sqe->flags || sqe->ioprio || sqe->off || sqe->len ||
4929 sqe->cancel_flags)
4930 return -EINVAL;
4931
Jens Axboefbf23842019-12-17 18:45:56 -07004932 req->cancel.addr = READ_ONCE(sqe->addr);
4933 return 0;
4934}
4935
Pavel Begunkov014db002020-03-03 21:33:12 +03004936static int io_async_cancel(struct io_kiocb *req)
Jens Axboefbf23842019-12-17 18:45:56 -07004937{
4938 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefbf23842019-12-17 18:45:56 -07004939
Pavel Begunkov014db002020-03-03 21:33:12 +03004940 io_async_find_and_cancel(ctx, req, req->cancel.addr, 0);
Jens Axboe62755e32019-10-28 21:49:21 -06004941 return 0;
4942}
4943
Jens Axboe05f3fb32019-12-09 11:22:50 -07004944static int io_files_update_prep(struct io_kiocb *req,
4945 const struct io_uring_sqe *sqe)
4946{
4947 if (sqe->flags || sqe->ioprio || sqe->rw_flags)
4948 return -EINVAL;
4949
4950 req->files_update.offset = READ_ONCE(sqe->off);
4951 req->files_update.nr_args = READ_ONCE(sqe->len);
4952 if (!req->files_update.nr_args)
4953 return -EINVAL;
4954 req->files_update.arg = READ_ONCE(sqe->addr);
4955 return 0;
4956}
4957
4958static int io_files_update(struct io_kiocb *req, bool force_nonblock)
4959{
4960 struct io_ring_ctx *ctx = req->ctx;
4961 struct io_uring_files_update up;
4962 int ret;
4963
Jens Axboef86cd202020-01-29 13:46:44 -07004964 if (force_nonblock)
Jens Axboe05f3fb32019-12-09 11:22:50 -07004965 return -EAGAIN;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004966
4967 up.offset = req->files_update.offset;
4968 up.fds = req->files_update.arg;
4969
4970 mutex_lock(&ctx->uring_lock);
4971 ret = __io_sqe_files_update(ctx, &up, req->files_update.nr_args);
4972 mutex_unlock(&ctx->uring_lock);
4973
4974 if (ret < 0)
4975 req_set_fail_links(req);
4976 io_cqring_add_event(req, ret);
4977 io_put_req(req);
4978 return 0;
4979}
4980
Jens Axboe3529d8c2019-12-19 18:24:38 -07004981static int io_req_defer_prep(struct io_kiocb *req,
4982 const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07004983{
Jens Axboee7815732019-12-17 19:45:06 -07004984 ssize_t ret = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07004985
Pavel Begunkovf1d96a82020-03-13 22:29:14 +03004986 if (!sqe)
4987 return 0;
4988
Jens Axboef86cd202020-01-29 13:46:44 -07004989 if (io_op_defs[req->opcode].file_table) {
4990 ret = io_grab_files(req);
4991 if (unlikely(ret))
4992 return ret;
4993 }
4994
Jens Axboecccf0ee2020-01-27 16:34:48 -07004995 io_req_work_grab_env(req, &io_op_defs[req->opcode]);
4996
Jens Axboed625c6e2019-12-17 19:53:05 -07004997 switch (req->opcode) {
Jens Axboee7815732019-12-17 19:45:06 -07004998 case IORING_OP_NOP:
4999 break;
Jens Axboef67676d2019-12-02 11:03:47 -07005000 case IORING_OP_READV:
5001 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07005002 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005003 ret = io_read_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07005004 break;
5005 case IORING_OP_WRITEV:
5006 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07005007 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005008 ret = io_write_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07005009 break;
Jens Axboe0969e782019-12-17 18:40:57 -07005010 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005011 ret = io_poll_add_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07005012 break;
5013 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005014 ret = io_poll_remove_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07005015 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005016 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005017 ret = io_prep_fsync(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005018 break;
5019 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005020 ret = io_prep_sfr(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005021 break;
Jens Axboe03b12302019-12-02 18:50:25 -07005022 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005023 case IORING_OP_SEND:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005024 ret = io_sendmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07005025 break;
5026 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005027 case IORING_OP_RECV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005028 ret = io_recvmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07005029 break;
Jens Axboef499a022019-12-02 16:28:46 -07005030 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005031 ret = io_connect_prep(req, sqe);
Jens Axboef499a022019-12-02 16:28:46 -07005032 break;
Jens Axboe2d283902019-12-04 11:08:05 -07005033 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005034 ret = io_timeout_prep(req, sqe, false);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07005035 break;
Jens Axboeb29472e2019-12-17 18:50:29 -07005036 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005037 ret = io_timeout_remove_prep(req, sqe);
Jens Axboeb29472e2019-12-17 18:50:29 -07005038 break;
Jens Axboefbf23842019-12-17 18:45:56 -07005039 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005040 ret = io_async_cancel_prep(req, sqe);
Jens Axboefbf23842019-12-17 18:45:56 -07005041 break;
Jens Axboe2d283902019-12-04 11:08:05 -07005042 case IORING_OP_LINK_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005043 ret = io_timeout_prep(req, sqe, true);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07005044 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005045 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005046 ret = io_accept_prep(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005047 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07005048 case IORING_OP_FALLOCATE:
5049 ret = io_fallocate_prep(req, sqe);
5050 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07005051 case IORING_OP_OPENAT:
5052 ret = io_openat_prep(req, sqe);
5053 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07005054 case IORING_OP_CLOSE:
5055 ret = io_close_prep(req, sqe);
5056 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005057 case IORING_OP_FILES_UPDATE:
5058 ret = io_files_update_prep(req, sqe);
5059 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07005060 case IORING_OP_STATX:
5061 ret = io_statx_prep(req, sqe);
5062 break;
Jens Axboe4840e412019-12-25 22:03:45 -07005063 case IORING_OP_FADVISE:
5064 ret = io_fadvise_prep(req, sqe);
5065 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07005066 case IORING_OP_MADVISE:
5067 ret = io_madvise_prep(req, sqe);
5068 break;
Jens Axboecebdb982020-01-08 17:59:24 -07005069 case IORING_OP_OPENAT2:
5070 ret = io_openat2_prep(req, sqe);
5071 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07005072 case IORING_OP_EPOLL_CTL:
5073 ret = io_epoll_ctl_prep(req, sqe);
5074 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005075 case IORING_OP_SPLICE:
5076 ret = io_splice_prep(req, sqe);
5077 break;
Jens Axboeddf0322d2020-02-23 16:41:33 -07005078 case IORING_OP_PROVIDE_BUFFERS:
5079 ret = io_provide_buffers_prep(req, sqe);
5080 break;
Jens Axboe067524e2020-03-02 16:32:28 -07005081 case IORING_OP_REMOVE_BUFFERS:
5082 ret = io_remove_buffers_prep(req, sqe);
5083 break;
Jens Axboef67676d2019-12-02 11:03:47 -07005084 default:
Jens Axboee7815732019-12-17 19:45:06 -07005085 printk_once(KERN_WARNING "io_uring: unhandled opcode %d\n",
5086 req->opcode);
5087 ret = -EINVAL;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07005088 break;
Jens Axboef67676d2019-12-02 11:03:47 -07005089 }
5090
Jens Axboeb7bb4f72019-12-15 22:13:43 -07005091 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07005092}
5093
Jens Axboe3529d8c2019-12-19 18:24:38 -07005094static int io_req_defer(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboede0617e2019-04-06 21:51:27 -06005095{
Jackie Liua197f662019-11-08 08:09:12 -07005096 struct io_ring_ctx *ctx = req->ctx;
Jens Axboef67676d2019-12-02 11:03:47 -07005097 int ret;
Jens Axboede0617e2019-04-06 21:51:27 -06005098
Bob Liu9d858b22019-11-13 18:06:25 +08005099 /* Still need defer if there is pending req in defer list. */
Pavel Begunkov4ee36312020-05-01 17:09:37 +03005100 if (!req_need_defer(req) && list_empty_careful(&ctx->defer_list))
Jens Axboede0617e2019-04-06 21:51:27 -06005101 return 0;
5102
Jens Axboe3529d8c2019-12-19 18:24:38 -07005103 if (!req->io && io_alloc_async_ctx(req))
Jens Axboede0617e2019-04-06 21:51:27 -06005104 return -EAGAIN;
5105
Jens Axboe3529d8c2019-12-19 18:24:38 -07005106 ret = io_req_defer_prep(req, sqe);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07005107 if (ret < 0)
Jens Axboe2d283902019-12-04 11:08:05 -07005108 return ret;
Jens Axboe2d283902019-12-04 11:08:05 -07005109
Jens Axboede0617e2019-04-06 21:51:27 -06005110 spin_lock_irq(&ctx->completion_lock);
Bob Liu9d858b22019-11-13 18:06:25 +08005111 if (!req_need_defer(req) && list_empty(&ctx->defer_list)) {
Jens Axboede0617e2019-04-06 21:51:27 -06005112 spin_unlock_irq(&ctx->completion_lock);
Jens Axboede0617e2019-04-06 21:51:27 -06005113 return 0;
5114 }
5115
Jens Axboe915967f2019-11-21 09:01:20 -07005116 trace_io_uring_defer(ctx, req, req->user_data);
Jens Axboede0617e2019-04-06 21:51:27 -06005117 list_add_tail(&req->list, &ctx->defer_list);
5118 spin_unlock_irq(&ctx->completion_lock);
5119 return -EIOCBQUEUED;
5120}
5121
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005122static void io_cleanup_req(struct io_kiocb *req)
5123{
5124 struct io_async_ctx *io = req->io;
5125
5126 switch (req->opcode) {
5127 case IORING_OP_READV:
5128 case IORING_OP_READ_FIXED:
5129 case IORING_OP_READ:
Jens Axboebcda7ba2020-02-23 16:42:51 -07005130 if (req->flags & REQ_F_BUFFER_SELECTED)
5131 kfree((void *)(unsigned long)req->rw.addr);
5132 /* fallthrough */
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005133 case IORING_OP_WRITEV:
5134 case IORING_OP_WRITE_FIXED:
5135 case IORING_OP_WRITE:
5136 if (io->rw.iov != io->rw.fast_iov)
5137 kfree(io->rw.iov);
5138 break;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005139 case IORING_OP_RECVMSG:
Jens Axboe52de1fe2020-02-27 10:15:42 -07005140 if (req->flags & REQ_F_BUFFER_SELECTED)
5141 kfree(req->sr_msg.kbuf);
5142 /* fallthrough */
5143 case IORING_OP_SENDMSG:
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005144 if (io->msg.iov != io->msg.fast_iov)
5145 kfree(io->msg.iov);
5146 break;
Jens Axboebcda7ba2020-02-23 16:42:51 -07005147 case IORING_OP_RECV:
5148 if (req->flags & REQ_F_BUFFER_SELECTED)
5149 kfree(req->sr_msg.kbuf);
5150 break;
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03005151 case IORING_OP_OPENAT:
5152 case IORING_OP_OPENAT2:
5153 case IORING_OP_STATX:
5154 putname(req->open.filename);
5155 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005156 case IORING_OP_SPLICE:
5157 io_put_file(req, req->splice.file_in,
5158 (req->splice.flags & SPLICE_F_FD_IN_FIXED));
5159 break;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005160 }
5161
5162 req->flags &= ~REQ_F_NEED_CLEANUP;
5163}
5164
Jens Axboe3529d8c2019-12-19 18:24:38 -07005165static int io_issue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Pavel Begunkov014db002020-03-03 21:33:12 +03005166 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005167{
Jackie Liua197f662019-11-08 08:09:12 -07005168 struct io_ring_ctx *ctx = req->ctx;
Jens Axboed625c6e2019-12-17 19:53:05 -07005169 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005170
Jens Axboed625c6e2019-12-17 19:53:05 -07005171 switch (req->opcode) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07005172 case IORING_OP_NOP:
Jens Axboe78e19bb2019-11-06 15:21:34 -07005173 ret = io_nop(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005174 break;
5175 case IORING_OP_READV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005176 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07005177 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005178 if (sqe) {
5179 ret = io_read_prep(req, sqe, force_nonblock);
5180 if (ret < 0)
5181 break;
5182 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005183 ret = io_read(req, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005184 break;
5185 case IORING_OP_WRITEV:
Jens Axboeedafcce2019-01-09 09:16:05 -07005186 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07005187 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005188 if (sqe) {
5189 ret = io_write_prep(req, sqe, force_nonblock);
5190 if (ret < 0)
5191 break;
5192 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005193 ret = io_write(req, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005194 break;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07005195 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005196 if (sqe) {
5197 ret = io_prep_fsync(req, sqe);
5198 if (ret < 0)
5199 break;
5200 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005201 ret = io_fsync(req, force_nonblock);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07005202 break;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005203 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005204 if (sqe) {
5205 ret = io_poll_add_prep(req, sqe);
5206 if (ret)
5207 break;
5208 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005209 ret = io_poll_add(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005210 break;
5211 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005212 if (sqe) {
5213 ret = io_poll_remove_prep(req, sqe);
5214 if (ret < 0)
5215 break;
5216 }
Jens Axboefc4df992019-12-10 14:38:45 -07005217 ret = io_poll_remove(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005218 break;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06005219 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005220 if (sqe) {
5221 ret = io_prep_sfr(req, sqe);
5222 if (ret < 0)
5223 break;
5224 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005225 ret = io_sync_file_range(req, force_nonblock);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06005226 break;
Jens Axboe0fa03c62019-04-19 13:34:07 -06005227 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005228 case IORING_OP_SEND:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005229 if (sqe) {
5230 ret = io_sendmsg_prep(req, sqe);
5231 if (ret < 0)
5232 break;
5233 }
Jens Axboefddafac2020-01-04 20:19:44 -07005234 if (req->opcode == IORING_OP_SENDMSG)
Pavel Begunkov014db002020-03-03 21:33:12 +03005235 ret = io_sendmsg(req, force_nonblock);
Jens Axboefddafac2020-01-04 20:19:44 -07005236 else
Pavel Begunkov014db002020-03-03 21:33:12 +03005237 ret = io_send(req, force_nonblock);
Jens Axboe0fa03c62019-04-19 13:34:07 -06005238 break;
Jens Axboeaa1fa282019-04-19 13:38:09 -06005239 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005240 case IORING_OP_RECV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005241 if (sqe) {
5242 ret = io_recvmsg_prep(req, sqe);
5243 if (ret)
5244 break;
5245 }
Jens Axboefddafac2020-01-04 20:19:44 -07005246 if (req->opcode == IORING_OP_RECVMSG)
Pavel Begunkov014db002020-03-03 21:33:12 +03005247 ret = io_recvmsg(req, force_nonblock);
Jens Axboefddafac2020-01-04 20:19:44 -07005248 else
Pavel Begunkov014db002020-03-03 21:33:12 +03005249 ret = io_recv(req, force_nonblock);
Jens Axboeaa1fa282019-04-19 13:38:09 -06005250 break;
Jens Axboe5262f562019-09-17 12:26:57 -06005251 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005252 if (sqe) {
5253 ret = io_timeout_prep(req, sqe, false);
5254 if (ret)
5255 break;
5256 }
Jens Axboefc4df992019-12-10 14:38:45 -07005257 ret = io_timeout(req);
Jens Axboe5262f562019-09-17 12:26:57 -06005258 break;
Jens Axboe11365042019-10-16 09:08:32 -06005259 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005260 if (sqe) {
5261 ret = io_timeout_remove_prep(req, sqe);
5262 if (ret)
5263 break;
5264 }
Jens Axboefc4df992019-12-10 14:38:45 -07005265 ret = io_timeout_remove(req);
Jens Axboe11365042019-10-16 09:08:32 -06005266 break;
Jens Axboe17f2fe32019-10-17 14:42:58 -06005267 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005268 if (sqe) {
5269 ret = io_accept_prep(req, sqe);
5270 if (ret)
5271 break;
5272 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005273 ret = io_accept(req, force_nonblock);
Jens Axboe17f2fe32019-10-17 14:42:58 -06005274 break;
Jens Axboef8e85cf2019-11-23 14:24:24 -07005275 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005276 if (sqe) {
5277 ret = io_connect_prep(req, sqe);
5278 if (ret)
5279 break;
5280 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005281 ret = io_connect(req, force_nonblock);
Jens Axboef8e85cf2019-11-23 14:24:24 -07005282 break;
Jens Axboe62755e32019-10-28 21:49:21 -06005283 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005284 if (sqe) {
5285 ret = io_async_cancel_prep(req, sqe);
5286 if (ret)
5287 break;
5288 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005289 ret = io_async_cancel(req);
Jens Axboe62755e32019-10-28 21:49:21 -06005290 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07005291 case IORING_OP_FALLOCATE:
5292 if (sqe) {
5293 ret = io_fallocate_prep(req, sqe);
5294 if (ret)
5295 break;
5296 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005297 ret = io_fallocate(req, force_nonblock);
Jens Axboed63d1b52019-12-10 10:38:56 -07005298 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07005299 case IORING_OP_OPENAT:
5300 if (sqe) {
5301 ret = io_openat_prep(req, sqe);
5302 if (ret)
5303 break;
5304 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005305 ret = io_openat(req, force_nonblock);
Jens Axboe15b71ab2019-12-11 11:20:36 -07005306 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07005307 case IORING_OP_CLOSE:
5308 if (sqe) {
5309 ret = io_close_prep(req, sqe);
5310 if (ret)
5311 break;
5312 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005313 ret = io_close(req, force_nonblock);
Jens Axboeb5dba592019-12-11 14:02:38 -07005314 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005315 case IORING_OP_FILES_UPDATE:
5316 if (sqe) {
5317 ret = io_files_update_prep(req, sqe);
5318 if (ret)
5319 break;
5320 }
5321 ret = io_files_update(req, force_nonblock);
5322 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07005323 case IORING_OP_STATX:
5324 if (sqe) {
5325 ret = io_statx_prep(req, sqe);
5326 if (ret)
5327 break;
5328 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005329 ret = io_statx(req, force_nonblock);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07005330 break;
Jens Axboe4840e412019-12-25 22:03:45 -07005331 case IORING_OP_FADVISE:
5332 if (sqe) {
5333 ret = io_fadvise_prep(req, sqe);
5334 if (ret)
5335 break;
5336 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005337 ret = io_fadvise(req, force_nonblock);
Jens Axboe4840e412019-12-25 22:03:45 -07005338 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07005339 case IORING_OP_MADVISE:
5340 if (sqe) {
5341 ret = io_madvise_prep(req, sqe);
5342 if (ret)
5343 break;
5344 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005345 ret = io_madvise(req, force_nonblock);
Jens Axboec1ca7572019-12-25 22:18:28 -07005346 break;
Jens Axboecebdb982020-01-08 17:59:24 -07005347 case IORING_OP_OPENAT2:
5348 if (sqe) {
5349 ret = io_openat2_prep(req, sqe);
5350 if (ret)
5351 break;
5352 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005353 ret = io_openat2(req, force_nonblock);
Jens Axboecebdb982020-01-08 17:59:24 -07005354 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07005355 case IORING_OP_EPOLL_CTL:
5356 if (sqe) {
5357 ret = io_epoll_ctl_prep(req, sqe);
5358 if (ret)
5359 break;
5360 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005361 ret = io_epoll_ctl(req, force_nonblock);
Jens Axboe3e4827b2020-01-08 15:18:09 -07005362 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005363 case IORING_OP_SPLICE:
5364 if (sqe) {
5365 ret = io_splice_prep(req, sqe);
5366 if (ret < 0)
5367 break;
5368 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005369 ret = io_splice(req, force_nonblock);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005370 break;
Jens Axboeddf0322d2020-02-23 16:41:33 -07005371 case IORING_OP_PROVIDE_BUFFERS:
5372 if (sqe) {
5373 ret = io_provide_buffers_prep(req, sqe);
5374 if (ret)
5375 break;
5376 }
5377 ret = io_provide_buffers(req, force_nonblock);
5378 break;
Jens Axboe067524e2020-03-02 16:32:28 -07005379 case IORING_OP_REMOVE_BUFFERS:
5380 if (sqe) {
5381 ret = io_remove_buffers_prep(req, sqe);
5382 if (ret)
5383 break;
5384 }
5385 ret = io_remove_buffers(req, force_nonblock);
Jens Axboe31b51512019-01-18 22:56:34 -07005386 break;
5387 default:
5388 ret = -EINVAL;
Jens Axboeedafcce2019-01-09 09:16:05 -07005389 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005390 }
5391
Jens Axboe31b51512019-01-18 22:56:34 -07005392 if (ret)
5393 return ret;
5394
5395 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboe11ba8202020-01-15 21:51:17 -07005396 const bool in_async = io_wq_current_is_worker();
5397
Jens Axboe9e645e112019-05-10 16:07:28 -06005398 if (req->result == -EAGAIN)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005399 return -EAGAIN;
5400
Jens Axboe11ba8202020-01-15 21:51:17 -07005401 /* workqueue context doesn't hold uring_lock, grab it now */
5402 if (in_async)
5403 mutex_lock(&ctx->uring_lock);
5404
Jens Axboe2b188cc2019-01-07 10:46:33 -07005405 io_iopoll_req_issued(req);
Jens Axboe11ba8202020-01-15 21:51:17 -07005406
5407 if (in_async)
5408 mutex_unlock(&ctx->uring_lock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005409 }
5410
5411 return 0;
5412}
5413
Jens Axboe561fb042019-10-24 07:25:42 -06005414static void io_wq_submit_work(struct io_wq_work **workptr)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005415{
Jens Axboe561fb042019-10-24 07:25:42 -06005416 struct io_wq_work *work = *workptr;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005417 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboe561fb042019-10-24 07:25:42 -06005418 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005419
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07005420 /* if NO_CANCEL is set, we must still run the work */
5421 if ((work->flags & (IO_WQ_WORK_CANCEL|IO_WQ_WORK_NO_CANCEL)) ==
5422 IO_WQ_WORK_CANCEL) {
Jens Axboe561fb042019-10-24 07:25:42 -06005423 ret = -ECANCELED;
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07005424 }
Jens Axboe31b51512019-01-18 22:56:34 -07005425
Jens Axboe561fb042019-10-24 07:25:42 -06005426 if (!ret) {
Jens Axboe561fb042019-10-24 07:25:42 -06005427 do {
Pavel Begunkov014db002020-03-03 21:33:12 +03005428 ret = io_issue_sqe(req, NULL, false);
Jens Axboe561fb042019-10-24 07:25:42 -06005429 /*
5430 * We can get EAGAIN for polled IO even though we're
5431 * forcing a sync submission from here, since we can't
5432 * wait for request slots on the block side.
5433 */
5434 if (ret != -EAGAIN)
5435 break;
5436 cond_resched();
5437 } while (1);
5438 }
Jens Axboe31b51512019-01-18 22:56:34 -07005439
Jens Axboe561fb042019-10-24 07:25:42 -06005440 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005441 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07005442 io_cqring_add_event(req, ret);
Jens Axboe817869d2019-04-30 14:44:05 -06005443 io_put_req(req);
Jens Axboeedafcce2019-01-09 09:16:05 -07005444 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07005445
Pavel Begunkove9fd9392020-03-04 16:14:12 +03005446 io_steal_work(req, workptr);
Jens Axboe31b51512019-01-18 22:56:34 -07005447}
Jens Axboe2b188cc2019-01-07 10:46:33 -07005448
Jens Axboe65e19f52019-10-26 07:20:21 -06005449static inline struct file *io_file_from_index(struct io_ring_ctx *ctx,
5450 int index)
Jens Axboe09bb8392019-03-13 12:39:28 -06005451{
Jens Axboe65e19f52019-10-26 07:20:21 -06005452 struct fixed_file_table *table;
5453
Jens Axboe05f3fb32019-12-09 11:22:50 -07005454 table = &ctx->file_data->table[index >> IORING_FILE_TABLE_SHIFT];
Xiaoming Ni84695082020-05-11 19:25:43 +08005455 return table->files[index & IORING_FILE_TABLE_MASK];
Jens Axboe65e19f52019-10-26 07:20:21 -06005456}
5457
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005458static int io_file_get(struct io_submit_state *state, struct io_kiocb *req,
5459 int fd, struct file **out_file, bool fixed)
5460{
5461 struct io_ring_ctx *ctx = req->ctx;
5462 struct file *file;
5463
5464 if (fixed) {
5465 if (unlikely(!ctx->file_data ||
5466 (unsigned) fd >= ctx->nr_user_files))
5467 return -EBADF;
5468 fd = array_index_nospec(fd, ctx->nr_user_files);
5469 file = io_file_from_index(ctx, fd);
5470 if (!file)
5471 return -EBADF;
Xiaoguang Wang05589552020-03-31 14:05:18 +08005472 req->fixed_file_refs = ctx->file_data->cur_refs;
5473 percpu_ref_get(req->fixed_file_refs);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005474 } else {
5475 trace_io_uring_file_get(ctx, fd);
5476 file = __io_file_get(state, fd);
5477 if (unlikely(!file))
5478 return -EBADF;
5479 }
5480
5481 *out_file = file;
5482 return 0;
5483}
5484
Jens Axboe3529d8c2019-12-19 18:24:38 -07005485static int io_req_set_file(struct io_submit_state *state, struct io_kiocb *req,
Jens Axboe63ff8222020-05-07 14:56:15 -06005486 int fd)
Jens Axboe09bb8392019-03-13 12:39:28 -06005487{
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005488 bool fixed;
Jens Axboe09bb8392019-03-13 12:39:28 -06005489
Jens Axboe63ff8222020-05-07 14:56:15 -06005490 fixed = (req->flags & REQ_F_FIXED_FILE) != 0;
Pavel Begunkov0cdaf762020-05-17 14:13:40 +03005491 if (unlikely(!fixed && io_async_submit(req->ctx)))
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005492 return -EBADF;
Jens Axboe09bb8392019-03-13 12:39:28 -06005493
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005494 return io_file_get(state, req, fd, &req->file, fixed);
Jens Axboe09bb8392019-03-13 12:39:28 -06005495}
5496
Jackie Liua197f662019-11-08 08:09:12 -07005497static int io_grab_files(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005498{
Jens Axboefcb323c2019-10-24 12:39:47 -06005499 int ret = -EBADF;
Jackie Liua197f662019-11-08 08:09:12 -07005500 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06005501
Jens Axboe5b0bbee2020-04-27 10:41:22 -06005502 if (req->work.files || (req->flags & REQ_F_NO_FILE_TABLE))
Jens Axboef86cd202020-01-29 13:46:44 -07005503 return 0;
Pavel Begunkovb14cca02020-01-17 04:45:59 +03005504 if (!ctx->ring_file)
Jens Axboeb5dba592019-12-11 14:02:38 -07005505 return -EBADF;
5506
Jens Axboefcb323c2019-10-24 12:39:47 -06005507 rcu_read_lock();
5508 spin_lock_irq(&ctx->inflight_lock);
5509 /*
5510 * We use the f_ops->flush() handler to ensure that we can flush
5511 * out work accessing these files if the fd is closed. Check if
5512 * the fd has changed since we started down this path, and disallow
5513 * this operation if it has.
5514 */
Pavel Begunkovb14cca02020-01-17 04:45:59 +03005515 if (fcheck(ctx->ring_fd) == ctx->ring_file) {
Jens Axboefcb323c2019-10-24 12:39:47 -06005516 list_add(&req->inflight_entry, &ctx->inflight_list);
5517 req->flags |= REQ_F_INFLIGHT;
5518 req->work.files = current->files;
5519 ret = 0;
5520 }
5521 spin_unlock_irq(&ctx->inflight_lock);
5522 rcu_read_unlock();
5523
5524 return ret;
5525}
5526
Jens Axboe2665abf2019-11-05 12:40:47 -07005527static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer)
5528{
Jens Axboead8a48a2019-11-15 08:49:11 -07005529 struct io_timeout_data *data = container_of(timer,
5530 struct io_timeout_data, timer);
5531 struct io_kiocb *req = data->req;
Jens Axboe2665abf2019-11-05 12:40:47 -07005532 struct io_ring_ctx *ctx = req->ctx;
5533 struct io_kiocb *prev = NULL;
5534 unsigned long flags;
Jens Axboe2665abf2019-11-05 12:40:47 -07005535
5536 spin_lock_irqsave(&ctx->completion_lock, flags);
5537
5538 /*
5539 * We don't expect the list to be empty, that will only happen if we
5540 * race with the completion of the linked work.
5541 */
Pavel Begunkov44932332019-12-05 16:16:35 +03005542 if (!list_empty(&req->link_list)) {
5543 prev = list_entry(req->link_list.prev, struct io_kiocb,
5544 link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07005545 if (refcount_inc_not_zero(&prev->refs)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03005546 list_del_init(&req->link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07005547 prev->flags &= ~REQ_F_LINK_TIMEOUT;
5548 } else
Jens Axboe76a46e02019-11-10 23:34:16 -07005549 prev = NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07005550 }
5551
5552 spin_unlock_irqrestore(&ctx->completion_lock, flags);
5553
5554 if (prev) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005555 req_set_fail_links(prev);
Pavel Begunkov014db002020-03-03 21:33:12 +03005556 io_async_find_and_cancel(ctx, req, prev->user_data, -ETIME);
Jens Axboe76a46e02019-11-10 23:34:16 -07005557 io_put_req(prev);
Jens Axboe47f46762019-11-09 17:43:02 -07005558 } else {
5559 io_cqring_add_event(req, -ETIME);
5560 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07005561 }
Jens Axboe2665abf2019-11-05 12:40:47 -07005562 return HRTIMER_NORESTART;
5563}
5564
Jens Axboead8a48a2019-11-15 08:49:11 -07005565static void io_queue_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07005566{
Jens Axboe76a46e02019-11-10 23:34:16 -07005567 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07005568
Jens Axboe76a46e02019-11-10 23:34:16 -07005569 /*
5570 * If the list is now empty, then our linked request finished before
5571 * we got a chance to setup the timer
5572 */
5573 spin_lock_irq(&ctx->completion_lock);
Pavel Begunkov44932332019-12-05 16:16:35 +03005574 if (!list_empty(&req->link_list)) {
Jens Axboe2d283902019-12-04 11:08:05 -07005575 struct io_timeout_data *data = &req->io->timeout;
Jens Axboe94ae5e72019-11-14 19:39:52 -07005576
Jens Axboead8a48a2019-11-15 08:49:11 -07005577 data->timer.function = io_link_timeout_fn;
5578 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts),
5579 data->mode);
Jens Axboe2665abf2019-11-05 12:40:47 -07005580 }
Jens Axboe76a46e02019-11-10 23:34:16 -07005581 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe2665abf2019-11-05 12:40:47 -07005582
Jens Axboe2665abf2019-11-05 12:40:47 -07005583 /* drop submission reference */
Jens Axboe76a46e02019-11-10 23:34:16 -07005584 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07005585}
5586
Jens Axboead8a48a2019-11-15 08:49:11 -07005587static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07005588{
5589 struct io_kiocb *nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005590
Pavel Begunkovdea3b492020-04-12 02:05:04 +03005591 if (!(req->flags & REQ_F_LINK_HEAD))
Jens Axboe2665abf2019-11-05 12:40:47 -07005592 return NULL;
Jens Axboed7718a92020-02-14 22:23:12 -07005593 /* for polled retry, if flag is set, we already went through here */
5594 if (req->flags & REQ_F_POLLED)
5595 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07005596
Pavel Begunkov44932332019-12-05 16:16:35 +03005597 nxt = list_first_entry_or_null(&req->link_list, struct io_kiocb,
5598 link_list);
Jens Axboed625c6e2019-12-17 19:53:05 -07005599 if (!nxt || nxt->opcode != IORING_OP_LINK_TIMEOUT)
Jens Axboe76a46e02019-11-10 23:34:16 -07005600 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07005601
Jens Axboe76a46e02019-11-10 23:34:16 -07005602 req->flags |= REQ_F_LINK_TIMEOUT;
Jens Axboe76a46e02019-11-10 23:34:16 -07005603 return nxt;
Jens Axboe2665abf2019-11-05 12:40:47 -07005604}
5605
Jens Axboe3529d8c2019-12-19 18:24:38 -07005606static void __io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005607{
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005608 struct io_kiocb *linked_timeout;
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005609 struct io_kiocb *nxt;
Jens Axboe193155c2020-02-22 23:22:19 -07005610 const struct cred *old_creds = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005611 int ret;
5612
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005613again:
5614 linked_timeout = io_prep_linked_timeout(req);
5615
Jens Axboe193155c2020-02-22 23:22:19 -07005616 if (req->work.creds && req->work.creds != current_cred()) {
5617 if (old_creds)
5618 revert_creds(old_creds);
5619 if (old_creds == req->work.creds)
5620 old_creds = NULL; /* restored original creds */
5621 else
5622 old_creds = override_creds(req->work.creds);
5623 }
5624
Pavel Begunkov014db002020-03-03 21:33:12 +03005625 ret = io_issue_sqe(req, sqe, true);
Jens Axboe491381ce2019-10-17 09:20:46 -06005626
5627 /*
5628 * We async punt it if the file wasn't marked NOWAIT, or if the file
5629 * doesn't support non-blocking read/write attempts
5630 */
5631 if (ret == -EAGAIN && (!(req->flags & REQ_F_NOWAIT) ||
5632 (req->flags & REQ_F_MUST_PUNT))) {
Jens Axboed7718a92020-02-14 22:23:12 -07005633 if (io_arm_poll_handler(req)) {
5634 if (linked_timeout)
5635 io_queue_linked_timeout(linked_timeout);
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005636 goto exit;
Jens Axboed7718a92020-02-14 22:23:12 -07005637 }
Pavel Begunkov86a761f2020-01-22 23:09:36 +03005638punt:
Jens Axboef86cd202020-01-29 13:46:44 -07005639 if (io_op_defs[req->opcode].file_table) {
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03005640 ret = io_grab_files(req);
5641 if (ret)
5642 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005643 }
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03005644
5645 /*
5646 * Queued up for async execution, worker will release
5647 * submit reference when the iocb is actually submitted.
5648 */
5649 io_queue_async_work(req);
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005650 goto exit;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005651 }
Jens Axboee65ef562019-03-12 10:16:44 -06005652
Jens Axboefcb323c2019-10-24 12:39:47 -06005653err:
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005654 nxt = NULL;
Jens Axboee65ef562019-03-12 10:16:44 -06005655 /* drop submission reference */
Jens Axboe2a44f462020-02-25 13:25:41 -07005656 io_put_req_find_next(req, &nxt);
Jens Axboee65ef562019-03-12 10:16:44 -06005657
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03005658 if (linked_timeout) {
Jens Axboe76a46e02019-11-10 23:34:16 -07005659 if (!ret)
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03005660 io_queue_linked_timeout(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07005661 else
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03005662 io_put_req(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07005663 }
5664
Jens Axboee65ef562019-03-12 10:16:44 -06005665 /* and drop final reference, if we failed */
Jens Axboe9e645e112019-05-10 16:07:28 -06005666 if (ret) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07005667 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005668 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06005669 io_put_req(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06005670 }
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005671 if (nxt) {
5672 req = nxt;
Pavel Begunkov86a761f2020-01-22 23:09:36 +03005673
5674 if (req->flags & REQ_F_FORCE_ASYNC)
5675 goto punt;
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005676 goto again;
5677 }
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005678exit:
Jens Axboe193155c2020-02-22 23:22:19 -07005679 if (old_creds)
5680 revert_creds(old_creds);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005681}
5682
Jens Axboe3529d8c2019-12-19 18:24:38 -07005683static void io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jackie Liu4fe2c962019-09-09 20:50:40 +08005684{
5685 int ret;
5686
Jens Axboe3529d8c2019-12-19 18:24:38 -07005687 ret = io_req_defer(req, sqe);
Jackie Liu4fe2c962019-09-09 20:50:40 +08005688 if (ret) {
5689 if (ret != -EIOCBQUEUED) {
Pavel Begunkov11185912020-01-22 23:09:35 +03005690fail_req:
Jens Axboe78e19bb2019-11-06 15:21:34 -07005691 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005692 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07005693 io_double_put_req(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08005694 }
Pavel Begunkov25508782019-12-30 21:24:47 +03005695 } else if (req->flags & REQ_F_FORCE_ASYNC) {
Pavel Begunkov11185912020-01-22 23:09:35 +03005696 ret = io_req_defer_prep(req, sqe);
5697 if (unlikely(ret < 0))
5698 goto fail_req;
Jens Axboece35a472019-12-17 08:04:44 -07005699 /*
5700 * Never try inline submit of IOSQE_ASYNC is set, go straight
5701 * to async execution.
5702 */
5703 req->work.flags |= IO_WQ_WORK_CONCURRENT;
5704 io_queue_async_work(req);
5705 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07005706 __io_queue_sqe(req, sqe);
Jens Axboece35a472019-12-17 08:04:44 -07005707 }
Jackie Liu4fe2c962019-09-09 20:50:40 +08005708}
5709
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005710static inline void io_queue_link_head(struct io_kiocb *req)
Jackie Liu4fe2c962019-09-09 20:50:40 +08005711{
Jens Axboe94ae5e72019-11-14 19:39:52 -07005712 if (unlikely(req->flags & REQ_F_FAIL_LINK)) {
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005713 io_cqring_add_event(req, -ECANCELED);
5714 io_double_put_req(req);
5715 } else
Jens Axboe3529d8c2019-12-19 18:24:38 -07005716 io_queue_sqe(req, NULL);
Jackie Liu4fe2c962019-09-09 20:50:40 +08005717}
5718
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03005719static int io_submit_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Xiaoguang Wang7d01bd72020-05-08 21:19:30 +08005720 struct io_kiocb **link)
Jens Axboe9e645e112019-05-10 16:07:28 -06005721{
Jackie Liua197f662019-11-08 08:09:12 -07005722 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005723 int ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06005724
Jens Axboe9e645e112019-05-10 16:07:28 -06005725 /*
5726 * If we already have a head request, queue this one for async
5727 * submittal once the head completes. If we don't have a head but
5728 * IOSQE_IO_LINK is set in the sqe, start a new head. This one will be
5729 * submitted sync once the chain is complete. If none of those
5730 * conditions are true (normal request), then just queue it.
5731 */
5732 if (*link) {
Pavel Begunkov9d763772019-12-17 02:22:07 +03005733 struct io_kiocb *head = *link;
Jens Axboe9e645e112019-05-10 16:07:28 -06005734
Pavel Begunkov8cdf2192020-01-25 00:40:24 +03005735 /*
5736 * Taking sequential execution of a link, draining both sides
5737 * of the link also fullfils IOSQE_IO_DRAIN semantics for all
5738 * requests in the link. So, it drains the head and the
5739 * next after the link request. The last one is done via
5740 * drain_next flag to persist the effect across calls.
5741 */
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005742 if (req->flags & REQ_F_IO_DRAIN) {
Pavel Begunkov711be032020-01-17 03:57:59 +03005743 head->flags |= REQ_F_IO_DRAIN;
5744 ctx->drain_next = 1;
5745 }
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03005746 if (io_alloc_async_ctx(req))
5747 return -EAGAIN;
Jens Axboe9e645e112019-05-10 16:07:28 -06005748
Jens Axboe3529d8c2019-12-19 18:24:38 -07005749 ret = io_req_defer_prep(req, sqe);
Jens Axboe2d283902019-12-04 11:08:05 -07005750 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005751 /* fail even hard links since we don't submit */
Pavel Begunkov9d763772019-12-17 02:22:07 +03005752 head->flags |= REQ_F_FAIL_LINK;
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03005753 return ret;
Jens Axboe2d283902019-12-04 11:08:05 -07005754 }
Pavel Begunkov9d763772019-12-17 02:22:07 +03005755 trace_io_uring_link(ctx, req, head);
5756 list_add_tail(&req->link_list, &head->link_list);
Jens Axboe9e645e112019-05-10 16:07:28 -06005757
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005758 /* last request of a link, enqueue the link */
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005759 if (!(req->flags & (REQ_F_LINK | REQ_F_HARDLINK))) {
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005760 io_queue_link_head(head);
5761 *link = NULL;
5762 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005763 } else {
Pavel Begunkov711be032020-01-17 03:57:59 +03005764 if (unlikely(ctx->drain_next)) {
5765 req->flags |= REQ_F_IO_DRAIN;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005766 ctx->drain_next = 0;
Pavel Begunkov711be032020-01-17 03:57:59 +03005767 }
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005768 if (req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) {
Pavel Begunkovdea3b492020-04-12 02:05:04 +03005769 req->flags |= REQ_F_LINK_HEAD;
Pavel Begunkov711be032020-01-17 03:57:59 +03005770 INIT_LIST_HEAD(&req->link_list);
Pavel Begunkovf1d96a82020-03-13 22:29:14 +03005771
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03005772 if (io_alloc_async_ctx(req))
5773 return -EAGAIN;
5774
Pavel Begunkov711be032020-01-17 03:57:59 +03005775 ret = io_req_defer_prep(req, sqe);
5776 if (ret)
5777 req->flags |= REQ_F_FAIL_LINK;
5778 *link = req;
5779 } else {
5780 io_queue_sqe(req, sqe);
5781 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005782 }
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03005783
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03005784 return 0;
Jens Axboe9e645e112019-05-10 16:07:28 -06005785}
5786
Jens Axboe9a56a232019-01-09 09:06:50 -07005787/*
5788 * Batched submission is done, ensure local IO is flushed out.
5789 */
5790static void io_submit_state_end(struct io_submit_state *state)
5791{
5792 blk_finish_plug(&state->plug);
Jens Axboe3d6770f2019-04-13 11:50:54 -06005793 io_file_put(state);
Jens Axboe2579f912019-01-09 09:10:43 -07005794 if (state->free_reqs)
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03005795 kmem_cache_free_bulk(req_cachep, state->free_reqs, state->reqs);
Jens Axboe9a56a232019-01-09 09:06:50 -07005796}
5797
5798/*
5799 * Start submission side cache.
5800 */
5801static void io_submit_state_start(struct io_submit_state *state,
Jackie Liu22efde52019-12-02 17:14:52 +08005802 unsigned int max_ios)
Jens Axboe9a56a232019-01-09 09:06:50 -07005803{
5804 blk_start_plug(&state->plug);
Jens Axboe2579f912019-01-09 09:10:43 -07005805 state->free_reqs = 0;
Jens Axboe9a56a232019-01-09 09:06:50 -07005806 state->file = NULL;
5807 state->ios_left = max_ios;
5808}
5809
Jens Axboe2b188cc2019-01-07 10:46:33 -07005810static void io_commit_sqring(struct io_ring_ctx *ctx)
5811{
Hristo Venev75b28af2019-08-26 17:23:46 +00005812 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005813
Pavel Begunkovcaf582c2019-12-30 21:24:46 +03005814 /*
5815 * Ensure any loads from the SQEs are done at this point,
5816 * since once we write the new head, the application could
5817 * write new data to them.
5818 */
5819 smp_store_release(&rings->sq.head, ctx->cached_sq_head);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005820}
5821
5822/*
Jens Axboe3529d8c2019-12-19 18:24:38 -07005823 * Fetch an sqe, if one is available. Note that sqe_ptr will point to memory
Jens Axboe2b188cc2019-01-07 10:46:33 -07005824 * that is mapped by userspace. This means that care needs to be taken to
5825 * ensure that reads are stable, as we cannot rely on userspace always
5826 * being a good citizen. If members of the sqe are validated and then later
5827 * used, it's important that those reads are done through READ_ONCE() to
5828 * prevent a re-load down the line.
5829 */
Pavel Begunkov709b3022020-04-08 08:58:43 +03005830static const struct io_uring_sqe *io_get_sqe(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005831{
Hristo Venev75b28af2019-08-26 17:23:46 +00005832 u32 *sq_array = ctx->sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005833 unsigned head;
5834
5835 /*
5836 * The cached sq head (or cq tail) serves two purposes:
5837 *
5838 * 1) allows us to batch the cost of updating the user visible
5839 * head updates.
5840 * 2) allows the kernel side to track the head on its own, even
5841 * though the application is the one updating it.
5842 */
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005843 head = READ_ONCE(sq_array[ctx->cached_sq_head & ctx->sq_mask]);
Pavel Begunkov709b3022020-04-08 08:58:43 +03005844 if (likely(head < ctx->sq_entries))
5845 return &ctx->sq_sqes[head];
Jens Axboe2b188cc2019-01-07 10:46:33 -07005846
5847 /* drop invalid entries */
Jens Axboe498ccd92019-10-25 10:04:25 -06005848 ctx->cached_sq_dropped++;
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005849 WRITE_ONCE(ctx->rings->sq_dropped, ctx->cached_sq_dropped);
Pavel Begunkov709b3022020-04-08 08:58:43 +03005850 return NULL;
5851}
5852
5853static inline void io_consume_sqe(struct io_ring_ctx *ctx)
5854{
5855 ctx->cached_sq_head++;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005856}
5857
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005858#define SQE_VALID_FLAGS (IOSQE_FIXED_FILE|IOSQE_IO_DRAIN|IOSQE_IO_LINK| \
5859 IOSQE_IO_HARDLINK | IOSQE_ASYNC | \
5860 IOSQE_BUFFER_SELECT)
5861
5862static int io_init_req(struct io_ring_ctx *ctx, struct io_kiocb *req,
5863 const struct io_uring_sqe *sqe,
Pavel Begunkov0cdaf762020-05-17 14:13:40 +03005864 struct io_submit_state *state)
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03005865{
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005866 unsigned int sqe_flags;
Jens Axboe63ff8222020-05-07 14:56:15 -06005867 int id;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005868
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03005869 /*
5870 * All io need record the previous position, if LINK vs DARIN,
5871 * it can be used to mark the position of the first IO in the
5872 * link list.
5873 */
Pavel Begunkov31af27c2020-04-15 00:39:50 +03005874 req->sequence = ctx->cached_sq_head - ctx->cached_sq_dropped;
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03005875 req->opcode = READ_ONCE(sqe->opcode);
5876 req->user_data = READ_ONCE(sqe->user_data);
5877 req->io = NULL;
5878 req->file = NULL;
5879 req->ctx = ctx;
5880 req->flags = 0;
5881 /* one is dropped after submission, the other at completion */
5882 refcount_set(&req->refs, 2);
5883 req->task = NULL;
5884 req->result = 0;
5885 INIT_IO_WORK(&req->work, io_wq_submit_work);
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005886
5887 if (unlikely(req->opcode >= IORING_OP_LAST))
5888 return -EINVAL;
5889
5890 if (io_op_defs[req->opcode].needs_mm && !current->mm) {
5891 if (unlikely(!mmget_not_zero(ctx->sqo_mm)))
5892 return -EFAULT;
5893 use_mm(ctx->sqo_mm);
5894 }
5895
5896 sqe_flags = READ_ONCE(sqe->flags);
5897 /* enforce forwards compatibility on users */
5898 if (unlikely(sqe_flags & ~SQE_VALID_FLAGS))
5899 return -EINVAL;
5900
5901 if ((sqe_flags & IOSQE_BUFFER_SELECT) &&
5902 !io_op_defs[req->opcode].buffer_select)
5903 return -EOPNOTSUPP;
5904
5905 id = READ_ONCE(sqe->personality);
5906 if (id) {
5907 req->work.creds = idr_find(&ctx->personality_idr, id);
5908 if (unlikely(!req->work.creds))
5909 return -EINVAL;
5910 get_cred(req->work.creds);
5911 }
5912
5913 /* same numerical values with corresponding REQ_F_*, safe to copy */
5914 req->flags |= sqe_flags & (IOSQE_IO_DRAIN | IOSQE_IO_HARDLINK |
5915 IOSQE_ASYNC | IOSQE_FIXED_FILE |
5916 IOSQE_BUFFER_SELECT | IOSQE_IO_LINK);
5917
Jens Axboe63ff8222020-05-07 14:56:15 -06005918 if (!io_op_defs[req->opcode].needs_file)
5919 return 0;
5920
5921 return io_req_set_file(state, req, READ_ONCE(sqe->fd));
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03005922}
5923
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005924static int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr,
Pavel Begunkov0cdaf762020-05-17 14:13:40 +03005925 struct file *ring_file, int ring_fd)
Jens Axboe6c271ce2019-01-10 11:22:30 -07005926{
5927 struct io_submit_state state, *statep = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06005928 struct io_kiocb *link = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06005929 int i, submitted = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005930
Jens Axboec4a2ed72019-11-21 21:01:26 -07005931 /* if we have a backlog and couldn't flush it all, return BUSY */
Jens Axboead3eb2c2019-12-18 17:12:20 -07005932 if (test_bit(0, &ctx->sq_check_overflow)) {
5933 if (!list_empty(&ctx->cq_overflow_list) &&
5934 !io_cqring_overflow_flush(ctx, false))
5935 return -EBUSY;
5936 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07005937
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005938 /* make sure SQ entry isn't read before tail */
5939 nr = min3(nr, ctx->sq_entries, io_sqring_entries(ctx));
Pavel Begunkov9ef4f122019-12-30 21:24:44 +03005940
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03005941 if (!percpu_ref_tryget_many(&ctx->refs, nr))
5942 return -EAGAIN;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005943
5944 if (nr > IO_PLUG_THRESHOLD) {
Jackie Liu22efde52019-12-02 17:14:52 +08005945 io_submit_state_start(&state, nr);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005946 statep = &state;
5947 }
5948
Pavel Begunkovb14cca02020-01-17 04:45:59 +03005949 ctx->ring_fd = ring_fd;
5950 ctx->ring_file = ring_file;
5951
Jens Axboe6c271ce2019-01-10 11:22:30 -07005952 for (i = 0; i < nr; i++) {
Jens Axboe3529d8c2019-12-19 18:24:38 -07005953 const struct io_uring_sqe *sqe;
Pavel Begunkov196be952019-11-07 01:41:06 +03005954 struct io_kiocb *req;
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005955 int err;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005956
Pavel Begunkovb1e50e52020-04-08 08:58:44 +03005957 sqe = io_get_sqe(ctx);
5958 if (unlikely(!sqe)) {
5959 io_consume_sqe(ctx);
5960 break;
5961 }
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03005962 req = io_alloc_req(ctx, statep);
Pavel Begunkov196be952019-11-07 01:41:06 +03005963 if (unlikely(!req)) {
5964 if (!submitted)
5965 submitted = -EAGAIN;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005966 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06005967 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005968
Pavel Begunkov0cdaf762020-05-17 14:13:40 +03005969 err = io_init_req(ctx, req, sqe, statep);
Pavel Begunkov709b3022020-04-08 08:58:43 +03005970 io_consume_sqe(ctx);
Jens Axboed3656342019-12-18 09:50:26 -07005971 /* will complete beyond this point, count as submitted */
5972 submitted++;
5973
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005974 if (unlikely(err)) {
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005975fail_req:
5976 io_cqring_add_event(req, err);
Jens Axboed3656342019-12-18 09:50:26 -07005977 io_double_put_req(req);
5978 break;
5979 }
5980
Jens Axboe354420f2020-01-08 18:55:15 -07005981 trace_io_uring_submit_sqe(ctx, req->opcode, req->user_data,
Pavel Begunkov0cdaf762020-05-17 14:13:40 +03005982 true, io_async_submit(ctx));
Xiaoguang Wang7d01bd72020-05-08 21:19:30 +08005983 err = io_submit_sqe(req, sqe, &link);
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03005984 if (err)
5985 goto fail_req;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005986 }
5987
Pavel Begunkov9466f432020-01-25 22:34:01 +03005988 if (unlikely(submitted != nr)) {
5989 int ref_used = (submitted == -EAGAIN) ? 0 : submitted;
5990
5991 percpu_ref_put_many(&ctx->refs, nr - ref_used);
5992 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005993 if (link)
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005994 io_queue_link_head(link);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005995 if (statep)
5996 io_submit_state_end(&state);
5997
Pavel Begunkovae9428c2019-11-06 00:22:14 +03005998 /* Commit SQ ring head once we've consumed and submitted all SQEs */
5999 io_commit_sqring(ctx);
6000
Jens Axboe6c271ce2019-01-10 11:22:30 -07006001 return submitted;
6002}
6003
Pavel Begunkovbf9c2f12020-04-12 02:05:02 +03006004static inline void io_sq_thread_drop_mm(struct io_ring_ctx *ctx)
6005{
6006 struct mm_struct *mm = current->mm;
6007
6008 if (mm) {
6009 unuse_mm(mm);
6010 mmput(mm);
6011 }
6012}
6013
Jens Axboe6c271ce2019-01-10 11:22:30 -07006014static int io_sq_thread(void *data)
6015{
Jens Axboe6c271ce2019-01-10 11:22:30 -07006016 struct io_ring_ctx *ctx = data;
Jens Axboe181e4482019-11-25 08:52:30 -07006017 const struct cred *old_cred;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006018 mm_segment_t old_fs;
6019 DEFINE_WAIT(wait);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006020 unsigned long timeout;
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006021 int ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006022
Jens Axboe0f158b42020-05-14 17:18:39 -06006023 complete(&ctx->sq_thread_comp);
Jackie Liua4c0b3d2019-07-08 13:41:12 +08006024
Jens Axboe6c271ce2019-01-10 11:22:30 -07006025 old_fs = get_fs();
6026 set_fs(USER_DS);
Jens Axboe181e4482019-11-25 08:52:30 -07006027 old_cred = override_creds(ctx->creds);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006028
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006029 timeout = jiffies + ctx->sq_thread_idle;
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02006030 while (!kthread_should_park()) {
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03006031 unsigned int to_submit;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006032
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006033 if (!list_empty(&ctx->poll_list)) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07006034 unsigned nr_events = 0;
6035
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006036 mutex_lock(&ctx->uring_lock);
6037 if (!list_empty(&ctx->poll_list))
6038 io_iopoll_getevents(ctx, &nr_events, 0);
6039 else
Jens Axboe6c271ce2019-01-10 11:22:30 -07006040 timeout = jiffies + ctx->sq_thread_idle;
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006041 mutex_unlock(&ctx->uring_lock);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006042 }
6043
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03006044 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07006045
6046 /*
6047 * If submit got -EBUSY, flag us as needing the application
6048 * to enter the kernel to reap and flush events.
6049 */
6050 if (!to_submit || ret == -EBUSY) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07006051 /*
Stefano Garzarella7143b5a2020-02-21 16:42:16 +01006052 * Drop cur_mm before scheduling, we can't hold it for
6053 * long periods (or over schedule()). Do this before
6054 * adding ourselves to the waitqueue, as the unuse/drop
6055 * may sleep.
6056 */
Pavel Begunkovbf9c2f12020-04-12 02:05:02 +03006057 io_sq_thread_drop_mm(ctx);
Stefano Garzarella7143b5a2020-02-21 16:42:16 +01006058
6059 /*
Jens Axboe6c271ce2019-01-10 11:22:30 -07006060 * We're polling. If we're within the defined idle
6061 * period, then let us spin without work before going
Jens Axboec1edbf52019-11-10 16:56:04 -07006062 * to sleep. The exception is if we got EBUSY doing
6063 * more IO, we should wait for the application to
6064 * reap events and wake us up.
Jens Axboe6c271ce2019-01-10 11:22:30 -07006065 */
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006066 if (!list_empty(&ctx->poll_list) ||
Jens Axboedf069d82020-02-04 16:48:34 -07006067 (!time_after(jiffies, timeout) && ret != -EBUSY &&
6068 !percpu_ref_is_dying(&ctx->refs))) {
Jens Axboeb41e9852020-02-17 09:52:41 -07006069 if (current->task_works)
6070 task_work_run();
Jens Axboe9831a902019-09-19 09:48:55 -06006071 cond_resched();
Jens Axboe6c271ce2019-01-10 11:22:30 -07006072 continue;
6073 }
6074
Jens Axboe6c271ce2019-01-10 11:22:30 -07006075 prepare_to_wait(&ctx->sqo_wait, &wait,
6076 TASK_INTERRUPTIBLE);
6077
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006078 /*
6079 * While doing polled IO, before going to sleep, we need
6080 * to check if there are new reqs added to poll_list, it
6081 * is because reqs may have been punted to io worker and
6082 * will be added to poll_list later, hence check the
6083 * poll_list again.
6084 */
6085 if ((ctx->flags & IORING_SETUP_IOPOLL) &&
6086 !list_empty_careful(&ctx->poll_list)) {
6087 finish_wait(&ctx->sqo_wait, &wait);
6088 continue;
6089 }
6090
Jens Axboe6c271ce2019-01-10 11:22:30 -07006091 /* Tell userspace we may need a wakeup call */
Hristo Venev75b28af2019-08-26 17:23:46 +00006092 ctx->rings->sq_flags |= IORING_SQ_NEED_WAKEUP;
Stefan Bühler0d7bae62019-04-19 11:57:45 +02006093 /* make sure to read SQ tail after writing flags */
6094 smp_mb();
Jens Axboe6c271ce2019-01-10 11:22:30 -07006095
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03006096 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07006097 if (!to_submit || ret == -EBUSY) {
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02006098 if (kthread_should_park()) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07006099 finish_wait(&ctx->sqo_wait, &wait);
6100 break;
6101 }
Jens Axboeb41e9852020-02-17 09:52:41 -07006102 if (current->task_works) {
6103 task_work_run();
Hillf Danton10bea962020-04-01 17:19:33 +08006104 finish_wait(&ctx->sqo_wait, &wait);
Jens Axboeb41e9852020-02-17 09:52:41 -07006105 continue;
6106 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07006107 if (signal_pending(current))
6108 flush_signals(current);
6109 schedule();
6110 finish_wait(&ctx->sqo_wait, &wait);
6111
Hristo Venev75b28af2019-08-26 17:23:46 +00006112 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006113 continue;
6114 }
6115 finish_wait(&ctx->sqo_wait, &wait);
6116
Hristo Venev75b28af2019-08-26 17:23:46 +00006117 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006118 }
6119
Jens Axboe8a4955f2019-12-09 14:52:35 -07006120 mutex_lock(&ctx->uring_lock);
Pavel Begunkov0cdaf762020-05-17 14:13:40 +03006121 ret = io_submit_sqes(ctx, to_submit, NULL, -1);
Jens Axboe8a4955f2019-12-09 14:52:35 -07006122 mutex_unlock(&ctx->uring_lock);
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006123 timeout = jiffies + ctx->sq_thread_idle;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006124 }
6125
Jens Axboeb41e9852020-02-17 09:52:41 -07006126 if (current->task_works)
6127 task_work_run();
6128
Jens Axboe6c271ce2019-01-10 11:22:30 -07006129 set_fs(old_fs);
Pavel Begunkovbf9c2f12020-04-12 02:05:02 +03006130 io_sq_thread_drop_mm(ctx);
Jens Axboe181e4482019-11-25 08:52:30 -07006131 revert_creds(old_cred);
Jens Axboe06058632019-04-13 09:26:03 -06006132
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02006133 kthread_parkme();
Jens Axboe06058632019-04-13 09:26:03 -06006134
Jens Axboe6c271ce2019-01-10 11:22:30 -07006135 return 0;
6136}
6137
Jens Axboebda52162019-09-24 13:47:15 -06006138struct io_wait_queue {
6139 struct wait_queue_entry wq;
6140 struct io_ring_ctx *ctx;
6141 unsigned to_wait;
6142 unsigned nr_timeouts;
6143};
6144
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006145static inline bool io_should_wake(struct io_wait_queue *iowq, bool noflush)
Jens Axboebda52162019-09-24 13:47:15 -06006146{
6147 struct io_ring_ctx *ctx = iowq->ctx;
6148
6149 /*
Brian Gianforcarod195a662019-12-13 03:09:50 -08006150 * Wake up if we have enough events, or if a timeout occurred since we
Jens Axboebda52162019-09-24 13:47:15 -06006151 * started waiting. For timeouts, we always want to return to userspace,
6152 * regardless of event count.
6153 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006154 return io_cqring_events(ctx, noflush) >= iowq->to_wait ||
Jens Axboebda52162019-09-24 13:47:15 -06006155 atomic_read(&ctx->cq_timeouts) != iowq->nr_timeouts;
6156}
6157
6158static int io_wake_function(struct wait_queue_entry *curr, unsigned int mode,
6159 int wake_flags, void *key)
6160{
6161 struct io_wait_queue *iowq = container_of(curr, struct io_wait_queue,
6162 wq);
6163
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006164 /* use noflush == true, as we can't safely rely on locking context */
6165 if (!io_should_wake(iowq, true))
Jens Axboebda52162019-09-24 13:47:15 -06006166 return -1;
6167
6168 return autoremove_wake_function(curr, mode, wake_flags, key);
6169}
6170
Jens Axboe2b188cc2019-01-07 10:46:33 -07006171/*
6172 * Wait until events become available, if we don't already have some. The
6173 * application must reap them itself, as they reside on the shared cq ring.
6174 */
6175static int io_cqring_wait(struct io_ring_ctx *ctx, int min_events,
6176 const sigset_t __user *sig, size_t sigsz)
6177{
Jens Axboebda52162019-09-24 13:47:15 -06006178 struct io_wait_queue iowq = {
6179 .wq = {
6180 .private = current,
6181 .func = io_wake_function,
6182 .entry = LIST_HEAD_INIT(iowq.wq.entry),
6183 },
6184 .ctx = ctx,
6185 .to_wait = min_events,
6186 };
Hristo Venev75b28af2019-08-26 17:23:46 +00006187 struct io_rings *rings = ctx->rings;
Jackie Liue9ffa5c2019-10-29 11:16:42 +08006188 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006189
Jens Axboeb41e9852020-02-17 09:52:41 -07006190 do {
6191 if (io_cqring_events(ctx, false) >= min_events)
6192 return 0;
6193 if (!current->task_works)
6194 break;
6195 task_work_run();
6196 } while (1);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006197
6198 if (sig) {
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006199#ifdef CONFIG_COMPAT
6200 if (in_compat_syscall())
6201 ret = set_compat_user_sigmask((const compat_sigset_t __user *)sig,
Oleg Nesterovb7724342019-07-16 16:29:53 -07006202 sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006203 else
6204#endif
Oleg Nesterovb7724342019-07-16 16:29:53 -07006205 ret = set_user_sigmask(sig, sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006206
Jens Axboe2b188cc2019-01-07 10:46:33 -07006207 if (ret)
6208 return ret;
6209 }
6210
Jens Axboebda52162019-09-24 13:47:15 -06006211 iowq.nr_timeouts = atomic_read(&ctx->cq_timeouts);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02006212 trace_io_uring_cqring_wait(ctx, min_events);
Jens Axboebda52162019-09-24 13:47:15 -06006213 do {
6214 prepare_to_wait_exclusive(&ctx->wait, &iowq.wq,
6215 TASK_INTERRUPTIBLE);
Jens Axboeb41e9852020-02-17 09:52:41 -07006216 if (current->task_works)
6217 task_work_run();
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006218 if (io_should_wake(&iowq, false))
Jens Axboebda52162019-09-24 13:47:15 -06006219 break;
6220 schedule();
6221 if (signal_pending(current)) {
Jackie Liue9ffa5c2019-10-29 11:16:42 +08006222 ret = -EINTR;
Jens Axboebda52162019-09-24 13:47:15 -06006223 break;
6224 }
6225 } while (1);
6226 finish_wait(&ctx->wait, &iowq.wq);
6227
Jackie Liue9ffa5c2019-10-29 11:16:42 +08006228 restore_saved_sigmask_unless(ret == -EINTR);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006229
Hristo Venev75b28af2019-08-26 17:23:46 +00006230 return READ_ONCE(rings->cq.head) == READ_ONCE(rings->cq.tail) ? ret : 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006231}
6232
Jens Axboe6b063142019-01-10 22:13:58 -07006233static void __io_sqe_files_unregister(struct io_ring_ctx *ctx)
6234{
6235#if defined(CONFIG_UNIX)
6236 if (ctx->ring_sock) {
6237 struct sock *sock = ctx->ring_sock->sk;
6238 struct sk_buff *skb;
6239
6240 while ((skb = skb_dequeue(&sock->sk_receive_queue)) != NULL)
6241 kfree_skb(skb);
6242 }
6243#else
6244 int i;
6245
Jens Axboe65e19f52019-10-26 07:20:21 -06006246 for (i = 0; i < ctx->nr_user_files; i++) {
6247 struct file *file;
6248
6249 file = io_file_from_index(ctx, i);
6250 if (file)
6251 fput(file);
6252 }
Jens Axboe6b063142019-01-10 22:13:58 -07006253#endif
6254}
6255
Jens Axboe05f3fb32019-12-09 11:22:50 -07006256static void io_file_ref_kill(struct percpu_ref *ref)
6257{
6258 struct fixed_file_data *data;
6259
6260 data = container_of(ref, struct fixed_file_data, refs);
6261 complete(&data->done);
6262}
6263
Jens Axboe6b063142019-01-10 22:13:58 -07006264static int io_sqe_files_unregister(struct io_ring_ctx *ctx)
6265{
Jens Axboe05f3fb32019-12-09 11:22:50 -07006266 struct fixed_file_data *data = ctx->file_data;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006267 struct fixed_file_ref_node *ref_node = NULL;
Jens Axboe65e19f52019-10-26 07:20:21 -06006268 unsigned nr_tables, i;
6269
Jens Axboe05f3fb32019-12-09 11:22:50 -07006270 if (!data)
Jens Axboe6b063142019-01-10 22:13:58 -07006271 return -ENXIO;
6272
Jens Axboe6a4d07c2020-05-15 14:30:38 -06006273 spin_lock(&data->lock);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006274 if (!list_empty(&data->ref_list))
6275 ref_node = list_first_entry(&data->ref_list,
6276 struct fixed_file_ref_node, node);
Jens Axboe6a4d07c2020-05-15 14:30:38 -06006277 spin_unlock(&data->lock);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006278 if (ref_node)
6279 percpu_ref_kill(&ref_node->refs);
6280
6281 percpu_ref_kill(&data->refs);
6282
6283 /* wait for all refs nodes to complete */
Jens Axboe4a38aed22020-05-14 17:21:15 -06006284 flush_delayed_work(&ctx->file_put_work);
Jens Axboe2faf8522020-02-04 19:54:55 -07006285 wait_for_completion(&data->done);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006286
Jens Axboe6b063142019-01-10 22:13:58 -07006287 __io_sqe_files_unregister(ctx);
Jens Axboe65e19f52019-10-26 07:20:21 -06006288 nr_tables = DIV_ROUND_UP(ctx->nr_user_files, IORING_MAX_FILES_TABLE);
6289 for (i = 0; i < nr_tables; i++)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006290 kfree(data->table[i].files);
6291 kfree(data->table);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006292 percpu_ref_exit(&data->refs);
6293 kfree(data);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006294 ctx->file_data = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07006295 ctx->nr_user_files = 0;
6296 return 0;
6297}
6298
Jens Axboe6c271ce2019-01-10 11:22:30 -07006299static void io_sq_thread_stop(struct io_ring_ctx *ctx)
6300{
6301 if (ctx->sqo_thread) {
Jens Axboe0f158b42020-05-14 17:18:39 -06006302 wait_for_completion(&ctx->sq_thread_comp);
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02006303 /*
6304 * The park is a bit of a work-around, without it we get
6305 * warning spews on shutdown with SQPOLL set and affinity
6306 * set to a single CPU.
6307 */
Jens Axboe06058632019-04-13 09:26:03 -06006308 kthread_park(ctx->sqo_thread);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006309 kthread_stop(ctx->sqo_thread);
6310 ctx->sqo_thread = NULL;
6311 }
6312}
6313
Jens Axboe6b063142019-01-10 22:13:58 -07006314static void io_finish_async(struct io_ring_ctx *ctx)
6315{
Jens Axboe6c271ce2019-01-10 11:22:30 -07006316 io_sq_thread_stop(ctx);
6317
Jens Axboe561fb042019-10-24 07:25:42 -06006318 if (ctx->io_wq) {
6319 io_wq_destroy(ctx->io_wq);
6320 ctx->io_wq = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07006321 }
6322}
6323
6324#if defined(CONFIG_UNIX)
Jens Axboe6b063142019-01-10 22:13:58 -07006325/*
6326 * Ensure the UNIX gc is aware of our file set, so we are certain that
6327 * the io_uring can be safely unregistered on process exit, even if we have
6328 * loops in the file referencing.
6329 */
6330static int __io_sqe_files_scm(struct io_ring_ctx *ctx, int nr, int offset)
6331{
6332 struct sock *sk = ctx->ring_sock->sk;
6333 struct scm_fp_list *fpl;
6334 struct sk_buff *skb;
Jens Axboe08a45172019-10-03 08:11:03 -06006335 int i, nr_files;
Jens Axboe6b063142019-01-10 22:13:58 -07006336
Jens Axboe6b063142019-01-10 22:13:58 -07006337 fpl = kzalloc(sizeof(*fpl), GFP_KERNEL);
6338 if (!fpl)
6339 return -ENOMEM;
6340
6341 skb = alloc_skb(0, GFP_KERNEL);
6342 if (!skb) {
6343 kfree(fpl);
6344 return -ENOMEM;
6345 }
6346
6347 skb->sk = sk;
Jens Axboe6b063142019-01-10 22:13:58 -07006348
Jens Axboe08a45172019-10-03 08:11:03 -06006349 nr_files = 0;
Jens Axboe6b063142019-01-10 22:13:58 -07006350 fpl->user = get_uid(ctx->user);
6351 for (i = 0; i < nr; i++) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006352 struct file *file = io_file_from_index(ctx, i + offset);
6353
6354 if (!file)
Jens Axboe08a45172019-10-03 08:11:03 -06006355 continue;
Jens Axboe65e19f52019-10-26 07:20:21 -06006356 fpl->fp[nr_files] = get_file(file);
Jens Axboe08a45172019-10-03 08:11:03 -06006357 unix_inflight(fpl->user, fpl->fp[nr_files]);
6358 nr_files++;
Jens Axboe6b063142019-01-10 22:13:58 -07006359 }
6360
Jens Axboe08a45172019-10-03 08:11:03 -06006361 if (nr_files) {
6362 fpl->max = SCM_MAX_FD;
6363 fpl->count = nr_files;
6364 UNIXCB(skb).fp = fpl;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006365 skb->destructor = unix_destruct_scm;
Jens Axboe08a45172019-10-03 08:11:03 -06006366 refcount_add(skb->truesize, &sk->sk_wmem_alloc);
6367 skb_queue_head(&sk->sk_receive_queue, skb);
Jens Axboe6b063142019-01-10 22:13:58 -07006368
Jens Axboe08a45172019-10-03 08:11:03 -06006369 for (i = 0; i < nr_files; i++)
6370 fput(fpl->fp[i]);
6371 } else {
6372 kfree_skb(skb);
6373 kfree(fpl);
6374 }
Jens Axboe6b063142019-01-10 22:13:58 -07006375
6376 return 0;
6377}
6378
6379/*
6380 * If UNIX sockets are enabled, fd passing can cause a reference cycle which
6381 * causes regular reference counting to break down. We rely on the UNIX
6382 * garbage collection to take care of this problem for us.
6383 */
6384static int io_sqe_files_scm(struct io_ring_ctx *ctx)
6385{
6386 unsigned left, total;
6387 int ret = 0;
6388
6389 total = 0;
6390 left = ctx->nr_user_files;
6391 while (left) {
6392 unsigned this_files = min_t(unsigned, left, SCM_MAX_FD);
Jens Axboe6b063142019-01-10 22:13:58 -07006393
6394 ret = __io_sqe_files_scm(ctx, this_files, total);
6395 if (ret)
6396 break;
6397 left -= this_files;
6398 total += this_files;
6399 }
6400
6401 if (!ret)
6402 return 0;
6403
6404 while (total < ctx->nr_user_files) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006405 struct file *file = io_file_from_index(ctx, total);
6406
6407 if (file)
6408 fput(file);
Jens Axboe6b063142019-01-10 22:13:58 -07006409 total++;
6410 }
6411
6412 return ret;
6413}
6414#else
6415static int io_sqe_files_scm(struct io_ring_ctx *ctx)
6416{
6417 return 0;
6418}
6419#endif
6420
Jens Axboe65e19f52019-10-26 07:20:21 -06006421static int io_sqe_alloc_file_tables(struct io_ring_ctx *ctx, unsigned nr_tables,
6422 unsigned nr_files)
6423{
6424 int i;
6425
6426 for (i = 0; i < nr_tables; i++) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006427 struct fixed_file_table *table = &ctx->file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06006428 unsigned this_files;
6429
6430 this_files = min(nr_files, IORING_MAX_FILES_TABLE);
6431 table->files = kcalloc(this_files, sizeof(struct file *),
6432 GFP_KERNEL);
6433 if (!table->files)
6434 break;
6435 nr_files -= this_files;
6436 }
6437
6438 if (i == nr_tables)
6439 return 0;
6440
6441 for (i = 0; i < nr_tables; i++) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006442 struct fixed_file_table *table = &ctx->file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06006443 kfree(table->files);
6444 }
6445 return 1;
6446}
6447
Jens Axboe05f3fb32019-12-09 11:22:50 -07006448static void io_ring_file_put(struct io_ring_ctx *ctx, struct file *file)
Jens Axboec3a31e62019-10-03 13:59:56 -06006449{
6450#if defined(CONFIG_UNIX)
Jens Axboec3a31e62019-10-03 13:59:56 -06006451 struct sock *sock = ctx->ring_sock->sk;
6452 struct sk_buff_head list, *head = &sock->sk_receive_queue;
6453 struct sk_buff *skb;
6454 int i;
6455
6456 __skb_queue_head_init(&list);
6457
6458 /*
6459 * Find the skb that holds this file in its SCM_RIGHTS. When found,
6460 * remove this entry and rearrange the file array.
6461 */
6462 skb = skb_dequeue(head);
6463 while (skb) {
6464 struct scm_fp_list *fp;
6465
6466 fp = UNIXCB(skb).fp;
6467 for (i = 0; i < fp->count; i++) {
6468 int left;
6469
6470 if (fp->fp[i] != file)
6471 continue;
6472
6473 unix_notinflight(fp->user, fp->fp[i]);
6474 left = fp->count - 1 - i;
6475 if (left) {
6476 memmove(&fp->fp[i], &fp->fp[i + 1],
6477 left * sizeof(struct file *));
6478 }
6479 fp->count--;
6480 if (!fp->count) {
6481 kfree_skb(skb);
6482 skb = NULL;
6483 } else {
6484 __skb_queue_tail(&list, skb);
6485 }
6486 fput(file);
6487 file = NULL;
6488 break;
6489 }
6490
6491 if (!file)
6492 break;
6493
6494 __skb_queue_tail(&list, skb);
6495
6496 skb = skb_dequeue(head);
6497 }
6498
6499 if (skb_peek(&list)) {
6500 spin_lock_irq(&head->lock);
6501 while ((skb = __skb_dequeue(&list)) != NULL)
6502 __skb_queue_tail(head, skb);
6503 spin_unlock_irq(&head->lock);
6504 }
6505#else
Jens Axboe05f3fb32019-12-09 11:22:50 -07006506 fput(file);
Jens Axboec3a31e62019-10-03 13:59:56 -06006507#endif
6508}
6509
Jens Axboe05f3fb32019-12-09 11:22:50 -07006510struct io_file_put {
Xiaoguang Wang05589552020-03-31 14:05:18 +08006511 struct list_head list;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006512 struct file *file;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006513};
6514
Jens Axboe4a38aed22020-05-14 17:21:15 -06006515static void __io_file_put_work(struct fixed_file_ref_node *ref_node)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006516{
Jens Axboe4a38aed22020-05-14 17:21:15 -06006517 struct fixed_file_data *file_data = ref_node->file_data;
6518 struct io_ring_ctx *ctx = file_data->ctx;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006519 struct io_file_put *pfile, *tmp;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006520
Xiaoguang Wang05589552020-03-31 14:05:18 +08006521 list_for_each_entry_safe(pfile, tmp, &ref_node->file_list, list) {
Jens Axboe6a4d07c2020-05-15 14:30:38 -06006522 list_del(&pfile->list);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006523 io_ring_file_put(ctx, pfile->file);
6524 kfree(pfile);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006525 }
6526
Jens Axboe6a4d07c2020-05-15 14:30:38 -06006527 spin_lock(&file_data->lock);
6528 list_del(&ref_node->node);
6529 spin_unlock(&file_data->lock);
Jens Axboe2faf8522020-02-04 19:54:55 -07006530
Xiaoguang Wang05589552020-03-31 14:05:18 +08006531 percpu_ref_exit(&ref_node->refs);
6532 kfree(ref_node);
6533 percpu_ref_put(&file_data->refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006534}
6535
Jens Axboe4a38aed22020-05-14 17:21:15 -06006536static void io_file_put_work(struct work_struct *work)
6537{
6538 struct io_ring_ctx *ctx;
6539 struct llist_node *node;
6540
6541 ctx = container_of(work, struct io_ring_ctx, file_put_work.work);
6542 node = llist_del_all(&ctx->file_put_llist);
6543
6544 while (node) {
6545 struct fixed_file_ref_node *ref_node;
6546 struct llist_node *next = node->next;
6547
6548 ref_node = llist_entry(node, struct fixed_file_ref_node, llist);
6549 __io_file_put_work(ref_node);
6550 node = next;
6551 }
6552}
6553
Jens Axboe05f3fb32019-12-09 11:22:50 -07006554static void io_file_data_ref_zero(struct percpu_ref *ref)
6555{
Xiaoguang Wang05589552020-03-31 14:05:18 +08006556 struct fixed_file_ref_node *ref_node;
Jens Axboe4a38aed22020-05-14 17:21:15 -06006557 struct io_ring_ctx *ctx;
6558 bool first_add;
6559 int delay = HZ;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006560
Xiaoguang Wang05589552020-03-31 14:05:18 +08006561 ref_node = container_of(ref, struct fixed_file_ref_node, refs);
Jens Axboe4a38aed22020-05-14 17:21:15 -06006562 ctx = ref_node->file_data->ctx;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006563
Jens Axboe4a38aed22020-05-14 17:21:15 -06006564 if (percpu_ref_is_dying(&ctx->file_data->refs))
6565 delay = 0;
6566
6567 first_add = llist_add(&ref_node->llist, &ctx->file_put_llist);
6568 if (!delay)
6569 mod_delayed_work(system_wq, &ctx->file_put_work, 0);
6570 else if (first_add)
6571 queue_delayed_work(system_wq, &ctx->file_put_work, delay);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006572}
6573
6574static struct fixed_file_ref_node *alloc_fixed_file_ref_node(
6575 struct io_ring_ctx *ctx)
6576{
6577 struct fixed_file_ref_node *ref_node;
6578
6579 ref_node = kzalloc(sizeof(*ref_node), GFP_KERNEL);
6580 if (!ref_node)
6581 return ERR_PTR(-ENOMEM);
6582
6583 if (percpu_ref_init(&ref_node->refs, io_file_data_ref_zero,
6584 0, GFP_KERNEL)) {
6585 kfree(ref_node);
6586 return ERR_PTR(-ENOMEM);
6587 }
6588 INIT_LIST_HEAD(&ref_node->node);
6589 INIT_LIST_HEAD(&ref_node->file_list);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006590 ref_node->file_data = ctx->file_data;
6591 return ref_node;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006592}
6593
6594static void destroy_fixed_file_ref_node(struct fixed_file_ref_node *ref_node)
6595{
6596 percpu_ref_exit(&ref_node->refs);
6597 kfree(ref_node);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006598}
6599
6600static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
6601 unsigned nr_args)
6602{
6603 __s32 __user *fds = (__s32 __user *) arg;
6604 unsigned nr_tables;
6605 struct file *file;
6606 int fd, ret = 0;
6607 unsigned i;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006608 struct fixed_file_ref_node *ref_node;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006609
6610 if (ctx->file_data)
6611 return -EBUSY;
6612 if (!nr_args)
6613 return -EINVAL;
6614 if (nr_args > IORING_MAX_FIXED_FILES)
6615 return -EMFILE;
6616
6617 ctx->file_data = kzalloc(sizeof(*ctx->file_data), GFP_KERNEL);
6618 if (!ctx->file_data)
6619 return -ENOMEM;
6620 ctx->file_data->ctx = ctx;
6621 init_completion(&ctx->file_data->done);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006622 INIT_LIST_HEAD(&ctx->file_data->ref_list);
Xiaoguang Wangf7fe9342020-04-07 20:02:31 +08006623 spin_lock_init(&ctx->file_data->lock);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006624
6625 nr_tables = DIV_ROUND_UP(nr_args, IORING_MAX_FILES_TABLE);
6626 ctx->file_data->table = kcalloc(nr_tables,
6627 sizeof(struct fixed_file_table),
6628 GFP_KERNEL);
6629 if (!ctx->file_data->table) {
6630 kfree(ctx->file_data);
6631 ctx->file_data = NULL;
6632 return -ENOMEM;
6633 }
6634
Xiaoguang Wang05589552020-03-31 14:05:18 +08006635 if (percpu_ref_init(&ctx->file_data->refs, io_file_ref_kill,
Jens Axboe05f3fb32019-12-09 11:22:50 -07006636 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL)) {
6637 kfree(ctx->file_data->table);
6638 kfree(ctx->file_data);
6639 ctx->file_data = NULL;
6640 return -ENOMEM;
6641 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07006642
6643 if (io_sqe_alloc_file_tables(ctx, nr_tables, nr_args)) {
6644 percpu_ref_exit(&ctx->file_data->refs);
6645 kfree(ctx->file_data->table);
6646 kfree(ctx->file_data);
6647 ctx->file_data = NULL;
6648 return -ENOMEM;
6649 }
6650
6651 for (i = 0; i < nr_args; i++, ctx->nr_user_files++) {
6652 struct fixed_file_table *table;
6653 unsigned index;
6654
6655 ret = -EFAULT;
6656 if (copy_from_user(&fd, &fds[i], sizeof(fd)))
6657 break;
6658 /* allow sparse sets */
6659 if (fd == -1) {
6660 ret = 0;
6661 continue;
6662 }
6663
6664 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
6665 index = i & IORING_FILE_TABLE_MASK;
6666 file = fget(fd);
6667
6668 ret = -EBADF;
6669 if (!file)
6670 break;
6671
6672 /*
6673 * Don't allow io_uring instances to be registered. If UNIX
6674 * isn't enabled, then this causes a reference cycle and this
6675 * instance can never get freed. If UNIX is enabled we'll
6676 * handle it just fine, but there's still no point in allowing
6677 * a ring fd as it doesn't support regular read/write anyway.
6678 */
6679 if (file->f_op == &io_uring_fops) {
6680 fput(file);
6681 break;
6682 }
6683 ret = 0;
6684 table->files[index] = file;
6685 }
6686
6687 if (ret) {
6688 for (i = 0; i < ctx->nr_user_files; i++) {
6689 file = io_file_from_index(ctx, i);
6690 if (file)
6691 fput(file);
6692 }
6693 for (i = 0; i < nr_tables; i++)
6694 kfree(ctx->file_data->table[i].files);
6695
6696 kfree(ctx->file_data->table);
6697 kfree(ctx->file_data);
6698 ctx->file_data = NULL;
6699 ctx->nr_user_files = 0;
6700 return ret;
6701 }
6702
6703 ret = io_sqe_files_scm(ctx);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006704 if (ret) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006705 io_sqe_files_unregister(ctx);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006706 return ret;
6707 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07006708
Xiaoguang Wang05589552020-03-31 14:05:18 +08006709 ref_node = alloc_fixed_file_ref_node(ctx);
6710 if (IS_ERR(ref_node)) {
6711 io_sqe_files_unregister(ctx);
6712 return PTR_ERR(ref_node);
6713 }
6714
6715 ctx->file_data->cur_refs = &ref_node->refs;
Jens Axboe6a4d07c2020-05-15 14:30:38 -06006716 spin_lock(&ctx->file_data->lock);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006717 list_add(&ref_node->node, &ctx->file_data->ref_list);
Jens Axboe6a4d07c2020-05-15 14:30:38 -06006718 spin_unlock(&ctx->file_data->lock);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006719 percpu_ref_get(&ctx->file_data->refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006720 return ret;
6721}
6722
Jens Axboec3a31e62019-10-03 13:59:56 -06006723static int io_sqe_file_register(struct io_ring_ctx *ctx, struct file *file,
6724 int index)
6725{
6726#if defined(CONFIG_UNIX)
6727 struct sock *sock = ctx->ring_sock->sk;
6728 struct sk_buff_head *head = &sock->sk_receive_queue;
6729 struct sk_buff *skb;
6730
6731 /*
6732 * See if we can merge this file into an existing skb SCM_RIGHTS
6733 * file set. If there's no room, fall back to allocating a new skb
6734 * and filling it in.
6735 */
6736 spin_lock_irq(&head->lock);
6737 skb = skb_peek(head);
6738 if (skb) {
6739 struct scm_fp_list *fpl = UNIXCB(skb).fp;
6740
6741 if (fpl->count < SCM_MAX_FD) {
6742 __skb_unlink(skb, head);
6743 spin_unlock_irq(&head->lock);
6744 fpl->fp[fpl->count] = get_file(file);
6745 unix_inflight(fpl->user, fpl->fp[fpl->count]);
6746 fpl->count++;
6747 spin_lock_irq(&head->lock);
6748 __skb_queue_head(head, skb);
6749 } else {
6750 skb = NULL;
6751 }
6752 }
6753 spin_unlock_irq(&head->lock);
6754
6755 if (skb) {
6756 fput(file);
6757 return 0;
6758 }
6759
6760 return __io_sqe_files_scm(ctx, 1, index);
6761#else
6762 return 0;
6763#endif
6764}
6765
Hillf Dantona5318d32020-03-23 17:47:15 +08006766static int io_queue_file_removal(struct fixed_file_data *data,
Xiaoguang Wang05589552020-03-31 14:05:18 +08006767 struct file *file)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006768{
Hillf Dantona5318d32020-03-23 17:47:15 +08006769 struct io_file_put *pfile;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006770 struct percpu_ref *refs = data->cur_refs;
6771 struct fixed_file_ref_node *ref_node;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006772
Jens Axboe05f3fb32019-12-09 11:22:50 -07006773 pfile = kzalloc(sizeof(*pfile), GFP_KERNEL);
Hillf Dantona5318d32020-03-23 17:47:15 +08006774 if (!pfile)
6775 return -ENOMEM;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006776
Xiaoguang Wang05589552020-03-31 14:05:18 +08006777 ref_node = container_of(refs, struct fixed_file_ref_node, refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006778 pfile->file = file;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006779 list_add(&pfile->list, &ref_node->file_list);
6780
Hillf Dantona5318d32020-03-23 17:47:15 +08006781 return 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006782}
6783
6784static int __io_sqe_files_update(struct io_ring_ctx *ctx,
6785 struct io_uring_files_update *up,
6786 unsigned nr_args)
6787{
6788 struct fixed_file_data *data = ctx->file_data;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006789 struct fixed_file_ref_node *ref_node;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006790 struct file *file;
Jens Axboec3a31e62019-10-03 13:59:56 -06006791 __s32 __user *fds;
6792 int fd, i, err;
6793 __u32 done;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006794 bool needs_switch = false;
Jens Axboec3a31e62019-10-03 13:59:56 -06006795
Jens Axboe05f3fb32019-12-09 11:22:50 -07006796 if (check_add_overflow(up->offset, nr_args, &done))
Jens Axboec3a31e62019-10-03 13:59:56 -06006797 return -EOVERFLOW;
6798 if (done > ctx->nr_user_files)
6799 return -EINVAL;
6800
Xiaoguang Wang05589552020-03-31 14:05:18 +08006801 ref_node = alloc_fixed_file_ref_node(ctx);
6802 if (IS_ERR(ref_node))
6803 return PTR_ERR(ref_node);
6804
Jens Axboec3a31e62019-10-03 13:59:56 -06006805 done = 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006806 fds = u64_to_user_ptr(up->fds);
Jens Axboec3a31e62019-10-03 13:59:56 -06006807 while (nr_args) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006808 struct fixed_file_table *table;
6809 unsigned index;
6810
Jens Axboec3a31e62019-10-03 13:59:56 -06006811 err = 0;
6812 if (copy_from_user(&fd, &fds[done], sizeof(fd))) {
6813 err = -EFAULT;
6814 break;
6815 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07006816 i = array_index_nospec(up->offset, ctx->nr_user_files);
6817 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
Jens Axboe65e19f52019-10-26 07:20:21 -06006818 index = i & IORING_FILE_TABLE_MASK;
6819 if (table->files[index]) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006820 file = io_file_from_index(ctx, index);
Hillf Dantona5318d32020-03-23 17:47:15 +08006821 err = io_queue_file_removal(data, file);
6822 if (err)
6823 break;
Jens Axboe65e19f52019-10-26 07:20:21 -06006824 table->files[index] = NULL;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006825 needs_switch = true;
Jens Axboec3a31e62019-10-03 13:59:56 -06006826 }
6827 if (fd != -1) {
Jens Axboec3a31e62019-10-03 13:59:56 -06006828 file = fget(fd);
6829 if (!file) {
6830 err = -EBADF;
6831 break;
6832 }
6833 /*
6834 * Don't allow io_uring instances to be registered. If
6835 * UNIX isn't enabled, then this causes a reference
6836 * cycle and this instance can never get freed. If UNIX
6837 * is enabled we'll handle it just fine, but there's
6838 * still no point in allowing a ring fd as it doesn't
6839 * support regular read/write anyway.
6840 */
6841 if (file->f_op == &io_uring_fops) {
6842 fput(file);
6843 err = -EBADF;
6844 break;
6845 }
Jens Axboe65e19f52019-10-26 07:20:21 -06006846 table->files[index] = file;
Jens Axboec3a31e62019-10-03 13:59:56 -06006847 err = io_sqe_file_register(ctx, file, i);
6848 if (err)
6849 break;
6850 }
6851 nr_args--;
6852 done++;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006853 up->offset++;
6854 }
6855
Xiaoguang Wang05589552020-03-31 14:05:18 +08006856 if (needs_switch) {
6857 percpu_ref_kill(data->cur_refs);
Jens Axboe6a4d07c2020-05-15 14:30:38 -06006858 spin_lock(&data->lock);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006859 list_add(&ref_node->node, &data->ref_list);
6860 data->cur_refs = &ref_node->refs;
Jens Axboe6a4d07c2020-05-15 14:30:38 -06006861 spin_unlock(&data->lock);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006862 percpu_ref_get(&ctx->file_data->refs);
6863 } else
6864 destroy_fixed_file_ref_node(ref_node);
Jens Axboec3a31e62019-10-03 13:59:56 -06006865
6866 return done ? done : err;
6867}
Xiaoguang Wang05589552020-03-31 14:05:18 +08006868
Jens Axboe05f3fb32019-12-09 11:22:50 -07006869static int io_sqe_files_update(struct io_ring_ctx *ctx, void __user *arg,
6870 unsigned nr_args)
6871{
6872 struct io_uring_files_update up;
6873
6874 if (!ctx->file_data)
6875 return -ENXIO;
6876 if (!nr_args)
6877 return -EINVAL;
6878 if (copy_from_user(&up, arg, sizeof(up)))
6879 return -EFAULT;
6880 if (up.resv)
6881 return -EINVAL;
6882
6883 return __io_sqe_files_update(ctx, &up, nr_args);
6884}
Jens Axboec3a31e62019-10-03 13:59:56 -06006885
Pavel Begunkove9fd9392020-03-04 16:14:12 +03006886static void io_free_work(struct io_wq_work *work)
Jens Axboe7d723062019-11-12 22:31:31 -07006887{
6888 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
6889
Pavel Begunkove9fd9392020-03-04 16:14:12 +03006890 /* Consider that io_steal_work() relies on this ref */
Jens Axboe7d723062019-11-12 22:31:31 -07006891 io_put_req(req);
6892}
6893
Pavel Begunkov24369c22020-01-28 03:15:48 +03006894static int io_init_wq_offload(struct io_ring_ctx *ctx,
6895 struct io_uring_params *p)
6896{
6897 struct io_wq_data data;
6898 struct fd f;
6899 struct io_ring_ctx *ctx_attach;
6900 unsigned int concurrency;
6901 int ret = 0;
6902
6903 data.user = ctx->user;
Pavel Begunkove9fd9392020-03-04 16:14:12 +03006904 data.free_work = io_free_work;
Pavel Begunkov24369c22020-01-28 03:15:48 +03006905
6906 if (!(p->flags & IORING_SETUP_ATTACH_WQ)) {
6907 /* Do QD, or 4 * CPUS, whatever is smallest */
6908 concurrency = min(ctx->sq_entries, 4 * num_online_cpus());
6909
6910 ctx->io_wq = io_wq_create(concurrency, &data);
6911 if (IS_ERR(ctx->io_wq)) {
6912 ret = PTR_ERR(ctx->io_wq);
6913 ctx->io_wq = NULL;
6914 }
6915 return ret;
6916 }
6917
6918 f = fdget(p->wq_fd);
6919 if (!f.file)
6920 return -EBADF;
6921
6922 if (f.file->f_op != &io_uring_fops) {
6923 ret = -EINVAL;
6924 goto out_fput;
6925 }
6926
6927 ctx_attach = f.file->private_data;
6928 /* @io_wq is protected by holding the fd */
6929 if (!io_wq_get(ctx_attach->io_wq, &data)) {
6930 ret = -EINVAL;
6931 goto out_fput;
6932 }
6933
6934 ctx->io_wq = ctx_attach->io_wq;
6935out_fput:
6936 fdput(f);
6937 return ret;
6938}
6939
Jens Axboe6c271ce2019-01-10 11:22:30 -07006940static int io_sq_offload_start(struct io_ring_ctx *ctx,
6941 struct io_uring_params *p)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006942{
6943 int ret;
6944
Jens Axboe6c271ce2019-01-10 11:22:30 -07006945 init_waitqueue_head(&ctx->sqo_wait);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006946 mmgrab(current->mm);
6947 ctx->sqo_mm = current->mm;
6948
Jens Axboe6c271ce2019-01-10 11:22:30 -07006949 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboe3ec482d2019-04-08 10:51:01 -06006950 ret = -EPERM;
6951 if (!capable(CAP_SYS_ADMIN))
6952 goto err;
6953
Jens Axboe917257d2019-04-13 09:28:55 -06006954 ctx->sq_thread_idle = msecs_to_jiffies(p->sq_thread_idle);
6955 if (!ctx->sq_thread_idle)
6956 ctx->sq_thread_idle = HZ;
6957
Jens Axboe6c271ce2019-01-10 11:22:30 -07006958 if (p->flags & IORING_SETUP_SQ_AFF) {
Jens Axboe44a9bd12019-05-14 20:00:30 -06006959 int cpu = p->sq_thread_cpu;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006960
Jens Axboe917257d2019-04-13 09:28:55 -06006961 ret = -EINVAL;
Jens Axboe44a9bd12019-05-14 20:00:30 -06006962 if (cpu >= nr_cpu_ids)
6963 goto err;
Shenghui Wang7889f442019-05-07 16:03:19 +08006964 if (!cpu_online(cpu))
Jens Axboe917257d2019-04-13 09:28:55 -06006965 goto err;
6966
Jens Axboe6c271ce2019-01-10 11:22:30 -07006967 ctx->sqo_thread = kthread_create_on_cpu(io_sq_thread,
6968 ctx, cpu,
6969 "io_uring-sq");
6970 } else {
6971 ctx->sqo_thread = kthread_create(io_sq_thread, ctx,
6972 "io_uring-sq");
6973 }
6974 if (IS_ERR(ctx->sqo_thread)) {
6975 ret = PTR_ERR(ctx->sqo_thread);
6976 ctx->sqo_thread = NULL;
6977 goto err;
6978 }
6979 wake_up_process(ctx->sqo_thread);
6980 } else if (p->flags & IORING_SETUP_SQ_AFF) {
6981 /* Can't have SQ_AFF without SQPOLL */
6982 ret = -EINVAL;
6983 goto err;
6984 }
6985
Pavel Begunkov24369c22020-01-28 03:15:48 +03006986 ret = io_init_wq_offload(ctx, p);
6987 if (ret)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006988 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006989
6990 return 0;
6991err:
Jens Axboe54a91f32019-09-10 09:15:04 -06006992 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006993 mmdrop(ctx->sqo_mm);
6994 ctx->sqo_mm = NULL;
6995 return ret;
6996}
6997
6998static void io_unaccount_mem(struct user_struct *user, unsigned long nr_pages)
6999{
7000 atomic_long_sub(nr_pages, &user->locked_vm);
7001}
7002
7003static int io_account_mem(struct user_struct *user, unsigned long nr_pages)
7004{
7005 unsigned long page_limit, cur_pages, new_pages;
7006
7007 /* Don't allow more pages than we can safely lock */
7008 page_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
7009
7010 do {
7011 cur_pages = atomic_long_read(&user->locked_vm);
7012 new_pages = cur_pages + nr_pages;
7013 if (new_pages > page_limit)
7014 return -ENOMEM;
7015 } while (atomic_long_cmpxchg(&user->locked_vm, cur_pages,
7016 new_pages) != cur_pages);
7017
7018 return 0;
7019}
7020
7021static void io_mem_free(void *ptr)
7022{
Mark Rutland52e04ef2019-04-30 17:30:21 +01007023 struct page *page;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007024
Mark Rutland52e04ef2019-04-30 17:30:21 +01007025 if (!ptr)
7026 return;
7027
7028 page = virt_to_head_page(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007029 if (put_page_testzero(page))
7030 free_compound_page(page);
7031}
7032
7033static void *io_mem_alloc(size_t size)
7034{
7035 gfp_t gfp_flags = GFP_KERNEL | __GFP_ZERO | __GFP_NOWARN | __GFP_COMP |
7036 __GFP_NORETRY;
7037
7038 return (void *) __get_free_pages(gfp_flags, get_order(size));
7039}
7040
Hristo Venev75b28af2019-08-26 17:23:46 +00007041static unsigned long rings_size(unsigned sq_entries, unsigned cq_entries,
7042 size_t *sq_offset)
7043{
7044 struct io_rings *rings;
7045 size_t off, sq_array_size;
7046
7047 off = struct_size(rings, cqes, cq_entries);
7048 if (off == SIZE_MAX)
7049 return SIZE_MAX;
7050
7051#ifdef CONFIG_SMP
7052 off = ALIGN(off, SMP_CACHE_BYTES);
7053 if (off == 0)
7054 return SIZE_MAX;
7055#endif
7056
7057 sq_array_size = array_size(sizeof(u32), sq_entries);
7058 if (sq_array_size == SIZE_MAX)
7059 return SIZE_MAX;
7060
7061 if (check_add_overflow(off, sq_array_size, &off))
7062 return SIZE_MAX;
7063
7064 if (sq_offset)
7065 *sq_offset = off;
7066
7067 return off;
7068}
7069
Jens Axboe2b188cc2019-01-07 10:46:33 -07007070static unsigned long ring_pages(unsigned sq_entries, unsigned cq_entries)
7071{
Hristo Venev75b28af2019-08-26 17:23:46 +00007072 size_t pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007073
Hristo Venev75b28af2019-08-26 17:23:46 +00007074 pages = (size_t)1 << get_order(
7075 rings_size(sq_entries, cq_entries, NULL));
7076 pages += (size_t)1 << get_order(
7077 array_size(sizeof(struct io_uring_sqe), sq_entries));
Jens Axboe2b188cc2019-01-07 10:46:33 -07007078
Hristo Venev75b28af2019-08-26 17:23:46 +00007079 return pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007080}
7081
Jens Axboeedafcce2019-01-09 09:16:05 -07007082static int io_sqe_buffer_unregister(struct io_ring_ctx *ctx)
7083{
7084 int i, j;
7085
7086 if (!ctx->user_bufs)
7087 return -ENXIO;
7088
7089 for (i = 0; i < ctx->nr_user_bufs; i++) {
7090 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
7091
7092 for (j = 0; j < imu->nr_bvecs; j++)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08007093 unpin_user_page(imu->bvec[j].bv_page);
Jens Axboeedafcce2019-01-09 09:16:05 -07007094
7095 if (ctx->account_mem)
7096 io_unaccount_mem(ctx->user, imu->nr_bvecs);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007097 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07007098 imu->nr_bvecs = 0;
7099 }
7100
7101 kfree(ctx->user_bufs);
7102 ctx->user_bufs = NULL;
7103 ctx->nr_user_bufs = 0;
7104 return 0;
7105}
7106
7107static int io_copy_iov(struct io_ring_ctx *ctx, struct iovec *dst,
7108 void __user *arg, unsigned index)
7109{
7110 struct iovec __user *src;
7111
7112#ifdef CONFIG_COMPAT
7113 if (ctx->compat) {
7114 struct compat_iovec __user *ciovs;
7115 struct compat_iovec ciov;
7116
7117 ciovs = (struct compat_iovec __user *) arg;
7118 if (copy_from_user(&ciov, &ciovs[index], sizeof(ciov)))
7119 return -EFAULT;
7120
Jens Axboed55e5f52019-12-11 16:12:15 -07007121 dst->iov_base = u64_to_user_ptr((u64)ciov.iov_base);
Jens Axboeedafcce2019-01-09 09:16:05 -07007122 dst->iov_len = ciov.iov_len;
7123 return 0;
7124 }
7125#endif
7126 src = (struct iovec __user *) arg;
7127 if (copy_from_user(dst, &src[index], sizeof(*dst)))
7128 return -EFAULT;
7129 return 0;
7130}
7131
7132static int io_sqe_buffer_register(struct io_ring_ctx *ctx, void __user *arg,
7133 unsigned nr_args)
7134{
7135 struct vm_area_struct **vmas = NULL;
7136 struct page **pages = NULL;
7137 int i, j, got_pages = 0;
7138 int ret = -EINVAL;
7139
7140 if (ctx->user_bufs)
7141 return -EBUSY;
7142 if (!nr_args || nr_args > UIO_MAXIOV)
7143 return -EINVAL;
7144
7145 ctx->user_bufs = kcalloc(nr_args, sizeof(struct io_mapped_ubuf),
7146 GFP_KERNEL);
7147 if (!ctx->user_bufs)
7148 return -ENOMEM;
7149
7150 for (i = 0; i < nr_args; i++) {
7151 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
7152 unsigned long off, start, end, ubuf;
7153 int pret, nr_pages;
7154 struct iovec iov;
7155 size_t size;
7156
7157 ret = io_copy_iov(ctx, &iov, arg, i);
7158 if (ret)
Pavel Begunkova2786822019-05-26 12:35:47 +03007159 goto err;
Jens Axboeedafcce2019-01-09 09:16:05 -07007160
7161 /*
7162 * Don't impose further limits on the size and buffer
7163 * constraints here, we'll -EINVAL later when IO is
7164 * submitted if they are wrong.
7165 */
7166 ret = -EFAULT;
7167 if (!iov.iov_base || !iov.iov_len)
7168 goto err;
7169
7170 /* arbitrary limit, but we need something */
7171 if (iov.iov_len > SZ_1G)
7172 goto err;
7173
7174 ubuf = (unsigned long) iov.iov_base;
7175 end = (ubuf + iov.iov_len + PAGE_SIZE - 1) >> PAGE_SHIFT;
7176 start = ubuf >> PAGE_SHIFT;
7177 nr_pages = end - start;
7178
7179 if (ctx->account_mem) {
7180 ret = io_account_mem(ctx->user, nr_pages);
7181 if (ret)
7182 goto err;
7183 }
7184
7185 ret = 0;
7186 if (!pages || nr_pages > got_pages) {
7187 kfree(vmas);
7188 kfree(pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007189 pages = kvmalloc_array(nr_pages, sizeof(struct page *),
Jens Axboeedafcce2019-01-09 09:16:05 -07007190 GFP_KERNEL);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007191 vmas = kvmalloc_array(nr_pages,
Jens Axboeedafcce2019-01-09 09:16:05 -07007192 sizeof(struct vm_area_struct *),
7193 GFP_KERNEL);
7194 if (!pages || !vmas) {
7195 ret = -ENOMEM;
7196 if (ctx->account_mem)
7197 io_unaccount_mem(ctx->user, nr_pages);
7198 goto err;
7199 }
7200 got_pages = nr_pages;
7201 }
7202
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007203 imu->bvec = kvmalloc_array(nr_pages, sizeof(struct bio_vec),
Jens Axboeedafcce2019-01-09 09:16:05 -07007204 GFP_KERNEL);
7205 ret = -ENOMEM;
7206 if (!imu->bvec) {
7207 if (ctx->account_mem)
7208 io_unaccount_mem(ctx->user, nr_pages);
7209 goto err;
7210 }
7211
7212 ret = 0;
7213 down_read(&current->mm->mmap_sem);
John Hubbard2113b052020-01-30 22:13:13 -08007214 pret = pin_user_pages(ubuf, nr_pages,
Ira Weiny932f4a62019-05-13 17:17:03 -07007215 FOLL_WRITE | FOLL_LONGTERM,
7216 pages, vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007217 if (pret == nr_pages) {
7218 /* don't support file backed memory */
7219 for (j = 0; j < nr_pages; j++) {
7220 struct vm_area_struct *vma = vmas[j];
7221
7222 if (vma->vm_file &&
7223 !is_file_hugepages(vma->vm_file)) {
7224 ret = -EOPNOTSUPP;
7225 break;
7226 }
7227 }
7228 } else {
7229 ret = pret < 0 ? pret : -EFAULT;
7230 }
7231 up_read(&current->mm->mmap_sem);
7232 if (ret) {
7233 /*
7234 * if we did partial map, or found file backed vmas,
7235 * release any pages we did get
7236 */
John Hubbard27c4d3a2019-08-04 19:32:06 -07007237 if (pret > 0)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08007238 unpin_user_pages(pages, pret);
Jens Axboeedafcce2019-01-09 09:16:05 -07007239 if (ctx->account_mem)
7240 io_unaccount_mem(ctx->user, nr_pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007241 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07007242 goto err;
7243 }
7244
7245 off = ubuf & ~PAGE_MASK;
7246 size = iov.iov_len;
7247 for (j = 0; j < nr_pages; j++) {
7248 size_t vec_len;
7249
7250 vec_len = min_t(size_t, size, PAGE_SIZE - off);
7251 imu->bvec[j].bv_page = pages[j];
7252 imu->bvec[j].bv_len = vec_len;
7253 imu->bvec[j].bv_offset = off;
7254 off = 0;
7255 size -= vec_len;
7256 }
7257 /* store original address for later verification */
7258 imu->ubuf = ubuf;
7259 imu->len = iov.iov_len;
7260 imu->nr_bvecs = nr_pages;
7261
7262 ctx->nr_user_bufs++;
7263 }
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007264 kvfree(pages);
7265 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007266 return 0;
7267err:
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007268 kvfree(pages);
7269 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007270 io_sqe_buffer_unregister(ctx);
7271 return ret;
7272}
7273
Jens Axboe9b402842019-04-11 11:45:41 -06007274static int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg)
7275{
7276 __s32 __user *fds = arg;
7277 int fd;
7278
7279 if (ctx->cq_ev_fd)
7280 return -EBUSY;
7281
7282 if (copy_from_user(&fd, fds, sizeof(*fds)))
7283 return -EFAULT;
7284
7285 ctx->cq_ev_fd = eventfd_ctx_fdget(fd);
7286 if (IS_ERR(ctx->cq_ev_fd)) {
7287 int ret = PTR_ERR(ctx->cq_ev_fd);
7288 ctx->cq_ev_fd = NULL;
7289 return ret;
7290 }
7291
7292 return 0;
7293}
7294
7295static int io_eventfd_unregister(struct io_ring_ctx *ctx)
7296{
7297 if (ctx->cq_ev_fd) {
7298 eventfd_ctx_put(ctx->cq_ev_fd);
7299 ctx->cq_ev_fd = NULL;
7300 return 0;
7301 }
7302
7303 return -ENXIO;
7304}
7305
Jens Axboe5a2e7452020-02-23 16:23:11 -07007306static int __io_destroy_buffers(int id, void *p, void *data)
7307{
7308 struct io_ring_ctx *ctx = data;
7309 struct io_buffer *buf = p;
7310
Jens Axboe067524e2020-03-02 16:32:28 -07007311 __io_remove_buffers(ctx, buf, id, -1U);
Jens Axboe5a2e7452020-02-23 16:23:11 -07007312 return 0;
7313}
7314
7315static void io_destroy_buffers(struct io_ring_ctx *ctx)
7316{
7317 idr_for_each(&ctx->io_buffer_idr, __io_destroy_buffers, ctx);
7318 idr_destroy(&ctx->io_buffer_idr);
7319}
7320
Jens Axboe2b188cc2019-01-07 10:46:33 -07007321static void io_ring_ctx_free(struct io_ring_ctx *ctx)
7322{
Jens Axboe6b063142019-01-10 22:13:58 -07007323 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007324 if (ctx->sqo_mm)
7325 mmdrop(ctx->sqo_mm);
Jens Axboedef596e2019-01-09 08:59:42 -07007326
7327 io_iopoll_reap_events(ctx);
Jens Axboeedafcce2019-01-09 09:16:05 -07007328 io_sqe_buffer_unregister(ctx);
Jens Axboe6b063142019-01-10 22:13:58 -07007329 io_sqe_files_unregister(ctx);
Jens Axboe9b402842019-04-11 11:45:41 -06007330 io_eventfd_unregister(ctx);
Jens Axboe5a2e7452020-02-23 16:23:11 -07007331 io_destroy_buffers(ctx);
Jens Axboe41726c92020-02-23 13:11:42 -07007332 idr_destroy(&ctx->personality_idr);
Jens Axboedef596e2019-01-09 08:59:42 -07007333
Jens Axboe2b188cc2019-01-07 10:46:33 -07007334#if defined(CONFIG_UNIX)
Eric Biggers355e8d22019-06-12 14:58:43 -07007335 if (ctx->ring_sock) {
7336 ctx->ring_sock->file = NULL; /* so that iput() is called */
Jens Axboe2b188cc2019-01-07 10:46:33 -07007337 sock_release(ctx->ring_sock);
Eric Biggers355e8d22019-06-12 14:58:43 -07007338 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007339#endif
7340
Hristo Venev75b28af2019-08-26 17:23:46 +00007341 io_mem_free(ctx->rings);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007342 io_mem_free(ctx->sq_sqes);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007343
7344 percpu_ref_exit(&ctx->refs);
7345 if (ctx->account_mem)
7346 io_unaccount_mem(ctx->user,
7347 ring_pages(ctx->sq_entries, ctx->cq_entries));
7348 free_uid(ctx->user);
Jens Axboe181e4482019-11-25 08:52:30 -07007349 put_cred(ctx->creds);
Jens Axboe78076bb2019-12-04 19:56:40 -07007350 kfree(ctx->cancel_hash);
Jens Axboe0ddf92e2019-11-08 08:52:53 -07007351 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007352 kfree(ctx);
7353}
7354
7355static __poll_t io_uring_poll(struct file *file, poll_table *wait)
7356{
7357 struct io_ring_ctx *ctx = file->private_data;
7358 __poll_t mask = 0;
7359
7360 poll_wait(file, &ctx->cq_wait, wait);
Stefan Bühler4f7067c2019-04-24 23:54:17 +02007361 /*
7362 * synchronizes with barrier from wq_has_sleeper call in
7363 * io_commit_cqring
7364 */
Jens Axboe2b188cc2019-01-07 10:46:33 -07007365 smp_rmb();
Hristo Venev75b28af2019-08-26 17:23:46 +00007366 if (READ_ONCE(ctx->rings->sq.tail) - ctx->cached_sq_head !=
7367 ctx->rings->sq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007368 mask |= EPOLLOUT | EPOLLWRNORM;
Stefano Garzarella63e5d812020-02-07 13:18:28 +01007369 if (io_cqring_events(ctx, false))
Jens Axboe2b188cc2019-01-07 10:46:33 -07007370 mask |= EPOLLIN | EPOLLRDNORM;
7371
7372 return mask;
7373}
7374
7375static int io_uring_fasync(int fd, struct file *file, int on)
7376{
7377 struct io_ring_ctx *ctx = file->private_data;
7378
7379 return fasync_helper(fd, file, on, &ctx->cq_fasync);
7380}
7381
Jens Axboe071698e2020-01-28 10:04:42 -07007382static int io_remove_personalities(int id, void *p, void *data)
7383{
7384 struct io_ring_ctx *ctx = data;
7385 const struct cred *cred;
7386
7387 cred = idr_remove(&ctx->personality_idr, id);
7388 if (cred)
7389 put_cred(cred);
7390 return 0;
7391}
7392
Jens Axboe85faa7b2020-04-09 18:14:00 -06007393static void io_ring_exit_work(struct work_struct *work)
7394{
7395 struct io_ring_ctx *ctx;
7396
7397 ctx = container_of(work, struct io_ring_ctx, exit_work);
7398 if (ctx->rings)
7399 io_cqring_overflow_flush(ctx, true);
7400
Jens Axboe0f158b42020-05-14 17:18:39 -06007401 wait_for_completion(&ctx->ref_comp);
Jens Axboe85faa7b2020-04-09 18:14:00 -06007402 io_ring_ctx_free(ctx);
7403}
7404
Jens Axboe2b188cc2019-01-07 10:46:33 -07007405static void io_ring_ctx_wait_and_kill(struct io_ring_ctx *ctx)
7406{
7407 mutex_lock(&ctx->uring_lock);
7408 percpu_ref_kill(&ctx->refs);
7409 mutex_unlock(&ctx->uring_lock);
7410
Jens Axboedf069d82020-02-04 16:48:34 -07007411 /*
7412 * Wait for sq thread to idle, if we have one. It won't spin on new
7413 * work after we've killed the ctx ref above. This is important to do
7414 * before we cancel existing commands, as the thread could otherwise
7415 * be queueing new work post that. If that's work we need to cancel,
7416 * it could cause shutdown to hang.
7417 */
7418 while (ctx->sqo_thread && !wq_has_sleeper(&ctx->sqo_wait))
Xiaoguang Wang3fd44c82020-05-01 08:52:56 +08007419 cond_resched();
Jens Axboedf069d82020-02-04 16:48:34 -07007420
Jens Axboe5262f562019-09-17 12:26:57 -06007421 io_kill_timeouts(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07007422 io_poll_remove_all(ctx);
Jens Axboe561fb042019-10-24 07:25:42 -06007423
7424 if (ctx->io_wq)
7425 io_wq_cancel_all(ctx->io_wq);
7426
Jens Axboedef596e2019-01-09 08:59:42 -07007427 io_iopoll_reap_events(ctx);
Jens Axboe15dff282019-11-13 09:09:23 -07007428 /* if we failed setting up the ctx, we might not have any rings */
7429 if (ctx->rings)
7430 io_cqring_overflow_flush(ctx, true);
Jens Axboe071698e2020-01-28 10:04:42 -07007431 idr_for_each(&ctx->personality_idr, io_remove_personalities, ctx);
Jens Axboe85faa7b2020-04-09 18:14:00 -06007432 INIT_WORK(&ctx->exit_work, io_ring_exit_work);
7433 queue_work(system_wq, &ctx->exit_work);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007434}
7435
7436static int io_uring_release(struct inode *inode, struct file *file)
7437{
7438 struct io_ring_ctx *ctx = file->private_data;
7439
7440 file->private_data = NULL;
7441 io_ring_ctx_wait_and_kill(ctx);
7442 return 0;
7443}
7444
Jens Axboefcb323c2019-10-24 12:39:47 -06007445static void io_uring_cancel_files(struct io_ring_ctx *ctx,
7446 struct files_struct *files)
7447{
Jens Axboefcb323c2019-10-24 12:39:47 -06007448 while (!list_empty_careful(&ctx->inflight_list)) {
Xiaoguang Wangd8f1b972020-04-26 15:54:43 +08007449 struct io_kiocb *cancel_req = NULL, *req;
7450 DEFINE_WAIT(wait);
Jens Axboefcb323c2019-10-24 12:39:47 -06007451
7452 spin_lock_irq(&ctx->inflight_lock);
7453 list_for_each_entry(req, &ctx->inflight_list, inflight_entry) {
Jens Axboe768134d2019-11-10 20:30:53 -07007454 if (req->work.files != files)
7455 continue;
7456 /* req is being completed, ignore */
7457 if (!refcount_inc_not_zero(&req->refs))
7458 continue;
7459 cancel_req = req;
7460 break;
Jens Axboefcb323c2019-10-24 12:39:47 -06007461 }
Jens Axboe768134d2019-11-10 20:30:53 -07007462 if (cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06007463 prepare_to_wait(&ctx->inflight_wait, &wait,
Jens Axboe768134d2019-11-10 20:30:53 -07007464 TASK_UNINTERRUPTIBLE);
Jens Axboefcb323c2019-10-24 12:39:47 -06007465 spin_unlock_irq(&ctx->inflight_lock);
7466
Jens Axboe768134d2019-11-10 20:30:53 -07007467 /* We need to keep going until we don't find a matching req */
7468 if (!cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06007469 break;
Bob Liu2f6d9b92019-11-13 18:06:24 +08007470
Jens Axboe2ca10252020-02-13 17:17:35 -07007471 if (cancel_req->flags & REQ_F_OVERFLOW) {
7472 spin_lock_irq(&ctx->completion_lock);
7473 list_del(&cancel_req->list);
7474 cancel_req->flags &= ~REQ_F_OVERFLOW;
7475 if (list_empty(&ctx->cq_overflow_list)) {
7476 clear_bit(0, &ctx->sq_check_overflow);
7477 clear_bit(0, &ctx->cq_check_overflow);
7478 }
7479 spin_unlock_irq(&ctx->completion_lock);
7480
7481 WRITE_ONCE(ctx->rings->cq_overflow,
7482 atomic_inc_return(&ctx->cached_cq_overflow));
7483
7484 /*
7485 * Put inflight ref and overflow ref. If that's
7486 * all we had, then we're done with this request.
7487 */
7488 if (refcount_sub_and_test(2, &cancel_req->refs)) {
7489 io_put_req(cancel_req);
Xiaoguang Wangd8f1b972020-04-26 15:54:43 +08007490 finish_wait(&ctx->inflight_wait, &wait);
Jens Axboe2ca10252020-02-13 17:17:35 -07007491 continue;
7492 }
7493 }
7494
Bob Liu2f6d9b92019-11-13 18:06:24 +08007495 io_wq_cancel_work(ctx->io_wq, &cancel_req->work);
7496 io_put_req(cancel_req);
Jens Axboefcb323c2019-10-24 12:39:47 -06007497 schedule();
Xiaoguang Wangd8f1b972020-04-26 15:54:43 +08007498 finish_wait(&ctx->inflight_wait, &wait);
Jens Axboefcb323c2019-10-24 12:39:47 -06007499 }
7500}
7501
7502static int io_uring_flush(struct file *file, void *data)
7503{
7504 struct io_ring_ctx *ctx = file->private_data;
7505
7506 io_uring_cancel_files(ctx, data);
Jens Axboe6ab23142020-02-08 20:23:59 -07007507
7508 /*
7509 * If the task is going away, cancel work it may have pending
7510 */
7511 if (fatal_signal_pending(current) || (current->flags & PF_EXITING))
7512 io_wq_cancel_pid(ctx->io_wq, task_pid_vnr(current));
7513
Jens Axboefcb323c2019-10-24 12:39:47 -06007514 return 0;
7515}
7516
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007517static void *io_uring_validate_mmap_request(struct file *file,
7518 loff_t pgoff, size_t sz)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007519{
Jens Axboe2b188cc2019-01-07 10:46:33 -07007520 struct io_ring_ctx *ctx = file->private_data;
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007521 loff_t offset = pgoff << PAGE_SHIFT;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007522 struct page *page;
7523 void *ptr;
7524
7525 switch (offset) {
7526 case IORING_OFF_SQ_RING:
Hristo Venev75b28af2019-08-26 17:23:46 +00007527 case IORING_OFF_CQ_RING:
7528 ptr = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007529 break;
7530 case IORING_OFF_SQES:
7531 ptr = ctx->sq_sqes;
7532 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007533 default:
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007534 return ERR_PTR(-EINVAL);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007535 }
7536
7537 page = virt_to_head_page(ptr);
Matthew Wilcox (Oracle)a50b8542019-09-23 15:34:25 -07007538 if (sz > page_size(page))
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007539 return ERR_PTR(-EINVAL);
7540
7541 return ptr;
7542}
7543
7544#ifdef CONFIG_MMU
7545
7546static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
7547{
7548 size_t sz = vma->vm_end - vma->vm_start;
7549 unsigned long pfn;
7550 void *ptr;
7551
7552 ptr = io_uring_validate_mmap_request(file, vma->vm_pgoff, sz);
7553 if (IS_ERR(ptr))
7554 return PTR_ERR(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007555
7556 pfn = virt_to_phys(ptr) >> PAGE_SHIFT;
7557 return remap_pfn_range(vma, vma->vm_start, pfn, sz, vma->vm_page_prot);
7558}
7559
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007560#else /* !CONFIG_MMU */
7561
7562static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
7563{
7564 return vma->vm_flags & (VM_SHARED | VM_MAYSHARE) ? 0 : -EINVAL;
7565}
7566
7567static unsigned int io_uring_nommu_mmap_capabilities(struct file *file)
7568{
7569 return NOMMU_MAP_DIRECT | NOMMU_MAP_READ | NOMMU_MAP_WRITE;
7570}
7571
7572static unsigned long io_uring_nommu_get_unmapped_area(struct file *file,
7573 unsigned long addr, unsigned long len,
7574 unsigned long pgoff, unsigned long flags)
7575{
7576 void *ptr;
7577
7578 ptr = io_uring_validate_mmap_request(file, pgoff, len);
7579 if (IS_ERR(ptr))
7580 return PTR_ERR(ptr);
7581
7582 return (unsigned long) ptr;
7583}
7584
7585#endif /* !CONFIG_MMU */
7586
Jens Axboe2b188cc2019-01-07 10:46:33 -07007587SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
7588 u32, min_complete, u32, flags, const sigset_t __user *, sig,
7589 size_t, sigsz)
7590{
7591 struct io_ring_ctx *ctx;
7592 long ret = -EBADF;
7593 int submitted = 0;
7594 struct fd f;
7595
Jens Axboeb41e9852020-02-17 09:52:41 -07007596 if (current->task_works)
7597 task_work_run();
7598
Jens Axboe6c271ce2019-01-10 11:22:30 -07007599 if (flags & ~(IORING_ENTER_GETEVENTS | IORING_ENTER_SQ_WAKEUP))
Jens Axboe2b188cc2019-01-07 10:46:33 -07007600 return -EINVAL;
7601
7602 f = fdget(fd);
7603 if (!f.file)
7604 return -EBADF;
7605
7606 ret = -EOPNOTSUPP;
7607 if (f.file->f_op != &io_uring_fops)
7608 goto out_fput;
7609
7610 ret = -ENXIO;
7611 ctx = f.file->private_data;
7612 if (!percpu_ref_tryget(&ctx->refs))
7613 goto out_fput;
7614
Jens Axboe6c271ce2019-01-10 11:22:30 -07007615 /*
7616 * For SQ polling, the thread will do all submissions and completions.
7617 * Just return the requested submit count, and wake the thread if
7618 * we were asked to.
7619 */
Jens Axboeb2a9ead2019-09-12 14:19:16 -06007620 ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007621 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboec1edbf52019-11-10 16:56:04 -07007622 if (!list_empty_careful(&ctx->cq_overflow_list))
7623 io_cqring_overflow_flush(ctx, false);
Jens Axboe6c271ce2019-01-10 11:22:30 -07007624 if (flags & IORING_ENTER_SQ_WAKEUP)
7625 wake_up(&ctx->sqo_wait);
7626 submitted = to_submit;
Jens Axboeb2a9ead2019-09-12 14:19:16 -06007627 } else if (to_submit) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07007628 mutex_lock(&ctx->uring_lock);
Pavel Begunkov0cdaf762020-05-17 14:13:40 +03007629 submitted = io_submit_sqes(ctx, to_submit, f.file, fd);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007630 mutex_unlock(&ctx->uring_lock);
Pavel Begunkov7c504e652019-12-18 19:53:45 +03007631
7632 if (submitted != to_submit)
7633 goto out;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007634 }
7635 if (flags & IORING_ENTER_GETEVENTS) {
Jens Axboedef596e2019-01-09 08:59:42 -07007636 unsigned nr_events = 0;
7637
Jens Axboe2b188cc2019-01-07 10:46:33 -07007638 min_complete = min(min_complete, ctx->cq_entries);
7639
Xiaoguang Wang32b22442020-03-11 09:26:09 +08007640 /*
7641 * When SETUP_IOPOLL and SETUP_SQPOLL are both enabled, user
7642 * space applications don't need to do io completion events
7643 * polling again, they can rely on io_sq_thread to do polling
7644 * work, which can reduce cpu usage and uring_lock contention.
7645 */
7646 if (ctx->flags & IORING_SETUP_IOPOLL &&
7647 !(ctx->flags & IORING_SETUP_SQPOLL)) {
Jens Axboedef596e2019-01-09 08:59:42 -07007648 ret = io_iopoll_check(ctx, &nr_events, min_complete);
Jens Axboedef596e2019-01-09 08:59:42 -07007649 } else {
7650 ret = io_cqring_wait(ctx, min_complete, sig, sigsz);
7651 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007652 }
7653
Pavel Begunkov7c504e652019-12-18 19:53:45 +03007654out:
Pavel Begunkov6805b322019-10-08 02:18:42 +03007655 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007656out_fput:
7657 fdput(f);
7658 return submitted ? submitted : ret;
7659}
7660
Tobias Klauserbebdb652020-02-26 18:38:32 +01007661#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -07007662static int io_uring_show_cred(int id, void *p, void *data)
7663{
7664 const struct cred *cred = p;
7665 struct seq_file *m = data;
7666 struct user_namespace *uns = seq_user_ns(m);
7667 struct group_info *gi;
7668 kernel_cap_t cap;
7669 unsigned __capi;
7670 int g;
7671
7672 seq_printf(m, "%5d\n", id);
7673 seq_put_decimal_ull(m, "\tUid:\t", from_kuid_munged(uns, cred->uid));
7674 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->euid));
7675 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->suid));
7676 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->fsuid));
7677 seq_put_decimal_ull(m, "\n\tGid:\t", from_kgid_munged(uns, cred->gid));
7678 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->egid));
7679 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->sgid));
7680 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->fsgid));
7681 seq_puts(m, "\n\tGroups:\t");
7682 gi = cred->group_info;
7683 for (g = 0; g < gi->ngroups; g++) {
7684 seq_put_decimal_ull(m, g ? " " : "",
7685 from_kgid_munged(uns, gi->gid[g]));
7686 }
7687 seq_puts(m, "\n\tCapEff:\t");
7688 cap = cred->cap_effective;
7689 CAP_FOR_EACH_U32(__capi)
7690 seq_put_hex_ll(m, NULL, cap.cap[CAP_LAST_U32 - __capi], 8);
7691 seq_putc(m, '\n');
7692 return 0;
7693}
7694
7695static void __io_uring_show_fdinfo(struct io_ring_ctx *ctx, struct seq_file *m)
7696{
7697 int i;
7698
7699 mutex_lock(&ctx->uring_lock);
7700 seq_printf(m, "UserFiles:\t%u\n", ctx->nr_user_files);
7701 for (i = 0; i < ctx->nr_user_files; i++) {
7702 struct fixed_file_table *table;
7703 struct file *f;
7704
7705 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
7706 f = table->files[i & IORING_FILE_TABLE_MASK];
7707 if (f)
7708 seq_printf(m, "%5u: %s\n", i, file_dentry(f)->d_iname);
7709 else
7710 seq_printf(m, "%5u: <none>\n", i);
7711 }
7712 seq_printf(m, "UserBufs:\t%u\n", ctx->nr_user_bufs);
7713 for (i = 0; i < ctx->nr_user_bufs; i++) {
7714 struct io_mapped_ubuf *buf = &ctx->user_bufs[i];
7715
7716 seq_printf(m, "%5u: 0x%llx/%u\n", i, buf->ubuf,
7717 (unsigned int) buf->len);
7718 }
7719 if (!idr_is_empty(&ctx->personality_idr)) {
7720 seq_printf(m, "Personalities:\n");
7721 idr_for_each(&ctx->personality_idr, io_uring_show_cred, m);
7722 }
Jens Axboed7718a92020-02-14 22:23:12 -07007723 seq_printf(m, "PollList:\n");
7724 spin_lock_irq(&ctx->completion_lock);
7725 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
7726 struct hlist_head *list = &ctx->cancel_hash[i];
7727 struct io_kiocb *req;
7728
7729 hlist_for_each_entry(req, list, hash_node)
7730 seq_printf(m, " op=%d, task_works=%d\n", req->opcode,
7731 req->task->task_works != NULL);
7732 }
7733 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe87ce9552020-01-30 08:25:34 -07007734 mutex_unlock(&ctx->uring_lock);
7735}
7736
7737static void io_uring_show_fdinfo(struct seq_file *m, struct file *f)
7738{
7739 struct io_ring_ctx *ctx = f->private_data;
7740
7741 if (percpu_ref_tryget(&ctx->refs)) {
7742 __io_uring_show_fdinfo(ctx, m);
7743 percpu_ref_put(&ctx->refs);
7744 }
7745}
Tobias Klauserbebdb652020-02-26 18:38:32 +01007746#endif
Jens Axboe87ce9552020-01-30 08:25:34 -07007747
Jens Axboe2b188cc2019-01-07 10:46:33 -07007748static const struct file_operations io_uring_fops = {
7749 .release = io_uring_release,
Jens Axboefcb323c2019-10-24 12:39:47 -06007750 .flush = io_uring_flush,
Jens Axboe2b188cc2019-01-07 10:46:33 -07007751 .mmap = io_uring_mmap,
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007752#ifndef CONFIG_MMU
7753 .get_unmapped_area = io_uring_nommu_get_unmapped_area,
7754 .mmap_capabilities = io_uring_nommu_mmap_capabilities,
7755#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07007756 .poll = io_uring_poll,
7757 .fasync = io_uring_fasync,
Tobias Klauserbebdb652020-02-26 18:38:32 +01007758#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -07007759 .show_fdinfo = io_uring_show_fdinfo,
Tobias Klauserbebdb652020-02-26 18:38:32 +01007760#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07007761};
7762
7763static int io_allocate_scq_urings(struct io_ring_ctx *ctx,
7764 struct io_uring_params *p)
7765{
Hristo Venev75b28af2019-08-26 17:23:46 +00007766 struct io_rings *rings;
7767 size_t size, sq_array_offset;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007768
Hristo Venev75b28af2019-08-26 17:23:46 +00007769 size = rings_size(p->sq_entries, p->cq_entries, &sq_array_offset);
7770 if (size == SIZE_MAX)
7771 return -EOVERFLOW;
7772
7773 rings = io_mem_alloc(size);
7774 if (!rings)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007775 return -ENOMEM;
7776
Hristo Venev75b28af2019-08-26 17:23:46 +00007777 ctx->rings = rings;
7778 ctx->sq_array = (u32 *)((char *)rings + sq_array_offset);
7779 rings->sq_ring_mask = p->sq_entries - 1;
7780 rings->cq_ring_mask = p->cq_entries - 1;
7781 rings->sq_ring_entries = p->sq_entries;
7782 rings->cq_ring_entries = p->cq_entries;
7783 ctx->sq_mask = rings->sq_ring_mask;
7784 ctx->cq_mask = rings->cq_ring_mask;
7785 ctx->sq_entries = rings->sq_ring_entries;
7786 ctx->cq_entries = rings->cq_ring_entries;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007787
7788 size = array_size(sizeof(struct io_uring_sqe), p->sq_entries);
Jens Axboeeb065d32019-11-20 09:26:29 -07007789 if (size == SIZE_MAX) {
7790 io_mem_free(ctx->rings);
7791 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007792 return -EOVERFLOW;
Jens Axboeeb065d32019-11-20 09:26:29 -07007793 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007794
7795 ctx->sq_sqes = io_mem_alloc(size);
Jens Axboeeb065d32019-11-20 09:26:29 -07007796 if (!ctx->sq_sqes) {
7797 io_mem_free(ctx->rings);
7798 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007799 return -ENOMEM;
Jens Axboeeb065d32019-11-20 09:26:29 -07007800 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007801
Jens Axboe2b188cc2019-01-07 10:46:33 -07007802 return 0;
7803}
7804
7805/*
7806 * Allocate an anonymous fd, this is what constitutes the application
7807 * visible backing of an io_uring instance. The application mmaps this
7808 * fd to gain access to the SQ/CQ ring details. If UNIX sockets are enabled,
7809 * we have to tie this fd to a socket for file garbage collection purposes.
7810 */
7811static int io_uring_get_fd(struct io_ring_ctx *ctx)
7812{
7813 struct file *file;
7814 int ret;
7815
7816#if defined(CONFIG_UNIX)
7817 ret = sock_create_kern(&init_net, PF_UNIX, SOCK_RAW, IPPROTO_IP,
7818 &ctx->ring_sock);
7819 if (ret)
7820 return ret;
7821#endif
7822
7823 ret = get_unused_fd_flags(O_RDWR | O_CLOEXEC);
7824 if (ret < 0)
7825 goto err;
7826
7827 file = anon_inode_getfile("[io_uring]", &io_uring_fops, ctx,
7828 O_RDWR | O_CLOEXEC);
7829 if (IS_ERR(file)) {
7830 put_unused_fd(ret);
7831 ret = PTR_ERR(file);
7832 goto err;
7833 }
7834
7835#if defined(CONFIG_UNIX)
7836 ctx->ring_sock->file = file;
7837#endif
7838 fd_install(ret, file);
7839 return ret;
7840err:
7841#if defined(CONFIG_UNIX)
7842 sock_release(ctx->ring_sock);
7843 ctx->ring_sock = NULL;
7844#endif
7845 return ret;
7846}
7847
Xiaoguang Wang7f136572020-05-05 16:28:53 +08007848static int io_uring_create(unsigned entries, struct io_uring_params *p,
7849 struct io_uring_params __user *params)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007850{
7851 struct user_struct *user = NULL;
7852 struct io_ring_ctx *ctx;
7853 bool account_mem;
7854 int ret;
7855
Jens Axboe8110c1a2019-12-28 15:39:54 -07007856 if (!entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007857 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07007858 if (entries > IORING_MAX_ENTRIES) {
7859 if (!(p->flags & IORING_SETUP_CLAMP))
7860 return -EINVAL;
7861 entries = IORING_MAX_ENTRIES;
7862 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007863
7864 /*
7865 * Use twice as many entries for the CQ ring. It's possible for the
7866 * application to drive a higher depth than the size of the SQ ring,
7867 * since the sqes are only used at submission time. This allows for
Jens Axboe33a107f2019-10-04 12:10:03 -06007868 * some flexibility in overcommitting a bit. If the application has
7869 * set IORING_SETUP_CQSIZE, it will have passed in the desired number
7870 * of CQ ring entries manually.
Jens Axboe2b188cc2019-01-07 10:46:33 -07007871 */
7872 p->sq_entries = roundup_pow_of_two(entries);
Jens Axboe33a107f2019-10-04 12:10:03 -06007873 if (p->flags & IORING_SETUP_CQSIZE) {
7874 /*
7875 * If IORING_SETUP_CQSIZE is set, we do the same roundup
7876 * to a power-of-two, if it isn't already. We do NOT impose
7877 * any cq vs sq ring sizing.
7878 */
Jens Axboe8110c1a2019-12-28 15:39:54 -07007879 if (p->cq_entries < p->sq_entries)
Jens Axboe33a107f2019-10-04 12:10:03 -06007880 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07007881 if (p->cq_entries > IORING_MAX_CQ_ENTRIES) {
7882 if (!(p->flags & IORING_SETUP_CLAMP))
7883 return -EINVAL;
7884 p->cq_entries = IORING_MAX_CQ_ENTRIES;
7885 }
Jens Axboe33a107f2019-10-04 12:10:03 -06007886 p->cq_entries = roundup_pow_of_two(p->cq_entries);
7887 } else {
7888 p->cq_entries = 2 * p->sq_entries;
7889 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007890
7891 user = get_uid(current_user());
7892 account_mem = !capable(CAP_IPC_LOCK);
7893
7894 if (account_mem) {
7895 ret = io_account_mem(user,
7896 ring_pages(p->sq_entries, p->cq_entries));
7897 if (ret) {
7898 free_uid(user);
7899 return ret;
7900 }
7901 }
7902
7903 ctx = io_ring_ctx_alloc(p);
7904 if (!ctx) {
7905 if (account_mem)
7906 io_unaccount_mem(user, ring_pages(p->sq_entries,
7907 p->cq_entries));
7908 free_uid(user);
7909 return -ENOMEM;
7910 }
7911 ctx->compat = in_compat_syscall();
7912 ctx->account_mem = account_mem;
7913 ctx->user = user;
Jens Axboe0b8c0ec2019-12-02 08:50:00 -07007914 ctx->creds = get_current_cred();
Jens Axboe2b188cc2019-01-07 10:46:33 -07007915
7916 ret = io_allocate_scq_urings(ctx, p);
7917 if (ret)
7918 goto err;
7919
Jens Axboe6c271ce2019-01-10 11:22:30 -07007920 ret = io_sq_offload_start(ctx, p);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007921 if (ret)
7922 goto err;
7923
Jens Axboe2b188cc2019-01-07 10:46:33 -07007924 memset(&p->sq_off, 0, sizeof(p->sq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00007925 p->sq_off.head = offsetof(struct io_rings, sq.head);
7926 p->sq_off.tail = offsetof(struct io_rings, sq.tail);
7927 p->sq_off.ring_mask = offsetof(struct io_rings, sq_ring_mask);
7928 p->sq_off.ring_entries = offsetof(struct io_rings, sq_ring_entries);
7929 p->sq_off.flags = offsetof(struct io_rings, sq_flags);
7930 p->sq_off.dropped = offsetof(struct io_rings, sq_dropped);
7931 p->sq_off.array = (char *)ctx->sq_array - (char *)ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007932
7933 memset(&p->cq_off, 0, sizeof(p->cq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00007934 p->cq_off.head = offsetof(struct io_rings, cq.head);
7935 p->cq_off.tail = offsetof(struct io_rings, cq.tail);
7936 p->cq_off.ring_mask = offsetof(struct io_rings, cq_ring_mask);
7937 p->cq_off.ring_entries = offsetof(struct io_rings, cq_ring_entries);
7938 p->cq_off.overflow = offsetof(struct io_rings, cq_overflow);
7939 p->cq_off.cqes = offsetof(struct io_rings, cqes);
Stefano Garzarella0d9b5b32020-05-15 18:38:04 +02007940 p->cq_off.flags = offsetof(struct io_rings, cq_flags);
Jens Axboeac90f242019-09-06 10:26:21 -06007941
Xiaoguang Wang7f136572020-05-05 16:28:53 +08007942 p->features = IORING_FEAT_SINGLE_MMAP | IORING_FEAT_NODROP |
7943 IORING_FEAT_SUBMIT_STABLE | IORING_FEAT_RW_CUR_POS |
7944 IORING_FEAT_CUR_PERSONALITY | IORING_FEAT_FAST_POLL;
7945
7946 if (copy_to_user(params, p, sizeof(*p))) {
7947 ret = -EFAULT;
7948 goto err;
7949 }
Jens Axboe044c1ab2019-10-28 09:15:33 -06007950 /*
7951 * Install ring fd as the very last thing, so we don't risk someone
7952 * having closed it before we finish setup
7953 */
7954 ret = io_uring_get_fd(ctx);
7955 if (ret < 0)
7956 goto err;
7957
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02007958 trace_io_uring_create(ret, ctx, p->sq_entries, p->cq_entries, p->flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007959 return ret;
7960err:
7961 io_ring_ctx_wait_and_kill(ctx);
7962 return ret;
7963}
7964
7965/*
7966 * Sets up an aio uring context, and returns the fd. Applications asks for a
7967 * ring size, we return the actual sq/cq ring sizes (among other things) in the
7968 * params structure passed in.
7969 */
7970static long io_uring_setup(u32 entries, struct io_uring_params __user *params)
7971{
7972 struct io_uring_params p;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007973 int i;
7974
7975 if (copy_from_user(&p, params, sizeof(p)))
7976 return -EFAULT;
7977 for (i = 0; i < ARRAY_SIZE(p.resv); i++) {
7978 if (p.resv[i])
7979 return -EINVAL;
7980 }
7981
Jens Axboe6c271ce2019-01-10 11:22:30 -07007982 if (p.flags & ~(IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL |
Jens Axboe8110c1a2019-12-28 15:39:54 -07007983 IORING_SETUP_SQ_AFF | IORING_SETUP_CQSIZE |
Pavel Begunkov24369c22020-01-28 03:15:48 +03007984 IORING_SETUP_CLAMP | IORING_SETUP_ATTACH_WQ))
Jens Axboe2b188cc2019-01-07 10:46:33 -07007985 return -EINVAL;
7986
Xiaoguang Wang7f136572020-05-05 16:28:53 +08007987 return io_uring_create(entries, &p, params);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007988}
7989
7990SYSCALL_DEFINE2(io_uring_setup, u32, entries,
7991 struct io_uring_params __user *, params)
7992{
7993 return io_uring_setup(entries, params);
7994}
7995
Jens Axboe66f4af92020-01-16 15:36:52 -07007996static int io_probe(struct io_ring_ctx *ctx, void __user *arg, unsigned nr_args)
7997{
7998 struct io_uring_probe *p;
7999 size_t size;
8000 int i, ret;
8001
8002 size = struct_size(p, ops, nr_args);
8003 if (size == SIZE_MAX)
8004 return -EOVERFLOW;
8005 p = kzalloc(size, GFP_KERNEL);
8006 if (!p)
8007 return -ENOMEM;
8008
8009 ret = -EFAULT;
8010 if (copy_from_user(p, arg, size))
8011 goto out;
8012 ret = -EINVAL;
8013 if (memchr_inv(p, 0, size))
8014 goto out;
8015
8016 p->last_op = IORING_OP_LAST - 1;
8017 if (nr_args > IORING_OP_LAST)
8018 nr_args = IORING_OP_LAST;
8019
8020 for (i = 0; i < nr_args; i++) {
8021 p->ops[i].op = i;
8022 if (!io_op_defs[i].not_supported)
8023 p->ops[i].flags = IO_URING_OP_SUPPORTED;
8024 }
8025 p->ops_len = i;
8026
8027 ret = 0;
8028 if (copy_to_user(arg, p, size))
8029 ret = -EFAULT;
8030out:
8031 kfree(p);
8032 return ret;
8033}
8034
Jens Axboe071698e2020-01-28 10:04:42 -07008035static int io_register_personality(struct io_ring_ctx *ctx)
8036{
8037 const struct cred *creds = get_current_cred();
8038 int id;
8039
8040 id = idr_alloc_cyclic(&ctx->personality_idr, (void *) creds, 1,
8041 USHRT_MAX, GFP_KERNEL);
8042 if (id < 0)
8043 put_cred(creds);
8044 return id;
8045}
8046
8047static int io_unregister_personality(struct io_ring_ctx *ctx, unsigned id)
8048{
8049 const struct cred *old_creds;
8050
8051 old_creds = idr_remove(&ctx->personality_idr, id);
8052 if (old_creds) {
8053 put_cred(old_creds);
8054 return 0;
8055 }
8056
8057 return -EINVAL;
8058}
8059
8060static bool io_register_op_must_quiesce(int op)
8061{
8062 switch (op) {
8063 case IORING_UNREGISTER_FILES:
8064 case IORING_REGISTER_FILES_UPDATE:
8065 case IORING_REGISTER_PROBE:
8066 case IORING_REGISTER_PERSONALITY:
8067 case IORING_UNREGISTER_PERSONALITY:
8068 return false;
8069 default:
8070 return true;
8071 }
8072}
8073
Jens Axboeedafcce2019-01-09 09:16:05 -07008074static int __io_uring_register(struct io_ring_ctx *ctx, unsigned opcode,
8075 void __user *arg, unsigned nr_args)
Jens Axboeb19062a2019-04-15 10:49:38 -06008076 __releases(ctx->uring_lock)
8077 __acquires(ctx->uring_lock)
Jens Axboeedafcce2019-01-09 09:16:05 -07008078{
8079 int ret;
8080
Jens Axboe35fa71a2019-04-22 10:23:23 -06008081 /*
8082 * We're inside the ring mutex, if the ref is already dying, then
8083 * someone else killed the ctx or is already going through
8084 * io_uring_register().
8085 */
8086 if (percpu_ref_is_dying(&ctx->refs))
8087 return -ENXIO;
8088
Jens Axboe071698e2020-01-28 10:04:42 -07008089 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07008090 percpu_ref_kill(&ctx->refs);
Jens Axboeb19062a2019-04-15 10:49:38 -06008091
Jens Axboe05f3fb32019-12-09 11:22:50 -07008092 /*
8093 * Drop uring mutex before waiting for references to exit. If
8094 * another thread is currently inside io_uring_enter() it might
8095 * need to grab the uring_lock to make progress. If we hold it
8096 * here across the drain wait, then we can deadlock. It's safe
8097 * to drop the mutex here, since no new references will come in
8098 * after we've killed the percpu ref.
8099 */
8100 mutex_unlock(&ctx->uring_lock);
Jens Axboe0f158b42020-05-14 17:18:39 -06008101 ret = wait_for_completion_interruptible(&ctx->ref_comp);
Jens Axboe05f3fb32019-12-09 11:22:50 -07008102 mutex_lock(&ctx->uring_lock);
Jens Axboec1503682020-01-08 08:26:07 -07008103 if (ret) {
8104 percpu_ref_resurrect(&ctx->refs);
8105 ret = -EINTR;
8106 goto out;
8107 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07008108 }
Jens Axboeedafcce2019-01-09 09:16:05 -07008109
8110 switch (opcode) {
8111 case IORING_REGISTER_BUFFERS:
8112 ret = io_sqe_buffer_register(ctx, arg, nr_args);
8113 break;
8114 case IORING_UNREGISTER_BUFFERS:
8115 ret = -EINVAL;
8116 if (arg || nr_args)
8117 break;
8118 ret = io_sqe_buffer_unregister(ctx);
8119 break;
Jens Axboe6b063142019-01-10 22:13:58 -07008120 case IORING_REGISTER_FILES:
8121 ret = io_sqe_files_register(ctx, arg, nr_args);
8122 break;
8123 case IORING_UNREGISTER_FILES:
8124 ret = -EINVAL;
8125 if (arg || nr_args)
8126 break;
8127 ret = io_sqe_files_unregister(ctx);
8128 break;
Jens Axboec3a31e62019-10-03 13:59:56 -06008129 case IORING_REGISTER_FILES_UPDATE:
8130 ret = io_sqe_files_update(ctx, arg, nr_args);
8131 break;
Jens Axboe9b402842019-04-11 11:45:41 -06008132 case IORING_REGISTER_EVENTFD:
Jens Axboef2842ab2020-01-08 11:04:00 -07008133 case IORING_REGISTER_EVENTFD_ASYNC:
Jens Axboe9b402842019-04-11 11:45:41 -06008134 ret = -EINVAL;
8135 if (nr_args != 1)
8136 break;
8137 ret = io_eventfd_register(ctx, arg);
Jens Axboef2842ab2020-01-08 11:04:00 -07008138 if (ret)
8139 break;
8140 if (opcode == IORING_REGISTER_EVENTFD_ASYNC)
8141 ctx->eventfd_async = 1;
8142 else
8143 ctx->eventfd_async = 0;
Jens Axboe9b402842019-04-11 11:45:41 -06008144 break;
8145 case IORING_UNREGISTER_EVENTFD:
8146 ret = -EINVAL;
8147 if (arg || nr_args)
8148 break;
8149 ret = io_eventfd_unregister(ctx);
8150 break;
Jens Axboe66f4af92020-01-16 15:36:52 -07008151 case IORING_REGISTER_PROBE:
8152 ret = -EINVAL;
8153 if (!arg || nr_args > 256)
8154 break;
8155 ret = io_probe(ctx, arg, nr_args);
8156 break;
Jens Axboe071698e2020-01-28 10:04:42 -07008157 case IORING_REGISTER_PERSONALITY:
8158 ret = -EINVAL;
8159 if (arg || nr_args)
8160 break;
8161 ret = io_register_personality(ctx);
8162 break;
8163 case IORING_UNREGISTER_PERSONALITY:
8164 ret = -EINVAL;
8165 if (arg)
8166 break;
8167 ret = io_unregister_personality(ctx, nr_args);
8168 break;
Jens Axboeedafcce2019-01-09 09:16:05 -07008169 default:
8170 ret = -EINVAL;
8171 break;
8172 }
8173
Jens Axboe071698e2020-01-28 10:04:42 -07008174 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07008175 /* bring the ctx back to life */
Jens Axboe05f3fb32019-12-09 11:22:50 -07008176 percpu_ref_reinit(&ctx->refs);
Jens Axboec1503682020-01-08 08:26:07 -07008177out:
Jens Axboe0f158b42020-05-14 17:18:39 -06008178 reinit_completion(&ctx->ref_comp);
Jens Axboe05f3fb32019-12-09 11:22:50 -07008179 }
Jens Axboeedafcce2019-01-09 09:16:05 -07008180 return ret;
8181}
8182
8183SYSCALL_DEFINE4(io_uring_register, unsigned int, fd, unsigned int, opcode,
8184 void __user *, arg, unsigned int, nr_args)
8185{
8186 struct io_ring_ctx *ctx;
8187 long ret = -EBADF;
8188 struct fd f;
8189
8190 f = fdget(fd);
8191 if (!f.file)
8192 return -EBADF;
8193
8194 ret = -EOPNOTSUPP;
8195 if (f.file->f_op != &io_uring_fops)
8196 goto out_fput;
8197
8198 ctx = f.file->private_data;
8199
8200 mutex_lock(&ctx->uring_lock);
8201 ret = __io_uring_register(ctx, opcode, arg, nr_args);
8202 mutex_unlock(&ctx->uring_lock);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02008203 trace_io_uring_register(ctx, opcode, ctx->nr_user_files, ctx->nr_user_bufs,
8204 ctx->cq_ev_fd != NULL, ret);
Jens Axboeedafcce2019-01-09 09:16:05 -07008205out_fput:
8206 fdput(f);
8207 return ret;
8208}
8209
Jens Axboe2b188cc2019-01-07 10:46:33 -07008210static int __init io_uring_init(void)
8211{
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008212#define __BUILD_BUG_VERIFY_ELEMENT(stype, eoffset, etype, ename) do { \
8213 BUILD_BUG_ON(offsetof(stype, ename) != eoffset); \
8214 BUILD_BUG_ON(sizeof(etype) != sizeof_field(stype, ename)); \
8215} while (0)
8216
8217#define BUILD_BUG_SQE_ELEM(eoffset, etype, ename) \
8218 __BUILD_BUG_VERIFY_ELEMENT(struct io_uring_sqe, eoffset, etype, ename)
8219 BUILD_BUG_ON(sizeof(struct io_uring_sqe) != 64);
8220 BUILD_BUG_SQE_ELEM(0, __u8, opcode);
8221 BUILD_BUG_SQE_ELEM(1, __u8, flags);
8222 BUILD_BUG_SQE_ELEM(2, __u16, ioprio);
8223 BUILD_BUG_SQE_ELEM(4, __s32, fd);
8224 BUILD_BUG_SQE_ELEM(8, __u64, off);
8225 BUILD_BUG_SQE_ELEM(8, __u64, addr2);
8226 BUILD_BUG_SQE_ELEM(16, __u64, addr);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03008227 BUILD_BUG_SQE_ELEM(16, __u64, splice_off_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008228 BUILD_BUG_SQE_ELEM(24, __u32, len);
8229 BUILD_BUG_SQE_ELEM(28, __kernel_rwf_t, rw_flags);
8230 BUILD_BUG_SQE_ELEM(28, /* compat */ int, rw_flags);
8231 BUILD_BUG_SQE_ELEM(28, /* compat */ __u32, rw_flags);
8232 BUILD_BUG_SQE_ELEM(28, __u32, fsync_flags);
8233 BUILD_BUG_SQE_ELEM(28, __u16, poll_events);
8234 BUILD_BUG_SQE_ELEM(28, __u32, sync_range_flags);
8235 BUILD_BUG_SQE_ELEM(28, __u32, msg_flags);
8236 BUILD_BUG_SQE_ELEM(28, __u32, timeout_flags);
8237 BUILD_BUG_SQE_ELEM(28, __u32, accept_flags);
8238 BUILD_BUG_SQE_ELEM(28, __u32, cancel_flags);
8239 BUILD_BUG_SQE_ELEM(28, __u32, open_flags);
8240 BUILD_BUG_SQE_ELEM(28, __u32, statx_flags);
8241 BUILD_BUG_SQE_ELEM(28, __u32, fadvise_advice);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03008242 BUILD_BUG_SQE_ELEM(28, __u32, splice_flags);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008243 BUILD_BUG_SQE_ELEM(32, __u64, user_data);
8244 BUILD_BUG_SQE_ELEM(40, __u16, buf_index);
8245 BUILD_BUG_SQE_ELEM(42, __u16, personality);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03008246 BUILD_BUG_SQE_ELEM(44, __s32, splice_fd_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008247
Jens Axboed3656342019-12-18 09:50:26 -07008248 BUILD_BUG_ON(ARRAY_SIZE(io_op_defs) != IORING_OP_LAST);
Jens Axboe84557872020-03-03 15:28:17 -07008249 BUILD_BUG_ON(__REQ_F_LAST_BIT >= 8 * sizeof(int));
Jens Axboe2b188cc2019-01-07 10:46:33 -07008250 req_cachep = KMEM_CACHE(io_kiocb, SLAB_HWCACHE_ALIGN | SLAB_PANIC);
8251 return 0;
8252};
8253__initcall(io_uring_init);