blob: 982066844c5a0caf340c73e318c9e93daf5d6ae4 [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
Jens Axboed7718a92020-02-14 22:23:12 -07004102static int __io_async_wake(struct io_kiocb *req, struct io_poll_iocb *poll,
4103 __poll_t mask, task_work_func_t func)
4104{
4105 struct task_struct *tsk;
Jens Axboeaa96bf82020-04-03 11:26:26 -06004106 int ret;
Jens Axboed7718a92020-02-14 22:23:12 -07004107
4108 /* for instances that support it check for an event match first: */
4109 if (mask && !(mask & poll->events))
4110 return 0;
4111
4112 trace_io_uring_task_add(req->ctx, req->opcode, req->user_data, mask);
4113
4114 list_del_init(&poll->wait.entry);
4115
4116 tsk = req->task;
4117 req->result = mask;
4118 init_task_work(&req->task_work, func);
4119 /*
Jens Axboeaa96bf82020-04-03 11:26:26 -06004120 * If this fails, then the task is exiting. Punt to one of the io-wq
4121 * threads to ensure the work gets run, we can't always rely on exit
4122 * cancelation taking care of this.
Jens Axboed7718a92020-02-14 22:23:12 -07004123 */
Jens Axboeaa96bf82020-04-03 11:26:26 -06004124 ret = task_work_add(tsk, &req->task_work, true);
4125 if (unlikely(ret)) {
4126 tsk = io_wq_get_task(req->ctx->io_wq);
4127 task_work_add(tsk, &req->task_work, true);
4128 }
Jens Axboed7718a92020-02-14 22:23:12 -07004129 wake_up_process(tsk);
4130 return 1;
4131}
4132
Jens Axboe74ce6ce2020-04-13 11:09:12 -06004133static bool io_poll_rewait(struct io_kiocb *req, struct io_poll_iocb *poll)
4134 __acquires(&req->ctx->completion_lock)
4135{
4136 struct io_ring_ctx *ctx = req->ctx;
4137
4138 if (!req->result && !READ_ONCE(poll->canceled)) {
4139 struct poll_table_struct pt = { ._key = poll->events };
4140
4141 req->result = vfs_poll(req->file, &pt) & poll->events;
4142 }
4143
4144 spin_lock_irq(&ctx->completion_lock);
4145 if (!req->result && !READ_ONCE(poll->canceled)) {
4146 add_wait_queue(poll->head, &poll->wait);
4147 return true;
4148 }
4149
4150 return false;
4151}
4152
Jens Axboe18bceab2020-05-15 11:56:54 -06004153static void io_poll_remove_double(struct io_kiocb *req)
4154{
4155 struct io_poll_iocb *poll = (struct io_poll_iocb *) req->io;
4156
4157 lockdep_assert_held(&req->ctx->completion_lock);
4158
4159 if (poll && poll->head) {
4160 struct wait_queue_head *head = poll->head;
4161
4162 spin_lock(&head->lock);
4163 list_del_init(&poll->wait.entry);
4164 if (poll->wait.private)
4165 refcount_dec(&req->refs);
4166 poll->head = NULL;
4167 spin_unlock(&head->lock);
4168 }
4169}
4170
4171static void io_poll_complete(struct io_kiocb *req, __poll_t mask, int error)
4172{
4173 struct io_ring_ctx *ctx = req->ctx;
4174
4175 io_poll_remove_double(req);
4176 req->poll.done = true;
4177 io_cqring_fill_event(req, error ? error : mangle_poll(mask));
4178 io_commit_cqring(ctx);
4179}
4180
4181static void io_poll_task_handler(struct io_kiocb *req, struct io_kiocb **nxt)
4182{
4183 struct io_ring_ctx *ctx = req->ctx;
4184
4185 if (io_poll_rewait(req, &req->poll)) {
4186 spin_unlock_irq(&ctx->completion_lock);
4187 return;
4188 }
4189
4190 hash_del(&req->hash_node);
4191 io_poll_complete(req, req->result, 0);
4192 req->flags |= REQ_F_COMP_LOCKED;
4193 io_put_req_find_next(req, nxt);
4194 spin_unlock_irq(&ctx->completion_lock);
4195
4196 io_cqring_ev_posted(ctx);
4197}
4198
4199static void io_poll_task_func(struct callback_head *cb)
4200{
4201 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
4202 struct io_kiocb *nxt = NULL;
4203
4204 io_poll_task_handler(req, &nxt);
4205 if (nxt) {
4206 struct io_ring_ctx *ctx = nxt->ctx;
4207
4208 mutex_lock(&ctx->uring_lock);
4209 __io_queue_sqe(nxt, NULL);
4210 mutex_unlock(&ctx->uring_lock);
4211 }
4212}
4213
4214static int io_poll_double_wake(struct wait_queue_entry *wait, unsigned mode,
4215 int sync, void *key)
4216{
4217 struct io_kiocb *req = wait->private;
4218 struct io_poll_iocb *poll = (struct io_poll_iocb *) req->io;
4219 __poll_t mask = key_to_poll(key);
4220
4221 /* for instances that support it check for an event match first: */
4222 if (mask && !(mask & poll->events))
4223 return 0;
4224
4225 if (req->poll.head) {
4226 bool done;
4227
4228 spin_lock(&req->poll.head->lock);
4229 done = list_empty(&req->poll.wait.entry);
4230 if (!done)
4231 list_del_init(&req->poll.wait.entry);
4232 spin_unlock(&req->poll.head->lock);
4233 if (!done)
4234 __io_async_wake(req, poll, mask, io_poll_task_func);
4235 }
4236 refcount_dec(&req->refs);
4237 return 1;
4238}
4239
4240static void io_init_poll_iocb(struct io_poll_iocb *poll, __poll_t events,
4241 wait_queue_func_t wake_func)
4242{
4243 poll->head = NULL;
4244 poll->done = false;
4245 poll->canceled = false;
4246 poll->events = events;
4247 INIT_LIST_HEAD(&poll->wait.entry);
4248 init_waitqueue_func_entry(&poll->wait, wake_func);
4249}
4250
4251static void __io_queue_proc(struct io_poll_iocb *poll, struct io_poll_table *pt,
4252 struct wait_queue_head *head)
4253{
4254 struct io_kiocb *req = pt->req;
4255
4256 /*
4257 * If poll->head is already set, it's because the file being polled
4258 * uses multiple waitqueues for poll handling (eg one for read, one
4259 * for write). Setup a separate io_poll_iocb if this happens.
4260 */
4261 if (unlikely(poll->head)) {
4262 /* already have a 2nd entry, fail a third attempt */
4263 if (req->io) {
4264 pt->error = -EINVAL;
4265 return;
4266 }
4267 poll = kmalloc(sizeof(*poll), GFP_ATOMIC);
4268 if (!poll) {
4269 pt->error = -ENOMEM;
4270 return;
4271 }
4272 io_init_poll_iocb(poll, req->poll.events, io_poll_double_wake);
4273 refcount_inc(&req->refs);
4274 poll->wait.private = req;
4275 req->io = (void *) poll;
4276 }
4277
4278 pt->error = 0;
4279 poll->head = head;
4280 add_wait_queue(head, &poll->wait);
4281}
4282
4283static void io_async_queue_proc(struct file *file, struct wait_queue_head *head,
4284 struct poll_table_struct *p)
4285{
4286 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
4287
4288 __io_queue_proc(&pt->req->apoll->poll, pt, head);
4289}
4290
Jens Axboed7718a92020-02-14 22:23:12 -07004291static void io_async_task_func(struct callback_head *cb)
4292{
4293 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
4294 struct async_poll *apoll = req->apoll;
4295 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2bae0472020-04-13 11:16:34 -06004296 bool canceled;
Jens Axboed7718a92020-02-14 22:23:12 -07004297
4298 trace_io_uring_task_run(req->ctx, req->opcode, req->user_data);
4299
Jens Axboe74ce6ce2020-04-13 11:09:12 -06004300 if (io_poll_rewait(req, &apoll->poll)) {
Jens Axboed7718a92020-02-14 22:23:12 -07004301 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe74ce6ce2020-04-13 11:09:12 -06004302 return;
Jens Axboed7718a92020-02-14 22:23:12 -07004303 }
4304
Jens Axboe74ce6ce2020-04-13 11:09:12 -06004305 if (hash_hashed(&req->hash_node))
4306 hash_del(&req->hash_node);
4307
Jens Axboe2bae0472020-04-13 11:16:34 -06004308 canceled = READ_ONCE(apoll->poll.canceled);
4309 if (canceled) {
4310 io_cqring_fill_event(req, -ECANCELED);
4311 io_commit_cqring(ctx);
4312 }
4313
Jens Axboe74ce6ce2020-04-13 11:09:12 -06004314 spin_unlock_irq(&ctx->completion_lock);
4315
Xiaoguang Wang44575a62020-04-19 10:06:55 +08004316 /* restore ->work in case we need to retry again */
4317 memcpy(&req->work, &apoll->work, sizeof(req->work));
4318
Jens Axboe2bae0472020-04-13 11:16:34 -06004319 if (canceled) {
4320 kfree(apoll);
4321 io_cqring_ev_posted(ctx);
4322 req_set_fail_links(req);
Xiaoguang Wang44575a62020-04-19 10:06:55 +08004323 io_double_put_req(req);
Jens Axboe2bae0472020-04-13 11:16:34 -06004324 return;
4325 }
4326
Jens Axboed7718a92020-02-14 22:23:12 -07004327 __set_current_state(TASK_RUNNING);
4328 mutex_lock(&ctx->uring_lock);
4329 __io_queue_sqe(req, NULL);
4330 mutex_unlock(&ctx->uring_lock);
4331
4332 kfree(apoll);
4333}
4334
4335static int io_async_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
4336 void *key)
4337{
4338 struct io_kiocb *req = wait->private;
4339 struct io_poll_iocb *poll = &req->apoll->poll;
4340
4341 trace_io_uring_poll_wake(req->ctx, req->opcode, req->user_data,
4342 key_to_poll(key));
4343
4344 return __io_async_wake(req, poll, key_to_poll(key), io_async_task_func);
4345}
4346
4347static void io_poll_req_insert(struct io_kiocb *req)
4348{
4349 struct io_ring_ctx *ctx = req->ctx;
4350 struct hlist_head *list;
4351
4352 list = &ctx->cancel_hash[hash_long(req->user_data, ctx->cancel_hash_bits)];
4353 hlist_add_head(&req->hash_node, list);
4354}
4355
4356static __poll_t __io_arm_poll_handler(struct io_kiocb *req,
4357 struct io_poll_iocb *poll,
4358 struct io_poll_table *ipt, __poll_t mask,
4359 wait_queue_func_t wake_func)
4360 __acquires(&ctx->completion_lock)
4361{
4362 struct io_ring_ctx *ctx = req->ctx;
4363 bool cancel = false;
4364
4365 poll->file = req->file;
Jens Axboe18bceab2020-05-15 11:56:54 -06004366 io_init_poll_iocb(poll, mask, wake_func);
4367 poll->wait.private = req;
Jens Axboed7718a92020-02-14 22:23:12 -07004368
4369 ipt->pt._key = mask;
4370 ipt->req = req;
4371 ipt->error = -EINVAL;
4372
Jens Axboed7718a92020-02-14 22:23:12 -07004373 mask = vfs_poll(req->file, &ipt->pt) & poll->events;
4374
4375 spin_lock_irq(&ctx->completion_lock);
4376 if (likely(poll->head)) {
4377 spin_lock(&poll->head->lock);
4378 if (unlikely(list_empty(&poll->wait.entry))) {
4379 if (ipt->error)
4380 cancel = true;
4381 ipt->error = 0;
4382 mask = 0;
4383 }
4384 if (mask || ipt->error)
4385 list_del_init(&poll->wait.entry);
4386 else if (cancel)
4387 WRITE_ONCE(poll->canceled, true);
4388 else if (!poll->done) /* actually waiting for an event */
4389 io_poll_req_insert(req);
4390 spin_unlock(&poll->head->lock);
4391 }
4392
4393 return mask;
4394}
4395
4396static bool io_arm_poll_handler(struct io_kiocb *req)
4397{
4398 const struct io_op_def *def = &io_op_defs[req->opcode];
4399 struct io_ring_ctx *ctx = req->ctx;
4400 struct async_poll *apoll;
4401 struct io_poll_table ipt;
4402 __poll_t mask, ret;
Jens Axboe18bceab2020-05-15 11:56:54 -06004403 bool had_io;
Jens Axboed7718a92020-02-14 22:23:12 -07004404
4405 if (!req->file || !file_can_poll(req->file))
4406 return false;
4407 if (req->flags & (REQ_F_MUST_PUNT | REQ_F_POLLED))
4408 return false;
4409 if (!def->pollin && !def->pollout)
4410 return false;
4411
4412 apoll = kmalloc(sizeof(*apoll), GFP_ATOMIC);
4413 if (unlikely(!apoll))
4414 return false;
4415
4416 req->flags |= REQ_F_POLLED;
4417 memcpy(&apoll->work, &req->work, sizeof(req->work));
Jens Axboe18bceab2020-05-15 11:56:54 -06004418 had_io = req->io != NULL;
Jens Axboed7718a92020-02-14 22:23:12 -07004419
Jens Axboe3537b6a2020-04-03 11:19:06 -06004420 get_task_struct(current);
Jens Axboed7718a92020-02-14 22:23:12 -07004421 req->task = current;
4422 req->apoll = apoll;
4423 INIT_HLIST_NODE(&req->hash_node);
4424
Nathan Chancellor8755d972020-03-02 16:01:19 -07004425 mask = 0;
Jens Axboed7718a92020-02-14 22:23:12 -07004426 if (def->pollin)
Nathan Chancellor8755d972020-03-02 16:01:19 -07004427 mask |= POLLIN | POLLRDNORM;
Jens Axboed7718a92020-02-14 22:23:12 -07004428 if (def->pollout)
4429 mask |= POLLOUT | POLLWRNORM;
4430 mask |= POLLERR | POLLPRI;
4431
4432 ipt.pt._qproc = io_async_queue_proc;
4433
4434 ret = __io_arm_poll_handler(req, &apoll->poll, &ipt, mask,
4435 io_async_wake);
4436 if (ret) {
4437 ipt.error = 0;
Jens Axboe18bceab2020-05-15 11:56:54 -06004438 /* only remove double add if we did it here */
4439 if (!had_io)
4440 io_poll_remove_double(req);
Jens Axboed7718a92020-02-14 22:23:12 -07004441 spin_unlock_irq(&ctx->completion_lock);
4442 memcpy(&req->work, &apoll->work, sizeof(req->work));
4443 kfree(apoll);
4444 return false;
4445 }
4446 spin_unlock_irq(&ctx->completion_lock);
4447 trace_io_uring_poll_arm(ctx, req->opcode, req->user_data, mask,
4448 apoll->poll.events);
4449 return true;
4450}
4451
4452static bool __io_poll_remove_one(struct io_kiocb *req,
4453 struct io_poll_iocb *poll)
4454{
Jens Axboeb41e9852020-02-17 09:52:41 -07004455 bool do_complete = false;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004456
4457 spin_lock(&poll->head->lock);
4458 WRITE_ONCE(poll->canceled, true);
Jens Axboe392edb42019-12-09 17:52:20 -07004459 if (!list_empty(&poll->wait.entry)) {
4460 list_del_init(&poll->wait.entry);
Jens Axboeb41e9852020-02-17 09:52:41 -07004461 do_complete = true;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004462 }
4463 spin_unlock(&poll->head->lock);
Jens Axboed7718a92020-02-14 22:23:12 -07004464 return do_complete;
4465}
4466
4467static bool io_poll_remove_one(struct io_kiocb *req)
4468{
Xiaoguang Wangb1f573b2020-04-12 14:50:54 +08004469 struct async_poll *apoll = NULL;
Jens Axboed7718a92020-02-14 22:23:12 -07004470 bool do_complete;
4471
4472 if (req->opcode == IORING_OP_POLL_ADD) {
Jens Axboe18bceab2020-05-15 11:56:54 -06004473 io_poll_remove_double(req);
Jens Axboed7718a92020-02-14 22:23:12 -07004474 do_complete = __io_poll_remove_one(req, &req->poll);
4475 } else {
Xiaoguang Wangb1f573b2020-04-12 14:50:54 +08004476 apoll = req->apoll;
Jens Axboed7718a92020-02-14 22:23:12 -07004477 /* non-poll requests have submit ref still */
4478 do_complete = __io_poll_remove_one(req, &req->apoll->poll);
4479 if (do_complete)
4480 io_put_req(req);
4481 }
4482
Jens Axboe78076bb2019-12-04 19:56:40 -07004483 hash_del(&req->hash_node);
Jens Axboed7718a92020-02-14 22:23:12 -07004484
Xiaoguang Wang44575a62020-04-19 10:06:55 +08004485 if (do_complete && apoll) {
Xiaoguang Wangb1f573b2020-04-12 14:50:54 +08004486 /*
4487 * restore ->work because we need to call io_req_work_drop_env.
4488 */
4489 memcpy(&req->work, &apoll->work, sizeof(req->work));
4490 kfree(apoll);
4491 }
4492
Jens Axboeb41e9852020-02-17 09:52:41 -07004493 if (do_complete) {
4494 io_cqring_fill_event(req, -ECANCELED);
4495 io_commit_cqring(req->ctx);
4496 req->flags |= REQ_F_COMP_LOCKED;
4497 io_put_req(req);
4498 }
4499
4500 return do_complete;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004501}
4502
4503static void io_poll_remove_all(struct io_ring_ctx *ctx)
4504{
Jens Axboe78076bb2019-12-04 19:56:40 -07004505 struct hlist_node *tmp;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004506 struct io_kiocb *req;
Jens Axboe8e2e1fa2020-04-13 17:05:14 -06004507 int posted = 0, i;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004508
4509 spin_lock_irq(&ctx->completion_lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07004510 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
4511 struct hlist_head *list;
4512
4513 list = &ctx->cancel_hash[i];
4514 hlist_for_each_entry_safe(req, tmp, list, hash_node)
Jens Axboe8e2e1fa2020-04-13 17:05:14 -06004515 posted += io_poll_remove_one(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004516 }
4517 spin_unlock_irq(&ctx->completion_lock);
Jens Axboeb41e9852020-02-17 09:52:41 -07004518
Jens Axboe8e2e1fa2020-04-13 17:05:14 -06004519 if (posted)
4520 io_cqring_ev_posted(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004521}
4522
Jens Axboe47f46762019-11-09 17:43:02 -07004523static int io_poll_cancel(struct io_ring_ctx *ctx, __u64 sqe_addr)
4524{
Jens Axboe78076bb2019-12-04 19:56:40 -07004525 struct hlist_head *list;
Jens Axboe47f46762019-11-09 17:43:02 -07004526 struct io_kiocb *req;
4527
Jens Axboe78076bb2019-12-04 19:56:40 -07004528 list = &ctx->cancel_hash[hash_long(sqe_addr, ctx->cancel_hash_bits)];
4529 hlist_for_each_entry(req, list, hash_node) {
Jens Axboeb41e9852020-02-17 09:52:41 -07004530 if (sqe_addr != req->user_data)
4531 continue;
4532 if (io_poll_remove_one(req))
Jens Axboeeac406c2019-11-14 12:09:58 -07004533 return 0;
Jens Axboeb41e9852020-02-17 09:52:41 -07004534 return -EALREADY;
Jens Axboe47f46762019-11-09 17:43:02 -07004535 }
4536
4537 return -ENOENT;
4538}
4539
Jens Axboe3529d8c2019-12-19 18:24:38 -07004540static int io_poll_remove_prep(struct io_kiocb *req,
4541 const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004542{
Jens Axboe221c5eb2019-01-17 09:41:58 -07004543 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4544 return -EINVAL;
4545 if (sqe->ioprio || sqe->off || sqe->len || sqe->buf_index ||
4546 sqe->poll_events)
4547 return -EINVAL;
4548
Jens Axboe0969e782019-12-17 18:40:57 -07004549 req->poll.addr = READ_ONCE(sqe->addr);
Jens Axboe0969e782019-12-17 18:40:57 -07004550 return 0;
4551}
4552
4553/*
4554 * Find a running poll command that matches one specified in sqe->addr,
4555 * and remove it if found.
4556 */
4557static int io_poll_remove(struct io_kiocb *req)
4558{
4559 struct io_ring_ctx *ctx = req->ctx;
4560 u64 addr;
4561 int ret;
4562
Jens Axboe0969e782019-12-17 18:40:57 -07004563 addr = req->poll.addr;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004564 spin_lock_irq(&ctx->completion_lock);
Jens Axboe0969e782019-12-17 18:40:57 -07004565 ret = io_poll_cancel(ctx, addr);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004566 spin_unlock_irq(&ctx->completion_lock);
4567
Jens Axboe78e19bb2019-11-06 15:21:34 -07004568 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004569 if (ret < 0)
4570 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06004571 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004572 return 0;
4573}
4574
Jens Axboe221c5eb2019-01-17 09:41:58 -07004575static int io_poll_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
4576 void *key)
4577{
Jens Axboec2f2eb72020-02-10 09:07:05 -07004578 struct io_kiocb *req = wait->private;
4579 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004580
Jens Axboed7718a92020-02-14 22:23:12 -07004581 return __io_async_wake(req, poll, key_to_poll(key), io_poll_task_func);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004582}
4583
Jens Axboe221c5eb2019-01-17 09:41:58 -07004584static void io_poll_queue_proc(struct file *file, struct wait_queue_head *head,
4585 struct poll_table_struct *p)
4586{
4587 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
4588
Jens Axboed7718a92020-02-14 22:23:12 -07004589 __io_queue_proc(&pt->req->poll, pt, head);
Jens Axboeeac406c2019-11-14 12:09:58 -07004590}
4591
Jens Axboe3529d8c2019-12-19 18:24:38 -07004592static int io_poll_add_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004593{
4594 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004595 u16 events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004596
4597 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4598 return -EINVAL;
4599 if (sqe->addr || sqe->ioprio || sqe->off || sqe->len || sqe->buf_index)
4600 return -EINVAL;
Jens Axboe09bb8392019-03-13 12:39:28 -06004601 if (!poll->file)
4602 return -EBADF;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004603
Jens Axboe221c5eb2019-01-17 09:41:58 -07004604 events = READ_ONCE(sqe->poll_events);
4605 poll->events = demangle_poll(events) | EPOLLERR | EPOLLHUP;
Jens Axboeb41e9852020-02-17 09:52:41 -07004606
Jens Axboe3537b6a2020-04-03 11:19:06 -06004607 get_task_struct(current);
Jens Axboeb41e9852020-02-17 09:52:41 -07004608 req->task = current;
Jens Axboe0969e782019-12-17 18:40:57 -07004609 return 0;
4610}
4611
Pavel Begunkov014db002020-03-03 21:33:12 +03004612static int io_poll_add(struct io_kiocb *req)
Jens Axboe0969e782019-12-17 18:40:57 -07004613{
4614 struct io_poll_iocb *poll = &req->poll;
4615 struct io_ring_ctx *ctx = req->ctx;
4616 struct io_poll_table ipt;
Jens Axboe0969e782019-12-17 18:40:57 -07004617 __poll_t mask;
Jens Axboe0969e782019-12-17 18:40:57 -07004618
Jens Axboe78076bb2019-12-04 19:56:40 -07004619 INIT_HLIST_NODE(&req->hash_node);
Jens Axboe36703242019-07-25 10:20:18 -06004620 INIT_LIST_HEAD(&req->list);
Jens Axboed7718a92020-02-14 22:23:12 -07004621 ipt.pt._qproc = io_poll_queue_proc;
Jens Axboe36703242019-07-25 10:20:18 -06004622
Jens Axboed7718a92020-02-14 22:23:12 -07004623 mask = __io_arm_poll_handler(req, &req->poll, &ipt, poll->events,
4624 io_poll_wake);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004625
Jens Axboe8c838782019-03-12 15:48:16 -06004626 if (mask) { /* no async, we'd stolen it */
Jens Axboe8c838782019-03-12 15:48:16 -06004627 ipt.error = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004628 io_poll_complete(req, mask, 0);
Jens Axboe8c838782019-03-12 15:48:16 -06004629 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07004630 spin_unlock_irq(&ctx->completion_lock);
4631
Jens Axboe8c838782019-03-12 15:48:16 -06004632 if (mask) {
4633 io_cqring_ev_posted(ctx);
Pavel Begunkov014db002020-03-03 21:33:12 +03004634 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004635 }
Jens Axboe8c838782019-03-12 15:48:16 -06004636 return ipt.error;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004637}
4638
Jens Axboe5262f562019-09-17 12:26:57 -06004639static enum hrtimer_restart io_timeout_fn(struct hrtimer *timer)
4640{
Jens Axboead8a48a2019-11-15 08:49:11 -07004641 struct io_timeout_data *data = container_of(timer,
4642 struct io_timeout_data, timer);
4643 struct io_kiocb *req = data->req;
4644 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5262f562019-09-17 12:26:57 -06004645 unsigned long flags;
4646
Jens Axboe5262f562019-09-17 12:26:57 -06004647 atomic_inc(&ctx->cq_timeouts);
4648
4649 spin_lock_irqsave(&ctx->completion_lock, flags);
zhangyi (F)ef036812019-10-23 15:10:08 +08004650 /*
Jens Axboe11365042019-10-16 09:08:32 -06004651 * We could be racing with timeout deletion. If the list is empty,
4652 * then timeout lookup already found it and will be handling it.
zhangyi (F)ef036812019-10-23 15:10:08 +08004653 */
Jens Axboe842f9612019-10-29 12:34:10 -06004654 if (!list_empty(&req->list)) {
Jens Axboe11365042019-10-16 09:08:32 -06004655 struct io_kiocb *prev;
Jens Axboe5262f562019-09-17 12:26:57 -06004656
Jens Axboe11365042019-10-16 09:08:32 -06004657 /*
4658 * Adjust the reqs sequence before the current one because it
Brian Gianforcarod195a662019-12-13 03:09:50 -08004659 * will consume a slot in the cq_ring and the cq_tail
Jens Axboe11365042019-10-16 09:08:32 -06004660 * pointer will be increased, otherwise other timeout reqs may
4661 * return in advance without waiting for enough wait_nr.
4662 */
4663 prev = req;
4664 list_for_each_entry_continue_reverse(prev, &ctx->timeout_list, list)
4665 prev->sequence++;
Jens Axboe11365042019-10-16 09:08:32 -06004666 list_del_init(&req->list);
Jens Axboe11365042019-10-16 09:08:32 -06004667 }
Jens Axboe842f9612019-10-29 12:34:10 -06004668
Jens Axboe78e19bb2019-11-06 15:21:34 -07004669 io_cqring_fill_event(req, -ETIME);
Jens Axboe5262f562019-09-17 12:26:57 -06004670 io_commit_cqring(ctx);
4671 spin_unlock_irqrestore(&ctx->completion_lock, flags);
4672
4673 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004674 req_set_fail_links(req);
Jens Axboe5262f562019-09-17 12:26:57 -06004675 io_put_req(req);
4676 return HRTIMER_NORESTART;
4677}
4678
Jens Axboe47f46762019-11-09 17:43:02 -07004679static int io_timeout_cancel(struct io_ring_ctx *ctx, __u64 user_data)
4680{
4681 struct io_kiocb *req;
4682 int ret = -ENOENT;
4683
4684 list_for_each_entry(req, &ctx->timeout_list, list) {
4685 if (user_data == req->user_data) {
4686 list_del_init(&req->list);
4687 ret = 0;
4688 break;
4689 }
4690 }
4691
4692 if (ret == -ENOENT)
4693 return ret;
4694
Jens Axboe2d283902019-12-04 11:08:05 -07004695 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe47f46762019-11-09 17:43:02 -07004696 if (ret == -1)
4697 return -EALREADY;
4698
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004699 req_set_fail_links(req);
Jens Axboe47f46762019-11-09 17:43:02 -07004700 io_cqring_fill_event(req, -ECANCELED);
4701 io_put_req(req);
4702 return 0;
4703}
4704
Jens Axboe3529d8c2019-12-19 18:24:38 -07004705static int io_timeout_remove_prep(struct io_kiocb *req,
4706 const struct io_uring_sqe *sqe)
Jens Axboeb29472e2019-12-17 18:50:29 -07004707{
Jens Axboeb29472e2019-12-17 18:50:29 -07004708 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4709 return -EINVAL;
4710 if (sqe->flags || sqe->ioprio || sqe->buf_index || sqe->len)
4711 return -EINVAL;
4712
4713 req->timeout.addr = READ_ONCE(sqe->addr);
4714 req->timeout.flags = READ_ONCE(sqe->timeout_flags);
4715 if (req->timeout.flags)
4716 return -EINVAL;
4717
Jens Axboeb29472e2019-12-17 18:50:29 -07004718 return 0;
4719}
4720
Jens Axboe11365042019-10-16 09:08:32 -06004721/*
4722 * Remove or update an existing timeout command
4723 */
Jens Axboefc4df992019-12-10 14:38:45 -07004724static int io_timeout_remove(struct io_kiocb *req)
Jens Axboe11365042019-10-16 09:08:32 -06004725{
4726 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe47f46762019-11-09 17:43:02 -07004727 int ret;
Jens Axboe11365042019-10-16 09:08:32 -06004728
Jens Axboe11365042019-10-16 09:08:32 -06004729 spin_lock_irq(&ctx->completion_lock);
Jens Axboeb29472e2019-12-17 18:50:29 -07004730 ret = io_timeout_cancel(ctx, req->timeout.addr);
Jens Axboe11365042019-10-16 09:08:32 -06004731
Jens Axboe47f46762019-11-09 17:43:02 -07004732 io_cqring_fill_event(req, ret);
Jens Axboe11365042019-10-16 09:08:32 -06004733 io_commit_cqring(ctx);
4734 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06004735 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004736 if (ret < 0)
4737 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08004738 io_put_req(req);
Jens Axboe11365042019-10-16 09:08:32 -06004739 return 0;
Jens Axboe5262f562019-09-17 12:26:57 -06004740}
4741
Jens Axboe3529d8c2019-12-19 18:24:38 -07004742static int io_timeout_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboe2d283902019-12-04 11:08:05 -07004743 bool is_timeout_link)
Jens Axboe5262f562019-09-17 12:26:57 -06004744{
Jens Axboead8a48a2019-11-15 08:49:11 -07004745 struct io_timeout_data *data;
Jens Axboea41525a2019-10-15 16:48:15 -06004746 unsigned flags;
Jens Axboe5262f562019-09-17 12:26:57 -06004747
Jens Axboead8a48a2019-11-15 08:49:11 -07004748 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe5262f562019-09-17 12:26:57 -06004749 return -EINVAL;
Jens Axboead8a48a2019-11-15 08:49:11 -07004750 if (sqe->ioprio || sqe->buf_index || sqe->len != 1)
Jens Axboea41525a2019-10-15 16:48:15 -06004751 return -EINVAL;
Jens Axboe2d283902019-12-04 11:08:05 -07004752 if (sqe->off && is_timeout_link)
4753 return -EINVAL;
Jens Axboea41525a2019-10-15 16:48:15 -06004754 flags = READ_ONCE(sqe->timeout_flags);
4755 if (flags & ~IORING_TIMEOUT_ABS)
Jens Axboe5262f562019-09-17 12:26:57 -06004756 return -EINVAL;
Arnd Bergmannbdf20072019-10-01 09:53:29 -06004757
Jens Axboe26a61672019-12-20 09:02:01 -07004758 req->timeout.count = READ_ONCE(sqe->off);
4759
Jens Axboe3529d8c2019-12-19 18:24:38 -07004760 if (!req->io && io_alloc_async_ctx(req))
Jens Axboe26a61672019-12-20 09:02:01 -07004761 return -ENOMEM;
4762
4763 data = &req->io->timeout;
Jens Axboead8a48a2019-11-15 08:49:11 -07004764 data->req = req;
Jens Axboead8a48a2019-11-15 08:49:11 -07004765 req->flags |= REQ_F_TIMEOUT;
4766
4767 if (get_timespec64(&data->ts, u64_to_user_ptr(sqe->addr)))
Jens Axboe5262f562019-09-17 12:26:57 -06004768 return -EFAULT;
4769
Jens Axboe11365042019-10-16 09:08:32 -06004770 if (flags & IORING_TIMEOUT_ABS)
Jens Axboead8a48a2019-11-15 08:49:11 -07004771 data->mode = HRTIMER_MODE_ABS;
Jens Axboe11365042019-10-16 09:08:32 -06004772 else
Jens Axboead8a48a2019-11-15 08:49:11 -07004773 data->mode = HRTIMER_MODE_REL;
Jens Axboe11365042019-10-16 09:08:32 -06004774
Jens Axboead8a48a2019-11-15 08:49:11 -07004775 hrtimer_init(&data->timer, CLOCK_MONOTONIC, data->mode);
4776 return 0;
4777}
4778
Jens Axboefc4df992019-12-10 14:38:45 -07004779static int io_timeout(struct io_kiocb *req)
Jens Axboead8a48a2019-11-15 08:49:11 -07004780{
Jens Axboead8a48a2019-11-15 08:49:11 -07004781 struct io_ring_ctx *ctx = req->ctx;
4782 struct io_timeout_data *data;
4783 struct list_head *entry;
4784 unsigned span = 0;
Pavel Begunkovb55ce732020-04-15 00:39:49 +03004785 u32 count = req->timeout.count;
Pavel Begunkov22cad152020-04-15 00:39:48 +03004786 u32 seq = req->sequence;
Jens Axboead8a48a2019-11-15 08:49:11 -07004787
Jens Axboe2d283902019-12-04 11:08:05 -07004788 data = &req->io->timeout;
Jens Axboe93bd25b2019-11-11 23:34:31 -07004789
Jens Axboe5262f562019-09-17 12:26:57 -06004790 /*
4791 * sqe->off holds how many events that need to occur for this
Jens Axboe93bd25b2019-11-11 23:34:31 -07004792 * timeout event to be satisfied. If it isn't set, then this is
4793 * a pure timeout request, sequence isn't used.
Jens Axboe5262f562019-09-17 12:26:57 -06004794 */
Jens Axboe93bd25b2019-11-11 23:34:31 -07004795 if (!count) {
4796 req->flags |= REQ_F_TIMEOUT_NOSEQ;
4797 spin_lock_irq(&ctx->completion_lock);
4798 entry = ctx->timeout_list.prev;
4799 goto add;
4800 }
Jens Axboe5262f562019-09-17 12:26:57 -06004801
Pavel Begunkov22cad152020-04-15 00:39:48 +03004802 req->sequence = seq + count;
Jens Axboe5262f562019-09-17 12:26:57 -06004803
4804 /*
4805 * Insertion sort, ensuring the first entry in the list is always
4806 * the one we need first.
4807 */
Jens Axboe5262f562019-09-17 12:26:57 -06004808 spin_lock_irq(&ctx->completion_lock);
4809 list_for_each_prev(entry, &ctx->timeout_list) {
4810 struct io_kiocb *nxt = list_entry(entry, struct io_kiocb, list);
Pavel Begunkov22cad152020-04-15 00:39:48 +03004811 unsigned nxt_seq;
yangerkun5da0fb12019-10-15 21:59:29 +08004812 long long tmp, tmp_nxt;
Pavel Begunkovb55ce732020-04-15 00:39:49 +03004813 u32 nxt_offset = nxt->timeout.count;
Jens Axboe5262f562019-09-17 12:26:57 -06004814
Jens Axboe93bd25b2019-11-11 23:34:31 -07004815 if (nxt->flags & REQ_F_TIMEOUT_NOSEQ)
4816 continue;
4817
yangerkun5da0fb12019-10-15 21:59:29 +08004818 /*
Pavel Begunkov22cad152020-04-15 00:39:48 +03004819 * Since seq + count can overflow, use type long
yangerkun5da0fb12019-10-15 21:59:29 +08004820 * long to store it.
4821 */
Pavel Begunkov22cad152020-04-15 00:39:48 +03004822 tmp = (long long)seq + count;
4823 nxt_seq = nxt->sequence - nxt_offset;
4824 tmp_nxt = (long long)nxt_seq + nxt_offset;
yangerkun5da0fb12019-10-15 21:59:29 +08004825
4826 /*
4827 * cached_sq_head may overflow, and it will never overflow twice
4828 * once there is some timeout req still be valid.
4829 */
Pavel Begunkov22cad152020-04-15 00:39:48 +03004830 if (seq < nxt_seq)
yangerkun8b07a652019-10-17 12:12:35 +08004831 tmp += UINT_MAX;
yangerkun5da0fb12019-10-15 21:59:29 +08004832
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004833 if (tmp > tmp_nxt)
Jens Axboe5262f562019-09-17 12:26:57 -06004834 break;
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004835
4836 /*
4837 * Sequence of reqs after the insert one and itself should
4838 * be adjusted because each timeout req consumes a slot.
4839 */
4840 span++;
4841 nxt->sequence++;
Jens Axboe5262f562019-09-17 12:26:57 -06004842 }
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004843 req->sequence -= span;
Jens Axboe93bd25b2019-11-11 23:34:31 -07004844add:
Jens Axboe5262f562019-09-17 12:26:57 -06004845 list_add(&req->list, entry);
Jens Axboead8a48a2019-11-15 08:49:11 -07004846 data->timer.function = io_timeout_fn;
4847 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts), data->mode);
Jens Axboe842f9612019-10-29 12:34:10 -06004848 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06004849 return 0;
4850}
4851
Jens Axboe62755e32019-10-28 21:49:21 -06004852static bool io_cancel_cb(struct io_wq_work *work, void *data)
Jens Axboede0617e2019-04-06 21:51:27 -06004853{
Jens Axboe62755e32019-10-28 21:49:21 -06004854 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboede0617e2019-04-06 21:51:27 -06004855
Jens Axboe62755e32019-10-28 21:49:21 -06004856 return req->user_data == (unsigned long) data;
4857}
4858
Jens Axboee977d6d2019-11-05 12:39:45 -07004859static int io_async_cancel_one(struct io_ring_ctx *ctx, void *sqe_addr)
Jens Axboe62755e32019-10-28 21:49:21 -06004860{
Jens Axboe62755e32019-10-28 21:49:21 -06004861 enum io_wq_cancel cancel_ret;
Jens Axboe62755e32019-10-28 21:49:21 -06004862 int ret = 0;
4863
Jens Axboe62755e32019-10-28 21:49:21 -06004864 cancel_ret = io_wq_cancel_cb(ctx->io_wq, io_cancel_cb, sqe_addr);
4865 switch (cancel_ret) {
4866 case IO_WQ_CANCEL_OK:
4867 ret = 0;
4868 break;
4869 case IO_WQ_CANCEL_RUNNING:
4870 ret = -EALREADY;
4871 break;
4872 case IO_WQ_CANCEL_NOTFOUND:
4873 ret = -ENOENT;
4874 break;
4875 }
4876
Jens Axboee977d6d2019-11-05 12:39:45 -07004877 return ret;
4878}
4879
Jens Axboe47f46762019-11-09 17:43:02 -07004880static void io_async_find_and_cancel(struct io_ring_ctx *ctx,
4881 struct io_kiocb *req, __u64 sqe_addr,
Pavel Begunkov014db002020-03-03 21:33:12 +03004882 int success_ret)
Jens Axboe47f46762019-11-09 17:43:02 -07004883{
4884 unsigned long flags;
4885 int ret;
4886
4887 ret = io_async_cancel_one(ctx, (void *) (unsigned long) sqe_addr);
4888 if (ret != -ENOENT) {
4889 spin_lock_irqsave(&ctx->completion_lock, flags);
4890 goto done;
4891 }
4892
4893 spin_lock_irqsave(&ctx->completion_lock, flags);
4894 ret = io_timeout_cancel(ctx, sqe_addr);
4895 if (ret != -ENOENT)
4896 goto done;
4897 ret = io_poll_cancel(ctx, sqe_addr);
4898done:
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004899 if (!ret)
4900 ret = success_ret;
Jens Axboe47f46762019-11-09 17:43:02 -07004901 io_cqring_fill_event(req, ret);
4902 io_commit_cqring(ctx);
4903 spin_unlock_irqrestore(&ctx->completion_lock, flags);
4904 io_cqring_ev_posted(ctx);
4905
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004906 if (ret < 0)
4907 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03004908 io_put_req(req);
Jens Axboe47f46762019-11-09 17:43:02 -07004909}
4910
Jens Axboe3529d8c2019-12-19 18:24:38 -07004911static int io_async_cancel_prep(struct io_kiocb *req,
4912 const struct io_uring_sqe *sqe)
Jens Axboee977d6d2019-11-05 12:39:45 -07004913{
Jens Axboefbf23842019-12-17 18:45:56 -07004914 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboee977d6d2019-11-05 12:39:45 -07004915 return -EINVAL;
4916 if (sqe->flags || sqe->ioprio || sqe->off || sqe->len ||
4917 sqe->cancel_flags)
4918 return -EINVAL;
4919
Jens Axboefbf23842019-12-17 18:45:56 -07004920 req->cancel.addr = READ_ONCE(sqe->addr);
4921 return 0;
4922}
4923
Pavel Begunkov014db002020-03-03 21:33:12 +03004924static int io_async_cancel(struct io_kiocb *req)
Jens Axboefbf23842019-12-17 18:45:56 -07004925{
4926 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefbf23842019-12-17 18:45:56 -07004927
Pavel Begunkov014db002020-03-03 21:33:12 +03004928 io_async_find_and_cancel(ctx, req, req->cancel.addr, 0);
Jens Axboe62755e32019-10-28 21:49:21 -06004929 return 0;
4930}
4931
Jens Axboe05f3fb32019-12-09 11:22:50 -07004932static int io_files_update_prep(struct io_kiocb *req,
4933 const struct io_uring_sqe *sqe)
4934{
4935 if (sqe->flags || sqe->ioprio || sqe->rw_flags)
4936 return -EINVAL;
4937
4938 req->files_update.offset = READ_ONCE(sqe->off);
4939 req->files_update.nr_args = READ_ONCE(sqe->len);
4940 if (!req->files_update.nr_args)
4941 return -EINVAL;
4942 req->files_update.arg = READ_ONCE(sqe->addr);
4943 return 0;
4944}
4945
4946static int io_files_update(struct io_kiocb *req, bool force_nonblock)
4947{
4948 struct io_ring_ctx *ctx = req->ctx;
4949 struct io_uring_files_update up;
4950 int ret;
4951
Jens Axboef86cd202020-01-29 13:46:44 -07004952 if (force_nonblock)
Jens Axboe05f3fb32019-12-09 11:22:50 -07004953 return -EAGAIN;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004954
4955 up.offset = req->files_update.offset;
4956 up.fds = req->files_update.arg;
4957
4958 mutex_lock(&ctx->uring_lock);
4959 ret = __io_sqe_files_update(ctx, &up, req->files_update.nr_args);
4960 mutex_unlock(&ctx->uring_lock);
4961
4962 if (ret < 0)
4963 req_set_fail_links(req);
4964 io_cqring_add_event(req, ret);
4965 io_put_req(req);
4966 return 0;
4967}
4968
Jens Axboe3529d8c2019-12-19 18:24:38 -07004969static int io_req_defer_prep(struct io_kiocb *req,
4970 const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07004971{
Jens Axboee7815732019-12-17 19:45:06 -07004972 ssize_t ret = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07004973
Pavel Begunkovf1d96a82020-03-13 22:29:14 +03004974 if (!sqe)
4975 return 0;
4976
Jens Axboef86cd202020-01-29 13:46:44 -07004977 if (io_op_defs[req->opcode].file_table) {
4978 ret = io_grab_files(req);
4979 if (unlikely(ret))
4980 return ret;
4981 }
4982
Jens Axboecccf0ee2020-01-27 16:34:48 -07004983 io_req_work_grab_env(req, &io_op_defs[req->opcode]);
4984
Jens Axboed625c6e2019-12-17 19:53:05 -07004985 switch (req->opcode) {
Jens Axboee7815732019-12-17 19:45:06 -07004986 case IORING_OP_NOP:
4987 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004988 case IORING_OP_READV:
4989 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004990 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004991 ret = io_read_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07004992 break;
4993 case IORING_OP_WRITEV:
4994 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004995 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004996 ret = io_write_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07004997 break;
Jens Axboe0969e782019-12-17 18:40:57 -07004998 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004999 ret = io_poll_add_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07005000 break;
5001 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005002 ret = io_poll_remove_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07005003 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005004 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005005 ret = io_prep_fsync(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005006 break;
5007 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005008 ret = io_prep_sfr(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005009 break;
Jens Axboe03b12302019-12-02 18:50:25 -07005010 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005011 case IORING_OP_SEND:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005012 ret = io_sendmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07005013 break;
5014 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005015 case IORING_OP_RECV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005016 ret = io_recvmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07005017 break;
Jens Axboef499a022019-12-02 16:28:46 -07005018 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005019 ret = io_connect_prep(req, sqe);
Jens Axboef499a022019-12-02 16:28:46 -07005020 break;
Jens Axboe2d283902019-12-04 11:08:05 -07005021 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005022 ret = io_timeout_prep(req, sqe, false);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07005023 break;
Jens Axboeb29472e2019-12-17 18:50:29 -07005024 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005025 ret = io_timeout_remove_prep(req, sqe);
Jens Axboeb29472e2019-12-17 18:50:29 -07005026 break;
Jens Axboefbf23842019-12-17 18:45:56 -07005027 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005028 ret = io_async_cancel_prep(req, sqe);
Jens Axboefbf23842019-12-17 18:45:56 -07005029 break;
Jens Axboe2d283902019-12-04 11:08:05 -07005030 case IORING_OP_LINK_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005031 ret = io_timeout_prep(req, sqe, true);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07005032 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005033 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005034 ret = io_accept_prep(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07005035 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07005036 case IORING_OP_FALLOCATE:
5037 ret = io_fallocate_prep(req, sqe);
5038 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07005039 case IORING_OP_OPENAT:
5040 ret = io_openat_prep(req, sqe);
5041 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07005042 case IORING_OP_CLOSE:
5043 ret = io_close_prep(req, sqe);
5044 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005045 case IORING_OP_FILES_UPDATE:
5046 ret = io_files_update_prep(req, sqe);
5047 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07005048 case IORING_OP_STATX:
5049 ret = io_statx_prep(req, sqe);
5050 break;
Jens Axboe4840e412019-12-25 22:03:45 -07005051 case IORING_OP_FADVISE:
5052 ret = io_fadvise_prep(req, sqe);
5053 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07005054 case IORING_OP_MADVISE:
5055 ret = io_madvise_prep(req, sqe);
5056 break;
Jens Axboecebdb982020-01-08 17:59:24 -07005057 case IORING_OP_OPENAT2:
5058 ret = io_openat2_prep(req, sqe);
5059 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07005060 case IORING_OP_EPOLL_CTL:
5061 ret = io_epoll_ctl_prep(req, sqe);
5062 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005063 case IORING_OP_SPLICE:
5064 ret = io_splice_prep(req, sqe);
5065 break;
Jens Axboeddf0322d2020-02-23 16:41:33 -07005066 case IORING_OP_PROVIDE_BUFFERS:
5067 ret = io_provide_buffers_prep(req, sqe);
5068 break;
Jens Axboe067524e2020-03-02 16:32:28 -07005069 case IORING_OP_REMOVE_BUFFERS:
5070 ret = io_remove_buffers_prep(req, sqe);
5071 break;
Jens Axboef67676d2019-12-02 11:03:47 -07005072 default:
Jens Axboee7815732019-12-17 19:45:06 -07005073 printk_once(KERN_WARNING "io_uring: unhandled opcode %d\n",
5074 req->opcode);
5075 ret = -EINVAL;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07005076 break;
Jens Axboef67676d2019-12-02 11:03:47 -07005077 }
5078
Jens Axboeb7bb4f72019-12-15 22:13:43 -07005079 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07005080}
5081
Jens Axboe3529d8c2019-12-19 18:24:38 -07005082static int io_req_defer(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboede0617e2019-04-06 21:51:27 -06005083{
Jackie Liua197f662019-11-08 08:09:12 -07005084 struct io_ring_ctx *ctx = req->ctx;
Jens Axboef67676d2019-12-02 11:03:47 -07005085 int ret;
Jens Axboede0617e2019-04-06 21:51:27 -06005086
Bob Liu9d858b22019-11-13 18:06:25 +08005087 /* Still need defer if there is pending req in defer list. */
Pavel Begunkov4ee36312020-05-01 17:09:37 +03005088 if (!req_need_defer(req) && list_empty_careful(&ctx->defer_list))
Jens Axboede0617e2019-04-06 21:51:27 -06005089 return 0;
5090
Jens Axboe3529d8c2019-12-19 18:24:38 -07005091 if (!req->io && io_alloc_async_ctx(req))
Jens Axboede0617e2019-04-06 21:51:27 -06005092 return -EAGAIN;
5093
Jens Axboe3529d8c2019-12-19 18:24:38 -07005094 ret = io_req_defer_prep(req, sqe);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07005095 if (ret < 0)
Jens Axboe2d283902019-12-04 11:08:05 -07005096 return ret;
Jens Axboe2d283902019-12-04 11:08:05 -07005097
Jens Axboede0617e2019-04-06 21:51:27 -06005098 spin_lock_irq(&ctx->completion_lock);
Bob Liu9d858b22019-11-13 18:06:25 +08005099 if (!req_need_defer(req) && list_empty(&ctx->defer_list)) {
Jens Axboede0617e2019-04-06 21:51:27 -06005100 spin_unlock_irq(&ctx->completion_lock);
Jens Axboede0617e2019-04-06 21:51:27 -06005101 return 0;
5102 }
5103
Jens Axboe915967f2019-11-21 09:01:20 -07005104 trace_io_uring_defer(ctx, req, req->user_data);
Jens Axboede0617e2019-04-06 21:51:27 -06005105 list_add_tail(&req->list, &ctx->defer_list);
5106 spin_unlock_irq(&ctx->completion_lock);
5107 return -EIOCBQUEUED;
5108}
5109
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005110static void io_cleanup_req(struct io_kiocb *req)
5111{
5112 struct io_async_ctx *io = req->io;
5113
5114 switch (req->opcode) {
5115 case IORING_OP_READV:
5116 case IORING_OP_READ_FIXED:
5117 case IORING_OP_READ:
Jens Axboebcda7ba2020-02-23 16:42:51 -07005118 if (req->flags & REQ_F_BUFFER_SELECTED)
5119 kfree((void *)(unsigned long)req->rw.addr);
5120 /* fallthrough */
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005121 case IORING_OP_WRITEV:
5122 case IORING_OP_WRITE_FIXED:
5123 case IORING_OP_WRITE:
5124 if (io->rw.iov != io->rw.fast_iov)
5125 kfree(io->rw.iov);
5126 break;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005127 case IORING_OP_RECVMSG:
Jens Axboe52de1fe2020-02-27 10:15:42 -07005128 if (req->flags & REQ_F_BUFFER_SELECTED)
5129 kfree(req->sr_msg.kbuf);
5130 /* fallthrough */
5131 case IORING_OP_SENDMSG:
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005132 if (io->msg.iov != io->msg.fast_iov)
5133 kfree(io->msg.iov);
5134 break;
Jens Axboebcda7ba2020-02-23 16:42:51 -07005135 case IORING_OP_RECV:
5136 if (req->flags & REQ_F_BUFFER_SELECTED)
5137 kfree(req->sr_msg.kbuf);
5138 break;
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03005139 case IORING_OP_OPENAT:
5140 case IORING_OP_OPENAT2:
5141 case IORING_OP_STATX:
5142 putname(req->open.filename);
5143 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005144 case IORING_OP_SPLICE:
5145 io_put_file(req, req->splice.file_in,
5146 (req->splice.flags & SPLICE_F_FD_IN_FIXED));
5147 break;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005148 }
5149
5150 req->flags &= ~REQ_F_NEED_CLEANUP;
5151}
5152
Jens Axboe3529d8c2019-12-19 18:24:38 -07005153static int io_issue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Pavel Begunkov014db002020-03-03 21:33:12 +03005154 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005155{
Jackie Liua197f662019-11-08 08:09:12 -07005156 struct io_ring_ctx *ctx = req->ctx;
Jens Axboed625c6e2019-12-17 19:53:05 -07005157 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005158
Jens Axboed625c6e2019-12-17 19:53:05 -07005159 switch (req->opcode) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07005160 case IORING_OP_NOP:
Jens Axboe78e19bb2019-11-06 15:21:34 -07005161 ret = io_nop(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005162 break;
5163 case IORING_OP_READV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005164 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07005165 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005166 if (sqe) {
5167 ret = io_read_prep(req, sqe, force_nonblock);
5168 if (ret < 0)
5169 break;
5170 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005171 ret = io_read(req, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005172 break;
5173 case IORING_OP_WRITEV:
Jens Axboeedafcce2019-01-09 09:16:05 -07005174 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07005175 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005176 if (sqe) {
5177 ret = io_write_prep(req, sqe, force_nonblock);
5178 if (ret < 0)
5179 break;
5180 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005181 ret = io_write(req, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005182 break;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07005183 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005184 if (sqe) {
5185 ret = io_prep_fsync(req, sqe);
5186 if (ret < 0)
5187 break;
5188 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005189 ret = io_fsync(req, force_nonblock);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07005190 break;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005191 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005192 if (sqe) {
5193 ret = io_poll_add_prep(req, sqe);
5194 if (ret)
5195 break;
5196 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005197 ret = io_poll_add(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005198 break;
5199 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005200 if (sqe) {
5201 ret = io_poll_remove_prep(req, sqe);
5202 if (ret < 0)
5203 break;
5204 }
Jens Axboefc4df992019-12-10 14:38:45 -07005205 ret = io_poll_remove(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005206 break;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06005207 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005208 if (sqe) {
5209 ret = io_prep_sfr(req, sqe);
5210 if (ret < 0)
5211 break;
5212 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005213 ret = io_sync_file_range(req, force_nonblock);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06005214 break;
Jens Axboe0fa03c62019-04-19 13:34:07 -06005215 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005216 case IORING_OP_SEND:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005217 if (sqe) {
5218 ret = io_sendmsg_prep(req, sqe);
5219 if (ret < 0)
5220 break;
5221 }
Jens Axboefddafac2020-01-04 20:19:44 -07005222 if (req->opcode == IORING_OP_SENDMSG)
Pavel Begunkov014db002020-03-03 21:33:12 +03005223 ret = io_sendmsg(req, force_nonblock);
Jens Axboefddafac2020-01-04 20:19:44 -07005224 else
Pavel Begunkov014db002020-03-03 21:33:12 +03005225 ret = io_send(req, force_nonblock);
Jens Axboe0fa03c62019-04-19 13:34:07 -06005226 break;
Jens Axboeaa1fa282019-04-19 13:38:09 -06005227 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005228 case IORING_OP_RECV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005229 if (sqe) {
5230 ret = io_recvmsg_prep(req, sqe);
5231 if (ret)
5232 break;
5233 }
Jens Axboefddafac2020-01-04 20:19:44 -07005234 if (req->opcode == IORING_OP_RECVMSG)
Pavel Begunkov014db002020-03-03 21:33:12 +03005235 ret = io_recvmsg(req, force_nonblock);
Jens Axboefddafac2020-01-04 20:19:44 -07005236 else
Pavel Begunkov014db002020-03-03 21:33:12 +03005237 ret = io_recv(req, force_nonblock);
Jens Axboeaa1fa282019-04-19 13:38:09 -06005238 break;
Jens Axboe5262f562019-09-17 12:26:57 -06005239 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005240 if (sqe) {
5241 ret = io_timeout_prep(req, sqe, false);
5242 if (ret)
5243 break;
5244 }
Jens Axboefc4df992019-12-10 14:38:45 -07005245 ret = io_timeout(req);
Jens Axboe5262f562019-09-17 12:26:57 -06005246 break;
Jens Axboe11365042019-10-16 09:08:32 -06005247 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005248 if (sqe) {
5249 ret = io_timeout_remove_prep(req, sqe);
5250 if (ret)
5251 break;
5252 }
Jens Axboefc4df992019-12-10 14:38:45 -07005253 ret = io_timeout_remove(req);
Jens Axboe11365042019-10-16 09:08:32 -06005254 break;
Jens Axboe17f2fe32019-10-17 14:42:58 -06005255 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005256 if (sqe) {
5257 ret = io_accept_prep(req, sqe);
5258 if (ret)
5259 break;
5260 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005261 ret = io_accept(req, force_nonblock);
Jens Axboe17f2fe32019-10-17 14:42:58 -06005262 break;
Jens Axboef8e85cf2019-11-23 14:24:24 -07005263 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005264 if (sqe) {
5265 ret = io_connect_prep(req, sqe);
5266 if (ret)
5267 break;
5268 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005269 ret = io_connect(req, force_nonblock);
Jens Axboef8e85cf2019-11-23 14:24:24 -07005270 break;
Jens Axboe62755e32019-10-28 21:49:21 -06005271 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005272 if (sqe) {
5273 ret = io_async_cancel_prep(req, sqe);
5274 if (ret)
5275 break;
5276 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005277 ret = io_async_cancel(req);
Jens Axboe62755e32019-10-28 21:49:21 -06005278 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07005279 case IORING_OP_FALLOCATE:
5280 if (sqe) {
5281 ret = io_fallocate_prep(req, sqe);
5282 if (ret)
5283 break;
5284 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005285 ret = io_fallocate(req, force_nonblock);
Jens Axboed63d1b52019-12-10 10:38:56 -07005286 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07005287 case IORING_OP_OPENAT:
5288 if (sqe) {
5289 ret = io_openat_prep(req, sqe);
5290 if (ret)
5291 break;
5292 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005293 ret = io_openat(req, force_nonblock);
Jens Axboe15b71ab2019-12-11 11:20:36 -07005294 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07005295 case IORING_OP_CLOSE:
5296 if (sqe) {
5297 ret = io_close_prep(req, sqe);
5298 if (ret)
5299 break;
5300 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005301 ret = io_close(req, force_nonblock);
Jens Axboeb5dba592019-12-11 14:02:38 -07005302 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005303 case IORING_OP_FILES_UPDATE:
5304 if (sqe) {
5305 ret = io_files_update_prep(req, sqe);
5306 if (ret)
5307 break;
5308 }
5309 ret = io_files_update(req, force_nonblock);
5310 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07005311 case IORING_OP_STATX:
5312 if (sqe) {
5313 ret = io_statx_prep(req, sqe);
5314 if (ret)
5315 break;
5316 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005317 ret = io_statx(req, force_nonblock);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07005318 break;
Jens Axboe4840e412019-12-25 22:03:45 -07005319 case IORING_OP_FADVISE:
5320 if (sqe) {
5321 ret = io_fadvise_prep(req, sqe);
5322 if (ret)
5323 break;
5324 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005325 ret = io_fadvise(req, force_nonblock);
Jens Axboe4840e412019-12-25 22:03:45 -07005326 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07005327 case IORING_OP_MADVISE:
5328 if (sqe) {
5329 ret = io_madvise_prep(req, sqe);
5330 if (ret)
5331 break;
5332 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005333 ret = io_madvise(req, force_nonblock);
Jens Axboec1ca7572019-12-25 22:18:28 -07005334 break;
Jens Axboecebdb982020-01-08 17:59:24 -07005335 case IORING_OP_OPENAT2:
5336 if (sqe) {
5337 ret = io_openat2_prep(req, sqe);
5338 if (ret)
5339 break;
5340 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005341 ret = io_openat2(req, force_nonblock);
Jens Axboecebdb982020-01-08 17:59:24 -07005342 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07005343 case IORING_OP_EPOLL_CTL:
5344 if (sqe) {
5345 ret = io_epoll_ctl_prep(req, sqe);
5346 if (ret)
5347 break;
5348 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005349 ret = io_epoll_ctl(req, force_nonblock);
Jens Axboe3e4827b2020-01-08 15:18:09 -07005350 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005351 case IORING_OP_SPLICE:
5352 if (sqe) {
5353 ret = io_splice_prep(req, sqe);
5354 if (ret < 0)
5355 break;
5356 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005357 ret = io_splice(req, force_nonblock);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005358 break;
Jens Axboeddf0322d2020-02-23 16:41:33 -07005359 case IORING_OP_PROVIDE_BUFFERS:
5360 if (sqe) {
5361 ret = io_provide_buffers_prep(req, sqe);
5362 if (ret)
5363 break;
5364 }
5365 ret = io_provide_buffers(req, force_nonblock);
5366 break;
Jens Axboe067524e2020-03-02 16:32:28 -07005367 case IORING_OP_REMOVE_BUFFERS:
5368 if (sqe) {
5369 ret = io_remove_buffers_prep(req, sqe);
5370 if (ret)
5371 break;
5372 }
5373 ret = io_remove_buffers(req, force_nonblock);
Jens Axboe31b51512019-01-18 22:56:34 -07005374 break;
5375 default:
5376 ret = -EINVAL;
Jens Axboeedafcce2019-01-09 09:16:05 -07005377 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005378 }
5379
Jens Axboe31b51512019-01-18 22:56:34 -07005380 if (ret)
5381 return ret;
5382
5383 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboe11ba8202020-01-15 21:51:17 -07005384 const bool in_async = io_wq_current_is_worker();
5385
Jens Axboe9e645e112019-05-10 16:07:28 -06005386 if (req->result == -EAGAIN)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005387 return -EAGAIN;
5388
Jens Axboe11ba8202020-01-15 21:51:17 -07005389 /* workqueue context doesn't hold uring_lock, grab it now */
5390 if (in_async)
5391 mutex_lock(&ctx->uring_lock);
5392
Jens Axboe2b188cc2019-01-07 10:46:33 -07005393 io_iopoll_req_issued(req);
Jens Axboe11ba8202020-01-15 21:51:17 -07005394
5395 if (in_async)
5396 mutex_unlock(&ctx->uring_lock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005397 }
5398
5399 return 0;
5400}
5401
Jens Axboe561fb042019-10-24 07:25:42 -06005402static void io_wq_submit_work(struct io_wq_work **workptr)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005403{
Jens Axboe561fb042019-10-24 07:25:42 -06005404 struct io_wq_work *work = *workptr;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005405 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboe561fb042019-10-24 07:25:42 -06005406 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005407
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07005408 /* if NO_CANCEL is set, we must still run the work */
5409 if ((work->flags & (IO_WQ_WORK_CANCEL|IO_WQ_WORK_NO_CANCEL)) ==
5410 IO_WQ_WORK_CANCEL) {
Jens Axboe561fb042019-10-24 07:25:42 -06005411 ret = -ECANCELED;
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07005412 }
Jens Axboe31b51512019-01-18 22:56:34 -07005413
Jens Axboe561fb042019-10-24 07:25:42 -06005414 if (!ret) {
Jens Axboe561fb042019-10-24 07:25:42 -06005415 do {
Pavel Begunkov014db002020-03-03 21:33:12 +03005416 ret = io_issue_sqe(req, NULL, false);
Jens Axboe561fb042019-10-24 07:25:42 -06005417 /*
5418 * We can get EAGAIN for polled IO even though we're
5419 * forcing a sync submission from here, since we can't
5420 * wait for request slots on the block side.
5421 */
5422 if (ret != -EAGAIN)
5423 break;
5424 cond_resched();
5425 } while (1);
5426 }
Jens Axboe31b51512019-01-18 22:56:34 -07005427
Jens Axboe561fb042019-10-24 07:25:42 -06005428 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005429 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07005430 io_cqring_add_event(req, ret);
Jens Axboe817869d2019-04-30 14:44:05 -06005431 io_put_req(req);
Jens Axboeedafcce2019-01-09 09:16:05 -07005432 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07005433
Pavel Begunkove9fd9392020-03-04 16:14:12 +03005434 io_steal_work(req, workptr);
Jens Axboe31b51512019-01-18 22:56:34 -07005435}
Jens Axboe2b188cc2019-01-07 10:46:33 -07005436
Jens Axboe65e19f52019-10-26 07:20:21 -06005437static inline struct file *io_file_from_index(struct io_ring_ctx *ctx,
5438 int index)
Jens Axboe09bb8392019-03-13 12:39:28 -06005439{
Jens Axboe65e19f52019-10-26 07:20:21 -06005440 struct fixed_file_table *table;
5441
Jens Axboe05f3fb32019-12-09 11:22:50 -07005442 table = &ctx->file_data->table[index >> IORING_FILE_TABLE_SHIFT];
Xiaoming Ni84695082020-05-11 19:25:43 +08005443 return table->files[index & IORING_FILE_TABLE_MASK];
Jens Axboe65e19f52019-10-26 07:20:21 -06005444}
5445
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005446static int io_file_get(struct io_submit_state *state, struct io_kiocb *req,
5447 int fd, struct file **out_file, bool fixed)
5448{
5449 struct io_ring_ctx *ctx = req->ctx;
5450 struct file *file;
5451
5452 if (fixed) {
5453 if (unlikely(!ctx->file_data ||
5454 (unsigned) fd >= ctx->nr_user_files))
5455 return -EBADF;
5456 fd = array_index_nospec(fd, ctx->nr_user_files);
5457 file = io_file_from_index(ctx, fd);
5458 if (!file)
5459 return -EBADF;
Xiaoguang Wang05589552020-03-31 14:05:18 +08005460 req->fixed_file_refs = ctx->file_data->cur_refs;
5461 percpu_ref_get(req->fixed_file_refs);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005462 } else {
5463 trace_io_uring_file_get(ctx, fd);
5464 file = __io_file_get(state, fd);
5465 if (unlikely(!file))
5466 return -EBADF;
5467 }
5468
5469 *out_file = file;
5470 return 0;
5471}
5472
Jens Axboe3529d8c2019-12-19 18:24:38 -07005473static int io_req_set_file(struct io_submit_state *state, struct io_kiocb *req,
Jens Axboe63ff8222020-05-07 14:56:15 -06005474 int fd)
Jens Axboe09bb8392019-03-13 12:39:28 -06005475{
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005476 bool fixed;
Jens Axboe09bb8392019-03-13 12:39:28 -06005477
Jens Axboe63ff8222020-05-07 14:56:15 -06005478 fixed = (req->flags & REQ_F_FIXED_FILE) != 0;
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005479 if (unlikely(!fixed && req->needs_fixed_file))
5480 return -EBADF;
Jens Axboe09bb8392019-03-13 12:39:28 -06005481
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005482 return io_file_get(state, req, fd, &req->file, fixed);
Jens Axboe09bb8392019-03-13 12:39:28 -06005483}
5484
Jackie Liua197f662019-11-08 08:09:12 -07005485static int io_grab_files(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005486{
Jens Axboefcb323c2019-10-24 12:39:47 -06005487 int ret = -EBADF;
Jackie Liua197f662019-11-08 08:09:12 -07005488 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06005489
Jens Axboe5b0bbee2020-04-27 10:41:22 -06005490 if (req->work.files || (req->flags & REQ_F_NO_FILE_TABLE))
Jens Axboef86cd202020-01-29 13:46:44 -07005491 return 0;
Pavel Begunkovb14cca02020-01-17 04:45:59 +03005492 if (!ctx->ring_file)
Jens Axboeb5dba592019-12-11 14:02:38 -07005493 return -EBADF;
5494
Jens Axboefcb323c2019-10-24 12:39:47 -06005495 rcu_read_lock();
5496 spin_lock_irq(&ctx->inflight_lock);
5497 /*
5498 * We use the f_ops->flush() handler to ensure that we can flush
5499 * out work accessing these files if the fd is closed. Check if
5500 * the fd has changed since we started down this path, and disallow
5501 * this operation if it has.
5502 */
Pavel Begunkovb14cca02020-01-17 04:45:59 +03005503 if (fcheck(ctx->ring_fd) == ctx->ring_file) {
Jens Axboefcb323c2019-10-24 12:39:47 -06005504 list_add(&req->inflight_entry, &ctx->inflight_list);
5505 req->flags |= REQ_F_INFLIGHT;
5506 req->work.files = current->files;
5507 ret = 0;
5508 }
5509 spin_unlock_irq(&ctx->inflight_lock);
5510 rcu_read_unlock();
5511
5512 return ret;
5513}
5514
Jens Axboe2665abf2019-11-05 12:40:47 -07005515static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer)
5516{
Jens Axboead8a48a2019-11-15 08:49:11 -07005517 struct io_timeout_data *data = container_of(timer,
5518 struct io_timeout_data, timer);
5519 struct io_kiocb *req = data->req;
Jens Axboe2665abf2019-11-05 12:40:47 -07005520 struct io_ring_ctx *ctx = req->ctx;
5521 struct io_kiocb *prev = NULL;
5522 unsigned long flags;
Jens Axboe2665abf2019-11-05 12:40:47 -07005523
5524 spin_lock_irqsave(&ctx->completion_lock, flags);
5525
5526 /*
5527 * We don't expect the list to be empty, that will only happen if we
5528 * race with the completion of the linked work.
5529 */
Pavel Begunkov44932332019-12-05 16:16:35 +03005530 if (!list_empty(&req->link_list)) {
5531 prev = list_entry(req->link_list.prev, struct io_kiocb,
5532 link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07005533 if (refcount_inc_not_zero(&prev->refs)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03005534 list_del_init(&req->link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07005535 prev->flags &= ~REQ_F_LINK_TIMEOUT;
5536 } else
Jens Axboe76a46e02019-11-10 23:34:16 -07005537 prev = NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07005538 }
5539
5540 spin_unlock_irqrestore(&ctx->completion_lock, flags);
5541
5542 if (prev) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005543 req_set_fail_links(prev);
Pavel Begunkov014db002020-03-03 21:33:12 +03005544 io_async_find_and_cancel(ctx, req, prev->user_data, -ETIME);
Jens Axboe76a46e02019-11-10 23:34:16 -07005545 io_put_req(prev);
Jens Axboe47f46762019-11-09 17:43:02 -07005546 } else {
5547 io_cqring_add_event(req, -ETIME);
5548 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07005549 }
Jens Axboe2665abf2019-11-05 12:40:47 -07005550 return HRTIMER_NORESTART;
5551}
5552
Jens Axboead8a48a2019-11-15 08:49:11 -07005553static void io_queue_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07005554{
Jens Axboe76a46e02019-11-10 23:34:16 -07005555 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07005556
Jens Axboe76a46e02019-11-10 23:34:16 -07005557 /*
5558 * If the list is now empty, then our linked request finished before
5559 * we got a chance to setup the timer
5560 */
5561 spin_lock_irq(&ctx->completion_lock);
Pavel Begunkov44932332019-12-05 16:16:35 +03005562 if (!list_empty(&req->link_list)) {
Jens Axboe2d283902019-12-04 11:08:05 -07005563 struct io_timeout_data *data = &req->io->timeout;
Jens Axboe94ae5e72019-11-14 19:39:52 -07005564
Jens Axboead8a48a2019-11-15 08:49:11 -07005565 data->timer.function = io_link_timeout_fn;
5566 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts),
5567 data->mode);
Jens Axboe2665abf2019-11-05 12:40:47 -07005568 }
Jens Axboe76a46e02019-11-10 23:34:16 -07005569 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe2665abf2019-11-05 12:40:47 -07005570
Jens Axboe2665abf2019-11-05 12:40:47 -07005571 /* drop submission reference */
Jens Axboe76a46e02019-11-10 23:34:16 -07005572 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07005573}
5574
Jens Axboead8a48a2019-11-15 08:49:11 -07005575static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07005576{
5577 struct io_kiocb *nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005578
Pavel Begunkovdea3b492020-04-12 02:05:04 +03005579 if (!(req->flags & REQ_F_LINK_HEAD))
Jens Axboe2665abf2019-11-05 12:40:47 -07005580 return NULL;
Jens Axboed7718a92020-02-14 22:23:12 -07005581 /* for polled retry, if flag is set, we already went through here */
5582 if (req->flags & REQ_F_POLLED)
5583 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07005584
Pavel Begunkov44932332019-12-05 16:16:35 +03005585 nxt = list_first_entry_or_null(&req->link_list, struct io_kiocb,
5586 link_list);
Jens Axboed625c6e2019-12-17 19:53:05 -07005587 if (!nxt || nxt->opcode != IORING_OP_LINK_TIMEOUT)
Jens Axboe76a46e02019-11-10 23:34:16 -07005588 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07005589
Jens Axboe76a46e02019-11-10 23:34:16 -07005590 req->flags |= REQ_F_LINK_TIMEOUT;
Jens Axboe76a46e02019-11-10 23:34:16 -07005591 return nxt;
Jens Axboe2665abf2019-11-05 12:40:47 -07005592}
5593
Jens Axboe3529d8c2019-12-19 18:24:38 -07005594static void __io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005595{
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005596 struct io_kiocb *linked_timeout;
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005597 struct io_kiocb *nxt;
Jens Axboe193155c2020-02-22 23:22:19 -07005598 const struct cred *old_creds = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005599 int ret;
5600
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005601again:
5602 linked_timeout = io_prep_linked_timeout(req);
5603
Jens Axboe193155c2020-02-22 23:22:19 -07005604 if (req->work.creds && req->work.creds != current_cred()) {
5605 if (old_creds)
5606 revert_creds(old_creds);
5607 if (old_creds == req->work.creds)
5608 old_creds = NULL; /* restored original creds */
5609 else
5610 old_creds = override_creds(req->work.creds);
5611 }
5612
Pavel Begunkov014db002020-03-03 21:33:12 +03005613 ret = io_issue_sqe(req, sqe, true);
Jens Axboe491381ce2019-10-17 09:20:46 -06005614
5615 /*
5616 * We async punt it if the file wasn't marked NOWAIT, or if the file
5617 * doesn't support non-blocking read/write attempts
5618 */
5619 if (ret == -EAGAIN && (!(req->flags & REQ_F_NOWAIT) ||
5620 (req->flags & REQ_F_MUST_PUNT))) {
Jens Axboed7718a92020-02-14 22:23:12 -07005621 if (io_arm_poll_handler(req)) {
5622 if (linked_timeout)
5623 io_queue_linked_timeout(linked_timeout);
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005624 goto exit;
Jens Axboed7718a92020-02-14 22:23:12 -07005625 }
Pavel Begunkov86a761f2020-01-22 23:09:36 +03005626punt:
Jens Axboef86cd202020-01-29 13:46:44 -07005627 if (io_op_defs[req->opcode].file_table) {
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03005628 ret = io_grab_files(req);
5629 if (ret)
5630 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005631 }
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03005632
5633 /*
5634 * Queued up for async execution, worker will release
5635 * submit reference when the iocb is actually submitted.
5636 */
5637 io_queue_async_work(req);
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005638 goto exit;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005639 }
Jens Axboee65ef562019-03-12 10:16:44 -06005640
Jens Axboefcb323c2019-10-24 12:39:47 -06005641err:
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005642 nxt = NULL;
Jens Axboee65ef562019-03-12 10:16:44 -06005643 /* drop submission reference */
Jens Axboe2a44f462020-02-25 13:25:41 -07005644 io_put_req_find_next(req, &nxt);
Jens Axboee65ef562019-03-12 10:16:44 -06005645
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03005646 if (linked_timeout) {
Jens Axboe76a46e02019-11-10 23:34:16 -07005647 if (!ret)
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03005648 io_queue_linked_timeout(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07005649 else
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03005650 io_put_req(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07005651 }
5652
Jens Axboee65ef562019-03-12 10:16:44 -06005653 /* and drop final reference, if we failed */
Jens Axboe9e645e112019-05-10 16:07:28 -06005654 if (ret) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07005655 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005656 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06005657 io_put_req(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06005658 }
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005659 if (nxt) {
5660 req = nxt;
Pavel Begunkov86a761f2020-01-22 23:09:36 +03005661
5662 if (req->flags & REQ_F_FORCE_ASYNC)
5663 goto punt;
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005664 goto again;
5665 }
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005666exit:
Jens Axboe193155c2020-02-22 23:22:19 -07005667 if (old_creds)
5668 revert_creds(old_creds);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005669}
5670
Jens Axboe3529d8c2019-12-19 18:24:38 -07005671static void io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jackie Liu4fe2c962019-09-09 20:50:40 +08005672{
5673 int ret;
5674
Jens Axboe3529d8c2019-12-19 18:24:38 -07005675 ret = io_req_defer(req, sqe);
Jackie Liu4fe2c962019-09-09 20:50:40 +08005676 if (ret) {
5677 if (ret != -EIOCBQUEUED) {
Pavel Begunkov11185912020-01-22 23:09:35 +03005678fail_req:
Jens Axboe78e19bb2019-11-06 15:21:34 -07005679 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005680 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07005681 io_double_put_req(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08005682 }
Pavel Begunkov25508782019-12-30 21:24:47 +03005683 } else if (req->flags & REQ_F_FORCE_ASYNC) {
Pavel Begunkov11185912020-01-22 23:09:35 +03005684 ret = io_req_defer_prep(req, sqe);
5685 if (unlikely(ret < 0))
5686 goto fail_req;
Jens Axboece35a472019-12-17 08:04:44 -07005687 /*
5688 * Never try inline submit of IOSQE_ASYNC is set, go straight
5689 * to async execution.
5690 */
5691 req->work.flags |= IO_WQ_WORK_CONCURRENT;
5692 io_queue_async_work(req);
5693 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07005694 __io_queue_sqe(req, sqe);
Jens Axboece35a472019-12-17 08:04:44 -07005695 }
Jackie Liu4fe2c962019-09-09 20:50:40 +08005696}
5697
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005698static inline void io_queue_link_head(struct io_kiocb *req)
Jackie Liu4fe2c962019-09-09 20:50:40 +08005699{
Jens Axboe94ae5e72019-11-14 19:39:52 -07005700 if (unlikely(req->flags & REQ_F_FAIL_LINK)) {
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005701 io_cqring_add_event(req, -ECANCELED);
5702 io_double_put_req(req);
5703 } else
Jens Axboe3529d8c2019-12-19 18:24:38 -07005704 io_queue_sqe(req, NULL);
Jackie Liu4fe2c962019-09-09 20:50:40 +08005705}
5706
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03005707static int io_submit_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Xiaoguang Wang7d01bd72020-05-08 21:19:30 +08005708 struct io_kiocb **link)
Jens Axboe9e645e112019-05-10 16:07:28 -06005709{
Jackie Liua197f662019-11-08 08:09:12 -07005710 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005711 int ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06005712
Jens Axboe9e645e112019-05-10 16:07:28 -06005713 /*
5714 * If we already have a head request, queue this one for async
5715 * submittal once the head completes. If we don't have a head but
5716 * IOSQE_IO_LINK is set in the sqe, start a new head. This one will be
5717 * submitted sync once the chain is complete. If none of those
5718 * conditions are true (normal request), then just queue it.
5719 */
5720 if (*link) {
Pavel Begunkov9d763772019-12-17 02:22:07 +03005721 struct io_kiocb *head = *link;
Jens Axboe9e645e112019-05-10 16:07:28 -06005722
Pavel Begunkov8cdf2192020-01-25 00:40:24 +03005723 /*
5724 * Taking sequential execution of a link, draining both sides
5725 * of the link also fullfils IOSQE_IO_DRAIN semantics for all
5726 * requests in the link. So, it drains the head and the
5727 * next after the link request. The last one is done via
5728 * drain_next flag to persist the effect across calls.
5729 */
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005730 if (req->flags & REQ_F_IO_DRAIN) {
Pavel Begunkov711be032020-01-17 03:57:59 +03005731 head->flags |= REQ_F_IO_DRAIN;
5732 ctx->drain_next = 1;
5733 }
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03005734 if (io_alloc_async_ctx(req))
5735 return -EAGAIN;
Jens Axboe9e645e112019-05-10 16:07:28 -06005736
Jens Axboe3529d8c2019-12-19 18:24:38 -07005737 ret = io_req_defer_prep(req, sqe);
Jens Axboe2d283902019-12-04 11:08:05 -07005738 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005739 /* fail even hard links since we don't submit */
Pavel Begunkov9d763772019-12-17 02:22:07 +03005740 head->flags |= REQ_F_FAIL_LINK;
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03005741 return ret;
Jens Axboe2d283902019-12-04 11:08:05 -07005742 }
Pavel Begunkov9d763772019-12-17 02:22:07 +03005743 trace_io_uring_link(ctx, req, head);
5744 list_add_tail(&req->link_list, &head->link_list);
Jens Axboe9e645e112019-05-10 16:07:28 -06005745
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005746 /* last request of a link, enqueue the link */
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005747 if (!(req->flags & (REQ_F_LINK | REQ_F_HARDLINK))) {
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005748 io_queue_link_head(head);
5749 *link = NULL;
5750 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005751 } else {
Pavel Begunkov711be032020-01-17 03:57:59 +03005752 if (unlikely(ctx->drain_next)) {
5753 req->flags |= REQ_F_IO_DRAIN;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005754 ctx->drain_next = 0;
Pavel Begunkov711be032020-01-17 03:57:59 +03005755 }
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005756 if (req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) {
Pavel Begunkovdea3b492020-04-12 02:05:04 +03005757 req->flags |= REQ_F_LINK_HEAD;
Pavel Begunkov711be032020-01-17 03:57:59 +03005758 INIT_LIST_HEAD(&req->link_list);
Pavel Begunkovf1d96a82020-03-13 22:29:14 +03005759
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03005760 if (io_alloc_async_ctx(req))
5761 return -EAGAIN;
5762
Pavel Begunkov711be032020-01-17 03:57:59 +03005763 ret = io_req_defer_prep(req, sqe);
5764 if (ret)
5765 req->flags |= REQ_F_FAIL_LINK;
5766 *link = req;
5767 } else {
5768 io_queue_sqe(req, sqe);
5769 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005770 }
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03005771
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03005772 return 0;
Jens Axboe9e645e112019-05-10 16:07:28 -06005773}
5774
Jens Axboe9a56a232019-01-09 09:06:50 -07005775/*
5776 * Batched submission is done, ensure local IO is flushed out.
5777 */
5778static void io_submit_state_end(struct io_submit_state *state)
5779{
5780 blk_finish_plug(&state->plug);
Jens Axboe3d6770f2019-04-13 11:50:54 -06005781 io_file_put(state);
Jens Axboe2579f912019-01-09 09:10:43 -07005782 if (state->free_reqs)
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03005783 kmem_cache_free_bulk(req_cachep, state->free_reqs, state->reqs);
Jens Axboe9a56a232019-01-09 09:06:50 -07005784}
5785
5786/*
5787 * Start submission side cache.
5788 */
5789static void io_submit_state_start(struct io_submit_state *state,
Jackie Liu22efde52019-12-02 17:14:52 +08005790 unsigned int max_ios)
Jens Axboe9a56a232019-01-09 09:06:50 -07005791{
5792 blk_start_plug(&state->plug);
Jens Axboe2579f912019-01-09 09:10:43 -07005793 state->free_reqs = 0;
Jens Axboe9a56a232019-01-09 09:06:50 -07005794 state->file = NULL;
5795 state->ios_left = max_ios;
5796}
5797
Jens Axboe2b188cc2019-01-07 10:46:33 -07005798static void io_commit_sqring(struct io_ring_ctx *ctx)
5799{
Hristo Venev75b28af2019-08-26 17:23:46 +00005800 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005801
Pavel Begunkovcaf582c2019-12-30 21:24:46 +03005802 /*
5803 * Ensure any loads from the SQEs are done at this point,
5804 * since once we write the new head, the application could
5805 * write new data to them.
5806 */
5807 smp_store_release(&rings->sq.head, ctx->cached_sq_head);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005808}
5809
5810/*
Jens Axboe3529d8c2019-12-19 18:24:38 -07005811 * Fetch an sqe, if one is available. Note that sqe_ptr will point to memory
Jens Axboe2b188cc2019-01-07 10:46:33 -07005812 * that is mapped by userspace. This means that care needs to be taken to
5813 * ensure that reads are stable, as we cannot rely on userspace always
5814 * being a good citizen. If members of the sqe are validated and then later
5815 * used, it's important that those reads are done through READ_ONCE() to
5816 * prevent a re-load down the line.
5817 */
Pavel Begunkov709b3022020-04-08 08:58:43 +03005818static const struct io_uring_sqe *io_get_sqe(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005819{
Hristo Venev75b28af2019-08-26 17:23:46 +00005820 u32 *sq_array = ctx->sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005821 unsigned head;
5822
5823 /*
5824 * The cached sq head (or cq tail) serves two purposes:
5825 *
5826 * 1) allows us to batch the cost of updating the user visible
5827 * head updates.
5828 * 2) allows the kernel side to track the head on its own, even
5829 * though the application is the one updating it.
5830 */
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005831 head = READ_ONCE(sq_array[ctx->cached_sq_head & ctx->sq_mask]);
Pavel Begunkov709b3022020-04-08 08:58:43 +03005832 if (likely(head < ctx->sq_entries))
5833 return &ctx->sq_sqes[head];
Jens Axboe2b188cc2019-01-07 10:46:33 -07005834
5835 /* drop invalid entries */
Jens Axboe498ccd92019-10-25 10:04:25 -06005836 ctx->cached_sq_dropped++;
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005837 WRITE_ONCE(ctx->rings->sq_dropped, ctx->cached_sq_dropped);
Pavel Begunkov709b3022020-04-08 08:58:43 +03005838 return NULL;
5839}
5840
5841static inline void io_consume_sqe(struct io_ring_ctx *ctx)
5842{
5843 ctx->cached_sq_head++;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005844}
5845
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005846#define SQE_VALID_FLAGS (IOSQE_FIXED_FILE|IOSQE_IO_DRAIN|IOSQE_IO_LINK| \
5847 IOSQE_IO_HARDLINK | IOSQE_ASYNC | \
5848 IOSQE_BUFFER_SELECT)
5849
5850static int io_init_req(struct io_ring_ctx *ctx, struct io_kiocb *req,
5851 const struct io_uring_sqe *sqe,
5852 struct io_submit_state *state, bool async)
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03005853{
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005854 unsigned int sqe_flags;
Jens Axboe63ff8222020-05-07 14:56:15 -06005855 int id;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005856
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03005857 /*
5858 * All io need record the previous position, if LINK vs DARIN,
5859 * it can be used to mark the position of the first IO in the
5860 * link list.
5861 */
Pavel Begunkov31af27c2020-04-15 00:39:50 +03005862 req->sequence = ctx->cached_sq_head - ctx->cached_sq_dropped;
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03005863 req->opcode = READ_ONCE(sqe->opcode);
5864 req->user_data = READ_ONCE(sqe->user_data);
5865 req->io = NULL;
5866 req->file = NULL;
5867 req->ctx = ctx;
5868 req->flags = 0;
5869 /* one is dropped after submission, the other at completion */
5870 refcount_set(&req->refs, 2);
5871 req->task = NULL;
5872 req->result = 0;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005873 req->needs_fixed_file = async;
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03005874 INIT_IO_WORK(&req->work, io_wq_submit_work);
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005875
5876 if (unlikely(req->opcode >= IORING_OP_LAST))
5877 return -EINVAL;
5878
5879 if (io_op_defs[req->opcode].needs_mm && !current->mm) {
5880 if (unlikely(!mmget_not_zero(ctx->sqo_mm)))
5881 return -EFAULT;
5882 use_mm(ctx->sqo_mm);
5883 }
5884
5885 sqe_flags = READ_ONCE(sqe->flags);
5886 /* enforce forwards compatibility on users */
5887 if (unlikely(sqe_flags & ~SQE_VALID_FLAGS))
5888 return -EINVAL;
5889
5890 if ((sqe_flags & IOSQE_BUFFER_SELECT) &&
5891 !io_op_defs[req->opcode].buffer_select)
5892 return -EOPNOTSUPP;
5893
5894 id = READ_ONCE(sqe->personality);
5895 if (id) {
5896 req->work.creds = idr_find(&ctx->personality_idr, id);
5897 if (unlikely(!req->work.creds))
5898 return -EINVAL;
5899 get_cred(req->work.creds);
5900 }
5901
5902 /* same numerical values with corresponding REQ_F_*, safe to copy */
5903 req->flags |= sqe_flags & (IOSQE_IO_DRAIN | IOSQE_IO_HARDLINK |
5904 IOSQE_ASYNC | IOSQE_FIXED_FILE |
5905 IOSQE_BUFFER_SELECT | IOSQE_IO_LINK);
5906
Jens Axboe63ff8222020-05-07 14:56:15 -06005907 if (!io_op_defs[req->opcode].needs_file)
5908 return 0;
5909
5910 return io_req_set_file(state, req, READ_ONCE(sqe->fd));
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03005911}
5912
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005913static int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr,
Pavel Begunkovbf9c2f12020-04-12 02:05:02 +03005914 struct file *ring_file, int ring_fd, bool async)
Jens Axboe6c271ce2019-01-10 11:22:30 -07005915{
5916 struct io_submit_state state, *statep = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06005917 struct io_kiocb *link = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06005918 int i, submitted = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005919
Jens Axboec4a2ed72019-11-21 21:01:26 -07005920 /* if we have a backlog and couldn't flush it all, return BUSY */
Jens Axboead3eb2c2019-12-18 17:12:20 -07005921 if (test_bit(0, &ctx->sq_check_overflow)) {
5922 if (!list_empty(&ctx->cq_overflow_list) &&
5923 !io_cqring_overflow_flush(ctx, false))
5924 return -EBUSY;
5925 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07005926
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005927 /* make sure SQ entry isn't read before tail */
5928 nr = min3(nr, ctx->sq_entries, io_sqring_entries(ctx));
Pavel Begunkov9ef4f122019-12-30 21:24:44 +03005929
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03005930 if (!percpu_ref_tryget_many(&ctx->refs, nr))
5931 return -EAGAIN;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005932
5933 if (nr > IO_PLUG_THRESHOLD) {
Jackie Liu22efde52019-12-02 17:14:52 +08005934 io_submit_state_start(&state, nr);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005935 statep = &state;
5936 }
5937
Pavel Begunkovb14cca02020-01-17 04:45:59 +03005938 ctx->ring_fd = ring_fd;
5939 ctx->ring_file = ring_file;
5940
Jens Axboe6c271ce2019-01-10 11:22:30 -07005941 for (i = 0; i < nr; i++) {
Jens Axboe3529d8c2019-12-19 18:24:38 -07005942 const struct io_uring_sqe *sqe;
Pavel Begunkov196be952019-11-07 01:41:06 +03005943 struct io_kiocb *req;
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005944 int err;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005945
Pavel Begunkovb1e50e52020-04-08 08:58:44 +03005946 sqe = io_get_sqe(ctx);
5947 if (unlikely(!sqe)) {
5948 io_consume_sqe(ctx);
5949 break;
5950 }
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03005951 req = io_alloc_req(ctx, statep);
Pavel Begunkov196be952019-11-07 01:41:06 +03005952 if (unlikely(!req)) {
5953 if (!submitted)
5954 submitted = -EAGAIN;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005955 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06005956 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005957
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005958 err = io_init_req(ctx, req, sqe, statep, async);
Pavel Begunkov709b3022020-04-08 08:58:43 +03005959 io_consume_sqe(ctx);
Jens Axboed3656342019-12-18 09:50:26 -07005960 /* will complete beyond this point, count as submitted */
5961 submitted++;
5962
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005963 if (unlikely(err)) {
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005964fail_req:
5965 io_cqring_add_event(req, err);
Jens Axboed3656342019-12-18 09:50:26 -07005966 io_double_put_req(req);
5967 break;
5968 }
5969
Jens Axboe354420f2020-01-08 18:55:15 -07005970 trace_io_uring_submit_sqe(ctx, req->opcode, req->user_data,
5971 true, async);
Xiaoguang Wang7d01bd72020-05-08 21:19:30 +08005972 err = io_submit_sqe(req, sqe, &link);
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03005973 if (err)
5974 goto fail_req;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005975 }
5976
Pavel Begunkov9466f432020-01-25 22:34:01 +03005977 if (unlikely(submitted != nr)) {
5978 int ref_used = (submitted == -EAGAIN) ? 0 : submitted;
5979
5980 percpu_ref_put_many(&ctx->refs, nr - ref_used);
5981 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005982 if (link)
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005983 io_queue_link_head(link);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005984 if (statep)
5985 io_submit_state_end(&state);
5986
Pavel Begunkovae9428c2019-11-06 00:22:14 +03005987 /* Commit SQ ring head once we've consumed and submitted all SQEs */
5988 io_commit_sqring(ctx);
5989
Jens Axboe6c271ce2019-01-10 11:22:30 -07005990 return submitted;
5991}
5992
Pavel Begunkovbf9c2f12020-04-12 02:05:02 +03005993static inline void io_sq_thread_drop_mm(struct io_ring_ctx *ctx)
5994{
5995 struct mm_struct *mm = current->mm;
5996
5997 if (mm) {
5998 unuse_mm(mm);
5999 mmput(mm);
6000 }
6001}
6002
Jens Axboe6c271ce2019-01-10 11:22:30 -07006003static int io_sq_thread(void *data)
6004{
Jens Axboe6c271ce2019-01-10 11:22:30 -07006005 struct io_ring_ctx *ctx = data;
Jens Axboe181e4482019-11-25 08:52:30 -07006006 const struct cred *old_cred;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006007 mm_segment_t old_fs;
6008 DEFINE_WAIT(wait);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006009 unsigned long timeout;
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006010 int ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006011
Jens Axboe0f158b42020-05-14 17:18:39 -06006012 complete(&ctx->sq_thread_comp);
Jackie Liua4c0b3d2019-07-08 13:41:12 +08006013
Jens Axboe6c271ce2019-01-10 11:22:30 -07006014 old_fs = get_fs();
6015 set_fs(USER_DS);
Jens Axboe181e4482019-11-25 08:52:30 -07006016 old_cred = override_creds(ctx->creds);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006017
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006018 timeout = jiffies + ctx->sq_thread_idle;
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02006019 while (!kthread_should_park()) {
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03006020 unsigned int to_submit;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006021
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006022 if (!list_empty(&ctx->poll_list)) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07006023 unsigned nr_events = 0;
6024
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006025 mutex_lock(&ctx->uring_lock);
6026 if (!list_empty(&ctx->poll_list))
6027 io_iopoll_getevents(ctx, &nr_events, 0);
6028 else
Jens Axboe6c271ce2019-01-10 11:22:30 -07006029 timeout = jiffies + ctx->sq_thread_idle;
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006030 mutex_unlock(&ctx->uring_lock);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006031 }
6032
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03006033 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07006034
6035 /*
6036 * If submit got -EBUSY, flag us as needing the application
6037 * to enter the kernel to reap and flush events.
6038 */
6039 if (!to_submit || ret == -EBUSY) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07006040 /*
Stefano Garzarella7143b5a2020-02-21 16:42:16 +01006041 * Drop cur_mm before scheduling, we can't hold it for
6042 * long periods (or over schedule()). Do this before
6043 * adding ourselves to the waitqueue, as the unuse/drop
6044 * may sleep.
6045 */
Pavel Begunkovbf9c2f12020-04-12 02:05:02 +03006046 io_sq_thread_drop_mm(ctx);
Stefano Garzarella7143b5a2020-02-21 16:42:16 +01006047
6048 /*
Jens Axboe6c271ce2019-01-10 11:22:30 -07006049 * We're polling. If we're within the defined idle
6050 * period, then let us spin without work before going
Jens Axboec1edbf52019-11-10 16:56:04 -07006051 * to sleep. The exception is if we got EBUSY doing
6052 * more IO, we should wait for the application to
6053 * reap events and wake us up.
Jens Axboe6c271ce2019-01-10 11:22:30 -07006054 */
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006055 if (!list_empty(&ctx->poll_list) ||
Jens Axboedf069d82020-02-04 16:48:34 -07006056 (!time_after(jiffies, timeout) && ret != -EBUSY &&
6057 !percpu_ref_is_dying(&ctx->refs))) {
Jens Axboeb41e9852020-02-17 09:52:41 -07006058 if (current->task_works)
6059 task_work_run();
Jens Axboe9831a902019-09-19 09:48:55 -06006060 cond_resched();
Jens Axboe6c271ce2019-01-10 11:22:30 -07006061 continue;
6062 }
6063
Jens Axboe6c271ce2019-01-10 11:22:30 -07006064 prepare_to_wait(&ctx->sqo_wait, &wait,
6065 TASK_INTERRUPTIBLE);
6066
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006067 /*
6068 * While doing polled IO, before going to sleep, we need
6069 * to check if there are new reqs added to poll_list, it
6070 * is because reqs may have been punted to io worker and
6071 * will be added to poll_list later, hence check the
6072 * poll_list again.
6073 */
6074 if ((ctx->flags & IORING_SETUP_IOPOLL) &&
6075 !list_empty_careful(&ctx->poll_list)) {
6076 finish_wait(&ctx->sqo_wait, &wait);
6077 continue;
6078 }
6079
Jens Axboe6c271ce2019-01-10 11:22:30 -07006080 /* Tell userspace we may need a wakeup call */
Hristo Venev75b28af2019-08-26 17:23:46 +00006081 ctx->rings->sq_flags |= IORING_SQ_NEED_WAKEUP;
Stefan Bühler0d7bae62019-04-19 11:57:45 +02006082 /* make sure to read SQ tail after writing flags */
6083 smp_mb();
Jens Axboe6c271ce2019-01-10 11:22:30 -07006084
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03006085 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07006086 if (!to_submit || ret == -EBUSY) {
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02006087 if (kthread_should_park()) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07006088 finish_wait(&ctx->sqo_wait, &wait);
6089 break;
6090 }
Jens Axboeb41e9852020-02-17 09:52:41 -07006091 if (current->task_works) {
6092 task_work_run();
Hillf Danton10bea962020-04-01 17:19:33 +08006093 finish_wait(&ctx->sqo_wait, &wait);
Jens Axboeb41e9852020-02-17 09:52:41 -07006094 continue;
6095 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07006096 if (signal_pending(current))
6097 flush_signals(current);
6098 schedule();
6099 finish_wait(&ctx->sqo_wait, &wait);
6100
Hristo Venev75b28af2019-08-26 17:23:46 +00006101 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006102 continue;
6103 }
6104 finish_wait(&ctx->sqo_wait, &wait);
6105
Hristo Venev75b28af2019-08-26 17:23:46 +00006106 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006107 }
6108
Jens Axboe8a4955f2019-12-09 14:52:35 -07006109 mutex_lock(&ctx->uring_lock);
Pavel Begunkovbf9c2f12020-04-12 02:05:02 +03006110 ret = io_submit_sqes(ctx, to_submit, NULL, -1, true);
Jens Axboe8a4955f2019-12-09 14:52:35 -07006111 mutex_unlock(&ctx->uring_lock);
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006112 timeout = jiffies + ctx->sq_thread_idle;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006113 }
6114
Jens Axboeb41e9852020-02-17 09:52:41 -07006115 if (current->task_works)
6116 task_work_run();
6117
Jens Axboe6c271ce2019-01-10 11:22:30 -07006118 set_fs(old_fs);
Pavel Begunkovbf9c2f12020-04-12 02:05:02 +03006119 io_sq_thread_drop_mm(ctx);
Jens Axboe181e4482019-11-25 08:52:30 -07006120 revert_creds(old_cred);
Jens Axboe06058632019-04-13 09:26:03 -06006121
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02006122 kthread_parkme();
Jens Axboe06058632019-04-13 09:26:03 -06006123
Jens Axboe6c271ce2019-01-10 11:22:30 -07006124 return 0;
6125}
6126
Jens Axboebda52162019-09-24 13:47:15 -06006127struct io_wait_queue {
6128 struct wait_queue_entry wq;
6129 struct io_ring_ctx *ctx;
6130 unsigned to_wait;
6131 unsigned nr_timeouts;
6132};
6133
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006134static inline bool io_should_wake(struct io_wait_queue *iowq, bool noflush)
Jens Axboebda52162019-09-24 13:47:15 -06006135{
6136 struct io_ring_ctx *ctx = iowq->ctx;
6137
6138 /*
Brian Gianforcarod195a662019-12-13 03:09:50 -08006139 * Wake up if we have enough events, or if a timeout occurred since we
Jens Axboebda52162019-09-24 13:47:15 -06006140 * started waiting. For timeouts, we always want to return to userspace,
6141 * regardless of event count.
6142 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006143 return io_cqring_events(ctx, noflush) >= iowq->to_wait ||
Jens Axboebda52162019-09-24 13:47:15 -06006144 atomic_read(&ctx->cq_timeouts) != iowq->nr_timeouts;
6145}
6146
6147static int io_wake_function(struct wait_queue_entry *curr, unsigned int mode,
6148 int wake_flags, void *key)
6149{
6150 struct io_wait_queue *iowq = container_of(curr, struct io_wait_queue,
6151 wq);
6152
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006153 /* use noflush == true, as we can't safely rely on locking context */
6154 if (!io_should_wake(iowq, true))
Jens Axboebda52162019-09-24 13:47:15 -06006155 return -1;
6156
6157 return autoremove_wake_function(curr, mode, wake_flags, key);
6158}
6159
Jens Axboe2b188cc2019-01-07 10:46:33 -07006160/*
6161 * Wait until events become available, if we don't already have some. The
6162 * application must reap them itself, as they reside on the shared cq ring.
6163 */
6164static int io_cqring_wait(struct io_ring_ctx *ctx, int min_events,
6165 const sigset_t __user *sig, size_t sigsz)
6166{
Jens Axboebda52162019-09-24 13:47:15 -06006167 struct io_wait_queue iowq = {
6168 .wq = {
6169 .private = current,
6170 .func = io_wake_function,
6171 .entry = LIST_HEAD_INIT(iowq.wq.entry),
6172 },
6173 .ctx = ctx,
6174 .to_wait = min_events,
6175 };
Hristo Venev75b28af2019-08-26 17:23:46 +00006176 struct io_rings *rings = ctx->rings;
Jackie Liue9ffa5c2019-10-29 11:16:42 +08006177 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006178
Jens Axboeb41e9852020-02-17 09:52:41 -07006179 do {
6180 if (io_cqring_events(ctx, false) >= min_events)
6181 return 0;
6182 if (!current->task_works)
6183 break;
6184 task_work_run();
6185 } while (1);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006186
6187 if (sig) {
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006188#ifdef CONFIG_COMPAT
6189 if (in_compat_syscall())
6190 ret = set_compat_user_sigmask((const compat_sigset_t __user *)sig,
Oleg Nesterovb7724342019-07-16 16:29:53 -07006191 sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006192 else
6193#endif
Oleg Nesterovb7724342019-07-16 16:29:53 -07006194 ret = set_user_sigmask(sig, sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006195
Jens Axboe2b188cc2019-01-07 10:46:33 -07006196 if (ret)
6197 return ret;
6198 }
6199
Jens Axboebda52162019-09-24 13:47:15 -06006200 iowq.nr_timeouts = atomic_read(&ctx->cq_timeouts);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02006201 trace_io_uring_cqring_wait(ctx, min_events);
Jens Axboebda52162019-09-24 13:47:15 -06006202 do {
6203 prepare_to_wait_exclusive(&ctx->wait, &iowq.wq,
6204 TASK_INTERRUPTIBLE);
Jens Axboeb41e9852020-02-17 09:52:41 -07006205 if (current->task_works)
6206 task_work_run();
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006207 if (io_should_wake(&iowq, false))
Jens Axboebda52162019-09-24 13:47:15 -06006208 break;
6209 schedule();
6210 if (signal_pending(current)) {
Jackie Liue9ffa5c2019-10-29 11:16:42 +08006211 ret = -EINTR;
Jens Axboebda52162019-09-24 13:47:15 -06006212 break;
6213 }
6214 } while (1);
6215 finish_wait(&ctx->wait, &iowq.wq);
6216
Jackie Liue9ffa5c2019-10-29 11:16:42 +08006217 restore_saved_sigmask_unless(ret == -EINTR);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006218
Hristo Venev75b28af2019-08-26 17:23:46 +00006219 return READ_ONCE(rings->cq.head) == READ_ONCE(rings->cq.tail) ? ret : 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006220}
6221
Jens Axboe6b063142019-01-10 22:13:58 -07006222static void __io_sqe_files_unregister(struct io_ring_ctx *ctx)
6223{
6224#if defined(CONFIG_UNIX)
6225 if (ctx->ring_sock) {
6226 struct sock *sock = ctx->ring_sock->sk;
6227 struct sk_buff *skb;
6228
6229 while ((skb = skb_dequeue(&sock->sk_receive_queue)) != NULL)
6230 kfree_skb(skb);
6231 }
6232#else
6233 int i;
6234
Jens Axboe65e19f52019-10-26 07:20:21 -06006235 for (i = 0; i < ctx->nr_user_files; i++) {
6236 struct file *file;
6237
6238 file = io_file_from_index(ctx, i);
6239 if (file)
6240 fput(file);
6241 }
Jens Axboe6b063142019-01-10 22:13:58 -07006242#endif
6243}
6244
Jens Axboe05f3fb32019-12-09 11:22:50 -07006245static void io_file_ref_kill(struct percpu_ref *ref)
6246{
6247 struct fixed_file_data *data;
6248
6249 data = container_of(ref, struct fixed_file_data, refs);
6250 complete(&data->done);
6251}
6252
Jens Axboe6b063142019-01-10 22:13:58 -07006253static int io_sqe_files_unregister(struct io_ring_ctx *ctx)
6254{
Jens Axboe05f3fb32019-12-09 11:22:50 -07006255 struct fixed_file_data *data = ctx->file_data;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006256 struct fixed_file_ref_node *ref_node = NULL;
Jens Axboe65e19f52019-10-26 07:20:21 -06006257 unsigned nr_tables, i;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006258 unsigned long flags;
Jens Axboe65e19f52019-10-26 07:20:21 -06006259
Jens Axboe05f3fb32019-12-09 11:22:50 -07006260 if (!data)
Jens Axboe6b063142019-01-10 22:13:58 -07006261 return -ENXIO;
6262
Xiaoguang Wang05589552020-03-31 14:05:18 +08006263 spin_lock_irqsave(&data->lock, flags);
6264 if (!list_empty(&data->ref_list))
6265 ref_node = list_first_entry(&data->ref_list,
6266 struct fixed_file_ref_node, node);
6267 spin_unlock_irqrestore(&data->lock, flags);
6268 if (ref_node)
6269 percpu_ref_kill(&ref_node->refs);
6270
6271 percpu_ref_kill(&data->refs);
6272
6273 /* wait for all refs nodes to complete */
Jens Axboe4a38aed22020-05-14 17:21:15 -06006274 flush_delayed_work(&ctx->file_put_work);
Jens Axboe2faf8522020-02-04 19:54:55 -07006275 wait_for_completion(&data->done);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006276
Jens Axboe6b063142019-01-10 22:13:58 -07006277 __io_sqe_files_unregister(ctx);
Jens Axboe65e19f52019-10-26 07:20:21 -06006278 nr_tables = DIV_ROUND_UP(ctx->nr_user_files, IORING_MAX_FILES_TABLE);
6279 for (i = 0; i < nr_tables; i++)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006280 kfree(data->table[i].files);
6281 kfree(data->table);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006282 percpu_ref_exit(&data->refs);
6283 kfree(data);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006284 ctx->file_data = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07006285 ctx->nr_user_files = 0;
6286 return 0;
6287}
6288
Jens Axboe6c271ce2019-01-10 11:22:30 -07006289static void io_sq_thread_stop(struct io_ring_ctx *ctx)
6290{
6291 if (ctx->sqo_thread) {
Jens Axboe0f158b42020-05-14 17:18:39 -06006292 wait_for_completion(&ctx->sq_thread_comp);
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02006293 /*
6294 * The park is a bit of a work-around, without it we get
6295 * warning spews on shutdown with SQPOLL set and affinity
6296 * set to a single CPU.
6297 */
Jens Axboe06058632019-04-13 09:26:03 -06006298 kthread_park(ctx->sqo_thread);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006299 kthread_stop(ctx->sqo_thread);
6300 ctx->sqo_thread = NULL;
6301 }
6302}
6303
Jens Axboe6b063142019-01-10 22:13:58 -07006304static void io_finish_async(struct io_ring_ctx *ctx)
6305{
Jens Axboe6c271ce2019-01-10 11:22:30 -07006306 io_sq_thread_stop(ctx);
6307
Jens Axboe561fb042019-10-24 07:25:42 -06006308 if (ctx->io_wq) {
6309 io_wq_destroy(ctx->io_wq);
6310 ctx->io_wq = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07006311 }
6312}
6313
6314#if defined(CONFIG_UNIX)
Jens Axboe6b063142019-01-10 22:13:58 -07006315/*
6316 * Ensure the UNIX gc is aware of our file set, so we are certain that
6317 * the io_uring can be safely unregistered on process exit, even if we have
6318 * loops in the file referencing.
6319 */
6320static int __io_sqe_files_scm(struct io_ring_ctx *ctx, int nr, int offset)
6321{
6322 struct sock *sk = ctx->ring_sock->sk;
6323 struct scm_fp_list *fpl;
6324 struct sk_buff *skb;
Jens Axboe08a45172019-10-03 08:11:03 -06006325 int i, nr_files;
Jens Axboe6b063142019-01-10 22:13:58 -07006326
Jens Axboe6b063142019-01-10 22:13:58 -07006327 fpl = kzalloc(sizeof(*fpl), GFP_KERNEL);
6328 if (!fpl)
6329 return -ENOMEM;
6330
6331 skb = alloc_skb(0, GFP_KERNEL);
6332 if (!skb) {
6333 kfree(fpl);
6334 return -ENOMEM;
6335 }
6336
6337 skb->sk = sk;
Jens Axboe6b063142019-01-10 22:13:58 -07006338
Jens Axboe08a45172019-10-03 08:11:03 -06006339 nr_files = 0;
Jens Axboe6b063142019-01-10 22:13:58 -07006340 fpl->user = get_uid(ctx->user);
6341 for (i = 0; i < nr; i++) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006342 struct file *file = io_file_from_index(ctx, i + offset);
6343
6344 if (!file)
Jens Axboe08a45172019-10-03 08:11:03 -06006345 continue;
Jens Axboe65e19f52019-10-26 07:20:21 -06006346 fpl->fp[nr_files] = get_file(file);
Jens Axboe08a45172019-10-03 08:11:03 -06006347 unix_inflight(fpl->user, fpl->fp[nr_files]);
6348 nr_files++;
Jens Axboe6b063142019-01-10 22:13:58 -07006349 }
6350
Jens Axboe08a45172019-10-03 08:11:03 -06006351 if (nr_files) {
6352 fpl->max = SCM_MAX_FD;
6353 fpl->count = nr_files;
6354 UNIXCB(skb).fp = fpl;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006355 skb->destructor = unix_destruct_scm;
Jens Axboe08a45172019-10-03 08:11:03 -06006356 refcount_add(skb->truesize, &sk->sk_wmem_alloc);
6357 skb_queue_head(&sk->sk_receive_queue, skb);
Jens Axboe6b063142019-01-10 22:13:58 -07006358
Jens Axboe08a45172019-10-03 08:11:03 -06006359 for (i = 0; i < nr_files; i++)
6360 fput(fpl->fp[i]);
6361 } else {
6362 kfree_skb(skb);
6363 kfree(fpl);
6364 }
Jens Axboe6b063142019-01-10 22:13:58 -07006365
6366 return 0;
6367}
6368
6369/*
6370 * If UNIX sockets are enabled, fd passing can cause a reference cycle which
6371 * causes regular reference counting to break down. We rely on the UNIX
6372 * garbage collection to take care of this problem for us.
6373 */
6374static int io_sqe_files_scm(struct io_ring_ctx *ctx)
6375{
6376 unsigned left, total;
6377 int ret = 0;
6378
6379 total = 0;
6380 left = ctx->nr_user_files;
6381 while (left) {
6382 unsigned this_files = min_t(unsigned, left, SCM_MAX_FD);
Jens Axboe6b063142019-01-10 22:13:58 -07006383
6384 ret = __io_sqe_files_scm(ctx, this_files, total);
6385 if (ret)
6386 break;
6387 left -= this_files;
6388 total += this_files;
6389 }
6390
6391 if (!ret)
6392 return 0;
6393
6394 while (total < ctx->nr_user_files) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006395 struct file *file = io_file_from_index(ctx, total);
6396
6397 if (file)
6398 fput(file);
Jens Axboe6b063142019-01-10 22:13:58 -07006399 total++;
6400 }
6401
6402 return ret;
6403}
6404#else
6405static int io_sqe_files_scm(struct io_ring_ctx *ctx)
6406{
6407 return 0;
6408}
6409#endif
6410
Jens Axboe65e19f52019-10-26 07:20:21 -06006411static int io_sqe_alloc_file_tables(struct io_ring_ctx *ctx, unsigned nr_tables,
6412 unsigned nr_files)
6413{
6414 int i;
6415
6416 for (i = 0; i < nr_tables; i++) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006417 struct fixed_file_table *table = &ctx->file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06006418 unsigned this_files;
6419
6420 this_files = min(nr_files, IORING_MAX_FILES_TABLE);
6421 table->files = kcalloc(this_files, sizeof(struct file *),
6422 GFP_KERNEL);
6423 if (!table->files)
6424 break;
6425 nr_files -= this_files;
6426 }
6427
6428 if (i == nr_tables)
6429 return 0;
6430
6431 for (i = 0; i < nr_tables; i++) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006432 struct fixed_file_table *table = &ctx->file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06006433 kfree(table->files);
6434 }
6435 return 1;
6436}
6437
Jens Axboe05f3fb32019-12-09 11:22:50 -07006438static void io_ring_file_put(struct io_ring_ctx *ctx, struct file *file)
Jens Axboec3a31e62019-10-03 13:59:56 -06006439{
6440#if defined(CONFIG_UNIX)
Jens Axboec3a31e62019-10-03 13:59:56 -06006441 struct sock *sock = ctx->ring_sock->sk;
6442 struct sk_buff_head list, *head = &sock->sk_receive_queue;
6443 struct sk_buff *skb;
6444 int i;
6445
6446 __skb_queue_head_init(&list);
6447
6448 /*
6449 * Find the skb that holds this file in its SCM_RIGHTS. When found,
6450 * remove this entry and rearrange the file array.
6451 */
6452 skb = skb_dequeue(head);
6453 while (skb) {
6454 struct scm_fp_list *fp;
6455
6456 fp = UNIXCB(skb).fp;
6457 for (i = 0; i < fp->count; i++) {
6458 int left;
6459
6460 if (fp->fp[i] != file)
6461 continue;
6462
6463 unix_notinflight(fp->user, fp->fp[i]);
6464 left = fp->count - 1 - i;
6465 if (left) {
6466 memmove(&fp->fp[i], &fp->fp[i + 1],
6467 left * sizeof(struct file *));
6468 }
6469 fp->count--;
6470 if (!fp->count) {
6471 kfree_skb(skb);
6472 skb = NULL;
6473 } else {
6474 __skb_queue_tail(&list, skb);
6475 }
6476 fput(file);
6477 file = NULL;
6478 break;
6479 }
6480
6481 if (!file)
6482 break;
6483
6484 __skb_queue_tail(&list, skb);
6485
6486 skb = skb_dequeue(head);
6487 }
6488
6489 if (skb_peek(&list)) {
6490 spin_lock_irq(&head->lock);
6491 while ((skb = __skb_dequeue(&list)) != NULL)
6492 __skb_queue_tail(head, skb);
6493 spin_unlock_irq(&head->lock);
6494 }
6495#else
Jens Axboe05f3fb32019-12-09 11:22:50 -07006496 fput(file);
Jens Axboec3a31e62019-10-03 13:59:56 -06006497#endif
6498}
6499
Jens Axboe05f3fb32019-12-09 11:22:50 -07006500struct io_file_put {
Xiaoguang Wang05589552020-03-31 14:05:18 +08006501 struct list_head list;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006502 struct file *file;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006503};
6504
Jens Axboe4a38aed22020-05-14 17:21:15 -06006505static void __io_file_put_work(struct fixed_file_ref_node *ref_node)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006506{
Jens Axboe4a38aed22020-05-14 17:21:15 -06006507 struct fixed_file_data *file_data = ref_node->file_data;
6508 struct io_ring_ctx *ctx = file_data->ctx;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006509 struct io_file_put *pfile, *tmp;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006510 unsigned long flags;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006511
Xiaoguang Wang05589552020-03-31 14:05:18 +08006512 list_for_each_entry_safe(pfile, tmp, &ref_node->file_list, list) {
6513 list_del_init(&pfile->list);
6514 io_ring_file_put(ctx, pfile->file);
6515 kfree(pfile);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006516 }
6517
Xiaoguang Wang05589552020-03-31 14:05:18 +08006518 spin_lock_irqsave(&file_data->lock, flags);
6519 list_del_init(&ref_node->node);
6520 spin_unlock_irqrestore(&file_data->lock, flags);
Jens Axboe2faf8522020-02-04 19:54:55 -07006521
Xiaoguang Wang05589552020-03-31 14:05:18 +08006522 percpu_ref_exit(&ref_node->refs);
6523 kfree(ref_node);
6524 percpu_ref_put(&file_data->refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006525}
6526
Jens Axboe4a38aed22020-05-14 17:21:15 -06006527static void io_file_put_work(struct work_struct *work)
6528{
6529 struct io_ring_ctx *ctx;
6530 struct llist_node *node;
6531
6532 ctx = container_of(work, struct io_ring_ctx, file_put_work.work);
6533 node = llist_del_all(&ctx->file_put_llist);
6534
6535 while (node) {
6536 struct fixed_file_ref_node *ref_node;
6537 struct llist_node *next = node->next;
6538
6539 ref_node = llist_entry(node, struct fixed_file_ref_node, llist);
6540 __io_file_put_work(ref_node);
6541 node = next;
6542 }
6543}
6544
Jens Axboe05f3fb32019-12-09 11:22:50 -07006545static void io_file_data_ref_zero(struct percpu_ref *ref)
6546{
Xiaoguang Wang05589552020-03-31 14:05:18 +08006547 struct fixed_file_ref_node *ref_node;
Jens Axboe4a38aed22020-05-14 17:21:15 -06006548 struct io_ring_ctx *ctx;
6549 bool first_add;
6550 int delay = HZ;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006551
Xiaoguang Wang05589552020-03-31 14:05:18 +08006552 ref_node = container_of(ref, struct fixed_file_ref_node, refs);
Jens Axboe4a38aed22020-05-14 17:21:15 -06006553 ctx = ref_node->file_data->ctx;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006554
Jens Axboe4a38aed22020-05-14 17:21:15 -06006555 if (percpu_ref_is_dying(&ctx->file_data->refs))
6556 delay = 0;
6557
6558 first_add = llist_add(&ref_node->llist, &ctx->file_put_llist);
6559 if (!delay)
6560 mod_delayed_work(system_wq, &ctx->file_put_work, 0);
6561 else if (first_add)
6562 queue_delayed_work(system_wq, &ctx->file_put_work, delay);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006563}
6564
6565static struct fixed_file_ref_node *alloc_fixed_file_ref_node(
6566 struct io_ring_ctx *ctx)
6567{
6568 struct fixed_file_ref_node *ref_node;
6569
6570 ref_node = kzalloc(sizeof(*ref_node), GFP_KERNEL);
6571 if (!ref_node)
6572 return ERR_PTR(-ENOMEM);
6573
6574 if (percpu_ref_init(&ref_node->refs, io_file_data_ref_zero,
6575 0, GFP_KERNEL)) {
6576 kfree(ref_node);
6577 return ERR_PTR(-ENOMEM);
6578 }
6579 INIT_LIST_HEAD(&ref_node->node);
6580 INIT_LIST_HEAD(&ref_node->file_list);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006581 ref_node->file_data = ctx->file_data;
6582 return ref_node;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006583}
6584
6585static void destroy_fixed_file_ref_node(struct fixed_file_ref_node *ref_node)
6586{
6587 percpu_ref_exit(&ref_node->refs);
6588 kfree(ref_node);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006589}
6590
6591static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
6592 unsigned nr_args)
6593{
6594 __s32 __user *fds = (__s32 __user *) arg;
6595 unsigned nr_tables;
6596 struct file *file;
6597 int fd, ret = 0;
6598 unsigned i;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006599 struct fixed_file_ref_node *ref_node;
6600 unsigned long flags;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006601
6602 if (ctx->file_data)
6603 return -EBUSY;
6604 if (!nr_args)
6605 return -EINVAL;
6606 if (nr_args > IORING_MAX_FIXED_FILES)
6607 return -EMFILE;
6608
6609 ctx->file_data = kzalloc(sizeof(*ctx->file_data), GFP_KERNEL);
6610 if (!ctx->file_data)
6611 return -ENOMEM;
6612 ctx->file_data->ctx = ctx;
6613 init_completion(&ctx->file_data->done);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006614 INIT_LIST_HEAD(&ctx->file_data->ref_list);
Xiaoguang Wangf7fe9342020-04-07 20:02:31 +08006615 spin_lock_init(&ctx->file_data->lock);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006616
6617 nr_tables = DIV_ROUND_UP(nr_args, IORING_MAX_FILES_TABLE);
6618 ctx->file_data->table = kcalloc(nr_tables,
6619 sizeof(struct fixed_file_table),
6620 GFP_KERNEL);
6621 if (!ctx->file_data->table) {
6622 kfree(ctx->file_data);
6623 ctx->file_data = NULL;
6624 return -ENOMEM;
6625 }
6626
Xiaoguang Wang05589552020-03-31 14:05:18 +08006627 if (percpu_ref_init(&ctx->file_data->refs, io_file_ref_kill,
Jens Axboe05f3fb32019-12-09 11:22:50 -07006628 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL)) {
6629 kfree(ctx->file_data->table);
6630 kfree(ctx->file_data);
6631 ctx->file_data = NULL;
6632 return -ENOMEM;
6633 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07006634
6635 if (io_sqe_alloc_file_tables(ctx, nr_tables, nr_args)) {
6636 percpu_ref_exit(&ctx->file_data->refs);
6637 kfree(ctx->file_data->table);
6638 kfree(ctx->file_data);
6639 ctx->file_data = NULL;
6640 return -ENOMEM;
6641 }
6642
6643 for (i = 0; i < nr_args; i++, ctx->nr_user_files++) {
6644 struct fixed_file_table *table;
6645 unsigned index;
6646
6647 ret = -EFAULT;
6648 if (copy_from_user(&fd, &fds[i], sizeof(fd)))
6649 break;
6650 /* allow sparse sets */
6651 if (fd == -1) {
6652 ret = 0;
6653 continue;
6654 }
6655
6656 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
6657 index = i & IORING_FILE_TABLE_MASK;
6658 file = fget(fd);
6659
6660 ret = -EBADF;
6661 if (!file)
6662 break;
6663
6664 /*
6665 * Don't allow io_uring instances to be registered. If UNIX
6666 * isn't enabled, then this causes a reference cycle and this
6667 * instance can never get freed. If UNIX is enabled we'll
6668 * handle it just fine, but there's still no point in allowing
6669 * a ring fd as it doesn't support regular read/write anyway.
6670 */
6671 if (file->f_op == &io_uring_fops) {
6672 fput(file);
6673 break;
6674 }
6675 ret = 0;
6676 table->files[index] = file;
6677 }
6678
6679 if (ret) {
6680 for (i = 0; i < ctx->nr_user_files; i++) {
6681 file = io_file_from_index(ctx, i);
6682 if (file)
6683 fput(file);
6684 }
6685 for (i = 0; i < nr_tables; i++)
6686 kfree(ctx->file_data->table[i].files);
6687
6688 kfree(ctx->file_data->table);
6689 kfree(ctx->file_data);
6690 ctx->file_data = NULL;
6691 ctx->nr_user_files = 0;
6692 return ret;
6693 }
6694
6695 ret = io_sqe_files_scm(ctx);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006696 if (ret) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006697 io_sqe_files_unregister(ctx);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006698 return ret;
6699 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07006700
Xiaoguang Wang05589552020-03-31 14:05:18 +08006701 ref_node = alloc_fixed_file_ref_node(ctx);
6702 if (IS_ERR(ref_node)) {
6703 io_sqe_files_unregister(ctx);
6704 return PTR_ERR(ref_node);
6705 }
6706
6707 ctx->file_data->cur_refs = &ref_node->refs;
6708 spin_lock_irqsave(&ctx->file_data->lock, flags);
6709 list_add(&ref_node->node, &ctx->file_data->ref_list);
6710 spin_unlock_irqrestore(&ctx->file_data->lock, flags);
6711 percpu_ref_get(&ctx->file_data->refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006712 return ret;
6713}
6714
Jens Axboec3a31e62019-10-03 13:59:56 -06006715static int io_sqe_file_register(struct io_ring_ctx *ctx, struct file *file,
6716 int index)
6717{
6718#if defined(CONFIG_UNIX)
6719 struct sock *sock = ctx->ring_sock->sk;
6720 struct sk_buff_head *head = &sock->sk_receive_queue;
6721 struct sk_buff *skb;
6722
6723 /*
6724 * See if we can merge this file into an existing skb SCM_RIGHTS
6725 * file set. If there's no room, fall back to allocating a new skb
6726 * and filling it in.
6727 */
6728 spin_lock_irq(&head->lock);
6729 skb = skb_peek(head);
6730 if (skb) {
6731 struct scm_fp_list *fpl = UNIXCB(skb).fp;
6732
6733 if (fpl->count < SCM_MAX_FD) {
6734 __skb_unlink(skb, head);
6735 spin_unlock_irq(&head->lock);
6736 fpl->fp[fpl->count] = get_file(file);
6737 unix_inflight(fpl->user, fpl->fp[fpl->count]);
6738 fpl->count++;
6739 spin_lock_irq(&head->lock);
6740 __skb_queue_head(head, skb);
6741 } else {
6742 skb = NULL;
6743 }
6744 }
6745 spin_unlock_irq(&head->lock);
6746
6747 if (skb) {
6748 fput(file);
6749 return 0;
6750 }
6751
6752 return __io_sqe_files_scm(ctx, 1, index);
6753#else
6754 return 0;
6755#endif
6756}
6757
Hillf Dantona5318d32020-03-23 17:47:15 +08006758static int io_queue_file_removal(struct fixed_file_data *data,
Xiaoguang Wang05589552020-03-31 14:05:18 +08006759 struct file *file)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006760{
Hillf Dantona5318d32020-03-23 17:47:15 +08006761 struct io_file_put *pfile;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006762 struct percpu_ref *refs = data->cur_refs;
6763 struct fixed_file_ref_node *ref_node;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006764
Jens Axboe05f3fb32019-12-09 11:22:50 -07006765 pfile = kzalloc(sizeof(*pfile), GFP_KERNEL);
Hillf Dantona5318d32020-03-23 17:47:15 +08006766 if (!pfile)
6767 return -ENOMEM;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006768
Xiaoguang Wang05589552020-03-31 14:05:18 +08006769 ref_node = container_of(refs, struct fixed_file_ref_node, refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006770 pfile->file = file;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006771 list_add(&pfile->list, &ref_node->file_list);
6772
Hillf Dantona5318d32020-03-23 17:47:15 +08006773 return 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006774}
6775
6776static int __io_sqe_files_update(struct io_ring_ctx *ctx,
6777 struct io_uring_files_update *up,
6778 unsigned nr_args)
6779{
6780 struct fixed_file_data *data = ctx->file_data;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006781 struct fixed_file_ref_node *ref_node;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006782 struct file *file;
Jens Axboec3a31e62019-10-03 13:59:56 -06006783 __s32 __user *fds;
6784 int fd, i, err;
6785 __u32 done;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006786 unsigned long flags;
6787 bool needs_switch = false;
Jens Axboec3a31e62019-10-03 13:59:56 -06006788
Jens Axboe05f3fb32019-12-09 11:22:50 -07006789 if (check_add_overflow(up->offset, nr_args, &done))
Jens Axboec3a31e62019-10-03 13:59:56 -06006790 return -EOVERFLOW;
6791 if (done > ctx->nr_user_files)
6792 return -EINVAL;
6793
Xiaoguang Wang05589552020-03-31 14:05:18 +08006794 ref_node = alloc_fixed_file_ref_node(ctx);
6795 if (IS_ERR(ref_node))
6796 return PTR_ERR(ref_node);
6797
Jens Axboec3a31e62019-10-03 13:59:56 -06006798 done = 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006799 fds = u64_to_user_ptr(up->fds);
Jens Axboec3a31e62019-10-03 13:59:56 -06006800 while (nr_args) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006801 struct fixed_file_table *table;
6802 unsigned index;
6803
Jens Axboec3a31e62019-10-03 13:59:56 -06006804 err = 0;
6805 if (copy_from_user(&fd, &fds[done], sizeof(fd))) {
6806 err = -EFAULT;
6807 break;
6808 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07006809 i = array_index_nospec(up->offset, ctx->nr_user_files);
6810 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
Jens Axboe65e19f52019-10-26 07:20:21 -06006811 index = i & IORING_FILE_TABLE_MASK;
6812 if (table->files[index]) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006813 file = io_file_from_index(ctx, index);
Hillf Dantona5318d32020-03-23 17:47:15 +08006814 err = io_queue_file_removal(data, file);
6815 if (err)
6816 break;
Jens Axboe65e19f52019-10-26 07:20:21 -06006817 table->files[index] = NULL;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006818 needs_switch = true;
Jens Axboec3a31e62019-10-03 13:59:56 -06006819 }
6820 if (fd != -1) {
Jens Axboec3a31e62019-10-03 13:59:56 -06006821 file = fget(fd);
6822 if (!file) {
6823 err = -EBADF;
6824 break;
6825 }
6826 /*
6827 * Don't allow io_uring instances to be registered. If
6828 * UNIX isn't enabled, then this causes a reference
6829 * cycle and this instance can never get freed. If UNIX
6830 * is enabled we'll handle it just fine, but there's
6831 * still no point in allowing a ring fd as it doesn't
6832 * support regular read/write anyway.
6833 */
6834 if (file->f_op == &io_uring_fops) {
6835 fput(file);
6836 err = -EBADF;
6837 break;
6838 }
Jens Axboe65e19f52019-10-26 07:20:21 -06006839 table->files[index] = file;
Jens Axboec3a31e62019-10-03 13:59:56 -06006840 err = io_sqe_file_register(ctx, file, i);
6841 if (err)
6842 break;
6843 }
6844 nr_args--;
6845 done++;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006846 up->offset++;
6847 }
6848
Xiaoguang Wang05589552020-03-31 14:05:18 +08006849 if (needs_switch) {
6850 percpu_ref_kill(data->cur_refs);
6851 spin_lock_irqsave(&data->lock, flags);
6852 list_add(&ref_node->node, &data->ref_list);
6853 data->cur_refs = &ref_node->refs;
6854 spin_unlock_irqrestore(&data->lock, flags);
6855 percpu_ref_get(&ctx->file_data->refs);
6856 } else
6857 destroy_fixed_file_ref_node(ref_node);
Jens Axboec3a31e62019-10-03 13:59:56 -06006858
6859 return done ? done : err;
6860}
Xiaoguang Wang05589552020-03-31 14:05:18 +08006861
Jens Axboe05f3fb32019-12-09 11:22:50 -07006862static int io_sqe_files_update(struct io_ring_ctx *ctx, void __user *arg,
6863 unsigned nr_args)
6864{
6865 struct io_uring_files_update up;
6866
6867 if (!ctx->file_data)
6868 return -ENXIO;
6869 if (!nr_args)
6870 return -EINVAL;
6871 if (copy_from_user(&up, arg, sizeof(up)))
6872 return -EFAULT;
6873 if (up.resv)
6874 return -EINVAL;
6875
6876 return __io_sqe_files_update(ctx, &up, nr_args);
6877}
Jens Axboec3a31e62019-10-03 13:59:56 -06006878
Pavel Begunkove9fd9392020-03-04 16:14:12 +03006879static void io_free_work(struct io_wq_work *work)
Jens Axboe7d723062019-11-12 22:31:31 -07006880{
6881 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
6882
Pavel Begunkove9fd9392020-03-04 16:14:12 +03006883 /* Consider that io_steal_work() relies on this ref */
Jens Axboe7d723062019-11-12 22:31:31 -07006884 io_put_req(req);
6885}
6886
Pavel Begunkov24369c22020-01-28 03:15:48 +03006887static int io_init_wq_offload(struct io_ring_ctx *ctx,
6888 struct io_uring_params *p)
6889{
6890 struct io_wq_data data;
6891 struct fd f;
6892 struct io_ring_ctx *ctx_attach;
6893 unsigned int concurrency;
6894 int ret = 0;
6895
6896 data.user = ctx->user;
Pavel Begunkove9fd9392020-03-04 16:14:12 +03006897 data.free_work = io_free_work;
Pavel Begunkov24369c22020-01-28 03:15:48 +03006898
6899 if (!(p->flags & IORING_SETUP_ATTACH_WQ)) {
6900 /* Do QD, or 4 * CPUS, whatever is smallest */
6901 concurrency = min(ctx->sq_entries, 4 * num_online_cpus());
6902
6903 ctx->io_wq = io_wq_create(concurrency, &data);
6904 if (IS_ERR(ctx->io_wq)) {
6905 ret = PTR_ERR(ctx->io_wq);
6906 ctx->io_wq = NULL;
6907 }
6908 return ret;
6909 }
6910
6911 f = fdget(p->wq_fd);
6912 if (!f.file)
6913 return -EBADF;
6914
6915 if (f.file->f_op != &io_uring_fops) {
6916 ret = -EINVAL;
6917 goto out_fput;
6918 }
6919
6920 ctx_attach = f.file->private_data;
6921 /* @io_wq is protected by holding the fd */
6922 if (!io_wq_get(ctx_attach->io_wq, &data)) {
6923 ret = -EINVAL;
6924 goto out_fput;
6925 }
6926
6927 ctx->io_wq = ctx_attach->io_wq;
6928out_fput:
6929 fdput(f);
6930 return ret;
6931}
6932
Jens Axboe6c271ce2019-01-10 11:22:30 -07006933static int io_sq_offload_start(struct io_ring_ctx *ctx,
6934 struct io_uring_params *p)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006935{
6936 int ret;
6937
Jens Axboe6c271ce2019-01-10 11:22:30 -07006938 init_waitqueue_head(&ctx->sqo_wait);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006939 mmgrab(current->mm);
6940 ctx->sqo_mm = current->mm;
6941
Jens Axboe6c271ce2019-01-10 11:22:30 -07006942 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboe3ec482d2019-04-08 10:51:01 -06006943 ret = -EPERM;
6944 if (!capable(CAP_SYS_ADMIN))
6945 goto err;
6946
Jens Axboe917257d2019-04-13 09:28:55 -06006947 ctx->sq_thread_idle = msecs_to_jiffies(p->sq_thread_idle);
6948 if (!ctx->sq_thread_idle)
6949 ctx->sq_thread_idle = HZ;
6950
Jens Axboe6c271ce2019-01-10 11:22:30 -07006951 if (p->flags & IORING_SETUP_SQ_AFF) {
Jens Axboe44a9bd12019-05-14 20:00:30 -06006952 int cpu = p->sq_thread_cpu;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006953
Jens Axboe917257d2019-04-13 09:28:55 -06006954 ret = -EINVAL;
Jens Axboe44a9bd12019-05-14 20:00:30 -06006955 if (cpu >= nr_cpu_ids)
6956 goto err;
Shenghui Wang7889f442019-05-07 16:03:19 +08006957 if (!cpu_online(cpu))
Jens Axboe917257d2019-04-13 09:28:55 -06006958 goto err;
6959
Jens Axboe6c271ce2019-01-10 11:22:30 -07006960 ctx->sqo_thread = kthread_create_on_cpu(io_sq_thread,
6961 ctx, cpu,
6962 "io_uring-sq");
6963 } else {
6964 ctx->sqo_thread = kthread_create(io_sq_thread, ctx,
6965 "io_uring-sq");
6966 }
6967 if (IS_ERR(ctx->sqo_thread)) {
6968 ret = PTR_ERR(ctx->sqo_thread);
6969 ctx->sqo_thread = NULL;
6970 goto err;
6971 }
6972 wake_up_process(ctx->sqo_thread);
6973 } else if (p->flags & IORING_SETUP_SQ_AFF) {
6974 /* Can't have SQ_AFF without SQPOLL */
6975 ret = -EINVAL;
6976 goto err;
6977 }
6978
Pavel Begunkov24369c22020-01-28 03:15:48 +03006979 ret = io_init_wq_offload(ctx, p);
6980 if (ret)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006981 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006982
6983 return 0;
6984err:
Jens Axboe54a91f32019-09-10 09:15:04 -06006985 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006986 mmdrop(ctx->sqo_mm);
6987 ctx->sqo_mm = NULL;
6988 return ret;
6989}
6990
6991static void io_unaccount_mem(struct user_struct *user, unsigned long nr_pages)
6992{
6993 atomic_long_sub(nr_pages, &user->locked_vm);
6994}
6995
6996static int io_account_mem(struct user_struct *user, unsigned long nr_pages)
6997{
6998 unsigned long page_limit, cur_pages, new_pages;
6999
7000 /* Don't allow more pages than we can safely lock */
7001 page_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
7002
7003 do {
7004 cur_pages = atomic_long_read(&user->locked_vm);
7005 new_pages = cur_pages + nr_pages;
7006 if (new_pages > page_limit)
7007 return -ENOMEM;
7008 } while (atomic_long_cmpxchg(&user->locked_vm, cur_pages,
7009 new_pages) != cur_pages);
7010
7011 return 0;
7012}
7013
7014static void io_mem_free(void *ptr)
7015{
Mark Rutland52e04ef2019-04-30 17:30:21 +01007016 struct page *page;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007017
Mark Rutland52e04ef2019-04-30 17:30:21 +01007018 if (!ptr)
7019 return;
7020
7021 page = virt_to_head_page(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007022 if (put_page_testzero(page))
7023 free_compound_page(page);
7024}
7025
7026static void *io_mem_alloc(size_t size)
7027{
7028 gfp_t gfp_flags = GFP_KERNEL | __GFP_ZERO | __GFP_NOWARN | __GFP_COMP |
7029 __GFP_NORETRY;
7030
7031 return (void *) __get_free_pages(gfp_flags, get_order(size));
7032}
7033
Hristo Venev75b28af2019-08-26 17:23:46 +00007034static unsigned long rings_size(unsigned sq_entries, unsigned cq_entries,
7035 size_t *sq_offset)
7036{
7037 struct io_rings *rings;
7038 size_t off, sq_array_size;
7039
7040 off = struct_size(rings, cqes, cq_entries);
7041 if (off == SIZE_MAX)
7042 return SIZE_MAX;
7043
7044#ifdef CONFIG_SMP
7045 off = ALIGN(off, SMP_CACHE_BYTES);
7046 if (off == 0)
7047 return SIZE_MAX;
7048#endif
7049
7050 sq_array_size = array_size(sizeof(u32), sq_entries);
7051 if (sq_array_size == SIZE_MAX)
7052 return SIZE_MAX;
7053
7054 if (check_add_overflow(off, sq_array_size, &off))
7055 return SIZE_MAX;
7056
7057 if (sq_offset)
7058 *sq_offset = off;
7059
7060 return off;
7061}
7062
Jens Axboe2b188cc2019-01-07 10:46:33 -07007063static unsigned long ring_pages(unsigned sq_entries, unsigned cq_entries)
7064{
Hristo Venev75b28af2019-08-26 17:23:46 +00007065 size_t pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007066
Hristo Venev75b28af2019-08-26 17:23:46 +00007067 pages = (size_t)1 << get_order(
7068 rings_size(sq_entries, cq_entries, NULL));
7069 pages += (size_t)1 << get_order(
7070 array_size(sizeof(struct io_uring_sqe), sq_entries));
Jens Axboe2b188cc2019-01-07 10:46:33 -07007071
Hristo Venev75b28af2019-08-26 17:23:46 +00007072 return pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007073}
7074
Jens Axboeedafcce2019-01-09 09:16:05 -07007075static int io_sqe_buffer_unregister(struct io_ring_ctx *ctx)
7076{
7077 int i, j;
7078
7079 if (!ctx->user_bufs)
7080 return -ENXIO;
7081
7082 for (i = 0; i < ctx->nr_user_bufs; i++) {
7083 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
7084
7085 for (j = 0; j < imu->nr_bvecs; j++)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08007086 unpin_user_page(imu->bvec[j].bv_page);
Jens Axboeedafcce2019-01-09 09:16:05 -07007087
7088 if (ctx->account_mem)
7089 io_unaccount_mem(ctx->user, imu->nr_bvecs);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007090 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07007091 imu->nr_bvecs = 0;
7092 }
7093
7094 kfree(ctx->user_bufs);
7095 ctx->user_bufs = NULL;
7096 ctx->nr_user_bufs = 0;
7097 return 0;
7098}
7099
7100static int io_copy_iov(struct io_ring_ctx *ctx, struct iovec *dst,
7101 void __user *arg, unsigned index)
7102{
7103 struct iovec __user *src;
7104
7105#ifdef CONFIG_COMPAT
7106 if (ctx->compat) {
7107 struct compat_iovec __user *ciovs;
7108 struct compat_iovec ciov;
7109
7110 ciovs = (struct compat_iovec __user *) arg;
7111 if (copy_from_user(&ciov, &ciovs[index], sizeof(ciov)))
7112 return -EFAULT;
7113
Jens Axboed55e5f52019-12-11 16:12:15 -07007114 dst->iov_base = u64_to_user_ptr((u64)ciov.iov_base);
Jens Axboeedafcce2019-01-09 09:16:05 -07007115 dst->iov_len = ciov.iov_len;
7116 return 0;
7117 }
7118#endif
7119 src = (struct iovec __user *) arg;
7120 if (copy_from_user(dst, &src[index], sizeof(*dst)))
7121 return -EFAULT;
7122 return 0;
7123}
7124
7125static int io_sqe_buffer_register(struct io_ring_ctx *ctx, void __user *arg,
7126 unsigned nr_args)
7127{
7128 struct vm_area_struct **vmas = NULL;
7129 struct page **pages = NULL;
7130 int i, j, got_pages = 0;
7131 int ret = -EINVAL;
7132
7133 if (ctx->user_bufs)
7134 return -EBUSY;
7135 if (!nr_args || nr_args > UIO_MAXIOV)
7136 return -EINVAL;
7137
7138 ctx->user_bufs = kcalloc(nr_args, sizeof(struct io_mapped_ubuf),
7139 GFP_KERNEL);
7140 if (!ctx->user_bufs)
7141 return -ENOMEM;
7142
7143 for (i = 0; i < nr_args; i++) {
7144 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
7145 unsigned long off, start, end, ubuf;
7146 int pret, nr_pages;
7147 struct iovec iov;
7148 size_t size;
7149
7150 ret = io_copy_iov(ctx, &iov, arg, i);
7151 if (ret)
Pavel Begunkova2786822019-05-26 12:35:47 +03007152 goto err;
Jens Axboeedafcce2019-01-09 09:16:05 -07007153
7154 /*
7155 * Don't impose further limits on the size and buffer
7156 * constraints here, we'll -EINVAL later when IO is
7157 * submitted if they are wrong.
7158 */
7159 ret = -EFAULT;
7160 if (!iov.iov_base || !iov.iov_len)
7161 goto err;
7162
7163 /* arbitrary limit, but we need something */
7164 if (iov.iov_len > SZ_1G)
7165 goto err;
7166
7167 ubuf = (unsigned long) iov.iov_base;
7168 end = (ubuf + iov.iov_len + PAGE_SIZE - 1) >> PAGE_SHIFT;
7169 start = ubuf >> PAGE_SHIFT;
7170 nr_pages = end - start;
7171
7172 if (ctx->account_mem) {
7173 ret = io_account_mem(ctx->user, nr_pages);
7174 if (ret)
7175 goto err;
7176 }
7177
7178 ret = 0;
7179 if (!pages || nr_pages > got_pages) {
7180 kfree(vmas);
7181 kfree(pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007182 pages = kvmalloc_array(nr_pages, sizeof(struct page *),
Jens Axboeedafcce2019-01-09 09:16:05 -07007183 GFP_KERNEL);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007184 vmas = kvmalloc_array(nr_pages,
Jens Axboeedafcce2019-01-09 09:16:05 -07007185 sizeof(struct vm_area_struct *),
7186 GFP_KERNEL);
7187 if (!pages || !vmas) {
7188 ret = -ENOMEM;
7189 if (ctx->account_mem)
7190 io_unaccount_mem(ctx->user, nr_pages);
7191 goto err;
7192 }
7193 got_pages = nr_pages;
7194 }
7195
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007196 imu->bvec = kvmalloc_array(nr_pages, sizeof(struct bio_vec),
Jens Axboeedafcce2019-01-09 09:16:05 -07007197 GFP_KERNEL);
7198 ret = -ENOMEM;
7199 if (!imu->bvec) {
7200 if (ctx->account_mem)
7201 io_unaccount_mem(ctx->user, nr_pages);
7202 goto err;
7203 }
7204
7205 ret = 0;
7206 down_read(&current->mm->mmap_sem);
John Hubbard2113b052020-01-30 22:13:13 -08007207 pret = pin_user_pages(ubuf, nr_pages,
Ira Weiny932f4a62019-05-13 17:17:03 -07007208 FOLL_WRITE | FOLL_LONGTERM,
7209 pages, vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007210 if (pret == nr_pages) {
7211 /* don't support file backed memory */
7212 for (j = 0; j < nr_pages; j++) {
7213 struct vm_area_struct *vma = vmas[j];
7214
7215 if (vma->vm_file &&
7216 !is_file_hugepages(vma->vm_file)) {
7217 ret = -EOPNOTSUPP;
7218 break;
7219 }
7220 }
7221 } else {
7222 ret = pret < 0 ? pret : -EFAULT;
7223 }
7224 up_read(&current->mm->mmap_sem);
7225 if (ret) {
7226 /*
7227 * if we did partial map, or found file backed vmas,
7228 * release any pages we did get
7229 */
John Hubbard27c4d3a2019-08-04 19:32:06 -07007230 if (pret > 0)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08007231 unpin_user_pages(pages, pret);
Jens Axboeedafcce2019-01-09 09:16:05 -07007232 if (ctx->account_mem)
7233 io_unaccount_mem(ctx->user, nr_pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007234 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07007235 goto err;
7236 }
7237
7238 off = ubuf & ~PAGE_MASK;
7239 size = iov.iov_len;
7240 for (j = 0; j < nr_pages; j++) {
7241 size_t vec_len;
7242
7243 vec_len = min_t(size_t, size, PAGE_SIZE - off);
7244 imu->bvec[j].bv_page = pages[j];
7245 imu->bvec[j].bv_len = vec_len;
7246 imu->bvec[j].bv_offset = off;
7247 off = 0;
7248 size -= vec_len;
7249 }
7250 /* store original address for later verification */
7251 imu->ubuf = ubuf;
7252 imu->len = iov.iov_len;
7253 imu->nr_bvecs = nr_pages;
7254
7255 ctx->nr_user_bufs++;
7256 }
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007257 kvfree(pages);
7258 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007259 return 0;
7260err:
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007261 kvfree(pages);
7262 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007263 io_sqe_buffer_unregister(ctx);
7264 return ret;
7265}
7266
Jens Axboe9b402842019-04-11 11:45:41 -06007267static int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg)
7268{
7269 __s32 __user *fds = arg;
7270 int fd;
7271
7272 if (ctx->cq_ev_fd)
7273 return -EBUSY;
7274
7275 if (copy_from_user(&fd, fds, sizeof(*fds)))
7276 return -EFAULT;
7277
7278 ctx->cq_ev_fd = eventfd_ctx_fdget(fd);
7279 if (IS_ERR(ctx->cq_ev_fd)) {
7280 int ret = PTR_ERR(ctx->cq_ev_fd);
7281 ctx->cq_ev_fd = NULL;
7282 return ret;
7283 }
7284
7285 return 0;
7286}
7287
7288static int io_eventfd_unregister(struct io_ring_ctx *ctx)
7289{
7290 if (ctx->cq_ev_fd) {
7291 eventfd_ctx_put(ctx->cq_ev_fd);
7292 ctx->cq_ev_fd = NULL;
7293 return 0;
7294 }
7295
7296 return -ENXIO;
7297}
7298
Jens Axboe5a2e7452020-02-23 16:23:11 -07007299static int __io_destroy_buffers(int id, void *p, void *data)
7300{
7301 struct io_ring_ctx *ctx = data;
7302 struct io_buffer *buf = p;
7303
Jens Axboe067524e2020-03-02 16:32:28 -07007304 __io_remove_buffers(ctx, buf, id, -1U);
Jens Axboe5a2e7452020-02-23 16:23:11 -07007305 return 0;
7306}
7307
7308static void io_destroy_buffers(struct io_ring_ctx *ctx)
7309{
7310 idr_for_each(&ctx->io_buffer_idr, __io_destroy_buffers, ctx);
7311 idr_destroy(&ctx->io_buffer_idr);
7312}
7313
Jens Axboe2b188cc2019-01-07 10:46:33 -07007314static void io_ring_ctx_free(struct io_ring_ctx *ctx)
7315{
Jens Axboe6b063142019-01-10 22:13:58 -07007316 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007317 if (ctx->sqo_mm)
7318 mmdrop(ctx->sqo_mm);
Jens Axboedef596e2019-01-09 08:59:42 -07007319
7320 io_iopoll_reap_events(ctx);
Jens Axboeedafcce2019-01-09 09:16:05 -07007321 io_sqe_buffer_unregister(ctx);
Jens Axboe6b063142019-01-10 22:13:58 -07007322 io_sqe_files_unregister(ctx);
Jens Axboe9b402842019-04-11 11:45:41 -06007323 io_eventfd_unregister(ctx);
Jens Axboe5a2e7452020-02-23 16:23:11 -07007324 io_destroy_buffers(ctx);
Jens Axboe41726c92020-02-23 13:11:42 -07007325 idr_destroy(&ctx->personality_idr);
Jens Axboedef596e2019-01-09 08:59:42 -07007326
Jens Axboe2b188cc2019-01-07 10:46:33 -07007327#if defined(CONFIG_UNIX)
Eric Biggers355e8d22019-06-12 14:58:43 -07007328 if (ctx->ring_sock) {
7329 ctx->ring_sock->file = NULL; /* so that iput() is called */
Jens Axboe2b188cc2019-01-07 10:46:33 -07007330 sock_release(ctx->ring_sock);
Eric Biggers355e8d22019-06-12 14:58:43 -07007331 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007332#endif
7333
Hristo Venev75b28af2019-08-26 17:23:46 +00007334 io_mem_free(ctx->rings);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007335 io_mem_free(ctx->sq_sqes);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007336
7337 percpu_ref_exit(&ctx->refs);
7338 if (ctx->account_mem)
7339 io_unaccount_mem(ctx->user,
7340 ring_pages(ctx->sq_entries, ctx->cq_entries));
7341 free_uid(ctx->user);
Jens Axboe181e4482019-11-25 08:52:30 -07007342 put_cred(ctx->creds);
Jens Axboe78076bb2019-12-04 19:56:40 -07007343 kfree(ctx->cancel_hash);
Jens Axboe0ddf92e2019-11-08 08:52:53 -07007344 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007345 kfree(ctx);
7346}
7347
7348static __poll_t io_uring_poll(struct file *file, poll_table *wait)
7349{
7350 struct io_ring_ctx *ctx = file->private_data;
7351 __poll_t mask = 0;
7352
7353 poll_wait(file, &ctx->cq_wait, wait);
Stefan Bühler4f7067c2019-04-24 23:54:17 +02007354 /*
7355 * synchronizes with barrier from wq_has_sleeper call in
7356 * io_commit_cqring
7357 */
Jens Axboe2b188cc2019-01-07 10:46:33 -07007358 smp_rmb();
Hristo Venev75b28af2019-08-26 17:23:46 +00007359 if (READ_ONCE(ctx->rings->sq.tail) - ctx->cached_sq_head !=
7360 ctx->rings->sq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007361 mask |= EPOLLOUT | EPOLLWRNORM;
Stefano Garzarella63e5d812020-02-07 13:18:28 +01007362 if (io_cqring_events(ctx, false))
Jens Axboe2b188cc2019-01-07 10:46:33 -07007363 mask |= EPOLLIN | EPOLLRDNORM;
7364
7365 return mask;
7366}
7367
7368static int io_uring_fasync(int fd, struct file *file, int on)
7369{
7370 struct io_ring_ctx *ctx = file->private_data;
7371
7372 return fasync_helper(fd, file, on, &ctx->cq_fasync);
7373}
7374
Jens Axboe071698e2020-01-28 10:04:42 -07007375static int io_remove_personalities(int id, void *p, void *data)
7376{
7377 struct io_ring_ctx *ctx = data;
7378 const struct cred *cred;
7379
7380 cred = idr_remove(&ctx->personality_idr, id);
7381 if (cred)
7382 put_cred(cred);
7383 return 0;
7384}
7385
Jens Axboe85faa7b2020-04-09 18:14:00 -06007386static void io_ring_exit_work(struct work_struct *work)
7387{
7388 struct io_ring_ctx *ctx;
7389
7390 ctx = container_of(work, struct io_ring_ctx, exit_work);
7391 if (ctx->rings)
7392 io_cqring_overflow_flush(ctx, true);
7393
Jens Axboe0f158b42020-05-14 17:18:39 -06007394 wait_for_completion(&ctx->ref_comp);
Jens Axboe85faa7b2020-04-09 18:14:00 -06007395 io_ring_ctx_free(ctx);
7396}
7397
Jens Axboe2b188cc2019-01-07 10:46:33 -07007398static void io_ring_ctx_wait_and_kill(struct io_ring_ctx *ctx)
7399{
7400 mutex_lock(&ctx->uring_lock);
7401 percpu_ref_kill(&ctx->refs);
7402 mutex_unlock(&ctx->uring_lock);
7403
Jens Axboedf069d82020-02-04 16:48:34 -07007404 /*
7405 * Wait for sq thread to idle, if we have one. It won't spin on new
7406 * work after we've killed the ctx ref above. This is important to do
7407 * before we cancel existing commands, as the thread could otherwise
7408 * be queueing new work post that. If that's work we need to cancel,
7409 * it could cause shutdown to hang.
7410 */
7411 while (ctx->sqo_thread && !wq_has_sleeper(&ctx->sqo_wait))
Xiaoguang Wang3fd44c82020-05-01 08:52:56 +08007412 cond_resched();
Jens Axboedf069d82020-02-04 16:48:34 -07007413
Jens Axboe5262f562019-09-17 12:26:57 -06007414 io_kill_timeouts(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07007415 io_poll_remove_all(ctx);
Jens Axboe561fb042019-10-24 07:25:42 -06007416
7417 if (ctx->io_wq)
7418 io_wq_cancel_all(ctx->io_wq);
7419
Jens Axboedef596e2019-01-09 08:59:42 -07007420 io_iopoll_reap_events(ctx);
Jens Axboe15dff282019-11-13 09:09:23 -07007421 /* if we failed setting up the ctx, we might not have any rings */
7422 if (ctx->rings)
7423 io_cqring_overflow_flush(ctx, true);
Jens Axboe071698e2020-01-28 10:04:42 -07007424 idr_for_each(&ctx->personality_idr, io_remove_personalities, ctx);
Jens Axboe85faa7b2020-04-09 18:14:00 -06007425 INIT_WORK(&ctx->exit_work, io_ring_exit_work);
7426 queue_work(system_wq, &ctx->exit_work);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007427}
7428
7429static int io_uring_release(struct inode *inode, struct file *file)
7430{
7431 struct io_ring_ctx *ctx = file->private_data;
7432
7433 file->private_data = NULL;
7434 io_ring_ctx_wait_and_kill(ctx);
7435 return 0;
7436}
7437
Jens Axboefcb323c2019-10-24 12:39:47 -06007438static void io_uring_cancel_files(struct io_ring_ctx *ctx,
7439 struct files_struct *files)
7440{
Jens Axboefcb323c2019-10-24 12:39:47 -06007441 while (!list_empty_careful(&ctx->inflight_list)) {
Xiaoguang Wangd8f1b972020-04-26 15:54:43 +08007442 struct io_kiocb *cancel_req = NULL, *req;
7443 DEFINE_WAIT(wait);
Jens Axboefcb323c2019-10-24 12:39:47 -06007444
7445 spin_lock_irq(&ctx->inflight_lock);
7446 list_for_each_entry(req, &ctx->inflight_list, inflight_entry) {
Jens Axboe768134d2019-11-10 20:30:53 -07007447 if (req->work.files != files)
7448 continue;
7449 /* req is being completed, ignore */
7450 if (!refcount_inc_not_zero(&req->refs))
7451 continue;
7452 cancel_req = req;
7453 break;
Jens Axboefcb323c2019-10-24 12:39:47 -06007454 }
Jens Axboe768134d2019-11-10 20:30:53 -07007455 if (cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06007456 prepare_to_wait(&ctx->inflight_wait, &wait,
Jens Axboe768134d2019-11-10 20:30:53 -07007457 TASK_UNINTERRUPTIBLE);
Jens Axboefcb323c2019-10-24 12:39:47 -06007458 spin_unlock_irq(&ctx->inflight_lock);
7459
Jens Axboe768134d2019-11-10 20:30:53 -07007460 /* We need to keep going until we don't find a matching req */
7461 if (!cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06007462 break;
Bob Liu2f6d9b92019-11-13 18:06:24 +08007463
Jens Axboe2ca10252020-02-13 17:17:35 -07007464 if (cancel_req->flags & REQ_F_OVERFLOW) {
7465 spin_lock_irq(&ctx->completion_lock);
7466 list_del(&cancel_req->list);
7467 cancel_req->flags &= ~REQ_F_OVERFLOW;
7468 if (list_empty(&ctx->cq_overflow_list)) {
7469 clear_bit(0, &ctx->sq_check_overflow);
7470 clear_bit(0, &ctx->cq_check_overflow);
7471 }
7472 spin_unlock_irq(&ctx->completion_lock);
7473
7474 WRITE_ONCE(ctx->rings->cq_overflow,
7475 atomic_inc_return(&ctx->cached_cq_overflow));
7476
7477 /*
7478 * Put inflight ref and overflow ref. If that's
7479 * all we had, then we're done with this request.
7480 */
7481 if (refcount_sub_and_test(2, &cancel_req->refs)) {
7482 io_put_req(cancel_req);
Xiaoguang Wangd8f1b972020-04-26 15:54:43 +08007483 finish_wait(&ctx->inflight_wait, &wait);
Jens Axboe2ca10252020-02-13 17:17:35 -07007484 continue;
7485 }
7486 }
7487
Bob Liu2f6d9b92019-11-13 18:06:24 +08007488 io_wq_cancel_work(ctx->io_wq, &cancel_req->work);
7489 io_put_req(cancel_req);
Jens Axboefcb323c2019-10-24 12:39:47 -06007490 schedule();
Xiaoguang Wangd8f1b972020-04-26 15:54:43 +08007491 finish_wait(&ctx->inflight_wait, &wait);
Jens Axboefcb323c2019-10-24 12:39:47 -06007492 }
7493}
7494
7495static int io_uring_flush(struct file *file, void *data)
7496{
7497 struct io_ring_ctx *ctx = file->private_data;
7498
7499 io_uring_cancel_files(ctx, data);
Jens Axboe6ab23142020-02-08 20:23:59 -07007500
7501 /*
7502 * If the task is going away, cancel work it may have pending
7503 */
7504 if (fatal_signal_pending(current) || (current->flags & PF_EXITING))
7505 io_wq_cancel_pid(ctx->io_wq, task_pid_vnr(current));
7506
Jens Axboefcb323c2019-10-24 12:39:47 -06007507 return 0;
7508}
7509
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007510static void *io_uring_validate_mmap_request(struct file *file,
7511 loff_t pgoff, size_t sz)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007512{
Jens Axboe2b188cc2019-01-07 10:46:33 -07007513 struct io_ring_ctx *ctx = file->private_data;
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007514 loff_t offset = pgoff << PAGE_SHIFT;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007515 struct page *page;
7516 void *ptr;
7517
7518 switch (offset) {
7519 case IORING_OFF_SQ_RING:
Hristo Venev75b28af2019-08-26 17:23:46 +00007520 case IORING_OFF_CQ_RING:
7521 ptr = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007522 break;
7523 case IORING_OFF_SQES:
7524 ptr = ctx->sq_sqes;
7525 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007526 default:
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007527 return ERR_PTR(-EINVAL);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007528 }
7529
7530 page = virt_to_head_page(ptr);
Matthew Wilcox (Oracle)a50b8542019-09-23 15:34:25 -07007531 if (sz > page_size(page))
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007532 return ERR_PTR(-EINVAL);
7533
7534 return ptr;
7535}
7536
7537#ifdef CONFIG_MMU
7538
7539static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
7540{
7541 size_t sz = vma->vm_end - vma->vm_start;
7542 unsigned long pfn;
7543 void *ptr;
7544
7545 ptr = io_uring_validate_mmap_request(file, vma->vm_pgoff, sz);
7546 if (IS_ERR(ptr))
7547 return PTR_ERR(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007548
7549 pfn = virt_to_phys(ptr) >> PAGE_SHIFT;
7550 return remap_pfn_range(vma, vma->vm_start, pfn, sz, vma->vm_page_prot);
7551}
7552
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007553#else /* !CONFIG_MMU */
7554
7555static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
7556{
7557 return vma->vm_flags & (VM_SHARED | VM_MAYSHARE) ? 0 : -EINVAL;
7558}
7559
7560static unsigned int io_uring_nommu_mmap_capabilities(struct file *file)
7561{
7562 return NOMMU_MAP_DIRECT | NOMMU_MAP_READ | NOMMU_MAP_WRITE;
7563}
7564
7565static unsigned long io_uring_nommu_get_unmapped_area(struct file *file,
7566 unsigned long addr, unsigned long len,
7567 unsigned long pgoff, unsigned long flags)
7568{
7569 void *ptr;
7570
7571 ptr = io_uring_validate_mmap_request(file, pgoff, len);
7572 if (IS_ERR(ptr))
7573 return PTR_ERR(ptr);
7574
7575 return (unsigned long) ptr;
7576}
7577
7578#endif /* !CONFIG_MMU */
7579
Jens Axboe2b188cc2019-01-07 10:46:33 -07007580SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
7581 u32, min_complete, u32, flags, const sigset_t __user *, sig,
7582 size_t, sigsz)
7583{
7584 struct io_ring_ctx *ctx;
7585 long ret = -EBADF;
7586 int submitted = 0;
7587 struct fd f;
7588
Jens Axboeb41e9852020-02-17 09:52:41 -07007589 if (current->task_works)
7590 task_work_run();
7591
Jens Axboe6c271ce2019-01-10 11:22:30 -07007592 if (flags & ~(IORING_ENTER_GETEVENTS | IORING_ENTER_SQ_WAKEUP))
Jens Axboe2b188cc2019-01-07 10:46:33 -07007593 return -EINVAL;
7594
7595 f = fdget(fd);
7596 if (!f.file)
7597 return -EBADF;
7598
7599 ret = -EOPNOTSUPP;
7600 if (f.file->f_op != &io_uring_fops)
7601 goto out_fput;
7602
7603 ret = -ENXIO;
7604 ctx = f.file->private_data;
7605 if (!percpu_ref_tryget(&ctx->refs))
7606 goto out_fput;
7607
Jens Axboe6c271ce2019-01-10 11:22:30 -07007608 /*
7609 * For SQ polling, the thread will do all submissions and completions.
7610 * Just return the requested submit count, and wake the thread if
7611 * we were asked to.
7612 */
Jens Axboeb2a9ead2019-09-12 14:19:16 -06007613 ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007614 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboec1edbf52019-11-10 16:56:04 -07007615 if (!list_empty_careful(&ctx->cq_overflow_list))
7616 io_cqring_overflow_flush(ctx, false);
Jens Axboe6c271ce2019-01-10 11:22:30 -07007617 if (flags & IORING_ENTER_SQ_WAKEUP)
7618 wake_up(&ctx->sqo_wait);
7619 submitted = to_submit;
Jens Axboeb2a9ead2019-09-12 14:19:16 -06007620 } else if (to_submit) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07007621 mutex_lock(&ctx->uring_lock);
Pavel Begunkovbf9c2f12020-04-12 02:05:02 +03007622 submitted = io_submit_sqes(ctx, to_submit, f.file, fd, false);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007623 mutex_unlock(&ctx->uring_lock);
Pavel Begunkov7c504e652019-12-18 19:53:45 +03007624
7625 if (submitted != to_submit)
7626 goto out;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007627 }
7628 if (flags & IORING_ENTER_GETEVENTS) {
Jens Axboedef596e2019-01-09 08:59:42 -07007629 unsigned nr_events = 0;
7630
Jens Axboe2b188cc2019-01-07 10:46:33 -07007631 min_complete = min(min_complete, ctx->cq_entries);
7632
Xiaoguang Wang32b22442020-03-11 09:26:09 +08007633 /*
7634 * When SETUP_IOPOLL and SETUP_SQPOLL are both enabled, user
7635 * space applications don't need to do io completion events
7636 * polling again, they can rely on io_sq_thread to do polling
7637 * work, which can reduce cpu usage and uring_lock contention.
7638 */
7639 if (ctx->flags & IORING_SETUP_IOPOLL &&
7640 !(ctx->flags & IORING_SETUP_SQPOLL)) {
Jens Axboedef596e2019-01-09 08:59:42 -07007641 ret = io_iopoll_check(ctx, &nr_events, min_complete);
Jens Axboedef596e2019-01-09 08:59:42 -07007642 } else {
7643 ret = io_cqring_wait(ctx, min_complete, sig, sigsz);
7644 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007645 }
7646
Pavel Begunkov7c504e652019-12-18 19:53:45 +03007647out:
Pavel Begunkov6805b322019-10-08 02:18:42 +03007648 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007649out_fput:
7650 fdput(f);
7651 return submitted ? submitted : ret;
7652}
7653
Tobias Klauserbebdb652020-02-26 18:38:32 +01007654#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -07007655static int io_uring_show_cred(int id, void *p, void *data)
7656{
7657 const struct cred *cred = p;
7658 struct seq_file *m = data;
7659 struct user_namespace *uns = seq_user_ns(m);
7660 struct group_info *gi;
7661 kernel_cap_t cap;
7662 unsigned __capi;
7663 int g;
7664
7665 seq_printf(m, "%5d\n", id);
7666 seq_put_decimal_ull(m, "\tUid:\t", from_kuid_munged(uns, cred->uid));
7667 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->euid));
7668 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->suid));
7669 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->fsuid));
7670 seq_put_decimal_ull(m, "\n\tGid:\t", from_kgid_munged(uns, cred->gid));
7671 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->egid));
7672 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->sgid));
7673 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->fsgid));
7674 seq_puts(m, "\n\tGroups:\t");
7675 gi = cred->group_info;
7676 for (g = 0; g < gi->ngroups; g++) {
7677 seq_put_decimal_ull(m, g ? " " : "",
7678 from_kgid_munged(uns, gi->gid[g]));
7679 }
7680 seq_puts(m, "\n\tCapEff:\t");
7681 cap = cred->cap_effective;
7682 CAP_FOR_EACH_U32(__capi)
7683 seq_put_hex_ll(m, NULL, cap.cap[CAP_LAST_U32 - __capi], 8);
7684 seq_putc(m, '\n');
7685 return 0;
7686}
7687
7688static void __io_uring_show_fdinfo(struct io_ring_ctx *ctx, struct seq_file *m)
7689{
7690 int i;
7691
7692 mutex_lock(&ctx->uring_lock);
7693 seq_printf(m, "UserFiles:\t%u\n", ctx->nr_user_files);
7694 for (i = 0; i < ctx->nr_user_files; i++) {
7695 struct fixed_file_table *table;
7696 struct file *f;
7697
7698 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
7699 f = table->files[i & IORING_FILE_TABLE_MASK];
7700 if (f)
7701 seq_printf(m, "%5u: %s\n", i, file_dentry(f)->d_iname);
7702 else
7703 seq_printf(m, "%5u: <none>\n", i);
7704 }
7705 seq_printf(m, "UserBufs:\t%u\n", ctx->nr_user_bufs);
7706 for (i = 0; i < ctx->nr_user_bufs; i++) {
7707 struct io_mapped_ubuf *buf = &ctx->user_bufs[i];
7708
7709 seq_printf(m, "%5u: 0x%llx/%u\n", i, buf->ubuf,
7710 (unsigned int) buf->len);
7711 }
7712 if (!idr_is_empty(&ctx->personality_idr)) {
7713 seq_printf(m, "Personalities:\n");
7714 idr_for_each(&ctx->personality_idr, io_uring_show_cred, m);
7715 }
Jens Axboed7718a92020-02-14 22:23:12 -07007716 seq_printf(m, "PollList:\n");
7717 spin_lock_irq(&ctx->completion_lock);
7718 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
7719 struct hlist_head *list = &ctx->cancel_hash[i];
7720 struct io_kiocb *req;
7721
7722 hlist_for_each_entry(req, list, hash_node)
7723 seq_printf(m, " op=%d, task_works=%d\n", req->opcode,
7724 req->task->task_works != NULL);
7725 }
7726 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe87ce9552020-01-30 08:25:34 -07007727 mutex_unlock(&ctx->uring_lock);
7728}
7729
7730static void io_uring_show_fdinfo(struct seq_file *m, struct file *f)
7731{
7732 struct io_ring_ctx *ctx = f->private_data;
7733
7734 if (percpu_ref_tryget(&ctx->refs)) {
7735 __io_uring_show_fdinfo(ctx, m);
7736 percpu_ref_put(&ctx->refs);
7737 }
7738}
Tobias Klauserbebdb652020-02-26 18:38:32 +01007739#endif
Jens Axboe87ce9552020-01-30 08:25:34 -07007740
Jens Axboe2b188cc2019-01-07 10:46:33 -07007741static const struct file_operations io_uring_fops = {
7742 .release = io_uring_release,
Jens Axboefcb323c2019-10-24 12:39:47 -06007743 .flush = io_uring_flush,
Jens Axboe2b188cc2019-01-07 10:46:33 -07007744 .mmap = io_uring_mmap,
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007745#ifndef CONFIG_MMU
7746 .get_unmapped_area = io_uring_nommu_get_unmapped_area,
7747 .mmap_capabilities = io_uring_nommu_mmap_capabilities,
7748#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07007749 .poll = io_uring_poll,
7750 .fasync = io_uring_fasync,
Tobias Klauserbebdb652020-02-26 18:38:32 +01007751#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -07007752 .show_fdinfo = io_uring_show_fdinfo,
Tobias Klauserbebdb652020-02-26 18:38:32 +01007753#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07007754};
7755
7756static int io_allocate_scq_urings(struct io_ring_ctx *ctx,
7757 struct io_uring_params *p)
7758{
Hristo Venev75b28af2019-08-26 17:23:46 +00007759 struct io_rings *rings;
7760 size_t size, sq_array_offset;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007761
Hristo Venev75b28af2019-08-26 17:23:46 +00007762 size = rings_size(p->sq_entries, p->cq_entries, &sq_array_offset);
7763 if (size == SIZE_MAX)
7764 return -EOVERFLOW;
7765
7766 rings = io_mem_alloc(size);
7767 if (!rings)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007768 return -ENOMEM;
7769
Hristo Venev75b28af2019-08-26 17:23:46 +00007770 ctx->rings = rings;
7771 ctx->sq_array = (u32 *)((char *)rings + sq_array_offset);
7772 rings->sq_ring_mask = p->sq_entries - 1;
7773 rings->cq_ring_mask = p->cq_entries - 1;
7774 rings->sq_ring_entries = p->sq_entries;
7775 rings->cq_ring_entries = p->cq_entries;
7776 ctx->sq_mask = rings->sq_ring_mask;
7777 ctx->cq_mask = rings->cq_ring_mask;
7778 ctx->sq_entries = rings->sq_ring_entries;
7779 ctx->cq_entries = rings->cq_ring_entries;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007780
7781 size = array_size(sizeof(struct io_uring_sqe), p->sq_entries);
Jens Axboeeb065d32019-11-20 09:26:29 -07007782 if (size == SIZE_MAX) {
7783 io_mem_free(ctx->rings);
7784 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007785 return -EOVERFLOW;
Jens Axboeeb065d32019-11-20 09:26:29 -07007786 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007787
7788 ctx->sq_sqes = io_mem_alloc(size);
Jens Axboeeb065d32019-11-20 09:26:29 -07007789 if (!ctx->sq_sqes) {
7790 io_mem_free(ctx->rings);
7791 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007792 return -ENOMEM;
Jens Axboeeb065d32019-11-20 09:26:29 -07007793 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007794
Jens Axboe2b188cc2019-01-07 10:46:33 -07007795 return 0;
7796}
7797
7798/*
7799 * Allocate an anonymous fd, this is what constitutes the application
7800 * visible backing of an io_uring instance. The application mmaps this
7801 * fd to gain access to the SQ/CQ ring details. If UNIX sockets are enabled,
7802 * we have to tie this fd to a socket for file garbage collection purposes.
7803 */
7804static int io_uring_get_fd(struct io_ring_ctx *ctx)
7805{
7806 struct file *file;
7807 int ret;
7808
7809#if defined(CONFIG_UNIX)
7810 ret = sock_create_kern(&init_net, PF_UNIX, SOCK_RAW, IPPROTO_IP,
7811 &ctx->ring_sock);
7812 if (ret)
7813 return ret;
7814#endif
7815
7816 ret = get_unused_fd_flags(O_RDWR | O_CLOEXEC);
7817 if (ret < 0)
7818 goto err;
7819
7820 file = anon_inode_getfile("[io_uring]", &io_uring_fops, ctx,
7821 O_RDWR | O_CLOEXEC);
7822 if (IS_ERR(file)) {
7823 put_unused_fd(ret);
7824 ret = PTR_ERR(file);
7825 goto err;
7826 }
7827
7828#if defined(CONFIG_UNIX)
7829 ctx->ring_sock->file = file;
7830#endif
7831 fd_install(ret, file);
7832 return ret;
7833err:
7834#if defined(CONFIG_UNIX)
7835 sock_release(ctx->ring_sock);
7836 ctx->ring_sock = NULL;
7837#endif
7838 return ret;
7839}
7840
Xiaoguang Wang7f136572020-05-05 16:28:53 +08007841static int io_uring_create(unsigned entries, struct io_uring_params *p,
7842 struct io_uring_params __user *params)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007843{
7844 struct user_struct *user = NULL;
7845 struct io_ring_ctx *ctx;
7846 bool account_mem;
7847 int ret;
7848
Jens Axboe8110c1a2019-12-28 15:39:54 -07007849 if (!entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007850 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07007851 if (entries > IORING_MAX_ENTRIES) {
7852 if (!(p->flags & IORING_SETUP_CLAMP))
7853 return -EINVAL;
7854 entries = IORING_MAX_ENTRIES;
7855 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007856
7857 /*
7858 * Use twice as many entries for the CQ ring. It's possible for the
7859 * application to drive a higher depth than the size of the SQ ring,
7860 * since the sqes are only used at submission time. This allows for
Jens Axboe33a107f2019-10-04 12:10:03 -06007861 * some flexibility in overcommitting a bit. If the application has
7862 * set IORING_SETUP_CQSIZE, it will have passed in the desired number
7863 * of CQ ring entries manually.
Jens Axboe2b188cc2019-01-07 10:46:33 -07007864 */
7865 p->sq_entries = roundup_pow_of_two(entries);
Jens Axboe33a107f2019-10-04 12:10:03 -06007866 if (p->flags & IORING_SETUP_CQSIZE) {
7867 /*
7868 * If IORING_SETUP_CQSIZE is set, we do the same roundup
7869 * to a power-of-two, if it isn't already. We do NOT impose
7870 * any cq vs sq ring sizing.
7871 */
Jens Axboe8110c1a2019-12-28 15:39:54 -07007872 if (p->cq_entries < p->sq_entries)
Jens Axboe33a107f2019-10-04 12:10:03 -06007873 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07007874 if (p->cq_entries > IORING_MAX_CQ_ENTRIES) {
7875 if (!(p->flags & IORING_SETUP_CLAMP))
7876 return -EINVAL;
7877 p->cq_entries = IORING_MAX_CQ_ENTRIES;
7878 }
Jens Axboe33a107f2019-10-04 12:10:03 -06007879 p->cq_entries = roundup_pow_of_two(p->cq_entries);
7880 } else {
7881 p->cq_entries = 2 * p->sq_entries;
7882 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007883
7884 user = get_uid(current_user());
7885 account_mem = !capable(CAP_IPC_LOCK);
7886
7887 if (account_mem) {
7888 ret = io_account_mem(user,
7889 ring_pages(p->sq_entries, p->cq_entries));
7890 if (ret) {
7891 free_uid(user);
7892 return ret;
7893 }
7894 }
7895
7896 ctx = io_ring_ctx_alloc(p);
7897 if (!ctx) {
7898 if (account_mem)
7899 io_unaccount_mem(user, ring_pages(p->sq_entries,
7900 p->cq_entries));
7901 free_uid(user);
7902 return -ENOMEM;
7903 }
7904 ctx->compat = in_compat_syscall();
7905 ctx->account_mem = account_mem;
7906 ctx->user = user;
Jens Axboe0b8c0ec2019-12-02 08:50:00 -07007907 ctx->creds = get_current_cred();
Jens Axboe2b188cc2019-01-07 10:46:33 -07007908
7909 ret = io_allocate_scq_urings(ctx, p);
7910 if (ret)
7911 goto err;
7912
Jens Axboe6c271ce2019-01-10 11:22:30 -07007913 ret = io_sq_offload_start(ctx, p);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007914 if (ret)
7915 goto err;
7916
Jens Axboe2b188cc2019-01-07 10:46:33 -07007917 memset(&p->sq_off, 0, sizeof(p->sq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00007918 p->sq_off.head = offsetof(struct io_rings, sq.head);
7919 p->sq_off.tail = offsetof(struct io_rings, sq.tail);
7920 p->sq_off.ring_mask = offsetof(struct io_rings, sq_ring_mask);
7921 p->sq_off.ring_entries = offsetof(struct io_rings, sq_ring_entries);
7922 p->sq_off.flags = offsetof(struct io_rings, sq_flags);
7923 p->sq_off.dropped = offsetof(struct io_rings, sq_dropped);
7924 p->sq_off.array = (char *)ctx->sq_array - (char *)ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007925
7926 memset(&p->cq_off, 0, sizeof(p->cq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00007927 p->cq_off.head = offsetof(struct io_rings, cq.head);
7928 p->cq_off.tail = offsetof(struct io_rings, cq.tail);
7929 p->cq_off.ring_mask = offsetof(struct io_rings, cq_ring_mask);
7930 p->cq_off.ring_entries = offsetof(struct io_rings, cq_ring_entries);
7931 p->cq_off.overflow = offsetof(struct io_rings, cq_overflow);
7932 p->cq_off.cqes = offsetof(struct io_rings, cqes);
Jens Axboeac90f242019-09-06 10:26:21 -06007933
Xiaoguang Wang7f136572020-05-05 16:28:53 +08007934 p->features = IORING_FEAT_SINGLE_MMAP | IORING_FEAT_NODROP |
7935 IORING_FEAT_SUBMIT_STABLE | IORING_FEAT_RW_CUR_POS |
7936 IORING_FEAT_CUR_PERSONALITY | IORING_FEAT_FAST_POLL;
7937
7938 if (copy_to_user(params, p, sizeof(*p))) {
7939 ret = -EFAULT;
7940 goto err;
7941 }
Jens Axboe044c1ab2019-10-28 09:15:33 -06007942 /*
7943 * Install ring fd as the very last thing, so we don't risk someone
7944 * having closed it before we finish setup
7945 */
7946 ret = io_uring_get_fd(ctx);
7947 if (ret < 0)
7948 goto err;
7949
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02007950 trace_io_uring_create(ret, ctx, p->sq_entries, p->cq_entries, p->flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007951 return ret;
7952err:
7953 io_ring_ctx_wait_and_kill(ctx);
7954 return ret;
7955}
7956
7957/*
7958 * Sets up an aio uring context, and returns the fd. Applications asks for a
7959 * ring size, we return the actual sq/cq ring sizes (among other things) in the
7960 * params structure passed in.
7961 */
7962static long io_uring_setup(u32 entries, struct io_uring_params __user *params)
7963{
7964 struct io_uring_params p;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007965 int i;
7966
7967 if (copy_from_user(&p, params, sizeof(p)))
7968 return -EFAULT;
7969 for (i = 0; i < ARRAY_SIZE(p.resv); i++) {
7970 if (p.resv[i])
7971 return -EINVAL;
7972 }
7973
Jens Axboe6c271ce2019-01-10 11:22:30 -07007974 if (p.flags & ~(IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL |
Jens Axboe8110c1a2019-12-28 15:39:54 -07007975 IORING_SETUP_SQ_AFF | IORING_SETUP_CQSIZE |
Pavel Begunkov24369c22020-01-28 03:15:48 +03007976 IORING_SETUP_CLAMP | IORING_SETUP_ATTACH_WQ))
Jens Axboe2b188cc2019-01-07 10:46:33 -07007977 return -EINVAL;
7978
Xiaoguang Wang7f136572020-05-05 16:28:53 +08007979 return io_uring_create(entries, &p, params);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007980}
7981
7982SYSCALL_DEFINE2(io_uring_setup, u32, entries,
7983 struct io_uring_params __user *, params)
7984{
7985 return io_uring_setup(entries, params);
7986}
7987
Jens Axboe66f4af92020-01-16 15:36:52 -07007988static int io_probe(struct io_ring_ctx *ctx, void __user *arg, unsigned nr_args)
7989{
7990 struct io_uring_probe *p;
7991 size_t size;
7992 int i, ret;
7993
7994 size = struct_size(p, ops, nr_args);
7995 if (size == SIZE_MAX)
7996 return -EOVERFLOW;
7997 p = kzalloc(size, GFP_KERNEL);
7998 if (!p)
7999 return -ENOMEM;
8000
8001 ret = -EFAULT;
8002 if (copy_from_user(p, arg, size))
8003 goto out;
8004 ret = -EINVAL;
8005 if (memchr_inv(p, 0, size))
8006 goto out;
8007
8008 p->last_op = IORING_OP_LAST - 1;
8009 if (nr_args > IORING_OP_LAST)
8010 nr_args = IORING_OP_LAST;
8011
8012 for (i = 0; i < nr_args; i++) {
8013 p->ops[i].op = i;
8014 if (!io_op_defs[i].not_supported)
8015 p->ops[i].flags = IO_URING_OP_SUPPORTED;
8016 }
8017 p->ops_len = i;
8018
8019 ret = 0;
8020 if (copy_to_user(arg, p, size))
8021 ret = -EFAULT;
8022out:
8023 kfree(p);
8024 return ret;
8025}
8026
Jens Axboe071698e2020-01-28 10:04:42 -07008027static int io_register_personality(struct io_ring_ctx *ctx)
8028{
8029 const struct cred *creds = get_current_cred();
8030 int id;
8031
8032 id = idr_alloc_cyclic(&ctx->personality_idr, (void *) creds, 1,
8033 USHRT_MAX, GFP_KERNEL);
8034 if (id < 0)
8035 put_cred(creds);
8036 return id;
8037}
8038
8039static int io_unregister_personality(struct io_ring_ctx *ctx, unsigned id)
8040{
8041 const struct cred *old_creds;
8042
8043 old_creds = idr_remove(&ctx->personality_idr, id);
8044 if (old_creds) {
8045 put_cred(old_creds);
8046 return 0;
8047 }
8048
8049 return -EINVAL;
8050}
8051
8052static bool io_register_op_must_quiesce(int op)
8053{
8054 switch (op) {
8055 case IORING_UNREGISTER_FILES:
8056 case IORING_REGISTER_FILES_UPDATE:
8057 case IORING_REGISTER_PROBE:
8058 case IORING_REGISTER_PERSONALITY:
8059 case IORING_UNREGISTER_PERSONALITY:
8060 return false;
8061 default:
8062 return true;
8063 }
8064}
8065
Jens Axboeedafcce2019-01-09 09:16:05 -07008066static int __io_uring_register(struct io_ring_ctx *ctx, unsigned opcode,
8067 void __user *arg, unsigned nr_args)
Jens Axboeb19062a2019-04-15 10:49:38 -06008068 __releases(ctx->uring_lock)
8069 __acquires(ctx->uring_lock)
Jens Axboeedafcce2019-01-09 09:16:05 -07008070{
8071 int ret;
8072
Jens Axboe35fa71a2019-04-22 10:23:23 -06008073 /*
8074 * We're inside the ring mutex, if the ref is already dying, then
8075 * someone else killed the ctx or is already going through
8076 * io_uring_register().
8077 */
8078 if (percpu_ref_is_dying(&ctx->refs))
8079 return -ENXIO;
8080
Jens Axboe071698e2020-01-28 10:04:42 -07008081 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07008082 percpu_ref_kill(&ctx->refs);
Jens Axboeb19062a2019-04-15 10:49:38 -06008083
Jens Axboe05f3fb32019-12-09 11:22:50 -07008084 /*
8085 * Drop uring mutex before waiting for references to exit. If
8086 * another thread is currently inside io_uring_enter() it might
8087 * need to grab the uring_lock to make progress. If we hold it
8088 * here across the drain wait, then we can deadlock. It's safe
8089 * to drop the mutex here, since no new references will come in
8090 * after we've killed the percpu ref.
8091 */
8092 mutex_unlock(&ctx->uring_lock);
Jens Axboe0f158b42020-05-14 17:18:39 -06008093 ret = wait_for_completion_interruptible(&ctx->ref_comp);
Jens Axboe05f3fb32019-12-09 11:22:50 -07008094 mutex_lock(&ctx->uring_lock);
Jens Axboec1503682020-01-08 08:26:07 -07008095 if (ret) {
8096 percpu_ref_resurrect(&ctx->refs);
8097 ret = -EINTR;
8098 goto out;
8099 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07008100 }
Jens Axboeedafcce2019-01-09 09:16:05 -07008101
8102 switch (opcode) {
8103 case IORING_REGISTER_BUFFERS:
8104 ret = io_sqe_buffer_register(ctx, arg, nr_args);
8105 break;
8106 case IORING_UNREGISTER_BUFFERS:
8107 ret = -EINVAL;
8108 if (arg || nr_args)
8109 break;
8110 ret = io_sqe_buffer_unregister(ctx);
8111 break;
Jens Axboe6b063142019-01-10 22:13:58 -07008112 case IORING_REGISTER_FILES:
8113 ret = io_sqe_files_register(ctx, arg, nr_args);
8114 break;
8115 case IORING_UNREGISTER_FILES:
8116 ret = -EINVAL;
8117 if (arg || nr_args)
8118 break;
8119 ret = io_sqe_files_unregister(ctx);
8120 break;
Jens Axboec3a31e62019-10-03 13:59:56 -06008121 case IORING_REGISTER_FILES_UPDATE:
8122 ret = io_sqe_files_update(ctx, arg, nr_args);
8123 break;
Jens Axboe9b402842019-04-11 11:45:41 -06008124 case IORING_REGISTER_EVENTFD:
Jens Axboef2842ab2020-01-08 11:04:00 -07008125 case IORING_REGISTER_EVENTFD_ASYNC:
Jens Axboe9b402842019-04-11 11:45:41 -06008126 ret = -EINVAL;
8127 if (nr_args != 1)
8128 break;
8129 ret = io_eventfd_register(ctx, arg);
Jens Axboef2842ab2020-01-08 11:04:00 -07008130 if (ret)
8131 break;
8132 if (opcode == IORING_REGISTER_EVENTFD_ASYNC)
8133 ctx->eventfd_async = 1;
8134 else
8135 ctx->eventfd_async = 0;
Jens Axboe9b402842019-04-11 11:45:41 -06008136 break;
8137 case IORING_UNREGISTER_EVENTFD:
8138 ret = -EINVAL;
8139 if (arg || nr_args)
8140 break;
8141 ret = io_eventfd_unregister(ctx);
8142 break;
Jens Axboe66f4af92020-01-16 15:36:52 -07008143 case IORING_REGISTER_PROBE:
8144 ret = -EINVAL;
8145 if (!arg || nr_args > 256)
8146 break;
8147 ret = io_probe(ctx, arg, nr_args);
8148 break;
Jens Axboe071698e2020-01-28 10:04:42 -07008149 case IORING_REGISTER_PERSONALITY:
8150 ret = -EINVAL;
8151 if (arg || nr_args)
8152 break;
8153 ret = io_register_personality(ctx);
8154 break;
8155 case IORING_UNREGISTER_PERSONALITY:
8156 ret = -EINVAL;
8157 if (arg)
8158 break;
8159 ret = io_unregister_personality(ctx, nr_args);
8160 break;
Jens Axboeedafcce2019-01-09 09:16:05 -07008161 default:
8162 ret = -EINVAL;
8163 break;
8164 }
8165
Jens Axboe071698e2020-01-28 10:04:42 -07008166 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07008167 /* bring the ctx back to life */
Jens Axboe05f3fb32019-12-09 11:22:50 -07008168 percpu_ref_reinit(&ctx->refs);
Jens Axboec1503682020-01-08 08:26:07 -07008169out:
Jens Axboe0f158b42020-05-14 17:18:39 -06008170 reinit_completion(&ctx->ref_comp);
Jens Axboe05f3fb32019-12-09 11:22:50 -07008171 }
Jens Axboeedafcce2019-01-09 09:16:05 -07008172 return ret;
8173}
8174
8175SYSCALL_DEFINE4(io_uring_register, unsigned int, fd, unsigned int, opcode,
8176 void __user *, arg, unsigned int, nr_args)
8177{
8178 struct io_ring_ctx *ctx;
8179 long ret = -EBADF;
8180 struct fd f;
8181
8182 f = fdget(fd);
8183 if (!f.file)
8184 return -EBADF;
8185
8186 ret = -EOPNOTSUPP;
8187 if (f.file->f_op != &io_uring_fops)
8188 goto out_fput;
8189
8190 ctx = f.file->private_data;
8191
8192 mutex_lock(&ctx->uring_lock);
8193 ret = __io_uring_register(ctx, opcode, arg, nr_args);
8194 mutex_unlock(&ctx->uring_lock);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02008195 trace_io_uring_register(ctx, opcode, ctx->nr_user_files, ctx->nr_user_bufs,
8196 ctx->cq_ev_fd != NULL, ret);
Jens Axboeedafcce2019-01-09 09:16:05 -07008197out_fput:
8198 fdput(f);
8199 return ret;
8200}
8201
Jens Axboe2b188cc2019-01-07 10:46:33 -07008202static int __init io_uring_init(void)
8203{
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008204#define __BUILD_BUG_VERIFY_ELEMENT(stype, eoffset, etype, ename) do { \
8205 BUILD_BUG_ON(offsetof(stype, ename) != eoffset); \
8206 BUILD_BUG_ON(sizeof(etype) != sizeof_field(stype, ename)); \
8207} while (0)
8208
8209#define BUILD_BUG_SQE_ELEM(eoffset, etype, ename) \
8210 __BUILD_BUG_VERIFY_ELEMENT(struct io_uring_sqe, eoffset, etype, ename)
8211 BUILD_BUG_ON(sizeof(struct io_uring_sqe) != 64);
8212 BUILD_BUG_SQE_ELEM(0, __u8, opcode);
8213 BUILD_BUG_SQE_ELEM(1, __u8, flags);
8214 BUILD_BUG_SQE_ELEM(2, __u16, ioprio);
8215 BUILD_BUG_SQE_ELEM(4, __s32, fd);
8216 BUILD_BUG_SQE_ELEM(8, __u64, off);
8217 BUILD_BUG_SQE_ELEM(8, __u64, addr2);
8218 BUILD_BUG_SQE_ELEM(16, __u64, addr);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03008219 BUILD_BUG_SQE_ELEM(16, __u64, splice_off_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008220 BUILD_BUG_SQE_ELEM(24, __u32, len);
8221 BUILD_BUG_SQE_ELEM(28, __kernel_rwf_t, rw_flags);
8222 BUILD_BUG_SQE_ELEM(28, /* compat */ int, rw_flags);
8223 BUILD_BUG_SQE_ELEM(28, /* compat */ __u32, rw_flags);
8224 BUILD_BUG_SQE_ELEM(28, __u32, fsync_flags);
8225 BUILD_BUG_SQE_ELEM(28, __u16, poll_events);
8226 BUILD_BUG_SQE_ELEM(28, __u32, sync_range_flags);
8227 BUILD_BUG_SQE_ELEM(28, __u32, msg_flags);
8228 BUILD_BUG_SQE_ELEM(28, __u32, timeout_flags);
8229 BUILD_BUG_SQE_ELEM(28, __u32, accept_flags);
8230 BUILD_BUG_SQE_ELEM(28, __u32, cancel_flags);
8231 BUILD_BUG_SQE_ELEM(28, __u32, open_flags);
8232 BUILD_BUG_SQE_ELEM(28, __u32, statx_flags);
8233 BUILD_BUG_SQE_ELEM(28, __u32, fadvise_advice);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03008234 BUILD_BUG_SQE_ELEM(28, __u32, splice_flags);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008235 BUILD_BUG_SQE_ELEM(32, __u64, user_data);
8236 BUILD_BUG_SQE_ELEM(40, __u16, buf_index);
8237 BUILD_BUG_SQE_ELEM(42, __u16, personality);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03008238 BUILD_BUG_SQE_ELEM(44, __s32, splice_fd_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008239
Jens Axboed3656342019-12-18 09:50:26 -07008240 BUILD_BUG_ON(ARRAY_SIZE(io_op_defs) != IORING_OP_LAST);
Jens Axboe84557872020-03-03 15:28:17 -07008241 BUILD_BUG_ON(__REQ_F_LAST_BIT >= 8 * sizeof(int));
Jens Axboe2b188cc2019-01-07 10:46:33 -07008242 req_cachep = KMEM_CACHE(io_kiocb, SLAB_HWCACHE_ALIGN | SLAB_PANIC);
8243 return 0;
8244};
8245__initcall(io_uring_init);