blob: 08f520456db8fd60a7183dc613b777459ed716ae [file] [log] [blame]
Jens Axboe2b188cc2019-01-07 10:46:33 -07001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Shared application/kernel submission and completion ring pairs, for
4 * supporting fast/efficient IO.
5 *
6 * A note on the read/write ordering memory barriers that are matched between
Stefan Bühler1e84b972019-04-24 23:54:16 +02007 * the application and kernel side.
8 *
9 * After the application reads the CQ ring tail, it must use an
10 * appropriate smp_rmb() to pair with the smp_wmb() the kernel uses
11 * before writing the tail (using smp_load_acquire to read the tail will
12 * do). It also needs a smp_mb() before updating CQ head (ordering the
13 * entry load(s) with the head store), pairing with an implicit barrier
14 * through a control-dependency in io_get_cqring (smp_store_release to
15 * store head will do). Failure to do so could lead to reading invalid
16 * CQ entries.
17 *
18 * Likewise, the application must use an appropriate smp_wmb() before
19 * writing the SQ tail (ordering SQ entry stores with the tail store),
20 * which pairs with smp_load_acquire in io_get_sqring (smp_store_release
21 * to store the tail will do). And it needs a barrier ordering the SQ
22 * head load before writing new SQ entries (smp_load_acquire to read
23 * head will do).
24 *
25 * When using the SQ poll thread (IORING_SETUP_SQPOLL), the application
26 * needs to check the SQ flags for IORING_SQ_NEED_WAKEUP *after*
27 * updating the SQ tail; a full memory barrier smp_mb() is needed
28 * between.
Jens Axboe2b188cc2019-01-07 10:46:33 -070029 *
30 * Also see the examples in the liburing library:
31 *
32 * git://git.kernel.dk/liburing
33 *
34 * io_uring also uses READ/WRITE_ONCE() for _any_ store or load that happens
35 * from data shared between the kernel and application. This is done both
36 * for ordering purposes, but also to ensure that once a value is loaded from
37 * data that the application could potentially modify, it remains stable.
38 *
39 * Copyright (C) 2018-2019 Jens Axboe
Christoph Hellwigc992fe22019-01-11 09:43:02 -070040 * Copyright (c) 2018-2019 Christoph Hellwig
Jens Axboe2b188cc2019-01-07 10:46:33 -070041 */
42#include <linux/kernel.h>
43#include <linux/init.h>
44#include <linux/errno.h>
45#include <linux/syscalls.h>
46#include <linux/compat.h>
Jens Axboe52de1fe2020-02-27 10:15:42 -070047#include <net/compat.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070048#include <linux/refcount.h>
49#include <linux/uio.h>
Pavel Begunkov6b47ee62020-01-18 20:22:41 +030050#include <linux/bits.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070051
52#include <linux/sched/signal.h>
53#include <linux/fs.h>
54#include <linux/file.h>
55#include <linux/fdtable.h>
56#include <linux/mm.h>
57#include <linux/mman.h>
58#include <linux/mmu_context.h>
59#include <linux/percpu.h>
60#include <linux/slab.h>
Jens Axboe6c271ce2019-01-10 11:22:30 -070061#include <linux/kthread.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070062#include <linux/blkdev.h>
Jens Axboeedafcce2019-01-09 09:16:05 -070063#include <linux/bvec.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070064#include <linux/net.h>
65#include <net/sock.h>
66#include <net/af_unix.h>
Jens Axboe6b063142019-01-10 22:13:58 -070067#include <net/scm.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070068#include <linux/anon_inodes.h>
69#include <linux/sched/mm.h>
70#include <linux/uaccess.h>
71#include <linux/nospec.h>
Jens Axboeedafcce2019-01-09 09:16:05 -070072#include <linux/sizes.h>
73#include <linux/hugetlb.h>
Jens Axboeaa4c3962019-11-29 10:14:00 -070074#include <linux/highmem.h>
Jens Axboe15b71ab2019-12-11 11:20:36 -070075#include <linux/namei.h>
76#include <linux/fsnotify.h>
Jens Axboe4840e412019-12-25 22:03:45 -070077#include <linux/fadvise.h>
Jens Axboe3e4827b2020-01-08 15:18:09 -070078#include <linux/eventpoll.h>
Jens Axboeff002b32020-02-07 16:05:21 -070079#include <linux/fs_struct.h>
Pavel Begunkov7d67af22020-02-24 11:32:45 +030080#include <linux/splice.h>
Jens Axboeb41e9852020-02-17 09:52:41 -070081#include <linux/task_work.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070082
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +020083#define CREATE_TRACE_POINTS
84#include <trace/events/io_uring.h>
85
Jens Axboe2b188cc2019-01-07 10:46:33 -070086#include <uapi/linux/io_uring.h>
87
88#include "internal.h"
Jens Axboe561fb042019-10-24 07:25:42 -060089#include "io-wq.h"
Jens Axboe2b188cc2019-01-07 10:46:33 -070090
Daniel Xu5277dea2019-09-14 14:23:45 -070091#define IORING_MAX_ENTRIES 32768
Jens Axboe33a107f2019-10-04 12:10:03 -060092#define IORING_MAX_CQ_ENTRIES (2 * IORING_MAX_ENTRIES)
Jens Axboe65e19f52019-10-26 07:20:21 -060093
94/*
95 * Shift of 9 is 512 entries, or exactly one page on 64-bit archs
96 */
97#define IORING_FILE_TABLE_SHIFT 9
98#define IORING_MAX_FILES_TABLE (1U << IORING_FILE_TABLE_SHIFT)
99#define IORING_FILE_TABLE_MASK (IORING_MAX_FILES_TABLE - 1)
100#define IORING_MAX_FIXED_FILES (64 * IORING_MAX_FILES_TABLE)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700101
102struct io_uring {
103 u32 head ____cacheline_aligned_in_smp;
104 u32 tail ____cacheline_aligned_in_smp;
105};
106
Stefan Bühler1e84b972019-04-24 23:54:16 +0200107/*
Hristo Venev75b28af2019-08-26 17:23:46 +0000108 * This data is shared with the application through the mmap at offsets
109 * IORING_OFF_SQ_RING and IORING_OFF_CQ_RING.
Stefan Bühler1e84b972019-04-24 23:54:16 +0200110 *
111 * The offsets to the member fields are published through struct
112 * io_sqring_offsets when calling io_uring_setup.
113 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000114struct io_rings {
Stefan Bühler1e84b972019-04-24 23:54:16 +0200115 /*
116 * Head and tail offsets into the ring; the offsets need to be
117 * masked to get valid indices.
118 *
Hristo Venev75b28af2019-08-26 17:23:46 +0000119 * The kernel controls head of the sq ring and the tail of the cq ring,
120 * and the application controls tail of the sq ring and the head of the
121 * cq ring.
Stefan Bühler1e84b972019-04-24 23:54:16 +0200122 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000123 struct io_uring sq, cq;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200124 /*
Hristo Venev75b28af2019-08-26 17:23:46 +0000125 * Bitmasks to apply to head and tail offsets (constant, equals
Stefan Bühler1e84b972019-04-24 23:54:16 +0200126 * ring_entries - 1)
127 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000128 u32 sq_ring_mask, cq_ring_mask;
129 /* Ring sizes (constant, power of 2) */
130 u32 sq_ring_entries, cq_ring_entries;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200131 /*
132 * Number of invalid entries dropped by the kernel due to
133 * invalid index stored in array
134 *
135 * Written by the kernel, shouldn't be modified by the
136 * application (i.e. get number of "new events" by comparing to
137 * cached value).
138 *
139 * After a new SQ head value was read by the application this
140 * counter includes all submissions that were dropped reaching
141 * the new SQ head (and possibly more).
142 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000143 u32 sq_dropped;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200144 /*
145 * Runtime flags
146 *
147 * Written by the kernel, shouldn't be modified by the
148 * application.
149 *
150 * The application needs a full memory barrier before checking
151 * for IORING_SQ_NEED_WAKEUP after updating the sq tail.
152 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000153 u32 sq_flags;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200154 /*
155 * Number of completion events lost because the queue was full;
156 * this should be avoided by the application by making sure
LimingWu0b4295b2019-12-05 20:18:18 +0800157 * there are not more requests pending than there is space in
Stefan Bühler1e84b972019-04-24 23:54:16 +0200158 * the completion queue.
159 *
160 * Written by the kernel, shouldn't be modified by the
161 * application (i.e. get number of "new events" by comparing to
162 * cached value).
163 *
164 * As completion events come in out of order this counter is not
165 * ordered with any other data.
166 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000167 u32 cq_overflow;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200168 /*
169 * Ring buffer of completion events.
170 *
171 * The kernel writes completion events fresh every time they are
172 * produced, so the application is allowed to modify pending
173 * entries.
174 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000175 struct io_uring_cqe cqes[] ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700176};
177
Jens Axboeedafcce2019-01-09 09:16:05 -0700178struct io_mapped_ubuf {
179 u64 ubuf;
180 size_t len;
181 struct bio_vec *bvec;
182 unsigned int nr_bvecs;
183};
184
Jens Axboe65e19f52019-10-26 07:20:21 -0600185struct fixed_file_table {
186 struct file **files;
Jens Axboe31b51512019-01-18 22:56:34 -0700187};
188
Xiaoguang Wang05589552020-03-31 14:05:18 +0800189struct fixed_file_ref_node {
190 struct percpu_ref refs;
191 struct list_head node;
192 struct list_head file_list;
193 struct fixed_file_data *file_data;
194 struct work_struct work;
195};
196
Jens Axboe05f3fb32019-12-09 11:22:50 -0700197struct fixed_file_data {
198 struct fixed_file_table *table;
199 struct io_ring_ctx *ctx;
200
Xiaoguang Wang05589552020-03-31 14:05:18 +0800201 struct percpu_ref *cur_refs;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700202 struct percpu_ref refs;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700203 struct completion done;
Xiaoguang Wang05589552020-03-31 14:05:18 +0800204 struct list_head ref_list;
205 spinlock_t lock;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700206};
207
Jens Axboe5a2e7452020-02-23 16:23:11 -0700208struct io_buffer {
209 struct list_head list;
210 __u64 addr;
211 __s32 len;
212 __u16 bid;
213};
214
Jens Axboe2b188cc2019-01-07 10:46:33 -0700215struct io_ring_ctx {
216 struct {
217 struct percpu_ref refs;
218 } ____cacheline_aligned_in_smp;
219
220 struct {
221 unsigned int flags;
Randy Dunlape1d85332020-02-05 20:57:10 -0800222 unsigned int compat: 1;
223 unsigned int account_mem: 1;
224 unsigned int cq_overflow_flushed: 1;
225 unsigned int drain_next: 1;
226 unsigned int eventfd_async: 1;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700227
Hristo Venev75b28af2019-08-26 17:23:46 +0000228 /*
229 * Ring buffer of indices into array of io_uring_sqe, which is
230 * mmapped by the application using the IORING_OFF_SQES offset.
231 *
232 * This indirection could e.g. be used to assign fixed
233 * io_uring_sqe entries to operations and only submit them to
234 * the queue when needed.
235 *
236 * The kernel modifies neither the indices array nor the entries
237 * array.
238 */
239 u32 *sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700240 unsigned cached_sq_head;
241 unsigned sq_entries;
242 unsigned sq_mask;
Jens Axboe6c271ce2019-01-10 11:22:30 -0700243 unsigned sq_thread_idle;
Jens Axboe498ccd92019-10-25 10:04:25 -0600244 unsigned cached_sq_dropped;
Jens Axboe206aefd2019-11-07 18:27:42 -0700245 atomic_t cached_cq_overflow;
Jens Axboead3eb2c2019-12-18 17:12:20 -0700246 unsigned long sq_check_overflow;
Jens Axboede0617e2019-04-06 21:51:27 -0600247
248 struct list_head defer_list;
Jens Axboe5262f562019-09-17 12:26:57 -0600249 struct list_head timeout_list;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700250 struct list_head cq_overflow_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700251
Jens Axboefcb323c2019-10-24 12:39:47 -0600252 wait_queue_head_t inflight_wait;
Jens Axboead3eb2c2019-12-18 17:12:20 -0700253 struct io_uring_sqe *sq_sqes;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700254 } ____cacheline_aligned_in_smp;
255
Hristo Venev75b28af2019-08-26 17:23:46 +0000256 struct io_rings *rings;
257
Jens Axboe2b188cc2019-01-07 10:46:33 -0700258 /* IO offload */
Jens Axboe561fb042019-10-24 07:25:42 -0600259 struct io_wq *io_wq;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700260 struct task_struct *sqo_thread; /* if using sq thread polling */
261 struct mm_struct *sqo_mm;
262 wait_queue_head_t sqo_wait;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700263
Jens Axboe6b063142019-01-10 22:13:58 -0700264 /*
265 * If used, fixed file set. Writers must ensure that ->refs is dead,
266 * readers must ensure that ->refs is alive as long as the file* is
267 * used. Only updated through io_uring_register(2).
268 */
Jens Axboe05f3fb32019-12-09 11:22:50 -0700269 struct fixed_file_data *file_data;
Jens Axboe6b063142019-01-10 22:13:58 -0700270 unsigned nr_user_files;
Pavel Begunkovb14cca02020-01-17 04:45:59 +0300271 int ring_fd;
272 struct file *ring_file;
Jens Axboe6b063142019-01-10 22:13:58 -0700273
Jens Axboeedafcce2019-01-09 09:16:05 -0700274 /* if used, fixed mapped user buffers */
275 unsigned nr_user_bufs;
276 struct io_mapped_ubuf *user_bufs;
277
Jens Axboe2b188cc2019-01-07 10:46:33 -0700278 struct user_struct *user;
279
Jens Axboe0b8c0ec2019-12-02 08:50:00 -0700280 const struct cred *creds;
Jens Axboe181e4482019-11-25 08:52:30 -0700281
Jens Axboe206aefd2019-11-07 18:27:42 -0700282 /* 0 is for ctx quiesce/reinit/free, 1 is for sqo_thread started */
283 struct completion *completions;
284
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700285 /* if all else fails... */
286 struct io_kiocb *fallback_req;
287
Jens Axboe206aefd2019-11-07 18:27:42 -0700288#if defined(CONFIG_UNIX)
289 struct socket *ring_sock;
290#endif
291
Jens Axboe5a2e7452020-02-23 16:23:11 -0700292 struct idr io_buffer_idr;
293
Jens Axboe071698e2020-01-28 10:04:42 -0700294 struct idr personality_idr;
295
Jens Axboe206aefd2019-11-07 18:27:42 -0700296 struct {
297 unsigned cached_cq_tail;
298 unsigned cq_entries;
299 unsigned cq_mask;
300 atomic_t cq_timeouts;
Jens Axboead3eb2c2019-12-18 17:12:20 -0700301 unsigned long cq_check_overflow;
Jens Axboe206aefd2019-11-07 18:27:42 -0700302 struct wait_queue_head cq_wait;
303 struct fasync_struct *cq_fasync;
304 struct eventfd_ctx *cq_ev_fd;
305 } ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700306
307 struct {
308 struct mutex uring_lock;
309 wait_queue_head_t wait;
310 } ____cacheline_aligned_in_smp;
311
312 struct {
313 spinlock_t completion_lock;
Jens Axboee94f1412019-12-19 12:06:02 -0700314
Jens Axboedef596e2019-01-09 08:59:42 -0700315 /*
316 * ->poll_list is protected by the ctx->uring_lock for
317 * io_uring instances that don't use IORING_SETUP_SQPOLL.
318 * For SQPOLL, only the single threaded io_sq_thread() will
319 * manipulate the list, hence no extra locking is needed there.
320 */
321 struct list_head poll_list;
Jens Axboe78076bb2019-12-04 19:56:40 -0700322 struct hlist_head *cancel_hash;
323 unsigned cancel_hash_bits;
Jens Axboee94f1412019-12-19 12:06:02 -0700324 bool poll_multi_file;
Jens Axboefcb323c2019-10-24 12:39:47 -0600325
326 spinlock_t inflight_lock;
327 struct list_head inflight_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700328 } ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700329};
330
Jens Axboe09bb8392019-03-13 12:39:28 -0600331/*
332 * First field must be the file pointer in all the
333 * iocb unions! See also 'struct kiocb' in <linux/fs.h>
334 */
Jens Axboe221c5eb2019-01-17 09:41:58 -0700335struct io_poll_iocb {
336 struct file *file;
Jens Axboe0969e782019-12-17 18:40:57 -0700337 union {
338 struct wait_queue_head *head;
339 u64 addr;
340 };
Jens Axboe221c5eb2019-01-17 09:41:58 -0700341 __poll_t events;
Jens Axboe8c838782019-03-12 15:48:16 -0600342 bool done;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700343 bool canceled;
Jens Axboe392edb42019-12-09 17:52:20 -0700344 struct wait_queue_entry wait;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700345};
346
Jens Axboeb5dba592019-12-11 14:02:38 -0700347struct io_close {
348 struct file *file;
349 struct file *put_file;
350 int fd;
351};
352
Jens Axboead8a48a2019-11-15 08:49:11 -0700353struct io_timeout_data {
354 struct io_kiocb *req;
355 struct hrtimer timer;
356 struct timespec64 ts;
357 enum hrtimer_mode mode;
Pavel Begunkovcc42e0a2019-11-25 23:14:38 +0300358 u32 seq_offset;
Jens Axboead8a48a2019-11-15 08:49:11 -0700359};
360
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700361struct io_accept {
362 struct file *file;
363 struct sockaddr __user *addr;
364 int __user *addr_len;
365 int flags;
Jens Axboe09952e32020-03-19 20:16:56 -0600366 unsigned long nofile;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700367};
368
369struct io_sync {
370 struct file *file;
371 loff_t len;
372 loff_t off;
373 int flags;
Jens Axboed63d1b52019-12-10 10:38:56 -0700374 int mode;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700375};
376
Jens Axboefbf23842019-12-17 18:45:56 -0700377struct io_cancel {
378 struct file *file;
379 u64 addr;
380};
381
Jens Axboeb29472e2019-12-17 18:50:29 -0700382struct io_timeout {
383 struct file *file;
384 u64 addr;
385 int flags;
Jens Axboe26a61672019-12-20 09:02:01 -0700386 unsigned count;
Jens Axboeb29472e2019-12-17 18:50:29 -0700387};
388
Jens Axboe9adbd452019-12-20 08:45:55 -0700389struct io_rw {
390 /* NOTE: kiocb has the file as the first member, so don't do it here */
391 struct kiocb kiocb;
392 u64 addr;
393 u64 len;
394};
395
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700396struct io_connect {
397 struct file *file;
398 struct sockaddr __user *addr;
399 int addr_len;
400};
401
Jens Axboee47293f2019-12-20 08:58:21 -0700402struct io_sr_msg {
403 struct file *file;
Jens Axboefddafac2020-01-04 20:19:44 -0700404 union {
405 struct user_msghdr __user *msg;
406 void __user *buf;
407 };
Jens Axboee47293f2019-12-20 08:58:21 -0700408 int msg_flags;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700409 int bgid;
Jens Axboefddafac2020-01-04 20:19:44 -0700410 size_t len;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700411 struct io_buffer *kbuf;
Jens Axboee47293f2019-12-20 08:58:21 -0700412};
413
Jens Axboe15b71ab2019-12-11 11:20:36 -0700414struct io_open {
415 struct file *file;
416 int dfd;
Jens Axboeeddc7ef2019-12-13 21:18:10 -0700417 union {
Jens Axboeeddc7ef2019-12-13 21:18:10 -0700418 unsigned mask;
419 };
Jens Axboe15b71ab2019-12-11 11:20:36 -0700420 struct filename *filename;
Jens Axboeeddc7ef2019-12-13 21:18:10 -0700421 struct statx __user *buffer;
Jens Axboec12cedf2020-01-08 17:41:21 -0700422 struct open_how how;
Jens Axboe4022e7a2020-03-19 19:23:18 -0600423 unsigned long nofile;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700424};
425
Jens Axboe05f3fb32019-12-09 11:22:50 -0700426struct io_files_update {
427 struct file *file;
428 u64 arg;
429 u32 nr_args;
430 u32 offset;
431};
432
Jens Axboe4840e412019-12-25 22:03:45 -0700433struct io_fadvise {
434 struct file *file;
435 u64 offset;
436 u32 len;
437 u32 advice;
438};
439
Jens Axboec1ca7572019-12-25 22:18:28 -0700440struct io_madvise {
441 struct file *file;
442 u64 addr;
443 u32 len;
444 u32 advice;
445};
446
Jens Axboe3e4827b2020-01-08 15:18:09 -0700447struct io_epoll {
448 struct file *file;
449 int epfd;
450 int op;
451 int fd;
452 struct epoll_event event;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700453};
454
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300455struct io_splice {
456 struct file *file_out;
457 struct file *file_in;
458 loff_t off_out;
459 loff_t off_in;
460 u64 len;
461 unsigned int flags;
462};
463
Jens Axboeddf0322d2020-02-23 16:41:33 -0700464struct io_provide_buf {
465 struct file *file;
466 __u64 addr;
467 __s32 len;
468 __u32 bgid;
469 __u16 nbufs;
470 __u16 bid;
471};
472
Jens Axboef499a022019-12-02 16:28:46 -0700473struct io_async_connect {
474 struct sockaddr_storage address;
475};
476
Jens Axboe03b12302019-12-02 18:50:25 -0700477struct io_async_msghdr {
478 struct iovec fast_iov[UIO_FASTIOV];
479 struct iovec *iov;
480 struct sockaddr __user *uaddr;
481 struct msghdr msg;
Jens Axboeb5379162020-02-09 11:29:15 -0700482 struct sockaddr_storage addr;
Jens Axboe03b12302019-12-02 18:50:25 -0700483};
484
Jens Axboef67676d2019-12-02 11:03:47 -0700485struct io_async_rw {
486 struct iovec fast_iov[UIO_FASTIOV];
487 struct iovec *iov;
488 ssize_t nr_segs;
489 ssize_t size;
490};
491
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700492struct io_async_ctx {
Jens Axboef67676d2019-12-02 11:03:47 -0700493 union {
494 struct io_async_rw rw;
Jens Axboe03b12302019-12-02 18:50:25 -0700495 struct io_async_msghdr msg;
Jens Axboef499a022019-12-02 16:28:46 -0700496 struct io_async_connect connect;
Jens Axboe2d283902019-12-04 11:08:05 -0700497 struct io_timeout_data timeout;
Jens Axboef67676d2019-12-02 11:03:47 -0700498 };
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700499};
500
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300501enum {
502 REQ_F_FIXED_FILE_BIT = IOSQE_FIXED_FILE_BIT,
503 REQ_F_IO_DRAIN_BIT = IOSQE_IO_DRAIN_BIT,
504 REQ_F_LINK_BIT = IOSQE_IO_LINK_BIT,
505 REQ_F_HARDLINK_BIT = IOSQE_IO_HARDLINK_BIT,
506 REQ_F_FORCE_ASYNC_BIT = IOSQE_ASYNC_BIT,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700507 REQ_F_BUFFER_SELECT_BIT = IOSQE_BUFFER_SELECT_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300508
509 REQ_F_LINK_NEXT_BIT,
510 REQ_F_FAIL_LINK_BIT,
511 REQ_F_INFLIGHT_BIT,
512 REQ_F_CUR_POS_BIT,
513 REQ_F_NOWAIT_BIT,
514 REQ_F_IOPOLL_COMPLETED_BIT,
515 REQ_F_LINK_TIMEOUT_BIT,
516 REQ_F_TIMEOUT_BIT,
517 REQ_F_ISREG_BIT,
518 REQ_F_MUST_PUNT_BIT,
519 REQ_F_TIMEOUT_NOSEQ_BIT,
520 REQ_F_COMP_LOCKED_BIT,
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300521 REQ_F_NEED_CLEANUP_BIT,
Jens Axboe2ca10252020-02-13 17:17:35 -0700522 REQ_F_OVERFLOW_BIT,
Jens Axboed7718a92020-02-14 22:23:12 -0700523 REQ_F_POLLED_BIT,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700524 REQ_F_BUFFER_SELECTED_BIT,
Jens Axboe84557872020-03-03 15:28:17 -0700525
526 /* not a real bit, just to check we're not overflowing the space */
527 __REQ_F_LAST_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300528};
529
530enum {
531 /* ctx owns file */
532 REQ_F_FIXED_FILE = BIT(REQ_F_FIXED_FILE_BIT),
533 /* drain existing IO first */
534 REQ_F_IO_DRAIN = BIT(REQ_F_IO_DRAIN_BIT),
535 /* linked sqes */
536 REQ_F_LINK = BIT(REQ_F_LINK_BIT),
537 /* doesn't sever on completion < 0 */
538 REQ_F_HARDLINK = BIT(REQ_F_HARDLINK_BIT),
539 /* IOSQE_ASYNC */
540 REQ_F_FORCE_ASYNC = BIT(REQ_F_FORCE_ASYNC_BIT),
Jens Axboebcda7ba2020-02-23 16:42:51 -0700541 /* IOSQE_BUFFER_SELECT */
542 REQ_F_BUFFER_SELECT = BIT(REQ_F_BUFFER_SELECT_BIT),
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300543
544 /* already grabbed next link */
545 REQ_F_LINK_NEXT = BIT(REQ_F_LINK_NEXT_BIT),
546 /* fail rest of links */
547 REQ_F_FAIL_LINK = BIT(REQ_F_FAIL_LINK_BIT),
548 /* on inflight list */
549 REQ_F_INFLIGHT = BIT(REQ_F_INFLIGHT_BIT),
550 /* read/write uses file position */
551 REQ_F_CUR_POS = BIT(REQ_F_CUR_POS_BIT),
552 /* must not punt to workers */
553 REQ_F_NOWAIT = BIT(REQ_F_NOWAIT_BIT),
554 /* polled IO has completed */
555 REQ_F_IOPOLL_COMPLETED = BIT(REQ_F_IOPOLL_COMPLETED_BIT),
556 /* has linked timeout */
557 REQ_F_LINK_TIMEOUT = BIT(REQ_F_LINK_TIMEOUT_BIT),
558 /* timeout request */
559 REQ_F_TIMEOUT = BIT(REQ_F_TIMEOUT_BIT),
560 /* regular file */
561 REQ_F_ISREG = BIT(REQ_F_ISREG_BIT),
562 /* must be punted even for NONBLOCK */
563 REQ_F_MUST_PUNT = BIT(REQ_F_MUST_PUNT_BIT),
564 /* no timeout sequence */
565 REQ_F_TIMEOUT_NOSEQ = BIT(REQ_F_TIMEOUT_NOSEQ_BIT),
566 /* completion under lock */
567 REQ_F_COMP_LOCKED = BIT(REQ_F_COMP_LOCKED_BIT),
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300568 /* needs cleanup */
569 REQ_F_NEED_CLEANUP = BIT(REQ_F_NEED_CLEANUP_BIT),
Jens Axboe2ca10252020-02-13 17:17:35 -0700570 /* in overflow list */
571 REQ_F_OVERFLOW = BIT(REQ_F_OVERFLOW_BIT),
Jens Axboed7718a92020-02-14 22:23:12 -0700572 /* already went through poll handler */
573 REQ_F_POLLED = BIT(REQ_F_POLLED_BIT),
Jens Axboebcda7ba2020-02-23 16:42:51 -0700574 /* buffer already selected */
575 REQ_F_BUFFER_SELECTED = BIT(REQ_F_BUFFER_SELECTED_BIT),
Jens Axboed7718a92020-02-14 22:23:12 -0700576};
577
578struct async_poll {
579 struct io_poll_iocb poll;
580 struct io_wq_work work;
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300581};
582
Jens Axboe09bb8392019-03-13 12:39:28 -0600583/*
584 * NOTE! Each of the iocb union members has the file pointer
585 * as the first entry in their struct definition. So you can
586 * access the file pointer through any of the sub-structs,
587 * or directly as just 'ki_filp' in this struct.
588 */
Jens Axboe2b188cc2019-01-07 10:46:33 -0700589struct io_kiocb {
Jens Axboe221c5eb2019-01-17 09:41:58 -0700590 union {
Jens Axboe09bb8392019-03-13 12:39:28 -0600591 struct file *file;
Jens Axboe9adbd452019-12-20 08:45:55 -0700592 struct io_rw rw;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700593 struct io_poll_iocb poll;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700594 struct io_accept accept;
595 struct io_sync sync;
Jens Axboefbf23842019-12-17 18:45:56 -0700596 struct io_cancel cancel;
Jens Axboeb29472e2019-12-17 18:50:29 -0700597 struct io_timeout timeout;
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700598 struct io_connect connect;
Jens Axboee47293f2019-12-20 08:58:21 -0700599 struct io_sr_msg sr_msg;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700600 struct io_open open;
Jens Axboeb5dba592019-12-11 14:02:38 -0700601 struct io_close close;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700602 struct io_files_update files_update;
Jens Axboe4840e412019-12-25 22:03:45 -0700603 struct io_fadvise fadvise;
Jens Axboec1ca7572019-12-25 22:18:28 -0700604 struct io_madvise madvise;
Jens Axboe3e4827b2020-01-08 15:18:09 -0700605 struct io_epoll epoll;
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300606 struct io_splice splice;
Jens Axboeddf0322d2020-02-23 16:41:33 -0700607 struct io_provide_buf pbuf;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700608 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700609
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700610 struct io_async_ctx *io;
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +0300611 bool needs_fixed_file;
Jens Axboed625c6e2019-12-17 19:53:05 -0700612 u8 opcode;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700613
614 struct io_ring_ctx *ctx;
Jens Axboed7718a92020-02-14 22:23:12 -0700615 struct list_head list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700616 unsigned int flags;
Jens Axboec16361c2019-01-17 08:39:48 -0700617 refcount_t refs;
Jens Axboe3537b6a2020-04-03 11:19:06 -0600618 struct task_struct *task;
619 unsigned long fsize;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700620 u64 user_data;
Jens Axboe9e645e112019-05-10 16:07:28 -0600621 u32 result;
Jens Axboede0617e2019-04-06 21:51:27 -0600622 u32 sequence;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700623
Jens Axboed7718a92020-02-14 22:23:12 -0700624 struct list_head link_list;
625
Jens Axboefcb323c2019-10-24 12:39:47 -0600626 struct list_head inflight_entry;
627
Xiaoguang Wang05589552020-03-31 14:05:18 +0800628 struct percpu_ref *fixed_file_refs;
629
Jens Axboeb41e9852020-02-17 09:52:41 -0700630 union {
631 /*
632 * Only commands that never go async can use the below fields,
Jens Axboed7718a92020-02-14 22:23:12 -0700633 * obviously. Right now only IORING_OP_POLL_ADD uses them, and
634 * async armed poll handlers for regular commands. The latter
635 * restore the work, if needed.
Jens Axboeb41e9852020-02-17 09:52:41 -0700636 */
637 struct {
Jens Axboeb41e9852020-02-17 09:52:41 -0700638 struct callback_head task_work;
Jens Axboed7718a92020-02-14 22:23:12 -0700639 struct hlist_node hash_node;
640 struct async_poll *apoll;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700641 int cflags;
Jens Axboeb41e9852020-02-17 09:52:41 -0700642 };
643 struct io_wq_work work;
644 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700645};
646
647#define IO_PLUG_THRESHOLD 2
Jens Axboedef596e2019-01-09 08:59:42 -0700648#define IO_IOPOLL_BATCH 8
Jens Axboe2b188cc2019-01-07 10:46:33 -0700649
Jens Axboe9a56a232019-01-09 09:06:50 -0700650struct io_submit_state {
651 struct blk_plug plug;
652
653 /*
Jens Axboe2579f912019-01-09 09:10:43 -0700654 * io_kiocb alloc cache
655 */
656 void *reqs[IO_IOPOLL_BATCH];
Pavel Begunkov6c8a3132020-02-01 03:58:00 +0300657 unsigned int free_reqs;
Jens Axboe2579f912019-01-09 09:10:43 -0700658
659 /*
Jens Axboe9a56a232019-01-09 09:06:50 -0700660 * File reference cache
661 */
662 struct file *file;
663 unsigned int fd;
664 unsigned int has_refs;
665 unsigned int used_refs;
666 unsigned int ios_left;
667};
668
Jens Axboed3656342019-12-18 09:50:26 -0700669struct io_op_def {
670 /* needs req->io allocated for deferral/async */
671 unsigned async_ctx : 1;
672 /* needs current->mm setup, does mm access */
673 unsigned needs_mm : 1;
674 /* needs req->file assigned */
675 unsigned needs_file : 1;
676 /* needs req->file assigned IFF fd is >= 0 */
677 unsigned fd_non_neg : 1;
678 /* hash wq insertion if file is a regular file */
679 unsigned hash_reg_file : 1;
680 /* unbound wq insertion if file is a non-regular file */
681 unsigned unbound_nonreg_file : 1;
Jens Axboe66f4af92020-01-16 15:36:52 -0700682 /* opcode is not supported by this kernel */
683 unsigned not_supported : 1;
Jens Axboef86cd202020-01-29 13:46:44 -0700684 /* needs file table */
685 unsigned file_table : 1;
Jens Axboeff002b32020-02-07 16:05:21 -0700686 /* needs ->fs */
687 unsigned needs_fs : 1;
Jens Axboe8a727582020-02-20 09:59:44 -0700688 /* set if opcode supports polled "wait" */
689 unsigned pollin : 1;
690 unsigned pollout : 1;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700691 /* op supports buffer selection */
692 unsigned buffer_select : 1;
Jens Axboed3656342019-12-18 09:50:26 -0700693};
694
695static const struct io_op_def io_op_defs[] = {
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300696 [IORING_OP_NOP] = {},
697 [IORING_OP_READV] = {
Jens Axboed3656342019-12-18 09:50:26 -0700698 .async_ctx = 1,
699 .needs_mm = 1,
700 .needs_file = 1,
701 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700702 .pollin = 1,
Jens Axboe4d954c22020-02-27 07:31:19 -0700703 .buffer_select = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700704 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300705 [IORING_OP_WRITEV] = {
Jens Axboed3656342019-12-18 09:50:26 -0700706 .async_ctx = 1,
707 .needs_mm = 1,
708 .needs_file = 1,
709 .hash_reg_file = 1,
710 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700711 .pollout = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700712 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300713 [IORING_OP_FSYNC] = {
Jens Axboed3656342019-12-18 09:50:26 -0700714 .needs_file = 1,
715 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300716 [IORING_OP_READ_FIXED] = {
Jens Axboed3656342019-12-18 09:50:26 -0700717 .needs_file = 1,
718 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700719 .pollin = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700720 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300721 [IORING_OP_WRITE_FIXED] = {
Jens Axboed3656342019-12-18 09:50:26 -0700722 .needs_file = 1,
723 .hash_reg_file = 1,
724 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700725 .pollout = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700726 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300727 [IORING_OP_POLL_ADD] = {
Jens Axboed3656342019-12-18 09:50:26 -0700728 .needs_file = 1,
729 .unbound_nonreg_file = 1,
730 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300731 [IORING_OP_POLL_REMOVE] = {},
732 [IORING_OP_SYNC_FILE_RANGE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700733 .needs_file = 1,
734 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300735 [IORING_OP_SENDMSG] = {
Jens Axboed3656342019-12-18 09:50:26 -0700736 .async_ctx = 1,
737 .needs_mm = 1,
738 .needs_file = 1,
739 .unbound_nonreg_file = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700740 .needs_fs = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700741 .pollout = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700742 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300743 [IORING_OP_RECVMSG] = {
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 .pollin = 1,
Jens Axboe52de1fe2020-02-27 10:15:42 -0700750 .buffer_select = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700751 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300752 [IORING_OP_TIMEOUT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700753 .async_ctx = 1,
754 .needs_mm = 1,
755 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300756 [IORING_OP_TIMEOUT_REMOVE] = {},
757 [IORING_OP_ACCEPT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700758 .needs_mm = 1,
759 .needs_file = 1,
760 .unbound_nonreg_file = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700761 .file_table = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700762 .pollin = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700763 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300764 [IORING_OP_ASYNC_CANCEL] = {},
765 [IORING_OP_LINK_TIMEOUT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700766 .async_ctx = 1,
767 .needs_mm = 1,
768 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300769 [IORING_OP_CONNECT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700770 .async_ctx = 1,
771 .needs_mm = 1,
772 .needs_file = 1,
773 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700774 .pollout = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700775 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300776 [IORING_OP_FALLOCATE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700777 .needs_file = 1,
778 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300779 [IORING_OP_OPENAT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700780 .needs_file = 1,
781 .fd_non_neg = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700782 .file_table = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700783 .needs_fs = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700784 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300785 [IORING_OP_CLOSE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700786 .needs_file = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700787 .file_table = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700788 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300789 [IORING_OP_FILES_UPDATE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700790 .needs_mm = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700791 .file_table = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700792 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300793 [IORING_OP_STATX] = {
Jens Axboed3656342019-12-18 09:50:26 -0700794 .needs_mm = 1,
795 .needs_file = 1,
796 .fd_non_neg = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700797 .needs_fs = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700798 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300799 [IORING_OP_READ] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -0700800 .needs_mm = 1,
801 .needs_file = 1,
802 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700803 .pollin = 1,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700804 .buffer_select = 1,
Jens Axboe3a6820f2019-12-22 15:19:35 -0700805 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300806 [IORING_OP_WRITE] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -0700807 .needs_mm = 1,
808 .needs_file = 1,
809 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700810 .pollout = 1,
Jens Axboe3a6820f2019-12-22 15:19:35 -0700811 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300812 [IORING_OP_FADVISE] = {
Jens Axboe4840e412019-12-25 22:03:45 -0700813 .needs_file = 1,
814 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300815 [IORING_OP_MADVISE] = {
Jens Axboec1ca7572019-12-25 22:18:28 -0700816 .needs_mm = 1,
817 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300818 [IORING_OP_SEND] = {
Jens Axboefddafac2020-01-04 20:19:44 -0700819 .needs_mm = 1,
820 .needs_file = 1,
821 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700822 .pollout = 1,
Jens Axboefddafac2020-01-04 20:19:44 -0700823 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300824 [IORING_OP_RECV] = {
Jens Axboefddafac2020-01-04 20:19:44 -0700825 .needs_mm = 1,
826 .needs_file = 1,
827 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700828 .pollin = 1,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700829 .buffer_select = 1,
Jens Axboefddafac2020-01-04 20:19:44 -0700830 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300831 [IORING_OP_OPENAT2] = {
Jens Axboecebdb982020-01-08 17:59:24 -0700832 .needs_file = 1,
833 .fd_non_neg = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700834 .file_table = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700835 .needs_fs = 1,
Jens Axboecebdb982020-01-08 17:59:24 -0700836 },
Jens Axboe3e4827b2020-01-08 15:18:09 -0700837 [IORING_OP_EPOLL_CTL] = {
838 .unbound_nonreg_file = 1,
839 .file_table = 1,
840 },
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300841 [IORING_OP_SPLICE] = {
842 .needs_file = 1,
843 .hash_reg_file = 1,
844 .unbound_nonreg_file = 1,
Jens Axboeddf0322d2020-02-23 16:41:33 -0700845 },
846 [IORING_OP_PROVIDE_BUFFERS] = {},
Jens Axboe067524e2020-03-02 16:32:28 -0700847 [IORING_OP_REMOVE_BUFFERS] = {},
Jens Axboed3656342019-12-18 09:50:26 -0700848};
849
Jens Axboe561fb042019-10-24 07:25:42 -0600850static void io_wq_submit_work(struct io_wq_work **workptr);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700851static void io_cqring_fill_event(struct io_kiocb *req, long res);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800852static void io_put_req(struct io_kiocb *req);
Jens Axboe978db572019-11-14 22:39:04 -0700853static void __io_double_put_req(struct io_kiocb *req);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700854static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req);
855static void io_queue_linked_timeout(struct io_kiocb *req);
Jens Axboe05f3fb32019-12-09 11:22:50 -0700856static int __io_sqe_files_update(struct io_ring_ctx *ctx,
857 struct io_uring_files_update *ip,
858 unsigned nr_args);
Jens Axboef86cd202020-01-29 13:46:44 -0700859static int io_grab_files(struct io_kiocb *req);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300860static void io_cleanup_req(struct io_kiocb *req);
Jens Axboeb41e9852020-02-17 09:52:41 -0700861static int io_file_get(struct io_submit_state *state, struct io_kiocb *req,
862 int fd, struct file **out_file, bool fixed);
863static void __io_queue_sqe(struct io_kiocb *req,
864 const struct io_uring_sqe *sqe);
Jens Axboede0617e2019-04-06 21:51:27 -0600865
Jens Axboe2b188cc2019-01-07 10:46:33 -0700866static struct kmem_cache *req_cachep;
867
868static const struct file_operations io_uring_fops;
869
870struct sock *io_uring_get_socket(struct file *file)
871{
872#if defined(CONFIG_UNIX)
873 if (file->f_op == &io_uring_fops) {
874 struct io_ring_ctx *ctx = file->private_data;
875
876 return ctx->ring_sock->sk;
877 }
878#endif
879 return NULL;
880}
881EXPORT_SYMBOL(io_uring_get_socket);
882
883static void io_ring_ctx_ref_free(struct percpu_ref *ref)
884{
885 struct io_ring_ctx *ctx = container_of(ref, struct io_ring_ctx, refs);
886
Jens Axboe206aefd2019-11-07 18:27:42 -0700887 complete(&ctx->completions[0]);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700888}
889
890static struct io_ring_ctx *io_ring_ctx_alloc(struct io_uring_params *p)
891{
892 struct io_ring_ctx *ctx;
Jens Axboe78076bb2019-12-04 19:56:40 -0700893 int hash_bits;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700894
895 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
896 if (!ctx)
897 return NULL;
898
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700899 ctx->fallback_req = kmem_cache_alloc(req_cachep, GFP_KERNEL);
900 if (!ctx->fallback_req)
901 goto err;
902
Jens Axboe206aefd2019-11-07 18:27:42 -0700903 ctx->completions = kmalloc(2 * sizeof(struct completion), GFP_KERNEL);
904 if (!ctx->completions)
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 Axboe206aefd2019-11-07 18:27:42 -0700929 init_completion(&ctx->completions[0]);
930 init_completion(&ctx->completions[1]);
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 Axboe2b188cc2019-01-07 10:46:33 -0700942 return ctx;
Jens Axboe206aefd2019-11-07 18:27:42 -0700943err:
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700944 if (ctx->fallback_req)
945 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe206aefd2019-11-07 18:27:42 -0700946 kfree(ctx->completions);
Jens Axboe78076bb2019-12-04 19:56:40 -0700947 kfree(ctx->cancel_hash);
Jens Axboe206aefd2019-11-07 18:27:42 -0700948 kfree(ctx);
949 return NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700950}
951
Bob Liu9d858b22019-11-13 18:06:25 +0800952static inline bool __req_need_defer(struct io_kiocb *req)
Jens Axboede0617e2019-04-06 21:51:27 -0600953{
Jackie Liua197f662019-11-08 08:09:12 -0700954 struct io_ring_ctx *ctx = req->ctx;
955
Jens Axboe498ccd92019-10-25 10:04:25 -0600956 return req->sequence != ctx->cached_cq_tail + ctx->cached_sq_dropped
957 + atomic_read(&ctx->cached_cq_overflow);
Jens Axboede0617e2019-04-06 21:51:27 -0600958}
959
Bob Liu9d858b22019-11-13 18:06:25 +0800960static inline bool req_need_defer(struct io_kiocb *req)
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600961{
Pavel Begunkov87987892020-01-18 01:22:30 +0300962 if (unlikely(req->flags & REQ_F_IO_DRAIN))
Bob Liu9d858b22019-11-13 18:06:25 +0800963 return __req_need_defer(req);
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600964
Bob Liu9d858b22019-11-13 18:06:25 +0800965 return false;
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600966}
967
968static struct io_kiocb *io_get_deferred_req(struct io_ring_ctx *ctx)
Jens Axboede0617e2019-04-06 21:51:27 -0600969{
970 struct io_kiocb *req;
971
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600972 req = list_first_entry_or_null(&ctx->defer_list, struct io_kiocb, list);
Bob Liu9d858b22019-11-13 18:06:25 +0800973 if (req && !req_need_defer(req)) {
Jens Axboede0617e2019-04-06 21:51:27 -0600974 list_del_init(&req->list);
975 return req;
976 }
977
978 return NULL;
979}
980
Jens Axboe5262f562019-09-17 12:26:57 -0600981static struct io_kiocb *io_get_timeout_req(struct io_ring_ctx *ctx)
982{
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600983 struct io_kiocb *req;
984
985 req = list_first_entry_or_null(&ctx->timeout_list, struct io_kiocb, list);
Jens Axboe93bd25b2019-11-11 23:34:31 -0700986 if (req) {
987 if (req->flags & REQ_F_TIMEOUT_NOSEQ)
988 return NULL;
Linus Torvaldsfb4b3d32019-11-25 10:40:27 -0800989 if (!__req_need_defer(req)) {
Jens Axboe93bd25b2019-11-11 23:34:31 -0700990 list_del_init(&req->list);
991 return req;
992 }
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600993 }
994
995 return NULL;
Jens Axboe5262f562019-09-17 12:26:57 -0600996}
997
Jens Axboede0617e2019-04-06 21:51:27 -0600998static void __io_commit_cqring(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700999{
Hristo Venev75b28af2019-08-26 17:23:46 +00001000 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001001
Pavel Begunkov07910152020-01-17 03:52:46 +03001002 /* order cqe stores with ring update */
1003 smp_store_release(&rings->cq.tail, ctx->cached_cq_tail);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001004
Pavel Begunkov07910152020-01-17 03:52:46 +03001005 if (wq_has_sleeper(&ctx->cq_wait)) {
1006 wake_up_interruptible(&ctx->cq_wait);
1007 kill_fasync(&ctx->cq_fasync, SIGIO, POLL_IN);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001008 }
1009}
1010
Jens Axboecccf0ee2020-01-27 16:34:48 -07001011static inline void io_req_work_grab_env(struct io_kiocb *req,
1012 const struct io_op_def *def)
Jens Axboe18d9be12019-09-10 09:13:05 -06001013{
Jens Axboecccf0ee2020-01-27 16:34:48 -07001014 if (!req->work.mm && def->needs_mm) {
1015 mmgrab(current->mm);
1016 req->work.mm = current->mm;
1017 }
1018 if (!req->work.creds)
1019 req->work.creds = get_current_cred();
Jens Axboeff002b32020-02-07 16:05:21 -07001020 if (!req->work.fs && def->needs_fs) {
1021 spin_lock(&current->fs->lock);
1022 if (!current->fs->in_exec) {
1023 req->work.fs = current->fs;
1024 req->work.fs->users++;
1025 } else {
1026 req->work.flags |= IO_WQ_WORK_CANCEL;
1027 }
1028 spin_unlock(&current->fs->lock);
1029 }
Jens Axboe6ab23142020-02-08 20:23:59 -07001030 if (!req->work.task_pid)
1031 req->work.task_pid = task_pid_vnr(current);
Jens Axboecccf0ee2020-01-27 16:34:48 -07001032}
1033
1034static inline void io_req_work_drop_env(struct io_kiocb *req)
1035{
1036 if (req->work.mm) {
1037 mmdrop(req->work.mm);
1038 req->work.mm = NULL;
1039 }
1040 if (req->work.creds) {
1041 put_cred(req->work.creds);
1042 req->work.creds = NULL;
1043 }
Jens Axboeff002b32020-02-07 16:05:21 -07001044 if (req->work.fs) {
1045 struct fs_struct *fs = req->work.fs;
1046
1047 spin_lock(&req->work.fs->lock);
1048 if (--fs->users)
1049 fs = NULL;
1050 spin_unlock(&req->work.fs->lock);
1051 if (fs)
1052 free_fs_struct(fs);
1053 }
Jens Axboe561fb042019-10-24 07:25:42 -06001054}
1055
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001056static inline void io_prep_async_work(struct io_kiocb *req,
Jens Axboe94ae5e72019-11-14 19:39:52 -07001057 struct io_kiocb **link)
Jens Axboe561fb042019-10-24 07:25:42 -06001058{
Jens Axboed3656342019-12-18 09:50:26 -07001059 const struct io_op_def *def = &io_op_defs[req->opcode];
Jens Axboe54a91f32019-09-10 09:15:04 -06001060
Jens Axboed3656342019-12-18 09:50:26 -07001061 if (req->flags & REQ_F_ISREG) {
1062 if (def->hash_reg_file)
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001063 io_wq_hash_work(&req->work, file_inode(req->file));
Jens Axboed3656342019-12-18 09:50:26 -07001064 } else {
1065 if (def->unbound_nonreg_file)
Jens Axboe3529d8c2019-12-19 18:24:38 -07001066 req->work.flags |= IO_WQ_WORK_UNBOUND;
Jens Axboe54a91f32019-09-10 09:15:04 -06001067 }
Jens Axboecccf0ee2020-01-27 16:34:48 -07001068
1069 io_req_work_grab_env(req, def);
Jens Axboe54a91f32019-09-10 09:15:04 -06001070
Jens Axboe94ae5e72019-11-14 19:39:52 -07001071 *link = io_prep_linked_timeout(req);
Jens Axboe561fb042019-10-24 07:25:42 -06001072}
1073
Jackie Liua197f662019-11-08 08:09:12 -07001074static inline void io_queue_async_work(struct io_kiocb *req)
Jens Axboe561fb042019-10-24 07:25:42 -06001075{
Jackie Liua197f662019-11-08 08:09:12 -07001076 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001077 struct io_kiocb *link;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001078
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001079 io_prep_async_work(req, &link);
Jens Axboe561fb042019-10-24 07:25:42 -06001080
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001081 trace_io_uring_queue_async_work(ctx, io_wq_is_hashed(&req->work), req,
1082 &req->work, req->flags);
1083 io_wq_enqueue(ctx->io_wq, &req->work);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001084
1085 if (link)
1086 io_queue_linked_timeout(link);
Jens Axboe18d9be12019-09-10 09:13:05 -06001087}
1088
Jens Axboe5262f562019-09-17 12:26:57 -06001089static void io_kill_timeout(struct io_kiocb *req)
1090{
1091 int ret;
1092
Jens Axboe2d283902019-12-04 11:08:05 -07001093 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe5262f562019-09-17 12:26:57 -06001094 if (ret != -1) {
1095 atomic_inc(&req->ctx->cq_timeouts);
Jens Axboe842f9612019-10-29 12:34:10 -06001096 list_del_init(&req->list);
Pavel Begunkovf0e20b82020-03-07 01:15:22 +03001097 req->flags |= REQ_F_COMP_LOCKED;
Jens Axboe78e19bb2019-11-06 15:21:34 -07001098 io_cqring_fill_event(req, 0);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001099 io_put_req(req);
Jens Axboe5262f562019-09-17 12:26:57 -06001100 }
1101}
1102
1103static void io_kill_timeouts(struct io_ring_ctx *ctx)
1104{
1105 struct io_kiocb *req, *tmp;
1106
1107 spin_lock_irq(&ctx->completion_lock);
1108 list_for_each_entry_safe(req, tmp, &ctx->timeout_list, list)
1109 io_kill_timeout(req);
1110 spin_unlock_irq(&ctx->completion_lock);
1111}
1112
Jens Axboede0617e2019-04-06 21:51:27 -06001113static void io_commit_cqring(struct io_ring_ctx *ctx)
1114{
1115 struct io_kiocb *req;
1116
Jens Axboe5262f562019-09-17 12:26:57 -06001117 while ((req = io_get_timeout_req(ctx)) != NULL)
1118 io_kill_timeout(req);
1119
Jens Axboede0617e2019-04-06 21:51:27 -06001120 __io_commit_cqring(ctx);
1121
Pavel Begunkov87987892020-01-18 01:22:30 +03001122 while ((req = io_get_deferred_req(ctx)) != NULL)
Jackie Liua197f662019-11-08 08:09:12 -07001123 io_queue_async_work(req);
Jens Axboede0617e2019-04-06 21:51:27 -06001124}
1125
Jens Axboe2b188cc2019-01-07 10:46:33 -07001126static struct io_uring_cqe *io_get_cqring(struct io_ring_ctx *ctx)
1127{
Hristo Venev75b28af2019-08-26 17:23:46 +00001128 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001129 unsigned tail;
1130
1131 tail = ctx->cached_cq_tail;
Stefan Bühler115e12e2019-04-24 23:54:18 +02001132 /*
1133 * writes to the cq entry need to come after reading head; the
1134 * control dependency is enough as we're using WRITE_ONCE to
1135 * fill the cq entry
1136 */
Hristo Venev75b28af2019-08-26 17:23:46 +00001137 if (tail - READ_ONCE(rings->cq.head) == rings->cq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001138 return NULL;
1139
1140 ctx->cached_cq_tail++;
Hristo Venev75b28af2019-08-26 17:23:46 +00001141 return &rings->cqes[tail & ctx->cq_mask];
Jens Axboe2b188cc2019-01-07 10:46:33 -07001142}
1143
Jens Axboef2842ab2020-01-08 11:04:00 -07001144static inline bool io_should_trigger_evfd(struct io_ring_ctx *ctx)
1145{
Jens Axboef0b493e2020-02-01 21:30:11 -07001146 if (!ctx->cq_ev_fd)
1147 return false;
Jens Axboef2842ab2020-01-08 11:04:00 -07001148 if (!ctx->eventfd_async)
1149 return true;
Jens Axboeb41e9852020-02-17 09:52:41 -07001150 return io_wq_current_is_worker();
Jens Axboef2842ab2020-01-08 11:04:00 -07001151}
1152
Jens Axboeb41e9852020-02-17 09:52:41 -07001153static void io_cqring_ev_posted(struct io_ring_ctx *ctx)
Jens Axboe8c838782019-03-12 15:48:16 -06001154{
1155 if (waitqueue_active(&ctx->wait))
1156 wake_up(&ctx->wait);
1157 if (waitqueue_active(&ctx->sqo_wait))
1158 wake_up(&ctx->sqo_wait);
Jens Axboeb41e9852020-02-17 09:52:41 -07001159 if (io_should_trigger_evfd(ctx))
Jens Axboe9b402842019-04-11 11:45:41 -06001160 eventfd_signal(ctx->cq_ev_fd, 1);
Jens Axboe8c838782019-03-12 15:48:16 -06001161}
1162
Jens Axboec4a2ed72019-11-21 21:01:26 -07001163/* Returns true if there are no backlogged entries after the flush */
1164static bool io_cqring_overflow_flush(struct io_ring_ctx *ctx, bool force)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001165{
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001166 struct io_rings *rings = ctx->rings;
1167 struct io_uring_cqe *cqe;
1168 struct io_kiocb *req;
1169 unsigned long flags;
1170 LIST_HEAD(list);
1171
1172 if (!force) {
1173 if (list_empty_careful(&ctx->cq_overflow_list))
Jens Axboec4a2ed72019-11-21 21:01:26 -07001174 return true;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001175 if ((ctx->cached_cq_tail - READ_ONCE(rings->cq.head) ==
1176 rings->cq_ring_entries))
Jens Axboec4a2ed72019-11-21 21:01:26 -07001177 return false;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001178 }
1179
1180 spin_lock_irqsave(&ctx->completion_lock, flags);
1181
1182 /* if force is set, the ring is going away. always drop after that */
1183 if (force)
Jens Axboe69b3e542020-01-08 11:01:46 -07001184 ctx->cq_overflow_flushed = 1;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001185
Jens Axboec4a2ed72019-11-21 21:01:26 -07001186 cqe = NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001187 while (!list_empty(&ctx->cq_overflow_list)) {
1188 cqe = io_get_cqring(ctx);
1189 if (!cqe && !force)
1190 break;
1191
1192 req = list_first_entry(&ctx->cq_overflow_list, struct io_kiocb,
1193 list);
1194 list_move(&req->list, &list);
Jens Axboe2ca10252020-02-13 17:17:35 -07001195 req->flags &= ~REQ_F_OVERFLOW;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001196 if (cqe) {
1197 WRITE_ONCE(cqe->user_data, req->user_data);
1198 WRITE_ONCE(cqe->res, req->result);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001199 WRITE_ONCE(cqe->flags, req->cflags);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001200 } else {
1201 WRITE_ONCE(ctx->rings->cq_overflow,
1202 atomic_inc_return(&ctx->cached_cq_overflow));
1203 }
1204 }
1205
1206 io_commit_cqring(ctx);
Jens Axboead3eb2c2019-12-18 17:12:20 -07001207 if (cqe) {
1208 clear_bit(0, &ctx->sq_check_overflow);
1209 clear_bit(0, &ctx->cq_check_overflow);
1210 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001211 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1212 io_cqring_ev_posted(ctx);
1213
1214 while (!list_empty(&list)) {
1215 req = list_first_entry(&list, struct io_kiocb, list);
1216 list_del(&req->list);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001217 io_put_req(req);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001218 }
Jens Axboec4a2ed72019-11-21 21:01:26 -07001219
1220 return cqe != NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001221}
1222
Jens Axboebcda7ba2020-02-23 16:42:51 -07001223static void __io_cqring_fill_event(struct io_kiocb *req, long res, long cflags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001224{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001225 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001226 struct io_uring_cqe *cqe;
1227
Jens Axboe78e19bb2019-11-06 15:21:34 -07001228 trace_io_uring_complete(ctx, req->user_data, res);
Jens Axboe51c3ff62019-11-03 06:52:50 -07001229
Jens Axboe2b188cc2019-01-07 10:46:33 -07001230 /*
1231 * If we can't get a cq entry, userspace overflowed the
1232 * submission (by quite a lot). Increment the overflow count in
1233 * the ring.
1234 */
1235 cqe = io_get_cqring(ctx);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001236 if (likely(cqe)) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001237 WRITE_ONCE(cqe->user_data, req->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001238 WRITE_ONCE(cqe->res, res);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001239 WRITE_ONCE(cqe->flags, cflags);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001240 } else if (ctx->cq_overflow_flushed) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07001241 WRITE_ONCE(ctx->rings->cq_overflow,
1242 atomic_inc_return(&ctx->cached_cq_overflow));
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001243 } else {
Jens Axboead3eb2c2019-12-18 17:12:20 -07001244 if (list_empty(&ctx->cq_overflow_list)) {
1245 set_bit(0, &ctx->sq_check_overflow);
1246 set_bit(0, &ctx->cq_check_overflow);
1247 }
Jens Axboe2ca10252020-02-13 17:17:35 -07001248 req->flags |= REQ_F_OVERFLOW;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001249 refcount_inc(&req->refs);
1250 req->result = res;
Jens Axboebcda7ba2020-02-23 16:42:51 -07001251 req->cflags = cflags;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001252 list_add_tail(&req->list, &ctx->cq_overflow_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001253 }
1254}
1255
Jens Axboebcda7ba2020-02-23 16:42:51 -07001256static void io_cqring_fill_event(struct io_kiocb *req, long res)
1257{
1258 __io_cqring_fill_event(req, res, 0);
1259}
1260
1261static void __io_cqring_add_event(struct io_kiocb *req, long res, long cflags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001262{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001263 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001264 unsigned long flags;
1265
1266 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001267 __io_cqring_fill_event(req, res, cflags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001268 io_commit_cqring(ctx);
1269 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1270
Jens Axboe8c838782019-03-12 15:48:16 -06001271 io_cqring_ev_posted(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001272}
1273
Jens Axboebcda7ba2020-02-23 16:42:51 -07001274static void io_cqring_add_event(struct io_kiocb *req, long res)
1275{
1276 __io_cqring_add_event(req, res, 0);
1277}
1278
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001279static inline bool io_is_fallback_req(struct io_kiocb *req)
1280{
1281 return req == (struct io_kiocb *)
1282 ((unsigned long) req->ctx->fallback_req & ~1UL);
1283}
1284
1285static struct io_kiocb *io_get_fallback_req(struct io_ring_ctx *ctx)
1286{
1287 struct io_kiocb *req;
1288
1289 req = ctx->fallback_req;
1290 if (!test_and_set_bit_lock(0, (unsigned long *) ctx->fallback_req))
1291 return req;
1292
1293 return NULL;
1294}
1295
Jens Axboe2579f912019-01-09 09:10:43 -07001296static struct io_kiocb *io_get_req(struct io_ring_ctx *ctx,
1297 struct io_submit_state *state)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001298{
Jens Axboefd6fab22019-03-14 16:30:06 -06001299 gfp_t gfp = GFP_KERNEL | __GFP_NOWARN;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001300 struct io_kiocb *req;
1301
Jens Axboe2579f912019-01-09 09:10:43 -07001302 if (!state) {
Jens Axboefd6fab22019-03-14 16:30:06 -06001303 req = kmem_cache_alloc(req_cachep, gfp);
Jens Axboe2579f912019-01-09 09:10:43 -07001304 if (unlikely(!req))
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001305 goto fallback;
Jens Axboe2579f912019-01-09 09:10:43 -07001306 } else if (!state->free_reqs) {
1307 size_t sz;
1308 int ret;
1309
1310 sz = min_t(size_t, state->ios_left, ARRAY_SIZE(state->reqs));
Jens Axboefd6fab22019-03-14 16:30:06 -06001311 ret = kmem_cache_alloc_bulk(req_cachep, gfp, sz, state->reqs);
1312
1313 /*
1314 * Bulk alloc is all-or-nothing. If we fail to get a batch,
1315 * retry single alloc to be on the safe side.
1316 */
1317 if (unlikely(ret <= 0)) {
1318 state->reqs[0] = kmem_cache_alloc(req_cachep, gfp);
1319 if (!state->reqs[0])
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001320 goto fallback;
Jens Axboefd6fab22019-03-14 16:30:06 -06001321 ret = 1;
1322 }
Jens Axboe2579f912019-01-09 09:10:43 -07001323 state->free_reqs = ret - 1;
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03001324 req = state->reqs[ret - 1];
Jens Axboe2579f912019-01-09 09:10:43 -07001325 } else {
Jens Axboe2579f912019-01-09 09:10:43 -07001326 state->free_reqs--;
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03001327 req = state->reqs[state->free_reqs];
Jens Axboe2b188cc2019-01-07 10:46:33 -07001328 }
1329
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001330got_it:
Jens Axboe1a6b74f2019-12-02 10:33:15 -07001331 req->io = NULL;
Jens Axboe60c112b2019-06-21 10:20:18 -06001332 req->file = NULL;
Jens Axboe2579f912019-01-09 09:10:43 -07001333 req->ctx = ctx;
1334 req->flags = 0;
Jens Axboee65ef562019-03-12 10:16:44 -06001335 /* one is dropped after submission, the other at completion */
1336 refcount_set(&req->refs, 2);
Jens Axboe3537b6a2020-04-03 11:19:06 -06001337 req->task = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06001338 req->result = 0;
Jens Axboe561fb042019-10-24 07:25:42 -06001339 INIT_IO_WORK(&req->work, io_wq_submit_work);
Jens Axboe2579f912019-01-09 09:10:43 -07001340 return req;
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001341fallback:
1342 req = io_get_fallback_req(ctx);
1343 if (req)
1344 goto got_it;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001345 return NULL;
1346}
1347
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001348static inline void io_put_file(struct io_kiocb *req, struct file *file,
1349 bool fixed)
1350{
1351 if (fixed)
Xiaoguang Wang05589552020-03-31 14:05:18 +08001352 percpu_ref_put(req->fixed_file_refs);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001353 else
1354 fput(file);
1355}
1356
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03001357static void __io_req_do_free(struct io_kiocb *req)
Jens Axboedef596e2019-01-09 08:59:42 -07001358{
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03001359 if (likely(!io_is_fallback_req(req)))
1360 kmem_cache_free(req_cachep, req);
1361 else
1362 clear_bit_unlock(0, (unsigned long *) req->ctx->fallback_req);
1363}
1364
Jens Axboec6ca97b302019-12-28 12:11:08 -07001365static void __io_req_aux_free(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001366{
Pavel Begunkov929a3af2020-02-19 00:19:09 +03001367 if (req->flags & REQ_F_NEED_CLEANUP)
1368 io_cleanup_req(req);
1369
YueHaibing96fd84d2020-01-07 22:22:44 +08001370 kfree(req->io);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001371 if (req->file)
1372 io_put_file(req, req->file, (req->flags & REQ_F_FIXED_FILE));
Jens Axboe3537b6a2020-04-03 11:19:06 -06001373 if (req->task)
1374 put_task_struct(req->task);
Jens Axboecccf0ee2020-01-27 16:34:48 -07001375
1376 io_req_work_drop_env(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001377}
1378
1379static void __io_free_req(struct io_kiocb *req)
1380{
Jens Axboec6ca97b302019-12-28 12:11:08 -07001381 __io_req_aux_free(req);
Jens Axboefcb323c2019-10-24 12:39:47 -06001382
Jens Axboefcb323c2019-10-24 12:39:47 -06001383 if (req->flags & REQ_F_INFLIGHT) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001384 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06001385 unsigned long flags;
1386
1387 spin_lock_irqsave(&ctx->inflight_lock, flags);
1388 list_del(&req->inflight_entry);
1389 if (waitqueue_active(&ctx->inflight_wait))
1390 wake_up(&ctx->inflight_wait);
1391 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
1392 }
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03001393
1394 percpu_ref_put(&req->ctx->refs);
1395 __io_req_do_free(req);
Jens Axboee65ef562019-03-12 10:16:44 -06001396}
1397
Jens Axboec6ca97b302019-12-28 12:11:08 -07001398struct req_batch {
1399 void *reqs[IO_IOPOLL_BATCH];
1400 int to_free;
1401 int need_iter;
1402};
1403
1404static void io_free_req_many(struct io_ring_ctx *ctx, struct req_batch *rb)
1405{
1406 if (!rb->to_free)
1407 return;
1408 if (rb->need_iter) {
1409 int i, inflight = 0;
1410 unsigned long flags;
1411
1412 for (i = 0; i < rb->to_free; i++) {
1413 struct io_kiocb *req = rb->reqs[i];
1414
Jens Axboe10fef4b2020-01-09 07:52:28 -07001415 if (req->flags & REQ_F_FIXED_FILE) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001416 req->file = NULL;
Xiaoguang Wang05589552020-03-31 14:05:18 +08001417 percpu_ref_put(req->fixed_file_refs);
Jens Axboe10fef4b2020-01-09 07:52:28 -07001418 }
Jens Axboec6ca97b302019-12-28 12:11:08 -07001419 if (req->flags & REQ_F_INFLIGHT)
1420 inflight++;
Jens Axboec6ca97b302019-12-28 12:11:08 -07001421 __io_req_aux_free(req);
1422 }
1423 if (!inflight)
1424 goto do_free;
1425
1426 spin_lock_irqsave(&ctx->inflight_lock, flags);
1427 for (i = 0; i < rb->to_free; i++) {
1428 struct io_kiocb *req = rb->reqs[i];
1429
Jens Axboe10fef4b2020-01-09 07:52:28 -07001430 if (req->flags & REQ_F_INFLIGHT) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001431 list_del(&req->inflight_entry);
1432 if (!--inflight)
1433 break;
1434 }
1435 }
1436 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
1437
1438 if (waitqueue_active(&ctx->inflight_wait))
1439 wake_up(&ctx->inflight_wait);
1440 }
1441do_free:
1442 kmem_cache_free_bulk(req_cachep, rb->to_free, rb->reqs);
1443 percpu_ref_put_many(&ctx->refs, rb->to_free);
Jens Axboec6ca97b302019-12-28 12:11:08 -07001444 rb->to_free = rb->need_iter = 0;
Jens Axboee65ef562019-03-12 10:16:44 -06001445}
1446
Jackie Liua197f662019-11-08 08:09:12 -07001447static bool io_link_cancel_timeout(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -06001448{
Jackie Liua197f662019-11-08 08:09:12 -07001449 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001450 int ret;
1451
Jens Axboe2d283902019-12-04 11:08:05 -07001452 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe2665abf2019-11-05 12:40:47 -07001453 if (ret != -1) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001454 io_cqring_fill_event(req, -ECANCELED);
Jens Axboe2665abf2019-11-05 12:40:47 -07001455 io_commit_cqring(ctx);
1456 req->flags &= ~REQ_F_LINK;
Jackie Liuec9c02a2019-11-08 23:50:36 +08001457 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07001458 return true;
1459 }
1460
1461 return false;
1462}
1463
Jens Axboeba816ad2019-09-28 11:36:45 -06001464static void io_req_link_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboe9e645e112019-05-10 16:07:28 -06001465{
Jens Axboe2665abf2019-11-05 12:40:47 -07001466 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001467 bool wake_ev = false;
Jens Axboe9e645e112019-05-10 16:07:28 -06001468
Jens Axboe4d7dd462019-11-20 13:03:52 -07001469 /* Already got next link */
1470 if (req->flags & REQ_F_LINK_NEXT)
1471 return;
1472
Jens Axboe9e645e112019-05-10 16:07:28 -06001473 /*
1474 * The list should never be empty when we are called here. But could
1475 * potentially happen if the chain is messed up, check to be on the
1476 * safe side.
1477 */
Pavel Begunkov44932332019-12-05 16:16:35 +03001478 while (!list_empty(&req->link_list)) {
1479 struct io_kiocb *nxt = list_first_entry(&req->link_list,
1480 struct io_kiocb, link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001481
Pavel Begunkov44932332019-12-05 16:16:35 +03001482 if (unlikely((req->flags & REQ_F_LINK_TIMEOUT) &&
1483 (nxt->flags & REQ_F_TIMEOUT))) {
1484 list_del_init(&nxt->link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001485 wake_ev |= io_link_cancel_timeout(nxt);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001486 req->flags &= ~REQ_F_LINK_TIMEOUT;
1487 continue;
1488 }
Jens Axboe9e645e112019-05-10 16:07:28 -06001489
Pavel Begunkov44932332019-12-05 16:16:35 +03001490 list_del_init(&req->link_list);
1491 if (!list_empty(&nxt->link_list))
1492 nxt->flags |= REQ_F_LINK;
Pavel Begunkovb18fdf72019-11-21 23:21:02 +03001493 *nxtptr = nxt;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001494 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06001495 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001496
Jens Axboe4d7dd462019-11-20 13:03:52 -07001497 req->flags |= REQ_F_LINK_NEXT;
Jens Axboe2665abf2019-11-05 12:40:47 -07001498 if (wake_ev)
1499 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001500}
1501
1502/*
1503 * Called if REQ_F_LINK is set, and we fail the head request
1504 */
1505static void io_fail_links(struct io_kiocb *req)
1506{
Jens Axboe2665abf2019-11-05 12:40:47 -07001507 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001508 unsigned long flags;
1509
1510 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboe9e645e112019-05-10 16:07:28 -06001511
1512 while (!list_empty(&req->link_list)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03001513 struct io_kiocb *link = list_first_entry(&req->link_list,
1514 struct io_kiocb, link_list);
Jens Axboe9e645e112019-05-10 16:07:28 -06001515
Pavel Begunkov44932332019-12-05 16:16:35 +03001516 list_del_init(&link->link_list);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02001517 trace_io_uring_fail_link(req, link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001518
1519 if ((req->flags & REQ_F_LINK_TIMEOUT) &&
Jens Axboed625c6e2019-12-17 19:53:05 -07001520 link->opcode == IORING_OP_LINK_TIMEOUT) {
Jackie Liua197f662019-11-08 08:09:12 -07001521 io_link_cancel_timeout(link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001522 } else {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001523 io_cqring_fill_event(link, -ECANCELED);
Jens Axboe978db572019-11-14 22:39:04 -07001524 __io_double_put_req(link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001525 }
Jens Axboe5d960722019-11-19 15:31:28 -07001526 req->flags &= ~REQ_F_LINK_TIMEOUT;
Jens Axboe9e645e112019-05-10 16:07:28 -06001527 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001528
1529 io_commit_cqring(ctx);
1530 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1531 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001532}
1533
Jens Axboe4d7dd462019-11-20 13:03:52 -07001534static void io_req_find_next(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboe9e645e112019-05-10 16:07:28 -06001535{
Jens Axboe4d7dd462019-11-20 13:03:52 -07001536 if (likely(!(req->flags & REQ_F_LINK)))
Jens Axboe2665abf2019-11-05 12:40:47 -07001537 return;
Jens Axboe2665abf2019-11-05 12:40:47 -07001538
Jens Axboe9e645e112019-05-10 16:07:28 -06001539 /*
1540 * If LINK is set, we have dependent requests in this chain. If we
1541 * didn't fail this request, queue the first one up, moving any other
1542 * dependencies to the next request. In case of failure, fail the rest
1543 * of the chain.
1544 */
Jens Axboe2665abf2019-11-05 12:40:47 -07001545 if (req->flags & REQ_F_FAIL_LINK) {
1546 io_fail_links(req);
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001547 } else if ((req->flags & (REQ_F_LINK_TIMEOUT | REQ_F_COMP_LOCKED)) ==
1548 REQ_F_LINK_TIMEOUT) {
Jens Axboe2665abf2019-11-05 12:40:47 -07001549 struct io_ring_ctx *ctx = req->ctx;
1550 unsigned long flags;
1551
1552 /*
1553 * If this is a timeout link, we could be racing with the
1554 * timeout timer. Grab the completion lock for this case to
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001555 * protect against that.
Jens Axboe2665abf2019-11-05 12:40:47 -07001556 */
1557 spin_lock_irqsave(&ctx->completion_lock, flags);
1558 io_req_link_next(req, nxt);
1559 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1560 } else {
1561 io_req_link_next(req, nxt);
Jens Axboe9e645e112019-05-10 16:07:28 -06001562 }
Jens Axboe4d7dd462019-11-20 13:03:52 -07001563}
Jens Axboe9e645e112019-05-10 16:07:28 -06001564
Jackie Liuc69f8db2019-11-09 11:00:08 +08001565static void io_free_req(struct io_kiocb *req)
1566{
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001567 struct io_kiocb *nxt = NULL;
1568
1569 io_req_find_next(req, &nxt);
Pavel Begunkov70cf9f32019-11-21 23:21:00 +03001570 __io_free_req(req);
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001571
1572 if (nxt)
1573 io_queue_async_work(nxt);
Jackie Liuc69f8db2019-11-09 11:00:08 +08001574}
1575
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001576static void io_link_work_cb(struct io_wq_work **workptr)
1577{
Pavel Begunkov18a542f2020-03-23 00:23:29 +03001578 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
1579 struct io_kiocb *link;
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001580
Pavel Begunkov18a542f2020-03-23 00:23:29 +03001581 link = list_first_entry(&req->link_list, struct io_kiocb, link_list);
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001582 io_queue_linked_timeout(link);
1583 io_wq_submit_work(workptr);
1584}
1585
1586static void io_wq_assign_next(struct io_wq_work **workptr, struct io_kiocb *nxt)
1587{
1588 struct io_kiocb *link;
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001589 const struct io_op_def *def = &io_op_defs[nxt->opcode];
1590
1591 if ((nxt->flags & REQ_F_ISREG) && def->hash_reg_file)
1592 io_wq_hash_work(&nxt->work, file_inode(nxt->file));
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001593
1594 *workptr = &nxt->work;
1595 link = io_prep_linked_timeout(nxt);
Pavel Begunkov18a542f2020-03-23 00:23:29 +03001596 if (link)
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001597 nxt->work.func = io_link_work_cb;
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001598}
1599
Jens Axboeba816ad2019-09-28 11:36:45 -06001600/*
1601 * Drop reference to request, return next in chain (if there is one) if this
1602 * was the last reference to this request.
1603 */
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001604__attribute__((nonnull))
Jackie Liuec9c02a2019-11-08 23:50:36 +08001605static void io_put_req_find_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboee65ef562019-03-12 10:16:44 -06001606{
Jens Axboe2a44f462020-02-25 13:25:41 -07001607 if (refcount_dec_and_test(&req->refs)) {
1608 io_req_find_next(req, nxtptr);
Jens Axboe4d7dd462019-11-20 13:03:52 -07001609 __io_free_req(req);
Jens Axboe2a44f462020-02-25 13:25:41 -07001610 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001611}
1612
Jens Axboe2b188cc2019-01-07 10:46:33 -07001613static void io_put_req(struct io_kiocb *req)
1614{
Jens Axboedef596e2019-01-09 08:59:42 -07001615 if (refcount_dec_and_test(&req->refs))
1616 io_free_req(req);
1617}
1618
Pavel Begunkove9fd9392020-03-04 16:14:12 +03001619static void io_steal_work(struct io_kiocb *req,
1620 struct io_wq_work **workptr)
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001621{
1622 /*
1623 * It's in an io-wq worker, so there always should be at least
1624 * one reference, which will be dropped in io_put_work() just
1625 * after the current handler returns.
1626 *
1627 * It also means, that if the counter dropped to 1, then there is
1628 * no asynchronous users left, so it's safe to steal the next work.
1629 */
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001630 if (refcount_read(&req->refs) == 1) {
1631 struct io_kiocb *nxt = NULL;
1632
1633 io_req_find_next(req, &nxt);
1634 if (nxt)
1635 io_wq_assign_next(workptr, nxt);
1636 }
1637}
1638
Jens Axboe978db572019-11-14 22:39:04 -07001639/*
1640 * Must only be used if we don't need to care about links, usually from
1641 * within the completion handling itself.
1642 */
1643static void __io_double_put_req(struct io_kiocb *req)
Jens Axboea3a0e432019-08-20 11:03:11 -06001644{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001645 /* drop both submit and complete references */
1646 if (refcount_sub_and_test(2, &req->refs))
1647 __io_free_req(req);
1648}
1649
Jens Axboe978db572019-11-14 22:39:04 -07001650static void io_double_put_req(struct io_kiocb *req)
1651{
1652 /* drop both submit and complete references */
1653 if (refcount_sub_and_test(2, &req->refs))
1654 io_free_req(req);
1655}
1656
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001657static unsigned io_cqring_events(struct io_ring_ctx *ctx, bool noflush)
Jens Axboea3a0e432019-08-20 11:03:11 -06001658{
Jens Axboe84f97dc2019-11-06 11:27:53 -07001659 struct io_rings *rings = ctx->rings;
1660
Jens Axboead3eb2c2019-12-18 17:12:20 -07001661 if (test_bit(0, &ctx->cq_check_overflow)) {
1662 /*
1663 * noflush == true is from the waitqueue handler, just ensure
1664 * we wake up the task, and the next invocation will flush the
1665 * entries. We cannot safely to it from here.
1666 */
1667 if (noflush && !list_empty(&ctx->cq_overflow_list))
1668 return -1U;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001669
Jens Axboead3eb2c2019-12-18 17:12:20 -07001670 io_cqring_overflow_flush(ctx, false);
1671 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001672
Jens Axboea3a0e432019-08-20 11:03:11 -06001673 /* See comment at the top of this file */
1674 smp_rmb();
Jens Axboead3eb2c2019-12-18 17:12:20 -07001675 return ctx->cached_cq_tail - READ_ONCE(rings->cq.head);
Jens Axboea3a0e432019-08-20 11:03:11 -06001676}
1677
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03001678static inline unsigned int io_sqring_entries(struct io_ring_ctx *ctx)
1679{
1680 struct io_rings *rings = ctx->rings;
1681
1682 /* make sure SQ entry isn't read before tail */
1683 return smp_load_acquire(&rings->sq.tail) - ctx->cached_sq_head;
1684}
1685
Jens Axboe8237e042019-12-28 10:48:22 -07001686static inline bool io_req_multi_free(struct req_batch *rb, struct io_kiocb *req)
Jens Axboee94f1412019-12-19 12:06:02 -07001687{
Jens Axboec6ca97b302019-12-28 12:11:08 -07001688 if ((req->flags & REQ_F_LINK) || io_is_fallback_req(req))
1689 return false;
Jens Axboee94f1412019-12-19 12:06:02 -07001690
Jens Axboec6ca97b302019-12-28 12:11:08 -07001691 if (!(req->flags & REQ_F_FIXED_FILE) || req->io)
1692 rb->need_iter++;
1693
1694 rb->reqs[rb->to_free++] = req;
1695 if (unlikely(rb->to_free == ARRAY_SIZE(rb->reqs)))
1696 io_free_req_many(req->ctx, rb);
1697 return true;
Jens Axboee94f1412019-12-19 12:06:02 -07001698}
1699
Jens Axboebcda7ba2020-02-23 16:42:51 -07001700static int io_put_kbuf(struct io_kiocb *req)
1701{
Jens Axboe4d954c22020-02-27 07:31:19 -07001702 struct io_buffer *kbuf;
Jens Axboebcda7ba2020-02-23 16:42:51 -07001703 int cflags;
1704
Jens Axboe4d954c22020-02-27 07:31:19 -07001705 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
Jens Axboebcda7ba2020-02-23 16:42:51 -07001706 cflags = kbuf->bid << IORING_CQE_BUFFER_SHIFT;
1707 cflags |= IORING_CQE_F_BUFFER;
1708 req->rw.addr = 0;
1709 kfree(kbuf);
1710 return cflags;
1711}
1712
Jens Axboedef596e2019-01-09 08:59:42 -07001713/*
1714 * Find and free completed poll iocbs
1715 */
1716static void io_iopoll_complete(struct io_ring_ctx *ctx, unsigned int *nr_events,
1717 struct list_head *done)
1718{
Jens Axboe8237e042019-12-28 10:48:22 -07001719 struct req_batch rb;
Jens Axboedef596e2019-01-09 08:59:42 -07001720 struct io_kiocb *req;
Jens Axboedef596e2019-01-09 08:59:42 -07001721
Jens Axboec6ca97b302019-12-28 12:11:08 -07001722 rb.to_free = rb.need_iter = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001723 while (!list_empty(done)) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07001724 int cflags = 0;
1725
Jens Axboedef596e2019-01-09 08:59:42 -07001726 req = list_first_entry(done, struct io_kiocb, list);
1727 list_del(&req->list);
1728
Jens Axboebcda7ba2020-02-23 16:42:51 -07001729 if (req->flags & REQ_F_BUFFER_SELECTED)
1730 cflags = io_put_kbuf(req);
1731
1732 __io_cqring_fill_event(req, req->result, cflags);
Jens Axboedef596e2019-01-09 08:59:42 -07001733 (*nr_events)++;
1734
Jens Axboe8237e042019-12-28 10:48:22 -07001735 if (refcount_dec_and_test(&req->refs) &&
1736 !io_req_multi_free(&rb, req))
1737 io_free_req(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001738 }
Jens Axboedef596e2019-01-09 08:59:42 -07001739
Jens Axboe09bb8392019-03-13 12:39:28 -06001740 io_commit_cqring(ctx);
Xiaoguang Wang32b22442020-03-11 09:26:09 +08001741 if (ctx->flags & IORING_SETUP_SQPOLL)
1742 io_cqring_ev_posted(ctx);
Jens Axboe8237e042019-12-28 10:48:22 -07001743 io_free_req_many(ctx, &rb);
Jens Axboedef596e2019-01-09 08:59:42 -07001744}
1745
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001746static void io_iopoll_queue(struct list_head *again)
1747{
1748 struct io_kiocb *req;
1749
1750 do {
1751 req = list_first_entry(again, struct io_kiocb, list);
1752 list_del(&req->list);
1753 refcount_inc(&req->refs);
1754 io_queue_async_work(req);
1755 } while (!list_empty(again));
1756}
1757
Jens Axboedef596e2019-01-09 08:59:42 -07001758static int io_do_iopoll(struct io_ring_ctx *ctx, unsigned int *nr_events,
1759 long min)
1760{
1761 struct io_kiocb *req, *tmp;
1762 LIST_HEAD(done);
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001763 LIST_HEAD(again);
Jens Axboedef596e2019-01-09 08:59:42 -07001764 bool spin;
1765 int ret;
1766
1767 /*
1768 * Only spin for completions if we don't have multiple devices hanging
1769 * off our complete list, and we're under the requested amount.
1770 */
1771 spin = !ctx->poll_multi_file && *nr_events < min;
1772
1773 ret = 0;
1774 list_for_each_entry_safe(req, tmp, &ctx->poll_list, list) {
Jens Axboe9adbd452019-12-20 08:45:55 -07001775 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboedef596e2019-01-09 08:59:42 -07001776
1777 /*
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001778 * Move completed and retryable entries to our local lists.
1779 * If we find a request that requires polling, break out
1780 * and complete those lists first, if we have entries there.
Jens Axboedef596e2019-01-09 08:59:42 -07001781 */
1782 if (req->flags & REQ_F_IOPOLL_COMPLETED) {
1783 list_move_tail(&req->list, &done);
1784 continue;
1785 }
1786 if (!list_empty(&done))
1787 break;
1788
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001789 if (req->result == -EAGAIN) {
1790 list_move_tail(&req->list, &again);
1791 continue;
1792 }
1793 if (!list_empty(&again))
1794 break;
1795
Jens Axboedef596e2019-01-09 08:59:42 -07001796 ret = kiocb->ki_filp->f_op->iopoll(kiocb, spin);
1797 if (ret < 0)
1798 break;
1799
1800 if (ret && spin)
1801 spin = false;
1802 ret = 0;
1803 }
1804
1805 if (!list_empty(&done))
1806 io_iopoll_complete(ctx, nr_events, &done);
1807
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001808 if (!list_empty(&again))
1809 io_iopoll_queue(&again);
1810
Jens Axboedef596e2019-01-09 08:59:42 -07001811 return ret;
1812}
1813
1814/*
Brian Gianforcarod195a662019-12-13 03:09:50 -08001815 * Poll for a minimum of 'min' events. Note that if min == 0 we consider that a
Jens Axboedef596e2019-01-09 08:59:42 -07001816 * non-spinning poll check - we'll still enter the driver poll loop, but only
1817 * as a non-spinning completion check.
1818 */
1819static int io_iopoll_getevents(struct io_ring_ctx *ctx, unsigned int *nr_events,
1820 long min)
1821{
Jens Axboe08f54392019-08-21 22:19:11 -06001822 while (!list_empty(&ctx->poll_list) && !need_resched()) {
Jens Axboedef596e2019-01-09 08:59:42 -07001823 int ret;
1824
1825 ret = io_do_iopoll(ctx, nr_events, min);
1826 if (ret < 0)
1827 return ret;
1828 if (!min || *nr_events >= min)
1829 return 0;
1830 }
1831
1832 return 1;
1833}
1834
1835/*
1836 * We can't just wait for polled events to come to us, we have to actively
1837 * find and complete them.
1838 */
1839static void io_iopoll_reap_events(struct io_ring_ctx *ctx)
1840{
1841 if (!(ctx->flags & IORING_SETUP_IOPOLL))
1842 return;
1843
1844 mutex_lock(&ctx->uring_lock);
1845 while (!list_empty(&ctx->poll_list)) {
1846 unsigned int nr_events = 0;
1847
1848 io_iopoll_getevents(ctx, &nr_events, 1);
Jens Axboe08f54392019-08-21 22:19:11 -06001849
1850 /*
1851 * Ensure we allow local-to-the-cpu processing to take place,
1852 * in this case we need to ensure that we reap all events.
1853 */
1854 cond_resched();
Jens Axboedef596e2019-01-09 08:59:42 -07001855 }
1856 mutex_unlock(&ctx->uring_lock);
1857}
1858
Xiaoguang Wangc7849be2020-02-22 14:46:05 +08001859static int io_iopoll_check(struct io_ring_ctx *ctx, unsigned *nr_events,
1860 long min)
Jens Axboedef596e2019-01-09 08:59:42 -07001861{
Jens Axboe2b2ed972019-10-25 10:06:15 -06001862 int iters = 0, ret = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001863
Xiaoguang Wangc7849be2020-02-22 14:46:05 +08001864 /*
1865 * We disallow the app entering submit/complete with polling, but we
1866 * still need to lock the ring to prevent racing with polled issue
1867 * that got punted to a workqueue.
1868 */
1869 mutex_lock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07001870 do {
1871 int tmin = 0;
1872
Jens Axboe500f9fb2019-08-19 12:15:59 -06001873 /*
Jens Axboea3a0e432019-08-20 11:03:11 -06001874 * Don't enter poll loop if we already have events pending.
1875 * If we do, we can potentially be spinning for commands that
1876 * already triggered a CQE (eg in error).
1877 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001878 if (io_cqring_events(ctx, false))
Jens Axboea3a0e432019-08-20 11:03:11 -06001879 break;
1880
1881 /*
Jens Axboe500f9fb2019-08-19 12:15:59 -06001882 * If a submit got punted to a workqueue, we can have the
1883 * application entering polling for a command before it gets
1884 * issued. That app will hold the uring_lock for the duration
1885 * of the poll right here, so we need to take a breather every
1886 * now and then to ensure that the issue has a chance to add
1887 * the poll to the issued list. Otherwise we can spin here
1888 * forever, while the workqueue is stuck trying to acquire the
1889 * very same mutex.
1890 */
1891 if (!(++iters & 7)) {
1892 mutex_unlock(&ctx->uring_lock);
1893 mutex_lock(&ctx->uring_lock);
1894 }
1895
Jens Axboedef596e2019-01-09 08:59:42 -07001896 if (*nr_events < min)
1897 tmin = min - *nr_events;
1898
1899 ret = io_iopoll_getevents(ctx, nr_events, tmin);
1900 if (ret <= 0)
1901 break;
1902 ret = 0;
1903 } while (min && !*nr_events && !need_resched());
1904
Jens Axboe500f9fb2019-08-19 12:15:59 -06001905 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07001906 return ret;
1907}
1908
Jens Axboe491381ce2019-10-17 09:20:46 -06001909static void kiocb_end_write(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001910{
Jens Axboe491381ce2019-10-17 09:20:46 -06001911 /*
1912 * Tell lockdep we inherited freeze protection from submission
1913 * thread.
1914 */
1915 if (req->flags & REQ_F_ISREG) {
1916 struct inode *inode = file_inode(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001917
Jens Axboe491381ce2019-10-17 09:20:46 -06001918 __sb_writers_acquired(inode->i_sb, SB_FREEZE_WRITE);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001919 }
Jens Axboe491381ce2019-10-17 09:20:46 -06001920 file_end_write(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001921}
1922
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001923static inline void req_set_fail_links(struct io_kiocb *req)
1924{
1925 if ((req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) == REQ_F_LINK)
1926 req->flags |= REQ_F_FAIL_LINK;
1927}
1928
Jens Axboeba816ad2019-09-28 11:36:45 -06001929static void io_complete_rw_common(struct kiocb *kiocb, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001930{
Jens Axboe9adbd452019-12-20 08:45:55 -07001931 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001932 int cflags = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001933
Jens Axboe491381ce2019-10-17 09:20:46 -06001934 if (kiocb->ki_flags & IOCB_WRITE)
1935 kiocb_end_write(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001936
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001937 if (res != req->result)
1938 req_set_fail_links(req);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001939 if (req->flags & REQ_F_BUFFER_SELECTED)
1940 cflags = io_put_kbuf(req);
1941 __io_cqring_add_event(req, res, cflags);
Jens Axboeba816ad2019-09-28 11:36:45 -06001942}
1943
1944static void io_complete_rw(struct kiocb *kiocb, long res, long res2)
1945{
Jens Axboe9adbd452019-12-20 08:45:55 -07001946 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboeba816ad2019-09-28 11:36:45 -06001947
1948 io_complete_rw_common(kiocb, res);
Jens Axboee65ef562019-03-12 10:16:44 -06001949 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001950}
1951
Jens Axboedef596e2019-01-09 08:59:42 -07001952static void io_complete_rw_iopoll(struct kiocb *kiocb, long res, long res2)
1953{
Jens Axboe9adbd452019-12-20 08:45:55 -07001954 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboedef596e2019-01-09 08:59:42 -07001955
Jens Axboe491381ce2019-10-17 09:20:46 -06001956 if (kiocb->ki_flags & IOCB_WRITE)
1957 kiocb_end_write(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001958
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001959 if (res != req->result)
1960 req_set_fail_links(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06001961 req->result = res;
Jens Axboedef596e2019-01-09 08:59:42 -07001962 if (res != -EAGAIN)
1963 req->flags |= REQ_F_IOPOLL_COMPLETED;
1964}
1965
1966/*
1967 * After the iocb has been issued, it's safe to be found on the poll list.
1968 * Adding the kiocb to the list AFTER submission ensures that we don't
1969 * find it from a io_iopoll_getevents() thread before the issuer is done
1970 * accessing the kiocb cookie.
1971 */
1972static void io_iopoll_req_issued(struct io_kiocb *req)
1973{
1974 struct io_ring_ctx *ctx = req->ctx;
1975
1976 /*
1977 * Track whether we have multiple files in our lists. This will impact
1978 * how we do polling eventually, not spinning if we're on potentially
1979 * different devices.
1980 */
1981 if (list_empty(&ctx->poll_list)) {
1982 ctx->poll_multi_file = false;
1983 } else if (!ctx->poll_multi_file) {
1984 struct io_kiocb *list_req;
1985
1986 list_req = list_first_entry(&ctx->poll_list, struct io_kiocb,
1987 list);
Jens Axboe9adbd452019-12-20 08:45:55 -07001988 if (list_req->file != req->file)
Jens Axboedef596e2019-01-09 08:59:42 -07001989 ctx->poll_multi_file = true;
1990 }
1991
1992 /*
1993 * For fast devices, IO may have already completed. If it has, add
1994 * it to the front so we find it first.
1995 */
1996 if (req->flags & REQ_F_IOPOLL_COMPLETED)
1997 list_add(&req->list, &ctx->poll_list);
1998 else
1999 list_add_tail(&req->list, &ctx->poll_list);
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08002000
2001 if ((ctx->flags & IORING_SETUP_SQPOLL) &&
2002 wq_has_sleeper(&ctx->sqo_wait))
2003 wake_up(&ctx->sqo_wait);
Jens Axboedef596e2019-01-09 08:59:42 -07002004}
2005
Jens Axboe3d6770f2019-04-13 11:50:54 -06002006static void io_file_put(struct io_submit_state *state)
Jens Axboe9a56a232019-01-09 09:06:50 -07002007{
Jens Axboe3d6770f2019-04-13 11:50:54 -06002008 if (state->file) {
Jens Axboe9a56a232019-01-09 09:06:50 -07002009 int diff = state->has_refs - state->used_refs;
2010
2011 if (diff)
2012 fput_many(state->file, diff);
2013 state->file = NULL;
2014 }
2015}
2016
2017/*
2018 * Get as many references to a file as we have IOs left in this submission,
2019 * assuming most submissions are for one file, or at least that each file
2020 * has more than one submission.
2021 */
Pavel Begunkov8da11c12020-02-24 11:32:44 +03002022static struct file *__io_file_get(struct io_submit_state *state, int fd)
Jens Axboe9a56a232019-01-09 09:06:50 -07002023{
2024 if (!state)
2025 return fget(fd);
2026
2027 if (state->file) {
2028 if (state->fd == fd) {
2029 state->used_refs++;
2030 state->ios_left--;
2031 return state->file;
2032 }
Jens Axboe3d6770f2019-04-13 11:50:54 -06002033 io_file_put(state);
Jens Axboe9a56a232019-01-09 09:06:50 -07002034 }
2035 state->file = fget_many(fd, state->ios_left);
2036 if (!state->file)
2037 return NULL;
2038
2039 state->fd = fd;
2040 state->has_refs = state->ios_left;
2041 state->used_refs = 1;
2042 state->ios_left--;
2043 return state->file;
2044}
2045
Jens Axboe2b188cc2019-01-07 10:46:33 -07002046/*
2047 * If we tracked the file through the SCM inflight mechanism, we could support
2048 * any file. For now, just ensure that anything potentially problematic is done
2049 * inline.
2050 */
2051static bool io_file_supports_async(struct file *file)
2052{
2053 umode_t mode = file_inode(file)->i_mode;
2054
Jens Axboe10d59342019-12-09 20:16:22 -07002055 if (S_ISBLK(mode) || S_ISCHR(mode) || S_ISSOCK(mode))
Jens Axboe2b188cc2019-01-07 10:46:33 -07002056 return true;
2057 if (S_ISREG(mode) && file->f_op != &io_uring_fops)
2058 return true;
2059
2060 return false;
2061}
2062
Jens Axboe3529d8c2019-12-19 18:24:38 -07002063static int io_prep_rw(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2064 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002065{
Jens Axboedef596e2019-01-09 08:59:42 -07002066 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9adbd452019-12-20 08:45:55 -07002067 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe09bb8392019-03-13 12:39:28 -06002068 unsigned ioprio;
2069 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002070
Jens Axboe491381ce2019-10-17 09:20:46 -06002071 if (S_ISREG(file_inode(req->file)->i_mode))
2072 req->flags |= REQ_F_ISREG;
2073
Jens Axboe2b188cc2019-01-07 10:46:33 -07002074 kiocb->ki_pos = READ_ONCE(sqe->off);
Jens Axboeba042912019-12-25 16:33:42 -07002075 if (kiocb->ki_pos == -1 && !(req->file->f_mode & FMODE_STREAM)) {
2076 req->flags |= REQ_F_CUR_POS;
2077 kiocb->ki_pos = req->file->f_pos;
2078 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002079 kiocb->ki_hint = ki_hint_validate(file_write_hint(kiocb->ki_filp));
Pavel Begunkov3e577dc2020-02-01 03:58:42 +03002080 kiocb->ki_flags = iocb_flags(kiocb->ki_filp);
2081 ret = kiocb_set_rw_flags(kiocb, READ_ONCE(sqe->rw_flags));
2082 if (unlikely(ret))
2083 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002084
2085 ioprio = READ_ONCE(sqe->ioprio);
2086 if (ioprio) {
2087 ret = ioprio_check_cap(ioprio);
2088 if (ret)
Jens Axboe09bb8392019-03-13 12:39:28 -06002089 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002090
2091 kiocb->ki_ioprio = ioprio;
2092 } else
2093 kiocb->ki_ioprio = get_current_ioprio();
2094
Stefan Bühler8449eed2019-04-27 20:34:19 +02002095 /* don't allow async punt if RWF_NOWAIT was requested */
Jens Axboe491381ce2019-10-17 09:20:46 -06002096 if ((kiocb->ki_flags & IOCB_NOWAIT) ||
2097 (req->file->f_flags & O_NONBLOCK))
Stefan Bühler8449eed2019-04-27 20:34:19 +02002098 req->flags |= REQ_F_NOWAIT;
2099
2100 if (force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002101 kiocb->ki_flags |= IOCB_NOWAIT;
Stefan Bühler8449eed2019-04-27 20:34:19 +02002102
Jens Axboedef596e2019-01-09 08:59:42 -07002103 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07002104 if (!(kiocb->ki_flags & IOCB_DIRECT) ||
2105 !kiocb->ki_filp->f_op->iopoll)
Jens Axboe09bb8392019-03-13 12:39:28 -06002106 return -EOPNOTSUPP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002107
Jens Axboedef596e2019-01-09 08:59:42 -07002108 kiocb->ki_flags |= IOCB_HIPRI;
2109 kiocb->ki_complete = io_complete_rw_iopoll;
Jens Axboe6873e0b2019-10-30 13:53:09 -06002110 req->result = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07002111 } else {
Jens Axboe09bb8392019-03-13 12:39:28 -06002112 if (kiocb->ki_flags & IOCB_HIPRI)
2113 return -EINVAL;
Jens Axboedef596e2019-01-09 08:59:42 -07002114 kiocb->ki_complete = io_complete_rw;
2115 }
Jens Axboe9adbd452019-12-20 08:45:55 -07002116
Jens Axboe3529d8c2019-12-19 18:24:38 -07002117 req->rw.addr = READ_ONCE(sqe->addr);
2118 req->rw.len = READ_ONCE(sqe->len);
Jens Axboebcda7ba2020-02-23 16:42:51 -07002119 /* we own ->private, reuse it for the buffer index / buffer ID */
Jens Axboe9adbd452019-12-20 08:45:55 -07002120 req->rw.kiocb.private = (void *) (unsigned long)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002121 READ_ONCE(sqe->buf_index);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002122 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002123}
2124
2125static inline void io_rw_done(struct kiocb *kiocb, ssize_t ret)
2126{
2127 switch (ret) {
2128 case -EIOCBQUEUED:
2129 break;
2130 case -ERESTARTSYS:
2131 case -ERESTARTNOINTR:
2132 case -ERESTARTNOHAND:
2133 case -ERESTART_RESTARTBLOCK:
2134 /*
2135 * We can't just restart the syscall, since previously
2136 * submitted sqes may already be in progress. Just fail this
2137 * IO with EINTR.
2138 */
2139 ret = -EINTR;
2140 /* fall through */
2141 default:
2142 kiocb->ki_complete(kiocb, ret, 0);
2143 }
2144}
2145
Pavel Begunkov014db002020-03-03 21:33:12 +03002146static void kiocb_done(struct kiocb *kiocb, ssize_t ret)
Jens Axboeba816ad2019-09-28 11:36:45 -06002147{
Jens Axboeba042912019-12-25 16:33:42 -07002148 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
2149
2150 if (req->flags & REQ_F_CUR_POS)
2151 req->file->f_pos = kiocb->ki_pos;
Pavel Begunkovbcaec082020-02-24 11:30:18 +03002152 if (ret >= 0 && kiocb->ki_complete == io_complete_rw)
Pavel Begunkov014db002020-03-03 21:33:12 +03002153 io_complete_rw(kiocb, ret, 0);
Jens Axboeba816ad2019-09-28 11:36:45 -06002154 else
2155 io_rw_done(kiocb, ret);
2156}
2157
Jens Axboe9adbd452019-12-20 08:45:55 -07002158static ssize_t io_import_fixed(struct io_kiocb *req, int rw,
Pavel Begunkov7d009162019-11-25 23:14:40 +03002159 struct iov_iter *iter)
Jens Axboeedafcce2019-01-09 09:16:05 -07002160{
Jens Axboe9adbd452019-12-20 08:45:55 -07002161 struct io_ring_ctx *ctx = req->ctx;
2162 size_t len = req->rw.len;
Jens Axboeedafcce2019-01-09 09:16:05 -07002163 struct io_mapped_ubuf *imu;
2164 unsigned index, buf_index;
2165 size_t offset;
2166 u64 buf_addr;
2167
2168 /* attempt to use fixed buffers without having provided iovecs */
2169 if (unlikely(!ctx->user_bufs))
2170 return -EFAULT;
2171
Jens Axboe9adbd452019-12-20 08:45:55 -07002172 buf_index = (unsigned long) req->rw.kiocb.private;
Jens Axboeedafcce2019-01-09 09:16:05 -07002173 if (unlikely(buf_index >= ctx->nr_user_bufs))
2174 return -EFAULT;
2175
2176 index = array_index_nospec(buf_index, ctx->nr_user_bufs);
2177 imu = &ctx->user_bufs[index];
Jens Axboe9adbd452019-12-20 08:45:55 -07002178 buf_addr = req->rw.addr;
Jens Axboeedafcce2019-01-09 09:16:05 -07002179
2180 /* overflow */
2181 if (buf_addr + len < buf_addr)
2182 return -EFAULT;
2183 /* not inside the mapped region */
2184 if (buf_addr < imu->ubuf || buf_addr + len > imu->ubuf + imu->len)
2185 return -EFAULT;
2186
2187 /*
2188 * May not be a start of buffer, set size appropriately
2189 * and advance us to the beginning.
2190 */
2191 offset = buf_addr - imu->ubuf;
2192 iov_iter_bvec(iter, rw, imu->bvec, imu->nr_bvecs, offset + len);
Jens Axboebd11b3a2019-07-20 08:37:31 -06002193
2194 if (offset) {
2195 /*
2196 * Don't use iov_iter_advance() here, as it's really slow for
2197 * using the latter parts of a big fixed buffer - it iterates
2198 * over each segment manually. We can cheat a bit here, because
2199 * we know that:
2200 *
2201 * 1) it's a BVEC iter, we set it up
2202 * 2) all bvecs are PAGE_SIZE in size, except potentially the
2203 * first and last bvec
2204 *
2205 * So just find our index, and adjust the iterator afterwards.
2206 * If the offset is within the first bvec (or the whole first
2207 * bvec, just use iov_iter_advance(). This makes it easier
2208 * since we can just skip the first segment, which may not
2209 * be PAGE_SIZE aligned.
2210 */
2211 const struct bio_vec *bvec = imu->bvec;
2212
2213 if (offset <= bvec->bv_len) {
2214 iov_iter_advance(iter, offset);
2215 } else {
2216 unsigned long seg_skip;
2217
2218 /* skip first vec */
2219 offset -= bvec->bv_len;
2220 seg_skip = 1 + (offset >> PAGE_SHIFT);
2221
2222 iter->bvec = bvec + seg_skip;
2223 iter->nr_segs -= seg_skip;
Aleix Roca Nonell99c79f62019-08-15 14:03:22 +02002224 iter->count -= bvec->bv_len + offset;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002225 iter->iov_offset = offset & ~PAGE_MASK;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002226 }
2227 }
2228
Jens Axboe5e559562019-11-13 16:12:46 -07002229 return len;
Jens Axboeedafcce2019-01-09 09:16:05 -07002230}
2231
Jens Axboebcda7ba2020-02-23 16:42:51 -07002232static void io_ring_submit_unlock(struct io_ring_ctx *ctx, bool needs_lock)
2233{
2234 if (needs_lock)
2235 mutex_unlock(&ctx->uring_lock);
2236}
2237
2238static void io_ring_submit_lock(struct io_ring_ctx *ctx, bool needs_lock)
2239{
2240 /*
2241 * "Normal" inline submissions always hold the uring_lock, since we
2242 * grab it from the system call. Same is true for the SQPOLL offload.
2243 * The only exception is when we've detached the request and issue it
2244 * from an async worker thread, grab the lock for that case.
2245 */
2246 if (needs_lock)
2247 mutex_lock(&ctx->uring_lock);
2248}
2249
2250static struct io_buffer *io_buffer_select(struct io_kiocb *req, size_t *len,
2251 int bgid, struct io_buffer *kbuf,
2252 bool needs_lock)
2253{
2254 struct io_buffer *head;
2255
2256 if (req->flags & REQ_F_BUFFER_SELECTED)
2257 return kbuf;
2258
2259 io_ring_submit_lock(req->ctx, needs_lock);
2260
2261 lockdep_assert_held(&req->ctx->uring_lock);
2262
2263 head = idr_find(&req->ctx->io_buffer_idr, bgid);
2264 if (head) {
2265 if (!list_empty(&head->list)) {
2266 kbuf = list_last_entry(&head->list, struct io_buffer,
2267 list);
2268 list_del(&kbuf->list);
2269 } else {
2270 kbuf = head;
2271 idr_remove(&req->ctx->io_buffer_idr, bgid);
2272 }
2273 if (*len > kbuf->len)
2274 *len = kbuf->len;
2275 } else {
2276 kbuf = ERR_PTR(-ENOBUFS);
2277 }
2278
2279 io_ring_submit_unlock(req->ctx, needs_lock);
2280
2281 return kbuf;
2282}
2283
Jens Axboe4d954c22020-02-27 07:31:19 -07002284static void __user *io_rw_buffer_select(struct io_kiocb *req, size_t *len,
2285 bool needs_lock)
2286{
2287 struct io_buffer *kbuf;
2288 int bgid;
2289
2290 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
2291 bgid = (int) (unsigned long) req->rw.kiocb.private;
2292 kbuf = io_buffer_select(req, len, bgid, kbuf, needs_lock);
2293 if (IS_ERR(kbuf))
2294 return kbuf;
2295 req->rw.addr = (u64) (unsigned long) kbuf;
2296 req->flags |= REQ_F_BUFFER_SELECTED;
2297 return u64_to_user_ptr(kbuf->addr);
2298}
2299
2300#ifdef CONFIG_COMPAT
2301static ssize_t io_compat_import(struct io_kiocb *req, struct iovec *iov,
2302 bool needs_lock)
2303{
2304 struct compat_iovec __user *uiov;
2305 compat_ssize_t clen;
2306 void __user *buf;
2307 ssize_t len;
2308
2309 uiov = u64_to_user_ptr(req->rw.addr);
2310 if (!access_ok(uiov, sizeof(*uiov)))
2311 return -EFAULT;
2312 if (__get_user(clen, &uiov->iov_len))
2313 return -EFAULT;
2314 if (clen < 0)
2315 return -EINVAL;
2316
2317 len = clen;
2318 buf = io_rw_buffer_select(req, &len, needs_lock);
2319 if (IS_ERR(buf))
2320 return PTR_ERR(buf);
2321 iov[0].iov_base = buf;
2322 iov[0].iov_len = (compat_size_t) len;
2323 return 0;
2324}
2325#endif
2326
2327static ssize_t __io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
2328 bool needs_lock)
2329{
2330 struct iovec __user *uiov = u64_to_user_ptr(req->rw.addr);
2331 void __user *buf;
2332 ssize_t len;
2333
2334 if (copy_from_user(iov, uiov, sizeof(*uiov)))
2335 return -EFAULT;
2336
2337 len = iov[0].iov_len;
2338 if (len < 0)
2339 return -EINVAL;
2340 buf = io_rw_buffer_select(req, &len, needs_lock);
2341 if (IS_ERR(buf))
2342 return PTR_ERR(buf);
2343 iov[0].iov_base = buf;
2344 iov[0].iov_len = len;
2345 return 0;
2346}
2347
2348static ssize_t io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
2349 bool needs_lock)
2350{
2351 if (req->flags & REQ_F_BUFFER_SELECTED)
2352 return 0;
2353 if (!req->rw.len)
2354 return 0;
2355 else if (req->rw.len > 1)
2356 return -EINVAL;
2357
2358#ifdef CONFIG_COMPAT
2359 if (req->ctx->compat)
2360 return io_compat_import(req, iov, needs_lock);
2361#endif
2362
2363 return __io_iov_buffer_select(req, iov, needs_lock);
2364}
2365
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002366static ssize_t io_import_iovec(int rw, struct io_kiocb *req,
Jens Axboebcda7ba2020-02-23 16:42:51 -07002367 struct iovec **iovec, struct iov_iter *iter,
2368 bool needs_lock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002369{
Jens Axboe9adbd452019-12-20 08:45:55 -07002370 void __user *buf = u64_to_user_ptr(req->rw.addr);
2371 size_t sqe_len = req->rw.len;
Jens Axboe4d954c22020-02-27 07:31:19 -07002372 ssize_t ret;
Jens Axboeedafcce2019-01-09 09:16:05 -07002373 u8 opcode;
2374
Jens Axboed625c6e2019-12-17 19:53:05 -07002375 opcode = req->opcode;
Pavel Begunkov7d009162019-11-25 23:14:40 +03002376 if (opcode == IORING_OP_READ_FIXED || opcode == IORING_OP_WRITE_FIXED) {
Jens Axboeedafcce2019-01-09 09:16:05 -07002377 *iovec = NULL;
Jens Axboe9adbd452019-12-20 08:45:55 -07002378 return io_import_fixed(req, rw, iter);
Jens Axboeedafcce2019-01-09 09:16:05 -07002379 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002380
Jens Axboebcda7ba2020-02-23 16:42:51 -07002381 /* buffer index only valid with fixed read/write, or buffer select */
2382 if (req->rw.kiocb.private && !(req->flags & REQ_F_BUFFER_SELECT))
Jens Axboe9adbd452019-12-20 08:45:55 -07002383 return -EINVAL;
2384
Jens Axboe3a6820f2019-12-22 15:19:35 -07002385 if (opcode == IORING_OP_READ || opcode == IORING_OP_WRITE) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07002386 if (req->flags & REQ_F_BUFFER_SELECT) {
Jens Axboe4d954c22020-02-27 07:31:19 -07002387 buf = io_rw_buffer_select(req, &sqe_len, needs_lock);
2388 if (IS_ERR(buf)) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07002389 *iovec = NULL;
Jens Axboe4d954c22020-02-27 07:31:19 -07002390 return PTR_ERR(buf);
Jens Axboebcda7ba2020-02-23 16:42:51 -07002391 }
Jens Axboe3f9d6442020-03-11 12:27:04 -06002392 req->rw.len = sqe_len;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002393 }
2394
Jens Axboe3a6820f2019-12-22 15:19:35 -07002395 ret = import_single_range(rw, buf, sqe_len, *iovec, iter);
2396 *iovec = NULL;
Jens Axboe3a901592020-02-25 17:48:55 -07002397 return ret < 0 ? ret : sqe_len;
Jens Axboe3a6820f2019-12-22 15:19:35 -07002398 }
2399
Jens Axboef67676d2019-12-02 11:03:47 -07002400 if (req->io) {
2401 struct io_async_rw *iorw = &req->io->rw;
2402
2403 *iovec = iorw->iov;
2404 iov_iter_init(iter, rw, *iovec, iorw->nr_segs, iorw->size);
2405 if (iorw->iov == iorw->fast_iov)
2406 *iovec = NULL;
2407 return iorw->size;
2408 }
2409
Jens Axboe4d954c22020-02-27 07:31:19 -07002410 if (req->flags & REQ_F_BUFFER_SELECT) {
2411 ret = io_iov_buffer_select(req, *iovec, needs_lock);
Jens Axboe3f9d6442020-03-11 12:27:04 -06002412 if (!ret) {
2413 ret = (*iovec)->iov_len;
2414 iov_iter_init(iter, rw, *iovec, 1, ret);
2415 }
Jens Axboe4d954c22020-02-27 07:31:19 -07002416 *iovec = NULL;
2417 return ret;
2418 }
2419
Jens Axboe2b188cc2019-01-07 10:46:33 -07002420#ifdef CONFIG_COMPAT
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002421 if (req->ctx->compat)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002422 return compat_import_iovec(rw, buf, sqe_len, UIO_FASTIOV,
2423 iovec, iter);
2424#endif
2425
2426 return import_iovec(rw, buf, sqe_len, UIO_FASTIOV, iovec, iter);
2427}
2428
Jens Axboe32960612019-09-23 11:05:34 -06002429/*
2430 * For files that don't have ->read_iter() and ->write_iter(), handle them
2431 * by looping over ->read() or ->write() manually.
2432 */
2433static ssize_t loop_rw_iter(int rw, struct file *file, struct kiocb *kiocb,
2434 struct iov_iter *iter)
2435{
2436 ssize_t ret = 0;
2437
2438 /*
2439 * Don't support polled IO through this interface, and we can't
2440 * support non-blocking either. For the latter, this just causes
2441 * the kiocb to be handled from an async context.
2442 */
2443 if (kiocb->ki_flags & IOCB_HIPRI)
2444 return -EOPNOTSUPP;
2445 if (kiocb->ki_flags & IOCB_NOWAIT)
2446 return -EAGAIN;
2447
2448 while (iov_iter_count(iter)) {
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002449 struct iovec iovec;
Jens Axboe32960612019-09-23 11:05:34 -06002450 ssize_t nr;
2451
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002452 if (!iov_iter_is_bvec(iter)) {
2453 iovec = iov_iter_iovec(iter);
2454 } else {
2455 /* fixed buffers import bvec */
2456 iovec.iov_base = kmap(iter->bvec->bv_page)
2457 + iter->iov_offset;
2458 iovec.iov_len = min(iter->count,
2459 iter->bvec->bv_len - iter->iov_offset);
2460 }
2461
Jens Axboe32960612019-09-23 11:05:34 -06002462 if (rw == READ) {
2463 nr = file->f_op->read(file, iovec.iov_base,
2464 iovec.iov_len, &kiocb->ki_pos);
2465 } else {
2466 nr = file->f_op->write(file, iovec.iov_base,
2467 iovec.iov_len, &kiocb->ki_pos);
2468 }
2469
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002470 if (iov_iter_is_bvec(iter))
2471 kunmap(iter->bvec->bv_page);
2472
Jens Axboe32960612019-09-23 11:05:34 -06002473 if (nr < 0) {
2474 if (!ret)
2475 ret = nr;
2476 break;
2477 }
2478 ret += nr;
2479 if (nr != iovec.iov_len)
2480 break;
2481 iov_iter_advance(iter, nr);
2482 }
2483
2484 return ret;
2485}
2486
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002487static void io_req_map_rw(struct io_kiocb *req, ssize_t io_size,
Jens Axboef67676d2019-12-02 11:03:47 -07002488 struct iovec *iovec, struct iovec *fast_iov,
2489 struct iov_iter *iter)
2490{
2491 req->io->rw.nr_segs = iter->nr_segs;
2492 req->io->rw.size = io_size;
2493 req->io->rw.iov = iovec;
2494 if (!req->io->rw.iov) {
2495 req->io->rw.iov = req->io->rw.fast_iov;
Xiaoguang Wang45097da2020-04-08 22:29:58 +08002496 if (req->io->rw.iov != fast_iov)
2497 memcpy(req->io->rw.iov, fast_iov,
2498 sizeof(struct iovec) * iter->nr_segs);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002499 } else {
2500 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboef67676d2019-12-02 11:03:47 -07002501 }
2502}
2503
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08002504static inline int __io_alloc_async_ctx(struct io_kiocb *req)
2505{
2506 req->io = kmalloc(sizeof(*req->io), GFP_KERNEL);
2507 return req->io == NULL;
2508}
2509
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002510static int io_alloc_async_ctx(struct io_kiocb *req)
Jens Axboef67676d2019-12-02 11:03:47 -07002511{
Jens Axboed3656342019-12-18 09:50:26 -07002512 if (!io_op_defs[req->opcode].async_ctx)
2513 return 0;
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08002514
2515 return __io_alloc_async_ctx(req);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002516}
2517
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002518static int io_setup_async_rw(struct io_kiocb *req, ssize_t io_size,
2519 struct iovec *iovec, struct iovec *fast_iov,
2520 struct iov_iter *iter)
2521{
Jens Axboe980ad262020-01-24 23:08:54 -07002522 if (!io_op_defs[req->opcode].async_ctx)
Jens Axboe74566df2020-01-13 19:23:24 -07002523 return 0;
Jens Axboe5d204bc2020-01-31 12:06:52 -07002524 if (!req->io) {
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08002525 if (__io_alloc_async_ctx(req))
Jens Axboe5d204bc2020-01-31 12:06:52 -07002526 return -ENOMEM;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002527
Jens Axboe5d204bc2020-01-31 12:06:52 -07002528 io_req_map_rw(req, io_size, iovec, fast_iov, iter);
2529 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002530 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002531}
2532
Jens Axboe3529d8c2019-12-19 18:24:38 -07002533static int io_read_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2534 bool force_nonblock)
Jens Axboef67676d2019-12-02 11:03:47 -07002535{
Jens Axboe3529d8c2019-12-19 18:24:38 -07002536 struct io_async_ctx *io;
2537 struct iov_iter iter;
Jens Axboef67676d2019-12-02 11:03:47 -07002538 ssize_t ret;
2539
Jens Axboe3529d8c2019-12-19 18:24:38 -07002540 ret = io_prep_rw(req, sqe, force_nonblock);
2541 if (ret)
2542 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07002543
Jens Axboe3529d8c2019-12-19 18:24:38 -07002544 if (unlikely(!(req->file->f_mode & FMODE_READ)))
2545 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07002546
Pavel Begunkov5f798be2020-02-08 13:28:02 +03002547 /* either don't need iovec imported or already have it */
2548 if (!req->io || req->flags & REQ_F_NEED_CLEANUP)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002549 return 0;
2550
2551 io = req->io;
2552 io->rw.iov = io->rw.fast_iov;
2553 req->io = NULL;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002554 ret = io_import_iovec(READ, req, &io->rw.iov, &iter, !force_nonblock);
Jens Axboe3529d8c2019-12-19 18:24:38 -07002555 req->io = io;
2556 if (ret < 0)
2557 return ret;
2558
2559 io_req_map_rw(req, ret, io->rw.iov, io->rw.fast_iov, &iter);
2560 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002561}
2562
Pavel Begunkov014db002020-03-03 21:33:12 +03002563static int io_read(struct io_kiocb *req, bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002564{
2565 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07002566 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002567 struct iov_iter iter;
Jens Axboe31b51512019-01-18 22:56:34 -07002568 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07002569 ssize_t io_size, ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002570
Jens Axboebcda7ba2020-02-23 16:42:51 -07002571 ret = io_import_iovec(READ, req, &iovec, &iter, !force_nonblock);
Jens Axboe06b76d42019-12-19 14:44:26 -07002572 if (ret < 0)
2573 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002574
Jens Axboefd6c2e42019-12-18 12:19:41 -07002575 /* Ensure we clear previously set non-block flag */
2576 if (!force_nonblock)
Jens Axboe29de5f62020-02-20 09:56:08 -07002577 kiocb->ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07002578
Bijan Mottahedeh797f3f52020-01-15 18:37:45 -08002579 req->result = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002580 io_size = ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06002581 if (req->flags & REQ_F_LINK)
Jens Axboef67676d2019-12-02 11:03:47 -07002582 req->result = io_size;
2583
2584 /*
2585 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
2586 * we know to async punt it even if it was opened O_NONBLOCK
2587 */
Jens Axboe29de5f62020-02-20 09:56:08 -07002588 if (force_nonblock && !io_file_supports_async(req->file))
Jens Axboef67676d2019-12-02 11:03:47 -07002589 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06002590
Jens Axboe31b51512019-01-18 22:56:34 -07002591 iov_count = iov_iter_count(&iter);
Jens Axboe9adbd452019-12-20 08:45:55 -07002592 ret = rw_verify_area(READ, req->file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002593 if (!ret) {
2594 ssize_t ret2;
2595
Jens Axboe9adbd452019-12-20 08:45:55 -07002596 if (req->file->f_op->read_iter)
2597 ret2 = call_read_iter(req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002598 else
Jens Axboe9adbd452019-12-20 08:45:55 -07002599 ret2 = loop_rw_iter(READ, req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002600
Jens Axboe9d93a3f2019-05-15 13:53:07 -06002601 /* Catch -EAGAIN return for forced non-blocking submission */
Jens Axboef67676d2019-12-02 11:03:47 -07002602 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkov014db002020-03-03 21:33:12 +03002603 kiocb_done(kiocb, ret2);
Jens Axboef67676d2019-12-02 11:03:47 -07002604 } else {
2605copy_iov:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002606 ret = io_setup_async_rw(req, io_size, iovec,
Jens Axboef67676d2019-12-02 11:03:47 -07002607 inline_vecs, &iter);
2608 if (ret)
2609 goto out_free;
Jens Axboe29de5f62020-02-20 09:56:08 -07002610 /* any defer here is final, must blocking retry */
2611 if (!(req->flags & REQ_F_NOWAIT))
2612 req->flags |= REQ_F_MUST_PUNT;
Jens Axboef67676d2019-12-02 11:03:47 -07002613 return -EAGAIN;
2614 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002615 }
Jens Axboef67676d2019-12-02 11:03:47 -07002616out_free:
Pavel Begunkov1e950812020-02-06 19:51:16 +03002617 kfree(iovec);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002618 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002619 return ret;
2620}
2621
Jens Axboe3529d8c2019-12-19 18:24:38 -07002622static int io_write_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2623 bool force_nonblock)
Jens Axboef67676d2019-12-02 11:03:47 -07002624{
Jens Axboe3529d8c2019-12-19 18:24:38 -07002625 struct io_async_ctx *io;
2626 struct iov_iter iter;
Jens Axboef67676d2019-12-02 11:03:47 -07002627 ssize_t ret;
2628
Jens Axboe3529d8c2019-12-19 18:24:38 -07002629 ret = io_prep_rw(req, sqe, force_nonblock);
2630 if (ret)
2631 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07002632
Jens Axboe3529d8c2019-12-19 18:24:38 -07002633 if (unlikely(!(req->file->f_mode & FMODE_WRITE)))
2634 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07002635
Jens Axboe4ed734b2020-03-20 11:23:41 -06002636 req->fsize = rlimit(RLIMIT_FSIZE);
2637
Pavel Begunkov5f798be2020-02-08 13:28:02 +03002638 /* either don't need iovec imported or already have it */
2639 if (!req->io || req->flags & REQ_F_NEED_CLEANUP)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002640 return 0;
2641
2642 io = req->io;
2643 io->rw.iov = io->rw.fast_iov;
2644 req->io = NULL;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002645 ret = io_import_iovec(WRITE, req, &io->rw.iov, &iter, !force_nonblock);
Jens Axboe3529d8c2019-12-19 18:24:38 -07002646 req->io = io;
2647 if (ret < 0)
2648 return ret;
2649
2650 io_req_map_rw(req, ret, io->rw.iov, io->rw.fast_iov, &iter);
2651 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002652}
2653
Pavel Begunkov014db002020-03-03 21:33:12 +03002654static int io_write(struct io_kiocb *req, bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002655{
2656 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07002657 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002658 struct iov_iter iter;
Jens Axboe31b51512019-01-18 22:56:34 -07002659 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07002660 ssize_t ret, io_size;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002661
Jens Axboebcda7ba2020-02-23 16:42:51 -07002662 ret = io_import_iovec(WRITE, req, &iovec, &iter, !force_nonblock);
Jens Axboe06b76d42019-12-19 14:44:26 -07002663 if (ret < 0)
2664 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002665
Jens Axboefd6c2e42019-12-18 12:19:41 -07002666 /* Ensure we clear previously set non-block flag */
2667 if (!force_nonblock)
Jens Axboe9adbd452019-12-20 08:45:55 -07002668 req->rw.kiocb.ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07002669
Bijan Mottahedeh797f3f52020-01-15 18:37:45 -08002670 req->result = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002671 io_size = ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06002672 if (req->flags & REQ_F_LINK)
Jens Axboef67676d2019-12-02 11:03:47 -07002673 req->result = io_size;
2674
2675 /*
2676 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
2677 * we know to async punt it even if it was opened O_NONBLOCK
2678 */
Jens Axboe29de5f62020-02-20 09:56:08 -07002679 if (force_nonblock && !io_file_supports_async(req->file))
Jens Axboef67676d2019-12-02 11:03:47 -07002680 goto copy_iov;
Jens Axboef67676d2019-12-02 11:03:47 -07002681
Jens Axboe10d59342019-12-09 20:16:22 -07002682 /* file path doesn't support NOWAIT for non-direct_IO */
2683 if (force_nonblock && !(kiocb->ki_flags & IOCB_DIRECT) &&
2684 (req->flags & REQ_F_ISREG))
Jens Axboef67676d2019-12-02 11:03:47 -07002685 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06002686
Jens Axboe31b51512019-01-18 22:56:34 -07002687 iov_count = iov_iter_count(&iter);
Jens Axboe9adbd452019-12-20 08:45:55 -07002688 ret = rw_verify_area(WRITE, req->file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002689 if (!ret) {
Roman Penyaev9bf79332019-03-25 20:09:24 +01002690 ssize_t ret2;
2691
Jens Axboe2b188cc2019-01-07 10:46:33 -07002692 /*
2693 * Open-code file_start_write here to grab freeze protection,
2694 * which will be released by another thread in
2695 * io_complete_rw(). Fool lockdep by telling it the lock got
2696 * released so that it doesn't complain about the held lock when
2697 * we return to userspace.
2698 */
Jens Axboe491381ce2019-10-17 09:20:46 -06002699 if (req->flags & REQ_F_ISREG) {
Jens Axboe9adbd452019-12-20 08:45:55 -07002700 __sb_start_write(file_inode(req->file)->i_sb,
Jens Axboe2b188cc2019-01-07 10:46:33 -07002701 SB_FREEZE_WRITE, true);
Jens Axboe9adbd452019-12-20 08:45:55 -07002702 __sb_writers_release(file_inode(req->file)->i_sb,
Jens Axboe2b188cc2019-01-07 10:46:33 -07002703 SB_FREEZE_WRITE);
2704 }
2705 kiocb->ki_flags |= IOCB_WRITE;
Roman Penyaev9bf79332019-03-25 20:09:24 +01002706
Jens Axboe4ed734b2020-03-20 11:23:41 -06002707 if (!force_nonblock)
2708 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = req->fsize;
2709
Jens Axboe9adbd452019-12-20 08:45:55 -07002710 if (req->file->f_op->write_iter)
2711 ret2 = call_write_iter(req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002712 else
Jens Axboe9adbd452019-12-20 08:45:55 -07002713 ret2 = loop_rw_iter(WRITE, req->file, kiocb, &iter);
Jens Axboe4ed734b2020-03-20 11:23:41 -06002714
2715 if (!force_nonblock)
2716 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = RLIM_INFINITY;
2717
Jens Axboefaac9962020-02-07 15:45:22 -07002718 /*
Chucheng Luobff60352020-03-25 11:31:38 +08002719 * Raw bdev writes will return -EOPNOTSUPP for IOCB_NOWAIT. Just
Jens Axboefaac9962020-02-07 15:45:22 -07002720 * retry them without IOCB_NOWAIT.
2721 */
2722 if (ret2 == -EOPNOTSUPP && (kiocb->ki_flags & IOCB_NOWAIT))
2723 ret2 = -EAGAIN;
Jens Axboef67676d2019-12-02 11:03:47 -07002724 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkov014db002020-03-03 21:33:12 +03002725 kiocb_done(kiocb, ret2);
Jens Axboef67676d2019-12-02 11:03:47 -07002726 } else {
2727copy_iov:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002728 ret = io_setup_async_rw(req, io_size, iovec,
Jens Axboef67676d2019-12-02 11:03:47 -07002729 inline_vecs, &iter);
2730 if (ret)
2731 goto out_free;
Jens Axboe29de5f62020-02-20 09:56:08 -07002732 /* any defer here is final, must blocking retry */
2733 req->flags |= REQ_F_MUST_PUNT;
Jens Axboef67676d2019-12-02 11:03:47 -07002734 return -EAGAIN;
2735 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002736 }
Jens Axboe31b51512019-01-18 22:56:34 -07002737out_free:
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002738 req->flags &= ~REQ_F_NEED_CLEANUP;
Pavel Begunkov1e950812020-02-06 19:51:16 +03002739 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002740 return ret;
2741}
2742
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002743static int io_splice_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2744{
2745 struct io_splice* sp = &req->splice;
2746 unsigned int valid_flags = SPLICE_F_FD_IN_FIXED | SPLICE_F_ALL;
2747 int ret;
2748
2749 if (req->flags & REQ_F_NEED_CLEANUP)
2750 return 0;
2751
2752 sp->file_in = NULL;
2753 sp->off_in = READ_ONCE(sqe->splice_off_in);
2754 sp->off_out = READ_ONCE(sqe->off);
2755 sp->len = READ_ONCE(sqe->len);
2756 sp->flags = READ_ONCE(sqe->splice_flags);
2757
2758 if (unlikely(sp->flags & ~valid_flags))
2759 return -EINVAL;
2760
2761 ret = io_file_get(NULL, req, READ_ONCE(sqe->splice_fd_in), &sp->file_in,
2762 (sp->flags & SPLICE_F_FD_IN_FIXED));
2763 if (ret)
2764 return ret;
2765 req->flags |= REQ_F_NEED_CLEANUP;
2766
2767 if (!S_ISREG(file_inode(sp->file_in)->i_mode))
2768 req->work.flags |= IO_WQ_WORK_UNBOUND;
2769
2770 return 0;
2771}
2772
2773static bool io_splice_punt(struct file *file)
2774{
2775 if (get_pipe_info(file))
2776 return false;
2777 if (!io_file_supports_async(file))
2778 return true;
2779 return !(file->f_mode & O_NONBLOCK);
2780}
2781
Pavel Begunkov014db002020-03-03 21:33:12 +03002782static int io_splice(struct io_kiocb *req, bool force_nonblock)
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002783{
2784 struct io_splice *sp = &req->splice;
2785 struct file *in = sp->file_in;
2786 struct file *out = sp->file_out;
2787 unsigned int flags = sp->flags & ~SPLICE_F_FD_IN_FIXED;
2788 loff_t *poff_in, *poff_out;
2789 long ret;
2790
2791 if (force_nonblock) {
2792 if (io_splice_punt(in) || io_splice_punt(out))
2793 return -EAGAIN;
2794 flags |= SPLICE_F_NONBLOCK;
2795 }
2796
2797 poff_in = (sp->off_in == -1) ? NULL : &sp->off_in;
2798 poff_out = (sp->off_out == -1) ? NULL : &sp->off_out;
2799 ret = do_splice(in, poff_in, out, poff_out, sp->len, flags);
2800 if (force_nonblock && ret == -EAGAIN)
2801 return -EAGAIN;
2802
2803 io_put_file(req, in, (sp->flags & SPLICE_F_FD_IN_FIXED));
2804 req->flags &= ~REQ_F_NEED_CLEANUP;
2805
2806 io_cqring_add_event(req, ret);
2807 if (ret != sp->len)
2808 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03002809 io_put_req(req);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002810 return 0;
2811}
2812
Jens Axboe2b188cc2019-01-07 10:46:33 -07002813/*
2814 * IORING_OP_NOP just posts a completion event, nothing else.
2815 */
Jens Axboe78e19bb2019-11-06 15:21:34 -07002816static int io_nop(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002817{
2818 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002819
Jens Axboedef596e2019-01-09 08:59:42 -07002820 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
2821 return -EINVAL;
2822
Jens Axboe78e19bb2019-11-06 15:21:34 -07002823 io_cqring_add_event(req, 0);
Jens Axboee65ef562019-03-12 10:16:44 -06002824 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002825 return 0;
2826}
2827
Jens Axboe3529d8c2019-12-19 18:24:38 -07002828static int io_prep_fsync(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002829{
Jens Axboe6b063142019-01-10 22:13:58 -07002830 struct io_ring_ctx *ctx = req->ctx;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002831
Jens Axboe09bb8392019-03-13 12:39:28 -06002832 if (!req->file)
2833 return -EBADF;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002834
Jens Axboe6b063142019-01-10 22:13:58 -07002835 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboedef596e2019-01-09 08:59:42 -07002836 return -EINVAL;
Jens Axboeedafcce2019-01-09 09:16:05 -07002837 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002838 return -EINVAL;
2839
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002840 req->sync.flags = READ_ONCE(sqe->fsync_flags);
2841 if (unlikely(req->sync.flags & ~IORING_FSYNC_DATASYNC))
2842 return -EINVAL;
2843
2844 req->sync.off = READ_ONCE(sqe->off);
2845 req->sync.len = READ_ONCE(sqe->len);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002846 return 0;
2847}
2848
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002849static bool io_req_cancelled(struct io_kiocb *req)
2850{
2851 if (req->work.flags & IO_WQ_WORK_CANCEL) {
2852 req_set_fail_links(req);
2853 io_cqring_add_event(req, -ECANCELED);
2854 io_put_req(req);
2855 return true;
2856 }
2857
2858 return false;
2859}
2860
Pavel Begunkov014db002020-03-03 21:33:12 +03002861static void __io_fsync(struct io_kiocb *req)
Jens Axboe78912932020-01-14 22:09:06 -07002862{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002863 loff_t end = req->sync.off + req->sync.len;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002864 int ret;
2865
Jens Axboe9adbd452019-12-20 08:45:55 -07002866 ret = vfs_fsync_range(req->file, req->sync.off,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002867 end > 0 ? end : LLONG_MAX,
2868 req->sync.flags & IORING_FSYNC_DATASYNC);
2869 if (ret < 0)
2870 req_set_fail_links(req);
2871 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03002872 io_put_req(req);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002873}
2874
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002875static void io_fsync_finish(struct io_wq_work **workptr)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002876{
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002877 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002878
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002879 if (io_req_cancelled(req))
2880 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03002881 __io_fsync(req);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03002882 io_steal_work(req, workptr);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002883}
2884
Pavel Begunkov014db002020-03-03 21:33:12 +03002885static int io_fsync(struct io_kiocb *req, bool force_nonblock)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002886{
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002887 /* fsync always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002888 if (force_nonblock) {
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002889 req->work.func = io_fsync_finish;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002890 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002891 }
Pavel Begunkov014db002020-03-03 21:33:12 +03002892 __io_fsync(req);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002893 return 0;
2894}
2895
Pavel Begunkov014db002020-03-03 21:33:12 +03002896static void __io_fallocate(struct io_kiocb *req)
Jens Axboed63d1b52019-12-10 10:38:56 -07002897{
Jens Axboed63d1b52019-12-10 10:38:56 -07002898 int ret;
2899
Jens Axboe4ed734b2020-03-20 11:23:41 -06002900 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = req->fsize;
Jens Axboed63d1b52019-12-10 10:38:56 -07002901 ret = vfs_fallocate(req->file, req->sync.mode, req->sync.off,
2902 req->sync.len);
Jens Axboe4ed734b2020-03-20 11:23:41 -06002903 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = RLIM_INFINITY;
Jens Axboed63d1b52019-12-10 10:38:56 -07002904 if (ret < 0)
2905 req_set_fail_links(req);
2906 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03002907 io_put_req(req);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002908}
2909
Jens Axboe2b188cc2019-01-07 10:46:33 -07002910static void io_fallocate_finish(struct io_wq_work **workptr)
2911{
2912 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Jens Axboed63d1b52019-12-10 10:38:56 -07002913
2914 if (io_req_cancelled(req))
2915 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03002916 __io_fallocate(req);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03002917 io_steal_work(req, workptr);
Jens Axboed63d1b52019-12-10 10:38:56 -07002918}
2919
2920static int io_fallocate_prep(struct io_kiocb *req,
2921 const struct io_uring_sqe *sqe)
2922{
2923 if (sqe->ioprio || sqe->buf_index || sqe->rw_flags)
2924 return -EINVAL;
2925
2926 req->sync.off = READ_ONCE(sqe->off);
2927 req->sync.len = READ_ONCE(sqe->addr);
2928 req->sync.mode = READ_ONCE(sqe->len);
Jens Axboe4ed734b2020-03-20 11:23:41 -06002929 req->fsize = rlimit(RLIMIT_FSIZE);
Jens Axboed63d1b52019-12-10 10:38:56 -07002930 return 0;
2931}
2932
Pavel Begunkov014db002020-03-03 21:33:12 +03002933static int io_fallocate(struct io_kiocb *req, bool force_nonblock)
Jens Axboed63d1b52019-12-10 10:38:56 -07002934{
Jens Axboed63d1b52019-12-10 10:38:56 -07002935 /* fallocate always requiring blocking context */
2936 if (force_nonblock) {
Jens Axboed63d1b52019-12-10 10:38:56 -07002937 req->work.func = io_fallocate_finish;
2938 return -EAGAIN;
2939 }
2940
Pavel Begunkov014db002020-03-03 21:33:12 +03002941 __io_fallocate(req);
Jens Axboed63d1b52019-12-10 10:38:56 -07002942 return 0;
2943}
2944
Jens Axboe15b71ab2019-12-11 11:20:36 -07002945static int io_openat_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2946{
Jens Axboef8748882020-01-08 17:47:02 -07002947 const char __user *fname;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002948 int ret;
2949
2950 if (sqe->ioprio || sqe->buf_index)
2951 return -EINVAL;
Jens Axboecf3040c2020-02-06 21:31:40 -07002952 if (sqe->flags & IOSQE_FIXED_FILE)
2953 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03002954 if (req->flags & REQ_F_NEED_CLEANUP)
2955 return 0;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002956
2957 req->open.dfd = READ_ONCE(sqe->fd);
Jens Axboec12cedf2020-01-08 17:41:21 -07002958 req->open.how.mode = READ_ONCE(sqe->len);
Jens Axboef8748882020-01-08 17:47:02 -07002959 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboec12cedf2020-01-08 17:41:21 -07002960 req->open.how.flags = READ_ONCE(sqe->open_flags);
Jens Axboe08a1d26eb2020-04-08 09:20:54 -06002961 if (force_o_largefile())
2962 req->open.how.flags |= O_LARGEFILE;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002963
Jens Axboef8748882020-01-08 17:47:02 -07002964 req->open.filename = getname(fname);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002965 if (IS_ERR(req->open.filename)) {
2966 ret = PTR_ERR(req->open.filename);
2967 req->open.filename = NULL;
2968 return ret;
2969 }
2970
Jens Axboe4022e7a2020-03-19 19:23:18 -06002971 req->open.nofile = rlimit(RLIMIT_NOFILE);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03002972 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002973 return 0;
2974}
2975
Jens Axboecebdb982020-01-08 17:59:24 -07002976static int io_openat2_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2977{
2978 struct open_how __user *how;
2979 const char __user *fname;
2980 size_t len;
2981 int ret;
2982
2983 if (sqe->ioprio || sqe->buf_index)
2984 return -EINVAL;
Jens Axboecf3040c2020-02-06 21:31:40 -07002985 if (sqe->flags & IOSQE_FIXED_FILE)
2986 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03002987 if (req->flags & REQ_F_NEED_CLEANUP)
2988 return 0;
Jens Axboecebdb982020-01-08 17:59:24 -07002989
2990 req->open.dfd = READ_ONCE(sqe->fd);
2991 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
2992 how = u64_to_user_ptr(READ_ONCE(sqe->addr2));
2993 len = READ_ONCE(sqe->len);
2994
2995 if (len < OPEN_HOW_SIZE_VER0)
2996 return -EINVAL;
2997
2998 ret = copy_struct_from_user(&req->open.how, sizeof(req->open.how), how,
2999 len);
3000 if (ret)
3001 return ret;
3002
3003 if (!(req->open.how.flags & O_PATH) && force_o_largefile())
3004 req->open.how.flags |= O_LARGEFILE;
3005
3006 req->open.filename = getname(fname);
3007 if (IS_ERR(req->open.filename)) {
3008 ret = PTR_ERR(req->open.filename);
3009 req->open.filename = NULL;
3010 return ret;
3011 }
3012
Jens Axboe4022e7a2020-03-19 19:23:18 -06003013 req->open.nofile = rlimit(RLIMIT_NOFILE);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003014 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboecebdb982020-01-08 17:59:24 -07003015 return 0;
3016}
3017
Pavel Begunkov014db002020-03-03 21:33:12 +03003018static int io_openat2(struct io_kiocb *req, bool force_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07003019{
3020 struct open_flags op;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003021 struct file *file;
3022 int ret;
3023
Jens Axboef86cd202020-01-29 13:46:44 -07003024 if (force_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07003025 return -EAGAIN;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003026
Jens Axboecebdb982020-01-08 17:59:24 -07003027 ret = build_open_flags(&req->open.how, &op);
Jens Axboe15b71ab2019-12-11 11:20:36 -07003028 if (ret)
3029 goto err;
3030
Jens Axboe4022e7a2020-03-19 19:23:18 -06003031 ret = __get_unused_fd_flags(req->open.how.flags, req->open.nofile);
Jens Axboe15b71ab2019-12-11 11:20:36 -07003032 if (ret < 0)
3033 goto err;
3034
3035 file = do_filp_open(req->open.dfd, req->open.filename, &op);
3036 if (IS_ERR(file)) {
3037 put_unused_fd(ret);
3038 ret = PTR_ERR(file);
3039 } else {
3040 fsnotify_open(file);
3041 fd_install(ret, file);
3042 }
3043err:
3044 putname(req->open.filename);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003045 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003046 if (ret < 0)
3047 req_set_fail_links(req);
3048 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003049 io_put_req(req);
Jens Axboe15b71ab2019-12-11 11:20:36 -07003050 return 0;
3051}
3052
Pavel Begunkov014db002020-03-03 21:33:12 +03003053static int io_openat(struct io_kiocb *req, bool force_nonblock)
Jens Axboecebdb982020-01-08 17:59:24 -07003054{
3055 req->open.how = build_open_how(req->open.how.flags, req->open.how.mode);
Pavel Begunkov014db002020-03-03 21:33:12 +03003056 return io_openat2(req, force_nonblock);
Jens Axboecebdb982020-01-08 17:59:24 -07003057}
3058
Jens Axboe067524e2020-03-02 16:32:28 -07003059static int io_remove_buffers_prep(struct io_kiocb *req,
3060 const struct io_uring_sqe *sqe)
3061{
3062 struct io_provide_buf *p = &req->pbuf;
3063 u64 tmp;
3064
3065 if (sqe->ioprio || sqe->rw_flags || sqe->addr || sqe->len || sqe->off)
3066 return -EINVAL;
3067
3068 tmp = READ_ONCE(sqe->fd);
3069 if (!tmp || tmp > USHRT_MAX)
3070 return -EINVAL;
3071
3072 memset(p, 0, sizeof(*p));
3073 p->nbufs = tmp;
3074 p->bgid = READ_ONCE(sqe->buf_group);
3075 return 0;
3076}
3077
3078static int __io_remove_buffers(struct io_ring_ctx *ctx, struct io_buffer *buf,
3079 int bgid, unsigned nbufs)
3080{
3081 unsigned i = 0;
3082
3083 /* shouldn't happen */
3084 if (!nbufs)
3085 return 0;
3086
3087 /* the head kbuf is the list itself */
3088 while (!list_empty(&buf->list)) {
3089 struct io_buffer *nxt;
3090
3091 nxt = list_first_entry(&buf->list, struct io_buffer, list);
3092 list_del(&nxt->list);
3093 kfree(nxt);
3094 if (++i == nbufs)
3095 return i;
3096 }
3097 i++;
3098 kfree(buf);
3099 idr_remove(&ctx->io_buffer_idr, bgid);
3100
3101 return i;
3102}
3103
3104static int io_remove_buffers(struct io_kiocb *req, bool force_nonblock)
3105{
3106 struct io_provide_buf *p = &req->pbuf;
3107 struct io_ring_ctx *ctx = req->ctx;
3108 struct io_buffer *head;
3109 int ret = 0;
3110
3111 io_ring_submit_lock(ctx, !force_nonblock);
3112
3113 lockdep_assert_held(&ctx->uring_lock);
3114
3115 ret = -ENOENT;
3116 head = idr_find(&ctx->io_buffer_idr, p->bgid);
3117 if (head)
3118 ret = __io_remove_buffers(ctx, head, p->bgid, p->nbufs);
3119
3120 io_ring_submit_lock(ctx, !force_nonblock);
3121 if (ret < 0)
3122 req_set_fail_links(req);
3123 io_cqring_add_event(req, ret);
3124 io_put_req(req);
3125 return 0;
3126}
3127
Jens Axboeddf0322d2020-02-23 16:41:33 -07003128static int io_provide_buffers_prep(struct io_kiocb *req,
3129 const struct io_uring_sqe *sqe)
3130{
3131 struct io_provide_buf *p = &req->pbuf;
3132 u64 tmp;
3133
3134 if (sqe->ioprio || sqe->rw_flags)
3135 return -EINVAL;
3136
3137 tmp = READ_ONCE(sqe->fd);
3138 if (!tmp || tmp > USHRT_MAX)
3139 return -E2BIG;
3140 p->nbufs = tmp;
3141 p->addr = READ_ONCE(sqe->addr);
3142 p->len = READ_ONCE(sqe->len);
3143
3144 if (!access_ok(u64_to_user_ptr(p->addr), p->len))
3145 return -EFAULT;
3146
3147 p->bgid = READ_ONCE(sqe->buf_group);
3148 tmp = READ_ONCE(sqe->off);
3149 if (tmp > USHRT_MAX)
3150 return -E2BIG;
3151 p->bid = tmp;
3152 return 0;
3153}
3154
3155static int io_add_buffers(struct io_provide_buf *pbuf, struct io_buffer **head)
3156{
3157 struct io_buffer *buf;
3158 u64 addr = pbuf->addr;
3159 int i, bid = pbuf->bid;
3160
3161 for (i = 0; i < pbuf->nbufs; i++) {
3162 buf = kmalloc(sizeof(*buf), GFP_KERNEL);
3163 if (!buf)
3164 break;
3165
3166 buf->addr = addr;
3167 buf->len = pbuf->len;
3168 buf->bid = bid;
3169 addr += pbuf->len;
3170 bid++;
3171 if (!*head) {
3172 INIT_LIST_HEAD(&buf->list);
3173 *head = buf;
3174 } else {
3175 list_add_tail(&buf->list, &(*head)->list);
3176 }
3177 }
3178
3179 return i ? i : -ENOMEM;
3180}
3181
Jens Axboeddf0322d2020-02-23 16:41:33 -07003182static int io_provide_buffers(struct io_kiocb *req, bool force_nonblock)
3183{
3184 struct io_provide_buf *p = &req->pbuf;
3185 struct io_ring_ctx *ctx = req->ctx;
3186 struct io_buffer *head, *list;
3187 int ret = 0;
3188
3189 io_ring_submit_lock(ctx, !force_nonblock);
3190
3191 lockdep_assert_held(&ctx->uring_lock);
3192
3193 list = head = idr_find(&ctx->io_buffer_idr, p->bgid);
3194
3195 ret = io_add_buffers(p, &head);
3196 if (ret < 0)
3197 goto out;
3198
3199 if (!list) {
3200 ret = idr_alloc(&ctx->io_buffer_idr, head, p->bgid, p->bgid + 1,
3201 GFP_KERNEL);
3202 if (ret < 0) {
Jens Axboe067524e2020-03-02 16:32:28 -07003203 __io_remove_buffers(ctx, head, p->bgid, -1U);
Jens Axboeddf0322d2020-02-23 16:41:33 -07003204 goto out;
3205 }
3206 }
3207out:
3208 io_ring_submit_unlock(ctx, !force_nonblock);
3209 if (ret < 0)
3210 req_set_fail_links(req);
3211 io_cqring_add_event(req, ret);
3212 io_put_req(req);
3213 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003214}
3215
Jens Axboe3e4827b2020-01-08 15:18:09 -07003216static int io_epoll_ctl_prep(struct io_kiocb *req,
3217 const struct io_uring_sqe *sqe)
3218{
3219#if defined(CONFIG_EPOLL)
3220 if (sqe->ioprio || sqe->buf_index)
3221 return -EINVAL;
3222
3223 req->epoll.epfd = READ_ONCE(sqe->fd);
3224 req->epoll.op = READ_ONCE(sqe->len);
3225 req->epoll.fd = READ_ONCE(sqe->off);
3226
3227 if (ep_op_has_event(req->epoll.op)) {
3228 struct epoll_event __user *ev;
3229
3230 ev = u64_to_user_ptr(READ_ONCE(sqe->addr));
3231 if (copy_from_user(&req->epoll.event, ev, sizeof(*ev)))
3232 return -EFAULT;
3233 }
3234
3235 return 0;
3236#else
3237 return -EOPNOTSUPP;
3238#endif
3239}
3240
Pavel Begunkov014db002020-03-03 21:33:12 +03003241static int io_epoll_ctl(struct io_kiocb *req, bool force_nonblock)
Jens Axboe3e4827b2020-01-08 15:18:09 -07003242{
3243#if defined(CONFIG_EPOLL)
3244 struct io_epoll *ie = &req->epoll;
3245 int ret;
3246
3247 ret = do_epoll_ctl(ie->epfd, ie->op, ie->fd, &ie->event, force_nonblock);
3248 if (force_nonblock && ret == -EAGAIN)
3249 return -EAGAIN;
3250
3251 if (ret < 0)
3252 req_set_fail_links(req);
3253 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003254 io_put_req(req);
Jens Axboe3e4827b2020-01-08 15:18:09 -07003255 return 0;
3256#else
3257 return -EOPNOTSUPP;
3258#endif
3259}
3260
Jens Axboec1ca7572019-12-25 22:18:28 -07003261static int io_madvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3262{
3263#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
3264 if (sqe->ioprio || sqe->buf_index || sqe->off)
3265 return -EINVAL;
3266
3267 req->madvise.addr = READ_ONCE(sqe->addr);
3268 req->madvise.len = READ_ONCE(sqe->len);
3269 req->madvise.advice = READ_ONCE(sqe->fadvise_advice);
3270 return 0;
3271#else
3272 return -EOPNOTSUPP;
3273#endif
3274}
3275
Pavel Begunkov014db002020-03-03 21:33:12 +03003276static int io_madvise(struct io_kiocb *req, bool force_nonblock)
Jens Axboec1ca7572019-12-25 22:18:28 -07003277{
3278#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
3279 struct io_madvise *ma = &req->madvise;
3280 int ret;
3281
3282 if (force_nonblock)
3283 return -EAGAIN;
3284
3285 ret = do_madvise(ma->addr, ma->len, ma->advice);
3286 if (ret < 0)
3287 req_set_fail_links(req);
3288 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003289 io_put_req(req);
Jens Axboec1ca7572019-12-25 22:18:28 -07003290 return 0;
3291#else
3292 return -EOPNOTSUPP;
3293#endif
3294}
3295
Jens Axboe4840e412019-12-25 22:03:45 -07003296static int io_fadvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3297{
3298 if (sqe->ioprio || sqe->buf_index || sqe->addr)
3299 return -EINVAL;
3300
3301 req->fadvise.offset = READ_ONCE(sqe->off);
3302 req->fadvise.len = READ_ONCE(sqe->len);
3303 req->fadvise.advice = READ_ONCE(sqe->fadvise_advice);
3304 return 0;
3305}
3306
Pavel Begunkov014db002020-03-03 21:33:12 +03003307static int io_fadvise(struct io_kiocb *req, bool force_nonblock)
Jens Axboe4840e412019-12-25 22:03:45 -07003308{
3309 struct io_fadvise *fa = &req->fadvise;
3310 int ret;
3311
Jens Axboe3e694262020-02-01 09:22:49 -07003312 if (force_nonblock) {
3313 switch (fa->advice) {
3314 case POSIX_FADV_NORMAL:
3315 case POSIX_FADV_RANDOM:
3316 case POSIX_FADV_SEQUENTIAL:
3317 break;
3318 default:
3319 return -EAGAIN;
3320 }
3321 }
Jens Axboe4840e412019-12-25 22:03:45 -07003322
3323 ret = vfs_fadvise(req->file, fa->offset, fa->len, fa->advice);
3324 if (ret < 0)
3325 req_set_fail_links(req);
3326 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003327 io_put_req(req);
Jens Axboe4840e412019-12-25 22:03:45 -07003328 return 0;
3329}
3330
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003331static int io_statx_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3332{
Jens Axboef8748882020-01-08 17:47:02 -07003333 const char __user *fname;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003334 unsigned lookup_flags;
3335 int ret;
3336
3337 if (sqe->ioprio || sqe->buf_index)
3338 return -EINVAL;
Jens Axboecf3040c2020-02-06 21:31:40 -07003339 if (sqe->flags & IOSQE_FIXED_FILE)
3340 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03003341 if (req->flags & REQ_F_NEED_CLEANUP)
3342 return 0;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003343
3344 req->open.dfd = READ_ONCE(sqe->fd);
3345 req->open.mask = READ_ONCE(sqe->len);
Jens Axboef8748882020-01-08 17:47:02 -07003346 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003347 req->open.buffer = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboec12cedf2020-01-08 17:41:21 -07003348 req->open.how.flags = READ_ONCE(sqe->statx_flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003349
Jens Axboec12cedf2020-01-08 17:41:21 -07003350 if (vfs_stat_set_lookup_flags(&lookup_flags, req->open.how.flags))
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003351 return -EINVAL;
3352
Jens Axboef8748882020-01-08 17:47:02 -07003353 req->open.filename = getname_flags(fname, lookup_flags, NULL);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003354 if (IS_ERR(req->open.filename)) {
3355 ret = PTR_ERR(req->open.filename);
3356 req->open.filename = NULL;
3357 return ret;
3358 }
3359
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003360 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003361 return 0;
3362}
3363
Pavel Begunkov014db002020-03-03 21:33:12 +03003364static int io_statx(struct io_kiocb *req, bool force_nonblock)
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003365{
3366 struct io_open *ctx = &req->open;
3367 unsigned lookup_flags;
3368 struct path path;
3369 struct kstat stat;
3370 int ret;
3371
3372 if (force_nonblock)
3373 return -EAGAIN;
3374
Jens Axboec12cedf2020-01-08 17:41:21 -07003375 if (vfs_stat_set_lookup_flags(&lookup_flags, ctx->how.flags))
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003376 return -EINVAL;
3377
3378retry:
3379 /* filename_lookup() drops it, keep a reference */
3380 ctx->filename->refcnt++;
3381
3382 ret = filename_lookup(ctx->dfd, ctx->filename, lookup_flags, &path,
3383 NULL);
3384 if (ret)
3385 goto err;
3386
Jens Axboec12cedf2020-01-08 17:41:21 -07003387 ret = vfs_getattr(&path, &stat, ctx->mask, ctx->how.flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003388 path_put(&path);
3389 if (retry_estale(ret, lookup_flags)) {
3390 lookup_flags |= LOOKUP_REVAL;
3391 goto retry;
3392 }
3393 if (!ret)
3394 ret = cp_statx(&stat, ctx->buffer);
3395err:
3396 putname(ctx->filename);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003397 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003398 if (ret < 0)
3399 req_set_fail_links(req);
3400 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003401 io_put_req(req);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003402 return 0;
3403}
3404
Jens Axboeb5dba592019-12-11 14:02:38 -07003405static int io_close_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3406{
3407 /*
3408 * If we queue this for async, it must not be cancellable. That would
3409 * leave the 'file' in an undeterminate state.
3410 */
3411 req->work.flags |= IO_WQ_WORK_NO_CANCEL;
3412
3413 if (sqe->ioprio || sqe->off || sqe->addr || sqe->len ||
3414 sqe->rw_flags || sqe->buf_index)
3415 return -EINVAL;
3416 if (sqe->flags & IOSQE_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07003417 return -EBADF;
Jens Axboeb5dba592019-12-11 14:02:38 -07003418
3419 req->close.fd = READ_ONCE(sqe->fd);
3420 if (req->file->f_op == &io_uring_fops ||
Pavel Begunkovb14cca02020-01-17 04:45:59 +03003421 req->close.fd == req->ctx->ring_fd)
Jens Axboeb5dba592019-12-11 14:02:38 -07003422 return -EBADF;
3423
3424 return 0;
3425}
3426
Pavel Begunkova93b3332020-02-08 14:04:34 +03003427/* only called when __close_fd_get_file() is done */
Pavel Begunkov014db002020-03-03 21:33:12 +03003428static void __io_close_finish(struct io_kiocb *req)
Pavel Begunkova93b3332020-02-08 14:04:34 +03003429{
3430 int ret;
3431
3432 ret = filp_close(req->close.put_file, req->work.files);
3433 if (ret < 0)
3434 req_set_fail_links(req);
3435 io_cqring_add_event(req, ret);
3436 fput(req->close.put_file);
Pavel Begunkov014db002020-03-03 21:33:12 +03003437 io_put_req(req);
Pavel Begunkova93b3332020-02-08 14:04:34 +03003438}
3439
Jens Axboeb5dba592019-12-11 14:02:38 -07003440static void io_close_finish(struct io_wq_work **workptr)
3441{
3442 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Jens Axboeb5dba592019-12-11 14:02:38 -07003443
Pavel Begunkov7fbeb952020-02-16 01:01:18 +03003444 /* not cancellable, don't do io_req_cancelled() */
Pavel Begunkov014db002020-03-03 21:33:12 +03003445 __io_close_finish(req);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03003446 io_steal_work(req, workptr);
Jens Axboeb5dba592019-12-11 14:02:38 -07003447}
3448
Pavel Begunkov014db002020-03-03 21:33:12 +03003449static int io_close(struct io_kiocb *req, bool force_nonblock)
Jens Axboeb5dba592019-12-11 14:02:38 -07003450{
3451 int ret;
3452
3453 req->close.put_file = NULL;
3454 ret = __close_fd_get_file(req->close.fd, &req->close.put_file);
3455 if (ret < 0)
3456 return ret;
3457
3458 /* if the file has a flush method, be safe and punt to async */
Pavel Begunkova2100672020-03-02 23:45:16 +03003459 if (req->close.put_file->f_op->flush && force_nonblock) {
Pavel Begunkov594506f2020-03-03 21:33:11 +03003460 /* submission ref will be dropped, take it for async */
3461 refcount_inc(&req->refs);
3462
Pavel Begunkova2100672020-03-02 23:45:16 +03003463 req->work.func = io_close_finish;
3464 /*
3465 * Do manual async queue here to avoid grabbing files - we don't
3466 * need the files, and it'll cause io_close_finish() to close
3467 * the file again and cause a double CQE entry for this request
3468 */
3469 io_queue_async_work(req);
3470 return 0;
3471 }
Jens Axboeb5dba592019-12-11 14:02:38 -07003472
3473 /*
3474 * No ->flush(), safely close from here and just punt the
3475 * fput() to async context.
3476 */
Pavel Begunkov014db002020-03-03 21:33:12 +03003477 __io_close_finish(req);
Jens Axboe1a417f42020-01-31 17:16:48 -07003478 return 0;
Jens Axboeb5dba592019-12-11 14:02:38 -07003479}
3480
Jens Axboe3529d8c2019-12-19 18:24:38 -07003481static int io_prep_sfr(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003482{
3483 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003484
3485 if (!req->file)
3486 return -EBADF;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003487
3488 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
3489 return -EINVAL;
3490 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
3491 return -EINVAL;
3492
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003493 req->sync.off = READ_ONCE(sqe->off);
3494 req->sync.len = READ_ONCE(sqe->len);
3495 req->sync.flags = READ_ONCE(sqe->sync_range_flags);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003496 return 0;
3497}
3498
Pavel Begunkov014db002020-03-03 21:33:12 +03003499static void __io_sync_file_range(struct io_kiocb *req)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003500{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003501 int ret;
3502
Jens Axboe9adbd452019-12-20 08:45:55 -07003503 ret = sync_file_range(req->file, req->sync.off, req->sync.len,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003504 req->sync.flags);
3505 if (ret < 0)
3506 req_set_fail_links(req);
3507 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003508 io_put_req(req);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03003509}
3510
3511
3512static void io_sync_file_range_finish(struct io_wq_work **workptr)
3513{
3514 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03003515
3516 if (io_req_cancelled(req))
3517 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03003518 __io_sync_file_range(req);
Pavel Begunkov594506f2020-03-03 21:33:11 +03003519 io_put_req(req); /* put submission ref */
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003520}
3521
Pavel Begunkov014db002020-03-03 21:33:12 +03003522static int io_sync_file_range(struct io_kiocb *req, bool force_nonblock)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003523{
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003524 /* sync_file_range always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003525 if (force_nonblock) {
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003526 req->work.func = io_sync_file_range_finish;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003527 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003528 }
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003529
Pavel Begunkov014db002020-03-03 21:33:12 +03003530 __io_sync_file_range(req);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003531 return 0;
3532}
3533
YueHaibing469956e2020-03-04 15:53:52 +08003534#if defined(CONFIG_NET)
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003535static int io_setup_async_msg(struct io_kiocb *req,
3536 struct io_async_msghdr *kmsg)
3537{
3538 if (req->io)
3539 return -EAGAIN;
3540 if (io_alloc_async_ctx(req)) {
3541 if (kmsg->iov != kmsg->fast_iov)
3542 kfree(kmsg->iov);
3543 return -ENOMEM;
3544 }
3545 req->flags |= REQ_F_NEED_CLEANUP;
3546 memcpy(&req->io->msg, kmsg, sizeof(*kmsg));
3547 return -EAGAIN;
3548}
3549
Jens Axboe3529d8c2019-12-19 18:24:38 -07003550static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboeaa1fa282019-04-19 13:38:09 -06003551{
Jens Axboee47293f2019-12-20 08:58:21 -07003552 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003553 struct io_async_ctx *io = req->io;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003554 int ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003555
Jens Axboee47293f2019-12-20 08:58:21 -07003556 sr->msg_flags = READ_ONCE(sqe->msg_flags);
3557 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboefddafac2020-01-04 20:19:44 -07003558 sr->len = READ_ONCE(sqe->len);
Jens Axboe3529d8c2019-12-19 18:24:38 -07003559
Jens Axboed8768362020-02-27 14:17:49 -07003560#ifdef CONFIG_COMPAT
3561 if (req->ctx->compat)
3562 sr->msg_flags |= MSG_CMSG_COMPAT;
3563#endif
3564
Jens Axboefddafac2020-01-04 20:19:44 -07003565 if (!io || req->opcode == IORING_OP_SEND)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003566 return 0;
Pavel Begunkov5f798be2020-02-08 13:28:02 +03003567 /* iovec is already imported */
3568 if (req->flags & REQ_F_NEED_CLEANUP)
3569 return 0;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003570
Jens Axboed9688562019-12-09 19:35:20 -07003571 io->msg.iov = io->msg.fast_iov;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003572 ret = sendmsg_copy_msghdr(&io->msg.msg, sr->msg, sr->msg_flags,
Jens Axboee47293f2019-12-20 08:58:21 -07003573 &io->msg.iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003574 if (!ret)
3575 req->flags |= REQ_F_NEED_CLEANUP;
3576 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003577}
3578
Pavel Begunkov014db002020-03-03 21:33:12 +03003579static int io_sendmsg(struct io_kiocb *req, bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07003580{
Jens Axboe0b416c32019-12-15 10:57:46 -07003581 struct io_async_msghdr *kmsg = NULL;
Jens Axboe03b12302019-12-02 18:50:25 -07003582 struct socket *sock;
3583 int ret;
3584
3585 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3586 return -EINVAL;
3587
3588 sock = sock_from_file(req->file, &ret);
3589 if (sock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003590 struct io_async_ctx io;
Jens Axboe03b12302019-12-02 18:50:25 -07003591 unsigned flags;
3592
Jens Axboe03b12302019-12-02 18:50:25 -07003593 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07003594 kmsg = &req->io->msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003595 kmsg->msg.msg_name = &req->io->msg.addr;
Jens Axboe0b416c32019-12-15 10:57:46 -07003596 /* if iov is set, it's allocated already */
3597 if (!kmsg->iov)
3598 kmsg->iov = kmsg->fast_iov;
3599 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07003600 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07003601 struct io_sr_msg *sr = &req->sr_msg;
3602
Jens Axboe0b416c32019-12-15 10:57:46 -07003603 kmsg = &io.msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003604 kmsg->msg.msg_name = &io.msg.addr;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003605
3606 io.msg.iov = io.msg.fast_iov;
3607 ret = sendmsg_copy_msghdr(&io.msg.msg, sr->msg,
3608 sr->msg_flags, &io.msg.iov);
Jens Axboe03b12302019-12-02 18:50:25 -07003609 if (ret)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003610 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003611 }
3612
Jens Axboee47293f2019-12-20 08:58:21 -07003613 flags = req->sr_msg.msg_flags;
3614 if (flags & MSG_DONTWAIT)
3615 req->flags |= REQ_F_NOWAIT;
3616 else if (force_nonblock)
3617 flags |= MSG_DONTWAIT;
3618
Jens Axboe0b416c32019-12-15 10:57:46 -07003619 ret = __sys_sendmsg_sock(sock, &kmsg->msg, flags);
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003620 if (force_nonblock && ret == -EAGAIN)
3621 return io_setup_async_msg(req, kmsg);
Jens Axboe03b12302019-12-02 18:50:25 -07003622 if (ret == -ERESTARTSYS)
3623 ret = -EINTR;
3624 }
3625
Pavel Begunkov1e950812020-02-06 19:51:16 +03003626 if (kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07003627 kfree(kmsg->iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003628 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe03b12302019-12-02 18:50:25 -07003629 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003630 if (ret < 0)
3631 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003632 io_put_req(req);
Jens Axboe03b12302019-12-02 18:50:25 -07003633 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07003634}
3635
Pavel Begunkov014db002020-03-03 21:33:12 +03003636static int io_send(struct io_kiocb *req, bool force_nonblock)
Jens Axboefddafac2020-01-04 20:19:44 -07003637{
Jens Axboefddafac2020-01-04 20:19:44 -07003638 struct socket *sock;
3639 int ret;
3640
3641 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3642 return -EINVAL;
3643
3644 sock = sock_from_file(req->file, &ret);
3645 if (sock) {
3646 struct io_sr_msg *sr = &req->sr_msg;
3647 struct msghdr msg;
3648 struct iovec iov;
3649 unsigned flags;
3650
3651 ret = import_single_range(WRITE, sr->buf, sr->len, &iov,
3652 &msg.msg_iter);
3653 if (ret)
3654 return ret;
3655
3656 msg.msg_name = NULL;
3657 msg.msg_control = NULL;
3658 msg.msg_controllen = 0;
3659 msg.msg_namelen = 0;
3660
3661 flags = req->sr_msg.msg_flags;
3662 if (flags & MSG_DONTWAIT)
3663 req->flags |= REQ_F_NOWAIT;
3664 else if (force_nonblock)
3665 flags |= MSG_DONTWAIT;
3666
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003667 msg.msg_flags = flags;
3668 ret = sock_sendmsg(sock, &msg);
Jens Axboefddafac2020-01-04 20:19:44 -07003669 if (force_nonblock && ret == -EAGAIN)
3670 return -EAGAIN;
3671 if (ret == -ERESTARTSYS)
3672 ret = -EINTR;
3673 }
3674
3675 io_cqring_add_event(req, ret);
3676 if (ret < 0)
3677 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003678 io_put_req(req);
Jens Axboefddafac2020-01-04 20:19:44 -07003679 return 0;
Jens Axboefddafac2020-01-04 20:19:44 -07003680}
3681
Jens Axboe52de1fe2020-02-27 10:15:42 -07003682static int __io_recvmsg_copy_hdr(struct io_kiocb *req, struct io_async_ctx *io)
3683{
3684 struct io_sr_msg *sr = &req->sr_msg;
3685 struct iovec __user *uiov;
3686 size_t iov_len;
3687 int ret;
3688
3689 ret = __copy_msghdr_from_user(&io->msg.msg, sr->msg, &io->msg.uaddr,
3690 &uiov, &iov_len);
3691 if (ret)
3692 return ret;
3693
3694 if (req->flags & REQ_F_BUFFER_SELECT) {
3695 if (iov_len > 1)
3696 return -EINVAL;
3697 if (copy_from_user(io->msg.iov, uiov, sizeof(*uiov)))
3698 return -EFAULT;
3699 sr->len = io->msg.iov[0].iov_len;
3700 iov_iter_init(&io->msg.msg.msg_iter, READ, io->msg.iov, 1,
3701 sr->len);
3702 io->msg.iov = NULL;
3703 } else {
3704 ret = import_iovec(READ, uiov, iov_len, UIO_FASTIOV,
3705 &io->msg.iov, &io->msg.msg.msg_iter);
3706 if (ret > 0)
3707 ret = 0;
3708 }
3709
3710 return ret;
3711}
3712
3713#ifdef CONFIG_COMPAT
3714static int __io_compat_recvmsg_copy_hdr(struct io_kiocb *req,
3715 struct io_async_ctx *io)
3716{
3717 struct compat_msghdr __user *msg_compat;
3718 struct io_sr_msg *sr = &req->sr_msg;
3719 struct compat_iovec __user *uiov;
3720 compat_uptr_t ptr;
3721 compat_size_t len;
3722 int ret;
3723
3724 msg_compat = (struct compat_msghdr __user *) sr->msg;
3725 ret = __get_compat_msghdr(&io->msg.msg, msg_compat, &io->msg.uaddr,
3726 &ptr, &len);
3727 if (ret)
3728 return ret;
3729
3730 uiov = compat_ptr(ptr);
3731 if (req->flags & REQ_F_BUFFER_SELECT) {
3732 compat_ssize_t clen;
3733
3734 if (len > 1)
3735 return -EINVAL;
3736 if (!access_ok(uiov, sizeof(*uiov)))
3737 return -EFAULT;
3738 if (__get_user(clen, &uiov->iov_len))
3739 return -EFAULT;
3740 if (clen < 0)
3741 return -EINVAL;
3742 sr->len = io->msg.iov[0].iov_len;
3743 io->msg.iov = NULL;
3744 } else {
3745 ret = compat_import_iovec(READ, uiov, len, UIO_FASTIOV,
3746 &io->msg.iov,
3747 &io->msg.msg.msg_iter);
3748 if (ret < 0)
3749 return ret;
3750 }
3751
3752 return 0;
3753}
Jens Axboe03b12302019-12-02 18:50:25 -07003754#endif
Jens Axboe52de1fe2020-02-27 10:15:42 -07003755
3756static int io_recvmsg_copy_hdr(struct io_kiocb *req, struct io_async_ctx *io)
3757{
3758 io->msg.iov = io->msg.fast_iov;
3759
3760#ifdef CONFIG_COMPAT
3761 if (req->ctx->compat)
3762 return __io_compat_recvmsg_copy_hdr(req, io);
3763#endif
3764
3765 return __io_recvmsg_copy_hdr(req, io);
3766}
3767
Jens Axboebcda7ba2020-02-23 16:42:51 -07003768static struct io_buffer *io_recv_buffer_select(struct io_kiocb *req,
3769 int *cflags, bool needs_lock)
3770{
3771 struct io_sr_msg *sr = &req->sr_msg;
3772 struct io_buffer *kbuf;
3773
3774 if (!(req->flags & REQ_F_BUFFER_SELECT))
3775 return NULL;
3776
3777 kbuf = io_buffer_select(req, &sr->len, sr->bgid, sr->kbuf, needs_lock);
3778 if (IS_ERR(kbuf))
3779 return kbuf;
3780
3781 sr->kbuf = kbuf;
3782 req->flags |= REQ_F_BUFFER_SELECTED;
3783
3784 *cflags = kbuf->bid << IORING_CQE_BUFFER_SHIFT;
3785 *cflags |= IORING_CQE_F_BUFFER;
3786 return kbuf;
Jens Axboe03b12302019-12-02 18:50:25 -07003787}
3788
Jens Axboe3529d8c2019-12-19 18:24:38 -07003789static int io_recvmsg_prep(struct io_kiocb *req,
3790 const struct io_uring_sqe *sqe)
Jens Axboe03b12302019-12-02 18:50:25 -07003791{
Jens Axboee47293f2019-12-20 08:58:21 -07003792 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003793 struct io_async_ctx *io = req->io;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003794 int ret;
Jens Axboe06b76d42019-12-19 14:44:26 -07003795
Jens Axboe3529d8c2019-12-19 18:24:38 -07003796 sr->msg_flags = READ_ONCE(sqe->msg_flags);
3797 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003798 sr->len = READ_ONCE(sqe->len);
Jens Axboebcda7ba2020-02-23 16:42:51 -07003799 sr->bgid = READ_ONCE(sqe->buf_group);
Jens Axboe3529d8c2019-12-19 18:24:38 -07003800
Jens Axboed8768362020-02-27 14:17:49 -07003801#ifdef CONFIG_COMPAT
3802 if (req->ctx->compat)
3803 sr->msg_flags |= MSG_CMSG_COMPAT;
3804#endif
3805
Jens Axboefddafac2020-01-04 20:19:44 -07003806 if (!io || req->opcode == IORING_OP_RECV)
Jens Axboe06b76d42019-12-19 14:44:26 -07003807 return 0;
Pavel Begunkov5f798be2020-02-08 13:28:02 +03003808 /* iovec is already imported */
3809 if (req->flags & REQ_F_NEED_CLEANUP)
3810 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07003811
Jens Axboe52de1fe2020-02-27 10:15:42 -07003812 ret = io_recvmsg_copy_hdr(req, io);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003813 if (!ret)
3814 req->flags |= REQ_F_NEED_CLEANUP;
3815 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003816}
3817
Pavel Begunkov014db002020-03-03 21:33:12 +03003818static int io_recvmsg(struct io_kiocb *req, bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07003819{
Jens Axboe0b416c32019-12-15 10:57:46 -07003820 struct io_async_msghdr *kmsg = NULL;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003821 struct socket *sock;
Jens Axboe52de1fe2020-02-27 10:15:42 -07003822 int ret, cflags = 0;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003823
3824 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3825 return -EINVAL;
3826
3827 sock = sock_from_file(req->file, &ret);
3828 if (sock) {
Jens Axboe52de1fe2020-02-27 10:15:42 -07003829 struct io_buffer *kbuf;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003830 struct io_async_ctx io;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003831 unsigned flags;
3832
Jens Axboe03b12302019-12-02 18:50:25 -07003833 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07003834 kmsg = &req->io->msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003835 kmsg->msg.msg_name = &req->io->msg.addr;
Jens Axboe0b416c32019-12-15 10:57:46 -07003836 /* if iov is set, it's allocated already */
3837 if (!kmsg->iov)
3838 kmsg->iov = kmsg->fast_iov;
3839 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07003840 } else {
Jens Axboe0b416c32019-12-15 10:57:46 -07003841 kmsg = &io.msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003842 kmsg->msg.msg_name = &io.msg.addr;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003843
Jens Axboe52de1fe2020-02-27 10:15:42 -07003844 ret = io_recvmsg_copy_hdr(req, &io);
Jens Axboe03b12302019-12-02 18:50:25 -07003845 if (ret)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003846 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003847 }
Jens Axboe0fa03c62019-04-19 13:34:07 -06003848
Jens Axboe52de1fe2020-02-27 10:15:42 -07003849 kbuf = io_recv_buffer_select(req, &cflags, !force_nonblock);
3850 if (IS_ERR(kbuf)) {
3851 return PTR_ERR(kbuf);
3852 } else if (kbuf) {
3853 kmsg->fast_iov[0].iov_base = u64_to_user_ptr(kbuf->addr);
3854 iov_iter_init(&kmsg->msg.msg_iter, READ, kmsg->iov,
3855 1, req->sr_msg.len);
3856 }
3857
Jens Axboee47293f2019-12-20 08:58:21 -07003858 flags = req->sr_msg.msg_flags;
3859 if (flags & MSG_DONTWAIT)
3860 req->flags |= REQ_F_NOWAIT;
3861 else if (force_nonblock)
3862 flags |= MSG_DONTWAIT;
3863
3864 ret = __sys_recvmsg_sock(sock, &kmsg->msg, req->sr_msg.msg,
3865 kmsg->uaddr, flags);
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003866 if (force_nonblock && ret == -EAGAIN)
3867 return io_setup_async_msg(req, kmsg);
Jens Axboe441cdbd2019-12-02 18:49:10 -07003868 if (ret == -ERESTARTSYS)
3869 ret = -EINTR;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003870 }
3871
Pavel Begunkov1e950812020-02-06 19:51:16 +03003872 if (kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07003873 kfree(kmsg->iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003874 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe52de1fe2020-02-27 10:15:42 -07003875 __io_cqring_add_event(req, ret, cflags);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003876 if (ret < 0)
3877 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003878 io_put_req(req);
Jens Axboe0fa03c62019-04-19 13:34:07 -06003879 return 0;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003880}
3881
Pavel Begunkov014db002020-03-03 21:33:12 +03003882static int io_recv(struct io_kiocb *req, bool force_nonblock)
Jens Axboefddafac2020-01-04 20:19:44 -07003883{
Jens Axboebcda7ba2020-02-23 16:42:51 -07003884 struct io_buffer *kbuf = NULL;
Jens Axboefddafac2020-01-04 20:19:44 -07003885 struct socket *sock;
Jens Axboebcda7ba2020-02-23 16:42:51 -07003886 int ret, cflags = 0;
Jens Axboefddafac2020-01-04 20:19:44 -07003887
3888 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3889 return -EINVAL;
3890
3891 sock = sock_from_file(req->file, &ret);
3892 if (sock) {
3893 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboebcda7ba2020-02-23 16:42:51 -07003894 void __user *buf = sr->buf;
Jens Axboefddafac2020-01-04 20:19:44 -07003895 struct msghdr msg;
3896 struct iovec iov;
3897 unsigned flags;
3898
Jens Axboebcda7ba2020-02-23 16:42:51 -07003899 kbuf = io_recv_buffer_select(req, &cflags, !force_nonblock);
3900 if (IS_ERR(kbuf))
3901 return PTR_ERR(kbuf);
3902 else if (kbuf)
3903 buf = u64_to_user_ptr(kbuf->addr);
Jens Axboefddafac2020-01-04 20:19:44 -07003904
Jens Axboebcda7ba2020-02-23 16:42:51 -07003905 ret = import_single_range(READ, buf, sr->len, &iov,
3906 &msg.msg_iter);
3907 if (ret) {
3908 kfree(kbuf);
3909 return ret;
3910 }
3911
3912 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboefddafac2020-01-04 20:19:44 -07003913 msg.msg_name = NULL;
3914 msg.msg_control = NULL;
3915 msg.msg_controllen = 0;
3916 msg.msg_namelen = 0;
3917 msg.msg_iocb = NULL;
3918 msg.msg_flags = 0;
3919
3920 flags = req->sr_msg.msg_flags;
3921 if (flags & MSG_DONTWAIT)
3922 req->flags |= REQ_F_NOWAIT;
3923 else if (force_nonblock)
3924 flags |= MSG_DONTWAIT;
3925
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003926 ret = sock_recvmsg(sock, &msg, flags);
Jens Axboefddafac2020-01-04 20:19:44 -07003927 if (force_nonblock && ret == -EAGAIN)
3928 return -EAGAIN;
3929 if (ret == -ERESTARTSYS)
3930 ret = -EINTR;
3931 }
3932
Jens Axboebcda7ba2020-02-23 16:42:51 -07003933 kfree(kbuf);
3934 req->flags &= ~REQ_F_NEED_CLEANUP;
3935 __io_cqring_add_event(req, ret, cflags);
Jens Axboefddafac2020-01-04 20:19:44 -07003936 if (ret < 0)
3937 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003938 io_put_req(req);
Jens Axboefddafac2020-01-04 20:19:44 -07003939 return 0;
Jens Axboefddafac2020-01-04 20:19:44 -07003940}
3941
Jens Axboe3529d8c2019-12-19 18:24:38 -07003942static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003943{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003944 struct io_accept *accept = &req->accept;
3945
Jens Axboe17f2fe32019-10-17 14:42:58 -06003946 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3947 return -EINVAL;
Hrvoje Zeba8042d6c2019-11-25 14:40:22 -05003948 if (sqe->ioprio || sqe->len || sqe->buf_index)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003949 return -EINVAL;
3950
Jens Axboed55e5f52019-12-11 16:12:15 -07003951 accept->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
3952 accept->addr_len = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003953 accept->flags = READ_ONCE(sqe->accept_flags);
Jens Axboe09952e32020-03-19 20:16:56 -06003954 accept->nofile = rlimit(RLIMIT_NOFILE);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003955 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003956}
Jens Axboe17f2fe32019-10-17 14:42:58 -06003957
Pavel Begunkov014db002020-03-03 21:33:12 +03003958static int __io_accept(struct io_kiocb *req, bool force_nonblock)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003959{
3960 struct io_accept *accept = &req->accept;
3961 unsigned file_flags;
3962 int ret;
3963
3964 file_flags = force_nonblock ? O_NONBLOCK : 0;
3965 ret = __sys_accept4_file(req->file, file_flags, accept->addr,
Jens Axboe09952e32020-03-19 20:16:56 -06003966 accept->addr_len, accept->flags,
3967 accept->nofile);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003968 if (ret == -EAGAIN && force_nonblock)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003969 return -EAGAIN;
Jens Axboe8e3cca12019-11-09 19:52:33 -07003970 if (ret == -ERESTARTSYS)
3971 ret = -EINTR;
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003972 if (ret < 0)
3973 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07003974 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003975 io_put_req(req);
Jens Axboe17f2fe32019-10-17 14:42:58 -06003976 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003977}
3978
3979static void io_accept_finish(struct io_wq_work **workptr)
3980{
3981 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003982
3983 if (io_req_cancelled(req))
3984 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03003985 __io_accept(req, false);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03003986 io_steal_work(req, workptr);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003987}
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003988
Pavel Begunkov014db002020-03-03 21:33:12 +03003989static int io_accept(struct io_kiocb *req, bool force_nonblock)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003990{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003991 int ret;
3992
Pavel Begunkov014db002020-03-03 21:33:12 +03003993 ret = __io_accept(req, force_nonblock);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003994 if (ret == -EAGAIN && force_nonblock) {
3995 req->work.func = io_accept_finish;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003996 return -EAGAIN;
3997 }
3998 return 0;
Jens Axboe17f2fe32019-10-17 14:42:58 -06003999}
4000
Jens Axboe3529d8c2019-12-19 18:24:38 -07004001static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef499a022019-12-02 16:28:46 -07004002{
Jens Axboe3529d8c2019-12-19 18:24:38 -07004003 struct io_connect *conn = &req->connect;
4004 struct io_async_ctx *io = req->io;
Jens Axboef499a022019-12-02 16:28:46 -07004005
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004006 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
4007 return -EINVAL;
4008 if (sqe->ioprio || sqe->len || sqe->buf_index || sqe->rw_flags)
4009 return -EINVAL;
4010
Jens Axboe3529d8c2019-12-19 18:24:38 -07004011 conn->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
4012 conn->addr_len = READ_ONCE(sqe->addr2);
4013
4014 if (!io)
4015 return 0;
4016
4017 return move_addr_to_kernel(conn->addr, conn->addr_len,
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004018 &io->connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07004019}
4020
Pavel Begunkov014db002020-03-03 21:33:12 +03004021static int io_connect(struct io_kiocb *req, bool force_nonblock)
Jens Axboef8e85cf2019-11-23 14:24:24 -07004022{
Jens Axboef499a022019-12-02 16:28:46 -07004023 struct io_async_ctx __io, *io;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004024 unsigned file_flags;
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004025 int ret;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004026
Jens Axboef499a022019-12-02 16:28:46 -07004027 if (req->io) {
4028 io = req->io;
4029 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07004030 ret = move_addr_to_kernel(req->connect.addr,
4031 req->connect.addr_len,
4032 &__io.connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07004033 if (ret)
4034 goto out;
4035 io = &__io;
4036 }
4037
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004038 file_flags = force_nonblock ? O_NONBLOCK : 0;
4039
4040 ret = __sys_connect_file(req->file, &io->connect.address,
4041 req->connect.addr_len, file_flags);
Jens Axboe87f80d62019-12-03 11:23:54 -07004042 if ((ret == -EAGAIN || ret == -EINPROGRESS) && force_nonblock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004043 if (req->io)
4044 return -EAGAIN;
4045 if (io_alloc_async_ctx(req)) {
Jens Axboef499a022019-12-02 16:28:46 -07004046 ret = -ENOMEM;
4047 goto out;
4048 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004049 memcpy(&req->io->connect, &__io.connect, sizeof(__io.connect));
Jens Axboef8e85cf2019-11-23 14:24:24 -07004050 return -EAGAIN;
Jens Axboef499a022019-12-02 16:28:46 -07004051 }
Jens Axboef8e85cf2019-11-23 14:24:24 -07004052 if (ret == -ERESTARTSYS)
4053 ret = -EINTR;
Jens Axboef499a022019-12-02 16:28:46 -07004054out:
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004055 if (ret < 0)
4056 req_set_fail_links(req);
Jens Axboef8e85cf2019-11-23 14:24:24 -07004057 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03004058 io_put_req(req);
Jens Axboef8e85cf2019-11-23 14:24:24 -07004059 return 0;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004060}
YueHaibing469956e2020-03-04 15:53:52 +08004061#else /* !CONFIG_NET */
4062static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4063{
Jens Axboef8e85cf2019-11-23 14:24:24 -07004064 return -EOPNOTSUPP;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004065}
4066
YueHaibing469956e2020-03-04 15:53:52 +08004067static int io_sendmsg(struct io_kiocb *req, bool force_nonblock)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004068{
YueHaibing469956e2020-03-04 15:53:52 +08004069 return -EOPNOTSUPP;
4070}
4071
4072static int io_send(struct io_kiocb *req, bool force_nonblock)
4073{
4074 return -EOPNOTSUPP;
4075}
4076
4077static int io_recvmsg_prep(struct io_kiocb *req,
4078 const struct io_uring_sqe *sqe)
4079{
4080 return -EOPNOTSUPP;
4081}
4082
4083static int io_recvmsg(struct io_kiocb *req, bool force_nonblock)
4084{
4085 return -EOPNOTSUPP;
4086}
4087
4088static int io_recv(struct io_kiocb *req, bool force_nonblock)
4089{
4090 return -EOPNOTSUPP;
4091}
4092
4093static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4094{
4095 return -EOPNOTSUPP;
4096}
4097
4098static int io_accept(struct io_kiocb *req, bool force_nonblock)
4099{
4100 return -EOPNOTSUPP;
4101}
4102
4103static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4104{
4105 return -EOPNOTSUPP;
4106}
4107
4108static int io_connect(struct io_kiocb *req, bool force_nonblock)
4109{
4110 return -EOPNOTSUPP;
4111}
4112#endif /* CONFIG_NET */
Jens Axboe2b188cc2019-01-07 10:46:33 -07004113
Jens Axboed7718a92020-02-14 22:23:12 -07004114struct io_poll_table {
4115 struct poll_table_struct pt;
4116 struct io_kiocb *req;
4117 int error;
4118};
4119
4120static void __io_queue_proc(struct io_poll_iocb *poll, struct io_poll_table *pt,
4121 struct wait_queue_head *head)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004122{
Jens Axboed7718a92020-02-14 22:23:12 -07004123 if (unlikely(poll->head)) {
4124 pt->error = -EINVAL;
4125 return;
4126 }
4127
4128 pt->error = 0;
4129 poll->head = head;
4130 add_wait_queue(head, &poll->wait);
4131}
4132
4133static void io_async_queue_proc(struct file *file, struct wait_queue_head *head,
4134 struct poll_table_struct *p)
4135{
4136 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
4137
4138 __io_queue_proc(&pt->req->apoll->poll, pt, head);
4139}
4140
4141static int __io_async_wake(struct io_kiocb *req, struct io_poll_iocb *poll,
4142 __poll_t mask, task_work_func_t func)
4143{
4144 struct task_struct *tsk;
Jens Axboeaa96bf82020-04-03 11:26:26 -06004145 int ret;
Jens Axboed7718a92020-02-14 22:23:12 -07004146
4147 /* for instances that support it check for an event match first: */
4148 if (mask && !(mask & poll->events))
4149 return 0;
4150
4151 trace_io_uring_task_add(req->ctx, req->opcode, req->user_data, mask);
4152
4153 list_del_init(&poll->wait.entry);
4154
4155 tsk = req->task;
4156 req->result = mask;
4157 init_task_work(&req->task_work, func);
4158 /*
Jens Axboeaa96bf82020-04-03 11:26:26 -06004159 * If this fails, then the task is exiting. Punt to one of the io-wq
4160 * threads to ensure the work gets run, we can't always rely on exit
4161 * cancelation taking care of this.
Jens Axboed7718a92020-02-14 22:23:12 -07004162 */
Jens Axboeaa96bf82020-04-03 11:26:26 -06004163 ret = task_work_add(tsk, &req->task_work, true);
4164 if (unlikely(ret)) {
4165 tsk = io_wq_get_task(req->ctx->io_wq);
4166 task_work_add(tsk, &req->task_work, true);
4167 }
Jens Axboed7718a92020-02-14 22:23:12 -07004168 wake_up_process(tsk);
4169 return 1;
4170}
4171
4172static void io_async_task_func(struct callback_head *cb)
4173{
4174 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
4175 struct async_poll *apoll = req->apoll;
4176 struct io_ring_ctx *ctx = req->ctx;
4177
4178 trace_io_uring_task_run(req->ctx, req->opcode, req->user_data);
4179
4180 WARN_ON_ONCE(!list_empty(&req->apoll->poll.wait.entry));
4181
4182 if (hash_hashed(&req->hash_node)) {
4183 spin_lock_irq(&ctx->completion_lock);
4184 hash_del(&req->hash_node);
4185 spin_unlock_irq(&ctx->completion_lock);
4186 }
4187
4188 /* restore ->work in case we need to retry again */
4189 memcpy(&req->work, &apoll->work, sizeof(req->work));
4190
4191 __set_current_state(TASK_RUNNING);
4192 mutex_lock(&ctx->uring_lock);
4193 __io_queue_sqe(req, NULL);
4194 mutex_unlock(&ctx->uring_lock);
4195
4196 kfree(apoll);
4197}
4198
4199static int io_async_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
4200 void *key)
4201{
4202 struct io_kiocb *req = wait->private;
4203 struct io_poll_iocb *poll = &req->apoll->poll;
4204
4205 trace_io_uring_poll_wake(req->ctx, req->opcode, req->user_data,
4206 key_to_poll(key));
4207
4208 return __io_async_wake(req, poll, key_to_poll(key), io_async_task_func);
4209}
4210
4211static void io_poll_req_insert(struct io_kiocb *req)
4212{
4213 struct io_ring_ctx *ctx = req->ctx;
4214 struct hlist_head *list;
4215
4216 list = &ctx->cancel_hash[hash_long(req->user_data, ctx->cancel_hash_bits)];
4217 hlist_add_head(&req->hash_node, list);
4218}
4219
4220static __poll_t __io_arm_poll_handler(struct io_kiocb *req,
4221 struct io_poll_iocb *poll,
4222 struct io_poll_table *ipt, __poll_t mask,
4223 wait_queue_func_t wake_func)
4224 __acquires(&ctx->completion_lock)
4225{
4226 struct io_ring_ctx *ctx = req->ctx;
4227 bool cancel = false;
4228
4229 poll->file = req->file;
4230 poll->head = NULL;
4231 poll->done = poll->canceled = false;
4232 poll->events = mask;
4233
4234 ipt->pt._key = mask;
4235 ipt->req = req;
4236 ipt->error = -EINVAL;
4237
4238 INIT_LIST_HEAD(&poll->wait.entry);
4239 init_waitqueue_func_entry(&poll->wait, wake_func);
4240 poll->wait.private = req;
4241
4242 mask = vfs_poll(req->file, &ipt->pt) & poll->events;
4243
4244 spin_lock_irq(&ctx->completion_lock);
4245 if (likely(poll->head)) {
4246 spin_lock(&poll->head->lock);
4247 if (unlikely(list_empty(&poll->wait.entry))) {
4248 if (ipt->error)
4249 cancel = true;
4250 ipt->error = 0;
4251 mask = 0;
4252 }
4253 if (mask || ipt->error)
4254 list_del_init(&poll->wait.entry);
4255 else if (cancel)
4256 WRITE_ONCE(poll->canceled, true);
4257 else if (!poll->done) /* actually waiting for an event */
4258 io_poll_req_insert(req);
4259 spin_unlock(&poll->head->lock);
4260 }
4261
4262 return mask;
4263}
4264
4265static bool io_arm_poll_handler(struct io_kiocb *req)
4266{
4267 const struct io_op_def *def = &io_op_defs[req->opcode];
4268 struct io_ring_ctx *ctx = req->ctx;
4269 struct async_poll *apoll;
4270 struct io_poll_table ipt;
4271 __poll_t mask, ret;
4272
4273 if (!req->file || !file_can_poll(req->file))
4274 return false;
4275 if (req->flags & (REQ_F_MUST_PUNT | REQ_F_POLLED))
4276 return false;
4277 if (!def->pollin && !def->pollout)
4278 return false;
4279
4280 apoll = kmalloc(sizeof(*apoll), GFP_ATOMIC);
4281 if (unlikely(!apoll))
4282 return false;
4283
4284 req->flags |= REQ_F_POLLED;
4285 memcpy(&apoll->work, &req->work, sizeof(req->work));
4286
Jens Axboe3537b6a2020-04-03 11:19:06 -06004287 get_task_struct(current);
Jens Axboed7718a92020-02-14 22:23:12 -07004288 req->task = current;
4289 req->apoll = apoll;
4290 INIT_HLIST_NODE(&req->hash_node);
4291
Nathan Chancellor8755d972020-03-02 16:01:19 -07004292 mask = 0;
Jens Axboed7718a92020-02-14 22:23:12 -07004293 if (def->pollin)
Nathan Chancellor8755d972020-03-02 16:01:19 -07004294 mask |= POLLIN | POLLRDNORM;
Jens Axboed7718a92020-02-14 22:23:12 -07004295 if (def->pollout)
4296 mask |= POLLOUT | POLLWRNORM;
4297 mask |= POLLERR | POLLPRI;
4298
4299 ipt.pt._qproc = io_async_queue_proc;
4300
4301 ret = __io_arm_poll_handler(req, &apoll->poll, &ipt, mask,
4302 io_async_wake);
4303 if (ret) {
4304 ipt.error = 0;
4305 apoll->poll.done = true;
4306 spin_unlock_irq(&ctx->completion_lock);
4307 memcpy(&req->work, &apoll->work, sizeof(req->work));
4308 kfree(apoll);
4309 return false;
4310 }
4311 spin_unlock_irq(&ctx->completion_lock);
4312 trace_io_uring_poll_arm(ctx, req->opcode, req->user_data, mask,
4313 apoll->poll.events);
4314 return true;
4315}
4316
4317static bool __io_poll_remove_one(struct io_kiocb *req,
4318 struct io_poll_iocb *poll)
4319{
Jens Axboeb41e9852020-02-17 09:52:41 -07004320 bool do_complete = false;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004321
4322 spin_lock(&poll->head->lock);
4323 WRITE_ONCE(poll->canceled, true);
Jens Axboe392edb42019-12-09 17:52:20 -07004324 if (!list_empty(&poll->wait.entry)) {
4325 list_del_init(&poll->wait.entry);
Jens Axboeb41e9852020-02-17 09:52:41 -07004326 do_complete = true;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004327 }
4328 spin_unlock(&poll->head->lock);
Jens Axboed7718a92020-02-14 22:23:12 -07004329 return do_complete;
4330}
4331
4332static bool io_poll_remove_one(struct io_kiocb *req)
4333{
4334 bool do_complete;
4335
4336 if (req->opcode == IORING_OP_POLL_ADD) {
4337 do_complete = __io_poll_remove_one(req, &req->poll);
4338 } else {
4339 /* non-poll requests have submit ref still */
4340 do_complete = __io_poll_remove_one(req, &req->apoll->poll);
4341 if (do_complete)
4342 io_put_req(req);
4343 }
4344
Jens Axboe78076bb2019-12-04 19:56:40 -07004345 hash_del(&req->hash_node);
Jens Axboed7718a92020-02-14 22:23:12 -07004346
Jens Axboeb41e9852020-02-17 09:52:41 -07004347 if (do_complete) {
4348 io_cqring_fill_event(req, -ECANCELED);
4349 io_commit_cqring(req->ctx);
4350 req->flags |= REQ_F_COMP_LOCKED;
4351 io_put_req(req);
4352 }
4353
4354 return do_complete;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004355}
4356
4357static void io_poll_remove_all(struct io_ring_ctx *ctx)
4358{
Jens Axboe78076bb2019-12-04 19:56:40 -07004359 struct hlist_node *tmp;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004360 struct io_kiocb *req;
Jens Axboe78076bb2019-12-04 19:56:40 -07004361 int i;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004362
4363 spin_lock_irq(&ctx->completion_lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07004364 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
4365 struct hlist_head *list;
4366
4367 list = &ctx->cancel_hash[i];
4368 hlist_for_each_entry_safe(req, tmp, list, hash_node)
4369 io_poll_remove_one(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004370 }
4371 spin_unlock_irq(&ctx->completion_lock);
Jens Axboeb41e9852020-02-17 09:52:41 -07004372
4373 io_cqring_ev_posted(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004374}
4375
Jens Axboe47f46762019-11-09 17:43:02 -07004376static int io_poll_cancel(struct io_ring_ctx *ctx, __u64 sqe_addr)
4377{
Jens Axboe78076bb2019-12-04 19:56:40 -07004378 struct hlist_head *list;
Jens Axboe47f46762019-11-09 17:43:02 -07004379 struct io_kiocb *req;
4380
Jens Axboe78076bb2019-12-04 19:56:40 -07004381 list = &ctx->cancel_hash[hash_long(sqe_addr, ctx->cancel_hash_bits)];
4382 hlist_for_each_entry(req, list, hash_node) {
Jens Axboeb41e9852020-02-17 09:52:41 -07004383 if (sqe_addr != req->user_data)
4384 continue;
4385 if (io_poll_remove_one(req))
Jens Axboeeac406c2019-11-14 12:09:58 -07004386 return 0;
Jens Axboeb41e9852020-02-17 09:52:41 -07004387 return -EALREADY;
Jens Axboe47f46762019-11-09 17:43:02 -07004388 }
4389
4390 return -ENOENT;
4391}
4392
Jens Axboe3529d8c2019-12-19 18:24:38 -07004393static int io_poll_remove_prep(struct io_kiocb *req,
4394 const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004395{
Jens Axboe221c5eb2019-01-17 09:41:58 -07004396 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4397 return -EINVAL;
4398 if (sqe->ioprio || sqe->off || sqe->len || sqe->buf_index ||
4399 sqe->poll_events)
4400 return -EINVAL;
4401
Jens Axboe0969e782019-12-17 18:40:57 -07004402 req->poll.addr = READ_ONCE(sqe->addr);
Jens Axboe0969e782019-12-17 18:40:57 -07004403 return 0;
4404}
4405
4406/*
4407 * Find a running poll command that matches one specified in sqe->addr,
4408 * and remove it if found.
4409 */
4410static int io_poll_remove(struct io_kiocb *req)
4411{
4412 struct io_ring_ctx *ctx = req->ctx;
4413 u64 addr;
4414 int ret;
4415
Jens Axboe0969e782019-12-17 18:40:57 -07004416 addr = req->poll.addr;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004417 spin_lock_irq(&ctx->completion_lock);
Jens Axboe0969e782019-12-17 18:40:57 -07004418 ret = io_poll_cancel(ctx, addr);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004419 spin_unlock_irq(&ctx->completion_lock);
4420
Jens Axboe78e19bb2019-11-06 15:21:34 -07004421 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004422 if (ret < 0)
4423 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06004424 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004425 return 0;
4426}
4427
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004428static void io_poll_complete(struct io_kiocb *req, __poll_t mask, int error)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004429{
Jackie Liua197f662019-11-08 08:09:12 -07004430 struct io_ring_ctx *ctx = req->ctx;
4431
Jens Axboe8c838782019-03-12 15:48:16 -06004432 req->poll.done = true;
Pavel Begunkovb0a20342020-02-28 10:36:35 +03004433 io_cqring_fill_event(req, error ? error : mangle_poll(mask));
Jens Axboe8c838782019-03-12 15:48:16 -06004434 io_commit_cqring(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004435}
4436
Jens Axboeb41e9852020-02-17 09:52:41 -07004437static void io_poll_task_handler(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004438{
Jens Axboe221c5eb2019-01-17 09:41:58 -07004439 struct io_ring_ctx *ctx = req->ctx;
Jens Axboea6ba6322020-04-03 11:10:14 -06004440 struct io_poll_iocb *poll = &req->poll;
4441
4442 if (!req->result && !READ_ONCE(poll->canceled)) {
4443 struct poll_table_struct pt = { ._key = poll->events };
4444
4445 req->result = vfs_poll(req->file, &pt) & poll->events;
4446 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07004447
Jens Axboe221c5eb2019-01-17 09:41:58 -07004448 spin_lock_irq(&ctx->completion_lock);
Jens Axboea6ba6322020-04-03 11:10:14 -06004449 if (!req->result && !READ_ONCE(poll->canceled)) {
4450 add_wait_queue(poll->head, &poll->wait);
4451 spin_unlock_irq(&ctx->completion_lock);
4452 return;
4453 }
Jens Axboe78076bb2019-12-04 19:56:40 -07004454 hash_del(&req->hash_node);
Jens Axboeb41e9852020-02-17 09:52:41 -07004455 io_poll_complete(req, req->result, 0);
4456 req->flags |= REQ_F_COMP_LOCKED;
4457 io_put_req_find_next(req, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004458 spin_unlock_irq(&ctx->completion_lock);
4459
Jens Axboe8c838782019-03-12 15:48:16 -06004460 io_cqring_ev_posted(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004461}
4462
Jens Axboeb41e9852020-02-17 09:52:41 -07004463static void io_poll_task_func(struct callback_head *cb)
Jens Axboee94f1412019-12-19 12:06:02 -07004464{
Jens Axboeb41e9852020-02-17 09:52:41 -07004465 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
4466 struct io_kiocb *nxt = NULL;
Jens Axboee94f1412019-12-19 12:06:02 -07004467
Jens Axboeb41e9852020-02-17 09:52:41 -07004468 io_poll_task_handler(req, &nxt);
Jens Axboed7718a92020-02-14 22:23:12 -07004469 if (nxt) {
4470 struct io_ring_ctx *ctx = nxt->ctx;
Jens Axboee94f1412019-12-19 12:06:02 -07004471
Jens Axboed7718a92020-02-14 22:23:12 -07004472 mutex_lock(&ctx->uring_lock);
Jens Axboeb41e9852020-02-17 09:52:41 -07004473 __io_queue_sqe(nxt, NULL);
Jens Axboed7718a92020-02-14 22:23:12 -07004474 mutex_unlock(&ctx->uring_lock);
Jens Axboee94f1412019-12-19 12:06:02 -07004475 }
Jens Axboef0b493e2020-02-01 21:30:11 -07004476}
4477
Jens Axboe221c5eb2019-01-17 09:41:58 -07004478static int io_poll_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
4479 void *key)
4480{
Jens Axboec2f2eb72020-02-10 09:07:05 -07004481 struct io_kiocb *req = wait->private;
4482 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004483
Jens Axboed7718a92020-02-14 22:23:12 -07004484 return __io_async_wake(req, poll, key_to_poll(key), io_poll_task_func);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004485}
4486
Jens Axboe221c5eb2019-01-17 09:41:58 -07004487static void io_poll_queue_proc(struct file *file, struct wait_queue_head *head,
4488 struct poll_table_struct *p)
4489{
4490 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
4491
Jens Axboed7718a92020-02-14 22:23:12 -07004492 __io_queue_proc(&pt->req->poll, pt, head);
Jens Axboeeac406c2019-11-14 12:09:58 -07004493}
4494
Jens Axboe3529d8c2019-12-19 18:24:38 -07004495static int io_poll_add_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004496{
4497 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004498 u16 events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004499
4500 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4501 return -EINVAL;
4502 if (sqe->addr || sqe->ioprio || sqe->off || sqe->len || sqe->buf_index)
4503 return -EINVAL;
Jens Axboe09bb8392019-03-13 12:39:28 -06004504 if (!poll->file)
4505 return -EBADF;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004506
Jens Axboe221c5eb2019-01-17 09:41:58 -07004507 events = READ_ONCE(sqe->poll_events);
4508 poll->events = demangle_poll(events) | EPOLLERR | EPOLLHUP;
Jens Axboeb41e9852020-02-17 09:52:41 -07004509
Jens Axboe3537b6a2020-04-03 11:19:06 -06004510 get_task_struct(current);
Jens Axboeb41e9852020-02-17 09:52:41 -07004511 req->task = current;
Jens Axboe0969e782019-12-17 18:40:57 -07004512 return 0;
4513}
4514
Pavel Begunkov014db002020-03-03 21:33:12 +03004515static int io_poll_add(struct io_kiocb *req)
Jens Axboe0969e782019-12-17 18:40:57 -07004516{
4517 struct io_poll_iocb *poll = &req->poll;
4518 struct io_ring_ctx *ctx = req->ctx;
4519 struct io_poll_table ipt;
Jens Axboe0969e782019-12-17 18:40:57 -07004520 __poll_t mask;
Jens Axboe0969e782019-12-17 18:40:57 -07004521
Jens Axboe78076bb2019-12-04 19:56:40 -07004522 INIT_HLIST_NODE(&req->hash_node);
Jens Axboe36703242019-07-25 10:20:18 -06004523 INIT_LIST_HEAD(&req->list);
Jens Axboed7718a92020-02-14 22:23:12 -07004524 ipt.pt._qproc = io_poll_queue_proc;
Jens Axboe36703242019-07-25 10:20:18 -06004525
Jens Axboed7718a92020-02-14 22:23:12 -07004526 mask = __io_arm_poll_handler(req, &req->poll, &ipt, poll->events,
4527 io_poll_wake);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004528
Jens Axboe8c838782019-03-12 15:48:16 -06004529 if (mask) { /* no async, we'd stolen it */
Jens Axboe8c838782019-03-12 15:48:16 -06004530 ipt.error = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004531 io_poll_complete(req, mask, 0);
Jens Axboe8c838782019-03-12 15:48:16 -06004532 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07004533 spin_unlock_irq(&ctx->completion_lock);
4534
Jens Axboe8c838782019-03-12 15:48:16 -06004535 if (mask) {
4536 io_cqring_ev_posted(ctx);
Pavel Begunkov014db002020-03-03 21:33:12 +03004537 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004538 }
Jens Axboe8c838782019-03-12 15:48:16 -06004539 return ipt.error;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004540}
4541
Jens Axboe5262f562019-09-17 12:26:57 -06004542static enum hrtimer_restart io_timeout_fn(struct hrtimer *timer)
4543{
Jens Axboead8a48a2019-11-15 08:49:11 -07004544 struct io_timeout_data *data = container_of(timer,
4545 struct io_timeout_data, timer);
4546 struct io_kiocb *req = data->req;
4547 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5262f562019-09-17 12:26:57 -06004548 unsigned long flags;
4549
Jens Axboe5262f562019-09-17 12:26:57 -06004550 atomic_inc(&ctx->cq_timeouts);
4551
4552 spin_lock_irqsave(&ctx->completion_lock, flags);
zhangyi (F)ef036812019-10-23 15:10:08 +08004553 /*
Jens Axboe11365042019-10-16 09:08:32 -06004554 * We could be racing with timeout deletion. If the list is empty,
4555 * then timeout lookup already found it and will be handling it.
zhangyi (F)ef036812019-10-23 15:10:08 +08004556 */
Jens Axboe842f9612019-10-29 12:34:10 -06004557 if (!list_empty(&req->list)) {
Jens Axboe11365042019-10-16 09:08:32 -06004558 struct io_kiocb *prev;
Jens Axboe5262f562019-09-17 12:26:57 -06004559
Jens Axboe11365042019-10-16 09:08:32 -06004560 /*
4561 * Adjust the reqs sequence before the current one because it
Brian Gianforcarod195a662019-12-13 03:09:50 -08004562 * will consume a slot in the cq_ring and the cq_tail
Jens Axboe11365042019-10-16 09:08:32 -06004563 * pointer will be increased, otherwise other timeout reqs may
4564 * return in advance without waiting for enough wait_nr.
4565 */
4566 prev = req;
4567 list_for_each_entry_continue_reverse(prev, &ctx->timeout_list, list)
4568 prev->sequence++;
Jens Axboe11365042019-10-16 09:08:32 -06004569 list_del_init(&req->list);
Jens Axboe11365042019-10-16 09:08:32 -06004570 }
Jens Axboe842f9612019-10-29 12:34:10 -06004571
Jens Axboe78e19bb2019-11-06 15:21:34 -07004572 io_cqring_fill_event(req, -ETIME);
Jens Axboe5262f562019-09-17 12:26:57 -06004573 io_commit_cqring(ctx);
4574 spin_unlock_irqrestore(&ctx->completion_lock, flags);
4575
4576 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004577 req_set_fail_links(req);
Jens Axboe5262f562019-09-17 12:26:57 -06004578 io_put_req(req);
4579 return HRTIMER_NORESTART;
4580}
4581
Jens Axboe47f46762019-11-09 17:43:02 -07004582static int io_timeout_cancel(struct io_ring_ctx *ctx, __u64 user_data)
4583{
4584 struct io_kiocb *req;
4585 int ret = -ENOENT;
4586
4587 list_for_each_entry(req, &ctx->timeout_list, list) {
4588 if (user_data == req->user_data) {
4589 list_del_init(&req->list);
4590 ret = 0;
4591 break;
4592 }
4593 }
4594
4595 if (ret == -ENOENT)
4596 return ret;
4597
Jens Axboe2d283902019-12-04 11:08:05 -07004598 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe47f46762019-11-09 17:43:02 -07004599 if (ret == -1)
4600 return -EALREADY;
4601
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004602 req_set_fail_links(req);
Jens Axboe47f46762019-11-09 17:43:02 -07004603 io_cqring_fill_event(req, -ECANCELED);
4604 io_put_req(req);
4605 return 0;
4606}
4607
Jens Axboe3529d8c2019-12-19 18:24:38 -07004608static int io_timeout_remove_prep(struct io_kiocb *req,
4609 const struct io_uring_sqe *sqe)
Jens Axboeb29472e2019-12-17 18:50:29 -07004610{
Jens Axboeb29472e2019-12-17 18:50:29 -07004611 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4612 return -EINVAL;
4613 if (sqe->flags || sqe->ioprio || sqe->buf_index || sqe->len)
4614 return -EINVAL;
4615
4616 req->timeout.addr = READ_ONCE(sqe->addr);
4617 req->timeout.flags = READ_ONCE(sqe->timeout_flags);
4618 if (req->timeout.flags)
4619 return -EINVAL;
4620
Jens Axboeb29472e2019-12-17 18:50:29 -07004621 return 0;
4622}
4623
Jens Axboe11365042019-10-16 09:08:32 -06004624/*
4625 * Remove or update an existing timeout command
4626 */
Jens Axboefc4df992019-12-10 14:38:45 -07004627static int io_timeout_remove(struct io_kiocb *req)
Jens Axboe11365042019-10-16 09:08:32 -06004628{
4629 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe47f46762019-11-09 17:43:02 -07004630 int ret;
Jens Axboe11365042019-10-16 09:08:32 -06004631
Jens Axboe11365042019-10-16 09:08:32 -06004632 spin_lock_irq(&ctx->completion_lock);
Jens Axboeb29472e2019-12-17 18:50:29 -07004633 ret = io_timeout_cancel(ctx, req->timeout.addr);
Jens Axboe11365042019-10-16 09:08:32 -06004634
Jens Axboe47f46762019-11-09 17:43:02 -07004635 io_cqring_fill_event(req, ret);
Jens Axboe11365042019-10-16 09:08:32 -06004636 io_commit_cqring(ctx);
4637 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06004638 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004639 if (ret < 0)
4640 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08004641 io_put_req(req);
Jens Axboe11365042019-10-16 09:08:32 -06004642 return 0;
Jens Axboe5262f562019-09-17 12:26:57 -06004643}
4644
Jens Axboe3529d8c2019-12-19 18:24:38 -07004645static int io_timeout_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboe2d283902019-12-04 11:08:05 -07004646 bool is_timeout_link)
Jens Axboe5262f562019-09-17 12:26:57 -06004647{
Jens Axboead8a48a2019-11-15 08:49:11 -07004648 struct io_timeout_data *data;
Jens Axboea41525a2019-10-15 16:48:15 -06004649 unsigned flags;
Jens Axboe5262f562019-09-17 12:26:57 -06004650
Jens Axboead8a48a2019-11-15 08:49:11 -07004651 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe5262f562019-09-17 12:26:57 -06004652 return -EINVAL;
Jens Axboead8a48a2019-11-15 08:49:11 -07004653 if (sqe->ioprio || sqe->buf_index || sqe->len != 1)
Jens Axboea41525a2019-10-15 16:48:15 -06004654 return -EINVAL;
Jens Axboe2d283902019-12-04 11:08:05 -07004655 if (sqe->off && is_timeout_link)
4656 return -EINVAL;
Jens Axboea41525a2019-10-15 16:48:15 -06004657 flags = READ_ONCE(sqe->timeout_flags);
4658 if (flags & ~IORING_TIMEOUT_ABS)
Jens Axboe5262f562019-09-17 12:26:57 -06004659 return -EINVAL;
Arnd Bergmannbdf20072019-10-01 09:53:29 -06004660
Jens Axboe26a61672019-12-20 09:02:01 -07004661 req->timeout.count = READ_ONCE(sqe->off);
4662
Jens Axboe3529d8c2019-12-19 18:24:38 -07004663 if (!req->io && io_alloc_async_ctx(req))
Jens Axboe26a61672019-12-20 09:02:01 -07004664 return -ENOMEM;
4665
4666 data = &req->io->timeout;
Jens Axboead8a48a2019-11-15 08:49:11 -07004667 data->req = req;
Jens Axboead8a48a2019-11-15 08:49:11 -07004668 req->flags |= REQ_F_TIMEOUT;
4669
4670 if (get_timespec64(&data->ts, u64_to_user_ptr(sqe->addr)))
Jens Axboe5262f562019-09-17 12:26:57 -06004671 return -EFAULT;
4672
Jens Axboe11365042019-10-16 09:08:32 -06004673 if (flags & IORING_TIMEOUT_ABS)
Jens Axboead8a48a2019-11-15 08:49:11 -07004674 data->mode = HRTIMER_MODE_ABS;
Jens Axboe11365042019-10-16 09:08:32 -06004675 else
Jens Axboead8a48a2019-11-15 08:49:11 -07004676 data->mode = HRTIMER_MODE_REL;
Jens Axboe11365042019-10-16 09:08:32 -06004677
Jens Axboead8a48a2019-11-15 08:49:11 -07004678 hrtimer_init(&data->timer, CLOCK_MONOTONIC, data->mode);
4679 return 0;
4680}
4681
Jens Axboefc4df992019-12-10 14:38:45 -07004682static int io_timeout(struct io_kiocb *req)
Jens Axboead8a48a2019-11-15 08:49:11 -07004683{
4684 unsigned count;
4685 struct io_ring_ctx *ctx = req->ctx;
4686 struct io_timeout_data *data;
4687 struct list_head *entry;
4688 unsigned span = 0;
Jens Axboead8a48a2019-11-15 08:49:11 -07004689
Jens Axboe2d283902019-12-04 11:08:05 -07004690 data = &req->io->timeout;
Jens Axboe93bd25b2019-11-11 23:34:31 -07004691
Jens Axboe5262f562019-09-17 12:26:57 -06004692 /*
4693 * sqe->off holds how many events that need to occur for this
Jens Axboe93bd25b2019-11-11 23:34:31 -07004694 * timeout event to be satisfied. If it isn't set, then this is
4695 * a pure timeout request, sequence isn't used.
Jens Axboe5262f562019-09-17 12:26:57 -06004696 */
Jens Axboe26a61672019-12-20 09:02:01 -07004697 count = req->timeout.count;
Jens Axboe93bd25b2019-11-11 23:34:31 -07004698 if (!count) {
4699 req->flags |= REQ_F_TIMEOUT_NOSEQ;
4700 spin_lock_irq(&ctx->completion_lock);
4701 entry = ctx->timeout_list.prev;
4702 goto add;
4703 }
Jens Axboe5262f562019-09-17 12:26:57 -06004704
4705 req->sequence = ctx->cached_sq_head + count - 1;
Jens Axboe2d283902019-12-04 11:08:05 -07004706 data->seq_offset = count;
Jens Axboe5262f562019-09-17 12:26:57 -06004707
4708 /*
4709 * Insertion sort, ensuring the first entry in the list is always
4710 * the one we need first.
4711 */
Jens Axboe5262f562019-09-17 12:26:57 -06004712 spin_lock_irq(&ctx->completion_lock);
4713 list_for_each_prev(entry, &ctx->timeout_list) {
4714 struct io_kiocb *nxt = list_entry(entry, struct io_kiocb, list);
yangerkun5da0fb12019-10-15 21:59:29 +08004715 unsigned nxt_sq_head;
4716 long long tmp, tmp_nxt;
Jens Axboe2d283902019-12-04 11:08:05 -07004717 u32 nxt_offset = nxt->io->timeout.seq_offset;
Jens Axboe5262f562019-09-17 12:26:57 -06004718
Jens Axboe93bd25b2019-11-11 23:34:31 -07004719 if (nxt->flags & REQ_F_TIMEOUT_NOSEQ)
4720 continue;
4721
yangerkun5da0fb12019-10-15 21:59:29 +08004722 /*
4723 * Since cached_sq_head + count - 1 can overflow, use type long
4724 * long to store it.
4725 */
4726 tmp = (long long)ctx->cached_sq_head + count - 1;
Pavel Begunkovcc42e0a2019-11-25 23:14:38 +03004727 nxt_sq_head = nxt->sequence - nxt_offset + 1;
4728 tmp_nxt = (long long)nxt_sq_head + nxt_offset - 1;
yangerkun5da0fb12019-10-15 21:59:29 +08004729
4730 /*
4731 * cached_sq_head may overflow, and it will never overflow twice
4732 * once there is some timeout req still be valid.
4733 */
4734 if (ctx->cached_sq_head < nxt_sq_head)
yangerkun8b07a652019-10-17 12:12:35 +08004735 tmp += UINT_MAX;
yangerkun5da0fb12019-10-15 21:59:29 +08004736
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004737 if (tmp > tmp_nxt)
Jens Axboe5262f562019-09-17 12:26:57 -06004738 break;
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004739
4740 /*
4741 * Sequence of reqs after the insert one and itself should
4742 * be adjusted because each timeout req consumes a slot.
4743 */
4744 span++;
4745 nxt->sequence++;
Jens Axboe5262f562019-09-17 12:26:57 -06004746 }
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004747 req->sequence -= span;
Jens Axboe93bd25b2019-11-11 23:34:31 -07004748add:
Jens Axboe5262f562019-09-17 12:26:57 -06004749 list_add(&req->list, entry);
Jens Axboead8a48a2019-11-15 08:49:11 -07004750 data->timer.function = io_timeout_fn;
4751 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts), data->mode);
Jens Axboe842f9612019-10-29 12:34:10 -06004752 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06004753 return 0;
4754}
4755
Jens Axboe62755e32019-10-28 21:49:21 -06004756static bool io_cancel_cb(struct io_wq_work *work, void *data)
Jens Axboede0617e2019-04-06 21:51:27 -06004757{
Jens Axboe62755e32019-10-28 21:49:21 -06004758 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboede0617e2019-04-06 21:51:27 -06004759
Jens Axboe62755e32019-10-28 21:49:21 -06004760 return req->user_data == (unsigned long) data;
4761}
4762
Jens Axboee977d6d2019-11-05 12:39:45 -07004763static int io_async_cancel_one(struct io_ring_ctx *ctx, void *sqe_addr)
Jens Axboe62755e32019-10-28 21:49:21 -06004764{
Jens Axboe62755e32019-10-28 21:49:21 -06004765 enum io_wq_cancel cancel_ret;
Jens Axboe62755e32019-10-28 21:49:21 -06004766 int ret = 0;
4767
Jens Axboe62755e32019-10-28 21:49:21 -06004768 cancel_ret = io_wq_cancel_cb(ctx->io_wq, io_cancel_cb, sqe_addr);
4769 switch (cancel_ret) {
4770 case IO_WQ_CANCEL_OK:
4771 ret = 0;
4772 break;
4773 case IO_WQ_CANCEL_RUNNING:
4774 ret = -EALREADY;
4775 break;
4776 case IO_WQ_CANCEL_NOTFOUND:
4777 ret = -ENOENT;
4778 break;
4779 }
4780
Jens Axboee977d6d2019-11-05 12:39:45 -07004781 return ret;
4782}
4783
Jens Axboe47f46762019-11-09 17:43:02 -07004784static void io_async_find_and_cancel(struct io_ring_ctx *ctx,
4785 struct io_kiocb *req, __u64 sqe_addr,
Pavel Begunkov014db002020-03-03 21:33:12 +03004786 int success_ret)
Jens Axboe47f46762019-11-09 17:43:02 -07004787{
4788 unsigned long flags;
4789 int ret;
4790
4791 ret = io_async_cancel_one(ctx, (void *) (unsigned long) sqe_addr);
4792 if (ret != -ENOENT) {
4793 spin_lock_irqsave(&ctx->completion_lock, flags);
4794 goto done;
4795 }
4796
4797 spin_lock_irqsave(&ctx->completion_lock, flags);
4798 ret = io_timeout_cancel(ctx, sqe_addr);
4799 if (ret != -ENOENT)
4800 goto done;
4801 ret = io_poll_cancel(ctx, sqe_addr);
4802done:
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004803 if (!ret)
4804 ret = success_ret;
Jens Axboe47f46762019-11-09 17:43:02 -07004805 io_cqring_fill_event(req, ret);
4806 io_commit_cqring(ctx);
4807 spin_unlock_irqrestore(&ctx->completion_lock, flags);
4808 io_cqring_ev_posted(ctx);
4809
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004810 if (ret < 0)
4811 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03004812 io_put_req(req);
Jens Axboe47f46762019-11-09 17:43:02 -07004813}
4814
Jens Axboe3529d8c2019-12-19 18:24:38 -07004815static int io_async_cancel_prep(struct io_kiocb *req,
4816 const struct io_uring_sqe *sqe)
Jens Axboee977d6d2019-11-05 12:39:45 -07004817{
Jens Axboefbf23842019-12-17 18:45:56 -07004818 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboee977d6d2019-11-05 12:39:45 -07004819 return -EINVAL;
4820 if (sqe->flags || sqe->ioprio || sqe->off || sqe->len ||
4821 sqe->cancel_flags)
4822 return -EINVAL;
4823
Jens Axboefbf23842019-12-17 18:45:56 -07004824 req->cancel.addr = READ_ONCE(sqe->addr);
4825 return 0;
4826}
4827
Pavel Begunkov014db002020-03-03 21:33:12 +03004828static int io_async_cancel(struct io_kiocb *req)
Jens Axboefbf23842019-12-17 18:45:56 -07004829{
4830 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefbf23842019-12-17 18:45:56 -07004831
Pavel Begunkov014db002020-03-03 21:33:12 +03004832 io_async_find_and_cancel(ctx, req, req->cancel.addr, 0);
Jens Axboe62755e32019-10-28 21:49:21 -06004833 return 0;
4834}
4835
Jens Axboe05f3fb32019-12-09 11:22:50 -07004836static int io_files_update_prep(struct io_kiocb *req,
4837 const struct io_uring_sqe *sqe)
4838{
4839 if (sqe->flags || sqe->ioprio || sqe->rw_flags)
4840 return -EINVAL;
4841
4842 req->files_update.offset = READ_ONCE(sqe->off);
4843 req->files_update.nr_args = READ_ONCE(sqe->len);
4844 if (!req->files_update.nr_args)
4845 return -EINVAL;
4846 req->files_update.arg = READ_ONCE(sqe->addr);
4847 return 0;
4848}
4849
4850static int io_files_update(struct io_kiocb *req, bool force_nonblock)
4851{
4852 struct io_ring_ctx *ctx = req->ctx;
4853 struct io_uring_files_update up;
4854 int ret;
4855
Jens Axboef86cd202020-01-29 13:46:44 -07004856 if (force_nonblock)
Jens Axboe05f3fb32019-12-09 11:22:50 -07004857 return -EAGAIN;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004858
4859 up.offset = req->files_update.offset;
4860 up.fds = req->files_update.arg;
4861
4862 mutex_lock(&ctx->uring_lock);
4863 ret = __io_sqe_files_update(ctx, &up, req->files_update.nr_args);
4864 mutex_unlock(&ctx->uring_lock);
4865
4866 if (ret < 0)
4867 req_set_fail_links(req);
4868 io_cqring_add_event(req, ret);
4869 io_put_req(req);
4870 return 0;
4871}
4872
Jens Axboe3529d8c2019-12-19 18:24:38 -07004873static int io_req_defer_prep(struct io_kiocb *req,
4874 const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07004875{
Jens Axboee7815732019-12-17 19:45:06 -07004876 ssize_t ret = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07004877
Pavel Begunkovf1d96a82020-03-13 22:29:14 +03004878 if (!sqe)
4879 return 0;
4880
Jens Axboef86cd202020-01-29 13:46:44 -07004881 if (io_op_defs[req->opcode].file_table) {
4882 ret = io_grab_files(req);
4883 if (unlikely(ret))
4884 return ret;
4885 }
4886
Jens Axboecccf0ee2020-01-27 16:34:48 -07004887 io_req_work_grab_env(req, &io_op_defs[req->opcode]);
4888
Jens Axboed625c6e2019-12-17 19:53:05 -07004889 switch (req->opcode) {
Jens Axboee7815732019-12-17 19:45:06 -07004890 case IORING_OP_NOP:
4891 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004892 case IORING_OP_READV:
4893 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004894 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004895 ret = io_read_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07004896 break;
4897 case IORING_OP_WRITEV:
4898 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004899 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004900 ret = io_write_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07004901 break;
Jens Axboe0969e782019-12-17 18:40:57 -07004902 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004903 ret = io_poll_add_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07004904 break;
4905 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004906 ret = io_poll_remove_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07004907 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004908 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004909 ret = io_prep_fsync(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004910 break;
4911 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004912 ret = io_prep_sfr(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004913 break;
Jens Axboe03b12302019-12-02 18:50:25 -07004914 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004915 case IORING_OP_SEND:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004916 ret = io_sendmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07004917 break;
4918 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004919 case IORING_OP_RECV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004920 ret = io_recvmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07004921 break;
Jens Axboef499a022019-12-02 16:28:46 -07004922 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004923 ret = io_connect_prep(req, sqe);
Jens Axboef499a022019-12-02 16:28:46 -07004924 break;
Jens Axboe2d283902019-12-04 11:08:05 -07004925 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004926 ret = io_timeout_prep(req, sqe, false);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004927 break;
Jens Axboeb29472e2019-12-17 18:50:29 -07004928 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004929 ret = io_timeout_remove_prep(req, sqe);
Jens Axboeb29472e2019-12-17 18:50:29 -07004930 break;
Jens Axboefbf23842019-12-17 18:45:56 -07004931 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004932 ret = io_async_cancel_prep(req, sqe);
Jens Axboefbf23842019-12-17 18:45:56 -07004933 break;
Jens Axboe2d283902019-12-04 11:08:05 -07004934 case IORING_OP_LINK_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004935 ret = io_timeout_prep(req, sqe, true);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004936 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004937 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004938 ret = io_accept_prep(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004939 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07004940 case IORING_OP_FALLOCATE:
4941 ret = io_fallocate_prep(req, sqe);
4942 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004943 case IORING_OP_OPENAT:
4944 ret = io_openat_prep(req, sqe);
4945 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07004946 case IORING_OP_CLOSE:
4947 ret = io_close_prep(req, sqe);
4948 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004949 case IORING_OP_FILES_UPDATE:
4950 ret = io_files_update_prep(req, sqe);
4951 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004952 case IORING_OP_STATX:
4953 ret = io_statx_prep(req, sqe);
4954 break;
Jens Axboe4840e412019-12-25 22:03:45 -07004955 case IORING_OP_FADVISE:
4956 ret = io_fadvise_prep(req, sqe);
4957 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07004958 case IORING_OP_MADVISE:
4959 ret = io_madvise_prep(req, sqe);
4960 break;
Jens Axboecebdb982020-01-08 17:59:24 -07004961 case IORING_OP_OPENAT2:
4962 ret = io_openat2_prep(req, sqe);
4963 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07004964 case IORING_OP_EPOLL_CTL:
4965 ret = io_epoll_ctl_prep(req, sqe);
4966 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03004967 case IORING_OP_SPLICE:
4968 ret = io_splice_prep(req, sqe);
4969 break;
Jens Axboeddf0322d2020-02-23 16:41:33 -07004970 case IORING_OP_PROVIDE_BUFFERS:
4971 ret = io_provide_buffers_prep(req, sqe);
4972 break;
Jens Axboe067524e2020-03-02 16:32:28 -07004973 case IORING_OP_REMOVE_BUFFERS:
4974 ret = io_remove_buffers_prep(req, sqe);
4975 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004976 default:
Jens Axboee7815732019-12-17 19:45:06 -07004977 printk_once(KERN_WARNING "io_uring: unhandled opcode %d\n",
4978 req->opcode);
4979 ret = -EINVAL;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004980 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004981 }
4982
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004983 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07004984}
4985
Jens Axboe3529d8c2019-12-19 18:24:38 -07004986static int io_req_defer(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboede0617e2019-04-06 21:51:27 -06004987{
Jackie Liua197f662019-11-08 08:09:12 -07004988 struct io_ring_ctx *ctx = req->ctx;
Jens Axboef67676d2019-12-02 11:03:47 -07004989 int ret;
Jens Axboede0617e2019-04-06 21:51:27 -06004990
Bob Liu9d858b22019-11-13 18:06:25 +08004991 /* Still need defer if there is pending req in defer list. */
4992 if (!req_need_defer(req) && list_empty(&ctx->defer_list))
Jens Axboede0617e2019-04-06 21:51:27 -06004993 return 0;
4994
Jens Axboe3529d8c2019-12-19 18:24:38 -07004995 if (!req->io && io_alloc_async_ctx(req))
Jens Axboede0617e2019-04-06 21:51:27 -06004996 return -EAGAIN;
4997
Jens Axboe3529d8c2019-12-19 18:24:38 -07004998 ret = io_req_defer_prep(req, sqe);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004999 if (ret < 0)
Jens Axboe2d283902019-12-04 11:08:05 -07005000 return ret;
Jens Axboe2d283902019-12-04 11:08:05 -07005001
Jens Axboede0617e2019-04-06 21:51:27 -06005002 spin_lock_irq(&ctx->completion_lock);
Bob Liu9d858b22019-11-13 18:06:25 +08005003 if (!req_need_defer(req) && list_empty(&ctx->defer_list)) {
Jens Axboede0617e2019-04-06 21:51:27 -06005004 spin_unlock_irq(&ctx->completion_lock);
Jens Axboede0617e2019-04-06 21:51:27 -06005005 return 0;
5006 }
5007
Jens Axboe915967f2019-11-21 09:01:20 -07005008 trace_io_uring_defer(ctx, req, req->user_data);
Jens Axboede0617e2019-04-06 21:51:27 -06005009 list_add_tail(&req->list, &ctx->defer_list);
5010 spin_unlock_irq(&ctx->completion_lock);
5011 return -EIOCBQUEUED;
5012}
5013
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005014static void io_cleanup_req(struct io_kiocb *req)
5015{
5016 struct io_async_ctx *io = req->io;
5017
5018 switch (req->opcode) {
5019 case IORING_OP_READV:
5020 case IORING_OP_READ_FIXED:
5021 case IORING_OP_READ:
Jens Axboebcda7ba2020-02-23 16:42:51 -07005022 if (req->flags & REQ_F_BUFFER_SELECTED)
5023 kfree((void *)(unsigned long)req->rw.addr);
5024 /* fallthrough */
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005025 case IORING_OP_WRITEV:
5026 case IORING_OP_WRITE_FIXED:
5027 case IORING_OP_WRITE:
5028 if (io->rw.iov != io->rw.fast_iov)
5029 kfree(io->rw.iov);
5030 break;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005031 case IORING_OP_RECVMSG:
Jens Axboe52de1fe2020-02-27 10:15:42 -07005032 if (req->flags & REQ_F_BUFFER_SELECTED)
5033 kfree(req->sr_msg.kbuf);
5034 /* fallthrough */
5035 case IORING_OP_SENDMSG:
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005036 if (io->msg.iov != io->msg.fast_iov)
5037 kfree(io->msg.iov);
5038 break;
Jens Axboebcda7ba2020-02-23 16:42:51 -07005039 case IORING_OP_RECV:
5040 if (req->flags & REQ_F_BUFFER_SELECTED)
5041 kfree(req->sr_msg.kbuf);
5042 break;
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03005043 case IORING_OP_OPENAT:
5044 case IORING_OP_OPENAT2:
5045 case IORING_OP_STATX:
5046 putname(req->open.filename);
5047 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005048 case IORING_OP_SPLICE:
5049 io_put_file(req, req->splice.file_in,
5050 (req->splice.flags & SPLICE_F_FD_IN_FIXED));
5051 break;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005052 }
5053
5054 req->flags &= ~REQ_F_NEED_CLEANUP;
5055}
5056
Jens Axboe3529d8c2019-12-19 18:24:38 -07005057static int io_issue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Pavel Begunkov014db002020-03-03 21:33:12 +03005058 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005059{
Jackie Liua197f662019-11-08 08:09:12 -07005060 struct io_ring_ctx *ctx = req->ctx;
Jens Axboed625c6e2019-12-17 19:53:05 -07005061 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005062
Jens Axboed625c6e2019-12-17 19:53:05 -07005063 switch (req->opcode) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07005064 case IORING_OP_NOP:
Jens Axboe78e19bb2019-11-06 15:21:34 -07005065 ret = io_nop(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005066 break;
5067 case IORING_OP_READV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005068 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07005069 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005070 if (sqe) {
5071 ret = io_read_prep(req, sqe, force_nonblock);
5072 if (ret < 0)
5073 break;
5074 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005075 ret = io_read(req, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005076 break;
5077 case IORING_OP_WRITEV:
Jens Axboeedafcce2019-01-09 09:16:05 -07005078 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07005079 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005080 if (sqe) {
5081 ret = io_write_prep(req, sqe, force_nonblock);
5082 if (ret < 0)
5083 break;
5084 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005085 ret = io_write(req, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005086 break;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07005087 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005088 if (sqe) {
5089 ret = io_prep_fsync(req, sqe);
5090 if (ret < 0)
5091 break;
5092 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005093 ret = io_fsync(req, force_nonblock);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07005094 break;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005095 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005096 if (sqe) {
5097 ret = io_poll_add_prep(req, sqe);
5098 if (ret)
5099 break;
5100 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005101 ret = io_poll_add(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005102 break;
5103 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005104 if (sqe) {
5105 ret = io_poll_remove_prep(req, sqe);
5106 if (ret < 0)
5107 break;
5108 }
Jens Axboefc4df992019-12-10 14:38:45 -07005109 ret = io_poll_remove(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005110 break;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06005111 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005112 if (sqe) {
5113 ret = io_prep_sfr(req, sqe);
5114 if (ret < 0)
5115 break;
5116 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005117 ret = io_sync_file_range(req, force_nonblock);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06005118 break;
Jens Axboe0fa03c62019-04-19 13:34:07 -06005119 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005120 case IORING_OP_SEND:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005121 if (sqe) {
5122 ret = io_sendmsg_prep(req, sqe);
5123 if (ret < 0)
5124 break;
5125 }
Jens Axboefddafac2020-01-04 20:19:44 -07005126 if (req->opcode == IORING_OP_SENDMSG)
Pavel Begunkov014db002020-03-03 21:33:12 +03005127 ret = io_sendmsg(req, force_nonblock);
Jens Axboefddafac2020-01-04 20:19:44 -07005128 else
Pavel Begunkov014db002020-03-03 21:33:12 +03005129 ret = io_send(req, force_nonblock);
Jens Axboe0fa03c62019-04-19 13:34:07 -06005130 break;
Jens Axboeaa1fa282019-04-19 13:38:09 -06005131 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005132 case IORING_OP_RECV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005133 if (sqe) {
5134 ret = io_recvmsg_prep(req, sqe);
5135 if (ret)
5136 break;
5137 }
Jens Axboefddafac2020-01-04 20:19:44 -07005138 if (req->opcode == IORING_OP_RECVMSG)
Pavel Begunkov014db002020-03-03 21:33:12 +03005139 ret = io_recvmsg(req, force_nonblock);
Jens Axboefddafac2020-01-04 20:19:44 -07005140 else
Pavel Begunkov014db002020-03-03 21:33:12 +03005141 ret = io_recv(req, force_nonblock);
Jens Axboeaa1fa282019-04-19 13:38:09 -06005142 break;
Jens Axboe5262f562019-09-17 12:26:57 -06005143 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005144 if (sqe) {
5145 ret = io_timeout_prep(req, sqe, false);
5146 if (ret)
5147 break;
5148 }
Jens Axboefc4df992019-12-10 14:38:45 -07005149 ret = io_timeout(req);
Jens Axboe5262f562019-09-17 12:26:57 -06005150 break;
Jens Axboe11365042019-10-16 09:08:32 -06005151 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005152 if (sqe) {
5153 ret = io_timeout_remove_prep(req, sqe);
5154 if (ret)
5155 break;
5156 }
Jens Axboefc4df992019-12-10 14:38:45 -07005157 ret = io_timeout_remove(req);
Jens Axboe11365042019-10-16 09:08:32 -06005158 break;
Jens Axboe17f2fe32019-10-17 14:42:58 -06005159 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005160 if (sqe) {
5161 ret = io_accept_prep(req, sqe);
5162 if (ret)
5163 break;
5164 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005165 ret = io_accept(req, force_nonblock);
Jens Axboe17f2fe32019-10-17 14:42:58 -06005166 break;
Jens Axboef8e85cf2019-11-23 14:24:24 -07005167 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005168 if (sqe) {
5169 ret = io_connect_prep(req, sqe);
5170 if (ret)
5171 break;
5172 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005173 ret = io_connect(req, force_nonblock);
Jens Axboef8e85cf2019-11-23 14:24:24 -07005174 break;
Jens Axboe62755e32019-10-28 21:49:21 -06005175 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005176 if (sqe) {
5177 ret = io_async_cancel_prep(req, sqe);
5178 if (ret)
5179 break;
5180 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005181 ret = io_async_cancel(req);
Jens Axboe62755e32019-10-28 21:49:21 -06005182 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07005183 case IORING_OP_FALLOCATE:
5184 if (sqe) {
5185 ret = io_fallocate_prep(req, sqe);
5186 if (ret)
5187 break;
5188 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005189 ret = io_fallocate(req, force_nonblock);
Jens Axboed63d1b52019-12-10 10:38:56 -07005190 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07005191 case IORING_OP_OPENAT:
5192 if (sqe) {
5193 ret = io_openat_prep(req, sqe);
5194 if (ret)
5195 break;
5196 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005197 ret = io_openat(req, force_nonblock);
Jens Axboe15b71ab2019-12-11 11:20:36 -07005198 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07005199 case IORING_OP_CLOSE:
5200 if (sqe) {
5201 ret = io_close_prep(req, sqe);
5202 if (ret)
5203 break;
5204 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005205 ret = io_close(req, force_nonblock);
Jens Axboeb5dba592019-12-11 14:02:38 -07005206 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005207 case IORING_OP_FILES_UPDATE:
5208 if (sqe) {
5209 ret = io_files_update_prep(req, sqe);
5210 if (ret)
5211 break;
5212 }
5213 ret = io_files_update(req, force_nonblock);
5214 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07005215 case IORING_OP_STATX:
5216 if (sqe) {
5217 ret = io_statx_prep(req, sqe);
5218 if (ret)
5219 break;
5220 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005221 ret = io_statx(req, force_nonblock);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07005222 break;
Jens Axboe4840e412019-12-25 22:03:45 -07005223 case IORING_OP_FADVISE:
5224 if (sqe) {
5225 ret = io_fadvise_prep(req, sqe);
5226 if (ret)
5227 break;
5228 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005229 ret = io_fadvise(req, force_nonblock);
Jens Axboe4840e412019-12-25 22:03:45 -07005230 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07005231 case IORING_OP_MADVISE:
5232 if (sqe) {
5233 ret = io_madvise_prep(req, sqe);
5234 if (ret)
5235 break;
5236 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005237 ret = io_madvise(req, force_nonblock);
Jens Axboec1ca7572019-12-25 22:18:28 -07005238 break;
Jens Axboecebdb982020-01-08 17:59:24 -07005239 case IORING_OP_OPENAT2:
5240 if (sqe) {
5241 ret = io_openat2_prep(req, sqe);
5242 if (ret)
5243 break;
5244 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005245 ret = io_openat2(req, force_nonblock);
Jens Axboecebdb982020-01-08 17:59:24 -07005246 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07005247 case IORING_OP_EPOLL_CTL:
5248 if (sqe) {
5249 ret = io_epoll_ctl_prep(req, sqe);
5250 if (ret)
5251 break;
5252 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005253 ret = io_epoll_ctl(req, force_nonblock);
Jens Axboe3e4827b2020-01-08 15:18:09 -07005254 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005255 case IORING_OP_SPLICE:
5256 if (sqe) {
5257 ret = io_splice_prep(req, sqe);
5258 if (ret < 0)
5259 break;
5260 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005261 ret = io_splice(req, force_nonblock);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005262 break;
Jens Axboeddf0322d2020-02-23 16:41:33 -07005263 case IORING_OP_PROVIDE_BUFFERS:
5264 if (sqe) {
5265 ret = io_provide_buffers_prep(req, sqe);
5266 if (ret)
5267 break;
5268 }
5269 ret = io_provide_buffers(req, force_nonblock);
5270 break;
Jens Axboe067524e2020-03-02 16:32:28 -07005271 case IORING_OP_REMOVE_BUFFERS:
5272 if (sqe) {
5273 ret = io_remove_buffers_prep(req, sqe);
5274 if (ret)
5275 break;
5276 }
5277 ret = io_remove_buffers(req, force_nonblock);
Jens Axboe31b51512019-01-18 22:56:34 -07005278 break;
5279 default:
5280 ret = -EINVAL;
Jens Axboeedafcce2019-01-09 09:16:05 -07005281 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005282 }
5283
Jens Axboe31b51512019-01-18 22:56:34 -07005284 if (ret)
5285 return ret;
5286
5287 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboe11ba8202020-01-15 21:51:17 -07005288 const bool in_async = io_wq_current_is_worker();
5289
Jens Axboe9e645e112019-05-10 16:07:28 -06005290 if (req->result == -EAGAIN)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005291 return -EAGAIN;
5292
Jens Axboe11ba8202020-01-15 21:51:17 -07005293 /* workqueue context doesn't hold uring_lock, grab it now */
5294 if (in_async)
5295 mutex_lock(&ctx->uring_lock);
5296
Jens Axboe2b188cc2019-01-07 10:46:33 -07005297 io_iopoll_req_issued(req);
Jens Axboe11ba8202020-01-15 21:51:17 -07005298
5299 if (in_async)
5300 mutex_unlock(&ctx->uring_lock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005301 }
5302
5303 return 0;
5304}
5305
Jens Axboe561fb042019-10-24 07:25:42 -06005306static void io_wq_submit_work(struct io_wq_work **workptr)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005307{
Jens Axboe561fb042019-10-24 07:25:42 -06005308 struct io_wq_work *work = *workptr;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005309 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboe561fb042019-10-24 07:25:42 -06005310 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005311
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07005312 /* if NO_CANCEL is set, we must still run the work */
5313 if ((work->flags & (IO_WQ_WORK_CANCEL|IO_WQ_WORK_NO_CANCEL)) ==
5314 IO_WQ_WORK_CANCEL) {
Jens Axboe561fb042019-10-24 07:25:42 -06005315 ret = -ECANCELED;
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07005316 }
Jens Axboe31b51512019-01-18 22:56:34 -07005317
Jens Axboe561fb042019-10-24 07:25:42 -06005318 if (!ret) {
Jens Axboe561fb042019-10-24 07:25:42 -06005319 do {
Pavel Begunkov014db002020-03-03 21:33:12 +03005320 ret = io_issue_sqe(req, NULL, false);
Jens Axboe561fb042019-10-24 07:25:42 -06005321 /*
5322 * We can get EAGAIN for polled IO even though we're
5323 * forcing a sync submission from here, since we can't
5324 * wait for request slots on the block side.
5325 */
5326 if (ret != -EAGAIN)
5327 break;
5328 cond_resched();
5329 } while (1);
5330 }
Jens Axboe31b51512019-01-18 22:56:34 -07005331
Jens Axboe561fb042019-10-24 07:25:42 -06005332 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005333 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07005334 io_cqring_add_event(req, ret);
Jens Axboe817869d2019-04-30 14:44:05 -06005335 io_put_req(req);
Jens Axboeedafcce2019-01-09 09:16:05 -07005336 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07005337
Pavel Begunkove9fd9392020-03-04 16:14:12 +03005338 io_steal_work(req, workptr);
Jens Axboe31b51512019-01-18 22:56:34 -07005339}
Jens Axboe2b188cc2019-01-07 10:46:33 -07005340
Jens Axboe15b71ab2019-12-11 11:20:36 -07005341static int io_req_needs_file(struct io_kiocb *req, int fd)
Jens Axboe9e3aa612019-12-11 15:55:43 -07005342{
Jens Axboed3656342019-12-18 09:50:26 -07005343 if (!io_op_defs[req->opcode].needs_file)
Jens Axboe9e3aa612019-12-11 15:55:43 -07005344 return 0;
Jens Axboe0b5faf62020-02-06 21:42:51 -07005345 if ((fd == -1 || fd == AT_FDCWD) && io_op_defs[req->opcode].fd_non_neg)
Jens Axboed3656342019-12-18 09:50:26 -07005346 return 0;
5347 return 1;
Jens Axboe09bb8392019-03-13 12:39:28 -06005348}
5349
Jens Axboe65e19f52019-10-26 07:20:21 -06005350static inline struct file *io_file_from_index(struct io_ring_ctx *ctx,
5351 int index)
Jens Axboe09bb8392019-03-13 12:39:28 -06005352{
Jens Axboe65e19f52019-10-26 07:20:21 -06005353 struct fixed_file_table *table;
5354
Jens Axboe05f3fb32019-12-09 11:22:50 -07005355 table = &ctx->file_data->table[index >> IORING_FILE_TABLE_SHIFT];
5356 return table->files[index & IORING_FILE_TABLE_MASK];;
Jens Axboe65e19f52019-10-26 07:20:21 -06005357}
5358
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005359static int io_file_get(struct io_submit_state *state, struct io_kiocb *req,
5360 int fd, struct file **out_file, bool fixed)
5361{
5362 struct io_ring_ctx *ctx = req->ctx;
5363 struct file *file;
5364
5365 if (fixed) {
5366 if (unlikely(!ctx->file_data ||
5367 (unsigned) fd >= ctx->nr_user_files))
5368 return -EBADF;
5369 fd = array_index_nospec(fd, ctx->nr_user_files);
5370 file = io_file_from_index(ctx, fd);
5371 if (!file)
5372 return -EBADF;
Xiaoguang Wang05589552020-03-31 14:05:18 +08005373 req->fixed_file_refs = ctx->file_data->cur_refs;
5374 percpu_ref_get(req->fixed_file_refs);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005375 } else {
5376 trace_io_uring_file_get(ctx, fd);
5377 file = __io_file_get(state, fd);
5378 if (unlikely(!file))
5379 return -EBADF;
5380 }
5381
5382 *out_file = file;
5383 return 0;
5384}
5385
Jens Axboe3529d8c2019-12-19 18:24:38 -07005386static int io_req_set_file(struct io_submit_state *state, struct io_kiocb *req,
5387 const struct io_uring_sqe *sqe)
Jens Axboe09bb8392019-03-13 12:39:28 -06005388{
5389 unsigned flags;
Jens Axboed3656342019-12-18 09:50:26 -07005390 int fd;
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005391 bool fixed;
Jens Axboe09bb8392019-03-13 12:39:28 -06005392
Jens Axboe3529d8c2019-12-19 18:24:38 -07005393 flags = READ_ONCE(sqe->flags);
5394 fd = READ_ONCE(sqe->fd);
Jens Axboe09bb8392019-03-13 12:39:28 -06005395
Jens Axboed3656342019-12-18 09:50:26 -07005396 if (!io_req_needs_file(req, fd))
5397 return 0;
Jens Axboe09bb8392019-03-13 12:39:28 -06005398
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005399 fixed = (flags & IOSQE_FIXED_FILE);
5400 if (unlikely(!fixed && req->needs_fixed_file))
5401 return -EBADF;
Jens Axboe09bb8392019-03-13 12:39:28 -06005402
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005403 return io_file_get(state, req, fd, &req->file, fixed);
Jens Axboe09bb8392019-03-13 12:39:28 -06005404}
5405
Jackie Liua197f662019-11-08 08:09:12 -07005406static int io_grab_files(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005407{
Jens Axboefcb323c2019-10-24 12:39:47 -06005408 int ret = -EBADF;
Jackie Liua197f662019-11-08 08:09:12 -07005409 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06005410
Jens Axboef86cd202020-01-29 13:46:44 -07005411 if (req->work.files)
5412 return 0;
Pavel Begunkovb14cca02020-01-17 04:45:59 +03005413 if (!ctx->ring_file)
Jens Axboeb5dba592019-12-11 14:02:38 -07005414 return -EBADF;
5415
Jens Axboefcb323c2019-10-24 12:39:47 -06005416 rcu_read_lock();
5417 spin_lock_irq(&ctx->inflight_lock);
5418 /*
5419 * We use the f_ops->flush() handler to ensure that we can flush
5420 * out work accessing these files if the fd is closed. Check if
5421 * the fd has changed since we started down this path, and disallow
5422 * this operation if it has.
5423 */
Pavel Begunkovb14cca02020-01-17 04:45:59 +03005424 if (fcheck(ctx->ring_fd) == ctx->ring_file) {
Jens Axboefcb323c2019-10-24 12:39:47 -06005425 list_add(&req->inflight_entry, &ctx->inflight_list);
5426 req->flags |= REQ_F_INFLIGHT;
5427 req->work.files = current->files;
5428 ret = 0;
5429 }
5430 spin_unlock_irq(&ctx->inflight_lock);
5431 rcu_read_unlock();
5432
5433 return ret;
5434}
5435
Jens Axboe2665abf2019-11-05 12:40:47 -07005436static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer)
5437{
Jens Axboead8a48a2019-11-15 08:49:11 -07005438 struct io_timeout_data *data = container_of(timer,
5439 struct io_timeout_data, timer);
5440 struct io_kiocb *req = data->req;
Jens Axboe2665abf2019-11-05 12:40:47 -07005441 struct io_ring_ctx *ctx = req->ctx;
5442 struct io_kiocb *prev = NULL;
5443 unsigned long flags;
Jens Axboe2665abf2019-11-05 12:40:47 -07005444
5445 spin_lock_irqsave(&ctx->completion_lock, flags);
5446
5447 /*
5448 * We don't expect the list to be empty, that will only happen if we
5449 * race with the completion of the linked work.
5450 */
Pavel Begunkov44932332019-12-05 16:16:35 +03005451 if (!list_empty(&req->link_list)) {
5452 prev = list_entry(req->link_list.prev, struct io_kiocb,
5453 link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07005454 if (refcount_inc_not_zero(&prev->refs)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03005455 list_del_init(&req->link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07005456 prev->flags &= ~REQ_F_LINK_TIMEOUT;
5457 } else
Jens Axboe76a46e02019-11-10 23:34:16 -07005458 prev = NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07005459 }
5460
5461 spin_unlock_irqrestore(&ctx->completion_lock, flags);
5462
5463 if (prev) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005464 req_set_fail_links(prev);
Pavel Begunkov014db002020-03-03 21:33:12 +03005465 io_async_find_and_cancel(ctx, req, prev->user_data, -ETIME);
Jens Axboe76a46e02019-11-10 23:34:16 -07005466 io_put_req(prev);
Jens Axboe47f46762019-11-09 17:43:02 -07005467 } else {
5468 io_cqring_add_event(req, -ETIME);
5469 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07005470 }
Jens Axboe2665abf2019-11-05 12:40:47 -07005471 return HRTIMER_NORESTART;
5472}
5473
Jens Axboead8a48a2019-11-15 08:49:11 -07005474static void io_queue_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07005475{
Jens Axboe76a46e02019-11-10 23:34:16 -07005476 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07005477
Jens Axboe76a46e02019-11-10 23:34:16 -07005478 /*
5479 * If the list is now empty, then our linked request finished before
5480 * we got a chance to setup the timer
5481 */
5482 spin_lock_irq(&ctx->completion_lock);
Pavel Begunkov44932332019-12-05 16:16:35 +03005483 if (!list_empty(&req->link_list)) {
Jens Axboe2d283902019-12-04 11:08:05 -07005484 struct io_timeout_data *data = &req->io->timeout;
Jens Axboe94ae5e72019-11-14 19:39:52 -07005485
Jens Axboead8a48a2019-11-15 08:49:11 -07005486 data->timer.function = io_link_timeout_fn;
5487 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts),
5488 data->mode);
Jens Axboe2665abf2019-11-05 12:40:47 -07005489 }
Jens Axboe76a46e02019-11-10 23:34:16 -07005490 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe2665abf2019-11-05 12:40:47 -07005491
Jens Axboe2665abf2019-11-05 12:40:47 -07005492 /* drop submission reference */
Jens Axboe76a46e02019-11-10 23:34:16 -07005493 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07005494}
5495
Jens Axboead8a48a2019-11-15 08:49:11 -07005496static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07005497{
5498 struct io_kiocb *nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005499
Jens Axboe2665abf2019-11-05 12:40:47 -07005500 if (!(req->flags & REQ_F_LINK))
5501 return NULL;
Jens Axboed7718a92020-02-14 22:23:12 -07005502 /* for polled retry, if flag is set, we already went through here */
5503 if (req->flags & REQ_F_POLLED)
5504 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07005505
Pavel Begunkov44932332019-12-05 16:16:35 +03005506 nxt = list_first_entry_or_null(&req->link_list, struct io_kiocb,
5507 link_list);
Jens Axboed625c6e2019-12-17 19:53:05 -07005508 if (!nxt || nxt->opcode != IORING_OP_LINK_TIMEOUT)
Jens Axboe76a46e02019-11-10 23:34:16 -07005509 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07005510
Jens Axboe76a46e02019-11-10 23:34:16 -07005511 req->flags |= REQ_F_LINK_TIMEOUT;
Jens Axboe76a46e02019-11-10 23:34:16 -07005512 return nxt;
Jens Axboe2665abf2019-11-05 12:40:47 -07005513}
5514
Jens Axboe3529d8c2019-12-19 18:24:38 -07005515static void __io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005516{
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005517 struct io_kiocb *linked_timeout;
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005518 struct io_kiocb *nxt;
Jens Axboe193155c2020-02-22 23:22:19 -07005519 const struct cred *old_creds = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005520 int ret;
5521
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005522again:
5523 linked_timeout = io_prep_linked_timeout(req);
5524
Jens Axboe193155c2020-02-22 23:22:19 -07005525 if (req->work.creds && req->work.creds != current_cred()) {
5526 if (old_creds)
5527 revert_creds(old_creds);
5528 if (old_creds == req->work.creds)
5529 old_creds = NULL; /* restored original creds */
5530 else
5531 old_creds = override_creds(req->work.creds);
5532 }
5533
Pavel Begunkov014db002020-03-03 21:33:12 +03005534 ret = io_issue_sqe(req, sqe, true);
Jens Axboe491381ce2019-10-17 09:20:46 -06005535
5536 /*
5537 * We async punt it if the file wasn't marked NOWAIT, or if the file
5538 * doesn't support non-blocking read/write attempts
5539 */
5540 if (ret == -EAGAIN && (!(req->flags & REQ_F_NOWAIT) ||
5541 (req->flags & REQ_F_MUST_PUNT))) {
Jens Axboed7718a92020-02-14 22:23:12 -07005542 if (io_arm_poll_handler(req)) {
5543 if (linked_timeout)
5544 io_queue_linked_timeout(linked_timeout);
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005545 goto exit;
Jens Axboed7718a92020-02-14 22:23:12 -07005546 }
Pavel Begunkov86a761f2020-01-22 23:09:36 +03005547punt:
Jens Axboef86cd202020-01-29 13:46:44 -07005548 if (io_op_defs[req->opcode].file_table) {
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03005549 ret = io_grab_files(req);
5550 if (ret)
5551 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005552 }
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03005553
5554 /*
5555 * Queued up for async execution, worker will release
5556 * submit reference when the iocb is actually submitted.
5557 */
5558 io_queue_async_work(req);
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005559 goto exit;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005560 }
Jens Axboee65ef562019-03-12 10:16:44 -06005561
Jens Axboefcb323c2019-10-24 12:39:47 -06005562err:
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005563 nxt = NULL;
Jens Axboee65ef562019-03-12 10:16:44 -06005564 /* drop submission reference */
Jens Axboe2a44f462020-02-25 13:25:41 -07005565 io_put_req_find_next(req, &nxt);
Jens Axboee65ef562019-03-12 10:16:44 -06005566
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03005567 if (linked_timeout) {
Jens Axboe76a46e02019-11-10 23:34:16 -07005568 if (!ret)
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03005569 io_queue_linked_timeout(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07005570 else
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03005571 io_put_req(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07005572 }
5573
Jens Axboee65ef562019-03-12 10:16:44 -06005574 /* and drop final reference, if we failed */
Jens Axboe9e645e112019-05-10 16:07:28 -06005575 if (ret) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07005576 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005577 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06005578 io_put_req(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06005579 }
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005580 if (nxt) {
5581 req = nxt;
Pavel Begunkov86a761f2020-01-22 23:09:36 +03005582
5583 if (req->flags & REQ_F_FORCE_ASYNC)
5584 goto punt;
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005585 goto again;
5586 }
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005587exit:
Jens Axboe193155c2020-02-22 23:22:19 -07005588 if (old_creds)
5589 revert_creds(old_creds);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005590}
5591
Jens Axboe3529d8c2019-12-19 18:24:38 -07005592static void io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jackie Liu4fe2c962019-09-09 20:50:40 +08005593{
5594 int ret;
5595
Jens Axboe3529d8c2019-12-19 18:24:38 -07005596 ret = io_req_defer(req, sqe);
Jackie Liu4fe2c962019-09-09 20:50:40 +08005597 if (ret) {
5598 if (ret != -EIOCBQUEUED) {
Pavel Begunkov11185912020-01-22 23:09:35 +03005599fail_req:
Jens Axboe78e19bb2019-11-06 15:21:34 -07005600 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005601 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07005602 io_double_put_req(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08005603 }
Pavel Begunkov25508782019-12-30 21:24:47 +03005604 } else if (req->flags & REQ_F_FORCE_ASYNC) {
Pavel Begunkov11185912020-01-22 23:09:35 +03005605 ret = io_req_defer_prep(req, sqe);
5606 if (unlikely(ret < 0))
5607 goto fail_req;
Jens Axboece35a472019-12-17 08:04:44 -07005608 /*
5609 * Never try inline submit of IOSQE_ASYNC is set, go straight
5610 * to async execution.
5611 */
5612 req->work.flags |= IO_WQ_WORK_CONCURRENT;
5613 io_queue_async_work(req);
5614 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07005615 __io_queue_sqe(req, sqe);
Jens Axboece35a472019-12-17 08:04:44 -07005616 }
Jackie Liu4fe2c962019-09-09 20:50:40 +08005617}
5618
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005619static inline void io_queue_link_head(struct io_kiocb *req)
Jackie Liu4fe2c962019-09-09 20:50:40 +08005620{
Jens Axboe94ae5e72019-11-14 19:39:52 -07005621 if (unlikely(req->flags & REQ_F_FAIL_LINK)) {
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005622 io_cqring_add_event(req, -ECANCELED);
5623 io_double_put_req(req);
5624 } else
Jens Axboe3529d8c2019-12-19 18:24:38 -07005625 io_queue_sqe(req, NULL);
Jackie Liu4fe2c962019-09-09 20:50:40 +08005626}
5627
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005628#define SQE_VALID_FLAGS (IOSQE_FIXED_FILE|IOSQE_IO_DRAIN|IOSQE_IO_LINK| \
Jens Axboebcda7ba2020-02-23 16:42:51 -07005629 IOSQE_IO_HARDLINK | IOSQE_ASYNC | \
5630 IOSQE_BUFFER_SELECT)
Jens Axboe9e645e112019-05-10 16:07:28 -06005631
Jens Axboe3529d8c2019-12-19 18:24:38 -07005632static bool io_submit_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
5633 struct io_submit_state *state, struct io_kiocb **link)
Jens Axboe9e645e112019-05-10 16:07:28 -06005634{
Jackie Liua197f662019-11-08 08:09:12 -07005635 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005636 unsigned int sqe_flags;
Jens Axboe75c6a032020-01-28 10:15:23 -07005637 int ret, id;
Jens Axboe9e645e112019-05-10 16:07:28 -06005638
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005639 sqe_flags = READ_ONCE(sqe->flags);
Jens Axboe9e645e112019-05-10 16:07:28 -06005640
5641 /* enforce forwards compatibility on users */
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005642 if (unlikely(sqe_flags & ~SQE_VALID_FLAGS)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06005643 ret = -EINVAL;
Pavel Begunkov196be952019-11-07 01:41:06 +03005644 goto err_req;
Jens Axboe9e645e112019-05-10 16:07:28 -06005645 }
5646
Jens Axboebcda7ba2020-02-23 16:42:51 -07005647 if ((sqe_flags & IOSQE_BUFFER_SELECT) &&
5648 !io_op_defs[req->opcode].buffer_select) {
5649 ret = -EOPNOTSUPP;
5650 goto err_req;
5651 }
5652
Jens Axboe75c6a032020-01-28 10:15:23 -07005653 id = READ_ONCE(sqe->personality);
5654 if (id) {
Jens Axboe193155c2020-02-22 23:22:19 -07005655 req->work.creds = idr_find(&ctx->personality_idr, id);
5656 if (unlikely(!req->work.creds)) {
Jens Axboe75c6a032020-01-28 10:15:23 -07005657 ret = -EINVAL;
5658 goto err_req;
5659 }
Jens Axboe193155c2020-02-22 23:22:19 -07005660 get_cred(req->work.creds);
Jens Axboe75c6a032020-01-28 10:15:23 -07005661 }
5662
Pavel Begunkov6b47ee62020-01-18 20:22:41 +03005663 /* same numerical values with corresponding REQ_F_*, safe to copy */
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005664 req->flags |= sqe_flags & (IOSQE_IO_DRAIN | IOSQE_IO_HARDLINK |
Jens Axboebcda7ba2020-02-23 16:42:51 -07005665 IOSQE_ASYNC | IOSQE_FIXED_FILE |
5666 IOSQE_BUFFER_SELECT);
Jens Axboe9e645e112019-05-10 16:07:28 -06005667
Jens Axboe3529d8c2019-12-19 18:24:38 -07005668 ret = io_req_set_file(state, req, sqe);
Jens Axboe9e645e112019-05-10 16:07:28 -06005669 if (unlikely(ret)) {
5670err_req:
Jens Axboe78e19bb2019-11-06 15:21:34 -07005671 io_cqring_add_event(req, ret);
5672 io_double_put_req(req);
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03005673 return false;
Jens Axboe9e645e112019-05-10 16:07:28 -06005674 }
5675
Jens Axboe9e645e112019-05-10 16:07:28 -06005676 /*
5677 * If we already have a head request, queue this one for async
5678 * submittal once the head completes. If we don't have a head but
5679 * IOSQE_IO_LINK is set in the sqe, start a new head. This one will be
5680 * submitted sync once the chain is complete. If none of those
5681 * conditions are true (normal request), then just queue it.
5682 */
5683 if (*link) {
Pavel Begunkov9d763772019-12-17 02:22:07 +03005684 struct io_kiocb *head = *link;
Jens Axboe9e645e112019-05-10 16:07:28 -06005685
Pavel Begunkov8cdf2192020-01-25 00:40:24 +03005686 /*
5687 * Taking sequential execution of a link, draining both sides
5688 * of the link also fullfils IOSQE_IO_DRAIN semantics for all
5689 * requests in the link. So, it drains the head and the
5690 * next after the link request. The last one is done via
5691 * drain_next flag to persist the effect across calls.
5692 */
Pavel Begunkov711be032020-01-17 03:57:59 +03005693 if (sqe_flags & IOSQE_IO_DRAIN) {
5694 head->flags |= REQ_F_IO_DRAIN;
5695 ctx->drain_next = 1;
5696 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07005697 if (io_alloc_async_ctx(req)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06005698 ret = -EAGAIN;
5699 goto err_req;
5700 }
5701
Jens Axboe3529d8c2019-12-19 18:24:38 -07005702 ret = io_req_defer_prep(req, sqe);
Jens Axboe2d283902019-12-04 11:08:05 -07005703 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005704 /* fail even hard links since we don't submit */
Pavel Begunkov9d763772019-12-17 02:22:07 +03005705 head->flags |= REQ_F_FAIL_LINK;
Jens Axboef67676d2019-12-02 11:03:47 -07005706 goto err_req;
Jens Axboe2d283902019-12-04 11:08:05 -07005707 }
Pavel Begunkov9d763772019-12-17 02:22:07 +03005708 trace_io_uring_link(ctx, req, head);
5709 list_add_tail(&req->link_list, &head->link_list);
Jens Axboe9e645e112019-05-10 16:07:28 -06005710
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005711 /* last request of a link, enqueue the link */
5712 if (!(sqe_flags & (IOSQE_IO_LINK|IOSQE_IO_HARDLINK))) {
5713 io_queue_link_head(head);
5714 *link = NULL;
5715 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005716 } else {
Pavel Begunkov711be032020-01-17 03:57:59 +03005717 if (unlikely(ctx->drain_next)) {
5718 req->flags |= REQ_F_IO_DRAIN;
5719 req->ctx->drain_next = 0;
5720 }
5721 if (sqe_flags & (IOSQE_IO_LINK|IOSQE_IO_HARDLINK)) {
5722 req->flags |= REQ_F_LINK;
Pavel Begunkov711be032020-01-17 03:57:59 +03005723 INIT_LIST_HEAD(&req->link_list);
Pavel Begunkovf1d96a82020-03-13 22:29:14 +03005724
5725 if (io_alloc_async_ctx(req)) {
5726 ret = -EAGAIN;
5727 goto err_req;
5728 }
Pavel Begunkov711be032020-01-17 03:57:59 +03005729 ret = io_req_defer_prep(req, sqe);
5730 if (ret)
5731 req->flags |= REQ_F_FAIL_LINK;
5732 *link = req;
5733 } else {
5734 io_queue_sqe(req, sqe);
5735 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005736 }
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03005737
5738 return true;
Jens Axboe9e645e112019-05-10 16:07:28 -06005739}
5740
Jens Axboe9a56a232019-01-09 09:06:50 -07005741/*
5742 * Batched submission is done, ensure local IO is flushed out.
5743 */
5744static void io_submit_state_end(struct io_submit_state *state)
5745{
5746 blk_finish_plug(&state->plug);
Jens Axboe3d6770f2019-04-13 11:50:54 -06005747 io_file_put(state);
Jens Axboe2579f912019-01-09 09:10:43 -07005748 if (state->free_reqs)
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03005749 kmem_cache_free_bulk(req_cachep, state->free_reqs, state->reqs);
Jens Axboe9a56a232019-01-09 09:06:50 -07005750}
5751
5752/*
5753 * Start submission side cache.
5754 */
5755static void io_submit_state_start(struct io_submit_state *state,
Jackie Liu22efde52019-12-02 17:14:52 +08005756 unsigned int max_ios)
Jens Axboe9a56a232019-01-09 09:06:50 -07005757{
5758 blk_start_plug(&state->plug);
Jens Axboe2579f912019-01-09 09:10:43 -07005759 state->free_reqs = 0;
Jens Axboe9a56a232019-01-09 09:06:50 -07005760 state->file = NULL;
5761 state->ios_left = max_ios;
5762}
5763
Jens Axboe2b188cc2019-01-07 10:46:33 -07005764static void io_commit_sqring(struct io_ring_ctx *ctx)
5765{
Hristo Venev75b28af2019-08-26 17:23:46 +00005766 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005767
Pavel Begunkovcaf582c2019-12-30 21:24:46 +03005768 /*
5769 * Ensure any loads from the SQEs are done at this point,
5770 * since once we write the new head, the application could
5771 * write new data to them.
5772 */
5773 smp_store_release(&rings->sq.head, ctx->cached_sq_head);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005774}
5775
5776/*
Jens Axboe3529d8c2019-12-19 18:24:38 -07005777 * Fetch an sqe, if one is available. Note that sqe_ptr will point to memory
Jens Axboe2b188cc2019-01-07 10:46:33 -07005778 * that is mapped by userspace. This means that care needs to be taken to
5779 * ensure that reads are stable, as we cannot rely on userspace always
5780 * being a good citizen. If members of the sqe are validated and then later
5781 * used, it's important that those reads are done through READ_ONCE() to
5782 * prevent a re-load down the line.
5783 */
Pavel Begunkov709b3022020-04-08 08:58:43 +03005784static const struct io_uring_sqe *io_get_sqe(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005785{
Hristo Venev75b28af2019-08-26 17:23:46 +00005786 u32 *sq_array = ctx->sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005787 unsigned head;
5788
5789 /*
5790 * The cached sq head (or cq tail) serves two purposes:
5791 *
5792 * 1) allows us to batch the cost of updating the user visible
5793 * head updates.
5794 * 2) allows the kernel side to track the head on its own, even
5795 * though the application is the one updating it.
5796 */
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005797 head = READ_ONCE(sq_array[ctx->cached_sq_head & ctx->sq_mask]);
Pavel Begunkov709b3022020-04-08 08:58:43 +03005798 if (likely(head < ctx->sq_entries))
5799 return &ctx->sq_sqes[head];
Jens Axboe2b188cc2019-01-07 10:46:33 -07005800
5801 /* drop invalid entries */
Jens Axboe498ccd92019-10-25 10:04:25 -06005802 ctx->cached_sq_dropped++;
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005803 WRITE_ONCE(ctx->rings->sq_dropped, ctx->cached_sq_dropped);
Pavel Begunkov709b3022020-04-08 08:58:43 +03005804 return NULL;
5805}
5806
5807static inline void io_consume_sqe(struct io_ring_ctx *ctx)
5808{
5809 ctx->cached_sq_head++;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005810}
5811
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005812static int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr,
Pavel Begunkovae9428c2019-11-06 00:22:14 +03005813 struct file *ring_file, int ring_fd,
5814 struct mm_struct **mm, bool async)
Jens Axboe6c271ce2019-01-10 11:22:30 -07005815{
5816 struct io_submit_state state, *statep = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06005817 struct io_kiocb *link = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06005818 int i, submitted = 0;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005819 bool mm_fault = false;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005820
Jens Axboec4a2ed72019-11-21 21:01:26 -07005821 /* if we have a backlog and couldn't flush it all, return BUSY */
Jens Axboead3eb2c2019-12-18 17:12:20 -07005822 if (test_bit(0, &ctx->sq_check_overflow)) {
5823 if (!list_empty(&ctx->cq_overflow_list) &&
5824 !io_cqring_overflow_flush(ctx, false))
5825 return -EBUSY;
5826 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07005827
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005828 /* make sure SQ entry isn't read before tail */
5829 nr = min3(nr, ctx->sq_entries, io_sqring_entries(ctx));
Pavel Begunkov9ef4f122019-12-30 21:24:44 +03005830
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03005831 if (!percpu_ref_tryget_many(&ctx->refs, nr))
5832 return -EAGAIN;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005833
5834 if (nr > IO_PLUG_THRESHOLD) {
Jackie Liu22efde52019-12-02 17:14:52 +08005835 io_submit_state_start(&state, nr);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005836 statep = &state;
5837 }
5838
Pavel Begunkovb14cca02020-01-17 04:45:59 +03005839 ctx->ring_fd = ring_fd;
5840 ctx->ring_file = ring_file;
5841
Jens Axboe6c271ce2019-01-10 11:22:30 -07005842 for (i = 0; i < nr; i++) {
Jens Axboe3529d8c2019-12-19 18:24:38 -07005843 const struct io_uring_sqe *sqe;
Pavel Begunkov196be952019-11-07 01:41:06 +03005844 struct io_kiocb *req;
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005845 int err;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005846
Pavel Begunkov196be952019-11-07 01:41:06 +03005847 req = io_get_req(ctx, statep);
5848 if (unlikely(!req)) {
5849 if (!submitted)
5850 submitted = -EAGAIN;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005851 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06005852 }
Pavel Begunkov709b3022020-04-08 08:58:43 +03005853 sqe = io_get_sqe(ctx);
5854 if (!sqe) {
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03005855 __io_req_do_free(req);
Pavel Begunkov709b3022020-04-08 08:58:43 +03005856 io_consume_sqe(ctx);
Pavel Begunkov196be952019-11-07 01:41:06 +03005857 break;
5858 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005859
Pavel Begunkov709b3022020-04-08 08:58:43 +03005860 /*
5861 * All io need record the previous position, if LINK vs DARIN,
5862 * it can be used to mark the position of the first IO in the
5863 * link list.
5864 */
5865 req->sequence = ctx->cached_sq_head;
5866 req->opcode = READ_ONCE(sqe->opcode);
5867 req->user_data = READ_ONCE(sqe->user_data);
5868 io_consume_sqe(ctx);
5869
Jens Axboed3656342019-12-18 09:50:26 -07005870 /* will complete beyond this point, count as submitted */
5871 submitted++;
5872
5873 if (unlikely(req->opcode >= IORING_OP_LAST)) {
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005874 err = -EINVAL;
5875fail_req:
5876 io_cqring_add_event(req, err);
Jens Axboed3656342019-12-18 09:50:26 -07005877 io_double_put_req(req);
5878 break;
5879 }
5880
5881 if (io_op_defs[req->opcode].needs_mm && !*mm) {
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005882 mm_fault = mm_fault || !mmget_not_zero(ctx->sqo_mm);
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005883 if (unlikely(mm_fault)) {
5884 err = -EFAULT;
5885 goto fail_req;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005886 }
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005887 use_mm(ctx->sqo_mm);
5888 *mm = ctx->sqo_mm;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005889 }
5890
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03005891 req->needs_fixed_file = async;
Jens Axboe354420f2020-01-08 18:55:15 -07005892 trace_io_uring_submit_sqe(ctx, req->opcode, req->user_data,
5893 true, async);
Jens Axboe3529d8c2019-12-19 18:24:38 -07005894 if (!io_submit_sqe(req, sqe, statep, &link))
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03005895 break;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005896 }
5897
Pavel Begunkov9466f432020-01-25 22:34:01 +03005898 if (unlikely(submitted != nr)) {
5899 int ref_used = (submitted == -EAGAIN) ? 0 : submitted;
5900
5901 percpu_ref_put_many(&ctx->refs, nr - ref_used);
5902 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005903 if (link)
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005904 io_queue_link_head(link);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005905 if (statep)
5906 io_submit_state_end(&state);
5907
Pavel Begunkovae9428c2019-11-06 00:22:14 +03005908 /* Commit SQ ring head once we've consumed and submitted all SQEs */
5909 io_commit_sqring(ctx);
5910
Jens Axboe6c271ce2019-01-10 11:22:30 -07005911 return submitted;
5912}
5913
5914static int io_sq_thread(void *data)
5915{
Jens Axboe6c271ce2019-01-10 11:22:30 -07005916 struct io_ring_ctx *ctx = data;
5917 struct mm_struct *cur_mm = NULL;
Jens Axboe181e4482019-11-25 08:52:30 -07005918 const struct cred *old_cred;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005919 mm_segment_t old_fs;
5920 DEFINE_WAIT(wait);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005921 unsigned long timeout;
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005922 int ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005923
Jens Axboe206aefd2019-11-07 18:27:42 -07005924 complete(&ctx->completions[1]);
Jackie Liua4c0b3d2019-07-08 13:41:12 +08005925
Jens Axboe6c271ce2019-01-10 11:22:30 -07005926 old_fs = get_fs();
5927 set_fs(USER_DS);
Jens Axboe181e4482019-11-25 08:52:30 -07005928 old_cred = override_creds(ctx->creds);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005929
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005930 timeout = jiffies + ctx->sq_thread_idle;
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02005931 while (!kthread_should_park()) {
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005932 unsigned int to_submit;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005933
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005934 if (!list_empty(&ctx->poll_list)) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07005935 unsigned nr_events = 0;
5936
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005937 mutex_lock(&ctx->uring_lock);
5938 if (!list_empty(&ctx->poll_list))
5939 io_iopoll_getevents(ctx, &nr_events, 0);
5940 else
Jens Axboe6c271ce2019-01-10 11:22:30 -07005941 timeout = jiffies + ctx->sq_thread_idle;
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005942 mutex_unlock(&ctx->uring_lock);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005943 }
5944
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005945 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07005946
5947 /*
5948 * If submit got -EBUSY, flag us as needing the application
5949 * to enter the kernel to reap and flush events.
5950 */
5951 if (!to_submit || ret == -EBUSY) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07005952 /*
Stefano Garzarella7143b5a2020-02-21 16:42:16 +01005953 * Drop cur_mm before scheduling, we can't hold it for
5954 * long periods (or over schedule()). Do this before
5955 * adding ourselves to the waitqueue, as the unuse/drop
5956 * may sleep.
5957 */
5958 if (cur_mm) {
5959 unuse_mm(cur_mm);
5960 mmput(cur_mm);
5961 cur_mm = NULL;
5962 }
5963
5964 /*
Jens Axboe6c271ce2019-01-10 11:22:30 -07005965 * We're polling. If we're within the defined idle
5966 * period, then let us spin without work before going
Jens Axboec1edbf52019-11-10 16:56:04 -07005967 * to sleep. The exception is if we got EBUSY doing
5968 * more IO, we should wait for the application to
5969 * reap events and wake us up.
Jens Axboe6c271ce2019-01-10 11:22:30 -07005970 */
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005971 if (!list_empty(&ctx->poll_list) ||
Jens Axboedf069d82020-02-04 16:48:34 -07005972 (!time_after(jiffies, timeout) && ret != -EBUSY &&
5973 !percpu_ref_is_dying(&ctx->refs))) {
Jens Axboeb41e9852020-02-17 09:52:41 -07005974 if (current->task_works)
5975 task_work_run();
Jens Axboe9831a902019-09-19 09:48:55 -06005976 cond_resched();
Jens Axboe6c271ce2019-01-10 11:22:30 -07005977 continue;
5978 }
5979
Jens Axboe6c271ce2019-01-10 11:22:30 -07005980 prepare_to_wait(&ctx->sqo_wait, &wait,
5981 TASK_INTERRUPTIBLE);
5982
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005983 /*
5984 * While doing polled IO, before going to sleep, we need
5985 * to check if there are new reqs added to poll_list, it
5986 * is because reqs may have been punted to io worker and
5987 * will be added to poll_list later, hence check the
5988 * poll_list again.
5989 */
5990 if ((ctx->flags & IORING_SETUP_IOPOLL) &&
5991 !list_empty_careful(&ctx->poll_list)) {
5992 finish_wait(&ctx->sqo_wait, &wait);
5993 continue;
5994 }
5995
Jens Axboe6c271ce2019-01-10 11:22:30 -07005996 /* Tell userspace we may need a wakeup call */
Hristo Venev75b28af2019-08-26 17:23:46 +00005997 ctx->rings->sq_flags |= IORING_SQ_NEED_WAKEUP;
Stefan Bühler0d7bae62019-04-19 11:57:45 +02005998 /* make sure to read SQ tail after writing flags */
5999 smp_mb();
Jens Axboe6c271ce2019-01-10 11:22:30 -07006000
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03006001 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07006002 if (!to_submit || ret == -EBUSY) {
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02006003 if (kthread_should_park()) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07006004 finish_wait(&ctx->sqo_wait, &wait);
6005 break;
6006 }
Jens Axboeb41e9852020-02-17 09:52:41 -07006007 if (current->task_works) {
6008 task_work_run();
Hillf Danton10bea962020-04-01 17:19:33 +08006009 finish_wait(&ctx->sqo_wait, &wait);
Jens Axboeb41e9852020-02-17 09:52:41 -07006010 continue;
6011 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07006012 if (signal_pending(current))
6013 flush_signals(current);
6014 schedule();
6015 finish_wait(&ctx->sqo_wait, &wait);
6016
Hristo Venev75b28af2019-08-26 17:23:46 +00006017 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006018 continue;
6019 }
6020 finish_wait(&ctx->sqo_wait, &wait);
6021
Hristo Venev75b28af2019-08-26 17:23:46 +00006022 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006023 }
6024
Jens Axboe8a4955f2019-12-09 14:52:35 -07006025 mutex_lock(&ctx->uring_lock);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006026 ret = io_submit_sqes(ctx, to_submit, NULL, -1, &cur_mm, true);
Jens Axboe8a4955f2019-12-09 14:52:35 -07006027 mutex_unlock(&ctx->uring_lock);
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006028 timeout = jiffies + ctx->sq_thread_idle;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006029 }
6030
Jens Axboeb41e9852020-02-17 09:52:41 -07006031 if (current->task_works)
6032 task_work_run();
6033
Jens Axboe6c271ce2019-01-10 11:22:30 -07006034 set_fs(old_fs);
6035 if (cur_mm) {
6036 unuse_mm(cur_mm);
6037 mmput(cur_mm);
6038 }
Jens Axboe181e4482019-11-25 08:52:30 -07006039 revert_creds(old_cred);
Jens Axboe06058632019-04-13 09:26:03 -06006040
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02006041 kthread_parkme();
Jens Axboe06058632019-04-13 09:26:03 -06006042
Jens Axboe6c271ce2019-01-10 11:22:30 -07006043 return 0;
6044}
6045
Jens Axboebda52162019-09-24 13:47:15 -06006046struct io_wait_queue {
6047 struct wait_queue_entry wq;
6048 struct io_ring_ctx *ctx;
6049 unsigned to_wait;
6050 unsigned nr_timeouts;
6051};
6052
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006053static inline bool io_should_wake(struct io_wait_queue *iowq, bool noflush)
Jens Axboebda52162019-09-24 13:47:15 -06006054{
6055 struct io_ring_ctx *ctx = iowq->ctx;
6056
6057 /*
Brian Gianforcarod195a662019-12-13 03:09:50 -08006058 * Wake up if we have enough events, or if a timeout occurred since we
Jens Axboebda52162019-09-24 13:47:15 -06006059 * started waiting. For timeouts, we always want to return to userspace,
6060 * regardless of event count.
6061 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006062 return io_cqring_events(ctx, noflush) >= iowq->to_wait ||
Jens Axboebda52162019-09-24 13:47:15 -06006063 atomic_read(&ctx->cq_timeouts) != iowq->nr_timeouts;
6064}
6065
6066static int io_wake_function(struct wait_queue_entry *curr, unsigned int mode,
6067 int wake_flags, void *key)
6068{
6069 struct io_wait_queue *iowq = container_of(curr, struct io_wait_queue,
6070 wq);
6071
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006072 /* use noflush == true, as we can't safely rely on locking context */
6073 if (!io_should_wake(iowq, true))
Jens Axboebda52162019-09-24 13:47:15 -06006074 return -1;
6075
6076 return autoremove_wake_function(curr, mode, wake_flags, key);
6077}
6078
Jens Axboe2b188cc2019-01-07 10:46:33 -07006079/*
6080 * Wait until events become available, if we don't already have some. The
6081 * application must reap them itself, as they reside on the shared cq ring.
6082 */
6083static int io_cqring_wait(struct io_ring_ctx *ctx, int min_events,
6084 const sigset_t __user *sig, size_t sigsz)
6085{
Jens Axboebda52162019-09-24 13:47:15 -06006086 struct io_wait_queue iowq = {
6087 .wq = {
6088 .private = current,
6089 .func = io_wake_function,
6090 .entry = LIST_HEAD_INIT(iowq.wq.entry),
6091 },
6092 .ctx = ctx,
6093 .to_wait = min_events,
6094 };
Hristo Venev75b28af2019-08-26 17:23:46 +00006095 struct io_rings *rings = ctx->rings;
Jackie Liue9ffa5c2019-10-29 11:16:42 +08006096 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006097
Jens Axboeb41e9852020-02-17 09:52:41 -07006098 do {
6099 if (io_cqring_events(ctx, false) >= min_events)
6100 return 0;
6101 if (!current->task_works)
6102 break;
6103 task_work_run();
6104 } while (1);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006105
6106 if (sig) {
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006107#ifdef CONFIG_COMPAT
6108 if (in_compat_syscall())
6109 ret = set_compat_user_sigmask((const compat_sigset_t __user *)sig,
Oleg Nesterovb7724342019-07-16 16:29:53 -07006110 sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006111 else
6112#endif
Oleg Nesterovb7724342019-07-16 16:29:53 -07006113 ret = set_user_sigmask(sig, sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006114
Jens Axboe2b188cc2019-01-07 10:46:33 -07006115 if (ret)
6116 return ret;
6117 }
6118
Jens Axboebda52162019-09-24 13:47:15 -06006119 iowq.nr_timeouts = atomic_read(&ctx->cq_timeouts);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02006120 trace_io_uring_cqring_wait(ctx, min_events);
Jens Axboebda52162019-09-24 13:47:15 -06006121 do {
6122 prepare_to_wait_exclusive(&ctx->wait, &iowq.wq,
6123 TASK_INTERRUPTIBLE);
Jens Axboeb41e9852020-02-17 09:52:41 -07006124 if (current->task_works)
6125 task_work_run();
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006126 if (io_should_wake(&iowq, false))
Jens Axboebda52162019-09-24 13:47:15 -06006127 break;
6128 schedule();
6129 if (signal_pending(current)) {
Jackie Liue9ffa5c2019-10-29 11:16:42 +08006130 ret = -EINTR;
Jens Axboebda52162019-09-24 13:47:15 -06006131 break;
6132 }
6133 } while (1);
6134 finish_wait(&ctx->wait, &iowq.wq);
6135
Jackie Liue9ffa5c2019-10-29 11:16:42 +08006136 restore_saved_sigmask_unless(ret == -EINTR);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006137
Hristo Venev75b28af2019-08-26 17:23:46 +00006138 return READ_ONCE(rings->cq.head) == READ_ONCE(rings->cq.tail) ? ret : 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006139}
6140
Jens Axboe6b063142019-01-10 22:13:58 -07006141static void __io_sqe_files_unregister(struct io_ring_ctx *ctx)
6142{
6143#if defined(CONFIG_UNIX)
6144 if (ctx->ring_sock) {
6145 struct sock *sock = ctx->ring_sock->sk;
6146 struct sk_buff *skb;
6147
6148 while ((skb = skb_dequeue(&sock->sk_receive_queue)) != NULL)
6149 kfree_skb(skb);
6150 }
6151#else
6152 int i;
6153
Jens Axboe65e19f52019-10-26 07:20:21 -06006154 for (i = 0; i < ctx->nr_user_files; i++) {
6155 struct file *file;
6156
6157 file = io_file_from_index(ctx, i);
6158 if (file)
6159 fput(file);
6160 }
Jens Axboe6b063142019-01-10 22:13:58 -07006161#endif
6162}
6163
Jens Axboe05f3fb32019-12-09 11:22:50 -07006164static void io_file_ref_kill(struct percpu_ref *ref)
6165{
6166 struct fixed_file_data *data;
6167
6168 data = container_of(ref, struct fixed_file_data, refs);
6169 complete(&data->done);
6170}
6171
Jens Axboe6b063142019-01-10 22:13:58 -07006172static int io_sqe_files_unregister(struct io_ring_ctx *ctx)
6173{
Jens Axboe05f3fb32019-12-09 11:22:50 -07006174 struct fixed_file_data *data = ctx->file_data;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006175 struct fixed_file_ref_node *ref_node = NULL;
Jens Axboe65e19f52019-10-26 07:20:21 -06006176 unsigned nr_tables, i;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006177 unsigned long flags;
Jens Axboe65e19f52019-10-26 07:20:21 -06006178
Jens Axboe05f3fb32019-12-09 11:22:50 -07006179 if (!data)
Jens Axboe6b063142019-01-10 22:13:58 -07006180 return -ENXIO;
6181
Xiaoguang Wang05589552020-03-31 14:05:18 +08006182 spin_lock_irqsave(&data->lock, flags);
6183 if (!list_empty(&data->ref_list))
6184 ref_node = list_first_entry(&data->ref_list,
6185 struct fixed_file_ref_node, node);
6186 spin_unlock_irqrestore(&data->lock, flags);
6187 if (ref_node)
6188 percpu_ref_kill(&ref_node->refs);
6189
6190 percpu_ref_kill(&data->refs);
6191
6192 /* wait for all refs nodes to complete */
Jens Axboe2faf8522020-02-04 19:54:55 -07006193 wait_for_completion(&data->done);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006194
Jens Axboe6b063142019-01-10 22:13:58 -07006195 __io_sqe_files_unregister(ctx);
Jens Axboe65e19f52019-10-26 07:20:21 -06006196 nr_tables = DIV_ROUND_UP(ctx->nr_user_files, IORING_MAX_FILES_TABLE);
6197 for (i = 0; i < nr_tables; i++)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006198 kfree(data->table[i].files);
6199 kfree(data->table);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006200 percpu_ref_exit(&data->refs);
6201 kfree(data);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006202 ctx->file_data = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07006203 ctx->nr_user_files = 0;
6204 return 0;
6205}
6206
Jens Axboe6c271ce2019-01-10 11:22:30 -07006207static void io_sq_thread_stop(struct io_ring_ctx *ctx)
6208{
6209 if (ctx->sqo_thread) {
Jens Axboe206aefd2019-11-07 18:27:42 -07006210 wait_for_completion(&ctx->completions[1]);
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02006211 /*
6212 * The park is a bit of a work-around, without it we get
6213 * warning spews on shutdown with SQPOLL set and affinity
6214 * set to a single CPU.
6215 */
Jens Axboe06058632019-04-13 09:26:03 -06006216 kthread_park(ctx->sqo_thread);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006217 kthread_stop(ctx->sqo_thread);
6218 ctx->sqo_thread = NULL;
6219 }
6220}
6221
Jens Axboe6b063142019-01-10 22:13:58 -07006222static void io_finish_async(struct io_ring_ctx *ctx)
6223{
Jens Axboe6c271ce2019-01-10 11:22:30 -07006224 io_sq_thread_stop(ctx);
6225
Jens Axboe561fb042019-10-24 07:25:42 -06006226 if (ctx->io_wq) {
6227 io_wq_destroy(ctx->io_wq);
6228 ctx->io_wq = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07006229 }
6230}
6231
6232#if defined(CONFIG_UNIX)
Jens Axboe6b063142019-01-10 22:13:58 -07006233/*
6234 * Ensure the UNIX gc is aware of our file set, so we are certain that
6235 * the io_uring can be safely unregistered on process exit, even if we have
6236 * loops in the file referencing.
6237 */
6238static int __io_sqe_files_scm(struct io_ring_ctx *ctx, int nr, int offset)
6239{
6240 struct sock *sk = ctx->ring_sock->sk;
6241 struct scm_fp_list *fpl;
6242 struct sk_buff *skb;
Jens Axboe08a45172019-10-03 08:11:03 -06006243 int i, nr_files;
Jens Axboe6b063142019-01-10 22:13:58 -07006244
Jens Axboe6b063142019-01-10 22:13:58 -07006245 fpl = kzalloc(sizeof(*fpl), GFP_KERNEL);
6246 if (!fpl)
6247 return -ENOMEM;
6248
6249 skb = alloc_skb(0, GFP_KERNEL);
6250 if (!skb) {
6251 kfree(fpl);
6252 return -ENOMEM;
6253 }
6254
6255 skb->sk = sk;
Jens Axboe6b063142019-01-10 22:13:58 -07006256
Jens Axboe08a45172019-10-03 08:11:03 -06006257 nr_files = 0;
Jens Axboe6b063142019-01-10 22:13:58 -07006258 fpl->user = get_uid(ctx->user);
6259 for (i = 0; i < nr; i++) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006260 struct file *file = io_file_from_index(ctx, i + offset);
6261
6262 if (!file)
Jens Axboe08a45172019-10-03 08:11:03 -06006263 continue;
Jens Axboe65e19f52019-10-26 07:20:21 -06006264 fpl->fp[nr_files] = get_file(file);
Jens Axboe08a45172019-10-03 08:11:03 -06006265 unix_inflight(fpl->user, fpl->fp[nr_files]);
6266 nr_files++;
Jens Axboe6b063142019-01-10 22:13:58 -07006267 }
6268
Jens Axboe08a45172019-10-03 08:11:03 -06006269 if (nr_files) {
6270 fpl->max = SCM_MAX_FD;
6271 fpl->count = nr_files;
6272 UNIXCB(skb).fp = fpl;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006273 skb->destructor = unix_destruct_scm;
Jens Axboe08a45172019-10-03 08:11:03 -06006274 refcount_add(skb->truesize, &sk->sk_wmem_alloc);
6275 skb_queue_head(&sk->sk_receive_queue, skb);
Jens Axboe6b063142019-01-10 22:13:58 -07006276
Jens Axboe08a45172019-10-03 08:11:03 -06006277 for (i = 0; i < nr_files; i++)
6278 fput(fpl->fp[i]);
6279 } else {
6280 kfree_skb(skb);
6281 kfree(fpl);
6282 }
Jens Axboe6b063142019-01-10 22:13:58 -07006283
6284 return 0;
6285}
6286
6287/*
6288 * If UNIX sockets are enabled, fd passing can cause a reference cycle which
6289 * causes regular reference counting to break down. We rely on the UNIX
6290 * garbage collection to take care of this problem for us.
6291 */
6292static int io_sqe_files_scm(struct io_ring_ctx *ctx)
6293{
6294 unsigned left, total;
6295 int ret = 0;
6296
6297 total = 0;
6298 left = ctx->nr_user_files;
6299 while (left) {
6300 unsigned this_files = min_t(unsigned, left, SCM_MAX_FD);
Jens Axboe6b063142019-01-10 22:13:58 -07006301
6302 ret = __io_sqe_files_scm(ctx, this_files, total);
6303 if (ret)
6304 break;
6305 left -= this_files;
6306 total += this_files;
6307 }
6308
6309 if (!ret)
6310 return 0;
6311
6312 while (total < ctx->nr_user_files) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006313 struct file *file = io_file_from_index(ctx, total);
6314
6315 if (file)
6316 fput(file);
Jens Axboe6b063142019-01-10 22:13:58 -07006317 total++;
6318 }
6319
6320 return ret;
6321}
6322#else
6323static int io_sqe_files_scm(struct io_ring_ctx *ctx)
6324{
6325 return 0;
6326}
6327#endif
6328
Jens Axboe65e19f52019-10-26 07:20:21 -06006329static int io_sqe_alloc_file_tables(struct io_ring_ctx *ctx, unsigned nr_tables,
6330 unsigned nr_files)
6331{
6332 int i;
6333
6334 for (i = 0; i < nr_tables; i++) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006335 struct fixed_file_table *table = &ctx->file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06006336 unsigned this_files;
6337
6338 this_files = min(nr_files, IORING_MAX_FILES_TABLE);
6339 table->files = kcalloc(this_files, sizeof(struct file *),
6340 GFP_KERNEL);
6341 if (!table->files)
6342 break;
6343 nr_files -= this_files;
6344 }
6345
6346 if (i == nr_tables)
6347 return 0;
6348
6349 for (i = 0; i < nr_tables; i++) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006350 struct fixed_file_table *table = &ctx->file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06006351 kfree(table->files);
6352 }
6353 return 1;
6354}
6355
Jens Axboe05f3fb32019-12-09 11:22:50 -07006356static void io_ring_file_put(struct io_ring_ctx *ctx, struct file *file)
Jens Axboec3a31e62019-10-03 13:59:56 -06006357{
6358#if defined(CONFIG_UNIX)
Jens Axboec3a31e62019-10-03 13:59:56 -06006359 struct sock *sock = ctx->ring_sock->sk;
6360 struct sk_buff_head list, *head = &sock->sk_receive_queue;
6361 struct sk_buff *skb;
6362 int i;
6363
6364 __skb_queue_head_init(&list);
6365
6366 /*
6367 * Find the skb that holds this file in its SCM_RIGHTS. When found,
6368 * remove this entry and rearrange the file array.
6369 */
6370 skb = skb_dequeue(head);
6371 while (skb) {
6372 struct scm_fp_list *fp;
6373
6374 fp = UNIXCB(skb).fp;
6375 for (i = 0; i < fp->count; i++) {
6376 int left;
6377
6378 if (fp->fp[i] != file)
6379 continue;
6380
6381 unix_notinflight(fp->user, fp->fp[i]);
6382 left = fp->count - 1 - i;
6383 if (left) {
6384 memmove(&fp->fp[i], &fp->fp[i + 1],
6385 left * sizeof(struct file *));
6386 }
6387 fp->count--;
6388 if (!fp->count) {
6389 kfree_skb(skb);
6390 skb = NULL;
6391 } else {
6392 __skb_queue_tail(&list, skb);
6393 }
6394 fput(file);
6395 file = NULL;
6396 break;
6397 }
6398
6399 if (!file)
6400 break;
6401
6402 __skb_queue_tail(&list, skb);
6403
6404 skb = skb_dequeue(head);
6405 }
6406
6407 if (skb_peek(&list)) {
6408 spin_lock_irq(&head->lock);
6409 while ((skb = __skb_dequeue(&list)) != NULL)
6410 __skb_queue_tail(head, skb);
6411 spin_unlock_irq(&head->lock);
6412 }
6413#else
Jens Axboe05f3fb32019-12-09 11:22:50 -07006414 fput(file);
Jens Axboec3a31e62019-10-03 13:59:56 -06006415#endif
6416}
6417
Jens Axboe05f3fb32019-12-09 11:22:50 -07006418struct io_file_put {
Xiaoguang Wang05589552020-03-31 14:05:18 +08006419 struct list_head list;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006420 struct file *file;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006421};
6422
Xiaoguang Wang05589552020-03-31 14:05:18 +08006423static void io_file_put_work(struct work_struct *work)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006424{
Xiaoguang Wang05589552020-03-31 14:05:18 +08006425 struct fixed_file_ref_node *ref_node;
6426 struct fixed_file_data *file_data;
6427 struct io_ring_ctx *ctx;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006428 struct io_file_put *pfile, *tmp;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006429 unsigned long flags;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006430
Xiaoguang Wang05589552020-03-31 14:05:18 +08006431 ref_node = container_of(work, struct fixed_file_ref_node, work);
6432 file_data = ref_node->file_data;
6433 ctx = file_data->ctx;
6434
6435 list_for_each_entry_safe(pfile, tmp, &ref_node->file_list, list) {
6436 list_del_init(&pfile->list);
6437 io_ring_file_put(ctx, pfile->file);
6438 kfree(pfile);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006439 }
6440
Xiaoguang Wang05589552020-03-31 14:05:18 +08006441 spin_lock_irqsave(&file_data->lock, flags);
6442 list_del_init(&ref_node->node);
6443 spin_unlock_irqrestore(&file_data->lock, flags);
Jens Axboe2faf8522020-02-04 19:54:55 -07006444
Xiaoguang Wang05589552020-03-31 14:05:18 +08006445 percpu_ref_exit(&ref_node->refs);
6446 kfree(ref_node);
6447 percpu_ref_put(&file_data->refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006448}
6449
6450static void io_file_data_ref_zero(struct percpu_ref *ref)
6451{
Xiaoguang Wang05589552020-03-31 14:05:18 +08006452 struct fixed_file_ref_node *ref_node;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006453
Xiaoguang Wang05589552020-03-31 14:05:18 +08006454 ref_node = container_of(ref, struct fixed_file_ref_node, refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006455
Xiaoguang Wang05589552020-03-31 14:05:18 +08006456 queue_work(system_wq, &ref_node->work);
6457}
6458
6459static struct fixed_file_ref_node *alloc_fixed_file_ref_node(
6460 struct io_ring_ctx *ctx)
6461{
6462 struct fixed_file_ref_node *ref_node;
6463
6464 ref_node = kzalloc(sizeof(*ref_node), GFP_KERNEL);
6465 if (!ref_node)
6466 return ERR_PTR(-ENOMEM);
6467
6468 if (percpu_ref_init(&ref_node->refs, io_file_data_ref_zero,
6469 0, GFP_KERNEL)) {
6470 kfree(ref_node);
6471 return ERR_PTR(-ENOMEM);
6472 }
6473 INIT_LIST_HEAD(&ref_node->node);
6474 INIT_LIST_HEAD(&ref_node->file_list);
6475 INIT_WORK(&ref_node->work, io_file_put_work);
6476 ref_node->file_data = ctx->file_data;
6477 return ref_node;
6478
6479}
6480
6481static void destroy_fixed_file_ref_node(struct fixed_file_ref_node *ref_node)
6482{
6483 percpu_ref_exit(&ref_node->refs);
6484 kfree(ref_node);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006485}
6486
6487static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
6488 unsigned nr_args)
6489{
6490 __s32 __user *fds = (__s32 __user *) arg;
6491 unsigned nr_tables;
6492 struct file *file;
6493 int fd, ret = 0;
6494 unsigned i;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006495 struct fixed_file_ref_node *ref_node;
6496 unsigned long flags;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006497
6498 if (ctx->file_data)
6499 return -EBUSY;
6500 if (!nr_args)
6501 return -EINVAL;
6502 if (nr_args > IORING_MAX_FIXED_FILES)
6503 return -EMFILE;
6504
6505 ctx->file_data = kzalloc(sizeof(*ctx->file_data), GFP_KERNEL);
6506 if (!ctx->file_data)
6507 return -ENOMEM;
6508 ctx->file_data->ctx = ctx;
6509 init_completion(&ctx->file_data->done);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006510 INIT_LIST_HEAD(&ctx->file_data->ref_list);
Xiaoguang Wangf7fe9342020-04-07 20:02:31 +08006511 spin_lock_init(&ctx->file_data->lock);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006512
6513 nr_tables = DIV_ROUND_UP(nr_args, IORING_MAX_FILES_TABLE);
6514 ctx->file_data->table = kcalloc(nr_tables,
6515 sizeof(struct fixed_file_table),
6516 GFP_KERNEL);
6517 if (!ctx->file_data->table) {
6518 kfree(ctx->file_data);
6519 ctx->file_data = NULL;
6520 return -ENOMEM;
6521 }
6522
Xiaoguang Wang05589552020-03-31 14:05:18 +08006523 if (percpu_ref_init(&ctx->file_data->refs, io_file_ref_kill,
Jens Axboe05f3fb32019-12-09 11:22:50 -07006524 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL)) {
6525 kfree(ctx->file_data->table);
6526 kfree(ctx->file_data);
6527 ctx->file_data = NULL;
6528 return -ENOMEM;
6529 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07006530
6531 if (io_sqe_alloc_file_tables(ctx, nr_tables, nr_args)) {
6532 percpu_ref_exit(&ctx->file_data->refs);
6533 kfree(ctx->file_data->table);
6534 kfree(ctx->file_data);
6535 ctx->file_data = NULL;
6536 return -ENOMEM;
6537 }
6538
6539 for (i = 0; i < nr_args; i++, ctx->nr_user_files++) {
6540 struct fixed_file_table *table;
6541 unsigned index;
6542
6543 ret = -EFAULT;
6544 if (copy_from_user(&fd, &fds[i], sizeof(fd)))
6545 break;
6546 /* allow sparse sets */
6547 if (fd == -1) {
6548 ret = 0;
6549 continue;
6550 }
6551
6552 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
6553 index = i & IORING_FILE_TABLE_MASK;
6554 file = fget(fd);
6555
6556 ret = -EBADF;
6557 if (!file)
6558 break;
6559
6560 /*
6561 * Don't allow io_uring instances to be registered. If UNIX
6562 * isn't enabled, then this causes a reference cycle and this
6563 * instance can never get freed. If UNIX is enabled we'll
6564 * handle it just fine, but there's still no point in allowing
6565 * a ring fd as it doesn't support regular read/write anyway.
6566 */
6567 if (file->f_op == &io_uring_fops) {
6568 fput(file);
6569 break;
6570 }
6571 ret = 0;
6572 table->files[index] = file;
6573 }
6574
6575 if (ret) {
6576 for (i = 0; i < ctx->nr_user_files; i++) {
6577 file = io_file_from_index(ctx, i);
6578 if (file)
6579 fput(file);
6580 }
6581 for (i = 0; i < nr_tables; i++)
6582 kfree(ctx->file_data->table[i].files);
6583
6584 kfree(ctx->file_data->table);
6585 kfree(ctx->file_data);
6586 ctx->file_data = NULL;
6587 ctx->nr_user_files = 0;
6588 return ret;
6589 }
6590
6591 ret = io_sqe_files_scm(ctx);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006592 if (ret) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006593 io_sqe_files_unregister(ctx);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006594 return ret;
6595 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07006596
Xiaoguang Wang05589552020-03-31 14:05:18 +08006597 ref_node = alloc_fixed_file_ref_node(ctx);
6598 if (IS_ERR(ref_node)) {
6599 io_sqe_files_unregister(ctx);
6600 return PTR_ERR(ref_node);
6601 }
6602
6603 ctx->file_data->cur_refs = &ref_node->refs;
6604 spin_lock_irqsave(&ctx->file_data->lock, flags);
6605 list_add(&ref_node->node, &ctx->file_data->ref_list);
6606 spin_unlock_irqrestore(&ctx->file_data->lock, flags);
6607 percpu_ref_get(&ctx->file_data->refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006608 return ret;
6609}
6610
Jens Axboec3a31e62019-10-03 13:59:56 -06006611static int io_sqe_file_register(struct io_ring_ctx *ctx, struct file *file,
6612 int index)
6613{
6614#if defined(CONFIG_UNIX)
6615 struct sock *sock = ctx->ring_sock->sk;
6616 struct sk_buff_head *head = &sock->sk_receive_queue;
6617 struct sk_buff *skb;
6618
6619 /*
6620 * See if we can merge this file into an existing skb SCM_RIGHTS
6621 * file set. If there's no room, fall back to allocating a new skb
6622 * and filling it in.
6623 */
6624 spin_lock_irq(&head->lock);
6625 skb = skb_peek(head);
6626 if (skb) {
6627 struct scm_fp_list *fpl = UNIXCB(skb).fp;
6628
6629 if (fpl->count < SCM_MAX_FD) {
6630 __skb_unlink(skb, head);
6631 spin_unlock_irq(&head->lock);
6632 fpl->fp[fpl->count] = get_file(file);
6633 unix_inflight(fpl->user, fpl->fp[fpl->count]);
6634 fpl->count++;
6635 spin_lock_irq(&head->lock);
6636 __skb_queue_head(head, skb);
6637 } else {
6638 skb = NULL;
6639 }
6640 }
6641 spin_unlock_irq(&head->lock);
6642
6643 if (skb) {
6644 fput(file);
6645 return 0;
6646 }
6647
6648 return __io_sqe_files_scm(ctx, 1, index);
6649#else
6650 return 0;
6651#endif
6652}
6653
Hillf Dantona5318d32020-03-23 17:47:15 +08006654static int io_queue_file_removal(struct fixed_file_data *data,
Xiaoguang Wang05589552020-03-31 14:05:18 +08006655 struct file *file)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006656{
Hillf Dantona5318d32020-03-23 17:47:15 +08006657 struct io_file_put *pfile;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006658 struct percpu_ref *refs = data->cur_refs;
6659 struct fixed_file_ref_node *ref_node;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006660
Jens Axboe05f3fb32019-12-09 11:22:50 -07006661 pfile = kzalloc(sizeof(*pfile), GFP_KERNEL);
Hillf Dantona5318d32020-03-23 17:47:15 +08006662 if (!pfile)
6663 return -ENOMEM;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006664
Xiaoguang Wang05589552020-03-31 14:05:18 +08006665 ref_node = container_of(refs, struct fixed_file_ref_node, refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006666 pfile->file = file;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006667 list_add(&pfile->list, &ref_node->file_list);
6668
Hillf Dantona5318d32020-03-23 17:47:15 +08006669 return 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006670}
6671
6672static int __io_sqe_files_update(struct io_ring_ctx *ctx,
6673 struct io_uring_files_update *up,
6674 unsigned nr_args)
6675{
6676 struct fixed_file_data *data = ctx->file_data;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006677 struct fixed_file_ref_node *ref_node;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006678 struct file *file;
Jens Axboec3a31e62019-10-03 13:59:56 -06006679 __s32 __user *fds;
6680 int fd, i, err;
6681 __u32 done;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006682 unsigned long flags;
6683 bool needs_switch = false;
Jens Axboec3a31e62019-10-03 13:59:56 -06006684
Jens Axboe05f3fb32019-12-09 11:22:50 -07006685 if (check_add_overflow(up->offset, nr_args, &done))
Jens Axboec3a31e62019-10-03 13:59:56 -06006686 return -EOVERFLOW;
6687 if (done > ctx->nr_user_files)
6688 return -EINVAL;
6689
Xiaoguang Wang05589552020-03-31 14:05:18 +08006690 ref_node = alloc_fixed_file_ref_node(ctx);
6691 if (IS_ERR(ref_node))
6692 return PTR_ERR(ref_node);
6693
Jens Axboec3a31e62019-10-03 13:59:56 -06006694 done = 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006695 fds = u64_to_user_ptr(up->fds);
Jens Axboec3a31e62019-10-03 13:59:56 -06006696 while (nr_args) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006697 struct fixed_file_table *table;
6698 unsigned index;
6699
Jens Axboec3a31e62019-10-03 13:59:56 -06006700 err = 0;
6701 if (copy_from_user(&fd, &fds[done], sizeof(fd))) {
6702 err = -EFAULT;
6703 break;
6704 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07006705 i = array_index_nospec(up->offset, ctx->nr_user_files);
6706 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
Jens Axboe65e19f52019-10-26 07:20:21 -06006707 index = i & IORING_FILE_TABLE_MASK;
6708 if (table->files[index]) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006709 file = io_file_from_index(ctx, index);
Hillf Dantona5318d32020-03-23 17:47:15 +08006710 err = io_queue_file_removal(data, file);
6711 if (err)
6712 break;
Jens Axboe65e19f52019-10-26 07:20:21 -06006713 table->files[index] = NULL;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006714 needs_switch = true;
Jens Axboec3a31e62019-10-03 13:59:56 -06006715 }
6716 if (fd != -1) {
Jens Axboec3a31e62019-10-03 13:59:56 -06006717 file = fget(fd);
6718 if (!file) {
6719 err = -EBADF;
6720 break;
6721 }
6722 /*
6723 * Don't allow io_uring instances to be registered. If
6724 * UNIX isn't enabled, then this causes a reference
6725 * cycle and this instance can never get freed. If UNIX
6726 * is enabled we'll handle it just fine, but there's
6727 * still no point in allowing a ring fd as it doesn't
6728 * support regular read/write anyway.
6729 */
6730 if (file->f_op == &io_uring_fops) {
6731 fput(file);
6732 err = -EBADF;
6733 break;
6734 }
Jens Axboe65e19f52019-10-26 07:20:21 -06006735 table->files[index] = file;
Jens Axboec3a31e62019-10-03 13:59:56 -06006736 err = io_sqe_file_register(ctx, file, i);
6737 if (err)
6738 break;
6739 }
6740 nr_args--;
6741 done++;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006742 up->offset++;
6743 }
6744
Xiaoguang Wang05589552020-03-31 14:05:18 +08006745 if (needs_switch) {
6746 percpu_ref_kill(data->cur_refs);
6747 spin_lock_irqsave(&data->lock, flags);
6748 list_add(&ref_node->node, &data->ref_list);
6749 data->cur_refs = &ref_node->refs;
6750 spin_unlock_irqrestore(&data->lock, flags);
6751 percpu_ref_get(&ctx->file_data->refs);
6752 } else
6753 destroy_fixed_file_ref_node(ref_node);
Jens Axboec3a31e62019-10-03 13:59:56 -06006754
6755 return done ? done : err;
6756}
Xiaoguang Wang05589552020-03-31 14:05:18 +08006757
Jens Axboe05f3fb32019-12-09 11:22:50 -07006758static int io_sqe_files_update(struct io_ring_ctx *ctx, void __user *arg,
6759 unsigned nr_args)
6760{
6761 struct io_uring_files_update up;
6762
6763 if (!ctx->file_data)
6764 return -ENXIO;
6765 if (!nr_args)
6766 return -EINVAL;
6767 if (copy_from_user(&up, arg, sizeof(up)))
6768 return -EFAULT;
6769 if (up.resv)
6770 return -EINVAL;
6771
6772 return __io_sqe_files_update(ctx, &up, nr_args);
6773}
Jens Axboec3a31e62019-10-03 13:59:56 -06006774
Pavel Begunkove9fd9392020-03-04 16:14:12 +03006775static void io_free_work(struct io_wq_work *work)
Jens Axboe7d723062019-11-12 22:31:31 -07006776{
6777 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
6778
Pavel Begunkove9fd9392020-03-04 16:14:12 +03006779 /* Consider that io_steal_work() relies on this ref */
Jens Axboe7d723062019-11-12 22:31:31 -07006780 io_put_req(req);
6781}
6782
Pavel Begunkov24369c22020-01-28 03:15:48 +03006783static int io_init_wq_offload(struct io_ring_ctx *ctx,
6784 struct io_uring_params *p)
6785{
6786 struct io_wq_data data;
6787 struct fd f;
6788 struct io_ring_ctx *ctx_attach;
6789 unsigned int concurrency;
6790 int ret = 0;
6791
6792 data.user = ctx->user;
Pavel Begunkove9fd9392020-03-04 16:14:12 +03006793 data.free_work = io_free_work;
Pavel Begunkov24369c22020-01-28 03:15:48 +03006794
6795 if (!(p->flags & IORING_SETUP_ATTACH_WQ)) {
6796 /* Do QD, or 4 * CPUS, whatever is smallest */
6797 concurrency = min(ctx->sq_entries, 4 * num_online_cpus());
6798
6799 ctx->io_wq = io_wq_create(concurrency, &data);
6800 if (IS_ERR(ctx->io_wq)) {
6801 ret = PTR_ERR(ctx->io_wq);
6802 ctx->io_wq = NULL;
6803 }
6804 return ret;
6805 }
6806
6807 f = fdget(p->wq_fd);
6808 if (!f.file)
6809 return -EBADF;
6810
6811 if (f.file->f_op != &io_uring_fops) {
6812 ret = -EINVAL;
6813 goto out_fput;
6814 }
6815
6816 ctx_attach = f.file->private_data;
6817 /* @io_wq is protected by holding the fd */
6818 if (!io_wq_get(ctx_attach->io_wq, &data)) {
6819 ret = -EINVAL;
6820 goto out_fput;
6821 }
6822
6823 ctx->io_wq = ctx_attach->io_wq;
6824out_fput:
6825 fdput(f);
6826 return ret;
6827}
6828
Jens Axboe6c271ce2019-01-10 11:22:30 -07006829static int io_sq_offload_start(struct io_ring_ctx *ctx,
6830 struct io_uring_params *p)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006831{
6832 int ret;
6833
Jens Axboe6c271ce2019-01-10 11:22:30 -07006834 init_waitqueue_head(&ctx->sqo_wait);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006835 mmgrab(current->mm);
6836 ctx->sqo_mm = current->mm;
6837
Jens Axboe6c271ce2019-01-10 11:22:30 -07006838 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboe3ec482d2019-04-08 10:51:01 -06006839 ret = -EPERM;
6840 if (!capable(CAP_SYS_ADMIN))
6841 goto err;
6842
Jens Axboe917257d2019-04-13 09:28:55 -06006843 ctx->sq_thread_idle = msecs_to_jiffies(p->sq_thread_idle);
6844 if (!ctx->sq_thread_idle)
6845 ctx->sq_thread_idle = HZ;
6846
Jens Axboe6c271ce2019-01-10 11:22:30 -07006847 if (p->flags & IORING_SETUP_SQ_AFF) {
Jens Axboe44a9bd12019-05-14 20:00:30 -06006848 int cpu = p->sq_thread_cpu;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006849
Jens Axboe917257d2019-04-13 09:28:55 -06006850 ret = -EINVAL;
Jens Axboe44a9bd12019-05-14 20:00:30 -06006851 if (cpu >= nr_cpu_ids)
6852 goto err;
Shenghui Wang7889f442019-05-07 16:03:19 +08006853 if (!cpu_online(cpu))
Jens Axboe917257d2019-04-13 09:28:55 -06006854 goto err;
6855
Jens Axboe6c271ce2019-01-10 11:22:30 -07006856 ctx->sqo_thread = kthread_create_on_cpu(io_sq_thread,
6857 ctx, cpu,
6858 "io_uring-sq");
6859 } else {
6860 ctx->sqo_thread = kthread_create(io_sq_thread, ctx,
6861 "io_uring-sq");
6862 }
6863 if (IS_ERR(ctx->sqo_thread)) {
6864 ret = PTR_ERR(ctx->sqo_thread);
6865 ctx->sqo_thread = NULL;
6866 goto err;
6867 }
6868 wake_up_process(ctx->sqo_thread);
6869 } else if (p->flags & IORING_SETUP_SQ_AFF) {
6870 /* Can't have SQ_AFF without SQPOLL */
6871 ret = -EINVAL;
6872 goto err;
6873 }
6874
Pavel Begunkov24369c22020-01-28 03:15:48 +03006875 ret = io_init_wq_offload(ctx, p);
6876 if (ret)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006877 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006878
6879 return 0;
6880err:
Jens Axboe54a91f32019-09-10 09:15:04 -06006881 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006882 mmdrop(ctx->sqo_mm);
6883 ctx->sqo_mm = NULL;
6884 return ret;
6885}
6886
6887static void io_unaccount_mem(struct user_struct *user, unsigned long nr_pages)
6888{
6889 atomic_long_sub(nr_pages, &user->locked_vm);
6890}
6891
6892static int io_account_mem(struct user_struct *user, unsigned long nr_pages)
6893{
6894 unsigned long page_limit, cur_pages, new_pages;
6895
6896 /* Don't allow more pages than we can safely lock */
6897 page_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
6898
6899 do {
6900 cur_pages = atomic_long_read(&user->locked_vm);
6901 new_pages = cur_pages + nr_pages;
6902 if (new_pages > page_limit)
6903 return -ENOMEM;
6904 } while (atomic_long_cmpxchg(&user->locked_vm, cur_pages,
6905 new_pages) != cur_pages);
6906
6907 return 0;
6908}
6909
6910static void io_mem_free(void *ptr)
6911{
Mark Rutland52e04ef2019-04-30 17:30:21 +01006912 struct page *page;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006913
Mark Rutland52e04ef2019-04-30 17:30:21 +01006914 if (!ptr)
6915 return;
6916
6917 page = virt_to_head_page(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006918 if (put_page_testzero(page))
6919 free_compound_page(page);
6920}
6921
6922static void *io_mem_alloc(size_t size)
6923{
6924 gfp_t gfp_flags = GFP_KERNEL | __GFP_ZERO | __GFP_NOWARN | __GFP_COMP |
6925 __GFP_NORETRY;
6926
6927 return (void *) __get_free_pages(gfp_flags, get_order(size));
6928}
6929
Hristo Venev75b28af2019-08-26 17:23:46 +00006930static unsigned long rings_size(unsigned sq_entries, unsigned cq_entries,
6931 size_t *sq_offset)
6932{
6933 struct io_rings *rings;
6934 size_t off, sq_array_size;
6935
6936 off = struct_size(rings, cqes, cq_entries);
6937 if (off == SIZE_MAX)
6938 return SIZE_MAX;
6939
6940#ifdef CONFIG_SMP
6941 off = ALIGN(off, SMP_CACHE_BYTES);
6942 if (off == 0)
6943 return SIZE_MAX;
6944#endif
6945
6946 sq_array_size = array_size(sizeof(u32), sq_entries);
6947 if (sq_array_size == SIZE_MAX)
6948 return SIZE_MAX;
6949
6950 if (check_add_overflow(off, sq_array_size, &off))
6951 return SIZE_MAX;
6952
6953 if (sq_offset)
6954 *sq_offset = off;
6955
6956 return off;
6957}
6958
Jens Axboe2b188cc2019-01-07 10:46:33 -07006959static unsigned long ring_pages(unsigned sq_entries, unsigned cq_entries)
6960{
Hristo Venev75b28af2019-08-26 17:23:46 +00006961 size_t pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006962
Hristo Venev75b28af2019-08-26 17:23:46 +00006963 pages = (size_t)1 << get_order(
6964 rings_size(sq_entries, cq_entries, NULL));
6965 pages += (size_t)1 << get_order(
6966 array_size(sizeof(struct io_uring_sqe), sq_entries));
Jens Axboe2b188cc2019-01-07 10:46:33 -07006967
Hristo Venev75b28af2019-08-26 17:23:46 +00006968 return pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006969}
6970
Jens Axboeedafcce2019-01-09 09:16:05 -07006971static int io_sqe_buffer_unregister(struct io_ring_ctx *ctx)
6972{
6973 int i, j;
6974
6975 if (!ctx->user_bufs)
6976 return -ENXIO;
6977
6978 for (i = 0; i < ctx->nr_user_bufs; i++) {
6979 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
6980
6981 for (j = 0; j < imu->nr_bvecs; j++)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08006982 unpin_user_page(imu->bvec[j].bv_page);
Jens Axboeedafcce2019-01-09 09:16:05 -07006983
6984 if (ctx->account_mem)
6985 io_unaccount_mem(ctx->user, imu->nr_bvecs);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006986 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07006987 imu->nr_bvecs = 0;
6988 }
6989
6990 kfree(ctx->user_bufs);
6991 ctx->user_bufs = NULL;
6992 ctx->nr_user_bufs = 0;
6993 return 0;
6994}
6995
6996static int io_copy_iov(struct io_ring_ctx *ctx, struct iovec *dst,
6997 void __user *arg, unsigned index)
6998{
6999 struct iovec __user *src;
7000
7001#ifdef CONFIG_COMPAT
7002 if (ctx->compat) {
7003 struct compat_iovec __user *ciovs;
7004 struct compat_iovec ciov;
7005
7006 ciovs = (struct compat_iovec __user *) arg;
7007 if (copy_from_user(&ciov, &ciovs[index], sizeof(ciov)))
7008 return -EFAULT;
7009
Jens Axboed55e5f52019-12-11 16:12:15 -07007010 dst->iov_base = u64_to_user_ptr((u64)ciov.iov_base);
Jens Axboeedafcce2019-01-09 09:16:05 -07007011 dst->iov_len = ciov.iov_len;
7012 return 0;
7013 }
7014#endif
7015 src = (struct iovec __user *) arg;
7016 if (copy_from_user(dst, &src[index], sizeof(*dst)))
7017 return -EFAULT;
7018 return 0;
7019}
7020
7021static int io_sqe_buffer_register(struct io_ring_ctx *ctx, void __user *arg,
7022 unsigned nr_args)
7023{
7024 struct vm_area_struct **vmas = NULL;
7025 struct page **pages = NULL;
7026 int i, j, got_pages = 0;
7027 int ret = -EINVAL;
7028
7029 if (ctx->user_bufs)
7030 return -EBUSY;
7031 if (!nr_args || nr_args > UIO_MAXIOV)
7032 return -EINVAL;
7033
7034 ctx->user_bufs = kcalloc(nr_args, sizeof(struct io_mapped_ubuf),
7035 GFP_KERNEL);
7036 if (!ctx->user_bufs)
7037 return -ENOMEM;
7038
7039 for (i = 0; i < nr_args; i++) {
7040 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
7041 unsigned long off, start, end, ubuf;
7042 int pret, nr_pages;
7043 struct iovec iov;
7044 size_t size;
7045
7046 ret = io_copy_iov(ctx, &iov, arg, i);
7047 if (ret)
Pavel Begunkova2786822019-05-26 12:35:47 +03007048 goto err;
Jens Axboeedafcce2019-01-09 09:16:05 -07007049
7050 /*
7051 * Don't impose further limits on the size and buffer
7052 * constraints here, we'll -EINVAL later when IO is
7053 * submitted if they are wrong.
7054 */
7055 ret = -EFAULT;
7056 if (!iov.iov_base || !iov.iov_len)
7057 goto err;
7058
7059 /* arbitrary limit, but we need something */
7060 if (iov.iov_len > SZ_1G)
7061 goto err;
7062
7063 ubuf = (unsigned long) iov.iov_base;
7064 end = (ubuf + iov.iov_len + PAGE_SIZE - 1) >> PAGE_SHIFT;
7065 start = ubuf >> PAGE_SHIFT;
7066 nr_pages = end - start;
7067
7068 if (ctx->account_mem) {
7069 ret = io_account_mem(ctx->user, nr_pages);
7070 if (ret)
7071 goto err;
7072 }
7073
7074 ret = 0;
7075 if (!pages || nr_pages > got_pages) {
7076 kfree(vmas);
7077 kfree(pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007078 pages = kvmalloc_array(nr_pages, sizeof(struct page *),
Jens Axboeedafcce2019-01-09 09:16:05 -07007079 GFP_KERNEL);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007080 vmas = kvmalloc_array(nr_pages,
Jens Axboeedafcce2019-01-09 09:16:05 -07007081 sizeof(struct vm_area_struct *),
7082 GFP_KERNEL);
7083 if (!pages || !vmas) {
7084 ret = -ENOMEM;
7085 if (ctx->account_mem)
7086 io_unaccount_mem(ctx->user, nr_pages);
7087 goto err;
7088 }
7089 got_pages = nr_pages;
7090 }
7091
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007092 imu->bvec = kvmalloc_array(nr_pages, sizeof(struct bio_vec),
Jens Axboeedafcce2019-01-09 09:16:05 -07007093 GFP_KERNEL);
7094 ret = -ENOMEM;
7095 if (!imu->bvec) {
7096 if (ctx->account_mem)
7097 io_unaccount_mem(ctx->user, nr_pages);
7098 goto err;
7099 }
7100
7101 ret = 0;
7102 down_read(&current->mm->mmap_sem);
John Hubbard2113b052020-01-30 22:13:13 -08007103 pret = pin_user_pages(ubuf, nr_pages,
Ira Weiny932f4a62019-05-13 17:17:03 -07007104 FOLL_WRITE | FOLL_LONGTERM,
7105 pages, vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007106 if (pret == nr_pages) {
7107 /* don't support file backed memory */
7108 for (j = 0; j < nr_pages; j++) {
7109 struct vm_area_struct *vma = vmas[j];
7110
7111 if (vma->vm_file &&
7112 !is_file_hugepages(vma->vm_file)) {
7113 ret = -EOPNOTSUPP;
7114 break;
7115 }
7116 }
7117 } else {
7118 ret = pret < 0 ? pret : -EFAULT;
7119 }
7120 up_read(&current->mm->mmap_sem);
7121 if (ret) {
7122 /*
7123 * if we did partial map, or found file backed vmas,
7124 * release any pages we did get
7125 */
John Hubbard27c4d3a2019-08-04 19:32:06 -07007126 if (pret > 0)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08007127 unpin_user_pages(pages, pret);
Jens Axboeedafcce2019-01-09 09:16:05 -07007128 if (ctx->account_mem)
7129 io_unaccount_mem(ctx->user, nr_pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007130 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07007131 goto err;
7132 }
7133
7134 off = ubuf & ~PAGE_MASK;
7135 size = iov.iov_len;
7136 for (j = 0; j < nr_pages; j++) {
7137 size_t vec_len;
7138
7139 vec_len = min_t(size_t, size, PAGE_SIZE - off);
7140 imu->bvec[j].bv_page = pages[j];
7141 imu->bvec[j].bv_len = vec_len;
7142 imu->bvec[j].bv_offset = off;
7143 off = 0;
7144 size -= vec_len;
7145 }
7146 /* store original address for later verification */
7147 imu->ubuf = ubuf;
7148 imu->len = iov.iov_len;
7149 imu->nr_bvecs = nr_pages;
7150
7151 ctx->nr_user_bufs++;
7152 }
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007153 kvfree(pages);
7154 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007155 return 0;
7156err:
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007157 kvfree(pages);
7158 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007159 io_sqe_buffer_unregister(ctx);
7160 return ret;
7161}
7162
Jens Axboe9b402842019-04-11 11:45:41 -06007163static int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg)
7164{
7165 __s32 __user *fds = arg;
7166 int fd;
7167
7168 if (ctx->cq_ev_fd)
7169 return -EBUSY;
7170
7171 if (copy_from_user(&fd, fds, sizeof(*fds)))
7172 return -EFAULT;
7173
7174 ctx->cq_ev_fd = eventfd_ctx_fdget(fd);
7175 if (IS_ERR(ctx->cq_ev_fd)) {
7176 int ret = PTR_ERR(ctx->cq_ev_fd);
7177 ctx->cq_ev_fd = NULL;
7178 return ret;
7179 }
7180
7181 return 0;
7182}
7183
7184static int io_eventfd_unregister(struct io_ring_ctx *ctx)
7185{
7186 if (ctx->cq_ev_fd) {
7187 eventfd_ctx_put(ctx->cq_ev_fd);
7188 ctx->cq_ev_fd = NULL;
7189 return 0;
7190 }
7191
7192 return -ENXIO;
7193}
7194
Jens Axboe5a2e7452020-02-23 16:23:11 -07007195static int __io_destroy_buffers(int id, void *p, void *data)
7196{
7197 struct io_ring_ctx *ctx = data;
7198 struct io_buffer *buf = p;
7199
Jens Axboe067524e2020-03-02 16:32:28 -07007200 __io_remove_buffers(ctx, buf, id, -1U);
Jens Axboe5a2e7452020-02-23 16:23:11 -07007201 return 0;
7202}
7203
7204static void io_destroy_buffers(struct io_ring_ctx *ctx)
7205{
7206 idr_for_each(&ctx->io_buffer_idr, __io_destroy_buffers, ctx);
7207 idr_destroy(&ctx->io_buffer_idr);
7208}
7209
Jens Axboe2b188cc2019-01-07 10:46:33 -07007210static void io_ring_ctx_free(struct io_ring_ctx *ctx)
7211{
Jens Axboe6b063142019-01-10 22:13:58 -07007212 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007213 if (ctx->sqo_mm)
7214 mmdrop(ctx->sqo_mm);
Jens Axboedef596e2019-01-09 08:59:42 -07007215
7216 io_iopoll_reap_events(ctx);
Jens Axboeedafcce2019-01-09 09:16:05 -07007217 io_sqe_buffer_unregister(ctx);
Jens Axboe6b063142019-01-10 22:13:58 -07007218 io_sqe_files_unregister(ctx);
Jens Axboe9b402842019-04-11 11:45:41 -06007219 io_eventfd_unregister(ctx);
Jens Axboe5a2e7452020-02-23 16:23:11 -07007220 io_destroy_buffers(ctx);
Jens Axboe41726c92020-02-23 13:11:42 -07007221 idr_destroy(&ctx->personality_idr);
Jens Axboedef596e2019-01-09 08:59:42 -07007222
Jens Axboe2b188cc2019-01-07 10:46:33 -07007223#if defined(CONFIG_UNIX)
Eric Biggers355e8d22019-06-12 14:58:43 -07007224 if (ctx->ring_sock) {
7225 ctx->ring_sock->file = NULL; /* so that iput() is called */
Jens Axboe2b188cc2019-01-07 10:46:33 -07007226 sock_release(ctx->ring_sock);
Eric Biggers355e8d22019-06-12 14:58:43 -07007227 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007228#endif
7229
Hristo Venev75b28af2019-08-26 17:23:46 +00007230 io_mem_free(ctx->rings);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007231 io_mem_free(ctx->sq_sqes);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007232
7233 percpu_ref_exit(&ctx->refs);
7234 if (ctx->account_mem)
7235 io_unaccount_mem(ctx->user,
7236 ring_pages(ctx->sq_entries, ctx->cq_entries));
7237 free_uid(ctx->user);
Jens Axboe181e4482019-11-25 08:52:30 -07007238 put_cred(ctx->creds);
Jens Axboe206aefd2019-11-07 18:27:42 -07007239 kfree(ctx->completions);
Jens Axboe78076bb2019-12-04 19:56:40 -07007240 kfree(ctx->cancel_hash);
Jens Axboe0ddf92e2019-11-08 08:52:53 -07007241 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007242 kfree(ctx);
7243}
7244
7245static __poll_t io_uring_poll(struct file *file, poll_table *wait)
7246{
7247 struct io_ring_ctx *ctx = file->private_data;
7248 __poll_t mask = 0;
7249
7250 poll_wait(file, &ctx->cq_wait, wait);
Stefan Bühler4f7067c2019-04-24 23:54:17 +02007251 /*
7252 * synchronizes with barrier from wq_has_sleeper call in
7253 * io_commit_cqring
7254 */
Jens Axboe2b188cc2019-01-07 10:46:33 -07007255 smp_rmb();
Hristo Venev75b28af2019-08-26 17:23:46 +00007256 if (READ_ONCE(ctx->rings->sq.tail) - ctx->cached_sq_head !=
7257 ctx->rings->sq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007258 mask |= EPOLLOUT | EPOLLWRNORM;
Stefano Garzarella63e5d812020-02-07 13:18:28 +01007259 if (io_cqring_events(ctx, false))
Jens Axboe2b188cc2019-01-07 10:46:33 -07007260 mask |= EPOLLIN | EPOLLRDNORM;
7261
7262 return mask;
7263}
7264
7265static int io_uring_fasync(int fd, struct file *file, int on)
7266{
7267 struct io_ring_ctx *ctx = file->private_data;
7268
7269 return fasync_helper(fd, file, on, &ctx->cq_fasync);
7270}
7271
Jens Axboe071698e2020-01-28 10:04:42 -07007272static int io_remove_personalities(int id, void *p, void *data)
7273{
7274 struct io_ring_ctx *ctx = data;
7275 const struct cred *cred;
7276
7277 cred = idr_remove(&ctx->personality_idr, id);
7278 if (cred)
7279 put_cred(cred);
7280 return 0;
7281}
7282
Jens Axboe2b188cc2019-01-07 10:46:33 -07007283static void io_ring_ctx_wait_and_kill(struct io_ring_ctx *ctx)
7284{
7285 mutex_lock(&ctx->uring_lock);
7286 percpu_ref_kill(&ctx->refs);
7287 mutex_unlock(&ctx->uring_lock);
7288
Jens Axboedf069d82020-02-04 16:48:34 -07007289 /*
7290 * Wait for sq thread to idle, if we have one. It won't spin on new
7291 * work after we've killed the ctx ref above. This is important to do
7292 * before we cancel existing commands, as the thread could otherwise
7293 * be queueing new work post that. If that's work we need to cancel,
7294 * it could cause shutdown to hang.
7295 */
7296 while (ctx->sqo_thread && !wq_has_sleeper(&ctx->sqo_wait))
7297 cpu_relax();
7298
Jens Axboe5262f562019-09-17 12:26:57 -06007299 io_kill_timeouts(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07007300 io_poll_remove_all(ctx);
Jens Axboe561fb042019-10-24 07:25:42 -06007301
7302 if (ctx->io_wq)
7303 io_wq_cancel_all(ctx->io_wq);
7304
Jens Axboedef596e2019-01-09 08:59:42 -07007305 io_iopoll_reap_events(ctx);
Jens Axboe15dff282019-11-13 09:09:23 -07007306 /* if we failed setting up the ctx, we might not have any rings */
7307 if (ctx->rings)
7308 io_cqring_overflow_flush(ctx, true);
Jens Axboe071698e2020-01-28 10:04:42 -07007309 idr_for_each(&ctx->personality_idr, io_remove_personalities, ctx);
Jens Axboe206aefd2019-11-07 18:27:42 -07007310 wait_for_completion(&ctx->completions[0]);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007311 io_ring_ctx_free(ctx);
7312}
7313
7314static int io_uring_release(struct inode *inode, struct file *file)
7315{
7316 struct io_ring_ctx *ctx = file->private_data;
7317
7318 file->private_data = NULL;
7319 io_ring_ctx_wait_and_kill(ctx);
7320 return 0;
7321}
7322
Jens Axboefcb323c2019-10-24 12:39:47 -06007323static void io_uring_cancel_files(struct io_ring_ctx *ctx,
7324 struct files_struct *files)
7325{
7326 struct io_kiocb *req;
7327 DEFINE_WAIT(wait);
7328
7329 while (!list_empty_careful(&ctx->inflight_list)) {
Jens Axboe768134d2019-11-10 20:30:53 -07007330 struct io_kiocb *cancel_req = NULL;
Jens Axboefcb323c2019-10-24 12:39:47 -06007331
7332 spin_lock_irq(&ctx->inflight_lock);
7333 list_for_each_entry(req, &ctx->inflight_list, inflight_entry) {
Jens Axboe768134d2019-11-10 20:30:53 -07007334 if (req->work.files != files)
7335 continue;
7336 /* req is being completed, ignore */
7337 if (!refcount_inc_not_zero(&req->refs))
7338 continue;
7339 cancel_req = req;
7340 break;
Jens Axboefcb323c2019-10-24 12:39:47 -06007341 }
Jens Axboe768134d2019-11-10 20:30:53 -07007342 if (cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06007343 prepare_to_wait(&ctx->inflight_wait, &wait,
Jens Axboe768134d2019-11-10 20:30:53 -07007344 TASK_UNINTERRUPTIBLE);
Jens Axboefcb323c2019-10-24 12:39:47 -06007345 spin_unlock_irq(&ctx->inflight_lock);
7346
Jens Axboe768134d2019-11-10 20:30:53 -07007347 /* We need to keep going until we don't find a matching req */
7348 if (!cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06007349 break;
Bob Liu2f6d9b92019-11-13 18:06:24 +08007350
Jens Axboe2ca10252020-02-13 17:17:35 -07007351 if (cancel_req->flags & REQ_F_OVERFLOW) {
7352 spin_lock_irq(&ctx->completion_lock);
7353 list_del(&cancel_req->list);
7354 cancel_req->flags &= ~REQ_F_OVERFLOW;
7355 if (list_empty(&ctx->cq_overflow_list)) {
7356 clear_bit(0, &ctx->sq_check_overflow);
7357 clear_bit(0, &ctx->cq_check_overflow);
7358 }
7359 spin_unlock_irq(&ctx->completion_lock);
7360
7361 WRITE_ONCE(ctx->rings->cq_overflow,
7362 atomic_inc_return(&ctx->cached_cq_overflow));
7363
7364 /*
7365 * Put inflight ref and overflow ref. If that's
7366 * all we had, then we're done with this request.
7367 */
7368 if (refcount_sub_and_test(2, &cancel_req->refs)) {
7369 io_put_req(cancel_req);
7370 continue;
7371 }
7372 }
7373
Bob Liu2f6d9b92019-11-13 18:06:24 +08007374 io_wq_cancel_work(ctx->io_wq, &cancel_req->work);
7375 io_put_req(cancel_req);
Jens Axboefcb323c2019-10-24 12:39:47 -06007376 schedule();
7377 }
Jens Axboe768134d2019-11-10 20:30:53 -07007378 finish_wait(&ctx->inflight_wait, &wait);
Jens Axboefcb323c2019-10-24 12:39:47 -06007379}
7380
7381static int io_uring_flush(struct file *file, void *data)
7382{
7383 struct io_ring_ctx *ctx = file->private_data;
7384
7385 io_uring_cancel_files(ctx, data);
Jens Axboe6ab23142020-02-08 20:23:59 -07007386
7387 /*
7388 * If the task is going away, cancel work it may have pending
7389 */
7390 if (fatal_signal_pending(current) || (current->flags & PF_EXITING))
7391 io_wq_cancel_pid(ctx->io_wq, task_pid_vnr(current));
7392
Jens Axboefcb323c2019-10-24 12:39:47 -06007393 return 0;
7394}
7395
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007396static void *io_uring_validate_mmap_request(struct file *file,
7397 loff_t pgoff, size_t sz)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007398{
Jens Axboe2b188cc2019-01-07 10:46:33 -07007399 struct io_ring_ctx *ctx = file->private_data;
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007400 loff_t offset = pgoff << PAGE_SHIFT;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007401 struct page *page;
7402 void *ptr;
7403
7404 switch (offset) {
7405 case IORING_OFF_SQ_RING:
Hristo Venev75b28af2019-08-26 17:23:46 +00007406 case IORING_OFF_CQ_RING:
7407 ptr = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007408 break;
7409 case IORING_OFF_SQES:
7410 ptr = ctx->sq_sqes;
7411 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007412 default:
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007413 return ERR_PTR(-EINVAL);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007414 }
7415
7416 page = virt_to_head_page(ptr);
Matthew Wilcox (Oracle)a50b8542019-09-23 15:34:25 -07007417 if (sz > page_size(page))
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007418 return ERR_PTR(-EINVAL);
7419
7420 return ptr;
7421}
7422
7423#ifdef CONFIG_MMU
7424
7425static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
7426{
7427 size_t sz = vma->vm_end - vma->vm_start;
7428 unsigned long pfn;
7429 void *ptr;
7430
7431 ptr = io_uring_validate_mmap_request(file, vma->vm_pgoff, sz);
7432 if (IS_ERR(ptr))
7433 return PTR_ERR(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007434
7435 pfn = virt_to_phys(ptr) >> PAGE_SHIFT;
7436 return remap_pfn_range(vma, vma->vm_start, pfn, sz, vma->vm_page_prot);
7437}
7438
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007439#else /* !CONFIG_MMU */
7440
7441static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
7442{
7443 return vma->vm_flags & (VM_SHARED | VM_MAYSHARE) ? 0 : -EINVAL;
7444}
7445
7446static unsigned int io_uring_nommu_mmap_capabilities(struct file *file)
7447{
7448 return NOMMU_MAP_DIRECT | NOMMU_MAP_READ | NOMMU_MAP_WRITE;
7449}
7450
7451static unsigned long io_uring_nommu_get_unmapped_area(struct file *file,
7452 unsigned long addr, unsigned long len,
7453 unsigned long pgoff, unsigned long flags)
7454{
7455 void *ptr;
7456
7457 ptr = io_uring_validate_mmap_request(file, pgoff, len);
7458 if (IS_ERR(ptr))
7459 return PTR_ERR(ptr);
7460
7461 return (unsigned long) ptr;
7462}
7463
7464#endif /* !CONFIG_MMU */
7465
Jens Axboe2b188cc2019-01-07 10:46:33 -07007466SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
7467 u32, min_complete, u32, flags, const sigset_t __user *, sig,
7468 size_t, sigsz)
7469{
7470 struct io_ring_ctx *ctx;
7471 long ret = -EBADF;
7472 int submitted = 0;
7473 struct fd f;
7474
Jens Axboeb41e9852020-02-17 09:52:41 -07007475 if (current->task_works)
7476 task_work_run();
7477
Jens Axboe6c271ce2019-01-10 11:22:30 -07007478 if (flags & ~(IORING_ENTER_GETEVENTS | IORING_ENTER_SQ_WAKEUP))
Jens Axboe2b188cc2019-01-07 10:46:33 -07007479 return -EINVAL;
7480
7481 f = fdget(fd);
7482 if (!f.file)
7483 return -EBADF;
7484
7485 ret = -EOPNOTSUPP;
7486 if (f.file->f_op != &io_uring_fops)
7487 goto out_fput;
7488
7489 ret = -ENXIO;
7490 ctx = f.file->private_data;
7491 if (!percpu_ref_tryget(&ctx->refs))
7492 goto out_fput;
7493
Jens Axboe6c271ce2019-01-10 11:22:30 -07007494 /*
7495 * For SQ polling, the thread will do all submissions and completions.
7496 * Just return the requested submit count, and wake the thread if
7497 * we were asked to.
7498 */
Jens Axboeb2a9ead2019-09-12 14:19:16 -06007499 ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007500 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboec1edbf52019-11-10 16:56:04 -07007501 if (!list_empty_careful(&ctx->cq_overflow_list))
7502 io_cqring_overflow_flush(ctx, false);
Jens Axboe6c271ce2019-01-10 11:22:30 -07007503 if (flags & IORING_ENTER_SQ_WAKEUP)
7504 wake_up(&ctx->sqo_wait);
7505 submitted = to_submit;
Jens Axboeb2a9ead2019-09-12 14:19:16 -06007506 } else if (to_submit) {
Pavel Begunkovae9428c2019-11-06 00:22:14 +03007507 struct mm_struct *cur_mm;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007508
7509 mutex_lock(&ctx->uring_lock);
Pavel Begunkovae9428c2019-11-06 00:22:14 +03007510 /* already have mm, so io_submit_sqes() won't try to grab it */
7511 cur_mm = ctx->sqo_mm;
7512 submitted = io_submit_sqes(ctx, to_submit, f.file, fd,
7513 &cur_mm, false);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007514 mutex_unlock(&ctx->uring_lock);
Pavel Begunkov7c504e652019-12-18 19:53:45 +03007515
7516 if (submitted != to_submit)
7517 goto out;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007518 }
7519 if (flags & IORING_ENTER_GETEVENTS) {
Jens Axboedef596e2019-01-09 08:59:42 -07007520 unsigned nr_events = 0;
7521
Jens Axboe2b188cc2019-01-07 10:46:33 -07007522 min_complete = min(min_complete, ctx->cq_entries);
7523
Xiaoguang Wang32b22442020-03-11 09:26:09 +08007524 /*
7525 * When SETUP_IOPOLL and SETUP_SQPOLL are both enabled, user
7526 * space applications don't need to do io completion events
7527 * polling again, they can rely on io_sq_thread to do polling
7528 * work, which can reduce cpu usage and uring_lock contention.
7529 */
7530 if (ctx->flags & IORING_SETUP_IOPOLL &&
7531 !(ctx->flags & IORING_SETUP_SQPOLL)) {
Jens Axboedef596e2019-01-09 08:59:42 -07007532 ret = io_iopoll_check(ctx, &nr_events, min_complete);
Jens Axboedef596e2019-01-09 08:59:42 -07007533 } else {
7534 ret = io_cqring_wait(ctx, min_complete, sig, sigsz);
7535 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007536 }
7537
Pavel Begunkov7c504e652019-12-18 19:53:45 +03007538out:
Pavel Begunkov6805b322019-10-08 02:18:42 +03007539 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007540out_fput:
7541 fdput(f);
7542 return submitted ? submitted : ret;
7543}
7544
Tobias Klauserbebdb652020-02-26 18:38:32 +01007545#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -07007546static int io_uring_show_cred(int id, void *p, void *data)
7547{
7548 const struct cred *cred = p;
7549 struct seq_file *m = data;
7550 struct user_namespace *uns = seq_user_ns(m);
7551 struct group_info *gi;
7552 kernel_cap_t cap;
7553 unsigned __capi;
7554 int g;
7555
7556 seq_printf(m, "%5d\n", id);
7557 seq_put_decimal_ull(m, "\tUid:\t", from_kuid_munged(uns, cred->uid));
7558 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->euid));
7559 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->suid));
7560 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->fsuid));
7561 seq_put_decimal_ull(m, "\n\tGid:\t", from_kgid_munged(uns, cred->gid));
7562 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->egid));
7563 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->sgid));
7564 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->fsgid));
7565 seq_puts(m, "\n\tGroups:\t");
7566 gi = cred->group_info;
7567 for (g = 0; g < gi->ngroups; g++) {
7568 seq_put_decimal_ull(m, g ? " " : "",
7569 from_kgid_munged(uns, gi->gid[g]));
7570 }
7571 seq_puts(m, "\n\tCapEff:\t");
7572 cap = cred->cap_effective;
7573 CAP_FOR_EACH_U32(__capi)
7574 seq_put_hex_ll(m, NULL, cap.cap[CAP_LAST_U32 - __capi], 8);
7575 seq_putc(m, '\n');
7576 return 0;
7577}
7578
7579static void __io_uring_show_fdinfo(struct io_ring_ctx *ctx, struct seq_file *m)
7580{
7581 int i;
7582
7583 mutex_lock(&ctx->uring_lock);
7584 seq_printf(m, "UserFiles:\t%u\n", ctx->nr_user_files);
7585 for (i = 0; i < ctx->nr_user_files; i++) {
7586 struct fixed_file_table *table;
7587 struct file *f;
7588
7589 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
7590 f = table->files[i & IORING_FILE_TABLE_MASK];
7591 if (f)
7592 seq_printf(m, "%5u: %s\n", i, file_dentry(f)->d_iname);
7593 else
7594 seq_printf(m, "%5u: <none>\n", i);
7595 }
7596 seq_printf(m, "UserBufs:\t%u\n", ctx->nr_user_bufs);
7597 for (i = 0; i < ctx->nr_user_bufs; i++) {
7598 struct io_mapped_ubuf *buf = &ctx->user_bufs[i];
7599
7600 seq_printf(m, "%5u: 0x%llx/%u\n", i, buf->ubuf,
7601 (unsigned int) buf->len);
7602 }
7603 if (!idr_is_empty(&ctx->personality_idr)) {
7604 seq_printf(m, "Personalities:\n");
7605 idr_for_each(&ctx->personality_idr, io_uring_show_cred, m);
7606 }
Jens Axboed7718a92020-02-14 22:23:12 -07007607 seq_printf(m, "PollList:\n");
7608 spin_lock_irq(&ctx->completion_lock);
7609 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
7610 struct hlist_head *list = &ctx->cancel_hash[i];
7611 struct io_kiocb *req;
7612
7613 hlist_for_each_entry(req, list, hash_node)
7614 seq_printf(m, " op=%d, task_works=%d\n", req->opcode,
7615 req->task->task_works != NULL);
7616 }
7617 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe87ce9552020-01-30 08:25:34 -07007618 mutex_unlock(&ctx->uring_lock);
7619}
7620
7621static void io_uring_show_fdinfo(struct seq_file *m, struct file *f)
7622{
7623 struct io_ring_ctx *ctx = f->private_data;
7624
7625 if (percpu_ref_tryget(&ctx->refs)) {
7626 __io_uring_show_fdinfo(ctx, m);
7627 percpu_ref_put(&ctx->refs);
7628 }
7629}
Tobias Klauserbebdb652020-02-26 18:38:32 +01007630#endif
Jens Axboe87ce9552020-01-30 08:25:34 -07007631
Jens Axboe2b188cc2019-01-07 10:46:33 -07007632static const struct file_operations io_uring_fops = {
7633 .release = io_uring_release,
Jens Axboefcb323c2019-10-24 12:39:47 -06007634 .flush = io_uring_flush,
Jens Axboe2b188cc2019-01-07 10:46:33 -07007635 .mmap = io_uring_mmap,
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007636#ifndef CONFIG_MMU
7637 .get_unmapped_area = io_uring_nommu_get_unmapped_area,
7638 .mmap_capabilities = io_uring_nommu_mmap_capabilities,
7639#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07007640 .poll = io_uring_poll,
7641 .fasync = io_uring_fasync,
Tobias Klauserbebdb652020-02-26 18:38:32 +01007642#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -07007643 .show_fdinfo = io_uring_show_fdinfo,
Tobias Klauserbebdb652020-02-26 18:38:32 +01007644#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07007645};
7646
7647static int io_allocate_scq_urings(struct io_ring_ctx *ctx,
7648 struct io_uring_params *p)
7649{
Hristo Venev75b28af2019-08-26 17:23:46 +00007650 struct io_rings *rings;
7651 size_t size, sq_array_offset;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007652
Hristo Venev75b28af2019-08-26 17:23:46 +00007653 size = rings_size(p->sq_entries, p->cq_entries, &sq_array_offset);
7654 if (size == SIZE_MAX)
7655 return -EOVERFLOW;
7656
7657 rings = io_mem_alloc(size);
7658 if (!rings)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007659 return -ENOMEM;
7660
Hristo Venev75b28af2019-08-26 17:23:46 +00007661 ctx->rings = rings;
7662 ctx->sq_array = (u32 *)((char *)rings + sq_array_offset);
7663 rings->sq_ring_mask = p->sq_entries - 1;
7664 rings->cq_ring_mask = p->cq_entries - 1;
7665 rings->sq_ring_entries = p->sq_entries;
7666 rings->cq_ring_entries = p->cq_entries;
7667 ctx->sq_mask = rings->sq_ring_mask;
7668 ctx->cq_mask = rings->cq_ring_mask;
7669 ctx->sq_entries = rings->sq_ring_entries;
7670 ctx->cq_entries = rings->cq_ring_entries;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007671
7672 size = array_size(sizeof(struct io_uring_sqe), p->sq_entries);
Jens Axboeeb065d32019-11-20 09:26:29 -07007673 if (size == SIZE_MAX) {
7674 io_mem_free(ctx->rings);
7675 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007676 return -EOVERFLOW;
Jens Axboeeb065d32019-11-20 09:26:29 -07007677 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007678
7679 ctx->sq_sqes = io_mem_alloc(size);
Jens Axboeeb065d32019-11-20 09:26:29 -07007680 if (!ctx->sq_sqes) {
7681 io_mem_free(ctx->rings);
7682 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007683 return -ENOMEM;
Jens Axboeeb065d32019-11-20 09:26:29 -07007684 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007685
Jens Axboe2b188cc2019-01-07 10:46:33 -07007686 return 0;
7687}
7688
7689/*
7690 * Allocate an anonymous fd, this is what constitutes the application
7691 * visible backing of an io_uring instance. The application mmaps this
7692 * fd to gain access to the SQ/CQ ring details. If UNIX sockets are enabled,
7693 * we have to tie this fd to a socket for file garbage collection purposes.
7694 */
7695static int io_uring_get_fd(struct io_ring_ctx *ctx)
7696{
7697 struct file *file;
7698 int ret;
7699
7700#if defined(CONFIG_UNIX)
7701 ret = sock_create_kern(&init_net, PF_UNIX, SOCK_RAW, IPPROTO_IP,
7702 &ctx->ring_sock);
7703 if (ret)
7704 return ret;
7705#endif
7706
7707 ret = get_unused_fd_flags(O_RDWR | O_CLOEXEC);
7708 if (ret < 0)
7709 goto err;
7710
7711 file = anon_inode_getfile("[io_uring]", &io_uring_fops, ctx,
7712 O_RDWR | O_CLOEXEC);
7713 if (IS_ERR(file)) {
7714 put_unused_fd(ret);
7715 ret = PTR_ERR(file);
7716 goto err;
7717 }
7718
7719#if defined(CONFIG_UNIX)
7720 ctx->ring_sock->file = file;
7721#endif
7722 fd_install(ret, file);
7723 return ret;
7724err:
7725#if defined(CONFIG_UNIX)
7726 sock_release(ctx->ring_sock);
7727 ctx->ring_sock = NULL;
7728#endif
7729 return ret;
7730}
7731
7732static int io_uring_create(unsigned entries, struct io_uring_params *p)
7733{
7734 struct user_struct *user = NULL;
7735 struct io_ring_ctx *ctx;
7736 bool account_mem;
7737 int ret;
7738
Jens Axboe8110c1a2019-12-28 15:39:54 -07007739 if (!entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007740 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07007741 if (entries > IORING_MAX_ENTRIES) {
7742 if (!(p->flags & IORING_SETUP_CLAMP))
7743 return -EINVAL;
7744 entries = IORING_MAX_ENTRIES;
7745 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007746
7747 /*
7748 * Use twice as many entries for the CQ ring. It's possible for the
7749 * application to drive a higher depth than the size of the SQ ring,
7750 * since the sqes are only used at submission time. This allows for
Jens Axboe33a107f2019-10-04 12:10:03 -06007751 * some flexibility in overcommitting a bit. If the application has
7752 * set IORING_SETUP_CQSIZE, it will have passed in the desired number
7753 * of CQ ring entries manually.
Jens Axboe2b188cc2019-01-07 10:46:33 -07007754 */
7755 p->sq_entries = roundup_pow_of_two(entries);
Jens Axboe33a107f2019-10-04 12:10:03 -06007756 if (p->flags & IORING_SETUP_CQSIZE) {
7757 /*
7758 * If IORING_SETUP_CQSIZE is set, we do the same roundup
7759 * to a power-of-two, if it isn't already. We do NOT impose
7760 * any cq vs sq ring sizing.
7761 */
Jens Axboe8110c1a2019-12-28 15:39:54 -07007762 if (p->cq_entries < p->sq_entries)
Jens Axboe33a107f2019-10-04 12:10:03 -06007763 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07007764 if (p->cq_entries > IORING_MAX_CQ_ENTRIES) {
7765 if (!(p->flags & IORING_SETUP_CLAMP))
7766 return -EINVAL;
7767 p->cq_entries = IORING_MAX_CQ_ENTRIES;
7768 }
Jens Axboe33a107f2019-10-04 12:10:03 -06007769 p->cq_entries = roundup_pow_of_two(p->cq_entries);
7770 } else {
7771 p->cq_entries = 2 * p->sq_entries;
7772 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007773
7774 user = get_uid(current_user());
7775 account_mem = !capable(CAP_IPC_LOCK);
7776
7777 if (account_mem) {
7778 ret = io_account_mem(user,
7779 ring_pages(p->sq_entries, p->cq_entries));
7780 if (ret) {
7781 free_uid(user);
7782 return ret;
7783 }
7784 }
7785
7786 ctx = io_ring_ctx_alloc(p);
7787 if (!ctx) {
7788 if (account_mem)
7789 io_unaccount_mem(user, ring_pages(p->sq_entries,
7790 p->cq_entries));
7791 free_uid(user);
7792 return -ENOMEM;
7793 }
7794 ctx->compat = in_compat_syscall();
7795 ctx->account_mem = account_mem;
7796 ctx->user = user;
Jens Axboe0b8c0ec2019-12-02 08:50:00 -07007797 ctx->creds = get_current_cred();
Jens Axboe2b188cc2019-01-07 10:46:33 -07007798
7799 ret = io_allocate_scq_urings(ctx, p);
7800 if (ret)
7801 goto err;
7802
Jens Axboe6c271ce2019-01-10 11:22:30 -07007803 ret = io_sq_offload_start(ctx, p);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007804 if (ret)
7805 goto err;
7806
Jens Axboe2b188cc2019-01-07 10:46:33 -07007807 memset(&p->sq_off, 0, sizeof(p->sq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00007808 p->sq_off.head = offsetof(struct io_rings, sq.head);
7809 p->sq_off.tail = offsetof(struct io_rings, sq.tail);
7810 p->sq_off.ring_mask = offsetof(struct io_rings, sq_ring_mask);
7811 p->sq_off.ring_entries = offsetof(struct io_rings, sq_ring_entries);
7812 p->sq_off.flags = offsetof(struct io_rings, sq_flags);
7813 p->sq_off.dropped = offsetof(struct io_rings, sq_dropped);
7814 p->sq_off.array = (char *)ctx->sq_array - (char *)ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007815
7816 memset(&p->cq_off, 0, sizeof(p->cq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00007817 p->cq_off.head = offsetof(struct io_rings, cq.head);
7818 p->cq_off.tail = offsetof(struct io_rings, cq.tail);
7819 p->cq_off.ring_mask = offsetof(struct io_rings, cq_ring_mask);
7820 p->cq_off.ring_entries = offsetof(struct io_rings, cq_ring_entries);
7821 p->cq_off.overflow = offsetof(struct io_rings, cq_overflow);
7822 p->cq_off.cqes = offsetof(struct io_rings, cqes);
Jens Axboeac90f242019-09-06 10:26:21 -06007823
Jens Axboe044c1ab2019-10-28 09:15:33 -06007824 /*
7825 * Install ring fd as the very last thing, so we don't risk someone
7826 * having closed it before we finish setup
7827 */
7828 ret = io_uring_get_fd(ctx);
7829 if (ret < 0)
7830 goto err;
7831
Jens Axboeda8c9692019-12-02 18:51:26 -07007832 p->features = IORING_FEAT_SINGLE_MMAP | IORING_FEAT_NODROP |
Jens Axboecccf0ee2020-01-27 16:34:48 -07007833 IORING_FEAT_SUBMIT_STABLE | IORING_FEAT_RW_CUR_POS |
Jens Axboed7718a92020-02-14 22:23:12 -07007834 IORING_FEAT_CUR_PERSONALITY | IORING_FEAT_FAST_POLL;
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02007835 trace_io_uring_create(ret, ctx, p->sq_entries, p->cq_entries, p->flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007836 return ret;
7837err:
7838 io_ring_ctx_wait_and_kill(ctx);
7839 return ret;
7840}
7841
7842/*
7843 * Sets up an aio uring context, and returns the fd. Applications asks for a
7844 * ring size, we return the actual sq/cq ring sizes (among other things) in the
7845 * params structure passed in.
7846 */
7847static long io_uring_setup(u32 entries, struct io_uring_params __user *params)
7848{
7849 struct io_uring_params p;
7850 long ret;
7851 int i;
7852
7853 if (copy_from_user(&p, params, sizeof(p)))
7854 return -EFAULT;
7855 for (i = 0; i < ARRAY_SIZE(p.resv); i++) {
7856 if (p.resv[i])
7857 return -EINVAL;
7858 }
7859
Jens Axboe6c271ce2019-01-10 11:22:30 -07007860 if (p.flags & ~(IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL |
Jens Axboe8110c1a2019-12-28 15:39:54 -07007861 IORING_SETUP_SQ_AFF | IORING_SETUP_CQSIZE |
Pavel Begunkov24369c22020-01-28 03:15:48 +03007862 IORING_SETUP_CLAMP | IORING_SETUP_ATTACH_WQ))
Jens Axboe2b188cc2019-01-07 10:46:33 -07007863 return -EINVAL;
7864
7865 ret = io_uring_create(entries, &p);
7866 if (ret < 0)
7867 return ret;
7868
7869 if (copy_to_user(params, &p, sizeof(p)))
7870 return -EFAULT;
7871
7872 return ret;
7873}
7874
7875SYSCALL_DEFINE2(io_uring_setup, u32, entries,
7876 struct io_uring_params __user *, params)
7877{
7878 return io_uring_setup(entries, params);
7879}
7880
Jens Axboe66f4af92020-01-16 15:36:52 -07007881static int io_probe(struct io_ring_ctx *ctx, void __user *arg, unsigned nr_args)
7882{
7883 struct io_uring_probe *p;
7884 size_t size;
7885 int i, ret;
7886
7887 size = struct_size(p, ops, nr_args);
7888 if (size == SIZE_MAX)
7889 return -EOVERFLOW;
7890 p = kzalloc(size, GFP_KERNEL);
7891 if (!p)
7892 return -ENOMEM;
7893
7894 ret = -EFAULT;
7895 if (copy_from_user(p, arg, size))
7896 goto out;
7897 ret = -EINVAL;
7898 if (memchr_inv(p, 0, size))
7899 goto out;
7900
7901 p->last_op = IORING_OP_LAST - 1;
7902 if (nr_args > IORING_OP_LAST)
7903 nr_args = IORING_OP_LAST;
7904
7905 for (i = 0; i < nr_args; i++) {
7906 p->ops[i].op = i;
7907 if (!io_op_defs[i].not_supported)
7908 p->ops[i].flags = IO_URING_OP_SUPPORTED;
7909 }
7910 p->ops_len = i;
7911
7912 ret = 0;
7913 if (copy_to_user(arg, p, size))
7914 ret = -EFAULT;
7915out:
7916 kfree(p);
7917 return ret;
7918}
7919
Jens Axboe071698e2020-01-28 10:04:42 -07007920static int io_register_personality(struct io_ring_ctx *ctx)
7921{
7922 const struct cred *creds = get_current_cred();
7923 int id;
7924
7925 id = idr_alloc_cyclic(&ctx->personality_idr, (void *) creds, 1,
7926 USHRT_MAX, GFP_KERNEL);
7927 if (id < 0)
7928 put_cred(creds);
7929 return id;
7930}
7931
7932static int io_unregister_personality(struct io_ring_ctx *ctx, unsigned id)
7933{
7934 const struct cred *old_creds;
7935
7936 old_creds = idr_remove(&ctx->personality_idr, id);
7937 if (old_creds) {
7938 put_cred(old_creds);
7939 return 0;
7940 }
7941
7942 return -EINVAL;
7943}
7944
7945static bool io_register_op_must_quiesce(int op)
7946{
7947 switch (op) {
7948 case IORING_UNREGISTER_FILES:
7949 case IORING_REGISTER_FILES_UPDATE:
7950 case IORING_REGISTER_PROBE:
7951 case IORING_REGISTER_PERSONALITY:
7952 case IORING_UNREGISTER_PERSONALITY:
7953 return false;
7954 default:
7955 return true;
7956 }
7957}
7958
Jens Axboeedafcce2019-01-09 09:16:05 -07007959static int __io_uring_register(struct io_ring_ctx *ctx, unsigned opcode,
7960 void __user *arg, unsigned nr_args)
Jens Axboeb19062a2019-04-15 10:49:38 -06007961 __releases(ctx->uring_lock)
7962 __acquires(ctx->uring_lock)
Jens Axboeedafcce2019-01-09 09:16:05 -07007963{
7964 int ret;
7965
Jens Axboe35fa71a2019-04-22 10:23:23 -06007966 /*
7967 * We're inside the ring mutex, if the ref is already dying, then
7968 * someone else killed the ctx or is already going through
7969 * io_uring_register().
7970 */
7971 if (percpu_ref_is_dying(&ctx->refs))
7972 return -ENXIO;
7973
Jens Axboe071698e2020-01-28 10:04:42 -07007974 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07007975 percpu_ref_kill(&ctx->refs);
Jens Axboeb19062a2019-04-15 10:49:38 -06007976
Jens Axboe05f3fb32019-12-09 11:22:50 -07007977 /*
7978 * Drop uring mutex before waiting for references to exit. If
7979 * another thread is currently inside io_uring_enter() it might
7980 * need to grab the uring_lock to make progress. If we hold it
7981 * here across the drain wait, then we can deadlock. It's safe
7982 * to drop the mutex here, since no new references will come in
7983 * after we've killed the percpu ref.
7984 */
7985 mutex_unlock(&ctx->uring_lock);
Jens Axboec1503682020-01-08 08:26:07 -07007986 ret = wait_for_completion_interruptible(&ctx->completions[0]);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007987 mutex_lock(&ctx->uring_lock);
Jens Axboec1503682020-01-08 08:26:07 -07007988 if (ret) {
7989 percpu_ref_resurrect(&ctx->refs);
7990 ret = -EINTR;
7991 goto out;
7992 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07007993 }
Jens Axboeedafcce2019-01-09 09:16:05 -07007994
7995 switch (opcode) {
7996 case IORING_REGISTER_BUFFERS:
7997 ret = io_sqe_buffer_register(ctx, arg, nr_args);
7998 break;
7999 case IORING_UNREGISTER_BUFFERS:
8000 ret = -EINVAL;
8001 if (arg || nr_args)
8002 break;
8003 ret = io_sqe_buffer_unregister(ctx);
8004 break;
Jens Axboe6b063142019-01-10 22:13:58 -07008005 case IORING_REGISTER_FILES:
8006 ret = io_sqe_files_register(ctx, arg, nr_args);
8007 break;
8008 case IORING_UNREGISTER_FILES:
8009 ret = -EINVAL;
8010 if (arg || nr_args)
8011 break;
8012 ret = io_sqe_files_unregister(ctx);
8013 break;
Jens Axboec3a31e62019-10-03 13:59:56 -06008014 case IORING_REGISTER_FILES_UPDATE:
8015 ret = io_sqe_files_update(ctx, arg, nr_args);
8016 break;
Jens Axboe9b402842019-04-11 11:45:41 -06008017 case IORING_REGISTER_EVENTFD:
Jens Axboef2842ab2020-01-08 11:04:00 -07008018 case IORING_REGISTER_EVENTFD_ASYNC:
Jens Axboe9b402842019-04-11 11:45:41 -06008019 ret = -EINVAL;
8020 if (nr_args != 1)
8021 break;
8022 ret = io_eventfd_register(ctx, arg);
Jens Axboef2842ab2020-01-08 11:04:00 -07008023 if (ret)
8024 break;
8025 if (opcode == IORING_REGISTER_EVENTFD_ASYNC)
8026 ctx->eventfd_async = 1;
8027 else
8028 ctx->eventfd_async = 0;
Jens Axboe9b402842019-04-11 11:45:41 -06008029 break;
8030 case IORING_UNREGISTER_EVENTFD:
8031 ret = -EINVAL;
8032 if (arg || nr_args)
8033 break;
8034 ret = io_eventfd_unregister(ctx);
8035 break;
Jens Axboe66f4af92020-01-16 15:36:52 -07008036 case IORING_REGISTER_PROBE:
8037 ret = -EINVAL;
8038 if (!arg || nr_args > 256)
8039 break;
8040 ret = io_probe(ctx, arg, nr_args);
8041 break;
Jens Axboe071698e2020-01-28 10:04:42 -07008042 case IORING_REGISTER_PERSONALITY:
8043 ret = -EINVAL;
8044 if (arg || nr_args)
8045 break;
8046 ret = io_register_personality(ctx);
8047 break;
8048 case IORING_UNREGISTER_PERSONALITY:
8049 ret = -EINVAL;
8050 if (arg)
8051 break;
8052 ret = io_unregister_personality(ctx, nr_args);
8053 break;
Jens Axboeedafcce2019-01-09 09:16:05 -07008054 default:
8055 ret = -EINVAL;
8056 break;
8057 }
8058
Jens Axboe071698e2020-01-28 10:04:42 -07008059 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07008060 /* bring the ctx back to life */
Jens Axboe05f3fb32019-12-09 11:22:50 -07008061 percpu_ref_reinit(&ctx->refs);
Jens Axboec1503682020-01-08 08:26:07 -07008062out:
8063 reinit_completion(&ctx->completions[0]);
Jens Axboe05f3fb32019-12-09 11:22:50 -07008064 }
Jens Axboeedafcce2019-01-09 09:16:05 -07008065 return ret;
8066}
8067
8068SYSCALL_DEFINE4(io_uring_register, unsigned int, fd, unsigned int, opcode,
8069 void __user *, arg, unsigned int, nr_args)
8070{
8071 struct io_ring_ctx *ctx;
8072 long ret = -EBADF;
8073 struct fd f;
8074
8075 f = fdget(fd);
8076 if (!f.file)
8077 return -EBADF;
8078
8079 ret = -EOPNOTSUPP;
8080 if (f.file->f_op != &io_uring_fops)
8081 goto out_fput;
8082
8083 ctx = f.file->private_data;
8084
8085 mutex_lock(&ctx->uring_lock);
8086 ret = __io_uring_register(ctx, opcode, arg, nr_args);
8087 mutex_unlock(&ctx->uring_lock);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02008088 trace_io_uring_register(ctx, opcode, ctx->nr_user_files, ctx->nr_user_bufs,
8089 ctx->cq_ev_fd != NULL, ret);
Jens Axboeedafcce2019-01-09 09:16:05 -07008090out_fput:
8091 fdput(f);
8092 return ret;
8093}
8094
Jens Axboe2b188cc2019-01-07 10:46:33 -07008095static int __init io_uring_init(void)
8096{
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008097#define __BUILD_BUG_VERIFY_ELEMENT(stype, eoffset, etype, ename) do { \
8098 BUILD_BUG_ON(offsetof(stype, ename) != eoffset); \
8099 BUILD_BUG_ON(sizeof(etype) != sizeof_field(stype, ename)); \
8100} while (0)
8101
8102#define BUILD_BUG_SQE_ELEM(eoffset, etype, ename) \
8103 __BUILD_BUG_VERIFY_ELEMENT(struct io_uring_sqe, eoffset, etype, ename)
8104 BUILD_BUG_ON(sizeof(struct io_uring_sqe) != 64);
8105 BUILD_BUG_SQE_ELEM(0, __u8, opcode);
8106 BUILD_BUG_SQE_ELEM(1, __u8, flags);
8107 BUILD_BUG_SQE_ELEM(2, __u16, ioprio);
8108 BUILD_BUG_SQE_ELEM(4, __s32, fd);
8109 BUILD_BUG_SQE_ELEM(8, __u64, off);
8110 BUILD_BUG_SQE_ELEM(8, __u64, addr2);
8111 BUILD_BUG_SQE_ELEM(16, __u64, addr);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03008112 BUILD_BUG_SQE_ELEM(16, __u64, splice_off_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008113 BUILD_BUG_SQE_ELEM(24, __u32, len);
8114 BUILD_BUG_SQE_ELEM(28, __kernel_rwf_t, rw_flags);
8115 BUILD_BUG_SQE_ELEM(28, /* compat */ int, rw_flags);
8116 BUILD_BUG_SQE_ELEM(28, /* compat */ __u32, rw_flags);
8117 BUILD_BUG_SQE_ELEM(28, __u32, fsync_flags);
8118 BUILD_BUG_SQE_ELEM(28, __u16, poll_events);
8119 BUILD_BUG_SQE_ELEM(28, __u32, sync_range_flags);
8120 BUILD_BUG_SQE_ELEM(28, __u32, msg_flags);
8121 BUILD_BUG_SQE_ELEM(28, __u32, timeout_flags);
8122 BUILD_BUG_SQE_ELEM(28, __u32, accept_flags);
8123 BUILD_BUG_SQE_ELEM(28, __u32, cancel_flags);
8124 BUILD_BUG_SQE_ELEM(28, __u32, open_flags);
8125 BUILD_BUG_SQE_ELEM(28, __u32, statx_flags);
8126 BUILD_BUG_SQE_ELEM(28, __u32, fadvise_advice);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03008127 BUILD_BUG_SQE_ELEM(28, __u32, splice_flags);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008128 BUILD_BUG_SQE_ELEM(32, __u64, user_data);
8129 BUILD_BUG_SQE_ELEM(40, __u16, buf_index);
8130 BUILD_BUG_SQE_ELEM(42, __u16, personality);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03008131 BUILD_BUG_SQE_ELEM(44, __s32, splice_fd_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008132
Jens Axboed3656342019-12-18 09:50:26 -07008133 BUILD_BUG_ON(ARRAY_SIZE(io_op_defs) != IORING_OP_LAST);
Jens Axboe84557872020-03-03 15:28:17 -07008134 BUILD_BUG_ON(__REQ_F_LAST_BIT >= 8 * sizeof(int));
Jens Axboe2b188cc2019-01-07 10:46:33 -07008135 req_cachep = KMEM_CACHE(io_kiocb, SLAB_HWCACHE_ALIGN | SLAB_PANIC);
8136 return 0;
8137};
8138__initcall(io_uring_init);