blob: 516a59db73caba9a97d3557d3f9a7a9cf418da2b [file] [log] [blame]
Jens Axboe2b188cc2019-01-07 10:46:33 -07001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Shared application/kernel submission and completion ring pairs, for
4 * supporting fast/efficient IO.
5 *
6 * A note on the read/write ordering memory barriers that are matched between
Stefan Bühler1e84b972019-04-24 23:54:16 +02007 * the application and kernel side.
8 *
9 * After the application reads the CQ ring tail, it must use an
10 * appropriate smp_rmb() to pair with the smp_wmb() the kernel uses
11 * before writing the tail (using smp_load_acquire to read the tail will
12 * do). It also needs a smp_mb() before updating CQ head (ordering the
13 * entry load(s) with the head store), pairing with an implicit barrier
14 * through a control-dependency in io_get_cqring (smp_store_release to
15 * store head will do). Failure to do so could lead to reading invalid
16 * CQ entries.
17 *
18 * Likewise, the application must use an appropriate smp_wmb() before
19 * writing the SQ tail (ordering SQ entry stores with the tail store),
20 * which pairs with smp_load_acquire in io_get_sqring (smp_store_release
21 * to store the tail will do). And it needs a barrier ordering the SQ
22 * head load before writing new SQ entries (smp_load_acquire to read
23 * head will do).
24 *
25 * When using the SQ poll thread (IORING_SETUP_SQPOLL), the application
26 * needs to check the SQ flags for IORING_SQ_NEED_WAKEUP *after*
27 * updating the SQ tail; a full memory barrier smp_mb() is needed
28 * between.
Jens Axboe2b188cc2019-01-07 10:46:33 -070029 *
30 * Also see the examples in the liburing library:
31 *
32 * git://git.kernel.dk/liburing
33 *
34 * io_uring also uses READ/WRITE_ONCE() for _any_ store or load that happens
35 * from data shared between the kernel and application. This is done both
36 * for ordering purposes, but also to ensure that once a value is loaded from
37 * data that the application could potentially modify, it remains stable.
38 *
39 * Copyright (C) 2018-2019 Jens Axboe
Christoph Hellwigc992fe22019-01-11 09:43:02 -070040 * Copyright (c) 2018-2019 Christoph Hellwig
Jens Axboe2b188cc2019-01-07 10:46:33 -070041 */
42#include <linux/kernel.h>
43#include <linux/init.h>
44#include <linux/errno.h>
45#include <linux/syscalls.h>
46#include <linux/compat.h>
Jens Axboe52de1fe2020-02-27 10:15:42 -070047#include <net/compat.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070048#include <linux/refcount.h>
49#include <linux/uio.h>
Pavel Begunkov6b47ee62020-01-18 20:22:41 +030050#include <linux/bits.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070051
52#include <linux/sched/signal.h>
53#include <linux/fs.h>
54#include <linux/file.h>
55#include <linux/fdtable.h>
56#include <linux/mm.h>
57#include <linux/mman.h>
58#include <linux/mmu_context.h>
59#include <linux/percpu.h>
60#include <linux/slab.h>
Jens Axboe6c271ce2019-01-10 11:22:30 -070061#include <linux/kthread.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070062#include <linux/blkdev.h>
Jens Axboeedafcce2019-01-09 09:16:05 -070063#include <linux/bvec.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070064#include <linux/net.h>
65#include <net/sock.h>
66#include <net/af_unix.h>
Jens Axboe6b063142019-01-10 22:13:58 -070067#include <net/scm.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070068#include <linux/anon_inodes.h>
69#include <linux/sched/mm.h>
70#include <linux/uaccess.h>
71#include <linux/nospec.h>
Jens Axboeedafcce2019-01-09 09:16:05 -070072#include <linux/sizes.h>
73#include <linux/hugetlb.h>
Jens Axboeaa4c3962019-11-29 10:14:00 -070074#include <linux/highmem.h>
Jens Axboe15b71ab2019-12-11 11:20:36 -070075#include <linux/namei.h>
76#include <linux/fsnotify.h>
Jens Axboe4840e412019-12-25 22:03:45 -070077#include <linux/fadvise.h>
Jens Axboe3e4827b2020-01-08 15:18:09 -070078#include <linux/eventpoll.h>
Jens Axboeff002b32020-02-07 16:05:21 -070079#include <linux/fs_struct.h>
Pavel Begunkov7d67af22020-02-24 11:32:45 +030080#include <linux/splice.h>
Jens Axboeb41e9852020-02-17 09:52:41 -070081#include <linux/task_work.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070082
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +020083#define CREATE_TRACE_POINTS
84#include <trace/events/io_uring.h>
85
Jens Axboe2b188cc2019-01-07 10:46:33 -070086#include <uapi/linux/io_uring.h>
87
88#include "internal.h"
Jens Axboe561fb042019-10-24 07:25:42 -060089#include "io-wq.h"
Jens Axboe2b188cc2019-01-07 10:46:33 -070090
Daniel Xu5277dea2019-09-14 14:23:45 -070091#define IORING_MAX_ENTRIES 32768
Jens Axboe33a107f2019-10-04 12:10:03 -060092#define IORING_MAX_CQ_ENTRIES (2 * IORING_MAX_ENTRIES)
Jens Axboe65e19f52019-10-26 07:20:21 -060093
94/*
95 * Shift of 9 is 512 entries, or exactly one page on 64-bit archs
96 */
97#define IORING_FILE_TABLE_SHIFT 9
98#define IORING_MAX_FILES_TABLE (1U << IORING_FILE_TABLE_SHIFT)
99#define IORING_FILE_TABLE_MASK (IORING_MAX_FILES_TABLE - 1)
100#define IORING_MAX_FIXED_FILES (64 * IORING_MAX_FILES_TABLE)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700101
102struct io_uring {
103 u32 head ____cacheline_aligned_in_smp;
104 u32 tail ____cacheline_aligned_in_smp;
105};
106
Stefan Bühler1e84b972019-04-24 23:54:16 +0200107/*
Hristo Venev75b28af2019-08-26 17:23:46 +0000108 * This data is shared with the application through the mmap at offsets
109 * IORING_OFF_SQ_RING and IORING_OFF_CQ_RING.
Stefan Bühler1e84b972019-04-24 23:54:16 +0200110 *
111 * The offsets to the member fields are published through struct
112 * io_sqring_offsets when calling io_uring_setup.
113 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000114struct io_rings {
Stefan Bühler1e84b972019-04-24 23:54:16 +0200115 /*
116 * Head and tail offsets into the ring; the offsets need to be
117 * masked to get valid indices.
118 *
Hristo Venev75b28af2019-08-26 17:23:46 +0000119 * The kernel controls head of the sq ring and the tail of the cq ring,
120 * and the application controls tail of the sq ring and the head of the
121 * cq ring.
Stefan Bühler1e84b972019-04-24 23:54:16 +0200122 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000123 struct io_uring sq, cq;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200124 /*
Hristo Venev75b28af2019-08-26 17:23:46 +0000125 * Bitmasks to apply to head and tail offsets (constant, equals
Stefan Bühler1e84b972019-04-24 23:54:16 +0200126 * ring_entries - 1)
127 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000128 u32 sq_ring_mask, cq_ring_mask;
129 /* Ring sizes (constant, power of 2) */
130 u32 sq_ring_entries, cq_ring_entries;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200131 /*
132 * Number of invalid entries dropped by the kernel due to
133 * invalid index stored in array
134 *
135 * Written by the kernel, shouldn't be modified by the
136 * application (i.e. get number of "new events" by comparing to
137 * cached value).
138 *
139 * After a new SQ head value was read by the application this
140 * counter includes all submissions that were dropped reaching
141 * the new SQ head (and possibly more).
142 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000143 u32 sq_dropped;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200144 /*
145 * Runtime flags
146 *
147 * Written by the kernel, shouldn't be modified by the
148 * application.
149 *
150 * The application needs a full memory barrier before checking
151 * for IORING_SQ_NEED_WAKEUP after updating the sq tail.
152 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000153 u32 sq_flags;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200154 /*
155 * Number of completion events lost because the queue was full;
156 * this should be avoided by the application by making sure
LimingWu0b4295b2019-12-05 20:18:18 +0800157 * there are not more requests pending than there is space in
Stefan Bühler1e84b972019-04-24 23:54:16 +0200158 * the completion queue.
159 *
160 * Written by the kernel, shouldn't be modified by the
161 * application (i.e. get number of "new events" by comparing to
162 * cached value).
163 *
164 * As completion events come in out of order this counter is not
165 * ordered with any other data.
166 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000167 u32 cq_overflow;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200168 /*
169 * Ring buffer of completion events.
170 *
171 * The kernel writes completion events fresh every time they are
172 * produced, so the application is allowed to modify pending
173 * entries.
174 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000175 struct io_uring_cqe cqes[] ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700176};
177
Jens Axboeedafcce2019-01-09 09:16:05 -0700178struct io_mapped_ubuf {
179 u64 ubuf;
180 size_t len;
181 struct bio_vec *bvec;
182 unsigned int nr_bvecs;
183};
184
Jens Axboe65e19f52019-10-26 07:20:21 -0600185struct fixed_file_table {
186 struct file **files;
Jens Axboe31b51512019-01-18 22:56:34 -0700187};
188
Xiaoguang Wang05589552020-03-31 14:05:18 +0800189struct fixed_file_ref_node {
190 struct percpu_ref refs;
191 struct list_head node;
192 struct list_head file_list;
193 struct fixed_file_data *file_data;
194 struct work_struct work;
195};
196
Jens Axboe05f3fb32019-12-09 11:22:50 -0700197struct fixed_file_data {
198 struct fixed_file_table *table;
199 struct io_ring_ctx *ctx;
200
Xiaoguang Wang05589552020-03-31 14:05:18 +0800201 struct percpu_ref *cur_refs;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700202 struct percpu_ref refs;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700203 struct completion done;
Xiaoguang Wang05589552020-03-31 14:05:18 +0800204 struct list_head ref_list;
205 spinlock_t lock;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700206};
207
Jens Axboe5a2e7452020-02-23 16:23:11 -0700208struct io_buffer {
209 struct list_head list;
210 __u64 addr;
211 __s32 len;
212 __u16 bid;
213};
214
Jens Axboe2b188cc2019-01-07 10:46:33 -0700215struct io_ring_ctx {
216 struct {
217 struct percpu_ref refs;
218 } ____cacheline_aligned_in_smp;
219
220 struct {
221 unsigned int flags;
Randy Dunlape1d85332020-02-05 20:57:10 -0800222 unsigned int compat: 1;
223 unsigned int account_mem: 1;
224 unsigned int cq_overflow_flushed: 1;
225 unsigned int drain_next: 1;
226 unsigned int eventfd_async: 1;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700227
Hristo Venev75b28af2019-08-26 17:23:46 +0000228 /*
229 * Ring buffer of indices into array of io_uring_sqe, which is
230 * mmapped by the application using the IORING_OFF_SQES offset.
231 *
232 * This indirection could e.g. be used to assign fixed
233 * io_uring_sqe entries to operations and only submit them to
234 * the queue when needed.
235 *
236 * The kernel modifies neither the indices array nor the entries
237 * array.
238 */
239 u32 *sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700240 unsigned cached_sq_head;
241 unsigned sq_entries;
242 unsigned sq_mask;
Jens Axboe6c271ce2019-01-10 11:22:30 -0700243 unsigned sq_thread_idle;
Jens Axboe498ccd92019-10-25 10:04:25 -0600244 unsigned cached_sq_dropped;
Jens Axboe206aefd2019-11-07 18:27:42 -0700245 atomic_t cached_cq_overflow;
Jens Axboead3eb2c2019-12-18 17:12:20 -0700246 unsigned long sq_check_overflow;
Jens Axboede0617e2019-04-06 21:51:27 -0600247
248 struct list_head defer_list;
Jens Axboe5262f562019-09-17 12:26:57 -0600249 struct list_head timeout_list;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700250 struct list_head cq_overflow_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700251
Jens Axboefcb323c2019-10-24 12:39:47 -0600252 wait_queue_head_t inflight_wait;
Jens Axboead3eb2c2019-12-18 17:12:20 -0700253 struct io_uring_sqe *sq_sqes;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700254 } ____cacheline_aligned_in_smp;
255
Hristo Venev75b28af2019-08-26 17:23:46 +0000256 struct io_rings *rings;
257
Jens Axboe2b188cc2019-01-07 10:46:33 -0700258 /* IO offload */
Jens Axboe561fb042019-10-24 07:25:42 -0600259 struct io_wq *io_wq;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700260 struct task_struct *sqo_thread; /* if using sq thread polling */
261 struct mm_struct *sqo_mm;
262 wait_queue_head_t sqo_wait;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700263
Jens Axboe6b063142019-01-10 22:13:58 -0700264 /*
265 * If used, fixed file set. Writers must ensure that ->refs is dead,
266 * readers must ensure that ->refs is alive as long as the file* is
267 * used. Only updated through io_uring_register(2).
268 */
Jens Axboe05f3fb32019-12-09 11:22:50 -0700269 struct fixed_file_data *file_data;
Jens Axboe6b063142019-01-10 22:13:58 -0700270 unsigned nr_user_files;
Pavel Begunkovb14cca02020-01-17 04:45:59 +0300271 int ring_fd;
272 struct file *ring_file;
Jens Axboe6b063142019-01-10 22:13:58 -0700273
Jens Axboeedafcce2019-01-09 09:16:05 -0700274 /* if used, fixed mapped user buffers */
275 unsigned nr_user_bufs;
276 struct io_mapped_ubuf *user_bufs;
277
Jens Axboe2b188cc2019-01-07 10:46:33 -0700278 struct user_struct *user;
279
Jens Axboe0b8c0ec2019-12-02 08:50:00 -0700280 const struct cred *creds;
Jens Axboe181e4482019-11-25 08:52:30 -0700281
Jens Axboe206aefd2019-11-07 18:27:42 -0700282 /* 0 is for ctx quiesce/reinit/free, 1 is for sqo_thread started */
283 struct completion *completions;
284
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700285 /* if all else fails... */
286 struct io_kiocb *fallback_req;
287
Jens Axboe206aefd2019-11-07 18:27:42 -0700288#if defined(CONFIG_UNIX)
289 struct socket *ring_sock;
290#endif
291
Jens Axboe5a2e7452020-02-23 16:23:11 -0700292 struct idr io_buffer_idr;
293
Jens Axboe071698e2020-01-28 10:04:42 -0700294 struct idr personality_idr;
295
Jens Axboe206aefd2019-11-07 18:27:42 -0700296 struct {
297 unsigned cached_cq_tail;
298 unsigned cq_entries;
299 unsigned cq_mask;
300 atomic_t cq_timeouts;
Jens Axboead3eb2c2019-12-18 17:12:20 -0700301 unsigned long cq_check_overflow;
Jens Axboe206aefd2019-11-07 18:27:42 -0700302 struct wait_queue_head cq_wait;
303 struct fasync_struct *cq_fasync;
304 struct eventfd_ctx *cq_ev_fd;
305 } ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700306
307 struct {
308 struct mutex uring_lock;
309 wait_queue_head_t wait;
310 } ____cacheline_aligned_in_smp;
311
312 struct {
313 spinlock_t completion_lock;
Jens Axboee94f1412019-12-19 12:06:02 -0700314
Jens Axboedef596e2019-01-09 08:59:42 -0700315 /*
316 * ->poll_list is protected by the ctx->uring_lock for
317 * io_uring instances that don't use IORING_SETUP_SQPOLL.
318 * For SQPOLL, only the single threaded io_sq_thread() will
319 * manipulate the list, hence no extra locking is needed there.
320 */
321 struct list_head poll_list;
Jens Axboe78076bb2019-12-04 19:56:40 -0700322 struct hlist_head *cancel_hash;
323 unsigned cancel_hash_bits;
Jens Axboee94f1412019-12-19 12:06:02 -0700324 bool poll_multi_file;
Jens Axboefcb323c2019-10-24 12:39:47 -0600325
326 spinlock_t inflight_lock;
327 struct list_head inflight_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700328 } ____cacheline_aligned_in_smp;
Jens Axboe85faa7b2020-04-09 18:14:00 -0600329
330 struct work_struct exit_work;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700331};
332
Jens Axboe09bb8392019-03-13 12:39:28 -0600333/*
334 * First field must be the file pointer in all the
335 * iocb unions! See also 'struct kiocb' in <linux/fs.h>
336 */
Jens Axboe221c5eb2019-01-17 09:41:58 -0700337struct io_poll_iocb {
338 struct file *file;
Jens Axboe0969e782019-12-17 18:40:57 -0700339 union {
340 struct wait_queue_head *head;
341 u64 addr;
342 };
Jens Axboe221c5eb2019-01-17 09:41:58 -0700343 __poll_t events;
Jens Axboe8c838782019-03-12 15:48:16 -0600344 bool done;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700345 bool canceled;
Jens Axboe392edb42019-12-09 17:52:20 -0700346 struct wait_queue_entry wait;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700347};
348
Jens Axboeb5dba592019-12-11 14:02:38 -0700349struct io_close {
350 struct file *file;
351 struct file *put_file;
352 int fd;
353};
354
Jens Axboead8a48a2019-11-15 08:49:11 -0700355struct io_timeout_data {
356 struct io_kiocb *req;
357 struct hrtimer timer;
358 struct timespec64 ts;
359 enum hrtimer_mode mode;
360};
361
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700362struct io_accept {
363 struct file *file;
364 struct sockaddr __user *addr;
365 int __user *addr_len;
366 int flags;
Jens Axboe09952e32020-03-19 20:16:56 -0600367 unsigned long nofile;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700368};
369
370struct io_sync {
371 struct file *file;
372 loff_t len;
373 loff_t off;
374 int flags;
Jens Axboed63d1b52019-12-10 10:38:56 -0700375 int mode;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700376};
377
Jens Axboefbf23842019-12-17 18:45:56 -0700378struct io_cancel {
379 struct file *file;
380 u64 addr;
381};
382
Jens Axboeb29472e2019-12-17 18:50:29 -0700383struct io_timeout {
384 struct file *file;
385 u64 addr;
386 int flags;
Pavel Begunkovb55ce732020-04-15 00:39:49 +0300387 u32 count;
Jens Axboeb29472e2019-12-17 18:50:29 -0700388};
389
Jens Axboe9adbd452019-12-20 08:45:55 -0700390struct io_rw {
391 /* NOTE: kiocb has the file as the first member, so don't do it here */
392 struct kiocb kiocb;
393 u64 addr;
394 u64 len;
395};
396
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700397struct io_connect {
398 struct file *file;
399 struct sockaddr __user *addr;
400 int addr_len;
401};
402
Jens Axboee47293f2019-12-20 08:58:21 -0700403struct io_sr_msg {
404 struct file *file;
Jens Axboefddafac2020-01-04 20:19:44 -0700405 union {
406 struct user_msghdr __user *msg;
407 void __user *buf;
408 };
Jens Axboee47293f2019-12-20 08:58:21 -0700409 int msg_flags;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700410 int bgid;
Jens Axboefddafac2020-01-04 20:19:44 -0700411 size_t len;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700412 struct io_buffer *kbuf;
Jens Axboee47293f2019-12-20 08:58:21 -0700413};
414
Jens Axboe15b71ab2019-12-11 11:20:36 -0700415struct io_open {
416 struct file *file;
417 int dfd;
Jens Axboeeddc7ef2019-12-13 21:18:10 -0700418 union {
Jens Axboeeddc7ef2019-12-13 21:18:10 -0700419 unsigned mask;
420 };
Jens Axboe15b71ab2019-12-11 11:20:36 -0700421 struct filename *filename;
Jens Axboeeddc7ef2019-12-13 21:18:10 -0700422 struct statx __user *buffer;
Jens Axboec12cedf2020-01-08 17:41:21 -0700423 struct open_how how;
Jens Axboe4022e7a2020-03-19 19:23:18 -0600424 unsigned long nofile;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700425};
426
Jens Axboe05f3fb32019-12-09 11:22:50 -0700427struct io_files_update {
428 struct file *file;
429 u64 arg;
430 u32 nr_args;
431 u32 offset;
432};
433
Jens Axboe4840e412019-12-25 22:03:45 -0700434struct io_fadvise {
435 struct file *file;
436 u64 offset;
437 u32 len;
438 u32 advice;
439};
440
Jens Axboec1ca7572019-12-25 22:18:28 -0700441struct io_madvise {
442 struct file *file;
443 u64 addr;
444 u32 len;
445 u32 advice;
446};
447
Jens Axboe3e4827b2020-01-08 15:18:09 -0700448struct io_epoll {
449 struct file *file;
450 int epfd;
451 int op;
452 int fd;
453 struct epoll_event event;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700454};
455
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300456struct io_splice {
457 struct file *file_out;
458 struct file *file_in;
459 loff_t off_out;
460 loff_t off_in;
461 u64 len;
462 unsigned int flags;
463};
464
Jens Axboeddf0322d2020-02-23 16:41:33 -0700465struct io_provide_buf {
466 struct file *file;
467 __u64 addr;
468 __s32 len;
469 __u32 bgid;
470 __u16 nbufs;
471 __u16 bid;
472};
473
Jens Axboef499a022019-12-02 16:28:46 -0700474struct io_async_connect {
475 struct sockaddr_storage address;
476};
477
Jens Axboe03b12302019-12-02 18:50:25 -0700478struct io_async_msghdr {
479 struct iovec fast_iov[UIO_FASTIOV];
480 struct iovec *iov;
481 struct sockaddr __user *uaddr;
482 struct msghdr msg;
Jens Axboeb5379162020-02-09 11:29:15 -0700483 struct sockaddr_storage addr;
Jens Axboe03b12302019-12-02 18:50:25 -0700484};
485
Jens Axboef67676d2019-12-02 11:03:47 -0700486struct io_async_rw {
487 struct iovec fast_iov[UIO_FASTIOV];
488 struct iovec *iov;
489 ssize_t nr_segs;
490 ssize_t size;
491};
492
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700493struct io_async_ctx {
Jens Axboef67676d2019-12-02 11:03:47 -0700494 union {
495 struct io_async_rw rw;
Jens Axboe03b12302019-12-02 18:50:25 -0700496 struct io_async_msghdr msg;
Jens Axboef499a022019-12-02 16:28:46 -0700497 struct io_async_connect connect;
Jens Axboe2d283902019-12-04 11:08:05 -0700498 struct io_timeout_data timeout;
Jens Axboef67676d2019-12-02 11:03:47 -0700499 };
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700500};
501
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300502enum {
503 REQ_F_FIXED_FILE_BIT = IOSQE_FIXED_FILE_BIT,
504 REQ_F_IO_DRAIN_BIT = IOSQE_IO_DRAIN_BIT,
505 REQ_F_LINK_BIT = IOSQE_IO_LINK_BIT,
506 REQ_F_HARDLINK_BIT = IOSQE_IO_HARDLINK_BIT,
507 REQ_F_FORCE_ASYNC_BIT = IOSQE_ASYNC_BIT,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700508 REQ_F_BUFFER_SELECT_BIT = IOSQE_BUFFER_SELECT_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300509
Pavel Begunkovdea3b492020-04-12 02:05:04 +0300510 REQ_F_LINK_HEAD_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300511 REQ_F_LINK_NEXT_BIT,
512 REQ_F_FAIL_LINK_BIT,
513 REQ_F_INFLIGHT_BIT,
514 REQ_F_CUR_POS_BIT,
515 REQ_F_NOWAIT_BIT,
516 REQ_F_IOPOLL_COMPLETED_BIT,
517 REQ_F_LINK_TIMEOUT_BIT,
518 REQ_F_TIMEOUT_BIT,
519 REQ_F_ISREG_BIT,
520 REQ_F_MUST_PUNT_BIT,
521 REQ_F_TIMEOUT_NOSEQ_BIT,
522 REQ_F_COMP_LOCKED_BIT,
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300523 REQ_F_NEED_CLEANUP_BIT,
Jens Axboe2ca10252020-02-13 17:17:35 -0700524 REQ_F_OVERFLOW_BIT,
Jens Axboed7718a92020-02-14 22:23:12 -0700525 REQ_F_POLLED_BIT,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700526 REQ_F_BUFFER_SELECTED_BIT,
Jens Axboe5b0bbee2020-04-27 10:41:22 -0600527 REQ_F_NO_FILE_TABLE_BIT,
Jens Axboe84557872020-03-03 15:28:17 -0700528
529 /* not a real bit, just to check we're not overflowing the space */
530 __REQ_F_LAST_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300531};
532
533enum {
534 /* ctx owns file */
535 REQ_F_FIXED_FILE = BIT(REQ_F_FIXED_FILE_BIT),
536 /* drain existing IO first */
537 REQ_F_IO_DRAIN = BIT(REQ_F_IO_DRAIN_BIT),
538 /* linked sqes */
539 REQ_F_LINK = BIT(REQ_F_LINK_BIT),
540 /* doesn't sever on completion < 0 */
541 REQ_F_HARDLINK = BIT(REQ_F_HARDLINK_BIT),
542 /* IOSQE_ASYNC */
543 REQ_F_FORCE_ASYNC = BIT(REQ_F_FORCE_ASYNC_BIT),
Jens Axboebcda7ba2020-02-23 16:42:51 -0700544 /* IOSQE_BUFFER_SELECT */
545 REQ_F_BUFFER_SELECT = BIT(REQ_F_BUFFER_SELECT_BIT),
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300546
Pavel Begunkovdea3b492020-04-12 02:05:04 +0300547 /* head of a link */
548 REQ_F_LINK_HEAD = BIT(REQ_F_LINK_HEAD_BIT),
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300549 /* already grabbed next link */
550 REQ_F_LINK_NEXT = BIT(REQ_F_LINK_NEXT_BIT),
551 /* fail rest of links */
552 REQ_F_FAIL_LINK = BIT(REQ_F_FAIL_LINK_BIT),
553 /* on inflight list */
554 REQ_F_INFLIGHT = BIT(REQ_F_INFLIGHT_BIT),
555 /* read/write uses file position */
556 REQ_F_CUR_POS = BIT(REQ_F_CUR_POS_BIT),
557 /* must not punt to workers */
558 REQ_F_NOWAIT = BIT(REQ_F_NOWAIT_BIT),
559 /* polled IO has completed */
560 REQ_F_IOPOLL_COMPLETED = BIT(REQ_F_IOPOLL_COMPLETED_BIT),
561 /* has linked timeout */
562 REQ_F_LINK_TIMEOUT = BIT(REQ_F_LINK_TIMEOUT_BIT),
563 /* timeout request */
564 REQ_F_TIMEOUT = BIT(REQ_F_TIMEOUT_BIT),
565 /* regular file */
566 REQ_F_ISREG = BIT(REQ_F_ISREG_BIT),
567 /* must be punted even for NONBLOCK */
568 REQ_F_MUST_PUNT = BIT(REQ_F_MUST_PUNT_BIT),
569 /* no timeout sequence */
570 REQ_F_TIMEOUT_NOSEQ = BIT(REQ_F_TIMEOUT_NOSEQ_BIT),
571 /* completion under lock */
572 REQ_F_COMP_LOCKED = BIT(REQ_F_COMP_LOCKED_BIT),
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300573 /* needs cleanup */
574 REQ_F_NEED_CLEANUP = BIT(REQ_F_NEED_CLEANUP_BIT),
Jens Axboe2ca10252020-02-13 17:17:35 -0700575 /* in overflow list */
576 REQ_F_OVERFLOW = BIT(REQ_F_OVERFLOW_BIT),
Jens Axboed7718a92020-02-14 22:23:12 -0700577 /* already went through poll handler */
578 REQ_F_POLLED = BIT(REQ_F_POLLED_BIT),
Jens Axboebcda7ba2020-02-23 16:42:51 -0700579 /* buffer already selected */
580 REQ_F_BUFFER_SELECTED = BIT(REQ_F_BUFFER_SELECTED_BIT),
Jens Axboe5b0bbee2020-04-27 10:41:22 -0600581 /* doesn't need file table for this request */
582 REQ_F_NO_FILE_TABLE = BIT(REQ_F_NO_FILE_TABLE_BIT),
Jens Axboed7718a92020-02-14 22:23:12 -0700583};
584
585struct async_poll {
586 struct io_poll_iocb poll;
587 struct io_wq_work work;
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300588};
589
Jens Axboe09bb8392019-03-13 12:39:28 -0600590/*
591 * NOTE! Each of the iocb union members has the file pointer
592 * as the first entry in their struct definition. So you can
593 * access the file pointer through any of the sub-structs,
594 * or directly as just 'ki_filp' in this struct.
595 */
Jens Axboe2b188cc2019-01-07 10:46:33 -0700596struct io_kiocb {
Jens Axboe221c5eb2019-01-17 09:41:58 -0700597 union {
Jens Axboe09bb8392019-03-13 12:39:28 -0600598 struct file *file;
Jens Axboe9adbd452019-12-20 08:45:55 -0700599 struct io_rw rw;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700600 struct io_poll_iocb poll;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700601 struct io_accept accept;
602 struct io_sync sync;
Jens Axboefbf23842019-12-17 18:45:56 -0700603 struct io_cancel cancel;
Jens Axboeb29472e2019-12-17 18:50:29 -0700604 struct io_timeout timeout;
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700605 struct io_connect connect;
Jens Axboee47293f2019-12-20 08:58:21 -0700606 struct io_sr_msg sr_msg;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700607 struct io_open open;
Jens Axboeb5dba592019-12-11 14:02:38 -0700608 struct io_close close;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700609 struct io_files_update files_update;
Jens Axboe4840e412019-12-25 22:03:45 -0700610 struct io_fadvise fadvise;
Jens Axboec1ca7572019-12-25 22:18:28 -0700611 struct io_madvise madvise;
Jens Axboe3e4827b2020-01-08 15:18:09 -0700612 struct io_epoll epoll;
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300613 struct io_splice splice;
Jens Axboeddf0322d2020-02-23 16:41:33 -0700614 struct io_provide_buf pbuf;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700615 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700616
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700617 struct io_async_ctx *io;
Pavel Begunkovc398ecb2020-04-09 08:17:59 +0300618 int cflags;
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +0300619 bool needs_fixed_file;
Jens Axboed625c6e2019-12-17 19:53:05 -0700620 u8 opcode;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700621
622 struct io_ring_ctx *ctx;
Jens Axboed7718a92020-02-14 22:23:12 -0700623 struct list_head list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700624 unsigned int flags;
Jens Axboec16361c2019-01-17 08:39:48 -0700625 refcount_t refs;
Jens Axboe3537b6a2020-04-03 11:19:06 -0600626 struct task_struct *task;
627 unsigned long fsize;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700628 u64 user_data;
Jens Axboe9e645e112019-05-10 16:07:28 -0600629 u32 result;
Jens Axboede0617e2019-04-06 21:51:27 -0600630 u32 sequence;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700631
Jens Axboed7718a92020-02-14 22:23:12 -0700632 struct list_head link_list;
633
Jens Axboefcb323c2019-10-24 12:39:47 -0600634 struct list_head inflight_entry;
635
Xiaoguang Wang05589552020-03-31 14:05:18 +0800636 struct percpu_ref *fixed_file_refs;
637
Jens Axboeb41e9852020-02-17 09:52:41 -0700638 union {
639 /*
640 * Only commands that never go async can use the below fields,
Jens Axboed7718a92020-02-14 22:23:12 -0700641 * obviously. Right now only IORING_OP_POLL_ADD uses them, and
642 * async armed poll handlers for regular commands. The latter
643 * restore the work, if needed.
Jens Axboeb41e9852020-02-17 09:52:41 -0700644 */
645 struct {
Jens Axboeb41e9852020-02-17 09:52:41 -0700646 struct callback_head task_work;
Jens Axboed7718a92020-02-14 22:23:12 -0700647 struct hlist_node hash_node;
648 struct async_poll *apoll;
Jens Axboeb41e9852020-02-17 09:52:41 -0700649 };
650 struct io_wq_work work;
651 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700652};
653
654#define IO_PLUG_THRESHOLD 2
Jens Axboedef596e2019-01-09 08:59:42 -0700655#define IO_IOPOLL_BATCH 8
Jens Axboe2b188cc2019-01-07 10:46:33 -0700656
Jens Axboe9a56a232019-01-09 09:06:50 -0700657struct io_submit_state {
658 struct blk_plug plug;
659
660 /*
Jens Axboe2579f912019-01-09 09:10:43 -0700661 * io_kiocb alloc cache
662 */
663 void *reqs[IO_IOPOLL_BATCH];
Pavel Begunkov6c8a3132020-02-01 03:58:00 +0300664 unsigned int free_reqs;
Jens Axboe2579f912019-01-09 09:10:43 -0700665
666 /*
Jens Axboe9a56a232019-01-09 09:06:50 -0700667 * File reference cache
668 */
669 struct file *file;
670 unsigned int fd;
671 unsigned int has_refs;
672 unsigned int used_refs;
673 unsigned int ios_left;
674};
675
Jens Axboed3656342019-12-18 09:50:26 -0700676struct io_op_def {
677 /* needs req->io allocated for deferral/async */
678 unsigned async_ctx : 1;
679 /* needs current->mm setup, does mm access */
680 unsigned needs_mm : 1;
681 /* needs req->file assigned */
682 unsigned needs_file : 1;
683 /* needs req->file assigned IFF fd is >= 0 */
684 unsigned fd_non_neg : 1;
685 /* hash wq insertion if file is a regular file */
686 unsigned hash_reg_file : 1;
687 /* unbound wq insertion if file is a non-regular file */
688 unsigned unbound_nonreg_file : 1;
Jens Axboe66f4af92020-01-16 15:36:52 -0700689 /* opcode is not supported by this kernel */
690 unsigned not_supported : 1;
Jens Axboef86cd202020-01-29 13:46:44 -0700691 /* needs file table */
692 unsigned file_table : 1;
Jens Axboeff002b32020-02-07 16:05:21 -0700693 /* needs ->fs */
694 unsigned needs_fs : 1;
Jens Axboe8a727582020-02-20 09:59:44 -0700695 /* set if opcode supports polled "wait" */
696 unsigned pollin : 1;
697 unsigned pollout : 1;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700698 /* op supports buffer selection */
699 unsigned buffer_select : 1;
Jens Axboed3656342019-12-18 09:50:26 -0700700};
701
702static const struct io_op_def io_op_defs[] = {
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300703 [IORING_OP_NOP] = {},
704 [IORING_OP_READV] = {
Jens Axboed3656342019-12-18 09:50:26 -0700705 .async_ctx = 1,
706 .needs_mm = 1,
707 .needs_file = 1,
708 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700709 .pollin = 1,
Jens Axboe4d954c22020-02-27 07:31:19 -0700710 .buffer_select = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700711 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300712 [IORING_OP_WRITEV] = {
Jens Axboed3656342019-12-18 09:50:26 -0700713 .async_ctx = 1,
714 .needs_mm = 1,
715 .needs_file = 1,
716 .hash_reg_file = 1,
717 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700718 .pollout = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700719 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300720 [IORING_OP_FSYNC] = {
Jens Axboed3656342019-12-18 09:50:26 -0700721 .needs_file = 1,
722 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300723 [IORING_OP_READ_FIXED] = {
Jens Axboed3656342019-12-18 09:50:26 -0700724 .needs_file = 1,
725 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700726 .pollin = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700727 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300728 [IORING_OP_WRITE_FIXED] = {
Jens Axboed3656342019-12-18 09:50:26 -0700729 .needs_file = 1,
730 .hash_reg_file = 1,
731 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700732 .pollout = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700733 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300734 [IORING_OP_POLL_ADD] = {
Jens Axboed3656342019-12-18 09:50:26 -0700735 .needs_file = 1,
736 .unbound_nonreg_file = 1,
737 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300738 [IORING_OP_POLL_REMOVE] = {},
739 [IORING_OP_SYNC_FILE_RANGE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700740 .needs_file = 1,
741 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300742 [IORING_OP_SENDMSG] = {
Jens Axboed3656342019-12-18 09:50:26 -0700743 .async_ctx = 1,
744 .needs_mm = 1,
745 .needs_file = 1,
746 .unbound_nonreg_file = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700747 .needs_fs = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700748 .pollout = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700749 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300750 [IORING_OP_RECVMSG] = {
Jens Axboed3656342019-12-18 09:50:26 -0700751 .async_ctx = 1,
752 .needs_mm = 1,
753 .needs_file = 1,
754 .unbound_nonreg_file = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700755 .needs_fs = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700756 .pollin = 1,
Jens Axboe52de1fe2020-02-27 10:15:42 -0700757 .buffer_select = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700758 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300759 [IORING_OP_TIMEOUT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700760 .async_ctx = 1,
761 .needs_mm = 1,
762 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300763 [IORING_OP_TIMEOUT_REMOVE] = {},
764 [IORING_OP_ACCEPT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700765 .needs_mm = 1,
766 .needs_file = 1,
767 .unbound_nonreg_file = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700768 .file_table = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700769 .pollin = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700770 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300771 [IORING_OP_ASYNC_CANCEL] = {},
772 [IORING_OP_LINK_TIMEOUT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700773 .async_ctx = 1,
774 .needs_mm = 1,
775 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300776 [IORING_OP_CONNECT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700777 .async_ctx = 1,
778 .needs_mm = 1,
779 .needs_file = 1,
780 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700781 .pollout = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700782 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300783 [IORING_OP_FALLOCATE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700784 .needs_file = 1,
785 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300786 [IORING_OP_OPENAT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700787 .needs_file = 1,
788 .fd_non_neg = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700789 .file_table = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700790 .needs_fs = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700791 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300792 [IORING_OP_CLOSE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700793 .needs_file = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700794 .file_table = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700795 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300796 [IORING_OP_FILES_UPDATE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700797 .needs_mm = 1,
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_STATX] = {
Jens Axboed3656342019-12-18 09:50:26 -0700801 .needs_mm = 1,
802 .needs_file = 1,
803 .fd_non_neg = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700804 .needs_fs = 1,
Jens Axboe5b0bbee2020-04-27 10:41:22 -0600805 .file_table = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700806 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300807 [IORING_OP_READ] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -0700808 .needs_mm = 1,
809 .needs_file = 1,
810 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700811 .pollin = 1,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700812 .buffer_select = 1,
Jens Axboe3a6820f2019-12-22 15:19:35 -0700813 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300814 [IORING_OP_WRITE] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -0700815 .needs_mm = 1,
816 .needs_file = 1,
817 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700818 .pollout = 1,
Jens Axboe3a6820f2019-12-22 15:19:35 -0700819 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300820 [IORING_OP_FADVISE] = {
Jens Axboe4840e412019-12-25 22:03:45 -0700821 .needs_file = 1,
822 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300823 [IORING_OP_MADVISE] = {
Jens Axboec1ca7572019-12-25 22:18:28 -0700824 .needs_mm = 1,
825 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300826 [IORING_OP_SEND] = {
Jens Axboefddafac2020-01-04 20:19:44 -0700827 .needs_mm = 1,
828 .needs_file = 1,
829 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700830 .pollout = 1,
Jens Axboefddafac2020-01-04 20:19:44 -0700831 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300832 [IORING_OP_RECV] = {
Jens Axboefddafac2020-01-04 20:19:44 -0700833 .needs_mm = 1,
834 .needs_file = 1,
835 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700836 .pollin = 1,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700837 .buffer_select = 1,
Jens Axboefddafac2020-01-04 20:19:44 -0700838 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300839 [IORING_OP_OPENAT2] = {
Jens Axboecebdb982020-01-08 17:59:24 -0700840 .needs_file = 1,
841 .fd_non_neg = 1,
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
891static void io_ring_ctx_ref_free(struct percpu_ref *ref)
892{
893 struct io_ring_ctx *ctx = container_of(ref, struct io_ring_ctx, refs);
894
Jens Axboe206aefd2019-11-07 18:27:42 -0700895 complete(&ctx->completions[0]);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700896}
897
898static struct io_ring_ctx *io_ring_ctx_alloc(struct io_uring_params *p)
899{
900 struct io_ring_ctx *ctx;
Jens Axboe78076bb2019-12-04 19:56:40 -0700901 int hash_bits;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700902
903 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
904 if (!ctx)
905 return NULL;
906
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700907 ctx->fallback_req = kmem_cache_alloc(req_cachep, GFP_KERNEL);
908 if (!ctx->fallback_req)
909 goto err;
910
Jens Axboe206aefd2019-11-07 18:27:42 -0700911 ctx->completions = kmalloc(2 * sizeof(struct completion), GFP_KERNEL);
912 if (!ctx->completions)
913 goto err;
914
Jens Axboe78076bb2019-12-04 19:56:40 -0700915 /*
916 * Use 5 bits less than the max cq entries, that should give us around
917 * 32 entries per hash list if totally full and uniformly spread.
918 */
919 hash_bits = ilog2(p->cq_entries);
920 hash_bits -= 5;
921 if (hash_bits <= 0)
922 hash_bits = 1;
923 ctx->cancel_hash_bits = hash_bits;
924 ctx->cancel_hash = kmalloc((1U << hash_bits) * sizeof(struct hlist_head),
925 GFP_KERNEL);
926 if (!ctx->cancel_hash)
927 goto err;
928 __hash_init(ctx->cancel_hash, 1U << hash_bits);
929
Roman Gushchin21482892019-05-07 10:01:48 -0700930 if (percpu_ref_init(&ctx->refs, io_ring_ctx_ref_free,
Jens Axboe206aefd2019-11-07 18:27:42 -0700931 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL))
932 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700933
934 ctx->flags = p->flags;
935 init_waitqueue_head(&ctx->cq_wait);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700936 INIT_LIST_HEAD(&ctx->cq_overflow_list);
Jens Axboe206aefd2019-11-07 18:27:42 -0700937 init_completion(&ctx->completions[0]);
938 init_completion(&ctx->completions[1]);
Jens Axboe5a2e7452020-02-23 16:23:11 -0700939 idr_init(&ctx->io_buffer_idr);
Jens Axboe071698e2020-01-28 10:04:42 -0700940 idr_init(&ctx->personality_idr);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700941 mutex_init(&ctx->uring_lock);
942 init_waitqueue_head(&ctx->wait);
943 spin_lock_init(&ctx->completion_lock);
Jens Axboedef596e2019-01-09 08:59:42 -0700944 INIT_LIST_HEAD(&ctx->poll_list);
Jens Axboede0617e2019-04-06 21:51:27 -0600945 INIT_LIST_HEAD(&ctx->defer_list);
Jens Axboe5262f562019-09-17 12:26:57 -0600946 INIT_LIST_HEAD(&ctx->timeout_list);
Jens Axboefcb323c2019-10-24 12:39:47 -0600947 init_waitqueue_head(&ctx->inflight_wait);
948 spin_lock_init(&ctx->inflight_lock);
949 INIT_LIST_HEAD(&ctx->inflight_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700950 return ctx;
Jens Axboe206aefd2019-11-07 18:27:42 -0700951err:
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700952 if (ctx->fallback_req)
953 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe206aefd2019-11-07 18:27:42 -0700954 kfree(ctx->completions);
Jens Axboe78076bb2019-12-04 19:56:40 -0700955 kfree(ctx->cancel_hash);
Jens Axboe206aefd2019-11-07 18:27:42 -0700956 kfree(ctx);
957 return NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700958}
959
Bob Liu9d858b22019-11-13 18:06:25 +0800960static inline bool __req_need_defer(struct io_kiocb *req)
Jens Axboede0617e2019-04-06 21:51:27 -0600961{
Jackie Liua197f662019-11-08 08:09:12 -0700962 struct io_ring_ctx *ctx = req->ctx;
963
Pavel Begunkov31af27c2020-04-15 00:39:50 +0300964 return req->sequence != ctx->cached_cq_tail
965 + atomic_read(&ctx->cached_cq_overflow);
Jens Axboede0617e2019-04-06 21:51:27 -0600966}
967
Bob Liu9d858b22019-11-13 18:06:25 +0800968static inline bool req_need_defer(struct io_kiocb *req)
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600969{
Pavel Begunkov87987892020-01-18 01:22:30 +0300970 if (unlikely(req->flags & REQ_F_IO_DRAIN))
Bob Liu9d858b22019-11-13 18:06:25 +0800971 return __req_need_defer(req);
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600972
Bob Liu9d858b22019-11-13 18:06:25 +0800973 return false;
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600974}
975
976static struct io_kiocb *io_get_deferred_req(struct io_ring_ctx *ctx)
Jens Axboede0617e2019-04-06 21:51:27 -0600977{
978 struct io_kiocb *req;
979
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600980 req = list_first_entry_or_null(&ctx->defer_list, struct io_kiocb, list);
Bob Liu9d858b22019-11-13 18:06:25 +0800981 if (req && !req_need_defer(req)) {
Jens Axboede0617e2019-04-06 21:51:27 -0600982 list_del_init(&req->list);
983 return req;
984 }
985
986 return NULL;
987}
988
Jens Axboe5262f562019-09-17 12:26:57 -0600989static struct io_kiocb *io_get_timeout_req(struct io_ring_ctx *ctx)
990{
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600991 struct io_kiocb *req;
992
993 req = list_first_entry_or_null(&ctx->timeout_list, struct io_kiocb, list);
Jens Axboe93bd25b2019-11-11 23:34:31 -0700994 if (req) {
995 if (req->flags & REQ_F_TIMEOUT_NOSEQ)
996 return NULL;
Linus Torvaldsfb4b3d32019-11-25 10:40:27 -0800997 if (!__req_need_defer(req)) {
Jens Axboe93bd25b2019-11-11 23:34:31 -0700998 list_del_init(&req->list);
999 return req;
1000 }
Jens Axboe7adf4ea2019-10-10 21:42:58 -06001001 }
1002
1003 return NULL;
Jens Axboe5262f562019-09-17 12:26:57 -06001004}
1005
Jens Axboede0617e2019-04-06 21:51:27 -06001006static void __io_commit_cqring(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001007{
Hristo Venev75b28af2019-08-26 17:23:46 +00001008 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001009
Pavel Begunkov07910152020-01-17 03:52:46 +03001010 /* order cqe stores with ring update */
1011 smp_store_release(&rings->cq.tail, ctx->cached_cq_tail);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001012
Pavel Begunkov07910152020-01-17 03:52:46 +03001013 if (wq_has_sleeper(&ctx->cq_wait)) {
1014 wake_up_interruptible(&ctx->cq_wait);
1015 kill_fasync(&ctx->cq_fasync, SIGIO, POLL_IN);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001016 }
1017}
1018
Jens Axboecccf0ee2020-01-27 16:34:48 -07001019static inline void io_req_work_grab_env(struct io_kiocb *req,
1020 const struct io_op_def *def)
Jens Axboe18d9be12019-09-10 09:13:05 -06001021{
Jens Axboecccf0ee2020-01-27 16:34:48 -07001022 if (!req->work.mm && def->needs_mm) {
1023 mmgrab(current->mm);
1024 req->work.mm = current->mm;
1025 }
1026 if (!req->work.creds)
1027 req->work.creds = get_current_cred();
Jens Axboeff002b32020-02-07 16:05:21 -07001028 if (!req->work.fs && def->needs_fs) {
1029 spin_lock(&current->fs->lock);
1030 if (!current->fs->in_exec) {
1031 req->work.fs = current->fs;
1032 req->work.fs->users++;
1033 } else {
1034 req->work.flags |= IO_WQ_WORK_CANCEL;
1035 }
1036 spin_unlock(&current->fs->lock);
1037 }
Jens Axboe6ab23142020-02-08 20:23:59 -07001038 if (!req->work.task_pid)
1039 req->work.task_pid = task_pid_vnr(current);
Jens Axboecccf0ee2020-01-27 16:34:48 -07001040}
1041
1042static inline void io_req_work_drop_env(struct io_kiocb *req)
1043{
1044 if (req->work.mm) {
1045 mmdrop(req->work.mm);
1046 req->work.mm = NULL;
1047 }
1048 if (req->work.creds) {
1049 put_cred(req->work.creds);
1050 req->work.creds = NULL;
1051 }
Jens Axboeff002b32020-02-07 16:05:21 -07001052 if (req->work.fs) {
1053 struct fs_struct *fs = req->work.fs;
1054
1055 spin_lock(&req->work.fs->lock);
1056 if (--fs->users)
1057 fs = NULL;
1058 spin_unlock(&req->work.fs->lock);
1059 if (fs)
1060 free_fs_struct(fs);
1061 }
Jens Axboe561fb042019-10-24 07:25:42 -06001062}
1063
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001064static inline void io_prep_async_work(struct io_kiocb *req,
Jens Axboe94ae5e72019-11-14 19:39:52 -07001065 struct io_kiocb **link)
Jens Axboe561fb042019-10-24 07:25:42 -06001066{
Jens Axboed3656342019-12-18 09:50:26 -07001067 const struct io_op_def *def = &io_op_defs[req->opcode];
Jens Axboe54a91f32019-09-10 09:15:04 -06001068
Jens Axboed3656342019-12-18 09:50:26 -07001069 if (req->flags & REQ_F_ISREG) {
1070 if (def->hash_reg_file)
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001071 io_wq_hash_work(&req->work, file_inode(req->file));
Jens Axboed3656342019-12-18 09:50:26 -07001072 } else {
1073 if (def->unbound_nonreg_file)
Jens Axboe3529d8c2019-12-19 18:24:38 -07001074 req->work.flags |= IO_WQ_WORK_UNBOUND;
Jens Axboe54a91f32019-09-10 09:15:04 -06001075 }
Jens Axboecccf0ee2020-01-27 16:34:48 -07001076
1077 io_req_work_grab_env(req, def);
Jens Axboe54a91f32019-09-10 09:15:04 -06001078
Jens Axboe94ae5e72019-11-14 19:39:52 -07001079 *link = io_prep_linked_timeout(req);
Jens Axboe561fb042019-10-24 07:25:42 -06001080}
1081
Jackie Liua197f662019-11-08 08:09:12 -07001082static inline void io_queue_async_work(struct io_kiocb *req)
Jens Axboe561fb042019-10-24 07:25:42 -06001083{
Jackie Liua197f662019-11-08 08:09:12 -07001084 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001085 struct io_kiocb *link;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001086
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001087 io_prep_async_work(req, &link);
Jens Axboe561fb042019-10-24 07:25:42 -06001088
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001089 trace_io_uring_queue_async_work(ctx, io_wq_is_hashed(&req->work), req,
1090 &req->work, req->flags);
1091 io_wq_enqueue(ctx->io_wq, &req->work);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001092
1093 if (link)
1094 io_queue_linked_timeout(link);
Jens Axboe18d9be12019-09-10 09:13:05 -06001095}
1096
Jens Axboe5262f562019-09-17 12:26:57 -06001097static void io_kill_timeout(struct io_kiocb *req)
1098{
1099 int ret;
1100
Jens Axboe2d283902019-12-04 11:08:05 -07001101 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe5262f562019-09-17 12:26:57 -06001102 if (ret != -1) {
1103 atomic_inc(&req->ctx->cq_timeouts);
Jens Axboe842f9612019-10-29 12:34:10 -06001104 list_del_init(&req->list);
Pavel Begunkovf0e20b82020-03-07 01:15:22 +03001105 req->flags |= REQ_F_COMP_LOCKED;
Jens Axboe78e19bb2019-11-06 15:21:34 -07001106 io_cqring_fill_event(req, 0);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001107 io_put_req(req);
Jens Axboe5262f562019-09-17 12:26:57 -06001108 }
1109}
1110
1111static void io_kill_timeouts(struct io_ring_ctx *ctx)
1112{
1113 struct io_kiocb *req, *tmp;
1114
1115 spin_lock_irq(&ctx->completion_lock);
1116 list_for_each_entry_safe(req, tmp, &ctx->timeout_list, list)
1117 io_kill_timeout(req);
1118 spin_unlock_irq(&ctx->completion_lock);
1119}
1120
Jens Axboede0617e2019-04-06 21:51:27 -06001121static void io_commit_cqring(struct io_ring_ctx *ctx)
1122{
1123 struct io_kiocb *req;
1124
Jens Axboe5262f562019-09-17 12:26:57 -06001125 while ((req = io_get_timeout_req(ctx)) != NULL)
1126 io_kill_timeout(req);
1127
Jens Axboede0617e2019-04-06 21:51:27 -06001128 __io_commit_cqring(ctx);
1129
Pavel Begunkov87987892020-01-18 01:22:30 +03001130 while ((req = io_get_deferred_req(ctx)) != NULL)
Jackie Liua197f662019-11-08 08:09:12 -07001131 io_queue_async_work(req);
Jens Axboede0617e2019-04-06 21:51:27 -06001132}
1133
Jens Axboe2b188cc2019-01-07 10:46:33 -07001134static struct io_uring_cqe *io_get_cqring(struct io_ring_ctx *ctx)
1135{
Hristo Venev75b28af2019-08-26 17:23:46 +00001136 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001137 unsigned tail;
1138
1139 tail = ctx->cached_cq_tail;
Stefan Bühler115e12e2019-04-24 23:54:18 +02001140 /*
1141 * writes to the cq entry need to come after reading head; the
1142 * control dependency is enough as we're using WRITE_ONCE to
1143 * fill the cq entry
1144 */
Hristo Venev75b28af2019-08-26 17:23:46 +00001145 if (tail - READ_ONCE(rings->cq.head) == rings->cq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001146 return NULL;
1147
1148 ctx->cached_cq_tail++;
Hristo Venev75b28af2019-08-26 17:23:46 +00001149 return &rings->cqes[tail & ctx->cq_mask];
Jens Axboe2b188cc2019-01-07 10:46:33 -07001150}
1151
Jens Axboef2842ab2020-01-08 11:04:00 -07001152static inline bool io_should_trigger_evfd(struct io_ring_ctx *ctx)
1153{
Jens Axboef0b493e2020-02-01 21:30:11 -07001154 if (!ctx->cq_ev_fd)
1155 return false;
Jens Axboef2842ab2020-01-08 11:04:00 -07001156 if (!ctx->eventfd_async)
1157 return true;
Jens Axboeb41e9852020-02-17 09:52:41 -07001158 return io_wq_current_is_worker();
Jens Axboef2842ab2020-01-08 11:04:00 -07001159}
1160
Jens Axboeb41e9852020-02-17 09:52:41 -07001161static void io_cqring_ev_posted(struct io_ring_ctx *ctx)
Jens Axboe8c838782019-03-12 15:48:16 -06001162{
1163 if (waitqueue_active(&ctx->wait))
1164 wake_up(&ctx->wait);
1165 if (waitqueue_active(&ctx->sqo_wait))
1166 wake_up(&ctx->sqo_wait);
Jens Axboeb41e9852020-02-17 09:52:41 -07001167 if (io_should_trigger_evfd(ctx))
Jens Axboe9b402842019-04-11 11:45:41 -06001168 eventfd_signal(ctx->cq_ev_fd, 1);
Jens Axboe8c838782019-03-12 15:48:16 -06001169}
1170
Jens Axboec4a2ed72019-11-21 21:01:26 -07001171/* Returns true if there are no backlogged entries after the flush */
1172static bool io_cqring_overflow_flush(struct io_ring_ctx *ctx, bool force)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001173{
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001174 struct io_rings *rings = ctx->rings;
1175 struct io_uring_cqe *cqe;
1176 struct io_kiocb *req;
1177 unsigned long flags;
1178 LIST_HEAD(list);
1179
1180 if (!force) {
1181 if (list_empty_careful(&ctx->cq_overflow_list))
Jens Axboec4a2ed72019-11-21 21:01:26 -07001182 return true;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001183 if ((ctx->cached_cq_tail - READ_ONCE(rings->cq.head) ==
1184 rings->cq_ring_entries))
Jens Axboec4a2ed72019-11-21 21:01:26 -07001185 return false;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001186 }
1187
1188 spin_lock_irqsave(&ctx->completion_lock, flags);
1189
1190 /* if force is set, the ring is going away. always drop after that */
1191 if (force)
Jens Axboe69b3e542020-01-08 11:01:46 -07001192 ctx->cq_overflow_flushed = 1;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001193
Jens Axboec4a2ed72019-11-21 21:01:26 -07001194 cqe = NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001195 while (!list_empty(&ctx->cq_overflow_list)) {
1196 cqe = io_get_cqring(ctx);
1197 if (!cqe && !force)
1198 break;
1199
1200 req = list_first_entry(&ctx->cq_overflow_list, struct io_kiocb,
1201 list);
1202 list_move(&req->list, &list);
Jens Axboe2ca10252020-02-13 17:17:35 -07001203 req->flags &= ~REQ_F_OVERFLOW;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001204 if (cqe) {
1205 WRITE_ONCE(cqe->user_data, req->user_data);
1206 WRITE_ONCE(cqe->res, req->result);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001207 WRITE_ONCE(cqe->flags, req->cflags);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001208 } else {
1209 WRITE_ONCE(ctx->rings->cq_overflow,
1210 atomic_inc_return(&ctx->cached_cq_overflow));
1211 }
1212 }
1213
1214 io_commit_cqring(ctx);
Jens Axboead3eb2c2019-12-18 17:12:20 -07001215 if (cqe) {
1216 clear_bit(0, &ctx->sq_check_overflow);
1217 clear_bit(0, &ctx->cq_check_overflow);
1218 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001219 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1220 io_cqring_ev_posted(ctx);
1221
1222 while (!list_empty(&list)) {
1223 req = list_first_entry(&list, struct io_kiocb, list);
1224 list_del(&req->list);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001225 io_put_req(req);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001226 }
Jens Axboec4a2ed72019-11-21 21:01:26 -07001227
1228 return cqe != NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001229}
1230
Jens Axboebcda7ba2020-02-23 16:42:51 -07001231static void __io_cqring_fill_event(struct io_kiocb *req, long res, long cflags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001232{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001233 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001234 struct io_uring_cqe *cqe;
1235
Jens Axboe78e19bb2019-11-06 15:21:34 -07001236 trace_io_uring_complete(ctx, req->user_data, res);
Jens Axboe51c3ff62019-11-03 06:52:50 -07001237
Jens Axboe2b188cc2019-01-07 10:46:33 -07001238 /*
1239 * If we can't get a cq entry, userspace overflowed the
1240 * submission (by quite a lot). Increment the overflow count in
1241 * the ring.
1242 */
1243 cqe = io_get_cqring(ctx);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001244 if (likely(cqe)) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001245 WRITE_ONCE(cqe->user_data, req->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001246 WRITE_ONCE(cqe->res, res);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001247 WRITE_ONCE(cqe->flags, cflags);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001248 } else if (ctx->cq_overflow_flushed) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07001249 WRITE_ONCE(ctx->rings->cq_overflow,
1250 atomic_inc_return(&ctx->cached_cq_overflow));
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001251 } else {
Jens Axboead3eb2c2019-12-18 17:12:20 -07001252 if (list_empty(&ctx->cq_overflow_list)) {
1253 set_bit(0, &ctx->sq_check_overflow);
1254 set_bit(0, &ctx->cq_check_overflow);
1255 }
Jens Axboe2ca10252020-02-13 17:17:35 -07001256 req->flags |= REQ_F_OVERFLOW;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001257 refcount_inc(&req->refs);
1258 req->result = res;
Jens Axboebcda7ba2020-02-23 16:42:51 -07001259 req->cflags = cflags;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001260 list_add_tail(&req->list, &ctx->cq_overflow_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001261 }
1262}
1263
Jens Axboebcda7ba2020-02-23 16:42:51 -07001264static void io_cqring_fill_event(struct io_kiocb *req, long res)
1265{
1266 __io_cqring_fill_event(req, res, 0);
1267}
1268
1269static void __io_cqring_add_event(struct io_kiocb *req, long res, long cflags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001270{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001271 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001272 unsigned long flags;
1273
1274 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001275 __io_cqring_fill_event(req, res, cflags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001276 io_commit_cqring(ctx);
1277 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1278
Jens Axboe8c838782019-03-12 15:48:16 -06001279 io_cqring_ev_posted(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001280}
1281
Jens Axboebcda7ba2020-02-23 16:42:51 -07001282static void io_cqring_add_event(struct io_kiocb *req, long res)
1283{
1284 __io_cqring_add_event(req, res, 0);
1285}
1286
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001287static inline bool io_is_fallback_req(struct io_kiocb *req)
1288{
1289 return req == (struct io_kiocb *)
1290 ((unsigned long) req->ctx->fallback_req & ~1UL);
1291}
1292
1293static struct io_kiocb *io_get_fallback_req(struct io_ring_ctx *ctx)
1294{
1295 struct io_kiocb *req;
1296
1297 req = ctx->fallback_req;
1298 if (!test_and_set_bit_lock(0, (unsigned long *) ctx->fallback_req))
1299 return req;
1300
1301 return NULL;
1302}
1303
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03001304static struct io_kiocb *io_alloc_req(struct io_ring_ctx *ctx,
1305 struct io_submit_state *state)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001306{
Jens Axboefd6fab22019-03-14 16:30:06 -06001307 gfp_t gfp = GFP_KERNEL | __GFP_NOWARN;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001308 struct io_kiocb *req;
1309
Jens Axboe2579f912019-01-09 09:10:43 -07001310 if (!state) {
Jens Axboefd6fab22019-03-14 16:30:06 -06001311 req = kmem_cache_alloc(req_cachep, gfp);
Jens Axboe2579f912019-01-09 09:10:43 -07001312 if (unlikely(!req))
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001313 goto fallback;
Jens Axboe2579f912019-01-09 09:10:43 -07001314 } else if (!state->free_reqs) {
1315 size_t sz;
1316 int ret;
1317
1318 sz = min_t(size_t, state->ios_left, ARRAY_SIZE(state->reqs));
Jens Axboefd6fab22019-03-14 16:30:06 -06001319 ret = kmem_cache_alloc_bulk(req_cachep, gfp, sz, state->reqs);
1320
1321 /*
1322 * Bulk alloc is all-or-nothing. If we fail to get a batch,
1323 * retry single alloc to be on the safe side.
1324 */
1325 if (unlikely(ret <= 0)) {
1326 state->reqs[0] = kmem_cache_alloc(req_cachep, gfp);
1327 if (!state->reqs[0])
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001328 goto fallback;
Jens Axboefd6fab22019-03-14 16:30:06 -06001329 ret = 1;
1330 }
Jens Axboe2579f912019-01-09 09:10:43 -07001331 state->free_reqs = ret - 1;
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03001332 req = state->reqs[ret - 1];
Jens Axboe2579f912019-01-09 09:10:43 -07001333 } else {
Jens Axboe2579f912019-01-09 09:10:43 -07001334 state->free_reqs--;
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03001335 req = state->reqs[state->free_reqs];
Jens Axboe2b188cc2019-01-07 10:46:33 -07001336 }
1337
Jens Axboe2579f912019-01-09 09:10:43 -07001338 return req;
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001339fallback:
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03001340 return io_get_fallback_req(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001341}
1342
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001343static inline void io_put_file(struct io_kiocb *req, struct file *file,
1344 bool fixed)
1345{
1346 if (fixed)
Xiaoguang Wang05589552020-03-31 14:05:18 +08001347 percpu_ref_put(req->fixed_file_refs);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001348 else
1349 fput(file);
1350}
1351
Jens Axboec6ca97b302019-12-28 12:11:08 -07001352static void __io_req_aux_free(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001353{
Pavel Begunkov929a3af2020-02-19 00:19:09 +03001354 if (req->flags & REQ_F_NEED_CLEANUP)
1355 io_cleanup_req(req);
1356
YueHaibing96fd84d2020-01-07 22:22:44 +08001357 kfree(req->io);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001358 if (req->file)
1359 io_put_file(req, req->file, (req->flags & REQ_F_FIXED_FILE));
Jens Axboe3537b6a2020-04-03 11:19:06 -06001360 if (req->task)
1361 put_task_struct(req->task);
Jens Axboecccf0ee2020-01-27 16:34:48 -07001362
1363 io_req_work_drop_env(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001364}
1365
1366static void __io_free_req(struct io_kiocb *req)
1367{
Jens Axboec6ca97b302019-12-28 12:11:08 -07001368 __io_req_aux_free(req);
Jens Axboefcb323c2019-10-24 12:39:47 -06001369
Jens Axboefcb323c2019-10-24 12:39:47 -06001370 if (req->flags & REQ_F_INFLIGHT) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001371 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06001372 unsigned long flags;
1373
1374 spin_lock_irqsave(&ctx->inflight_lock, flags);
1375 list_del(&req->inflight_entry);
1376 if (waitqueue_active(&ctx->inflight_wait))
1377 wake_up(&ctx->inflight_wait);
1378 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
1379 }
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03001380
1381 percpu_ref_put(&req->ctx->refs);
Pavel Begunkovb1e50e52020-04-08 08:58:44 +03001382 if (likely(!io_is_fallback_req(req)))
1383 kmem_cache_free(req_cachep, req);
1384 else
1385 clear_bit_unlock(0, (unsigned long *) req->ctx->fallback_req);
Jens Axboee65ef562019-03-12 10:16:44 -06001386}
1387
Jens Axboec6ca97b302019-12-28 12:11:08 -07001388struct req_batch {
1389 void *reqs[IO_IOPOLL_BATCH];
1390 int to_free;
1391 int need_iter;
1392};
1393
1394static void io_free_req_many(struct io_ring_ctx *ctx, struct req_batch *rb)
1395{
1396 if (!rb->to_free)
1397 return;
1398 if (rb->need_iter) {
1399 int i, inflight = 0;
1400 unsigned long flags;
1401
1402 for (i = 0; i < rb->to_free; i++) {
1403 struct io_kiocb *req = rb->reqs[i];
1404
Jens Axboe10fef4b2020-01-09 07:52:28 -07001405 if (req->flags & REQ_F_FIXED_FILE) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001406 req->file = NULL;
Xiaoguang Wang05589552020-03-31 14:05:18 +08001407 percpu_ref_put(req->fixed_file_refs);
Jens Axboe10fef4b2020-01-09 07:52:28 -07001408 }
Jens Axboec6ca97b302019-12-28 12:11:08 -07001409 if (req->flags & REQ_F_INFLIGHT)
1410 inflight++;
Jens Axboec6ca97b302019-12-28 12:11:08 -07001411 __io_req_aux_free(req);
1412 }
1413 if (!inflight)
1414 goto do_free;
1415
1416 spin_lock_irqsave(&ctx->inflight_lock, flags);
1417 for (i = 0; i < rb->to_free; i++) {
1418 struct io_kiocb *req = rb->reqs[i];
1419
Jens Axboe10fef4b2020-01-09 07:52:28 -07001420 if (req->flags & REQ_F_INFLIGHT) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001421 list_del(&req->inflight_entry);
1422 if (!--inflight)
1423 break;
1424 }
1425 }
1426 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
1427
1428 if (waitqueue_active(&ctx->inflight_wait))
1429 wake_up(&ctx->inflight_wait);
1430 }
1431do_free:
1432 kmem_cache_free_bulk(req_cachep, rb->to_free, rb->reqs);
1433 percpu_ref_put_many(&ctx->refs, rb->to_free);
Jens Axboec6ca97b302019-12-28 12:11:08 -07001434 rb->to_free = rb->need_iter = 0;
Jens Axboee65ef562019-03-12 10:16:44 -06001435}
1436
Jackie Liua197f662019-11-08 08:09:12 -07001437static bool io_link_cancel_timeout(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -06001438{
Jackie Liua197f662019-11-08 08:09:12 -07001439 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001440 int ret;
1441
Jens Axboe2d283902019-12-04 11:08:05 -07001442 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe2665abf2019-11-05 12:40:47 -07001443 if (ret != -1) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001444 io_cqring_fill_event(req, -ECANCELED);
Jens Axboe2665abf2019-11-05 12:40:47 -07001445 io_commit_cqring(ctx);
Pavel Begunkovdea3b492020-04-12 02:05:04 +03001446 req->flags &= ~REQ_F_LINK_HEAD;
Jackie Liuec9c02a2019-11-08 23:50:36 +08001447 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07001448 return true;
1449 }
1450
1451 return false;
1452}
1453
Jens Axboeba816ad2019-09-28 11:36:45 -06001454static void io_req_link_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboe9e645e112019-05-10 16:07:28 -06001455{
Jens Axboe2665abf2019-11-05 12:40:47 -07001456 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001457 bool wake_ev = false;
Jens Axboe9e645e112019-05-10 16:07:28 -06001458
Jens Axboe4d7dd462019-11-20 13:03:52 -07001459 /* Already got next link */
1460 if (req->flags & REQ_F_LINK_NEXT)
1461 return;
1462
Jens Axboe9e645e112019-05-10 16:07:28 -06001463 /*
1464 * The list should never be empty when we are called here. But could
1465 * potentially happen if the chain is messed up, check to be on the
1466 * safe side.
1467 */
Pavel Begunkov44932332019-12-05 16:16:35 +03001468 while (!list_empty(&req->link_list)) {
1469 struct io_kiocb *nxt = list_first_entry(&req->link_list,
1470 struct io_kiocb, link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001471
Pavel Begunkov44932332019-12-05 16:16:35 +03001472 if (unlikely((req->flags & REQ_F_LINK_TIMEOUT) &&
1473 (nxt->flags & REQ_F_TIMEOUT))) {
1474 list_del_init(&nxt->link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001475 wake_ev |= io_link_cancel_timeout(nxt);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001476 req->flags &= ~REQ_F_LINK_TIMEOUT;
1477 continue;
1478 }
Jens Axboe9e645e112019-05-10 16:07:28 -06001479
Pavel Begunkov44932332019-12-05 16:16:35 +03001480 list_del_init(&req->link_list);
1481 if (!list_empty(&nxt->link_list))
Pavel Begunkovdea3b492020-04-12 02:05:04 +03001482 nxt->flags |= REQ_F_LINK_HEAD;
Pavel Begunkovb18fdf72019-11-21 23:21:02 +03001483 *nxtptr = nxt;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001484 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06001485 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001486
Jens Axboe4d7dd462019-11-20 13:03:52 -07001487 req->flags |= REQ_F_LINK_NEXT;
Jens Axboe2665abf2019-11-05 12:40:47 -07001488 if (wake_ev)
1489 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001490}
1491
1492/*
Pavel Begunkovdea3b492020-04-12 02:05:04 +03001493 * Called if REQ_F_LINK_HEAD is set, and we fail the head request
Jens Axboe9e645e112019-05-10 16:07:28 -06001494 */
1495static void io_fail_links(struct io_kiocb *req)
1496{
Jens Axboe2665abf2019-11-05 12:40:47 -07001497 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001498 unsigned long flags;
1499
1500 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboe9e645e112019-05-10 16:07:28 -06001501
1502 while (!list_empty(&req->link_list)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03001503 struct io_kiocb *link = list_first_entry(&req->link_list,
1504 struct io_kiocb, link_list);
Jens Axboe9e645e112019-05-10 16:07:28 -06001505
Pavel Begunkov44932332019-12-05 16:16:35 +03001506 list_del_init(&link->link_list);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02001507 trace_io_uring_fail_link(req, link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001508
1509 if ((req->flags & REQ_F_LINK_TIMEOUT) &&
Jens Axboed625c6e2019-12-17 19:53:05 -07001510 link->opcode == IORING_OP_LINK_TIMEOUT) {
Jackie Liua197f662019-11-08 08:09:12 -07001511 io_link_cancel_timeout(link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001512 } else {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001513 io_cqring_fill_event(link, -ECANCELED);
Jens Axboe978db572019-11-14 22:39:04 -07001514 __io_double_put_req(link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001515 }
Jens Axboe5d960722019-11-19 15:31:28 -07001516 req->flags &= ~REQ_F_LINK_TIMEOUT;
Jens Axboe9e645e112019-05-10 16:07:28 -06001517 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001518
1519 io_commit_cqring(ctx);
1520 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1521 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001522}
1523
Jens Axboe4d7dd462019-11-20 13:03:52 -07001524static void io_req_find_next(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboe9e645e112019-05-10 16:07:28 -06001525{
Pavel Begunkovdea3b492020-04-12 02:05:04 +03001526 if (likely(!(req->flags & REQ_F_LINK_HEAD)))
Jens Axboe2665abf2019-11-05 12:40:47 -07001527 return;
Jens Axboe2665abf2019-11-05 12:40:47 -07001528
Jens Axboe9e645e112019-05-10 16:07:28 -06001529 /*
1530 * If LINK is set, we have dependent requests in this chain. If we
1531 * didn't fail this request, queue the first one up, moving any other
1532 * dependencies to the next request. In case of failure, fail the rest
1533 * of the chain.
1534 */
Jens Axboe2665abf2019-11-05 12:40:47 -07001535 if (req->flags & REQ_F_FAIL_LINK) {
1536 io_fail_links(req);
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001537 } else if ((req->flags & (REQ_F_LINK_TIMEOUT | REQ_F_COMP_LOCKED)) ==
1538 REQ_F_LINK_TIMEOUT) {
Jens Axboe2665abf2019-11-05 12:40:47 -07001539 struct io_ring_ctx *ctx = req->ctx;
1540 unsigned long flags;
1541
1542 /*
1543 * If this is a timeout link, we could be racing with the
1544 * timeout timer. Grab the completion lock for this case to
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001545 * protect against that.
Jens Axboe2665abf2019-11-05 12:40:47 -07001546 */
1547 spin_lock_irqsave(&ctx->completion_lock, flags);
1548 io_req_link_next(req, nxt);
1549 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1550 } else {
1551 io_req_link_next(req, nxt);
Jens Axboe9e645e112019-05-10 16:07:28 -06001552 }
Jens Axboe4d7dd462019-11-20 13:03:52 -07001553}
Jens Axboe9e645e112019-05-10 16:07:28 -06001554
Jackie Liuc69f8db2019-11-09 11:00:08 +08001555static void io_free_req(struct io_kiocb *req)
1556{
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001557 struct io_kiocb *nxt = NULL;
1558
1559 io_req_find_next(req, &nxt);
Pavel Begunkov70cf9f32019-11-21 23:21:00 +03001560 __io_free_req(req);
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001561
1562 if (nxt)
1563 io_queue_async_work(nxt);
Jackie Liuc69f8db2019-11-09 11:00:08 +08001564}
1565
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001566static void io_link_work_cb(struct io_wq_work **workptr)
1567{
Pavel Begunkov18a542f2020-03-23 00:23:29 +03001568 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
1569 struct io_kiocb *link;
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001570
Pavel Begunkov18a542f2020-03-23 00:23:29 +03001571 link = list_first_entry(&req->link_list, struct io_kiocb, link_list);
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001572 io_queue_linked_timeout(link);
1573 io_wq_submit_work(workptr);
1574}
1575
1576static void io_wq_assign_next(struct io_wq_work **workptr, struct io_kiocb *nxt)
1577{
1578 struct io_kiocb *link;
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001579 const struct io_op_def *def = &io_op_defs[nxt->opcode];
1580
1581 if ((nxt->flags & REQ_F_ISREG) && def->hash_reg_file)
1582 io_wq_hash_work(&nxt->work, file_inode(nxt->file));
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001583
1584 *workptr = &nxt->work;
1585 link = io_prep_linked_timeout(nxt);
Pavel Begunkov18a542f2020-03-23 00:23:29 +03001586 if (link)
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001587 nxt->work.func = io_link_work_cb;
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001588}
1589
Jens Axboeba816ad2019-09-28 11:36:45 -06001590/*
1591 * Drop reference to request, return next in chain (if there is one) if this
1592 * was the last reference to this request.
1593 */
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001594__attribute__((nonnull))
Jackie Liuec9c02a2019-11-08 23:50:36 +08001595static void io_put_req_find_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboee65ef562019-03-12 10:16:44 -06001596{
Jens Axboe2a44f462020-02-25 13:25:41 -07001597 if (refcount_dec_and_test(&req->refs)) {
1598 io_req_find_next(req, nxtptr);
Jens Axboe4d7dd462019-11-20 13:03:52 -07001599 __io_free_req(req);
Jens Axboe2a44f462020-02-25 13:25:41 -07001600 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001601}
1602
Jens Axboe2b188cc2019-01-07 10:46:33 -07001603static void io_put_req(struct io_kiocb *req)
1604{
Jens Axboedef596e2019-01-09 08:59:42 -07001605 if (refcount_dec_and_test(&req->refs))
1606 io_free_req(req);
1607}
1608
Pavel Begunkove9fd9392020-03-04 16:14:12 +03001609static void io_steal_work(struct io_kiocb *req,
1610 struct io_wq_work **workptr)
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001611{
1612 /*
1613 * It's in an io-wq worker, so there always should be at least
1614 * one reference, which will be dropped in io_put_work() just
1615 * after the current handler returns.
1616 *
1617 * It also means, that if the counter dropped to 1, then there is
1618 * no asynchronous users left, so it's safe to steal the next work.
1619 */
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001620 if (refcount_read(&req->refs) == 1) {
1621 struct io_kiocb *nxt = NULL;
1622
1623 io_req_find_next(req, &nxt);
1624 if (nxt)
1625 io_wq_assign_next(workptr, nxt);
1626 }
1627}
1628
Jens Axboe978db572019-11-14 22:39:04 -07001629/*
1630 * Must only be used if we don't need to care about links, usually from
1631 * within the completion handling itself.
1632 */
1633static void __io_double_put_req(struct io_kiocb *req)
Jens Axboea3a0e432019-08-20 11:03:11 -06001634{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001635 /* drop both submit and complete references */
1636 if (refcount_sub_and_test(2, &req->refs))
1637 __io_free_req(req);
1638}
1639
Jens Axboe978db572019-11-14 22:39:04 -07001640static void io_double_put_req(struct io_kiocb *req)
1641{
1642 /* drop both submit and complete references */
1643 if (refcount_sub_and_test(2, &req->refs))
1644 io_free_req(req);
1645}
1646
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001647static unsigned io_cqring_events(struct io_ring_ctx *ctx, bool noflush)
Jens Axboea3a0e432019-08-20 11:03:11 -06001648{
Jens Axboe84f97dc2019-11-06 11:27:53 -07001649 struct io_rings *rings = ctx->rings;
1650
Jens Axboead3eb2c2019-12-18 17:12:20 -07001651 if (test_bit(0, &ctx->cq_check_overflow)) {
1652 /*
1653 * noflush == true is from the waitqueue handler, just ensure
1654 * we wake up the task, and the next invocation will flush the
1655 * entries. We cannot safely to it from here.
1656 */
1657 if (noflush && !list_empty(&ctx->cq_overflow_list))
1658 return -1U;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001659
Jens Axboead3eb2c2019-12-18 17:12:20 -07001660 io_cqring_overflow_flush(ctx, false);
1661 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001662
Jens Axboea3a0e432019-08-20 11:03:11 -06001663 /* See comment at the top of this file */
1664 smp_rmb();
Jens Axboead3eb2c2019-12-18 17:12:20 -07001665 return ctx->cached_cq_tail - READ_ONCE(rings->cq.head);
Jens Axboea3a0e432019-08-20 11:03:11 -06001666}
1667
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03001668static inline unsigned int io_sqring_entries(struct io_ring_ctx *ctx)
1669{
1670 struct io_rings *rings = ctx->rings;
1671
1672 /* make sure SQ entry isn't read before tail */
1673 return smp_load_acquire(&rings->sq.tail) - ctx->cached_sq_head;
1674}
1675
Jens Axboe8237e042019-12-28 10:48:22 -07001676static inline bool io_req_multi_free(struct req_batch *rb, struct io_kiocb *req)
Jens Axboee94f1412019-12-19 12:06:02 -07001677{
Pavel Begunkovdea3b492020-04-12 02:05:04 +03001678 if ((req->flags & REQ_F_LINK_HEAD) || io_is_fallback_req(req))
Jens Axboec6ca97b302019-12-28 12:11:08 -07001679 return false;
Jens Axboee94f1412019-12-19 12:06:02 -07001680
Jens Axboec6ca97b302019-12-28 12:11:08 -07001681 if (!(req->flags & REQ_F_FIXED_FILE) || req->io)
1682 rb->need_iter++;
1683
1684 rb->reqs[rb->to_free++] = req;
1685 if (unlikely(rb->to_free == ARRAY_SIZE(rb->reqs)))
1686 io_free_req_many(req->ctx, rb);
1687 return true;
Jens Axboee94f1412019-12-19 12:06:02 -07001688}
1689
Jens Axboebcda7ba2020-02-23 16:42:51 -07001690static int io_put_kbuf(struct io_kiocb *req)
1691{
Jens Axboe4d954c22020-02-27 07:31:19 -07001692 struct io_buffer *kbuf;
Jens Axboebcda7ba2020-02-23 16:42:51 -07001693 int cflags;
1694
Jens Axboe4d954c22020-02-27 07:31:19 -07001695 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
Jens Axboebcda7ba2020-02-23 16:42:51 -07001696 cflags = kbuf->bid << IORING_CQE_BUFFER_SHIFT;
1697 cflags |= IORING_CQE_F_BUFFER;
1698 req->rw.addr = 0;
1699 kfree(kbuf);
1700 return cflags;
1701}
1702
Jens Axboedef596e2019-01-09 08:59:42 -07001703/*
1704 * Find and free completed poll iocbs
1705 */
1706static void io_iopoll_complete(struct io_ring_ctx *ctx, unsigned int *nr_events,
1707 struct list_head *done)
1708{
Jens Axboe8237e042019-12-28 10:48:22 -07001709 struct req_batch rb;
Jens Axboedef596e2019-01-09 08:59:42 -07001710 struct io_kiocb *req;
Jens Axboedef596e2019-01-09 08:59:42 -07001711
Jens Axboec6ca97b302019-12-28 12:11:08 -07001712 rb.to_free = rb.need_iter = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001713 while (!list_empty(done)) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07001714 int cflags = 0;
1715
Jens Axboedef596e2019-01-09 08:59:42 -07001716 req = list_first_entry(done, struct io_kiocb, list);
1717 list_del(&req->list);
1718
Jens Axboebcda7ba2020-02-23 16:42:51 -07001719 if (req->flags & REQ_F_BUFFER_SELECTED)
1720 cflags = io_put_kbuf(req);
1721
1722 __io_cqring_fill_event(req, req->result, cflags);
Jens Axboedef596e2019-01-09 08:59:42 -07001723 (*nr_events)++;
1724
Jens Axboe8237e042019-12-28 10:48:22 -07001725 if (refcount_dec_and_test(&req->refs) &&
1726 !io_req_multi_free(&rb, req))
1727 io_free_req(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001728 }
Jens Axboedef596e2019-01-09 08:59:42 -07001729
Jens Axboe09bb8392019-03-13 12:39:28 -06001730 io_commit_cqring(ctx);
Xiaoguang Wang32b22442020-03-11 09:26:09 +08001731 if (ctx->flags & IORING_SETUP_SQPOLL)
1732 io_cqring_ev_posted(ctx);
Jens Axboe8237e042019-12-28 10:48:22 -07001733 io_free_req_many(ctx, &rb);
Jens Axboedef596e2019-01-09 08:59:42 -07001734}
1735
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001736static void io_iopoll_queue(struct list_head *again)
1737{
1738 struct io_kiocb *req;
1739
1740 do {
1741 req = list_first_entry(again, struct io_kiocb, list);
1742 list_del(&req->list);
1743 refcount_inc(&req->refs);
1744 io_queue_async_work(req);
1745 } while (!list_empty(again));
1746}
1747
Jens Axboedef596e2019-01-09 08:59:42 -07001748static int io_do_iopoll(struct io_ring_ctx *ctx, unsigned int *nr_events,
1749 long min)
1750{
1751 struct io_kiocb *req, *tmp;
1752 LIST_HEAD(done);
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001753 LIST_HEAD(again);
Jens Axboedef596e2019-01-09 08:59:42 -07001754 bool spin;
1755 int ret;
1756
1757 /*
1758 * Only spin for completions if we don't have multiple devices hanging
1759 * off our complete list, and we're under the requested amount.
1760 */
1761 spin = !ctx->poll_multi_file && *nr_events < min;
1762
1763 ret = 0;
1764 list_for_each_entry_safe(req, tmp, &ctx->poll_list, list) {
Jens Axboe9adbd452019-12-20 08:45:55 -07001765 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboedef596e2019-01-09 08:59:42 -07001766
1767 /*
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001768 * Move completed and retryable entries to our local lists.
1769 * If we find a request that requires polling, break out
1770 * and complete those lists first, if we have entries there.
Jens Axboedef596e2019-01-09 08:59:42 -07001771 */
1772 if (req->flags & REQ_F_IOPOLL_COMPLETED) {
1773 list_move_tail(&req->list, &done);
1774 continue;
1775 }
1776 if (!list_empty(&done))
1777 break;
1778
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001779 if (req->result == -EAGAIN) {
1780 list_move_tail(&req->list, &again);
1781 continue;
1782 }
1783 if (!list_empty(&again))
1784 break;
1785
Jens Axboedef596e2019-01-09 08:59:42 -07001786 ret = kiocb->ki_filp->f_op->iopoll(kiocb, spin);
1787 if (ret < 0)
1788 break;
1789
1790 if (ret && spin)
1791 spin = false;
1792 ret = 0;
1793 }
1794
1795 if (!list_empty(&done))
1796 io_iopoll_complete(ctx, nr_events, &done);
1797
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001798 if (!list_empty(&again))
1799 io_iopoll_queue(&again);
1800
Jens Axboedef596e2019-01-09 08:59:42 -07001801 return ret;
1802}
1803
1804/*
Brian Gianforcarod195a662019-12-13 03:09:50 -08001805 * Poll for a minimum of 'min' events. Note that if min == 0 we consider that a
Jens Axboedef596e2019-01-09 08:59:42 -07001806 * non-spinning poll check - we'll still enter the driver poll loop, but only
1807 * as a non-spinning completion check.
1808 */
1809static int io_iopoll_getevents(struct io_ring_ctx *ctx, unsigned int *nr_events,
1810 long min)
1811{
Jens Axboe08f54392019-08-21 22:19:11 -06001812 while (!list_empty(&ctx->poll_list) && !need_resched()) {
Jens Axboedef596e2019-01-09 08:59:42 -07001813 int ret;
1814
1815 ret = io_do_iopoll(ctx, nr_events, min);
1816 if (ret < 0)
1817 return ret;
1818 if (!min || *nr_events >= min)
1819 return 0;
1820 }
1821
1822 return 1;
1823}
1824
1825/*
1826 * We can't just wait for polled events to come to us, we have to actively
1827 * find and complete them.
1828 */
1829static void io_iopoll_reap_events(struct io_ring_ctx *ctx)
1830{
1831 if (!(ctx->flags & IORING_SETUP_IOPOLL))
1832 return;
1833
1834 mutex_lock(&ctx->uring_lock);
1835 while (!list_empty(&ctx->poll_list)) {
1836 unsigned int nr_events = 0;
1837
1838 io_iopoll_getevents(ctx, &nr_events, 1);
Jens Axboe08f54392019-08-21 22:19:11 -06001839
1840 /*
1841 * Ensure we allow local-to-the-cpu processing to take place,
1842 * in this case we need to ensure that we reap all events.
1843 */
1844 cond_resched();
Jens Axboedef596e2019-01-09 08:59:42 -07001845 }
1846 mutex_unlock(&ctx->uring_lock);
1847}
1848
Xiaoguang Wangc7849be2020-02-22 14:46:05 +08001849static int io_iopoll_check(struct io_ring_ctx *ctx, unsigned *nr_events,
1850 long min)
Jens Axboedef596e2019-01-09 08:59:42 -07001851{
Jens Axboe2b2ed972019-10-25 10:06:15 -06001852 int iters = 0, ret = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001853
Xiaoguang Wangc7849be2020-02-22 14:46:05 +08001854 /*
1855 * We disallow the app entering submit/complete with polling, but we
1856 * still need to lock the ring to prevent racing with polled issue
1857 * that got punted to a workqueue.
1858 */
1859 mutex_lock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07001860 do {
1861 int tmin = 0;
1862
Jens Axboe500f9fb2019-08-19 12:15:59 -06001863 /*
Jens Axboea3a0e432019-08-20 11:03:11 -06001864 * Don't enter poll loop if we already have events pending.
1865 * If we do, we can potentially be spinning for commands that
1866 * already triggered a CQE (eg in error).
1867 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001868 if (io_cqring_events(ctx, false))
Jens Axboea3a0e432019-08-20 11:03:11 -06001869 break;
1870
1871 /*
Jens Axboe500f9fb2019-08-19 12:15:59 -06001872 * If a submit got punted to a workqueue, we can have the
1873 * application entering polling for a command before it gets
1874 * issued. That app will hold the uring_lock for the duration
1875 * of the poll right here, so we need to take a breather every
1876 * now and then to ensure that the issue has a chance to add
1877 * the poll to the issued list. Otherwise we can spin here
1878 * forever, while the workqueue is stuck trying to acquire the
1879 * very same mutex.
1880 */
1881 if (!(++iters & 7)) {
1882 mutex_unlock(&ctx->uring_lock);
1883 mutex_lock(&ctx->uring_lock);
1884 }
1885
Jens Axboedef596e2019-01-09 08:59:42 -07001886 if (*nr_events < min)
1887 tmin = min - *nr_events;
1888
1889 ret = io_iopoll_getevents(ctx, nr_events, tmin);
1890 if (ret <= 0)
1891 break;
1892 ret = 0;
1893 } while (min && !*nr_events && !need_resched());
1894
Jens Axboe500f9fb2019-08-19 12:15:59 -06001895 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07001896 return ret;
1897}
1898
Jens Axboe491381ce2019-10-17 09:20:46 -06001899static void kiocb_end_write(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001900{
Jens Axboe491381ce2019-10-17 09:20:46 -06001901 /*
1902 * Tell lockdep we inherited freeze protection from submission
1903 * thread.
1904 */
1905 if (req->flags & REQ_F_ISREG) {
1906 struct inode *inode = file_inode(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001907
Jens Axboe491381ce2019-10-17 09:20:46 -06001908 __sb_writers_acquired(inode->i_sb, SB_FREEZE_WRITE);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001909 }
Jens Axboe491381ce2019-10-17 09:20:46 -06001910 file_end_write(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001911}
1912
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001913static inline void req_set_fail_links(struct io_kiocb *req)
1914{
1915 if ((req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) == REQ_F_LINK)
1916 req->flags |= REQ_F_FAIL_LINK;
1917}
1918
Jens Axboeba816ad2019-09-28 11:36:45 -06001919static void io_complete_rw_common(struct kiocb *kiocb, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001920{
Jens Axboe9adbd452019-12-20 08:45:55 -07001921 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001922 int cflags = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001923
Jens Axboe491381ce2019-10-17 09:20:46 -06001924 if (kiocb->ki_flags & IOCB_WRITE)
1925 kiocb_end_write(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001926
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001927 if (res != req->result)
1928 req_set_fail_links(req);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001929 if (req->flags & REQ_F_BUFFER_SELECTED)
1930 cflags = io_put_kbuf(req);
1931 __io_cqring_add_event(req, res, cflags);
Jens Axboeba816ad2019-09-28 11:36:45 -06001932}
1933
1934static void io_complete_rw(struct kiocb *kiocb, long res, long res2)
1935{
Jens Axboe9adbd452019-12-20 08:45:55 -07001936 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboeba816ad2019-09-28 11:36:45 -06001937
1938 io_complete_rw_common(kiocb, res);
Jens Axboee65ef562019-03-12 10:16:44 -06001939 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001940}
1941
Jens Axboedef596e2019-01-09 08:59:42 -07001942static void io_complete_rw_iopoll(struct kiocb *kiocb, long res, long res2)
1943{
Jens Axboe9adbd452019-12-20 08:45:55 -07001944 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboedef596e2019-01-09 08:59:42 -07001945
Jens Axboe491381ce2019-10-17 09:20:46 -06001946 if (kiocb->ki_flags & IOCB_WRITE)
1947 kiocb_end_write(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001948
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001949 if (res != req->result)
1950 req_set_fail_links(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06001951 req->result = res;
Jens Axboedef596e2019-01-09 08:59:42 -07001952 if (res != -EAGAIN)
1953 req->flags |= REQ_F_IOPOLL_COMPLETED;
1954}
1955
1956/*
1957 * After the iocb has been issued, it's safe to be found on the poll list.
1958 * Adding the kiocb to the list AFTER submission ensures that we don't
1959 * find it from a io_iopoll_getevents() thread before the issuer is done
1960 * accessing the kiocb cookie.
1961 */
1962static void io_iopoll_req_issued(struct io_kiocb *req)
1963{
1964 struct io_ring_ctx *ctx = req->ctx;
1965
1966 /*
1967 * Track whether we have multiple files in our lists. This will impact
1968 * how we do polling eventually, not spinning if we're on potentially
1969 * different devices.
1970 */
1971 if (list_empty(&ctx->poll_list)) {
1972 ctx->poll_multi_file = false;
1973 } else if (!ctx->poll_multi_file) {
1974 struct io_kiocb *list_req;
1975
1976 list_req = list_first_entry(&ctx->poll_list, struct io_kiocb,
1977 list);
Jens Axboe9adbd452019-12-20 08:45:55 -07001978 if (list_req->file != req->file)
Jens Axboedef596e2019-01-09 08:59:42 -07001979 ctx->poll_multi_file = true;
1980 }
1981
1982 /*
1983 * For fast devices, IO may have already completed. If it has, add
1984 * it to the front so we find it first.
1985 */
1986 if (req->flags & REQ_F_IOPOLL_COMPLETED)
1987 list_add(&req->list, &ctx->poll_list);
1988 else
1989 list_add_tail(&req->list, &ctx->poll_list);
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08001990
1991 if ((ctx->flags & IORING_SETUP_SQPOLL) &&
1992 wq_has_sleeper(&ctx->sqo_wait))
1993 wake_up(&ctx->sqo_wait);
Jens Axboedef596e2019-01-09 08:59:42 -07001994}
1995
Jens Axboe3d6770f2019-04-13 11:50:54 -06001996static void io_file_put(struct io_submit_state *state)
Jens Axboe9a56a232019-01-09 09:06:50 -07001997{
Jens Axboe3d6770f2019-04-13 11:50:54 -06001998 if (state->file) {
Jens Axboe9a56a232019-01-09 09:06:50 -07001999 int diff = state->has_refs - state->used_refs;
2000
2001 if (diff)
2002 fput_many(state->file, diff);
2003 state->file = NULL;
2004 }
2005}
2006
2007/*
2008 * Get as many references to a file as we have IOs left in this submission,
2009 * assuming most submissions are for one file, or at least that each file
2010 * has more than one submission.
2011 */
Pavel Begunkov8da11c12020-02-24 11:32:44 +03002012static struct file *__io_file_get(struct io_submit_state *state, int fd)
Jens Axboe9a56a232019-01-09 09:06:50 -07002013{
2014 if (!state)
2015 return fget(fd);
2016
2017 if (state->file) {
2018 if (state->fd == fd) {
2019 state->used_refs++;
2020 state->ios_left--;
2021 return state->file;
2022 }
Jens Axboe3d6770f2019-04-13 11:50:54 -06002023 io_file_put(state);
Jens Axboe9a56a232019-01-09 09:06:50 -07002024 }
2025 state->file = fget_many(fd, state->ios_left);
2026 if (!state->file)
2027 return NULL;
2028
2029 state->fd = fd;
2030 state->has_refs = state->ios_left;
2031 state->used_refs = 1;
2032 state->ios_left--;
2033 return state->file;
2034}
2035
Jens Axboe2b188cc2019-01-07 10:46:33 -07002036/*
2037 * If we tracked the file through the SCM inflight mechanism, we could support
2038 * any file. For now, just ensure that anything potentially problematic is done
2039 * inline.
2040 */
Jens Axboeaf197f52020-04-28 13:15:06 -06002041static bool io_file_supports_async(struct file *file, int rw)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002042{
2043 umode_t mode = file_inode(file)->i_mode;
2044
Jens Axboe10d59342019-12-09 20:16:22 -07002045 if (S_ISBLK(mode) || S_ISCHR(mode) || S_ISSOCK(mode))
Jens Axboe2b188cc2019-01-07 10:46:33 -07002046 return true;
2047 if (S_ISREG(mode) && file->f_op != &io_uring_fops)
2048 return true;
2049
Jens Axboeaf197f52020-04-28 13:15:06 -06002050 if (!(file->f_mode & FMODE_NOWAIT))
2051 return false;
2052
2053 if (rw == READ)
2054 return file->f_op->read_iter != NULL;
2055
2056 return file->f_op->write_iter != NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002057}
2058
Jens Axboe3529d8c2019-12-19 18:24:38 -07002059static int io_prep_rw(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2060 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002061{
Jens Axboedef596e2019-01-09 08:59:42 -07002062 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9adbd452019-12-20 08:45:55 -07002063 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe09bb8392019-03-13 12:39:28 -06002064 unsigned ioprio;
2065 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002066
Jens Axboe491381ce2019-10-17 09:20:46 -06002067 if (S_ISREG(file_inode(req->file)->i_mode))
2068 req->flags |= REQ_F_ISREG;
2069
Jens Axboe2b188cc2019-01-07 10:46:33 -07002070 kiocb->ki_pos = READ_ONCE(sqe->off);
Jens Axboeba042912019-12-25 16:33:42 -07002071 if (kiocb->ki_pos == -1 && !(req->file->f_mode & FMODE_STREAM)) {
2072 req->flags |= REQ_F_CUR_POS;
2073 kiocb->ki_pos = req->file->f_pos;
2074 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002075 kiocb->ki_hint = ki_hint_validate(file_write_hint(kiocb->ki_filp));
Pavel Begunkov3e577dc2020-02-01 03:58:42 +03002076 kiocb->ki_flags = iocb_flags(kiocb->ki_filp);
2077 ret = kiocb_set_rw_flags(kiocb, READ_ONCE(sqe->rw_flags));
2078 if (unlikely(ret))
2079 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002080
2081 ioprio = READ_ONCE(sqe->ioprio);
2082 if (ioprio) {
2083 ret = ioprio_check_cap(ioprio);
2084 if (ret)
Jens Axboe09bb8392019-03-13 12:39:28 -06002085 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002086
2087 kiocb->ki_ioprio = ioprio;
2088 } else
2089 kiocb->ki_ioprio = get_current_ioprio();
2090
Stefan Bühler8449eed2019-04-27 20:34:19 +02002091 /* don't allow async punt if RWF_NOWAIT was requested */
Jens Axboe491381ce2019-10-17 09:20:46 -06002092 if ((kiocb->ki_flags & IOCB_NOWAIT) ||
2093 (req->file->f_flags & O_NONBLOCK))
Stefan Bühler8449eed2019-04-27 20:34:19 +02002094 req->flags |= REQ_F_NOWAIT;
2095
2096 if (force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002097 kiocb->ki_flags |= IOCB_NOWAIT;
Stefan Bühler8449eed2019-04-27 20:34:19 +02002098
Jens Axboedef596e2019-01-09 08:59:42 -07002099 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07002100 if (!(kiocb->ki_flags & IOCB_DIRECT) ||
2101 !kiocb->ki_filp->f_op->iopoll)
Jens Axboe09bb8392019-03-13 12:39:28 -06002102 return -EOPNOTSUPP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002103
Jens Axboedef596e2019-01-09 08:59:42 -07002104 kiocb->ki_flags |= IOCB_HIPRI;
2105 kiocb->ki_complete = io_complete_rw_iopoll;
Jens Axboe6873e0b2019-10-30 13:53:09 -06002106 req->result = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07002107 } else {
Jens Axboe09bb8392019-03-13 12:39:28 -06002108 if (kiocb->ki_flags & IOCB_HIPRI)
2109 return -EINVAL;
Jens Axboedef596e2019-01-09 08:59:42 -07002110 kiocb->ki_complete = io_complete_rw;
2111 }
Jens Axboe9adbd452019-12-20 08:45:55 -07002112
Jens Axboe3529d8c2019-12-19 18:24:38 -07002113 req->rw.addr = READ_ONCE(sqe->addr);
2114 req->rw.len = READ_ONCE(sqe->len);
Jens Axboebcda7ba2020-02-23 16:42:51 -07002115 /* we own ->private, reuse it for the buffer index / buffer ID */
Jens Axboe9adbd452019-12-20 08:45:55 -07002116 req->rw.kiocb.private = (void *) (unsigned long)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002117 READ_ONCE(sqe->buf_index);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002118 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002119}
2120
2121static inline void io_rw_done(struct kiocb *kiocb, ssize_t ret)
2122{
2123 switch (ret) {
2124 case -EIOCBQUEUED:
2125 break;
2126 case -ERESTARTSYS:
2127 case -ERESTARTNOINTR:
2128 case -ERESTARTNOHAND:
2129 case -ERESTART_RESTARTBLOCK:
2130 /*
2131 * We can't just restart the syscall, since previously
2132 * submitted sqes may already be in progress. Just fail this
2133 * IO with EINTR.
2134 */
2135 ret = -EINTR;
2136 /* fall through */
2137 default:
2138 kiocb->ki_complete(kiocb, ret, 0);
2139 }
2140}
2141
Pavel Begunkov014db002020-03-03 21:33:12 +03002142static void kiocb_done(struct kiocb *kiocb, ssize_t ret)
Jens Axboeba816ad2019-09-28 11:36:45 -06002143{
Jens Axboeba042912019-12-25 16:33:42 -07002144 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
2145
2146 if (req->flags & REQ_F_CUR_POS)
2147 req->file->f_pos = kiocb->ki_pos;
Pavel Begunkovbcaec082020-02-24 11:30:18 +03002148 if (ret >= 0 && kiocb->ki_complete == io_complete_rw)
Pavel Begunkov014db002020-03-03 21:33:12 +03002149 io_complete_rw(kiocb, ret, 0);
Jens Axboeba816ad2019-09-28 11:36:45 -06002150 else
2151 io_rw_done(kiocb, ret);
2152}
2153
Jens Axboe9adbd452019-12-20 08:45:55 -07002154static ssize_t io_import_fixed(struct io_kiocb *req, int rw,
Pavel Begunkov7d009162019-11-25 23:14:40 +03002155 struct iov_iter *iter)
Jens Axboeedafcce2019-01-09 09:16:05 -07002156{
Jens Axboe9adbd452019-12-20 08:45:55 -07002157 struct io_ring_ctx *ctx = req->ctx;
2158 size_t len = req->rw.len;
Jens Axboeedafcce2019-01-09 09:16:05 -07002159 struct io_mapped_ubuf *imu;
2160 unsigned index, buf_index;
2161 size_t offset;
2162 u64 buf_addr;
2163
2164 /* attempt to use fixed buffers without having provided iovecs */
2165 if (unlikely(!ctx->user_bufs))
2166 return -EFAULT;
2167
Jens Axboe9adbd452019-12-20 08:45:55 -07002168 buf_index = (unsigned long) req->rw.kiocb.private;
Jens Axboeedafcce2019-01-09 09:16:05 -07002169 if (unlikely(buf_index >= ctx->nr_user_bufs))
2170 return -EFAULT;
2171
2172 index = array_index_nospec(buf_index, ctx->nr_user_bufs);
2173 imu = &ctx->user_bufs[index];
Jens Axboe9adbd452019-12-20 08:45:55 -07002174 buf_addr = req->rw.addr;
Jens Axboeedafcce2019-01-09 09:16:05 -07002175
2176 /* overflow */
2177 if (buf_addr + len < buf_addr)
2178 return -EFAULT;
2179 /* not inside the mapped region */
2180 if (buf_addr < imu->ubuf || buf_addr + len > imu->ubuf + imu->len)
2181 return -EFAULT;
2182
2183 /*
2184 * May not be a start of buffer, set size appropriately
2185 * and advance us to the beginning.
2186 */
2187 offset = buf_addr - imu->ubuf;
2188 iov_iter_bvec(iter, rw, imu->bvec, imu->nr_bvecs, offset + len);
Jens Axboebd11b3a2019-07-20 08:37:31 -06002189
2190 if (offset) {
2191 /*
2192 * Don't use iov_iter_advance() here, as it's really slow for
2193 * using the latter parts of a big fixed buffer - it iterates
2194 * over each segment manually. We can cheat a bit here, because
2195 * we know that:
2196 *
2197 * 1) it's a BVEC iter, we set it up
2198 * 2) all bvecs are PAGE_SIZE in size, except potentially the
2199 * first and last bvec
2200 *
2201 * So just find our index, and adjust the iterator afterwards.
2202 * If the offset is within the first bvec (or the whole first
2203 * bvec, just use iov_iter_advance(). This makes it easier
2204 * since we can just skip the first segment, which may not
2205 * be PAGE_SIZE aligned.
2206 */
2207 const struct bio_vec *bvec = imu->bvec;
2208
2209 if (offset <= bvec->bv_len) {
2210 iov_iter_advance(iter, offset);
2211 } else {
2212 unsigned long seg_skip;
2213
2214 /* skip first vec */
2215 offset -= bvec->bv_len;
2216 seg_skip = 1 + (offset >> PAGE_SHIFT);
2217
2218 iter->bvec = bvec + seg_skip;
2219 iter->nr_segs -= seg_skip;
Aleix Roca Nonell99c79f62019-08-15 14:03:22 +02002220 iter->count -= bvec->bv_len + offset;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002221 iter->iov_offset = offset & ~PAGE_MASK;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002222 }
2223 }
2224
Jens Axboe5e559562019-11-13 16:12:46 -07002225 return len;
Jens Axboeedafcce2019-01-09 09:16:05 -07002226}
2227
Jens Axboebcda7ba2020-02-23 16:42:51 -07002228static void io_ring_submit_unlock(struct io_ring_ctx *ctx, bool needs_lock)
2229{
2230 if (needs_lock)
2231 mutex_unlock(&ctx->uring_lock);
2232}
2233
2234static void io_ring_submit_lock(struct io_ring_ctx *ctx, bool needs_lock)
2235{
2236 /*
2237 * "Normal" inline submissions always hold the uring_lock, since we
2238 * grab it from the system call. Same is true for the SQPOLL offload.
2239 * The only exception is when we've detached the request and issue it
2240 * from an async worker thread, grab the lock for that case.
2241 */
2242 if (needs_lock)
2243 mutex_lock(&ctx->uring_lock);
2244}
2245
2246static struct io_buffer *io_buffer_select(struct io_kiocb *req, size_t *len,
2247 int bgid, struct io_buffer *kbuf,
2248 bool needs_lock)
2249{
2250 struct io_buffer *head;
2251
2252 if (req->flags & REQ_F_BUFFER_SELECTED)
2253 return kbuf;
2254
2255 io_ring_submit_lock(req->ctx, needs_lock);
2256
2257 lockdep_assert_held(&req->ctx->uring_lock);
2258
2259 head = idr_find(&req->ctx->io_buffer_idr, bgid);
2260 if (head) {
2261 if (!list_empty(&head->list)) {
2262 kbuf = list_last_entry(&head->list, struct io_buffer,
2263 list);
2264 list_del(&kbuf->list);
2265 } else {
2266 kbuf = head;
2267 idr_remove(&req->ctx->io_buffer_idr, bgid);
2268 }
2269 if (*len > kbuf->len)
2270 *len = kbuf->len;
2271 } else {
2272 kbuf = ERR_PTR(-ENOBUFS);
2273 }
2274
2275 io_ring_submit_unlock(req->ctx, needs_lock);
2276
2277 return kbuf;
2278}
2279
Jens Axboe4d954c22020-02-27 07:31:19 -07002280static void __user *io_rw_buffer_select(struct io_kiocb *req, size_t *len,
2281 bool needs_lock)
2282{
2283 struct io_buffer *kbuf;
2284 int bgid;
2285
2286 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
2287 bgid = (int) (unsigned long) req->rw.kiocb.private;
2288 kbuf = io_buffer_select(req, len, bgid, kbuf, needs_lock);
2289 if (IS_ERR(kbuf))
2290 return kbuf;
2291 req->rw.addr = (u64) (unsigned long) kbuf;
2292 req->flags |= REQ_F_BUFFER_SELECTED;
2293 return u64_to_user_ptr(kbuf->addr);
2294}
2295
2296#ifdef CONFIG_COMPAT
2297static ssize_t io_compat_import(struct io_kiocb *req, struct iovec *iov,
2298 bool needs_lock)
2299{
2300 struct compat_iovec __user *uiov;
2301 compat_ssize_t clen;
2302 void __user *buf;
2303 ssize_t len;
2304
2305 uiov = u64_to_user_ptr(req->rw.addr);
2306 if (!access_ok(uiov, sizeof(*uiov)))
2307 return -EFAULT;
2308 if (__get_user(clen, &uiov->iov_len))
2309 return -EFAULT;
2310 if (clen < 0)
2311 return -EINVAL;
2312
2313 len = clen;
2314 buf = io_rw_buffer_select(req, &len, needs_lock);
2315 if (IS_ERR(buf))
2316 return PTR_ERR(buf);
2317 iov[0].iov_base = buf;
2318 iov[0].iov_len = (compat_size_t) len;
2319 return 0;
2320}
2321#endif
2322
2323static ssize_t __io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
2324 bool needs_lock)
2325{
2326 struct iovec __user *uiov = u64_to_user_ptr(req->rw.addr);
2327 void __user *buf;
2328 ssize_t len;
2329
2330 if (copy_from_user(iov, uiov, sizeof(*uiov)))
2331 return -EFAULT;
2332
2333 len = iov[0].iov_len;
2334 if (len < 0)
2335 return -EINVAL;
2336 buf = io_rw_buffer_select(req, &len, needs_lock);
2337 if (IS_ERR(buf))
2338 return PTR_ERR(buf);
2339 iov[0].iov_base = buf;
2340 iov[0].iov_len = len;
2341 return 0;
2342}
2343
2344static ssize_t io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
2345 bool needs_lock)
2346{
2347 if (req->flags & REQ_F_BUFFER_SELECTED)
2348 return 0;
2349 if (!req->rw.len)
2350 return 0;
2351 else if (req->rw.len > 1)
2352 return -EINVAL;
2353
2354#ifdef CONFIG_COMPAT
2355 if (req->ctx->compat)
2356 return io_compat_import(req, iov, needs_lock);
2357#endif
2358
2359 return __io_iov_buffer_select(req, iov, needs_lock);
2360}
2361
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002362static ssize_t io_import_iovec(int rw, struct io_kiocb *req,
Jens Axboebcda7ba2020-02-23 16:42:51 -07002363 struct iovec **iovec, struct iov_iter *iter,
2364 bool needs_lock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002365{
Jens Axboe9adbd452019-12-20 08:45:55 -07002366 void __user *buf = u64_to_user_ptr(req->rw.addr);
2367 size_t sqe_len = req->rw.len;
Jens Axboe4d954c22020-02-27 07:31:19 -07002368 ssize_t ret;
Jens Axboeedafcce2019-01-09 09:16:05 -07002369 u8 opcode;
2370
Jens Axboed625c6e2019-12-17 19:53:05 -07002371 opcode = req->opcode;
Pavel Begunkov7d009162019-11-25 23:14:40 +03002372 if (opcode == IORING_OP_READ_FIXED || opcode == IORING_OP_WRITE_FIXED) {
Jens Axboeedafcce2019-01-09 09:16:05 -07002373 *iovec = NULL;
Jens Axboe9adbd452019-12-20 08:45:55 -07002374 return io_import_fixed(req, rw, iter);
Jens Axboeedafcce2019-01-09 09:16:05 -07002375 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002376
Jens Axboebcda7ba2020-02-23 16:42:51 -07002377 /* buffer index only valid with fixed read/write, or buffer select */
2378 if (req->rw.kiocb.private && !(req->flags & REQ_F_BUFFER_SELECT))
Jens Axboe9adbd452019-12-20 08:45:55 -07002379 return -EINVAL;
2380
Jens Axboe3a6820f2019-12-22 15:19:35 -07002381 if (opcode == IORING_OP_READ || opcode == IORING_OP_WRITE) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07002382 if (req->flags & REQ_F_BUFFER_SELECT) {
Jens Axboe4d954c22020-02-27 07:31:19 -07002383 buf = io_rw_buffer_select(req, &sqe_len, needs_lock);
2384 if (IS_ERR(buf)) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07002385 *iovec = NULL;
Jens Axboe4d954c22020-02-27 07:31:19 -07002386 return PTR_ERR(buf);
Jens Axboebcda7ba2020-02-23 16:42:51 -07002387 }
Jens Axboe3f9d6442020-03-11 12:27:04 -06002388 req->rw.len = sqe_len;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002389 }
2390
Jens Axboe3a6820f2019-12-22 15:19:35 -07002391 ret = import_single_range(rw, buf, sqe_len, *iovec, iter);
2392 *iovec = NULL;
Jens Axboe3a901592020-02-25 17:48:55 -07002393 return ret < 0 ? ret : sqe_len;
Jens Axboe3a6820f2019-12-22 15:19:35 -07002394 }
2395
Jens Axboef67676d2019-12-02 11:03:47 -07002396 if (req->io) {
2397 struct io_async_rw *iorw = &req->io->rw;
2398
2399 *iovec = iorw->iov;
2400 iov_iter_init(iter, rw, *iovec, iorw->nr_segs, iorw->size);
2401 if (iorw->iov == iorw->fast_iov)
2402 *iovec = NULL;
2403 return iorw->size;
2404 }
2405
Jens Axboe4d954c22020-02-27 07:31:19 -07002406 if (req->flags & REQ_F_BUFFER_SELECT) {
2407 ret = io_iov_buffer_select(req, *iovec, needs_lock);
Jens Axboe3f9d6442020-03-11 12:27:04 -06002408 if (!ret) {
2409 ret = (*iovec)->iov_len;
2410 iov_iter_init(iter, rw, *iovec, 1, ret);
2411 }
Jens Axboe4d954c22020-02-27 07:31:19 -07002412 *iovec = NULL;
2413 return ret;
2414 }
2415
Jens Axboe2b188cc2019-01-07 10:46:33 -07002416#ifdef CONFIG_COMPAT
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002417 if (req->ctx->compat)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002418 return compat_import_iovec(rw, buf, sqe_len, UIO_FASTIOV,
2419 iovec, iter);
2420#endif
2421
2422 return import_iovec(rw, buf, sqe_len, UIO_FASTIOV, iovec, iter);
2423}
2424
Jens Axboe32960612019-09-23 11:05:34 -06002425/*
2426 * For files that don't have ->read_iter() and ->write_iter(), handle them
2427 * by looping over ->read() or ->write() manually.
2428 */
2429static ssize_t loop_rw_iter(int rw, struct file *file, struct kiocb *kiocb,
2430 struct iov_iter *iter)
2431{
2432 ssize_t ret = 0;
2433
2434 /*
2435 * Don't support polled IO through this interface, and we can't
2436 * support non-blocking either. For the latter, this just causes
2437 * the kiocb to be handled from an async context.
2438 */
2439 if (kiocb->ki_flags & IOCB_HIPRI)
2440 return -EOPNOTSUPP;
2441 if (kiocb->ki_flags & IOCB_NOWAIT)
2442 return -EAGAIN;
2443
2444 while (iov_iter_count(iter)) {
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002445 struct iovec iovec;
Jens Axboe32960612019-09-23 11:05:34 -06002446 ssize_t nr;
2447
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002448 if (!iov_iter_is_bvec(iter)) {
2449 iovec = iov_iter_iovec(iter);
2450 } else {
2451 /* fixed buffers import bvec */
2452 iovec.iov_base = kmap(iter->bvec->bv_page)
2453 + iter->iov_offset;
2454 iovec.iov_len = min(iter->count,
2455 iter->bvec->bv_len - iter->iov_offset);
2456 }
2457
Jens Axboe32960612019-09-23 11:05:34 -06002458 if (rw == READ) {
2459 nr = file->f_op->read(file, iovec.iov_base,
2460 iovec.iov_len, &kiocb->ki_pos);
2461 } else {
2462 nr = file->f_op->write(file, iovec.iov_base,
2463 iovec.iov_len, &kiocb->ki_pos);
2464 }
2465
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002466 if (iov_iter_is_bvec(iter))
2467 kunmap(iter->bvec->bv_page);
2468
Jens Axboe32960612019-09-23 11:05:34 -06002469 if (nr < 0) {
2470 if (!ret)
2471 ret = nr;
2472 break;
2473 }
2474 ret += nr;
2475 if (nr != iovec.iov_len)
2476 break;
2477 iov_iter_advance(iter, nr);
2478 }
2479
2480 return ret;
2481}
2482
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002483static void io_req_map_rw(struct io_kiocb *req, ssize_t io_size,
Jens Axboef67676d2019-12-02 11:03:47 -07002484 struct iovec *iovec, struct iovec *fast_iov,
2485 struct iov_iter *iter)
2486{
2487 req->io->rw.nr_segs = iter->nr_segs;
2488 req->io->rw.size = io_size;
2489 req->io->rw.iov = iovec;
2490 if (!req->io->rw.iov) {
2491 req->io->rw.iov = req->io->rw.fast_iov;
Xiaoguang Wang45097da2020-04-08 22:29:58 +08002492 if (req->io->rw.iov != fast_iov)
2493 memcpy(req->io->rw.iov, fast_iov,
2494 sizeof(struct iovec) * iter->nr_segs);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002495 } else {
2496 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboef67676d2019-12-02 11:03:47 -07002497 }
2498}
2499
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08002500static inline int __io_alloc_async_ctx(struct io_kiocb *req)
2501{
2502 req->io = kmalloc(sizeof(*req->io), GFP_KERNEL);
2503 return req->io == NULL;
2504}
2505
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002506static int io_alloc_async_ctx(struct io_kiocb *req)
Jens Axboef67676d2019-12-02 11:03:47 -07002507{
Jens Axboed3656342019-12-18 09:50:26 -07002508 if (!io_op_defs[req->opcode].async_ctx)
2509 return 0;
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08002510
2511 return __io_alloc_async_ctx(req);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002512}
2513
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002514static int io_setup_async_rw(struct io_kiocb *req, ssize_t io_size,
2515 struct iovec *iovec, struct iovec *fast_iov,
2516 struct iov_iter *iter)
2517{
Jens Axboe980ad262020-01-24 23:08:54 -07002518 if (!io_op_defs[req->opcode].async_ctx)
Jens Axboe74566df2020-01-13 19:23:24 -07002519 return 0;
Jens Axboe5d204bc2020-01-31 12:06:52 -07002520 if (!req->io) {
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08002521 if (__io_alloc_async_ctx(req))
Jens Axboe5d204bc2020-01-31 12:06:52 -07002522 return -ENOMEM;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002523
Jens Axboe5d204bc2020-01-31 12:06:52 -07002524 io_req_map_rw(req, io_size, iovec, fast_iov, iter);
2525 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002526 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002527}
2528
Jens Axboe3529d8c2019-12-19 18:24:38 -07002529static int io_read_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2530 bool force_nonblock)
Jens Axboef67676d2019-12-02 11:03:47 -07002531{
Jens Axboe3529d8c2019-12-19 18:24:38 -07002532 struct io_async_ctx *io;
2533 struct iov_iter iter;
Jens Axboef67676d2019-12-02 11:03:47 -07002534 ssize_t ret;
2535
Jens Axboe3529d8c2019-12-19 18:24:38 -07002536 ret = io_prep_rw(req, sqe, force_nonblock);
2537 if (ret)
2538 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07002539
Jens Axboe3529d8c2019-12-19 18:24:38 -07002540 if (unlikely(!(req->file->f_mode & FMODE_READ)))
2541 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07002542
Pavel Begunkov5f798be2020-02-08 13:28:02 +03002543 /* either don't need iovec imported or already have it */
2544 if (!req->io || req->flags & REQ_F_NEED_CLEANUP)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002545 return 0;
2546
2547 io = req->io;
2548 io->rw.iov = io->rw.fast_iov;
2549 req->io = NULL;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002550 ret = io_import_iovec(READ, req, &io->rw.iov, &iter, !force_nonblock);
Jens Axboe3529d8c2019-12-19 18:24:38 -07002551 req->io = io;
2552 if (ret < 0)
2553 return ret;
2554
2555 io_req_map_rw(req, ret, io->rw.iov, io->rw.fast_iov, &iter);
2556 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002557}
2558
Pavel Begunkov014db002020-03-03 21:33:12 +03002559static int io_read(struct io_kiocb *req, bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002560{
2561 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07002562 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002563 struct iov_iter iter;
Jens Axboe31b51512019-01-18 22:56:34 -07002564 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07002565 ssize_t io_size, ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002566
Jens Axboebcda7ba2020-02-23 16:42:51 -07002567 ret = io_import_iovec(READ, req, &iovec, &iter, !force_nonblock);
Jens Axboe06b76d42019-12-19 14:44:26 -07002568 if (ret < 0)
2569 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002570
Jens Axboefd6c2e42019-12-18 12:19:41 -07002571 /* Ensure we clear previously set non-block flag */
2572 if (!force_nonblock)
Jens Axboe29de5f62020-02-20 09:56:08 -07002573 kiocb->ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07002574
Bijan Mottahedeh797f3f52020-01-15 18:37:45 -08002575 req->result = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002576 io_size = ret;
Pavel Begunkovdea3b492020-04-12 02:05:04 +03002577 if (req->flags & REQ_F_LINK_HEAD)
Jens Axboef67676d2019-12-02 11:03:47 -07002578 req->result = io_size;
2579
2580 /*
2581 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
2582 * we know to async punt it even if it was opened O_NONBLOCK
2583 */
Jens Axboeaf197f52020-04-28 13:15:06 -06002584 if (force_nonblock && !io_file_supports_async(req->file, READ))
Jens Axboef67676d2019-12-02 11:03:47 -07002585 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06002586
Jens Axboe31b51512019-01-18 22:56:34 -07002587 iov_count = iov_iter_count(&iter);
Jens Axboe9adbd452019-12-20 08:45:55 -07002588 ret = rw_verify_area(READ, req->file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002589 if (!ret) {
2590 ssize_t ret2;
2591
Jens Axboe9adbd452019-12-20 08:45:55 -07002592 if (req->file->f_op->read_iter)
2593 ret2 = call_read_iter(req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002594 else
Jens Axboe9adbd452019-12-20 08:45:55 -07002595 ret2 = loop_rw_iter(READ, req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002596
Jens Axboe9d93a3f2019-05-15 13:53:07 -06002597 /* Catch -EAGAIN return for forced non-blocking submission */
Jens Axboef67676d2019-12-02 11:03:47 -07002598 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkov014db002020-03-03 21:33:12 +03002599 kiocb_done(kiocb, ret2);
Jens Axboef67676d2019-12-02 11:03:47 -07002600 } else {
2601copy_iov:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002602 ret = io_setup_async_rw(req, io_size, iovec,
Jens Axboef67676d2019-12-02 11:03:47 -07002603 inline_vecs, &iter);
2604 if (ret)
2605 goto out_free;
Jens Axboe29de5f62020-02-20 09:56:08 -07002606 /* any defer here is final, must blocking retry */
2607 if (!(req->flags & REQ_F_NOWAIT))
2608 req->flags |= REQ_F_MUST_PUNT;
Jens Axboef67676d2019-12-02 11:03:47 -07002609 return -EAGAIN;
2610 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002611 }
Jens Axboef67676d2019-12-02 11:03:47 -07002612out_free:
Pavel Begunkov1e950812020-02-06 19:51:16 +03002613 kfree(iovec);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002614 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002615 return ret;
2616}
2617
Jens Axboe3529d8c2019-12-19 18:24:38 -07002618static int io_write_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2619 bool force_nonblock)
Jens Axboef67676d2019-12-02 11:03:47 -07002620{
Jens Axboe3529d8c2019-12-19 18:24:38 -07002621 struct io_async_ctx *io;
2622 struct iov_iter iter;
Jens Axboef67676d2019-12-02 11:03:47 -07002623 ssize_t ret;
2624
Jens Axboe3529d8c2019-12-19 18:24:38 -07002625 ret = io_prep_rw(req, sqe, force_nonblock);
2626 if (ret)
2627 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07002628
Jens Axboe3529d8c2019-12-19 18:24:38 -07002629 if (unlikely(!(req->file->f_mode & FMODE_WRITE)))
2630 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07002631
Jens Axboe4ed734b2020-03-20 11:23:41 -06002632 req->fsize = rlimit(RLIMIT_FSIZE);
2633
Pavel Begunkov5f798be2020-02-08 13:28:02 +03002634 /* either don't need iovec imported or already have it */
2635 if (!req->io || req->flags & REQ_F_NEED_CLEANUP)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002636 return 0;
2637
2638 io = req->io;
2639 io->rw.iov = io->rw.fast_iov;
2640 req->io = NULL;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002641 ret = io_import_iovec(WRITE, req, &io->rw.iov, &iter, !force_nonblock);
Jens Axboe3529d8c2019-12-19 18:24:38 -07002642 req->io = io;
2643 if (ret < 0)
2644 return ret;
2645
2646 io_req_map_rw(req, ret, io->rw.iov, io->rw.fast_iov, &iter);
2647 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002648}
2649
Pavel Begunkov014db002020-03-03 21:33:12 +03002650static int io_write(struct io_kiocb *req, bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002651{
2652 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07002653 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002654 struct iov_iter iter;
Jens Axboe31b51512019-01-18 22:56:34 -07002655 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07002656 ssize_t ret, io_size;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002657
Jens Axboebcda7ba2020-02-23 16:42:51 -07002658 ret = io_import_iovec(WRITE, req, &iovec, &iter, !force_nonblock);
Jens Axboe06b76d42019-12-19 14:44:26 -07002659 if (ret < 0)
2660 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002661
Jens Axboefd6c2e42019-12-18 12:19:41 -07002662 /* Ensure we clear previously set non-block flag */
2663 if (!force_nonblock)
Jens Axboe9adbd452019-12-20 08:45:55 -07002664 req->rw.kiocb.ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07002665
Bijan Mottahedeh797f3f52020-01-15 18:37:45 -08002666 req->result = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002667 io_size = ret;
Pavel Begunkovdea3b492020-04-12 02:05:04 +03002668 if (req->flags & REQ_F_LINK_HEAD)
Jens Axboef67676d2019-12-02 11:03:47 -07002669 req->result = io_size;
2670
2671 /*
2672 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
2673 * we know to async punt it even if it was opened O_NONBLOCK
2674 */
Jens Axboeaf197f52020-04-28 13:15:06 -06002675 if (force_nonblock && !io_file_supports_async(req->file, WRITE))
Jens Axboef67676d2019-12-02 11:03:47 -07002676 goto copy_iov;
Jens Axboef67676d2019-12-02 11:03:47 -07002677
Jens Axboe10d59342019-12-09 20:16:22 -07002678 /* file path doesn't support NOWAIT for non-direct_IO */
2679 if (force_nonblock && !(kiocb->ki_flags & IOCB_DIRECT) &&
2680 (req->flags & REQ_F_ISREG))
Jens Axboef67676d2019-12-02 11:03:47 -07002681 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06002682
Jens Axboe31b51512019-01-18 22:56:34 -07002683 iov_count = iov_iter_count(&iter);
Jens Axboe9adbd452019-12-20 08:45:55 -07002684 ret = rw_verify_area(WRITE, req->file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002685 if (!ret) {
Roman Penyaev9bf79332019-03-25 20:09:24 +01002686 ssize_t ret2;
2687
Jens Axboe2b188cc2019-01-07 10:46:33 -07002688 /*
2689 * Open-code file_start_write here to grab freeze protection,
2690 * which will be released by another thread in
2691 * io_complete_rw(). Fool lockdep by telling it the lock got
2692 * released so that it doesn't complain about the held lock when
2693 * we return to userspace.
2694 */
Jens Axboe491381ce2019-10-17 09:20:46 -06002695 if (req->flags & REQ_F_ISREG) {
Jens Axboe9adbd452019-12-20 08:45:55 -07002696 __sb_start_write(file_inode(req->file)->i_sb,
Jens Axboe2b188cc2019-01-07 10:46:33 -07002697 SB_FREEZE_WRITE, true);
Jens Axboe9adbd452019-12-20 08:45:55 -07002698 __sb_writers_release(file_inode(req->file)->i_sb,
Jens Axboe2b188cc2019-01-07 10:46:33 -07002699 SB_FREEZE_WRITE);
2700 }
2701 kiocb->ki_flags |= IOCB_WRITE;
Roman Penyaev9bf79332019-03-25 20:09:24 +01002702
Jens Axboe4ed734b2020-03-20 11:23:41 -06002703 if (!force_nonblock)
2704 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = req->fsize;
2705
Jens Axboe9adbd452019-12-20 08:45:55 -07002706 if (req->file->f_op->write_iter)
2707 ret2 = call_write_iter(req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002708 else
Jens Axboe9adbd452019-12-20 08:45:55 -07002709 ret2 = loop_rw_iter(WRITE, req->file, kiocb, &iter);
Jens Axboe4ed734b2020-03-20 11:23:41 -06002710
2711 if (!force_nonblock)
2712 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = RLIM_INFINITY;
2713
Jens Axboefaac9962020-02-07 15:45:22 -07002714 /*
Chucheng Luobff60352020-03-25 11:31:38 +08002715 * Raw bdev writes will return -EOPNOTSUPP for IOCB_NOWAIT. Just
Jens Axboefaac9962020-02-07 15:45:22 -07002716 * retry them without IOCB_NOWAIT.
2717 */
2718 if (ret2 == -EOPNOTSUPP && (kiocb->ki_flags & IOCB_NOWAIT))
2719 ret2 = -EAGAIN;
Jens Axboef67676d2019-12-02 11:03:47 -07002720 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkov014db002020-03-03 21:33:12 +03002721 kiocb_done(kiocb, ret2);
Jens Axboef67676d2019-12-02 11:03:47 -07002722 } else {
2723copy_iov:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002724 ret = io_setup_async_rw(req, io_size, iovec,
Jens Axboef67676d2019-12-02 11:03:47 -07002725 inline_vecs, &iter);
2726 if (ret)
2727 goto out_free;
Jens Axboe29de5f62020-02-20 09:56:08 -07002728 /* any defer here is final, must blocking retry */
2729 req->flags |= REQ_F_MUST_PUNT;
Jens Axboef67676d2019-12-02 11:03:47 -07002730 return -EAGAIN;
2731 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002732 }
Jens Axboe31b51512019-01-18 22:56:34 -07002733out_free:
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002734 req->flags &= ~REQ_F_NEED_CLEANUP;
Pavel Begunkov1e950812020-02-06 19:51:16 +03002735 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002736 return ret;
2737}
2738
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002739static int io_splice_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2740{
2741 struct io_splice* sp = &req->splice;
2742 unsigned int valid_flags = SPLICE_F_FD_IN_FIXED | SPLICE_F_ALL;
2743 int ret;
2744
2745 if (req->flags & REQ_F_NEED_CLEANUP)
2746 return 0;
2747
2748 sp->file_in = NULL;
2749 sp->off_in = READ_ONCE(sqe->splice_off_in);
2750 sp->off_out = READ_ONCE(sqe->off);
2751 sp->len = READ_ONCE(sqe->len);
2752 sp->flags = READ_ONCE(sqe->splice_flags);
2753
2754 if (unlikely(sp->flags & ~valid_flags))
2755 return -EINVAL;
2756
2757 ret = io_file_get(NULL, req, READ_ONCE(sqe->splice_fd_in), &sp->file_in,
2758 (sp->flags & SPLICE_F_FD_IN_FIXED));
2759 if (ret)
2760 return ret;
2761 req->flags |= REQ_F_NEED_CLEANUP;
2762
2763 if (!S_ISREG(file_inode(sp->file_in)->i_mode))
2764 req->work.flags |= IO_WQ_WORK_UNBOUND;
2765
2766 return 0;
2767}
2768
Jens Axboeaf197f52020-04-28 13:15:06 -06002769static bool io_splice_punt(struct file *file, int rw)
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002770{
2771 if (get_pipe_info(file))
2772 return false;
Jens Axboeaf197f52020-04-28 13:15:06 -06002773 if (!io_file_supports_async(file, rw))
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002774 return true;
Jens Axboe88357582020-04-12 21:12:49 -06002775 return !(file->f_flags & O_NONBLOCK);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002776}
2777
Pavel Begunkov014db002020-03-03 21:33:12 +03002778static int io_splice(struct io_kiocb *req, bool force_nonblock)
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002779{
2780 struct io_splice *sp = &req->splice;
2781 struct file *in = sp->file_in;
2782 struct file *out = sp->file_out;
2783 unsigned int flags = sp->flags & ~SPLICE_F_FD_IN_FIXED;
2784 loff_t *poff_in, *poff_out;
2785 long ret;
2786
2787 if (force_nonblock) {
Jens Axboeaf197f52020-04-28 13:15:06 -06002788 if (io_splice_punt(in, READ) || io_splice_punt(out, WRITE))
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002789 return -EAGAIN;
2790 flags |= SPLICE_F_NONBLOCK;
2791 }
2792
2793 poff_in = (sp->off_in == -1) ? NULL : &sp->off_in;
2794 poff_out = (sp->off_out == -1) ? NULL : &sp->off_out;
2795 ret = do_splice(in, poff_in, out, poff_out, sp->len, flags);
2796 if (force_nonblock && ret == -EAGAIN)
2797 return -EAGAIN;
2798
2799 io_put_file(req, in, (sp->flags & SPLICE_F_FD_IN_FIXED));
2800 req->flags &= ~REQ_F_NEED_CLEANUP;
2801
2802 io_cqring_add_event(req, ret);
2803 if (ret != sp->len)
2804 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03002805 io_put_req(req);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002806 return 0;
2807}
2808
Jens Axboe2b188cc2019-01-07 10:46:33 -07002809/*
2810 * IORING_OP_NOP just posts a completion event, nothing else.
2811 */
Jens Axboe78e19bb2019-11-06 15:21:34 -07002812static int io_nop(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002813{
2814 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002815
Jens Axboedef596e2019-01-09 08:59:42 -07002816 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
2817 return -EINVAL;
2818
Jens Axboe78e19bb2019-11-06 15:21:34 -07002819 io_cqring_add_event(req, 0);
Jens Axboee65ef562019-03-12 10:16:44 -06002820 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002821 return 0;
2822}
2823
Jens Axboe3529d8c2019-12-19 18:24:38 -07002824static int io_prep_fsync(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002825{
Jens Axboe6b063142019-01-10 22:13:58 -07002826 struct io_ring_ctx *ctx = req->ctx;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002827
Jens Axboe09bb8392019-03-13 12:39:28 -06002828 if (!req->file)
2829 return -EBADF;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002830
Jens Axboe6b063142019-01-10 22:13:58 -07002831 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboedef596e2019-01-09 08:59:42 -07002832 return -EINVAL;
Jens Axboeedafcce2019-01-09 09:16:05 -07002833 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002834 return -EINVAL;
2835
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002836 req->sync.flags = READ_ONCE(sqe->fsync_flags);
2837 if (unlikely(req->sync.flags & ~IORING_FSYNC_DATASYNC))
2838 return -EINVAL;
2839
2840 req->sync.off = READ_ONCE(sqe->off);
2841 req->sync.len = READ_ONCE(sqe->len);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002842 return 0;
2843}
2844
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002845static bool io_req_cancelled(struct io_kiocb *req)
2846{
2847 if (req->work.flags & IO_WQ_WORK_CANCEL) {
2848 req_set_fail_links(req);
2849 io_cqring_add_event(req, -ECANCELED);
2850 io_put_req(req);
2851 return true;
2852 }
2853
2854 return false;
2855}
2856
Pavel Begunkov014db002020-03-03 21:33:12 +03002857static void __io_fsync(struct io_kiocb *req)
Jens Axboe78912932020-01-14 22:09:06 -07002858{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002859 loff_t end = req->sync.off + req->sync.len;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002860 int ret;
2861
Jens Axboe9adbd452019-12-20 08:45:55 -07002862 ret = vfs_fsync_range(req->file, req->sync.off,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002863 end > 0 ? end : LLONG_MAX,
2864 req->sync.flags & IORING_FSYNC_DATASYNC);
2865 if (ret < 0)
2866 req_set_fail_links(req);
2867 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03002868 io_put_req(req);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002869}
2870
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002871static void io_fsync_finish(struct io_wq_work **workptr)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002872{
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002873 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002874
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002875 if (io_req_cancelled(req))
2876 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03002877 __io_fsync(req);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03002878 io_steal_work(req, workptr);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002879}
2880
Pavel Begunkov014db002020-03-03 21:33:12 +03002881static int io_fsync(struct io_kiocb *req, bool force_nonblock)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002882{
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002883 /* fsync always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002884 if (force_nonblock) {
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002885 req->work.func = io_fsync_finish;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002886 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002887 }
Pavel Begunkov014db002020-03-03 21:33:12 +03002888 __io_fsync(req);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002889 return 0;
2890}
2891
Pavel Begunkov014db002020-03-03 21:33:12 +03002892static void __io_fallocate(struct io_kiocb *req)
Jens Axboed63d1b52019-12-10 10:38:56 -07002893{
Jens Axboed63d1b52019-12-10 10:38:56 -07002894 int ret;
2895
Jens Axboe4ed734b2020-03-20 11:23:41 -06002896 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = req->fsize;
Jens Axboed63d1b52019-12-10 10:38:56 -07002897 ret = vfs_fallocate(req->file, req->sync.mode, req->sync.off,
2898 req->sync.len);
Jens Axboe4ed734b2020-03-20 11:23:41 -06002899 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = RLIM_INFINITY;
Jens Axboed63d1b52019-12-10 10:38:56 -07002900 if (ret < 0)
2901 req_set_fail_links(req);
2902 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03002903 io_put_req(req);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002904}
2905
Jens Axboe2b188cc2019-01-07 10:46:33 -07002906static void io_fallocate_finish(struct io_wq_work **workptr)
2907{
2908 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Jens Axboed63d1b52019-12-10 10:38:56 -07002909
2910 if (io_req_cancelled(req))
2911 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03002912 __io_fallocate(req);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03002913 io_steal_work(req, workptr);
Jens Axboed63d1b52019-12-10 10:38:56 -07002914}
2915
2916static int io_fallocate_prep(struct io_kiocb *req,
2917 const struct io_uring_sqe *sqe)
2918{
2919 if (sqe->ioprio || sqe->buf_index || sqe->rw_flags)
2920 return -EINVAL;
2921
2922 req->sync.off = READ_ONCE(sqe->off);
2923 req->sync.len = READ_ONCE(sqe->addr);
2924 req->sync.mode = READ_ONCE(sqe->len);
Jens Axboe4ed734b2020-03-20 11:23:41 -06002925 req->fsize = rlimit(RLIMIT_FSIZE);
Jens Axboed63d1b52019-12-10 10:38:56 -07002926 return 0;
2927}
2928
Pavel Begunkov014db002020-03-03 21:33:12 +03002929static int io_fallocate(struct io_kiocb *req, bool force_nonblock)
Jens Axboed63d1b52019-12-10 10:38:56 -07002930{
Jens Axboed63d1b52019-12-10 10:38:56 -07002931 /* fallocate always requiring blocking context */
2932 if (force_nonblock) {
Jens Axboed63d1b52019-12-10 10:38:56 -07002933 req->work.func = io_fallocate_finish;
2934 return -EAGAIN;
2935 }
2936
Pavel Begunkov014db002020-03-03 21:33:12 +03002937 __io_fallocate(req);
Jens Axboed63d1b52019-12-10 10:38:56 -07002938 return 0;
2939}
2940
Jens Axboe15b71ab2019-12-11 11:20:36 -07002941static int io_openat_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2942{
Jens Axboef8748882020-01-08 17:47:02 -07002943 const char __user *fname;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002944 int ret;
2945
2946 if (sqe->ioprio || sqe->buf_index)
2947 return -EINVAL;
Pavel Begunkov9c280f92020-04-08 08:58:46 +03002948 if (req->flags & REQ_F_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07002949 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03002950 if (req->flags & REQ_F_NEED_CLEANUP)
2951 return 0;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002952
2953 req->open.dfd = READ_ONCE(sqe->fd);
Jens Axboec12cedf2020-01-08 17:41:21 -07002954 req->open.how.mode = READ_ONCE(sqe->len);
Jens Axboef8748882020-01-08 17:47:02 -07002955 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboec12cedf2020-01-08 17:41:21 -07002956 req->open.how.flags = READ_ONCE(sqe->open_flags);
Jens Axboe08a1d26eb2020-04-08 09:20:54 -06002957 if (force_o_largefile())
2958 req->open.how.flags |= O_LARGEFILE;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002959
Jens Axboef8748882020-01-08 17:47:02 -07002960 req->open.filename = getname(fname);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002961 if (IS_ERR(req->open.filename)) {
2962 ret = PTR_ERR(req->open.filename);
2963 req->open.filename = NULL;
2964 return ret;
2965 }
2966
Jens Axboe4022e7a2020-03-19 19:23:18 -06002967 req->open.nofile = rlimit(RLIMIT_NOFILE);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03002968 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002969 return 0;
2970}
2971
Jens Axboecebdb982020-01-08 17:59:24 -07002972static int io_openat2_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2973{
2974 struct open_how __user *how;
2975 const char __user *fname;
2976 size_t len;
2977 int ret;
2978
2979 if (sqe->ioprio || sqe->buf_index)
2980 return -EINVAL;
Pavel Begunkov9c280f92020-04-08 08:58:46 +03002981 if (req->flags & REQ_F_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07002982 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03002983 if (req->flags & REQ_F_NEED_CLEANUP)
2984 return 0;
Jens Axboecebdb982020-01-08 17:59:24 -07002985
2986 req->open.dfd = READ_ONCE(sqe->fd);
2987 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
2988 how = u64_to_user_ptr(READ_ONCE(sqe->addr2));
2989 len = READ_ONCE(sqe->len);
2990
2991 if (len < OPEN_HOW_SIZE_VER0)
2992 return -EINVAL;
2993
2994 ret = copy_struct_from_user(&req->open.how, sizeof(req->open.how), how,
2995 len);
2996 if (ret)
2997 return ret;
2998
2999 if (!(req->open.how.flags & O_PATH) && force_o_largefile())
3000 req->open.how.flags |= O_LARGEFILE;
3001
3002 req->open.filename = getname(fname);
3003 if (IS_ERR(req->open.filename)) {
3004 ret = PTR_ERR(req->open.filename);
3005 req->open.filename = NULL;
3006 return ret;
3007 }
3008
Jens Axboe4022e7a2020-03-19 19:23:18 -06003009 req->open.nofile = rlimit(RLIMIT_NOFILE);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003010 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboecebdb982020-01-08 17:59:24 -07003011 return 0;
3012}
3013
Pavel Begunkov014db002020-03-03 21:33:12 +03003014static int io_openat2(struct io_kiocb *req, bool force_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07003015{
3016 struct open_flags op;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003017 struct file *file;
3018 int ret;
3019
Jens Axboef86cd202020-01-29 13:46:44 -07003020 if (force_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07003021 return -EAGAIN;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003022
Jens Axboecebdb982020-01-08 17:59:24 -07003023 ret = build_open_flags(&req->open.how, &op);
Jens Axboe15b71ab2019-12-11 11:20:36 -07003024 if (ret)
3025 goto err;
3026
Jens Axboe4022e7a2020-03-19 19:23:18 -06003027 ret = __get_unused_fd_flags(req->open.how.flags, req->open.nofile);
Jens Axboe15b71ab2019-12-11 11:20:36 -07003028 if (ret < 0)
3029 goto err;
3030
3031 file = do_filp_open(req->open.dfd, req->open.filename, &op);
3032 if (IS_ERR(file)) {
3033 put_unused_fd(ret);
3034 ret = PTR_ERR(file);
3035 } else {
3036 fsnotify_open(file);
3037 fd_install(ret, file);
3038 }
3039err:
3040 putname(req->open.filename);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003041 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003042 if (ret < 0)
3043 req_set_fail_links(req);
3044 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003045 io_put_req(req);
Jens Axboe15b71ab2019-12-11 11:20:36 -07003046 return 0;
3047}
3048
Pavel Begunkov014db002020-03-03 21:33:12 +03003049static int io_openat(struct io_kiocb *req, bool force_nonblock)
Jens Axboecebdb982020-01-08 17:59:24 -07003050{
3051 req->open.how = build_open_how(req->open.how.flags, req->open.how.mode);
Pavel Begunkov014db002020-03-03 21:33:12 +03003052 return io_openat2(req, force_nonblock);
Jens Axboecebdb982020-01-08 17:59:24 -07003053}
3054
Jens Axboe067524e2020-03-02 16:32:28 -07003055static int io_remove_buffers_prep(struct io_kiocb *req,
3056 const struct io_uring_sqe *sqe)
3057{
3058 struct io_provide_buf *p = &req->pbuf;
3059 u64 tmp;
3060
3061 if (sqe->ioprio || sqe->rw_flags || sqe->addr || sqe->len || sqe->off)
3062 return -EINVAL;
3063
3064 tmp = READ_ONCE(sqe->fd);
3065 if (!tmp || tmp > USHRT_MAX)
3066 return -EINVAL;
3067
3068 memset(p, 0, sizeof(*p));
3069 p->nbufs = tmp;
3070 p->bgid = READ_ONCE(sqe->buf_group);
3071 return 0;
3072}
3073
3074static int __io_remove_buffers(struct io_ring_ctx *ctx, struct io_buffer *buf,
3075 int bgid, unsigned nbufs)
3076{
3077 unsigned i = 0;
3078
3079 /* shouldn't happen */
3080 if (!nbufs)
3081 return 0;
3082
3083 /* the head kbuf is the list itself */
3084 while (!list_empty(&buf->list)) {
3085 struct io_buffer *nxt;
3086
3087 nxt = list_first_entry(&buf->list, struct io_buffer, list);
3088 list_del(&nxt->list);
3089 kfree(nxt);
3090 if (++i == nbufs)
3091 return i;
3092 }
3093 i++;
3094 kfree(buf);
3095 idr_remove(&ctx->io_buffer_idr, bgid);
3096
3097 return i;
3098}
3099
3100static int io_remove_buffers(struct io_kiocb *req, bool force_nonblock)
3101{
3102 struct io_provide_buf *p = &req->pbuf;
3103 struct io_ring_ctx *ctx = req->ctx;
3104 struct io_buffer *head;
3105 int ret = 0;
3106
3107 io_ring_submit_lock(ctx, !force_nonblock);
3108
3109 lockdep_assert_held(&ctx->uring_lock);
3110
3111 ret = -ENOENT;
3112 head = idr_find(&ctx->io_buffer_idr, p->bgid);
3113 if (head)
3114 ret = __io_remove_buffers(ctx, head, p->bgid, p->nbufs);
3115
3116 io_ring_submit_lock(ctx, !force_nonblock);
3117 if (ret < 0)
3118 req_set_fail_links(req);
3119 io_cqring_add_event(req, ret);
3120 io_put_req(req);
3121 return 0;
3122}
3123
Jens Axboeddf0322d2020-02-23 16:41:33 -07003124static int io_provide_buffers_prep(struct io_kiocb *req,
3125 const struct io_uring_sqe *sqe)
3126{
3127 struct io_provide_buf *p = &req->pbuf;
3128 u64 tmp;
3129
3130 if (sqe->ioprio || sqe->rw_flags)
3131 return -EINVAL;
3132
3133 tmp = READ_ONCE(sqe->fd);
3134 if (!tmp || tmp > USHRT_MAX)
3135 return -E2BIG;
3136 p->nbufs = tmp;
3137 p->addr = READ_ONCE(sqe->addr);
3138 p->len = READ_ONCE(sqe->len);
3139
3140 if (!access_ok(u64_to_user_ptr(p->addr), p->len))
3141 return -EFAULT;
3142
3143 p->bgid = READ_ONCE(sqe->buf_group);
3144 tmp = READ_ONCE(sqe->off);
3145 if (tmp > USHRT_MAX)
3146 return -E2BIG;
3147 p->bid = tmp;
3148 return 0;
3149}
3150
3151static int io_add_buffers(struct io_provide_buf *pbuf, struct io_buffer **head)
3152{
3153 struct io_buffer *buf;
3154 u64 addr = pbuf->addr;
3155 int i, bid = pbuf->bid;
3156
3157 for (i = 0; i < pbuf->nbufs; i++) {
3158 buf = kmalloc(sizeof(*buf), GFP_KERNEL);
3159 if (!buf)
3160 break;
3161
3162 buf->addr = addr;
3163 buf->len = pbuf->len;
3164 buf->bid = bid;
3165 addr += pbuf->len;
3166 bid++;
3167 if (!*head) {
3168 INIT_LIST_HEAD(&buf->list);
3169 *head = buf;
3170 } else {
3171 list_add_tail(&buf->list, &(*head)->list);
3172 }
3173 }
3174
3175 return i ? i : -ENOMEM;
3176}
3177
Jens Axboeddf0322d2020-02-23 16:41:33 -07003178static int io_provide_buffers(struct io_kiocb *req, bool force_nonblock)
3179{
3180 struct io_provide_buf *p = &req->pbuf;
3181 struct io_ring_ctx *ctx = req->ctx;
3182 struct io_buffer *head, *list;
3183 int ret = 0;
3184
3185 io_ring_submit_lock(ctx, !force_nonblock);
3186
3187 lockdep_assert_held(&ctx->uring_lock);
3188
3189 list = head = idr_find(&ctx->io_buffer_idr, p->bgid);
3190
3191 ret = io_add_buffers(p, &head);
3192 if (ret < 0)
3193 goto out;
3194
3195 if (!list) {
3196 ret = idr_alloc(&ctx->io_buffer_idr, head, p->bgid, p->bgid + 1,
3197 GFP_KERNEL);
3198 if (ret < 0) {
Jens Axboe067524e2020-03-02 16:32:28 -07003199 __io_remove_buffers(ctx, head, p->bgid, -1U);
Jens Axboeddf0322d2020-02-23 16:41:33 -07003200 goto out;
3201 }
3202 }
3203out:
3204 io_ring_submit_unlock(ctx, !force_nonblock);
3205 if (ret < 0)
3206 req_set_fail_links(req);
3207 io_cqring_add_event(req, ret);
3208 io_put_req(req);
3209 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003210}
3211
Jens Axboe3e4827b2020-01-08 15:18:09 -07003212static int io_epoll_ctl_prep(struct io_kiocb *req,
3213 const struct io_uring_sqe *sqe)
3214{
3215#if defined(CONFIG_EPOLL)
3216 if (sqe->ioprio || sqe->buf_index)
3217 return -EINVAL;
3218
3219 req->epoll.epfd = READ_ONCE(sqe->fd);
3220 req->epoll.op = READ_ONCE(sqe->len);
3221 req->epoll.fd = READ_ONCE(sqe->off);
3222
3223 if (ep_op_has_event(req->epoll.op)) {
3224 struct epoll_event __user *ev;
3225
3226 ev = u64_to_user_ptr(READ_ONCE(sqe->addr));
3227 if (copy_from_user(&req->epoll.event, ev, sizeof(*ev)))
3228 return -EFAULT;
3229 }
3230
3231 return 0;
3232#else
3233 return -EOPNOTSUPP;
3234#endif
3235}
3236
Pavel Begunkov014db002020-03-03 21:33:12 +03003237static int io_epoll_ctl(struct io_kiocb *req, bool force_nonblock)
Jens Axboe3e4827b2020-01-08 15:18:09 -07003238{
3239#if defined(CONFIG_EPOLL)
3240 struct io_epoll *ie = &req->epoll;
3241 int ret;
3242
3243 ret = do_epoll_ctl(ie->epfd, ie->op, ie->fd, &ie->event, force_nonblock);
3244 if (force_nonblock && ret == -EAGAIN)
3245 return -EAGAIN;
3246
3247 if (ret < 0)
3248 req_set_fail_links(req);
3249 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003250 io_put_req(req);
Jens Axboe3e4827b2020-01-08 15:18:09 -07003251 return 0;
3252#else
3253 return -EOPNOTSUPP;
3254#endif
3255}
3256
Jens Axboec1ca7572019-12-25 22:18:28 -07003257static int io_madvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3258{
3259#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
3260 if (sqe->ioprio || sqe->buf_index || sqe->off)
3261 return -EINVAL;
3262
3263 req->madvise.addr = READ_ONCE(sqe->addr);
3264 req->madvise.len = READ_ONCE(sqe->len);
3265 req->madvise.advice = READ_ONCE(sqe->fadvise_advice);
3266 return 0;
3267#else
3268 return -EOPNOTSUPP;
3269#endif
3270}
3271
Pavel Begunkov014db002020-03-03 21:33:12 +03003272static int io_madvise(struct io_kiocb *req, bool force_nonblock)
Jens Axboec1ca7572019-12-25 22:18:28 -07003273{
3274#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
3275 struct io_madvise *ma = &req->madvise;
3276 int ret;
3277
3278 if (force_nonblock)
3279 return -EAGAIN;
3280
3281 ret = do_madvise(ma->addr, ma->len, ma->advice);
3282 if (ret < 0)
3283 req_set_fail_links(req);
3284 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003285 io_put_req(req);
Jens Axboec1ca7572019-12-25 22:18:28 -07003286 return 0;
3287#else
3288 return -EOPNOTSUPP;
3289#endif
3290}
3291
Jens Axboe4840e412019-12-25 22:03:45 -07003292static int io_fadvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3293{
3294 if (sqe->ioprio || sqe->buf_index || sqe->addr)
3295 return -EINVAL;
3296
3297 req->fadvise.offset = READ_ONCE(sqe->off);
3298 req->fadvise.len = READ_ONCE(sqe->len);
3299 req->fadvise.advice = READ_ONCE(sqe->fadvise_advice);
3300 return 0;
3301}
3302
Pavel Begunkov014db002020-03-03 21:33:12 +03003303static int io_fadvise(struct io_kiocb *req, bool force_nonblock)
Jens Axboe4840e412019-12-25 22:03:45 -07003304{
3305 struct io_fadvise *fa = &req->fadvise;
3306 int ret;
3307
Jens Axboe3e694262020-02-01 09:22:49 -07003308 if (force_nonblock) {
3309 switch (fa->advice) {
3310 case POSIX_FADV_NORMAL:
3311 case POSIX_FADV_RANDOM:
3312 case POSIX_FADV_SEQUENTIAL:
3313 break;
3314 default:
3315 return -EAGAIN;
3316 }
3317 }
Jens Axboe4840e412019-12-25 22:03:45 -07003318
3319 ret = vfs_fadvise(req->file, fa->offset, fa->len, fa->advice);
3320 if (ret < 0)
3321 req_set_fail_links(req);
3322 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003323 io_put_req(req);
Jens Axboe4840e412019-12-25 22:03:45 -07003324 return 0;
3325}
3326
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003327static int io_statx_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3328{
Jens Axboef8748882020-01-08 17:47:02 -07003329 const char __user *fname;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003330 unsigned lookup_flags;
3331 int ret;
3332
3333 if (sqe->ioprio || sqe->buf_index)
3334 return -EINVAL;
Pavel Begunkov9c280f92020-04-08 08:58:46 +03003335 if (req->flags & REQ_F_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07003336 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03003337 if (req->flags & REQ_F_NEED_CLEANUP)
3338 return 0;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003339
3340 req->open.dfd = READ_ONCE(sqe->fd);
3341 req->open.mask = READ_ONCE(sqe->len);
Jens Axboef8748882020-01-08 17:47:02 -07003342 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003343 req->open.buffer = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboec12cedf2020-01-08 17:41:21 -07003344 req->open.how.flags = READ_ONCE(sqe->statx_flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003345
Jens Axboec12cedf2020-01-08 17:41:21 -07003346 if (vfs_stat_set_lookup_flags(&lookup_flags, req->open.how.flags))
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003347 return -EINVAL;
3348
Jens Axboef8748882020-01-08 17:47:02 -07003349 req->open.filename = getname_flags(fname, lookup_flags, NULL);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003350 if (IS_ERR(req->open.filename)) {
3351 ret = PTR_ERR(req->open.filename);
3352 req->open.filename = NULL;
3353 return ret;
3354 }
3355
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003356 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003357 return 0;
3358}
3359
Pavel Begunkov014db002020-03-03 21:33:12 +03003360static int io_statx(struct io_kiocb *req, bool force_nonblock)
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003361{
3362 struct io_open *ctx = &req->open;
3363 unsigned lookup_flags;
3364 struct path path;
3365 struct kstat stat;
3366 int ret;
3367
Jens Axboe5b0bbee2020-04-27 10:41:22 -06003368 if (force_nonblock) {
3369 /* only need file table for an actual valid fd */
3370 if (ctx->dfd == -1 || ctx->dfd == AT_FDCWD)
3371 req->flags |= REQ_F_NO_FILE_TABLE;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003372 return -EAGAIN;
Jens Axboe5b0bbee2020-04-27 10:41:22 -06003373 }
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003374
Jens Axboec12cedf2020-01-08 17:41:21 -07003375 if (vfs_stat_set_lookup_flags(&lookup_flags, ctx->how.flags))
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003376 return -EINVAL;
3377
3378retry:
3379 /* filename_lookup() drops it, keep a reference */
3380 ctx->filename->refcnt++;
3381
3382 ret = filename_lookup(ctx->dfd, ctx->filename, lookup_flags, &path,
3383 NULL);
3384 if (ret)
3385 goto err;
3386
Jens Axboec12cedf2020-01-08 17:41:21 -07003387 ret = vfs_getattr(&path, &stat, ctx->mask, ctx->how.flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003388 path_put(&path);
3389 if (retry_estale(ret, lookup_flags)) {
3390 lookup_flags |= LOOKUP_REVAL;
3391 goto retry;
3392 }
3393 if (!ret)
3394 ret = cp_statx(&stat, ctx->buffer);
3395err:
3396 putname(ctx->filename);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003397 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003398 if (ret < 0)
3399 req_set_fail_links(req);
3400 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003401 io_put_req(req);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003402 return 0;
3403}
3404
Jens Axboeb5dba592019-12-11 14:02:38 -07003405static int io_close_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3406{
3407 /*
3408 * If we queue this for async, it must not be cancellable. That would
3409 * leave the 'file' in an undeterminate state.
3410 */
3411 req->work.flags |= IO_WQ_WORK_NO_CANCEL;
3412
3413 if (sqe->ioprio || sqe->off || sqe->addr || sqe->len ||
3414 sqe->rw_flags || sqe->buf_index)
3415 return -EINVAL;
Pavel Begunkov9c280f92020-04-08 08:58:46 +03003416 if (req->flags & REQ_F_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07003417 return -EBADF;
Jens Axboeb5dba592019-12-11 14:02:38 -07003418
3419 req->close.fd = READ_ONCE(sqe->fd);
3420 if (req->file->f_op == &io_uring_fops ||
Pavel Begunkovb14cca02020-01-17 04:45:59 +03003421 req->close.fd == req->ctx->ring_fd)
Jens Axboeb5dba592019-12-11 14:02:38 -07003422 return -EBADF;
3423
3424 return 0;
3425}
3426
Pavel Begunkova93b3332020-02-08 14:04:34 +03003427/* only called when __close_fd_get_file() is done */
Pavel Begunkov014db002020-03-03 21:33:12 +03003428static void __io_close_finish(struct io_kiocb *req)
Pavel Begunkova93b3332020-02-08 14:04:34 +03003429{
3430 int ret;
3431
3432 ret = filp_close(req->close.put_file, req->work.files);
3433 if (ret < 0)
3434 req_set_fail_links(req);
3435 io_cqring_add_event(req, ret);
3436 fput(req->close.put_file);
Pavel Begunkov014db002020-03-03 21:33:12 +03003437 io_put_req(req);
Pavel Begunkova93b3332020-02-08 14:04:34 +03003438}
3439
Jens Axboeb5dba592019-12-11 14:02:38 -07003440static void io_close_finish(struct io_wq_work **workptr)
3441{
3442 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Jens Axboeb5dba592019-12-11 14:02:38 -07003443
Pavel Begunkov7fbeb952020-02-16 01:01:18 +03003444 /* not cancellable, don't do io_req_cancelled() */
Pavel Begunkov014db002020-03-03 21:33:12 +03003445 __io_close_finish(req);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03003446 io_steal_work(req, workptr);
Jens Axboeb5dba592019-12-11 14:02:38 -07003447}
3448
Pavel Begunkov014db002020-03-03 21:33:12 +03003449static int io_close(struct io_kiocb *req, bool force_nonblock)
Jens Axboeb5dba592019-12-11 14:02:38 -07003450{
3451 int ret;
3452
3453 req->close.put_file = NULL;
3454 ret = __close_fd_get_file(req->close.fd, &req->close.put_file);
3455 if (ret < 0)
3456 return ret;
3457
3458 /* if the file has a flush method, be safe and punt to async */
Pavel Begunkova2100672020-03-02 23:45:16 +03003459 if (req->close.put_file->f_op->flush && force_nonblock) {
Pavel Begunkov594506f2020-03-03 21:33:11 +03003460 /* submission ref will be dropped, take it for async */
3461 refcount_inc(&req->refs);
3462
Pavel Begunkova2100672020-03-02 23:45:16 +03003463 req->work.func = io_close_finish;
3464 /*
3465 * Do manual async queue here to avoid grabbing files - we don't
3466 * need the files, and it'll cause io_close_finish() to close
3467 * the file again and cause a double CQE entry for this request
3468 */
3469 io_queue_async_work(req);
3470 return 0;
3471 }
Jens Axboeb5dba592019-12-11 14:02:38 -07003472
3473 /*
3474 * No ->flush(), safely close from here and just punt the
3475 * fput() to async context.
3476 */
Pavel Begunkov014db002020-03-03 21:33:12 +03003477 __io_close_finish(req);
Jens Axboe1a417f42020-01-31 17:16:48 -07003478 return 0;
Jens Axboeb5dba592019-12-11 14:02:38 -07003479}
3480
Jens Axboe3529d8c2019-12-19 18:24:38 -07003481static int io_prep_sfr(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003482{
3483 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003484
3485 if (!req->file)
3486 return -EBADF;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003487
3488 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
3489 return -EINVAL;
3490 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
3491 return -EINVAL;
3492
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003493 req->sync.off = READ_ONCE(sqe->off);
3494 req->sync.len = READ_ONCE(sqe->len);
3495 req->sync.flags = READ_ONCE(sqe->sync_range_flags);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003496 return 0;
3497}
3498
Pavel Begunkov014db002020-03-03 21:33:12 +03003499static void __io_sync_file_range(struct io_kiocb *req)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003500{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003501 int ret;
3502
Jens Axboe9adbd452019-12-20 08:45:55 -07003503 ret = sync_file_range(req->file, req->sync.off, req->sync.len,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003504 req->sync.flags);
3505 if (ret < 0)
3506 req_set_fail_links(req);
3507 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003508 io_put_req(req);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03003509}
3510
3511
3512static void io_sync_file_range_finish(struct io_wq_work **workptr)
3513{
3514 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03003515
3516 if (io_req_cancelled(req))
3517 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03003518 __io_sync_file_range(req);
Pavel Begunkov594506f2020-03-03 21:33:11 +03003519 io_put_req(req); /* put submission ref */
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003520}
3521
Pavel Begunkov014db002020-03-03 21:33:12 +03003522static int io_sync_file_range(struct io_kiocb *req, bool force_nonblock)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003523{
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003524 /* sync_file_range always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003525 if (force_nonblock) {
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003526 req->work.func = io_sync_file_range_finish;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003527 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003528 }
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003529
Pavel Begunkov014db002020-03-03 21:33:12 +03003530 __io_sync_file_range(req);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003531 return 0;
3532}
3533
YueHaibing469956e2020-03-04 15:53:52 +08003534#if defined(CONFIG_NET)
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003535static int io_setup_async_msg(struct io_kiocb *req,
3536 struct io_async_msghdr *kmsg)
3537{
3538 if (req->io)
3539 return -EAGAIN;
3540 if (io_alloc_async_ctx(req)) {
3541 if (kmsg->iov != kmsg->fast_iov)
3542 kfree(kmsg->iov);
3543 return -ENOMEM;
3544 }
3545 req->flags |= REQ_F_NEED_CLEANUP;
3546 memcpy(&req->io->msg, kmsg, sizeof(*kmsg));
3547 return -EAGAIN;
3548}
3549
Jens Axboe3529d8c2019-12-19 18:24:38 -07003550static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboeaa1fa282019-04-19 13:38:09 -06003551{
Jens Axboee47293f2019-12-20 08:58:21 -07003552 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003553 struct io_async_ctx *io = req->io;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003554 int ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003555
Jens Axboee47293f2019-12-20 08:58:21 -07003556 sr->msg_flags = READ_ONCE(sqe->msg_flags);
3557 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboefddafac2020-01-04 20:19:44 -07003558 sr->len = READ_ONCE(sqe->len);
Jens Axboe3529d8c2019-12-19 18:24:38 -07003559
Jens Axboed8768362020-02-27 14:17:49 -07003560#ifdef CONFIG_COMPAT
3561 if (req->ctx->compat)
3562 sr->msg_flags |= MSG_CMSG_COMPAT;
3563#endif
3564
Jens Axboefddafac2020-01-04 20:19:44 -07003565 if (!io || req->opcode == IORING_OP_SEND)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003566 return 0;
Pavel Begunkov5f798be2020-02-08 13:28:02 +03003567 /* iovec is already imported */
3568 if (req->flags & REQ_F_NEED_CLEANUP)
3569 return 0;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003570
Jens Axboed9688562019-12-09 19:35:20 -07003571 io->msg.iov = io->msg.fast_iov;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003572 ret = sendmsg_copy_msghdr(&io->msg.msg, sr->msg, sr->msg_flags,
Jens Axboee47293f2019-12-20 08:58:21 -07003573 &io->msg.iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003574 if (!ret)
3575 req->flags |= REQ_F_NEED_CLEANUP;
3576 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003577}
3578
Pavel Begunkov014db002020-03-03 21:33:12 +03003579static int io_sendmsg(struct io_kiocb *req, bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07003580{
Jens Axboe0b416c32019-12-15 10:57:46 -07003581 struct io_async_msghdr *kmsg = NULL;
Jens Axboe03b12302019-12-02 18:50:25 -07003582 struct socket *sock;
3583 int ret;
3584
3585 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3586 return -EINVAL;
3587
3588 sock = sock_from_file(req->file, &ret);
3589 if (sock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003590 struct io_async_ctx io;
Jens Axboe03b12302019-12-02 18:50:25 -07003591 unsigned flags;
3592
Jens Axboe03b12302019-12-02 18:50:25 -07003593 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07003594 kmsg = &req->io->msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003595 kmsg->msg.msg_name = &req->io->msg.addr;
Jens Axboe0b416c32019-12-15 10:57:46 -07003596 /* if iov is set, it's allocated already */
3597 if (!kmsg->iov)
3598 kmsg->iov = kmsg->fast_iov;
3599 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07003600 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07003601 struct io_sr_msg *sr = &req->sr_msg;
3602
Jens Axboe0b416c32019-12-15 10:57:46 -07003603 kmsg = &io.msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003604 kmsg->msg.msg_name = &io.msg.addr;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003605
3606 io.msg.iov = io.msg.fast_iov;
3607 ret = sendmsg_copy_msghdr(&io.msg.msg, sr->msg,
3608 sr->msg_flags, &io.msg.iov);
Jens Axboe03b12302019-12-02 18:50:25 -07003609 if (ret)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003610 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003611 }
3612
Jens Axboee47293f2019-12-20 08:58:21 -07003613 flags = req->sr_msg.msg_flags;
3614 if (flags & MSG_DONTWAIT)
3615 req->flags |= REQ_F_NOWAIT;
3616 else if (force_nonblock)
3617 flags |= MSG_DONTWAIT;
3618
Jens Axboe0b416c32019-12-15 10:57:46 -07003619 ret = __sys_sendmsg_sock(sock, &kmsg->msg, flags);
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003620 if (force_nonblock && ret == -EAGAIN)
3621 return io_setup_async_msg(req, kmsg);
Jens Axboe03b12302019-12-02 18:50:25 -07003622 if (ret == -ERESTARTSYS)
3623 ret = -EINTR;
3624 }
3625
Pavel Begunkov1e950812020-02-06 19:51:16 +03003626 if (kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07003627 kfree(kmsg->iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003628 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe03b12302019-12-02 18:50:25 -07003629 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003630 if (ret < 0)
3631 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003632 io_put_req(req);
Jens Axboe03b12302019-12-02 18:50:25 -07003633 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07003634}
3635
Pavel Begunkov014db002020-03-03 21:33:12 +03003636static int io_send(struct io_kiocb *req, bool force_nonblock)
Jens Axboefddafac2020-01-04 20:19:44 -07003637{
Jens Axboefddafac2020-01-04 20:19:44 -07003638 struct socket *sock;
3639 int ret;
3640
3641 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3642 return -EINVAL;
3643
3644 sock = sock_from_file(req->file, &ret);
3645 if (sock) {
3646 struct io_sr_msg *sr = &req->sr_msg;
3647 struct msghdr msg;
3648 struct iovec iov;
3649 unsigned flags;
3650
3651 ret = import_single_range(WRITE, sr->buf, sr->len, &iov,
3652 &msg.msg_iter);
3653 if (ret)
3654 return ret;
3655
3656 msg.msg_name = NULL;
3657 msg.msg_control = NULL;
3658 msg.msg_controllen = 0;
3659 msg.msg_namelen = 0;
3660
3661 flags = req->sr_msg.msg_flags;
3662 if (flags & MSG_DONTWAIT)
3663 req->flags |= REQ_F_NOWAIT;
3664 else if (force_nonblock)
3665 flags |= MSG_DONTWAIT;
3666
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003667 msg.msg_flags = flags;
3668 ret = sock_sendmsg(sock, &msg);
Jens Axboefddafac2020-01-04 20:19:44 -07003669 if (force_nonblock && ret == -EAGAIN)
3670 return -EAGAIN;
3671 if (ret == -ERESTARTSYS)
3672 ret = -EINTR;
3673 }
3674
3675 io_cqring_add_event(req, ret);
3676 if (ret < 0)
3677 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003678 io_put_req(req);
Jens Axboefddafac2020-01-04 20:19:44 -07003679 return 0;
Jens Axboefddafac2020-01-04 20:19:44 -07003680}
3681
Jens Axboe52de1fe2020-02-27 10:15:42 -07003682static int __io_recvmsg_copy_hdr(struct io_kiocb *req, struct io_async_ctx *io)
3683{
3684 struct io_sr_msg *sr = &req->sr_msg;
3685 struct iovec __user *uiov;
3686 size_t iov_len;
3687 int ret;
3688
3689 ret = __copy_msghdr_from_user(&io->msg.msg, sr->msg, &io->msg.uaddr,
3690 &uiov, &iov_len);
3691 if (ret)
3692 return ret;
3693
3694 if (req->flags & REQ_F_BUFFER_SELECT) {
3695 if (iov_len > 1)
3696 return -EINVAL;
3697 if (copy_from_user(io->msg.iov, uiov, sizeof(*uiov)))
3698 return -EFAULT;
3699 sr->len = io->msg.iov[0].iov_len;
3700 iov_iter_init(&io->msg.msg.msg_iter, READ, io->msg.iov, 1,
3701 sr->len);
3702 io->msg.iov = NULL;
3703 } else {
3704 ret = import_iovec(READ, uiov, iov_len, UIO_FASTIOV,
3705 &io->msg.iov, &io->msg.msg.msg_iter);
3706 if (ret > 0)
3707 ret = 0;
3708 }
3709
3710 return ret;
3711}
3712
3713#ifdef CONFIG_COMPAT
3714static int __io_compat_recvmsg_copy_hdr(struct io_kiocb *req,
3715 struct io_async_ctx *io)
3716{
3717 struct compat_msghdr __user *msg_compat;
3718 struct io_sr_msg *sr = &req->sr_msg;
3719 struct compat_iovec __user *uiov;
3720 compat_uptr_t ptr;
3721 compat_size_t len;
3722 int ret;
3723
3724 msg_compat = (struct compat_msghdr __user *) sr->msg;
3725 ret = __get_compat_msghdr(&io->msg.msg, msg_compat, &io->msg.uaddr,
3726 &ptr, &len);
3727 if (ret)
3728 return ret;
3729
3730 uiov = compat_ptr(ptr);
3731 if (req->flags & REQ_F_BUFFER_SELECT) {
3732 compat_ssize_t clen;
3733
3734 if (len > 1)
3735 return -EINVAL;
3736 if (!access_ok(uiov, sizeof(*uiov)))
3737 return -EFAULT;
3738 if (__get_user(clen, &uiov->iov_len))
3739 return -EFAULT;
3740 if (clen < 0)
3741 return -EINVAL;
3742 sr->len = io->msg.iov[0].iov_len;
3743 io->msg.iov = NULL;
3744 } else {
3745 ret = compat_import_iovec(READ, uiov, len, UIO_FASTIOV,
3746 &io->msg.iov,
3747 &io->msg.msg.msg_iter);
3748 if (ret < 0)
3749 return ret;
3750 }
3751
3752 return 0;
3753}
Jens Axboe03b12302019-12-02 18:50:25 -07003754#endif
Jens Axboe52de1fe2020-02-27 10:15:42 -07003755
3756static int io_recvmsg_copy_hdr(struct io_kiocb *req, struct io_async_ctx *io)
3757{
3758 io->msg.iov = io->msg.fast_iov;
3759
3760#ifdef CONFIG_COMPAT
3761 if (req->ctx->compat)
3762 return __io_compat_recvmsg_copy_hdr(req, io);
3763#endif
3764
3765 return __io_recvmsg_copy_hdr(req, io);
3766}
3767
Jens Axboebcda7ba2020-02-23 16:42:51 -07003768static struct io_buffer *io_recv_buffer_select(struct io_kiocb *req,
3769 int *cflags, bool needs_lock)
3770{
3771 struct io_sr_msg *sr = &req->sr_msg;
3772 struct io_buffer *kbuf;
3773
3774 if (!(req->flags & REQ_F_BUFFER_SELECT))
3775 return NULL;
3776
3777 kbuf = io_buffer_select(req, &sr->len, sr->bgid, sr->kbuf, needs_lock);
3778 if (IS_ERR(kbuf))
3779 return kbuf;
3780
3781 sr->kbuf = kbuf;
3782 req->flags |= REQ_F_BUFFER_SELECTED;
3783
3784 *cflags = kbuf->bid << IORING_CQE_BUFFER_SHIFT;
3785 *cflags |= IORING_CQE_F_BUFFER;
3786 return kbuf;
Jens Axboe03b12302019-12-02 18:50:25 -07003787}
3788
Jens Axboe3529d8c2019-12-19 18:24:38 -07003789static int io_recvmsg_prep(struct io_kiocb *req,
3790 const struct io_uring_sqe *sqe)
Jens Axboe03b12302019-12-02 18:50:25 -07003791{
Jens Axboee47293f2019-12-20 08:58:21 -07003792 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003793 struct io_async_ctx *io = req->io;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003794 int ret;
Jens Axboe06b76d42019-12-19 14:44:26 -07003795
Jens Axboe3529d8c2019-12-19 18:24:38 -07003796 sr->msg_flags = READ_ONCE(sqe->msg_flags);
3797 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003798 sr->len = READ_ONCE(sqe->len);
Jens Axboebcda7ba2020-02-23 16:42:51 -07003799 sr->bgid = READ_ONCE(sqe->buf_group);
Jens Axboe3529d8c2019-12-19 18:24:38 -07003800
Jens Axboed8768362020-02-27 14:17:49 -07003801#ifdef CONFIG_COMPAT
3802 if (req->ctx->compat)
3803 sr->msg_flags |= MSG_CMSG_COMPAT;
3804#endif
3805
Jens Axboefddafac2020-01-04 20:19:44 -07003806 if (!io || req->opcode == IORING_OP_RECV)
Jens Axboe06b76d42019-12-19 14:44:26 -07003807 return 0;
Pavel Begunkov5f798be2020-02-08 13:28:02 +03003808 /* iovec is already imported */
3809 if (req->flags & REQ_F_NEED_CLEANUP)
3810 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07003811
Jens Axboe52de1fe2020-02-27 10:15:42 -07003812 ret = io_recvmsg_copy_hdr(req, io);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003813 if (!ret)
3814 req->flags |= REQ_F_NEED_CLEANUP;
3815 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003816}
3817
Pavel Begunkov014db002020-03-03 21:33:12 +03003818static int io_recvmsg(struct io_kiocb *req, bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07003819{
Jens Axboe0b416c32019-12-15 10:57:46 -07003820 struct io_async_msghdr *kmsg = NULL;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003821 struct socket *sock;
Jens Axboe52de1fe2020-02-27 10:15:42 -07003822 int ret, cflags = 0;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003823
3824 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3825 return -EINVAL;
3826
3827 sock = sock_from_file(req->file, &ret);
3828 if (sock) {
Jens Axboe52de1fe2020-02-27 10:15:42 -07003829 struct io_buffer *kbuf;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003830 struct io_async_ctx io;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003831 unsigned flags;
3832
Jens Axboe03b12302019-12-02 18:50:25 -07003833 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07003834 kmsg = &req->io->msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003835 kmsg->msg.msg_name = &req->io->msg.addr;
Jens Axboe0b416c32019-12-15 10:57:46 -07003836 /* if iov is set, it's allocated already */
3837 if (!kmsg->iov)
3838 kmsg->iov = kmsg->fast_iov;
3839 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07003840 } else {
Jens Axboe0b416c32019-12-15 10:57:46 -07003841 kmsg = &io.msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003842 kmsg->msg.msg_name = &io.msg.addr;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003843
Jens Axboe52de1fe2020-02-27 10:15:42 -07003844 ret = io_recvmsg_copy_hdr(req, &io);
Jens Axboe03b12302019-12-02 18:50:25 -07003845 if (ret)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003846 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003847 }
Jens Axboe0fa03c62019-04-19 13:34:07 -06003848
Jens Axboe52de1fe2020-02-27 10:15:42 -07003849 kbuf = io_recv_buffer_select(req, &cflags, !force_nonblock);
3850 if (IS_ERR(kbuf)) {
3851 return PTR_ERR(kbuf);
3852 } else if (kbuf) {
3853 kmsg->fast_iov[0].iov_base = u64_to_user_ptr(kbuf->addr);
3854 iov_iter_init(&kmsg->msg.msg_iter, READ, kmsg->iov,
3855 1, req->sr_msg.len);
3856 }
3857
Jens Axboee47293f2019-12-20 08:58:21 -07003858 flags = req->sr_msg.msg_flags;
3859 if (flags & MSG_DONTWAIT)
3860 req->flags |= REQ_F_NOWAIT;
3861 else if (force_nonblock)
3862 flags |= MSG_DONTWAIT;
3863
3864 ret = __sys_recvmsg_sock(sock, &kmsg->msg, req->sr_msg.msg,
3865 kmsg->uaddr, flags);
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003866 if (force_nonblock && ret == -EAGAIN)
3867 return io_setup_async_msg(req, kmsg);
Jens Axboe441cdbd2019-12-02 18:49:10 -07003868 if (ret == -ERESTARTSYS)
3869 ret = -EINTR;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003870 }
3871
Pavel Begunkov1e950812020-02-06 19:51:16 +03003872 if (kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07003873 kfree(kmsg->iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003874 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe52de1fe2020-02-27 10:15:42 -07003875 __io_cqring_add_event(req, ret, cflags);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003876 if (ret < 0)
3877 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003878 io_put_req(req);
Jens Axboe0fa03c62019-04-19 13:34:07 -06003879 return 0;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003880}
3881
Pavel Begunkov014db002020-03-03 21:33:12 +03003882static int io_recv(struct io_kiocb *req, bool force_nonblock)
Jens Axboefddafac2020-01-04 20:19:44 -07003883{
Jens Axboebcda7ba2020-02-23 16:42:51 -07003884 struct io_buffer *kbuf = NULL;
Jens Axboefddafac2020-01-04 20:19:44 -07003885 struct socket *sock;
Jens Axboebcda7ba2020-02-23 16:42:51 -07003886 int ret, cflags = 0;
Jens Axboefddafac2020-01-04 20:19:44 -07003887
3888 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3889 return -EINVAL;
3890
3891 sock = sock_from_file(req->file, &ret);
3892 if (sock) {
3893 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboebcda7ba2020-02-23 16:42:51 -07003894 void __user *buf = sr->buf;
Jens Axboefddafac2020-01-04 20:19:44 -07003895 struct msghdr msg;
3896 struct iovec iov;
3897 unsigned flags;
3898
Jens Axboebcda7ba2020-02-23 16:42:51 -07003899 kbuf = io_recv_buffer_select(req, &cflags, !force_nonblock);
3900 if (IS_ERR(kbuf))
3901 return PTR_ERR(kbuf);
3902 else if (kbuf)
3903 buf = u64_to_user_ptr(kbuf->addr);
Jens Axboefddafac2020-01-04 20:19:44 -07003904
Jens Axboebcda7ba2020-02-23 16:42:51 -07003905 ret = import_single_range(READ, buf, sr->len, &iov,
3906 &msg.msg_iter);
3907 if (ret) {
3908 kfree(kbuf);
3909 return ret;
3910 }
3911
3912 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboefddafac2020-01-04 20:19:44 -07003913 msg.msg_name = NULL;
3914 msg.msg_control = NULL;
3915 msg.msg_controllen = 0;
3916 msg.msg_namelen = 0;
3917 msg.msg_iocb = NULL;
3918 msg.msg_flags = 0;
3919
3920 flags = req->sr_msg.msg_flags;
3921 if (flags & MSG_DONTWAIT)
3922 req->flags |= REQ_F_NOWAIT;
3923 else if (force_nonblock)
3924 flags |= MSG_DONTWAIT;
3925
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003926 ret = sock_recvmsg(sock, &msg, flags);
Jens Axboefddafac2020-01-04 20:19:44 -07003927 if (force_nonblock && ret == -EAGAIN)
3928 return -EAGAIN;
3929 if (ret == -ERESTARTSYS)
3930 ret = -EINTR;
3931 }
3932
Jens Axboebcda7ba2020-02-23 16:42:51 -07003933 kfree(kbuf);
3934 req->flags &= ~REQ_F_NEED_CLEANUP;
3935 __io_cqring_add_event(req, ret, cflags);
Jens Axboefddafac2020-01-04 20:19:44 -07003936 if (ret < 0)
3937 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003938 io_put_req(req);
Jens Axboefddafac2020-01-04 20:19:44 -07003939 return 0;
Jens Axboefddafac2020-01-04 20:19:44 -07003940}
3941
Jens Axboe3529d8c2019-12-19 18:24:38 -07003942static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003943{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003944 struct io_accept *accept = &req->accept;
3945
Jens Axboe17f2fe32019-10-17 14:42:58 -06003946 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3947 return -EINVAL;
Hrvoje Zeba8042d6c2019-11-25 14:40:22 -05003948 if (sqe->ioprio || sqe->len || sqe->buf_index)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003949 return -EINVAL;
3950
Jens Axboed55e5f52019-12-11 16:12:15 -07003951 accept->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
3952 accept->addr_len = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003953 accept->flags = READ_ONCE(sqe->accept_flags);
Jens Axboe09952e32020-03-19 20:16:56 -06003954 accept->nofile = rlimit(RLIMIT_NOFILE);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003955 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003956}
Jens Axboe17f2fe32019-10-17 14:42:58 -06003957
Pavel Begunkov014db002020-03-03 21:33:12 +03003958static int __io_accept(struct io_kiocb *req, bool force_nonblock)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003959{
3960 struct io_accept *accept = &req->accept;
3961 unsigned file_flags;
3962 int ret;
3963
3964 file_flags = force_nonblock ? O_NONBLOCK : 0;
3965 ret = __sys_accept4_file(req->file, file_flags, accept->addr,
Jens Axboe09952e32020-03-19 20:16:56 -06003966 accept->addr_len, accept->flags,
3967 accept->nofile);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003968 if (ret == -EAGAIN && force_nonblock)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003969 return -EAGAIN;
Jens Axboe8e3cca12019-11-09 19:52:33 -07003970 if (ret == -ERESTARTSYS)
3971 ret = -EINTR;
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003972 if (ret < 0)
3973 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07003974 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003975 io_put_req(req);
Jens Axboe17f2fe32019-10-17 14:42:58 -06003976 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003977}
3978
3979static void io_accept_finish(struct io_wq_work **workptr)
3980{
3981 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003982
3983 if (io_req_cancelled(req))
3984 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03003985 __io_accept(req, false);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03003986 io_steal_work(req, workptr);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003987}
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003988
Pavel Begunkov014db002020-03-03 21:33:12 +03003989static int io_accept(struct io_kiocb *req, bool force_nonblock)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003990{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003991 int ret;
3992
Pavel Begunkov014db002020-03-03 21:33:12 +03003993 ret = __io_accept(req, force_nonblock);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003994 if (ret == -EAGAIN && force_nonblock) {
3995 req->work.func = io_accept_finish;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003996 return -EAGAIN;
3997 }
3998 return 0;
Jens Axboe17f2fe32019-10-17 14:42:58 -06003999}
4000
Jens Axboe3529d8c2019-12-19 18:24:38 -07004001static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef499a022019-12-02 16:28:46 -07004002{
Jens Axboe3529d8c2019-12-19 18:24:38 -07004003 struct io_connect *conn = &req->connect;
4004 struct io_async_ctx *io = req->io;
Jens Axboef499a022019-12-02 16:28:46 -07004005
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004006 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
4007 return -EINVAL;
4008 if (sqe->ioprio || sqe->len || sqe->buf_index || sqe->rw_flags)
4009 return -EINVAL;
4010
Jens Axboe3529d8c2019-12-19 18:24:38 -07004011 conn->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
4012 conn->addr_len = READ_ONCE(sqe->addr2);
4013
4014 if (!io)
4015 return 0;
4016
4017 return move_addr_to_kernel(conn->addr, conn->addr_len,
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004018 &io->connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07004019}
4020
Pavel Begunkov014db002020-03-03 21:33:12 +03004021static int io_connect(struct io_kiocb *req, bool force_nonblock)
Jens Axboef8e85cf2019-11-23 14:24:24 -07004022{
Jens Axboef499a022019-12-02 16:28:46 -07004023 struct io_async_ctx __io, *io;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004024 unsigned file_flags;
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004025 int ret;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004026
Jens Axboef499a022019-12-02 16:28:46 -07004027 if (req->io) {
4028 io = req->io;
4029 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07004030 ret = move_addr_to_kernel(req->connect.addr,
4031 req->connect.addr_len,
4032 &__io.connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07004033 if (ret)
4034 goto out;
4035 io = &__io;
4036 }
4037
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004038 file_flags = force_nonblock ? O_NONBLOCK : 0;
4039
4040 ret = __sys_connect_file(req->file, &io->connect.address,
4041 req->connect.addr_len, file_flags);
Jens Axboe87f80d62019-12-03 11:23:54 -07004042 if ((ret == -EAGAIN || ret == -EINPROGRESS) && force_nonblock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004043 if (req->io)
4044 return -EAGAIN;
4045 if (io_alloc_async_ctx(req)) {
Jens Axboef499a022019-12-02 16:28:46 -07004046 ret = -ENOMEM;
4047 goto out;
4048 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004049 memcpy(&req->io->connect, &__io.connect, sizeof(__io.connect));
Jens Axboef8e85cf2019-11-23 14:24:24 -07004050 return -EAGAIN;
Jens Axboef499a022019-12-02 16:28:46 -07004051 }
Jens Axboef8e85cf2019-11-23 14:24:24 -07004052 if (ret == -ERESTARTSYS)
4053 ret = -EINTR;
Jens Axboef499a022019-12-02 16:28:46 -07004054out:
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004055 if (ret < 0)
4056 req_set_fail_links(req);
Jens Axboef8e85cf2019-11-23 14:24:24 -07004057 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03004058 io_put_req(req);
Jens Axboef8e85cf2019-11-23 14:24:24 -07004059 return 0;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004060}
YueHaibing469956e2020-03-04 15:53:52 +08004061#else /* !CONFIG_NET */
4062static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4063{
Jens Axboef8e85cf2019-11-23 14:24:24 -07004064 return -EOPNOTSUPP;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004065}
4066
YueHaibing469956e2020-03-04 15:53:52 +08004067static int io_sendmsg(struct io_kiocb *req, bool force_nonblock)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004068{
YueHaibing469956e2020-03-04 15:53:52 +08004069 return -EOPNOTSUPP;
4070}
4071
4072static int io_send(struct io_kiocb *req, bool force_nonblock)
4073{
4074 return -EOPNOTSUPP;
4075}
4076
4077static int io_recvmsg_prep(struct io_kiocb *req,
4078 const struct io_uring_sqe *sqe)
4079{
4080 return -EOPNOTSUPP;
4081}
4082
4083static int io_recvmsg(struct io_kiocb *req, bool force_nonblock)
4084{
4085 return -EOPNOTSUPP;
4086}
4087
4088static int io_recv(struct io_kiocb *req, bool force_nonblock)
4089{
4090 return -EOPNOTSUPP;
4091}
4092
4093static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4094{
4095 return -EOPNOTSUPP;
4096}
4097
4098static int io_accept(struct io_kiocb *req, bool force_nonblock)
4099{
4100 return -EOPNOTSUPP;
4101}
4102
4103static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4104{
4105 return -EOPNOTSUPP;
4106}
4107
4108static int io_connect(struct io_kiocb *req, bool force_nonblock)
4109{
4110 return -EOPNOTSUPP;
4111}
4112#endif /* CONFIG_NET */
Jens Axboe2b188cc2019-01-07 10:46:33 -07004113
Jens Axboed7718a92020-02-14 22:23:12 -07004114struct io_poll_table {
4115 struct poll_table_struct pt;
4116 struct io_kiocb *req;
4117 int error;
4118};
4119
4120static void __io_queue_proc(struct io_poll_iocb *poll, struct io_poll_table *pt,
4121 struct wait_queue_head *head)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004122{
Jens Axboed7718a92020-02-14 22:23:12 -07004123 if (unlikely(poll->head)) {
4124 pt->error = -EINVAL;
4125 return;
4126 }
4127
4128 pt->error = 0;
4129 poll->head = head;
4130 add_wait_queue(head, &poll->wait);
4131}
4132
4133static void io_async_queue_proc(struct file *file, struct wait_queue_head *head,
4134 struct poll_table_struct *p)
4135{
4136 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
4137
4138 __io_queue_proc(&pt->req->apoll->poll, pt, head);
4139}
4140
4141static int __io_async_wake(struct io_kiocb *req, struct io_poll_iocb *poll,
4142 __poll_t mask, task_work_func_t func)
4143{
4144 struct task_struct *tsk;
Jens Axboeaa96bf82020-04-03 11:26:26 -06004145 int ret;
Jens Axboed7718a92020-02-14 22:23:12 -07004146
4147 /* for instances that support it check for an event match first: */
4148 if (mask && !(mask & poll->events))
4149 return 0;
4150
4151 trace_io_uring_task_add(req->ctx, req->opcode, req->user_data, mask);
4152
4153 list_del_init(&poll->wait.entry);
4154
4155 tsk = req->task;
4156 req->result = mask;
4157 init_task_work(&req->task_work, func);
4158 /*
Jens Axboeaa96bf82020-04-03 11:26:26 -06004159 * If this fails, then the task is exiting. Punt to one of the io-wq
4160 * threads to ensure the work gets run, we can't always rely on exit
4161 * cancelation taking care of this.
Jens Axboed7718a92020-02-14 22:23:12 -07004162 */
Jens Axboeaa96bf82020-04-03 11:26:26 -06004163 ret = task_work_add(tsk, &req->task_work, true);
4164 if (unlikely(ret)) {
4165 tsk = io_wq_get_task(req->ctx->io_wq);
4166 task_work_add(tsk, &req->task_work, true);
4167 }
Jens Axboed7718a92020-02-14 22:23:12 -07004168 wake_up_process(tsk);
4169 return 1;
4170}
4171
Jens Axboe74ce6ce2020-04-13 11:09:12 -06004172static bool io_poll_rewait(struct io_kiocb *req, struct io_poll_iocb *poll)
4173 __acquires(&req->ctx->completion_lock)
4174{
4175 struct io_ring_ctx *ctx = req->ctx;
4176
4177 if (!req->result && !READ_ONCE(poll->canceled)) {
4178 struct poll_table_struct pt = { ._key = poll->events };
4179
4180 req->result = vfs_poll(req->file, &pt) & poll->events;
4181 }
4182
4183 spin_lock_irq(&ctx->completion_lock);
4184 if (!req->result && !READ_ONCE(poll->canceled)) {
4185 add_wait_queue(poll->head, &poll->wait);
4186 return true;
4187 }
4188
4189 return false;
4190}
4191
Jens Axboed7718a92020-02-14 22:23:12 -07004192static void io_async_task_func(struct callback_head *cb)
4193{
4194 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
4195 struct async_poll *apoll = req->apoll;
4196 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2bae0472020-04-13 11:16:34 -06004197 bool canceled;
Jens Axboed7718a92020-02-14 22:23:12 -07004198
4199 trace_io_uring_task_run(req->ctx, req->opcode, req->user_data);
4200
Jens Axboe74ce6ce2020-04-13 11:09:12 -06004201 if (io_poll_rewait(req, &apoll->poll)) {
Jens Axboed7718a92020-02-14 22:23:12 -07004202 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe74ce6ce2020-04-13 11:09:12 -06004203 return;
Jens Axboed7718a92020-02-14 22:23:12 -07004204 }
4205
Jens Axboe74ce6ce2020-04-13 11:09:12 -06004206 if (hash_hashed(&req->hash_node))
4207 hash_del(&req->hash_node);
4208
Jens Axboe2bae0472020-04-13 11:16:34 -06004209 canceled = READ_ONCE(apoll->poll.canceled);
4210 if (canceled) {
4211 io_cqring_fill_event(req, -ECANCELED);
4212 io_commit_cqring(ctx);
4213 }
4214
Jens Axboe74ce6ce2020-04-13 11:09:12 -06004215 spin_unlock_irq(&ctx->completion_lock);
4216
Xiaoguang Wang44575a62020-04-19 10:06:55 +08004217 /* restore ->work in case we need to retry again */
4218 memcpy(&req->work, &apoll->work, sizeof(req->work));
4219
Jens Axboe2bae0472020-04-13 11:16:34 -06004220 if (canceled) {
4221 kfree(apoll);
4222 io_cqring_ev_posted(ctx);
4223 req_set_fail_links(req);
Xiaoguang Wang44575a62020-04-19 10:06:55 +08004224 io_double_put_req(req);
Jens Axboe2bae0472020-04-13 11:16:34 -06004225 return;
4226 }
4227
Jens Axboed7718a92020-02-14 22:23:12 -07004228 __set_current_state(TASK_RUNNING);
4229 mutex_lock(&ctx->uring_lock);
4230 __io_queue_sqe(req, NULL);
4231 mutex_unlock(&ctx->uring_lock);
4232
4233 kfree(apoll);
4234}
4235
4236static int io_async_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
4237 void *key)
4238{
4239 struct io_kiocb *req = wait->private;
4240 struct io_poll_iocb *poll = &req->apoll->poll;
4241
4242 trace_io_uring_poll_wake(req->ctx, req->opcode, req->user_data,
4243 key_to_poll(key));
4244
4245 return __io_async_wake(req, poll, key_to_poll(key), io_async_task_func);
4246}
4247
4248static void io_poll_req_insert(struct io_kiocb *req)
4249{
4250 struct io_ring_ctx *ctx = req->ctx;
4251 struct hlist_head *list;
4252
4253 list = &ctx->cancel_hash[hash_long(req->user_data, ctx->cancel_hash_bits)];
4254 hlist_add_head(&req->hash_node, list);
4255}
4256
4257static __poll_t __io_arm_poll_handler(struct io_kiocb *req,
4258 struct io_poll_iocb *poll,
4259 struct io_poll_table *ipt, __poll_t mask,
4260 wait_queue_func_t wake_func)
4261 __acquires(&ctx->completion_lock)
4262{
4263 struct io_ring_ctx *ctx = req->ctx;
4264 bool cancel = false;
4265
4266 poll->file = req->file;
4267 poll->head = NULL;
4268 poll->done = poll->canceled = false;
4269 poll->events = mask;
4270
4271 ipt->pt._key = mask;
4272 ipt->req = req;
4273 ipt->error = -EINVAL;
4274
4275 INIT_LIST_HEAD(&poll->wait.entry);
4276 init_waitqueue_func_entry(&poll->wait, wake_func);
4277 poll->wait.private = req;
4278
4279 mask = vfs_poll(req->file, &ipt->pt) & poll->events;
4280
4281 spin_lock_irq(&ctx->completion_lock);
4282 if (likely(poll->head)) {
4283 spin_lock(&poll->head->lock);
4284 if (unlikely(list_empty(&poll->wait.entry))) {
4285 if (ipt->error)
4286 cancel = true;
4287 ipt->error = 0;
4288 mask = 0;
4289 }
4290 if (mask || ipt->error)
4291 list_del_init(&poll->wait.entry);
4292 else if (cancel)
4293 WRITE_ONCE(poll->canceled, true);
4294 else if (!poll->done) /* actually waiting for an event */
4295 io_poll_req_insert(req);
4296 spin_unlock(&poll->head->lock);
4297 }
4298
4299 return mask;
4300}
4301
4302static bool io_arm_poll_handler(struct io_kiocb *req)
4303{
4304 const struct io_op_def *def = &io_op_defs[req->opcode];
4305 struct io_ring_ctx *ctx = req->ctx;
4306 struct async_poll *apoll;
4307 struct io_poll_table ipt;
4308 __poll_t mask, ret;
4309
4310 if (!req->file || !file_can_poll(req->file))
4311 return false;
4312 if (req->flags & (REQ_F_MUST_PUNT | REQ_F_POLLED))
4313 return false;
4314 if (!def->pollin && !def->pollout)
4315 return false;
4316
4317 apoll = kmalloc(sizeof(*apoll), GFP_ATOMIC);
4318 if (unlikely(!apoll))
4319 return false;
4320
4321 req->flags |= REQ_F_POLLED;
4322 memcpy(&apoll->work, &req->work, sizeof(req->work));
4323
Jens Axboe3537b6a2020-04-03 11:19:06 -06004324 get_task_struct(current);
Jens Axboed7718a92020-02-14 22:23:12 -07004325 req->task = current;
4326 req->apoll = apoll;
4327 INIT_HLIST_NODE(&req->hash_node);
4328
Nathan Chancellor8755d972020-03-02 16:01:19 -07004329 mask = 0;
Jens Axboed7718a92020-02-14 22:23:12 -07004330 if (def->pollin)
Nathan Chancellor8755d972020-03-02 16:01:19 -07004331 mask |= POLLIN | POLLRDNORM;
Jens Axboed7718a92020-02-14 22:23:12 -07004332 if (def->pollout)
4333 mask |= POLLOUT | POLLWRNORM;
4334 mask |= POLLERR | POLLPRI;
4335
4336 ipt.pt._qproc = io_async_queue_proc;
4337
4338 ret = __io_arm_poll_handler(req, &apoll->poll, &ipt, mask,
4339 io_async_wake);
4340 if (ret) {
4341 ipt.error = 0;
4342 apoll->poll.done = true;
4343 spin_unlock_irq(&ctx->completion_lock);
4344 memcpy(&req->work, &apoll->work, sizeof(req->work));
4345 kfree(apoll);
4346 return false;
4347 }
4348 spin_unlock_irq(&ctx->completion_lock);
4349 trace_io_uring_poll_arm(ctx, req->opcode, req->user_data, mask,
4350 apoll->poll.events);
4351 return true;
4352}
4353
4354static bool __io_poll_remove_one(struct io_kiocb *req,
4355 struct io_poll_iocb *poll)
4356{
Jens Axboeb41e9852020-02-17 09:52:41 -07004357 bool do_complete = false;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004358
4359 spin_lock(&poll->head->lock);
4360 WRITE_ONCE(poll->canceled, true);
Jens Axboe392edb42019-12-09 17:52:20 -07004361 if (!list_empty(&poll->wait.entry)) {
4362 list_del_init(&poll->wait.entry);
Jens Axboeb41e9852020-02-17 09:52:41 -07004363 do_complete = true;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004364 }
4365 spin_unlock(&poll->head->lock);
Jens Axboed7718a92020-02-14 22:23:12 -07004366 return do_complete;
4367}
4368
4369static bool io_poll_remove_one(struct io_kiocb *req)
4370{
Xiaoguang Wangb1f573b2020-04-12 14:50:54 +08004371 struct async_poll *apoll = NULL;
Jens Axboed7718a92020-02-14 22:23:12 -07004372 bool do_complete;
4373
4374 if (req->opcode == IORING_OP_POLL_ADD) {
4375 do_complete = __io_poll_remove_one(req, &req->poll);
4376 } else {
Xiaoguang Wangb1f573b2020-04-12 14:50:54 +08004377 apoll = req->apoll;
Jens Axboed7718a92020-02-14 22:23:12 -07004378 /* non-poll requests have submit ref still */
4379 do_complete = __io_poll_remove_one(req, &req->apoll->poll);
4380 if (do_complete)
4381 io_put_req(req);
4382 }
4383
Jens Axboe78076bb2019-12-04 19:56:40 -07004384 hash_del(&req->hash_node);
Jens Axboed7718a92020-02-14 22:23:12 -07004385
Xiaoguang Wang44575a62020-04-19 10:06:55 +08004386 if (do_complete && apoll) {
Xiaoguang Wangb1f573b2020-04-12 14:50:54 +08004387 /*
4388 * restore ->work because we need to call io_req_work_drop_env.
4389 */
4390 memcpy(&req->work, &apoll->work, sizeof(req->work));
4391 kfree(apoll);
4392 }
4393
Jens Axboeb41e9852020-02-17 09:52:41 -07004394 if (do_complete) {
4395 io_cqring_fill_event(req, -ECANCELED);
4396 io_commit_cqring(req->ctx);
4397 req->flags |= REQ_F_COMP_LOCKED;
4398 io_put_req(req);
4399 }
4400
4401 return do_complete;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004402}
4403
4404static void io_poll_remove_all(struct io_ring_ctx *ctx)
4405{
Jens Axboe78076bb2019-12-04 19:56:40 -07004406 struct hlist_node *tmp;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004407 struct io_kiocb *req;
Jens Axboe8e2e1fa2020-04-13 17:05:14 -06004408 int posted = 0, i;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004409
4410 spin_lock_irq(&ctx->completion_lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07004411 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
4412 struct hlist_head *list;
4413
4414 list = &ctx->cancel_hash[i];
4415 hlist_for_each_entry_safe(req, tmp, list, hash_node)
Jens Axboe8e2e1fa2020-04-13 17:05:14 -06004416 posted += io_poll_remove_one(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004417 }
4418 spin_unlock_irq(&ctx->completion_lock);
Jens Axboeb41e9852020-02-17 09:52:41 -07004419
Jens Axboe8e2e1fa2020-04-13 17:05:14 -06004420 if (posted)
4421 io_cqring_ev_posted(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004422}
4423
Jens Axboe47f46762019-11-09 17:43:02 -07004424static int io_poll_cancel(struct io_ring_ctx *ctx, __u64 sqe_addr)
4425{
Jens Axboe78076bb2019-12-04 19:56:40 -07004426 struct hlist_head *list;
Jens Axboe47f46762019-11-09 17:43:02 -07004427 struct io_kiocb *req;
4428
Jens Axboe78076bb2019-12-04 19:56:40 -07004429 list = &ctx->cancel_hash[hash_long(sqe_addr, ctx->cancel_hash_bits)];
4430 hlist_for_each_entry(req, list, hash_node) {
Jens Axboeb41e9852020-02-17 09:52:41 -07004431 if (sqe_addr != req->user_data)
4432 continue;
4433 if (io_poll_remove_one(req))
Jens Axboeeac406c2019-11-14 12:09:58 -07004434 return 0;
Jens Axboeb41e9852020-02-17 09:52:41 -07004435 return -EALREADY;
Jens Axboe47f46762019-11-09 17:43:02 -07004436 }
4437
4438 return -ENOENT;
4439}
4440
Jens Axboe3529d8c2019-12-19 18:24:38 -07004441static int io_poll_remove_prep(struct io_kiocb *req,
4442 const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004443{
Jens Axboe221c5eb2019-01-17 09:41:58 -07004444 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4445 return -EINVAL;
4446 if (sqe->ioprio || sqe->off || sqe->len || sqe->buf_index ||
4447 sqe->poll_events)
4448 return -EINVAL;
4449
Jens Axboe0969e782019-12-17 18:40:57 -07004450 req->poll.addr = READ_ONCE(sqe->addr);
Jens Axboe0969e782019-12-17 18:40:57 -07004451 return 0;
4452}
4453
4454/*
4455 * Find a running poll command that matches one specified in sqe->addr,
4456 * and remove it if found.
4457 */
4458static int io_poll_remove(struct io_kiocb *req)
4459{
4460 struct io_ring_ctx *ctx = req->ctx;
4461 u64 addr;
4462 int ret;
4463
Jens Axboe0969e782019-12-17 18:40:57 -07004464 addr = req->poll.addr;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004465 spin_lock_irq(&ctx->completion_lock);
Jens Axboe0969e782019-12-17 18:40:57 -07004466 ret = io_poll_cancel(ctx, addr);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004467 spin_unlock_irq(&ctx->completion_lock);
4468
Jens Axboe78e19bb2019-11-06 15:21:34 -07004469 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004470 if (ret < 0)
4471 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06004472 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004473 return 0;
4474}
4475
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004476static void io_poll_complete(struct io_kiocb *req, __poll_t mask, int error)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004477{
Jackie Liua197f662019-11-08 08:09:12 -07004478 struct io_ring_ctx *ctx = req->ctx;
4479
Jens Axboe8c838782019-03-12 15:48:16 -06004480 req->poll.done = true;
Pavel Begunkovb0a20342020-02-28 10:36:35 +03004481 io_cqring_fill_event(req, error ? error : mangle_poll(mask));
Jens Axboe8c838782019-03-12 15:48:16 -06004482 io_commit_cqring(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004483}
4484
Jens Axboeb41e9852020-02-17 09:52:41 -07004485static void io_poll_task_handler(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004486{
Jens Axboe221c5eb2019-01-17 09:41:58 -07004487 struct io_ring_ctx *ctx = req->ctx;
Jens Axboea6ba6322020-04-03 11:10:14 -06004488 struct io_poll_iocb *poll = &req->poll;
4489
Jens Axboe74ce6ce2020-04-13 11:09:12 -06004490 if (io_poll_rewait(req, poll)) {
Jens Axboea6ba6322020-04-03 11:10:14 -06004491 spin_unlock_irq(&ctx->completion_lock);
4492 return;
4493 }
Jens Axboe74ce6ce2020-04-13 11:09:12 -06004494
Jens Axboe78076bb2019-12-04 19:56:40 -07004495 hash_del(&req->hash_node);
Jens Axboeb41e9852020-02-17 09:52:41 -07004496 io_poll_complete(req, req->result, 0);
4497 req->flags |= REQ_F_COMP_LOCKED;
4498 io_put_req_find_next(req, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004499 spin_unlock_irq(&ctx->completion_lock);
4500
Jens Axboe8c838782019-03-12 15:48:16 -06004501 io_cqring_ev_posted(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004502}
4503
Jens Axboeb41e9852020-02-17 09:52:41 -07004504static void io_poll_task_func(struct callback_head *cb)
Jens Axboee94f1412019-12-19 12:06:02 -07004505{
Jens Axboeb41e9852020-02-17 09:52:41 -07004506 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
4507 struct io_kiocb *nxt = NULL;
Jens Axboee94f1412019-12-19 12:06:02 -07004508
Jens Axboeb41e9852020-02-17 09:52:41 -07004509 io_poll_task_handler(req, &nxt);
Jens Axboed7718a92020-02-14 22:23:12 -07004510 if (nxt) {
4511 struct io_ring_ctx *ctx = nxt->ctx;
Jens Axboee94f1412019-12-19 12:06:02 -07004512
Jens Axboed7718a92020-02-14 22:23:12 -07004513 mutex_lock(&ctx->uring_lock);
Jens Axboeb41e9852020-02-17 09:52:41 -07004514 __io_queue_sqe(nxt, NULL);
Jens Axboed7718a92020-02-14 22:23:12 -07004515 mutex_unlock(&ctx->uring_lock);
Jens Axboee94f1412019-12-19 12:06:02 -07004516 }
Jens Axboef0b493e2020-02-01 21:30:11 -07004517}
4518
Jens Axboe221c5eb2019-01-17 09:41:58 -07004519static int io_poll_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
4520 void *key)
4521{
Jens Axboec2f2eb72020-02-10 09:07:05 -07004522 struct io_kiocb *req = wait->private;
4523 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004524
Jens Axboed7718a92020-02-14 22:23:12 -07004525 return __io_async_wake(req, poll, key_to_poll(key), io_poll_task_func);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004526}
4527
Jens Axboe221c5eb2019-01-17 09:41:58 -07004528static void io_poll_queue_proc(struct file *file, struct wait_queue_head *head,
4529 struct poll_table_struct *p)
4530{
4531 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
4532
Jens Axboed7718a92020-02-14 22:23:12 -07004533 __io_queue_proc(&pt->req->poll, pt, head);
Jens Axboeeac406c2019-11-14 12:09:58 -07004534}
4535
Jens Axboe3529d8c2019-12-19 18:24:38 -07004536static int io_poll_add_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004537{
4538 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004539 u16 events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004540
4541 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4542 return -EINVAL;
4543 if (sqe->addr || sqe->ioprio || sqe->off || sqe->len || sqe->buf_index)
4544 return -EINVAL;
Jens Axboe09bb8392019-03-13 12:39:28 -06004545 if (!poll->file)
4546 return -EBADF;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004547
Jens Axboe221c5eb2019-01-17 09:41:58 -07004548 events = READ_ONCE(sqe->poll_events);
4549 poll->events = demangle_poll(events) | EPOLLERR | EPOLLHUP;
Jens Axboeb41e9852020-02-17 09:52:41 -07004550
Jens Axboe3537b6a2020-04-03 11:19:06 -06004551 get_task_struct(current);
Jens Axboeb41e9852020-02-17 09:52:41 -07004552 req->task = current;
Jens Axboe0969e782019-12-17 18:40:57 -07004553 return 0;
4554}
4555
Pavel Begunkov014db002020-03-03 21:33:12 +03004556static int io_poll_add(struct io_kiocb *req)
Jens Axboe0969e782019-12-17 18:40:57 -07004557{
4558 struct io_poll_iocb *poll = &req->poll;
4559 struct io_ring_ctx *ctx = req->ctx;
4560 struct io_poll_table ipt;
Jens Axboe0969e782019-12-17 18:40:57 -07004561 __poll_t mask;
Jens Axboe0969e782019-12-17 18:40:57 -07004562
Jens Axboe78076bb2019-12-04 19:56:40 -07004563 INIT_HLIST_NODE(&req->hash_node);
Jens Axboe36703242019-07-25 10:20:18 -06004564 INIT_LIST_HEAD(&req->list);
Jens Axboed7718a92020-02-14 22:23:12 -07004565 ipt.pt._qproc = io_poll_queue_proc;
Jens Axboe36703242019-07-25 10:20:18 -06004566
Jens Axboed7718a92020-02-14 22:23:12 -07004567 mask = __io_arm_poll_handler(req, &req->poll, &ipt, poll->events,
4568 io_poll_wake);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004569
Jens Axboe8c838782019-03-12 15:48:16 -06004570 if (mask) { /* no async, we'd stolen it */
Jens Axboe8c838782019-03-12 15:48:16 -06004571 ipt.error = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004572 io_poll_complete(req, mask, 0);
Jens Axboe8c838782019-03-12 15:48:16 -06004573 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07004574 spin_unlock_irq(&ctx->completion_lock);
4575
Jens Axboe8c838782019-03-12 15:48:16 -06004576 if (mask) {
4577 io_cqring_ev_posted(ctx);
Pavel Begunkov014db002020-03-03 21:33:12 +03004578 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004579 }
Jens Axboe8c838782019-03-12 15:48:16 -06004580 return ipt.error;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004581}
4582
Jens Axboe5262f562019-09-17 12:26:57 -06004583static enum hrtimer_restart io_timeout_fn(struct hrtimer *timer)
4584{
Jens Axboead8a48a2019-11-15 08:49:11 -07004585 struct io_timeout_data *data = container_of(timer,
4586 struct io_timeout_data, timer);
4587 struct io_kiocb *req = data->req;
4588 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5262f562019-09-17 12:26:57 -06004589 unsigned long flags;
4590
Jens Axboe5262f562019-09-17 12:26:57 -06004591 atomic_inc(&ctx->cq_timeouts);
4592
4593 spin_lock_irqsave(&ctx->completion_lock, flags);
zhangyi (F)ef036812019-10-23 15:10:08 +08004594 /*
Jens Axboe11365042019-10-16 09:08:32 -06004595 * We could be racing with timeout deletion. If the list is empty,
4596 * then timeout lookup already found it and will be handling it.
zhangyi (F)ef036812019-10-23 15:10:08 +08004597 */
Jens Axboe842f9612019-10-29 12:34:10 -06004598 if (!list_empty(&req->list)) {
Jens Axboe11365042019-10-16 09:08:32 -06004599 struct io_kiocb *prev;
Jens Axboe5262f562019-09-17 12:26:57 -06004600
Jens Axboe11365042019-10-16 09:08:32 -06004601 /*
4602 * Adjust the reqs sequence before the current one because it
Brian Gianforcarod195a662019-12-13 03:09:50 -08004603 * will consume a slot in the cq_ring and the cq_tail
Jens Axboe11365042019-10-16 09:08:32 -06004604 * pointer will be increased, otherwise other timeout reqs may
4605 * return in advance without waiting for enough wait_nr.
4606 */
4607 prev = req;
4608 list_for_each_entry_continue_reverse(prev, &ctx->timeout_list, list)
4609 prev->sequence++;
Jens Axboe11365042019-10-16 09:08:32 -06004610 list_del_init(&req->list);
Jens Axboe11365042019-10-16 09:08:32 -06004611 }
Jens Axboe842f9612019-10-29 12:34:10 -06004612
Jens Axboe78e19bb2019-11-06 15:21:34 -07004613 io_cqring_fill_event(req, -ETIME);
Jens Axboe5262f562019-09-17 12:26:57 -06004614 io_commit_cqring(ctx);
4615 spin_unlock_irqrestore(&ctx->completion_lock, flags);
4616
4617 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004618 req_set_fail_links(req);
Jens Axboe5262f562019-09-17 12:26:57 -06004619 io_put_req(req);
4620 return HRTIMER_NORESTART;
4621}
4622
Jens Axboe47f46762019-11-09 17:43:02 -07004623static int io_timeout_cancel(struct io_ring_ctx *ctx, __u64 user_data)
4624{
4625 struct io_kiocb *req;
4626 int ret = -ENOENT;
4627
4628 list_for_each_entry(req, &ctx->timeout_list, list) {
4629 if (user_data == req->user_data) {
4630 list_del_init(&req->list);
4631 ret = 0;
4632 break;
4633 }
4634 }
4635
4636 if (ret == -ENOENT)
4637 return ret;
4638
Jens Axboe2d283902019-12-04 11:08:05 -07004639 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe47f46762019-11-09 17:43:02 -07004640 if (ret == -1)
4641 return -EALREADY;
4642
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004643 req_set_fail_links(req);
Jens Axboe47f46762019-11-09 17:43:02 -07004644 io_cqring_fill_event(req, -ECANCELED);
4645 io_put_req(req);
4646 return 0;
4647}
4648
Jens Axboe3529d8c2019-12-19 18:24:38 -07004649static int io_timeout_remove_prep(struct io_kiocb *req,
4650 const struct io_uring_sqe *sqe)
Jens Axboeb29472e2019-12-17 18:50:29 -07004651{
Jens Axboeb29472e2019-12-17 18:50:29 -07004652 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4653 return -EINVAL;
4654 if (sqe->flags || sqe->ioprio || sqe->buf_index || sqe->len)
4655 return -EINVAL;
4656
4657 req->timeout.addr = READ_ONCE(sqe->addr);
4658 req->timeout.flags = READ_ONCE(sqe->timeout_flags);
4659 if (req->timeout.flags)
4660 return -EINVAL;
4661
Jens Axboeb29472e2019-12-17 18:50:29 -07004662 return 0;
4663}
4664
Jens Axboe11365042019-10-16 09:08:32 -06004665/*
4666 * Remove or update an existing timeout command
4667 */
Jens Axboefc4df992019-12-10 14:38:45 -07004668static int io_timeout_remove(struct io_kiocb *req)
Jens Axboe11365042019-10-16 09:08:32 -06004669{
4670 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe47f46762019-11-09 17:43:02 -07004671 int ret;
Jens Axboe11365042019-10-16 09:08:32 -06004672
Jens Axboe11365042019-10-16 09:08:32 -06004673 spin_lock_irq(&ctx->completion_lock);
Jens Axboeb29472e2019-12-17 18:50:29 -07004674 ret = io_timeout_cancel(ctx, req->timeout.addr);
Jens Axboe11365042019-10-16 09:08:32 -06004675
Jens Axboe47f46762019-11-09 17:43:02 -07004676 io_cqring_fill_event(req, ret);
Jens Axboe11365042019-10-16 09:08:32 -06004677 io_commit_cqring(ctx);
4678 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06004679 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004680 if (ret < 0)
4681 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08004682 io_put_req(req);
Jens Axboe11365042019-10-16 09:08:32 -06004683 return 0;
Jens Axboe5262f562019-09-17 12:26:57 -06004684}
4685
Jens Axboe3529d8c2019-12-19 18:24:38 -07004686static int io_timeout_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboe2d283902019-12-04 11:08:05 -07004687 bool is_timeout_link)
Jens Axboe5262f562019-09-17 12:26:57 -06004688{
Jens Axboead8a48a2019-11-15 08:49:11 -07004689 struct io_timeout_data *data;
Jens Axboea41525a2019-10-15 16:48:15 -06004690 unsigned flags;
Jens Axboe5262f562019-09-17 12:26:57 -06004691
Jens Axboead8a48a2019-11-15 08:49:11 -07004692 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe5262f562019-09-17 12:26:57 -06004693 return -EINVAL;
Jens Axboead8a48a2019-11-15 08:49:11 -07004694 if (sqe->ioprio || sqe->buf_index || sqe->len != 1)
Jens Axboea41525a2019-10-15 16:48:15 -06004695 return -EINVAL;
Jens Axboe2d283902019-12-04 11:08:05 -07004696 if (sqe->off && is_timeout_link)
4697 return -EINVAL;
Jens Axboea41525a2019-10-15 16:48:15 -06004698 flags = READ_ONCE(sqe->timeout_flags);
4699 if (flags & ~IORING_TIMEOUT_ABS)
Jens Axboe5262f562019-09-17 12:26:57 -06004700 return -EINVAL;
Arnd Bergmannbdf20072019-10-01 09:53:29 -06004701
Jens Axboe26a61672019-12-20 09:02:01 -07004702 req->timeout.count = READ_ONCE(sqe->off);
4703
Jens Axboe3529d8c2019-12-19 18:24:38 -07004704 if (!req->io && io_alloc_async_ctx(req))
Jens Axboe26a61672019-12-20 09:02:01 -07004705 return -ENOMEM;
4706
4707 data = &req->io->timeout;
Jens Axboead8a48a2019-11-15 08:49:11 -07004708 data->req = req;
Jens Axboead8a48a2019-11-15 08:49:11 -07004709 req->flags |= REQ_F_TIMEOUT;
4710
4711 if (get_timespec64(&data->ts, u64_to_user_ptr(sqe->addr)))
Jens Axboe5262f562019-09-17 12:26:57 -06004712 return -EFAULT;
4713
Jens Axboe11365042019-10-16 09:08:32 -06004714 if (flags & IORING_TIMEOUT_ABS)
Jens Axboead8a48a2019-11-15 08:49:11 -07004715 data->mode = HRTIMER_MODE_ABS;
Jens Axboe11365042019-10-16 09:08:32 -06004716 else
Jens Axboead8a48a2019-11-15 08:49:11 -07004717 data->mode = HRTIMER_MODE_REL;
Jens Axboe11365042019-10-16 09:08:32 -06004718
Jens Axboead8a48a2019-11-15 08:49:11 -07004719 hrtimer_init(&data->timer, CLOCK_MONOTONIC, data->mode);
4720 return 0;
4721}
4722
Jens Axboefc4df992019-12-10 14:38:45 -07004723static int io_timeout(struct io_kiocb *req)
Jens Axboead8a48a2019-11-15 08:49:11 -07004724{
Jens Axboead8a48a2019-11-15 08:49:11 -07004725 struct io_ring_ctx *ctx = req->ctx;
4726 struct io_timeout_data *data;
4727 struct list_head *entry;
4728 unsigned span = 0;
Pavel Begunkovb55ce732020-04-15 00:39:49 +03004729 u32 count = req->timeout.count;
Pavel Begunkov22cad152020-04-15 00:39:48 +03004730 u32 seq = req->sequence;
Jens Axboead8a48a2019-11-15 08:49:11 -07004731
Jens Axboe2d283902019-12-04 11:08:05 -07004732 data = &req->io->timeout;
Jens Axboe93bd25b2019-11-11 23:34:31 -07004733
Jens Axboe5262f562019-09-17 12:26:57 -06004734 /*
4735 * sqe->off holds how many events that need to occur for this
Jens Axboe93bd25b2019-11-11 23:34:31 -07004736 * timeout event to be satisfied. If it isn't set, then this is
4737 * a pure timeout request, sequence isn't used.
Jens Axboe5262f562019-09-17 12:26:57 -06004738 */
Jens Axboe93bd25b2019-11-11 23:34:31 -07004739 if (!count) {
4740 req->flags |= REQ_F_TIMEOUT_NOSEQ;
4741 spin_lock_irq(&ctx->completion_lock);
4742 entry = ctx->timeout_list.prev;
4743 goto add;
4744 }
Jens Axboe5262f562019-09-17 12:26:57 -06004745
Pavel Begunkov22cad152020-04-15 00:39:48 +03004746 req->sequence = seq + count;
Jens Axboe5262f562019-09-17 12:26:57 -06004747
4748 /*
4749 * Insertion sort, ensuring the first entry in the list is always
4750 * the one we need first.
4751 */
Jens Axboe5262f562019-09-17 12:26:57 -06004752 spin_lock_irq(&ctx->completion_lock);
4753 list_for_each_prev(entry, &ctx->timeout_list) {
4754 struct io_kiocb *nxt = list_entry(entry, struct io_kiocb, list);
Pavel Begunkov22cad152020-04-15 00:39:48 +03004755 unsigned nxt_seq;
yangerkun5da0fb12019-10-15 21:59:29 +08004756 long long tmp, tmp_nxt;
Pavel Begunkovb55ce732020-04-15 00:39:49 +03004757 u32 nxt_offset = nxt->timeout.count;
Jens Axboe5262f562019-09-17 12:26:57 -06004758
Jens Axboe93bd25b2019-11-11 23:34:31 -07004759 if (nxt->flags & REQ_F_TIMEOUT_NOSEQ)
4760 continue;
4761
yangerkun5da0fb12019-10-15 21:59:29 +08004762 /*
Pavel Begunkov22cad152020-04-15 00:39:48 +03004763 * Since seq + count can overflow, use type long
yangerkun5da0fb12019-10-15 21:59:29 +08004764 * long to store it.
4765 */
Pavel Begunkov22cad152020-04-15 00:39:48 +03004766 tmp = (long long)seq + count;
4767 nxt_seq = nxt->sequence - nxt_offset;
4768 tmp_nxt = (long long)nxt_seq + nxt_offset;
yangerkun5da0fb12019-10-15 21:59:29 +08004769
4770 /*
4771 * cached_sq_head may overflow, and it will never overflow twice
4772 * once there is some timeout req still be valid.
4773 */
Pavel Begunkov22cad152020-04-15 00:39:48 +03004774 if (seq < nxt_seq)
yangerkun8b07a652019-10-17 12:12:35 +08004775 tmp += UINT_MAX;
yangerkun5da0fb12019-10-15 21:59:29 +08004776
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004777 if (tmp > tmp_nxt)
Jens Axboe5262f562019-09-17 12:26:57 -06004778 break;
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004779
4780 /*
4781 * Sequence of reqs after the insert one and itself should
4782 * be adjusted because each timeout req consumes a slot.
4783 */
4784 span++;
4785 nxt->sequence++;
Jens Axboe5262f562019-09-17 12:26:57 -06004786 }
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004787 req->sequence -= span;
Jens Axboe93bd25b2019-11-11 23:34:31 -07004788add:
Jens Axboe5262f562019-09-17 12:26:57 -06004789 list_add(&req->list, entry);
Jens Axboead8a48a2019-11-15 08:49:11 -07004790 data->timer.function = io_timeout_fn;
4791 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts), data->mode);
Jens Axboe842f9612019-10-29 12:34:10 -06004792 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06004793 return 0;
4794}
4795
Jens Axboe62755e32019-10-28 21:49:21 -06004796static bool io_cancel_cb(struct io_wq_work *work, void *data)
Jens Axboede0617e2019-04-06 21:51:27 -06004797{
Jens Axboe62755e32019-10-28 21:49:21 -06004798 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboede0617e2019-04-06 21:51:27 -06004799
Jens Axboe62755e32019-10-28 21:49:21 -06004800 return req->user_data == (unsigned long) data;
4801}
4802
Jens Axboee977d6d2019-11-05 12:39:45 -07004803static int io_async_cancel_one(struct io_ring_ctx *ctx, void *sqe_addr)
Jens Axboe62755e32019-10-28 21:49:21 -06004804{
Jens Axboe62755e32019-10-28 21:49:21 -06004805 enum io_wq_cancel cancel_ret;
Jens Axboe62755e32019-10-28 21:49:21 -06004806 int ret = 0;
4807
Jens Axboe62755e32019-10-28 21:49:21 -06004808 cancel_ret = io_wq_cancel_cb(ctx->io_wq, io_cancel_cb, sqe_addr);
4809 switch (cancel_ret) {
4810 case IO_WQ_CANCEL_OK:
4811 ret = 0;
4812 break;
4813 case IO_WQ_CANCEL_RUNNING:
4814 ret = -EALREADY;
4815 break;
4816 case IO_WQ_CANCEL_NOTFOUND:
4817 ret = -ENOENT;
4818 break;
4819 }
4820
Jens Axboee977d6d2019-11-05 12:39:45 -07004821 return ret;
4822}
4823
Jens Axboe47f46762019-11-09 17:43:02 -07004824static void io_async_find_and_cancel(struct io_ring_ctx *ctx,
4825 struct io_kiocb *req, __u64 sqe_addr,
Pavel Begunkov014db002020-03-03 21:33:12 +03004826 int success_ret)
Jens Axboe47f46762019-11-09 17:43:02 -07004827{
4828 unsigned long flags;
4829 int ret;
4830
4831 ret = io_async_cancel_one(ctx, (void *) (unsigned long) sqe_addr);
4832 if (ret != -ENOENT) {
4833 spin_lock_irqsave(&ctx->completion_lock, flags);
4834 goto done;
4835 }
4836
4837 spin_lock_irqsave(&ctx->completion_lock, flags);
4838 ret = io_timeout_cancel(ctx, sqe_addr);
4839 if (ret != -ENOENT)
4840 goto done;
4841 ret = io_poll_cancel(ctx, sqe_addr);
4842done:
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004843 if (!ret)
4844 ret = success_ret;
Jens Axboe47f46762019-11-09 17:43:02 -07004845 io_cqring_fill_event(req, ret);
4846 io_commit_cqring(ctx);
4847 spin_unlock_irqrestore(&ctx->completion_lock, flags);
4848 io_cqring_ev_posted(ctx);
4849
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004850 if (ret < 0)
4851 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03004852 io_put_req(req);
Jens Axboe47f46762019-11-09 17:43:02 -07004853}
4854
Jens Axboe3529d8c2019-12-19 18:24:38 -07004855static int io_async_cancel_prep(struct io_kiocb *req,
4856 const struct io_uring_sqe *sqe)
Jens Axboee977d6d2019-11-05 12:39:45 -07004857{
Jens Axboefbf23842019-12-17 18:45:56 -07004858 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboee977d6d2019-11-05 12:39:45 -07004859 return -EINVAL;
4860 if (sqe->flags || sqe->ioprio || sqe->off || sqe->len ||
4861 sqe->cancel_flags)
4862 return -EINVAL;
4863
Jens Axboefbf23842019-12-17 18:45:56 -07004864 req->cancel.addr = READ_ONCE(sqe->addr);
4865 return 0;
4866}
4867
Pavel Begunkov014db002020-03-03 21:33:12 +03004868static int io_async_cancel(struct io_kiocb *req)
Jens Axboefbf23842019-12-17 18:45:56 -07004869{
4870 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefbf23842019-12-17 18:45:56 -07004871
Pavel Begunkov014db002020-03-03 21:33:12 +03004872 io_async_find_and_cancel(ctx, req, req->cancel.addr, 0);
Jens Axboe62755e32019-10-28 21:49:21 -06004873 return 0;
4874}
4875
Jens Axboe05f3fb32019-12-09 11:22:50 -07004876static int io_files_update_prep(struct io_kiocb *req,
4877 const struct io_uring_sqe *sqe)
4878{
4879 if (sqe->flags || sqe->ioprio || sqe->rw_flags)
4880 return -EINVAL;
4881
4882 req->files_update.offset = READ_ONCE(sqe->off);
4883 req->files_update.nr_args = READ_ONCE(sqe->len);
4884 if (!req->files_update.nr_args)
4885 return -EINVAL;
4886 req->files_update.arg = READ_ONCE(sqe->addr);
4887 return 0;
4888}
4889
4890static int io_files_update(struct io_kiocb *req, bool force_nonblock)
4891{
4892 struct io_ring_ctx *ctx = req->ctx;
4893 struct io_uring_files_update up;
4894 int ret;
4895
Jens Axboef86cd202020-01-29 13:46:44 -07004896 if (force_nonblock)
Jens Axboe05f3fb32019-12-09 11:22:50 -07004897 return -EAGAIN;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004898
4899 up.offset = req->files_update.offset;
4900 up.fds = req->files_update.arg;
4901
4902 mutex_lock(&ctx->uring_lock);
4903 ret = __io_sqe_files_update(ctx, &up, req->files_update.nr_args);
4904 mutex_unlock(&ctx->uring_lock);
4905
4906 if (ret < 0)
4907 req_set_fail_links(req);
4908 io_cqring_add_event(req, ret);
4909 io_put_req(req);
4910 return 0;
4911}
4912
Jens Axboe3529d8c2019-12-19 18:24:38 -07004913static int io_req_defer_prep(struct io_kiocb *req,
4914 const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07004915{
Jens Axboee7815732019-12-17 19:45:06 -07004916 ssize_t ret = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07004917
Pavel Begunkovf1d96a82020-03-13 22:29:14 +03004918 if (!sqe)
4919 return 0;
4920
Jens Axboef86cd202020-01-29 13:46:44 -07004921 if (io_op_defs[req->opcode].file_table) {
4922 ret = io_grab_files(req);
4923 if (unlikely(ret))
4924 return ret;
4925 }
4926
Jens Axboecccf0ee2020-01-27 16:34:48 -07004927 io_req_work_grab_env(req, &io_op_defs[req->opcode]);
4928
Jens Axboed625c6e2019-12-17 19:53:05 -07004929 switch (req->opcode) {
Jens Axboee7815732019-12-17 19:45:06 -07004930 case IORING_OP_NOP:
4931 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004932 case IORING_OP_READV:
4933 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004934 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004935 ret = io_read_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07004936 break;
4937 case IORING_OP_WRITEV:
4938 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004939 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004940 ret = io_write_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07004941 break;
Jens Axboe0969e782019-12-17 18:40:57 -07004942 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004943 ret = io_poll_add_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07004944 break;
4945 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004946 ret = io_poll_remove_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07004947 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004948 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004949 ret = io_prep_fsync(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004950 break;
4951 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004952 ret = io_prep_sfr(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004953 break;
Jens Axboe03b12302019-12-02 18:50:25 -07004954 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004955 case IORING_OP_SEND:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004956 ret = io_sendmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07004957 break;
4958 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004959 case IORING_OP_RECV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004960 ret = io_recvmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07004961 break;
Jens Axboef499a022019-12-02 16:28:46 -07004962 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004963 ret = io_connect_prep(req, sqe);
Jens Axboef499a022019-12-02 16:28:46 -07004964 break;
Jens Axboe2d283902019-12-04 11:08:05 -07004965 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004966 ret = io_timeout_prep(req, sqe, false);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004967 break;
Jens Axboeb29472e2019-12-17 18:50:29 -07004968 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004969 ret = io_timeout_remove_prep(req, sqe);
Jens Axboeb29472e2019-12-17 18:50:29 -07004970 break;
Jens Axboefbf23842019-12-17 18:45:56 -07004971 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004972 ret = io_async_cancel_prep(req, sqe);
Jens Axboefbf23842019-12-17 18:45:56 -07004973 break;
Jens Axboe2d283902019-12-04 11:08:05 -07004974 case IORING_OP_LINK_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004975 ret = io_timeout_prep(req, sqe, true);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004976 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004977 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004978 ret = io_accept_prep(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004979 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07004980 case IORING_OP_FALLOCATE:
4981 ret = io_fallocate_prep(req, sqe);
4982 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004983 case IORING_OP_OPENAT:
4984 ret = io_openat_prep(req, sqe);
4985 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07004986 case IORING_OP_CLOSE:
4987 ret = io_close_prep(req, sqe);
4988 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004989 case IORING_OP_FILES_UPDATE:
4990 ret = io_files_update_prep(req, sqe);
4991 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004992 case IORING_OP_STATX:
4993 ret = io_statx_prep(req, sqe);
4994 break;
Jens Axboe4840e412019-12-25 22:03:45 -07004995 case IORING_OP_FADVISE:
4996 ret = io_fadvise_prep(req, sqe);
4997 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07004998 case IORING_OP_MADVISE:
4999 ret = io_madvise_prep(req, sqe);
5000 break;
Jens Axboecebdb982020-01-08 17:59:24 -07005001 case IORING_OP_OPENAT2:
5002 ret = io_openat2_prep(req, sqe);
5003 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07005004 case IORING_OP_EPOLL_CTL:
5005 ret = io_epoll_ctl_prep(req, sqe);
5006 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005007 case IORING_OP_SPLICE:
5008 ret = io_splice_prep(req, sqe);
5009 break;
Jens Axboeddf0322d2020-02-23 16:41:33 -07005010 case IORING_OP_PROVIDE_BUFFERS:
5011 ret = io_provide_buffers_prep(req, sqe);
5012 break;
Jens Axboe067524e2020-03-02 16:32:28 -07005013 case IORING_OP_REMOVE_BUFFERS:
5014 ret = io_remove_buffers_prep(req, sqe);
5015 break;
Jens Axboef67676d2019-12-02 11:03:47 -07005016 default:
Jens Axboee7815732019-12-17 19:45:06 -07005017 printk_once(KERN_WARNING "io_uring: unhandled opcode %d\n",
5018 req->opcode);
5019 ret = -EINVAL;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07005020 break;
Jens Axboef67676d2019-12-02 11:03:47 -07005021 }
5022
Jens Axboeb7bb4f72019-12-15 22:13:43 -07005023 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07005024}
5025
Jens Axboe3529d8c2019-12-19 18:24:38 -07005026static int io_req_defer(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboede0617e2019-04-06 21:51:27 -06005027{
Jackie Liua197f662019-11-08 08:09:12 -07005028 struct io_ring_ctx *ctx = req->ctx;
Jens Axboef67676d2019-12-02 11:03:47 -07005029 int ret;
Jens Axboede0617e2019-04-06 21:51:27 -06005030
Bob Liu9d858b22019-11-13 18:06:25 +08005031 /* Still need defer if there is pending req in defer list. */
5032 if (!req_need_defer(req) && list_empty(&ctx->defer_list))
Jens Axboede0617e2019-04-06 21:51:27 -06005033 return 0;
5034
Jens Axboe3529d8c2019-12-19 18:24:38 -07005035 if (!req->io && io_alloc_async_ctx(req))
Jens Axboede0617e2019-04-06 21:51:27 -06005036 return -EAGAIN;
5037
Jens Axboe3529d8c2019-12-19 18:24:38 -07005038 ret = io_req_defer_prep(req, sqe);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07005039 if (ret < 0)
Jens Axboe2d283902019-12-04 11:08:05 -07005040 return ret;
Jens Axboe2d283902019-12-04 11:08:05 -07005041
Jens Axboede0617e2019-04-06 21:51:27 -06005042 spin_lock_irq(&ctx->completion_lock);
Bob Liu9d858b22019-11-13 18:06:25 +08005043 if (!req_need_defer(req) && list_empty(&ctx->defer_list)) {
Jens Axboede0617e2019-04-06 21:51:27 -06005044 spin_unlock_irq(&ctx->completion_lock);
Jens Axboede0617e2019-04-06 21:51:27 -06005045 return 0;
5046 }
5047
Jens Axboe915967f2019-11-21 09:01:20 -07005048 trace_io_uring_defer(ctx, req, req->user_data);
Jens Axboede0617e2019-04-06 21:51:27 -06005049 list_add_tail(&req->list, &ctx->defer_list);
5050 spin_unlock_irq(&ctx->completion_lock);
5051 return -EIOCBQUEUED;
5052}
5053
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005054static void io_cleanup_req(struct io_kiocb *req)
5055{
5056 struct io_async_ctx *io = req->io;
5057
5058 switch (req->opcode) {
5059 case IORING_OP_READV:
5060 case IORING_OP_READ_FIXED:
5061 case IORING_OP_READ:
Jens Axboebcda7ba2020-02-23 16:42:51 -07005062 if (req->flags & REQ_F_BUFFER_SELECTED)
5063 kfree((void *)(unsigned long)req->rw.addr);
5064 /* fallthrough */
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005065 case IORING_OP_WRITEV:
5066 case IORING_OP_WRITE_FIXED:
5067 case IORING_OP_WRITE:
5068 if (io->rw.iov != io->rw.fast_iov)
5069 kfree(io->rw.iov);
5070 break;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005071 case IORING_OP_RECVMSG:
Jens Axboe52de1fe2020-02-27 10:15:42 -07005072 if (req->flags & REQ_F_BUFFER_SELECTED)
5073 kfree(req->sr_msg.kbuf);
5074 /* fallthrough */
5075 case IORING_OP_SENDMSG:
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005076 if (io->msg.iov != io->msg.fast_iov)
5077 kfree(io->msg.iov);
5078 break;
Jens Axboebcda7ba2020-02-23 16:42:51 -07005079 case IORING_OP_RECV:
5080 if (req->flags & REQ_F_BUFFER_SELECTED)
5081 kfree(req->sr_msg.kbuf);
5082 break;
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03005083 case IORING_OP_OPENAT:
5084 case IORING_OP_OPENAT2:
5085 case IORING_OP_STATX:
5086 putname(req->open.filename);
5087 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005088 case IORING_OP_SPLICE:
5089 io_put_file(req, req->splice.file_in,
5090 (req->splice.flags & SPLICE_F_FD_IN_FIXED));
5091 break;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005092 }
5093
5094 req->flags &= ~REQ_F_NEED_CLEANUP;
5095}
5096
Jens Axboe3529d8c2019-12-19 18:24:38 -07005097static int io_issue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Pavel Begunkov014db002020-03-03 21:33:12 +03005098 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005099{
Jackie Liua197f662019-11-08 08:09:12 -07005100 struct io_ring_ctx *ctx = req->ctx;
Jens Axboed625c6e2019-12-17 19:53:05 -07005101 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005102
Jens Axboed625c6e2019-12-17 19:53:05 -07005103 switch (req->opcode) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07005104 case IORING_OP_NOP:
Jens Axboe78e19bb2019-11-06 15:21:34 -07005105 ret = io_nop(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005106 break;
5107 case IORING_OP_READV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005108 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07005109 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005110 if (sqe) {
5111 ret = io_read_prep(req, sqe, force_nonblock);
5112 if (ret < 0)
5113 break;
5114 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005115 ret = io_read(req, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005116 break;
5117 case IORING_OP_WRITEV:
Jens Axboeedafcce2019-01-09 09:16:05 -07005118 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07005119 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005120 if (sqe) {
5121 ret = io_write_prep(req, sqe, force_nonblock);
5122 if (ret < 0)
5123 break;
5124 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005125 ret = io_write(req, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005126 break;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07005127 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005128 if (sqe) {
5129 ret = io_prep_fsync(req, sqe);
5130 if (ret < 0)
5131 break;
5132 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005133 ret = io_fsync(req, force_nonblock);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07005134 break;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005135 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005136 if (sqe) {
5137 ret = io_poll_add_prep(req, sqe);
5138 if (ret)
5139 break;
5140 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005141 ret = io_poll_add(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005142 break;
5143 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005144 if (sqe) {
5145 ret = io_poll_remove_prep(req, sqe);
5146 if (ret < 0)
5147 break;
5148 }
Jens Axboefc4df992019-12-10 14:38:45 -07005149 ret = io_poll_remove(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005150 break;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06005151 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005152 if (sqe) {
5153 ret = io_prep_sfr(req, sqe);
5154 if (ret < 0)
5155 break;
5156 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005157 ret = io_sync_file_range(req, force_nonblock);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06005158 break;
Jens Axboe0fa03c62019-04-19 13:34:07 -06005159 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005160 case IORING_OP_SEND:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005161 if (sqe) {
5162 ret = io_sendmsg_prep(req, sqe);
5163 if (ret < 0)
5164 break;
5165 }
Jens Axboefddafac2020-01-04 20:19:44 -07005166 if (req->opcode == IORING_OP_SENDMSG)
Pavel Begunkov014db002020-03-03 21:33:12 +03005167 ret = io_sendmsg(req, force_nonblock);
Jens Axboefddafac2020-01-04 20:19:44 -07005168 else
Pavel Begunkov014db002020-03-03 21:33:12 +03005169 ret = io_send(req, force_nonblock);
Jens Axboe0fa03c62019-04-19 13:34:07 -06005170 break;
Jens Axboeaa1fa282019-04-19 13:38:09 -06005171 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005172 case IORING_OP_RECV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005173 if (sqe) {
5174 ret = io_recvmsg_prep(req, sqe);
5175 if (ret)
5176 break;
5177 }
Jens Axboefddafac2020-01-04 20:19:44 -07005178 if (req->opcode == IORING_OP_RECVMSG)
Pavel Begunkov014db002020-03-03 21:33:12 +03005179 ret = io_recvmsg(req, force_nonblock);
Jens Axboefddafac2020-01-04 20:19:44 -07005180 else
Pavel Begunkov014db002020-03-03 21:33:12 +03005181 ret = io_recv(req, force_nonblock);
Jens Axboeaa1fa282019-04-19 13:38:09 -06005182 break;
Jens Axboe5262f562019-09-17 12:26:57 -06005183 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005184 if (sqe) {
5185 ret = io_timeout_prep(req, sqe, false);
5186 if (ret)
5187 break;
5188 }
Jens Axboefc4df992019-12-10 14:38:45 -07005189 ret = io_timeout(req);
Jens Axboe5262f562019-09-17 12:26:57 -06005190 break;
Jens Axboe11365042019-10-16 09:08:32 -06005191 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005192 if (sqe) {
5193 ret = io_timeout_remove_prep(req, sqe);
5194 if (ret)
5195 break;
5196 }
Jens Axboefc4df992019-12-10 14:38:45 -07005197 ret = io_timeout_remove(req);
Jens Axboe11365042019-10-16 09:08:32 -06005198 break;
Jens Axboe17f2fe32019-10-17 14:42:58 -06005199 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005200 if (sqe) {
5201 ret = io_accept_prep(req, sqe);
5202 if (ret)
5203 break;
5204 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005205 ret = io_accept(req, force_nonblock);
Jens Axboe17f2fe32019-10-17 14:42:58 -06005206 break;
Jens Axboef8e85cf2019-11-23 14:24:24 -07005207 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005208 if (sqe) {
5209 ret = io_connect_prep(req, sqe);
5210 if (ret)
5211 break;
5212 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005213 ret = io_connect(req, force_nonblock);
Jens Axboef8e85cf2019-11-23 14:24:24 -07005214 break;
Jens Axboe62755e32019-10-28 21:49:21 -06005215 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005216 if (sqe) {
5217 ret = io_async_cancel_prep(req, sqe);
5218 if (ret)
5219 break;
5220 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005221 ret = io_async_cancel(req);
Jens Axboe62755e32019-10-28 21:49:21 -06005222 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07005223 case IORING_OP_FALLOCATE:
5224 if (sqe) {
5225 ret = io_fallocate_prep(req, sqe);
5226 if (ret)
5227 break;
5228 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005229 ret = io_fallocate(req, force_nonblock);
Jens Axboed63d1b52019-12-10 10:38:56 -07005230 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07005231 case IORING_OP_OPENAT:
5232 if (sqe) {
5233 ret = io_openat_prep(req, sqe);
5234 if (ret)
5235 break;
5236 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005237 ret = io_openat(req, force_nonblock);
Jens Axboe15b71ab2019-12-11 11:20:36 -07005238 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07005239 case IORING_OP_CLOSE:
5240 if (sqe) {
5241 ret = io_close_prep(req, sqe);
5242 if (ret)
5243 break;
5244 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005245 ret = io_close(req, force_nonblock);
Jens Axboeb5dba592019-12-11 14:02:38 -07005246 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005247 case IORING_OP_FILES_UPDATE:
5248 if (sqe) {
5249 ret = io_files_update_prep(req, sqe);
5250 if (ret)
5251 break;
5252 }
5253 ret = io_files_update(req, force_nonblock);
5254 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07005255 case IORING_OP_STATX:
5256 if (sqe) {
5257 ret = io_statx_prep(req, sqe);
5258 if (ret)
5259 break;
5260 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005261 ret = io_statx(req, force_nonblock);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07005262 break;
Jens Axboe4840e412019-12-25 22:03:45 -07005263 case IORING_OP_FADVISE:
5264 if (sqe) {
5265 ret = io_fadvise_prep(req, sqe);
5266 if (ret)
5267 break;
5268 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005269 ret = io_fadvise(req, force_nonblock);
Jens Axboe4840e412019-12-25 22:03:45 -07005270 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07005271 case IORING_OP_MADVISE:
5272 if (sqe) {
5273 ret = io_madvise_prep(req, sqe);
5274 if (ret)
5275 break;
5276 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005277 ret = io_madvise(req, force_nonblock);
Jens Axboec1ca7572019-12-25 22:18:28 -07005278 break;
Jens Axboecebdb982020-01-08 17:59:24 -07005279 case IORING_OP_OPENAT2:
5280 if (sqe) {
5281 ret = io_openat2_prep(req, sqe);
5282 if (ret)
5283 break;
5284 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005285 ret = io_openat2(req, force_nonblock);
Jens Axboecebdb982020-01-08 17:59:24 -07005286 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07005287 case IORING_OP_EPOLL_CTL:
5288 if (sqe) {
5289 ret = io_epoll_ctl_prep(req, sqe);
5290 if (ret)
5291 break;
5292 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005293 ret = io_epoll_ctl(req, force_nonblock);
Jens Axboe3e4827b2020-01-08 15:18:09 -07005294 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005295 case IORING_OP_SPLICE:
5296 if (sqe) {
5297 ret = io_splice_prep(req, sqe);
5298 if (ret < 0)
5299 break;
5300 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005301 ret = io_splice(req, force_nonblock);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005302 break;
Jens Axboeddf0322d2020-02-23 16:41:33 -07005303 case IORING_OP_PROVIDE_BUFFERS:
5304 if (sqe) {
5305 ret = io_provide_buffers_prep(req, sqe);
5306 if (ret)
5307 break;
5308 }
5309 ret = io_provide_buffers(req, force_nonblock);
5310 break;
Jens Axboe067524e2020-03-02 16:32:28 -07005311 case IORING_OP_REMOVE_BUFFERS:
5312 if (sqe) {
5313 ret = io_remove_buffers_prep(req, sqe);
5314 if (ret)
5315 break;
5316 }
5317 ret = io_remove_buffers(req, force_nonblock);
Jens Axboe31b51512019-01-18 22:56:34 -07005318 break;
5319 default:
5320 ret = -EINVAL;
Jens Axboeedafcce2019-01-09 09:16:05 -07005321 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005322 }
5323
Jens Axboe31b51512019-01-18 22:56:34 -07005324 if (ret)
5325 return ret;
5326
5327 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboe11ba8202020-01-15 21:51:17 -07005328 const bool in_async = io_wq_current_is_worker();
5329
Jens Axboe9e645e112019-05-10 16:07:28 -06005330 if (req->result == -EAGAIN)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005331 return -EAGAIN;
5332
Jens Axboe11ba8202020-01-15 21:51:17 -07005333 /* workqueue context doesn't hold uring_lock, grab it now */
5334 if (in_async)
5335 mutex_lock(&ctx->uring_lock);
5336
Jens Axboe2b188cc2019-01-07 10:46:33 -07005337 io_iopoll_req_issued(req);
Jens Axboe11ba8202020-01-15 21:51:17 -07005338
5339 if (in_async)
5340 mutex_unlock(&ctx->uring_lock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005341 }
5342
5343 return 0;
5344}
5345
Jens Axboe561fb042019-10-24 07:25:42 -06005346static void io_wq_submit_work(struct io_wq_work **workptr)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005347{
Jens Axboe561fb042019-10-24 07:25:42 -06005348 struct io_wq_work *work = *workptr;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005349 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboe561fb042019-10-24 07:25:42 -06005350 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005351
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07005352 /* if NO_CANCEL is set, we must still run the work */
5353 if ((work->flags & (IO_WQ_WORK_CANCEL|IO_WQ_WORK_NO_CANCEL)) ==
5354 IO_WQ_WORK_CANCEL) {
Jens Axboe561fb042019-10-24 07:25:42 -06005355 ret = -ECANCELED;
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07005356 }
Jens Axboe31b51512019-01-18 22:56:34 -07005357
Jens Axboe561fb042019-10-24 07:25:42 -06005358 if (!ret) {
Jens Axboe561fb042019-10-24 07:25:42 -06005359 do {
Pavel Begunkov014db002020-03-03 21:33:12 +03005360 ret = io_issue_sqe(req, NULL, false);
Jens Axboe561fb042019-10-24 07:25:42 -06005361 /*
5362 * We can get EAGAIN for polled IO even though we're
5363 * forcing a sync submission from here, since we can't
5364 * wait for request slots on the block side.
5365 */
5366 if (ret != -EAGAIN)
5367 break;
5368 cond_resched();
5369 } while (1);
5370 }
Jens Axboe31b51512019-01-18 22:56:34 -07005371
Jens Axboe561fb042019-10-24 07:25:42 -06005372 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005373 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07005374 io_cqring_add_event(req, ret);
Jens Axboe817869d2019-04-30 14:44:05 -06005375 io_put_req(req);
Jens Axboeedafcce2019-01-09 09:16:05 -07005376 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07005377
Pavel Begunkove9fd9392020-03-04 16:14:12 +03005378 io_steal_work(req, workptr);
Jens Axboe31b51512019-01-18 22:56:34 -07005379}
Jens Axboe2b188cc2019-01-07 10:46:33 -07005380
Jens Axboe15b71ab2019-12-11 11:20:36 -07005381static int io_req_needs_file(struct io_kiocb *req, int fd)
Jens Axboe9e3aa612019-12-11 15:55:43 -07005382{
Jens Axboed3656342019-12-18 09:50:26 -07005383 if (!io_op_defs[req->opcode].needs_file)
Jens Axboe9e3aa612019-12-11 15:55:43 -07005384 return 0;
Jens Axboe0b5faf62020-02-06 21:42:51 -07005385 if ((fd == -1 || fd == AT_FDCWD) && io_op_defs[req->opcode].fd_non_neg)
Jens Axboed3656342019-12-18 09:50:26 -07005386 return 0;
5387 return 1;
Jens Axboe09bb8392019-03-13 12:39:28 -06005388}
5389
Jens Axboe65e19f52019-10-26 07:20:21 -06005390static inline struct file *io_file_from_index(struct io_ring_ctx *ctx,
5391 int index)
Jens Axboe09bb8392019-03-13 12:39:28 -06005392{
Jens Axboe65e19f52019-10-26 07:20:21 -06005393 struct fixed_file_table *table;
5394
Jens Axboe05f3fb32019-12-09 11:22:50 -07005395 table = &ctx->file_data->table[index >> IORING_FILE_TABLE_SHIFT];
5396 return table->files[index & IORING_FILE_TABLE_MASK];;
Jens Axboe65e19f52019-10-26 07:20:21 -06005397}
5398
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005399static int io_file_get(struct io_submit_state *state, struct io_kiocb *req,
5400 int fd, struct file **out_file, bool fixed)
5401{
5402 struct io_ring_ctx *ctx = req->ctx;
5403 struct file *file;
5404
5405 if (fixed) {
5406 if (unlikely(!ctx->file_data ||
5407 (unsigned) fd >= ctx->nr_user_files))
5408 return -EBADF;
5409 fd = array_index_nospec(fd, ctx->nr_user_files);
5410 file = io_file_from_index(ctx, fd);
5411 if (!file)
5412 return -EBADF;
Xiaoguang Wang05589552020-03-31 14:05:18 +08005413 req->fixed_file_refs = ctx->file_data->cur_refs;
5414 percpu_ref_get(req->fixed_file_refs);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005415 } else {
5416 trace_io_uring_file_get(ctx, fd);
5417 file = __io_file_get(state, fd);
5418 if (unlikely(!file))
5419 return -EBADF;
5420 }
5421
5422 *out_file = file;
5423 return 0;
5424}
5425
Jens Axboe3529d8c2019-12-19 18:24:38 -07005426static int io_req_set_file(struct io_submit_state *state, struct io_kiocb *req,
Pavel Begunkov9c280f92020-04-08 08:58:46 +03005427 int fd, unsigned int flags)
Jens Axboe09bb8392019-03-13 12:39:28 -06005428{
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005429 bool fixed;
Jens Axboe09bb8392019-03-13 12:39:28 -06005430
Jens Axboed3656342019-12-18 09:50:26 -07005431 if (!io_req_needs_file(req, fd))
5432 return 0;
Jens Axboe09bb8392019-03-13 12:39:28 -06005433
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005434 fixed = (flags & IOSQE_FIXED_FILE);
5435 if (unlikely(!fixed && req->needs_fixed_file))
5436 return -EBADF;
Jens Axboe09bb8392019-03-13 12:39:28 -06005437
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005438 return io_file_get(state, req, fd, &req->file, fixed);
Jens Axboe09bb8392019-03-13 12:39:28 -06005439}
5440
Jackie Liua197f662019-11-08 08:09:12 -07005441static int io_grab_files(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005442{
Jens Axboefcb323c2019-10-24 12:39:47 -06005443 int ret = -EBADF;
Jackie Liua197f662019-11-08 08:09:12 -07005444 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06005445
Jens Axboe5b0bbee2020-04-27 10:41:22 -06005446 if (req->work.files || (req->flags & REQ_F_NO_FILE_TABLE))
Jens Axboef86cd202020-01-29 13:46:44 -07005447 return 0;
Pavel Begunkovb14cca02020-01-17 04:45:59 +03005448 if (!ctx->ring_file)
Jens Axboeb5dba592019-12-11 14:02:38 -07005449 return -EBADF;
5450
Jens Axboefcb323c2019-10-24 12:39:47 -06005451 rcu_read_lock();
5452 spin_lock_irq(&ctx->inflight_lock);
5453 /*
5454 * We use the f_ops->flush() handler to ensure that we can flush
5455 * out work accessing these files if the fd is closed. Check if
5456 * the fd has changed since we started down this path, and disallow
5457 * this operation if it has.
5458 */
Pavel Begunkovb14cca02020-01-17 04:45:59 +03005459 if (fcheck(ctx->ring_fd) == ctx->ring_file) {
Jens Axboefcb323c2019-10-24 12:39:47 -06005460 list_add(&req->inflight_entry, &ctx->inflight_list);
5461 req->flags |= REQ_F_INFLIGHT;
5462 req->work.files = current->files;
5463 ret = 0;
5464 }
5465 spin_unlock_irq(&ctx->inflight_lock);
5466 rcu_read_unlock();
5467
5468 return ret;
5469}
5470
Jens Axboe2665abf2019-11-05 12:40:47 -07005471static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer)
5472{
Jens Axboead8a48a2019-11-15 08:49:11 -07005473 struct io_timeout_data *data = container_of(timer,
5474 struct io_timeout_data, timer);
5475 struct io_kiocb *req = data->req;
Jens Axboe2665abf2019-11-05 12:40:47 -07005476 struct io_ring_ctx *ctx = req->ctx;
5477 struct io_kiocb *prev = NULL;
5478 unsigned long flags;
Jens Axboe2665abf2019-11-05 12:40:47 -07005479
5480 spin_lock_irqsave(&ctx->completion_lock, flags);
5481
5482 /*
5483 * We don't expect the list to be empty, that will only happen if we
5484 * race with the completion of the linked work.
5485 */
Pavel Begunkov44932332019-12-05 16:16:35 +03005486 if (!list_empty(&req->link_list)) {
5487 prev = list_entry(req->link_list.prev, struct io_kiocb,
5488 link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07005489 if (refcount_inc_not_zero(&prev->refs)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03005490 list_del_init(&req->link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07005491 prev->flags &= ~REQ_F_LINK_TIMEOUT;
5492 } else
Jens Axboe76a46e02019-11-10 23:34:16 -07005493 prev = NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07005494 }
5495
5496 spin_unlock_irqrestore(&ctx->completion_lock, flags);
5497
5498 if (prev) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005499 req_set_fail_links(prev);
Pavel Begunkov014db002020-03-03 21:33:12 +03005500 io_async_find_and_cancel(ctx, req, prev->user_data, -ETIME);
Jens Axboe76a46e02019-11-10 23:34:16 -07005501 io_put_req(prev);
Jens Axboe47f46762019-11-09 17:43:02 -07005502 } else {
5503 io_cqring_add_event(req, -ETIME);
5504 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07005505 }
Jens Axboe2665abf2019-11-05 12:40:47 -07005506 return HRTIMER_NORESTART;
5507}
5508
Jens Axboead8a48a2019-11-15 08:49:11 -07005509static void io_queue_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07005510{
Jens Axboe76a46e02019-11-10 23:34:16 -07005511 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07005512
Jens Axboe76a46e02019-11-10 23:34:16 -07005513 /*
5514 * If the list is now empty, then our linked request finished before
5515 * we got a chance to setup the timer
5516 */
5517 spin_lock_irq(&ctx->completion_lock);
Pavel Begunkov44932332019-12-05 16:16:35 +03005518 if (!list_empty(&req->link_list)) {
Jens Axboe2d283902019-12-04 11:08:05 -07005519 struct io_timeout_data *data = &req->io->timeout;
Jens Axboe94ae5e72019-11-14 19:39:52 -07005520
Jens Axboead8a48a2019-11-15 08:49:11 -07005521 data->timer.function = io_link_timeout_fn;
5522 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts),
5523 data->mode);
Jens Axboe2665abf2019-11-05 12:40:47 -07005524 }
Jens Axboe76a46e02019-11-10 23:34:16 -07005525 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe2665abf2019-11-05 12:40:47 -07005526
Jens Axboe2665abf2019-11-05 12:40:47 -07005527 /* drop submission reference */
Jens Axboe76a46e02019-11-10 23:34:16 -07005528 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07005529}
5530
Jens Axboead8a48a2019-11-15 08:49:11 -07005531static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07005532{
5533 struct io_kiocb *nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005534
Pavel Begunkovdea3b492020-04-12 02:05:04 +03005535 if (!(req->flags & REQ_F_LINK_HEAD))
Jens Axboe2665abf2019-11-05 12:40:47 -07005536 return NULL;
Jens Axboed7718a92020-02-14 22:23:12 -07005537 /* for polled retry, if flag is set, we already went through here */
5538 if (req->flags & REQ_F_POLLED)
5539 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07005540
Pavel Begunkov44932332019-12-05 16:16:35 +03005541 nxt = list_first_entry_or_null(&req->link_list, struct io_kiocb,
5542 link_list);
Jens Axboed625c6e2019-12-17 19:53:05 -07005543 if (!nxt || nxt->opcode != IORING_OP_LINK_TIMEOUT)
Jens Axboe76a46e02019-11-10 23:34:16 -07005544 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07005545
Jens Axboe76a46e02019-11-10 23:34:16 -07005546 req->flags |= REQ_F_LINK_TIMEOUT;
Jens Axboe76a46e02019-11-10 23:34:16 -07005547 return nxt;
Jens Axboe2665abf2019-11-05 12:40:47 -07005548}
5549
Jens Axboe3529d8c2019-12-19 18:24:38 -07005550static void __io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005551{
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005552 struct io_kiocb *linked_timeout;
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005553 struct io_kiocb *nxt;
Jens Axboe193155c2020-02-22 23:22:19 -07005554 const struct cred *old_creds = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005555 int ret;
5556
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005557again:
5558 linked_timeout = io_prep_linked_timeout(req);
5559
Jens Axboe193155c2020-02-22 23:22:19 -07005560 if (req->work.creds && req->work.creds != current_cred()) {
5561 if (old_creds)
5562 revert_creds(old_creds);
5563 if (old_creds == req->work.creds)
5564 old_creds = NULL; /* restored original creds */
5565 else
5566 old_creds = override_creds(req->work.creds);
5567 }
5568
Pavel Begunkov014db002020-03-03 21:33:12 +03005569 ret = io_issue_sqe(req, sqe, true);
Jens Axboe491381ce2019-10-17 09:20:46 -06005570
5571 /*
5572 * We async punt it if the file wasn't marked NOWAIT, or if the file
5573 * doesn't support non-blocking read/write attempts
5574 */
5575 if (ret == -EAGAIN && (!(req->flags & REQ_F_NOWAIT) ||
5576 (req->flags & REQ_F_MUST_PUNT))) {
Jens Axboed7718a92020-02-14 22:23:12 -07005577 if (io_arm_poll_handler(req)) {
5578 if (linked_timeout)
5579 io_queue_linked_timeout(linked_timeout);
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005580 goto exit;
Jens Axboed7718a92020-02-14 22:23:12 -07005581 }
Pavel Begunkov86a761f2020-01-22 23:09:36 +03005582punt:
Jens Axboef86cd202020-01-29 13:46:44 -07005583 if (io_op_defs[req->opcode].file_table) {
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03005584 ret = io_grab_files(req);
5585 if (ret)
5586 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005587 }
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03005588
5589 /*
5590 * Queued up for async execution, worker will release
5591 * submit reference when the iocb is actually submitted.
5592 */
5593 io_queue_async_work(req);
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005594 goto exit;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005595 }
Jens Axboee65ef562019-03-12 10:16:44 -06005596
Jens Axboefcb323c2019-10-24 12:39:47 -06005597err:
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005598 nxt = NULL;
Jens Axboee65ef562019-03-12 10:16:44 -06005599 /* drop submission reference */
Jens Axboe2a44f462020-02-25 13:25:41 -07005600 io_put_req_find_next(req, &nxt);
Jens Axboee65ef562019-03-12 10:16:44 -06005601
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03005602 if (linked_timeout) {
Jens Axboe76a46e02019-11-10 23:34:16 -07005603 if (!ret)
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03005604 io_queue_linked_timeout(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07005605 else
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03005606 io_put_req(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07005607 }
5608
Jens Axboee65ef562019-03-12 10:16:44 -06005609 /* and drop final reference, if we failed */
Jens Axboe9e645e112019-05-10 16:07:28 -06005610 if (ret) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07005611 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005612 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06005613 io_put_req(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06005614 }
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005615 if (nxt) {
5616 req = nxt;
Pavel Begunkov86a761f2020-01-22 23:09:36 +03005617
5618 if (req->flags & REQ_F_FORCE_ASYNC)
5619 goto punt;
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005620 goto again;
5621 }
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005622exit:
Jens Axboe193155c2020-02-22 23:22:19 -07005623 if (old_creds)
5624 revert_creds(old_creds);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005625}
5626
Jens Axboe3529d8c2019-12-19 18:24:38 -07005627static void io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jackie Liu4fe2c962019-09-09 20:50:40 +08005628{
5629 int ret;
5630
Jens Axboe3529d8c2019-12-19 18:24:38 -07005631 ret = io_req_defer(req, sqe);
Jackie Liu4fe2c962019-09-09 20:50:40 +08005632 if (ret) {
5633 if (ret != -EIOCBQUEUED) {
Pavel Begunkov11185912020-01-22 23:09:35 +03005634fail_req:
Jens Axboe78e19bb2019-11-06 15:21:34 -07005635 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005636 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07005637 io_double_put_req(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08005638 }
Pavel Begunkov25508782019-12-30 21:24:47 +03005639 } else if (req->flags & REQ_F_FORCE_ASYNC) {
Pavel Begunkov11185912020-01-22 23:09:35 +03005640 ret = io_req_defer_prep(req, sqe);
5641 if (unlikely(ret < 0))
5642 goto fail_req;
Jens Axboece35a472019-12-17 08:04:44 -07005643 /*
5644 * Never try inline submit of IOSQE_ASYNC is set, go straight
5645 * to async execution.
5646 */
5647 req->work.flags |= IO_WQ_WORK_CONCURRENT;
5648 io_queue_async_work(req);
5649 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07005650 __io_queue_sqe(req, sqe);
Jens Axboece35a472019-12-17 08:04:44 -07005651 }
Jackie Liu4fe2c962019-09-09 20:50:40 +08005652}
5653
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005654static inline void io_queue_link_head(struct io_kiocb *req)
Jackie Liu4fe2c962019-09-09 20:50:40 +08005655{
Jens Axboe94ae5e72019-11-14 19:39:52 -07005656 if (unlikely(req->flags & REQ_F_FAIL_LINK)) {
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005657 io_cqring_add_event(req, -ECANCELED);
5658 io_double_put_req(req);
5659 } else
Jens Axboe3529d8c2019-12-19 18:24:38 -07005660 io_queue_sqe(req, NULL);
Jackie Liu4fe2c962019-09-09 20:50:40 +08005661}
5662
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03005663static int io_submit_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboe3529d8c2019-12-19 18:24:38 -07005664 struct io_submit_state *state, struct io_kiocb **link)
Jens Axboe9e645e112019-05-10 16:07:28 -06005665{
Jackie Liua197f662019-11-08 08:09:12 -07005666 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005667 int ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06005668
Jens Axboe9e645e112019-05-10 16:07:28 -06005669 /*
5670 * If we already have a head request, queue this one for async
5671 * submittal once the head completes. If we don't have a head but
5672 * IOSQE_IO_LINK is set in the sqe, start a new head. This one will be
5673 * submitted sync once the chain is complete. If none of those
5674 * conditions are true (normal request), then just queue it.
5675 */
5676 if (*link) {
Pavel Begunkov9d763772019-12-17 02:22:07 +03005677 struct io_kiocb *head = *link;
Jens Axboe9e645e112019-05-10 16:07:28 -06005678
Pavel Begunkov8cdf2192020-01-25 00:40:24 +03005679 /*
5680 * Taking sequential execution of a link, draining both sides
5681 * of the link also fullfils IOSQE_IO_DRAIN semantics for all
5682 * requests in the link. So, it drains the head and the
5683 * next after the link request. The last one is done via
5684 * drain_next flag to persist the effect across calls.
5685 */
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005686 if (req->flags & REQ_F_IO_DRAIN) {
Pavel Begunkov711be032020-01-17 03:57:59 +03005687 head->flags |= REQ_F_IO_DRAIN;
5688 ctx->drain_next = 1;
5689 }
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03005690 if (io_alloc_async_ctx(req))
5691 return -EAGAIN;
Jens Axboe9e645e112019-05-10 16:07:28 -06005692
Jens Axboe3529d8c2019-12-19 18:24:38 -07005693 ret = io_req_defer_prep(req, sqe);
Jens Axboe2d283902019-12-04 11:08:05 -07005694 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005695 /* fail even hard links since we don't submit */
Pavel Begunkov9d763772019-12-17 02:22:07 +03005696 head->flags |= REQ_F_FAIL_LINK;
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03005697 return ret;
Jens Axboe2d283902019-12-04 11:08:05 -07005698 }
Pavel Begunkov9d763772019-12-17 02:22:07 +03005699 trace_io_uring_link(ctx, req, head);
5700 list_add_tail(&req->link_list, &head->link_list);
Jens Axboe9e645e112019-05-10 16:07:28 -06005701
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005702 /* last request of a link, enqueue the link */
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005703 if (!(req->flags & (REQ_F_LINK | REQ_F_HARDLINK))) {
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005704 io_queue_link_head(head);
5705 *link = NULL;
5706 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005707 } else {
Pavel Begunkov711be032020-01-17 03:57:59 +03005708 if (unlikely(ctx->drain_next)) {
5709 req->flags |= REQ_F_IO_DRAIN;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005710 ctx->drain_next = 0;
Pavel Begunkov711be032020-01-17 03:57:59 +03005711 }
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005712 if (req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) {
Pavel Begunkovdea3b492020-04-12 02:05:04 +03005713 req->flags |= REQ_F_LINK_HEAD;
Pavel Begunkov711be032020-01-17 03:57:59 +03005714 INIT_LIST_HEAD(&req->link_list);
Pavel Begunkovf1d96a82020-03-13 22:29:14 +03005715
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03005716 if (io_alloc_async_ctx(req))
5717 return -EAGAIN;
5718
Pavel Begunkov711be032020-01-17 03:57:59 +03005719 ret = io_req_defer_prep(req, sqe);
5720 if (ret)
5721 req->flags |= REQ_F_FAIL_LINK;
5722 *link = req;
5723 } else {
5724 io_queue_sqe(req, sqe);
5725 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005726 }
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03005727
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03005728 return 0;
Jens Axboe9e645e112019-05-10 16:07:28 -06005729}
5730
Jens Axboe9a56a232019-01-09 09:06:50 -07005731/*
5732 * Batched submission is done, ensure local IO is flushed out.
5733 */
5734static void io_submit_state_end(struct io_submit_state *state)
5735{
5736 blk_finish_plug(&state->plug);
Jens Axboe3d6770f2019-04-13 11:50:54 -06005737 io_file_put(state);
Jens Axboe2579f912019-01-09 09:10:43 -07005738 if (state->free_reqs)
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03005739 kmem_cache_free_bulk(req_cachep, state->free_reqs, state->reqs);
Jens Axboe9a56a232019-01-09 09:06:50 -07005740}
5741
5742/*
5743 * Start submission side cache.
5744 */
5745static void io_submit_state_start(struct io_submit_state *state,
Jackie Liu22efde52019-12-02 17:14:52 +08005746 unsigned int max_ios)
Jens Axboe9a56a232019-01-09 09:06:50 -07005747{
5748 blk_start_plug(&state->plug);
Jens Axboe2579f912019-01-09 09:10:43 -07005749 state->free_reqs = 0;
Jens Axboe9a56a232019-01-09 09:06:50 -07005750 state->file = NULL;
5751 state->ios_left = max_ios;
5752}
5753
Jens Axboe2b188cc2019-01-07 10:46:33 -07005754static void io_commit_sqring(struct io_ring_ctx *ctx)
5755{
Hristo Venev75b28af2019-08-26 17:23:46 +00005756 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005757
Pavel Begunkovcaf582c2019-12-30 21:24:46 +03005758 /*
5759 * Ensure any loads from the SQEs are done at this point,
5760 * since once we write the new head, the application could
5761 * write new data to them.
5762 */
5763 smp_store_release(&rings->sq.head, ctx->cached_sq_head);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005764}
5765
5766/*
Jens Axboe3529d8c2019-12-19 18:24:38 -07005767 * Fetch an sqe, if one is available. Note that sqe_ptr will point to memory
Jens Axboe2b188cc2019-01-07 10:46:33 -07005768 * that is mapped by userspace. This means that care needs to be taken to
5769 * ensure that reads are stable, as we cannot rely on userspace always
5770 * being a good citizen. If members of the sqe are validated and then later
5771 * used, it's important that those reads are done through READ_ONCE() to
5772 * prevent a re-load down the line.
5773 */
Pavel Begunkov709b3022020-04-08 08:58:43 +03005774static const struct io_uring_sqe *io_get_sqe(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005775{
Hristo Venev75b28af2019-08-26 17:23:46 +00005776 u32 *sq_array = ctx->sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005777 unsigned head;
5778
5779 /*
5780 * The cached sq head (or cq tail) serves two purposes:
5781 *
5782 * 1) allows us to batch the cost of updating the user visible
5783 * head updates.
5784 * 2) allows the kernel side to track the head on its own, even
5785 * though the application is the one updating it.
5786 */
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005787 head = READ_ONCE(sq_array[ctx->cached_sq_head & ctx->sq_mask]);
Pavel Begunkov709b3022020-04-08 08:58:43 +03005788 if (likely(head < ctx->sq_entries))
5789 return &ctx->sq_sqes[head];
Jens Axboe2b188cc2019-01-07 10:46:33 -07005790
5791 /* drop invalid entries */
Jens Axboe498ccd92019-10-25 10:04:25 -06005792 ctx->cached_sq_dropped++;
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005793 WRITE_ONCE(ctx->rings->sq_dropped, ctx->cached_sq_dropped);
Pavel Begunkov709b3022020-04-08 08:58:43 +03005794 return NULL;
5795}
5796
5797static inline void io_consume_sqe(struct io_ring_ctx *ctx)
5798{
5799 ctx->cached_sq_head++;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005800}
5801
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005802#define SQE_VALID_FLAGS (IOSQE_FIXED_FILE|IOSQE_IO_DRAIN|IOSQE_IO_LINK| \
5803 IOSQE_IO_HARDLINK | IOSQE_ASYNC | \
5804 IOSQE_BUFFER_SELECT)
5805
5806static int io_init_req(struct io_ring_ctx *ctx, struct io_kiocb *req,
5807 const struct io_uring_sqe *sqe,
5808 struct io_submit_state *state, bool async)
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03005809{
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005810 unsigned int sqe_flags;
5811 int id, fd;
5812
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03005813 /*
5814 * All io need record the previous position, if LINK vs DARIN,
5815 * it can be used to mark the position of the first IO in the
5816 * link list.
5817 */
Pavel Begunkov31af27c2020-04-15 00:39:50 +03005818 req->sequence = ctx->cached_sq_head - ctx->cached_sq_dropped;
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03005819 req->opcode = READ_ONCE(sqe->opcode);
5820 req->user_data = READ_ONCE(sqe->user_data);
5821 req->io = NULL;
5822 req->file = NULL;
5823 req->ctx = ctx;
5824 req->flags = 0;
5825 /* one is dropped after submission, the other at completion */
5826 refcount_set(&req->refs, 2);
5827 req->task = NULL;
5828 req->result = 0;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005829 req->needs_fixed_file = async;
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03005830 INIT_IO_WORK(&req->work, io_wq_submit_work);
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005831
5832 if (unlikely(req->opcode >= IORING_OP_LAST))
5833 return -EINVAL;
5834
5835 if (io_op_defs[req->opcode].needs_mm && !current->mm) {
5836 if (unlikely(!mmget_not_zero(ctx->sqo_mm)))
5837 return -EFAULT;
5838 use_mm(ctx->sqo_mm);
5839 }
5840
5841 sqe_flags = READ_ONCE(sqe->flags);
5842 /* enforce forwards compatibility on users */
5843 if (unlikely(sqe_flags & ~SQE_VALID_FLAGS))
5844 return -EINVAL;
5845
5846 if ((sqe_flags & IOSQE_BUFFER_SELECT) &&
5847 !io_op_defs[req->opcode].buffer_select)
5848 return -EOPNOTSUPP;
5849
5850 id = READ_ONCE(sqe->personality);
5851 if (id) {
5852 req->work.creds = idr_find(&ctx->personality_idr, id);
5853 if (unlikely(!req->work.creds))
5854 return -EINVAL;
5855 get_cred(req->work.creds);
5856 }
5857
5858 /* same numerical values with corresponding REQ_F_*, safe to copy */
5859 req->flags |= sqe_flags & (IOSQE_IO_DRAIN | IOSQE_IO_HARDLINK |
5860 IOSQE_ASYNC | IOSQE_FIXED_FILE |
5861 IOSQE_BUFFER_SELECT | IOSQE_IO_LINK);
5862
5863 fd = READ_ONCE(sqe->fd);
5864 return io_req_set_file(state, req, fd, sqe_flags);
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03005865}
5866
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005867static int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr,
Pavel Begunkovbf9c2f12020-04-12 02:05:02 +03005868 struct file *ring_file, int ring_fd, bool async)
Jens Axboe6c271ce2019-01-10 11:22:30 -07005869{
5870 struct io_submit_state state, *statep = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06005871 struct io_kiocb *link = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06005872 int i, submitted = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005873
Jens Axboec4a2ed72019-11-21 21:01:26 -07005874 /* if we have a backlog and couldn't flush it all, return BUSY */
Jens Axboead3eb2c2019-12-18 17:12:20 -07005875 if (test_bit(0, &ctx->sq_check_overflow)) {
5876 if (!list_empty(&ctx->cq_overflow_list) &&
5877 !io_cqring_overflow_flush(ctx, false))
5878 return -EBUSY;
5879 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07005880
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005881 /* make sure SQ entry isn't read before tail */
5882 nr = min3(nr, ctx->sq_entries, io_sqring_entries(ctx));
Pavel Begunkov9ef4f122019-12-30 21:24:44 +03005883
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03005884 if (!percpu_ref_tryget_many(&ctx->refs, nr))
5885 return -EAGAIN;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005886
5887 if (nr > IO_PLUG_THRESHOLD) {
Jackie Liu22efde52019-12-02 17:14:52 +08005888 io_submit_state_start(&state, nr);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005889 statep = &state;
5890 }
5891
Pavel Begunkovb14cca02020-01-17 04:45:59 +03005892 ctx->ring_fd = ring_fd;
5893 ctx->ring_file = ring_file;
5894
Jens Axboe6c271ce2019-01-10 11:22:30 -07005895 for (i = 0; i < nr; i++) {
Jens Axboe3529d8c2019-12-19 18:24:38 -07005896 const struct io_uring_sqe *sqe;
Pavel Begunkov196be952019-11-07 01:41:06 +03005897 struct io_kiocb *req;
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005898 int err;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005899
Pavel Begunkovb1e50e52020-04-08 08:58:44 +03005900 sqe = io_get_sqe(ctx);
5901 if (unlikely(!sqe)) {
5902 io_consume_sqe(ctx);
5903 break;
5904 }
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03005905 req = io_alloc_req(ctx, statep);
Pavel Begunkov196be952019-11-07 01:41:06 +03005906 if (unlikely(!req)) {
5907 if (!submitted)
5908 submitted = -EAGAIN;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005909 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06005910 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005911
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005912 err = io_init_req(ctx, req, sqe, statep, async);
Pavel Begunkov709b3022020-04-08 08:58:43 +03005913 io_consume_sqe(ctx);
Jens Axboed3656342019-12-18 09:50:26 -07005914 /* will complete beyond this point, count as submitted */
5915 submitted++;
5916
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005917 if (unlikely(err)) {
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005918fail_req:
5919 io_cqring_add_event(req, err);
Jens Axboed3656342019-12-18 09:50:26 -07005920 io_double_put_req(req);
5921 break;
5922 }
5923
Jens Axboe354420f2020-01-08 18:55:15 -07005924 trace_io_uring_submit_sqe(ctx, req->opcode, req->user_data,
5925 true, async);
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03005926 err = io_submit_sqe(req, sqe, statep, &link);
5927 if (err)
5928 goto fail_req;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005929 }
5930
Pavel Begunkov9466f432020-01-25 22:34:01 +03005931 if (unlikely(submitted != nr)) {
5932 int ref_used = (submitted == -EAGAIN) ? 0 : submitted;
5933
5934 percpu_ref_put_many(&ctx->refs, nr - ref_used);
5935 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005936 if (link)
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005937 io_queue_link_head(link);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005938 if (statep)
5939 io_submit_state_end(&state);
5940
Pavel Begunkovae9428c2019-11-06 00:22:14 +03005941 /* Commit SQ ring head once we've consumed and submitted all SQEs */
5942 io_commit_sqring(ctx);
5943
Jens Axboe6c271ce2019-01-10 11:22:30 -07005944 return submitted;
5945}
5946
Pavel Begunkovbf9c2f12020-04-12 02:05:02 +03005947static inline void io_sq_thread_drop_mm(struct io_ring_ctx *ctx)
5948{
5949 struct mm_struct *mm = current->mm;
5950
5951 if (mm) {
5952 unuse_mm(mm);
5953 mmput(mm);
5954 }
5955}
5956
Jens Axboe6c271ce2019-01-10 11:22:30 -07005957static int io_sq_thread(void *data)
5958{
Jens Axboe6c271ce2019-01-10 11:22:30 -07005959 struct io_ring_ctx *ctx = data;
Jens Axboe181e4482019-11-25 08:52:30 -07005960 const struct cred *old_cred;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005961 mm_segment_t old_fs;
5962 DEFINE_WAIT(wait);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005963 unsigned long timeout;
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005964 int ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005965
Jens Axboe206aefd2019-11-07 18:27:42 -07005966 complete(&ctx->completions[1]);
Jackie Liua4c0b3d2019-07-08 13:41:12 +08005967
Jens Axboe6c271ce2019-01-10 11:22:30 -07005968 old_fs = get_fs();
5969 set_fs(USER_DS);
Jens Axboe181e4482019-11-25 08:52:30 -07005970 old_cred = override_creds(ctx->creds);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005971
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005972 timeout = jiffies + ctx->sq_thread_idle;
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02005973 while (!kthread_should_park()) {
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005974 unsigned int to_submit;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005975
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005976 if (!list_empty(&ctx->poll_list)) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07005977 unsigned nr_events = 0;
5978
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005979 mutex_lock(&ctx->uring_lock);
5980 if (!list_empty(&ctx->poll_list))
5981 io_iopoll_getevents(ctx, &nr_events, 0);
5982 else
Jens Axboe6c271ce2019-01-10 11:22:30 -07005983 timeout = jiffies + ctx->sq_thread_idle;
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005984 mutex_unlock(&ctx->uring_lock);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005985 }
5986
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005987 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07005988
5989 /*
5990 * If submit got -EBUSY, flag us as needing the application
5991 * to enter the kernel to reap and flush events.
5992 */
5993 if (!to_submit || ret == -EBUSY) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07005994 /*
Stefano Garzarella7143b5a2020-02-21 16:42:16 +01005995 * Drop cur_mm before scheduling, we can't hold it for
5996 * long periods (or over schedule()). Do this before
5997 * adding ourselves to the waitqueue, as the unuse/drop
5998 * may sleep.
5999 */
Pavel Begunkovbf9c2f12020-04-12 02:05:02 +03006000 io_sq_thread_drop_mm(ctx);
Stefano Garzarella7143b5a2020-02-21 16:42:16 +01006001
6002 /*
Jens Axboe6c271ce2019-01-10 11:22:30 -07006003 * We're polling. If we're within the defined idle
6004 * period, then let us spin without work before going
Jens Axboec1edbf52019-11-10 16:56:04 -07006005 * to sleep. The exception is if we got EBUSY doing
6006 * more IO, we should wait for the application to
6007 * reap events and wake us up.
Jens Axboe6c271ce2019-01-10 11:22:30 -07006008 */
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006009 if (!list_empty(&ctx->poll_list) ||
Jens Axboedf069d82020-02-04 16:48:34 -07006010 (!time_after(jiffies, timeout) && ret != -EBUSY &&
6011 !percpu_ref_is_dying(&ctx->refs))) {
Jens Axboeb41e9852020-02-17 09:52:41 -07006012 if (current->task_works)
6013 task_work_run();
Jens Axboe9831a902019-09-19 09:48:55 -06006014 cond_resched();
Jens Axboe6c271ce2019-01-10 11:22:30 -07006015 continue;
6016 }
6017
Jens Axboe6c271ce2019-01-10 11:22:30 -07006018 prepare_to_wait(&ctx->sqo_wait, &wait,
6019 TASK_INTERRUPTIBLE);
6020
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006021 /*
6022 * While doing polled IO, before going to sleep, we need
6023 * to check if there are new reqs added to poll_list, it
6024 * is because reqs may have been punted to io worker and
6025 * will be added to poll_list later, hence check the
6026 * poll_list again.
6027 */
6028 if ((ctx->flags & IORING_SETUP_IOPOLL) &&
6029 !list_empty_careful(&ctx->poll_list)) {
6030 finish_wait(&ctx->sqo_wait, &wait);
6031 continue;
6032 }
6033
Jens Axboe6c271ce2019-01-10 11:22:30 -07006034 /* Tell userspace we may need a wakeup call */
Hristo Venev75b28af2019-08-26 17:23:46 +00006035 ctx->rings->sq_flags |= IORING_SQ_NEED_WAKEUP;
Stefan Bühler0d7bae62019-04-19 11:57:45 +02006036 /* make sure to read SQ tail after writing flags */
6037 smp_mb();
Jens Axboe6c271ce2019-01-10 11:22:30 -07006038
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03006039 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07006040 if (!to_submit || ret == -EBUSY) {
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02006041 if (kthread_should_park()) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07006042 finish_wait(&ctx->sqo_wait, &wait);
6043 break;
6044 }
Jens Axboeb41e9852020-02-17 09:52:41 -07006045 if (current->task_works) {
6046 task_work_run();
Hillf Danton10bea962020-04-01 17:19:33 +08006047 finish_wait(&ctx->sqo_wait, &wait);
Jens Axboeb41e9852020-02-17 09:52:41 -07006048 continue;
6049 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07006050 if (signal_pending(current))
6051 flush_signals(current);
6052 schedule();
6053 finish_wait(&ctx->sqo_wait, &wait);
6054
Hristo Venev75b28af2019-08-26 17:23:46 +00006055 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006056 continue;
6057 }
6058 finish_wait(&ctx->sqo_wait, &wait);
6059
Hristo Venev75b28af2019-08-26 17:23:46 +00006060 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006061 }
6062
Jens Axboe8a4955f2019-12-09 14:52:35 -07006063 mutex_lock(&ctx->uring_lock);
Pavel Begunkovbf9c2f12020-04-12 02:05:02 +03006064 ret = io_submit_sqes(ctx, to_submit, NULL, -1, true);
Jens Axboe8a4955f2019-12-09 14:52:35 -07006065 mutex_unlock(&ctx->uring_lock);
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006066 timeout = jiffies + ctx->sq_thread_idle;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006067 }
6068
Jens Axboeb41e9852020-02-17 09:52:41 -07006069 if (current->task_works)
6070 task_work_run();
6071
Jens Axboe6c271ce2019-01-10 11:22:30 -07006072 set_fs(old_fs);
Pavel Begunkovbf9c2f12020-04-12 02:05:02 +03006073 io_sq_thread_drop_mm(ctx);
Jens Axboe181e4482019-11-25 08:52:30 -07006074 revert_creds(old_cred);
Jens Axboe06058632019-04-13 09:26:03 -06006075
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02006076 kthread_parkme();
Jens Axboe06058632019-04-13 09:26:03 -06006077
Jens Axboe6c271ce2019-01-10 11:22:30 -07006078 return 0;
6079}
6080
Jens Axboebda52162019-09-24 13:47:15 -06006081struct io_wait_queue {
6082 struct wait_queue_entry wq;
6083 struct io_ring_ctx *ctx;
6084 unsigned to_wait;
6085 unsigned nr_timeouts;
6086};
6087
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006088static inline bool io_should_wake(struct io_wait_queue *iowq, bool noflush)
Jens Axboebda52162019-09-24 13:47:15 -06006089{
6090 struct io_ring_ctx *ctx = iowq->ctx;
6091
6092 /*
Brian Gianforcarod195a662019-12-13 03:09:50 -08006093 * Wake up if we have enough events, or if a timeout occurred since we
Jens Axboebda52162019-09-24 13:47:15 -06006094 * started waiting. For timeouts, we always want to return to userspace,
6095 * regardless of event count.
6096 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006097 return io_cqring_events(ctx, noflush) >= iowq->to_wait ||
Jens Axboebda52162019-09-24 13:47:15 -06006098 atomic_read(&ctx->cq_timeouts) != iowq->nr_timeouts;
6099}
6100
6101static int io_wake_function(struct wait_queue_entry *curr, unsigned int mode,
6102 int wake_flags, void *key)
6103{
6104 struct io_wait_queue *iowq = container_of(curr, struct io_wait_queue,
6105 wq);
6106
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006107 /* use noflush == true, as we can't safely rely on locking context */
6108 if (!io_should_wake(iowq, true))
Jens Axboebda52162019-09-24 13:47:15 -06006109 return -1;
6110
6111 return autoremove_wake_function(curr, mode, wake_flags, key);
6112}
6113
Jens Axboe2b188cc2019-01-07 10:46:33 -07006114/*
6115 * Wait until events become available, if we don't already have some. The
6116 * application must reap them itself, as they reside on the shared cq ring.
6117 */
6118static int io_cqring_wait(struct io_ring_ctx *ctx, int min_events,
6119 const sigset_t __user *sig, size_t sigsz)
6120{
Jens Axboebda52162019-09-24 13:47:15 -06006121 struct io_wait_queue iowq = {
6122 .wq = {
6123 .private = current,
6124 .func = io_wake_function,
6125 .entry = LIST_HEAD_INIT(iowq.wq.entry),
6126 },
6127 .ctx = ctx,
6128 .to_wait = min_events,
6129 };
Hristo Venev75b28af2019-08-26 17:23:46 +00006130 struct io_rings *rings = ctx->rings;
Jackie Liue9ffa5c2019-10-29 11:16:42 +08006131 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006132
Jens Axboeb41e9852020-02-17 09:52:41 -07006133 do {
6134 if (io_cqring_events(ctx, false) >= min_events)
6135 return 0;
6136 if (!current->task_works)
6137 break;
6138 task_work_run();
6139 } while (1);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006140
6141 if (sig) {
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006142#ifdef CONFIG_COMPAT
6143 if (in_compat_syscall())
6144 ret = set_compat_user_sigmask((const compat_sigset_t __user *)sig,
Oleg Nesterovb7724342019-07-16 16:29:53 -07006145 sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006146 else
6147#endif
Oleg Nesterovb7724342019-07-16 16:29:53 -07006148 ret = set_user_sigmask(sig, sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006149
Jens Axboe2b188cc2019-01-07 10:46:33 -07006150 if (ret)
6151 return ret;
6152 }
6153
Jens Axboebda52162019-09-24 13:47:15 -06006154 iowq.nr_timeouts = atomic_read(&ctx->cq_timeouts);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02006155 trace_io_uring_cqring_wait(ctx, min_events);
Jens Axboebda52162019-09-24 13:47:15 -06006156 do {
6157 prepare_to_wait_exclusive(&ctx->wait, &iowq.wq,
6158 TASK_INTERRUPTIBLE);
Jens Axboeb41e9852020-02-17 09:52:41 -07006159 if (current->task_works)
6160 task_work_run();
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006161 if (io_should_wake(&iowq, false))
Jens Axboebda52162019-09-24 13:47:15 -06006162 break;
6163 schedule();
6164 if (signal_pending(current)) {
Jackie Liue9ffa5c2019-10-29 11:16:42 +08006165 ret = -EINTR;
Jens Axboebda52162019-09-24 13:47:15 -06006166 break;
6167 }
6168 } while (1);
6169 finish_wait(&ctx->wait, &iowq.wq);
6170
Jackie Liue9ffa5c2019-10-29 11:16:42 +08006171 restore_saved_sigmask_unless(ret == -EINTR);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006172
Hristo Venev75b28af2019-08-26 17:23:46 +00006173 return READ_ONCE(rings->cq.head) == READ_ONCE(rings->cq.tail) ? ret : 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006174}
6175
Jens Axboe6b063142019-01-10 22:13:58 -07006176static void __io_sqe_files_unregister(struct io_ring_ctx *ctx)
6177{
6178#if defined(CONFIG_UNIX)
6179 if (ctx->ring_sock) {
6180 struct sock *sock = ctx->ring_sock->sk;
6181 struct sk_buff *skb;
6182
6183 while ((skb = skb_dequeue(&sock->sk_receive_queue)) != NULL)
6184 kfree_skb(skb);
6185 }
6186#else
6187 int i;
6188
Jens Axboe65e19f52019-10-26 07:20:21 -06006189 for (i = 0; i < ctx->nr_user_files; i++) {
6190 struct file *file;
6191
6192 file = io_file_from_index(ctx, i);
6193 if (file)
6194 fput(file);
6195 }
Jens Axboe6b063142019-01-10 22:13:58 -07006196#endif
6197}
6198
Jens Axboe05f3fb32019-12-09 11:22:50 -07006199static void io_file_ref_kill(struct percpu_ref *ref)
6200{
6201 struct fixed_file_data *data;
6202
6203 data = container_of(ref, struct fixed_file_data, refs);
6204 complete(&data->done);
6205}
6206
Jens Axboe6b063142019-01-10 22:13:58 -07006207static int io_sqe_files_unregister(struct io_ring_ctx *ctx)
6208{
Jens Axboe05f3fb32019-12-09 11:22:50 -07006209 struct fixed_file_data *data = ctx->file_data;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006210 struct fixed_file_ref_node *ref_node = NULL;
Jens Axboe65e19f52019-10-26 07:20:21 -06006211 unsigned nr_tables, i;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006212 unsigned long flags;
Jens Axboe65e19f52019-10-26 07:20:21 -06006213
Jens Axboe05f3fb32019-12-09 11:22:50 -07006214 if (!data)
Jens Axboe6b063142019-01-10 22:13:58 -07006215 return -ENXIO;
6216
Xiaoguang Wang05589552020-03-31 14:05:18 +08006217 spin_lock_irqsave(&data->lock, flags);
6218 if (!list_empty(&data->ref_list))
6219 ref_node = list_first_entry(&data->ref_list,
6220 struct fixed_file_ref_node, node);
6221 spin_unlock_irqrestore(&data->lock, flags);
6222 if (ref_node)
6223 percpu_ref_kill(&ref_node->refs);
6224
6225 percpu_ref_kill(&data->refs);
6226
6227 /* wait for all refs nodes to complete */
Jens Axboe2faf8522020-02-04 19:54:55 -07006228 wait_for_completion(&data->done);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006229
Jens Axboe6b063142019-01-10 22:13:58 -07006230 __io_sqe_files_unregister(ctx);
Jens Axboe65e19f52019-10-26 07:20:21 -06006231 nr_tables = DIV_ROUND_UP(ctx->nr_user_files, IORING_MAX_FILES_TABLE);
6232 for (i = 0; i < nr_tables; i++)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006233 kfree(data->table[i].files);
6234 kfree(data->table);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006235 percpu_ref_exit(&data->refs);
6236 kfree(data);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006237 ctx->file_data = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07006238 ctx->nr_user_files = 0;
6239 return 0;
6240}
6241
Jens Axboe6c271ce2019-01-10 11:22:30 -07006242static void io_sq_thread_stop(struct io_ring_ctx *ctx)
6243{
6244 if (ctx->sqo_thread) {
Jens Axboe206aefd2019-11-07 18:27:42 -07006245 wait_for_completion(&ctx->completions[1]);
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02006246 /*
6247 * The park is a bit of a work-around, without it we get
6248 * warning spews on shutdown with SQPOLL set and affinity
6249 * set to a single CPU.
6250 */
Jens Axboe06058632019-04-13 09:26:03 -06006251 kthread_park(ctx->sqo_thread);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006252 kthread_stop(ctx->sqo_thread);
6253 ctx->sqo_thread = NULL;
6254 }
6255}
6256
Jens Axboe6b063142019-01-10 22:13:58 -07006257static void io_finish_async(struct io_ring_ctx *ctx)
6258{
Jens Axboe6c271ce2019-01-10 11:22:30 -07006259 io_sq_thread_stop(ctx);
6260
Jens Axboe561fb042019-10-24 07:25:42 -06006261 if (ctx->io_wq) {
6262 io_wq_destroy(ctx->io_wq);
6263 ctx->io_wq = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07006264 }
6265}
6266
6267#if defined(CONFIG_UNIX)
Jens Axboe6b063142019-01-10 22:13:58 -07006268/*
6269 * Ensure the UNIX gc is aware of our file set, so we are certain that
6270 * the io_uring can be safely unregistered on process exit, even if we have
6271 * loops in the file referencing.
6272 */
6273static int __io_sqe_files_scm(struct io_ring_ctx *ctx, int nr, int offset)
6274{
6275 struct sock *sk = ctx->ring_sock->sk;
6276 struct scm_fp_list *fpl;
6277 struct sk_buff *skb;
Jens Axboe08a45172019-10-03 08:11:03 -06006278 int i, nr_files;
Jens Axboe6b063142019-01-10 22:13:58 -07006279
Jens Axboe6b063142019-01-10 22:13:58 -07006280 fpl = kzalloc(sizeof(*fpl), GFP_KERNEL);
6281 if (!fpl)
6282 return -ENOMEM;
6283
6284 skb = alloc_skb(0, GFP_KERNEL);
6285 if (!skb) {
6286 kfree(fpl);
6287 return -ENOMEM;
6288 }
6289
6290 skb->sk = sk;
Jens Axboe6b063142019-01-10 22:13:58 -07006291
Jens Axboe08a45172019-10-03 08:11:03 -06006292 nr_files = 0;
Jens Axboe6b063142019-01-10 22:13:58 -07006293 fpl->user = get_uid(ctx->user);
6294 for (i = 0; i < nr; i++) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006295 struct file *file = io_file_from_index(ctx, i + offset);
6296
6297 if (!file)
Jens Axboe08a45172019-10-03 08:11:03 -06006298 continue;
Jens Axboe65e19f52019-10-26 07:20:21 -06006299 fpl->fp[nr_files] = get_file(file);
Jens Axboe08a45172019-10-03 08:11:03 -06006300 unix_inflight(fpl->user, fpl->fp[nr_files]);
6301 nr_files++;
Jens Axboe6b063142019-01-10 22:13:58 -07006302 }
6303
Jens Axboe08a45172019-10-03 08:11:03 -06006304 if (nr_files) {
6305 fpl->max = SCM_MAX_FD;
6306 fpl->count = nr_files;
6307 UNIXCB(skb).fp = fpl;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006308 skb->destructor = unix_destruct_scm;
Jens Axboe08a45172019-10-03 08:11:03 -06006309 refcount_add(skb->truesize, &sk->sk_wmem_alloc);
6310 skb_queue_head(&sk->sk_receive_queue, skb);
Jens Axboe6b063142019-01-10 22:13:58 -07006311
Jens Axboe08a45172019-10-03 08:11:03 -06006312 for (i = 0; i < nr_files; i++)
6313 fput(fpl->fp[i]);
6314 } else {
6315 kfree_skb(skb);
6316 kfree(fpl);
6317 }
Jens Axboe6b063142019-01-10 22:13:58 -07006318
6319 return 0;
6320}
6321
6322/*
6323 * If UNIX sockets are enabled, fd passing can cause a reference cycle which
6324 * causes regular reference counting to break down. We rely on the UNIX
6325 * garbage collection to take care of this problem for us.
6326 */
6327static int io_sqe_files_scm(struct io_ring_ctx *ctx)
6328{
6329 unsigned left, total;
6330 int ret = 0;
6331
6332 total = 0;
6333 left = ctx->nr_user_files;
6334 while (left) {
6335 unsigned this_files = min_t(unsigned, left, SCM_MAX_FD);
Jens Axboe6b063142019-01-10 22:13:58 -07006336
6337 ret = __io_sqe_files_scm(ctx, this_files, total);
6338 if (ret)
6339 break;
6340 left -= this_files;
6341 total += this_files;
6342 }
6343
6344 if (!ret)
6345 return 0;
6346
6347 while (total < ctx->nr_user_files) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006348 struct file *file = io_file_from_index(ctx, total);
6349
6350 if (file)
6351 fput(file);
Jens Axboe6b063142019-01-10 22:13:58 -07006352 total++;
6353 }
6354
6355 return ret;
6356}
6357#else
6358static int io_sqe_files_scm(struct io_ring_ctx *ctx)
6359{
6360 return 0;
6361}
6362#endif
6363
Jens Axboe65e19f52019-10-26 07:20:21 -06006364static int io_sqe_alloc_file_tables(struct io_ring_ctx *ctx, unsigned nr_tables,
6365 unsigned nr_files)
6366{
6367 int i;
6368
6369 for (i = 0; i < nr_tables; i++) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006370 struct fixed_file_table *table = &ctx->file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06006371 unsigned this_files;
6372
6373 this_files = min(nr_files, IORING_MAX_FILES_TABLE);
6374 table->files = kcalloc(this_files, sizeof(struct file *),
6375 GFP_KERNEL);
6376 if (!table->files)
6377 break;
6378 nr_files -= this_files;
6379 }
6380
6381 if (i == nr_tables)
6382 return 0;
6383
6384 for (i = 0; i < nr_tables; i++) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006385 struct fixed_file_table *table = &ctx->file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06006386 kfree(table->files);
6387 }
6388 return 1;
6389}
6390
Jens Axboe05f3fb32019-12-09 11:22:50 -07006391static void io_ring_file_put(struct io_ring_ctx *ctx, struct file *file)
Jens Axboec3a31e62019-10-03 13:59:56 -06006392{
6393#if defined(CONFIG_UNIX)
Jens Axboec3a31e62019-10-03 13:59:56 -06006394 struct sock *sock = ctx->ring_sock->sk;
6395 struct sk_buff_head list, *head = &sock->sk_receive_queue;
6396 struct sk_buff *skb;
6397 int i;
6398
6399 __skb_queue_head_init(&list);
6400
6401 /*
6402 * Find the skb that holds this file in its SCM_RIGHTS. When found,
6403 * remove this entry and rearrange the file array.
6404 */
6405 skb = skb_dequeue(head);
6406 while (skb) {
6407 struct scm_fp_list *fp;
6408
6409 fp = UNIXCB(skb).fp;
6410 for (i = 0; i < fp->count; i++) {
6411 int left;
6412
6413 if (fp->fp[i] != file)
6414 continue;
6415
6416 unix_notinflight(fp->user, fp->fp[i]);
6417 left = fp->count - 1 - i;
6418 if (left) {
6419 memmove(&fp->fp[i], &fp->fp[i + 1],
6420 left * sizeof(struct file *));
6421 }
6422 fp->count--;
6423 if (!fp->count) {
6424 kfree_skb(skb);
6425 skb = NULL;
6426 } else {
6427 __skb_queue_tail(&list, skb);
6428 }
6429 fput(file);
6430 file = NULL;
6431 break;
6432 }
6433
6434 if (!file)
6435 break;
6436
6437 __skb_queue_tail(&list, skb);
6438
6439 skb = skb_dequeue(head);
6440 }
6441
6442 if (skb_peek(&list)) {
6443 spin_lock_irq(&head->lock);
6444 while ((skb = __skb_dequeue(&list)) != NULL)
6445 __skb_queue_tail(head, skb);
6446 spin_unlock_irq(&head->lock);
6447 }
6448#else
Jens Axboe05f3fb32019-12-09 11:22:50 -07006449 fput(file);
Jens Axboec3a31e62019-10-03 13:59:56 -06006450#endif
6451}
6452
Jens Axboe05f3fb32019-12-09 11:22:50 -07006453struct io_file_put {
Xiaoguang Wang05589552020-03-31 14:05:18 +08006454 struct list_head list;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006455 struct file *file;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006456};
6457
Xiaoguang Wang05589552020-03-31 14:05:18 +08006458static void io_file_put_work(struct work_struct *work)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006459{
Xiaoguang Wang05589552020-03-31 14:05:18 +08006460 struct fixed_file_ref_node *ref_node;
6461 struct fixed_file_data *file_data;
6462 struct io_ring_ctx *ctx;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006463 struct io_file_put *pfile, *tmp;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006464 unsigned long flags;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006465
Xiaoguang Wang05589552020-03-31 14:05:18 +08006466 ref_node = container_of(work, struct fixed_file_ref_node, work);
6467 file_data = ref_node->file_data;
6468 ctx = file_data->ctx;
6469
6470 list_for_each_entry_safe(pfile, tmp, &ref_node->file_list, list) {
6471 list_del_init(&pfile->list);
6472 io_ring_file_put(ctx, pfile->file);
6473 kfree(pfile);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006474 }
6475
Xiaoguang Wang05589552020-03-31 14:05:18 +08006476 spin_lock_irqsave(&file_data->lock, flags);
6477 list_del_init(&ref_node->node);
6478 spin_unlock_irqrestore(&file_data->lock, flags);
Jens Axboe2faf8522020-02-04 19:54:55 -07006479
Xiaoguang Wang05589552020-03-31 14:05:18 +08006480 percpu_ref_exit(&ref_node->refs);
6481 kfree(ref_node);
6482 percpu_ref_put(&file_data->refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006483}
6484
6485static void io_file_data_ref_zero(struct percpu_ref *ref)
6486{
Xiaoguang Wang05589552020-03-31 14:05:18 +08006487 struct fixed_file_ref_node *ref_node;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006488
Xiaoguang Wang05589552020-03-31 14:05:18 +08006489 ref_node = container_of(ref, struct fixed_file_ref_node, refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006490
Xiaoguang Wang05589552020-03-31 14:05:18 +08006491 queue_work(system_wq, &ref_node->work);
6492}
6493
6494static struct fixed_file_ref_node *alloc_fixed_file_ref_node(
6495 struct io_ring_ctx *ctx)
6496{
6497 struct fixed_file_ref_node *ref_node;
6498
6499 ref_node = kzalloc(sizeof(*ref_node), GFP_KERNEL);
6500 if (!ref_node)
6501 return ERR_PTR(-ENOMEM);
6502
6503 if (percpu_ref_init(&ref_node->refs, io_file_data_ref_zero,
6504 0, GFP_KERNEL)) {
6505 kfree(ref_node);
6506 return ERR_PTR(-ENOMEM);
6507 }
6508 INIT_LIST_HEAD(&ref_node->node);
6509 INIT_LIST_HEAD(&ref_node->file_list);
6510 INIT_WORK(&ref_node->work, io_file_put_work);
6511 ref_node->file_data = ctx->file_data;
6512 return ref_node;
6513
6514}
6515
6516static void destroy_fixed_file_ref_node(struct fixed_file_ref_node *ref_node)
6517{
6518 percpu_ref_exit(&ref_node->refs);
6519 kfree(ref_node);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006520}
6521
6522static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
6523 unsigned nr_args)
6524{
6525 __s32 __user *fds = (__s32 __user *) arg;
6526 unsigned nr_tables;
6527 struct file *file;
6528 int fd, ret = 0;
6529 unsigned i;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006530 struct fixed_file_ref_node *ref_node;
6531 unsigned long flags;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006532
6533 if (ctx->file_data)
6534 return -EBUSY;
6535 if (!nr_args)
6536 return -EINVAL;
6537 if (nr_args > IORING_MAX_FIXED_FILES)
6538 return -EMFILE;
6539
6540 ctx->file_data = kzalloc(sizeof(*ctx->file_data), GFP_KERNEL);
6541 if (!ctx->file_data)
6542 return -ENOMEM;
6543 ctx->file_data->ctx = ctx;
6544 init_completion(&ctx->file_data->done);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006545 INIT_LIST_HEAD(&ctx->file_data->ref_list);
Xiaoguang Wangf7fe9342020-04-07 20:02:31 +08006546 spin_lock_init(&ctx->file_data->lock);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006547
6548 nr_tables = DIV_ROUND_UP(nr_args, IORING_MAX_FILES_TABLE);
6549 ctx->file_data->table = kcalloc(nr_tables,
6550 sizeof(struct fixed_file_table),
6551 GFP_KERNEL);
6552 if (!ctx->file_data->table) {
6553 kfree(ctx->file_data);
6554 ctx->file_data = NULL;
6555 return -ENOMEM;
6556 }
6557
Xiaoguang Wang05589552020-03-31 14:05:18 +08006558 if (percpu_ref_init(&ctx->file_data->refs, io_file_ref_kill,
Jens Axboe05f3fb32019-12-09 11:22:50 -07006559 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL)) {
6560 kfree(ctx->file_data->table);
6561 kfree(ctx->file_data);
6562 ctx->file_data = NULL;
6563 return -ENOMEM;
6564 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07006565
6566 if (io_sqe_alloc_file_tables(ctx, nr_tables, nr_args)) {
6567 percpu_ref_exit(&ctx->file_data->refs);
6568 kfree(ctx->file_data->table);
6569 kfree(ctx->file_data);
6570 ctx->file_data = NULL;
6571 return -ENOMEM;
6572 }
6573
6574 for (i = 0; i < nr_args; i++, ctx->nr_user_files++) {
6575 struct fixed_file_table *table;
6576 unsigned index;
6577
6578 ret = -EFAULT;
6579 if (copy_from_user(&fd, &fds[i], sizeof(fd)))
6580 break;
6581 /* allow sparse sets */
6582 if (fd == -1) {
6583 ret = 0;
6584 continue;
6585 }
6586
6587 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
6588 index = i & IORING_FILE_TABLE_MASK;
6589 file = fget(fd);
6590
6591 ret = -EBADF;
6592 if (!file)
6593 break;
6594
6595 /*
6596 * Don't allow io_uring instances to be registered. If UNIX
6597 * isn't enabled, then this causes a reference cycle and this
6598 * instance can never get freed. If UNIX is enabled we'll
6599 * handle it just fine, but there's still no point in allowing
6600 * a ring fd as it doesn't support regular read/write anyway.
6601 */
6602 if (file->f_op == &io_uring_fops) {
6603 fput(file);
6604 break;
6605 }
6606 ret = 0;
6607 table->files[index] = file;
6608 }
6609
6610 if (ret) {
6611 for (i = 0; i < ctx->nr_user_files; i++) {
6612 file = io_file_from_index(ctx, i);
6613 if (file)
6614 fput(file);
6615 }
6616 for (i = 0; i < nr_tables; i++)
6617 kfree(ctx->file_data->table[i].files);
6618
6619 kfree(ctx->file_data->table);
6620 kfree(ctx->file_data);
6621 ctx->file_data = NULL;
6622 ctx->nr_user_files = 0;
6623 return ret;
6624 }
6625
6626 ret = io_sqe_files_scm(ctx);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006627 if (ret) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006628 io_sqe_files_unregister(ctx);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006629 return ret;
6630 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07006631
Xiaoguang Wang05589552020-03-31 14:05:18 +08006632 ref_node = alloc_fixed_file_ref_node(ctx);
6633 if (IS_ERR(ref_node)) {
6634 io_sqe_files_unregister(ctx);
6635 return PTR_ERR(ref_node);
6636 }
6637
6638 ctx->file_data->cur_refs = &ref_node->refs;
6639 spin_lock_irqsave(&ctx->file_data->lock, flags);
6640 list_add(&ref_node->node, &ctx->file_data->ref_list);
6641 spin_unlock_irqrestore(&ctx->file_data->lock, flags);
6642 percpu_ref_get(&ctx->file_data->refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006643 return ret;
6644}
6645
Jens Axboec3a31e62019-10-03 13:59:56 -06006646static int io_sqe_file_register(struct io_ring_ctx *ctx, struct file *file,
6647 int index)
6648{
6649#if defined(CONFIG_UNIX)
6650 struct sock *sock = ctx->ring_sock->sk;
6651 struct sk_buff_head *head = &sock->sk_receive_queue;
6652 struct sk_buff *skb;
6653
6654 /*
6655 * See if we can merge this file into an existing skb SCM_RIGHTS
6656 * file set. If there's no room, fall back to allocating a new skb
6657 * and filling it in.
6658 */
6659 spin_lock_irq(&head->lock);
6660 skb = skb_peek(head);
6661 if (skb) {
6662 struct scm_fp_list *fpl = UNIXCB(skb).fp;
6663
6664 if (fpl->count < SCM_MAX_FD) {
6665 __skb_unlink(skb, head);
6666 spin_unlock_irq(&head->lock);
6667 fpl->fp[fpl->count] = get_file(file);
6668 unix_inflight(fpl->user, fpl->fp[fpl->count]);
6669 fpl->count++;
6670 spin_lock_irq(&head->lock);
6671 __skb_queue_head(head, skb);
6672 } else {
6673 skb = NULL;
6674 }
6675 }
6676 spin_unlock_irq(&head->lock);
6677
6678 if (skb) {
6679 fput(file);
6680 return 0;
6681 }
6682
6683 return __io_sqe_files_scm(ctx, 1, index);
6684#else
6685 return 0;
6686#endif
6687}
6688
Hillf Dantona5318d32020-03-23 17:47:15 +08006689static int io_queue_file_removal(struct fixed_file_data *data,
Xiaoguang Wang05589552020-03-31 14:05:18 +08006690 struct file *file)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006691{
Hillf Dantona5318d32020-03-23 17:47:15 +08006692 struct io_file_put *pfile;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006693 struct percpu_ref *refs = data->cur_refs;
6694 struct fixed_file_ref_node *ref_node;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006695
Jens Axboe05f3fb32019-12-09 11:22:50 -07006696 pfile = kzalloc(sizeof(*pfile), GFP_KERNEL);
Hillf Dantona5318d32020-03-23 17:47:15 +08006697 if (!pfile)
6698 return -ENOMEM;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006699
Xiaoguang Wang05589552020-03-31 14:05:18 +08006700 ref_node = container_of(refs, struct fixed_file_ref_node, refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006701 pfile->file = file;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006702 list_add(&pfile->list, &ref_node->file_list);
6703
Hillf Dantona5318d32020-03-23 17:47:15 +08006704 return 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006705}
6706
6707static int __io_sqe_files_update(struct io_ring_ctx *ctx,
6708 struct io_uring_files_update *up,
6709 unsigned nr_args)
6710{
6711 struct fixed_file_data *data = ctx->file_data;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006712 struct fixed_file_ref_node *ref_node;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006713 struct file *file;
Jens Axboec3a31e62019-10-03 13:59:56 -06006714 __s32 __user *fds;
6715 int fd, i, err;
6716 __u32 done;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006717 unsigned long flags;
6718 bool needs_switch = false;
Jens Axboec3a31e62019-10-03 13:59:56 -06006719
Jens Axboe05f3fb32019-12-09 11:22:50 -07006720 if (check_add_overflow(up->offset, nr_args, &done))
Jens Axboec3a31e62019-10-03 13:59:56 -06006721 return -EOVERFLOW;
6722 if (done > ctx->nr_user_files)
6723 return -EINVAL;
6724
Xiaoguang Wang05589552020-03-31 14:05:18 +08006725 ref_node = alloc_fixed_file_ref_node(ctx);
6726 if (IS_ERR(ref_node))
6727 return PTR_ERR(ref_node);
6728
Jens Axboec3a31e62019-10-03 13:59:56 -06006729 done = 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006730 fds = u64_to_user_ptr(up->fds);
Jens Axboec3a31e62019-10-03 13:59:56 -06006731 while (nr_args) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006732 struct fixed_file_table *table;
6733 unsigned index;
6734
Jens Axboec3a31e62019-10-03 13:59:56 -06006735 err = 0;
6736 if (copy_from_user(&fd, &fds[done], sizeof(fd))) {
6737 err = -EFAULT;
6738 break;
6739 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07006740 i = array_index_nospec(up->offset, ctx->nr_user_files);
6741 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
Jens Axboe65e19f52019-10-26 07:20:21 -06006742 index = i & IORING_FILE_TABLE_MASK;
6743 if (table->files[index]) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006744 file = io_file_from_index(ctx, index);
Hillf Dantona5318d32020-03-23 17:47:15 +08006745 err = io_queue_file_removal(data, file);
6746 if (err)
6747 break;
Jens Axboe65e19f52019-10-26 07:20:21 -06006748 table->files[index] = NULL;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006749 needs_switch = true;
Jens Axboec3a31e62019-10-03 13:59:56 -06006750 }
6751 if (fd != -1) {
Jens Axboec3a31e62019-10-03 13:59:56 -06006752 file = fget(fd);
6753 if (!file) {
6754 err = -EBADF;
6755 break;
6756 }
6757 /*
6758 * Don't allow io_uring instances to be registered. If
6759 * UNIX isn't enabled, then this causes a reference
6760 * cycle and this instance can never get freed. If UNIX
6761 * is enabled we'll handle it just fine, but there's
6762 * still no point in allowing a ring fd as it doesn't
6763 * support regular read/write anyway.
6764 */
6765 if (file->f_op == &io_uring_fops) {
6766 fput(file);
6767 err = -EBADF;
6768 break;
6769 }
Jens Axboe65e19f52019-10-26 07:20:21 -06006770 table->files[index] = file;
Jens Axboec3a31e62019-10-03 13:59:56 -06006771 err = io_sqe_file_register(ctx, file, i);
6772 if (err)
6773 break;
6774 }
6775 nr_args--;
6776 done++;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006777 up->offset++;
6778 }
6779
Xiaoguang Wang05589552020-03-31 14:05:18 +08006780 if (needs_switch) {
6781 percpu_ref_kill(data->cur_refs);
6782 spin_lock_irqsave(&data->lock, flags);
6783 list_add(&ref_node->node, &data->ref_list);
6784 data->cur_refs = &ref_node->refs;
6785 spin_unlock_irqrestore(&data->lock, flags);
6786 percpu_ref_get(&ctx->file_data->refs);
6787 } else
6788 destroy_fixed_file_ref_node(ref_node);
Jens Axboec3a31e62019-10-03 13:59:56 -06006789
6790 return done ? done : err;
6791}
Xiaoguang Wang05589552020-03-31 14:05:18 +08006792
Jens Axboe05f3fb32019-12-09 11:22:50 -07006793static int io_sqe_files_update(struct io_ring_ctx *ctx, void __user *arg,
6794 unsigned nr_args)
6795{
6796 struct io_uring_files_update up;
6797
6798 if (!ctx->file_data)
6799 return -ENXIO;
6800 if (!nr_args)
6801 return -EINVAL;
6802 if (copy_from_user(&up, arg, sizeof(up)))
6803 return -EFAULT;
6804 if (up.resv)
6805 return -EINVAL;
6806
6807 return __io_sqe_files_update(ctx, &up, nr_args);
6808}
Jens Axboec3a31e62019-10-03 13:59:56 -06006809
Pavel Begunkove9fd9392020-03-04 16:14:12 +03006810static void io_free_work(struct io_wq_work *work)
Jens Axboe7d723062019-11-12 22:31:31 -07006811{
6812 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
6813
Pavel Begunkove9fd9392020-03-04 16:14:12 +03006814 /* Consider that io_steal_work() relies on this ref */
Jens Axboe7d723062019-11-12 22:31:31 -07006815 io_put_req(req);
6816}
6817
Pavel Begunkov24369c22020-01-28 03:15:48 +03006818static int io_init_wq_offload(struct io_ring_ctx *ctx,
6819 struct io_uring_params *p)
6820{
6821 struct io_wq_data data;
6822 struct fd f;
6823 struct io_ring_ctx *ctx_attach;
6824 unsigned int concurrency;
6825 int ret = 0;
6826
6827 data.user = ctx->user;
Pavel Begunkove9fd9392020-03-04 16:14:12 +03006828 data.free_work = io_free_work;
Pavel Begunkov24369c22020-01-28 03:15:48 +03006829
6830 if (!(p->flags & IORING_SETUP_ATTACH_WQ)) {
6831 /* Do QD, or 4 * CPUS, whatever is smallest */
6832 concurrency = min(ctx->sq_entries, 4 * num_online_cpus());
6833
6834 ctx->io_wq = io_wq_create(concurrency, &data);
6835 if (IS_ERR(ctx->io_wq)) {
6836 ret = PTR_ERR(ctx->io_wq);
6837 ctx->io_wq = NULL;
6838 }
6839 return ret;
6840 }
6841
6842 f = fdget(p->wq_fd);
6843 if (!f.file)
6844 return -EBADF;
6845
6846 if (f.file->f_op != &io_uring_fops) {
6847 ret = -EINVAL;
6848 goto out_fput;
6849 }
6850
6851 ctx_attach = f.file->private_data;
6852 /* @io_wq is protected by holding the fd */
6853 if (!io_wq_get(ctx_attach->io_wq, &data)) {
6854 ret = -EINVAL;
6855 goto out_fput;
6856 }
6857
6858 ctx->io_wq = ctx_attach->io_wq;
6859out_fput:
6860 fdput(f);
6861 return ret;
6862}
6863
Jens Axboe6c271ce2019-01-10 11:22:30 -07006864static int io_sq_offload_start(struct io_ring_ctx *ctx,
6865 struct io_uring_params *p)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006866{
6867 int ret;
6868
Jens Axboe6c271ce2019-01-10 11:22:30 -07006869 init_waitqueue_head(&ctx->sqo_wait);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006870 mmgrab(current->mm);
6871 ctx->sqo_mm = current->mm;
6872
Jens Axboe6c271ce2019-01-10 11:22:30 -07006873 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboe3ec482d2019-04-08 10:51:01 -06006874 ret = -EPERM;
6875 if (!capable(CAP_SYS_ADMIN))
6876 goto err;
6877
Jens Axboe917257d2019-04-13 09:28:55 -06006878 ctx->sq_thread_idle = msecs_to_jiffies(p->sq_thread_idle);
6879 if (!ctx->sq_thread_idle)
6880 ctx->sq_thread_idle = HZ;
6881
Jens Axboe6c271ce2019-01-10 11:22:30 -07006882 if (p->flags & IORING_SETUP_SQ_AFF) {
Jens Axboe44a9bd12019-05-14 20:00:30 -06006883 int cpu = p->sq_thread_cpu;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006884
Jens Axboe917257d2019-04-13 09:28:55 -06006885 ret = -EINVAL;
Jens Axboe44a9bd12019-05-14 20:00:30 -06006886 if (cpu >= nr_cpu_ids)
6887 goto err;
Shenghui Wang7889f442019-05-07 16:03:19 +08006888 if (!cpu_online(cpu))
Jens Axboe917257d2019-04-13 09:28:55 -06006889 goto err;
6890
Jens Axboe6c271ce2019-01-10 11:22:30 -07006891 ctx->sqo_thread = kthread_create_on_cpu(io_sq_thread,
6892 ctx, cpu,
6893 "io_uring-sq");
6894 } else {
6895 ctx->sqo_thread = kthread_create(io_sq_thread, ctx,
6896 "io_uring-sq");
6897 }
6898 if (IS_ERR(ctx->sqo_thread)) {
6899 ret = PTR_ERR(ctx->sqo_thread);
6900 ctx->sqo_thread = NULL;
6901 goto err;
6902 }
6903 wake_up_process(ctx->sqo_thread);
6904 } else if (p->flags & IORING_SETUP_SQ_AFF) {
6905 /* Can't have SQ_AFF without SQPOLL */
6906 ret = -EINVAL;
6907 goto err;
6908 }
6909
Pavel Begunkov24369c22020-01-28 03:15:48 +03006910 ret = io_init_wq_offload(ctx, p);
6911 if (ret)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006912 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006913
6914 return 0;
6915err:
Jens Axboe54a91f32019-09-10 09:15:04 -06006916 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006917 mmdrop(ctx->sqo_mm);
6918 ctx->sqo_mm = NULL;
6919 return ret;
6920}
6921
6922static void io_unaccount_mem(struct user_struct *user, unsigned long nr_pages)
6923{
6924 atomic_long_sub(nr_pages, &user->locked_vm);
6925}
6926
6927static int io_account_mem(struct user_struct *user, unsigned long nr_pages)
6928{
6929 unsigned long page_limit, cur_pages, new_pages;
6930
6931 /* Don't allow more pages than we can safely lock */
6932 page_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
6933
6934 do {
6935 cur_pages = atomic_long_read(&user->locked_vm);
6936 new_pages = cur_pages + nr_pages;
6937 if (new_pages > page_limit)
6938 return -ENOMEM;
6939 } while (atomic_long_cmpxchg(&user->locked_vm, cur_pages,
6940 new_pages) != cur_pages);
6941
6942 return 0;
6943}
6944
6945static void io_mem_free(void *ptr)
6946{
Mark Rutland52e04ef2019-04-30 17:30:21 +01006947 struct page *page;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006948
Mark Rutland52e04ef2019-04-30 17:30:21 +01006949 if (!ptr)
6950 return;
6951
6952 page = virt_to_head_page(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006953 if (put_page_testzero(page))
6954 free_compound_page(page);
6955}
6956
6957static void *io_mem_alloc(size_t size)
6958{
6959 gfp_t gfp_flags = GFP_KERNEL | __GFP_ZERO | __GFP_NOWARN | __GFP_COMP |
6960 __GFP_NORETRY;
6961
6962 return (void *) __get_free_pages(gfp_flags, get_order(size));
6963}
6964
Hristo Venev75b28af2019-08-26 17:23:46 +00006965static unsigned long rings_size(unsigned sq_entries, unsigned cq_entries,
6966 size_t *sq_offset)
6967{
6968 struct io_rings *rings;
6969 size_t off, sq_array_size;
6970
6971 off = struct_size(rings, cqes, cq_entries);
6972 if (off == SIZE_MAX)
6973 return SIZE_MAX;
6974
6975#ifdef CONFIG_SMP
6976 off = ALIGN(off, SMP_CACHE_BYTES);
6977 if (off == 0)
6978 return SIZE_MAX;
6979#endif
6980
6981 sq_array_size = array_size(sizeof(u32), sq_entries);
6982 if (sq_array_size == SIZE_MAX)
6983 return SIZE_MAX;
6984
6985 if (check_add_overflow(off, sq_array_size, &off))
6986 return SIZE_MAX;
6987
6988 if (sq_offset)
6989 *sq_offset = off;
6990
6991 return off;
6992}
6993
Jens Axboe2b188cc2019-01-07 10:46:33 -07006994static unsigned long ring_pages(unsigned sq_entries, unsigned cq_entries)
6995{
Hristo Venev75b28af2019-08-26 17:23:46 +00006996 size_t pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006997
Hristo Venev75b28af2019-08-26 17:23:46 +00006998 pages = (size_t)1 << get_order(
6999 rings_size(sq_entries, cq_entries, NULL));
7000 pages += (size_t)1 << get_order(
7001 array_size(sizeof(struct io_uring_sqe), sq_entries));
Jens Axboe2b188cc2019-01-07 10:46:33 -07007002
Hristo Venev75b28af2019-08-26 17:23:46 +00007003 return pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007004}
7005
Jens Axboeedafcce2019-01-09 09:16:05 -07007006static int io_sqe_buffer_unregister(struct io_ring_ctx *ctx)
7007{
7008 int i, j;
7009
7010 if (!ctx->user_bufs)
7011 return -ENXIO;
7012
7013 for (i = 0; i < ctx->nr_user_bufs; i++) {
7014 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
7015
7016 for (j = 0; j < imu->nr_bvecs; j++)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08007017 unpin_user_page(imu->bvec[j].bv_page);
Jens Axboeedafcce2019-01-09 09:16:05 -07007018
7019 if (ctx->account_mem)
7020 io_unaccount_mem(ctx->user, imu->nr_bvecs);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007021 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07007022 imu->nr_bvecs = 0;
7023 }
7024
7025 kfree(ctx->user_bufs);
7026 ctx->user_bufs = NULL;
7027 ctx->nr_user_bufs = 0;
7028 return 0;
7029}
7030
7031static int io_copy_iov(struct io_ring_ctx *ctx, struct iovec *dst,
7032 void __user *arg, unsigned index)
7033{
7034 struct iovec __user *src;
7035
7036#ifdef CONFIG_COMPAT
7037 if (ctx->compat) {
7038 struct compat_iovec __user *ciovs;
7039 struct compat_iovec ciov;
7040
7041 ciovs = (struct compat_iovec __user *) arg;
7042 if (copy_from_user(&ciov, &ciovs[index], sizeof(ciov)))
7043 return -EFAULT;
7044
Jens Axboed55e5f52019-12-11 16:12:15 -07007045 dst->iov_base = u64_to_user_ptr((u64)ciov.iov_base);
Jens Axboeedafcce2019-01-09 09:16:05 -07007046 dst->iov_len = ciov.iov_len;
7047 return 0;
7048 }
7049#endif
7050 src = (struct iovec __user *) arg;
7051 if (copy_from_user(dst, &src[index], sizeof(*dst)))
7052 return -EFAULT;
7053 return 0;
7054}
7055
7056static int io_sqe_buffer_register(struct io_ring_ctx *ctx, void __user *arg,
7057 unsigned nr_args)
7058{
7059 struct vm_area_struct **vmas = NULL;
7060 struct page **pages = NULL;
7061 int i, j, got_pages = 0;
7062 int ret = -EINVAL;
7063
7064 if (ctx->user_bufs)
7065 return -EBUSY;
7066 if (!nr_args || nr_args > UIO_MAXIOV)
7067 return -EINVAL;
7068
7069 ctx->user_bufs = kcalloc(nr_args, sizeof(struct io_mapped_ubuf),
7070 GFP_KERNEL);
7071 if (!ctx->user_bufs)
7072 return -ENOMEM;
7073
7074 for (i = 0; i < nr_args; i++) {
7075 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
7076 unsigned long off, start, end, ubuf;
7077 int pret, nr_pages;
7078 struct iovec iov;
7079 size_t size;
7080
7081 ret = io_copy_iov(ctx, &iov, arg, i);
7082 if (ret)
Pavel Begunkova2786822019-05-26 12:35:47 +03007083 goto err;
Jens Axboeedafcce2019-01-09 09:16:05 -07007084
7085 /*
7086 * Don't impose further limits on the size and buffer
7087 * constraints here, we'll -EINVAL later when IO is
7088 * submitted if they are wrong.
7089 */
7090 ret = -EFAULT;
7091 if (!iov.iov_base || !iov.iov_len)
7092 goto err;
7093
7094 /* arbitrary limit, but we need something */
7095 if (iov.iov_len > SZ_1G)
7096 goto err;
7097
7098 ubuf = (unsigned long) iov.iov_base;
7099 end = (ubuf + iov.iov_len + PAGE_SIZE - 1) >> PAGE_SHIFT;
7100 start = ubuf >> PAGE_SHIFT;
7101 nr_pages = end - start;
7102
7103 if (ctx->account_mem) {
7104 ret = io_account_mem(ctx->user, nr_pages);
7105 if (ret)
7106 goto err;
7107 }
7108
7109 ret = 0;
7110 if (!pages || nr_pages > got_pages) {
7111 kfree(vmas);
7112 kfree(pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007113 pages = kvmalloc_array(nr_pages, sizeof(struct page *),
Jens Axboeedafcce2019-01-09 09:16:05 -07007114 GFP_KERNEL);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007115 vmas = kvmalloc_array(nr_pages,
Jens Axboeedafcce2019-01-09 09:16:05 -07007116 sizeof(struct vm_area_struct *),
7117 GFP_KERNEL);
7118 if (!pages || !vmas) {
7119 ret = -ENOMEM;
7120 if (ctx->account_mem)
7121 io_unaccount_mem(ctx->user, nr_pages);
7122 goto err;
7123 }
7124 got_pages = nr_pages;
7125 }
7126
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007127 imu->bvec = kvmalloc_array(nr_pages, sizeof(struct bio_vec),
Jens Axboeedafcce2019-01-09 09:16:05 -07007128 GFP_KERNEL);
7129 ret = -ENOMEM;
7130 if (!imu->bvec) {
7131 if (ctx->account_mem)
7132 io_unaccount_mem(ctx->user, nr_pages);
7133 goto err;
7134 }
7135
7136 ret = 0;
7137 down_read(&current->mm->mmap_sem);
John Hubbard2113b052020-01-30 22:13:13 -08007138 pret = pin_user_pages(ubuf, nr_pages,
Ira Weiny932f4a62019-05-13 17:17:03 -07007139 FOLL_WRITE | FOLL_LONGTERM,
7140 pages, vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007141 if (pret == nr_pages) {
7142 /* don't support file backed memory */
7143 for (j = 0; j < nr_pages; j++) {
7144 struct vm_area_struct *vma = vmas[j];
7145
7146 if (vma->vm_file &&
7147 !is_file_hugepages(vma->vm_file)) {
7148 ret = -EOPNOTSUPP;
7149 break;
7150 }
7151 }
7152 } else {
7153 ret = pret < 0 ? pret : -EFAULT;
7154 }
7155 up_read(&current->mm->mmap_sem);
7156 if (ret) {
7157 /*
7158 * if we did partial map, or found file backed vmas,
7159 * release any pages we did get
7160 */
John Hubbard27c4d3a2019-08-04 19:32:06 -07007161 if (pret > 0)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08007162 unpin_user_pages(pages, pret);
Jens Axboeedafcce2019-01-09 09:16:05 -07007163 if (ctx->account_mem)
7164 io_unaccount_mem(ctx->user, nr_pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007165 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07007166 goto err;
7167 }
7168
7169 off = ubuf & ~PAGE_MASK;
7170 size = iov.iov_len;
7171 for (j = 0; j < nr_pages; j++) {
7172 size_t vec_len;
7173
7174 vec_len = min_t(size_t, size, PAGE_SIZE - off);
7175 imu->bvec[j].bv_page = pages[j];
7176 imu->bvec[j].bv_len = vec_len;
7177 imu->bvec[j].bv_offset = off;
7178 off = 0;
7179 size -= vec_len;
7180 }
7181 /* store original address for later verification */
7182 imu->ubuf = ubuf;
7183 imu->len = iov.iov_len;
7184 imu->nr_bvecs = nr_pages;
7185
7186 ctx->nr_user_bufs++;
7187 }
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007188 kvfree(pages);
7189 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007190 return 0;
7191err:
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007192 kvfree(pages);
7193 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007194 io_sqe_buffer_unregister(ctx);
7195 return ret;
7196}
7197
Jens Axboe9b402842019-04-11 11:45:41 -06007198static int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg)
7199{
7200 __s32 __user *fds = arg;
7201 int fd;
7202
7203 if (ctx->cq_ev_fd)
7204 return -EBUSY;
7205
7206 if (copy_from_user(&fd, fds, sizeof(*fds)))
7207 return -EFAULT;
7208
7209 ctx->cq_ev_fd = eventfd_ctx_fdget(fd);
7210 if (IS_ERR(ctx->cq_ev_fd)) {
7211 int ret = PTR_ERR(ctx->cq_ev_fd);
7212 ctx->cq_ev_fd = NULL;
7213 return ret;
7214 }
7215
7216 return 0;
7217}
7218
7219static int io_eventfd_unregister(struct io_ring_ctx *ctx)
7220{
7221 if (ctx->cq_ev_fd) {
7222 eventfd_ctx_put(ctx->cq_ev_fd);
7223 ctx->cq_ev_fd = NULL;
7224 return 0;
7225 }
7226
7227 return -ENXIO;
7228}
7229
Jens Axboe5a2e7452020-02-23 16:23:11 -07007230static int __io_destroy_buffers(int id, void *p, void *data)
7231{
7232 struct io_ring_ctx *ctx = data;
7233 struct io_buffer *buf = p;
7234
Jens Axboe067524e2020-03-02 16:32:28 -07007235 __io_remove_buffers(ctx, buf, id, -1U);
Jens Axboe5a2e7452020-02-23 16:23:11 -07007236 return 0;
7237}
7238
7239static void io_destroy_buffers(struct io_ring_ctx *ctx)
7240{
7241 idr_for_each(&ctx->io_buffer_idr, __io_destroy_buffers, ctx);
7242 idr_destroy(&ctx->io_buffer_idr);
7243}
7244
Jens Axboe2b188cc2019-01-07 10:46:33 -07007245static void io_ring_ctx_free(struct io_ring_ctx *ctx)
7246{
Jens Axboe6b063142019-01-10 22:13:58 -07007247 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007248 if (ctx->sqo_mm)
7249 mmdrop(ctx->sqo_mm);
Jens Axboedef596e2019-01-09 08:59:42 -07007250
7251 io_iopoll_reap_events(ctx);
Jens Axboeedafcce2019-01-09 09:16:05 -07007252 io_sqe_buffer_unregister(ctx);
Jens Axboe6b063142019-01-10 22:13:58 -07007253 io_sqe_files_unregister(ctx);
Jens Axboe9b402842019-04-11 11:45:41 -06007254 io_eventfd_unregister(ctx);
Jens Axboe5a2e7452020-02-23 16:23:11 -07007255 io_destroy_buffers(ctx);
Jens Axboe41726c92020-02-23 13:11:42 -07007256 idr_destroy(&ctx->personality_idr);
Jens Axboedef596e2019-01-09 08:59:42 -07007257
Jens Axboe2b188cc2019-01-07 10:46:33 -07007258#if defined(CONFIG_UNIX)
Eric Biggers355e8d22019-06-12 14:58:43 -07007259 if (ctx->ring_sock) {
7260 ctx->ring_sock->file = NULL; /* so that iput() is called */
Jens Axboe2b188cc2019-01-07 10:46:33 -07007261 sock_release(ctx->ring_sock);
Eric Biggers355e8d22019-06-12 14:58:43 -07007262 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007263#endif
7264
Hristo Venev75b28af2019-08-26 17:23:46 +00007265 io_mem_free(ctx->rings);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007266 io_mem_free(ctx->sq_sqes);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007267
7268 percpu_ref_exit(&ctx->refs);
7269 if (ctx->account_mem)
7270 io_unaccount_mem(ctx->user,
7271 ring_pages(ctx->sq_entries, ctx->cq_entries));
7272 free_uid(ctx->user);
Jens Axboe181e4482019-11-25 08:52:30 -07007273 put_cred(ctx->creds);
Jens Axboe206aefd2019-11-07 18:27:42 -07007274 kfree(ctx->completions);
Jens Axboe78076bb2019-12-04 19:56:40 -07007275 kfree(ctx->cancel_hash);
Jens Axboe0ddf92e2019-11-08 08:52:53 -07007276 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007277 kfree(ctx);
7278}
7279
7280static __poll_t io_uring_poll(struct file *file, poll_table *wait)
7281{
7282 struct io_ring_ctx *ctx = file->private_data;
7283 __poll_t mask = 0;
7284
7285 poll_wait(file, &ctx->cq_wait, wait);
Stefan Bühler4f7067c2019-04-24 23:54:17 +02007286 /*
7287 * synchronizes with barrier from wq_has_sleeper call in
7288 * io_commit_cqring
7289 */
Jens Axboe2b188cc2019-01-07 10:46:33 -07007290 smp_rmb();
Hristo Venev75b28af2019-08-26 17:23:46 +00007291 if (READ_ONCE(ctx->rings->sq.tail) - ctx->cached_sq_head !=
7292 ctx->rings->sq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007293 mask |= EPOLLOUT | EPOLLWRNORM;
Stefano Garzarella63e5d812020-02-07 13:18:28 +01007294 if (io_cqring_events(ctx, false))
Jens Axboe2b188cc2019-01-07 10:46:33 -07007295 mask |= EPOLLIN | EPOLLRDNORM;
7296
7297 return mask;
7298}
7299
7300static int io_uring_fasync(int fd, struct file *file, int on)
7301{
7302 struct io_ring_ctx *ctx = file->private_data;
7303
7304 return fasync_helper(fd, file, on, &ctx->cq_fasync);
7305}
7306
Jens Axboe071698e2020-01-28 10:04:42 -07007307static int io_remove_personalities(int id, void *p, void *data)
7308{
7309 struct io_ring_ctx *ctx = data;
7310 const struct cred *cred;
7311
7312 cred = idr_remove(&ctx->personality_idr, id);
7313 if (cred)
7314 put_cred(cred);
7315 return 0;
7316}
7317
Jens Axboe85faa7b2020-04-09 18:14:00 -06007318static void io_ring_exit_work(struct work_struct *work)
7319{
7320 struct io_ring_ctx *ctx;
7321
7322 ctx = container_of(work, struct io_ring_ctx, exit_work);
7323 if (ctx->rings)
7324 io_cqring_overflow_flush(ctx, true);
7325
7326 wait_for_completion(&ctx->completions[0]);
7327 io_ring_ctx_free(ctx);
7328}
7329
Jens Axboe2b188cc2019-01-07 10:46:33 -07007330static void io_ring_ctx_wait_and_kill(struct io_ring_ctx *ctx)
7331{
7332 mutex_lock(&ctx->uring_lock);
7333 percpu_ref_kill(&ctx->refs);
7334 mutex_unlock(&ctx->uring_lock);
7335
Jens Axboedf069d82020-02-04 16:48:34 -07007336 /*
7337 * Wait for sq thread to idle, if we have one. It won't spin on new
7338 * work after we've killed the ctx ref above. This is important to do
7339 * before we cancel existing commands, as the thread could otherwise
7340 * be queueing new work post that. If that's work we need to cancel,
7341 * it could cause shutdown to hang.
7342 */
7343 while (ctx->sqo_thread && !wq_has_sleeper(&ctx->sqo_wait))
7344 cpu_relax();
7345
Jens Axboe5262f562019-09-17 12:26:57 -06007346 io_kill_timeouts(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07007347 io_poll_remove_all(ctx);
Jens Axboe561fb042019-10-24 07:25:42 -06007348
7349 if (ctx->io_wq)
7350 io_wq_cancel_all(ctx->io_wq);
7351
Jens Axboedef596e2019-01-09 08:59:42 -07007352 io_iopoll_reap_events(ctx);
Jens Axboe15dff282019-11-13 09:09:23 -07007353 /* if we failed setting up the ctx, we might not have any rings */
7354 if (ctx->rings)
7355 io_cqring_overflow_flush(ctx, true);
Jens Axboe071698e2020-01-28 10:04:42 -07007356 idr_for_each(&ctx->personality_idr, io_remove_personalities, ctx);
Jens Axboe85faa7b2020-04-09 18:14:00 -06007357 INIT_WORK(&ctx->exit_work, io_ring_exit_work);
7358 queue_work(system_wq, &ctx->exit_work);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007359}
7360
7361static int io_uring_release(struct inode *inode, struct file *file)
7362{
7363 struct io_ring_ctx *ctx = file->private_data;
7364
7365 file->private_data = NULL;
7366 io_ring_ctx_wait_and_kill(ctx);
7367 return 0;
7368}
7369
Jens Axboefcb323c2019-10-24 12:39:47 -06007370static void io_uring_cancel_files(struct io_ring_ctx *ctx,
7371 struct files_struct *files)
7372{
7373 struct io_kiocb *req;
7374 DEFINE_WAIT(wait);
7375
7376 while (!list_empty_careful(&ctx->inflight_list)) {
Jens Axboe768134d2019-11-10 20:30:53 -07007377 struct io_kiocb *cancel_req = NULL;
Jens Axboefcb323c2019-10-24 12:39:47 -06007378
7379 spin_lock_irq(&ctx->inflight_lock);
7380 list_for_each_entry(req, &ctx->inflight_list, inflight_entry) {
Jens Axboe768134d2019-11-10 20:30:53 -07007381 if (req->work.files != files)
7382 continue;
7383 /* req is being completed, ignore */
7384 if (!refcount_inc_not_zero(&req->refs))
7385 continue;
7386 cancel_req = req;
7387 break;
Jens Axboefcb323c2019-10-24 12:39:47 -06007388 }
Jens Axboe768134d2019-11-10 20:30:53 -07007389 if (cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06007390 prepare_to_wait(&ctx->inflight_wait, &wait,
Jens Axboe768134d2019-11-10 20:30:53 -07007391 TASK_UNINTERRUPTIBLE);
Jens Axboefcb323c2019-10-24 12:39:47 -06007392 spin_unlock_irq(&ctx->inflight_lock);
7393
Jens Axboe768134d2019-11-10 20:30:53 -07007394 /* We need to keep going until we don't find a matching req */
7395 if (!cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06007396 break;
Bob Liu2f6d9b92019-11-13 18:06:24 +08007397
Jens Axboe2ca10252020-02-13 17:17:35 -07007398 if (cancel_req->flags & REQ_F_OVERFLOW) {
7399 spin_lock_irq(&ctx->completion_lock);
7400 list_del(&cancel_req->list);
7401 cancel_req->flags &= ~REQ_F_OVERFLOW;
7402 if (list_empty(&ctx->cq_overflow_list)) {
7403 clear_bit(0, &ctx->sq_check_overflow);
7404 clear_bit(0, &ctx->cq_check_overflow);
7405 }
7406 spin_unlock_irq(&ctx->completion_lock);
7407
7408 WRITE_ONCE(ctx->rings->cq_overflow,
7409 atomic_inc_return(&ctx->cached_cq_overflow));
7410
7411 /*
7412 * Put inflight ref and overflow ref. If that's
7413 * all we had, then we're done with this request.
7414 */
7415 if (refcount_sub_and_test(2, &cancel_req->refs)) {
7416 io_put_req(cancel_req);
7417 continue;
7418 }
7419 }
7420
Bob Liu2f6d9b92019-11-13 18:06:24 +08007421 io_wq_cancel_work(ctx->io_wq, &cancel_req->work);
7422 io_put_req(cancel_req);
Jens Axboefcb323c2019-10-24 12:39:47 -06007423 schedule();
7424 }
Jens Axboe768134d2019-11-10 20:30:53 -07007425 finish_wait(&ctx->inflight_wait, &wait);
Jens Axboefcb323c2019-10-24 12:39:47 -06007426}
7427
7428static int io_uring_flush(struct file *file, void *data)
7429{
7430 struct io_ring_ctx *ctx = file->private_data;
7431
7432 io_uring_cancel_files(ctx, data);
Jens Axboe6ab23142020-02-08 20:23:59 -07007433
7434 /*
7435 * If the task is going away, cancel work it may have pending
7436 */
7437 if (fatal_signal_pending(current) || (current->flags & PF_EXITING))
7438 io_wq_cancel_pid(ctx->io_wq, task_pid_vnr(current));
7439
Jens Axboefcb323c2019-10-24 12:39:47 -06007440 return 0;
7441}
7442
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007443static void *io_uring_validate_mmap_request(struct file *file,
7444 loff_t pgoff, size_t sz)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007445{
Jens Axboe2b188cc2019-01-07 10:46:33 -07007446 struct io_ring_ctx *ctx = file->private_data;
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007447 loff_t offset = pgoff << PAGE_SHIFT;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007448 struct page *page;
7449 void *ptr;
7450
7451 switch (offset) {
7452 case IORING_OFF_SQ_RING:
Hristo Venev75b28af2019-08-26 17:23:46 +00007453 case IORING_OFF_CQ_RING:
7454 ptr = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007455 break;
7456 case IORING_OFF_SQES:
7457 ptr = ctx->sq_sqes;
7458 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007459 default:
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007460 return ERR_PTR(-EINVAL);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007461 }
7462
7463 page = virt_to_head_page(ptr);
Matthew Wilcox (Oracle)a50b8542019-09-23 15:34:25 -07007464 if (sz > page_size(page))
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007465 return ERR_PTR(-EINVAL);
7466
7467 return ptr;
7468}
7469
7470#ifdef CONFIG_MMU
7471
7472static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
7473{
7474 size_t sz = vma->vm_end - vma->vm_start;
7475 unsigned long pfn;
7476 void *ptr;
7477
7478 ptr = io_uring_validate_mmap_request(file, vma->vm_pgoff, sz);
7479 if (IS_ERR(ptr))
7480 return PTR_ERR(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007481
7482 pfn = virt_to_phys(ptr) >> PAGE_SHIFT;
7483 return remap_pfn_range(vma, vma->vm_start, pfn, sz, vma->vm_page_prot);
7484}
7485
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007486#else /* !CONFIG_MMU */
7487
7488static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
7489{
7490 return vma->vm_flags & (VM_SHARED | VM_MAYSHARE) ? 0 : -EINVAL;
7491}
7492
7493static unsigned int io_uring_nommu_mmap_capabilities(struct file *file)
7494{
7495 return NOMMU_MAP_DIRECT | NOMMU_MAP_READ | NOMMU_MAP_WRITE;
7496}
7497
7498static unsigned long io_uring_nommu_get_unmapped_area(struct file *file,
7499 unsigned long addr, unsigned long len,
7500 unsigned long pgoff, unsigned long flags)
7501{
7502 void *ptr;
7503
7504 ptr = io_uring_validate_mmap_request(file, pgoff, len);
7505 if (IS_ERR(ptr))
7506 return PTR_ERR(ptr);
7507
7508 return (unsigned long) ptr;
7509}
7510
7511#endif /* !CONFIG_MMU */
7512
Jens Axboe2b188cc2019-01-07 10:46:33 -07007513SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
7514 u32, min_complete, u32, flags, const sigset_t __user *, sig,
7515 size_t, sigsz)
7516{
7517 struct io_ring_ctx *ctx;
7518 long ret = -EBADF;
7519 int submitted = 0;
7520 struct fd f;
7521
Jens Axboeb41e9852020-02-17 09:52:41 -07007522 if (current->task_works)
7523 task_work_run();
7524
Jens Axboe6c271ce2019-01-10 11:22:30 -07007525 if (flags & ~(IORING_ENTER_GETEVENTS | IORING_ENTER_SQ_WAKEUP))
Jens Axboe2b188cc2019-01-07 10:46:33 -07007526 return -EINVAL;
7527
7528 f = fdget(fd);
7529 if (!f.file)
7530 return -EBADF;
7531
7532 ret = -EOPNOTSUPP;
7533 if (f.file->f_op != &io_uring_fops)
7534 goto out_fput;
7535
7536 ret = -ENXIO;
7537 ctx = f.file->private_data;
7538 if (!percpu_ref_tryget(&ctx->refs))
7539 goto out_fput;
7540
Jens Axboe6c271ce2019-01-10 11:22:30 -07007541 /*
7542 * For SQ polling, the thread will do all submissions and completions.
7543 * Just return the requested submit count, and wake the thread if
7544 * we were asked to.
7545 */
Jens Axboeb2a9ead2019-09-12 14:19:16 -06007546 ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007547 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboec1edbf52019-11-10 16:56:04 -07007548 if (!list_empty_careful(&ctx->cq_overflow_list))
7549 io_cqring_overflow_flush(ctx, false);
Jens Axboe6c271ce2019-01-10 11:22:30 -07007550 if (flags & IORING_ENTER_SQ_WAKEUP)
7551 wake_up(&ctx->sqo_wait);
7552 submitted = to_submit;
Jens Axboeb2a9ead2019-09-12 14:19:16 -06007553 } else if (to_submit) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07007554 mutex_lock(&ctx->uring_lock);
Pavel Begunkovbf9c2f12020-04-12 02:05:02 +03007555 submitted = io_submit_sqes(ctx, to_submit, f.file, fd, false);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007556 mutex_unlock(&ctx->uring_lock);
Pavel Begunkov7c504e652019-12-18 19:53:45 +03007557
7558 if (submitted != to_submit)
7559 goto out;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007560 }
7561 if (flags & IORING_ENTER_GETEVENTS) {
Jens Axboedef596e2019-01-09 08:59:42 -07007562 unsigned nr_events = 0;
7563
Jens Axboe2b188cc2019-01-07 10:46:33 -07007564 min_complete = min(min_complete, ctx->cq_entries);
7565
Xiaoguang Wang32b22442020-03-11 09:26:09 +08007566 /*
7567 * When SETUP_IOPOLL and SETUP_SQPOLL are both enabled, user
7568 * space applications don't need to do io completion events
7569 * polling again, they can rely on io_sq_thread to do polling
7570 * work, which can reduce cpu usage and uring_lock contention.
7571 */
7572 if (ctx->flags & IORING_SETUP_IOPOLL &&
7573 !(ctx->flags & IORING_SETUP_SQPOLL)) {
Jens Axboedef596e2019-01-09 08:59:42 -07007574 ret = io_iopoll_check(ctx, &nr_events, min_complete);
Jens Axboedef596e2019-01-09 08:59:42 -07007575 } else {
7576 ret = io_cqring_wait(ctx, min_complete, sig, sigsz);
7577 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007578 }
7579
Pavel Begunkov7c504e652019-12-18 19:53:45 +03007580out:
Pavel Begunkov6805b322019-10-08 02:18:42 +03007581 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007582out_fput:
7583 fdput(f);
7584 return submitted ? submitted : ret;
7585}
7586
Tobias Klauserbebdb652020-02-26 18:38:32 +01007587#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -07007588static int io_uring_show_cred(int id, void *p, void *data)
7589{
7590 const struct cred *cred = p;
7591 struct seq_file *m = data;
7592 struct user_namespace *uns = seq_user_ns(m);
7593 struct group_info *gi;
7594 kernel_cap_t cap;
7595 unsigned __capi;
7596 int g;
7597
7598 seq_printf(m, "%5d\n", id);
7599 seq_put_decimal_ull(m, "\tUid:\t", from_kuid_munged(uns, cred->uid));
7600 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->euid));
7601 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->suid));
7602 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->fsuid));
7603 seq_put_decimal_ull(m, "\n\tGid:\t", from_kgid_munged(uns, cred->gid));
7604 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->egid));
7605 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->sgid));
7606 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->fsgid));
7607 seq_puts(m, "\n\tGroups:\t");
7608 gi = cred->group_info;
7609 for (g = 0; g < gi->ngroups; g++) {
7610 seq_put_decimal_ull(m, g ? " " : "",
7611 from_kgid_munged(uns, gi->gid[g]));
7612 }
7613 seq_puts(m, "\n\tCapEff:\t");
7614 cap = cred->cap_effective;
7615 CAP_FOR_EACH_U32(__capi)
7616 seq_put_hex_ll(m, NULL, cap.cap[CAP_LAST_U32 - __capi], 8);
7617 seq_putc(m, '\n');
7618 return 0;
7619}
7620
7621static void __io_uring_show_fdinfo(struct io_ring_ctx *ctx, struct seq_file *m)
7622{
7623 int i;
7624
7625 mutex_lock(&ctx->uring_lock);
7626 seq_printf(m, "UserFiles:\t%u\n", ctx->nr_user_files);
7627 for (i = 0; i < ctx->nr_user_files; i++) {
7628 struct fixed_file_table *table;
7629 struct file *f;
7630
7631 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
7632 f = table->files[i & IORING_FILE_TABLE_MASK];
7633 if (f)
7634 seq_printf(m, "%5u: %s\n", i, file_dentry(f)->d_iname);
7635 else
7636 seq_printf(m, "%5u: <none>\n", i);
7637 }
7638 seq_printf(m, "UserBufs:\t%u\n", ctx->nr_user_bufs);
7639 for (i = 0; i < ctx->nr_user_bufs; i++) {
7640 struct io_mapped_ubuf *buf = &ctx->user_bufs[i];
7641
7642 seq_printf(m, "%5u: 0x%llx/%u\n", i, buf->ubuf,
7643 (unsigned int) buf->len);
7644 }
7645 if (!idr_is_empty(&ctx->personality_idr)) {
7646 seq_printf(m, "Personalities:\n");
7647 idr_for_each(&ctx->personality_idr, io_uring_show_cred, m);
7648 }
Jens Axboed7718a92020-02-14 22:23:12 -07007649 seq_printf(m, "PollList:\n");
7650 spin_lock_irq(&ctx->completion_lock);
7651 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
7652 struct hlist_head *list = &ctx->cancel_hash[i];
7653 struct io_kiocb *req;
7654
7655 hlist_for_each_entry(req, list, hash_node)
7656 seq_printf(m, " op=%d, task_works=%d\n", req->opcode,
7657 req->task->task_works != NULL);
7658 }
7659 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe87ce9552020-01-30 08:25:34 -07007660 mutex_unlock(&ctx->uring_lock);
7661}
7662
7663static void io_uring_show_fdinfo(struct seq_file *m, struct file *f)
7664{
7665 struct io_ring_ctx *ctx = f->private_data;
7666
7667 if (percpu_ref_tryget(&ctx->refs)) {
7668 __io_uring_show_fdinfo(ctx, m);
7669 percpu_ref_put(&ctx->refs);
7670 }
7671}
Tobias Klauserbebdb652020-02-26 18:38:32 +01007672#endif
Jens Axboe87ce9552020-01-30 08:25:34 -07007673
Jens Axboe2b188cc2019-01-07 10:46:33 -07007674static const struct file_operations io_uring_fops = {
7675 .release = io_uring_release,
Jens Axboefcb323c2019-10-24 12:39:47 -06007676 .flush = io_uring_flush,
Jens Axboe2b188cc2019-01-07 10:46:33 -07007677 .mmap = io_uring_mmap,
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007678#ifndef CONFIG_MMU
7679 .get_unmapped_area = io_uring_nommu_get_unmapped_area,
7680 .mmap_capabilities = io_uring_nommu_mmap_capabilities,
7681#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07007682 .poll = io_uring_poll,
7683 .fasync = io_uring_fasync,
Tobias Klauserbebdb652020-02-26 18:38:32 +01007684#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -07007685 .show_fdinfo = io_uring_show_fdinfo,
Tobias Klauserbebdb652020-02-26 18:38:32 +01007686#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07007687};
7688
7689static int io_allocate_scq_urings(struct io_ring_ctx *ctx,
7690 struct io_uring_params *p)
7691{
Hristo Venev75b28af2019-08-26 17:23:46 +00007692 struct io_rings *rings;
7693 size_t size, sq_array_offset;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007694
Hristo Venev75b28af2019-08-26 17:23:46 +00007695 size = rings_size(p->sq_entries, p->cq_entries, &sq_array_offset);
7696 if (size == SIZE_MAX)
7697 return -EOVERFLOW;
7698
7699 rings = io_mem_alloc(size);
7700 if (!rings)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007701 return -ENOMEM;
7702
Hristo Venev75b28af2019-08-26 17:23:46 +00007703 ctx->rings = rings;
7704 ctx->sq_array = (u32 *)((char *)rings + sq_array_offset);
7705 rings->sq_ring_mask = p->sq_entries - 1;
7706 rings->cq_ring_mask = p->cq_entries - 1;
7707 rings->sq_ring_entries = p->sq_entries;
7708 rings->cq_ring_entries = p->cq_entries;
7709 ctx->sq_mask = rings->sq_ring_mask;
7710 ctx->cq_mask = rings->cq_ring_mask;
7711 ctx->sq_entries = rings->sq_ring_entries;
7712 ctx->cq_entries = rings->cq_ring_entries;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007713
7714 size = array_size(sizeof(struct io_uring_sqe), p->sq_entries);
Jens Axboeeb065d32019-11-20 09:26:29 -07007715 if (size == SIZE_MAX) {
7716 io_mem_free(ctx->rings);
7717 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007718 return -EOVERFLOW;
Jens Axboeeb065d32019-11-20 09:26:29 -07007719 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007720
7721 ctx->sq_sqes = io_mem_alloc(size);
Jens Axboeeb065d32019-11-20 09:26:29 -07007722 if (!ctx->sq_sqes) {
7723 io_mem_free(ctx->rings);
7724 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007725 return -ENOMEM;
Jens Axboeeb065d32019-11-20 09:26:29 -07007726 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007727
Jens Axboe2b188cc2019-01-07 10:46:33 -07007728 return 0;
7729}
7730
7731/*
7732 * Allocate an anonymous fd, this is what constitutes the application
7733 * visible backing of an io_uring instance. The application mmaps this
7734 * fd to gain access to the SQ/CQ ring details. If UNIX sockets are enabled,
7735 * we have to tie this fd to a socket for file garbage collection purposes.
7736 */
7737static int io_uring_get_fd(struct io_ring_ctx *ctx)
7738{
7739 struct file *file;
7740 int ret;
7741
7742#if defined(CONFIG_UNIX)
7743 ret = sock_create_kern(&init_net, PF_UNIX, SOCK_RAW, IPPROTO_IP,
7744 &ctx->ring_sock);
7745 if (ret)
7746 return ret;
7747#endif
7748
7749 ret = get_unused_fd_flags(O_RDWR | O_CLOEXEC);
7750 if (ret < 0)
7751 goto err;
7752
7753 file = anon_inode_getfile("[io_uring]", &io_uring_fops, ctx,
7754 O_RDWR | O_CLOEXEC);
7755 if (IS_ERR(file)) {
7756 put_unused_fd(ret);
7757 ret = PTR_ERR(file);
7758 goto err;
7759 }
7760
7761#if defined(CONFIG_UNIX)
7762 ctx->ring_sock->file = file;
7763#endif
7764 fd_install(ret, file);
7765 return ret;
7766err:
7767#if defined(CONFIG_UNIX)
7768 sock_release(ctx->ring_sock);
7769 ctx->ring_sock = NULL;
7770#endif
7771 return ret;
7772}
7773
7774static int io_uring_create(unsigned entries, struct io_uring_params *p)
7775{
7776 struct user_struct *user = NULL;
7777 struct io_ring_ctx *ctx;
7778 bool account_mem;
7779 int ret;
7780
Jens Axboe8110c1a2019-12-28 15:39:54 -07007781 if (!entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007782 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07007783 if (entries > IORING_MAX_ENTRIES) {
7784 if (!(p->flags & IORING_SETUP_CLAMP))
7785 return -EINVAL;
7786 entries = IORING_MAX_ENTRIES;
7787 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007788
7789 /*
7790 * Use twice as many entries for the CQ ring. It's possible for the
7791 * application to drive a higher depth than the size of the SQ ring,
7792 * since the sqes are only used at submission time. This allows for
Jens Axboe33a107f2019-10-04 12:10:03 -06007793 * some flexibility in overcommitting a bit. If the application has
7794 * set IORING_SETUP_CQSIZE, it will have passed in the desired number
7795 * of CQ ring entries manually.
Jens Axboe2b188cc2019-01-07 10:46:33 -07007796 */
7797 p->sq_entries = roundup_pow_of_two(entries);
Jens Axboe33a107f2019-10-04 12:10:03 -06007798 if (p->flags & IORING_SETUP_CQSIZE) {
7799 /*
7800 * If IORING_SETUP_CQSIZE is set, we do the same roundup
7801 * to a power-of-two, if it isn't already. We do NOT impose
7802 * any cq vs sq ring sizing.
7803 */
Jens Axboe8110c1a2019-12-28 15:39:54 -07007804 if (p->cq_entries < p->sq_entries)
Jens Axboe33a107f2019-10-04 12:10:03 -06007805 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07007806 if (p->cq_entries > IORING_MAX_CQ_ENTRIES) {
7807 if (!(p->flags & IORING_SETUP_CLAMP))
7808 return -EINVAL;
7809 p->cq_entries = IORING_MAX_CQ_ENTRIES;
7810 }
Jens Axboe33a107f2019-10-04 12:10:03 -06007811 p->cq_entries = roundup_pow_of_two(p->cq_entries);
7812 } else {
7813 p->cq_entries = 2 * p->sq_entries;
7814 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007815
7816 user = get_uid(current_user());
7817 account_mem = !capable(CAP_IPC_LOCK);
7818
7819 if (account_mem) {
7820 ret = io_account_mem(user,
7821 ring_pages(p->sq_entries, p->cq_entries));
7822 if (ret) {
7823 free_uid(user);
7824 return ret;
7825 }
7826 }
7827
7828 ctx = io_ring_ctx_alloc(p);
7829 if (!ctx) {
7830 if (account_mem)
7831 io_unaccount_mem(user, ring_pages(p->sq_entries,
7832 p->cq_entries));
7833 free_uid(user);
7834 return -ENOMEM;
7835 }
7836 ctx->compat = in_compat_syscall();
7837 ctx->account_mem = account_mem;
7838 ctx->user = user;
Jens Axboe0b8c0ec2019-12-02 08:50:00 -07007839 ctx->creds = get_current_cred();
Jens Axboe2b188cc2019-01-07 10:46:33 -07007840
7841 ret = io_allocate_scq_urings(ctx, p);
7842 if (ret)
7843 goto err;
7844
Jens Axboe6c271ce2019-01-10 11:22:30 -07007845 ret = io_sq_offload_start(ctx, p);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007846 if (ret)
7847 goto err;
7848
Jens Axboe2b188cc2019-01-07 10:46:33 -07007849 memset(&p->sq_off, 0, sizeof(p->sq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00007850 p->sq_off.head = offsetof(struct io_rings, sq.head);
7851 p->sq_off.tail = offsetof(struct io_rings, sq.tail);
7852 p->sq_off.ring_mask = offsetof(struct io_rings, sq_ring_mask);
7853 p->sq_off.ring_entries = offsetof(struct io_rings, sq_ring_entries);
7854 p->sq_off.flags = offsetof(struct io_rings, sq_flags);
7855 p->sq_off.dropped = offsetof(struct io_rings, sq_dropped);
7856 p->sq_off.array = (char *)ctx->sq_array - (char *)ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007857
7858 memset(&p->cq_off, 0, sizeof(p->cq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00007859 p->cq_off.head = offsetof(struct io_rings, cq.head);
7860 p->cq_off.tail = offsetof(struct io_rings, cq.tail);
7861 p->cq_off.ring_mask = offsetof(struct io_rings, cq_ring_mask);
7862 p->cq_off.ring_entries = offsetof(struct io_rings, cq_ring_entries);
7863 p->cq_off.overflow = offsetof(struct io_rings, cq_overflow);
7864 p->cq_off.cqes = offsetof(struct io_rings, cqes);
Jens Axboeac90f242019-09-06 10:26:21 -06007865
Jens Axboe044c1ab2019-10-28 09:15:33 -06007866 /*
7867 * Install ring fd as the very last thing, so we don't risk someone
7868 * having closed it before we finish setup
7869 */
7870 ret = io_uring_get_fd(ctx);
7871 if (ret < 0)
7872 goto err;
7873
Jens Axboeda8c9692019-12-02 18:51:26 -07007874 p->features = IORING_FEAT_SINGLE_MMAP | IORING_FEAT_NODROP |
Jens Axboecccf0ee2020-01-27 16:34:48 -07007875 IORING_FEAT_SUBMIT_STABLE | IORING_FEAT_RW_CUR_POS |
Jens Axboed7718a92020-02-14 22:23:12 -07007876 IORING_FEAT_CUR_PERSONALITY | IORING_FEAT_FAST_POLL;
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02007877 trace_io_uring_create(ret, ctx, p->sq_entries, p->cq_entries, p->flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007878 return ret;
7879err:
7880 io_ring_ctx_wait_and_kill(ctx);
7881 return ret;
7882}
7883
7884/*
7885 * Sets up an aio uring context, and returns the fd. Applications asks for a
7886 * ring size, we return the actual sq/cq ring sizes (among other things) in the
7887 * params structure passed in.
7888 */
7889static long io_uring_setup(u32 entries, struct io_uring_params __user *params)
7890{
7891 struct io_uring_params p;
7892 long ret;
7893 int i;
7894
7895 if (copy_from_user(&p, params, sizeof(p)))
7896 return -EFAULT;
7897 for (i = 0; i < ARRAY_SIZE(p.resv); i++) {
7898 if (p.resv[i])
7899 return -EINVAL;
7900 }
7901
Jens Axboe6c271ce2019-01-10 11:22:30 -07007902 if (p.flags & ~(IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL |
Jens Axboe8110c1a2019-12-28 15:39:54 -07007903 IORING_SETUP_SQ_AFF | IORING_SETUP_CQSIZE |
Pavel Begunkov24369c22020-01-28 03:15:48 +03007904 IORING_SETUP_CLAMP | IORING_SETUP_ATTACH_WQ))
Jens Axboe2b188cc2019-01-07 10:46:33 -07007905 return -EINVAL;
7906
7907 ret = io_uring_create(entries, &p);
7908 if (ret < 0)
7909 return ret;
7910
7911 if (copy_to_user(params, &p, sizeof(p)))
7912 return -EFAULT;
7913
7914 return ret;
7915}
7916
7917SYSCALL_DEFINE2(io_uring_setup, u32, entries,
7918 struct io_uring_params __user *, params)
7919{
7920 return io_uring_setup(entries, params);
7921}
7922
Jens Axboe66f4af92020-01-16 15:36:52 -07007923static int io_probe(struct io_ring_ctx *ctx, void __user *arg, unsigned nr_args)
7924{
7925 struct io_uring_probe *p;
7926 size_t size;
7927 int i, ret;
7928
7929 size = struct_size(p, ops, nr_args);
7930 if (size == SIZE_MAX)
7931 return -EOVERFLOW;
7932 p = kzalloc(size, GFP_KERNEL);
7933 if (!p)
7934 return -ENOMEM;
7935
7936 ret = -EFAULT;
7937 if (copy_from_user(p, arg, size))
7938 goto out;
7939 ret = -EINVAL;
7940 if (memchr_inv(p, 0, size))
7941 goto out;
7942
7943 p->last_op = IORING_OP_LAST - 1;
7944 if (nr_args > IORING_OP_LAST)
7945 nr_args = IORING_OP_LAST;
7946
7947 for (i = 0; i < nr_args; i++) {
7948 p->ops[i].op = i;
7949 if (!io_op_defs[i].not_supported)
7950 p->ops[i].flags = IO_URING_OP_SUPPORTED;
7951 }
7952 p->ops_len = i;
7953
7954 ret = 0;
7955 if (copy_to_user(arg, p, size))
7956 ret = -EFAULT;
7957out:
7958 kfree(p);
7959 return ret;
7960}
7961
Jens Axboe071698e2020-01-28 10:04:42 -07007962static int io_register_personality(struct io_ring_ctx *ctx)
7963{
7964 const struct cred *creds = get_current_cred();
7965 int id;
7966
7967 id = idr_alloc_cyclic(&ctx->personality_idr, (void *) creds, 1,
7968 USHRT_MAX, GFP_KERNEL);
7969 if (id < 0)
7970 put_cred(creds);
7971 return id;
7972}
7973
7974static int io_unregister_personality(struct io_ring_ctx *ctx, unsigned id)
7975{
7976 const struct cred *old_creds;
7977
7978 old_creds = idr_remove(&ctx->personality_idr, id);
7979 if (old_creds) {
7980 put_cred(old_creds);
7981 return 0;
7982 }
7983
7984 return -EINVAL;
7985}
7986
7987static bool io_register_op_must_quiesce(int op)
7988{
7989 switch (op) {
7990 case IORING_UNREGISTER_FILES:
7991 case IORING_REGISTER_FILES_UPDATE:
7992 case IORING_REGISTER_PROBE:
7993 case IORING_REGISTER_PERSONALITY:
7994 case IORING_UNREGISTER_PERSONALITY:
7995 return false;
7996 default:
7997 return true;
7998 }
7999}
8000
Jens Axboeedafcce2019-01-09 09:16:05 -07008001static int __io_uring_register(struct io_ring_ctx *ctx, unsigned opcode,
8002 void __user *arg, unsigned nr_args)
Jens Axboeb19062a2019-04-15 10:49:38 -06008003 __releases(ctx->uring_lock)
8004 __acquires(ctx->uring_lock)
Jens Axboeedafcce2019-01-09 09:16:05 -07008005{
8006 int ret;
8007
Jens Axboe35fa71a2019-04-22 10:23:23 -06008008 /*
8009 * We're inside the ring mutex, if the ref is already dying, then
8010 * someone else killed the ctx or is already going through
8011 * io_uring_register().
8012 */
8013 if (percpu_ref_is_dying(&ctx->refs))
8014 return -ENXIO;
8015
Jens Axboe071698e2020-01-28 10:04:42 -07008016 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07008017 percpu_ref_kill(&ctx->refs);
Jens Axboeb19062a2019-04-15 10:49:38 -06008018
Jens Axboe05f3fb32019-12-09 11:22:50 -07008019 /*
8020 * Drop uring mutex before waiting for references to exit. If
8021 * another thread is currently inside io_uring_enter() it might
8022 * need to grab the uring_lock to make progress. If we hold it
8023 * here across the drain wait, then we can deadlock. It's safe
8024 * to drop the mutex here, since no new references will come in
8025 * after we've killed the percpu ref.
8026 */
8027 mutex_unlock(&ctx->uring_lock);
Jens Axboec1503682020-01-08 08:26:07 -07008028 ret = wait_for_completion_interruptible(&ctx->completions[0]);
Jens Axboe05f3fb32019-12-09 11:22:50 -07008029 mutex_lock(&ctx->uring_lock);
Jens Axboec1503682020-01-08 08:26:07 -07008030 if (ret) {
8031 percpu_ref_resurrect(&ctx->refs);
8032 ret = -EINTR;
8033 goto out;
8034 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07008035 }
Jens Axboeedafcce2019-01-09 09:16:05 -07008036
8037 switch (opcode) {
8038 case IORING_REGISTER_BUFFERS:
8039 ret = io_sqe_buffer_register(ctx, arg, nr_args);
8040 break;
8041 case IORING_UNREGISTER_BUFFERS:
8042 ret = -EINVAL;
8043 if (arg || nr_args)
8044 break;
8045 ret = io_sqe_buffer_unregister(ctx);
8046 break;
Jens Axboe6b063142019-01-10 22:13:58 -07008047 case IORING_REGISTER_FILES:
8048 ret = io_sqe_files_register(ctx, arg, nr_args);
8049 break;
8050 case IORING_UNREGISTER_FILES:
8051 ret = -EINVAL;
8052 if (arg || nr_args)
8053 break;
8054 ret = io_sqe_files_unregister(ctx);
8055 break;
Jens Axboec3a31e62019-10-03 13:59:56 -06008056 case IORING_REGISTER_FILES_UPDATE:
8057 ret = io_sqe_files_update(ctx, arg, nr_args);
8058 break;
Jens Axboe9b402842019-04-11 11:45:41 -06008059 case IORING_REGISTER_EVENTFD:
Jens Axboef2842ab2020-01-08 11:04:00 -07008060 case IORING_REGISTER_EVENTFD_ASYNC:
Jens Axboe9b402842019-04-11 11:45:41 -06008061 ret = -EINVAL;
8062 if (nr_args != 1)
8063 break;
8064 ret = io_eventfd_register(ctx, arg);
Jens Axboef2842ab2020-01-08 11:04:00 -07008065 if (ret)
8066 break;
8067 if (opcode == IORING_REGISTER_EVENTFD_ASYNC)
8068 ctx->eventfd_async = 1;
8069 else
8070 ctx->eventfd_async = 0;
Jens Axboe9b402842019-04-11 11:45:41 -06008071 break;
8072 case IORING_UNREGISTER_EVENTFD:
8073 ret = -EINVAL;
8074 if (arg || nr_args)
8075 break;
8076 ret = io_eventfd_unregister(ctx);
8077 break;
Jens Axboe66f4af92020-01-16 15:36:52 -07008078 case IORING_REGISTER_PROBE:
8079 ret = -EINVAL;
8080 if (!arg || nr_args > 256)
8081 break;
8082 ret = io_probe(ctx, arg, nr_args);
8083 break;
Jens Axboe071698e2020-01-28 10:04:42 -07008084 case IORING_REGISTER_PERSONALITY:
8085 ret = -EINVAL;
8086 if (arg || nr_args)
8087 break;
8088 ret = io_register_personality(ctx);
8089 break;
8090 case IORING_UNREGISTER_PERSONALITY:
8091 ret = -EINVAL;
8092 if (arg)
8093 break;
8094 ret = io_unregister_personality(ctx, nr_args);
8095 break;
Jens Axboeedafcce2019-01-09 09:16:05 -07008096 default:
8097 ret = -EINVAL;
8098 break;
8099 }
8100
Jens Axboe071698e2020-01-28 10:04:42 -07008101 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07008102 /* bring the ctx back to life */
Jens Axboe05f3fb32019-12-09 11:22:50 -07008103 percpu_ref_reinit(&ctx->refs);
Jens Axboec1503682020-01-08 08:26:07 -07008104out:
8105 reinit_completion(&ctx->completions[0]);
Jens Axboe05f3fb32019-12-09 11:22:50 -07008106 }
Jens Axboeedafcce2019-01-09 09:16:05 -07008107 return ret;
8108}
8109
8110SYSCALL_DEFINE4(io_uring_register, unsigned int, fd, unsigned int, opcode,
8111 void __user *, arg, unsigned int, nr_args)
8112{
8113 struct io_ring_ctx *ctx;
8114 long ret = -EBADF;
8115 struct fd f;
8116
8117 f = fdget(fd);
8118 if (!f.file)
8119 return -EBADF;
8120
8121 ret = -EOPNOTSUPP;
8122 if (f.file->f_op != &io_uring_fops)
8123 goto out_fput;
8124
8125 ctx = f.file->private_data;
8126
8127 mutex_lock(&ctx->uring_lock);
8128 ret = __io_uring_register(ctx, opcode, arg, nr_args);
8129 mutex_unlock(&ctx->uring_lock);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02008130 trace_io_uring_register(ctx, opcode, ctx->nr_user_files, ctx->nr_user_bufs,
8131 ctx->cq_ev_fd != NULL, ret);
Jens Axboeedafcce2019-01-09 09:16:05 -07008132out_fput:
8133 fdput(f);
8134 return ret;
8135}
8136
Jens Axboe2b188cc2019-01-07 10:46:33 -07008137static int __init io_uring_init(void)
8138{
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008139#define __BUILD_BUG_VERIFY_ELEMENT(stype, eoffset, etype, ename) do { \
8140 BUILD_BUG_ON(offsetof(stype, ename) != eoffset); \
8141 BUILD_BUG_ON(sizeof(etype) != sizeof_field(stype, ename)); \
8142} while (0)
8143
8144#define BUILD_BUG_SQE_ELEM(eoffset, etype, ename) \
8145 __BUILD_BUG_VERIFY_ELEMENT(struct io_uring_sqe, eoffset, etype, ename)
8146 BUILD_BUG_ON(sizeof(struct io_uring_sqe) != 64);
8147 BUILD_BUG_SQE_ELEM(0, __u8, opcode);
8148 BUILD_BUG_SQE_ELEM(1, __u8, flags);
8149 BUILD_BUG_SQE_ELEM(2, __u16, ioprio);
8150 BUILD_BUG_SQE_ELEM(4, __s32, fd);
8151 BUILD_BUG_SQE_ELEM(8, __u64, off);
8152 BUILD_BUG_SQE_ELEM(8, __u64, addr2);
8153 BUILD_BUG_SQE_ELEM(16, __u64, addr);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03008154 BUILD_BUG_SQE_ELEM(16, __u64, splice_off_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008155 BUILD_BUG_SQE_ELEM(24, __u32, len);
8156 BUILD_BUG_SQE_ELEM(28, __kernel_rwf_t, rw_flags);
8157 BUILD_BUG_SQE_ELEM(28, /* compat */ int, rw_flags);
8158 BUILD_BUG_SQE_ELEM(28, /* compat */ __u32, rw_flags);
8159 BUILD_BUG_SQE_ELEM(28, __u32, fsync_flags);
8160 BUILD_BUG_SQE_ELEM(28, __u16, poll_events);
8161 BUILD_BUG_SQE_ELEM(28, __u32, sync_range_flags);
8162 BUILD_BUG_SQE_ELEM(28, __u32, msg_flags);
8163 BUILD_BUG_SQE_ELEM(28, __u32, timeout_flags);
8164 BUILD_BUG_SQE_ELEM(28, __u32, accept_flags);
8165 BUILD_BUG_SQE_ELEM(28, __u32, cancel_flags);
8166 BUILD_BUG_SQE_ELEM(28, __u32, open_flags);
8167 BUILD_BUG_SQE_ELEM(28, __u32, statx_flags);
8168 BUILD_BUG_SQE_ELEM(28, __u32, fadvise_advice);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03008169 BUILD_BUG_SQE_ELEM(28, __u32, splice_flags);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008170 BUILD_BUG_SQE_ELEM(32, __u64, user_data);
8171 BUILD_BUG_SQE_ELEM(40, __u16, buf_index);
8172 BUILD_BUG_SQE_ELEM(42, __u16, personality);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03008173 BUILD_BUG_SQE_ELEM(44, __s32, splice_fd_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008174
Jens Axboed3656342019-12-18 09:50:26 -07008175 BUILD_BUG_ON(ARRAY_SIZE(io_op_defs) != IORING_OP_LAST);
Jens Axboe84557872020-03-03 15:28:17 -07008176 BUILD_BUG_ON(__REQ_F_LAST_BIT >= 8 * sizeof(int));
Jens Axboe2b188cc2019-01-07 10:46:33 -07008177 req_cachep = KMEM_CACHE(io_kiocb, SLAB_HWCACHE_ALIGN | SLAB_PANIC);
8178 return 0;
8179};
8180__initcall(io_uring_init);