blob: 99dbd43442f2aa88a4a96effa57296b2ee62d610 [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;
Jens Axboe4a38aed22020-05-14 17:21:15 -0600194 struct llist_node llist;
Xiaoguang Wang05589552020-03-31 14:05:18 +0800195};
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 Axboe0f158b42020-05-14 17:18:39 -0600282 struct completion ref_comp;
283 struct completion sq_thread_comp;
Jens Axboe206aefd2019-11-07 18:27:42 -0700284
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
Jens Axboe4a38aed22020-05-14 17:21:15 -0600330 struct delayed_work file_put_work;
331 struct llist_head file_put_llist;
332
Jens Axboe85faa7b2020-04-09 18:14:00 -0600333 struct work_struct exit_work;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700334};
335
Jens Axboe09bb8392019-03-13 12:39:28 -0600336/*
337 * First field must be the file pointer in all the
338 * iocb unions! See also 'struct kiocb' in <linux/fs.h>
339 */
Jens Axboe221c5eb2019-01-17 09:41:58 -0700340struct io_poll_iocb {
341 struct file *file;
Jens Axboe0969e782019-12-17 18:40:57 -0700342 union {
343 struct wait_queue_head *head;
344 u64 addr;
345 };
Jens Axboe221c5eb2019-01-17 09:41:58 -0700346 __poll_t events;
Jens Axboe8c838782019-03-12 15:48:16 -0600347 bool done;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700348 bool canceled;
Jens Axboe392edb42019-12-09 17:52:20 -0700349 struct wait_queue_entry wait;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700350};
351
Jens Axboeb5dba592019-12-11 14:02:38 -0700352struct io_close {
353 struct file *file;
354 struct file *put_file;
355 int fd;
356};
357
Jens Axboead8a48a2019-11-15 08:49:11 -0700358struct io_timeout_data {
359 struct io_kiocb *req;
360 struct hrtimer timer;
361 struct timespec64 ts;
362 enum hrtimer_mode mode;
363};
364
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700365struct io_accept {
366 struct file *file;
367 struct sockaddr __user *addr;
368 int __user *addr_len;
369 int flags;
Jens Axboe09952e32020-03-19 20:16:56 -0600370 unsigned long nofile;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700371};
372
373struct io_sync {
374 struct file *file;
375 loff_t len;
376 loff_t off;
377 int flags;
Jens Axboed63d1b52019-12-10 10:38:56 -0700378 int mode;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700379};
380
Jens Axboefbf23842019-12-17 18:45:56 -0700381struct io_cancel {
382 struct file *file;
383 u64 addr;
384};
385
Jens Axboeb29472e2019-12-17 18:50:29 -0700386struct io_timeout {
387 struct file *file;
388 u64 addr;
389 int flags;
Pavel Begunkovb55ce732020-04-15 00:39:49 +0300390 u32 count;
Jens Axboeb29472e2019-12-17 18:50:29 -0700391};
392
Jens Axboe9adbd452019-12-20 08:45:55 -0700393struct io_rw {
394 /* NOTE: kiocb has the file as the first member, so don't do it here */
395 struct kiocb kiocb;
396 u64 addr;
397 u64 len;
398};
399
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700400struct io_connect {
401 struct file *file;
402 struct sockaddr __user *addr;
403 int addr_len;
404};
405
Jens Axboee47293f2019-12-20 08:58:21 -0700406struct io_sr_msg {
407 struct file *file;
Jens Axboefddafac2020-01-04 20:19:44 -0700408 union {
409 struct user_msghdr __user *msg;
410 void __user *buf;
411 };
Jens Axboee47293f2019-12-20 08:58:21 -0700412 int msg_flags;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700413 int bgid;
Jens Axboefddafac2020-01-04 20:19:44 -0700414 size_t len;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700415 struct io_buffer *kbuf;
Jens Axboee47293f2019-12-20 08:58:21 -0700416};
417
Jens Axboe15b71ab2019-12-11 11:20:36 -0700418struct io_open {
419 struct file *file;
420 int dfd;
Jens Axboeeddc7ef2019-12-13 21:18:10 -0700421 union {
Jens Axboeeddc7ef2019-12-13 21:18:10 -0700422 unsigned mask;
423 };
Jens Axboe15b71ab2019-12-11 11:20:36 -0700424 struct filename *filename;
Jens Axboeeddc7ef2019-12-13 21:18:10 -0700425 struct statx __user *buffer;
Jens Axboec12cedf2020-01-08 17:41:21 -0700426 struct open_how how;
Jens Axboe4022e7a2020-03-19 19:23:18 -0600427 unsigned long nofile;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700428};
429
Jens Axboe05f3fb32019-12-09 11:22:50 -0700430struct io_files_update {
431 struct file *file;
432 u64 arg;
433 u32 nr_args;
434 u32 offset;
435};
436
Jens Axboe4840e412019-12-25 22:03:45 -0700437struct io_fadvise {
438 struct file *file;
439 u64 offset;
440 u32 len;
441 u32 advice;
442};
443
Jens Axboec1ca7572019-12-25 22:18:28 -0700444struct io_madvise {
445 struct file *file;
446 u64 addr;
447 u32 len;
448 u32 advice;
449};
450
Jens Axboe3e4827b2020-01-08 15:18:09 -0700451struct io_epoll {
452 struct file *file;
453 int epfd;
454 int op;
455 int fd;
456 struct epoll_event event;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700457};
458
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300459struct io_splice {
460 struct file *file_out;
461 struct file *file_in;
462 loff_t off_out;
463 loff_t off_in;
464 u64 len;
465 unsigned int flags;
466};
467
Jens Axboeddf0322d2020-02-23 16:41:33 -0700468struct io_provide_buf {
469 struct file *file;
470 __u64 addr;
471 __s32 len;
472 __u32 bgid;
473 __u16 nbufs;
474 __u16 bid;
475};
476
Jens Axboef499a022019-12-02 16:28:46 -0700477struct io_async_connect {
478 struct sockaddr_storage address;
479};
480
Jens Axboe03b12302019-12-02 18:50:25 -0700481struct io_async_msghdr {
482 struct iovec fast_iov[UIO_FASTIOV];
483 struct iovec *iov;
484 struct sockaddr __user *uaddr;
485 struct msghdr msg;
Jens Axboeb5379162020-02-09 11:29:15 -0700486 struct sockaddr_storage addr;
Jens Axboe03b12302019-12-02 18:50:25 -0700487};
488
Jens Axboef67676d2019-12-02 11:03:47 -0700489struct io_async_rw {
490 struct iovec fast_iov[UIO_FASTIOV];
491 struct iovec *iov;
492 ssize_t nr_segs;
493 ssize_t size;
494};
495
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700496struct io_async_ctx {
Jens Axboef67676d2019-12-02 11:03:47 -0700497 union {
498 struct io_async_rw rw;
Jens Axboe03b12302019-12-02 18:50:25 -0700499 struct io_async_msghdr msg;
Jens Axboef499a022019-12-02 16:28:46 -0700500 struct io_async_connect connect;
Jens Axboe2d283902019-12-04 11:08:05 -0700501 struct io_timeout_data timeout;
Jens Axboef67676d2019-12-02 11:03:47 -0700502 };
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700503};
504
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300505enum {
506 REQ_F_FIXED_FILE_BIT = IOSQE_FIXED_FILE_BIT,
507 REQ_F_IO_DRAIN_BIT = IOSQE_IO_DRAIN_BIT,
508 REQ_F_LINK_BIT = IOSQE_IO_LINK_BIT,
509 REQ_F_HARDLINK_BIT = IOSQE_IO_HARDLINK_BIT,
510 REQ_F_FORCE_ASYNC_BIT = IOSQE_ASYNC_BIT,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700511 REQ_F_BUFFER_SELECT_BIT = IOSQE_BUFFER_SELECT_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300512
Pavel Begunkovdea3b492020-04-12 02:05:04 +0300513 REQ_F_LINK_HEAD_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300514 REQ_F_LINK_NEXT_BIT,
515 REQ_F_FAIL_LINK_BIT,
516 REQ_F_INFLIGHT_BIT,
517 REQ_F_CUR_POS_BIT,
518 REQ_F_NOWAIT_BIT,
519 REQ_F_IOPOLL_COMPLETED_BIT,
520 REQ_F_LINK_TIMEOUT_BIT,
521 REQ_F_TIMEOUT_BIT,
522 REQ_F_ISREG_BIT,
523 REQ_F_MUST_PUNT_BIT,
524 REQ_F_TIMEOUT_NOSEQ_BIT,
525 REQ_F_COMP_LOCKED_BIT,
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300526 REQ_F_NEED_CLEANUP_BIT,
Jens Axboe2ca10252020-02-13 17:17:35 -0700527 REQ_F_OVERFLOW_BIT,
Jens Axboed7718a92020-02-14 22:23:12 -0700528 REQ_F_POLLED_BIT,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700529 REQ_F_BUFFER_SELECTED_BIT,
Jens Axboe5b0bbee2020-04-27 10:41:22 -0600530 REQ_F_NO_FILE_TABLE_BIT,
Jens Axboe84557872020-03-03 15:28:17 -0700531
532 /* not a real bit, just to check we're not overflowing the space */
533 __REQ_F_LAST_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300534};
535
536enum {
537 /* ctx owns file */
538 REQ_F_FIXED_FILE = BIT(REQ_F_FIXED_FILE_BIT),
539 /* drain existing IO first */
540 REQ_F_IO_DRAIN = BIT(REQ_F_IO_DRAIN_BIT),
541 /* linked sqes */
542 REQ_F_LINK = BIT(REQ_F_LINK_BIT),
543 /* doesn't sever on completion < 0 */
544 REQ_F_HARDLINK = BIT(REQ_F_HARDLINK_BIT),
545 /* IOSQE_ASYNC */
546 REQ_F_FORCE_ASYNC = BIT(REQ_F_FORCE_ASYNC_BIT),
Jens Axboebcda7ba2020-02-23 16:42:51 -0700547 /* IOSQE_BUFFER_SELECT */
548 REQ_F_BUFFER_SELECT = BIT(REQ_F_BUFFER_SELECT_BIT),
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300549
Pavel Begunkovdea3b492020-04-12 02:05:04 +0300550 /* head of a link */
551 REQ_F_LINK_HEAD = BIT(REQ_F_LINK_HEAD_BIT),
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300552 /* already grabbed next link */
553 REQ_F_LINK_NEXT = BIT(REQ_F_LINK_NEXT_BIT),
554 /* fail rest of links */
555 REQ_F_FAIL_LINK = BIT(REQ_F_FAIL_LINK_BIT),
556 /* on inflight list */
557 REQ_F_INFLIGHT = BIT(REQ_F_INFLIGHT_BIT),
558 /* read/write uses file position */
559 REQ_F_CUR_POS = BIT(REQ_F_CUR_POS_BIT),
560 /* must not punt to workers */
561 REQ_F_NOWAIT = BIT(REQ_F_NOWAIT_BIT),
562 /* polled IO has completed */
563 REQ_F_IOPOLL_COMPLETED = BIT(REQ_F_IOPOLL_COMPLETED_BIT),
564 /* has linked timeout */
565 REQ_F_LINK_TIMEOUT = BIT(REQ_F_LINK_TIMEOUT_BIT),
566 /* timeout request */
567 REQ_F_TIMEOUT = BIT(REQ_F_TIMEOUT_BIT),
568 /* regular file */
569 REQ_F_ISREG = BIT(REQ_F_ISREG_BIT),
570 /* must be punted even for NONBLOCK */
571 REQ_F_MUST_PUNT = BIT(REQ_F_MUST_PUNT_BIT),
572 /* no timeout sequence */
573 REQ_F_TIMEOUT_NOSEQ = BIT(REQ_F_TIMEOUT_NOSEQ_BIT),
574 /* completion under lock */
575 REQ_F_COMP_LOCKED = BIT(REQ_F_COMP_LOCKED_BIT),
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300576 /* needs cleanup */
577 REQ_F_NEED_CLEANUP = BIT(REQ_F_NEED_CLEANUP_BIT),
Jens Axboe2ca10252020-02-13 17:17:35 -0700578 /* in overflow list */
579 REQ_F_OVERFLOW = BIT(REQ_F_OVERFLOW_BIT),
Jens Axboed7718a92020-02-14 22:23:12 -0700580 /* already went through poll handler */
581 REQ_F_POLLED = BIT(REQ_F_POLLED_BIT),
Jens Axboebcda7ba2020-02-23 16:42:51 -0700582 /* buffer already selected */
583 REQ_F_BUFFER_SELECTED = BIT(REQ_F_BUFFER_SELECTED_BIT),
Jens Axboe5b0bbee2020-04-27 10:41:22 -0600584 /* doesn't need file table for this request */
585 REQ_F_NO_FILE_TABLE = BIT(REQ_F_NO_FILE_TABLE_BIT),
Jens Axboed7718a92020-02-14 22:23:12 -0700586};
587
588struct async_poll {
589 struct io_poll_iocb poll;
590 struct io_wq_work work;
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300591};
592
Jens Axboe09bb8392019-03-13 12:39:28 -0600593/*
594 * NOTE! Each of the iocb union members has the file pointer
595 * as the first entry in their struct definition. So you can
596 * access the file pointer through any of the sub-structs,
597 * or directly as just 'ki_filp' in this struct.
598 */
Jens Axboe2b188cc2019-01-07 10:46:33 -0700599struct io_kiocb {
Jens Axboe221c5eb2019-01-17 09:41:58 -0700600 union {
Jens Axboe09bb8392019-03-13 12:39:28 -0600601 struct file *file;
Jens Axboe9adbd452019-12-20 08:45:55 -0700602 struct io_rw rw;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700603 struct io_poll_iocb poll;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700604 struct io_accept accept;
605 struct io_sync sync;
Jens Axboefbf23842019-12-17 18:45:56 -0700606 struct io_cancel cancel;
Jens Axboeb29472e2019-12-17 18:50:29 -0700607 struct io_timeout timeout;
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700608 struct io_connect connect;
Jens Axboee47293f2019-12-20 08:58:21 -0700609 struct io_sr_msg sr_msg;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700610 struct io_open open;
Jens Axboeb5dba592019-12-11 14:02:38 -0700611 struct io_close close;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700612 struct io_files_update files_update;
Jens Axboe4840e412019-12-25 22:03:45 -0700613 struct io_fadvise fadvise;
Jens Axboec1ca7572019-12-25 22:18:28 -0700614 struct io_madvise madvise;
Jens Axboe3e4827b2020-01-08 15:18:09 -0700615 struct io_epoll epoll;
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300616 struct io_splice splice;
Jens Axboeddf0322d2020-02-23 16:41:33 -0700617 struct io_provide_buf pbuf;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700618 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700619
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700620 struct io_async_ctx *io;
Pavel Begunkovc398ecb2020-04-09 08:17:59 +0300621 int cflags;
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +0300622 bool needs_fixed_file;
Jens Axboed625c6e2019-12-17 19:53:05 -0700623 u8 opcode;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700624
625 struct io_ring_ctx *ctx;
Jens Axboed7718a92020-02-14 22:23:12 -0700626 struct list_head list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700627 unsigned int flags;
Jens Axboec16361c2019-01-17 08:39:48 -0700628 refcount_t refs;
Jens Axboe3537b6a2020-04-03 11:19:06 -0600629 struct task_struct *task;
630 unsigned long fsize;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700631 u64 user_data;
Jens Axboe9e645e112019-05-10 16:07:28 -0600632 u32 result;
Jens Axboede0617e2019-04-06 21:51:27 -0600633 u32 sequence;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700634
Jens Axboed7718a92020-02-14 22:23:12 -0700635 struct list_head link_list;
636
Jens Axboefcb323c2019-10-24 12:39:47 -0600637 struct list_head inflight_entry;
638
Xiaoguang Wang05589552020-03-31 14:05:18 +0800639 struct percpu_ref *fixed_file_refs;
640
Jens Axboeb41e9852020-02-17 09:52:41 -0700641 union {
642 /*
643 * Only commands that never go async can use the below fields,
Jens Axboed7718a92020-02-14 22:23:12 -0700644 * obviously. Right now only IORING_OP_POLL_ADD uses them, and
645 * async armed poll handlers for regular commands. The latter
646 * restore the work, if needed.
Jens Axboeb41e9852020-02-17 09:52:41 -0700647 */
648 struct {
Jens Axboeb41e9852020-02-17 09:52:41 -0700649 struct callback_head task_work;
Jens Axboed7718a92020-02-14 22:23:12 -0700650 struct hlist_node hash_node;
651 struct async_poll *apoll;
Jens Axboeb41e9852020-02-17 09:52:41 -0700652 };
653 struct io_wq_work work;
654 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700655};
656
657#define IO_PLUG_THRESHOLD 2
Jens Axboedef596e2019-01-09 08:59:42 -0700658#define IO_IOPOLL_BATCH 8
Jens Axboe2b188cc2019-01-07 10:46:33 -0700659
Jens Axboe9a56a232019-01-09 09:06:50 -0700660struct io_submit_state {
661 struct blk_plug plug;
662
663 /*
Jens Axboe2579f912019-01-09 09:10:43 -0700664 * io_kiocb alloc cache
665 */
666 void *reqs[IO_IOPOLL_BATCH];
Pavel Begunkov6c8a3132020-02-01 03:58:00 +0300667 unsigned int free_reqs;
Jens Axboe2579f912019-01-09 09:10:43 -0700668
669 /*
Jens Axboe9a56a232019-01-09 09:06:50 -0700670 * File reference cache
671 */
672 struct file *file;
673 unsigned int fd;
674 unsigned int has_refs;
675 unsigned int used_refs;
676 unsigned int ios_left;
677};
678
Jens Axboed3656342019-12-18 09:50:26 -0700679struct io_op_def {
680 /* needs req->io allocated for deferral/async */
681 unsigned async_ctx : 1;
682 /* needs current->mm setup, does mm access */
683 unsigned needs_mm : 1;
684 /* needs req->file assigned */
685 unsigned needs_file : 1;
Jens Axboed3656342019-12-18 09:50:26 -0700686 /* hash wq insertion if file is a regular file */
687 unsigned hash_reg_file : 1;
688 /* unbound wq insertion if file is a non-regular file */
689 unsigned unbound_nonreg_file : 1;
Jens Axboe66f4af92020-01-16 15:36:52 -0700690 /* opcode is not supported by this kernel */
691 unsigned not_supported : 1;
Jens Axboef86cd202020-01-29 13:46:44 -0700692 /* needs file table */
693 unsigned file_table : 1;
Jens Axboeff002b32020-02-07 16:05:21 -0700694 /* needs ->fs */
695 unsigned needs_fs : 1;
Jens Axboe8a727582020-02-20 09:59:44 -0700696 /* set if opcode supports polled "wait" */
697 unsigned pollin : 1;
698 unsigned pollout : 1;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700699 /* op supports buffer selection */
700 unsigned buffer_select : 1;
Jens Axboed3656342019-12-18 09:50:26 -0700701};
702
703static const struct io_op_def io_op_defs[] = {
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300704 [IORING_OP_NOP] = {},
705 [IORING_OP_READV] = {
Jens Axboed3656342019-12-18 09:50:26 -0700706 .async_ctx = 1,
707 .needs_mm = 1,
708 .needs_file = 1,
709 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700710 .pollin = 1,
Jens Axboe4d954c22020-02-27 07:31:19 -0700711 .buffer_select = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700712 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300713 [IORING_OP_WRITEV] = {
Jens Axboed3656342019-12-18 09:50:26 -0700714 .async_ctx = 1,
715 .needs_mm = 1,
716 .needs_file = 1,
717 .hash_reg_file = 1,
718 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700719 .pollout = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700720 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300721 [IORING_OP_FSYNC] = {
Jens Axboed3656342019-12-18 09:50:26 -0700722 .needs_file = 1,
723 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300724 [IORING_OP_READ_FIXED] = {
Jens Axboed3656342019-12-18 09:50:26 -0700725 .needs_file = 1,
726 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700727 .pollin = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700728 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300729 [IORING_OP_WRITE_FIXED] = {
Jens Axboed3656342019-12-18 09:50:26 -0700730 .needs_file = 1,
731 .hash_reg_file = 1,
732 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700733 .pollout = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700734 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300735 [IORING_OP_POLL_ADD] = {
Jens Axboed3656342019-12-18 09:50:26 -0700736 .needs_file = 1,
737 .unbound_nonreg_file = 1,
738 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300739 [IORING_OP_POLL_REMOVE] = {},
740 [IORING_OP_SYNC_FILE_RANGE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700741 .needs_file = 1,
742 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300743 [IORING_OP_SENDMSG] = {
Jens Axboed3656342019-12-18 09:50:26 -0700744 .async_ctx = 1,
745 .needs_mm = 1,
746 .needs_file = 1,
747 .unbound_nonreg_file = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700748 .needs_fs = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700749 .pollout = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700750 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300751 [IORING_OP_RECVMSG] = {
Jens Axboed3656342019-12-18 09:50:26 -0700752 .async_ctx = 1,
753 .needs_mm = 1,
754 .needs_file = 1,
755 .unbound_nonreg_file = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700756 .needs_fs = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700757 .pollin = 1,
Jens Axboe52de1fe2020-02-27 10:15:42 -0700758 .buffer_select = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700759 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300760 [IORING_OP_TIMEOUT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700761 .async_ctx = 1,
762 .needs_mm = 1,
763 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300764 [IORING_OP_TIMEOUT_REMOVE] = {},
765 [IORING_OP_ACCEPT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700766 .needs_mm = 1,
767 .needs_file = 1,
768 .unbound_nonreg_file = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700769 .file_table = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700770 .pollin = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700771 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300772 [IORING_OP_ASYNC_CANCEL] = {},
773 [IORING_OP_LINK_TIMEOUT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700774 .async_ctx = 1,
775 .needs_mm = 1,
776 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300777 [IORING_OP_CONNECT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700778 .async_ctx = 1,
779 .needs_mm = 1,
780 .needs_file = 1,
781 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700782 .pollout = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700783 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300784 [IORING_OP_FALLOCATE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700785 .needs_file = 1,
786 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300787 [IORING_OP_OPENAT] = {
Jens Axboef86cd202020-01-29 13:46:44 -0700788 .file_table = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700789 .needs_fs = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700790 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300791 [IORING_OP_CLOSE] = {
Jens Axboef86cd202020-01-29 13:46:44 -0700792 .file_table = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700793 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300794 [IORING_OP_FILES_UPDATE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700795 .needs_mm = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700796 .file_table = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700797 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300798 [IORING_OP_STATX] = {
Jens Axboed3656342019-12-18 09:50:26 -0700799 .needs_mm = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700800 .needs_fs = 1,
Jens Axboe5b0bbee2020-04-27 10:41:22 -0600801 .file_table = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700802 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300803 [IORING_OP_READ] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -0700804 .needs_mm = 1,
805 .needs_file = 1,
806 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700807 .pollin = 1,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700808 .buffer_select = 1,
Jens Axboe3a6820f2019-12-22 15:19:35 -0700809 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300810 [IORING_OP_WRITE] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -0700811 .needs_mm = 1,
812 .needs_file = 1,
813 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700814 .pollout = 1,
Jens Axboe3a6820f2019-12-22 15:19:35 -0700815 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300816 [IORING_OP_FADVISE] = {
Jens Axboe4840e412019-12-25 22:03:45 -0700817 .needs_file = 1,
818 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300819 [IORING_OP_MADVISE] = {
Jens Axboec1ca7572019-12-25 22:18:28 -0700820 .needs_mm = 1,
821 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300822 [IORING_OP_SEND] = {
Jens Axboefddafac2020-01-04 20:19:44 -0700823 .needs_mm = 1,
824 .needs_file = 1,
825 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700826 .pollout = 1,
Jens Axboefddafac2020-01-04 20:19:44 -0700827 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300828 [IORING_OP_RECV] = {
Jens Axboefddafac2020-01-04 20:19:44 -0700829 .needs_mm = 1,
830 .needs_file = 1,
831 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700832 .pollin = 1,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700833 .buffer_select = 1,
Jens Axboefddafac2020-01-04 20:19:44 -0700834 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300835 [IORING_OP_OPENAT2] = {
Jens Axboef86cd202020-01-29 13:46:44 -0700836 .file_table = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700837 .needs_fs = 1,
Jens Axboecebdb982020-01-08 17:59:24 -0700838 },
Jens Axboe3e4827b2020-01-08 15:18:09 -0700839 [IORING_OP_EPOLL_CTL] = {
840 .unbound_nonreg_file = 1,
841 .file_table = 1,
842 },
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300843 [IORING_OP_SPLICE] = {
844 .needs_file = 1,
845 .hash_reg_file = 1,
846 .unbound_nonreg_file = 1,
Jens Axboeddf0322d2020-02-23 16:41:33 -0700847 },
848 [IORING_OP_PROVIDE_BUFFERS] = {},
Jens Axboe067524e2020-03-02 16:32:28 -0700849 [IORING_OP_REMOVE_BUFFERS] = {},
Jens Axboed3656342019-12-18 09:50:26 -0700850};
851
Jens Axboe561fb042019-10-24 07:25:42 -0600852static void io_wq_submit_work(struct io_wq_work **workptr);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700853static void io_cqring_fill_event(struct io_kiocb *req, long res);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800854static void io_put_req(struct io_kiocb *req);
Jens Axboe978db572019-11-14 22:39:04 -0700855static void __io_double_put_req(struct io_kiocb *req);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700856static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req);
857static void io_queue_linked_timeout(struct io_kiocb *req);
Jens Axboe05f3fb32019-12-09 11:22:50 -0700858static int __io_sqe_files_update(struct io_ring_ctx *ctx,
859 struct io_uring_files_update *ip,
860 unsigned nr_args);
Jens Axboef86cd202020-01-29 13:46:44 -0700861static int io_grab_files(struct io_kiocb *req);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300862static void io_cleanup_req(struct io_kiocb *req);
Jens Axboeb41e9852020-02-17 09:52:41 -0700863static int io_file_get(struct io_submit_state *state, struct io_kiocb *req,
864 int fd, struct file **out_file, bool fixed);
865static void __io_queue_sqe(struct io_kiocb *req,
866 const struct io_uring_sqe *sqe);
Jens Axboede0617e2019-04-06 21:51:27 -0600867
Jens Axboe2b188cc2019-01-07 10:46:33 -0700868static struct kmem_cache *req_cachep;
869
870static const struct file_operations io_uring_fops;
871
872struct sock *io_uring_get_socket(struct file *file)
873{
874#if defined(CONFIG_UNIX)
875 if (file->f_op == &io_uring_fops) {
876 struct io_ring_ctx *ctx = file->private_data;
877
878 return ctx->ring_sock->sk;
879 }
880#endif
881 return NULL;
882}
883EXPORT_SYMBOL(io_uring_get_socket);
884
Jens Axboe4a38aed22020-05-14 17:21:15 -0600885static void io_file_put_work(struct work_struct *work);
886
Jens Axboe2b188cc2019-01-07 10:46:33 -0700887static void io_ring_ctx_ref_free(struct percpu_ref *ref)
888{
889 struct io_ring_ctx *ctx = container_of(ref, struct io_ring_ctx, refs);
890
Jens Axboe0f158b42020-05-14 17:18:39 -0600891 complete(&ctx->ref_comp);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700892}
893
894static struct io_ring_ctx *io_ring_ctx_alloc(struct io_uring_params *p)
895{
896 struct io_ring_ctx *ctx;
Jens Axboe78076bb2019-12-04 19:56:40 -0700897 int hash_bits;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700898
899 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
900 if (!ctx)
901 return NULL;
902
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700903 ctx->fallback_req = kmem_cache_alloc(req_cachep, GFP_KERNEL);
904 if (!ctx->fallback_req)
905 goto err;
906
Jens Axboe78076bb2019-12-04 19:56:40 -0700907 /*
908 * Use 5 bits less than the max cq entries, that should give us around
909 * 32 entries per hash list if totally full and uniformly spread.
910 */
911 hash_bits = ilog2(p->cq_entries);
912 hash_bits -= 5;
913 if (hash_bits <= 0)
914 hash_bits = 1;
915 ctx->cancel_hash_bits = hash_bits;
916 ctx->cancel_hash = kmalloc((1U << hash_bits) * sizeof(struct hlist_head),
917 GFP_KERNEL);
918 if (!ctx->cancel_hash)
919 goto err;
920 __hash_init(ctx->cancel_hash, 1U << hash_bits);
921
Roman Gushchin21482892019-05-07 10:01:48 -0700922 if (percpu_ref_init(&ctx->refs, io_ring_ctx_ref_free,
Jens Axboe206aefd2019-11-07 18:27:42 -0700923 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL))
924 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700925
926 ctx->flags = p->flags;
927 init_waitqueue_head(&ctx->cq_wait);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700928 INIT_LIST_HEAD(&ctx->cq_overflow_list);
Jens Axboe0f158b42020-05-14 17:18:39 -0600929 init_completion(&ctx->ref_comp);
930 init_completion(&ctx->sq_thread_comp);
Jens Axboe5a2e7452020-02-23 16:23:11 -0700931 idr_init(&ctx->io_buffer_idr);
Jens Axboe071698e2020-01-28 10:04:42 -0700932 idr_init(&ctx->personality_idr);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700933 mutex_init(&ctx->uring_lock);
934 init_waitqueue_head(&ctx->wait);
935 spin_lock_init(&ctx->completion_lock);
Jens Axboedef596e2019-01-09 08:59:42 -0700936 INIT_LIST_HEAD(&ctx->poll_list);
Jens Axboede0617e2019-04-06 21:51:27 -0600937 INIT_LIST_HEAD(&ctx->defer_list);
Jens Axboe5262f562019-09-17 12:26:57 -0600938 INIT_LIST_HEAD(&ctx->timeout_list);
Jens Axboefcb323c2019-10-24 12:39:47 -0600939 init_waitqueue_head(&ctx->inflight_wait);
940 spin_lock_init(&ctx->inflight_lock);
941 INIT_LIST_HEAD(&ctx->inflight_list);
Jens Axboe4a38aed22020-05-14 17:21:15 -0600942 INIT_DELAYED_WORK(&ctx->file_put_work, io_file_put_work);
943 init_llist_head(&ctx->file_put_llist);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700944 return ctx;
Jens Axboe206aefd2019-11-07 18:27:42 -0700945err:
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700946 if (ctx->fallback_req)
947 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe78076bb2019-12-04 19:56:40 -0700948 kfree(ctx->cancel_hash);
Jens Axboe206aefd2019-11-07 18:27:42 -0700949 kfree(ctx);
950 return NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700951}
952
Bob Liu9d858b22019-11-13 18:06:25 +0800953static inline bool __req_need_defer(struct io_kiocb *req)
Jens Axboede0617e2019-04-06 21:51:27 -0600954{
Jackie Liua197f662019-11-08 08:09:12 -0700955 struct io_ring_ctx *ctx = req->ctx;
956
Pavel Begunkov31af27c2020-04-15 00:39:50 +0300957 return req->sequence != ctx->cached_cq_tail
958 + atomic_read(&ctx->cached_cq_overflow);
Jens Axboede0617e2019-04-06 21:51:27 -0600959}
960
Bob Liu9d858b22019-11-13 18:06:25 +0800961static inline bool req_need_defer(struct io_kiocb *req)
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600962{
Pavel Begunkov87987892020-01-18 01:22:30 +0300963 if (unlikely(req->flags & REQ_F_IO_DRAIN))
Bob Liu9d858b22019-11-13 18:06:25 +0800964 return __req_need_defer(req);
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600965
Bob Liu9d858b22019-11-13 18:06:25 +0800966 return false;
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600967}
968
969static struct io_kiocb *io_get_deferred_req(struct io_ring_ctx *ctx)
Jens Axboede0617e2019-04-06 21:51:27 -0600970{
971 struct io_kiocb *req;
972
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600973 req = list_first_entry_or_null(&ctx->defer_list, struct io_kiocb, list);
Bob Liu9d858b22019-11-13 18:06:25 +0800974 if (req && !req_need_defer(req)) {
Jens Axboede0617e2019-04-06 21:51:27 -0600975 list_del_init(&req->list);
976 return req;
977 }
978
979 return NULL;
980}
981
Jens Axboe5262f562019-09-17 12:26:57 -0600982static struct io_kiocb *io_get_timeout_req(struct io_ring_ctx *ctx)
983{
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600984 struct io_kiocb *req;
985
986 req = list_first_entry_or_null(&ctx->timeout_list, struct io_kiocb, list);
Jens Axboe93bd25b2019-11-11 23:34:31 -0700987 if (req) {
988 if (req->flags & REQ_F_TIMEOUT_NOSEQ)
989 return NULL;
Linus Torvaldsfb4b3d32019-11-25 10:40:27 -0800990 if (!__req_need_defer(req)) {
Jens Axboe93bd25b2019-11-11 23:34:31 -0700991 list_del_init(&req->list);
992 return req;
993 }
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600994 }
995
996 return NULL;
Jens Axboe5262f562019-09-17 12:26:57 -0600997}
998
Jens Axboede0617e2019-04-06 21:51:27 -0600999static void __io_commit_cqring(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001000{
Hristo Venev75b28af2019-08-26 17:23:46 +00001001 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001002
Pavel Begunkov07910152020-01-17 03:52:46 +03001003 /* order cqe stores with ring update */
1004 smp_store_release(&rings->cq.tail, ctx->cached_cq_tail);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001005
Pavel Begunkov07910152020-01-17 03:52:46 +03001006 if (wq_has_sleeper(&ctx->cq_wait)) {
1007 wake_up_interruptible(&ctx->cq_wait);
1008 kill_fasync(&ctx->cq_fasync, SIGIO, POLL_IN);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001009 }
1010}
1011
Jens Axboecccf0ee2020-01-27 16:34:48 -07001012static inline void io_req_work_grab_env(struct io_kiocb *req,
1013 const struct io_op_def *def)
Jens Axboe18d9be12019-09-10 09:13:05 -06001014{
Jens Axboecccf0ee2020-01-27 16:34:48 -07001015 if (!req->work.mm && def->needs_mm) {
1016 mmgrab(current->mm);
1017 req->work.mm = current->mm;
1018 }
1019 if (!req->work.creds)
1020 req->work.creds = get_current_cred();
Jens Axboeff002b32020-02-07 16:05:21 -07001021 if (!req->work.fs && def->needs_fs) {
1022 spin_lock(&current->fs->lock);
1023 if (!current->fs->in_exec) {
1024 req->work.fs = current->fs;
1025 req->work.fs->users++;
1026 } else {
1027 req->work.flags |= IO_WQ_WORK_CANCEL;
1028 }
1029 spin_unlock(&current->fs->lock);
1030 }
Jens Axboe6ab23142020-02-08 20:23:59 -07001031 if (!req->work.task_pid)
1032 req->work.task_pid = task_pid_vnr(current);
Jens Axboecccf0ee2020-01-27 16:34:48 -07001033}
1034
1035static inline void io_req_work_drop_env(struct io_kiocb *req)
1036{
1037 if (req->work.mm) {
1038 mmdrop(req->work.mm);
1039 req->work.mm = NULL;
1040 }
1041 if (req->work.creds) {
1042 put_cred(req->work.creds);
1043 req->work.creds = NULL;
1044 }
Jens Axboeff002b32020-02-07 16:05:21 -07001045 if (req->work.fs) {
1046 struct fs_struct *fs = req->work.fs;
1047
1048 spin_lock(&req->work.fs->lock);
1049 if (--fs->users)
1050 fs = NULL;
1051 spin_unlock(&req->work.fs->lock);
1052 if (fs)
1053 free_fs_struct(fs);
1054 }
Jens Axboe561fb042019-10-24 07:25:42 -06001055}
1056
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001057static inline void io_prep_async_work(struct io_kiocb *req,
Jens Axboe94ae5e72019-11-14 19:39:52 -07001058 struct io_kiocb **link)
Jens Axboe561fb042019-10-24 07:25:42 -06001059{
Jens Axboed3656342019-12-18 09:50:26 -07001060 const struct io_op_def *def = &io_op_defs[req->opcode];
Jens Axboe54a91f32019-09-10 09:15:04 -06001061
Jens Axboed3656342019-12-18 09:50:26 -07001062 if (req->flags & REQ_F_ISREG) {
1063 if (def->hash_reg_file)
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001064 io_wq_hash_work(&req->work, file_inode(req->file));
Jens Axboed3656342019-12-18 09:50:26 -07001065 } else {
1066 if (def->unbound_nonreg_file)
Jens Axboe3529d8c2019-12-19 18:24:38 -07001067 req->work.flags |= IO_WQ_WORK_UNBOUND;
Jens Axboe54a91f32019-09-10 09:15:04 -06001068 }
Jens Axboecccf0ee2020-01-27 16:34:48 -07001069
1070 io_req_work_grab_env(req, def);
Jens Axboe54a91f32019-09-10 09:15:04 -06001071
Jens Axboe94ae5e72019-11-14 19:39:52 -07001072 *link = io_prep_linked_timeout(req);
Jens Axboe561fb042019-10-24 07:25:42 -06001073}
1074
Jackie Liua197f662019-11-08 08:09:12 -07001075static inline void io_queue_async_work(struct io_kiocb *req)
Jens Axboe561fb042019-10-24 07:25:42 -06001076{
Jackie Liua197f662019-11-08 08:09:12 -07001077 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001078 struct io_kiocb *link;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001079
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001080 io_prep_async_work(req, &link);
Jens Axboe561fb042019-10-24 07:25:42 -06001081
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001082 trace_io_uring_queue_async_work(ctx, io_wq_is_hashed(&req->work), req,
1083 &req->work, req->flags);
1084 io_wq_enqueue(ctx->io_wq, &req->work);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001085
1086 if (link)
1087 io_queue_linked_timeout(link);
Jens Axboe18d9be12019-09-10 09:13:05 -06001088}
1089
Jens Axboe5262f562019-09-17 12:26:57 -06001090static void io_kill_timeout(struct io_kiocb *req)
1091{
1092 int ret;
1093
Jens Axboe2d283902019-12-04 11:08:05 -07001094 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe5262f562019-09-17 12:26:57 -06001095 if (ret != -1) {
1096 atomic_inc(&req->ctx->cq_timeouts);
Jens Axboe842f9612019-10-29 12:34:10 -06001097 list_del_init(&req->list);
Pavel Begunkovf0e20b82020-03-07 01:15:22 +03001098 req->flags |= REQ_F_COMP_LOCKED;
Jens Axboe78e19bb2019-11-06 15:21:34 -07001099 io_cqring_fill_event(req, 0);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001100 io_put_req(req);
Jens Axboe5262f562019-09-17 12:26:57 -06001101 }
1102}
1103
1104static void io_kill_timeouts(struct io_ring_ctx *ctx)
1105{
1106 struct io_kiocb *req, *tmp;
1107
1108 spin_lock_irq(&ctx->completion_lock);
1109 list_for_each_entry_safe(req, tmp, &ctx->timeout_list, list)
1110 io_kill_timeout(req);
1111 spin_unlock_irq(&ctx->completion_lock);
1112}
1113
Jens Axboede0617e2019-04-06 21:51:27 -06001114static void io_commit_cqring(struct io_ring_ctx *ctx)
1115{
1116 struct io_kiocb *req;
1117
Jens Axboe5262f562019-09-17 12:26:57 -06001118 while ((req = io_get_timeout_req(ctx)) != NULL)
1119 io_kill_timeout(req);
1120
Jens Axboede0617e2019-04-06 21:51:27 -06001121 __io_commit_cqring(ctx);
1122
Pavel Begunkov87987892020-01-18 01:22:30 +03001123 while ((req = io_get_deferred_req(ctx)) != NULL)
Jackie Liua197f662019-11-08 08:09:12 -07001124 io_queue_async_work(req);
Jens Axboede0617e2019-04-06 21:51:27 -06001125}
1126
Jens Axboe2b188cc2019-01-07 10:46:33 -07001127static struct io_uring_cqe *io_get_cqring(struct io_ring_ctx *ctx)
1128{
Hristo Venev75b28af2019-08-26 17:23:46 +00001129 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001130 unsigned tail;
1131
1132 tail = ctx->cached_cq_tail;
Stefan Bühler115e12e2019-04-24 23:54:18 +02001133 /*
1134 * writes to the cq entry need to come after reading head; the
1135 * control dependency is enough as we're using WRITE_ONCE to
1136 * fill the cq entry
1137 */
Hristo Venev75b28af2019-08-26 17:23:46 +00001138 if (tail - READ_ONCE(rings->cq.head) == rings->cq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001139 return NULL;
1140
1141 ctx->cached_cq_tail++;
Hristo Venev75b28af2019-08-26 17:23:46 +00001142 return &rings->cqes[tail & ctx->cq_mask];
Jens Axboe2b188cc2019-01-07 10:46:33 -07001143}
1144
Jens Axboef2842ab2020-01-08 11:04:00 -07001145static inline bool io_should_trigger_evfd(struct io_ring_ctx *ctx)
1146{
Jens Axboef0b493e2020-02-01 21:30:11 -07001147 if (!ctx->cq_ev_fd)
1148 return false;
Jens Axboef2842ab2020-01-08 11:04:00 -07001149 if (!ctx->eventfd_async)
1150 return true;
Jens Axboeb41e9852020-02-17 09:52:41 -07001151 return io_wq_current_is_worker();
Jens Axboef2842ab2020-01-08 11:04:00 -07001152}
1153
Jens Axboeb41e9852020-02-17 09:52:41 -07001154static void io_cqring_ev_posted(struct io_ring_ctx *ctx)
Jens Axboe8c838782019-03-12 15:48:16 -06001155{
1156 if (waitqueue_active(&ctx->wait))
1157 wake_up(&ctx->wait);
1158 if (waitqueue_active(&ctx->sqo_wait))
1159 wake_up(&ctx->sqo_wait);
Jens Axboeb41e9852020-02-17 09:52:41 -07001160 if (io_should_trigger_evfd(ctx))
Jens Axboe9b402842019-04-11 11:45:41 -06001161 eventfd_signal(ctx->cq_ev_fd, 1);
Jens Axboe8c838782019-03-12 15:48:16 -06001162}
1163
Jens Axboec4a2ed72019-11-21 21:01:26 -07001164/* Returns true if there are no backlogged entries after the flush */
1165static bool io_cqring_overflow_flush(struct io_ring_ctx *ctx, bool force)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001166{
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001167 struct io_rings *rings = ctx->rings;
1168 struct io_uring_cqe *cqe;
1169 struct io_kiocb *req;
1170 unsigned long flags;
1171 LIST_HEAD(list);
1172
1173 if (!force) {
1174 if (list_empty_careful(&ctx->cq_overflow_list))
Jens Axboec4a2ed72019-11-21 21:01:26 -07001175 return true;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001176 if ((ctx->cached_cq_tail - READ_ONCE(rings->cq.head) ==
1177 rings->cq_ring_entries))
Jens Axboec4a2ed72019-11-21 21:01:26 -07001178 return false;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001179 }
1180
1181 spin_lock_irqsave(&ctx->completion_lock, flags);
1182
1183 /* if force is set, the ring is going away. always drop after that */
1184 if (force)
Jens Axboe69b3e542020-01-08 11:01:46 -07001185 ctx->cq_overflow_flushed = 1;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001186
Jens Axboec4a2ed72019-11-21 21:01:26 -07001187 cqe = NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001188 while (!list_empty(&ctx->cq_overflow_list)) {
1189 cqe = io_get_cqring(ctx);
1190 if (!cqe && !force)
1191 break;
1192
1193 req = list_first_entry(&ctx->cq_overflow_list, struct io_kiocb,
1194 list);
1195 list_move(&req->list, &list);
Jens Axboe2ca10252020-02-13 17:17:35 -07001196 req->flags &= ~REQ_F_OVERFLOW;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001197 if (cqe) {
1198 WRITE_ONCE(cqe->user_data, req->user_data);
1199 WRITE_ONCE(cqe->res, req->result);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001200 WRITE_ONCE(cqe->flags, req->cflags);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001201 } else {
1202 WRITE_ONCE(ctx->rings->cq_overflow,
1203 atomic_inc_return(&ctx->cached_cq_overflow));
1204 }
1205 }
1206
1207 io_commit_cqring(ctx);
Jens Axboead3eb2c2019-12-18 17:12:20 -07001208 if (cqe) {
1209 clear_bit(0, &ctx->sq_check_overflow);
1210 clear_bit(0, &ctx->cq_check_overflow);
1211 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001212 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1213 io_cqring_ev_posted(ctx);
1214
1215 while (!list_empty(&list)) {
1216 req = list_first_entry(&list, struct io_kiocb, list);
1217 list_del(&req->list);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001218 io_put_req(req);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001219 }
Jens Axboec4a2ed72019-11-21 21:01:26 -07001220
1221 return cqe != NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001222}
1223
Jens Axboebcda7ba2020-02-23 16:42:51 -07001224static void __io_cqring_fill_event(struct io_kiocb *req, long res, long cflags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001225{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001226 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001227 struct io_uring_cqe *cqe;
1228
Jens Axboe78e19bb2019-11-06 15:21:34 -07001229 trace_io_uring_complete(ctx, req->user_data, res);
Jens Axboe51c3ff62019-11-03 06:52:50 -07001230
Jens Axboe2b188cc2019-01-07 10:46:33 -07001231 /*
1232 * If we can't get a cq entry, userspace overflowed the
1233 * submission (by quite a lot). Increment the overflow count in
1234 * the ring.
1235 */
1236 cqe = io_get_cqring(ctx);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001237 if (likely(cqe)) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001238 WRITE_ONCE(cqe->user_data, req->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001239 WRITE_ONCE(cqe->res, res);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001240 WRITE_ONCE(cqe->flags, cflags);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001241 } else if (ctx->cq_overflow_flushed) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07001242 WRITE_ONCE(ctx->rings->cq_overflow,
1243 atomic_inc_return(&ctx->cached_cq_overflow));
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001244 } else {
Jens Axboead3eb2c2019-12-18 17:12:20 -07001245 if (list_empty(&ctx->cq_overflow_list)) {
1246 set_bit(0, &ctx->sq_check_overflow);
1247 set_bit(0, &ctx->cq_check_overflow);
1248 }
Jens Axboe2ca10252020-02-13 17:17:35 -07001249 req->flags |= REQ_F_OVERFLOW;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001250 refcount_inc(&req->refs);
1251 req->result = res;
Jens Axboebcda7ba2020-02-23 16:42:51 -07001252 req->cflags = cflags;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001253 list_add_tail(&req->list, &ctx->cq_overflow_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001254 }
1255}
1256
Jens Axboebcda7ba2020-02-23 16:42:51 -07001257static void io_cqring_fill_event(struct io_kiocb *req, long res)
1258{
1259 __io_cqring_fill_event(req, res, 0);
1260}
1261
1262static void __io_cqring_add_event(struct io_kiocb *req, long res, long cflags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001263{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001264 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001265 unsigned long flags;
1266
1267 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001268 __io_cqring_fill_event(req, res, cflags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001269 io_commit_cqring(ctx);
1270 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1271
Jens Axboe8c838782019-03-12 15:48:16 -06001272 io_cqring_ev_posted(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001273}
1274
Jens Axboebcda7ba2020-02-23 16:42:51 -07001275static void io_cqring_add_event(struct io_kiocb *req, long res)
1276{
1277 __io_cqring_add_event(req, res, 0);
1278}
1279
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001280static inline bool io_is_fallback_req(struct io_kiocb *req)
1281{
1282 return req == (struct io_kiocb *)
1283 ((unsigned long) req->ctx->fallback_req & ~1UL);
1284}
1285
1286static struct io_kiocb *io_get_fallback_req(struct io_ring_ctx *ctx)
1287{
1288 struct io_kiocb *req;
1289
1290 req = ctx->fallback_req;
Bijan Mottahedehdd461af2020-04-29 17:47:50 -07001291 if (!test_and_set_bit_lock(0, (unsigned long *) &ctx->fallback_req))
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001292 return req;
1293
1294 return NULL;
1295}
1296
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03001297static struct io_kiocb *io_alloc_req(struct io_ring_ctx *ctx,
1298 struct io_submit_state *state)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001299{
Jens Axboefd6fab22019-03-14 16:30:06 -06001300 gfp_t gfp = GFP_KERNEL | __GFP_NOWARN;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001301 struct io_kiocb *req;
1302
Jens Axboe2579f912019-01-09 09:10:43 -07001303 if (!state) {
Jens Axboefd6fab22019-03-14 16:30:06 -06001304 req = kmem_cache_alloc(req_cachep, gfp);
Jens Axboe2579f912019-01-09 09:10:43 -07001305 if (unlikely(!req))
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001306 goto fallback;
Jens Axboe2579f912019-01-09 09:10:43 -07001307 } else if (!state->free_reqs) {
1308 size_t sz;
1309 int ret;
1310
1311 sz = min_t(size_t, state->ios_left, ARRAY_SIZE(state->reqs));
Jens Axboefd6fab22019-03-14 16:30:06 -06001312 ret = kmem_cache_alloc_bulk(req_cachep, gfp, sz, state->reqs);
1313
1314 /*
1315 * Bulk alloc is all-or-nothing. If we fail to get a batch,
1316 * retry single alloc to be on the safe side.
1317 */
1318 if (unlikely(ret <= 0)) {
1319 state->reqs[0] = kmem_cache_alloc(req_cachep, gfp);
1320 if (!state->reqs[0])
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001321 goto fallback;
Jens Axboefd6fab22019-03-14 16:30:06 -06001322 ret = 1;
1323 }
Jens Axboe2579f912019-01-09 09:10:43 -07001324 state->free_reqs = ret - 1;
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03001325 req = state->reqs[ret - 1];
Jens Axboe2579f912019-01-09 09:10:43 -07001326 } else {
Jens Axboe2579f912019-01-09 09:10:43 -07001327 state->free_reqs--;
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03001328 req = state->reqs[state->free_reqs];
Jens Axboe2b188cc2019-01-07 10:46:33 -07001329 }
1330
Jens Axboe2579f912019-01-09 09:10:43 -07001331 return req;
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001332fallback:
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03001333 return io_get_fallback_req(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001334}
1335
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001336static inline void io_put_file(struct io_kiocb *req, struct file *file,
1337 bool fixed)
1338{
1339 if (fixed)
Xiaoguang Wang05589552020-03-31 14:05:18 +08001340 percpu_ref_put(req->fixed_file_refs);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001341 else
1342 fput(file);
1343}
1344
Jens Axboec6ca97b302019-12-28 12:11:08 -07001345static void __io_req_aux_free(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001346{
Pavel Begunkov929a3af2020-02-19 00:19:09 +03001347 if (req->flags & REQ_F_NEED_CLEANUP)
1348 io_cleanup_req(req);
1349
YueHaibing96fd84d2020-01-07 22:22:44 +08001350 kfree(req->io);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001351 if (req->file)
1352 io_put_file(req, req->file, (req->flags & REQ_F_FIXED_FILE));
Jens Axboe3537b6a2020-04-03 11:19:06 -06001353 if (req->task)
1354 put_task_struct(req->task);
Jens Axboecccf0ee2020-01-27 16:34:48 -07001355
1356 io_req_work_drop_env(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001357}
1358
1359static void __io_free_req(struct io_kiocb *req)
1360{
Jens Axboec6ca97b302019-12-28 12:11:08 -07001361 __io_req_aux_free(req);
Jens Axboefcb323c2019-10-24 12:39:47 -06001362
Jens Axboefcb323c2019-10-24 12:39:47 -06001363 if (req->flags & REQ_F_INFLIGHT) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001364 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06001365 unsigned long flags;
1366
1367 spin_lock_irqsave(&ctx->inflight_lock, flags);
1368 list_del(&req->inflight_entry);
1369 if (waitqueue_active(&ctx->inflight_wait))
1370 wake_up(&ctx->inflight_wait);
1371 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
1372 }
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03001373
1374 percpu_ref_put(&req->ctx->refs);
Pavel Begunkovb1e50e52020-04-08 08:58:44 +03001375 if (likely(!io_is_fallback_req(req)))
1376 kmem_cache_free(req_cachep, req);
1377 else
Bijan Mottahedehdd461af2020-04-29 17:47:50 -07001378 clear_bit_unlock(0, (unsigned long *) &req->ctx->fallback_req);
Jens Axboee65ef562019-03-12 10:16:44 -06001379}
1380
Jens Axboec6ca97b302019-12-28 12:11:08 -07001381struct req_batch {
1382 void *reqs[IO_IOPOLL_BATCH];
1383 int to_free;
1384 int need_iter;
1385};
1386
1387static void io_free_req_many(struct io_ring_ctx *ctx, struct req_batch *rb)
1388{
1389 if (!rb->to_free)
1390 return;
1391 if (rb->need_iter) {
1392 int i, inflight = 0;
1393 unsigned long flags;
1394
1395 for (i = 0; i < rb->to_free; i++) {
1396 struct io_kiocb *req = rb->reqs[i];
1397
Jens Axboe10fef4b2020-01-09 07:52:28 -07001398 if (req->flags & REQ_F_FIXED_FILE) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001399 req->file = NULL;
Xiaoguang Wang05589552020-03-31 14:05:18 +08001400 percpu_ref_put(req->fixed_file_refs);
Jens Axboe10fef4b2020-01-09 07:52:28 -07001401 }
Jens Axboec6ca97b302019-12-28 12:11:08 -07001402 if (req->flags & REQ_F_INFLIGHT)
1403 inflight++;
Jens Axboec6ca97b302019-12-28 12:11:08 -07001404 __io_req_aux_free(req);
1405 }
1406 if (!inflight)
1407 goto do_free;
1408
1409 spin_lock_irqsave(&ctx->inflight_lock, flags);
1410 for (i = 0; i < rb->to_free; i++) {
1411 struct io_kiocb *req = rb->reqs[i];
1412
Jens Axboe10fef4b2020-01-09 07:52:28 -07001413 if (req->flags & REQ_F_INFLIGHT) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001414 list_del(&req->inflight_entry);
1415 if (!--inflight)
1416 break;
1417 }
1418 }
1419 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
1420
1421 if (waitqueue_active(&ctx->inflight_wait))
1422 wake_up(&ctx->inflight_wait);
1423 }
1424do_free:
1425 kmem_cache_free_bulk(req_cachep, rb->to_free, rb->reqs);
1426 percpu_ref_put_many(&ctx->refs, rb->to_free);
Jens Axboec6ca97b302019-12-28 12:11:08 -07001427 rb->to_free = rb->need_iter = 0;
Jens Axboee65ef562019-03-12 10:16:44 -06001428}
1429
Jackie Liua197f662019-11-08 08:09:12 -07001430static bool io_link_cancel_timeout(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -06001431{
Jackie Liua197f662019-11-08 08:09:12 -07001432 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001433 int ret;
1434
Jens Axboe2d283902019-12-04 11:08:05 -07001435 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe2665abf2019-11-05 12:40:47 -07001436 if (ret != -1) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001437 io_cqring_fill_event(req, -ECANCELED);
Jens Axboe2665abf2019-11-05 12:40:47 -07001438 io_commit_cqring(ctx);
Pavel Begunkovdea3b492020-04-12 02:05:04 +03001439 req->flags &= ~REQ_F_LINK_HEAD;
Jackie Liuec9c02a2019-11-08 23:50:36 +08001440 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07001441 return true;
1442 }
1443
1444 return false;
1445}
1446
Jens Axboeba816ad2019-09-28 11:36:45 -06001447static void io_req_link_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboe9e645e112019-05-10 16:07:28 -06001448{
Jens Axboe2665abf2019-11-05 12:40:47 -07001449 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001450 bool wake_ev = false;
Jens Axboe9e645e112019-05-10 16:07:28 -06001451
Jens Axboe4d7dd462019-11-20 13:03:52 -07001452 /* Already got next link */
1453 if (req->flags & REQ_F_LINK_NEXT)
1454 return;
1455
Jens Axboe9e645e112019-05-10 16:07:28 -06001456 /*
1457 * The list should never be empty when we are called here. But could
1458 * potentially happen if the chain is messed up, check to be on the
1459 * safe side.
1460 */
Pavel Begunkov44932332019-12-05 16:16:35 +03001461 while (!list_empty(&req->link_list)) {
1462 struct io_kiocb *nxt = list_first_entry(&req->link_list,
1463 struct io_kiocb, link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001464
Pavel Begunkov44932332019-12-05 16:16:35 +03001465 if (unlikely((req->flags & REQ_F_LINK_TIMEOUT) &&
1466 (nxt->flags & REQ_F_TIMEOUT))) {
1467 list_del_init(&nxt->link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001468 wake_ev |= io_link_cancel_timeout(nxt);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001469 req->flags &= ~REQ_F_LINK_TIMEOUT;
1470 continue;
1471 }
Jens Axboe9e645e112019-05-10 16:07:28 -06001472
Pavel Begunkov44932332019-12-05 16:16:35 +03001473 list_del_init(&req->link_list);
1474 if (!list_empty(&nxt->link_list))
Pavel Begunkovdea3b492020-04-12 02:05:04 +03001475 nxt->flags |= REQ_F_LINK_HEAD;
Pavel Begunkovb18fdf72019-11-21 23:21:02 +03001476 *nxtptr = nxt;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001477 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06001478 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001479
Jens Axboe4d7dd462019-11-20 13:03:52 -07001480 req->flags |= REQ_F_LINK_NEXT;
Jens Axboe2665abf2019-11-05 12:40:47 -07001481 if (wake_ev)
1482 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001483}
1484
1485/*
Pavel Begunkovdea3b492020-04-12 02:05:04 +03001486 * Called if REQ_F_LINK_HEAD is set, and we fail the head request
Jens Axboe9e645e112019-05-10 16:07:28 -06001487 */
1488static void io_fail_links(struct io_kiocb *req)
1489{
Jens Axboe2665abf2019-11-05 12:40:47 -07001490 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001491 unsigned long flags;
1492
1493 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboe9e645e112019-05-10 16:07:28 -06001494
1495 while (!list_empty(&req->link_list)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03001496 struct io_kiocb *link = list_first_entry(&req->link_list,
1497 struct io_kiocb, link_list);
Jens Axboe9e645e112019-05-10 16:07:28 -06001498
Pavel Begunkov44932332019-12-05 16:16:35 +03001499 list_del_init(&link->link_list);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02001500 trace_io_uring_fail_link(req, link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001501
1502 if ((req->flags & REQ_F_LINK_TIMEOUT) &&
Jens Axboed625c6e2019-12-17 19:53:05 -07001503 link->opcode == IORING_OP_LINK_TIMEOUT) {
Jackie Liua197f662019-11-08 08:09:12 -07001504 io_link_cancel_timeout(link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001505 } else {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001506 io_cqring_fill_event(link, -ECANCELED);
Jens Axboe978db572019-11-14 22:39:04 -07001507 __io_double_put_req(link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001508 }
Jens Axboe5d960722019-11-19 15:31:28 -07001509 req->flags &= ~REQ_F_LINK_TIMEOUT;
Jens Axboe9e645e112019-05-10 16:07:28 -06001510 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001511
1512 io_commit_cqring(ctx);
1513 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1514 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001515}
1516
Jens Axboe4d7dd462019-11-20 13:03:52 -07001517static void io_req_find_next(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboe9e645e112019-05-10 16:07:28 -06001518{
Pavel Begunkovdea3b492020-04-12 02:05:04 +03001519 if (likely(!(req->flags & REQ_F_LINK_HEAD)))
Jens Axboe2665abf2019-11-05 12:40:47 -07001520 return;
Jens Axboe2665abf2019-11-05 12:40:47 -07001521
Jens Axboe9e645e112019-05-10 16:07:28 -06001522 /*
1523 * If LINK is set, we have dependent requests in this chain. If we
1524 * didn't fail this request, queue the first one up, moving any other
1525 * dependencies to the next request. In case of failure, fail the rest
1526 * of the chain.
1527 */
Jens Axboe2665abf2019-11-05 12:40:47 -07001528 if (req->flags & REQ_F_FAIL_LINK) {
1529 io_fail_links(req);
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001530 } else if ((req->flags & (REQ_F_LINK_TIMEOUT | REQ_F_COMP_LOCKED)) ==
1531 REQ_F_LINK_TIMEOUT) {
Jens Axboe2665abf2019-11-05 12:40:47 -07001532 struct io_ring_ctx *ctx = req->ctx;
1533 unsigned long flags;
1534
1535 /*
1536 * If this is a timeout link, we could be racing with the
1537 * timeout timer. Grab the completion lock for this case to
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001538 * protect against that.
Jens Axboe2665abf2019-11-05 12:40:47 -07001539 */
1540 spin_lock_irqsave(&ctx->completion_lock, flags);
1541 io_req_link_next(req, nxt);
1542 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1543 } else {
1544 io_req_link_next(req, nxt);
Jens Axboe9e645e112019-05-10 16:07:28 -06001545 }
Jens Axboe4d7dd462019-11-20 13:03:52 -07001546}
Jens Axboe9e645e112019-05-10 16:07:28 -06001547
Jackie Liuc69f8db2019-11-09 11:00:08 +08001548static void io_free_req(struct io_kiocb *req)
1549{
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001550 struct io_kiocb *nxt = NULL;
1551
1552 io_req_find_next(req, &nxt);
Pavel Begunkov70cf9f32019-11-21 23:21:00 +03001553 __io_free_req(req);
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001554
1555 if (nxt)
1556 io_queue_async_work(nxt);
Jackie Liuc69f8db2019-11-09 11:00:08 +08001557}
1558
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001559static void io_link_work_cb(struct io_wq_work **workptr)
1560{
Pavel Begunkov18a542f2020-03-23 00:23:29 +03001561 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
1562 struct io_kiocb *link;
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001563
Pavel Begunkov18a542f2020-03-23 00:23:29 +03001564 link = list_first_entry(&req->link_list, struct io_kiocb, link_list);
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001565 io_queue_linked_timeout(link);
1566 io_wq_submit_work(workptr);
1567}
1568
1569static void io_wq_assign_next(struct io_wq_work **workptr, struct io_kiocb *nxt)
1570{
1571 struct io_kiocb *link;
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001572 const struct io_op_def *def = &io_op_defs[nxt->opcode];
1573
1574 if ((nxt->flags & REQ_F_ISREG) && def->hash_reg_file)
1575 io_wq_hash_work(&nxt->work, file_inode(nxt->file));
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001576
1577 *workptr = &nxt->work;
1578 link = io_prep_linked_timeout(nxt);
Pavel Begunkov18a542f2020-03-23 00:23:29 +03001579 if (link)
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001580 nxt->work.func = io_link_work_cb;
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001581}
1582
Jens Axboeba816ad2019-09-28 11:36:45 -06001583/*
1584 * Drop reference to request, return next in chain (if there is one) if this
1585 * was the last reference to this request.
1586 */
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001587__attribute__((nonnull))
Jackie Liuec9c02a2019-11-08 23:50:36 +08001588static void io_put_req_find_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboee65ef562019-03-12 10:16:44 -06001589{
Jens Axboe2a44f462020-02-25 13:25:41 -07001590 if (refcount_dec_and_test(&req->refs)) {
1591 io_req_find_next(req, nxtptr);
Jens Axboe4d7dd462019-11-20 13:03:52 -07001592 __io_free_req(req);
Jens Axboe2a44f462020-02-25 13:25:41 -07001593 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001594}
1595
Jens Axboe2b188cc2019-01-07 10:46:33 -07001596static void io_put_req(struct io_kiocb *req)
1597{
Jens Axboedef596e2019-01-09 08:59:42 -07001598 if (refcount_dec_and_test(&req->refs))
1599 io_free_req(req);
1600}
1601
Pavel Begunkove9fd9392020-03-04 16:14:12 +03001602static void io_steal_work(struct io_kiocb *req,
1603 struct io_wq_work **workptr)
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001604{
1605 /*
1606 * It's in an io-wq worker, so there always should be at least
1607 * one reference, which will be dropped in io_put_work() just
1608 * after the current handler returns.
1609 *
1610 * It also means, that if the counter dropped to 1, then there is
1611 * no asynchronous users left, so it's safe to steal the next work.
1612 */
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001613 if (refcount_read(&req->refs) == 1) {
1614 struct io_kiocb *nxt = NULL;
1615
1616 io_req_find_next(req, &nxt);
1617 if (nxt)
1618 io_wq_assign_next(workptr, nxt);
1619 }
1620}
1621
Jens Axboe978db572019-11-14 22:39:04 -07001622/*
1623 * Must only be used if we don't need to care about links, usually from
1624 * within the completion handling itself.
1625 */
1626static void __io_double_put_req(struct io_kiocb *req)
Jens Axboea3a0e432019-08-20 11:03:11 -06001627{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001628 /* drop both submit and complete references */
1629 if (refcount_sub_and_test(2, &req->refs))
1630 __io_free_req(req);
1631}
1632
Jens Axboe978db572019-11-14 22:39:04 -07001633static void io_double_put_req(struct io_kiocb *req)
1634{
1635 /* drop both submit and complete references */
1636 if (refcount_sub_and_test(2, &req->refs))
1637 io_free_req(req);
1638}
1639
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001640static unsigned io_cqring_events(struct io_ring_ctx *ctx, bool noflush)
Jens Axboea3a0e432019-08-20 11:03:11 -06001641{
Jens Axboe84f97dc2019-11-06 11:27:53 -07001642 struct io_rings *rings = ctx->rings;
1643
Jens Axboead3eb2c2019-12-18 17:12:20 -07001644 if (test_bit(0, &ctx->cq_check_overflow)) {
1645 /*
1646 * noflush == true is from the waitqueue handler, just ensure
1647 * we wake up the task, and the next invocation will flush the
1648 * entries. We cannot safely to it from here.
1649 */
1650 if (noflush && !list_empty(&ctx->cq_overflow_list))
1651 return -1U;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001652
Jens Axboead3eb2c2019-12-18 17:12:20 -07001653 io_cqring_overflow_flush(ctx, false);
1654 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001655
Jens Axboea3a0e432019-08-20 11:03:11 -06001656 /* See comment at the top of this file */
1657 smp_rmb();
Jens Axboead3eb2c2019-12-18 17:12:20 -07001658 return ctx->cached_cq_tail - READ_ONCE(rings->cq.head);
Jens Axboea3a0e432019-08-20 11:03:11 -06001659}
1660
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03001661static inline unsigned int io_sqring_entries(struct io_ring_ctx *ctx)
1662{
1663 struct io_rings *rings = ctx->rings;
1664
1665 /* make sure SQ entry isn't read before tail */
1666 return smp_load_acquire(&rings->sq.tail) - ctx->cached_sq_head;
1667}
1668
Jens Axboe8237e042019-12-28 10:48:22 -07001669static inline bool io_req_multi_free(struct req_batch *rb, struct io_kiocb *req)
Jens Axboee94f1412019-12-19 12:06:02 -07001670{
Pavel Begunkovdea3b492020-04-12 02:05:04 +03001671 if ((req->flags & REQ_F_LINK_HEAD) || io_is_fallback_req(req))
Jens Axboec6ca97b302019-12-28 12:11:08 -07001672 return false;
Jens Axboee94f1412019-12-19 12:06:02 -07001673
Jens Axboec6ca97b302019-12-28 12:11:08 -07001674 if (!(req->flags & REQ_F_FIXED_FILE) || req->io)
1675 rb->need_iter++;
1676
1677 rb->reqs[rb->to_free++] = req;
1678 if (unlikely(rb->to_free == ARRAY_SIZE(rb->reqs)))
1679 io_free_req_many(req->ctx, rb);
1680 return true;
Jens Axboee94f1412019-12-19 12:06:02 -07001681}
1682
Jens Axboebcda7ba2020-02-23 16:42:51 -07001683static int io_put_kbuf(struct io_kiocb *req)
1684{
Jens Axboe4d954c22020-02-27 07:31:19 -07001685 struct io_buffer *kbuf;
Jens Axboebcda7ba2020-02-23 16:42:51 -07001686 int cflags;
1687
Jens Axboe4d954c22020-02-27 07:31:19 -07001688 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
Jens Axboebcda7ba2020-02-23 16:42:51 -07001689 cflags = kbuf->bid << IORING_CQE_BUFFER_SHIFT;
1690 cflags |= IORING_CQE_F_BUFFER;
1691 req->rw.addr = 0;
1692 kfree(kbuf);
1693 return cflags;
1694}
1695
Jens Axboedef596e2019-01-09 08:59:42 -07001696/*
1697 * Find and free completed poll iocbs
1698 */
1699static void io_iopoll_complete(struct io_ring_ctx *ctx, unsigned int *nr_events,
1700 struct list_head *done)
1701{
Jens Axboe8237e042019-12-28 10:48:22 -07001702 struct req_batch rb;
Jens Axboedef596e2019-01-09 08:59:42 -07001703 struct io_kiocb *req;
Jens Axboedef596e2019-01-09 08:59:42 -07001704
Jens Axboec6ca97b302019-12-28 12:11:08 -07001705 rb.to_free = rb.need_iter = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001706 while (!list_empty(done)) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07001707 int cflags = 0;
1708
Jens Axboedef596e2019-01-09 08:59:42 -07001709 req = list_first_entry(done, struct io_kiocb, list);
1710 list_del(&req->list);
1711
Jens Axboebcda7ba2020-02-23 16:42:51 -07001712 if (req->flags & REQ_F_BUFFER_SELECTED)
1713 cflags = io_put_kbuf(req);
1714
1715 __io_cqring_fill_event(req, req->result, cflags);
Jens Axboedef596e2019-01-09 08:59:42 -07001716 (*nr_events)++;
1717
Jens Axboe8237e042019-12-28 10:48:22 -07001718 if (refcount_dec_and_test(&req->refs) &&
1719 !io_req_multi_free(&rb, req))
1720 io_free_req(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001721 }
Jens Axboedef596e2019-01-09 08:59:42 -07001722
Jens Axboe09bb8392019-03-13 12:39:28 -06001723 io_commit_cqring(ctx);
Xiaoguang Wang32b22442020-03-11 09:26:09 +08001724 if (ctx->flags & IORING_SETUP_SQPOLL)
1725 io_cqring_ev_posted(ctx);
Jens Axboe8237e042019-12-28 10:48:22 -07001726 io_free_req_many(ctx, &rb);
Jens Axboedef596e2019-01-09 08:59:42 -07001727}
1728
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001729static void io_iopoll_queue(struct list_head *again)
1730{
1731 struct io_kiocb *req;
1732
1733 do {
1734 req = list_first_entry(again, struct io_kiocb, list);
1735 list_del(&req->list);
1736 refcount_inc(&req->refs);
1737 io_queue_async_work(req);
1738 } while (!list_empty(again));
1739}
1740
Jens Axboedef596e2019-01-09 08:59:42 -07001741static int io_do_iopoll(struct io_ring_ctx *ctx, unsigned int *nr_events,
1742 long min)
1743{
1744 struct io_kiocb *req, *tmp;
1745 LIST_HEAD(done);
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001746 LIST_HEAD(again);
Jens Axboedef596e2019-01-09 08:59:42 -07001747 bool spin;
1748 int ret;
1749
1750 /*
1751 * Only spin for completions if we don't have multiple devices hanging
1752 * off our complete list, and we're under the requested amount.
1753 */
1754 spin = !ctx->poll_multi_file && *nr_events < min;
1755
1756 ret = 0;
1757 list_for_each_entry_safe(req, tmp, &ctx->poll_list, list) {
Jens Axboe9adbd452019-12-20 08:45:55 -07001758 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboedef596e2019-01-09 08:59:42 -07001759
1760 /*
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001761 * Move completed and retryable entries to our local lists.
1762 * If we find a request that requires polling, break out
1763 * and complete those lists first, if we have entries there.
Jens Axboedef596e2019-01-09 08:59:42 -07001764 */
1765 if (req->flags & REQ_F_IOPOLL_COMPLETED) {
1766 list_move_tail(&req->list, &done);
1767 continue;
1768 }
1769 if (!list_empty(&done))
1770 break;
1771
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001772 if (req->result == -EAGAIN) {
1773 list_move_tail(&req->list, &again);
1774 continue;
1775 }
1776 if (!list_empty(&again))
1777 break;
1778
Jens Axboedef596e2019-01-09 08:59:42 -07001779 ret = kiocb->ki_filp->f_op->iopoll(kiocb, spin);
1780 if (ret < 0)
1781 break;
1782
1783 if (ret && spin)
1784 spin = false;
1785 ret = 0;
1786 }
1787
1788 if (!list_empty(&done))
1789 io_iopoll_complete(ctx, nr_events, &done);
1790
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001791 if (!list_empty(&again))
1792 io_iopoll_queue(&again);
1793
Jens Axboedef596e2019-01-09 08:59:42 -07001794 return ret;
1795}
1796
1797/*
Brian Gianforcarod195a662019-12-13 03:09:50 -08001798 * Poll for a minimum of 'min' events. Note that if min == 0 we consider that a
Jens Axboedef596e2019-01-09 08:59:42 -07001799 * non-spinning poll check - we'll still enter the driver poll loop, but only
1800 * as a non-spinning completion check.
1801 */
1802static int io_iopoll_getevents(struct io_ring_ctx *ctx, unsigned int *nr_events,
1803 long min)
1804{
Jens Axboe08f54392019-08-21 22:19:11 -06001805 while (!list_empty(&ctx->poll_list) && !need_resched()) {
Jens Axboedef596e2019-01-09 08:59:42 -07001806 int ret;
1807
1808 ret = io_do_iopoll(ctx, nr_events, min);
1809 if (ret < 0)
1810 return ret;
1811 if (!min || *nr_events >= min)
1812 return 0;
1813 }
1814
1815 return 1;
1816}
1817
1818/*
1819 * We can't just wait for polled events to come to us, we have to actively
1820 * find and complete them.
1821 */
1822static void io_iopoll_reap_events(struct io_ring_ctx *ctx)
1823{
1824 if (!(ctx->flags & IORING_SETUP_IOPOLL))
1825 return;
1826
1827 mutex_lock(&ctx->uring_lock);
1828 while (!list_empty(&ctx->poll_list)) {
1829 unsigned int nr_events = 0;
1830
1831 io_iopoll_getevents(ctx, &nr_events, 1);
Jens Axboe08f54392019-08-21 22:19:11 -06001832
1833 /*
1834 * Ensure we allow local-to-the-cpu processing to take place,
1835 * in this case we need to ensure that we reap all events.
1836 */
1837 cond_resched();
Jens Axboedef596e2019-01-09 08:59:42 -07001838 }
1839 mutex_unlock(&ctx->uring_lock);
1840}
1841
Xiaoguang Wangc7849be2020-02-22 14:46:05 +08001842static int io_iopoll_check(struct io_ring_ctx *ctx, unsigned *nr_events,
1843 long min)
Jens Axboedef596e2019-01-09 08:59:42 -07001844{
Jens Axboe2b2ed972019-10-25 10:06:15 -06001845 int iters = 0, ret = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001846
Xiaoguang Wangc7849be2020-02-22 14:46:05 +08001847 /*
1848 * We disallow the app entering submit/complete with polling, but we
1849 * still need to lock the ring to prevent racing with polled issue
1850 * that got punted to a workqueue.
1851 */
1852 mutex_lock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07001853 do {
1854 int tmin = 0;
1855
Jens Axboe500f9fb2019-08-19 12:15:59 -06001856 /*
Jens Axboea3a0e432019-08-20 11:03:11 -06001857 * Don't enter poll loop if we already have events pending.
1858 * If we do, we can potentially be spinning for commands that
1859 * already triggered a CQE (eg in error).
1860 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001861 if (io_cqring_events(ctx, false))
Jens Axboea3a0e432019-08-20 11:03:11 -06001862 break;
1863
1864 /*
Jens Axboe500f9fb2019-08-19 12:15:59 -06001865 * If a submit got punted to a workqueue, we can have the
1866 * application entering polling for a command before it gets
1867 * issued. That app will hold the uring_lock for the duration
1868 * of the poll right here, so we need to take a breather every
1869 * now and then to ensure that the issue has a chance to add
1870 * the poll to the issued list. Otherwise we can spin here
1871 * forever, while the workqueue is stuck trying to acquire the
1872 * very same mutex.
1873 */
1874 if (!(++iters & 7)) {
1875 mutex_unlock(&ctx->uring_lock);
1876 mutex_lock(&ctx->uring_lock);
1877 }
1878
Jens Axboedef596e2019-01-09 08:59:42 -07001879 if (*nr_events < min)
1880 tmin = min - *nr_events;
1881
1882 ret = io_iopoll_getevents(ctx, nr_events, tmin);
1883 if (ret <= 0)
1884 break;
1885 ret = 0;
1886 } while (min && !*nr_events && !need_resched());
1887
Jens Axboe500f9fb2019-08-19 12:15:59 -06001888 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07001889 return ret;
1890}
1891
Jens Axboe491381ce2019-10-17 09:20:46 -06001892static void kiocb_end_write(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001893{
Jens Axboe491381ce2019-10-17 09:20:46 -06001894 /*
1895 * Tell lockdep we inherited freeze protection from submission
1896 * thread.
1897 */
1898 if (req->flags & REQ_F_ISREG) {
1899 struct inode *inode = file_inode(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001900
Jens Axboe491381ce2019-10-17 09:20:46 -06001901 __sb_writers_acquired(inode->i_sb, SB_FREEZE_WRITE);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001902 }
Jens Axboe491381ce2019-10-17 09:20:46 -06001903 file_end_write(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001904}
1905
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001906static inline void req_set_fail_links(struct io_kiocb *req)
1907{
1908 if ((req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) == REQ_F_LINK)
1909 req->flags |= REQ_F_FAIL_LINK;
1910}
1911
Jens Axboeba816ad2019-09-28 11:36:45 -06001912static void io_complete_rw_common(struct kiocb *kiocb, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001913{
Jens Axboe9adbd452019-12-20 08:45:55 -07001914 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001915 int cflags = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001916
Jens Axboe491381ce2019-10-17 09:20:46 -06001917 if (kiocb->ki_flags & IOCB_WRITE)
1918 kiocb_end_write(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001919
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001920 if (res != req->result)
1921 req_set_fail_links(req);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001922 if (req->flags & REQ_F_BUFFER_SELECTED)
1923 cflags = io_put_kbuf(req);
1924 __io_cqring_add_event(req, res, cflags);
Jens Axboeba816ad2019-09-28 11:36:45 -06001925}
1926
1927static void io_complete_rw(struct kiocb *kiocb, long res, long res2)
1928{
Jens Axboe9adbd452019-12-20 08:45:55 -07001929 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboeba816ad2019-09-28 11:36:45 -06001930
1931 io_complete_rw_common(kiocb, res);
Jens Axboee65ef562019-03-12 10:16:44 -06001932 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001933}
1934
Jens Axboedef596e2019-01-09 08:59:42 -07001935static void io_complete_rw_iopoll(struct kiocb *kiocb, long res, long res2)
1936{
Jens Axboe9adbd452019-12-20 08:45:55 -07001937 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboedef596e2019-01-09 08:59:42 -07001938
Jens Axboe491381ce2019-10-17 09:20:46 -06001939 if (kiocb->ki_flags & IOCB_WRITE)
1940 kiocb_end_write(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001941
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001942 if (res != req->result)
1943 req_set_fail_links(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06001944 req->result = res;
Jens Axboedef596e2019-01-09 08:59:42 -07001945 if (res != -EAGAIN)
1946 req->flags |= REQ_F_IOPOLL_COMPLETED;
1947}
1948
1949/*
1950 * After the iocb has been issued, it's safe to be found on the poll list.
1951 * Adding the kiocb to the list AFTER submission ensures that we don't
1952 * find it from a io_iopoll_getevents() thread before the issuer is done
1953 * accessing the kiocb cookie.
1954 */
1955static void io_iopoll_req_issued(struct io_kiocb *req)
1956{
1957 struct io_ring_ctx *ctx = req->ctx;
1958
1959 /*
1960 * Track whether we have multiple files in our lists. This will impact
1961 * how we do polling eventually, not spinning if we're on potentially
1962 * different devices.
1963 */
1964 if (list_empty(&ctx->poll_list)) {
1965 ctx->poll_multi_file = false;
1966 } else if (!ctx->poll_multi_file) {
1967 struct io_kiocb *list_req;
1968
1969 list_req = list_first_entry(&ctx->poll_list, struct io_kiocb,
1970 list);
Jens Axboe9adbd452019-12-20 08:45:55 -07001971 if (list_req->file != req->file)
Jens Axboedef596e2019-01-09 08:59:42 -07001972 ctx->poll_multi_file = true;
1973 }
1974
1975 /*
1976 * For fast devices, IO may have already completed. If it has, add
1977 * it to the front so we find it first.
1978 */
1979 if (req->flags & REQ_F_IOPOLL_COMPLETED)
1980 list_add(&req->list, &ctx->poll_list);
1981 else
1982 list_add_tail(&req->list, &ctx->poll_list);
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08001983
1984 if ((ctx->flags & IORING_SETUP_SQPOLL) &&
1985 wq_has_sleeper(&ctx->sqo_wait))
1986 wake_up(&ctx->sqo_wait);
Jens Axboedef596e2019-01-09 08:59:42 -07001987}
1988
Jens Axboe3d6770f2019-04-13 11:50:54 -06001989static void io_file_put(struct io_submit_state *state)
Jens Axboe9a56a232019-01-09 09:06:50 -07001990{
Jens Axboe3d6770f2019-04-13 11:50:54 -06001991 if (state->file) {
Jens Axboe9a56a232019-01-09 09:06:50 -07001992 int diff = state->has_refs - state->used_refs;
1993
1994 if (diff)
1995 fput_many(state->file, diff);
1996 state->file = NULL;
1997 }
1998}
1999
2000/*
2001 * Get as many references to a file as we have IOs left in this submission,
2002 * assuming most submissions are for one file, or at least that each file
2003 * has more than one submission.
2004 */
Pavel Begunkov8da11c12020-02-24 11:32:44 +03002005static struct file *__io_file_get(struct io_submit_state *state, int fd)
Jens Axboe9a56a232019-01-09 09:06:50 -07002006{
2007 if (!state)
2008 return fget(fd);
2009
2010 if (state->file) {
2011 if (state->fd == fd) {
2012 state->used_refs++;
2013 state->ios_left--;
2014 return state->file;
2015 }
Jens Axboe3d6770f2019-04-13 11:50:54 -06002016 io_file_put(state);
Jens Axboe9a56a232019-01-09 09:06:50 -07002017 }
2018 state->file = fget_many(fd, state->ios_left);
2019 if (!state->file)
2020 return NULL;
2021
2022 state->fd = fd;
2023 state->has_refs = state->ios_left;
2024 state->used_refs = 1;
2025 state->ios_left--;
2026 return state->file;
2027}
2028
Jens Axboe2b188cc2019-01-07 10:46:33 -07002029/*
2030 * If we tracked the file through the SCM inflight mechanism, we could support
2031 * any file. For now, just ensure that anything potentially problematic is done
2032 * inline.
2033 */
Jens Axboeaf197f52020-04-28 13:15:06 -06002034static bool io_file_supports_async(struct file *file, int rw)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002035{
2036 umode_t mode = file_inode(file)->i_mode;
2037
Jens Axboe10d59342019-12-09 20:16:22 -07002038 if (S_ISBLK(mode) || S_ISCHR(mode) || S_ISSOCK(mode))
Jens Axboe2b188cc2019-01-07 10:46:33 -07002039 return true;
2040 if (S_ISREG(mode) && file->f_op != &io_uring_fops)
2041 return true;
2042
Jens Axboeaf197f52020-04-28 13:15:06 -06002043 if (!(file->f_mode & FMODE_NOWAIT))
2044 return false;
2045
2046 if (rw == READ)
2047 return file->f_op->read_iter != NULL;
2048
2049 return file->f_op->write_iter != NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002050}
2051
Jens Axboe3529d8c2019-12-19 18:24:38 -07002052static int io_prep_rw(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2053 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002054{
Jens Axboedef596e2019-01-09 08:59:42 -07002055 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9adbd452019-12-20 08:45:55 -07002056 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe09bb8392019-03-13 12:39:28 -06002057 unsigned ioprio;
2058 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002059
Jens Axboe491381ce2019-10-17 09:20:46 -06002060 if (S_ISREG(file_inode(req->file)->i_mode))
2061 req->flags |= REQ_F_ISREG;
2062
Jens Axboe2b188cc2019-01-07 10:46:33 -07002063 kiocb->ki_pos = READ_ONCE(sqe->off);
Jens Axboeba042912019-12-25 16:33:42 -07002064 if (kiocb->ki_pos == -1 && !(req->file->f_mode & FMODE_STREAM)) {
2065 req->flags |= REQ_F_CUR_POS;
2066 kiocb->ki_pos = req->file->f_pos;
2067 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002068 kiocb->ki_hint = ki_hint_validate(file_write_hint(kiocb->ki_filp));
Pavel Begunkov3e577dc2020-02-01 03:58:42 +03002069 kiocb->ki_flags = iocb_flags(kiocb->ki_filp);
2070 ret = kiocb_set_rw_flags(kiocb, READ_ONCE(sqe->rw_flags));
2071 if (unlikely(ret))
2072 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002073
2074 ioprio = READ_ONCE(sqe->ioprio);
2075 if (ioprio) {
2076 ret = ioprio_check_cap(ioprio);
2077 if (ret)
Jens Axboe09bb8392019-03-13 12:39:28 -06002078 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002079
2080 kiocb->ki_ioprio = ioprio;
2081 } else
2082 kiocb->ki_ioprio = get_current_ioprio();
2083
Stefan Bühler8449eed2019-04-27 20:34:19 +02002084 /* don't allow async punt if RWF_NOWAIT was requested */
Jens Axboe491381ce2019-10-17 09:20:46 -06002085 if ((kiocb->ki_flags & IOCB_NOWAIT) ||
2086 (req->file->f_flags & O_NONBLOCK))
Stefan Bühler8449eed2019-04-27 20:34:19 +02002087 req->flags |= REQ_F_NOWAIT;
2088
2089 if (force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002090 kiocb->ki_flags |= IOCB_NOWAIT;
Stefan Bühler8449eed2019-04-27 20:34:19 +02002091
Jens Axboedef596e2019-01-09 08:59:42 -07002092 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07002093 if (!(kiocb->ki_flags & IOCB_DIRECT) ||
2094 !kiocb->ki_filp->f_op->iopoll)
Jens Axboe09bb8392019-03-13 12:39:28 -06002095 return -EOPNOTSUPP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002096
Jens Axboedef596e2019-01-09 08:59:42 -07002097 kiocb->ki_flags |= IOCB_HIPRI;
2098 kiocb->ki_complete = io_complete_rw_iopoll;
Jens Axboe6873e0b2019-10-30 13:53:09 -06002099 req->result = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07002100 } else {
Jens Axboe09bb8392019-03-13 12:39:28 -06002101 if (kiocb->ki_flags & IOCB_HIPRI)
2102 return -EINVAL;
Jens Axboedef596e2019-01-09 08:59:42 -07002103 kiocb->ki_complete = io_complete_rw;
2104 }
Jens Axboe9adbd452019-12-20 08:45:55 -07002105
Jens Axboe3529d8c2019-12-19 18:24:38 -07002106 req->rw.addr = READ_ONCE(sqe->addr);
2107 req->rw.len = READ_ONCE(sqe->len);
Jens Axboebcda7ba2020-02-23 16:42:51 -07002108 /* we own ->private, reuse it for the buffer index / buffer ID */
Jens Axboe9adbd452019-12-20 08:45:55 -07002109 req->rw.kiocb.private = (void *) (unsigned long)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002110 READ_ONCE(sqe->buf_index);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002111 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002112}
2113
2114static inline void io_rw_done(struct kiocb *kiocb, ssize_t ret)
2115{
2116 switch (ret) {
2117 case -EIOCBQUEUED:
2118 break;
2119 case -ERESTARTSYS:
2120 case -ERESTARTNOINTR:
2121 case -ERESTARTNOHAND:
2122 case -ERESTART_RESTARTBLOCK:
2123 /*
2124 * We can't just restart the syscall, since previously
2125 * submitted sqes may already be in progress. Just fail this
2126 * IO with EINTR.
2127 */
2128 ret = -EINTR;
2129 /* fall through */
2130 default:
2131 kiocb->ki_complete(kiocb, ret, 0);
2132 }
2133}
2134
Pavel Begunkov014db002020-03-03 21:33:12 +03002135static void kiocb_done(struct kiocb *kiocb, ssize_t ret)
Jens Axboeba816ad2019-09-28 11:36:45 -06002136{
Jens Axboeba042912019-12-25 16:33:42 -07002137 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
2138
2139 if (req->flags & REQ_F_CUR_POS)
2140 req->file->f_pos = kiocb->ki_pos;
Pavel Begunkovbcaec082020-02-24 11:30:18 +03002141 if (ret >= 0 && kiocb->ki_complete == io_complete_rw)
Pavel Begunkov014db002020-03-03 21:33:12 +03002142 io_complete_rw(kiocb, ret, 0);
Jens Axboeba816ad2019-09-28 11:36:45 -06002143 else
2144 io_rw_done(kiocb, ret);
2145}
2146
Jens Axboe9adbd452019-12-20 08:45:55 -07002147static ssize_t io_import_fixed(struct io_kiocb *req, int rw,
Pavel Begunkov7d009162019-11-25 23:14:40 +03002148 struct iov_iter *iter)
Jens Axboeedafcce2019-01-09 09:16:05 -07002149{
Jens Axboe9adbd452019-12-20 08:45:55 -07002150 struct io_ring_ctx *ctx = req->ctx;
2151 size_t len = req->rw.len;
Jens Axboeedafcce2019-01-09 09:16:05 -07002152 struct io_mapped_ubuf *imu;
2153 unsigned index, buf_index;
2154 size_t offset;
2155 u64 buf_addr;
2156
2157 /* attempt to use fixed buffers without having provided iovecs */
2158 if (unlikely(!ctx->user_bufs))
2159 return -EFAULT;
2160
Jens Axboe9adbd452019-12-20 08:45:55 -07002161 buf_index = (unsigned long) req->rw.kiocb.private;
Jens Axboeedafcce2019-01-09 09:16:05 -07002162 if (unlikely(buf_index >= ctx->nr_user_bufs))
2163 return -EFAULT;
2164
2165 index = array_index_nospec(buf_index, ctx->nr_user_bufs);
2166 imu = &ctx->user_bufs[index];
Jens Axboe9adbd452019-12-20 08:45:55 -07002167 buf_addr = req->rw.addr;
Jens Axboeedafcce2019-01-09 09:16:05 -07002168
2169 /* overflow */
2170 if (buf_addr + len < buf_addr)
2171 return -EFAULT;
2172 /* not inside the mapped region */
2173 if (buf_addr < imu->ubuf || buf_addr + len > imu->ubuf + imu->len)
2174 return -EFAULT;
2175
2176 /*
2177 * May not be a start of buffer, set size appropriately
2178 * and advance us to the beginning.
2179 */
2180 offset = buf_addr - imu->ubuf;
2181 iov_iter_bvec(iter, rw, imu->bvec, imu->nr_bvecs, offset + len);
Jens Axboebd11b3a2019-07-20 08:37:31 -06002182
2183 if (offset) {
2184 /*
2185 * Don't use iov_iter_advance() here, as it's really slow for
2186 * using the latter parts of a big fixed buffer - it iterates
2187 * over each segment manually. We can cheat a bit here, because
2188 * we know that:
2189 *
2190 * 1) it's a BVEC iter, we set it up
2191 * 2) all bvecs are PAGE_SIZE in size, except potentially the
2192 * first and last bvec
2193 *
2194 * So just find our index, and adjust the iterator afterwards.
2195 * If the offset is within the first bvec (or the whole first
2196 * bvec, just use iov_iter_advance(). This makes it easier
2197 * since we can just skip the first segment, which may not
2198 * be PAGE_SIZE aligned.
2199 */
2200 const struct bio_vec *bvec = imu->bvec;
2201
2202 if (offset <= bvec->bv_len) {
2203 iov_iter_advance(iter, offset);
2204 } else {
2205 unsigned long seg_skip;
2206
2207 /* skip first vec */
2208 offset -= bvec->bv_len;
2209 seg_skip = 1 + (offset >> PAGE_SHIFT);
2210
2211 iter->bvec = bvec + seg_skip;
2212 iter->nr_segs -= seg_skip;
Aleix Roca Nonell99c79f62019-08-15 14:03:22 +02002213 iter->count -= bvec->bv_len + offset;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002214 iter->iov_offset = offset & ~PAGE_MASK;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002215 }
2216 }
2217
Jens Axboe5e559562019-11-13 16:12:46 -07002218 return len;
Jens Axboeedafcce2019-01-09 09:16:05 -07002219}
2220
Jens Axboebcda7ba2020-02-23 16:42:51 -07002221static void io_ring_submit_unlock(struct io_ring_ctx *ctx, bool needs_lock)
2222{
2223 if (needs_lock)
2224 mutex_unlock(&ctx->uring_lock);
2225}
2226
2227static void io_ring_submit_lock(struct io_ring_ctx *ctx, bool needs_lock)
2228{
2229 /*
2230 * "Normal" inline submissions always hold the uring_lock, since we
2231 * grab it from the system call. Same is true for the SQPOLL offload.
2232 * The only exception is when we've detached the request and issue it
2233 * from an async worker thread, grab the lock for that case.
2234 */
2235 if (needs_lock)
2236 mutex_lock(&ctx->uring_lock);
2237}
2238
2239static struct io_buffer *io_buffer_select(struct io_kiocb *req, size_t *len,
2240 int bgid, struct io_buffer *kbuf,
2241 bool needs_lock)
2242{
2243 struct io_buffer *head;
2244
2245 if (req->flags & REQ_F_BUFFER_SELECTED)
2246 return kbuf;
2247
2248 io_ring_submit_lock(req->ctx, needs_lock);
2249
2250 lockdep_assert_held(&req->ctx->uring_lock);
2251
2252 head = idr_find(&req->ctx->io_buffer_idr, bgid);
2253 if (head) {
2254 if (!list_empty(&head->list)) {
2255 kbuf = list_last_entry(&head->list, struct io_buffer,
2256 list);
2257 list_del(&kbuf->list);
2258 } else {
2259 kbuf = head;
2260 idr_remove(&req->ctx->io_buffer_idr, bgid);
2261 }
2262 if (*len > kbuf->len)
2263 *len = kbuf->len;
2264 } else {
2265 kbuf = ERR_PTR(-ENOBUFS);
2266 }
2267
2268 io_ring_submit_unlock(req->ctx, needs_lock);
2269
2270 return kbuf;
2271}
2272
Jens Axboe4d954c22020-02-27 07:31:19 -07002273static void __user *io_rw_buffer_select(struct io_kiocb *req, size_t *len,
2274 bool needs_lock)
2275{
2276 struct io_buffer *kbuf;
2277 int bgid;
2278
2279 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
2280 bgid = (int) (unsigned long) req->rw.kiocb.private;
2281 kbuf = io_buffer_select(req, len, bgid, kbuf, needs_lock);
2282 if (IS_ERR(kbuf))
2283 return kbuf;
2284 req->rw.addr = (u64) (unsigned long) kbuf;
2285 req->flags |= REQ_F_BUFFER_SELECTED;
2286 return u64_to_user_ptr(kbuf->addr);
2287}
2288
2289#ifdef CONFIG_COMPAT
2290static ssize_t io_compat_import(struct io_kiocb *req, struct iovec *iov,
2291 bool needs_lock)
2292{
2293 struct compat_iovec __user *uiov;
2294 compat_ssize_t clen;
2295 void __user *buf;
2296 ssize_t len;
2297
2298 uiov = u64_to_user_ptr(req->rw.addr);
2299 if (!access_ok(uiov, sizeof(*uiov)))
2300 return -EFAULT;
2301 if (__get_user(clen, &uiov->iov_len))
2302 return -EFAULT;
2303 if (clen < 0)
2304 return -EINVAL;
2305
2306 len = clen;
2307 buf = io_rw_buffer_select(req, &len, needs_lock);
2308 if (IS_ERR(buf))
2309 return PTR_ERR(buf);
2310 iov[0].iov_base = buf;
2311 iov[0].iov_len = (compat_size_t) len;
2312 return 0;
2313}
2314#endif
2315
2316static ssize_t __io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
2317 bool needs_lock)
2318{
2319 struct iovec __user *uiov = u64_to_user_ptr(req->rw.addr);
2320 void __user *buf;
2321 ssize_t len;
2322
2323 if (copy_from_user(iov, uiov, sizeof(*uiov)))
2324 return -EFAULT;
2325
2326 len = iov[0].iov_len;
2327 if (len < 0)
2328 return -EINVAL;
2329 buf = io_rw_buffer_select(req, &len, needs_lock);
2330 if (IS_ERR(buf))
2331 return PTR_ERR(buf);
2332 iov[0].iov_base = buf;
2333 iov[0].iov_len = len;
2334 return 0;
2335}
2336
2337static ssize_t io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
2338 bool needs_lock)
2339{
2340 if (req->flags & REQ_F_BUFFER_SELECTED)
2341 return 0;
2342 if (!req->rw.len)
2343 return 0;
2344 else if (req->rw.len > 1)
2345 return -EINVAL;
2346
2347#ifdef CONFIG_COMPAT
2348 if (req->ctx->compat)
2349 return io_compat_import(req, iov, needs_lock);
2350#endif
2351
2352 return __io_iov_buffer_select(req, iov, needs_lock);
2353}
2354
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002355static ssize_t io_import_iovec(int rw, struct io_kiocb *req,
Jens Axboebcda7ba2020-02-23 16:42:51 -07002356 struct iovec **iovec, struct iov_iter *iter,
2357 bool needs_lock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002358{
Jens Axboe9adbd452019-12-20 08:45:55 -07002359 void __user *buf = u64_to_user_ptr(req->rw.addr);
2360 size_t sqe_len = req->rw.len;
Jens Axboe4d954c22020-02-27 07:31:19 -07002361 ssize_t ret;
Jens Axboeedafcce2019-01-09 09:16:05 -07002362 u8 opcode;
2363
Jens Axboed625c6e2019-12-17 19:53:05 -07002364 opcode = req->opcode;
Pavel Begunkov7d009162019-11-25 23:14:40 +03002365 if (opcode == IORING_OP_READ_FIXED || opcode == IORING_OP_WRITE_FIXED) {
Jens Axboeedafcce2019-01-09 09:16:05 -07002366 *iovec = NULL;
Jens Axboe9adbd452019-12-20 08:45:55 -07002367 return io_import_fixed(req, rw, iter);
Jens Axboeedafcce2019-01-09 09:16:05 -07002368 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002369
Jens Axboebcda7ba2020-02-23 16:42:51 -07002370 /* buffer index only valid with fixed read/write, or buffer select */
2371 if (req->rw.kiocb.private && !(req->flags & REQ_F_BUFFER_SELECT))
Jens Axboe9adbd452019-12-20 08:45:55 -07002372 return -EINVAL;
2373
Jens Axboe3a6820f2019-12-22 15:19:35 -07002374 if (opcode == IORING_OP_READ || opcode == IORING_OP_WRITE) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07002375 if (req->flags & REQ_F_BUFFER_SELECT) {
Jens Axboe4d954c22020-02-27 07:31:19 -07002376 buf = io_rw_buffer_select(req, &sqe_len, needs_lock);
2377 if (IS_ERR(buf)) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07002378 *iovec = NULL;
Jens Axboe4d954c22020-02-27 07:31:19 -07002379 return PTR_ERR(buf);
Jens Axboebcda7ba2020-02-23 16:42:51 -07002380 }
Jens Axboe3f9d6442020-03-11 12:27:04 -06002381 req->rw.len = sqe_len;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002382 }
2383
Jens Axboe3a6820f2019-12-22 15:19:35 -07002384 ret = import_single_range(rw, buf, sqe_len, *iovec, iter);
2385 *iovec = NULL;
Jens Axboe3a901592020-02-25 17:48:55 -07002386 return ret < 0 ? ret : sqe_len;
Jens Axboe3a6820f2019-12-22 15:19:35 -07002387 }
2388
Jens Axboef67676d2019-12-02 11:03:47 -07002389 if (req->io) {
2390 struct io_async_rw *iorw = &req->io->rw;
2391
2392 *iovec = iorw->iov;
2393 iov_iter_init(iter, rw, *iovec, iorw->nr_segs, iorw->size);
2394 if (iorw->iov == iorw->fast_iov)
2395 *iovec = NULL;
2396 return iorw->size;
2397 }
2398
Jens Axboe4d954c22020-02-27 07:31:19 -07002399 if (req->flags & REQ_F_BUFFER_SELECT) {
2400 ret = io_iov_buffer_select(req, *iovec, needs_lock);
Jens Axboe3f9d6442020-03-11 12:27:04 -06002401 if (!ret) {
2402 ret = (*iovec)->iov_len;
2403 iov_iter_init(iter, rw, *iovec, 1, ret);
2404 }
Jens Axboe4d954c22020-02-27 07:31:19 -07002405 *iovec = NULL;
2406 return ret;
2407 }
2408
Jens Axboe2b188cc2019-01-07 10:46:33 -07002409#ifdef CONFIG_COMPAT
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002410 if (req->ctx->compat)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002411 return compat_import_iovec(rw, buf, sqe_len, UIO_FASTIOV,
2412 iovec, iter);
2413#endif
2414
2415 return import_iovec(rw, buf, sqe_len, UIO_FASTIOV, iovec, iter);
2416}
2417
Jens Axboe32960612019-09-23 11:05:34 -06002418/*
2419 * For files that don't have ->read_iter() and ->write_iter(), handle them
2420 * by looping over ->read() or ->write() manually.
2421 */
2422static ssize_t loop_rw_iter(int rw, struct file *file, struct kiocb *kiocb,
2423 struct iov_iter *iter)
2424{
2425 ssize_t ret = 0;
2426
2427 /*
2428 * Don't support polled IO through this interface, and we can't
2429 * support non-blocking either. For the latter, this just causes
2430 * the kiocb to be handled from an async context.
2431 */
2432 if (kiocb->ki_flags & IOCB_HIPRI)
2433 return -EOPNOTSUPP;
2434 if (kiocb->ki_flags & IOCB_NOWAIT)
2435 return -EAGAIN;
2436
2437 while (iov_iter_count(iter)) {
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002438 struct iovec iovec;
Jens Axboe32960612019-09-23 11:05:34 -06002439 ssize_t nr;
2440
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002441 if (!iov_iter_is_bvec(iter)) {
2442 iovec = iov_iter_iovec(iter);
2443 } else {
2444 /* fixed buffers import bvec */
2445 iovec.iov_base = kmap(iter->bvec->bv_page)
2446 + iter->iov_offset;
2447 iovec.iov_len = min(iter->count,
2448 iter->bvec->bv_len - iter->iov_offset);
2449 }
2450
Jens Axboe32960612019-09-23 11:05:34 -06002451 if (rw == READ) {
2452 nr = file->f_op->read(file, iovec.iov_base,
2453 iovec.iov_len, &kiocb->ki_pos);
2454 } else {
2455 nr = file->f_op->write(file, iovec.iov_base,
2456 iovec.iov_len, &kiocb->ki_pos);
2457 }
2458
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002459 if (iov_iter_is_bvec(iter))
2460 kunmap(iter->bvec->bv_page);
2461
Jens Axboe32960612019-09-23 11:05:34 -06002462 if (nr < 0) {
2463 if (!ret)
2464 ret = nr;
2465 break;
2466 }
2467 ret += nr;
2468 if (nr != iovec.iov_len)
2469 break;
2470 iov_iter_advance(iter, nr);
2471 }
2472
2473 return ret;
2474}
2475
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002476static void io_req_map_rw(struct io_kiocb *req, ssize_t io_size,
Jens Axboef67676d2019-12-02 11:03:47 -07002477 struct iovec *iovec, struct iovec *fast_iov,
2478 struct iov_iter *iter)
2479{
2480 req->io->rw.nr_segs = iter->nr_segs;
2481 req->io->rw.size = io_size;
2482 req->io->rw.iov = iovec;
2483 if (!req->io->rw.iov) {
2484 req->io->rw.iov = req->io->rw.fast_iov;
Xiaoguang Wang45097da2020-04-08 22:29:58 +08002485 if (req->io->rw.iov != fast_iov)
2486 memcpy(req->io->rw.iov, fast_iov,
2487 sizeof(struct iovec) * iter->nr_segs);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002488 } else {
2489 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboef67676d2019-12-02 11:03:47 -07002490 }
2491}
2492
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08002493static inline int __io_alloc_async_ctx(struct io_kiocb *req)
2494{
2495 req->io = kmalloc(sizeof(*req->io), GFP_KERNEL);
2496 return req->io == NULL;
2497}
2498
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002499static int io_alloc_async_ctx(struct io_kiocb *req)
Jens Axboef67676d2019-12-02 11:03:47 -07002500{
Jens Axboed3656342019-12-18 09:50:26 -07002501 if (!io_op_defs[req->opcode].async_ctx)
2502 return 0;
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08002503
2504 return __io_alloc_async_ctx(req);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002505}
2506
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002507static int io_setup_async_rw(struct io_kiocb *req, ssize_t io_size,
2508 struct iovec *iovec, struct iovec *fast_iov,
2509 struct iov_iter *iter)
2510{
Jens Axboe980ad262020-01-24 23:08:54 -07002511 if (!io_op_defs[req->opcode].async_ctx)
Jens Axboe74566df2020-01-13 19:23:24 -07002512 return 0;
Jens Axboe5d204bc2020-01-31 12:06:52 -07002513 if (!req->io) {
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08002514 if (__io_alloc_async_ctx(req))
Jens Axboe5d204bc2020-01-31 12:06:52 -07002515 return -ENOMEM;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002516
Jens Axboe5d204bc2020-01-31 12:06:52 -07002517 io_req_map_rw(req, io_size, iovec, fast_iov, iter);
2518 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002519 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002520}
2521
Jens Axboe3529d8c2019-12-19 18:24:38 -07002522static int io_read_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2523 bool force_nonblock)
Jens Axboef67676d2019-12-02 11:03:47 -07002524{
Jens Axboe3529d8c2019-12-19 18:24:38 -07002525 struct io_async_ctx *io;
2526 struct iov_iter iter;
Jens Axboef67676d2019-12-02 11:03:47 -07002527 ssize_t ret;
2528
Jens Axboe3529d8c2019-12-19 18:24:38 -07002529 ret = io_prep_rw(req, sqe, force_nonblock);
2530 if (ret)
2531 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07002532
Jens Axboe3529d8c2019-12-19 18:24:38 -07002533 if (unlikely(!(req->file->f_mode & FMODE_READ)))
2534 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07002535
Pavel Begunkov5f798be2020-02-08 13:28:02 +03002536 /* either don't need iovec imported or already have it */
2537 if (!req->io || req->flags & REQ_F_NEED_CLEANUP)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002538 return 0;
2539
2540 io = req->io;
2541 io->rw.iov = io->rw.fast_iov;
2542 req->io = NULL;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002543 ret = io_import_iovec(READ, req, &io->rw.iov, &iter, !force_nonblock);
Jens Axboe3529d8c2019-12-19 18:24:38 -07002544 req->io = io;
2545 if (ret < 0)
2546 return ret;
2547
2548 io_req_map_rw(req, ret, io->rw.iov, io->rw.fast_iov, &iter);
2549 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002550}
2551
Pavel Begunkov014db002020-03-03 21:33:12 +03002552static int io_read(struct io_kiocb *req, bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002553{
2554 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07002555 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002556 struct iov_iter iter;
Jens Axboe31b51512019-01-18 22:56:34 -07002557 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07002558 ssize_t io_size, ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002559
Jens Axboebcda7ba2020-02-23 16:42:51 -07002560 ret = io_import_iovec(READ, req, &iovec, &iter, !force_nonblock);
Jens Axboe06b76d42019-12-19 14:44:26 -07002561 if (ret < 0)
2562 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002563
Jens Axboefd6c2e42019-12-18 12:19:41 -07002564 /* Ensure we clear previously set non-block flag */
2565 if (!force_nonblock)
Jens Axboe29de5f62020-02-20 09:56:08 -07002566 kiocb->ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07002567
Bijan Mottahedeh797f3f52020-01-15 18:37:45 -08002568 req->result = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002569 io_size = ret;
Pavel Begunkovdea3b492020-04-12 02:05:04 +03002570 if (req->flags & REQ_F_LINK_HEAD)
Jens Axboef67676d2019-12-02 11:03:47 -07002571 req->result = io_size;
2572
2573 /*
2574 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
2575 * we know to async punt it even if it was opened O_NONBLOCK
2576 */
Jens Axboeaf197f52020-04-28 13:15:06 -06002577 if (force_nonblock && !io_file_supports_async(req->file, READ))
Jens Axboef67676d2019-12-02 11:03:47 -07002578 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06002579
Jens Axboe31b51512019-01-18 22:56:34 -07002580 iov_count = iov_iter_count(&iter);
Jens Axboe9adbd452019-12-20 08:45:55 -07002581 ret = rw_verify_area(READ, req->file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002582 if (!ret) {
2583 ssize_t ret2;
2584
Jens Axboe9adbd452019-12-20 08:45:55 -07002585 if (req->file->f_op->read_iter)
2586 ret2 = call_read_iter(req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002587 else
Jens Axboe9adbd452019-12-20 08:45:55 -07002588 ret2 = loop_rw_iter(READ, req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002589
Jens Axboe9d93a3f2019-05-15 13:53:07 -06002590 /* Catch -EAGAIN return for forced non-blocking submission */
Jens Axboef67676d2019-12-02 11:03:47 -07002591 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkov014db002020-03-03 21:33:12 +03002592 kiocb_done(kiocb, ret2);
Jens Axboef67676d2019-12-02 11:03:47 -07002593 } else {
2594copy_iov:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002595 ret = io_setup_async_rw(req, io_size, iovec,
Jens Axboef67676d2019-12-02 11:03:47 -07002596 inline_vecs, &iter);
2597 if (ret)
2598 goto out_free;
Jens Axboe29de5f62020-02-20 09:56:08 -07002599 /* any defer here is final, must blocking retry */
Jens Axboe490e8962020-04-28 13:16:53 -06002600 if (!(req->flags & REQ_F_NOWAIT) &&
2601 !file_can_poll(req->file))
Jens Axboe29de5f62020-02-20 09:56:08 -07002602 req->flags |= REQ_F_MUST_PUNT;
Jens Axboef67676d2019-12-02 11:03:47 -07002603 return -EAGAIN;
2604 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002605 }
Jens Axboef67676d2019-12-02 11:03:47 -07002606out_free:
Pavel Begunkov1e950812020-02-06 19:51:16 +03002607 kfree(iovec);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002608 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002609 return ret;
2610}
2611
Jens Axboe3529d8c2019-12-19 18:24:38 -07002612static int io_write_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2613 bool force_nonblock)
Jens Axboef67676d2019-12-02 11:03:47 -07002614{
Jens Axboe3529d8c2019-12-19 18:24:38 -07002615 struct io_async_ctx *io;
2616 struct iov_iter iter;
Jens Axboef67676d2019-12-02 11:03:47 -07002617 ssize_t ret;
2618
Jens Axboe3529d8c2019-12-19 18:24:38 -07002619 ret = io_prep_rw(req, sqe, force_nonblock);
2620 if (ret)
2621 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07002622
Jens Axboe3529d8c2019-12-19 18:24:38 -07002623 if (unlikely(!(req->file->f_mode & FMODE_WRITE)))
2624 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07002625
Jens Axboe4ed734b2020-03-20 11:23:41 -06002626 req->fsize = rlimit(RLIMIT_FSIZE);
2627
Pavel Begunkov5f798be2020-02-08 13:28:02 +03002628 /* either don't need iovec imported or already have it */
2629 if (!req->io || req->flags & REQ_F_NEED_CLEANUP)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002630 return 0;
2631
2632 io = req->io;
2633 io->rw.iov = io->rw.fast_iov;
2634 req->io = NULL;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002635 ret = io_import_iovec(WRITE, req, &io->rw.iov, &iter, !force_nonblock);
Jens Axboe3529d8c2019-12-19 18:24:38 -07002636 req->io = io;
2637 if (ret < 0)
2638 return ret;
2639
2640 io_req_map_rw(req, ret, io->rw.iov, io->rw.fast_iov, &iter);
2641 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002642}
2643
Pavel Begunkov014db002020-03-03 21:33:12 +03002644static int io_write(struct io_kiocb *req, bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002645{
2646 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07002647 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002648 struct iov_iter iter;
Jens Axboe31b51512019-01-18 22:56:34 -07002649 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07002650 ssize_t ret, io_size;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002651
Jens Axboebcda7ba2020-02-23 16:42:51 -07002652 ret = io_import_iovec(WRITE, req, &iovec, &iter, !force_nonblock);
Jens Axboe06b76d42019-12-19 14:44:26 -07002653 if (ret < 0)
2654 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002655
Jens Axboefd6c2e42019-12-18 12:19:41 -07002656 /* Ensure we clear previously set non-block flag */
2657 if (!force_nonblock)
Jens Axboe9adbd452019-12-20 08:45:55 -07002658 req->rw.kiocb.ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07002659
Bijan Mottahedeh797f3f52020-01-15 18:37:45 -08002660 req->result = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002661 io_size = ret;
Pavel Begunkovdea3b492020-04-12 02:05:04 +03002662 if (req->flags & REQ_F_LINK_HEAD)
Jens Axboef67676d2019-12-02 11:03:47 -07002663 req->result = io_size;
2664
2665 /*
2666 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
2667 * we know to async punt it even if it was opened O_NONBLOCK
2668 */
Jens Axboeaf197f52020-04-28 13:15:06 -06002669 if (force_nonblock && !io_file_supports_async(req->file, WRITE))
Jens Axboef67676d2019-12-02 11:03:47 -07002670 goto copy_iov;
Jens Axboef67676d2019-12-02 11:03:47 -07002671
Jens Axboe10d59342019-12-09 20:16:22 -07002672 /* file path doesn't support NOWAIT for non-direct_IO */
2673 if (force_nonblock && !(kiocb->ki_flags & IOCB_DIRECT) &&
2674 (req->flags & REQ_F_ISREG))
Jens Axboef67676d2019-12-02 11:03:47 -07002675 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06002676
Jens Axboe31b51512019-01-18 22:56:34 -07002677 iov_count = iov_iter_count(&iter);
Jens Axboe9adbd452019-12-20 08:45:55 -07002678 ret = rw_verify_area(WRITE, req->file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002679 if (!ret) {
Roman Penyaev9bf79332019-03-25 20:09:24 +01002680 ssize_t ret2;
2681
Jens Axboe2b188cc2019-01-07 10:46:33 -07002682 /*
2683 * Open-code file_start_write here to grab freeze protection,
2684 * which will be released by another thread in
2685 * io_complete_rw(). Fool lockdep by telling it the lock got
2686 * released so that it doesn't complain about the held lock when
2687 * we return to userspace.
2688 */
Jens Axboe491381ce2019-10-17 09:20:46 -06002689 if (req->flags & REQ_F_ISREG) {
Jens Axboe9adbd452019-12-20 08:45:55 -07002690 __sb_start_write(file_inode(req->file)->i_sb,
Jens Axboe2b188cc2019-01-07 10:46:33 -07002691 SB_FREEZE_WRITE, true);
Jens Axboe9adbd452019-12-20 08:45:55 -07002692 __sb_writers_release(file_inode(req->file)->i_sb,
Jens Axboe2b188cc2019-01-07 10:46:33 -07002693 SB_FREEZE_WRITE);
2694 }
2695 kiocb->ki_flags |= IOCB_WRITE;
Roman Penyaev9bf79332019-03-25 20:09:24 +01002696
Jens Axboe4ed734b2020-03-20 11:23:41 -06002697 if (!force_nonblock)
2698 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = req->fsize;
2699
Jens Axboe9adbd452019-12-20 08:45:55 -07002700 if (req->file->f_op->write_iter)
2701 ret2 = call_write_iter(req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002702 else
Jens Axboe9adbd452019-12-20 08:45:55 -07002703 ret2 = loop_rw_iter(WRITE, req->file, kiocb, &iter);
Jens Axboe4ed734b2020-03-20 11:23:41 -06002704
2705 if (!force_nonblock)
2706 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = RLIM_INFINITY;
2707
Jens Axboefaac9962020-02-07 15:45:22 -07002708 /*
Chucheng Luobff60352020-03-25 11:31:38 +08002709 * Raw bdev writes will return -EOPNOTSUPP for IOCB_NOWAIT. Just
Jens Axboefaac9962020-02-07 15:45:22 -07002710 * retry them without IOCB_NOWAIT.
2711 */
2712 if (ret2 == -EOPNOTSUPP && (kiocb->ki_flags & IOCB_NOWAIT))
2713 ret2 = -EAGAIN;
Jens Axboef67676d2019-12-02 11:03:47 -07002714 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkov014db002020-03-03 21:33:12 +03002715 kiocb_done(kiocb, ret2);
Jens Axboef67676d2019-12-02 11:03:47 -07002716 } else {
2717copy_iov:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002718 ret = io_setup_async_rw(req, io_size, iovec,
Jens Axboef67676d2019-12-02 11:03:47 -07002719 inline_vecs, &iter);
2720 if (ret)
2721 goto out_free;
Jens Axboe29de5f62020-02-20 09:56:08 -07002722 /* any defer here is final, must blocking retry */
Jens Axboe490e8962020-04-28 13:16:53 -06002723 if (!file_can_poll(req->file))
2724 req->flags |= REQ_F_MUST_PUNT;
Jens Axboef67676d2019-12-02 11:03:47 -07002725 return -EAGAIN;
2726 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002727 }
Jens Axboe31b51512019-01-18 22:56:34 -07002728out_free:
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002729 req->flags &= ~REQ_F_NEED_CLEANUP;
Pavel Begunkov1e950812020-02-06 19:51:16 +03002730 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002731 return ret;
2732}
2733
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002734static int io_splice_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2735{
2736 struct io_splice* sp = &req->splice;
2737 unsigned int valid_flags = SPLICE_F_FD_IN_FIXED | SPLICE_F_ALL;
2738 int ret;
2739
2740 if (req->flags & REQ_F_NEED_CLEANUP)
2741 return 0;
2742
2743 sp->file_in = NULL;
2744 sp->off_in = READ_ONCE(sqe->splice_off_in);
2745 sp->off_out = READ_ONCE(sqe->off);
2746 sp->len = READ_ONCE(sqe->len);
2747 sp->flags = READ_ONCE(sqe->splice_flags);
2748
2749 if (unlikely(sp->flags & ~valid_flags))
2750 return -EINVAL;
2751
2752 ret = io_file_get(NULL, req, READ_ONCE(sqe->splice_fd_in), &sp->file_in,
2753 (sp->flags & SPLICE_F_FD_IN_FIXED));
2754 if (ret)
2755 return ret;
2756 req->flags |= REQ_F_NEED_CLEANUP;
2757
2758 if (!S_ISREG(file_inode(sp->file_in)->i_mode))
2759 req->work.flags |= IO_WQ_WORK_UNBOUND;
2760
2761 return 0;
2762}
2763
Pavel Begunkov014db002020-03-03 21:33:12 +03002764static int io_splice(struct io_kiocb *req, bool force_nonblock)
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002765{
2766 struct io_splice *sp = &req->splice;
2767 struct file *in = sp->file_in;
2768 struct file *out = sp->file_out;
2769 unsigned int flags = sp->flags & ~SPLICE_F_FD_IN_FIXED;
2770 loff_t *poff_in, *poff_out;
2771 long ret;
2772
Pavel Begunkov2fb3e822020-05-01 17:09:38 +03002773 if (force_nonblock)
2774 return -EAGAIN;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002775
2776 poff_in = (sp->off_in == -1) ? NULL : &sp->off_in;
2777 poff_out = (sp->off_out == -1) ? NULL : &sp->off_out;
2778 ret = do_splice(in, poff_in, out, poff_out, sp->len, flags);
2779 if (force_nonblock && ret == -EAGAIN)
2780 return -EAGAIN;
2781
2782 io_put_file(req, in, (sp->flags & SPLICE_F_FD_IN_FIXED));
2783 req->flags &= ~REQ_F_NEED_CLEANUP;
2784
2785 io_cqring_add_event(req, ret);
2786 if (ret != sp->len)
2787 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03002788 io_put_req(req);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002789 return 0;
2790}
2791
Jens Axboe2b188cc2019-01-07 10:46:33 -07002792/*
2793 * IORING_OP_NOP just posts a completion event, nothing else.
2794 */
Jens Axboe78e19bb2019-11-06 15:21:34 -07002795static int io_nop(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002796{
2797 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002798
Jens Axboedef596e2019-01-09 08:59:42 -07002799 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
2800 return -EINVAL;
2801
Jens Axboe78e19bb2019-11-06 15:21:34 -07002802 io_cqring_add_event(req, 0);
Jens Axboee65ef562019-03-12 10:16:44 -06002803 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002804 return 0;
2805}
2806
Jens Axboe3529d8c2019-12-19 18:24:38 -07002807static int io_prep_fsync(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002808{
Jens Axboe6b063142019-01-10 22:13:58 -07002809 struct io_ring_ctx *ctx = req->ctx;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002810
Jens Axboe09bb8392019-03-13 12:39:28 -06002811 if (!req->file)
2812 return -EBADF;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002813
Jens Axboe6b063142019-01-10 22:13:58 -07002814 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboedef596e2019-01-09 08:59:42 -07002815 return -EINVAL;
Jens Axboeedafcce2019-01-09 09:16:05 -07002816 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002817 return -EINVAL;
2818
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002819 req->sync.flags = READ_ONCE(sqe->fsync_flags);
2820 if (unlikely(req->sync.flags & ~IORING_FSYNC_DATASYNC))
2821 return -EINVAL;
2822
2823 req->sync.off = READ_ONCE(sqe->off);
2824 req->sync.len = READ_ONCE(sqe->len);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002825 return 0;
2826}
2827
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002828static bool io_req_cancelled(struct io_kiocb *req)
2829{
2830 if (req->work.flags & IO_WQ_WORK_CANCEL) {
2831 req_set_fail_links(req);
2832 io_cqring_add_event(req, -ECANCELED);
2833 io_put_req(req);
2834 return true;
2835 }
2836
2837 return false;
2838}
2839
Pavel Begunkov014db002020-03-03 21:33:12 +03002840static void __io_fsync(struct io_kiocb *req)
Jens Axboe78912932020-01-14 22:09:06 -07002841{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002842 loff_t end = req->sync.off + req->sync.len;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002843 int ret;
2844
Jens Axboe9adbd452019-12-20 08:45:55 -07002845 ret = vfs_fsync_range(req->file, req->sync.off,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002846 end > 0 ? end : LLONG_MAX,
2847 req->sync.flags & IORING_FSYNC_DATASYNC);
2848 if (ret < 0)
2849 req_set_fail_links(req);
2850 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03002851 io_put_req(req);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002852}
2853
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002854static void io_fsync_finish(struct io_wq_work **workptr)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002855{
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002856 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002857
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002858 if (io_req_cancelled(req))
2859 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03002860 __io_fsync(req);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03002861 io_steal_work(req, workptr);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002862}
2863
Pavel Begunkov014db002020-03-03 21:33:12 +03002864static int io_fsync(struct io_kiocb *req, bool force_nonblock)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002865{
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002866 /* fsync always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002867 if (force_nonblock) {
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002868 req->work.func = io_fsync_finish;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002869 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002870 }
Pavel Begunkov014db002020-03-03 21:33:12 +03002871 __io_fsync(req);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002872 return 0;
2873}
2874
Pavel Begunkov014db002020-03-03 21:33:12 +03002875static void __io_fallocate(struct io_kiocb *req)
Jens Axboed63d1b52019-12-10 10:38:56 -07002876{
Jens Axboed63d1b52019-12-10 10:38:56 -07002877 int ret;
2878
Jens Axboe4ed734b2020-03-20 11:23:41 -06002879 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = req->fsize;
Jens Axboed63d1b52019-12-10 10:38:56 -07002880 ret = vfs_fallocate(req->file, req->sync.mode, req->sync.off,
2881 req->sync.len);
Jens Axboe4ed734b2020-03-20 11:23:41 -06002882 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = RLIM_INFINITY;
Jens Axboed63d1b52019-12-10 10:38:56 -07002883 if (ret < 0)
2884 req_set_fail_links(req);
2885 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03002886 io_put_req(req);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002887}
2888
Jens Axboe2b188cc2019-01-07 10:46:33 -07002889static void io_fallocate_finish(struct io_wq_work **workptr)
2890{
2891 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Jens Axboed63d1b52019-12-10 10:38:56 -07002892
2893 if (io_req_cancelled(req))
2894 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03002895 __io_fallocate(req);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03002896 io_steal_work(req, workptr);
Jens Axboed63d1b52019-12-10 10:38:56 -07002897}
2898
2899static int io_fallocate_prep(struct io_kiocb *req,
2900 const struct io_uring_sqe *sqe)
2901{
2902 if (sqe->ioprio || sqe->buf_index || sqe->rw_flags)
2903 return -EINVAL;
2904
2905 req->sync.off = READ_ONCE(sqe->off);
2906 req->sync.len = READ_ONCE(sqe->addr);
2907 req->sync.mode = READ_ONCE(sqe->len);
Jens Axboe4ed734b2020-03-20 11:23:41 -06002908 req->fsize = rlimit(RLIMIT_FSIZE);
Jens Axboed63d1b52019-12-10 10:38:56 -07002909 return 0;
2910}
2911
Pavel Begunkov014db002020-03-03 21:33:12 +03002912static int io_fallocate(struct io_kiocb *req, bool force_nonblock)
Jens Axboed63d1b52019-12-10 10:38:56 -07002913{
Jens Axboed63d1b52019-12-10 10:38:56 -07002914 /* fallocate always requiring blocking context */
2915 if (force_nonblock) {
Jens Axboed63d1b52019-12-10 10:38:56 -07002916 req->work.func = io_fallocate_finish;
2917 return -EAGAIN;
2918 }
2919
Pavel Begunkov014db002020-03-03 21:33:12 +03002920 __io_fallocate(req);
Jens Axboed63d1b52019-12-10 10:38:56 -07002921 return 0;
2922}
2923
Jens Axboe15b71ab2019-12-11 11:20:36 -07002924static int io_openat_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2925{
Jens Axboef8748882020-01-08 17:47:02 -07002926 const char __user *fname;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002927 int ret;
2928
2929 if (sqe->ioprio || sqe->buf_index)
2930 return -EINVAL;
Pavel Begunkov9c280f92020-04-08 08:58:46 +03002931 if (req->flags & REQ_F_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07002932 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03002933 if (req->flags & REQ_F_NEED_CLEANUP)
2934 return 0;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002935
2936 req->open.dfd = READ_ONCE(sqe->fd);
Jens Axboec12cedf2020-01-08 17:41:21 -07002937 req->open.how.mode = READ_ONCE(sqe->len);
Jens Axboef8748882020-01-08 17:47:02 -07002938 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboec12cedf2020-01-08 17:41:21 -07002939 req->open.how.flags = READ_ONCE(sqe->open_flags);
Jens Axboe08a1d26eb2020-04-08 09:20:54 -06002940 if (force_o_largefile())
2941 req->open.how.flags |= O_LARGEFILE;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002942
Jens Axboef8748882020-01-08 17:47:02 -07002943 req->open.filename = getname(fname);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002944 if (IS_ERR(req->open.filename)) {
2945 ret = PTR_ERR(req->open.filename);
2946 req->open.filename = NULL;
2947 return ret;
2948 }
2949
Jens Axboe4022e7a2020-03-19 19:23:18 -06002950 req->open.nofile = rlimit(RLIMIT_NOFILE);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03002951 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002952 return 0;
2953}
2954
Jens Axboecebdb982020-01-08 17:59:24 -07002955static int io_openat2_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2956{
2957 struct open_how __user *how;
2958 const char __user *fname;
2959 size_t len;
2960 int ret;
2961
2962 if (sqe->ioprio || sqe->buf_index)
2963 return -EINVAL;
Pavel Begunkov9c280f92020-04-08 08:58:46 +03002964 if (req->flags & REQ_F_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07002965 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03002966 if (req->flags & REQ_F_NEED_CLEANUP)
2967 return 0;
Jens Axboecebdb982020-01-08 17:59:24 -07002968
2969 req->open.dfd = READ_ONCE(sqe->fd);
2970 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
2971 how = u64_to_user_ptr(READ_ONCE(sqe->addr2));
2972 len = READ_ONCE(sqe->len);
2973
2974 if (len < OPEN_HOW_SIZE_VER0)
2975 return -EINVAL;
2976
2977 ret = copy_struct_from_user(&req->open.how, sizeof(req->open.how), how,
2978 len);
2979 if (ret)
2980 return ret;
2981
2982 if (!(req->open.how.flags & O_PATH) && force_o_largefile())
2983 req->open.how.flags |= O_LARGEFILE;
2984
2985 req->open.filename = getname(fname);
2986 if (IS_ERR(req->open.filename)) {
2987 ret = PTR_ERR(req->open.filename);
2988 req->open.filename = NULL;
2989 return ret;
2990 }
2991
Jens Axboe4022e7a2020-03-19 19:23:18 -06002992 req->open.nofile = rlimit(RLIMIT_NOFILE);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03002993 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboecebdb982020-01-08 17:59:24 -07002994 return 0;
2995}
2996
Pavel Begunkov014db002020-03-03 21:33:12 +03002997static int io_openat2(struct io_kiocb *req, bool force_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07002998{
2999 struct open_flags op;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003000 struct file *file;
3001 int ret;
3002
Jens Axboef86cd202020-01-29 13:46:44 -07003003 if (force_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07003004 return -EAGAIN;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003005
Jens Axboecebdb982020-01-08 17:59:24 -07003006 ret = build_open_flags(&req->open.how, &op);
Jens Axboe15b71ab2019-12-11 11:20:36 -07003007 if (ret)
3008 goto err;
3009
Jens Axboe4022e7a2020-03-19 19:23:18 -06003010 ret = __get_unused_fd_flags(req->open.how.flags, req->open.nofile);
Jens Axboe15b71ab2019-12-11 11:20:36 -07003011 if (ret < 0)
3012 goto err;
3013
3014 file = do_filp_open(req->open.dfd, req->open.filename, &op);
3015 if (IS_ERR(file)) {
3016 put_unused_fd(ret);
3017 ret = PTR_ERR(file);
3018 } else {
3019 fsnotify_open(file);
3020 fd_install(ret, file);
3021 }
3022err:
3023 putname(req->open.filename);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003024 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003025 if (ret < 0)
3026 req_set_fail_links(req);
3027 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003028 io_put_req(req);
Jens Axboe15b71ab2019-12-11 11:20:36 -07003029 return 0;
3030}
3031
Pavel Begunkov014db002020-03-03 21:33:12 +03003032static int io_openat(struct io_kiocb *req, bool force_nonblock)
Jens Axboecebdb982020-01-08 17:59:24 -07003033{
3034 req->open.how = build_open_how(req->open.how.flags, req->open.how.mode);
Pavel Begunkov014db002020-03-03 21:33:12 +03003035 return io_openat2(req, force_nonblock);
Jens Axboecebdb982020-01-08 17:59:24 -07003036}
3037
Jens Axboe067524e2020-03-02 16:32:28 -07003038static int io_remove_buffers_prep(struct io_kiocb *req,
3039 const struct io_uring_sqe *sqe)
3040{
3041 struct io_provide_buf *p = &req->pbuf;
3042 u64 tmp;
3043
3044 if (sqe->ioprio || sqe->rw_flags || sqe->addr || sqe->len || sqe->off)
3045 return -EINVAL;
3046
3047 tmp = READ_ONCE(sqe->fd);
3048 if (!tmp || tmp > USHRT_MAX)
3049 return -EINVAL;
3050
3051 memset(p, 0, sizeof(*p));
3052 p->nbufs = tmp;
3053 p->bgid = READ_ONCE(sqe->buf_group);
3054 return 0;
3055}
3056
3057static int __io_remove_buffers(struct io_ring_ctx *ctx, struct io_buffer *buf,
3058 int bgid, unsigned nbufs)
3059{
3060 unsigned i = 0;
3061
3062 /* shouldn't happen */
3063 if (!nbufs)
3064 return 0;
3065
3066 /* the head kbuf is the list itself */
3067 while (!list_empty(&buf->list)) {
3068 struct io_buffer *nxt;
3069
3070 nxt = list_first_entry(&buf->list, struct io_buffer, list);
3071 list_del(&nxt->list);
3072 kfree(nxt);
3073 if (++i == nbufs)
3074 return i;
3075 }
3076 i++;
3077 kfree(buf);
3078 idr_remove(&ctx->io_buffer_idr, bgid);
3079
3080 return i;
3081}
3082
3083static int io_remove_buffers(struct io_kiocb *req, bool force_nonblock)
3084{
3085 struct io_provide_buf *p = &req->pbuf;
3086 struct io_ring_ctx *ctx = req->ctx;
3087 struct io_buffer *head;
3088 int ret = 0;
3089
3090 io_ring_submit_lock(ctx, !force_nonblock);
3091
3092 lockdep_assert_held(&ctx->uring_lock);
3093
3094 ret = -ENOENT;
3095 head = idr_find(&ctx->io_buffer_idr, p->bgid);
3096 if (head)
3097 ret = __io_remove_buffers(ctx, head, p->bgid, p->nbufs);
3098
3099 io_ring_submit_lock(ctx, !force_nonblock);
3100 if (ret < 0)
3101 req_set_fail_links(req);
3102 io_cqring_add_event(req, ret);
3103 io_put_req(req);
3104 return 0;
3105}
3106
Jens Axboeddf0322d2020-02-23 16:41:33 -07003107static int io_provide_buffers_prep(struct io_kiocb *req,
3108 const struct io_uring_sqe *sqe)
3109{
3110 struct io_provide_buf *p = &req->pbuf;
3111 u64 tmp;
3112
3113 if (sqe->ioprio || sqe->rw_flags)
3114 return -EINVAL;
3115
3116 tmp = READ_ONCE(sqe->fd);
3117 if (!tmp || tmp > USHRT_MAX)
3118 return -E2BIG;
3119 p->nbufs = tmp;
3120 p->addr = READ_ONCE(sqe->addr);
3121 p->len = READ_ONCE(sqe->len);
3122
3123 if (!access_ok(u64_to_user_ptr(p->addr), p->len))
3124 return -EFAULT;
3125
3126 p->bgid = READ_ONCE(sqe->buf_group);
3127 tmp = READ_ONCE(sqe->off);
3128 if (tmp > USHRT_MAX)
3129 return -E2BIG;
3130 p->bid = tmp;
3131 return 0;
3132}
3133
3134static int io_add_buffers(struct io_provide_buf *pbuf, struct io_buffer **head)
3135{
3136 struct io_buffer *buf;
3137 u64 addr = pbuf->addr;
3138 int i, bid = pbuf->bid;
3139
3140 for (i = 0; i < pbuf->nbufs; i++) {
3141 buf = kmalloc(sizeof(*buf), GFP_KERNEL);
3142 if (!buf)
3143 break;
3144
3145 buf->addr = addr;
3146 buf->len = pbuf->len;
3147 buf->bid = bid;
3148 addr += pbuf->len;
3149 bid++;
3150 if (!*head) {
3151 INIT_LIST_HEAD(&buf->list);
3152 *head = buf;
3153 } else {
3154 list_add_tail(&buf->list, &(*head)->list);
3155 }
3156 }
3157
3158 return i ? i : -ENOMEM;
3159}
3160
Jens Axboeddf0322d2020-02-23 16:41:33 -07003161static int io_provide_buffers(struct io_kiocb *req, bool force_nonblock)
3162{
3163 struct io_provide_buf *p = &req->pbuf;
3164 struct io_ring_ctx *ctx = req->ctx;
3165 struct io_buffer *head, *list;
3166 int ret = 0;
3167
3168 io_ring_submit_lock(ctx, !force_nonblock);
3169
3170 lockdep_assert_held(&ctx->uring_lock);
3171
3172 list = head = idr_find(&ctx->io_buffer_idr, p->bgid);
3173
3174 ret = io_add_buffers(p, &head);
3175 if (ret < 0)
3176 goto out;
3177
3178 if (!list) {
3179 ret = idr_alloc(&ctx->io_buffer_idr, head, p->bgid, p->bgid + 1,
3180 GFP_KERNEL);
3181 if (ret < 0) {
Jens Axboe067524e2020-03-02 16:32:28 -07003182 __io_remove_buffers(ctx, head, p->bgid, -1U);
Jens Axboeddf0322d2020-02-23 16:41:33 -07003183 goto out;
3184 }
3185 }
3186out:
3187 io_ring_submit_unlock(ctx, !force_nonblock);
3188 if (ret < 0)
3189 req_set_fail_links(req);
3190 io_cqring_add_event(req, ret);
3191 io_put_req(req);
3192 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003193}
3194
Jens Axboe3e4827b2020-01-08 15:18:09 -07003195static int io_epoll_ctl_prep(struct io_kiocb *req,
3196 const struct io_uring_sqe *sqe)
3197{
3198#if defined(CONFIG_EPOLL)
3199 if (sqe->ioprio || sqe->buf_index)
3200 return -EINVAL;
3201
3202 req->epoll.epfd = READ_ONCE(sqe->fd);
3203 req->epoll.op = READ_ONCE(sqe->len);
3204 req->epoll.fd = READ_ONCE(sqe->off);
3205
3206 if (ep_op_has_event(req->epoll.op)) {
3207 struct epoll_event __user *ev;
3208
3209 ev = u64_to_user_ptr(READ_ONCE(sqe->addr));
3210 if (copy_from_user(&req->epoll.event, ev, sizeof(*ev)))
3211 return -EFAULT;
3212 }
3213
3214 return 0;
3215#else
3216 return -EOPNOTSUPP;
3217#endif
3218}
3219
Pavel Begunkov014db002020-03-03 21:33:12 +03003220static int io_epoll_ctl(struct io_kiocb *req, bool force_nonblock)
Jens Axboe3e4827b2020-01-08 15:18:09 -07003221{
3222#if defined(CONFIG_EPOLL)
3223 struct io_epoll *ie = &req->epoll;
3224 int ret;
3225
3226 ret = do_epoll_ctl(ie->epfd, ie->op, ie->fd, &ie->event, force_nonblock);
3227 if (force_nonblock && ret == -EAGAIN)
3228 return -EAGAIN;
3229
3230 if (ret < 0)
3231 req_set_fail_links(req);
3232 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003233 io_put_req(req);
Jens Axboe3e4827b2020-01-08 15:18:09 -07003234 return 0;
3235#else
3236 return -EOPNOTSUPP;
3237#endif
3238}
3239
Jens Axboec1ca7572019-12-25 22:18:28 -07003240static int io_madvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3241{
3242#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
3243 if (sqe->ioprio || sqe->buf_index || sqe->off)
3244 return -EINVAL;
3245
3246 req->madvise.addr = READ_ONCE(sqe->addr);
3247 req->madvise.len = READ_ONCE(sqe->len);
3248 req->madvise.advice = READ_ONCE(sqe->fadvise_advice);
3249 return 0;
3250#else
3251 return -EOPNOTSUPP;
3252#endif
3253}
3254
Pavel Begunkov014db002020-03-03 21:33:12 +03003255static int io_madvise(struct io_kiocb *req, bool force_nonblock)
Jens Axboec1ca7572019-12-25 22:18:28 -07003256{
3257#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
3258 struct io_madvise *ma = &req->madvise;
3259 int ret;
3260
3261 if (force_nonblock)
3262 return -EAGAIN;
3263
3264 ret = do_madvise(ma->addr, ma->len, ma->advice);
3265 if (ret < 0)
3266 req_set_fail_links(req);
3267 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003268 io_put_req(req);
Jens Axboec1ca7572019-12-25 22:18:28 -07003269 return 0;
3270#else
3271 return -EOPNOTSUPP;
3272#endif
3273}
3274
Jens Axboe4840e412019-12-25 22:03:45 -07003275static int io_fadvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3276{
3277 if (sqe->ioprio || sqe->buf_index || sqe->addr)
3278 return -EINVAL;
3279
3280 req->fadvise.offset = READ_ONCE(sqe->off);
3281 req->fadvise.len = READ_ONCE(sqe->len);
3282 req->fadvise.advice = READ_ONCE(sqe->fadvise_advice);
3283 return 0;
3284}
3285
Pavel Begunkov014db002020-03-03 21:33:12 +03003286static int io_fadvise(struct io_kiocb *req, bool force_nonblock)
Jens Axboe4840e412019-12-25 22:03:45 -07003287{
3288 struct io_fadvise *fa = &req->fadvise;
3289 int ret;
3290
Jens Axboe3e694262020-02-01 09:22:49 -07003291 if (force_nonblock) {
3292 switch (fa->advice) {
3293 case POSIX_FADV_NORMAL:
3294 case POSIX_FADV_RANDOM:
3295 case POSIX_FADV_SEQUENTIAL:
3296 break;
3297 default:
3298 return -EAGAIN;
3299 }
3300 }
Jens Axboe4840e412019-12-25 22:03:45 -07003301
3302 ret = vfs_fadvise(req->file, fa->offset, fa->len, fa->advice);
3303 if (ret < 0)
3304 req_set_fail_links(req);
3305 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003306 io_put_req(req);
Jens Axboe4840e412019-12-25 22:03:45 -07003307 return 0;
3308}
3309
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003310static int io_statx_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3311{
Jens Axboef8748882020-01-08 17:47:02 -07003312 const char __user *fname;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003313 unsigned lookup_flags;
3314 int ret;
3315
3316 if (sqe->ioprio || sqe->buf_index)
3317 return -EINVAL;
Pavel Begunkov9c280f92020-04-08 08:58:46 +03003318 if (req->flags & REQ_F_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07003319 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03003320 if (req->flags & REQ_F_NEED_CLEANUP)
3321 return 0;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003322
3323 req->open.dfd = READ_ONCE(sqe->fd);
3324 req->open.mask = READ_ONCE(sqe->len);
Jens Axboef8748882020-01-08 17:47:02 -07003325 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003326 req->open.buffer = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboec12cedf2020-01-08 17:41:21 -07003327 req->open.how.flags = READ_ONCE(sqe->statx_flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003328
Jens Axboec12cedf2020-01-08 17:41:21 -07003329 if (vfs_stat_set_lookup_flags(&lookup_flags, req->open.how.flags))
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003330 return -EINVAL;
3331
Jens Axboef8748882020-01-08 17:47:02 -07003332 req->open.filename = getname_flags(fname, lookup_flags, NULL);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003333 if (IS_ERR(req->open.filename)) {
3334 ret = PTR_ERR(req->open.filename);
3335 req->open.filename = NULL;
3336 return ret;
3337 }
3338
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003339 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003340 return 0;
3341}
3342
Pavel Begunkov014db002020-03-03 21:33:12 +03003343static int io_statx(struct io_kiocb *req, bool force_nonblock)
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003344{
3345 struct io_open *ctx = &req->open;
3346 unsigned lookup_flags;
3347 struct path path;
3348 struct kstat stat;
3349 int ret;
3350
Jens Axboe5b0bbee2020-04-27 10:41:22 -06003351 if (force_nonblock) {
3352 /* only need file table for an actual valid fd */
3353 if (ctx->dfd == -1 || ctx->dfd == AT_FDCWD)
3354 req->flags |= REQ_F_NO_FILE_TABLE;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003355 return -EAGAIN;
Jens Axboe5b0bbee2020-04-27 10:41:22 -06003356 }
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003357
Jens Axboec12cedf2020-01-08 17:41:21 -07003358 if (vfs_stat_set_lookup_flags(&lookup_flags, ctx->how.flags))
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003359 return -EINVAL;
3360
3361retry:
3362 /* filename_lookup() drops it, keep a reference */
3363 ctx->filename->refcnt++;
3364
3365 ret = filename_lookup(ctx->dfd, ctx->filename, lookup_flags, &path,
3366 NULL);
3367 if (ret)
3368 goto err;
3369
Jens Axboec12cedf2020-01-08 17:41:21 -07003370 ret = vfs_getattr(&path, &stat, ctx->mask, ctx->how.flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003371 path_put(&path);
3372 if (retry_estale(ret, lookup_flags)) {
3373 lookup_flags |= LOOKUP_REVAL;
3374 goto retry;
3375 }
3376 if (!ret)
3377 ret = cp_statx(&stat, ctx->buffer);
3378err:
3379 putname(ctx->filename);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003380 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003381 if (ret < 0)
3382 req_set_fail_links(req);
3383 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003384 io_put_req(req);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003385 return 0;
3386}
3387
Jens Axboeb5dba592019-12-11 14:02:38 -07003388static int io_close_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3389{
3390 /*
3391 * If we queue this for async, it must not be cancellable. That would
3392 * leave the 'file' in an undeterminate state.
3393 */
3394 req->work.flags |= IO_WQ_WORK_NO_CANCEL;
3395
3396 if (sqe->ioprio || sqe->off || sqe->addr || sqe->len ||
3397 sqe->rw_flags || sqe->buf_index)
3398 return -EINVAL;
Pavel Begunkov9c280f92020-04-08 08:58:46 +03003399 if (req->flags & REQ_F_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07003400 return -EBADF;
Jens Axboeb5dba592019-12-11 14:02:38 -07003401
3402 req->close.fd = READ_ONCE(sqe->fd);
Jens Axboeb5dba592019-12-11 14:02:38 -07003403 return 0;
3404}
3405
Pavel Begunkova93b3332020-02-08 14:04:34 +03003406/* only called when __close_fd_get_file() is done */
Pavel Begunkov014db002020-03-03 21:33:12 +03003407static void __io_close_finish(struct io_kiocb *req)
Pavel Begunkova93b3332020-02-08 14:04:34 +03003408{
3409 int ret;
3410
3411 ret = filp_close(req->close.put_file, req->work.files);
3412 if (ret < 0)
3413 req_set_fail_links(req);
3414 io_cqring_add_event(req, ret);
3415 fput(req->close.put_file);
Pavel Begunkov014db002020-03-03 21:33:12 +03003416 io_put_req(req);
Pavel Begunkova93b3332020-02-08 14:04:34 +03003417}
3418
Jens Axboeb5dba592019-12-11 14:02:38 -07003419static void io_close_finish(struct io_wq_work **workptr)
3420{
3421 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Jens Axboeb5dba592019-12-11 14:02:38 -07003422
Pavel Begunkov7fbeb952020-02-16 01:01:18 +03003423 /* not cancellable, don't do io_req_cancelled() */
Pavel Begunkov014db002020-03-03 21:33:12 +03003424 __io_close_finish(req);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03003425 io_steal_work(req, workptr);
Jens Axboeb5dba592019-12-11 14:02:38 -07003426}
3427
Pavel Begunkov014db002020-03-03 21:33:12 +03003428static int io_close(struct io_kiocb *req, bool force_nonblock)
Jens Axboeb5dba592019-12-11 14:02:38 -07003429{
3430 int ret;
3431
3432 req->close.put_file = NULL;
3433 ret = __close_fd_get_file(req->close.fd, &req->close.put_file);
Jens Axboe904fbcb2020-05-08 21:27:24 -06003434 if (ret < 0) {
3435 if (ret == -ENOENT)
3436 ret = -EBADF;
Jens Axboeb5dba592019-12-11 14:02:38 -07003437 return ret;
Jens Axboe904fbcb2020-05-08 21:27:24 -06003438 }
Jens Axboeb5dba592019-12-11 14:02:38 -07003439
3440 /* if the file has a flush method, be safe and punt to async */
Pavel Begunkova2100672020-03-02 23:45:16 +03003441 if (req->close.put_file->f_op->flush && force_nonblock) {
Pavel Begunkov594506f2020-03-03 21:33:11 +03003442 /* submission ref will be dropped, take it for async */
3443 refcount_inc(&req->refs);
3444
Pavel Begunkova2100672020-03-02 23:45:16 +03003445 req->work.func = io_close_finish;
3446 /*
3447 * Do manual async queue here to avoid grabbing files - we don't
3448 * need the files, and it'll cause io_close_finish() to close
3449 * the file again and cause a double CQE entry for this request
3450 */
3451 io_queue_async_work(req);
3452 return 0;
3453 }
Jens Axboeb5dba592019-12-11 14:02:38 -07003454
3455 /*
3456 * No ->flush(), safely close from here and just punt the
3457 * fput() to async context.
3458 */
Pavel Begunkov014db002020-03-03 21:33:12 +03003459 __io_close_finish(req);
Jens Axboe1a417f42020-01-31 17:16:48 -07003460 return 0;
Jens Axboeb5dba592019-12-11 14:02:38 -07003461}
3462
Jens Axboe3529d8c2019-12-19 18:24:38 -07003463static int io_prep_sfr(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003464{
3465 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003466
3467 if (!req->file)
3468 return -EBADF;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003469
3470 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
3471 return -EINVAL;
3472 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
3473 return -EINVAL;
3474
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003475 req->sync.off = READ_ONCE(sqe->off);
3476 req->sync.len = READ_ONCE(sqe->len);
3477 req->sync.flags = READ_ONCE(sqe->sync_range_flags);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003478 return 0;
3479}
3480
Pavel Begunkov014db002020-03-03 21:33:12 +03003481static void __io_sync_file_range(struct io_kiocb *req)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003482{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003483 int ret;
3484
Jens Axboe9adbd452019-12-20 08:45:55 -07003485 ret = sync_file_range(req->file, req->sync.off, req->sync.len,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003486 req->sync.flags);
3487 if (ret < 0)
3488 req_set_fail_links(req);
3489 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003490 io_put_req(req);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03003491}
3492
3493
3494static void io_sync_file_range_finish(struct io_wq_work **workptr)
3495{
3496 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03003497
3498 if (io_req_cancelled(req))
3499 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03003500 __io_sync_file_range(req);
Pavel Begunkov7759a0b2020-05-01 17:09:36 +03003501 io_steal_work(req, workptr);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003502}
3503
Pavel Begunkov014db002020-03-03 21:33:12 +03003504static int io_sync_file_range(struct io_kiocb *req, bool force_nonblock)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003505{
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003506 /* sync_file_range always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003507 if (force_nonblock) {
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003508 req->work.func = io_sync_file_range_finish;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003509 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003510 }
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003511
Pavel Begunkov014db002020-03-03 21:33:12 +03003512 __io_sync_file_range(req);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003513 return 0;
3514}
3515
YueHaibing469956e2020-03-04 15:53:52 +08003516#if defined(CONFIG_NET)
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003517static int io_setup_async_msg(struct io_kiocb *req,
3518 struct io_async_msghdr *kmsg)
3519{
3520 if (req->io)
3521 return -EAGAIN;
3522 if (io_alloc_async_ctx(req)) {
3523 if (kmsg->iov != kmsg->fast_iov)
3524 kfree(kmsg->iov);
3525 return -ENOMEM;
3526 }
3527 req->flags |= REQ_F_NEED_CLEANUP;
3528 memcpy(&req->io->msg, kmsg, sizeof(*kmsg));
3529 return -EAGAIN;
3530}
3531
Jens Axboe3529d8c2019-12-19 18:24:38 -07003532static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboeaa1fa282019-04-19 13:38:09 -06003533{
Jens Axboee47293f2019-12-20 08:58:21 -07003534 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003535 struct io_async_ctx *io = req->io;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003536 int ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003537
Jens Axboee47293f2019-12-20 08:58:21 -07003538 sr->msg_flags = READ_ONCE(sqe->msg_flags);
3539 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboefddafac2020-01-04 20:19:44 -07003540 sr->len = READ_ONCE(sqe->len);
Jens Axboe3529d8c2019-12-19 18:24:38 -07003541
Jens Axboed8768362020-02-27 14:17:49 -07003542#ifdef CONFIG_COMPAT
3543 if (req->ctx->compat)
3544 sr->msg_flags |= MSG_CMSG_COMPAT;
3545#endif
3546
Jens Axboefddafac2020-01-04 20:19:44 -07003547 if (!io || req->opcode == IORING_OP_SEND)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003548 return 0;
Pavel Begunkov5f798be2020-02-08 13:28:02 +03003549 /* iovec is already imported */
3550 if (req->flags & REQ_F_NEED_CLEANUP)
3551 return 0;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003552
Jens Axboed9688562019-12-09 19:35:20 -07003553 io->msg.iov = io->msg.fast_iov;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003554 ret = sendmsg_copy_msghdr(&io->msg.msg, sr->msg, sr->msg_flags,
Jens Axboee47293f2019-12-20 08:58:21 -07003555 &io->msg.iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003556 if (!ret)
3557 req->flags |= REQ_F_NEED_CLEANUP;
3558 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003559}
3560
Pavel Begunkov014db002020-03-03 21:33:12 +03003561static int io_sendmsg(struct io_kiocb *req, bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07003562{
Jens Axboe0b416c32019-12-15 10:57:46 -07003563 struct io_async_msghdr *kmsg = NULL;
Jens Axboe03b12302019-12-02 18:50:25 -07003564 struct socket *sock;
3565 int ret;
3566
3567 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3568 return -EINVAL;
3569
3570 sock = sock_from_file(req->file, &ret);
3571 if (sock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003572 struct io_async_ctx io;
Jens Axboe03b12302019-12-02 18:50:25 -07003573 unsigned flags;
3574
Jens Axboe03b12302019-12-02 18:50:25 -07003575 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07003576 kmsg = &req->io->msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003577 kmsg->msg.msg_name = &req->io->msg.addr;
Jens Axboe0b416c32019-12-15 10:57:46 -07003578 /* if iov is set, it's allocated already */
3579 if (!kmsg->iov)
3580 kmsg->iov = kmsg->fast_iov;
3581 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07003582 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07003583 struct io_sr_msg *sr = &req->sr_msg;
3584
Jens Axboe0b416c32019-12-15 10:57:46 -07003585 kmsg = &io.msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003586 kmsg->msg.msg_name = &io.msg.addr;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003587
3588 io.msg.iov = io.msg.fast_iov;
3589 ret = sendmsg_copy_msghdr(&io.msg.msg, sr->msg,
3590 sr->msg_flags, &io.msg.iov);
Jens Axboe03b12302019-12-02 18:50:25 -07003591 if (ret)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003592 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003593 }
3594
Jens Axboee47293f2019-12-20 08:58:21 -07003595 flags = req->sr_msg.msg_flags;
3596 if (flags & MSG_DONTWAIT)
3597 req->flags |= REQ_F_NOWAIT;
3598 else if (force_nonblock)
3599 flags |= MSG_DONTWAIT;
3600
Jens Axboe0b416c32019-12-15 10:57:46 -07003601 ret = __sys_sendmsg_sock(sock, &kmsg->msg, flags);
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003602 if (force_nonblock && ret == -EAGAIN)
3603 return io_setup_async_msg(req, kmsg);
Jens Axboe03b12302019-12-02 18:50:25 -07003604 if (ret == -ERESTARTSYS)
3605 ret = -EINTR;
3606 }
3607
Pavel Begunkov1e950812020-02-06 19:51:16 +03003608 if (kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07003609 kfree(kmsg->iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003610 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe03b12302019-12-02 18:50:25 -07003611 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003612 if (ret < 0)
3613 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003614 io_put_req(req);
Jens Axboe03b12302019-12-02 18:50:25 -07003615 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07003616}
3617
Pavel Begunkov014db002020-03-03 21:33:12 +03003618static int io_send(struct io_kiocb *req, bool force_nonblock)
Jens Axboefddafac2020-01-04 20:19:44 -07003619{
Jens Axboefddafac2020-01-04 20:19:44 -07003620 struct socket *sock;
3621 int ret;
3622
3623 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3624 return -EINVAL;
3625
3626 sock = sock_from_file(req->file, &ret);
3627 if (sock) {
3628 struct io_sr_msg *sr = &req->sr_msg;
3629 struct msghdr msg;
3630 struct iovec iov;
3631 unsigned flags;
3632
3633 ret = import_single_range(WRITE, sr->buf, sr->len, &iov,
3634 &msg.msg_iter);
3635 if (ret)
3636 return ret;
3637
3638 msg.msg_name = NULL;
3639 msg.msg_control = NULL;
3640 msg.msg_controllen = 0;
3641 msg.msg_namelen = 0;
3642
3643 flags = req->sr_msg.msg_flags;
3644 if (flags & MSG_DONTWAIT)
3645 req->flags |= REQ_F_NOWAIT;
3646 else if (force_nonblock)
3647 flags |= MSG_DONTWAIT;
3648
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003649 msg.msg_flags = flags;
3650 ret = sock_sendmsg(sock, &msg);
Jens Axboefddafac2020-01-04 20:19:44 -07003651 if (force_nonblock && ret == -EAGAIN)
3652 return -EAGAIN;
3653 if (ret == -ERESTARTSYS)
3654 ret = -EINTR;
3655 }
3656
3657 io_cqring_add_event(req, ret);
3658 if (ret < 0)
3659 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003660 io_put_req(req);
Jens Axboefddafac2020-01-04 20:19:44 -07003661 return 0;
Jens Axboefddafac2020-01-04 20:19:44 -07003662}
3663
Jens Axboe52de1fe2020-02-27 10:15:42 -07003664static int __io_recvmsg_copy_hdr(struct io_kiocb *req, struct io_async_ctx *io)
3665{
3666 struct io_sr_msg *sr = &req->sr_msg;
3667 struct iovec __user *uiov;
3668 size_t iov_len;
3669 int ret;
3670
3671 ret = __copy_msghdr_from_user(&io->msg.msg, sr->msg, &io->msg.uaddr,
3672 &uiov, &iov_len);
3673 if (ret)
3674 return ret;
3675
3676 if (req->flags & REQ_F_BUFFER_SELECT) {
3677 if (iov_len > 1)
3678 return -EINVAL;
3679 if (copy_from_user(io->msg.iov, uiov, sizeof(*uiov)))
3680 return -EFAULT;
3681 sr->len = io->msg.iov[0].iov_len;
3682 iov_iter_init(&io->msg.msg.msg_iter, READ, io->msg.iov, 1,
3683 sr->len);
3684 io->msg.iov = NULL;
3685 } else {
3686 ret = import_iovec(READ, uiov, iov_len, UIO_FASTIOV,
3687 &io->msg.iov, &io->msg.msg.msg_iter);
3688 if (ret > 0)
3689 ret = 0;
3690 }
3691
3692 return ret;
3693}
3694
3695#ifdef CONFIG_COMPAT
3696static int __io_compat_recvmsg_copy_hdr(struct io_kiocb *req,
3697 struct io_async_ctx *io)
3698{
3699 struct compat_msghdr __user *msg_compat;
3700 struct io_sr_msg *sr = &req->sr_msg;
3701 struct compat_iovec __user *uiov;
3702 compat_uptr_t ptr;
3703 compat_size_t len;
3704 int ret;
3705
3706 msg_compat = (struct compat_msghdr __user *) sr->msg;
3707 ret = __get_compat_msghdr(&io->msg.msg, msg_compat, &io->msg.uaddr,
3708 &ptr, &len);
3709 if (ret)
3710 return ret;
3711
3712 uiov = compat_ptr(ptr);
3713 if (req->flags & REQ_F_BUFFER_SELECT) {
3714 compat_ssize_t clen;
3715
3716 if (len > 1)
3717 return -EINVAL;
3718 if (!access_ok(uiov, sizeof(*uiov)))
3719 return -EFAULT;
3720 if (__get_user(clen, &uiov->iov_len))
3721 return -EFAULT;
3722 if (clen < 0)
3723 return -EINVAL;
3724 sr->len = io->msg.iov[0].iov_len;
3725 io->msg.iov = NULL;
3726 } else {
3727 ret = compat_import_iovec(READ, uiov, len, UIO_FASTIOV,
3728 &io->msg.iov,
3729 &io->msg.msg.msg_iter);
3730 if (ret < 0)
3731 return ret;
3732 }
3733
3734 return 0;
3735}
Jens Axboe03b12302019-12-02 18:50:25 -07003736#endif
Jens Axboe52de1fe2020-02-27 10:15:42 -07003737
3738static int io_recvmsg_copy_hdr(struct io_kiocb *req, struct io_async_ctx *io)
3739{
3740 io->msg.iov = io->msg.fast_iov;
3741
3742#ifdef CONFIG_COMPAT
3743 if (req->ctx->compat)
3744 return __io_compat_recvmsg_copy_hdr(req, io);
3745#endif
3746
3747 return __io_recvmsg_copy_hdr(req, io);
3748}
3749
Jens Axboebcda7ba2020-02-23 16:42:51 -07003750static struct io_buffer *io_recv_buffer_select(struct io_kiocb *req,
3751 int *cflags, bool needs_lock)
3752{
3753 struct io_sr_msg *sr = &req->sr_msg;
3754 struct io_buffer *kbuf;
3755
3756 if (!(req->flags & REQ_F_BUFFER_SELECT))
3757 return NULL;
3758
3759 kbuf = io_buffer_select(req, &sr->len, sr->bgid, sr->kbuf, needs_lock);
3760 if (IS_ERR(kbuf))
3761 return kbuf;
3762
3763 sr->kbuf = kbuf;
3764 req->flags |= REQ_F_BUFFER_SELECTED;
3765
3766 *cflags = kbuf->bid << IORING_CQE_BUFFER_SHIFT;
3767 *cflags |= IORING_CQE_F_BUFFER;
3768 return kbuf;
Jens Axboe03b12302019-12-02 18:50:25 -07003769}
3770
Jens Axboe3529d8c2019-12-19 18:24:38 -07003771static int io_recvmsg_prep(struct io_kiocb *req,
3772 const struct io_uring_sqe *sqe)
Jens Axboe03b12302019-12-02 18:50:25 -07003773{
Jens Axboee47293f2019-12-20 08:58:21 -07003774 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003775 struct io_async_ctx *io = req->io;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003776 int ret;
Jens Axboe06b76d42019-12-19 14:44:26 -07003777
Jens Axboe3529d8c2019-12-19 18:24:38 -07003778 sr->msg_flags = READ_ONCE(sqe->msg_flags);
3779 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003780 sr->len = READ_ONCE(sqe->len);
Jens Axboebcda7ba2020-02-23 16:42:51 -07003781 sr->bgid = READ_ONCE(sqe->buf_group);
Jens Axboe3529d8c2019-12-19 18:24:38 -07003782
Jens Axboed8768362020-02-27 14:17:49 -07003783#ifdef CONFIG_COMPAT
3784 if (req->ctx->compat)
3785 sr->msg_flags |= MSG_CMSG_COMPAT;
3786#endif
3787
Jens Axboefddafac2020-01-04 20:19:44 -07003788 if (!io || req->opcode == IORING_OP_RECV)
Jens Axboe06b76d42019-12-19 14:44:26 -07003789 return 0;
Pavel Begunkov5f798be2020-02-08 13:28:02 +03003790 /* iovec is already imported */
3791 if (req->flags & REQ_F_NEED_CLEANUP)
3792 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07003793
Jens Axboe52de1fe2020-02-27 10:15:42 -07003794 ret = io_recvmsg_copy_hdr(req, io);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003795 if (!ret)
3796 req->flags |= REQ_F_NEED_CLEANUP;
3797 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003798}
3799
Pavel Begunkov014db002020-03-03 21:33:12 +03003800static int io_recvmsg(struct io_kiocb *req, bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07003801{
Jens Axboe0b416c32019-12-15 10:57:46 -07003802 struct io_async_msghdr *kmsg = NULL;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003803 struct socket *sock;
Jens Axboe52de1fe2020-02-27 10:15:42 -07003804 int ret, cflags = 0;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003805
3806 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3807 return -EINVAL;
3808
3809 sock = sock_from_file(req->file, &ret);
3810 if (sock) {
Jens Axboe52de1fe2020-02-27 10:15:42 -07003811 struct io_buffer *kbuf;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003812 struct io_async_ctx io;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003813 unsigned flags;
3814
Jens Axboe03b12302019-12-02 18:50:25 -07003815 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07003816 kmsg = &req->io->msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003817 kmsg->msg.msg_name = &req->io->msg.addr;
Jens Axboe0b416c32019-12-15 10:57:46 -07003818 /* if iov is set, it's allocated already */
3819 if (!kmsg->iov)
3820 kmsg->iov = kmsg->fast_iov;
3821 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07003822 } else {
Jens Axboe0b416c32019-12-15 10:57:46 -07003823 kmsg = &io.msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003824 kmsg->msg.msg_name = &io.msg.addr;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003825
Jens Axboe52de1fe2020-02-27 10:15:42 -07003826 ret = io_recvmsg_copy_hdr(req, &io);
Jens Axboe03b12302019-12-02 18:50:25 -07003827 if (ret)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003828 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003829 }
Jens Axboe0fa03c62019-04-19 13:34:07 -06003830
Jens Axboe52de1fe2020-02-27 10:15:42 -07003831 kbuf = io_recv_buffer_select(req, &cflags, !force_nonblock);
3832 if (IS_ERR(kbuf)) {
3833 return PTR_ERR(kbuf);
3834 } else if (kbuf) {
3835 kmsg->fast_iov[0].iov_base = u64_to_user_ptr(kbuf->addr);
3836 iov_iter_init(&kmsg->msg.msg_iter, READ, kmsg->iov,
3837 1, req->sr_msg.len);
3838 }
3839
Jens Axboee47293f2019-12-20 08:58:21 -07003840 flags = req->sr_msg.msg_flags;
3841 if (flags & MSG_DONTWAIT)
3842 req->flags |= REQ_F_NOWAIT;
3843 else if (force_nonblock)
3844 flags |= MSG_DONTWAIT;
3845
3846 ret = __sys_recvmsg_sock(sock, &kmsg->msg, req->sr_msg.msg,
3847 kmsg->uaddr, flags);
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003848 if (force_nonblock && ret == -EAGAIN)
3849 return io_setup_async_msg(req, kmsg);
Jens Axboe441cdbd2019-12-02 18:49:10 -07003850 if (ret == -ERESTARTSYS)
3851 ret = -EINTR;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003852 }
3853
Pavel Begunkov1e950812020-02-06 19:51:16 +03003854 if (kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07003855 kfree(kmsg->iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003856 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe52de1fe2020-02-27 10:15:42 -07003857 __io_cqring_add_event(req, ret, cflags);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003858 if (ret < 0)
3859 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003860 io_put_req(req);
Jens Axboe0fa03c62019-04-19 13:34:07 -06003861 return 0;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003862}
3863
Pavel Begunkov014db002020-03-03 21:33:12 +03003864static int io_recv(struct io_kiocb *req, bool force_nonblock)
Jens Axboefddafac2020-01-04 20:19:44 -07003865{
Jens Axboebcda7ba2020-02-23 16:42:51 -07003866 struct io_buffer *kbuf = NULL;
Jens Axboefddafac2020-01-04 20:19:44 -07003867 struct socket *sock;
Jens Axboebcda7ba2020-02-23 16:42:51 -07003868 int ret, cflags = 0;
Jens Axboefddafac2020-01-04 20:19:44 -07003869
3870 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3871 return -EINVAL;
3872
3873 sock = sock_from_file(req->file, &ret);
3874 if (sock) {
3875 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboebcda7ba2020-02-23 16:42:51 -07003876 void __user *buf = sr->buf;
Jens Axboefddafac2020-01-04 20:19:44 -07003877 struct msghdr msg;
3878 struct iovec iov;
3879 unsigned flags;
3880
Jens Axboebcda7ba2020-02-23 16:42:51 -07003881 kbuf = io_recv_buffer_select(req, &cflags, !force_nonblock);
3882 if (IS_ERR(kbuf))
3883 return PTR_ERR(kbuf);
3884 else if (kbuf)
3885 buf = u64_to_user_ptr(kbuf->addr);
Jens Axboefddafac2020-01-04 20:19:44 -07003886
Jens Axboebcda7ba2020-02-23 16:42:51 -07003887 ret = import_single_range(READ, buf, sr->len, &iov,
3888 &msg.msg_iter);
3889 if (ret) {
3890 kfree(kbuf);
3891 return ret;
3892 }
3893
3894 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboefddafac2020-01-04 20:19:44 -07003895 msg.msg_name = NULL;
3896 msg.msg_control = NULL;
3897 msg.msg_controllen = 0;
3898 msg.msg_namelen = 0;
3899 msg.msg_iocb = NULL;
3900 msg.msg_flags = 0;
3901
3902 flags = req->sr_msg.msg_flags;
3903 if (flags & MSG_DONTWAIT)
3904 req->flags |= REQ_F_NOWAIT;
3905 else if (force_nonblock)
3906 flags |= MSG_DONTWAIT;
3907
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003908 ret = sock_recvmsg(sock, &msg, flags);
Jens Axboefddafac2020-01-04 20:19:44 -07003909 if (force_nonblock && ret == -EAGAIN)
3910 return -EAGAIN;
3911 if (ret == -ERESTARTSYS)
3912 ret = -EINTR;
3913 }
3914
Jens Axboebcda7ba2020-02-23 16:42:51 -07003915 kfree(kbuf);
3916 req->flags &= ~REQ_F_NEED_CLEANUP;
3917 __io_cqring_add_event(req, ret, cflags);
Jens Axboefddafac2020-01-04 20:19:44 -07003918 if (ret < 0)
3919 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003920 io_put_req(req);
Jens Axboefddafac2020-01-04 20:19:44 -07003921 return 0;
Jens Axboefddafac2020-01-04 20:19:44 -07003922}
3923
Jens Axboe3529d8c2019-12-19 18:24:38 -07003924static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003925{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003926 struct io_accept *accept = &req->accept;
3927
Jens Axboe17f2fe32019-10-17 14:42:58 -06003928 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3929 return -EINVAL;
Hrvoje Zeba8042d6c2019-11-25 14:40:22 -05003930 if (sqe->ioprio || sqe->len || sqe->buf_index)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003931 return -EINVAL;
3932
Jens Axboed55e5f52019-12-11 16:12:15 -07003933 accept->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
3934 accept->addr_len = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003935 accept->flags = READ_ONCE(sqe->accept_flags);
Jens Axboe09952e32020-03-19 20:16:56 -06003936 accept->nofile = rlimit(RLIMIT_NOFILE);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003937 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003938}
Jens Axboe17f2fe32019-10-17 14:42:58 -06003939
Pavel Begunkov014db002020-03-03 21:33:12 +03003940static int __io_accept(struct io_kiocb *req, bool force_nonblock)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003941{
3942 struct io_accept *accept = &req->accept;
3943 unsigned file_flags;
3944 int ret;
3945
3946 file_flags = force_nonblock ? O_NONBLOCK : 0;
3947 ret = __sys_accept4_file(req->file, file_flags, accept->addr,
Jens Axboe09952e32020-03-19 20:16:56 -06003948 accept->addr_len, accept->flags,
3949 accept->nofile);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003950 if (ret == -EAGAIN && force_nonblock)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003951 return -EAGAIN;
Jens Axboe8e3cca12019-11-09 19:52:33 -07003952 if (ret == -ERESTARTSYS)
3953 ret = -EINTR;
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003954 if (ret < 0)
3955 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07003956 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003957 io_put_req(req);
Jens Axboe17f2fe32019-10-17 14:42:58 -06003958 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003959}
3960
3961static void io_accept_finish(struct io_wq_work **workptr)
3962{
3963 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003964
3965 if (io_req_cancelled(req))
3966 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03003967 __io_accept(req, false);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03003968 io_steal_work(req, workptr);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003969}
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003970
Pavel Begunkov014db002020-03-03 21:33:12 +03003971static int io_accept(struct io_kiocb *req, bool force_nonblock)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003972{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003973 int ret;
3974
Pavel Begunkov014db002020-03-03 21:33:12 +03003975 ret = __io_accept(req, force_nonblock);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003976 if (ret == -EAGAIN && force_nonblock) {
3977 req->work.func = io_accept_finish;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003978 return -EAGAIN;
3979 }
3980 return 0;
Jens Axboe17f2fe32019-10-17 14:42:58 -06003981}
3982
Jens Axboe3529d8c2019-12-19 18:24:38 -07003983static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef499a022019-12-02 16:28:46 -07003984{
Jens Axboe3529d8c2019-12-19 18:24:38 -07003985 struct io_connect *conn = &req->connect;
3986 struct io_async_ctx *io = req->io;
Jens Axboef499a022019-12-02 16:28:46 -07003987
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003988 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3989 return -EINVAL;
3990 if (sqe->ioprio || sqe->len || sqe->buf_index || sqe->rw_flags)
3991 return -EINVAL;
3992
Jens Axboe3529d8c2019-12-19 18:24:38 -07003993 conn->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
3994 conn->addr_len = READ_ONCE(sqe->addr2);
3995
3996 if (!io)
3997 return 0;
3998
3999 return move_addr_to_kernel(conn->addr, conn->addr_len,
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004000 &io->connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07004001}
4002
Pavel Begunkov014db002020-03-03 21:33:12 +03004003static int io_connect(struct io_kiocb *req, bool force_nonblock)
Jens Axboef8e85cf2019-11-23 14:24:24 -07004004{
Jens Axboef499a022019-12-02 16:28:46 -07004005 struct io_async_ctx __io, *io;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004006 unsigned file_flags;
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004007 int ret;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004008
Jens Axboef499a022019-12-02 16:28:46 -07004009 if (req->io) {
4010 io = req->io;
4011 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07004012 ret = move_addr_to_kernel(req->connect.addr,
4013 req->connect.addr_len,
4014 &__io.connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07004015 if (ret)
4016 goto out;
4017 io = &__io;
4018 }
4019
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004020 file_flags = force_nonblock ? O_NONBLOCK : 0;
4021
4022 ret = __sys_connect_file(req->file, &io->connect.address,
4023 req->connect.addr_len, file_flags);
Jens Axboe87f80d62019-12-03 11:23:54 -07004024 if ((ret == -EAGAIN || ret == -EINPROGRESS) && force_nonblock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004025 if (req->io)
4026 return -EAGAIN;
4027 if (io_alloc_async_ctx(req)) {
Jens Axboef499a022019-12-02 16:28:46 -07004028 ret = -ENOMEM;
4029 goto out;
4030 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004031 memcpy(&req->io->connect, &__io.connect, sizeof(__io.connect));
Jens Axboef8e85cf2019-11-23 14:24:24 -07004032 return -EAGAIN;
Jens Axboef499a022019-12-02 16:28:46 -07004033 }
Jens Axboef8e85cf2019-11-23 14:24:24 -07004034 if (ret == -ERESTARTSYS)
4035 ret = -EINTR;
Jens Axboef499a022019-12-02 16:28:46 -07004036out:
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004037 if (ret < 0)
4038 req_set_fail_links(req);
Jens Axboef8e85cf2019-11-23 14:24:24 -07004039 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03004040 io_put_req(req);
Jens Axboef8e85cf2019-11-23 14:24:24 -07004041 return 0;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004042}
YueHaibing469956e2020-03-04 15:53:52 +08004043#else /* !CONFIG_NET */
4044static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4045{
Jens Axboef8e85cf2019-11-23 14:24:24 -07004046 return -EOPNOTSUPP;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004047}
4048
YueHaibing469956e2020-03-04 15:53:52 +08004049static int io_sendmsg(struct io_kiocb *req, bool force_nonblock)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004050{
YueHaibing469956e2020-03-04 15:53:52 +08004051 return -EOPNOTSUPP;
4052}
4053
4054static int io_send(struct io_kiocb *req, bool force_nonblock)
4055{
4056 return -EOPNOTSUPP;
4057}
4058
4059static int io_recvmsg_prep(struct io_kiocb *req,
4060 const struct io_uring_sqe *sqe)
4061{
4062 return -EOPNOTSUPP;
4063}
4064
4065static int io_recvmsg(struct io_kiocb *req, bool force_nonblock)
4066{
4067 return -EOPNOTSUPP;
4068}
4069
4070static int io_recv(struct io_kiocb *req, bool force_nonblock)
4071{
4072 return -EOPNOTSUPP;
4073}
4074
4075static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4076{
4077 return -EOPNOTSUPP;
4078}
4079
4080static int io_accept(struct io_kiocb *req, bool force_nonblock)
4081{
4082 return -EOPNOTSUPP;
4083}
4084
4085static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4086{
4087 return -EOPNOTSUPP;
4088}
4089
4090static int io_connect(struct io_kiocb *req, bool force_nonblock)
4091{
4092 return -EOPNOTSUPP;
4093}
4094#endif /* CONFIG_NET */
Jens Axboe2b188cc2019-01-07 10:46:33 -07004095
Jens Axboed7718a92020-02-14 22:23:12 -07004096struct io_poll_table {
4097 struct poll_table_struct pt;
4098 struct io_kiocb *req;
4099 int error;
4100};
4101
4102static void __io_queue_proc(struct io_poll_iocb *poll, struct io_poll_table *pt,
4103 struct wait_queue_head *head)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004104{
Jens Axboed7718a92020-02-14 22:23:12 -07004105 if (unlikely(poll->head)) {
4106 pt->error = -EINVAL;
4107 return;
4108 }
4109
4110 pt->error = 0;
4111 poll->head = head;
4112 add_wait_queue(head, &poll->wait);
4113}
4114
4115static void io_async_queue_proc(struct file *file, struct wait_queue_head *head,
4116 struct poll_table_struct *p)
4117{
4118 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
4119
4120 __io_queue_proc(&pt->req->apoll->poll, pt, head);
4121}
4122
4123static int __io_async_wake(struct io_kiocb *req, struct io_poll_iocb *poll,
4124 __poll_t mask, task_work_func_t func)
4125{
4126 struct task_struct *tsk;
Jens Axboeaa96bf82020-04-03 11:26:26 -06004127 int ret;
Jens Axboed7718a92020-02-14 22:23:12 -07004128
4129 /* for instances that support it check for an event match first: */
4130 if (mask && !(mask & poll->events))
4131 return 0;
4132
4133 trace_io_uring_task_add(req->ctx, req->opcode, req->user_data, mask);
4134
4135 list_del_init(&poll->wait.entry);
4136
4137 tsk = req->task;
4138 req->result = mask;
4139 init_task_work(&req->task_work, func);
4140 /*
Jens Axboeaa96bf82020-04-03 11:26:26 -06004141 * If this fails, then the task is exiting. Punt to one of the io-wq
4142 * threads to ensure the work gets run, we can't always rely on exit
4143 * cancelation taking care of this.
Jens Axboed7718a92020-02-14 22:23:12 -07004144 */
Jens Axboeaa96bf82020-04-03 11:26:26 -06004145 ret = task_work_add(tsk, &req->task_work, true);
4146 if (unlikely(ret)) {
4147 tsk = io_wq_get_task(req->ctx->io_wq);
4148 task_work_add(tsk, &req->task_work, true);
4149 }
Jens Axboed7718a92020-02-14 22:23:12 -07004150 wake_up_process(tsk);
4151 return 1;
4152}
4153
Jens Axboe74ce6ce2020-04-13 11:09:12 -06004154static bool io_poll_rewait(struct io_kiocb *req, struct io_poll_iocb *poll)
4155 __acquires(&req->ctx->completion_lock)
4156{
4157 struct io_ring_ctx *ctx = req->ctx;
4158
4159 if (!req->result && !READ_ONCE(poll->canceled)) {
4160 struct poll_table_struct pt = { ._key = poll->events };
4161
4162 req->result = vfs_poll(req->file, &pt) & poll->events;
4163 }
4164
4165 spin_lock_irq(&ctx->completion_lock);
4166 if (!req->result && !READ_ONCE(poll->canceled)) {
4167 add_wait_queue(poll->head, &poll->wait);
4168 return true;
4169 }
4170
4171 return false;
4172}
4173
Jens Axboed7718a92020-02-14 22:23:12 -07004174static void io_async_task_func(struct callback_head *cb)
4175{
4176 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
4177 struct async_poll *apoll = req->apoll;
4178 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2bae0472020-04-13 11:16:34 -06004179 bool canceled;
Jens Axboed7718a92020-02-14 22:23:12 -07004180
4181 trace_io_uring_task_run(req->ctx, req->opcode, req->user_data);
4182
Jens Axboe74ce6ce2020-04-13 11:09:12 -06004183 if (io_poll_rewait(req, &apoll->poll)) {
Jens Axboed7718a92020-02-14 22:23:12 -07004184 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe74ce6ce2020-04-13 11:09:12 -06004185 return;
Jens Axboed7718a92020-02-14 22:23:12 -07004186 }
4187
Jens Axboe74ce6ce2020-04-13 11:09:12 -06004188 if (hash_hashed(&req->hash_node))
4189 hash_del(&req->hash_node);
4190
Jens Axboe2bae0472020-04-13 11:16:34 -06004191 canceled = READ_ONCE(apoll->poll.canceled);
4192 if (canceled) {
4193 io_cqring_fill_event(req, -ECANCELED);
4194 io_commit_cqring(ctx);
4195 }
4196
Jens Axboe74ce6ce2020-04-13 11:09:12 -06004197 spin_unlock_irq(&ctx->completion_lock);
4198
Xiaoguang Wang44575a62020-04-19 10:06:55 +08004199 /* restore ->work in case we need to retry again */
4200 memcpy(&req->work, &apoll->work, sizeof(req->work));
4201
Jens Axboe2bae0472020-04-13 11:16:34 -06004202 if (canceled) {
4203 kfree(apoll);
4204 io_cqring_ev_posted(ctx);
4205 req_set_fail_links(req);
Xiaoguang Wang44575a62020-04-19 10:06:55 +08004206 io_double_put_req(req);
Jens Axboe2bae0472020-04-13 11:16:34 -06004207 return;
4208 }
4209
Jens Axboed7718a92020-02-14 22:23:12 -07004210 __set_current_state(TASK_RUNNING);
4211 mutex_lock(&ctx->uring_lock);
4212 __io_queue_sqe(req, NULL);
4213 mutex_unlock(&ctx->uring_lock);
4214
4215 kfree(apoll);
4216}
4217
4218static int io_async_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
4219 void *key)
4220{
4221 struct io_kiocb *req = wait->private;
4222 struct io_poll_iocb *poll = &req->apoll->poll;
4223
4224 trace_io_uring_poll_wake(req->ctx, req->opcode, req->user_data,
4225 key_to_poll(key));
4226
4227 return __io_async_wake(req, poll, key_to_poll(key), io_async_task_func);
4228}
4229
4230static void io_poll_req_insert(struct io_kiocb *req)
4231{
4232 struct io_ring_ctx *ctx = req->ctx;
4233 struct hlist_head *list;
4234
4235 list = &ctx->cancel_hash[hash_long(req->user_data, ctx->cancel_hash_bits)];
4236 hlist_add_head(&req->hash_node, list);
4237}
4238
4239static __poll_t __io_arm_poll_handler(struct io_kiocb *req,
4240 struct io_poll_iocb *poll,
4241 struct io_poll_table *ipt, __poll_t mask,
4242 wait_queue_func_t wake_func)
4243 __acquires(&ctx->completion_lock)
4244{
4245 struct io_ring_ctx *ctx = req->ctx;
4246 bool cancel = false;
4247
4248 poll->file = req->file;
4249 poll->head = NULL;
4250 poll->done = poll->canceled = false;
4251 poll->events = mask;
4252
4253 ipt->pt._key = mask;
4254 ipt->req = req;
4255 ipt->error = -EINVAL;
4256
4257 INIT_LIST_HEAD(&poll->wait.entry);
4258 init_waitqueue_func_entry(&poll->wait, wake_func);
4259 poll->wait.private = req;
4260
4261 mask = vfs_poll(req->file, &ipt->pt) & poll->events;
4262
4263 spin_lock_irq(&ctx->completion_lock);
4264 if (likely(poll->head)) {
4265 spin_lock(&poll->head->lock);
4266 if (unlikely(list_empty(&poll->wait.entry))) {
4267 if (ipt->error)
4268 cancel = true;
4269 ipt->error = 0;
4270 mask = 0;
4271 }
4272 if (mask || ipt->error)
4273 list_del_init(&poll->wait.entry);
4274 else if (cancel)
4275 WRITE_ONCE(poll->canceled, true);
4276 else if (!poll->done) /* actually waiting for an event */
4277 io_poll_req_insert(req);
4278 spin_unlock(&poll->head->lock);
4279 }
4280
4281 return mask;
4282}
4283
4284static bool io_arm_poll_handler(struct io_kiocb *req)
4285{
4286 const struct io_op_def *def = &io_op_defs[req->opcode];
4287 struct io_ring_ctx *ctx = req->ctx;
4288 struct async_poll *apoll;
4289 struct io_poll_table ipt;
4290 __poll_t mask, ret;
4291
4292 if (!req->file || !file_can_poll(req->file))
4293 return false;
4294 if (req->flags & (REQ_F_MUST_PUNT | REQ_F_POLLED))
4295 return false;
4296 if (!def->pollin && !def->pollout)
4297 return false;
4298
4299 apoll = kmalloc(sizeof(*apoll), GFP_ATOMIC);
4300 if (unlikely(!apoll))
4301 return false;
4302
4303 req->flags |= REQ_F_POLLED;
4304 memcpy(&apoll->work, &req->work, sizeof(req->work));
4305
Jens Axboe3537b6a2020-04-03 11:19:06 -06004306 get_task_struct(current);
Jens Axboed7718a92020-02-14 22:23:12 -07004307 req->task = current;
4308 req->apoll = apoll;
4309 INIT_HLIST_NODE(&req->hash_node);
4310
Nathan Chancellor8755d972020-03-02 16:01:19 -07004311 mask = 0;
Jens Axboed7718a92020-02-14 22:23:12 -07004312 if (def->pollin)
Nathan Chancellor8755d972020-03-02 16:01:19 -07004313 mask |= POLLIN | POLLRDNORM;
Jens Axboed7718a92020-02-14 22:23:12 -07004314 if (def->pollout)
4315 mask |= POLLOUT | POLLWRNORM;
4316 mask |= POLLERR | POLLPRI;
4317
4318 ipt.pt._qproc = io_async_queue_proc;
4319
4320 ret = __io_arm_poll_handler(req, &apoll->poll, &ipt, mask,
4321 io_async_wake);
4322 if (ret) {
4323 ipt.error = 0;
4324 apoll->poll.done = true;
4325 spin_unlock_irq(&ctx->completion_lock);
4326 memcpy(&req->work, &apoll->work, sizeof(req->work));
4327 kfree(apoll);
4328 return false;
4329 }
4330 spin_unlock_irq(&ctx->completion_lock);
4331 trace_io_uring_poll_arm(ctx, req->opcode, req->user_data, mask,
4332 apoll->poll.events);
4333 return true;
4334}
4335
4336static bool __io_poll_remove_one(struct io_kiocb *req,
4337 struct io_poll_iocb *poll)
4338{
Jens Axboeb41e9852020-02-17 09:52:41 -07004339 bool do_complete = false;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004340
4341 spin_lock(&poll->head->lock);
4342 WRITE_ONCE(poll->canceled, true);
Jens Axboe392edb42019-12-09 17:52:20 -07004343 if (!list_empty(&poll->wait.entry)) {
4344 list_del_init(&poll->wait.entry);
Jens Axboeb41e9852020-02-17 09:52:41 -07004345 do_complete = true;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004346 }
4347 spin_unlock(&poll->head->lock);
Jens Axboed7718a92020-02-14 22:23:12 -07004348 return do_complete;
4349}
4350
4351static bool io_poll_remove_one(struct io_kiocb *req)
4352{
Xiaoguang Wangb1f573b2020-04-12 14:50:54 +08004353 struct async_poll *apoll = NULL;
Jens Axboed7718a92020-02-14 22:23:12 -07004354 bool do_complete;
4355
4356 if (req->opcode == IORING_OP_POLL_ADD) {
4357 do_complete = __io_poll_remove_one(req, &req->poll);
4358 } else {
Xiaoguang Wangb1f573b2020-04-12 14:50:54 +08004359 apoll = req->apoll;
Jens Axboed7718a92020-02-14 22:23:12 -07004360 /* non-poll requests have submit ref still */
4361 do_complete = __io_poll_remove_one(req, &req->apoll->poll);
4362 if (do_complete)
4363 io_put_req(req);
4364 }
4365
Jens Axboe78076bb2019-12-04 19:56:40 -07004366 hash_del(&req->hash_node);
Jens Axboed7718a92020-02-14 22:23:12 -07004367
Xiaoguang Wang44575a62020-04-19 10:06:55 +08004368 if (do_complete && apoll) {
Xiaoguang Wangb1f573b2020-04-12 14:50:54 +08004369 /*
4370 * restore ->work because we need to call io_req_work_drop_env.
4371 */
4372 memcpy(&req->work, &apoll->work, sizeof(req->work));
4373 kfree(apoll);
4374 }
4375
Jens Axboeb41e9852020-02-17 09:52:41 -07004376 if (do_complete) {
4377 io_cqring_fill_event(req, -ECANCELED);
4378 io_commit_cqring(req->ctx);
4379 req->flags |= REQ_F_COMP_LOCKED;
4380 io_put_req(req);
4381 }
4382
4383 return do_complete;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004384}
4385
4386static void io_poll_remove_all(struct io_ring_ctx *ctx)
4387{
Jens Axboe78076bb2019-12-04 19:56:40 -07004388 struct hlist_node *tmp;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004389 struct io_kiocb *req;
Jens Axboe8e2e1fa2020-04-13 17:05:14 -06004390 int posted = 0, i;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004391
4392 spin_lock_irq(&ctx->completion_lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07004393 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
4394 struct hlist_head *list;
4395
4396 list = &ctx->cancel_hash[i];
4397 hlist_for_each_entry_safe(req, tmp, list, hash_node)
Jens Axboe8e2e1fa2020-04-13 17:05:14 -06004398 posted += io_poll_remove_one(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004399 }
4400 spin_unlock_irq(&ctx->completion_lock);
Jens Axboeb41e9852020-02-17 09:52:41 -07004401
Jens Axboe8e2e1fa2020-04-13 17:05:14 -06004402 if (posted)
4403 io_cqring_ev_posted(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004404}
4405
Jens Axboe47f46762019-11-09 17:43:02 -07004406static int io_poll_cancel(struct io_ring_ctx *ctx, __u64 sqe_addr)
4407{
Jens Axboe78076bb2019-12-04 19:56:40 -07004408 struct hlist_head *list;
Jens Axboe47f46762019-11-09 17:43:02 -07004409 struct io_kiocb *req;
4410
Jens Axboe78076bb2019-12-04 19:56:40 -07004411 list = &ctx->cancel_hash[hash_long(sqe_addr, ctx->cancel_hash_bits)];
4412 hlist_for_each_entry(req, list, hash_node) {
Jens Axboeb41e9852020-02-17 09:52:41 -07004413 if (sqe_addr != req->user_data)
4414 continue;
4415 if (io_poll_remove_one(req))
Jens Axboeeac406c2019-11-14 12:09:58 -07004416 return 0;
Jens Axboeb41e9852020-02-17 09:52:41 -07004417 return -EALREADY;
Jens Axboe47f46762019-11-09 17:43:02 -07004418 }
4419
4420 return -ENOENT;
4421}
4422
Jens Axboe3529d8c2019-12-19 18:24:38 -07004423static int io_poll_remove_prep(struct io_kiocb *req,
4424 const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004425{
Jens Axboe221c5eb2019-01-17 09:41:58 -07004426 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4427 return -EINVAL;
4428 if (sqe->ioprio || sqe->off || sqe->len || sqe->buf_index ||
4429 sqe->poll_events)
4430 return -EINVAL;
4431
Jens Axboe0969e782019-12-17 18:40:57 -07004432 req->poll.addr = READ_ONCE(sqe->addr);
Jens Axboe0969e782019-12-17 18:40:57 -07004433 return 0;
4434}
4435
4436/*
4437 * Find a running poll command that matches one specified in sqe->addr,
4438 * and remove it if found.
4439 */
4440static int io_poll_remove(struct io_kiocb *req)
4441{
4442 struct io_ring_ctx *ctx = req->ctx;
4443 u64 addr;
4444 int ret;
4445
Jens Axboe0969e782019-12-17 18:40:57 -07004446 addr = req->poll.addr;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004447 spin_lock_irq(&ctx->completion_lock);
Jens Axboe0969e782019-12-17 18:40:57 -07004448 ret = io_poll_cancel(ctx, addr);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004449 spin_unlock_irq(&ctx->completion_lock);
4450
Jens Axboe78e19bb2019-11-06 15:21:34 -07004451 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004452 if (ret < 0)
4453 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06004454 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004455 return 0;
4456}
4457
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004458static void io_poll_complete(struct io_kiocb *req, __poll_t mask, int error)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004459{
Jackie Liua197f662019-11-08 08:09:12 -07004460 struct io_ring_ctx *ctx = req->ctx;
4461
Jens Axboe8c838782019-03-12 15:48:16 -06004462 req->poll.done = true;
Pavel Begunkovb0a20342020-02-28 10:36:35 +03004463 io_cqring_fill_event(req, error ? error : mangle_poll(mask));
Jens Axboe8c838782019-03-12 15:48:16 -06004464 io_commit_cqring(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004465}
4466
Jens Axboeb41e9852020-02-17 09:52:41 -07004467static void io_poll_task_handler(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004468{
Jens Axboe221c5eb2019-01-17 09:41:58 -07004469 struct io_ring_ctx *ctx = req->ctx;
Jens Axboea6ba6322020-04-03 11:10:14 -06004470 struct io_poll_iocb *poll = &req->poll;
4471
Jens Axboe74ce6ce2020-04-13 11:09:12 -06004472 if (io_poll_rewait(req, poll)) {
Jens Axboea6ba6322020-04-03 11:10:14 -06004473 spin_unlock_irq(&ctx->completion_lock);
4474 return;
4475 }
Jens Axboe74ce6ce2020-04-13 11:09:12 -06004476
Jens Axboe78076bb2019-12-04 19:56:40 -07004477 hash_del(&req->hash_node);
Jens Axboeb41e9852020-02-17 09:52:41 -07004478 io_poll_complete(req, req->result, 0);
4479 req->flags |= REQ_F_COMP_LOCKED;
4480 io_put_req_find_next(req, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004481 spin_unlock_irq(&ctx->completion_lock);
4482
Jens Axboe8c838782019-03-12 15:48:16 -06004483 io_cqring_ev_posted(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004484}
4485
Jens Axboeb41e9852020-02-17 09:52:41 -07004486static void io_poll_task_func(struct callback_head *cb)
Jens Axboee94f1412019-12-19 12:06:02 -07004487{
Jens Axboeb41e9852020-02-17 09:52:41 -07004488 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
4489 struct io_kiocb *nxt = NULL;
Jens Axboee94f1412019-12-19 12:06:02 -07004490
Jens Axboeb41e9852020-02-17 09:52:41 -07004491 io_poll_task_handler(req, &nxt);
Jens Axboed7718a92020-02-14 22:23:12 -07004492 if (nxt) {
4493 struct io_ring_ctx *ctx = nxt->ctx;
Jens Axboee94f1412019-12-19 12:06:02 -07004494
Jens Axboed7718a92020-02-14 22:23:12 -07004495 mutex_lock(&ctx->uring_lock);
Jens Axboeb41e9852020-02-17 09:52:41 -07004496 __io_queue_sqe(nxt, NULL);
Jens Axboed7718a92020-02-14 22:23:12 -07004497 mutex_unlock(&ctx->uring_lock);
Jens Axboee94f1412019-12-19 12:06:02 -07004498 }
Jens Axboef0b493e2020-02-01 21:30:11 -07004499}
4500
Jens Axboe221c5eb2019-01-17 09:41:58 -07004501static int io_poll_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
4502 void *key)
4503{
Jens Axboec2f2eb72020-02-10 09:07:05 -07004504 struct io_kiocb *req = wait->private;
4505 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004506
Jens Axboed7718a92020-02-14 22:23:12 -07004507 return __io_async_wake(req, poll, key_to_poll(key), io_poll_task_func);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004508}
4509
Jens Axboe221c5eb2019-01-17 09:41:58 -07004510static void io_poll_queue_proc(struct file *file, struct wait_queue_head *head,
4511 struct poll_table_struct *p)
4512{
4513 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
4514
Jens Axboed7718a92020-02-14 22:23:12 -07004515 __io_queue_proc(&pt->req->poll, pt, head);
Jens Axboeeac406c2019-11-14 12:09:58 -07004516}
4517
Jens Axboe3529d8c2019-12-19 18:24:38 -07004518static int io_poll_add_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004519{
4520 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004521 u16 events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004522
4523 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4524 return -EINVAL;
4525 if (sqe->addr || sqe->ioprio || sqe->off || sqe->len || sqe->buf_index)
4526 return -EINVAL;
Jens Axboe09bb8392019-03-13 12:39:28 -06004527 if (!poll->file)
4528 return -EBADF;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004529
Jens Axboe221c5eb2019-01-17 09:41:58 -07004530 events = READ_ONCE(sqe->poll_events);
4531 poll->events = demangle_poll(events) | EPOLLERR | EPOLLHUP;
Jens Axboeb41e9852020-02-17 09:52:41 -07004532
Jens Axboe3537b6a2020-04-03 11:19:06 -06004533 get_task_struct(current);
Jens Axboeb41e9852020-02-17 09:52:41 -07004534 req->task = current;
Jens Axboe0969e782019-12-17 18:40:57 -07004535 return 0;
4536}
4537
Pavel Begunkov014db002020-03-03 21:33:12 +03004538static int io_poll_add(struct io_kiocb *req)
Jens Axboe0969e782019-12-17 18:40:57 -07004539{
4540 struct io_poll_iocb *poll = &req->poll;
4541 struct io_ring_ctx *ctx = req->ctx;
4542 struct io_poll_table ipt;
Jens Axboe0969e782019-12-17 18:40:57 -07004543 __poll_t mask;
Jens Axboe0969e782019-12-17 18:40:57 -07004544
Jens Axboe78076bb2019-12-04 19:56:40 -07004545 INIT_HLIST_NODE(&req->hash_node);
Jens Axboe36703242019-07-25 10:20:18 -06004546 INIT_LIST_HEAD(&req->list);
Jens Axboed7718a92020-02-14 22:23:12 -07004547 ipt.pt._qproc = io_poll_queue_proc;
Jens Axboe36703242019-07-25 10:20:18 -06004548
Jens Axboed7718a92020-02-14 22:23:12 -07004549 mask = __io_arm_poll_handler(req, &req->poll, &ipt, poll->events,
4550 io_poll_wake);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004551
Jens Axboe8c838782019-03-12 15:48:16 -06004552 if (mask) { /* no async, we'd stolen it */
Jens Axboe8c838782019-03-12 15:48:16 -06004553 ipt.error = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004554 io_poll_complete(req, mask, 0);
Jens Axboe8c838782019-03-12 15:48:16 -06004555 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07004556 spin_unlock_irq(&ctx->completion_lock);
4557
Jens Axboe8c838782019-03-12 15:48:16 -06004558 if (mask) {
4559 io_cqring_ev_posted(ctx);
Pavel Begunkov014db002020-03-03 21:33:12 +03004560 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004561 }
Jens Axboe8c838782019-03-12 15:48:16 -06004562 return ipt.error;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004563}
4564
Jens Axboe5262f562019-09-17 12:26:57 -06004565static enum hrtimer_restart io_timeout_fn(struct hrtimer *timer)
4566{
Jens Axboead8a48a2019-11-15 08:49:11 -07004567 struct io_timeout_data *data = container_of(timer,
4568 struct io_timeout_data, timer);
4569 struct io_kiocb *req = data->req;
4570 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5262f562019-09-17 12:26:57 -06004571 unsigned long flags;
4572
Jens Axboe5262f562019-09-17 12:26:57 -06004573 atomic_inc(&ctx->cq_timeouts);
4574
4575 spin_lock_irqsave(&ctx->completion_lock, flags);
zhangyi (F)ef036812019-10-23 15:10:08 +08004576 /*
Jens Axboe11365042019-10-16 09:08:32 -06004577 * We could be racing with timeout deletion. If the list is empty,
4578 * then timeout lookup already found it and will be handling it.
zhangyi (F)ef036812019-10-23 15:10:08 +08004579 */
Jens Axboe842f9612019-10-29 12:34:10 -06004580 if (!list_empty(&req->list)) {
Jens Axboe11365042019-10-16 09:08:32 -06004581 struct io_kiocb *prev;
Jens Axboe5262f562019-09-17 12:26:57 -06004582
Jens Axboe11365042019-10-16 09:08:32 -06004583 /*
4584 * Adjust the reqs sequence before the current one because it
Brian Gianforcarod195a662019-12-13 03:09:50 -08004585 * will consume a slot in the cq_ring and the cq_tail
Jens Axboe11365042019-10-16 09:08:32 -06004586 * pointer will be increased, otherwise other timeout reqs may
4587 * return in advance without waiting for enough wait_nr.
4588 */
4589 prev = req;
4590 list_for_each_entry_continue_reverse(prev, &ctx->timeout_list, list)
4591 prev->sequence++;
Jens Axboe11365042019-10-16 09:08:32 -06004592 list_del_init(&req->list);
Jens Axboe11365042019-10-16 09:08:32 -06004593 }
Jens Axboe842f9612019-10-29 12:34:10 -06004594
Jens Axboe78e19bb2019-11-06 15:21:34 -07004595 io_cqring_fill_event(req, -ETIME);
Jens Axboe5262f562019-09-17 12:26:57 -06004596 io_commit_cqring(ctx);
4597 spin_unlock_irqrestore(&ctx->completion_lock, flags);
4598
4599 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004600 req_set_fail_links(req);
Jens Axboe5262f562019-09-17 12:26:57 -06004601 io_put_req(req);
4602 return HRTIMER_NORESTART;
4603}
4604
Jens Axboe47f46762019-11-09 17:43:02 -07004605static int io_timeout_cancel(struct io_ring_ctx *ctx, __u64 user_data)
4606{
4607 struct io_kiocb *req;
4608 int ret = -ENOENT;
4609
4610 list_for_each_entry(req, &ctx->timeout_list, list) {
4611 if (user_data == req->user_data) {
4612 list_del_init(&req->list);
4613 ret = 0;
4614 break;
4615 }
4616 }
4617
4618 if (ret == -ENOENT)
4619 return ret;
4620
Jens Axboe2d283902019-12-04 11:08:05 -07004621 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe47f46762019-11-09 17:43:02 -07004622 if (ret == -1)
4623 return -EALREADY;
4624
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004625 req_set_fail_links(req);
Jens Axboe47f46762019-11-09 17:43:02 -07004626 io_cqring_fill_event(req, -ECANCELED);
4627 io_put_req(req);
4628 return 0;
4629}
4630
Jens Axboe3529d8c2019-12-19 18:24:38 -07004631static int io_timeout_remove_prep(struct io_kiocb *req,
4632 const struct io_uring_sqe *sqe)
Jens Axboeb29472e2019-12-17 18:50:29 -07004633{
Jens Axboeb29472e2019-12-17 18:50:29 -07004634 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4635 return -EINVAL;
4636 if (sqe->flags || sqe->ioprio || sqe->buf_index || sqe->len)
4637 return -EINVAL;
4638
4639 req->timeout.addr = READ_ONCE(sqe->addr);
4640 req->timeout.flags = READ_ONCE(sqe->timeout_flags);
4641 if (req->timeout.flags)
4642 return -EINVAL;
4643
Jens Axboeb29472e2019-12-17 18:50:29 -07004644 return 0;
4645}
4646
Jens Axboe11365042019-10-16 09:08:32 -06004647/*
4648 * Remove or update an existing timeout command
4649 */
Jens Axboefc4df992019-12-10 14:38:45 -07004650static int io_timeout_remove(struct io_kiocb *req)
Jens Axboe11365042019-10-16 09:08:32 -06004651{
4652 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe47f46762019-11-09 17:43:02 -07004653 int ret;
Jens Axboe11365042019-10-16 09:08:32 -06004654
Jens Axboe11365042019-10-16 09:08:32 -06004655 spin_lock_irq(&ctx->completion_lock);
Jens Axboeb29472e2019-12-17 18:50:29 -07004656 ret = io_timeout_cancel(ctx, req->timeout.addr);
Jens Axboe11365042019-10-16 09:08:32 -06004657
Jens Axboe47f46762019-11-09 17:43:02 -07004658 io_cqring_fill_event(req, ret);
Jens Axboe11365042019-10-16 09:08:32 -06004659 io_commit_cqring(ctx);
4660 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06004661 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004662 if (ret < 0)
4663 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08004664 io_put_req(req);
Jens Axboe11365042019-10-16 09:08:32 -06004665 return 0;
Jens Axboe5262f562019-09-17 12:26:57 -06004666}
4667
Jens Axboe3529d8c2019-12-19 18:24:38 -07004668static int io_timeout_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboe2d283902019-12-04 11:08:05 -07004669 bool is_timeout_link)
Jens Axboe5262f562019-09-17 12:26:57 -06004670{
Jens Axboead8a48a2019-11-15 08:49:11 -07004671 struct io_timeout_data *data;
Jens Axboea41525a2019-10-15 16:48:15 -06004672 unsigned flags;
Jens Axboe5262f562019-09-17 12:26:57 -06004673
Jens Axboead8a48a2019-11-15 08:49:11 -07004674 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe5262f562019-09-17 12:26:57 -06004675 return -EINVAL;
Jens Axboead8a48a2019-11-15 08:49:11 -07004676 if (sqe->ioprio || sqe->buf_index || sqe->len != 1)
Jens Axboea41525a2019-10-15 16:48:15 -06004677 return -EINVAL;
Jens Axboe2d283902019-12-04 11:08:05 -07004678 if (sqe->off && is_timeout_link)
4679 return -EINVAL;
Jens Axboea41525a2019-10-15 16:48:15 -06004680 flags = READ_ONCE(sqe->timeout_flags);
4681 if (flags & ~IORING_TIMEOUT_ABS)
Jens Axboe5262f562019-09-17 12:26:57 -06004682 return -EINVAL;
Arnd Bergmannbdf20072019-10-01 09:53:29 -06004683
Jens Axboe26a61672019-12-20 09:02:01 -07004684 req->timeout.count = READ_ONCE(sqe->off);
4685
Jens Axboe3529d8c2019-12-19 18:24:38 -07004686 if (!req->io && io_alloc_async_ctx(req))
Jens Axboe26a61672019-12-20 09:02:01 -07004687 return -ENOMEM;
4688
4689 data = &req->io->timeout;
Jens Axboead8a48a2019-11-15 08:49:11 -07004690 data->req = req;
Jens Axboead8a48a2019-11-15 08:49:11 -07004691 req->flags |= REQ_F_TIMEOUT;
4692
4693 if (get_timespec64(&data->ts, u64_to_user_ptr(sqe->addr)))
Jens Axboe5262f562019-09-17 12:26:57 -06004694 return -EFAULT;
4695
Jens Axboe11365042019-10-16 09:08:32 -06004696 if (flags & IORING_TIMEOUT_ABS)
Jens Axboead8a48a2019-11-15 08:49:11 -07004697 data->mode = HRTIMER_MODE_ABS;
Jens Axboe11365042019-10-16 09:08:32 -06004698 else
Jens Axboead8a48a2019-11-15 08:49:11 -07004699 data->mode = HRTIMER_MODE_REL;
Jens Axboe11365042019-10-16 09:08:32 -06004700
Jens Axboead8a48a2019-11-15 08:49:11 -07004701 hrtimer_init(&data->timer, CLOCK_MONOTONIC, data->mode);
4702 return 0;
4703}
4704
Jens Axboefc4df992019-12-10 14:38:45 -07004705static int io_timeout(struct io_kiocb *req)
Jens Axboead8a48a2019-11-15 08:49:11 -07004706{
Jens Axboead8a48a2019-11-15 08:49:11 -07004707 struct io_ring_ctx *ctx = req->ctx;
4708 struct io_timeout_data *data;
4709 struct list_head *entry;
4710 unsigned span = 0;
Pavel Begunkovb55ce732020-04-15 00:39:49 +03004711 u32 count = req->timeout.count;
Pavel Begunkov22cad152020-04-15 00:39:48 +03004712 u32 seq = req->sequence;
Jens Axboead8a48a2019-11-15 08:49:11 -07004713
Jens Axboe2d283902019-12-04 11:08:05 -07004714 data = &req->io->timeout;
Jens Axboe93bd25b2019-11-11 23:34:31 -07004715
Jens Axboe5262f562019-09-17 12:26:57 -06004716 /*
4717 * sqe->off holds how many events that need to occur for this
Jens Axboe93bd25b2019-11-11 23:34:31 -07004718 * timeout event to be satisfied. If it isn't set, then this is
4719 * a pure timeout request, sequence isn't used.
Jens Axboe5262f562019-09-17 12:26:57 -06004720 */
Jens Axboe93bd25b2019-11-11 23:34:31 -07004721 if (!count) {
4722 req->flags |= REQ_F_TIMEOUT_NOSEQ;
4723 spin_lock_irq(&ctx->completion_lock);
4724 entry = ctx->timeout_list.prev;
4725 goto add;
4726 }
Jens Axboe5262f562019-09-17 12:26:57 -06004727
Pavel Begunkov22cad152020-04-15 00:39:48 +03004728 req->sequence = seq + count;
Jens Axboe5262f562019-09-17 12:26:57 -06004729
4730 /*
4731 * Insertion sort, ensuring the first entry in the list is always
4732 * the one we need first.
4733 */
Jens Axboe5262f562019-09-17 12:26:57 -06004734 spin_lock_irq(&ctx->completion_lock);
4735 list_for_each_prev(entry, &ctx->timeout_list) {
4736 struct io_kiocb *nxt = list_entry(entry, struct io_kiocb, list);
Pavel Begunkov22cad152020-04-15 00:39:48 +03004737 unsigned nxt_seq;
yangerkun5da0fb12019-10-15 21:59:29 +08004738 long long tmp, tmp_nxt;
Pavel Begunkovb55ce732020-04-15 00:39:49 +03004739 u32 nxt_offset = nxt->timeout.count;
Jens Axboe5262f562019-09-17 12:26:57 -06004740
Jens Axboe93bd25b2019-11-11 23:34:31 -07004741 if (nxt->flags & REQ_F_TIMEOUT_NOSEQ)
4742 continue;
4743
yangerkun5da0fb12019-10-15 21:59:29 +08004744 /*
Pavel Begunkov22cad152020-04-15 00:39:48 +03004745 * Since seq + count can overflow, use type long
yangerkun5da0fb12019-10-15 21:59:29 +08004746 * long to store it.
4747 */
Pavel Begunkov22cad152020-04-15 00:39:48 +03004748 tmp = (long long)seq + count;
4749 nxt_seq = nxt->sequence - nxt_offset;
4750 tmp_nxt = (long long)nxt_seq + nxt_offset;
yangerkun5da0fb12019-10-15 21:59:29 +08004751
4752 /*
4753 * cached_sq_head may overflow, and it will never overflow twice
4754 * once there is some timeout req still be valid.
4755 */
Pavel Begunkov22cad152020-04-15 00:39:48 +03004756 if (seq < nxt_seq)
yangerkun8b07a652019-10-17 12:12:35 +08004757 tmp += UINT_MAX;
yangerkun5da0fb12019-10-15 21:59:29 +08004758
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004759 if (tmp > tmp_nxt)
Jens Axboe5262f562019-09-17 12:26:57 -06004760 break;
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004761
4762 /*
4763 * Sequence of reqs after the insert one and itself should
4764 * be adjusted because each timeout req consumes a slot.
4765 */
4766 span++;
4767 nxt->sequence++;
Jens Axboe5262f562019-09-17 12:26:57 -06004768 }
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004769 req->sequence -= span;
Jens Axboe93bd25b2019-11-11 23:34:31 -07004770add:
Jens Axboe5262f562019-09-17 12:26:57 -06004771 list_add(&req->list, entry);
Jens Axboead8a48a2019-11-15 08:49:11 -07004772 data->timer.function = io_timeout_fn;
4773 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts), data->mode);
Jens Axboe842f9612019-10-29 12:34:10 -06004774 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06004775 return 0;
4776}
4777
Jens Axboe62755e32019-10-28 21:49:21 -06004778static bool io_cancel_cb(struct io_wq_work *work, void *data)
Jens Axboede0617e2019-04-06 21:51:27 -06004779{
Jens Axboe62755e32019-10-28 21:49:21 -06004780 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboede0617e2019-04-06 21:51:27 -06004781
Jens Axboe62755e32019-10-28 21:49:21 -06004782 return req->user_data == (unsigned long) data;
4783}
4784
Jens Axboee977d6d2019-11-05 12:39:45 -07004785static int io_async_cancel_one(struct io_ring_ctx *ctx, void *sqe_addr)
Jens Axboe62755e32019-10-28 21:49:21 -06004786{
Jens Axboe62755e32019-10-28 21:49:21 -06004787 enum io_wq_cancel cancel_ret;
Jens Axboe62755e32019-10-28 21:49:21 -06004788 int ret = 0;
4789
Jens Axboe62755e32019-10-28 21:49:21 -06004790 cancel_ret = io_wq_cancel_cb(ctx->io_wq, io_cancel_cb, sqe_addr);
4791 switch (cancel_ret) {
4792 case IO_WQ_CANCEL_OK:
4793 ret = 0;
4794 break;
4795 case IO_WQ_CANCEL_RUNNING:
4796 ret = -EALREADY;
4797 break;
4798 case IO_WQ_CANCEL_NOTFOUND:
4799 ret = -ENOENT;
4800 break;
4801 }
4802
Jens Axboee977d6d2019-11-05 12:39:45 -07004803 return ret;
4804}
4805
Jens Axboe47f46762019-11-09 17:43:02 -07004806static void io_async_find_and_cancel(struct io_ring_ctx *ctx,
4807 struct io_kiocb *req, __u64 sqe_addr,
Pavel Begunkov014db002020-03-03 21:33:12 +03004808 int success_ret)
Jens Axboe47f46762019-11-09 17:43:02 -07004809{
4810 unsigned long flags;
4811 int ret;
4812
4813 ret = io_async_cancel_one(ctx, (void *) (unsigned long) sqe_addr);
4814 if (ret != -ENOENT) {
4815 spin_lock_irqsave(&ctx->completion_lock, flags);
4816 goto done;
4817 }
4818
4819 spin_lock_irqsave(&ctx->completion_lock, flags);
4820 ret = io_timeout_cancel(ctx, sqe_addr);
4821 if (ret != -ENOENT)
4822 goto done;
4823 ret = io_poll_cancel(ctx, sqe_addr);
4824done:
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004825 if (!ret)
4826 ret = success_ret;
Jens Axboe47f46762019-11-09 17:43:02 -07004827 io_cqring_fill_event(req, ret);
4828 io_commit_cqring(ctx);
4829 spin_unlock_irqrestore(&ctx->completion_lock, flags);
4830 io_cqring_ev_posted(ctx);
4831
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004832 if (ret < 0)
4833 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03004834 io_put_req(req);
Jens Axboe47f46762019-11-09 17:43:02 -07004835}
4836
Jens Axboe3529d8c2019-12-19 18:24:38 -07004837static int io_async_cancel_prep(struct io_kiocb *req,
4838 const struct io_uring_sqe *sqe)
Jens Axboee977d6d2019-11-05 12:39:45 -07004839{
Jens Axboefbf23842019-12-17 18:45:56 -07004840 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboee977d6d2019-11-05 12:39:45 -07004841 return -EINVAL;
4842 if (sqe->flags || sqe->ioprio || sqe->off || sqe->len ||
4843 sqe->cancel_flags)
4844 return -EINVAL;
4845
Jens Axboefbf23842019-12-17 18:45:56 -07004846 req->cancel.addr = READ_ONCE(sqe->addr);
4847 return 0;
4848}
4849
Pavel Begunkov014db002020-03-03 21:33:12 +03004850static int io_async_cancel(struct io_kiocb *req)
Jens Axboefbf23842019-12-17 18:45:56 -07004851{
4852 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefbf23842019-12-17 18:45:56 -07004853
Pavel Begunkov014db002020-03-03 21:33:12 +03004854 io_async_find_and_cancel(ctx, req, req->cancel.addr, 0);
Jens Axboe62755e32019-10-28 21:49:21 -06004855 return 0;
4856}
4857
Jens Axboe05f3fb32019-12-09 11:22:50 -07004858static int io_files_update_prep(struct io_kiocb *req,
4859 const struct io_uring_sqe *sqe)
4860{
4861 if (sqe->flags || sqe->ioprio || sqe->rw_flags)
4862 return -EINVAL;
4863
4864 req->files_update.offset = READ_ONCE(sqe->off);
4865 req->files_update.nr_args = READ_ONCE(sqe->len);
4866 if (!req->files_update.nr_args)
4867 return -EINVAL;
4868 req->files_update.arg = READ_ONCE(sqe->addr);
4869 return 0;
4870}
4871
4872static int io_files_update(struct io_kiocb *req, bool force_nonblock)
4873{
4874 struct io_ring_ctx *ctx = req->ctx;
4875 struct io_uring_files_update up;
4876 int ret;
4877
Jens Axboef86cd202020-01-29 13:46:44 -07004878 if (force_nonblock)
Jens Axboe05f3fb32019-12-09 11:22:50 -07004879 return -EAGAIN;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004880
4881 up.offset = req->files_update.offset;
4882 up.fds = req->files_update.arg;
4883
4884 mutex_lock(&ctx->uring_lock);
4885 ret = __io_sqe_files_update(ctx, &up, req->files_update.nr_args);
4886 mutex_unlock(&ctx->uring_lock);
4887
4888 if (ret < 0)
4889 req_set_fail_links(req);
4890 io_cqring_add_event(req, ret);
4891 io_put_req(req);
4892 return 0;
4893}
4894
Jens Axboe3529d8c2019-12-19 18:24:38 -07004895static int io_req_defer_prep(struct io_kiocb *req,
4896 const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07004897{
Jens Axboee7815732019-12-17 19:45:06 -07004898 ssize_t ret = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07004899
Pavel Begunkovf1d96a82020-03-13 22:29:14 +03004900 if (!sqe)
4901 return 0;
4902
Jens Axboef86cd202020-01-29 13:46:44 -07004903 if (io_op_defs[req->opcode].file_table) {
4904 ret = io_grab_files(req);
4905 if (unlikely(ret))
4906 return ret;
4907 }
4908
Jens Axboecccf0ee2020-01-27 16:34:48 -07004909 io_req_work_grab_env(req, &io_op_defs[req->opcode]);
4910
Jens Axboed625c6e2019-12-17 19:53:05 -07004911 switch (req->opcode) {
Jens Axboee7815732019-12-17 19:45:06 -07004912 case IORING_OP_NOP:
4913 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004914 case IORING_OP_READV:
4915 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004916 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004917 ret = io_read_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07004918 break;
4919 case IORING_OP_WRITEV:
4920 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004921 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004922 ret = io_write_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07004923 break;
Jens Axboe0969e782019-12-17 18:40:57 -07004924 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004925 ret = io_poll_add_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07004926 break;
4927 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004928 ret = io_poll_remove_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07004929 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004930 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004931 ret = io_prep_fsync(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004932 break;
4933 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004934 ret = io_prep_sfr(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004935 break;
Jens Axboe03b12302019-12-02 18:50:25 -07004936 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004937 case IORING_OP_SEND:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004938 ret = io_sendmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07004939 break;
4940 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004941 case IORING_OP_RECV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004942 ret = io_recvmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07004943 break;
Jens Axboef499a022019-12-02 16:28:46 -07004944 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004945 ret = io_connect_prep(req, sqe);
Jens Axboef499a022019-12-02 16:28:46 -07004946 break;
Jens Axboe2d283902019-12-04 11:08:05 -07004947 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004948 ret = io_timeout_prep(req, sqe, false);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004949 break;
Jens Axboeb29472e2019-12-17 18:50:29 -07004950 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004951 ret = io_timeout_remove_prep(req, sqe);
Jens Axboeb29472e2019-12-17 18:50:29 -07004952 break;
Jens Axboefbf23842019-12-17 18:45:56 -07004953 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004954 ret = io_async_cancel_prep(req, sqe);
Jens Axboefbf23842019-12-17 18:45:56 -07004955 break;
Jens Axboe2d283902019-12-04 11:08:05 -07004956 case IORING_OP_LINK_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004957 ret = io_timeout_prep(req, sqe, true);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004958 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004959 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004960 ret = io_accept_prep(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004961 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07004962 case IORING_OP_FALLOCATE:
4963 ret = io_fallocate_prep(req, sqe);
4964 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004965 case IORING_OP_OPENAT:
4966 ret = io_openat_prep(req, sqe);
4967 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07004968 case IORING_OP_CLOSE:
4969 ret = io_close_prep(req, sqe);
4970 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004971 case IORING_OP_FILES_UPDATE:
4972 ret = io_files_update_prep(req, sqe);
4973 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004974 case IORING_OP_STATX:
4975 ret = io_statx_prep(req, sqe);
4976 break;
Jens Axboe4840e412019-12-25 22:03:45 -07004977 case IORING_OP_FADVISE:
4978 ret = io_fadvise_prep(req, sqe);
4979 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07004980 case IORING_OP_MADVISE:
4981 ret = io_madvise_prep(req, sqe);
4982 break;
Jens Axboecebdb982020-01-08 17:59:24 -07004983 case IORING_OP_OPENAT2:
4984 ret = io_openat2_prep(req, sqe);
4985 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07004986 case IORING_OP_EPOLL_CTL:
4987 ret = io_epoll_ctl_prep(req, sqe);
4988 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03004989 case IORING_OP_SPLICE:
4990 ret = io_splice_prep(req, sqe);
4991 break;
Jens Axboeddf0322d2020-02-23 16:41:33 -07004992 case IORING_OP_PROVIDE_BUFFERS:
4993 ret = io_provide_buffers_prep(req, sqe);
4994 break;
Jens Axboe067524e2020-03-02 16:32:28 -07004995 case IORING_OP_REMOVE_BUFFERS:
4996 ret = io_remove_buffers_prep(req, sqe);
4997 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004998 default:
Jens Axboee7815732019-12-17 19:45:06 -07004999 printk_once(KERN_WARNING "io_uring: unhandled opcode %d\n",
5000 req->opcode);
5001 ret = -EINVAL;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07005002 break;
Jens Axboef67676d2019-12-02 11:03:47 -07005003 }
5004
Jens Axboeb7bb4f72019-12-15 22:13:43 -07005005 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07005006}
5007
Jens Axboe3529d8c2019-12-19 18:24:38 -07005008static int io_req_defer(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboede0617e2019-04-06 21:51:27 -06005009{
Jackie Liua197f662019-11-08 08:09:12 -07005010 struct io_ring_ctx *ctx = req->ctx;
Jens Axboef67676d2019-12-02 11:03:47 -07005011 int ret;
Jens Axboede0617e2019-04-06 21:51:27 -06005012
Bob Liu9d858b22019-11-13 18:06:25 +08005013 /* Still need defer if there is pending req in defer list. */
Pavel Begunkov4ee36312020-05-01 17:09:37 +03005014 if (!req_need_defer(req) && list_empty_careful(&ctx->defer_list))
Jens Axboede0617e2019-04-06 21:51:27 -06005015 return 0;
5016
Jens Axboe3529d8c2019-12-19 18:24:38 -07005017 if (!req->io && io_alloc_async_ctx(req))
Jens Axboede0617e2019-04-06 21:51:27 -06005018 return -EAGAIN;
5019
Jens Axboe3529d8c2019-12-19 18:24:38 -07005020 ret = io_req_defer_prep(req, sqe);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07005021 if (ret < 0)
Jens Axboe2d283902019-12-04 11:08:05 -07005022 return ret;
Jens Axboe2d283902019-12-04 11:08:05 -07005023
Jens Axboede0617e2019-04-06 21:51:27 -06005024 spin_lock_irq(&ctx->completion_lock);
Bob Liu9d858b22019-11-13 18:06:25 +08005025 if (!req_need_defer(req) && list_empty(&ctx->defer_list)) {
Jens Axboede0617e2019-04-06 21:51:27 -06005026 spin_unlock_irq(&ctx->completion_lock);
Jens Axboede0617e2019-04-06 21:51:27 -06005027 return 0;
5028 }
5029
Jens Axboe915967f2019-11-21 09:01:20 -07005030 trace_io_uring_defer(ctx, req, req->user_data);
Jens Axboede0617e2019-04-06 21:51:27 -06005031 list_add_tail(&req->list, &ctx->defer_list);
5032 spin_unlock_irq(&ctx->completion_lock);
5033 return -EIOCBQUEUED;
5034}
5035
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005036static void io_cleanup_req(struct io_kiocb *req)
5037{
5038 struct io_async_ctx *io = req->io;
5039
5040 switch (req->opcode) {
5041 case IORING_OP_READV:
5042 case IORING_OP_READ_FIXED:
5043 case IORING_OP_READ:
Jens Axboebcda7ba2020-02-23 16:42:51 -07005044 if (req->flags & REQ_F_BUFFER_SELECTED)
5045 kfree((void *)(unsigned long)req->rw.addr);
5046 /* fallthrough */
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005047 case IORING_OP_WRITEV:
5048 case IORING_OP_WRITE_FIXED:
5049 case IORING_OP_WRITE:
5050 if (io->rw.iov != io->rw.fast_iov)
5051 kfree(io->rw.iov);
5052 break;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005053 case IORING_OP_RECVMSG:
Jens Axboe52de1fe2020-02-27 10:15:42 -07005054 if (req->flags & REQ_F_BUFFER_SELECTED)
5055 kfree(req->sr_msg.kbuf);
5056 /* fallthrough */
5057 case IORING_OP_SENDMSG:
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005058 if (io->msg.iov != io->msg.fast_iov)
5059 kfree(io->msg.iov);
5060 break;
Jens Axboebcda7ba2020-02-23 16:42:51 -07005061 case IORING_OP_RECV:
5062 if (req->flags & REQ_F_BUFFER_SELECTED)
5063 kfree(req->sr_msg.kbuf);
5064 break;
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03005065 case IORING_OP_OPENAT:
5066 case IORING_OP_OPENAT2:
5067 case IORING_OP_STATX:
5068 putname(req->open.filename);
5069 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005070 case IORING_OP_SPLICE:
5071 io_put_file(req, req->splice.file_in,
5072 (req->splice.flags & SPLICE_F_FD_IN_FIXED));
5073 break;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005074 }
5075
5076 req->flags &= ~REQ_F_NEED_CLEANUP;
5077}
5078
Jens Axboe3529d8c2019-12-19 18:24:38 -07005079static int io_issue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Pavel Begunkov014db002020-03-03 21:33:12 +03005080 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005081{
Jackie Liua197f662019-11-08 08:09:12 -07005082 struct io_ring_ctx *ctx = req->ctx;
Jens Axboed625c6e2019-12-17 19:53:05 -07005083 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005084
Jens Axboed625c6e2019-12-17 19:53:05 -07005085 switch (req->opcode) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07005086 case IORING_OP_NOP:
Jens Axboe78e19bb2019-11-06 15:21:34 -07005087 ret = io_nop(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005088 break;
5089 case IORING_OP_READV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005090 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07005091 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005092 if (sqe) {
5093 ret = io_read_prep(req, sqe, force_nonblock);
5094 if (ret < 0)
5095 break;
5096 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005097 ret = io_read(req, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005098 break;
5099 case IORING_OP_WRITEV:
Jens Axboeedafcce2019-01-09 09:16:05 -07005100 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07005101 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005102 if (sqe) {
5103 ret = io_write_prep(req, sqe, force_nonblock);
5104 if (ret < 0)
5105 break;
5106 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005107 ret = io_write(req, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005108 break;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07005109 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005110 if (sqe) {
5111 ret = io_prep_fsync(req, sqe);
5112 if (ret < 0)
5113 break;
5114 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005115 ret = io_fsync(req, force_nonblock);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07005116 break;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005117 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005118 if (sqe) {
5119 ret = io_poll_add_prep(req, sqe);
5120 if (ret)
5121 break;
5122 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005123 ret = io_poll_add(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005124 break;
5125 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005126 if (sqe) {
5127 ret = io_poll_remove_prep(req, sqe);
5128 if (ret < 0)
5129 break;
5130 }
Jens Axboefc4df992019-12-10 14:38:45 -07005131 ret = io_poll_remove(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005132 break;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06005133 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005134 if (sqe) {
5135 ret = io_prep_sfr(req, sqe);
5136 if (ret < 0)
5137 break;
5138 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005139 ret = io_sync_file_range(req, force_nonblock);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06005140 break;
Jens Axboe0fa03c62019-04-19 13:34:07 -06005141 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005142 case IORING_OP_SEND:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005143 if (sqe) {
5144 ret = io_sendmsg_prep(req, sqe);
5145 if (ret < 0)
5146 break;
5147 }
Jens Axboefddafac2020-01-04 20:19:44 -07005148 if (req->opcode == IORING_OP_SENDMSG)
Pavel Begunkov014db002020-03-03 21:33:12 +03005149 ret = io_sendmsg(req, force_nonblock);
Jens Axboefddafac2020-01-04 20:19:44 -07005150 else
Pavel Begunkov014db002020-03-03 21:33:12 +03005151 ret = io_send(req, force_nonblock);
Jens Axboe0fa03c62019-04-19 13:34:07 -06005152 break;
Jens Axboeaa1fa282019-04-19 13:38:09 -06005153 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005154 case IORING_OP_RECV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005155 if (sqe) {
5156 ret = io_recvmsg_prep(req, sqe);
5157 if (ret)
5158 break;
5159 }
Jens Axboefddafac2020-01-04 20:19:44 -07005160 if (req->opcode == IORING_OP_RECVMSG)
Pavel Begunkov014db002020-03-03 21:33:12 +03005161 ret = io_recvmsg(req, force_nonblock);
Jens Axboefddafac2020-01-04 20:19:44 -07005162 else
Pavel Begunkov014db002020-03-03 21:33:12 +03005163 ret = io_recv(req, force_nonblock);
Jens Axboeaa1fa282019-04-19 13:38:09 -06005164 break;
Jens Axboe5262f562019-09-17 12:26:57 -06005165 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005166 if (sqe) {
5167 ret = io_timeout_prep(req, sqe, false);
5168 if (ret)
5169 break;
5170 }
Jens Axboefc4df992019-12-10 14:38:45 -07005171 ret = io_timeout(req);
Jens Axboe5262f562019-09-17 12:26:57 -06005172 break;
Jens Axboe11365042019-10-16 09:08:32 -06005173 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005174 if (sqe) {
5175 ret = io_timeout_remove_prep(req, sqe);
5176 if (ret)
5177 break;
5178 }
Jens Axboefc4df992019-12-10 14:38:45 -07005179 ret = io_timeout_remove(req);
Jens Axboe11365042019-10-16 09:08:32 -06005180 break;
Jens Axboe17f2fe32019-10-17 14:42:58 -06005181 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005182 if (sqe) {
5183 ret = io_accept_prep(req, sqe);
5184 if (ret)
5185 break;
5186 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005187 ret = io_accept(req, force_nonblock);
Jens Axboe17f2fe32019-10-17 14:42:58 -06005188 break;
Jens Axboef8e85cf2019-11-23 14:24:24 -07005189 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005190 if (sqe) {
5191 ret = io_connect_prep(req, sqe);
5192 if (ret)
5193 break;
5194 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005195 ret = io_connect(req, force_nonblock);
Jens Axboef8e85cf2019-11-23 14:24:24 -07005196 break;
Jens Axboe62755e32019-10-28 21:49:21 -06005197 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005198 if (sqe) {
5199 ret = io_async_cancel_prep(req, sqe);
5200 if (ret)
5201 break;
5202 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005203 ret = io_async_cancel(req);
Jens Axboe62755e32019-10-28 21:49:21 -06005204 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07005205 case IORING_OP_FALLOCATE:
5206 if (sqe) {
5207 ret = io_fallocate_prep(req, sqe);
5208 if (ret)
5209 break;
5210 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005211 ret = io_fallocate(req, force_nonblock);
Jens Axboed63d1b52019-12-10 10:38:56 -07005212 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07005213 case IORING_OP_OPENAT:
5214 if (sqe) {
5215 ret = io_openat_prep(req, sqe);
5216 if (ret)
5217 break;
5218 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005219 ret = io_openat(req, force_nonblock);
Jens Axboe15b71ab2019-12-11 11:20:36 -07005220 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07005221 case IORING_OP_CLOSE:
5222 if (sqe) {
5223 ret = io_close_prep(req, sqe);
5224 if (ret)
5225 break;
5226 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005227 ret = io_close(req, force_nonblock);
Jens Axboeb5dba592019-12-11 14:02:38 -07005228 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005229 case IORING_OP_FILES_UPDATE:
5230 if (sqe) {
5231 ret = io_files_update_prep(req, sqe);
5232 if (ret)
5233 break;
5234 }
5235 ret = io_files_update(req, force_nonblock);
5236 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07005237 case IORING_OP_STATX:
5238 if (sqe) {
5239 ret = io_statx_prep(req, sqe);
5240 if (ret)
5241 break;
5242 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005243 ret = io_statx(req, force_nonblock);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07005244 break;
Jens Axboe4840e412019-12-25 22:03:45 -07005245 case IORING_OP_FADVISE:
5246 if (sqe) {
5247 ret = io_fadvise_prep(req, sqe);
5248 if (ret)
5249 break;
5250 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005251 ret = io_fadvise(req, force_nonblock);
Jens Axboe4840e412019-12-25 22:03:45 -07005252 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07005253 case IORING_OP_MADVISE:
5254 if (sqe) {
5255 ret = io_madvise_prep(req, sqe);
5256 if (ret)
5257 break;
5258 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005259 ret = io_madvise(req, force_nonblock);
Jens Axboec1ca7572019-12-25 22:18:28 -07005260 break;
Jens Axboecebdb982020-01-08 17:59:24 -07005261 case IORING_OP_OPENAT2:
5262 if (sqe) {
5263 ret = io_openat2_prep(req, sqe);
5264 if (ret)
5265 break;
5266 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005267 ret = io_openat2(req, force_nonblock);
Jens Axboecebdb982020-01-08 17:59:24 -07005268 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07005269 case IORING_OP_EPOLL_CTL:
5270 if (sqe) {
5271 ret = io_epoll_ctl_prep(req, sqe);
5272 if (ret)
5273 break;
5274 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005275 ret = io_epoll_ctl(req, force_nonblock);
Jens Axboe3e4827b2020-01-08 15:18:09 -07005276 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005277 case IORING_OP_SPLICE:
5278 if (sqe) {
5279 ret = io_splice_prep(req, sqe);
5280 if (ret < 0)
5281 break;
5282 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005283 ret = io_splice(req, force_nonblock);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005284 break;
Jens Axboeddf0322d2020-02-23 16:41:33 -07005285 case IORING_OP_PROVIDE_BUFFERS:
5286 if (sqe) {
5287 ret = io_provide_buffers_prep(req, sqe);
5288 if (ret)
5289 break;
5290 }
5291 ret = io_provide_buffers(req, force_nonblock);
5292 break;
Jens Axboe067524e2020-03-02 16:32:28 -07005293 case IORING_OP_REMOVE_BUFFERS:
5294 if (sqe) {
5295 ret = io_remove_buffers_prep(req, sqe);
5296 if (ret)
5297 break;
5298 }
5299 ret = io_remove_buffers(req, force_nonblock);
Jens Axboe31b51512019-01-18 22:56:34 -07005300 break;
5301 default:
5302 ret = -EINVAL;
Jens Axboeedafcce2019-01-09 09:16:05 -07005303 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005304 }
5305
Jens Axboe31b51512019-01-18 22:56:34 -07005306 if (ret)
5307 return ret;
5308
5309 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboe11ba8202020-01-15 21:51:17 -07005310 const bool in_async = io_wq_current_is_worker();
5311
Jens Axboe9e645e112019-05-10 16:07:28 -06005312 if (req->result == -EAGAIN)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005313 return -EAGAIN;
5314
Jens Axboe11ba8202020-01-15 21:51:17 -07005315 /* workqueue context doesn't hold uring_lock, grab it now */
5316 if (in_async)
5317 mutex_lock(&ctx->uring_lock);
5318
Jens Axboe2b188cc2019-01-07 10:46:33 -07005319 io_iopoll_req_issued(req);
Jens Axboe11ba8202020-01-15 21:51:17 -07005320
5321 if (in_async)
5322 mutex_unlock(&ctx->uring_lock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005323 }
5324
5325 return 0;
5326}
5327
Jens Axboe561fb042019-10-24 07:25:42 -06005328static void io_wq_submit_work(struct io_wq_work **workptr)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005329{
Jens Axboe561fb042019-10-24 07:25:42 -06005330 struct io_wq_work *work = *workptr;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005331 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboe561fb042019-10-24 07:25:42 -06005332 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005333
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07005334 /* if NO_CANCEL is set, we must still run the work */
5335 if ((work->flags & (IO_WQ_WORK_CANCEL|IO_WQ_WORK_NO_CANCEL)) ==
5336 IO_WQ_WORK_CANCEL) {
Jens Axboe561fb042019-10-24 07:25:42 -06005337 ret = -ECANCELED;
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07005338 }
Jens Axboe31b51512019-01-18 22:56:34 -07005339
Jens Axboe561fb042019-10-24 07:25:42 -06005340 if (!ret) {
Jens Axboe561fb042019-10-24 07:25:42 -06005341 do {
Pavel Begunkov014db002020-03-03 21:33:12 +03005342 ret = io_issue_sqe(req, NULL, false);
Jens Axboe561fb042019-10-24 07:25:42 -06005343 /*
5344 * We can get EAGAIN for polled IO even though we're
5345 * forcing a sync submission from here, since we can't
5346 * wait for request slots on the block side.
5347 */
5348 if (ret != -EAGAIN)
5349 break;
5350 cond_resched();
5351 } while (1);
5352 }
Jens Axboe31b51512019-01-18 22:56:34 -07005353
Jens Axboe561fb042019-10-24 07:25:42 -06005354 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005355 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07005356 io_cqring_add_event(req, ret);
Jens Axboe817869d2019-04-30 14:44:05 -06005357 io_put_req(req);
Jens Axboeedafcce2019-01-09 09:16:05 -07005358 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07005359
Pavel Begunkove9fd9392020-03-04 16:14:12 +03005360 io_steal_work(req, workptr);
Jens Axboe31b51512019-01-18 22:56:34 -07005361}
Jens Axboe2b188cc2019-01-07 10:46:33 -07005362
Jens Axboe65e19f52019-10-26 07:20:21 -06005363static inline struct file *io_file_from_index(struct io_ring_ctx *ctx,
5364 int index)
Jens Axboe09bb8392019-03-13 12:39:28 -06005365{
Jens Axboe65e19f52019-10-26 07:20:21 -06005366 struct fixed_file_table *table;
5367
Jens Axboe05f3fb32019-12-09 11:22:50 -07005368 table = &ctx->file_data->table[index >> IORING_FILE_TABLE_SHIFT];
Xiaoming Ni84695082020-05-11 19:25:43 +08005369 return table->files[index & IORING_FILE_TABLE_MASK];
Jens Axboe65e19f52019-10-26 07:20:21 -06005370}
5371
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005372static int io_file_get(struct io_submit_state *state, struct io_kiocb *req,
5373 int fd, struct file **out_file, bool fixed)
5374{
5375 struct io_ring_ctx *ctx = req->ctx;
5376 struct file *file;
5377
5378 if (fixed) {
5379 if (unlikely(!ctx->file_data ||
5380 (unsigned) fd >= ctx->nr_user_files))
5381 return -EBADF;
5382 fd = array_index_nospec(fd, ctx->nr_user_files);
5383 file = io_file_from_index(ctx, fd);
5384 if (!file)
5385 return -EBADF;
Xiaoguang Wang05589552020-03-31 14:05:18 +08005386 req->fixed_file_refs = ctx->file_data->cur_refs;
5387 percpu_ref_get(req->fixed_file_refs);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005388 } else {
5389 trace_io_uring_file_get(ctx, fd);
5390 file = __io_file_get(state, fd);
5391 if (unlikely(!file))
5392 return -EBADF;
5393 }
5394
5395 *out_file = file;
5396 return 0;
5397}
5398
Jens Axboe3529d8c2019-12-19 18:24:38 -07005399static int io_req_set_file(struct io_submit_state *state, struct io_kiocb *req,
Jens Axboe63ff8222020-05-07 14:56:15 -06005400 int fd)
Jens Axboe09bb8392019-03-13 12:39:28 -06005401{
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005402 bool fixed;
Jens Axboe09bb8392019-03-13 12:39:28 -06005403
Jens Axboe63ff8222020-05-07 14:56:15 -06005404 fixed = (req->flags & REQ_F_FIXED_FILE) != 0;
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005405 if (unlikely(!fixed && req->needs_fixed_file))
5406 return -EBADF;
Jens Axboe09bb8392019-03-13 12:39:28 -06005407
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005408 return io_file_get(state, req, fd, &req->file, fixed);
Jens Axboe09bb8392019-03-13 12:39:28 -06005409}
5410
Jackie Liua197f662019-11-08 08:09:12 -07005411static int io_grab_files(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005412{
Jens Axboefcb323c2019-10-24 12:39:47 -06005413 int ret = -EBADF;
Jackie Liua197f662019-11-08 08:09:12 -07005414 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06005415
Jens Axboe5b0bbee2020-04-27 10:41:22 -06005416 if (req->work.files || (req->flags & REQ_F_NO_FILE_TABLE))
Jens Axboef86cd202020-01-29 13:46:44 -07005417 return 0;
Pavel Begunkovb14cca02020-01-17 04:45:59 +03005418 if (!ctx->ring_file)
Jens Axboeb5dba592019-12-11 14:02:38 -07005419 return -EBADF;
5420
Jens Axboefcb323c2019-10-24 12:39:47 -06005421 rcu_read_lock();
5422 spin_lock_irq(&ctx->inflight_lock);
5423 /*
5424 * We use the f_ops->flush() handler to ensure that we can flush
5425 * out work accessing these files if the fd is closed. Check if
5426 * the fd has changed since we started down this path, and disallow
5427 * this operation if it has.
5428 */
Pavel Begunkovb14cca02020-01-17 04:45:59 +03005429 if (fcheck(ctx->ring_fd) == ctx->ring_file) {
Jens Axboefcb323c2019-10-24 12:39:47 -06005430 list_add(&req->inflight_entry, &ctx->inflight_list);
5431 req->flags |= REQ_F_INFLIGHT;
5432 req->work.files = current->files;
5433 ret = 0;
5434 }
5435 spin_unlock_irq(&ctx->inflight_lock);
5436 rcu_read_unlock();
5437
5438 return ret;
5439}
5440
Jens Axboe2665abf2019-11-05 12:40:47 -07005441static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer)
5442{
Jens Axboead8a48a2019-11-15 08:49:11 -07005443 struct io_timeout_data *data = container_of(timer,
5444 struct io_timeout_data, timer);
5445 struct io_kiocb *req = data->req;
Jens Axboe2665abf2019-11-05 12:40:47 -07005446 struct io_ring_ctx *ctx = req->ctx;
5447 struct io_kiocb *prev = NULL;
5448 unsigned long flags;
Jens Axboe2665abf2019-11-05 12:40:47 -07005449
5450 spin_lock_irqsave(&ctx->completion_lock, flags);
5451
5452 /*
5453 * We don't expect the list to be empty, that will only happen if we
5454 * race with the completion of the linked work.
5455 */
Pavel Begunkov44932332019-12-05 16:16:35 +03005456 if (!list_empty(&req->link_list)) {
5457 prev = list_entry(req->link_list.prev, struct io_kiocb,
5458 link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07005459 if (refcount_inc_not_zero(&prev->refs)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03005460 list_del_init(&req->link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07005461 prev->flags &= ~REQ_F_LINK_TIMEOUT;
5462 } else
Jens Axboe76a46e02019-11-10 23:34:16 -07005463 prev = NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07005464 }
5465
5466 spin_unlock_irqrestore(&ctx->completion_lock, flags);
5467
5468 if (prev) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005469 req_set_fail_links(prev);
Pavel Begunkov014db002020-03-03 21:33:12 +03005470 io_async_find_and_cancel(ctx, req, prev->user_data, -ETIME);
Jens Axboe76a46e02019-11-10 23:34:16 -07005471 io_put_req(prev);
Jens Axboe47f46762019-11-09 17:43:02 -07005472 } else {
5473 io_cqring_add_event(req, -ETIME);
5474 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07005475 }
Jens Axboe2665abf2019-11-05 12:40:47 -07005476 return HRTIMER_NORESTART;
5477}
5478
Jens Axboead8a48a2019-11-15 08:49:11 -07005479static void io_queue_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07005480{
Jens Axboe76a46e02019-11-10 23:34:16 -07005481 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07005482
Jens Axboe76a46e02019-11-10 23:34:16 -07005483 /*
5484 * If the list is now empty, then our linked request finished before
5485 * we got a chance to setup the timer
5486 */
5487 spin_lock_irq(&ctx->completion_lock);
Pavel Begunkov44932332019-12-05 16:16:35 +03005488 if (!list_empty(&req->link_list)) {
Jens Axboe2d283902019-12-04 11:08:05 -07005489 struct io_timeout_data *data = &req->io->timeout;
Jens Axboe94ae5e72019-11-14 19:39:52 -07005490
Jens Axboead8a48a2019-11-15 08:49:11 -07005491 data->timer.function = io_link_timeout_fn;
5492 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts),
5493 data->mode);
Jens Axboe2665abf2019-11-05 12:40:47 -07005494 }
Jens Axboe76a46e02019-11-10 23:34:16 -07005495 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe2665abf2019-11-05 12:40:47 -07005496
Jens Axboe2665abf2019-11-05 12:40:47 -07005497 /* drop submission reference */
Jens Axboe76a46e02019-11-10 23:34:16 -07005498 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07005499}
5500
Jens Axboead8a48a2019-11-15 08:49:11 -07005501static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07005502{
5503 struct io_kiocb *nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005504
Pavel Begunkovdea3b492020-04-12 02:05:04 +03005505 if (!(req->flags & REQ_F_LINK_HEAD))
Jens Axboe2665abf2019-11-05 12:40:47 -07005506 return NULL;
Jens Axboed7718a92020-02-14 22:23:12 -07005507 /* for polled retry, if flag is set, we already went through here */
5508 if (req->flags & REQ_F_POLLED)
5509 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07005510
Pavel Begunkov44932332019-12-05 16:16:35 +03005511 nxt = list_first_entry_or_null(&req->link_list, struct io_kiocb,
5512 link_list);
Jens Axboed625c6e2019-12-17 19:53:05 -07005513 if (!nxt || nxt->opcode != IORING_OP_LINK_TIMEOUT)
Jens Axboe76a46e02019-11-10 23:34:16 -07005514 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07005515
Jens Axboe76a46e02019-11-10 23:34:16 -07005516 req->flags |= REQ_F_LINK_TIMEOUT;
Jens Axboe76a46e02019-11-10 23:34:16 -07005517 return nxt;
Jens Axboe2665abf2019-11-05 12:40:47 -07005518}
5519
Jens Axboe3529d8c2019-12-19 18:24:38 -07005520static void __io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005521{
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005522 struct io_kiocb *linked_timeout;
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005523 struct io_kiocb *nxt;
Jens Axboe193155c2020-02-22 23:22:19 -07005524 const struct cred *old_creds = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005525 int ret;
5526
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005527again:
5528 linked_timeout = io_prep_linked_timeout(req);
5529
Jens Axboe193155c2020-02-22 23:22:19 -07005530 if (req->work.creds && req->work.creds != current_cred()) {
5531 if (old_creds)
5532 revert_creds(old_creds);
5533 if (old_creds == req->work.creds)
5534 old_creds = NULL; /* restored original creds */
5535 else
5536 old_creds = override_creds(req->work.creds);
5537 }
5538
Pavel Begunkov014db002020-03-03 21:33:12 +03005539 ret = io_issue_sqe(req, sqe, true);
Jens Axboe491381ce2019-10-17 09:20:46 -06005540
5541 /*
5542 * We async punt it if the file wasn't marked NOWAIT, or if the file
5543 * doesn't support non-blocking read/write attempts
5544 */
5545 if (ret == -EAGAIN && (!(req->flags & REQ_F_NOWAIT) ||
5546 (req->flags & REQ_F_MUST_PUNT))) {
Jens Axboed7718a92020-02-14 22:23:12 -07005547 if (io_arm_poll_handler(req)) {
5548 if (linked_timeout)
5549 io_queue_linked_timeout(linked_timeout);
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005550 goto exit;
Jens Axboed7718a92020-02-14 22:23:12 -07005551 }
Pavel Begunkov86a761f2020-01-22 23:09:36 +03005552punt:
Jens Axboef86cd202020-01-29 13:46:44 -07005553 if (io_op_defs[req->opcode].file_table) {
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03005554 ret = io_grab_files(req);
5555 if (ret)
5556 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005557 }
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03005558
5559 /*
5560 * Queued up for async execution, worker will release
5561 * submit reference when the iocb is actually submitted.
5562 */
5563 io_queue_async_work(req);
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005564 goto exit;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005565 }
Jens Axboee65ef562019-03-12 10:16:44 -06005566
Jens Axboefcb323c2019-10-24 12:39:47 -06005567err:
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005568 nxt = NULL;
Jens Axboee65ef562019-03-12 10:16:44 -06005569 /* drop submission reference */
Jens Axboe2a44f462020-02-25 13:25:41 -07005570 io_put_req_find_next(req, &nxt);
Jens Axboee65ef562019-03-12 10:16:44 -06005571
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03005572 if (linked_timeout) {
Jens Axboe76a46e02019-11-10 23:34:16 -07005573 if (!ret)
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03005574 io_queue_linked_timeout(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07005575 else
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03005576 io_put_req(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07005577 }
5578
Jens Axboee65ef562019-03-12 10:16:44 -06005579 /* and drop final reference, if we failed */
Jens Axboe9e645e112019-05-10 16:07:28 -06005580 if (ret) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07005581 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005582 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06005583 io_put_req(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06005584 }
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005585 if (nxt) {
5586 req = nxt;
Pavel Begunkov86a761f2020-01-22 23:09:36 +03005587
5588 if (req->flags & REQ_F_FORCE_ASYNC)
5589 goto punt;
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005590 goto again;
5591 }
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005592exit:
Jens Axboe193155c2020-02-22 23:22:19 -07005593 if (old_creds)
5594 revert_creds(old_creds);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005595}
5596
Jens Axboe3529d8c2019-12-19 18:24:38 -07005597static void io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jackie Liu4fe2c962019-09-09 20:50:40 +08005598{
5599 int ret;
5600
Jens Axboe3529d8c2019-12-19 18:24:38 -07005601 ret = io_req_defer(req, sqe);
Jackie Liu4fe2c962019-09-09 20:50:40 +08005602 if (ret) {
5603 if (ret != -EIOCBQUEUED) {
Pavel Begunkov11185912020-01-22 23:09:35 +03005604fail_req:
Jens Axboe78e19bb2019-11-06 15:21:34 -07005605 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005606 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07005607 io_double_put_req(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08005608 }
Pavel Begunkov25508782019-12-30 21:24:47 +03005609 } else if (req->flags & REQ_F_FORCE_ASYNC) {
Pavel Begunkov11185912020-01-22 23:09:35 +03005610 ret = io_req_defer_prep(req, sqe);
5611 if (unlikely(ret < 0))
5612 goto fail_req;
Jens Axboece35a472019-12-17 08:04:44 -07005613 /*
5614 * Never try inline submit of IOSQE_ASYNC is set, go straight
5615 * to async execution.
5616 */
5617 req->work.flags |= IO_WQ_WORK_CONCURRENT;
5618 io_queue_async_work(req);
5619 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07005620 __io_queue_sqe(req, sqe);
Jens Axboece35a472019-12-17 08:04:44 -07005621 }
Jackie Liu4fe2c962019-09-09 20:50:40 +08005622}
5623
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005624static inline void io_queue_link_head(struct io_kiocb *req)
Jackie Liu4fe2c962019-09-09 20:50:40 +08005625{
Jens Axboe94ae5e72019-11-14 19:39:52 -07005626 if (unlikely(req->flags & REQ_F_FAIL_LINK)) {
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005627 io_cqring_add_event(req, -ECANCELED);
5628 io_double_put_req(req);
5629 } else
Jens Axboe3529d8c2019-12-19 18:24:38 -07005630 io_queue_sqe(req, NULL);
Jackie Liu4fe2c962019-09-09 20:50:40 +08005631}
5632
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03005633static int io_submit_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Xiaoguang Wang7d01bd72020-05-08 21:19:30 +08005634 struct io_kiocb **link)
Jens Axboe9e645e112019-05-10 16:07:28 -06005635{
Jackie Liua197f662019-11-08 08:09:12 -07005636 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005637 int ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06005638
Jens Axboe9e645e112019-05-10 16:07:28 -06005639 /*
5640 * If we already have a head request, queue this one for async
5641 * submittal once the head completes. If we don't have a head but
5642 * IOSQE_IO_LINK is set in the sqe, start a new head. This one will be
5643 * submitted sync once the chain is complete. If none of those
5644 * conditions are true (normal request), then just queue it.
5645 */
5646 if (*link) {
Pavel Begunkov9d763772019-12-17 02:22:07 +03005647 struct io_kiocb *head = *link;
Jens Axboe9e645e112019-05-10 16:07:28 -06005648
Pavel Begunkov8cdf2192020-01-25 00:40:24 +03005649 /*
5650 * Taking sequential execution of a link, draining both sides
5651 * of the link also fullfils IOSQE_IO_DRAIN semantics for all
5652 * requests in the link. So, it drains the head and the
5653 * next after the link request. The last one is done via
5654 * drain_next flag to persist the effect across calls.
5655 */
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005656 if (req->flags & REQ_F_IO_DRAIN) {
Pavel Begunkov711be032020-01-17 03:57:59 +03005657 head->flags |= REQ_F_IO_DRAIN;
5658 ctx->drain_next = 1;
5659 }
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03005660 if (io_alloc_async_ctx(req))
5661 return -EAGAIN;
Jens Axboe9e645e112019-05-10 16:07:28 -06005662
Jens Axboe3529d8c2019-12-19 18:24:38 -07005663 ret = io_req_defer_prep(req, sqe);
Jens Axboe2d283902019-12-04 11:08:05 -07005664 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005665 /* fail even hard links since we don't submit */
Pavel Begunkov9d763772019-12-17 02:22:07 +03005666 head->flags |= REQ_F_FAIL_LINK;
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03005667 return ret;
Jens Axboe2d283902019-12-04 11:08:05 -07005668 }
Pavel Begunkov9d763772019-12-17 02:22:07 +03005669 trace_io_uring_link(ctx, req, head);
5670 list_add_tail(&req->link_list, &head->link_list);
Jens Axboe9e645e112019-05-10 16:07:28 -06005671
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005672 /* last request of a link, enqueue the link */
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005673 if (!(req->flags & (REQ_F_LINK | REQ_F_HARDLINK))) {
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005674 io_queue_link_head(head);
5675 *link = NULL;
5676 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005677 } else {
Pavel Begunkov711be032020-01-17 03:57:59 +03005678 if (unlikely(ctx->drain_next)) {
5679 req->flags |= REQ_F_IO_DRAIN;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005680 ctx->drain_next = 0;
Pavel Begunkov711be032020-01-17 03:57:59 +03005681 }
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005682 if (req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) {
Pavel Begunkovdea3b492020-04-12 02:05:04 +03005683 req->flags |= REQ_F_LINK_HEAD;
Pavel Begunkov711be032020-01-17 03:57:59 +03005684 INIT_LIST_HEAD(&req->link_list);
Pavel Begunkovf1d96a82020-03-13 22:29:14 +03005685
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03005686 if (io_alloc_async_ctx(req))
5687 return -EAGAIN;
5688
Pavel Begunkov711be032020-01-17 03:57:59 +03005689 ret = io_req_defer_prep(req, sqe);
5690 if (ret)
5691 req->flags |= REQ_F_FAIL_LINK;
5692 *link = req;
5693 } else {
5694 io_queue_sqe(req, sqe);
5695 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005696 }
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03005697
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03005698 return 0;
Jens Axboe9e645e112019-05-10 16:07:28 -06005699}
5700
Jens Axboe9a56a232019-01-09 09:06:50 -07005701/*
5702 * Batched submission is done, ensure local IO is flushed out.
5703 */
5704static void io_submit_state_end(struct io_submit_state *state)
5705{
5706 blk_finish_plug(&state->plug);
Jens Axboe3d6770f2019-04-13 11:50:54 -06005707 io_file_put(state);
Jens Axboe2579f912019-01-09 09:10:43 -07005708 if (state->free_reqs)
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03005709 kmem_cache_free_bulk(req_cachep, state->free_reqs, state->reqs);
Jens Axboe9a56a232019-01-09 09:06:50 -07005710}
5711
5712/*
5713 * Start submission side cache.
5714 */
5715static void io_submit_state_start(struct io_submit_state *state,
Jackie Liu22efde52019-12-02 17:14:52 +08005716 unsigned int max_ios)
Jens Axboe9a56a232019-01-09 09:06:50 -07005717{
5718 blk_start_plug(&state->plug);
Jens Axboe2579f912019-01-09 09:10:43 -07005719 state->free_reqs = 0;
Jens Axboe9a56a232019-01-09 09:06:50 -07005720 state->file = NULL;
5721 state->ios_left = max_ios;
5722}
5723
Jens Axboe2b188cc2019-01-07 10:46:33 -07005724static void io_commit_sqring(struct io_ring_ctx *ctx)
5725{
Hristo Venev75b28af2019-08-26 17:23:46 +00005726 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005727
Pavel Begunkovcaf582c2019-12-30 21:24:46 +03005728 /*
5729 * Ensure any loads from the SQEs are done at this point,
5730 * since once we write the new head, the application could
5731 * write new data to them.
5732 */
5733 smp_store_release(&rings->sq.head, ctx->cached_sq_head);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005734}
5735
5736/*
Jens Axboe3529d8c2019-12-19 18:24:38 -07005737 * Fetch an sqe, if one is available. Note that sqe_ptr will point to memory
Jens Axboe2b188cc2019-01-07 10:46:33 -07005738 * that is mapped by userspace. This means that care needs to be taken to
5739 * ensure that reads are stable, as we cannot rely on userspace always
5740 * being a good citizen. If members of the sqe are validated and then later
5741 * used, it's important that those reads are done through READ_ONCE() to
5742 * prevent a re-load down the line.
5743 */
Pavel Begunkov709b3022020-04-08 08:58:43 +03005744static const struct io_uring_sqe *io_get_sqe(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005745{
Hristo Venev75b28af2019-08-26 17:23:46 +00005746 u32 *sq_array = ctx->sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005747 unsigned head;
5748
5749 /*
5750 * The cached sq head (or cq tail) serves two purposes:
5751 *
5752 * 1) allows us to batch the cost of updating the user visible
5753 * head updates.
5754 * 2) allows the kernel side to track the head on its own, even
5755 * though the application is the one updating it.
5756 */
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005757 head = READ_ONCE(sq_array[ctx->cached_sq_head & ctx->sq_mask]);
Pavel Begunkov709b3022020-04-08 08:58:43 +03005758 if (likely(head < ctx->sq_entries))
5759 return &ctx->sq_sqes[head];
Jens Axboe2b188cc2019-01-07 10:46:33 -07005760
5761 /* drop invalid entries */
Jens Axboe498ccd92019-10-25 10:04:25 -06005762 ctx->cached_sq_dropped++;
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005763 WRITE_ONCE(ctx->rings->sq_dropped, ctx->cached_sq_dropped);
Pavel Begunkov709b3022020-04-08 08:58:43 +03005764 return NULL;
5765}
5766
5767static inline void io_consume_sqe(struct io_ring_ctx *ctx)
5768{
5769 ctx->cached_sq_head++;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005770}
5771
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005772#define SQE_VALID_FLAGS (IOSQE_FIXED_FILE|IOSQE_IO_DRAIN|IOSQE_IO_LINK| \
5773 IOSQE_IO_HARDLINK | IOSQE_ASYNC | \
5774 IOSQE_BUFFER_SELECT)
5775
5776static int io_init_req(struct io_ring_ctx *ctx, struct io_kiocb *req,
5777 const struct io_uring_sqe *sqe,
5778 struct io_submit_state *state, bool async)
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03005779{
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005780 unsigned int sqe_flags;
Jens Axboe63ff8222020-05-07 14:56:15 -06005781 int id;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005782
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03005783 /*
5784 * All io need record the previous position, if LINK vs DARIN,
5785 * it can be used to mark the position of the first IO in the
5786 * link list.
5787 */
Pavel Begunkov31af27c2020-04-15 00:39:50 +03005788 req->sequence = ctx->cached_sq_head - ctx->cached_sq_dropped;
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03005789 req->opcode = READ_ONCE(sqe->opcode);
5790 req->user_data = READ_ONCE(sqe->user_data);
5791 req->io = NULL;
5792 req->file = NULL;
5793 req->ctx = ctx;
5794 req->flags = 0;
5795 /* one is dropped after submission, the other at completion */
5796 refcount_set(&req->refs, 2);
5797 req->task = NULL;
5798 req->result = 0;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005799 req->needs_fixed_file = async;
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03005800 INIT_IO_WORK(&req->work, io_wq_submit_work);
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005801
5802 if (unlikely(req->opcode >= IORING_OP_LAST))
5803 return -EINVAL;
5804
5805 if (io_op_defs[req->opcode].needs_mm && !current->mm) {
5806 if (unlikely(!mmget_not_zero(ctx->sqo_mm)))
5807 return -EFAULT;
5808 use_mm(ctx->sqo_mm);
5809 }
5810
5811 sqe_flags = READ_ONCE(sqe->flags);
5812 /* enforce forwards compatibility on users */
5813 if (unlikely(sqe_flags & ~SQE_VALID_FLAGS))
5814 return -EINVAL;
5815
5816 if ((sqe_flags & IOSQE_BUFFER_SELECT) &&
5817 !io_op_defs[req->opcode].buffer_select)
5818 return -EOPNOTSUPP;
5819
5820 id = READ_ONCE(sqe->personality);
5821 if (id) {
5822 req->work.creds = idr_find(&ctx->personality_idr, id);
5823 if (unlikely(!req->work.creds))
5824 return -EINVAL;
5825 get_cred(req->work.creds);
5826 }
5827
5828 /* same numerical values with corresponding REQ_F_*, safe to copy */
5829 req->flags |= sqe_flags & (IOSQE_IO_DRAIN | IOSQE_IO_HARDLINK |
5830 IOSQE_ASYNC | IOSQE_FIXED_FILE |
5831 IOSQE_BUFFER_SELECT | IOSQE_IO_LINK);
5832
Jens Axboe63ff8222020-05-07 14:56:15 -06005833 if (!io_op_defs[req->opcode].needs_file)
5834 return 0;
5835
5836 return io_req_set_file(state, req, READ_ONCE(sqe->fd));
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03005837}
5838
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005839static int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr,
Pavel Begunkovbf9c2f12020-04-12 02:05:02 +03005840 struct file *ring_file, int ring_fd, bool async)
Jens Axboe6c271ce2019-01-10 11:22:30 -07005841{
5842 struct io_submit_state state, *statep = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06005843 struct io_kiocb *link = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06005844 int i, submitted = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005845
Jens Axboec4a2ed72019-11-21 21:01:26 -07005846 /* if we have a backlog and couldn't flush it all, return BUSY */
Jens Axboead3eb2c2019-12-18 17:12:20 -07005847 if (test_bit(0, &ctx->sq_check_overflow)) {
5848 if (!list_empty(&ctx->cq_overflow_list) &&
5849 !io_cqring_overflow_flush(ctx, false))
5850 return -EBUSY;
5851 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07005852
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005853 /* make sure SQ entry isn't read before tail */
5854 nr = min3(nr, ctx->sq_entries, io_sqring_entries(ctx));
Pavel Begunkov9ef4f122019-12-30 21:24:44 +03005855
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03005856 if (!percpu_ref_tryget_many(&ctx->refs, nr))
5857 return -EAGAIN;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005858
5859 if (nr > IO_PLUG_THRESHOLD) {
Jackie Liu22efde52019-12-02 17:14:52 +08005860 io_submit_state_start(&state, nr);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005861 statep = &state;
5862 }
5863
Pavel Begunkovb14cca02020-01-17 04:45:59 +03005864 ctx->ring_fd = ring_fd;
5865 ctx->ring_file = ring_file;
5866
Jens Axboe6c271ce2019-01-10 11:22:30 -07005867 for (i = 0; i < nr; i++) {
Jens Axboe3529d8c2019-12-19 18:24:38 -07005868 const struct io_uring_sqe *sqe;
Pavel Begunkov196be952019-11-07 01:41:06 +03005869 struct io_kiocb *req;
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005870 int err;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005871
Pavel Begunkovb1e50e52020-04-08 08:58:44 +03005872 sqe = io_get_sqe(ctx);
5873 if (unlikely(!sqe)) {
5874 io_consume_sqe(ctx);
5875 break;
5876 }
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03005877 req = io_alloc_req(ctx, statep);
Pavel Begunkov196be952019-11-07 01:41:06 +03005878 if (unlikely(!req)) {
5879 if (!submitted)
5880 submitted = -EAGAIN;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005881 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06005882 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005883
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005884 err = io_init_req(ctx, req, sqe, statep, async);
Pavel Begunkov709b3022020-04-08 08:58:43 +03005885 io_consume_sqe(ctx);
Jens Axboed3656342019-12-18 09:50:26 -07005886 /* will complete beyond this point, count as submitted */
5887 submitted++;
5888
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005889 if (unlikely(err)) {
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005890fail_req:
5891 io_cqring_add_event(req, err);
Jens Axboed3656342019-12-18 09:50:26 -07005892 io_double_put_req(req);
5893 break;
5894 }
5895
Jens Axboe354420f2020-01-08 18:55:15 -07005896 trace_io_uring_submit_sqe(ctx, req->opcode, req->user_data,
5897 true, async);
Xiaoguang Wang7d01bd72020-05-08 21:19:30 +08005898 err = io_submit_sqe(req, sqe, &link);
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03005899 if (err)
5900 goto fail_req;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005901 }
5902
Pavel Begunkov9466f432020-01-25 22:34:01 +03005903 if (unlikely(submitted != nr)) {
5904 int ref_used = (submitted == -EAGAIN) ? 0 : submitted;
5905
5906 percpu_ref_put_many(&ctx->refs, nr - ref_used);
5907 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005908 if (link)
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005909 io_queue_link_head(link);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005910 if (statep)
5911 io_submit_state_end(&state);
5912
Pavel Begunkovae9428c2019-11-06 00:22:14 +03005913 /* Commit SQ ring head once we've consumed and submitted all SQEs */
5914 io_commit_sqring(ctx);
5915
Jens Axboe6c271ce2019-01-10 11:22:30 -07005916 return submitted;
5917}
5918
Pavel Begunkovbf9c2f12020-04-12 02:05:02 +03005919static inline void io_sq_thread_drop_mm(struct io_ring_ctx *ctx)
5920{
5921 struct mm_struct *mm = current->mm;
5922
5923 if (mm) {
5924 unuse_mm(mm);
5925 mmput(mm);
5926 }
5927}
5928
Jens Axboe6c271ce2019-01-10 11:22:30 -07005929static int io_sq_thread(void *data)
5930{
Jens Axboe6c271ce2019-01-10 11:22:30 -07005931 struct io_ring_ctx *ctx = data;
Jens Axboe181e4482019-11-25 08:52:30 -07005932 const struct cred *old_cred;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005933 mm_segment_t old_fs;
5934 DEFINE_WAIT(wait);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005935 unsigned long timeout;
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005936 int ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005937
Jens Axboe0f158b42020-05-14 17:18:39 -06005938 complete(&ctx->sq_thread_comp);
Jackie Liua4c0b3d2019-07-08 13:41:12 +08005939
Jens Axboe6c271ce2019-01-10 11:22:30 -07005940 old_fs = get_fs();
5941 set_fs(USER_DS);
Jens Axboe181e4482019-11-25 08:52:30 -07005942 old_cred = override_creds(ctx->creds);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005943
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005944 timeout = jiffies + ctx->sq_thread_idle;
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02005945 while (!kthread_should_park()) {
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005946 unsigned int to_submit;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005947
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005948 if (!list_empty(&ctx->poll_list)) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07005949 unsigned nr_events = 0;
5950
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005951 mutex_lock(&ctx->uring_lock);
5952 if (!list_empty(&ctx->poll_list))
5953 io_iopoll_getevents(ctx, &nr_events, 0);
5954 else
Jens Axboe6c271ce2019-01-10 11:22:30 -07005955 timeout = jiffies + ctx->sq_thread_idle;
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005956 mutex_unlock(&ctx->uring_lock);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005957 }
5958
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005959 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07005960
5961 /*
5962 * If submit got -EBUSY, flag us as needing the application
5963 * to enter the kernel to reap and flush events.
5964 */
5965 if (!to_submit || ret == -EBUSY) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07005966 /*
Stefano Garzarella7143b5a2020-02-21 16:42:16 +01005967 * Drop cur_mm before scheduling, we can't hold it for
5968 * long periods (or over schedule()). Do this before
5969 * adding ourselves to the waitqueue, as the unuse/drop
5970 * may sleep.
5971 */
Pavel Begunkovbf9c2f12020-04-12 02:05:02 +03005972 io_sq_thread_drop_mm(ctx);
Stefano Garzarella7143b5a2020-02-21 16:42:16 +01005973
5974 /*
Jens Axboe6c271ce2019-01-10 11:22:30 -07005975 * We're polling. If we're within the defined idle
5976 * period, then let us spin without work before going
Jens Axboec1edbf52019-11-10 16:56:04 -07005977 * to sleep. The exception is if we got EBUSY doing
5978 * more IO, we should wait for the application to
5979 * reap events and wake us up.
Jens Axboe6c271ce2019-01-10 11:22:30 -07005980 */
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005981 if (!list_empty(&ctx->poll_list) ||
Jens Axboedf069d82020-02-04 16:48:34 -07005982 (!time_after(jiffies, timeout) && ret != -EBUSY &&
5983 !percpu_ref_is_dying(&ctx->refs))) {
Jens Axboeb41e9852020-02-17 09:52:41 -07005984 if (current->task_works)
5985 task_work_run();
Jens Axboe9831a902019-09-19 09:48:55 -06005986 cond_resched();
Jens Axboe6c271ce2019-01-10 11:22:30 -07005987 continue;
5988 }
5989
Jens Axboe6c271ce2019-01-10 11:22:30 -07005990 prepare_to_wait(&ctx->sqo_wait, &wait,
5991 TASK_INTERRUPTIBLE);
5992
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005993 /*
5994 * While doing polled IO, before going to sleep, we need
5995 * to check if there are new reqs added to poll_list, it
5996 * is because reqs may have been punted to io worker and
5997 * will be added to poll_list later, hence check the
5998 * poll_list again.
5999 */
6000 if ((ctx->flags & IORING_SETUP_IOPOLL) &&
6001 !list_empty_careful(&ctx->poll_list)) {
6002 finish_wait(&ctx->sqo_wait, &wait);
6003 continue;
6004 }
6005
Jens Axboe6c271ce2019-01-10 11:22:30 -07006006 /* Tell userspace we may need a wakeup call */
Hristo Venev75b28af2019-08-26 17:23:46 +00006007 ctx->rings->sq_flags |= IORING_SQ_NEED_WAKEUP;
Stefan Bühler0d7bae62019-04-19 11:57:45 +02006008 /* make sure to read SQ tail after writing flags */
6009 smp_mb();
Jens Axboe6c271ce2019-01-10 11:22:30 -07006010
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03006011 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07006012 if (!to_submit || ret == -EBUSY) {
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02006013 if (kthread_should_park()) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07006014 finish_wait(&ctx->sqo_wait, &wait);
6015 break;
6016 }
Jens Axboeb41e9852020-02-17 09:52:41 -07006017 if (current->task_works) {
6018 task_work_run();
Hillf Danton10bea962020-04-01 17:19:33 +08006019 finish_wait(&ctx->sqo_wait, &wait);
Jens Axboeb41e9852020-02-17 09:52:41 -07006020 continue;
6021 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07006022 if (signal_pending(current))
6023 flush_signals(current);
6024 schedule();
6025 finish_wait(&ctx->sqo_wait, &wait);
6026
Hristo Venev75b28af2019-08-26 17:23:46 +00006027 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006028 continue;
6029 }
6030 finish_wait(&ctx->sqo_wait, &wait);
6031
Hristo Venev75b28af2019-08-26 17:23:46 +00006032 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006033 }
6034
Jens Axboe8a4955f2019-12-09 14:52:35 -07006035 mutex_lock(&ctx->uring_lock);
Pavel Begunkovbf9c2f12020-04-12 02:05:02 +03006036 ret = io_submit_sqes(ctx, to_submit, NULL, -1, true);
Jens Axboe8a4955f2019-12-09 14:52:35 -07006037 mutex_unlock(&ctx->uring_lock);
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006038 timeout = jiffies + ctx->sq_thread_idle;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006039 }
6040
Jens Axboeb41e9852020-02-17 09:52:41 -07006041 if (current->task_works)
6042 task_work_run();
6043
Jens Axboe6c271ce2019-01-10 11:22:30 -07006044 set_fs(old_fs);
Pavel Begunkovbf9c2f12020-04-12 02:05:02 +03006045 io_sq_thread_drop_mm(ctx);
Jens Axboe181e4482019-11-25 08:52:30 -07006046 revert_creds(old_cred);
Jens Axboe06058632019-04-13 09:26:03 -06006047
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02006048 kthread_parkme();
Jens Axboe06058632019-04-13 09:26:03 -06006049
Jens Axboe6c271ce2019-01-10 11:22:30 -07006050 return 0;
6051}
6052
Jens Axboebda52162019-09-24 13:47:15 -06006053struct io_wait_queue {
6054 struct wait_queue_entry wq;
6055 struct io_ring_ctx *ctx;
6056 unsigned to_wait;
6057 unsigned nr_timeouts;
6058};
6059
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006060static inline bool io_should_wake(struct io_wait_queue *iowq, bool noflush)
Jens Axboebda52162019-09-24 13:47:15 -06006061{
6062 struct io_ring_ctx *ctx = iowq->ctx;
6063
6064 /*
Brian Gianforcarod195a662019-12-13 03:09:50 -08006065 * Wake up if we have enough events, or if a timeout occurred since we
Jens Axboebda52162019-09-24 13:47:15 -06006066 * started waiting. For timeouts, we always want to return to userspace,
6067 * regardless of event count.
6068 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006069 return io_cqring_events(ctx, noflush) >= iowq->to_wait ||
Jens Axboebda52162019-09-24 13:47:15 -06006070 atomic_read(&ctx->cq_timeouts) != iowq->nr_timeouts;
6071}
6072
6073static int io_wake_function(struct wait_queue_entry *curr, unsigned int mode,
6074 int wake_flags, void *key)
6075{
6076 struct io_wait_queue *iowq = container_of(curr, struct io_wait_queue,
6077 wq);
6078
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006079 /* use noflush == true, as we can't safely rely on locking context */
6080 if (!io_should_wake(iowq, true))
Jens Axboebda52162019-09-24 13:47:15 -06006081 return -1;
6082
6083 return autoremove_wake_function(curr, mode, wake_flags, key);
6084}
6085
Jens Axboe2b188cc2019-01-07 10:46:33 -07006086/*
6087 * Wait until events become available, if we don't already have some. The
6088 * application must reap them itself, as they reside on the shared cq ring.
6089 */
6090static int io_cqring_wait(struct io_ring_ctx *ctx, int min_events,
6091 const sigset_t __user *sig, size_t sigsz)
6092{
Jens Axboebda52162019-09-24 13:47:15 -06006093 struct io_wait_queue iowq = {
6094 .wq = {
6095 .private = current,
6096 .func = io_wake_function,
6097 .entry = LIST_HEAD_INIT(iowq.wq.entry),
6098 },
6099 .ctx = ctx,
6100 .to_wait = min_events,
6101 };
Hristo Venev75b28af2019-08-26 17:23:46 +00006102 struct io_rings *rings = ctx->rings;
Jackie Liue9ffa5c2019-10-29 11:16:42 +08006103 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006104
Jens Axboeb41e9852020-02-17 09:52:41 -07006105 do {
6106 if (io_cqring_events(ctx, false) >= min_events)
6107 return 0;
6108 if (!current->task_works)
6109 break;
6110 task_work_run();
6111 } while (1);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006112
6113 if (sig) {
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006114#ifdef CONFIG_COMPAT
6115 if (in_compat_syscall())
6116 ret = set_compat_user_sigmask((const compat_sigset_t __user *)sig,
Oleg Nesterovb7724342019-07-16 16:29:53 -07006117 sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006118 else
6119#endif
Oleg Nesterovb7724342019-07-16 16:29:53 -07006120 ret = set_user_sigmask(sig, sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006121
Jens Axboe2b188cc2019-01-07 10:46:33 -07006122 if (ret)
6123 return ret;
6124 }
6125
Jens Axboebda52162019-09-24 13:47:15 -06006126 iowq.nr_timeouts = atomic_read(&ctx->cq_timeouts);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02006127 trace_io_uring_cqring_wait(ctx, min_events);
Jens Axboebda52162019-09-24 13:47:15 -06006128 do {
6129 prepare_to_wait_exclusive(&ctx->wait, &iowq.wq,
6130 TASK_INTERRUPTIBLE);
Jens Axboeb41e9852020-02-17 09:52:41 -07006131 if (current->task_works)
6132 task_work_run();
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006133 if (io_should_wake(&iowq, false))
Jens Axboebda52162019-09-24 13:47:15 -06006134 break;
6135 schedule();
6136 if (signal_pending(current)) {
Jackie Liue9ffa5c2019-10-29 11:16:42 +08006137 ret = -EINTR;
Jens Axboebda52162019-09-24 13:47:15 -06006138 break;
6139 }
6140 } while (1);
6141 finish_wait(&ctx->wait, &iowq.wq);
6142
Jackie Liue9ffa5c2019-10-29 11:16:42 +08006143 restore_saved_sigmask_unless(ret == -EINTR);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006144
Hristo Venev75b28af2019-08-26 17:23:46 +00006145 return READ_ONCE(rings->cq.head) == READ_ONCE(rings->cq.tail) ? ret : 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006146}
6147
Jens Axboe6b063142019-01-10 22:13:58 -07006148static void __io_sqe_files_unregister(struct io_ring_ctx *ctx)
6149{
6150#if defined(CONFIG_UNIX)
6151 if (ctx->ring_sock) {
6152 struct sock *sock = ctx->ring_sock->sk;
6153 struct sk_buff *skb;
6154
6155 while ((skb = skb_dequeue(&sock->sk_receive_queue)) != NULL)
6156 kfree_skb(skb);
6157 }
6158#else
6159 int i;
6160
Jens Axboe65e19f52019-10-26 07:20:21 -06006161 for (i = 0; i < ctx->nr_user_files; i++) {
6162 struct file *file;
6163
6164 file = io_file_from_index(ctx, i);
6165 if (file)
6166 fput(file);
6167 }
Jens Axboe6b063142019-01-10 22:13:58 -07006168#endif
6169}
6170
Jens Axboe05f3fb32019-12-09 11:22:50 -07006171static void io_file_ref_kill(struct percpu_ref *ref)
6172{
6173 struct fixed_file_data *data;
6174
6175 data = container_of(ref, struct fixed_file_data, refs);
6176 complete(&data->done);
6177}
6178
Jens Axboe6b063142019-01-10 22:13:58 -07006179static int io_sqe_files_unregister(struct io_ring_ctx *ctx)
6180{
Jens Axboe05f3fb32019-12-09 11:22:50 -07006181 struct fixed_file_data *data = ctx->file_data;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006182 struct fixed_file_ref_node *ref_node = NULL;
Jens Axboe65e19f52019-10-26 07:20:21 -06006183 unsigned nr_tables, i;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006184 unsigned long flags;
Jens Axboe65e19f52019-10-26 07:20:21 -06006185
Jens Axboe05f3fb32019-12-09 11:22:50 -07006186 if (!data)
Jens Axboe6b063142019-01-10 22:13:58 -07006187 return -ENXIO;
6188
Xiaoguang Wang05589552020-03-31 14:05:18 +08006189 spin_lock_irqsave(&data->lock, flags);
6190 if (!list_empty(&data->ref_list))
6191 ref_node = list_first_entry(&data->ref_list,
6192 struct fixed_file_ref_node, node);
6193 spin_unlock_irqrestore(&data->lock, flags);
6194 if (ref_node)
6195 percpu_ref_kill(&ref_node->refs);
6196
6197 percpu_ref_kill(&data->refs);
6198
6199 /* wait for all refs nodes to complete */
Jens Axboe4a38aed22020-05-14 17:21:15 -06006200 flush_delayed_work(&ctx->file_put_work);
Jens Axboe2faf8522020-02-04 19:54:55 -07006201 wait_for_completion(&data->done);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006202
Jens Axboe6b063142019-01-10 22:13:58 -07006203 __io_sqe_files_unregister(ctx);
Jens Axboe65e19f52019-10-26 07:20:21 -06006204 nr_tables = DIV_ROUND_UP(ctx->nr_user_files, IORING_MAX_FILES_TABLE);
6205 for (i = 0; i < nr_tables; i++)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006206 kfree(data->table[i].files);
6207 kfree(data->table);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006208 percpu_ref_exit(&data->refs);
6209 kfree(data);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006210 ctx->file_data = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07006211 ctx->nr_user_files = 0;
6212 return 0;
6213}
6214
Jens Axboe6c271ce2019-01-10 11:22:30 -07006215static void io_sq_thread_stop(struct io_ring_ctx *ctx)
6216{
6217 if (ctx->sqo_thread) {
Jens Axboe0f158b42020-05-14 17:18:39 -06006218 wait_for_completion(&ctx->sq_thread_comp);
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02006219 /*
6220 * The park is a bit of a work-around, without it we get
6221 * warning spews on shutdown with SQPOLL set and affinity
6222 * set to a single CPU.
6223 */
Jens Axboe06058632019-04-13 09:26:03 -06006224 kthread_park(ctx->sqo_thread);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006225 kthread_stop(ctx->sqo_thread);
6226 ctx->sqo_thread = NULL;
6227 }
6228}
6229
Jens Axboe6b063142019-01-10 22:13:58 -07006230static void io_finish_async(struct io_ring_ctx *ctx)
6231{
Jens Axboe6c271ce2019-01-10 11:22:30 -07006232 io_sq_thread_stop(ctx);
6233
Jens Axboe561fb042019-10-24 07:25:42 -06006234 if (ctx->io_wq) {
6235 io_wq_destroy(ctx->io_wq);
6236 ctx->io_wq = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07006237 }
6238}
6239
6240#if defined(CONFIG_UNIX)
Jens Axboe6b063142019-01-10 22:13:58 -07006241/*
6242 * Ensure the UNIX gc is aware of our file set, so we are certain that
6243 * the io_uring can be safely unregistered on process exit, even if we have
6244 * loops in the file referencing.
6245 */
6246static int __io_sqe_files_scm(struct io_ring_ctx *ctx, int nr, int offset)
6247{
6248 struct sock *sk = ctx->ring_sock->sk;
6249 struct scm_fp_list *fpl;
6250 struct sk_buff *skb;
Jens Axboe08a45172019-10-03 08:11:03 -06006251 int i, nr_files;
Jens Axboe6b063142019-01-10 22:13:58 -07006252
Jens Axboe6b063142019-01-10 22:13:58 -07006253 fpl = kzalloc(sizeof(*fpl), GFP_KERNEL);
6254 if (!fpl)
6255 return -ENOMEM;
6256
6257 skb = alloc_skb(0, GFP_KERNEL);
6258 if (!skb) {
6259 kfree(fpl);
6260 return -ENOMEM;
6261 }
6262
6263 skb->sk = sk;
Jens Axboe6b063142019-01-10 22:13:58 -07006264
Jens Axboe08a45172019-10-03 08:11:03 -06006265 nr_files = 0;
Jens Axboe6b063142019-01-10 22:13:58 -07006266 fpl->user = get_uid(ctx->user);
6267 for (i = 0; i < nr; i++) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006268 struct file *file = io_file_from_index(ctx, i + offset);
6269
6270 if (!file)
Jens Axboe08a45172019-10-03 08:11:03 -06006271 continue;
Jens Axboe65e19f52019-10-26 07:20:21 -06006272 fpl->fp[nr_files] = get_file(file);
Jens Axboe08a45172019-10-03 08:11:03 -06006273 unix_inflight(fpl->user, fpl->fp[nr_files]);
6274 nr_files++;
Jens Axboe6b063142019-01-10 22:13:58 -07006275 }
6276
Jens Axboe08a45172019-10-03 08:11:03 -06006277 if (nr_files) {
6278 fpl->max = SCM_MAX_FD;
6279 fpl->count = nr_files;
6280 UNIXCB(skb).fp = fpl;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006281 skb->destructor = unix_destruct_scm;
Jens Axboe08a45172019-10-03 08:11:03 -06006282 refcount_add(skb->truesize, &sk->sk_wmem_alloc);
6283 skb_queue_head(&sk->sk_receive_queue, skb);
Jens Axboe6b063142019-01-10 22:13:58 -07006284
Jens Axboe08a45172019-10-03 08:11:03 -06006285 for (i = 0; i < nr_files; i++)
6286 fput(fpl->fp[i]);
6287 } else {
6288 kfree_skb(skb);
6289 kfree(fpl);
6290 }
Jens Axboe6b063142019-01-10 22:13:58 -07006291
6292 return 0;
6293}
6294
6295/*
6296 * If UNIX sockets are enabled, fd passing can cause a reference cycle which
6297 * causes regular reference counting to break down. We rely on the UNIX
6298 * garbage collection to take care of this problem for us.
6299 */
6300static int io_sqe_files_scm(struct io_ring_ctx *ctx)
6301{
6302 unsigned left, total;
6303 int ret = 0;
6304
6305 total = 0;
6306 left = ctx->nr_user_files;
6307 while (left) {
6308 unsigned this_files = min_t(unsigned, left, SCM_MAX_FD);
Jens Axboe6b063142019-01-10 22:13:58 -07006309
6310 ret = __io_sqe_files_scm(ctx, this_files, total);
6311 if (ret)
6312 break;
6313 left -= this_files;
6314 total += this_files;
6315 }
6316
6317 if (!ret)
6318 return 0;
6319
6320 while (total < ctx->nr_user_files) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006321 struct file *file = io_file_from_index(ctx, total);
6322
6323 if (file)
6324 fput(file);
Jens Axboe6b063142019-01-10 22:13:58 -07006325 total++;
6326 }
6327
6328 return ret;
6329}
6330#else
6331static int io_sqe_files_scm(struct io_ring_ctx *ctx)
6332{
6333 return 0;
6334}
6335#endif
6336
Jens Axboe65e19f52019-10-26 07:20:21 -06006337static int io_sqe_alloc_file_tables(struct io_ring_ctx *ctx, unsigned nr_tables,
6338 unsigned nr_files)
6339{
6340 int i;
6341
6342 for (i = 0; i < nr_tables; i++) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006343 struct fixed_file_table *table = &ctx->file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06006344 unsigned this_files;
6345
6346 this_files = min(nr_files, IORING_MAX_FILES_TABLE);
6347 table->files = kcalloc(this_files, sizeof(struct file *),
6348 GFP_KERNEL);
6349 if (!table->files)
6350 break;
6351 nr_files -= this_files;
6352 }
6353
6354 if (i == nr_tables)
6355 return 0;
6356
6357 for (i = 0; i < nr_tables; i++) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006358 struct fixed_file_table *table = &ctx->file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06006359 kfree(table->files);
6360 }
6361 return 1;
6362}
6363
Jens Axboe05f3fb32019-12-09 11:22:50 -07006364static void io_ring_file_put(struct io_ring_ctx *ctx, struct file *file)
Jens Axboec3a31e62019-10-03 13:59:56 -06006365{
6366#if defined(CONFIG_UNIX)
Jens Axboec3a31e62019-10-03 13:59:56 -06006367 struct sock *sock = ctx->ring_sock->sk;
6368 struct sk_buff_head list, *head = &sock->sk_receive_queue;
6369 struct sk_buff *skb;
6370 int i;
6371
6372 __skb_queue_head_init(&list);
6373
6374 /*
6375 * Find the skb that holds this file in its SCM_RIGHTS. When found,
6376 * remove this entry and rearrange the file array.
6377 */
6378 skb = skb_dequeue(head);
6379 while (skb) {
6380 struct scm_fp_list *fp;
6381
6382 fp = UNIXCB(skb).fp;
6383 for (i = 0; i < fp->count; i++) {
6384 int left;
6385
6386 if (fp->fp[i] != file)
6387 continue;
6388
6389 unix_notinflight(fp->user, fp->fp[i]);
6390 left = fp->count - 1 - i;
6391 if (left) {
6392 memmove(&fp->fp[i], &fp->fp[i + 1],
6393 left * sizeof(struct file *));
6394 }
6395 fp->count--;
6396 if (!fp->count) {
6397 kfree_skb(skb);
6398 skb = NULL;
6399 } else {
6400 __skb_queue_tail(&list, skb);
6401 }
6402 fput(file);
6403 file = NULL;
6404 break;
6405 }
6406
6407 if (!file)
6408 break;
6409
6410 __skb_queue_tail(&list, skb);
6411
6412 skb = skb_dequeue(head);
6413 }
6414
6415 if (skb_peek(&list)) {
6416 spin_lock_irq(&head->lock);
6417 while ((skb = __skb_dequeue(&list)) != NULL)
6418 __skb_queue_tail(head, skb);
6419 spin_unlock_irq(&head->lock);
6420 }
6421#else
Jens Axboe05f3fb32019-12-09 11:22:50 -07006422 fput(file);
Jens Axboec3a31e62019-10-03 13:59:56 -06006423#endif
6424}
6425
Jens Axboe05f3fb32019-12-09 11:22:50 -07006426struct io_file_put {
Xiaoguang Wang05589552020-03-31 14:05:18 +08006427 struct list_head list;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006428 struct file *file;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006429};
6430
Jens Axboe4a38aed22020-05-14 17:21:15 -06006431static void __io_file_put_work(struct fixed_file_ref_node *ref_node)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006432{
Jens Axboe4a38aed22020-05-14 17:21:15 -06006433 struct fixed_file_data *file_data = ref_node->file_data;
6434 struct io_ring_ctx *ctx = file_data->ctx;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006435 struct io_file_put *pfile, *tmp;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006436 unsigned long flags;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006437
Xiaoguang Wang05589552020-03-31 14:05:18 +08006438 list_for_each_entry_safe(pfile, tmp, &ref_node->file_list, list) {
6439 list_del_init(&pfile->list);
6440 io_ring_file_put(ctx, pfile->file);
6441 kfree(pfile);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006442 }
6443
Xiaoguang Wang05589552020-03-31 14:05:18 +08006444 spin_lock_irqsave(&file_data->lock, flags);
6445 list_del_init(&ref_node->node);
6446 spin_unlock_irqrestore(&file_data->lock, flags);
Jens Axboe2faf8522020-02-04 19:54:55 -07006447
Xiaoguang Wang05589552020-03-31 14:05:18 +08006448 percpu_ref_exit(&ref_node->refs);
6449 kfree(ref_node);
6450 percpu_ref_put(&file_data->refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006451}
6452
Jens Axboe4a38aed22020-05-14 17:21:15 -06006453static void io_file_put_work(struct work_struct *work)
6454{
6455 struct io_ring_ctx *ctx;
6456 struct llist_node *node;
6457
6458 ctx = container_of(work, struct io_ring_ctx, file_put_work.work);
6459 node = llist_del_all(&ctx->file_put_llist);
6460
6461 while (node) {
6462 struct fixed_file_ref_node *ref_node;
6463 struct llist_node *next = node->next;
6464
6465 ref_node = llist_entry(node, struct fixed_file_ref_node, llist);
6466 __io_file_put_work(ref_node);
6467 node = next;
6468 }
6469}
6470
Jens Axboe05f3fb32019-12-09 11:22:50 -07006471static void io_file_data_ref_zero(struct percpu_ref *ref)
6472{
Xiaoguang Wang05589552020-03-31 14:05:18 +08006473 struct fixed_file_ref_node *ref_node;
Jens Axboe4a38aed22020-05-14 17:21:15 -06006474 struct io_ring_ctx *ctx;
6475 bool first_add;
6476 int delay = HZ;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006477
Xiaoguang Wang05589552020-03-31 14:05:18 +08006478 ref_node = container_of(ref, struct fixed_file_ref_node, refs);
Jens Axboe4a38aed22020-05-14 17:21:15 -06006479 ctx = ref_node->file_data->ctx;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006480
Jens Axboe4a38aed22020-05-14 17:21:15 -06006481 if (percpu_ref_is_dying(&ctx->file_data->refs))
6482 delay = 0;
6483
6484 first_add = llist_add(&ref_node->llist, &ctx->file_put_llist);
6485 if (!delay)
6486 mod_delayed_work(system_wq, &ctx->file_put_work, 0);
6487 else if (first_add)
6488 queue_delayed_work(system_wq, &ctx->file_put_work, delay);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006489}
6490
6491static struct fixed_file_ref_node *alloc_fixed_file_ref_node(
6492 struct io_ring_ctx *ctx)
6493{
6494 struct fixed_file_ref_node *ref_node;
6495
6496 ref_node = kzalloc(sizeof(*ref_node), GFP_KERNEL);
6497 if (!ref_node)
6498 return ERR_PTR(-ENOMEM);
6499
6500 if (percpu_ref_init(&ref_node->refs, io_file_data_ref_zero,
6501 0, GFP_KERNEL)) {
6502 kfree(ref_node);
6503 return ERR_PTR(-ENOMEM);
6504 }
6505 INIT_LIST_HEAD(&ref_node->node);
6506 INIT_LIST_HEAD(&ref_node->file_list);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006507 ref_node->file_data = ctx->file_data;
6508 return ref_node;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006509}
6510
6511static void destroy_fixed_file_ref_node(struct fixed_file_ref_node *ref_node)
6512{
6513 percpu_ref_exit(&ref_node->refs);
6514 kfree(ref_node);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006515}
6516
6517static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
6518 unsigned nr_args)
6519{
6520 __s32 __user *fds = (__s32 __user *) arg;
6521 unsigned nr_tables;
6522 struct file *file;
6523 int fd, ret = 0;
6524 unsigned i;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006525 struct fixed_file_ref_node *ref_node;
6526 unsigned long flags;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006527
6528 if (ctx->file_data)
6529 return -EBUSY;
6530 if (!nr_args)
6531 return -EINVAL;
6532 if (nr_args > IORING_MAX_FIXED_FILES)
6533 return -EMFILE;
6534
6535 ctx->file_data = kzalloc(sizeof(*ctx->file_data), GFP_KERNEL);
6536 if (!ctx->file_data)
6537 return -ENOMEM;
6538 ctx->file_data->ctx = ctx;
6539 init_completion(&ctx->file_data->done);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006540 INIT_LIST_HEAD(&ctx->file_data->ref_list);
Xiaoguang Wangf7fe9342020-04-07 20:02:31 +08006541 spin_lock_init(&ctx->file_data->lock);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006542
6543 nr_tables = DIV_ROUND_UP(nr_args, IORING_MAX_FILES_TABLE);
6544 ctx->file_data->table = kcalloc(nr_tables,
6545 sizeof(struct fixed_file_table),
6546 GFP_KERNEL);
6547 if (!ctx->file_data->table) {
6548 kfree(ctx->file_data);
6549 ctx->file_data = NULL;
6550 return -ENOMEM;
6551 }
6552
Xiaoguang Wang05589552020-03-31 14:05:18 +08006553 if (percpu_ref_init(&ctx->file_data->refs, io_file_ref_kill,
Jens Axboe05f3fb32019-12-09 11:22:50 -07006554 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL)) {
6555 kfree(ctx->file_data->table);
6556 kfree(ctx->file_data);
6557 ctx->file_data = NULL;
6558 return -ENOMEM;
6559 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07006560
6561 if (io_sqe_alloc_file_tables(ctx, nr_tables, nr_args)) {
6562 percpu_ref_exit(&ctx->file_data->refs);
6563 kfree(ctx->file_data->table);
6564 kfree(ctx->file_data);
6565 ctx->file_data = NULL;
6566 return -ENOMEM;
6567 }
6568
6569 for (i = 0; i < nr_args; i++, ctx->nr_user_files++) {
6570 struct fixed_file_table *table;
6571 unsigned index;
6572
6573 ret = -EFAULT;
6574 if (copy_from_user(&fd, &fds[i], sizeof(fd)))
6575 break;
6576 /* allow sparse sets */
6577 if (fd == -1) {
6578 ret = 0;
6579 continue;
6580 }
6581
6582 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
6583 index = i & IORING_FILE_TABLE_MASK;
6584 file = fget(fd);
6585
6586 ret = -EBADF;
6587 if (!file)
6588 break;
6589
6590 /*
6591 * Don't allow io_uring instances to be registered. If UNIX
6592 * isn't enabled, then this causes a reference cycle and this
6593 * instance can never get freed. If UNIX is enabled we'll
6594 * handle it just fine, but there's still no point in allowing
6595 * a ring fd as it doesn't support regular read/write anyway.
6596 */
6597 if (file->f_op == &io_uring_fops) {
6598 fput(file);
6599 break;
6600 }
6601 ret = 0;
6602 table->files[index] = file;
6603 }
6604
6605 if (ret) {
6606 for (i = 0; i < ctx->nr_user_files; i++) {
6607 file = io_file_from_index(ctx, i);
6608 if (file)
6609 fput(file);
6610 }
6611 for (i = 0; i < nr_tables; i++)
6612 kfree(ctx->file_data->table[i].files);
6613
6614 kfree(ctx->file_data->table);
6615 kfree(ctx->file_data);
6616 ctx->file_data = NULL;
6617 ctx->nr_user_files = 0;
6618 return ret;
6619 }
6620
6621 ret = io_sqe_files_scm(ctx);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006622 if (ret) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006623 io_sqe_files_unregister(ctx);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006624 return ret;
6625 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07006626
Xiaoguang Wang05589552020-03-31 14:05:18 +08006627 ref_node = alloc_fixed_file_ref_node(ctx);
6628 if (IS_ERR(ref_node)) {
6629 io_sqe_files_unregister(ctx);
6630 return PTR_ERR(ref_node);
6631 }
6632
6633 ctx->file_data->cur_refs = &ref_node->refs;
6634 spin_lock_irqsave(&ctx->file_data->lock, flags);
6635 list_add(&ref_node->node, &ctx->file_data->ref_list);
6636 spin_unlock_irqrestore(&ctx->file_data->lock, flags);
6637 percpu_ref_get(&ctx->file_data->refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006638 return ret;
6639}
6640
Jens Axboec3a31e62019-10-03 13:59:56 -06006641static int io_sqe_file_register(struct io_ring_ctx *ctx, struct file *file,
6642 int index)
6643{
6644#if defined(CONFIG_UNIX)
6645 struct sock *sock = ctx->ring_sock->sk;
6646 struct sk_buff_head *head = &sock->sk_receive_queue;
6647 struct sk_buff *skb;
6648
6649 /*
6650 * See if we can merge this file into an existing skb SCM_RIGHTS
6651 * file set. If there's no room, fall back to allocating a new skb
6652 * and filling it in.
6653 */
6654 spin_lock_irq(&head->lock);
6655 skb = skb_peek(head);
6656 if (skb) {
6657 struct scm_fp_list *fpl = UNIXCB(skb).fp;
6658
6659 if (fpl->count < SCM_MAX_FD) {
6660 __skb_unlink(skb, head);
6661 spin_unlock_irq(&head->lock);
6662 fpl->fp[fpl->count] = get_file(file);
6663 unix_inflight(fpl->user, fpl->fp[fpl->count]);
6664 fpl->count++;
6665 spin_lock_irq(&head->lock);
6666 __skb_queue_head(head, skb);
6667 } else {
6668 skb = NULL;
6669 }
6670 }
6671 spin_unlock_irq(&head->lock);
6672
6673 if (skb) {
6674 fput(file);
6675 return 0;
6676 }
6677
6678 return __io_sqe_files_scm(ctx, 1, index);
6679#else
6680 return 0;
6681#endif
6682}
6683
Hillf Dantona5318d32020-03-23 17:47:15 +08006684static int io_queue_file_removal(struct fixed_file_data *data,
Xiaoguang Wang05589552020-03-31 14:05:18 +08006685 struct file *file)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006686{
Hillf Dantona5318d32020-03-23 17:47:15 +08006687 struct io_file_put *pfile;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006688 struct percpu_ref *refs = data->cur_refs;
6689 struct fixed_file_ref_node *ref_node;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006690
Jens Axboe05f3fb32019-12-09 11:22:50 -07006691 pfile = kzalloc(sizeof(*pfile), GFP_KERNEL);
Hillf Dantona5318d32020-03-23 17:47:15 +08006692 if (!pfile)
6693 return -ENOMEM;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006694
Xiaoguang Wang05589552020-03-31 14:05:18 +08006695 ref_node = container_of(refs, struct fixed_file_ref_node, refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006696 pfile->file = file;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006697 list_add(&pfile->list, &ref_node->file_list);
6698
Hillf Dantona5318d32020-03-23 17:47:15 +08006699 return 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006700}
6701
6702static int __io_sqe_files_update(struct io_ring_ctx *ctx,
6703 struct io_uring_files_update *up,
6704 unsigned nr_args)
6705{
6706 struct fixed_file_data *data = ctx->file_data;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006707 struct fixed_file_ref_node *ref_node;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006708 struct file *file;
Jens Axboec3a31e62019-10-03 13:59:56 -06006709 __s32 __user *fds;
6710 int fd, i, err;
6711 __u32 done;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006712 unsigned long flags;
6713 bool needs_switch = false;
Jens Axboec3a31e62019-10-03 13:59:56 -06006714
Jens Axboe05f3fb32019-12-09 11:22:50 -07006715 if (check_add_overflow(up->offset, nr_args, &done))
Jens Axboec3a31e62019-10-03 13:59:56 -06006716 return -EOVERFLOW;
6717 if (done > ctx->nr_user_files)
6718 return -EINVAL;
6719
Xiaoguang Wang05589552020-03-31 14:05:18 +08006720 ref_node = alloc_fixed_file_ref_node(ctx);
6721 if (IS_ERR(ref_node))
6722 return PTR_ERR(ref_node);
6723
Jens Axboec3a31e62019-10-03 13:59:56 -06006724 done = 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006725 fds = u64_to_user_ptr(up->fds);
Jens Axboec3a31e62019-10-03 13:59:56 -06006726 while (nr_args) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006727 struct fixed_file_table *table;
6728 unsigned index;
6729
Jens Axboec3a31e62019-10-03 13:59:56 -06006730 err = 0;
6731 if (copy_from_user(&fd, &fds[done], sizeof(fd))) {
6732 err = -EFAULT;
6733 break;
6734 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07006735 i = array_index_nospec(up->offset, ctx->nr_user_files);
6736 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
Jens Axboe65e19f52019-10-26 07:20:21 -06006737 index = i & IORING_FILE_TABLE_MASK;
6738 if (table->files[index]) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006739 file = io_file_from_index(ctx, index);
Hillf Dantona5318d32020-03-23 17:47:15 +08006740 err = io_queue_file_removal(data, file);
6741 if (err)
6742 break;
Jens Axboe65e19f52019-10-26 07:20:21 -06006743 table->files[index] = NULL;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006744 needs_switch = true;
Jens Axboec3a31e62019-10-03 13:59:56 -06006745 }
6746 if (fd != -1) {
Jens Axboec3a31e62019-10-03 13:59:56 -06006747 file = fget(fd);
6748 if (!file) {
6749 err = -EBADF;
6750 break;
6751 }
6752 /*
6753 * Don't allow io_uring instances to be registered. If
6754 * UNIX isn't enabled, then this causes a reference
6755 * cycle and this instance can never get freed. If UNIX
6756 * is enabled we'll handle it just fine, but there's
6757 * still no point in allowing a ring fd as it doesn't
6758 * support regular read/write anyway.
6759 */
6760 if (file->f_op == &io_uring_fops) {
6761 fput(file);
6762 err = -EBADF;
6763 break;
6764 }
Jens Axboe65e19f52019-10-26 07:20:21 -06006765 table->files[index] = file;
Jens Axboec3a31e62019-10-03 13:59:56 -06006766 err = io_sqe_file_register(ctx, file, i);
6767 if (err)
6768 break;
6769 }
6770 nr_args--;
6771 done++;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006772 up->offset++;
6773 }
6774
Xiaoguang Wang05589552020-03-31 14:05:18 +08006775 if (needs_switch) {
6776 percpu_ref_kill(data->cur_refs);
6777 spin_lock_irqsave(&data->lock, flags);
6778 list_add(&ref_node->node, &data->ref_list);
6779 data->cur_refs = &ref_node->refs;
6780 spin_unlock_irqrestore(&data->lock, flags);
6781 percpu_ref_get(&ctx->file_data->refs);
6782 } else
6783 destroy_fixed_file_ref_node(ref_node);
Jens Axboec3a31e62019-10-03 13:59:56 -06006784
6785 return done ? done : err;
6786}
Xiaoguang Wang05589552020-03-31 14:05:18 +08006787
Jens Axboe05f3fb32019-12-09 11:22:50 -07006788static int io_sqe_files_update(struct io_ring_ctx *ctx, void __user *arg,
6789 unsigned nr_args)
6790{
6791 struct io_uring_files_update up;
6792
6793 if (!ctx->file_data)
6794 return -ENXIO;
6795 if (!nr_args)
6796 return -EINVAL;
6797 if (copy_from_user(&up, arg, sizeof(up)))
6798 return -EFAULT;
6799 if (up.resv)
6800 return -EINVAL;
6801
6802 return __io_sqe_files_update(ctx, &up, nr_args);
6803}
Jens Axboec3a31e62019-10-03 13:59:56 -06006804
Pavel Begunkove9fd9392020-03-04 16:14:12 +03006805static void io_free_work(struct io_wq_work *work)
Jens Axboe7d723062019-11-12 22:31:31 -07006806{
6807 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
6808
Pavel Begunkove9fd9392020-03-04 16:14:12 +03006809 /* Consider that io_steal_work() relies on this ref */
Jens Axboe7d723062019-11-12 22:31:31 -07006810 io_put_req(req);
6811}
6812
Pavel Begunkov24369c22020-01-28 03:15:48 +03006813static int io_init_wq_offload(struct io_ring_ctx *ctx,
6814 struct io_uring_params *p)
6815{
6816 struct io_wq_data data;
6817 struct fd f;
6818 struct io_ring_ctx *ctx_attach;
6819 unsigned int concurrency;
6820 int ret = 0;
6821
6822 data.user = ctx->user;
Pavel Begunkove9fd9392020-03-04 16:14:12 +03006823 data.free_work = io_free_work;
Pavel Begunkov24369c22020-01-28 03:15:48 +03006824
6825 if (!(p->flags & IORING_SETUP_ATTACH_WQ)) {
6826 /* Do QD, or 4 * CPUS, whatever is smallest */
6827 concurrency = min(ctx->sq_entries, 4 * num_online_cpus());
6828
6829 ctx->io_wq = io_wq_create(concurrency, &data);
6830 if (IS_ERR(ctx->io_wq)) {
6831 ret = PTR_ERR(ctx->io_wq);
6832 ctx->io_wq = NULL;
6833 }
6834 return ret;
6835 }
6836
6837 f = fdget(p->wq_fd);
6838 if (!f.file)
6839 return -EBADF;
6840
6841 if (f.file->f_op != &io_uring_fops) {
6842 ret = -EINVAL;
6843 goto out_fput;
6844 }
6845
6846 ctx_attach = f.file->private_data;
6847 /* @io_wq is protected by holding the fd */
6848 if (!io_wq_get(ctx_attach->io_wq, &data)) {
6849 ret = -EINVAL;
6850 goto out_fput;
6851 }
6852
6853 ctx->io_wq = ctx_attach->io_wq;
6854out_fput:
6855 fdput(f);
6856 return ret;
6857}
6858
Jens Axboe6c271ce2019-01-10 11:22:30 -07006859static int io_sq_offload_start(struct io_ring_ctx *ctx,
6860 struct io_uring_params *p)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006861{
6862 int ret;
6863
Jens Axboe6c271ce2019-01-10 11:22:30 -07006864 init_waitqueue_head(&ctx->sqo_wait);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006865 mmgrab(current->mm);
6866 ctx->sqo_mm = current->mm;
6867
Jens Axboe6c271ce2019-01-10 11:22:30 -07006868 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboe3ec482d2019-04-08 10:51:01 -06006869 ret = -EPERM;
6870 if (!capable(CAP_SYS_ADMIN))
6871 goto err;
6872
Jens Axboe917257d2019-04-13 09:28:55 -06006873 ctx->sq_thread_idle = msecs_to_jiffies(p->sq_thread_idle);
6874 if (!ctx->sq_thread_idle)
6875 ctx->sq_thread_idle = HZ;
6876
Jens Axboe6c271ce2019-01-10 11:22:30 -07006877 if (p->flags & IORING_SETUP_SQ_AFF) {
Jens Axboe44a9bd12019-05-14 20:00:30 -06006878 int cpu = p->sq_thread_cpu;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006879
Jens Axboe917257d2019-04-13 09:28:55 -06006880 ret = -EINVAL;
Jens Axboe44a9bd12019-05-14 20:00:30 -06006881 if (cpu >= nr_cpu_ids)
6882 goto err;
Shenghui Wang7889f442019-05-07 16:03:19 +08006883 if (!cpu_online(cpu))
Jens Axboe917257d2019-04-13 09:28:55 -06006884 goto err;
6885
Jens Axboe6c271ce2019-01-10 11:22:30 -07006886 ctx->sqo_thread = kthread_create_on_cpu(io_sq_thread,
6887 ctx, cpu,
6888 "io_uring-sq");
6889 } else {
6890 ctx->sqo_thread = kthread_create(io_sq_thread, ctx,
6891 "io_uring-sq");
6892 }
6893 if (IS_ERR(ctx->sqo_thread)) {
6894 ret = PTR_ERR(ctx->sqo_thread);
6895 ctx->sqo_thread = NULL;
6896 goto err;
6897 }
6898 wake_up_process(ctx->sqo_thread);
6899 } else if (p->flags & IORING_SETUP_SQ_AFF) {
6900 /* Can't have SQ_AFF without SQPOLL */
6901 ret = -EINVAL;
6902 goto err;
6903 }
6904
Pavel Begunkov24369c22020-01-28 03:15:48 +03006905 ret = io_init_wq_offload(ctx, p);
6906 if (ret)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006907 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006908
6909 return 0;
6910err:
Jens Axboe54a91f32019-09-10 09:15:04 -06006911 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006912 mmdrop(ctx->sqo_mm);
6913 ctx->sqo_mm = NULL;
6914 return ret;
6915}
6916
6917static void io_unaccount_mem(struct user_struct *user, unsigned long nr_pages)
6918{
6919 atomic_long_sub(nr_pages, &user->locked_vm);
6920}
6921
6922static int io_account_mem(struct user_struct *user, unsigned long nr_pages)
6923{
6924 unsigned long page_limit, cur_pages, new_pages;
6925
6926 /* Don't allow more pages than we can safely lock */
6927 page_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
6928
6929 do {
6930 cur_pages = atomic_long_read(&user->locked_vm);
6931 new_pages = cur_pages + nr_pages;
6932 if (new_pages > page_limit)
6933 return -ENOMEM;
6934 } while (atomic_long_cmpxchg(&user->locked_vm, cur_pages,
6935 new_pages) != cur_pages);
6936
6937 return 0;
6938}
6939
6940static void io_mem_free(void *ptr)
6941{
Mark Rutland52e04ef2019-04-30 17:30:21 +01006942 struct page *page;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006943
Mark Rutland52e04ef2019-04-30 17:30:21 +01006944 if (!ptr)
6945 return;
6946
6947 page = virt_to_head_page(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006948 if (put_page_testzero(page))
6949 free_compound_page(page);
6950}
6951
6952static void *io_mem_alloc(size_t size)
6953{
6954 gfp_t gfp_flags = GFP_KERNEL | __GFP_ZERO | __GFP_NOWARN | __GFP_COMP |
6955 __GFP_NORETRY;
6956
6957 return (void *) __get_free_pages(gfp_flags, get_order(size));
6958}
6959
Hristo Venev75b28af2019-08-26 17:23:46 +00006960static unsigned long rings_size(unsigned sq_entries, unsigned cq_entries,
6961 size_t *sq_offset)
6962{
6963 struct io_rings *rings;
6964 size_t off, sq_array_size;
6965
6966 off = struct_size(rings, cqes, cq_entries);
6967 if (off == SIZE_MAX)
6968 return SIZE_MAX;
6969
6970#ifdef CONFIG_SMP
6971 off = ALIGN(off, SMP_CACHE_BYTES);
6972 if (off == 0)
6973 return SIZE_MAX;
6974#endif
6975
6976 sq_array_size = array_size(sizeof(u32), sq_entries);
6977 if (sq_array_size == SIZE_MAX)
6978 return SIZE_MAX;
6979
6980 if (check_add_overflow(off, sq_array_size, &off))
6981 return SIZE_MAX;
6982
6983 if (sq_offset)
6984 *sq_offset = off;
6985
6986 return off;
6987}
6988
Jens Axboe2b188cc2019-01-07 10:46:33 -07006989static unsigned long ring_pages(unsigned sq_entries, unsigned cq_entries)
6990{
Hristo Venev75b28af2019-08-26 17:23:46 +00006991 size_t pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006992
Hristo Venev75b28af2019-08-26 17:23:46 +00006993 pages = (size_t)1 << get_order(
6994 rings_size(sq_entries, cq_entries, NULL));
6995 pages += (size_t)1 << get_order(
6996 array_size(sizeof(struct io_uring_sqe), sq_entries));
Jens Axboe2b188cc2019-01-07 10:46:33 -07006997
Hristo Venev75b28af2019-08-26 17:23:46 +00006998 return pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006999}
7000
Jens Axboeedafcce2019-01-09 09:16:05 -07007001static int io_sqe_buffer_unregister(struct io_ring_ctx *ctx)
7002{
7003 int i, j;
7004
7005 if (!ctx->user_bufs)
7006 return -ENXIO;
7007
7008 for (i = 0; i < ctx->nr_user_bufs; i++) {
7009 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
7010
7011 for (j = 0; j < imu->nr_bvecs; j++)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08007012 unpin_user_page(imu->bvec[j].bv_page);
Jens Axboeedafcce2019-01-09 09:16:05 -07007013
7014 if (ctx->account_mem)
7015 io_unaccount_mem(ctx->user, imu->nr_bvecs);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007016 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07007017 imu->nr_bvecs = 0;
7018 }
7019
7020 kfree(ctx->user_bufs);
7021 ctx->user_bufs = NULL;
7022 ctx->nr_user_bufs = 0;
7023 return 0;
7024}
7025
7026static int io_copy_iov(struct io_ring_ctx *ctx, struct iovec *dst,
7027 void __user *arg, unsigned index)
7028{
7029 struct iovec __user *src;
7030
7031#ifdef CONFIG_COMPAT
7032 if (ctx->compat) {
7033 struct compat_iovec __user *ciovs;
7034 struct compat_iovec ciov;
7035
7036 ciovs = (struct compat_iovec __user *) arg;
7037 if (copy_from_user(&ciov, &ciovs[index], sizeof(ciov)))
7038 return -EFAULT;
7039
Jens Axboed55e5f52019-12-11 16:12:15 -07007040 dst->iov_base = u64_to_user_ptr((u64)ciov.iov_base);
Jens Axboeedafcce2019-01-09 09:16:05 -07007041 dst->iov_len = ciov.iov_len;
7042 return 0;
7043 }
7044#endif
7045 src = (struct iovec __user *) arg;
7046 if (copy_from_user(dst, &src[index], sizeof(*dst)))
7047 return -EFAULT;
7048 return 0;
7049}
7050
7051static int io_sqe_buffer_register(struct io_ring_ctx *ctx, void __user *arg,
7052 unsigned nr_args)
7053{
7054 struct vm_area_struct **vmas = NULL;
7055 struct page **pages = NULL;
7056 int i, j, got_pages = 0;
7057 int ret = -EINVAL;
7058
7059 if (ctx->user_bufs)
7060 return -EBUSY;
7061 if (!nr_args || nr_args > UIO_MAXIOV)
7062 return -EINVAL;
7063
7064 ctx->user_bufs = kcalloc(nr_args, sizeof(struct io_mapped_ubuf),
7065 GFP_KERNEL);
7066 if (!ctx->user_bufs)
7067 return -ENOMEM;
7068
7069 for (i = 0; i < nr_args; i++) {
7070 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
7071 unsigned long off, start, end, ubuf;
7072 int pret, nr_pages;
7073 struct iovec iov;
7074 size_t size;
7075
7076 ret = io_copy_iov(ctx, &iov, arg, i);
7077 if (ret)
Pavel Begunkova2786822019-05-26 12:35:47 +03007078 goto err;
Jens Axboeedafcce2019-01-09 09:16:05 -07007079
7080 /*
7081 * Don't impose further limits on the size and buffer
7082 * constraints here, we'll -EINVAL later when IO is
7083 * submitted if they are wrong.
7084 */
7085 ret = -EFAULT;
7086 if (!iov.iov_base || !iov.iov_len)
7087 goto err;
7088
7089 /* arbitrary limit, but we need something */
7090 if (iov.iov_len > SZ_1G)
7091 goto err;
7092
7093 ubuf = (unsigned long) iov.iov_base;
7094 end = (ubuf + iov.iov_len + PAGE_SIZE - 1) >> PAGE_SHIFT;
7095 start = ubuf >> PAGE_SHIFT;
7096 nr_pages = end - start;
7097
7098 if (ctx->account_mem) {
7099 ret = io_account_mem(ctx->user, nr_pages);
7100 if (ret)
7101 goto err;
7102 }
7103
7104 ret = 0;
7105 if (!pages || nr_pages > got_pages) {
7106 kfree(vmas);
7107 kfree(pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007108 pages = kvmalloc_array(nr_pages, sizeof(struct page *),
Jens Axboeedafcce2019-01-09 09:16:05 -07007109 GFP_KERNEL);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007110 vmas = kvmalloc_array(nr_pages,
Jens Axboeedafcce2019-01-09 09:16:05 -07007111 sizeof(struct vm_area_struct *),
7112 GFP_KERNEL);
7113 if (!pages || !vmas) {
7114 ret = -ENOMEM;
7115 if (ctx->account_mem)
7116 io_unaccount_mem(ctx->user, nr_pages);
7117 goto err;
7118 }
7119 got_pages = nr_pages;
7120 }
7121
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007122 imu->bvec = kvmalloc_array(nr_pages, sizeof(struct bio_vec),
Jens Axboeedafcce2019-01-09 09:16:05 -07007123 GFP_KERNEL);
7124 ret = -ENOMEM;
7125 if (!imu->bvec) {
7126 if (ctx->account_mem)
7127 io_unaccount_mem(ctx->user, nr_pages);
7128 goto err;
7129 }
7130
7131 ret = 0;
7132 down_read(&current->mm->mmap_sem);
John Hubbard2113b052020-01-30 22:13:13 -08007133 pret = pin_user_pages(ubuf, nr_pages,
Ira Weiny932f4a62019-05-13 17:17:03 -07007134 FOLL_WRITE | FOLL_LONGTERM,
7135 pages, vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007136 if (pret == nr_pages) {
7137 /* don't support file backed memory */
7138 for (j = 0; j < nr_pages; j++) {
7139 struct vm_area_struct *vma = vmas[j];
7140
7141 if (vma->vm_file &&
7142 !is_file_hugepages(vma->vm_file)) {
7143 ret = -EOPNOTSUPP;
7144 break;
7145 }
7146 }
7147 } else {
7148 ret = pret < 0 ? pret : -EFAULT;
7149 }
7150 up_read(&current->mm->mmap_sem);
7151 if (ret) {
7152 /*
7153 * if we did partial map, or found file backed vmas,
7154 * release any pages we did get
7155 */
John Hubbard27c4d3a2019-08-04 19:32:06 -07007156 if (pret > 0)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08007157 unpin_user_pages(pages, pret);
Jens Axboeedafcce2019-01-09 09:16:05 -07007158 if (ctx->account_mem)
7159 io_unaccount_mem(ctx->user, nr_pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007160 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07007161 goto err;
7162 }
7163
7164 off = ubuf & ~PAGE_MASK;
7165 size = iov.iov_len;
7166 for (j = 0; j < nr_pages; j++) {
7167 size_t vec_len;
7168
7169 vec_len = min_t(size_t, size, PAGE_SIZE - off);
7170 imu->bvec[j].bv_page = pages[j];
7171 imu->bvec[j].bv_len = vec_len;
7172 imu->bvec[j].bv_offset = off;
7173 off = 0;
7174 size -= vec_len;
7175 }
7176 /* store original address for later verification */
7177 imu->ubuf = ubuf;
7178 imu->len = iov.iov_len;
7179 imu->nr_bvecs = nr_pages;
7180
7181 ctx->nr_user_bufs++;
7182 }
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007183 kvfree(pages);
7184 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007185 return 0;
7186err:
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007187 kvfree(pages);
7188 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007189 io_sqe_buffer_unregister(ctx);
7190 return ret;
7191}
7192
Jens Axboe9b402842019-04-11 11:45:41 -06007193static int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg)
7194{
7195 __s32 __user *fds = arg;
7196 int fd;
7197
7198 if (ctx->cq_ev_fd)
7199 return -EBUSY;
7200
7201 if (copy_from_user(&fd, fds, sizeof(*fds)))
7202 return -EFAULT;
7203
7204 ctx->cq_ev_fd = eventfd_ctx_fdget(fd);
7205 if (IS_ERR(ctx->cq_ev_fd)) {
7206 int ret = PTR_ERR(ctx->cq_ev_fd);
7207 ctx->cq_ev_fd = NULL;
7208 return ret;
7209 }
7210
7211 return 0;
7212}
7213
7214static int io_eventfd_unregister(struct io_ring_ctx *ctx)
7215{
7216 if (ctx->cq_ev_fd) {
7217 eventfd_ctx_put(ctx->cq_ev_fd);
7218 ctx->cq_ev_fd = NULL;
7219 return 0;
7220 }
7221
7222 return -ENXIO;
7223}
7224
Jens Axboe5a2e7452020-02-23 16:23:11 -07007225static int __io_destroy_buffers(int id, void *p, void *data)
7226{
7227 struct io_ring_ctx *ctx = data;
7228 struct io_buffer *buf = p;
7229
Jens Axboe067524e2020-03-02 16:32:28 -07007230 __io_remove_buffers(ctx, buf, id, -1U);
Jens Axboe5a2e7452020-02-23 16:23:11 -07007231 return 0;
7232}
7233
7234static void io_destroy_buffers(struct io_ring_ctx *ctx)
7235{
7236 idr_for_each(&ctx->io_buffer_idr, __io_destroy_buffers, ctx);
7237 idr_destroy(&ctx->io_buffer_idr);
7238}
7239
Jens Axboe2b188cc2019-01-07 10:46:33 -07007240static void io_ring_ctx_free(struct io_ring_ctx *ctx)
7241{
Jens Axboe6b063142019-01-10 22:13:58 -07007242 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007243 if (ctx->sqo_mm)
7244 mmdrop(ctx->sqo_mm);
Jens Axboedef596e2019-01-09 08:59:42 -07007245
7246 io_iopoll_reap_events(ctx);
Jens Axboeedafcce2019-01-09 09:16:05 -07007247 io_sqe_buffer_unregister(ctx);
Jens Axboe6b063142019-01-10 22:13:58 -07007248 io_sqe_files_unregister(ctx);
Jens Axboe9b402842019-04-11 11:45:41 -06007249 io_eventfd_unregister(ctx);
Jens Axboe5a2e7452020-02-23 16:23:11 -07007250 io_destroy_buffers(ctx);
Jens Axboe41726c92020-02-23 13:11:42 -07007251 idr_destroy(&ctx->personality_idr);
Jens Axboedef596e2019-01-09 08:59:42 -07007252
Jens Axboe2b188cc2019-01-07 10:46:33 -07007253#if defined(CONFIG_UNIX)
Eric Biggers355e8d22019-06-12 14:58:43 -07007254 if (ctx->ring_sock) {
7255 ctx->ring_sock->file = NULL; /* so that iput() is called */
Jens Axboe2b188cc2019-01-07 10:46:33 -07007256 sock_release(ctx->ring_sock);
Eric Biggers355e8d22019-06-12 14:58:43 -07007257 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007258#endif
7259
Hristo Venev75b28af2019-08-26 17:23:46 +00007260 io_mem_free(ctx->rings);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007261 io_mem_free(ctx->sq_sqes);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007262
7263 percpu_ref_exit(&ctx->refs);
7264 if (ctx->account_mem)
7265 io_unaccount_mem(ctx->user,
7266 ring_pages(ctx->sq_entries, ctx->cq_entries));
7267 free_uid(ctx->user);
Jens Axboe181e4482019-11-25 08:52:30 -07007268 put_cred(ctx->creds);
Jens Axboe78076bb2019-12-04 19:56:40 -07007269 kfree(ctx->cancel_hash);
Jens Axboe0ddf92e2019-11-08 08:52:53 -07007270 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007271 kfree(ctx);
7272}
7273
7274static __poll_t io_uring_poll(struct file *file, poll_table *wait)
7275{
7276 struct io_ring_ctx *ctx = file->private_data;
7277 __poll_t mask = 0;
7278
7279 poll_wait(file, &ctx->cq_wait, wait);
Stefan Bühler4f7067c2019-04-24 23:54:17 +02007280 /*
7281 * synchronizes with barrier from wq_has_sleeper call in
7282 * io_commit_cqring
7283 */
Jens Axboe2b188cc2019-01-07 10:46:33 -07007284 smp_rmb();
Hristo Venev75b28af2019-08-26 17:23:46 +00007285 if (READ_ONCE(ctx->rings->sq.tail) - ctx->cached_sq_head !=
7286 ctx->rings->sq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007287 mask |= EPOLLOUT | EPOLLWRNORM;
Stefano Garzarella63e5d812020-02-07 13:18:28 +01007288 if (io_cqring_events(ctx, false))
Jens Axboe2b188cc2019-01-07 10:46:33 -07007289 mask |= EPOLLIN | EPOLLRDNORM;
7290
7291 return mask;
7292}
7293
7294static int io_uring_fasync(int fd, struct file *file, int on)
7295{
7296 struct io_ring_ctx *ctx = file->private_data;
7297
7298 return fasync_helper(fd, file, on, &ctx->cq_fasync);
7299}
7300
Jens Axboe071698e2020-01-28 10:04:42 -07007301static int io_remove_personalities(int id, void *p, void *data)
7302{
7303 struct io_ring_ctx *ctx = data;
7304 const struct cred *cred;
7305
7306 cred = idr_remove(&ctx->personality_idr, id);
7307 if (cred)
7308 put_cred(cred);
7309 return 0;
7310}
7311
Jens Axboe85faa7b2020-04-09 18:14:00 -06007312static void io_ring_exit_work(struct work_struct *work)
7313{
7314 struct io_ring_ctx *ctx;
7315
7316 ctx = container_of(work, struct io_ring_ctx, exit_work);
7317 if (ctx->rings)
7318 io_cqring_overflow_flush(ctx, true);
7319
Jens Axboe0f158b42020-05-14 17:18:39 -06007320 wait_for_completion(&ctx->ref_comp);
Jens Axboe85faa7b2020-04-09 18:14:00 -06007321 io_ring_ctx_free(ctx);
7322}
7323
Jens Axboe2b188cc2019-01-07 10:46:33 -07007324static void io_ring_ctx_wait_and_kill(struct io_ring_ctx *ctx)
7325{
7326 mutex_lock(&ctx->uring_lock);
7327 percpu_ref_kill(&ctx->refs);
7328 mutex_unlock(&ctx->uring_lock);
7329
Jens Axboedf069d82020-02-04 16:48:34 -07007330 /*
7331 * Wait for sq thread to idle, if we have one. It won't spin on new
7332 * work after we've killed the ctx ref above. This is important to do
7333 * before we cancel existing commands, as the thread could otherwise
7334 * be queueing new work post that. If that's work we need to cancel,
7335 * it could cause shutdown to hang.
7336 */
7337 while (ctx->sqo_thread && !wq_has_sleeper(&ctx->sqo_wait))
Xiaoguang Wang3fd44c82020-05-01 08:52:56 +08007338 cond_resched();
Jens Axboedf069d82020-02-04 16:48:34 -07007339
Jens Axboe5262f562019-09-17 12:26:57 -06007340 io_kill_timeouts(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07007341 io_poll_remove_all(ctx);
Jens Axboe561fb042019-10-24 07:25:42 -06007342
7343 if (ctx->io_wq)
7344 io_wq_cancel_all(ctx->io_wq);
7345
Jens Axboedef596e2019-01-09 08:59:42 -07007346 io_iopoll_reap_events(ctx);
Jens Axboe15dff282019-11-13 09:09:23 -07007347 /* if we failed setting up the ctx, we might not have any rings */
7348 if (ctx->rings)
7349 io_cqring_overflow_flush(ctx, true);
Jens Axboe071698e2020-01-28 10:04:42 -07007350 idr_for_each(&ctx->personality_idr, io_remove_personalities, ctx);
Jens Axboe85faa7b2020-04-09 18:14:00 -06007351 INIT_WORK(&ctx->exit_work, io_ring_exit_work);
7352 queue_work(system_wq, &ctx->exit_work);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007353}
7354
7355static int io_uring_release(struct inode *inode, struct file *file)
7356{
7357 struct io_ring_ctx *ctx = file->private_data;
7358
7359 file->private_data = NULL;
7360 io_ring_ctx_wait_and_kill(ctx);
7361 return 0;
7362}
7363
Jens Axboefcb323c2019-10-24 12:39:47 -06007364static void io_uring_cancel_files(struct io_ring_ctx *ctx,
7365 struct files_struct *files)
7366{
Jens Axboefcb323c2019-10-24 12:39:47 -06007367 while (!list_empty_careful(&ctx->inflight_list)) {
Xiaoguang Wangd8f1b972020-04-26 15:54:43 +08007368 struct io_kiocb *cancel_req = NULL, *req;
7369 DEFINE_WAIT(wait);
Jens Axboefcb323c2019-10-24 12:39:47 -06007370
7371 spin_lock_irq(&ctx->inflight_lock);
7372 list_for_each_entry(req, &ctx->inflight_list, inflight_entry) {
Jens Axboe768134d2019-11-10 20:30:53 -07007373 if (req->work.files != files)
7374 continue;
7375 /* req is being completed, ignore */
7376 if (!refcount_inc_not_zero(&req->refs))
7377 continue;
7378 cancel_req = req;
7379 break;
Jens Axboefcb323c2019-10-24 12:39:47 -06007380 }
Jens Axboe768134d2019-11-10 20:30:53 -07007381 if (cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06007382 prepare_to_wait(&ctx->inflight_wait, &wait,
Jens Axboe768134d2019-11-10 20:30:53 -07007383 TASK_UNINTERRUPTIBLE);
Jens Axboefcb323c2019-10-24 12:39:47 -06007384 spin_unlock_irq(&ctx->inflight_lock);
7385
Jens Axboe768134d2019-11-10 20:30:53 -07007386 /* We need to keep going until we don't find a matching req */
7387 if (!cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06007388 break;
Bob Liu2f6d9b92019-11-13 18:06:24 +08007389
Jens Axboe2ca10252020-02-13 17:17:35 -07007390 if (cancel_req->flags & REQ_F_OVERFLOW) {
7391 spin_lock_irq(&ctx->completion_lock);
7392 list_del(&cancel_req->list);
7393 cancel_req->flags &= ~REQ_F_OVERFLOW;
7394 if (list_empty(&ctx->cq_overflow_list)) {
7395 clear_bit(0, &ctx->sq_check_overflow);
7396 clear_bit(0, &ctx->cq_check_overflow);
7397 }
7398 spin_unlock_irq(&ctx->completion_lock);
7399
7400 WRITE_ONCE(ctx->rings->cq_overflow,
7401 atomic_inc_return(&ctx->cached_cq_overflow));
7402
7403 /*
7404 * Put inflight ref and overflow ref. If that's
7405 * all we had, then we're done with this request.
7406 */
7407 if (refcount_sub_and_test(2, &cancel_req->refs)) {
7408 io_put_req(cancel_req);
Xiaoguang Wangd8f1b972020-04-26 15:54:43 +08007409 finish_wait(&ctx->inflight_wait, &wait);
Jens Axboe2ca10252020-02-13 17:17:35 -07007410 continue;
7411 }
7412 }
7413
Bob Liu2f6d9b92019-11-13 18:06:24 +08007414 io_wq_cancel_work(ctx->io_wq, &cancel_req->work);
7415 io_put_req(cancel_req);
Jens Axboefcb323c2019-10-24 12:39:47 -06007416 schedule();
Xiaoguang Wangd8f1b972020-04-26 15:54:43 +08007417 finish_wait(&ctx->inflight_wait, &wait);
Jens Axboefcb323c2019-10-24 12:39:47 -06007418 }
7419}
7420
7421static int io_uring_flush(struct file *file, void *data)
7422{
7423 struct io_ring_ctx *ctx = file->private_data;
7424
7425 io_uring_cancel_files(ctx, data);
Jens Axboe6ab23142020-02-08 20:23:59 -07007426
7427 /*
7428 * If the task is going away, cancel work it may have pending
7429 */
7430 if (fatal_signal_pending(current) || (current->flags & PF_EXITING))
7431 io_wq_cancel_pid(ctx->io_wq, task_pid_vnr(current));
7432
Jens Axboefcb323c2019-10-24 12:39:47 -06007433 return 0;
7434}
7435
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007436static void *io_uring_validate_mmap_request(struct file *file,
7437 loff_t pgoff, size_t sz)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007438{
Jens Axboe2b188cc2019-01-07 10:46:33 -07007439 struct io_ring_ctx *ctx = file->private_data;
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007440 loff_t offset = pgoff << PAGE_SHIFT;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007441 struct page *page;
7442 void *ptr;
7443
7444 switch (offset) {
7445 case IORING_OFF_SQ_RING:
Hristo Venev75b28af2019-08-26 17:23:46 +00007446 case IORING_OFF_CQ_RING:
7447 ptr = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007448 break;
7449 case IORING_OFF_SQES:
7450 ptr = ctx->sq_sqes;
7451 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007452 default:
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007453 return ERR_PTR(-EINVAL);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007454 }
7455
7456 page = virt_to_head_page(ptr);
Matthew Wilcox (Oracle)a50b8542019-09-23 15:34:25 -07007457 if (sz > page_size(page))
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007458 return ERR_PTR(-EINVAL);
7459
7460 return ptr;
7461}
7462
7463#ifdef CONFIG_MMU
7464
7465static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
7466{
7467 size_t sz = vma->vm_end - vma->vm_start;
7468 unsigned long pfn;
7469 void *ptr;
7470
7471 ptr = io_uring_validate_mmap_request(file, vma->vm_pgoff, sz);
7472 if (IS_ERR(ptr))
7473 return PTR_ERR(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007474
7475 pfn = virt_to_phys(ptr) >> PAGE_SHIFT;
7476 return remap_pfn_range(vma, vma->vm_start, pfn, sz, vma->vm_page_prot);
7477}
7478
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007479#else /* !CONFIG_MMU */
7480
7481static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
7482{
7483 return vma->vm_flags & (VM_SHARED | VM_MAYSHARE) ? 0 : -EINVAL;
7484}
7485
7486static unsigned int io_uring_nommu_mmap_capabilities(struct file *file)
7487{
7488 return NOMMU_MAP_DIRECT | NOMMU_MAP_READ | NOMMU_MAP_WRITE;
7489}
7490
7491static unsigned long io_uring_nommu_get_unmapped_area(struct file *file,
7492 unsigned long addr, unsigned long len,
7493 unsigned long pgoff, unsigned long flags)
7494{
7495 void *ptr;
7496
7497 ptr = io_uring_validate_mmap_request(file, pgoff, len);
7498 if (IS_ERR(ptr))
7499 return PTR_ERR(ptr);
7500
7501 return (unsigned long) ptr;
7502}
7503
7504#endif /* !CONFIG_MMU */
7505
Jens Axboe2b188cc2019-01-07 10:46:33 -07007506SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
7507 u32, min_complete, u32, flags, const sigset_t __user *, sig,
7508 size_t, sigsz)
7509{
7510 struct io_ring_ctx *ctx;
7511 long ret = -EBADF;
7512 int submitted = 0;
7513 struct fd f;
7514
Jens Axboeb41e9852020-02-17 09:52:41 -07007515 if (current->task_works)
7516 task_work_run();
7517
Jens Axboe6c271ce2019-01-10 11:22:30 -07007518 if (flags & ~(IORING_ENTER_GETEVENTS | IORING_ENTER_SQ_WAKEUP))
Jens Axboe2b188cc2019-01-07 10:46:33 -07007519 return -EINVAL;
7520
7521 f = fdget(fd);
7522 if (!f.file)
7523 return -EBADF;
7524
7525 ret = -EOPNOTSUPP;
7526 if (f.file->f_op != &io_uring_fops)
7527 goto out_fput;
7528
7529 ret = -ENXIO;
7530 ctx = f.file->private_data;
7531 if (!percpu_ref_tryget(&ctx->refs))
7532 goto out_fput;
7533
Jens Axboe6c271ce2019-01-10 11:22:30 -07007534 /*
7535 * For SQ polling, the thread will do all submissions and completions.
7536 * Just return the requested submit count, and wake the thread if
7537 * we were asked to.
7538 */
Jens Axboeb2a9ead2019-09-12 14:19:16 -06007539 ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007540 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboec1edbf52019-11-10 16:56:04 -07007541 if (!list_empty_careful(&ctx->cq_overflow_list))
7542 io_cqring_overflow_flush(ctx, false);
Jens Axboe6c271ce2019-01-10 11:22:30 -07007543 if (flags & IORING_ENTER_SQ_WAKEUP)
7544 wake_up(&ctx->sqo_wait);
7545 submitted = to_submit;
Jens Axboeb2a9ead2019-09-12 14:19:16 -06007546 } else if (to_submit) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07007547 mutex_lock(&ctx->uring_lock);
Pavel Begunkovbf9c2f12020-04-12 02:05:02 +03007548 submitted = io_submit_sqes(ctx, to_submit, f.file, fd, false);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007549 mutex_unlock(&ctx->uring_lock);
Pavel Begunkov7c504e652019-12-18 19:53:45 +03007550
7551 if (submitted != to_submit)
7552 goto out;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007553 }
7554 if (flags & IORING_ENTER_GETEVENTS) {
Jens Axboedef596e2019-01-09 08:59:42 -07007555 unsigned nr_events = 0;
7556
Jens Axboe2b188cc2019-01-07 10:46:33 -07007557 min_complete = min(min_complete, ctx->cq_entries);
7558
Xiaoguang Wang32b22442020-03-11 09:26:09 +08007559 /*
7560 * When SETUP_IOPOLL and SETUP_SQPOLL are both enabled, user
7561 * space applications don't need to do io completion events
7562 * polling again, they can rely on io_sq_thread to do polling
7563 * work, which can reduce cpu usage and uring_lock contention.
7564 */
7565 if (ctx->flags & IORING_SETUP_IOPOLL &&
7566 !(ctx->flags & IORING_SETUP_SQPOLL)) {
Jens Axboedef596e2019-01-09 08:59:42 -07007567 ret = io_iopoll_check(ctx, &nr_events, min_complete);
Jens Axboedef596e2019-01-09 08:59:42 -07007568 } else {
7569 ret = io_cqring_wait(ctx, min_complete, sig, sigsz);
7570 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007571 }
7572
Pavel Begunkov7c504e652019-12-18 19:53:45 +03007573out:
Pavel Begunkov6805b322019-10-08 02:18:42 +03007574 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007575out_fput:
7576 fdput(f);
7577 return submitted ? submitted : ret;
7578}
7579
Tobias Klauserbebdb652020-02-26 18:38:32 +01007580#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -07007581static int io_uring_show_cred(int id, void *p, void *data)
7582{
7583 const struct cred *cred = p;
7584 struct seq_file *m = data;
7585 struct user_namespace *uns = seq_user_ns(m);
7586 struct group_info *gi;
7587 kernel_cap_t cap;
7588 unsigned __capi;
7589 int g;
7590
7591 seq_printf(m, "%5d\n", id);
7592 seq_put_decimal_ull(m, "\tUid:\t", from_kuid_munged(uns, cred->uid));
7593 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->euid));
7594 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->suid));
7595 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->fsuid));
7596 seq_put_decimal_ull(m, "\n\tGid:\t", from_kgid_munged(uns, cred->gid));
7597 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->egid));
7598 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->sgid));
7599 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->fsgid));
7600 seq_puts(m, "\n\tGroups:\t");
7601 gi = cred->group_info;
7602 for (g = 0; g < gi->ngroups; g++) {
7603 seq_put_decimal_ull(m, g ? " " : "",
7604 from_kgid_munged(uns, gi->gid[g]));
7605 }
7606 seq_puts(m, "\n\tCapEff:\t");
7607 cap = cred->cap_effective;
7608 CAP_FOR_EACH_U32(__capi)
7609 seq_put_hex_ll(m, NULL, cap.cap[CAP_LAST_U32 - __capi], 8);
7610 seq_putc(m, '\n');
7611 return 0;
7612}
7613
7614static void __io_uring_show_fdinfo(struct io_ring_ctx *ctx, struct seq_file *m)
7615{
7616 int i;
7617
7618 mutex_lock(&ctx->uring_lock);
7619 seq_printf(m, "UserFiles:\t%u\n", ctx->nr_user_files);
7620 for (i = 0; i < ctx->nr_user_files; i++) {
7621 struct fixed_file_table *table;
7622 struct file *f;
7623
7624 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
7625 f = table->files[i & IORING_FILE_TABLE_MASK];
7626 if (f)
7627 seq_printf(m, "%5u: %s\n", i, file_dentry(f)->d_iname);
7628 else
7629 seq_printf(m, "%5u: <none>\n", i);
7630 }
7631 seq_printf(m, "UserBufs:\t%u\n", ctx->nr_user_bufs);
7632 for (i = 0; i < ctx->nr_user_bufs; i++) {
7633 struct io_mapped_ubuf *buf = &ctx->user_bufs[i];
7634
7635 seq_printf(m, "%5u: 0x%llx/%u\n", i, buf->ubuf,
7636 (unsigned int) buf->len);
7637 }
7638 if (!idr_is_empty(&ctx->personality_idr)) {
7639 seq_printf(m, "Personalities:\n");
7640 idr_for_each(&ctx->personality_idr, io_uring_show_cred, m);
7641 }
Jens Axboed7718a92020-02-14 22:23:12 -07007642 seq_printf(m, "PollList:\n");
7643 spin_lock_irq(&ctx->completion_lock);
7644 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
7645 struct hlist_head *list = &ctx->cancel_hash[i];
7646 struct io_kiocb *req;
7647
7648 hlist_for_each_entry(req, list, hash_node)
7649 seq_printf(m, " op=%d, task_works=%d\n", req->opcode,
7650 req->task->task_works != NULL);
7651 }
7652 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe87ce9552020-01-30 08:25:34 -07007653 mutex_unlock(&ctx->uring_lock);
7654}
7655
7656static void io_uring_show_fdinfo(struct seq_file *m, struct file *f)
7657{
7658 struct io_ring_ctx *ctx = f->private_data;
7659
7660 if (percpu_ref_tryget(&ctx->refs)) {
7661 __io_uring_show_fdinfo(ctx, m);
7662 percpu_ref_put(&ctx->refs);
7663 }
7664}
Tobias Klauserbebdb652020-02-26 18:38:32 +01007665#endif
Jens Axboe87ce9552020-01-30 08:25:34 -07007666
Jens Axboe2b188cc2019-01-07 10:46:33 -07007667static const struct file_operations io_uring_fops = {
7668 .release = io_uring_release,
Jens Axboefcb323c2019-10-24 12:39:47 -06007669 .flush = io_uring_flush,
Jens Axboe2b188cc2019-01-07 10:46:33 -07007670 .mmap = io_uring_mmap,
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007671#ifndef CONFIG_MMU
7672 .get_unmapped_area = io_uring_nommu_get_unmapped_area,
7673 .mmap_capabilities = io_uring_nommu_mmap_capabilities,
7674#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07007675 .poll = io_uring_poll,
7676 .fasync = io_uring_fasync,
Tobias Klauserbebdb652020-02-26 18:38:32 +01007677#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -07007678 .show_fdinfo = io_uring_show_fdinfo,
Tobias Klauserbebdb652020-02-26 18:38:32 +01007679#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07007680};
7681
7682static int io_allocate_scq_urings(struct io_ring_ctx *ctx,
7683 struct io_uring_params *p)
7684{
Hristo Venev75b28af2019-08-26 17:23:46 +00007685 struct io_rings *rings;
7686 size_t size, sq_array_offset;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007687
Hristo Venev75b28af2019-08-26 17:23:46 +00007688 size = rings_size(p->sq_entries, p->cq_entries, &sq_array_offset);
7689 if (size == SIZE_MAX)
7690 return -EOVERFLOW;
7691
7692 rings = io_mem_alloc(size);
7693 if (!rings)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007694 return -ENOMEM;
7695
Hristo Venev75b28af2019-08-26 17:23:46 +00007696 ctx->rings = rings;
7697 ctx->sq_array = (u32 *)((char *)rings + sq_array_offset);
7698 rings->sq_ring_mask = p->sq_entries - 1;
7699 rings->cq_ring_mask = p->cq_entries - 1;
7700 rings->sq_ring_entries = p->sq_entries;
7701 rings->cq_ring_entries = p->cq_entries;
7702 ctx->sq_mask = rings->sq_ring_mask;
7703 ctx->cq_mask = rings->cq_ring_mask;
7704 ctx->sq_entries = rings->sq_ring_entries;
7705 ctx->cq_entries = rings->cq_ring_entries;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007706
7707 size = array_size(sizeof(struct io_uring_sqe), p->sq_entries);
Jens Axboeeb065d32019-11-20 09:26:29 -07007708 if (size == SIZE_MAX) {
7709 io_mem_free(ctx->rings);
7710 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007711 return -EOVERFLOW;
Jens Axboeeb065d32019-11-20 09:26:29 -07007712 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007713
7714 ctx->sq_sqes = io_mem_alloc(size);
Jens Axboeeb065d32019-11-20 09:26:29 -07007715 if (!ctx->sq_sqes) {
7716 io_mem_free(ctx->rings);
7717 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007718 return -ENOMEM;
Jens Axboeeb065d32019-11-20 09:26:29 -07007719 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007720
Jens Axboe2b188cc2019-01-07 10:46:33 -07007721 return 0;
7722}
7723
7724/*
7725 * Allocate an anonymous fd, this is what constitutes the application
7726 * visible backing of an io_uring instance. The application mmaps this
7727 * fd to gain access to the SQ/CQ ring details. If UNIX sockets are enabled,
7728 * we have to tie this fd to a socket for file garbage collection purposes.
7729 */
7730static int io_uring_get_fd(struct io_ring_ctx *ctx)
7731{
7732 struct file *file;
7733 int ret;
7734
7735#if defined(CONFIG_UNIX)
7736 ret = sock_create_kern(&init_net, PF_UNIX, SOCK_RAW, IPPROTO_IP,
7737 &ctx->ring_sock);
7738 if (ret)
7739 return ret;
7740#endif
7741
7742 ret = get_unused_fd_flags(O_RDWR | O_CLOEXEC);
7743 if (ret < 0)
7744 goto err;
7745
7746 file = anon_inode_getfile("[io_uring]", &io_uring_fops, ctx,
7747 O_RDWR | O_CLOEXEC);
7748 if (IS_ERR(file)) {
7749 put_unused_fd(ret);
7750 ret = PTR_ERR(file);
7751 goto err;
7752 }
7753
7754#if defined(CONFIG_UNIX)
7755 ctx->ring_sock->file = file;
7756#endif
7757 fd_install(ret, file);
7758 return ret;
7759err:
7760#if defined(CONFIG_UNIX)
7761 sock_release(ctx->ring_sock);
7762 ctx->ring_sock = NULL;
7763#endif
7764 return ret;
7765}
7766
Xiaoguang Wang7f136572020-05-05 16:28:53 +08007767static int io_uring_create(unsigned entries, struct io_uring_params *p,
7768 struct io_uring_params __user *params)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007769{
7770 struct user_struct *user = NULL;
7771 struct io_ring_ctx *ctx;
7772 bool account_mem;
7773 int ret;
7774
Jens Axboe8110c1a2019-12-28 15:39:54 -07007775 if (!entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007776 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07007777 if (entries > IORING_MAX_ENTRIES) {
7778 if (!(p->flags & IORING_SETUP_CLAMP))
7779 return -EINVAL;
7780 entries = IORING_MAX_ENTRIES;
7781 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007782
7783 /*
7784 * Use twice as many entries for the CQ ring. It's possible for the
7785 * application to drive a higher depth than the size of the SQ ring,
7786 * since the sqes are only used at submission time. This allows for
Jens Axboe33a107f2019-10-04 12:10:03 -06007787 * some flexibility in overcommitting a bit. If the application has
7788 * set IORING_SETUP_CQSIZE, it will have passed in the desired number
7789 * of CQ ring entries manually.
Jens Axboe2b188cc2019-01-07 10:46:33 -07007790 */
7791 p->sq_entries = roundup_pow_of_two(entries);
Jens Axboe33a107f2019-10-04 12:10:03 -06007792 if (p->flags & IORING_SETUP_CQSIZE) {
7793 /*
7794 * If IORING_SETUP_CQSIZE is set, we do the same roundup
7795 * to a power-of-two, if it isn't already. We do NOT impose
7796 * any cq vs sq ring sizing.
7797 */
Jens Axboe8110c1a2019-12-28 15:39:54 -07007798 if (p->cq_entries < p->sq_entries)
Jens Axboe33a107f2019-10-04 12:10:03 -06007799 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07007800 if (p->cq_entries > IORING_MAX_CQ_ENTRIES) {
7801 if (!(p->flags & IORING_SETUP_CLAMP))
7802 return -EINVAL;
7803 p->cq_entries = IORING_MAX_CQ_ENTRIES;
7804 }
Jens Axboe33a107f2019-10-04 12:10:03 -06007805 p->cq_entries = roundup_pow_of_two(p->cq_entries);
7806 } else {
7807 p->cq_entries = 2 * p->sq_entries;
7808 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007809
7810 user = get_uid(current_user());
7811 account_mem = !capable(CAP_IPC_LOCK);
7812
7813 if (account_mem) {
7814 ret = io_account_mem(user,
7815 ring_pages(p->sq_entries, p->cq_entries));
7816 if (ret) {
7817 free_uid(user);
7818 return ret;
7819 }
7820 }
7821
7822 ctx = io_ring_ctx_alloc(p);
7823 if (!ctx) {
7824 if (account_mem)
7825 io_unaccount_mem(user, ring_pages(p->sq_entries,
7826 p->cq_entries));
7827 free_uid(user);
7828 return -ENOMEM;
7829 }
7830 ctx->compat = in_compat_syscall();
7831 ctx->account_mem = account_mem;
7832 ctx->user = user;
Jens Axboe0b8c0ec2019-12-02 08:50:00 -07007833 ctx->creds = get_current_cred();
Jens Axboe2b188cc2019-01-07 10:46:33 -07007834
7835 ret = io_allocate_scq_urings(ctx, p);
7836 if (ret)
7837 goto err;
7838
Jens Axboe6c271ce2019-01-10 11:22:30 -07007839 ret = io_sq_offload_start(ctx, p);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007840 if (ret)
7841 goto err;
7842
Jens Axboe2b188cc2019-01-07 10:46:33 -07007843 memset(&p->sq_off, 0, sizeof(p->sq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00007844 p->sq_off.head = offsetof(struct io_rings, sq.head);
7845 p->sq_off.tail = offsetof(struct io_rings, sq.tail);
7846 p->sq_off.ring_mask = offsetof(struct io_rings, sq_ring_mask);
7847 p->sq_off.ring_entries = offsetof(struct io_rings, sq_ring_entries);
7848 p->sq_off.flags = offsetof(struct io_rings, sq_flags);
7849 p->sq_off.dropped = offsetof(struct io_rings, sq_dropped);
7850 p->sq_off.array = (char *)ctx->sq_array - (char *)ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007851
7852 memset(&p->cq_off, 0, sizeof(p->cq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00007853 p->cq_off.head = offsetof(struct io_rings, cq.head);
7854 p->cq_off.tail = offsetof(struct io_rings, cq.tail);
7855 p->cq_off.ring_mask = offsetof(struct io_rings, cq_ring_mask);
7856 p->cq_off.ring_entries = offsetof(struct io_rings, cq_ring_entries);
7857 p->cq_off.overflow = offsetof(struct io_rings, cq_overflow);
7858 p->cq_off.cqes = offsetof(struct io_rings, cqes);
Jens Axboeac90f242019-09-06 10:26:21 -06007859
Xiaoguang Wang7f136572020-05-05 16:28:53 +08007860 p->features = IORING_FEAT_SINGLE_MMAP | IORING_FEAT_NODROP |
7861 IORING_FEAT_SUBMIT_STABLE | IORING_FEAT_RW_CUR_POS |
7862 IORING_FEAT_CUR_PERSONALITY | IORING_FEAT_FAST_POLL;
7863
7864 if (copy_to_user(params, p, sizeof(*p))) {
7865 ret = -EFAULT;
7866 goto err;
7867 }
Jens Axboe044c1ab2019-10-28 09:15:33 -06007868 /*
7869 * Install ring fd as the very last thing, so we don't risk someone
7870 * having closed it before we finish setup
7871 */
7872 ret = io_uring_get_fd(ctx);
7873 if (ret < 0)
7874 goto err;
7875
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02007876 trace_io_uring_create(ret, ctx, p->sq_entries, p->cq_entries, p->flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007877 return ret;
7878err:
7879 io_ring_ctx_wait_and_kill(ctx);
7880 return ret;
7881}
7882
7883/*
7884 * Sets up an aio uring context, and returns the fd. Applications asks for a
7885 * ring size, we return the actual sq/cq ring sizes (among other things) in the
7886 * params structure passed in.
7887 */
7888static long io_uring_setup(u32 entries, struct io_uring_params __user *params)
7889{
7890 struct io_uring_params p;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007891 int i;
7892
7893 if (copy_from_user(&p, params, sizeof(p)))
7894 return -EFAULT;
7895 for (i = 0; i < ARRAY_SIZE(p.resv); i++) {
7896 if (p.resv[i])
7897 return -EINVAL;
7898 }
7899
Jens Axboe6c271ce2019-01-10 11:22:30 -07007900 if (p.flags & ~(IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL |
Jens Axboe8110c1a2019-12-28 15:39:54 -07007901 IORING_SETUP_SQ_AFF | IORING_SETUP_CQSIZE |
Pavel Begunkov24369c22020-01-28 03:15:48 +03007902 IORING_SETUP_CLAMP | IORING_SETUP_ATTACH_WQ))
Jens Axboe2b188cc2019-01-07 10:46:33 -07007903 return -EINVAL;
7904
Xiaoguang Wang7f136572020-05-05 16:28:53 +08007905 return io_uring_create(entries, &p, params);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007906}
7907
7908SYSCALL_DEFINE2(io_uring_setup, u32, entries,
7909 struct io_uring_params __user *, params)
7910{
7911 return io_uring_setup(entries, params);
7912}
7913
Jens Axboe66f4af92020-01-16 15:36:52 -07007914static int io_probe(struct io_ring_ctx *ctx, void __user *arg, unsigned nr_args)
7915{
7916 struct io_uring_probe *p;
7917 size_t size;
7918 int i, ret;
7919
7920 size = struct_size(p, ops, nr_args);
7921 if (size == SIZE_MAX)
7922 return -EOVERFLOW;
7923 p = kzalloc(size, GFP_KERNEL);
7924 if (!p)
7925 return -ENOMEM;
7926
7927 ret = -EFAULT;
7928 if (copy_from_user(p, arg, size))
7929 goto out;
7930 ret = -EINVAL;
7931 if (memchr_inv(p, 0, size))
7932 goto out;
7933
7934 p->last_op = IORING_OP_LAST - 1;
7935 if (nr_args > IORING_OP_LAST)
7936 nr_args = IORING_OP_LAST;
7937
7938 for (i = 0; i < nr_args; i++) {
7939 p->ops[i].op = i;
7940 if (!io_op_defs[i].not_supported)
7941 p->ops[i].flags = IO_URING_OP_SUPPORTED;
7942 }
7943 p->ops_len = i;
7944
7945 ret = 0;
7946 if (copy_to_user(arg, p, size))
7947 ret = -EFAULT;
7948out:
7949 kfree(p);
7950 return ret;
7951}
7952
Jens Axboe071698e2020-01-28 10:04:42 -07007953static int io_register_personality(struct io_ring_ctx *ctx)
7954{
7955 const struct cred *creds = get_current_cred();
7956 int id;
7957
7958 id = idr_alloc_cyclic(&ctx->personality_idr, (void *) creds, 1,
7959 USHRT_MAX, GFP_KERNEL);
7960 if (id < 0)
7961 put_cred(creds);
7962 return id;
7963}
7964
7965static int io_unregister_personality(struct io_ring_ctx *ctx, unsigned id)
7966{
7967 const struct cred *old_creds;
7968
7969 old_creds = idr_remove(&ctx->personality_idr, id);
7970 if (old_creds) {
7971 put_cred(old_creds);
7972 return 0;
7973 }
7974
7975 return -EINVAL;
7976}
7977
7978static bool io_register_op_must_quiesce(int op)
7979{
7980 switch (op) {
7981 case IORING_UNREGISTER_FILES:
7982 case IORING_REGISTER_FILES_UPDATE:
7983 case IORING_REGISTER_PROBE:
7984 case IORING_REGISTER_PERSONALITY:
7985 case IORING_UNREGISTER_PERSONALITY:
7986 return false;
7987 default:
7988 return true;
7989 }
7990}
7991
Jens Axboeedafcce2019-01-09 09:16:05 -07007992static int __io_uring_register(struct io_ring_ctx *ctx, unsigned opcode,
7993 void __user *arg, unsigned nr_args)
Jens Axboeb19062a2019-04-15 10:49:38 -06007994 __releases(ctx->uring_lock)
7995 __acquires(ctx->uring_lock)
Jens Axboeedafcce2019-01-09 09:16:05 -07007996{
7997 int ret;
7998
Jens Axboe35fa71a2019-04-22 10:23:23 -06007999 /*
8000 * We're inside the ring mutex, if the ref is already dying, then
8001 * someone else killed the ctx or is already going through
8002 * io_uring_register().
8003 */
8004 if (percpu_ref_is_dying(&ctx->refs))
8005 return -ENXIO;
8006
Jens Axboe071698e2020-01-28 10:04:42 -07008007 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07008008 percpu_ref_kill(&ctx->refs);
Jens Axboeb19062a2019-04-15 10:49:38 -06008009
Jens Axboe05f3fb32019-12-09 11:22:50 -07008010 /*
8011 * Drop uring mutex before waiting for references to exit. If
8012 * another thread is currently inside io_uring_enter() it might
8013 * need to grab the uring_lock to make progress. If we hold it
8014 * here across the drain wait, then we can deadlock. It's safe
8015 * to drop the mutex here, since no new references will come in
8016 * after we've killed the percpu ref.
8017 */
8018 mutex_unlock(&ctx->uring_lock);
Jens Axboe0f158b42020-05-14 17:18:39 -06008019 ret = wait_for_completion_interruptible(&ctx->ref_comp);
Jens Axboe05f3fb32019-12-09 11:22:50 -07008020 mutex_lock(&ctx->uring_lock);
Jens Axboec1503682020-01-08 08:26:07 -07008021 if (ret) {
8022 percpu_ref_resurrect(&ctx->refs);
8023 ret = -EINTR;
8024 goto out;
8025 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07008026 }
Jens Axboeedafcce2019-01-09 09:16:05 -07008027
8028 switch (opcode) {
8029 case IORING_REGISTER_BUFFERS:
8030 ret = io_sqe_buffer_register(ctx, arg, nr_args);
8031 break;
8032 case IORING_UNREGISTER_BUFFERS:
8033 ret = -EINVAL;
8034 if (arg || nr_args)
8035 break;
8036 ret = io_sqe_buffer_unregister(ctx);
8037 break;
Jens Axboe6b063142019-01-10 22:13:58 -07008038 case IORING_REGISTER_FILES:
8039 ret = io_sqe_files_register(ctx, arg, nr_args);
8040 break;
8041 case IORING_UNREGISTER_FILES:
8042 ret = -EINVAL;
8043 if (arg || nr_args)
8044 break;
8045 ret = io_sqe_files_unregister(ctx);
8046 break;
Jens Axboec3a31e62019-10-03 13:59:56 -06008047 case IORING_REGISTER_FILES_UPDATE:
8048 ret = io_sqe_files_update(ctx, arg, nr_args);
8049 break;
Jens Axboe9b402842019-04-11 11:45:41 -06008050 case IORING_REGISTER_EVENTFD:
Jens Axboef2842ab2020-01-08 11:04:00 -07008051 case IORING_REGISTER_EVENTFD_ASYNC:
Jens Axboe9b402842019-04-11 11:45:41 -06008052 ret = -EINVAL;
8053 if (nr_args != 1)
8054 break;
8055 ret = io_eventfd_register(ctx, arg);
Jens Axboef2842ab2020-01-08 11:04:00 -07008056 if (ret)
8057 break;
8058 if (opcode == IORING_REGISTER_EVENTFD_ASYNC)
8059 ctx->eventfd_async = 1;
8060 else
8061 ctx->eventfd_async = 0;
Jens Axboe9b402842019-04-11 11:45:41 -06008062 break;
8063 case IORING_UNREGISTER_EVENTFD:
8064 ret = -EINVAL;
8065 if (arg || nr_args)
8066 break;
8067 ret = io_eventfd_unregister(ctx);
8068 break;
Jens Axboe66f4af92020-01-16 15:36:52 -07008069 case IORING_REGISTER_PROBE:
8070 ret = -EINVAL;
8071 if (!arg || nr_args > 256)
8072 break;
8073 ret = io_probe(ctx, arg, nr_args);
8074 break;
Jens Axboe071698e2020-01-28 10:04:42 -07008075 case IORING_REGISTER_PERSONALITY:
8076 ret = -EINVAL;
8077 if (arg || nr_args)
8078 break;
8079 ret = io_register_personality(ctx);
8080 break;
8081 case IORING_UNREGISTER_PERSONALITY:
8082 ret = -EINVAL;
8083 if (arg)
8084 break;
8085 ret = io_unregister_personality(ctx, nr_args);
8086 break;
Jens Axboeedafcce2019-01-09 09:16:05 -07008087 default:
8088 ret = -EINVAL;
8089 break;
8090 }
8091
Jens Axboe071698e2020-01-28 10:04:42 -07008092 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07008093 /* bring the ctx back to life */
Jens Axboe05f3fb32019-12-09 11:22:50 -07008094 percpu_ref_reinit(&ctx->refs);
Jens Axboec1503682020-01-08 08:26:07 -07008095out:
Jens Axboe0f158b42020-05-14 17:18:39 -06008096 reinit_completion(&ctx->ref_comp);
Jens Axboe05f3fb32019-12-09 11:22:50 -07008097 }
Jens Axboeedafcce2019-01-09 09:16:05 -07008098 return ret;
8099}
8100
8101SYSCALL_DEFINE4(io_uring_register, unsigned int, fd, unsigned int, opcode,
8102 void __user *, arg, unsigned int, nr_args)
8103{
8104 struct io_ring_ctx *ctx;
8105 long ret = -EBADF;
8106 struct fd f;
8107
8108 f = fdget(fd);
8109 if (!f.file)
8110 return -EBADF;
8111
8112 ret = -EOPNOTSUPP;
8113 if (f.file->f_op != &io_uring_fops)
8114 goto out_fput;
8115
8116 ctx = f.file->private_data;
8117
8118 mutex_lock(&ctx->uring_lock);
8119 ret = __io_uring_register(ctx, opcode, arg, nr_args);
8120 mutex_unlock(&ctx->uring_lock);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02008121 trace_io_uring_register(ctx, opcode, ctx->nr_user_files, ctx->nr_user_bufs,
8122 ctx->cq_ev_fd != NULL, ret);
Jens Axboeedafcce2019-01-09 09:16:05 -07008123out_fput:
8124 fdput(f);
8125 return ret;
8126}
8127
Jens Axboe2b188cc2019-01-07 10:46:33 -07008128static int __init io_uring_init(void)
8129{
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008130#define __BUILD_BUG_VERIFY_ELEMENT(stype, eoffset, etype, ename) do { \
8131 BUILD_BUG_ON(offsetof(stype, ename) != eoffset); \
8132 BUILD_BUG_ON(sizeof(etype) != sizeof_field(stype, ename)); \
8133} while (0)
8134
8135#define BUILD_BUG_SQE_ELEM(eoffset, etype, ename) \
8136 __BUILD_BUG_VERIFY_ELEMENT(struct io_uring_sqe, eoffset, etype, ename)
8137 BUILD_BUG_ON(sizeof(struct io_uring_sqe) != 64);
8138 BUILD_BUG_SQE_ELEM(0, __u8, opcode);
8139 BUILD_BUG_SQE_ELEM(1, __u8, flags);
8140 BUILD_BUG_SQE_ELEM(2, __u16, ioprio);
8141 BUILD_BUG_SQE_ELEM(4, __s32, fd);
8142 BUILD_BUG_SQE_ELEM(8, __u64, off);
8143 BUILD_BUG_SQE_ELEM(8, __u64, addr2);
8144 BUILD_BUG_SQE_ELEM(16, __u64, addr);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03008145 BUILD_BUG_SQE_ELEM(16, __u64, splice_off_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008146 BUILD_BUG_SQE_ELEM(24, __u32, len);
8147 BUILD_BUG_SQE_ELEM(28, __kernel_rwf_t, rw_flags);
8148 BUILD_BUG_SQE_ELEM(28, /* compat */ int, rw_flags);
8149 BUILD_BUG_SQE_ELEM(28, /* compat */ __u32, rw_flags);
8150 BUILD_BUG_SQE_ELEM(28, __u32, fsync_flags);
8151 BUILD_BUG_SQE_ELEM(28, __u16, poll_events);
8152 BUILD_BUG_SQE_ELEM(28, __u32, sync_range_flags);
8153 BUILD_BUG_SQE_ELEM(28, __u32, msg_flags);
8154 BUILD_BUG_SQE_ELEM(28, __u32, timeout_flags);
8155 BUILD_BUG_SQE_ELEM(28, __u32, accept_flags);
8156 BUILD_BUG_SQE_ELEM(28, __u32, cancel_flags);
8157 BUILD_BUG_SQE_ELEM(28, __u32, open_flags);
8158 BUILD_BUG_SQE_ELEM(28, __u32, statx_flags);
8159 BUILD_BUG_SQE_ELEM(28, __u32, fadvise_advice);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03008160 BUILD_BUG_SQE_ELEM(28, __u32, splice_flags);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008161 BUILD_BUG_SQE_ELEM(32, __u64, user_data);
8162 BUILD_BUG_SQE_ELEM(40, __u16, buf_index);
8163 BUILD_BUG_SQE_ELEM(42, __u16, personality);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03008164 BUILD_BUG_SQE_ELEM(44, __s32, splice_fd_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008165
Jens Axboed3656342019-12-18 09:50:26 -07008166 BUILD_BUG_ON(ARRAY_SIZE(io_op_defs) != IORING_OP_LAST);
Jens Axboe84557872020-03-03 15:28:17 -07008167 BUILD_BUG_ON(__REQ_F_LAST_BIT >= 8 * sizeof(int));
Jens Axboe2b188cc2019-01-07 10:46:33 -07008168 req_cachep = KMEM_CACHE(io_kiocb, SLAB_HWCACHE_ALIGN | SLAB_PANIC);
8169 return 0;
8170};
8171__initcall(io_uring_init);