blob: 78ae8e8ed5bfa1fe9497934f9654b4026ed40751 [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;
Pavel Begunkov6805b322019-10-08 02:18:42 +03001345 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001346 return NULL;
1347}
1348
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001349static inline void io_put_file(struct io_kiocb *req, struct file *file,
1350 bool fixed)
1351{
1352 if (fixed)
Xiaoguang Wang05589552020-03-31 14:05:18 +08001353 percpu_ref_put(req->fixed_file_refs);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001354 else
1355 fput(file);
1356}
1357
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03001358static void __io_req_do_free(struct io_kiocb *req)
Jens Axboedef596e2019-01-09 08:59:42 -07001359{
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03001360 if (likely(!io_is_fallback_req(req)))
1361 kmem_cache_free(req_cachep, req);
1362 else
1363 clear_bit_unlock(0, (unsigned long *) req->ctx->fallback_req);
1364}
1365
Jens Axboec6ca97b302019-12-28 12:11:08 -07001366static void __io_req_aux_free(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001367{
Pavel Begunkov929a3af2020-02-19 00:19:09 +03001368 if (req->flags & REQ_F_NEED_CLEANUP)
1369 io_cleanup_req(req);
1370
YueHaibing96fd84d2020-01-07 22:22:44 +08001371 kfree(req->io);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001372 if (req->file)
1373 io_put_file(req, req->file, (req->flags & REQ_F_FIXED_FILE));
Jens Axboe3537b6a2020-04-03 11:19:06 -06001374 if (req->task)
1375 put_task_struct(req->task);
Jens Axboecccf0ee2020-01-27 16:34:48 -07001376
1377 io_req_work_drop_env(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001378}
1379
1380static void __io_free_req(struct io_kiocb *req)
1381{
Jens Axboec6ca97b302019-12-28 12:11:08 -07001382 __io_req_aux_free(req);
Jens Axboefcb323c2019-10-24 12:39:47 -06001383
Jens Axboefcb323c2019-10-24 12:39:47 -06001384 if (req->flags & REQ_F_INFLIGHT) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001385 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06001386 unsigned long flags;
1387
1388 spin_lock_irqsave(&ctx->inflight_lock, flags);
1389 list_del(&req->inflight_entry);
1390 if (waitqueue_active(&ctx->inflight_wait))
1391 wake_up(&ctx->inflight_wait);
1392 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
1393 }
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03001394
1395 percpu_ref_put(&req->ctx->refs);
1396 __io_req_do_free(req);
Jens Axboee65ef562019-03-12 10:16:44 -06001397}
1398
Jens Axboec6ca97b302019-12-28 12:11:08 -07001399struct req_batch {
1400 void *reqs[IO_IOPOLL_BATCH];
1401 int to_free;
1402 int need_iter;
1403};
1404
1405static void io_free_req_many(struct io_ring_ctx *ctx, struct req_batch *rb)
1406{
1407 if (!rb->to_free)
1408 return;
1409 if (rb->need_iter) {
1410 int i, inflight = 0;
1411 unsigned long flags;
1412
1413 for (i = 0; i < rb->to_free; i++) {
1414 struct io_kiocb *req = rb->reqs[i];
1415
Jens Axboe10fef4b2020-01-09 07:52:28 -07001416 if (req->flags & REQ_F_FIXED_FILE) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001417 req->file = NULL;
Xiaoguang Wang05589552020-03-31 14:05:18 +08001418 percpu_ref_put(req->fixed_file_refs);
Jens Axboe10fef4b2020-01-09 07:52:28 -07001419 }
Jens Axboec6ca97b302019-12-28 12:11:08 -07001420 if (req->flags & REQ_F_INFLIGHT)
1421 inflight++;
Jens Axboec6ca97b302019-12-28 12:11:08 -07001422 __io_req_aux_free(req);
1423 }
1424 if (!inflight)
1425 goto do_free;
1426
1427 spin_lock_irqsave(&ctx->inflight_lock, flags);
1428 for (i = 0; i < rb->to_free; i++) {
1429 struct io_kiocb *req = rb->reqs[i];
1430
Jens Axboe10fef4b2020-01-09 07:52:28 -07001431 if (req->flags & REQ_F_INFLIGHT) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001432 list_del(&req->inflight_entry);
1433 if (!--inflight)
1434 break;
1435 }
1436 }
1437 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
1438
1439 if (waitqueue_active(&ctx->inflight_wait))
1440 wake_up(&ctx->inflight_wait);
1441 }
1442do_free:
1443 kmem_cache_free_bulk(req_cachep, rb->to_free, rb->reqs);
1444 percpu_ref_put_many(&ctx->refs, rb->to_free);
Jens Axboec6ca97b302019-12-28 12:11:08 -07001445 rb->to_free = rb->need_iter = 0;
Jens Axboee65ef562019-03-12 10:16:44 -06001446}
1447
Jackie Liua197f662019-11-08 08:09:12 -07001448static bool io_link_cancel_timeout(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -06001449{
Jackie Liua197f662019-11-08 08:09:12 -07001450 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001451 int ret;
1452
Jens Axboe2d283902019-12-04 11:08:05 -07001453 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe2665abf2019-11-05 12:40:47 -07001454 if (ret != -1) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001455 io_cqring_fill_event(req, -ECANCELED);
Jens Axboe2665abf2019-11-05 12:40:47 -07001456 io_commit_cqring(ctx);
1457 req->flags &= ~REQ_F_LINK;
Jackie Liuec9c02a2019-11-08 23:50:36 +08001458 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07001459 return true;
1460 }
1461
1462 return false;
1463}
1464
Jens Axboeba816ad2019-09-28 11:36:45 -06001465static void io_req_link_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboe9e645e112019-05-10 16:07:28 -06001466{
Jens Axboe2665abf2019-11-05 12:40:47 -07001467 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001468 bool wake_ev = false;
Jens Axboe9e645e112019-05-10 16:07:28 -06001469
Jens Axboe4d7dd462019-11-20 13:03:52 -07001470 /* Already got next link */
1471 if (req->flags & REQ_F_LINK_NEXT)
1472 return;
1473
Jens Axboe9e645e112019-05-10 16:07:28 -06001474 /*
1475 * The list should never be empty when we are called here. But could
1476 * potentially happen if the chain is messed up, check to be on the
1477 * safe side.
1478 */
Pavel Begunkov44932332019-12-05 16:16:35 +03001479 while (!list_empty(&req->link_list)) {
1480 struct io_kiocb *nxt = list_first_entry(&req->link_list,
1481 struct io_kiocb, link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001482
Pavel Begunkov44932332019-12-05 16:16:35 +03001483 if (unlikely((req->flags & REQ_F_LINK_TIMEOUT) &&
1484 (nxt->flags & REQ_F_TIMEOUT))) {
1485 list_del_init(&nxt->link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001486 wake_ev |= io_link_cancel_timeout(nxt);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001487 req->flags &= ~REQ_F_LINK_TIMEOUT;
1488 continue;
1489 }
Jens Axboe9e645e112019-05-10 16:07:28 -06001490
Pavel Begunkov44932332019-12-05 16:16:35 +03001491 list_del_init(&req->link_list);
1492 if (!list_empty(&nxt->link_list))
1493 nxt->flags |= REQ_F_LINK;
Pavel Begunkovb18fdf72019-11-21 23:21:02 +03001494 *nxtptr = nxt;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001495 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06001496 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001497
Jens Axboe4d7dd462019-11-20 13:03:52 -07001498 req->flags |= REQ_F_LINK_NEXT;
Jens Axboe2665abf2019-11-05 12:40:47 -07001499 if (wake_ev)
1500 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001501}
1502
1503/*
1504 * Called if REQ_F_LINK is set, and we fail the head request
1505 */
1506static void io_fail_links(struct io_kiocb *req)
1507{
Jens Axboe2665abf2019-11-05 12:40:47 -07001508 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001509 unsigned long flags;
1510
1511 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboe9e645e112019-05-10 16:07:28 -06001512
1513 while (!list_empty(&req->link_list)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03001514 struct io_kiocb *link = list_first_entry(&req->link_list,
1515 struct io_kiocb, link_list);
Jens Axboe9e645e112019-05-10 16:07:28 -06001516
Pavel Begunkov44932332019-12-05 16:16:35 +03001517 list_del_init(&link->link_list);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02001518 trace_io_uring_fail_link(req, link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001519
1520 if ((req->flags & REQ_F_LINK_TIMEOUT) &&
Jens Axboed625c6e2019-12-17 19:53:05 -07001521 link->opcode == IORING_OP_LINK_TIMEOUT) {
Jackie Liua197f662019-11-08 08:09:12 -07001522 io_link_cancel_timeout(link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001523 } else {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001524 io_cqring_fill_event(link, -ECANCELED);
Jens Axboe978db572019-11-14 22:39:04 -07001525 __io_double_put_req(link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001526 }
Jens Axboe5d960722019-11-19 15:31:28 -07001527 req->flags &= ~REQ_F_LINK_TIMEOUT;
Jens Axboe9e645e112019-05-10 16:07:28 -06001528 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001529
1530 io_commit_cqring(ctx);
1531 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1532 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001533}
1534
Jens Axboe4d7dd462019-11-20 13:03:52 -07001535static void io_req_find_next(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboe9e645e112019-05-10 16:07:28 -06001536{
Jens Axboe4d7dd462019-11-20 13:03:52 -07001537 if (likely(!(req->flags & REQ_F_LINK)))
Jens Axboe2665abf2019-11-05 12:40:47 -07001538 return;
Jens Axboe2665abf2019-11-05 12:40:47 -07001539
Jens Axboe9e645e112019-05-10 16:07:28 -06001540 /*
1541 * If LINK is set, we have dependent requests in this chain. If we
1542 * didn't fail this request, queue the first one up, moving any other
1543 * dependencies to the next request. In case of failure, fail the rest
1544 * of the chain.
1545 */
Jens Axboe2665abf2019-11-05 12:40:47 -07001546 if (req->flags & REQ_F_FAIL_LINK) {
1547 io_fail_links(req);
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001548 } else if ((req->flags & (REQ_F_LINK_TIMEOUT | REQ_F_COMP_LOCKED)) ==
1549 REQ_F_LINK_TIMEOUT) {
Jens Axboe2665abf2019-11-05 12:40:47 -07001550 struct io_ring_ctx *ctx = req->ctx;
1551 unsigned long flags;
1552
1553 /*
1554 * If this is a timeout link, we could be racing with the
1555 * timeout timer. Grab the completion lock for this case to
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001556 * protect against that.
Jens Axboe2665abf2019-11-05 12:40:47 -07001557 */
1558 spin_lock_irqsave(&ctx->completion_lock, flags);
1559 io_req_link_next(req, nxt);
1560 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1561 } else {
1562 io_req_link_next(req, nxt);
Jens Axboe9e645e112019-05-10 16:07:28 -06001563 }
Jens Axboe4d7dd462019-11-20 13:03:52 -07001564}
Jens Axboe9e645e112019-05-10 16:07:28 -06001565
Jackie Liuc69f8db2019-11-09 11:00:08 +08001566static void io_free_req(struct io_kiocb *req)
1567{
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001568 struct io_kiocb *nxt = NULL;
1569
1570 io_req_find_next(req, &nxt);
Pavel Begunkov70cf9f32019-11-21 23:21:00 +03001571 __io_free_req(req);
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001572
1573 if (nxt)
1574 io_queue_async_work(nxt);
Jackie Liuc69f8db2019-11-09 11:00:08 +08001575}
1576
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001577static void io_link_work_cb(struct io_wq_work **workptr)
1578{
Pavel Begunkov18a542f2020-03-23 00:23:29 +03001579 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
1580 struct io_kiocb *link;
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001581
Pavel Begunkov18a542f2020-03-23 00:23:29 +03001582 link = list_first_entry(&req->link_list, struct io_kiocb, link_list);
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001583 io_queue_linked_timeout(link);
1584 io_wq_submit_work(workptr);
1585}
1586
1587static void io_wq_assign_next(struct io_wq_work **workptr, struct io_kiocb *nxt)
1588{
1589 struct io_kiocb *link;
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001590 const struct io_op_def *def = &io_op_defs[nxt->opcode];
1591
1592 if ((nxt->flags & REQ_F_ISREG) && def->hash_reg_file)
1593 io_wq_hash_work(&nxt->work, file_inode(nxt->file));
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001594
1595 *workptr = &nxt->work;
1596 link = io_prep_linked_timeout(nxt);
Pavel Begunkov18a542f2020-03-23 00:23:29 +03001597 if (link)
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001598 nxt->work.func = io_link_work_cb;
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001599}
1600
Jens Axboeba816ad2019-09-28 11:36:45 -06001601/*
1602 * Drop reference to request, return next in chain (if there is one) if this
1603 * was the last reference to this request.
1604 */
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001605__attribute__((nonnull))
Jackie Liuec9c02a2019-11-08 23:50:36 +08001606static void io_put_req_find_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboee65ef562019-03-12 10:16:44 -06001607{
Jens Axboe2a44f462020-02-25 13:25:41 -07001608 if (refcount_dec_and_test(&req->refs)) {
1609 io_req_find_next(req, nxtptr);
Jens Axboe4d7dd462019-11-20 13:03:52 -07001610 __io_free_req(req);
Jens Axboe2a44f462020-02-25 13:25:41 -07001611 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001612}
1613
Jens Axboe2b188cc2019-01-07 10:46:33 -07001614static void io_put_req(struct io_kiocb *req)
1615{
Jens Axboedef596e2019-01-09 08:59:42 -07001616 if (refcount_dec_and_test(&req->refs))
1617 io_free_req(req);
1618}
1619
Pavel Begunkove9fd9392020-03-04 16:14:12 +03001620static void io_steal_work(struct io_kiocb *req,
1621 struct io_wq_work **workptr)
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001622{
1623 /*
1624 * It's in an io-wq worker, so there always should be at least
1625 * one reference, which will be dropped in io_put_work() just
1626 * after the current handler returns.
1627 *
1628 * It also means, that if the counter dropped to 1, then there is
1629 * no asynchronous users left, so it's safe to steal the next work.
1630 */
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001631 if (refcount_read(&req->refs) == 1) {
1632 struct io_kiocb *nxt = NULL;
1633
1634 io_req_find_next(req, &nxt);
1635 if (nxt)
1636 io_wq_assign_next(workptr, nxt);
1637 }
1638}
1639
Jens Axboe978db572019-11-14 22:39:04 -07001640/*
1641 * Must only be used if we don't need to care about links, usually from
1642 * within the completion handling itself.
1643 */
1644static void __io_double_put_req(struct io_kiocb *req)
Jens Axboea3a0e432019-08-20 11:03:11 -06001645{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001646 /* drop both submit and complete references */
1647 if (refcount_sub_and_test(2, &req->refs))
1648 __io_free_req(req);
1649}
1650
Jens Axboe978db572019-11-14 22:39:04 -07001651static void io_double_put_req(struct io_kiocb *req)
1652{
1653 /* drop both submit and complete references */
1654 if (refcount_sub_and_test(2, &req->refs))
1655 io_free_req(req);
1656}
1657
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001658static unsigned io_cqring_events(struct io_ring_ctx *ctx, bool noflush)
Jens Axboea3a0e432019-08-20 11:03:11 -06001659{
Jens Axboe84f97dc2019-11-06 11:27:53 -07001660 struct io_rings *rings = ctx->rings;
1661
Jens Axboead3eb2c2019-12-18 17:12:20 -07001662 if (test_bit(0, &ctx->cq_check_overflow)) {
1663 /*
1664 * noflush == true is from the waitqueue handler, just ensure
1665 * we wake up the task, and the next invocation will flush the
1666 * entries. We cannot safely to it from here.
1667 */
1668 if (noflush && !list_empty(&ctx->cq_overflow_list))
1669 return -1U;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001670
Jens Axboead3eb2c2019-12-18 17:12:20 -07001671 io_cqring_overflow_flush(ctx, false);
1672 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001673
Jens Axboea3a0e432019-08-20 11:03:11 -06001674 /* See comment at the top of this file */
1675 smp_rmb();
Jens Axboead3eb2c2019-12-18 17:12:20 -07001676 return ctx->cached_cq_tail - READ_ONCE(rings->cq.head);
Jens Axboea3a0e432019-08-20 11:03:11 -06001677}
1678
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03001679static inline unsigned int io_sqring_entries(struct io_ring_ctx *ctx)
1680{
1681 struct io_rings *rings = ctx->rings;
1682
1683 /* make sure SQ entry isn't read before tail */
1684 return smp_load_acquire(&rings->sq.tail) - ctx->cached_sq_head;
1685}
1686
Jens Axboe8237e042019-12-28 10:48:22 -07001687static inline bool io_req_multi_free(struct req_batch *rb, struct io_kiocb *req)
Jens Axboee94f1412019-12-19 12:06:02 -07001688{
Jens Axboec6ca97b302019-12-28 12:11:08 -07001689 if ((req->flags & REQ_F_LINK) || io_is_fallback_req(req))
1690 return false;
Jens Axboee94f1412019-12-19 12:06:02 -07001691
Jens Axboec6ca97b302019-12-28 12:11:08 -07001692 if (!(req->flags & REQ_F_FIXED_FILE) || req->io)
1693 rb->need_iter++;
1694
1695 rb->reqs[rb->to_free++] = req;
1696 if (unlikely(rb->to_free == ARRAY_SIZE(rb->reqs)))
1697 io_free_req_many(req->ctx, rb);
1698 return true;
Jens Axboee94f1412019-12-19 12:06:02 -07001699}
1700
Jens Axboebcda7ba2020-02-23 16:42:51 -07001701static int io_put_kbuf(struct io_kiocb *req)
1702{
Jens Axboe4d954c22020-02-27 07:31:19 -07001703 struct io_buffer *kbuf;
Jens Axboebcda7ba2020-02-23 16:42:51 -07001704 int cflags;
1705
Jens Axboe4d954c22020-02-27 07:31:19 -07001706 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
Jens Axboebcda7ba2020-02-23 16:42:51 -07001707 cflags = kbuf->bid << IORING_CQE_BUFFER_SHIFT;
1708 cflags |= IORING_CQE_F_BUFFER;
1709 req->rw.addr = 0;
1710 kfree(kbuf);
1711 return cflags;
1712}
1713
Jens Axboedef596e2019-01-09 08:59:42 -07001714/*
1715 * Find and free completed poll iocbs
1716 */
1717static void io_iopoll_complete(struct io_ring_ctx *ctx, unsigned int *nr_events,
1718 struct list_head *done)
1719{
Jens Axboe8237e042019-12-28 10:48:22 -07001720 struct req_batch rb;
Jens Axboedef596e2019-01-09 08:59:42 -07001721 struct io_kiocb *req;
Jens Axboedef596e2019-01-09 08:59:42 -07001722
Jens Axboec6ca97b302019-12-28 12:11:08 -07001723 rb.to_free = rb.need_iter = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001724 while (!list_empty(done)) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07001725 int cflags = 0;
1726
Jens Axboedef596e2019-01-09 08:59:42 -07001727 req = list_first_entry(done, struct io_kiocb, list);
1728 list_del(&req->list);
1729
Jens Axboebcda7ba2020-02-23 16:42:51 -07001730 if (req->flags & REQ_F_BUFFER_SELECTED)
1731 cflags = io_put_kbuf(req);
1732
1733 __io_cqring_fill_event(req, req->result, cflags);
Jens Axboedef596e2019-01-09 08:59:42 -07001734 (*nr_events)++;
1735
Jens Axboe8237e042019-12-28 10:48:22 -07001736 if (refcount_dec_and_test(&req->refs) &&
1737 !io_req_multi_free(&rb, req))
1738 io_free_req(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001739 }
Jens Axboedef596e2019-01-09 08:59:42 -07001740
Jens Axboe09bb8392019-03-13 12:39:28 -06001741 io_commit_cqring(ctx);
Xiaoguang Wang32b22442020-03-11 09:26:09 +08001742 if (ctx->flags & IORING_SETUP_SQPOLL)
1743 io_cqring_ev_posted(ctx);
Jens Axboe8237e042019-12-28 10:48:22 -07001744 io_free_req_many(ctx, &rb);
Jens Axboedef596e2019-01-09 08:59:42 -07001745}
1746
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001747static void io_iopoll_queue(struct list_head *again)
1748{
1749 struct io_kiocb *req;
1750
1751 do {
1752 req = list_first_entry(again, struct io_kiocb, list);
1753 list_del(&req->list);
1754 refcount_inc(&req->refs);
1755 io_queue_async_work(req);
1756 } while (!list_empty(again));
1757}
1758
Jens Axboedef596e2019-01-09 08:59:42 -07001759static int io_do_iopoll(struct io_ring_ctx *ctx, unsigned int *nr_events,
1760 long min)
1761{
1762 struct io_kiocb *req, *tmp;
1763 LIST_HEAD(done);
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001764 LIST_HEAD(again);
Jens Axboedef596e2019-01-09 08:59:42 -07001765 bool spin;
1766 int ret;
1767
1768 /*
1769 * Only spin for completions if we don't have multiple devices hanging
1770 * off our complete list, and we're under the requested amount.
1771 */
1772 spin = !ctx->poll_multi_file && *nr_events < min;
1773
1774 ret = 0;
1775 list_for_each_entry_safe(req, tmp, &ctx->poll_list, list) {
Jens Axboe9adbd452019-12-20 08:45:55 -07001776 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboedef596e2019-01-09 08:59:42 -07001777
1778 /*
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001779 * Move completed and retryable entries to our local lists.
1780 * If we find a request that requires polling, break out
1781 * and complete those lists first, if we have entries there.
Jens Axboedef596e2019-01-09 08:59:42 -07001782 */
1783 if (req->flags & REQ_F_IOPOLL_COMPLETED) {
1784 list_move_tail(&req->list, &done);
1785 continue;
1786 }
1787 if (!list_empty(&done))
1788 break;
1789
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001790 if (req->result == -EAGAIN) {
1791 list_move_tail(&req->list, &again);
1792 continue;
1793 }
1794 if (!list_empty(&again))
1795 break;
1796
Jens Axboedef596e2019-01-09 08:59:42 -07001797 ret = kiocb->ki_filp->f_op->iopoll(kiocb, spin);
1798 if (ret < 0)
1799 break;
1800
1801 if (ret && spin)
1802 spin = false;
1803 ret = 0;
1804 }
1805
1806 if (!list_empty(&done))
1807 io_iopoll_complete(ctx, nr_events, &done);
1808
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001809 if (!list_empty(&again))
1810 io_iopoll_queue(&again);
1811
Jens Axboedef596e2019-01-09 08:59:42 -07001812 return ret;
1813}
1814
1815/*
Brian Gianforcarod195a662019-12-13 03:09:50 -08001816 * Poll for a minimum of 'min' events. Note that if min == 0 we consider that a
Jens Axboedef596e2019-01-09 08:59:42 -07001817 * non-spinning poll check - we'll still enter the driver poll loop, but only
1818 * as a non-spinning completion check.
1819 */
1820static int io_iopoll_getevents(struct io_ring_ctx *ctx, unsigned int *nr_events,
1821 long min)
1822{
Jens Axboe08f54392019-08-21 22:19:11 -06001823 while (!list_empty(&ctx->poll_list) && !need_resched()) {
Jens Axboedef596e2019-01-09 08:59:42 -07001824 int ret;
1825
1826 ret = io_do_iopoll(ctx, nr_events, min);
1827 if (ret < 0)
1828 return ret;
1829 if (!min || *nr_events >= min)
1830 return 0;
1831 }
1832
1833 return 1;
1834}
1835
1836/*
1837 * We can't just wait for polled events to come to us, we have to actively
1838 * find and complete them.
1839 */
1840static void io_iopoll_reap_events(struct io_ring_ctx *ctx)
1841{
1842 if (!(ctx->flags & IORING_SETUP_IOPOLL))
1843 return;
1844
1845 mutex_lock(&ctx->uring_lock);
1846 while (!list_empty(&ctx->poll_list)) {
1847 unsigned int nr_events = 0;
1848
1849 io_iopoll_getevents(ctx, &nr_events, 1);
Jens Axboe08f54392019-08-21 22:19:11 -06001850
1851 /*
1852 * Ensure we allow local-to-the-cpu processing to take place,
1853 * in this case we need to ensure that we reap all events.
1854 */
1855 cond_resched();
Jens Axboedef596e2019-01-09 08:59:42 -07001856 }
1857 mutex_unlock(&ctx->uring_lock);
1858}
1859
Xiaoguang Wangc7849be2020-02-22 14:46:05 +08001860static int io_iopoll_check(struct io_ring_ctx *ctx, unsigned *nr_events,
1861 long min)
Jens Axboedef596e2019-01-09 08:59:42 -07001862{
Jens Axboe2b2ed972019-10-25 10:06:15 -06001863 int iters = 0, ret = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001864
Xiaoguang Wangc7849be2020-02-22 14:46:05 +08001865 /*
1866 * We disallow the app entering submit/complete with polling, but we
1867 * still need to lock the ring to prevent racing with polled issue
1868 * that got punted to a workqueue.
1869 */
1870 mutex_lock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07001871 do {
1872 int tmin = 0;
1873
Jens Axboe500f9fb2019-08-19 12:15:59 -06001874 /*
Jens Axboea3a0e432019-08-20 11:03:11 -06001875 * Don't enter poll loop if we already have events pending.
1876 * If we do, we can potentially be spinning for commands that
1877 * already triggered a CQE (eg in error).
1878 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001879 if (io_cqring_events(ctx, false))
Jens Axboea3a0e432019-08-20 11:03:11 -06001880 break;
1881
1882 /*
Jens Axboe500f9fb2019-08-19 12:15:59 -06001883 * If a submit got punted to a workqueue, we can have the
1884 * application entering polling for a command before it gets
1885 * issued. That app will hold the uring_lock for the duration
1886 * of the poll right here, so we need to take a breather every
1887 * now and then to ensure that the issue has a chance to add
1888 * the poll to the issued list. Otherwise we can spin here
1889 * forever, while the workqueue is stuck trying to acquire the
1890 * very same mutex.
1891 */
1892 if (!(++iters & 7)) {
1893 mutex_unlock(&ctx->uring_lock);
1894 mutex_lock(&ctx->uring_lock);
1895 }
1896
Jens Axboedef596e2019-01-09 08:59:42 -07001897 if (*nr_events < min)
1898 tmin = min - *nr_events;
1899
1900 ret = io_iopoll_getevents(ctx, nr_events, tmin);
1901 if (ret <= 0)
1902 break;
1903 ret = 0;
1904 } while (min && !*nr_events && !need_resched());
1905
Jens Axboe500f9fb2019-08-19 12:15:59 -06001906 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07001907 return ret;
1908}
1909
Jens Axboe491381ce2019-10-17 09:20:46 -06001910static void kiocb_end_write(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001911{
Jens Axboe491381ce2019-10-17 09:20:46 -06001912 /*
1913 * Tell lockdep we inherited freeze protection from submission
1914 * thread.
1915 */
1916 if (req->flags & REQ_F_ISREG) {
1917 struct inode *inode = file_inode(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001918
Jens Axboe491381ce2019-10-17 09:20:46 -06001919 __sb_writers_acquired(inode->i_sb, SB_FREEZE_WRITE);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001920 }
Jens Axboe491381ce2019-10-17 09:20:46 -06001921 file_end_write(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001922}
1923
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001924static inline void req_set_fail_links(struct io_kiocb *req)
1925{
1926 if ((req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) == REQ_F_LINK)
1927 req->flags |= REQ_F_FAIL_LINK;
1928}
1929
Jens Axboeba816ad2019-09-28 11:36:45 -06001930static void io_complete_rw_common(struct kiocb *kiocb, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001931{
Jens Axboe9adbd452019-12-20 08:45:55 -07001932 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001933 int cflags = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001934
Jens Axboe491381ce2019-10-17 09:20:46 -06001935 if (kiocb->ki_flags & IOCB_WRITE)
1936 kiocb_end_write(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001937
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001938 if (res != req->result)
1939 req_set_fail_links(req);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001940 if (req->flags & REQ_F_BUFFER_SELECTED)
1941 cflags = io_put_kbuf(req);
1942 __io_cqring_add_event(req, res, cflags);
Jens Axboeba816ad2019-09-28 11:36:45 -06001943}
1944
1945static void io_complete_rw(struct kiocb *kiocb, long res, long res2)
1946{
Jens Axboe9adbd452019-12-20 08:45:55 -07001947 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboeba816ad2019-09-28 11:36:45 -06001948
1949 io_complete_rw_common(kiocb, res);
Jens Axboee65ef562019-03-12 10:16:44 -06001950 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001951}
1952
Jens Axboedef596e2019-01-09 08:59:42 -07001953static void io_complete_rw_iopoll(struct kiocb *kiocb, long res, long res2)
1954{
Jens Axboe9adbd452019-12-20 08:45:55 -07001955 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboedef596e2019-01-09 08:59:42 -07001956
Jens Axboe491381ce2019-10-17 09:20:46 -06001957 if (kiocb->ki_flags & IOCB_WRITE)
1958 kiocb_end_write(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001959
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001960 if (res != req->result)
1961 req_set_fail_links(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06001962 req->result = res;
Jens Axboedef596e2019-01-09 08:59:42 -07001963 if (res != -EAGAIN)
1964 req->flags |= REQ_F_IOPOLL_COMPLETED;
1965}
1966
1967/*
1968 * After the iocb has been issued, it's safe to be found on the poll list.
1969 * Adding the kiocb to the list AFTER submission ensures that we don't
1970 * find it from a io_iopoll_getevents() thread before the issuer is done
1971 * accessing the kiocb cookie.
1972 */
1973static void io_iopoll_req_issued(struct io_kiocb *req)
1974{
1975 struct io_ring_ctx *ctx = req->ctx;
1976
1977 /*
1978 * Track whether we have multiple files in our lists. This will impact
1979 * how we do polling eventually, not spinning if we're on potentially
1980 * different devices.
1981 */
1982 if (list_empty(&ctx->poll_list)) {
1983 ctx->poll_multi_file = false;
1984 } else if (!ctx->poll_multi_file) {
1985 struct io_kiocb *list_req;
1986
1987 list_req = list_first_entry(&ctx->poll_list, struct io_kiocb,
1988 list);
Jens Axboe9adbd452019-12-20 08:45:55 -07001989 if (list_req->file != req->file)
Jens Axboedef596e2019-01-09 08:59:42 -07001990 ctx->poll_multi_file = true;
1991 }
1992
1993 /*
1994 * For fast devices, IO may have already completed. If it has, add
1995 * it to the front so we find it first.
1996 */
1997 if (req->flags & REQ_F_IOPOLL_COMPLETED)
1998 list_add(&req->list, &ctx->poll_list);
1999 else
2000 list_add_tail(&req->list, &ctx->poll_list);
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08002001
2002 if ((ctx->flags & IORING_SETUP_SQPOLL) &&
2003 wq_has_sleeper(&ctx->sqo_wait))
2004 wake_up(&ctx->sqo_wait);
Jens Axboedef596e2019-01-09 08:59:42 -07002005}
2006
Jens Axboe3d6770f2019-04-13 11:50:54 -06002007static void io_file_put(struct io_submit_state *state)
Jens Axboe9a56a232019-01-09 09:06:50 -07002008{
Jens Axboe3d6770f2019-04-13 11:50:54 -06002009 if (state->file) {
Jens Axboe9a56a232019-01-09 09:06:50 -07002010 int diff = state->has_refs - state->used_refs;
2011
2012 if (diff)
2013 fput_many(state->file, diff);
2014 state->file = NULL;
2015 }
2016}
2017
2018/*
2019 * Get as many references to a file as we have IOs left in this submission,
2020 * assuming most submissions are for one file, or at least that each file
2021 * has more than one submission.
2022 */
Pavel Begunkov8da11c12020-02-24 11:32:44 +03002023static struct file *__io_file_get(struct io_submit_state *state, int fd)
Jens Axboe9a56a232019-01-09 09:06:50 -07002024{
2025 if (!state)
2026 return fget(fd);
2027
2028 if (state->file) {
2029 if (state->fd == fd) {
2030 state->used_refs++;
2031 state->ios_left--;
2032 return state->file;
2033 }
Jens Axboe3d6770f2019-04-13 11:50:54 -06002034 io_file_put(state);
Jens Axboe9a56a232019-01-09 09:06:50 -07002035 }
2036 state->file = fget_many(fd, state->ios_left);
2037 if (!state->file)
2038 return NULL;
2039
2040 state->fd = fd;
2041 state->has_refs = state->ios_left;
2042 state->used_refs = 1;
2043 state->ios_left--;
2044 return state->file;
2045}
2046
Jens Axboe2b188cc2019-01-07 10:46:33 -07002047/*
2048 * If we tracked the file through the SCM inflight mechanism, we could support
2049 * any file. For now, just ensure that anything potentially problematic is done
2050 * inline.
2051 */
2052static bool io_file_supports_async(struct file *file)
2053{
2054 umode_t mode = file_inode(file)->i_mode;
2055
Jens Axboe10d59342019-12-09 20:16:22 -07002056 if (S_ISBLK(mode) || S_ISCHR(mode) || S_ISSOCK(mode))
Jens Axboe2b188cc2019-01-07 10:46:33 -07002057 return true;
2058 if (S_ISREG(mode) && file->f_op != &io_uring_fops)
2059 return true;
2060
2061 return false;
2062}
2063
Jens Axboe3529d8c2019-12-19 18:24:38 -07002064static int io_prep_rw(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2065 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002066{
Jens Axboedef596e2019-01-09 08:59:42 -07002067 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9adbd452019-12-20 08:45:55 -07002068 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe09bb8392019-03-13 12:39:28 -06002069 unsigned ioprio;
2070 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002071
Jens Axboe491381ce2019-10-17 09:20:46 -06002072 if (S_ISREG(file_inode(req->file)->i_mode))
2073 req->flags |= REQ_F_ISREG;
2074
Jens Axboe2b188cc2019-01-07 10:46:33 -07002075 kiocb->ki_pos = READ_ONCE(sqe->off);
Jens Axboeba042912019-12-25 16:33:42 -07002076 if (kiocb->ki_pos == -1 && !(req->file->f_mode & FMODE_STREAM)) {
2077 req->flags |= REQ_F_CUR_POS;
2078 kiocb->ki_pos = req->file->f_pos;
2079 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002080 kiocb->ki_hint = ki_hint_validate(file_write_hint(kiocb->ki_filp));
Pavel Begunkov3e577dc2020-02-01 03:58:42 +03002081 kiocb->ki_flags = iocb_flags(kiocb->ki_filp);
2082 ret = kiocb_set_rw_flags(kiocb, READ_ONCE(sqe->rw_flags));
2083 if (unlikely(ret))
2084 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002085
2086 ioprio = READ_ONCE(sqe->ioprio);
2087 if (ioprio) {
2088 ret = ioprio_check_cap(ioprio);
2089 if (ret)
Jens Axboe09bb8392019-03-13 12:39:28 -06002090 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002091
2092 kiocb->ki_ioprio = ioprio;
2093 } else
2094 kiocb->ki_ioprio = get_current_ioprio();
2095
Stefan Bühler8449eed2019-04-27 20:34:19 +02002096 /* don't allow async punt if RWF_NOWAIT was requested */
Jens Axboe491381ce2019-10-17 09:20:46 -06002097 if ((kiocb->ki_flags & IOCB_NOWAIT) ||
2098 (req->file->f_flags & O_NONBLOCK))
Stefan Bühler8449eed2019-04-27 20:34:19 +02002099 req->flags |= REQ_F_NOWAIT;
2100
2101 if (force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002102 kiocb->ki_flags |= IOCB_NOWAIT;
Stefan Bühler8449eed2019-04-27 20:34:19 +02002103
Jens Axboedef596e2019-01-09 08:59:42 -07002104 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07002105 if (!(kiocb->ki_flags & IOCB_DIRECT) ||
2106 !kiocb->ki_filp->f_op->iopoll)
Jens Axboe09bb8392019-03-13 12:39:28 -06002107 return -EOPNOTSUPP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002108
Jens Axboedef596e2019-01-09 08:59:42 -07002109 kiocb->ki_flags |= IOCB_HIPRI;
2110 kiocb->ki_complete = io_complete_rw_iopoll;
Jens Axboe6873e0b2019-10-30 13:53:09 -06002111 req->result = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07002112 } else {
Jens Axboe09bb8392019-03-13 12:39:28 -06002113 if (kiocb->ki_flags & IOCB_HIPRI)
2114 return -EINVAL;
Jens Axboedef596e2019-01-09 08:59:42 -07002115 kiocb->ki_complete = io_complete_rw;
2116 }
Jens Axboe9adbd452019-12-20 08:45:55 -07002117
Jens Axboe3529d8c2019-12-19 18:24:38 -07002118 req->rw.addr = READ_ONCE(sqe->addr);
2119 req->rw.len = READ_ONCE(sqe->len);
Jens Axboebcda7ba2020-02-23 16:42:51 -07002120 /* we own ->private, reuse it for the buffer index / buffer ID */
Jens Axboe9adbd452019-12-20 08:45:55 -07002121 req->rw.kiocb.private = (void *) (unsigned long)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002122 READ_ONCE(sqe->buf_index);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002123 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002124}
2125
2126static inline void io_rw_done(struct kiocb *kiocb, ssize_t ret)
2127{
2128 switch (ret) {
2129 case -EIOCBQUEUED:
2130 break;
2131 case -ERESTARTSYS:
2132 case -ERESTARTNOINTR:
2133 case -ERESTARTNOHAND:
2134 case -ERESTART_RESTARTBLOCK:
2135 /*
2136 * We can't just restart the syscall, since previously
2137 * submitted sqes may already be in progress. Just fail this
2138 * IO with EINTR.
2139 */
2140 ret = -EINTR;
2141 /* fall through */
2142 default:
2143 kiocb->ki_complete(kiocb, ret, 0);
2144 }
2145}
2146
Pavel Begunkov014db002020-03-03 21:33:12 +03002147static void kiocb_done(struct kiocb *kiocb, ssize_t ret)
Jens Axboeba816ad2019-09-28 11:36:45 -06002148{
Jens Axboeba042912019-12-25 16:33:42 -07002149 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
2150
2151 if (req->flags & REQ_F_CUR_POS)
2152 req->file->f_pos = kiocb->ki_pos;
Pavel Begunkovbcaec082020-02-24 11:30:18 +03002153 if (ret >= 0 && kiocb->ki_complete == io_complete_rw)
Pavel Begunkov014db002020-03-03 21:33:12 +03002154 io_complete_rw(kiocb, ret, 0);
Jens Axboeba816ad2019-09-28 11:36:45 -06002155 else
2156 io_rw_done(kiocb, ret);
2157}
2158
Jens Axboe9adbd452019-12-20 08:45:55 -07002159static ssize_t io_import_fixed(struct io_kiocb *req, int rw,
Pavel Begunkov7d009162019-11-25 23:14:40 +03002160 struct iov_iter *iter)
Jens Axboeedafcce2019-01-09 09:16:05 -07002161{
Jens Axboe9adbd452019-12-20 08:45:55 -07002162 struct io_ring_ctx *ctx = req->ctx;
2163 size_t len = req->rw.len;
Jens Axboeedafcce2019-01-09 09:16:05 -07002164 struct io_mapped_ubuf *imu;
2165 unsigned index, buf_index;
2166 size_t offset;
2167 u64 buf_addr;
2168
2169 /* attempt to use fixed buffers without having provided iovecs */
2170 if (unlikely(!ctx->user_bufs))
2171 return -EFAULT;
2172
Jens Axboe9adbd452019-12-20 08:45:55 -07002173 buf_index = (unsigned long) req->rw.kiocb.private;
Jens Axboeedafcce2019-01-09 09:16:05 -07002174 if (unlikely(buf_index >= ctx->nr_user_bufs))
2175 return -EFAULT;
2176
2177 index = array_index_nospec(buf_index, ctx->nr_user_bufs);
2178 imu = &ctx->user_bufs[index];
Jens Axboe9adbd452019-12-20 08:45:55 -07002179 buf_addr = req->rw.addr;
Jens Axboeedafcce2019-01-09 09:16:05 -07002180
2181 /* overflow */
2182 if (buf_addr + len < buf_addr)
2183 return -EFAULT;
2184 /* not inside the mapped region */
2185 if (buf_addr < imu->ubuf || buf_addr + len > imu->ubuf + imu->len)
2186 return -EFAULT;
2187
2188 /*
2189 * May not be a start of buffer, set size appropriately
2190 * and advance us to the beginning.
2191 */
2192 offset = buf_addr - imu->ubuf;
2193 iov_iter_bvec(iter, rw, imu->bvec, imu->nr_bvecs, offset + len);
Jens Axboebd11b3a2019-07-20 08:37:31 -06002194
2195 if (offset) {
2196 /*
2197 * Don't use iov_iter_advance() here, as it's really slow for
2198 * using the latter parts of a big fixed buffer - it iterates
2199 * over each segment manually. We can cheat a bit here, because
2200 * we know that:
2201 *
2202 * 1) it's a BVEC iter, we set it up
2203 * 2) all bvecs are PAGE_SIZE in size, except potentially the
2204 * first and last bvec
2205 *
2206 * So just find our index, and adjust the iterator afterwards.
2207 * If the offset is within the first bvec (or the whole first
2208 * bvec, just use iov_iter_advance(). This makes it easier
2209 * since we can just skip the first segment, which may not
2210 * be PAGE_SIZE aligned.
2211 */
2212 const struct bio_vec *bvec = imu->bvec;
2213
2214 if (offset <= bvec->bv_len) {
2215 iov_iter_advance(iter, offset);
2216 } else {
2217 unsigned long seg_skip;
2218
2219 /* skip first vec */
2220 offset -= bvec->bv_len;
2221 seg_skip = 1 + (offset >> PAGE_SHIFT);
2222
2223 iter->bvec = bvec + seg_skip;
2224 iter->nr_segs -= seg_skip;
Aleix Roca Nonell99c79f62019-08-15 14:03:22 +02002225 iter->count -= bvec->bv_len + offset;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002226 iter->iov_offset = offset & ~PAGE_MASK;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002227 }
2228 }
2229
Jens Axboe5e559562019-11-13 16:12:46 -07002230 return len;
Jens Axboeedafcce2019-01-09 09:16:05 -07002231}
2232
Jens Axboebcda7ba2020-02-23 16:42:51 -07002233static void io_ring_submit_unlock(struct io_ring_ctx *ctx, bool needs_lock)
2234{
2235 if (needs_lock)
2236 mutex_unlock(&ctx->uring_lock);
2237}
2238
2239static void io_ring_submit_lock(struct io_ring_ctx *ctx, bool needs_lock)
2240{
2241 /*
2242 * "Normal" inline submissions always hold the uring_lock, since we
2243 * grab it from the system call. Same is true for the SQPOLL offload.
2244 * The only exception is when we've detached the request and issue it
2245 * from an async worker thread, grab the lock for that case.
2246 */
2247 if (needs_lock)
2248 mutex_lock(&ctx->uring_lock);
2249}
2250
2251static struct io_buffer *io_buffer_select(struct io_kiocb *req, size_t *len,
2252 int bgid, struct io_buffer *kbuf,
2253 bool needs_lock)
2254{
2255 struct io_buffer *head;
2256
2257 if (req->flags & REQ_F_BUFFER_SELECTED)
2258 return kbuf;
2259
2260 io_ring_submit_lock(req->ctx, needs_lock);
2261
2262 lockdep_assert_held(&req->ctx->uring_lock);
2263
2264 head = idr_find(&req->ctx->io_buffer_idr, bgid);
2265 if (head) {
2266 if (!list_empty(&head->list)) {
2267 kbuf = list_last_entry(&head->list, struct io_buffer,
2268 list);
2269 list_del(&kbuf->list);
2270 } else {
2271 kbuf = head;
2272 idr_remove(&req->ctx->io_buffer_idr, bgid);
2273 }
2274 if (*len > kbuf->len)
2275 *len = kbuf->len;
2276 } else {
2277 kbuf = ERR_PTR(-ENOBUFS);
2278 }
2279
2280 io_ring_submit_unlock(req->ctx, needs_lock);
2281
2282 return kbuf;
2283}
2284
Jens Axboe4d954c22020-02-27 07:31:19 -07002285static void __user *io_rw_buffer_select(struct io_kiocb *req, size_t *len,
2286 bool needs_lock)
2287{
2288 struct io_buffer *kbuf;
2289 int bgid;
2290
2291 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
2292 bgid = (int) (unsigned long) req->rw.kiocb.private;
2293 kbuf = io_buffer_select(req, len, bgid, kbuf, needs_lock);
2294 if (IS_ERR(kbuf))
2295 return kbuf;
2296 req->rw.addr = (u64) (unsigned long) kbuf;
2297 req->flags |= REQ_F_BUFFER_SELECTED;
2298 return u64_to_user_ptr(kbuf->addr);
2299}
2300
2301#ifdef CONFIG_COMPAT
2302static ssize_t io_compat_import(struct io_kiocb *req, struct iovec *iov,
2303 bool needs_lock)
2304{
2305 struct compat_iovec __user *uiov;
2306 compat_ssize_t clen;
2307 void __user *buf;
2308 ssize_t len;
2309
2310 uiov = u64_to_user_ptr(req->rw.addr);
2311 if (!access_ok(uiov, sizeof(*uiov)))
2312 return -EFAULT;
2313 if (__get_user(clen, &uiov->iov_len))
2314 return -EFAULT;
2315 if (clen < 0)
2316 return -EINVAL;
2317
2318 len = clen;
2319 buf = io_rw_buffer_select(req, &len, needs_lock);
2320 if (IS_ERR(buf))
2321 return PTR_ERR(buf);
2322 iov[0].iov_base = buf;
2323 iov[0].iov_len = (compat_size_t) len;
2324 return 0;
2325}
2326#endif
2327
2328static ssize_t __io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
2329 bool needs_lock)
2330{
2331 struct iovec __user *uiov = u64_to_user_ptr(req->rw.addr);
2332 void __user *buf;
2333 ssize_t len;
2334
2335 if (copy_from_user(iov, uiov, sizeof(*uiov)))
2336 return -EFAULT;
2337
2338 len = iov[0].iov_len;
2339 if (len < 0)
2340 return -EINVAL;
2341 buf = io_rw_buffer_select(req, &len, needs_lock);
2342 if (IS_ERR(buf))
2343 return PTR_ERR(buf);
2344 iov[0].iov_base = buf;
2345 iov[0].iov_len = len;
2346 return 0;
2347}
2348
2349static ssize_t io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
2350 bool needs_lock)
2351{
2352 if (req->flags & REQ_F_BUFFER_SELECTED)
2353 return 0;
2354 if (!req->rw.len)
2355 return 0;
2356 else if (req->rw.len > 1)
2357 return -EINVAL;
2358
2359#ifdef CONFIG_COMPAT
2360 if (req->ctx->compat)
2361 return io_compat_import(req, iov, needs_lock);
2362#endif
2363
2364 return __io_iov_buffer_select(req, iov, needs_lock);
2365}
2366
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002367static ssize_t io_import_iovec(int rw, struct io_kiocb *req,
Jens Axboebcda7ba2020-02-23 16:42:51 -07002368 struct iovec **iovec, struct iov_iter *iter,
2369 bool needs_lock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002370{
Jens Axboe9adbd452019-12-20 08:45:55 -07002371 void __user *buf = u64_to_user_ptr(req->rw.addr);
2372 size_t sqe_len = req->rw.len;
Jens Axboe4d954c22020-02-27 07:31:19 -07002373 ssize_t ret;
Jens Axboeedafcce2019-01-09 09:16:05 -07002374 u8 opcode;
2375
Jens Axboed625c6e2019-12-17 19:53:05 -07002376 opcode = req->opcode;
Pavel Begunkov7d009162019-11-25 23:14:40 +03002377 if (opcode == IORING_OP_READ_FIXED || opcode == IORING_OP_WRITE_FIXED) {
Jens Axboeedafcce2019-01-09 09:16:05 -07002378 *iovec = NULL;
Jens Axboe9adbd452019-12-20 08:45:55 -07002379 return io_import_fixed(req, rw, iter);
Jens Axboeedafcce2019-01-09 09:16:05 -07002380 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002381
Jens Axboebcda7ba2020-02-23 16:42:51 -07002382 /* buffer index only valid with fixed read/write, or buffer select */
2383 if (req->rw.kiocb.private && !(req->flags & REQ_F_BUFFER_SELECT))
Jens Axboe9adbd452019-12-20 08:45:55 -07002384 return -EINVAL;
2385
Jens Axboe3a6820f2019-12-22 15:19:35 -07002386 if (opcode == IORING_OP_READ || opcode == IORING_OP_WRITE) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07002387 if (req->flags & REQ_F_BUFFER_SELECT) {
Jens Axboe4d954c22020-02-27 07:31:19 -07002388 buf = io_rw_buffer_select(req, &sqe_len, needs_lock);
2389 if (IS_ERR(buf)) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07002390 *iovec = NULL;
Jens Axboe4d954c22020-02-27 07:31:19 -07002391 return PTR_ERR(buf);
Jens Axboebcda7ba2020-02-23 16:42:51 -07002392 }
Jens Axboe3f9d6442020-03-11 12:27:04 -06002393 req->rw.len = sqe_len;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002394 }
2395
Jens Axboe3a6820f2019-12-22 15:19:35 -07002396 ret = import_single_range(rw, buf, sqe_len, *iovec, iter);
2397 *iovec = NULL;
Jens Axboe3a901592020-02-25 17:48:55 -07002398 return ret < 0 ? ret : sqe_len;
Jens Axboe3a6820f2019-12-22 15:19:35 -07002399 }
2400
Jens Axboef67676d2019-12-02 11:03:47 -07002401 if (req->io) {
2402 struct io_async_rw *iorw = &req->io->rw;
2403
2404 *iovec = iorw->iov;
2405 iov_iter_init(iter, rw, *iovec, iorw->nr_segs, iorw->size);
2406 if (iorw->iov == iorw->fast_iov)
2407 *iovec = NULL;
2408 return iorw->size;
2409 }
2410
Jens Axboe4d954c22020-02-27 07:31:19 -07002411 if (req->flags & REQ_F_BUFFER_SELECT) {
2412 ret = io_iov_buffer_select(req, *iovec, needs_lock);
Jens Axboe3f9d6442020-03-11 12:27:04 -06002413 if (!ret) {
2414 ret = (*iovec)->iov_len;
2415 iov_iter_init(iter, rw, *iovec, 1, ret);
2416 }
Jens Axboe4d954c22020-02-27 07:31:19 -07002417 *iovec = NULL;
2418 return ret;
2419 }
2420
Jens Axboe2b188cc2019-01-07 10:46:33 -07002421#ifdef CONFIG_COMPAT
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002422 if (req->ctx->compat)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002423 return compat_import_iovec(rw, buf, sqe_len, UIO_FASTIOV,
2424 iovec, iter);
2425#endif
2426
2427 return import_iovec(rw, buf, sqe_len, UIO_FASTIOV, iovec, iter);
2428}
2429
Jens Axboe32960612019-09-23 11:05:34 -06002430/*
2431 * For files that don't have ->read_iter() and ->write_iter(), handle them
2432 * by looping over ->read() or ->write() manually.
2433 */
2434static ssize_t loop_rw_iter(int rw, struct file *file, struct kiocb *kiocb,
2435 struct iov_iter *iter)
2436{
2437 ssize_t ret = 0;
2438
2439 /*
2440 * Don't support polled IO through this interface, and we can't
2441 * support non-blocking either. For the latter, this just causes
2442 * the kiocb to be handled from an async context.
2443 */
2444 if (kiocb->ki_flags & IOCB_HIPRI)
2445 return -EOPNOTSUPP;
2446 if (kiocb->ki_flags & IOCB_NOWAIT)
2447 return -EAGAIN;
2448
2449 while (iov_iter_count(iter)) {
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002450 struct iovec iovec;
Jens Axboe32960612019-09-23 11:05:34 -06002451 ssize_t nr;
2452
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002453 if (!iov_iter_is_bvec(iter)) {
2454 iovec = iov_iter_iovec(iter);
2455 } else {
2456 /* fixed buffers import bvec */
2457 iovec.iov_base = kmap(iter->bvec->bv_page)
2458 + iter->iov_offset;
2459 iovec.iov_len = min(iter->count,
2460 iter->bvec->bv_len - iter->iov_offset);
2461 }
2462
Jens Axboe32960612019-09-23 11:05:34 -06002463 if (rw == READ) {
2464 nr = file->f_op->read(file, iovec.iov_base,
2465 iovec.iov_len, &kiocb->ki_pos);
2466 } else {
2467 nr = file->f_op->write(file, iovec.iov_base,
2468 iovec.iov_len, &kiocb->ki_pos);
2469 }
2470
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002471 if (iov_iter_is_bvec(iter))
2472 kunmap(iter->bvec->bv_page);
2473
Jens Axboe32960612019-09-23 11:05:34 -06002474 if (nr < 0) {
2475 if (!ret)
2476 ret = nr;
2477 break;
2478 }
2479 ret += nr;
2480 if (nr != iovec.iov_len)
2481 break;
2482 iov_iter_advance(iter, nr);
2483 }
2484
2485 return ret;
2486}
2487
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002488static void io_req_map_rw(struct io_kiocb *req, ssize_t io_size,
Jens Axboef67676d2019-12-02 11:03:47 -07002489 struct iovec *iovec, struct iovec *fast_iov,
2490 struct iov_iter *iter)
2491{
2492 req->io->rw.nr_segs = iter->nr_segs;
2493 req->io->rw.size = io_size;
2494 req->io->rw.iov = iovec;
2495 if (!req->io->rw.iov) {
2496 req->io->rw.iov = req->io->rw.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 Axboe15b71ab2019-12-11 11:20:36 -07002961
Jens Axboef8748882020-01-08 17:47:02 -07002962 req->open.filename = getname(fname);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002963 if (IS_ERR(req->open.filename)) {
2964 ret = PTR_ERR(req->open.filename);
2965 req->open.filename = NULL;
2966 return ret;
2967 }
2968
Jens Axboe4022e7a2020-03-19 19:23:18 -06002969 req->open.nofile = rlimit(RLIMIT_NOFILE);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03002970 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002971 return 0;
2972}
2973
Jens Axboecebdb982020-01-08 17:59:24 -07002974static int io_openat2_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2975{
2976 struct open_how __user *how;
2977 const char __user *fname;
2978 size_t len;
2979 int ret;
2980
2981 if (sqe->ioprio || sqe->buf_index)
2982 return -EINVAL;
Jens Axboecf3040c2020-02-06 21:31:40 -07002983 if (sqe->flags & IOSQE_FIXED_FILE)
2984 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03002985 if (req->flags & REQ_F_NEED_CLEANUP)
2986 return 0;
Jens Axboecebdb982020-01-08 17:59:24 -07002987
2988 req->open.dfd = READ_ONCE(sqe->fd);
2989 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
2990 how = u64_to_user_ptr(READ_ONCE(sqe->addr2));
2991 len = READ_ONCE(sqe->len);
2992
2993 if (len < OPEN_HOW_SIZE_VER0)
2994 return -EINVAL;
2995
2996 ret = copy_struct_from_user(&req->open.how, sizeof(req->open.how), how,
2997 len);
2998 if (ret)
2999 return ret;
3000
3001 if (!(req->open.how.flags & O_PATH) && force_o_largefile())
3002 req->open.how.flags |= O_LARGEFILE;
3003
3004 req->open.filename = getname(fname);
3005 if (IS_ERR(req->open.filename)) {
3006 ret = PTR_ERR(req->open.filename);
3007 req->open.filename = NULL;
3008 return ret;
3009 }
3010
Jens Axboe4022e7a2020-03-19 19:23:18 -06003011 req->open.nofile = rlimit(RLIMIT_NOFILE);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003012 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboecebdb982020-01-08 17:59:24 -07003013 return 0;
3014}
3015
Pavel Begunkov014db002020-03-03 21:33:12 +03003016static int io_openat2(struct io_kiocb *req, bool force_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07003017{
3018 struct open_flags op;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003019 struct file *file;
3020 int ret;
3021
Jens Axboef86cd202020-01-29 13:46:44 -07003022 if (force_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07003023 return -EAGAIN;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003024
Jens Axboecebdb982020-01-08 17:59:24 -07003025 ret = build_open_flags(&req->open.how, &op);
Jens Axboe15b71ab2019-12-11 11:20:36 -07003026 if (ret)
3027 goto err;
3028
Jens Axboe4022e7a2020-03-19 19:23:18 -06003029 ret = __get_unused_fd_flags(req->open.how.flags, req->open.nofile);
Jens Axboe15b71ab2019-12-11 11:20:36 -07003030 if (ret < 0)
3031 goto err;
3032
3033 file = do_filp_open(req->open.dfd, req->open.filename, &op);
3034 if (IS_ERR(file)) {
3035 put_unused_fd(ret);
3036 ret = PTR_ERR(file);
3037 } else {
3038 fsnotify_open(file);
3039 fd_install(ret, file);
3040 }
3041err:
3042 putname(req->open.filename);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003043 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003044 if (ret < 0)
3045 req_set_fail_links(req);
3046 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003047 io_put_req(req);
Jens Axboe15b71ab2019-12-11 11:20:36 -07003048 return 0;
3049}
3050
Pavel Begunkov014db002020-03-03 21:33:12 +03003051static int io_openat(struct io_kiocb *req, bool force_nonblock)
Jens Axboecebdb982020-01-08 17:59:24 -07003052{
3053 req->open.how = build_open_how(req->open.how.flags, req->open.how.mode);
Pavel Begunkov014db002020-03-03 21:33:12 +03003054 return io_openat2(req, force_nonblock);
Jens Axboecebdb982020-01-08 17:59:24 -07003055}
3056
Jens Axboe067524e2020-03-02 16:32:28 -07003057static int io_remove_buffers_prep(struct io_kiocb *req,
3058 const struct io_uring_sqe *sqe)
3059{
3060 struct io_provide_buf *p = &req->pbuf;
3061 u64 tmp;
3062
3063 if (sqe->ioprio || sqe->rw_flags || sqe->addr || sqe->len || sqe->off)
3064 return -EINVAL;
3065
3066 tmp = READ_ONCE(sqe->fd);
3067 if (!tmp || tmp > USHRT_MAX)
3068 return -EINVAL;
3069
3070 memset(p, 0, sizeof(*p));
3071 p->nbufs = tmp;
3072 p->bgid = READ_ONCE(sqe->buf_group);
3073 return 0;
3074}
3075
3076static int __io_remove_buffers(struct io_ring_ctx *ctx, struct io_buffer *buf,
3077 int bgid, unsigned nbufs)
3078{
3079 unsigned i = 0;
3080
3081 /* shouldn't happen */
3082 if (!nbufs)
3083 return 0;
3084
3085 /* the head kbuf is the list itself */
3086 while (!list_empty(&buf->list)) {
3087 struct io_buffer *nxt;
3088
3089 nxt = list_first_entry(&buf->list, struct io_buffer, list);
3090 list_del(&nxt->list);
3091 kfree(nxt);
3092 if (++i == nbufs)
3093 return i;
3094 }
3095 i++;
3096 kfree(buf);
3097 idr_remove(&ctx->io_buffer_idr, bgid);
3098
3099 return i;
3100}
3101
3102static int io_remove_buffers(struct io_kiocb *req, bool force_nonblock)
3103{
3104 struct io_provide_buf *p = &req->pbuf;
3105 struct io_ring_ctx *ctx = req->ctx;
3106 struct io_buffer *head;
3107 int ret = 0;
3108
3109 io_ring_submit_lock(ctx, !force_nonblock);
3110
3111 lockdep_assert_held(&ctx->uring_lock);
3112
3113 ret = -ENOENT;
3114 head = idr_find(&ctx->io_buffer_idr, p->bgid);
3115 if (head)
3116 ret = __io_remove_buffers(ctx, head, p->bgid, p->nbufs);
3117
3118 io_ring_submit_lock(ctx, !force_nonblock);
3119 if (ret < 0)
3120 req_set_fail_links(req);
3121 io_cqring_add_event(req, ret);
3122 io_put_req(req);
3123 return 0;
3124}
3125
Jens Axboeddf0322d2020-02-23 16:41:33 -07003126static int io_provide_buffers_prep(struct io_kiocb *req,
3127 const struct io_uring_sqe *sqe)
3128{
3129 struct io_provide_buf *p = &req->pbuf;
3130 u64 tmp;
3131
3132 if (sqe->ioprio || sqe->rw_flags)
3133 return -EINVAL;
3134
3135 tmp = READ_ONCE(sqe->fd);
3136 if (!tmp || tmp > USHRT_MAX)
3137 return -E2BIG;
3138 p->nbufs = tmp;
3139 p->addr = READ_ONCE(sqe->addr);
3140 p->len = READ_ONCE(sqe->len);
3141
3142 if (!access_ok(u64_to_user_ptr(p->addr), p->len))
3143 return -EFAULT;
3144
3145 p->bgid = READ_ONCE(sqe->buf_group);
3146 tmp = READ_ONCE(sqe->off);
3147 if (tmp > USHRT_MAX)
3148 return -E2BIG;
3149 p->bid = tmp;
3150 return 0;
3151}
3152
3153static int io_add_buffers(struct io_provide_buf *pbuf, struct io_buffer **head)
3154{
3155 struct io_buffer *buf;
3156 u64 addr = pbuf->addr;
3157 int i, bid = pbuf->bid;
3158
3159 for (i = 0; i < pbuf->nbufs; i++) {
3160 buf = kmalloc(sizeof(*buf), GFP_KERNEL);
3161 if (!buf)
3162 break;
3163
3164 buf->addr = addr;
3165 buf->len = pbuf->len;
3166 buf->bid = bid;
3167 addr += pbuf->len;
3168 bid++;
3169 if (!*head) {
3170 INIT_LIST_HEAD(&buf->list);
3171 *head = buf;
3172 } else {
3173 list_add_tail(&buf->list, &(*head)->list);
3174 }
3175 }
3176
3177 return i ? i : -ENOMEM;
3178}
3179
Jens Axboeddf0322d2020-02-23 16:41:33 -07003180static int io_provide_buffers(struct io_kiocb *req, bool force_nonblock)
3181{
3182 struct io_provide_buf *p = &req->pbuf;
3183 struct io_ring_ctx *ctx = req->ctx;
3184 struct io_buffer *head, *list;
3185 int ret = 0;
3186
3187 io_ring_submit_lock(ctx, !force_nonblock);
3188
3189 lockdep_assert_held(&ctx->uring_lock);
3190
3191 list = head = idr_find(&ctx->io_buffer_idr, p->bgid);
3192
3193 ret = io_add_buffers(p, &head);
3194 if (ret < 0)
3195 goto out;
3196
3197 if (!list) {
3198 ret = idr_alloc(&ctx->io_buffer_idr, head, p->bgid, p->bgid + 1,
3199 GFP_KERNEL);
3200 if (ret < 0) {
Jens Axboe067524e2020-03-02 16:32:28 -07003201 __io_remove_buffers(ctx, head, p->bgid, -1U);
Jens Axboeddf0322d2020-02-23 16:41:33 -07003202 goto out;
3203 }
3204 }
3205out:
3206 io_ring_submit_unlock(ctx, !force_nonblock);
3207 if (ret < 0)
3208 req_set_fail_links(req);
3209 io_cqring_add_event(req, ret);
3210 io_put_req(req);
3211 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003212}
3213
Jens Axboe3e4827b2020-01-08 15:18:09 -07003214static int io_epoll_ctl_prep(struct io_kiocb *req,
3215 const struct io_uring_sqe *sqe)
3216{
3217#if defined(CONFIG_EPOLL)
3218 if (sqe->ioprio || sqe->buf_index)
3219 return -EINVAL;
3220
3221 req->epoll.epfd = READ_ONCE(sqe->fd);
3222 req->epoll.op = READ_ONCE(sqe->len);
3223 req->epoll.fd = READ_ONCE(sqe->off);
3224
3225 if (ep_op_has_event(req->epoll.op)) {
3226 struct epoll_event __user *ev;
3227
3228 ev = u64_to_user_ptr(READ_ONCE(sqe->addr));
3229 if (copy_from_user(&req->epoll.event, ev, sizeof(*ev)))
3230 return -EFAULT;
3231 }
3232
3233 return 0;
3234#else
3235 return -EOPNOTSUPP;
3236#endif
3237}
3238
Pavel Begunkov014db002020-03-03 21:33:12 +03003239static int io_epoll_ctl(struct io_kiocb *req, bool force_nonblock)
Jens Axboe3e4827b2020-01-08 15:18:09 -07003240{
3241#if defined(CONFIG_EPOLL)
3242 struct io_epoll *ie = &req->epoll;
3243 int ret;
3244
3245 ret = do_epoll_ctl(ie->epfd, ie->op, ie->fd, &ie->event, force_nonblock);
3246 if (force_nonblock && ret == -EAGAIN)
3247 return -EAGAIN;
3248
3249 if (ret < 0)
3250 req_set_fail_links(req);
3251 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003252 io_put_req(req);
Jens Axboe3e4827b2020-01-08 15:18:09 -07003253 return 0;
3254#else
3255 return -EOPNOTSUPP;
3256#endif
3257}
3258
Jens Axboec1ca7572019-12-25 22:18:28 -07003259static int io_madvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3260{
3261#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
3262 if (sqe->ioprio || sqe->buf_index || sqe->off)
3263 return -EINVAL;
3264
3265 req->madvise.addr = READ_ONCE(sqe->addr);
3266 req->madvise.len = READ_ONCE(sqe->len);
3267 req->madvise.advice = READ_ONCE(sqe->fadvise_advice);
3268 return 0;
3269#else
3270 return -EOPNOTSUPP;
3271#endif
3272}
3273
Pavel Begunkov014db002020-03-03 21:33:12 +03003274static int io_madvise(struct io_kiocb *req, bool force_nonblock)
Jens Axboec1ca7572019-12-25 22:18:28 -07003275{
3276#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
3277 struct io_madvise *ma = &req->madvise;
3278 int ret;
3279
3280 if (force_nonblock)
3281 return -EAGAIN;
3282
3283 ret = do_madvise(ma->addr, ma->len, ma->advice);
3284 if (ret < 0)
3285 req_set_fail_links(req);
3286 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003287 io_put_req(req);
Jens Axboec1ca7572019-12-25 22:18:28 -07003288 return 0;
3289#else
3290 return -EOPNOTSUPP;
3291#endif
3292}
3293
Jens Axboe4840e412019-12-25 22:03:45 -07003294static int io_fadvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3295{
3296 if (sqe->ioprio || sqe->buf_index || sqe->addr)
3297 return -EINVAL;
3298
3299 req->fadvise.offset = READ_ONCE(sqe->off);
3300 req->fadvise.len = READ_ONCE(sqe->len);
3301 req->fadvise.advice = READ_ONCE(sqe->fadvise_advice);
3302 return 0;
3303}
3304
Pavel Begunkov014db002020-03-03 21:33:12 +03003305static int io_fadvise(struct io_kiocb *req, bool force_nonblock)
Jens Axboe4840e412019-12-25 22:03:45 -07003306{
3307 struct io_fadvise *fa = &req->fadvise;
3308 int ret;
3309
Jens Axboe3e694262020-02-01 09:22:49 -07003310 if (force_nonblock) {
3311 switch (fa->advice) {
3312 case POSIX_FADV_NORMAL:
3313 case POSIX_FADV_RANDOM:
3314 case POSIX_FADV_SEQUENTIAL:
3315 break;
3316 default:
3317 return -EAGAIN;
3318 }
3319 }
Jens Axboe4840e412019-12-25 22:03:45 -07003320
3321 ret = vfs_fadvise(req->file, fa->offset, fa->len, fa->advice);
3322 if (ret < 0)
3323 req_set_fail_links(req);
3324 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003325 io_put_req(req);
Jens Axboe4840e412019-12-25 22:03:45 -07003326 return 0;
3327}
3328
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003329static int io_statx_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3330{
Jens Axboef8748882020-01-08 17:47:02 -07003331 const char __user *fname;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003332 unsigned lookup_flags;
3333 int ret;
3334
3335 if (sqe->ioprio || sqe->buf_index)
3336 return -EINVAL;
Jens Axboecf3040c2020-02-06 21:31:40 -07003337 if (sqe->flags & IOSQE_FIXED_FILE)
3338 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03003339 if (req->flags & REQ_F_NEED_CLEANUP)
3340 return 0;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003341
3342 req->open.dfd = READ_ONCE(sqe->fd);
3343 req->open.mask = READ_ONCE(sqe->len);
Jens Axboef8748882020-01-08 17:47:02 -07003344 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003345 req->open.buffer = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboec12cedf2020-01-08 17:41:21 -07003346 req->open.how.flags = READ_ONCE(sqe->statx_flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003347
Jens Axboec12cedf2020-01-08 17:41:21 -07003348 if (vfs_stat_set_lookup_flags(&lookup_flags, req->open.how.flags))
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003349 return -EINVAL;
3350
Jens Axboef8748882020-01-08 17:47:02 -07003351 req->open.filename = getname_flags(fname, lookup_flags, NULL);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003352 if (IS_ERR(req->open.filename)) {
3353 ret = PTR_ERR(req->open.filename);
3354 req->open.filename = NULL;
3355 return ret;
3356 }
3357
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003358 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003359 return 0;
3360}
3361
Pavel Begunkov014db002020-03-03 21:33:12 +03003362static int io_statx(struct io_kiocb *req, bool force_nonblock)
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003363{
3364 struct io_open *ctx = &req->open;
3365 unsigned lookup_flags;
3366 struct path path;
3367 struct kstat stat;
3368 int ret;
3369
3370 if (force_nonblock)
3371 return -EAGAIN;
3372
Jens Axboec12cedf2020-01-08 17:41:21 -07003373 if (vfs_stat_set_lookup_flags(&lookup_flags, ctx->how.flags))
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003374 return -EINVAL;
3375
3376retry:
3377 /* filename_lookup() drops it, keep a reference */
3378 ctx->filename->refcnt++;
3379
3380 ret = filename_lookup(ctx->dfd, ctx->filename, lookup_flags, &path,
3381 NULL);
3382 if (ret)
3383 goto err;
3384
Jens Axboec12cedf2020-01-08 17:41:21 -07003385 ret = vfs_getattr(&path, &stat, ctx->mask, ctx->how.flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003386 path_put(&path);
3387 if (retry_estale(ret, lookup_flags)) {
3388 lookup_flags |= LOOKUP_REVAL;
3389 goto retry;
3390 }
3391 if (!ret)
3392 ret = cp_statx(&stat, ctx->buffer);
3393err:
3394 putname(ctx->filename);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003395 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003396 if (ret < 0)
3397 req_set_fail_links(req);
3398 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003399 io_put_req(req);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003400 return 0;
3401}
3402
Jens Axboeb5dba592019-12-11 14:02:38 -07003403static int io_close_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3404{
3405 /*
3406 * If we queue this for async, it must not be cancellable. That would
3407 * leave the 'file' in an undeterminate state.
3408 */
3409 req->work.flags |= IO_WQ_WORK_NO_CANCEL;
3410
3411 if (sqe->ioprio || sqe->off || sqe->addr || sqe->len ||
3412 sqe->rw_flags || sqe->buf_index)
3413 return -EINVAL;
3414 if (sqe->flags & IOSQE_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07003415 return -EBADF;
Jens Axboeb5dba592019-12-11 14:02:38 -07003416
3417 req->close.fd = READ_ONCE(sqe->fd);
3418 if (req->file->f_op == &io_uring_fops ||
Pavel Begunkovb14cca02020-01-17 04:45:59 +03003419 req->close.fd == req->ctx->ring_fd)
Jens Axboeb5dba592019-12-11 14:02:38 -07003420 return -EBADF;
3421
3422 return 0;
3423}
3424
Pavel Begunkova93b3332020-02-08 14:04:34 +03003425/* only called when __close_fd_get_file() is done */
Pavel Begunkov014db002020-03-03 21:33:12 +03003426static void __io_close_finish(struct io_kiocb *req)
Pavel Begunkova93b3332020-02-08 14:04:34 +03003427{
3428 int ret;
3429
3430 ret = filp_close(req->close.put_file, req->work.files);
3431 if (ret < 0)
3432 req_set_fail_links(req);
3433 io_cqring_add_event(req, ret);
3434 fput(req->close.put_file);
Pavel Begunkov014db002020-03-03 21:33:12 +03003435 io_put_req(req);
Pavel Begunkova93b3332020-02-08 14:04:34 +03003436}
3437
Jens Axboeb5dba592019-12-11 14:02:38 -07003438static void io_close_finish(struct io_wq_work **workptr)
3439{
3440 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Jens Axboeb5dba592019-12-11 14:02:38 -07003441
Pavel Begunkov7fbeb952020-02-16 01:01:18 +03003442 /* not cancellable, don't do io_req_cancelled() */
Pavel Begunkov014db002020-03-03 21:33:12 +03003443 __io_close_finish(req);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03003444 io_steal_work(req, workptr);
Jens Axboeb5dba592019-12-11 14:02:38 -07003445}
3446
Pavel Begunkov014db002020-03-03 21:33:12 +03003447static int io_close(struct io_kiocb *req, bool force_nonblock)
Jens Axboeb5dba592019-12-11 14:02:38 -07003448{
3449 int ret;
3450
3451 req->close.put_file = NULL;
3452 ret = __close_fd_get_file(req->close.fd, &req->close.put_file);
3453 if (ret < 0)
3454 return ret;
3455
3456 /* if the file has a flush method, be safe and punt to async */
Pavel Begunkova2100672020-03-02 23:45:16 +03003457 if (req->close.put_file->f_op->flush && force_nonblock) {
Pavel Begunkov594506f2020-03-03 21:33:11 +03003458 /* submission ref will be dropped, take it for async */
3459 refcount_inc(&req->refs);
3460
Pavel Begunkova2100672020-03-02 23:45:16 +03003461 req->work.func = io_close_finish;
3462 /*
3463 * Do manual async queue here to avoid grabbing files - we don't
3464 * need the files, and it'll cause io_close_finish() to close
3465 * the file again and cause a double CQE entry for this request
3466 */
3467 io_queue_async_work(req);
3468 return 0;
3469 }
Jens Axboeb5dba592019-12-11 14:02:38 -07003470
3471 /*
3472 * No ->flush(), safely close from here and just punt the
3473 * fput() to async context.
3474 */
Pavel Begunkov014db002020-03-03 21:33:12 +03003475 __io_close_finish(req);
Jens Axboe1a417f42020-01-31 17:16:48 -07003476 return 0;
Jens Axboeb5dba592019-12-11 14:02:38 -07003477}
3478
Jens Axboe3529d8c2019-12-19 18:24:38 -07003479static int io_prep_sfr(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003480{
3481 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003482
3483 if (!req->file)
3484 return -EBADF;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003485
3486 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
3487 return -EINVAL;
3488 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
3489 return -EINVAL;
3490
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003491 req->sync.off = READ_ONCE(sqe->off);
3492 req->sync.len = READ_ONCE(sqe->len);
3493 req->sync.flags = READ_ONCE(sqe->sync_range_flags);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003494 return 0;
3495}
3496
Pavel Begunkov014db002020-03-03 21:33:12 +03003497static void __io_sync_file_range(struct io_kiocb *req)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003498{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003499 int ret;
3500
Jens Axboe9adbd452019-12-20 08:45:55 -07003501 ret = sync_file_range(req->file, req->sync.off, req->sync.len,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003502 req->sync.flags);
3503 if (ret < 0)
3504 req_set_fail_links(req);
3505 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003506 io_put_req(req);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03003507}
3508
3509
3510static void io_sync_file_range_finish(struct io_wq_work **workptr)
3511{
3512 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
3513 struct io_kiocb *nxt = NULL;
3514
3515 if (io_req_cancelled(req))
3516 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03003517 __io_sync_file_range(req);
Pavel Begunkov594506f2020-03-03 21:33:11 +03003518 io_put_req(req); /* put submission ref */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003519 if (nxt)
Jens Axboe78912932020-01-14 22:09:06 -07003520 io_wq_assign_next(workptr, nxt);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003521}
3522
Pavel Begunkov014db002020-03-03 21:33:12 +03003523static int io_sync_file_range(struct io_kiocb *req, bool force_nonblock)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003524{
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003525 /* sync_file_range always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003526 if (force_nonblock) {
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003527 req->work.func = io_sync_file_range_finish;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003528 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003529 }
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003530
Pavel Begunkov014db002020-03-03 21:33:12 +03003531 __io_sync_file_range(req);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003532 return 0;
3533}
3534
YueHaibing469956e2020-03-04 15:53:52 +08003535#if defined(CONFIG_NET)
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003536static int io_setup_async_msg(struct io_kiocb *req,
3537 struct io_async_msghdr *kmsg)
3538{
3539 if (req->io)
3540 return -EAGAIN;
3541 if (io_alloc_async_ctx(req)) {
3542 if (kmsg->iov != kmsg->fast_iov)
3543 kfree(kmsg->iov);
3544 return -ENOMEM;
3545 }
3546 req->flags |= REQ_F_NEED_CLEANUP;
3547 memcpy(&req->io->msg, kmsg, sizeof(*kmsg));
3548 return -EAGAIN;
3549}
3550
Jens Axboe3529d8c2019-12-19 18:24:38 -07003551static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboeaa1fa282019-04-19 13:38:09 -06003552{
Jens Axboee47293f2019-12-20 08:58:21 -07003553 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003554 struct io_async_ctx *io = req->io;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003555 int ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003556
Jens Axboee47293f2019-12-20 08:58:21 -07003557 sr->msg_flags = READ_ONCE(sqe->msg_flags);
3558 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboefddafac2020-01-04 20:19:44 -07003559 sr->len = READ_ONCE(sqe->len);
Jens Axboe3529d8c2019-12-19 18:24:38 -07003560
Jens Axboed8768362020-02-27 14:17:49 -07003561#ifdef CONFIG_COMPAT
3562 if (req->ctx->compat)
3563 sr->msg_flags |= MSG_CMSG_COMPAT;
3564#endif
3565
Jens Axboefddafac2020-01-04 20:19:44 -07003566 if (!io || req->opcode == IORING_OP_SEND)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003567 return 0;
Pavel Begunkov5f798be2020-02-08 13:28:02 +03003568 /* iovec is already imported */
3569 if (req->flags & REQ_F_NEED_CLEANUP)
3570 return 0;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003571
Jens Axboed9688562019-12-09 19:35:20 -07003572 io->msg.iov = io->msg.fast_iov;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003573 ret = sendmsg_copy_msghdr(&io->msg.msg, sr->msg, sr->msg_flags,
Jens Axboee47293f2019-12-20 08:58:21 -07003574 &io->msg.iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003575 if (!ret)
3576 req->flags |= REQ_F_NEED_CLEANUP;
3577 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003578}
3579
Pavel Begunkov014db002020-03-03 21:33:12 +03003580static int io_sendmsg(struct io_kiocb *req, bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07003581{
Jens Axboe0b416c32019-12-15 10:57:46 -07003582 struct io_async_msghdr *kmsg = NULL;
Jens Axboe03b12302019-12-02 18:50:25 -07003583 struct socket *sock;
3584 int ret;
3585
3586 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3587 return -EINVAL;
3588
3589 sock = sock_from_file(req->file, &ret);
3590 if (sock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003591 struct io_async_ctx io;
Jens Axboe03b12302019-12-02 18:50:25 -07003592 unsigned flags;
3593
Jens Axboe03b12302019-12-02 18:50:25 -07003594 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07003595 kmsg = &req->io->msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003596 kmsg->msg.msg_name = &req->io->msg.addr;
Jens Axboe0b416c32019-12-15 10:57:46 -07003597 /* if iov is set, it's allocated already */
3598 if (!kmsg->iov)
3599 kmsg->iov = kmsg->fast_iov;
3600 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07003601 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07003602 struct io_sr_msg *sr = &req->sr_msg;
3603
Jens Axboe0b416c32019-12-15 10:57:46 -07003604 kmsg = &io.msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003605 kmsg->msg.msg_name = &io.msg.addr;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003606
3607 io.msg.iov = io.msg.fast_iov;
3608 ret = sendmsg_copy_msghdr(&io.msg.msg, sr->msg,
3609 sr->msg_flags, &io.msg.iov);
Jens Axboe03b12302019-12-02 18:50:25 -07003610 if (ret)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003611 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003612 }
3613
Jens Axboee47293f2019-12-20 08:58:21 -07003614 flags = req->sr_msg.msg_flags;
3615 if (flags & MSG_DONTWAIT)
3616 req->flags |= REQ_F_NOWAIT;
3617 else if (force_nonblock)
3618 flags |= MSG_DONTWAIT;
3619
Jens Axboe0b416c32019-12-15 10:57:46 -07003620 ret = __sys_sendmsg_sock(sock, &kmsg->msg, flags);
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003621 if (force_nonblock && ret == -EAGAIN)
3622 return io_setup_async_msg(req, kmsg);
Jens Axboe03b12302019-12-02 18:50:25 -07003623 if (ret == -ERESTARTSYS)
3624 ret = -EINTR;
3625 }
3626
Pavel Begunkov1e950812020-02-06 19:51:16 +03003627 if (kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07003628 kfree(kmsg->iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003629 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe03b12302019-12-02 18:50:25 -07003630 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003631 if (ret < 0)
3632 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003633 io_put_req(req);
Jens Axboe03b12302019-12-02 18:50:25 -07003634 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07003635}
3636
Pavel Begunkov014db002020-03-03 21:33:12 +03003637static int io_send(struct io_kiocb *req, bool force_nonblock)
Jens Axboefddafac2020-01-04 20:19:44 -07003638{
Jens Axboefddafac2020-01-04 20:19:44 -07003639 struct socket *sock;
3640 int ret;
3641
3642 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3643 return -EINVAL;
3644
3645 sock = sock_from_file(req->file, &ret);
3646 if (sock) {
3647 struct io_sr_msg *sr = &req->sr_msg;
3648 struct msghdr msg;
3649 struct iovec iov;
3650 unsigned flags;
3651
3652 ret = import_single_range(WRITE, sr->buf, sr->len, &iov,
3653 &msg.msg_iter);
3654 if (ret)
3655 return ret;
3656
3657 msg.msg_name = NULL;
3658 msg.msg_control = NULL;
3659 msg.msg_controllen = 0;
3660 msg.msg_namelen = 0;
3661
3662 flags = req->sr_msg.msg_flags;
3663 if (flags & MSG_DONTWAIT)
3664 req->flags |= REQ_F_NOWAIT;
3665 else if (force_nonblock)
3666 flags |= MSG_DONTWAIT;
3667
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003668 msg.msg_flags = flags;
3669 ret = sock_sendmsg(sock, &msg);
Jens Axboefddafac2020-01-04 20:19:44 -07003670 if (force_nonblock && ret == -EAGAIN)
3671 return -EAGAIN;
3672 if (ret == -ERESTARTSYS)
3673 ret = -EINTR;
3674 }
3675
3676 io_cqring_add_event(req, ret);
3677 if (ret < 0)
3678 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003679 io_put_req(req);
Jens Axboefddafac2020-01-04 20:19:44 -07003680 return 0;
Jens Axboefddafac2020-01-04 20:19:44 -07003681}
3682
Jens Axboe52de1fe2020-02-27 10:15:42 -07003683static int __io_recvmsg_copy_hdr(struct io_kiocb *req, struct io_async_ctx *io)
3684{
3685 struct io_sr_msg *sr = &req->sr_msg;
3686 struct iovec __user *uiov;
3687 size_t iov_len;
3688 int ret;
3689
3690 ret = __copy_msghdr_from_user(&io->msg.msg, sr->msg, &io->msg.uaddr,
3691 &uiov, &iov_len);
3692 if (ret)
3693 return ret;
3694
3695 if (req->flags & REQ_F_BUFFER_SELECT) {
3696 if (iov_len > 1)
3697 return -EINVAL;
3698 if (copy_from_user(io->msg.iov, uiov, sizeof(*uiov)))
3699 return -EFAULT;
3700 sr->len = io->msg.iov[0].iov_len;
3701 iov_iter_init(&io->msg.msg.msg_iter, READ, io->msg.iov, 1,
3702 sr->len);
3703 io->msg.iov = NULL;
3704 } else {
3705 ret = import_iovec(READ, uiov, iov_len, UIO_FASTIOV,
3706 &io->msg.iov, &io->msg.msg.msg_iter);
3707 if (ret > 0)
3708 ret = 0;
3709 }
3710
3711 return ret;
3712}
3713
3714#ifdef CONFIG_COMPAT
3715static int __io_compat_recvmsg_copy_hdr(struct io_kiocb *req,
3716 struct io_async_ctx *io)
3717{
3718 struct compat_msghdr __user *msg_compat;
3719 struct io_sr_msg *sr = &req->sr_msg;
3720 struct compat_iovec __user *uiov;
3721 compat_uptr_t ptr;
3722 compat_size_t len;
3723 int ret;
3724
3725 msg_compat = (struct compat_msghdr __user *) sr->msg;
3726 ret = __get_compat_msghdr(&io->msg.msg, msg_compat, &io->msg.uaddr,
3727 &ptr, &len);
3728 if (ret)
3729 return ret;
3730
3731 uiov = compat_ptr(ptr);
3732 if (req->flags & REQ_F_BUFFER_SELECT) {
3733 compat_ssize_t clen;
3734
3735 if (len > 1)
3736 return -EINVAL;
3737 if (!access_ok(uiov, sizeof(*uiov)))
3738 return -EFAULT;
3739 if (__get_user(clen, &uiov->iov_len))
3740 return -EFAULT;
3741 if (clen < 0)
3742 return -EINVAL;
3743 sr->len = io->msg.iov[0].iov_len;
3744 io->msg.iov = NULL;
3745 } else {
3746 ret = compat_import_iovec(READ, uiov, len, UIO_FASTIOV,
3747 &io->msg.iov,
3748 &io->msg.msg.msg_iter);
3749 if (ret < 0)
3750 return ret;
3751 }
3752
3753 return 0;
3754}
Jens Axboe03b12302019-12-02 18:50:25 -07003755#endif
Jens Axboe52de1fe2020-02-27 10:15:42 -07003756
3757static int io_recvmsg_copy_hdr(struct io_kiocb *req, struct io_async_ctx *io)
3758{
3759 io->msg.iov = io->msg.fast_iov;
3760
3761#ifdef CONFIG_COMPAT
3762 if (req->ctx->compat)
3763 return __io_compat_recvmsg_copy_hdr(req, io);
3764#endif
3765
3766 return __io_recvmsg_copy_hdr(req, io);
3767}
3768
Jens Axboebcda7ba2020-02-23 16:42:51 -07003769static struct io_buffer *io_recv_buffer_select(struct io_kiocb *req,
3770 int *cflags, bool needs_lock)
3771{
3772 struct io_sr_msg *sr = &req->sr_msg;
3773 struct io_buffer *kbuf;
3774
3775 if (!(req->flags & REQ_F_BUFFER_SELECT))
3776 return NULL;
3777
3778 kbuf = io_buffer_select(req, &sr->len, sr->bgid, sr->kbuf, needs_lock);
3779 if (IS_ERR(kbuf))
3780 return kbuf;
3781
3782 sr->kbuf = kbuf;
3783 req->flags |= REQ_F_BUFFER_SELECTED;
3784
3785 *cflags = kbuf->bid << IORING_CQE_BUFFER_SHIFT;
3786 *cflags |= IORING_CQE_F_BUFFER;
3787 return kbuf;
Jens Axboe03b12302019-12-02 18:50:25 -07003788}
3789
Jens Axboe3529d8c2019-12-19 18:24:38 -07003790static int io_recvmsg_prep(struct io_kiocb *req,
3791 const struct io_uring_sqe *sqe)
Jens Axboe03b12302019-12-02 18:50:25 -07003792{
Jens Axboee47293f2019-12-20 08:58:21 -07003793 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003794 struct io_async_ctx *io = req->io;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003795 int ret;
Jens Axboe06b76d42019-12-19 14:44:26 -07003796
Jens Axboe3529d8c2019-12-19 18:24:38 -07003797 sr->msg_flags = READ_ONCE(sqe->msg_flags);
3798 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003799 sr->len = READ_ONCE(sqe->len);
Jens Axboebcda7ba2020-02-23 16:42:51 -07003800 sr->bgid = READ_ONCE(sqe->buf_group);
Jens Axboe3529d8c2019-12-19 18:24:38 -07003801
Jens Axboed8768362020-02-27 14:17:49 -07003802#ifdef CONFIG_COMPAT
3803 if (req->ctx->compat)
3804 sr->msg_flags |= MSG_CMSG_COMPAT;
3805#endif
3806
Jens Axboefddafac2020-01-04 20:19:44 -07003807 if (!io || req->opcode == IORING_OP_RECV)
Jens Axboe06b76d42019-12-19 14:44:26 -07003808 return 0;
Pavel Begunkov5f798be2020-02-08 13:28:02 +03003809 /* iovec is already imported */
3810 if (req->flags & REQ_F_NEED_CLEANUP)
3811 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07003812
Jens Axboe52de1fe2020-02-27 10:15:42 -07003813 ret = io_recvmsg_copy_hdr(req, io);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003814 if (!ret)
3815 req->flags |= REQ_F_NEED_CLEANUP;
3816 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003817}
3818
Pavel Begunkov014db002020-03-03 21:33:12 +03003819static int io_recvmsg(struct io_kiocb *req, bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07003820{
Jens Axboe0b416c32019-12-15 10:57:46 -07003821 struct io_async_msghdr *kmsg = NULL;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003822 struct socket *sock;
Jens Axboe52de1fe2020-02-27 10:15:42 -07003823 int ret, cflags = 0;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003824
3825 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3826 return -EINVAL;
3827
3828 sock = sock_from_file(req->file, &ret);
3829 if (sock) {
Jens Axboe52de1fe2020-02-27 10:15:42 -07003830 struct io_buffer *kbuf;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003831 struct io_async_ctx io;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003832 unsigned flags;
3833
Jens Axboe03b12302019-12-02 18:50:25 -07003834 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07003835 kmsg = &req->io->msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003836 kmsg->msg.msg_name = &req->io->msg.addr;
Jens Axboe0b416c32019-12-15 10:57:46 -07003837 /* if iov is set, it's allocated already */
3838 if (!kmsg->iov)
3839 kmsg->iov = kmsg->fast_iov;
3840 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07003841 } else {
Jens Axboe0b416c32019-12-15 10:57:46 -07003842 kmsg = &io.msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003843 kmsg->msg.msg_name = &io.msg.addr;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003844
Jens Axboe52de1fe2020-02-27 10:15:42 -07003845 ret = io_recvmsg_copy_hdr(req, &io);
Jens Axboe03b12302019-12-02 18:50:25 -07003846 if (ret)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003847 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003848 }
Jens Axboe0fa03c62019-04-19 13:34:07 -06003849
Jens Axboe52de1fe2020-02-27 10:15:42 -07003850 kbuf = io_recv_buffer_select(req, &cflags, !force_nonblock);
3851 if (IS_ERR(kbuf)) {
3852 return PTR_ERR(kbuf);
3853 } else if (kbuf) {
3854 kmsg->fast_iov[0].iov_base = u64_to_user_ptr(kbuf->addr);
3855 iov_iter_init(&kmsg->msg.msg_iter, READ, kmsg->iov,
3856 1, req->sr_msg.len);
3857 }
3858
Jens Axboee47293f2019-12-20 08:58:21 -07003859 flags = req->sr_msg.msg_flags;
3860 if (flags & MSG_DONTWAIT)
3861 req->flags |= REQ_F_NOWAIT;
3862 else if (force_nonblock)
3863 flags |= MSG_DONTWAIT;
3864
3865 ret = __sys_recvmsg_sock(sock, &kmsg->msg, req->sr_msg.msg,
3866 kmsg->uaddr, flags);
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003867 if (force_nonblock && ret == -EAGAIN)
3868 return io_setup_async_msg(req, kmsg);
Jens Axboe441cdbd2019-12-02 18:49:10 -07003869 if (ret == -ERESTARTSYS)
3870 ret = -EINTR;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003871 }
3872
Pavel Begunkov1e950812020-02-06 19:51:16 +03003873 if (kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07003874 kfree(kmsg->iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003875 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe52de1fe2020-02-27 10:15:42 -07003876 __io_cqring_add_event(req, ret, cflags);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003877 if (ret < 0)
3878 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003879 io_put_req(req);
Jens Axboe0fa03c62019-04-19 13:34:07 -06003880 return 0;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003881}
3882
Pavel Begunkov014db002020-03-03 21:33:12 +03003883static int io_recv(struct io_kiocb *req, bool force_nonblock)
Jens Axboefddafac2020-01-04 20:19:44 -07003884{
Jens Axboebcda7ba2020-02-23 16:42:51 -07003885 struct io_buffer *kbuf = NULL;
Jens Axboefddafac2020-01-04 20:19:44 -07003886 struct socket *sock;
Jens Axboebcda7ba2020-02-23 16:42:51 -07003887 int ret, cflags = 0;
Jens Axboefddafac2020-01-04 20:19:44 -07003888
3889 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3890 return -EINVAL;
3891
3892 sock = sock_from_file(req->file, &ret);
3893 if (sock) {
3894 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboebcda7ba2020-02-23 16:42:51 -07003895 void __user *buf = sr->buf;
Jens Axboefddafac2020-01-04 20:19:44 -07003896 struct msghdr msg;
3897 struct iovec iov;
3898 unsigned flags;
3899
Jens Axboebcda7ba2020-02-23 16:42:51 -07003900 kbuf = io_recv_buffer_select(req, &cflags, !force_nonblock);
3901 if (IS_ERR(kbuf))
3902 return PTR_ERR(kbuf);
3903 else if (kbuf)
3904 buf = u64_to_user_ptr(kbuf->addr);
Jens Axboefddafac2020-01-04 20:19:44 -07003905
Jens Axboebcda7ba2020-02-23 16:42:51 -07003906 ret = import_single_range(READ, buf, sr->len, &iov,
3907 &msg.msg_iter);
3908 if (ret) {
3909 kfree(kbuf);
3910 return ret;
3911 }
3912
3913 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboefddafac2020-01-04 20:19:44 -07003914 msg.msg_name = NULL;
3915 msg.msg_control = NULL;
3916 msg.msg_controllen = 0;
3917 msg.msg_namelen = 0;
3918 msg.msg_iocb = NULL;
3919 msg.msg_flags = 0;
3920
3921 flags = req->sr_msg.msg_flags;
3922 if (flags & MSG_DONTWAIT)
3923 req->flags |= REQ_F_NOWAIT;
3924 else if (force_nonblock)
3925 flags |= MSG_DONTWAIT;
3926
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003927 ret = sock_recvmsg(sock, &msg, flags);
Jens Axboefddafac2020-01-04 20:19:44 -07003928 if (force_nonblock && ret == -EAGAIN)
3929 return -EAGAIN;
3930 if (ret == -ERESTARTSYS)
3931 ret = -EINTR;
3932 }
3933
Jens Axboebcda7ba2020-02-23 16:42:51 -07003934 kfree(kbuf);
3935 req->flags &= ~REQ_F_NEED_CLEANUP;
3936 __io_cqring_add_event(req, ret, cflags);
Jens Axboefddafac2020-01-04 20:19:44 -07003937 if (ret < 0)
3938 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003939 io_put_req(req);
Jens Axboefddafac2020-01-04 20:19:44 -07003940 return 0;
Jens Axboefddafac2020-01-04 20:19:44 -07003941}
3942
Jens Axboe3529d8c2019-12-19 18:24:38 -07003943static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003944{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003945 struct io_accept *accept = &req->accept;
3946
Jens Axboe17f2fe32019-10-17 14:42:58 -06003947 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3948 return -EINVAL;
Hrvoje Zeba8042d6c2019-11-25 14:40:22 -05003949 if (sqe->ioprio || sqe->len || sqe->buf_index)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003950 return -EINVAL;
3951
Jens Axboed55e5f52019-12-11 16:12:15 -07003952 accept->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
3953 accept->addr_len = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003954 accept->flags = READ_ONCE(sqe->accept_flags);
Jens Axboe09952e32020-03-19 20:16:56 -06003955 accept->nofile = rlimit(RLIMIT_NOFILE);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003956 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003957}
Jens Axboe17f2fe32019-10-17 14:42:58 -06003958
Pavel Begunkov014db002020-03-03 21:33:12 +03003959static int __io_accept(struct io_kiocb *req, bool force_nonblock)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003960{
3961 struct io_accept *accept = &req->accept;
3962 unsigned file_flags;
3963 int ret;
3964
3965 file_flags = force_nonblock ? O_NONBLOCK : 0;
3966 ret = __sys_accept4_file(req->file, file_flags, accept->addr,
Jens Axboe09952e32020-03-19 20:16:56 -06003967 accept->addr_len, accept->flags,
3968 accept->nofile);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003969 if (ret == -EAGAIN && force_nonblock)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003970 return -EAGAIN;
Jens Axboe8e3cca12019-11-09 19:52:33 -07003971 if (ret == -ERESTARTSYS)
3972 ret = -EINTR;
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003973 if (ret < 0)
3974 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07003975 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003976 io_put_req(req);
Jens Axboe17f2fe32019-10-17 14:42:58 -06003977 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003978}
3979
3980static void io_accept_finish(struct io_wq_work **workptr)
3981{
3982 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003983
3984 if (io_req_cancelled(req))
3985 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03003986 __io_accept(req, false);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03003987 io_steal_work(req, workptr);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003988}
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003989
Pavel Begunkov014db002020-03-03 21:33:12 +03003990static int io_accept(struct io_kiocb *req, bool force_nonblock)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003991{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003992 int ret;
3993
Pavel Begunkov014db002020-03-03 21:33:12 +03003994 ret = __io_accept(req, force_nonblock);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003995 if (ret == -EAGAIN && force_nonblock) {
3996 req->work.func = io_accept_finish;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003997 return -EAGAIN;
3998 }
3999 return 0;
Jens Axboe17f2fe32019-10-17 14:42:58 -06004000}
4001
Jens Axboe3529d8c2019-12-19 18:24:38 -07004002static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef499a022019-12-02 16:28:46 -07004003{
Jens Axboe3529d8c2019-12-19 18:24:38 -07004004 struct io_connect *conn = &req->connect;
4005 struct io_async_ctx *io = req->io;
Jens Axboef499a022019-12-02 16:28:46 -07004006
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004007 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
4008 return -EINVAL;
4009 if (sqe->ioprio || sqe->len || sqe->buf_index || sqe->rw_flags)
4010 return -EINVAL;
4011
Jens Axboe3529d8c2019-12-19 18:24:38 -07004012 conn->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
4013 conn->addr_len = READ_ONCE(sqe->addr2);
4014
4015 if (!io)
4016 return 0;
4017
4018 return move_addr_to_kernel(conn->addr, conn->addr_len,
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004019 &io->connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07004020}
4021
Pavel Begunkov014db002020-03-03 21:33:12 +03004022static int io_connect(struct io_kiocb *req, bool force_nonblock)
Jens Axboef8e85cf2019-11-23 14:24:24 -07004023{
Jens Axboef499a022019-12-02 16:28:46 -07004024 struct io_async_ctx __io, *io;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004025 unsigned file_flags;
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004026 int ret;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004027
Jens Axboef499a022019-12-02 16:28:46 -07004028 if (req->io) {
4029 io = req->io;
4030 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07004031 ret = move_addr_to_kernel(req->connect.addr,
4032 req->connect.addr_len,
4033 &__io.connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07004034 if (ret)
4035 goto out;
4036 io = &__io;
4037 }
4038
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004039 file_flags = force_nonblock ? O_NONBLOCK : 0;
4040
4041 ret = __sys_connect_file(req->file, &io->connect.address,
4042 req->connect.addr_len, file_flags);
Jens Axboe87f80d62019-12-03 11:23:54 -07004043 if ((ret == -EAGAIN || ret == -EINPROGRESS) && force_nonblock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004044 if (req->io)
4045 return -EAGAIN;
4046 if (io_alloc_async_ctx(req)) {
Jens Axboef499a022019-12-02 16:28:46 -07004047 ret = -ENOMEM;
4048 goto out;
4049 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004050 memcpy(&req->io->connect, &__io.connect, sizeof(__io.connect));
Jens Axboef8e85cf2019-11-23 14:24:24 -07004051 return -EAGAIN;
Jens Axboef499a022019-12-02 16:28:46 -07004052 }
Jens Axboef8e85cf2019-11-23 14:24:24 -07004053 if (ret == -ERESTARTSYS)
4054 ret = -EINTR;
Jens Axboef499a022019-12-02 16:28:46 -07004055out:
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004056 if (ret < 0)
4057 req_set_fail_links(req);
Jens Axboef8e85cf2019-11-23 14:24:24 -07004058 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03004059 io_put_req(req);
Jens Axboef8e85cf2019-11-23 14:24:24 -07004060 return 0;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004061}
YueHaibing469956e2020-03-04 15:53:52 +08004062#else /* !CONFIG_NET */
4063static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4064{
Jens Axboef8e85cf2019-11-23 14:24:24 -07004065 return -EOPNOTSUPP;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004066}
4067
YueHaibing469956e2020-03-04 15:53:52 +08004068static int io_sendmsg(struct io_kiocb *req, bool force_nonblock)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004069{
YueHaibing469956e2020-03-04 15:53:52 +08004070 return -EOPNOTSUPP;
4071}
4072
4073static int io_send(struct io_kiocb *req, bool force_nonblock)
4074{
4075 return -EOPNOTSUPP;
4076}
4077
4078static int io_recvmsg_prep(struct io_kiocb *req,
4079 const struct io_uring_sqe *sqe)
4080{
4081 return -EOPNOTSUPP;
4082}
4083
4084static int io_recvmsg(struct io_kiocb *req, bool force_nonblock)
4085{
4086 return -EOPNOTSUPP;
4087}
4088
4089static int io_recv(struct io_kiocb *req, bool force_nonblock)
4090{
4091 return -EOPNOTSUPP;
4092}
4093
4094static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4095{
4096 return -EOPNOTSUPP;
4097}
4098
4099static int io_accept(struct io_kiocb *req, bool force_nonblock)
4100{
4101 return -EOPNOTSUPP;
4102}
4103
4104static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4105{
4106 return -EOPNOTSUPP;
4107}
4108
4109static int io_connect(struct io_kiocb *req, bool force_nonblock)
4110{
4111 return -EOPNOTSUPP;
4112}
4113#endif /* CONFIG_NET */
Jens Axboe2b188cc2019-01-07 10:46:33 -07004114
Jens Axboed7718a92020-02-14 22:23:12 -07004115struct io_poll_table {
4116 struct poll_table_struct pt;
4117 struct io_kiocb *req;
4118 int error;
4119};
4120
4121static void __io_queue_proc(struct io_poll_iocb *poll, struct io_poll_table *pt,
4122 struct wait_queue_head *head)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004123{
Jens Axboed7718a92020-02-14 22:23:12 -07004124 if (unlikely(poll->head)) {
4125 pt->error = -EINVAL;
4126 return;
4127 }
4128
4129 pt->error = 0;
4130 poll->head = head;
4131 add_wait_queue(head, &poll->wait);
4132}
4133
4134static void io_async_queue_proc(struct file *file, struct wait_queue_head *head,
4135 struct poll_table_struct *p)
4136{
4137 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
4138
4139 __io_queue_proc(&pt->req->apoll->poll, pt, head);
4140}
4141
4142static int __io_async_wake(struct io_kiocb *req, struct io_poll_iocb *poll,
4143 __poll_t mask, task_work_func_t func)
4144{
4145 struct task_struct *tsk;
Jens Axboeaa96bf82020-04-03 11:26:26 -06004146 int ret;
Jens Axboed7718a92020-02-14 22:23:12 -07004147
4148 /* for instances that support it check for an event match first: */
4149 if (mask && !(mask & poll->events))
4150 return 0;
4151
4152 trace_io_uring_task_add(req->ctx, req->opcode, req->user_data, mask);
4153
4154 list_del_init(&poll->wait.entry);
4155
4156 tsk = req->task;
4157 req->result = mask;
4158 init_task_work(&req->task_work, func);
4159 /*
Jens Axboeaa96bf82020-04-03 11:26:26 -06004160 * If this fails, then the task is exiting. Punt to one of the io-wq
4161 * threads to ensure the work gets run, we can't always rely on exit
4162 * cancelation taking care of this.
Jens Axboed7718a92020-02-14 22:23:12 -07004163 */
Jens Axboeaa96bf82020-04-03 11:26:26 -06004164 ret = task_work_add(tsk, &req->task_work, true);
4165 if (unlikely(ret)) {
4166 tsk = io_wq_get_task(req->ctx->io_wq);
4167 task_work_add(tsk, &req->task_work, true);
4168 }
Jens Axboed7718a92020-02-14 22:23:12 -07004169 wake_up_process(tsk);
4170 return 1;
4171}
4172
4173static void io_async_task_func(struct callback_head *cb)
4174{
4175 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
4176 struct async_poll *apoll = req->apoll;
4177 struct io_ring_ctx *ctx = req->ctx;
4178
4179 trace_io_uring_task_run(req->ctx, req->opcode, req->user_data);
4180
4181 WARN_ON_ONCE(!list_empty(&req->apoll->poll.wait.entry));
4182
4183 if (hash_hashed(&req->hash_node)) {
4184 spin_lock_irq(&ctx->completion_lock);
4185 hash_del(&req->hash_node);
4186 spin_unlock_irq(&ctx->completion_lock);
4187 }
4188
4189 /* restore ->work in case we need to retry again */
4190 memcpy(&req->work, &apoll->work, sizeof(req->work));
4191
4192 __set_current_state(TASK_RUNNING);
4193 mutex_lock(&ctx->uring_lock);
4194 __io_queue_sqe(req, NULL);
4195 mutex_unlock(&ctx->uring_lock);
4196
4197 kfree(apoll);
4198}
4199
4200static int io_async_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
4201 void *key)
4202{
4203 struct io_kiocb *req = wait->private;
4204 struct io_poll_iocb *poll = &req->apoll->poll;
4205
4206 trace_io_uring_poll_wake(req->ctx, req->opcode, req->user_data,
4207 key_to_poll(key));
4208
4209 return __io_async_wake(req, poll, key_to_poll(key), io_async_task_func);
4210}
4211
4212static void io_poll_req_insert(struct io_kiocb *req)
4213{
4214 struct io_ring_ctx *ctx = req->ctx;
4215 struct hlist_head *list;
4216
4217 list = &ctx->cancel_hash[hash_long(req->user_data, ctx->cancel_hash_bits)];
4218 hlist_add_head(&req->hash_node, list);
4219}
4220
4221static __poll_t __io_arm_poll_handler(struct io_kiocb *req,
4222 struct io_poll_iocb *poll,
4223 struct io_poll_table *ipt, __poll_t mask,
4224 wait_queue_func_t wake_func)
4225 __acquires(&ctx->completion_lock)
4226{
4227 struct io_ring_ctx *ctx = req->ctx;
4228 bool cancel = false;
4229
4230 poll->file = req->file;
4231 poll->head = NULL;
4232 poll->done = poll->canceled = false;
4233 poll->events = mask;
4234
4235 ipt->pt._key = mask;
4236 ipt->req = req;
4237 ipt->error = -EINVAL;
4238
4239 INIT_LIST_HEAD(&poll->wait.entry);
4240 init_waitqueue_func_entry(&poll->wait, wake_func);
4241 poll->wait.private = req;
4242
4243 mask = vfs_poll(req->file, &ipt->pt) & poll->events;
4244
4245 spin_lock_irq(&ctx->completion_lock);
4246 if (likely(poll->head)) {
4247 spin_lock(&poll->head->lock);
4248 if (unlikely(list_empty(&poll->wait.entry))) {
4249 if (ipt->error)
4250 cancel = true;
4251 ipt->error = 0;
4252 mask = 0;
4253 }
4254 if (mask || ipt->error)
4255 list_del_init(&poll->wait.entry);
4256 else if (cancel)
4257 WRITE_ONCE(poll->canceled, true);
4258 else if (!poll->done) /* actually waiting for an event */
4259 io_poll_req_insert(req);
4260 spin_unlock(&poll->head->lock);
4261 }
4262
4263 return mask;
4264}
4265
4266static bool io_arm_poll_handler(struct io_kiocb *req)
4267{
4268 const struct io_op_def *def = &io_op_defs[req->opcode];
4269 struct io_ring_ctx *ctx = req->ctx;
4270 struct async_poll *apoll;
4271 struct io_poll_table ipt;
4272 __poll_t mask, ret;
4273
4274 if (!req->file || !file_can_poll(req->file))
4275 return false;
4276 if (req->flags & (REQ_F_MUST_PUNT | REQ_F_POLLED))
4277 return false;
4278 if (!def->pollin && !def->pollout)
4279 return false;
4280
4281 apoll = kmalloc(sizeof(*apoll), GFP_ATOMIC);
4282 if (unlikely(!apoll))
4283 return false;
4284
4285 req->flags |= REQ_F_POLLED;
4286 memcpy(&apoll->work, &req->work, sizeof(req->work));
4287
Jens Axboe3537b6a2020-04-03 11:19:06 -06004288 get_task_struct(current);
Jens Axboed7718a92020-02-14 22:23:12 -07004289 req->task = current;
4290 req->apoll = apoll;
4291 INIT_HLIST_NODE(&req->hash_node);
4292
Nathan Chancellor8755d972020-03-02 16:01:19 -07004293 mask = 0;
Jens Axboed7718a92020-02-14 22:23:12 -07004294 if (def->pollin)
Nathan Chancellor8755d972020-03-02 16:01:19 -07004295 mask |= POLLIN | POLLRDNORM;
Jens Axboed7718a92020-02-14 22:23:12 -07004296 if (def->pollout)
4297 mask |= POLLOUT | POLLWRNORM;
4298 mask |= POLLERR | POLLPRI;
4299
4300 ipt.pt._qproc = io_async_queue_proc;
4301
4302 ret = __io_arm_poll_handler(req, &apoll->poll, &ipt, mask,
4303 io_async_wake);
4304 if (ret) {
4305 ipt.error = 0;
4306 apoll->poll.done = true;
4307 spin_unlock_irq(&ctx->completion_lock);
4308 memcpy(&req->work, &apoll->work, sizeof(req->work));
4309 kfree(apoll);
4310 return false;
4311 }
4312 spin_unlock_irq(&ctx->completion_lock);
4313 trace_io_uring_poll_arm(ctx, req->opcode, req->user_data, mask,
4314 apoll->poll.events);
4315 return true;
4316}
4317
4318static bool __io_poll_remove_one(struct io_kiocb *req,
4319 struct io_poll_iocb *poll)
4320{
Jens Axboeb41e9852020-02-17 09:52:41 -07004321 bool do_complete = false;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004322
4323 spin_lock(&poll->head->lock);
4324 WRITE_ONCE(poll->canceled, true);
Jens Axboe392edb42019-12-09 17:52:20 -07004325 if (!list_empty(&poll->wait.entry)) {
4326 list_del_init(&poll->wait.entry);
Jens Axboeb41e9852020-02-17 09:52:41 -07004327 do_complete = true;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004328 }
4329 spin_unlock(&poll->head->lock);
Jens Axboed7718a92020-02-14 22:23:12 -07004330 return do_complete;
4331}
4332
4333static bool io_poll_remove_one(struct io_kiocb *req)
4334{
4335 bool do_complete;
4336
4337 if (req->opcode == IORING_OP_POLL_ADD) {
4338 do_complete = __io_poll_remove_one(req, &req->poll);
4339 } else {
4340 /* non-poll requests have submit ref still */
4341 do_complete = __io_poll_remove_one(req, &req->apoll->poll);
4342 if (do_complete)
4343 io_put_req(req);
4344 }
4345
Jens Axboe78076bb2019-12-04 19:56:40 -07004346 hash_del(&req->hash_node);
Jens Axboed7718a92020-02-14 22:23:12 -07004347
Jens Axboeb41e9852020-02-17 09:52:41 -07004348 if (do_complete) {
4349 io_cqring_fill_event(req, -ECANCELED);
4350 io_commit_cqring(req->ctx);
4351 req->flags |= REQ_F_COMP_LOCKED;
4352 io_put_req(req);
4353 }
4354
4355 return do_complete;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004356}
4357
4358static void io_poll_remove_all(struct io_ring_ctx *ctx)
4359{
Jens Axboe78076bb2019-12-04 19:56:40 -07004360 struct hlist_node *tmp;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004361 struct io_kiocb *req;
Jens Axboe78076bb2019-12-04 19:56:40 -07004362 int i;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004363
4364 spin_lock_irq(&ctx->completion_lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07004365 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
4366 struct hlist_head *list;
4367
4368 list = &ctx->cancel_hash[i];
4369 hlist_for_each_entry_safe(req, tmp, list, hash_node)
4370 io_poll_remove_one(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004371 }
4372 spin_unlock_irq(&ctx->completion_lock);
Jens Axboeb41e9852020-02-17 09:52:41 -07004373
4374 io_cqring_ev_posted(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004375}
4376
Jens Axboe47f46762019-11-09 17:43:02 -07004377static int io_poll_cancel(struct io_ring_ctx *ctx, __u64 sqe_addr)
4378{
Jens Axboe78076bb2019-12-04 19:56:40 -07004379 struct hlist_head *list;
Jens Axboe47f46762019-11-09 17:43:02 -07004380 struct io_kiocb *req;
4381
Jens Axboe78076bb2019-12-04 19:56:40 -07004382 list = &ctx->cancel_hash[hash_long(sqe_addr, ctx->cancel_hash_bits)];
4383 hlist_for_each_entry(req, list, hash_node) {
Jens Axboeb41e9852020-02-17 09:52:41 -07004384 if (sqe_addr != req->user_data)
4385 continue;
4386 if (io_poll_remove_one(req))
Jens Axboeeac406c2019-11-14 12:09:58 -07004387 return 0;
Jens Axboeb41e9852020-02-17 09:52:41 -07004388 return -EALREADY;
Jens Axboe47f46762019-11-09 17:43:02 -07004389 }
4390
4391 return -ENOENT;
4392}
4393
Jens Axboe3529d8c2019-12-19 18:24:38 -07004394static int io_poll_remove_prep(struct io_kiocb *req,
4395 const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004396{
Jens Axboe221c5eb2019-01-17 09:41:58 -07004397 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4398 return -EINVAL;
4399 if (sqe->ioprio || sqe->off || sqe->len || sqe->buf_index ||
4400 sqe->poll_events)
4401 return -EINVAL;
4402
Jens Axboe0969e782019-12-17 18:40:57 -07004403 req->poll.addr = READ_ONCE(sqe->addr);
Jens Axboe0969e782019-12-17 18:40:57 -07004404 return 0;
4405}
4406
4407/*
4408 * Find a running poll command that matches one specified in sqe->addr,
4409 * and remove it if found.
4410 */
4411static int io_poll_remove(struct io_kiocb *req)
4412{
4413 struct io_ring_ctx *ctx = req->ctx;
4414 u64 addr;
4415 int ret;
4416
Jens Axboe0969e782019-12-17 18:40:57 -07004417 addr = req->poll.addr;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004418 spin_lock_irq(&ctx->completion_lock);
Jens Axboe0969e782019-12-17 18:40:57 -07004419 ret = io_poll_cancel(ctx, addr);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004420 spin_unlock_irq(&ctx->completion_lock);
4421
Jens Axboe78e19bb2019-11-06 15:21:34 -07004422 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004423 if (ret < 0)
4424 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06004425 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004426 return 0;
4427}
4428
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004429static void io_poll_complete(struct io_kiocb *req, __poll_t mask, int error)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004430{
Jackie Liua197f662019-11-08 08:09:12 -07004431 struct io_ring_ctx *ctx = req->ctx;
4432
Jens Axboe8c838782019-03-12 15:48:16 -06004433 req->poll.done = true;
Pavel Begunkovb0a20342020-02-28 10:36:35 +03004434 io_cqring_fill_event(req, error ? error : mangle_poll(mask));
Jens Axboe8c838782019-03-12 15:48:16 -06004435 io_commit_cqring(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004436}
4437
Jens Axboeb41e9852020-02-17 09:52:41 -07004438static void io_poll_task_handler(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004439{
Jens Axboe221c5eb2019-01-17 09:41:58 -07004440 struct io_ring_ctx *ctx = req->ctx;
Jens Axboea6ba6322020-04-03 11:10:14 -06004441 struct io_poll_iocb *poll = &req->poll;
4442
4443 if (!req->result && !READ_ONCE(poll->canceled)) {
4444 struct poll_table_struct pt = { ._key = poll->events };
4445
4446 req->result = vfs_poll(req->file, &pt) & poll->events;
4447 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07004448
Jens Axboe221c5eb2019-01-17 09:41:58 -07004449 spin_lock_irq(&ctx->completion_lock);
Jens Axboea6ba6322020-04-03 11:10:14 -06004450 if (!req->result && !READ_ONCE(poll->canceled)) {
4451 add_wait_queue(poll->head, &poll->wait);
4452 spin_unlock_irq(&ctx->completion_lock);
4453 return;
4454 }
Jens Axboe78076bb2019-12-04 19:56:40 -07004455 hash_del(&req->hash_node);
Jens Axboeb41e9852020-02-17 09:52:41 -07004456 io_poll_complete(req, req->result, 0);
4457 req->flags |= REQ_F_COMP_LOCKED;
4458 io_put_req_find_next(req, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004459 spin_unlock_irq(&ctx->completion_lock);
4460
Jens Axboe8c838782019-03-12 15:48:16 -06004461 io_cqring_ev_posted(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004462}
4463
Jens Axboeb41e9852020-02-17 09:52:41 -07004464static void io_poll_task_func(struct callback_head *cb)
Jens Axboee94f1412019-12-19 12:06:02 -07004465{
Jens Axboeb41e9852020-02-17 09:52:41 -07004466 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
4467 struct io_kiocb *nxt = NULL;
Jens Axboee94f1412019-12-19 12:06:02 -07004468
Jens Axboeb41e9852020-02-17 09:52:41 -07004469 io_poll_task_handler(req, &nxt);
Jens Axboed7718a92020-02-14 22:23:12 -07004470 if (nxt) {
4471 struct io_ring_ctx *ctx = nxt->ctx;
Jens Axboee94f1412019-12-19 12:06:02 -07004472
Jens Axboed7718a92020-02-14 22:23:12 -07004473 mutex_lock(&ctx->uring_lock);
Jens Axboeb41e9852020-02-17 09:52:41 -07004474 __io_queue_sqe(nxt, NULL);
Jens Axboed7718a92020-02-14 22:23:12 -07004475 mutex_unlock(&ctx->uring_lock);
Jens Axboee94f1412019-12-19 12:06:02 -07004476 }
Jens Axboef0b493e2020-02-01 21:30:11 -07004477}
4478
Jens Axboe221c5eb2019-01-17 09:41:58 -07004479static int io_poll_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
4480 void *key)
4481{
Jens Axboec2f2eb72020-02-10 09:07:05 -07004482 struct io_kiocb *req = wait->private;
4483 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004484
Jens Axboed7718a92020-02-14 22:23:12 -07004485 return __io_async_wake(req, poll, key_to_poll(key), io_poll_task_func);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004486}
4487
Jens Axboe221c5eb2019-01-17 09:41:58 -07004488static void io_poll_queue_proc(struct file *file, struct wait_queue_head *head,
4489 struct poll_table_struct *p)
4490{
4491 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
4492
Jens Axboed7718a92020-02-14 22:23:12 -07004493 __io_queue_proc(&pt->req->poll, pt, head);
Jens Axboeeac406c2019-11-14 12:09:58 -07004494}
4495
Jens Axboe3529d8c2019-12-19 18:24:38 -07004496static int io_poll_add_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004497{
4498 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004499 u16 events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004500
4501 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4502 return -EINVAL;
4503 if (sqe->addr || sqe->ioprio || sqe->off || sqe->len || sqe->buf_index)
4504 return -EINVAL;
Jens Axboe09bb8392019-03-13 12:39:28 -06004505 if (!poll->file)
4506 return -EBADF;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004507
Jens Axboe221c5eb2019-01-17 09:41:58 -07004508 events = READ_ONCE(sqe->poll_events);
4509 poll->events = demangle_poll(events) | EPOLLERR | EPOLLHUP;
Jens Axboeb41e9852020-02-17 09:52:41 -07004510
Jens Axboe3537b6a2020-04-03 11:19:06 -06004511 get_task_struct(current);
Jens Axboeb41e9852020-02-17 09:52:41 -07004512 req->task = current;
Jens Axboe0969e782019-12-17 18:40:57 -07004513 return 0;
4514}
4515
Pavel Begunkov014db002020-03-03 21:33:12 +03004516static int io_poll_add(struct io_kiocb *req)
Jens Axboe0969e782019-12-17 18:40:57 -07004517{
4518 struct io_poll_iocb *poll = &req->poll;
4519 struct io_ring_ctx *ctx = req->ctx;
4520 struct io_poll_table ipt;
Jens Axboe0969e782019-12-17 18:40:57 -07004521 __poll_t mask;
Jens Axboe0969e782019-12-17 18:40:57 -07004522
Jens Axboe78076bb2019-12-04 19:56:40 -07004523 INIT_HLIST_NODE(&req->hash_node);
Jens Axboe36703242019-07-25 10:20:18 -06004524 INIT_LIST_HEAD(&req->list);
Jens Axboed7718a92020-02-14 22:23:12 -07004525 ipt.pt._qproc = io_poll_queue_proc;
Jens Axboe36703242019-07-25 10:20:18 -06004526
Jens Axboed7718a92020-02-14 22:23:12 -07004527 mask = __io_arm_poll_handler(req, &req->poll, &ipt, poll->events,
4528 io_poll_wake);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004529
Jens Axboe8c838782019-03-12 15:48:16 -06004530 if (mask) { /* no async, we'd stolen it */
Jens Axboe8c838782019-03-12 15:48:16 -06004531 ipt.error = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004532 io_poll_complete(req, mask, 0);
Jens Axboe8c838782019-03-12 15:48:16 -06004533 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07004534 spin_unlock_irq(&ctx->completion_lock);
4535
Jens Axboe8c838782019-03-12 15:48:16 -06004536 if (mask) {
4537 io_cqring_ev_posted(ctx);
Pavel Begunkov014db002020-03-03 21:33:12 +03004538 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004539 }
Jens Axboe8c838782019-03-12 15:48:16 -06004540 return ipt.error;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004541}
4542
Jens Axboe5262f562019-09-17 12:26:57 -06004543static enum hrtimer_restart io_timeout_fn(struct hrtimer *timer)
4544{
Jens Axboead8a48a2019-11-15 08:49:11 -07004545 struct io_timeout_data *data = container_of(timer,
4546 struct io_timeout_data, timer);
4547 struct io_kiocb *req = data->req;
4548 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5262f562019-09-17 12:26:57 -06004549 unsigned long flags;
4550
Jens Axboe5262f562019-09-17 12:26:57 -06004551 atomic_inc(&ctx->cq_timeouts);
4552
4553 spin_lock_irqsave(&ctx->completion_lock, flags);
zhangyi (F)ef036812019-10-23 15:10:08 +08004554 /*
Jens Axboe11365042019-10-16 09:08:32 -06004555 * We could be racing with timeout deletion. If the list is empty,
4556 * then timeout lookup already found it and will be handling it.
zhangyi (F)ef036812019-10-23 15:10:08 +08004557 */
Jens Axboe842f9612019-10-29 12:34:10 -06004558 if (!list_empty(&req->list)) {
Jens Axboe11365042019-10-16 09:08:32 -06004559 struct io_kiocb *prev;
Jens Axboe5262f562019-09-17 12:26:57 -06004560
Jens Axboe11365042019-10-16 09:08:32 -06004561 /*
4562 * Adjust the reqs sequence before the current one because it
Brian Gianforcarod195a662019-12-13 03:09:50 -08004563 * will consume a slot in the cq_ring and the cq_tail
Jens Axboe11365042019-10-16 09:08:32 -06004564 * pointer will be increased, otherwise other timeout reqs may
4565 * return in advance without waiting for enough wait_nr.
4566 */
4567 prev = req;
4568 list_for_each_entry_continue_reverse(prev, &ctx->timeout_list, list)
4569 prev->sequence++;
Jens Axboe11365042019-10-16 09:08:32 -06004570 list_del_init(&req->list);
Jens Axboe11365042019-10-16 09:08:32 -06004571 }
Jens Axboe842f9612019-10-29 12:34:10 -06004572
Jens Axboe78e19bb2019-11-06 15:21:34 -07004573 io_cqring_fill_event(req, -ETIME);
Jens Axboe5262f562019-09-17 12:26:57 -06004574 io_commit_cqring(ctx);
4575 spin_unlock_irqrestore(&ctx->completion_lock, flags);
4576
4577 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004578 req_set_fail_links(req);
Jens Axboe5262f562019-09-17 12:26:57 -06004579 io_put_req(req);
4580 return HRTIMER_NORESTART;
4581}
4582
Jens Axboe47f46762019-11-09 17:43:02 -07004583static int io_timeout_cancel(struct io_ring_ctx *ctx, __u64 user_data)
4584{
4585 struct io_kiocb *req;
4586 int ret = -ENOENT;
4587
4588 list_for_each_entry(req, &ctx->timeout_list, list) {
4589 if (user_data == req->user_data) {
4590 list_del_init(&req->list);
4591 ret = 0;
4592 break;
4593 }
4594 }
4595
4596 if (ret == -ENOENT)
4597 return ret;
4598
Jens Axboe2d283902019-12-04 11:08:05 -07004599 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe47f46762019-11-09 17:43:02 -07004600 if (ret == -1)
4601 return -EALREADY;
4602
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004603 req_set_fail_links(req);
Jens Axboe47f46762019-11-09 17:43:02 -07004604 io_cqring_fill_event(req, -ECANCELED);
4605 io_put_req(req);
4606 return 0;
4607}
4608
Jens Axboe3529d8c2019-12-19 18:24:38 -07004609static int io_timeout_remove_prep(struct io_kiocb *req,
4610 const struct io_uring_sqe *sqe)
Jens Axboeb29472e2019-12-17 18:50:29 -07004611{
Jens Axboeb29472e2019-12-17 18:50:29 -07004612 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4613 return -EINVAL;
4614 if (sqe->flags || sqe->ioprio || sqe->buf_index || sqe->len)
4615 return -EINVAL;
4616
4617 req->timeout.addr = READ_ONCE(sqe->addr);
4618 req->timeout.flags = READ_ONCE(sqe->timeout_flags);
4619 if (req->timeout.flags)
4620 return -EINVAL;
4621
Jens Axboeb29472e2019-12-17 18:50:29 -07004622 return 0;
4623}
4624
Jens Axboe11365042019-10-16 09:08:32 -06004625/*
4626 * Remove or update an existing timeout command
4627 */
Jens Axboefc4df992019-12-10 14:38:45 -07004628static int io_timeout_remove(struct io_kiocb *req)
Jens Axboe11365042019-10-16 09:08:32 -06004629{
4630 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe47f46762019-11-09 17:43:02 -07004631 int ret;
Jens Axboe11365042019-10-16 09:08:32 -06004632
Jens Axboe11365042019-10-16 09:08:32 -06004633 spin_lock_irq(&ctx->completion_lock);
Jens Axboeb29472e2019-12-17 18:50:29 -07004634 ret = io_timeout_cancel(ctx, req->timeout.addr);
Jens Axboe11365042019-10-16 09:08:32 -06004635
Jens Axboe47f46762019-11-09 17:43:02 -07004636 io_cqring_fill_event(req, ret);
Jens Axboe11365042019-10-16 09:08:32 -06004637 io_commit_cqring(ctx);
4638 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06004639 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004640 if (ret < 0)
4641 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08004642 io_put_req(req);
Jens Axboe11365042019-10-16 09:08:32 -06004643 return 0;
Jens Axboe5262f562019-09-17 12:26:57 -06004644}
4645
Jens Axboe3529d8c2019-12-19 18:24:38 -07004646static int io_timeout_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboe2d283902019-12-04 11:08:05 -07004647 bool is_timeout_link)
Jens Axboe5262f562019-09-17 12:26:57 -06004648{
Jens Axboead8a48a2019-11-15 08:49:11 -07004649 struct io_timeout_data *data;
Jens Axboea41525a2019-10-15 16:48:15 -06004650 unsigned flags;
Jens Axboe5262f562019-09-17 12:26:57 -06004651
Jens Axboead8a48a2019-11-15 08:49:11 -07004652 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe5262f562019-09-17 12:26:57 -06004653 return -EINVAL;
Jens Axboead8a48a2019-11-15 08:49:11 -07004654 if (sqe->ioprio || sqe->buf_index || sqe->len != 1)
Jens Axboea41525a2019-10-15 16:48:15 -06004655 return -EINVAL;
Jens Axboe2d283902019-12-04 11:08:05 -07004656 if (sqe->off && is_timeout_link)
4657 return -EINVAL;
Jens Axboea41525a2019-10-15 16:48:15 -06004658 flags = READ_ONCE(sqe->timeout_flags);
4659 if (flags & ~IORING_TIMEOUT_ABS)
Jens Axboe5262f562019-09-17 12:26:57 -06004660 return -EINVAL;
Arnd Bergmannbdf20072019-10-01 09:53:29 -06004661
Jens Axboe26a61672019-12-20 09:02:01 -07004662 req->timeout.count = READ_ONCE(sqe->off);
4663
Jens Axboe3529d8c2019-12-19 18:24:38 -07004664 if (!req->io && io_alloc_async_ctx(req))
Jens Axboe26a61672019-12-20 09:02:01 -07004665 return -ENOMEM;
4666
4667 data = &req->io->timeout;
Jens Axboead8a48a2019-11-15 08:49:11 -07004668 data->req = req;
Jens Axboead8a48a2019-11-15 08:49:11 -07004669 req->flags |= REQ_F_TIMEOUT;
4670
4671 if (get_timespec64(&data->ts, u64_to_user_ptr(sqe->addr)))
Jens Axboe5262f562019-09-17 12:26:57 -06004672 return -EFAULT;
4673
Jens Axboe11365042019-10-16 09:08:32 -06004674 if (flags & IORING_TIMEOUT_ABS)
Jens Axboead8a48a2019-11-15 08:49:11 -07004675 data->mode = HRTIMER_MODE_ABS;
Jens Axboe11365042019-10-16 09:08:32 -06004676 else
Jens Axboead8a48a2019-11-15 08:49:11 -07004677 data->mode = HRTIMER_MODE_REL;
Jens Axboe11365042019-10-16 09:08:32 -06004678
Jens Axboead8a48a2019-11-15 08:49:11 -07004679 hrtimer_init(&data->timer, CLOCK_MONOTONIC, data->mode);
4680 return 0;
4681}
4682
Jens Axboefc4df992019-12-10 14:38:45 -07004683static int io_timeout(struct io_kiocb *req)
Jens Axboead8a48a2019-11-15 08:49:11 -07004684{
4685 unsigned count;
4686 struct io_ring_ctx *ctx = req->ctx;
4687 struct io_timeout_data *data;
4688 struct list_head *entry;
4689 unsigned span = 0;
Jens Axboead8a48a2019-11-15 08:49:11 -07004690
Jens Axboe2d283902019-12-04 11:08:05 -07004691 data = &req->io->timeout;
Jens Axboe93bd25b2019-11-11 23:34:31 -07004692
Jens Axboe5262f562019-09-17 12:26:57 -06004693 /*
4694 * sqe->off holds how many events that need to occur for this
Jens Axboe93bd25b2019-11-11 23:34:31 -07004695 * timeout event to be satisfied. If it isn't set, then this is
4696 * a pure timeout request, sequence isn't used.
Jens Axboe5262f562019-09-17 12:26:57 -06004697 */
Jens Axboe26a61672019-12-20 09:02:01 -07004698 count = req->timeout.count;
Jens Axboe93bd25b2019-11-11 23:34:31 -07004699 if (!count) {
4700 req->flags |= REQ_F_TIMEOUT_NOSEQ;
4701 spin_lock_irq(&ctx->completion_lock);
4702 entry = ctx->timeout_list.prev;
4703 goto add;
4704 }
Jens Axboe5262f562019-09-17 12:26:57 -06004705
4706 req->sequence = ctx->cached_sq_head + count - 1;
Jens Axboe2d283902019-12-04 11:08:05 -07004707 data->seq_offset = count;
Jens Axboe5262f562019-09-17 12:26:57 -06004708
4709 /*
4710 * Insertion sort, ensuring the first entry in the list is always
4711 * the one we need first.
4712 */
Jens Axboe5262f562019-09-17 12:26:57 -06004713 spin_lock_irq(&ctx->completion_lock);
4714 list_for_each_prev(entry, &ctx->timeout_list) {
4715 struct io_kiocb *nxt = list_entry(entry, struct io_kiocb, list);
yangerkun5da0fb12019-10-15 21:59:29 +08004716 unsigned nxt_sq_head;
4717 long long tmp, tmp_nxt;
Jens Axboe2d283902019-12-04 11:08:05 -07004718 u32 nxt_offset = nxt->io->timeout.seq_offset;
Jens Axboe5262f562019-09-17 12:26:57 -06004719
Jens Axboe93bd25b2019-11-11 23:34:31 -07004720 if (nxt->flags & REQ_F_TIMEOUT_NOSEQ)
4721 continue;
4722
yangerkun5da0fb12019-10-15 21:59:29 +08004723 /*
4724 * Since cached_sq_head + count - 1 can overflow, use type long
4725 * long to store it.
4726 */
4727 tmp = (long long)ctx->cached_sq_head + count - 1;
Pavel Begunkovcc42e0a2019-11-25 23:14:38 +03004728 nxt_sq_head = nxt->sequence - nxt_offset + 1;
4729 tmp_nxt = (long long)nxt_sq_head + nxt_offset - 1;
yangerkun5da0fb12019-10-15 21:59:29 +08004730
4731 /*
4732 * cached_sq_head may overflow, and it will never overflow twice
4733 * once there is some timeout req still be valid.
4734 */
4735 if (ctx->cached_sq_head < nxt_sq_head)
yangerkun8b07a652019-10-17 12:12:35 +08004736 tmp += UINT_MAX;
yangerkun5da0fb12019-10-15 21:59:29 +08004737
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004738 if (tmp > tmp_nxt)
Jens Axboe5262f562019-09-17 12:26:57 -06004739 break;
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004740
4741 /*
4742 * Sequence of reqs after the insert one and itself should
4743 * be adjusted because each timeout req consumes a slot.
4744 */
4745 span++;
4746 nxt->sequence++;
Jens Axboe5262f562019-09-17 12:26:57 -06004747 }
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004748 req->sequence -= span;
Jens Axboe93bd25b2019-11-11 23:34:31 -07004749add:
Jens Axboe5262f562019-09-17 12:26:57 -06004750 list_add(&req->list, entry);
Jens Axboead8a48a2019-11-15 08:49:11 -07004751 data->timer.function = io_timeout_fn;
4752 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts), data->mode);
Jens Axboe842f9612019-10-29 12:34:10 -06004753 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06004754 return 0;
4755}
4756
Jens Axboe62755e32019-10-28 21:49:21 -06004757static bool io_cancel_cb(struct io_wq_work *work, void *data)
Jens Axboede0617e2019-04-06 21:51:27 -06004758{
Jens Axboe62755e32019-10-28 21:49:21 -06004759 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboede0617e2019-04-06 21:51:27 -06004760
Jens Axboe62755e32019-10-28 21:49:21 -06004761 return req->user_data == (unsigned long) data;
4762}
4763
Jens Axboee977d6d2019-11-05 12:39:45 -07004764static int io_async_cancel_one(struct io_ring_ctx *ctx, void *sqe_addr)
Jens Axboe62755e32019-10-28 21:49:21 -06004765{
Jens Axboe62755e32019-10-28 21:49:21 -06004766 enum io_wq_cancel cancel_ret;
Jens Axboe62755e32019-10-28 21:49:21 -06004767 int ret = 0;
4768
Jens Axboe62755e32019-10-28 21:49:21 -06004769 cancel_ret = io_wq_cancel_cb(ctx->io_wq, io_cancel_cb, sqe_addr);
4770 switch (cancel_ret) {
4771 case IO_WQ_CANCEL_OK:
4772 ret = 0;
4773 break;
4774 case IO_WQ_CANCEL_RUNNING:
4775 ret = -EALREADY;
4776 break;
4777 case IO_WQ_CANCEL_NOTFOUND:
4778 ret = -ENOENT;
4779 break;
4780 }
4781
Jens Axboee977d6d2019-11-05 12:39:45 -07004782 return ret;
4783}
4784
Jens Axboe47f46762019-11-09 17:43:02 -07004785static void io_async_find_and_cancel(struct io_ring_ctx *ctx,
4786 struct io_kiocb *req, __u64 sqe_addr,
Pavel Begunkov014db002020-03-03 21:33:12 +03004787 int success_ret)
Jens Axboe47f46762019-11-09 17:43:02 -07004788{
4789 unsigned long flags;
4790 int ret;
4791
4792 ret = io_async_cancel_one(ctx, (void *) (unsigned long) sqe_addr);
4793 if (ret != -ENOENT) {
4794 spin_lock_irqsave(&ctx->completion_lock, flags);
4795 goto done;
4796 }
4797
4798 spin_lock_irqsave(&ctx->completion_lock, flags);
4799 ret = io_timeout_cancel(ctx, sqe_addr);
4800 if (ret != -ENOENT)
4801 goto done;
4802 ret = io_poll_cancel(ctx, sqe_addr);
4803done:
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004804 if (!ret)
4805 ret = success_ret;
Jens Axboe47f46762019-11-09 17:43:02 -07004806 io_cqring_fill_event(req, ret);
4807 io_commit_cqring(ctx);
4808 spin_unlock_irqrestore(&ctx->completion_lock, flags);
4809 io_cqring_ev_posted(ctx);
4810
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004811 if (ret < 0)
4812 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03004813 io_put_req(req);
Jens Axboe47f46762019-11-09 17:43:02 -07004814}
4815
Jens Axboe3529d8c2019-12-19 18:24:38 -07004816static int io_async_cancel_prep(struct io_kiocb *req,
4817 const struct io_uring_sqe *sqe)
Jens Axboee977d6d2019-11-05 12:39:45 -07004818{
Jens Axboefbf23842019-12-17 18:45:56 -07004819 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboee977d6d2019-11-05 12:39:45 -07004820 return -EINVAL;
4821 if (sqe->flags || sqe->ioprio || sqe->off || sqe->len ||
4822 sqe->cancel_flags)
4823 return -EINVAL;
4824
Jens Axboefbf23842019-12-17 18:45:56 -07004825 req->cancel.addr = READ_ONCE(sqe->addr);
4826 return 0;
4827}
4828
Pavel Begunkov014db002020-03-03 21:33:12 +03004829static int io_async_cancel(struct io_kiocb *req)
Jens Axboefbf23842019-12-17 18:45:56 -07004830{
4831 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefbf23842019-12-17 18:45:56 -07004832
Pavel Begunkov014db002020-03-03 21:33:12 +03004833 io_async_find_and_cancel(ctx, req, req->cancel.addr, 0);
Jens Axboe62755e32019-10-28 21:49:21 -06004834 return 0;
4835}
4836
Jens Axboe05f3fb32019-12-09 11:22:50 -07004837static int io_files_update_prep(struct io_kiocb *req,
4838 const struct io_uring_sqe *sqe)
4839{
4840 if (sqe->flags || sqe->ioprio || sqe->rw_flags)
4841 return -EINVAL;
4842
4843 req->files_update.offset = READ_ONCE(sqe->off);
4844 req->files_update.nr_args = READ_ONCE(sqe->len);
4845 if (!req->files_update.nr_args)
4846 return -EINVAL;
4847 req->files_update.arg = READ_ONCE(sqe->addr);
4848 return 0;
4849}
4850
4851static int io_files_update(struct io_kiocb *req, bool force_nonblock)
4852{
4853 struct io_ring_ctx *ctx = req->ctx;
4854 struct io_uring_files_update up;
4855 int ret;
4856
Jens Axboef86cd202020-01-29 13:46:44 -07004857 if (force_nonblock)
Jens Axboe05f3fb32019-12-09 11:22:50 -07004858 return -EAGAIN;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004859
4860 up.offset = req->files_update.offset;
4861 up.fds = req->files_update.arg;
4862
4863 mutex_lock(&ctx->uring_lock);
4864 ret = __io_sqe_files_update(ctx, &up, req->files_update.nr_args);
4865 mutex_unlock(&ctx->uring_lock);
4866
4867 if (ret < 0)
4868 req_set_fail_links(req);
4869 io_cqring_add_event(req, ret);
4870 io_put_req(req);
4871 return 0;
4872}
4873
Jens Axboe3529d8c2019-12-19 18:24:38 -07004874static int io_req_defer_prep(struct io_kiocb *req,
4875 const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07004876{
Jens Axboee7815732019-12-17 19:45:06 -07004877 ssize_t ret = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07004878
Pavel Begunkovf1d96a82020-03-13 22:29:14 +03004879 if (!sqe)
4880 return 0;
4881
Jens Axboef86cd202020-01-29 13:46:44 -07004882 if (io_op_defs[req->opcode].file_table) {
4883 ret = io_grab_files(req);
4884 if (unlikely(ret))
4885 return ret;
4886 }
4887
Jens Axboecccf0ee2020-01-27 16:34:48 -07004888 io_req_work_grab_env(req, &io_op_defs[req->opcode]);
4889
Jens Axboed625c6e2019-12-17 19:53:05 -07004890 switch (req->opcode) {
Jens Axboee7815732019-12-17 19:45:06 -07004891 case IORING_OP_NOP:
4892 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004893 case IORING_OP_READV:
4894 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004895 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004896 ret = io_read_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07004897 break;
4898 case IORING_OP_WRITEV:
4899 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004900 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004901 ret = io_write_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07004902 break;
Jens Axboe0969e782019-12-17 18:40:57 -07004903 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004904 ret = io_poll_add_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07004905 break;
4906 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004907 ret = io_poll_remove_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07004908 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004909 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004910 ret = io_prep_fsync(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004911 break;
4912 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004913 ret = io_prep_sfr(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004914 break;
Jens Axboe03b12302019-12-02 18:50:25 -07004915 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004916 case IORING_OP_SEND:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004917 ret = io_sendmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07004918 break;
4919 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004920 case IORING_OP_RECV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004921 ret = io_recvmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07004922 break;
Jens Axboef499a022019-12-02 16:28:46 -07004923 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004924 ret = io_connect_prep(req, sqe);
Jens Axboef499a022019-12-02 16:28:46 -07004925 break;
Jens Axboe2d283902019-12-04 11:08:05 -07004926 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004927 ret = io_timeout_prep(req, sqe, false);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004928 break;
Jens Axboeb29472e2019-12-17 18:50:29 -07004929 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004930 ret = io_timeout_remove_prep(req, sqe);
Jens Axboeb29472e2019-12-17 18:50:29 -07004931 break;
Jens Axboefbf23842019-12-17 18:45:56 -07004932 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004933 ret = io_async_cancel_prep(req, sqe);
Jens Axboefbf23842019-12-17 18:45:56 -07004934 break;
Jens Axboe2d283902019-12-04 11:08:05 -07004935 case IORING_OP_LINK_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004936 ret = io_timeout_prep(req, sqe, true);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004937 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004938 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004939 ret = io_accept_prep(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004940 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07004941 case IORING_OP_FALLOCATE:
4942 ret = io_fallocate_prep(req, sqe);
4943 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004944 case IORING_OP_OPENAT:
4945 ret = io_openat_prep(req, sqe);
4946 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07004947 case IORING_OP_CLOSE:
4948 ret = io_close_prep(req, sqe);
4949 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004950 case IORING_OP_FILES_UPDATE:
4951 ret = io_files_update_prep(req, sqe);
4952 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004953 case IORING_OP_STATX:
4954 ret = io_statx_prep(req, sqe);
4955 break;
Jens Axboe4840e412019-12-25 22:03:45 -07004956 case IORING_OP_FADVISE:
4957 ret = io_fadvise_prep(req, sqe);
4958 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07004959 case IORING_OP_MADVISE:
4960 ret = io_madvise_prep(req, sqe);
4961 break;
Jens Axboecebdb982020-01-08 17:59:24 -07004962 case IORING_OP_OPENAT2:
4963 ret = io_openat2_prep(req, sqe);
4964 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07004965 case IORING_OP_EPOLL_CTL:
4966 ret = io_epoll_ctl_prep(req, sqe);
4967 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03004968 case IORING_OP_SPLICE:
4969 ret = io_splice_prep(req, sqe);
4970 break;
Jens Axboeddf0322d2020-02-23 16:41:33 -07004971 case IORING_OP_PROVIDE_BUFFERS:
4972 ret = io_provide_buffers_prep(req, sqe);
4973 break;
Jens Axboe067524e2020-03-02 16:32:28 -07004974 case IORING_OP_REMOVE_BUFFERS:
4975 ret = io_remove_buffers_prep(req, sqe);
4976 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004977 default:
Jens Axboee7815732019-12-17 19:45:06 -07004978 printk_once(KERN_WARNING "io_uring: unhandled opcode %d\n",
4979 req->opcode);
4980 ret = -EINVAL;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004981 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004982 }
4983
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004984 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07004985}
4986
Jens Axboe3529d8c2019-12-19 18:24:38 -07004987static int io_req_defer(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboede0617e2019-04-06 21:51:27 -06004988{
Jackie Liua197f662019-11-08 08:09:12 -07004989 struct io_ring_ctx *ctx = req->ctx;
Jens Axboef67676d2019-12-02 11:03:47 -07004990 int ret;
Jens Axboede0617e2019-04-06 21:51:27 -06004991
Bob Liu9d858b22019-11-13 18:06:25 +08004992 /* Still need defer if there is pending req in defer list. */
4993 if (!req_need_defer(req) && list_empty(&ctx->defer_list))
Jens Axboede0617e2019-04-06 21:51:27 -06004994 return 0;
4995
Jens Axboe3529d8c2019-12-19 18:24:38 -07004996 if (!req->io && io_alloc_async_ctx(req))
Jens Axboede0617e2019-04-06 21:51:27 -06004997 return -EAGAIN;
4998
Jens Axboe3529d8c2019-12-19 18:24:38 -07004999 ret = io_req_defer_prep(req, sqe);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07005000 if (ret < 0)
Jens Axboe2d283902019-12-04 11:08:05 -07005001 return ret;
Jens Axboe2d283902019-12-04 11:08:05 -07005002
Jens Axboede0617e2019-04-06 21:51:27 -06005003 spin_lock_irq(&ctx->completion_lock);
Bob Liu9d858b22019-11-13 18:06:25 +08005004 if (!req_need_defer(req) && list_empty(&ctx->defer_list)) {
Jens Axboede0617e2019-04-06 21:51:27 -06005005 spin_unlock_irq(&ctx->completion_lock);
Jens Axboede0617e2019-04-06 21:51:27 -06005006 return 0;
5007 }
5008
Jens Axboe915967f2019-11-21 09:01:20 -07005009 trace_io_uring_defer(ctx, req, req->user_data);
Jens Axboede0617e2019-04-06 21:51:27 -06005010 list_add_tail(&req->list, &ctx->defer_list);
5011 spin_unlock_irq(&ctx->completion_lock);
5012 return -EIOCBQUEUED;
5013}
5014
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005015static void io_cleanup_req(struct io_kiocb *req)
5016{
5017 struct io_async_ctx *io = req->io;
5018
5019 switch (req->opcode) {
5020 case IORING_OP_READV:
5021 case IORING_OP_READ_FIXED:
5022 case IORING_OP_READ:
Jens Axboebcda7ba2020-02-23 16:42:51 -07005023 if (req->flags & REQ_F_BUFFER_SELECTED)
5024 kfree((void *)(unsigned long)req->rw.addr);
5025 /* fallthrough */
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005026 case IORING_OP_WRITEV:
5027 case IORING_OP_WRITE_FIXED:
5028 case IORING_OP_WRITE:
5029 if (io->rw.iov != io->rw.fast_iov)
5030 kfree(io->rw.iov);
5031 break;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005032 case IORING_OP_RECVMSG:
Jens Axboe52de1fe2020-02-27 10:15:42 -07005033 if (req->flags & REQ_F_BUFFER_SELECTED)
5034 kfree(req->sr_msg.kbuf);
5035 /* fallthrough */
5036 case IORING_OP_SENDMSG:
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005037 if (io->msg.iov != io->msg.fast_iov)
5038 kfree(io->msg.iov);
5039 break;
Jens Axboebcda7ba2020-02-23 16:42:51 -07005040 case IORING_OP_RECV:
5041 if (req->flags & REQ_F_BUFFER_SELECTED)
5042 kfree(req->sr_msg.kbuf);
5043 break;
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03005044 case IORING_OP_OPENAT:
5045 case IORING_OP_OPENAT2:
5046 case IORING_OP_STATX:
5047 putname(req->open.filename);
5048 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005049 case IORING_OP_SPLICE:
5050 io_put_file(req, req->splice.file_in,
5051 (req->splice.flags & SPLICE_F_FD_IN_FIXED));
5052 break;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005053 }
5054
5055 req->flags &= ~REQ_F_NEED_CLEANUP;
5056}
5057
Jens Axboe3529d8c2019-12-19 18:24:38 -07005058static int io_issue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Pavel Begunkov014db002020-03-03 21:33:12 +03005059 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005060{
Jackie Liua197f662019-11-08 08:09:12 -07005061 struct io_ring_ctx *ctx = req->ctx;
Jens Axboed625c6e2019-12-17 19:53:05 -07005062 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005063
Jens Axboed625c6e2019-12-17 19:53:05 -07005064 switch (req->opcode) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07005065 case IORING_OP_NOP:
Jens Axboe78e19bb2019-11-06 15:21:34 -07005066 ret = io_nop(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005067 break;
5068 case IORING_OP_READV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005069 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07005070 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005071 if (sqe) {
5072 ret = io_read_prep(req, sqe, force_nonblock);
5073 if (ret < 0)
5074 break;
5075 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005076 ret = io_read(req, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005077 break;
5078 case IORING_OP_WRITEV:
Jens Axboeedafcce2019-01-09 09:16:05 -07005079 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07005080 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005081 if (sqe) {
5082 ret = io_write_prep(req, sqe, force_nonblock);
5083 if (ret < 0)
5084 break;
5085 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005086 ret = io_write(req, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005087 break;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07005088 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005089 if (sqe) {
5090 ret = io_prep_fsync(req, sqe);
5091 if (ret < 0)
5092 break;
5093 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005094 ret = io_fsync(req, force_nonblock);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07005095 break;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005096 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005097 if (sqe) {
5098 ret = io_poll_add_prep(req, sqe);
5099 if (ret)
5100 break;
5101 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005102 ret = io_poll_add(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005103 break;
5104 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005105 if (sqe) {
5106 ret = io_poll_remove_prep(req, sqe);
5107 if (ret < 0)
5108 break;
5109 }
Jens Axboefc4df992019-12-10 14:38:45 -07005110 ret = io_poll_remove(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005111 break;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06005112 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005113 if (sqe) {
5114 ret = io_prep_sfr(req, sqe);
5115 if (ret < 0)
5116 break;
5117 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005118 ret = io_sync_file_range(req, force_nonblock);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06005119 break;
Jens Axboe0fa03c62019-04-19 13:34:07 -06005120 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005121 case IORING_OP_SEND:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005122 if (sqe) {
5123 ret = io_sendmsg_prep(req, sqe);
5124 if (ret < 0)
5125 break;
5126 }
Jens Axboefddafac2020-01-04 20:19:44 -07005127 if (req->opcode == IORING_OP_SENDMSG)
Pavel Begunkov014db002020-03-03 21:33:12 +03005128 ret = io_sendmsg(req, force_nonblock);
Jens Axboefddafac2020-01-04 20:19:44 -07005129 else
Pavel Begunkov014db002020-03-03 21:33:12 +03005130 ret = io_send(req, force_nonblock);
Jens Axboe0fa03c62019-04-19 13:34:07 -06005131 break;
Jens Axboeaa1fa282019-04-19 13:38:09 -06005132 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005133 case IORING_OP_RECV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005134 if (sqe) {
5135 ret = io_recvmsg_prep(req, sqe);
5136 if (ret)
5137 break;
5138 }
Jens Axboefddafac2020-01-04 20:19:44 -07005139 if (req->opcode == IORING_OP_RECVMSG)
Pavel Begunkov014db002020-03-03 21:33:12 +03005140 ret = io_recvmsg(req, force_nonblock);
Jens Axboefddafac2020-01-04 20:19:44 -07005141 else
Pavel Begunkov014db002020-03-03 21:33:12 +03005142 ret = io_recv(req, force_nonblock);
Jens Axboeaa1fa282019-04-19 13:38:09 -06005143 break;
Jens Axboe5262f562019-09-17 12:26:57 -06005144 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005145 if (sqe) {
5146 ret = io_timeout_prep(req, sqe, false);
5147 if (ret)
5148 break;
5149 }
Jens Axboefc4df992019-12-10 14:38:45 -07005150 ret = io_timeout(req);
Jens Axboe5262f562019-09-17 12:26:57 -06005151 break;
Jens Axboe11365042019-10-16 09:08:32 -06005152 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005153 if (sqe) {
5154 ret = io_timeout_remove_prep(req, sqe);
5155 if (ret)
5156 break;
5157 }
Jens Axboefc4df992019-12-10 14:38:45 -07005158 ret = io_timeout_remove(req);
Jens Axboe11365042019-10-16 09:08:32 -06005159 break;
Jens Axboe17f2fe32019-10-17 14:42:58 -06005160 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005161 if (sqe) {
5162 ret = io_accept_prep(req, sqe);
5163 if (ret)
5164 break;
5165 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005166 ret = io_accept(req, force_nonblock);
Jens Axboe17f2fe32019-10-17 14:42:58 -06005167 break;
Jens Axboef8e85cf2019-11-23 14:24:24 -07005168 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005169 if (sqe) {
5170 ret = io_connect_prep(req, sqe);
5171 if (ret)
5172 break;
5173 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005174 ret = io_connect(req, force_nonblock);
Jens Axboef8e85cf2019-11-23 14:24:24 -07005175 break;
Jens Axboe62755e32019-10-28 21:49:21 -06005176 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005177 if (sqe) {
5178 ret = io_async_cancel_prep(req, sqe);
5179 if (ret)
5180 break;
5181 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005182 ret = io_async_cancel(req);
Jens Axboe62755e32019-10-28 21:49:21 -06005183 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07005184 case IORING_OP_FALLOCATE:
5185 if (sqe) {
5186 ret = io_fallocate_prep(req, sqe);
5187 if (ret)
5188 break;
5189 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005190 ret = io_fallocate(req, force_nonblock);
Jens Axboed63d1b52019-12-10 10:38:56 -07005191 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07005192 case IORING_OP_OPENAT:
5193 if (sqe) {
5194 ret = io_openat_prep(req, sqe);
5195 if (ret)
5196 break;
5197 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005198 ret = io_openat(req, force_nonblock);
Jens Axboe15b71ab2019-12-11 11:20:36 -07005199 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07005200 case IORING_OP_CLOSE:
5201 if (sqe) {
5202 ret = io_close_prep(req, sqe);
5203 if (ret)
5204 break;
5205 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005206 ret = io_close(req, force_nonblock);
Jens Axboeb5dba592019-12-11 14:02:38 -07005207 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005208 case IORING_OP_FILES_UPDATE:
5209 if (sqe) {
5210 ret = io_files_update_prep(req, sqe);
5211 if (ret)
5212 break;
5213 }
5214 ret = io_files_update(req, force_nonblock);
5215 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07005216 case IORING_OP_STATX:
5217 if (sqe) {
5218 ret = io_statx_prep(req, sqe);
5219 if (ret)
5220 break;
5221 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005222 ret = io_statx(req, force_nonblock);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07005223 break;
Jens Axboe4840e412019-12-25 22:03:45 -07005224 case IORING_OP_FADVISE:
5225 if (sqe) {
5226 ret = io_fadvise_prep(req, sqe);
5227 if (ret)
5228 break;
5229 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005230 ret = io_fadvise(req, force_nonblock);
Jens Axboe4840e412019-12-25 22:03:45 -07005231 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07005232 case IORING_OP_MADVISE:
5233 if (sqe) {
5234 ret = io_madvise_prep(req, sqe);
5235 if (ret)
5236 break;
5237 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005238 ret = io_madvise(req, force_nonblock);
Jens Axboec1ca7572019-12-25 22:18:28 -07005239 break;
Jens Axboecebdb982020-01-08 17:59:24 -07005240 case IORING_OP_OPENAT2:
5241 if (sqe) {
5242 ret = io_openat2_prep(req, sqe);
5243 if (ret)
5244 break;
5245 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005246 ret = io_openat2(req, force_nonblock);
Jens Axboecebdb982020-01-08 17:59:24 -07005247 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07005248 case IORING_OP_EPOLL_CTL:
5249 if (sqe) {
5250 ret = io_epoll_ctl_prep(req, sqe);
5251 if (ret)
5252 break;
5253 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005254 ret = io_epoll_ctl(req, force_nonblock);
Jens Axboe3e4827b2020-01-08 15:18:09 -07005255 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005256 case IORING_OP_SPLICE:
5257 if (sqe) {
5258 ret = io_splice_prep(req, sqe);
5259 if (ret < 0)
5260 break;
5261 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005262 ret = io_splice(req, force_nonblock);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005263 break;
Jens Axboeddf0322d2020-02-23 16:41:33 -07005264 case IORING_OP_PROVIDE_BUFFERS:
5265 if (sqe) {
5266 ret = io_provide_buffers_prep(req, sqe);
5267 if (ret)
5268 break;
5269 }
5270 ret = io_provide_buffers(req, force_nonblock);
5271 break;
Jens Axboe067524e2020-03-02 16:32:28 -07005272 case IORING_OP_REMOVE_BUFFERS:
5273 if (sqe) {
5274 ret = io_remove_buffers_prep(req, sqe);
5275 if (ret)
5276 break;
5277 }
5278 ret = io_remove_buffers(req, force_nonblock);
Jens Axboe31b51512019-01-18 22:56:34 -07005279 break;
5280 default:
5281 ret = -EINVAL;
Jens Axboeedafcce2019-01-09 09:16:05 -07005282 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005283 }
5284
Jens Axboe31b51512019-01-18 22:56:34 -07005285 if (ret)
5286 return ret;
5287
5288 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboe11ba8202020-01-15 21:51:17 -07005289 const bool in_async = io_wq_current_is_worker();
5290
Jens Axboe9e645e112019-05-10 16:07:28 -06005291 if (req->result == -EAGAIN)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005292 return -EAGAIN;
5293
Jens Axboe11ba8202020-01-15 21:51:17 -07005294 /* workqueue context doesn't hold uring_lock, grab it now */
5295 if (in_async)
5296 mutex_lock(&ctx->uring_lock);
5297
Jens Axboe2b188cc2019-01-07 10:46:33 -07005298 io_iopoll_req_issued(req);
Jens Axboe11ba8202020-01-15 21:51:17 -07005299
5300 if (in_async)
5301 mutex_unlock(&ctx->uring_lock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005302 }
5303
5304 return 0;
5305}
5306
Jens Axboe561fb042019-10-24 07:25:42 -06005307static void io_wq_submit_work(struct io_wq_work **workptr)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005308{
Jens Axboe561fb042019-10-24 07:25:42 -06005309 struct io_wq_work *work = *workptr;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005310 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboe561fb042019-10-24 07:25:42 -06005311 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005312
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07005313 /* if NO_CANCEL is set, we must still run the work */
5314 if ((work->flags & (IO_WQ_WORK_CANCEL|IO_WQ_WORK_NO_CANCEL)) ==
5315 IO_WQ_WORK_CANCEL) {
Jens Axboe561fb042019-10-24 07:25:42 -06005316 ret = -ECANCELED;
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07005317 }
Jens Axboe31b51512019-01-18 22:56:34 -07005318
Jens Axboe561fb042019-10-24 07:25:42 -06005319 if (!ret) {
Jens Axboe561fb042019-10-24 07:25:42 -06005320 do {
Pavel Begunkov014db002020-03-03 21:33:12 +03005321 ret = io_issue_sqe(req, NULL, false);
Jens Axboe561fb042019-10-24 07:25:42 -06005322 /*
5323 * We can get EAGAIN for polled IO even though we're
5324 * forcing a sync submission from here, since we can't
5325 * wait for request slots on the block side.
5326 */
5327 if (ret != -EAGAIN)
5328 break;
5329 cond_resched();
5330 } while (1);
5331 }
Jens Axboe31b51512019-01-18 22:56:34 -07005332
Jens Axboe561fb042019-10-24 07:25:42 -06005333 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005334 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07005335 io_cqring_add_event(req, ret);
Jens Axboe817869d2019-04-30 14:44:05 -06005336 io_put_req(req);
Jens Axboeedafcce2019-01-09 09:16:05 -07005337 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07005338
Pavel Begunkove9fd9392020-03-04 16:14:12 +03005339 io_steal_work(req, workptr);
Jens Axboe31b51512019-01-18 22:56:34 -07005340}
Jens Axboe2b188cc2019-01-07 10:46:33 -07005341
Jens Axboe15b71ab2019-12-11 11:20:36 -07005342static int io_req_needs_file(struct io_kiocb *req, int fd)
Jens Axboe9e3aa612019-12-11 15:55:43 -07005343{
Jens Axboed3656342019-12-18 09:50:26 -07005344 if (!io_op_defs[req->opcode].needs_file)
Jens Axboe9e3aa612019-12-11 15:55:43 -07005345 return 0;
Jens Axboe0b5faf62020-02-06 21:42:51 -07005346 if ((fd == -1 || fd == AT_FDCWD) && io_op_defs[req->opcode].fd_non_neg)
Jens Axboed3656342019-12-18 09:50:26 -07005347 return 0;
5348 return 1;
Jens Axboe09bb8392019-03-13 12:39:28 -06005349}
5350
Jens Axboe65e19f52019-10-26 07:20:21 -06005351static inline struct file *io_file_from_index(struct io_ring_ctx *ctx,
5352 int index)
Jens Axboe09bb8392019-03-13 12:39:28 -06005353{
Jens Axboe65e19f52019-10-26 07:20:21 -06005354 struct fixed_file_table *table;
5355
Jens Axboe05f3fb32019-12-09 11:22:50 -07005356 table = &ctx->file_data->table[index >> IORING_FILE_TABLE_SHIFT];
5357 return table->files[index & IORING_FILE_TABLE_MASK];;
Jens Axboe65e19f52019-10-26 07:20:21 -06005358}
5359
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005360static int io_file_get(struct io_submit_state *state, struct io_kiocb *req,
5361 int fd, struct file **out_file, bool fixed)
5362{
5363 struct io_ring_ctx *ctx = req->ctx;
5364 struct file *file;
5365
5366 if (fixed) {
5367 if (unlikely(!ctx->file_data ||
5368 (unsigned) fd >= ctx->nr_user_files))
5369 return -EBADF;
5370 fd = array_index_nospec(fd, ctx->nr_user_files);
5371 file = io_file_from_index(ctx, fd);
5372 if (!file)
5373 return -EBADF;
Xiaoguang Wang05589552020-03-31 14:05:18 +08005374 req->fixed_file_refs = ctx->file_data->cur_refs;
5375 percpu_ref_get(req->fixed_file_refs);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005376 } else {
5377 trace_io_uring_file_get(ctx, fd);
5378 file = __io_file_get(state, fd);
5379 if (unlikely(!file))
5380 return -EBADF;
5381 }
5382
5383 *out_file = file;
5384 return 0;
5385}
5386
Jens Axboe3529d8c2019-12-19 18:24:38 -07005387static int io_req_set_file(struct io_submit_state *state, struct io_kiocb *req,
5388 const struct io_uring_sqe *sqe)
Jens Axboe09bb8392019-03-13 12:39:28 -06005389{
5390 unsigned flags;
Jens Axboed3656342019-12-18 09:50:26 -07005391 int fd;
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005392 bool fixed;
Jens Axboe09bb8392019-03-13 12:39:28 -06005393
Jens Axboe3529d8c2019-12-19 18:24:38 -07005394 flags = READ_ONCE(sqe->flags);
5395 fd = READ_ONCE(sqe->fd);
Jens Axboe09bb8392019-03-13 12:39:28 -06005396
Jens Axboed3656342019-12-18 09:50:26 -07005397 if (!io_req_needs_file(req, fd))
5398 return 0;
Jens Axboe09bb8392019-03-13 12:39:28 -06005399
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005400 fixed = (flags & IOSQE_FIXED_FILE);
5401 if (unlikely(!fixed && req->needs_fixed_file))
5402 return -EBADF;
Jens Axboe09bb8392019-03-13 12:39:28 -06005403
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005404 return io_file_get(state, req, fd, &req->file, fixed);
Jens Axboe09bb8392019-03-13 12:39:28 -06005405}
5406
Jackie Liua197f662019-11-08 08:09:12 -07005407static int io_grab_files(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005408{
Jens Axboefcb323c2019-10-24 12:39:47 -06005409 int ret = -EBADF;
Jackie Liua197f662019-11-08 08:09:12 -07005410 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06005411
Jens Axboef86cd202020-01-29 13:46:44 -07005412 if (req->work.files)
5413 return 0;
Pavel Begunkovb14cca02020-01-17 04:45:59 +03005414 if (!ctx->ring_file)
Jens Axboeb5dba592019-12-11 14:02:38 -07005415 return -EBADF;
5416
Jens Axboefcb323c2019-10-24 12:39:47 -06005417 rcu_read_lock();
5418 spin_lock_irq(&ctx->inflight_lock);
5419 /*
5420 * We use the f_ops->flush() handler to ensure that we can flush
5421 * out work accessing these files if the fd is closed. Check if
5422 * the fd has changed since we started down this path, and disallow
5423 * this operation if it has.
5424 */
Pavel Begunkovb14cca02020-01-17 04:45:59 +03005425 if (fcheck(ctx->ring_fd) == ctx->ring_file) {
Jens Axboefcb323c2019-10-24 12:39:47 -06005426 list_add(&req->inflight_entry, &ctx->inflight_list);
5427 req->flags |= REQ_F_INFLIGHT;
5428 req->work.files = current->files;
5429 ret = 0;
5430 }
5431 spin_unlock_irq(&ctx->inflight_lock);
5432 rcu_read_unlock();
5433
5434 return ret;
5435}
5436
Jens Axboe2665abf2019-11-05 12:40:47 -07005437static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer)
5438{
Jens Axboead8a48a2019-11-15 08:49:11 -07005439 struct io_timeout_data *data = container_of(timer,
5440 struct io_timeout_data, timer);
5441 struct io_kiocb *req = data->req;
Jens Axboe2665abf2019-11-05 12:40:47 -07005442 struct io_ring_ctx *ctx = req->ctx;
5443 struct io_kiocb *prev = NULL;
5444 unsigned long flags;
Jens Axboe2665abf2019-11-05 12:40:47 -07005445
5446 spin_lock_irqsave(&ctx->completion_lock, flags);
5447
5448 /*
5449 * We don't expect the list to be empty, that will only happen if we
5450 * race with the completion of the linked work.
5451 */
Pavel Begunkov44932332019-12-05 16:16:35 +03005452 if (!list_empty(&req->link_list)) {
5453 prev = list_entry(req->link_list.prev, struct io_kiocb,
5454 link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07005455 if (refcount_inc_not_zero(&prev->refs)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03005456 list_del_init(&req->link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07005457 prev->flags &= ~REQ_F_LINK_TIMEOUT;
5458 } else
Jens Axboe76a46e02019-11-10 23:34:16 -07005459 prev = NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07005460 }
5461
5462 spin_unlock_irqrestore(&ctx->completion_lock, flags);
5463
5464 if (prev) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005465 req_set_fail_links(prev);
Pavel Begunkov014db002020-03-03 21:33:12 +03005466 io_async_find_and_cancel(ctx, req, prev->user_data, -ETIME);
Jens Axboe76a46e02019-11-10 23:34:16 -07005467 io_put_req(prev);
Jens Axboe47f46762019-11-09 17:43:02 -07005468 } else {
5469 io_cqring_add_event(req, -ETIME);
5470 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07005471 }
Jens Axboe2665abf2019-11-05 12:40:47 -07005472 return HRTIMER_NORESTART;
5473}
5474
Jens Axboead8a48a2019-11-15 08:49:11 -07005475static void io_queue_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07005476{
Jens Axboe76a46e02019-11-10 23:34:16 -07005477 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07005478
Jens Axboe76a46e02019-11-10 23:34:16 -07005479 /*
5480 * If the list is now empty, then our linked request finished before
5481 * we got a chance to setup the timer
5482 */
5483 spin_lock_irq(&ctx->completion_lock);
Pavel Begunkov44932332019-12-05 16:16:35 +03005484 if (!list_empty(&req->link_list)) {
Jens Axboe2d283902019-12-04 11:08:05 -07005485 struct io_timeout_data *data = &req->io->timeout;
Jens Axboe94ae5e72019-11-14 19:39:52 -07005486
Jens Axboead8a48a2019-11-15 08:49:11 -07005487 data->timer.function = io_link_timeout_fn;
5488 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts),
5489 data->mode);
Jens Axboe2665abf2019-11-05 12:40:47 -07005490 }
Jens Axboe76a46e02019-11-10 23:34:16 -07005491 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe2665abf2019-11-05 12:40:47 -07005492
Jens Axboe2665abf2019-11-05 12:40:47 -07005493 /* drop submission reference */
Jens Axboe76a46e02019-11-10 23:34:16 -07005494 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07005495}
5496
Jens Axboead8a48a2019-11-15 08:49:11 -07005497static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07005498{
5499 struct io_kiocb *nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005500
Jens Axboe2665abf2019-11-05 12:40:47 -07005501 if (!(req->flags & REQ_F_LINK))
5502 return NULL;
Jens Axboed7718a92020-02-14 22:23:12 -07005503 /* for polled retry, if flag is set, we already went through here */
5504 if (req->flags & REQ_F_POLLED)
5505 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07005506
Pavel Begunkov44932332019-12-05 16:16:35 +03005507 nxt = list_first_entry_or_null(&req->link_list, struct io_kiocb,
5508 link_list);
Jens Axboed625c6e2019-12-17 19:53:05 -07005509 if (!nxt || nxt->opcode != IORING_OP_LINK_TIMEOUT)
Jens Axboe76a46e02019-11-10 23:34:16 -07005510 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07005511
Jens Axboe76a46e02019-11-10 23:34:16 -07005512 req->flags |= REQ_F_LINK_TIMEOUT;
Jens Axboe76a46e02019-11-10 23:34:16 -07005513 return nxt;
Jens Axboe2665abf2019-11-05 12:40:47 -07005514}
5515
Jens Axboe3529d8c2019-12-19 18:24:38 -07005516static void __io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005517{
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005518 struct io_kiocb *linked_timeout;
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005519 struct io_kiocb *nxt;
Jens Axboe193155c2020-02-22 23:22:19 -07005520 const struct cred *old_creds = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005521 int ret;
5522
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005523again:
5524 linked_timeout = io_prep_linked_timeout(req);
5525
Jens Axboe193155c2020-02-22 23:22:19 -07005526 if (req->work.creds && req->work.creds != current_cred()) {
5527 if (old_creds)
5528 revert_creds(old_creds);
5529 if (old_creds == req->work.creds)
5530 old_creds = NULL; /* restored original creds */
5531 else
5532 old_creds = override_creds(req->work.creds);
5533 }
5534
Pavel Begunkov014db002020-03-03 21:33:12 +03005535 ret = io_issue_sqe(req, sqe, true);
Jens Axboe491381ce2019-10-17 09:20:46 -06005536
5537 /*
5538 * We async punt it if the file wasn't marked NOWAIT, or if the file
5539 * doesn't support non-blocking read/write attempts
5540 */
5541 if (ret == -EAGAIN && (!(req->flags & REQ_F_NOWAIT) ||
5542 (req->flags & REQ_F_MUST_PUNT))) {
Jens Axboed7718a92020-02-14 22:23:12 -07005543 if (io_arm_poll_handler(req)) {
5544 if (linked_timeout)
5545 io_queue_linked_timeout(linked_timeout);
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005546 goto exit;
Jens Axboed7718a92020-02-14 22:23:12 -07005547 }
Pavel Begunkov86a761f2020-01-22 23:09:36 +03005548punt:
Jens Axboef86cd202020-01-29 13:46:44 -07005549 if (io_op_defs[req->opcode].file_table) {
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03005550 ret = io_grab_files(req);
5551 if (ret)
5552 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005553 }
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03005554
5555 /*
5556 * Queued up for async execution, worker will release
5557 * submit reference when the iocb is actually submitted.
5558 */
5559 io_queue_async_work(req);
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005560 goto exit;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005561 }
Jens Axboee65ef562019-03-12 10:16:44 -06005562
Jens Axboefcb323c2019-10-24 12:39:47 -06005563err:
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005564 nxt = NULL;
Jens Axboee65ef562019-03-12 10:16:44 -06005565 /* drop submission reference */
Jens Axboe2a44f462020-02-25 13:25:41 -07005566 io_put_req_find_next(req, &nxt);
Jens Axboee65ef562019-03-12 10:16:44 -06005567
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03005568 if (linked_timeout) {
Jens Axboe76a46e02019-11-10 23:34:16 -07005569 if (!ret)
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03005570 io_queue_linked_timeout(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07005571 else
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03005572 io_put_req(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07005573 }
5574
Jens Axboee65ef562019-03-12 10:16:44 -06005575 /* and drop final reference, if we failed */
Jens Axboe9e645e112019-05-10 16:07:28 -06005576 if (ret) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07005577 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005578 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06005579 io_put_req(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06005580 }
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005581 if (nxt) {
5582 req = nxt;
Pavel Begunkov86a761f2020-01-22 23:09:36 +03005583
5584 if (req->flags & REQ_F_FORCE_ASYNC)
5585 goto punt;
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005586 goto again;
5587 }
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005588exit:
Jens Axboe193155c2020-02-22 23:22:19 -07005589 if (old_creds)
5590 revert_creds(old_creds);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005591}
5592
Jens Axboe3529d8c2019-12-19 18:24:38 -07005593static void io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jackie Liu4fe2c962019-09-09 20:50:40 +08005594{
5595 int ret;
5596
Jens Axboe3529d8c2019-12-19 18:24:38 -07005597 ret = io_req_defer(req, sqe);
Jackie Liu4fe2c962019-09-09 20:50:40 +08005598 if (ret) {
5599 if (ret != -EIOCBQUEUED) {
Pavel Begunkov11185912020-01-22 23:09:35 +03005600fail_req:
Jens Axboe78e19bb2019-11-06 15:21:34 -07005601 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005602 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07005603 io_double_put_req(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08005604 }
Pavel Begunkov25508782019-12-30 21:24:47 +03005605 } else if (req->flags & REQ_F_FORCE_ASYNC) {
Pavel Begunkov11185912020-01-22 23:09:35 +03005606 ret = io_req_defer_prep(req, sqe);
5607 if (unlikely(ret < 0))
5608 goto fail_req;
Jens Axboece35a472019-12-17 08:04:44 -07005609 /*
5610 * Never try inline submit of IOSQE_ASYNC is set, go straight
5611 * to async execution.
5612 */
5613 req->work.flags |= IO_WQ_WORK_CONCURRENT;
5614 io_queue_async_work(req);
5615 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07005616 __io_queue_sqe(req, sqe);
Jens Axboece35a472019-12-17 08:04:44 -07005617 }
Jackie Liu4fe2c962019-09-09 20:50:40 +08005618}
5619
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005620static inline void io_queue_link_head(struct io_kiocb *req)
Jackie Liu4fe2c962019-09-09 20:50:40 +08005621{
Jens Axboe94ae5e72019-11-14 19:39:52 -07005622 if (unlikely(req->flags & REQ_F_FAIL_LINK)) {
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005623 io_cqring_add_event(req, -ECANCELED);
5624 io_double_put_req(req);
5625 } else
Jens Axboe3529d8c2019-12-19 18:24:38 -07005626 io_queue_sqe(req, NULL);
Jackie Liu4fe2c962019-09-09 20:50:40 +08005627}
5628
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005629#define SQE_VALID_FLAGS (IOSQE_FIXED_FILE|IOSQE_IO_DRAIN|IOSQE_IO_LINK| \
Jens Axboebcda7ba2020-02-23 16:42:51 -07005630 IOSQE_IO_HARDLINK | IOSQE_ASYNC | \
5631 IOSQE_BUFFER_SELECT)
Jens Axboe9e645e112019-05-10 16:07:28 -06005632
Jens Axboe3529d8c2019-12-19 18:24:38 -07005633static bool io_submit_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
5634 struct io_submit_state *state, struct io_kiocb **link)
Jens Axboe9e645e112019-05-10 16:07:28 -06005635{
Jackie Liua197f662019-11-08 08:09:12 -07005636 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005637 unsigned int sqe_flags;
Jens Axboe75c6a032020-01-28 10:15:23 -07005638 int ret, id;
Jens Axboe9e645e112019-05-10 16:07:28 -06005639
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005640 sqe_flags = READ_ONCE(sqe->flags);
Jens Axboe9e645e112019-05-10 16:07:28 -06005641
5642 /* enforce forwards compatibility on users */
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005643 if (unlikely(sqe_flags & ~SQE_VALID_FLAGS)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06005644 ret = -EINVAL;
Pavel Begunkov196be952019-11-07 01:41:06 +03005645 goto err_req;
Jens Axboe9e645e112019-05-10 16:07:28 -06005646 }
5647
Jens Axboebcda7ba2020-02-23 16:42:51 -07005648 if ((sqe_flags & IOSQE_BUFFER_SELECT) &&
5649 !io_op_defs[req->opcode].buffer_select) {
5650 ret = -EOPNOTSUPP;
5651 goto err_req;
5652 }
5653
Jens Axboe75c6a032020-01-28 10:15:23 -07005654 id = READ_ONCE(sqe->personality);
5655 if (id) {
Jens Axboe193155c2020-02-22 23:22:19 -07005656 req->work.creds = idr_find(&ctx->personality_idr, id);
5657 if (unlikely(!req->work.creds)) {
Jens Axboe75c6a032020-01-28 10:15:23 -07005658 ret = -EINVAL;
5659 goto err_req;
5660 }
Jens Axboe193155c2020-02-22 23:22:19 -07005661 get_cred(req->work.creds);
Jens Axboe75c6a032020-01-28 10:15:23 -07005662 }
5663
Pavel Begunkov6b47ee62020-01-18 20:22:41 +03005664 /* same numerical values with corresponding REQ_F_*, safe to copy */
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005665 req->flags |= sqe_flags & (IOSQE_IO_DRAIN | IOSQE_IO_HARDLINK |
Jens Axboebcda7ba2020-02-23 16:42:51 -07005666 IOSQE_ASYNC | IOSQE_FIXED_FILE |
5667 IOSQE_BUFFER_SELECT);
Jens Axboe9e645e112019-05-10 16:07:28 -06005668
Jens Axboe3529d8c2019-12-19 18:24:38 -07005669 ret = io_req_set_file(state, req, sqe);
Jens Axboe9e645e112019-05-10 16:07:28 -06005670 if (unlikely(ret)) {
5671err_req:
Jens Axboe78e19bb2019-11-06 15:21:34 -07005672 io_cqring_add_event(req, ret);
5673 io_double_put_req(req);
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03005674 return false;
Jens Axboe9e645e112019-05-10 16:07:28 -06005675 }
5676
Jens Axboe9e645e112019-05-10 16:07:28 -06005677 /*
5678 * If we already have a head request, queue this one for async
5679 * submittal once the head completes. If we don't have a head but
5680 * IOSQE_IO_LINK is set in the sqe, start a new head. This one will be
5681 * submitted sync once the chain is complete. If none of those
5682 * conditions are true (normal request), then just queue it.
5683 */
5684 if (*link) {
Pavel Begunkov9d763772019-12-17 02:22:07 +03005685 struct io_kiocb *head = *link;
Jens Axboe9e645e112019-05-10 16:07:28 -06005686
Pavel Begunkov8cdf2192020-01-25 00:40:24 +03005687 /*
5688 * Taking sequential execution of a link, draining both sides
5689 * of the link also fullfils IOSQE_IO_DRAIN semantics for all
5690 * requests in the link. So, it drains the head and the
5691 * next after the link request. The last one is done via
5692 * drain_next flag to persist the effect across calls.
5693 */
Pavel Begunkov711be032020-01-17 03:57:59 +03005694 if (sqe_flags & IOSQE_IO_DRAIN) {
5695 head->flags |= REQ_F_IO_DRAIN;
5696 ctx->drain_next = 1;
5697 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07005698 if (io_alloc_async_ctx(req)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06005699 ret = -EAGAIN;
5700 goto err_req;
5701 }
5702
Jens Axboe3529d8c2019-12-19 18:24:38 -07005703 ret = io_req_defer_prep(req, sqe);
Jens Axboe2d283902019-12-04 11:08:05 -07005704 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005705 /* fail even hard links since we don't submit */
Pavel Begunkov9d763772019-12-17 02:22:07 +03005706 head->flags |= REQ_F_FAIL_LINK;
Jens Axboef67676d2019-12-02 11:03:47 -07005707 goto err_req;
Jens Axboe2d283902019-12-04 11:08:05 -07005708 }
Pavel Begunkov9d763772019-12-17 02:22:07 +03005709 trace_io_uring_link(ctx, req, head);
5710 list_add_tail(&req->link_list, &head->link_list);
Jens Axboe9e645e112019-05-10 16:07:28 -06005711
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005712 /* last request of a link, enqueue the link */
5713 if (!(sqe_flags & (IOSQE_IO_LINK|IOSQE_IO_HARDLINK))) {
5714 io_queue_link_head(head);
5715 *link = NULL;
5716 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005717 } else {
Pavel Begunkov711be032020-01-17 03:57:59 +03005718 if (unlikely(ctx->drain_next)) {
5719 req->flags |= REQ_F_IO_DRAIN;
5720 req->ctx->drain_next = 0;
5721 }
5722 if (sqe_flags & (IOSQE_IO_LINK|IOSQE_IO_HARDLINK)) {
5723 req->flags |= REQ_F_LINK;
Pavel Begunkov711be032020-01-17 03:57:59 +03005724 INIT_LIST_HEAD(&req->link_list);
Pavel Begunkovf1d96a82020-03-13 22:29:14 +03005725
5726 if (io_alloc_async_ctx(req)) {
5727 ret = -EAGAIN;
5728 goto err_req;
5729 }
Pavel Begunkov711be032020-01-17 03:57:59 +03005730 ret = io_req_defer_prep(req, sqe);
5731 if (ret)
5732 req->flags |= REQ_F_FAIL_LINK;
5733 *link = req;
5734 } else {
5735 io_queue_sqe(req, sqe);
5736 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005737 }
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03005738
5739 return true;
Jens Axboe9e645e112019-05-10 16:07:28 -06005740}
5741
Jens Axboe9a56a232019-01-09 09:06:50 -07005742/*
5743 * Batched submission is done, ensure local IO is flushed out.
5744 */
5745static void io_submit_state_end(struct io_submit_state *state)
5746{
5747 blk_finish_plug(&state->plug);
Jens Axboe3d6770f2019-04-13 11:50:54 -06005748 io_file_put(state);
Jens Axboe2579f912019-01-09 09:10:43 -07005749 if (state->free_reqs)
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03005750 kmem_cache_free_bulk(req_cachep, state->free_reqs, state->reqs);
Jens Axboe9a56a232019-01-09 09:06:50 -07005751}
5752
5753/*
5754 * Start submission side cache.
5755 */
5756static void io_submit_state_start(struct io_submit_state *state,
Jackie Liu22efde52019-12-02 17:14:52 +08005757 unsigned int max_ios)
Jens Axboe9a56a232019-01-09 09:06:50 -07005758{
5759 blk_start_plug(&state->plug);
Jens Axboe2579f912019-01-09 09:10:43 -07005760 state->free_reqs = 0;
Jens Axboe9a56a232019-01-09 09:06:50 -07005761 state->file = NULL;
5762 state->ios_left = max_ios;
5763}
5764
Jens Axboe2b188cc2019-01-07 10:46:33 -07005765static void io_commit_sqring(struct io_ring_ctx *ctx)
5766{
Hristo Venev75b28af2019-08-26 17:23:46 +00005767 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005768
Pavel Begunkovcaf582c2019-12-30 21:24:46 +03005769 /*
5770 * Ensure any loads from the SQEs are done at this point,
5771 * since once we write the new head, the application could
5772 * write new data to them.
5773 */
5774 smp_store_release(&rings->sq.head, ctx->cached_sq_head);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005775}
5776
5777/*
Jens Axboe3529d8c2019-12-19 18:24:38 -07005778 * Fetch an sqe, if one is available. Note that sqe_ptr will point to memory
Jens Axboe2b188cc2019-01-07 10:46:33 -07005779 * that is mapped by userspace. This means that care needs to be taken to
5780 * ensure that reads are stable, as we cannot rely on userspace always
5781 * being a good citizen. If members of the sqe are validated and then later
5782 * used, it's important that those reads are done through READ_ONCE() to
5783 * prevent a re-load down the line.
5784 */
Jens Axboe3529d8c2019-12-19 18:24:38 -07005785static bool io_get_sqring(struct io_ring_ctx *ctx, struct io_kiocb *req,
5786 const struct io_uring_sqe **sqe_ptr)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005787{
Hristo Venev75b28af2019-08-26 17:23:46 +00005788 u32 *sq_array = ctx->sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005789 unsigned head;
5790
5791 /*
5792 * The cached sq head (or cq tail) serves two purposes:
5793 *
5794 * 1) allows us to batch the cost of updating the user visible
5795 * head updates.
5796 * 2) allows the kernel side to track the head on its own, even
5797 * though the application is the one updating it.
5798 */
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005799 head = READ_ONCE(sq_array[ctx->cached_sq_head & ctx->sq_mask]);
Pavel Begunkov9835d6f2019-11-21 21:24:56 +03005800 if (likely(head < ctx->sq_entries)) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03005801 /*
5802 * All io need record the previous position, if LINK vs DARIN,
5803 * it can be used to mark the position of the first IO in the
5804 * link list.
5805 */
5806 req->sequence = ctx->cached_sq_head;
Jens Axboe3529d8c2019-12-19 18:24:38 -07005807 *sqe_ptr = &ctx->sq_sqes[head];
5808 req->opcode = READ_ONCE((*sqe_ptr)->opcode);
5809 req->user_data = READ_ONCE((*sqe_ptr)->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005810 ctx->cached_sq_head++;
5811 return true;
5812 }
5813
5814 /* drop invalid entries */
5815 ctx->cached_sq_head++;
Jens Axboe498ccd92019-10-25 10:04:25 -06005816 ctx->cached_sq_dropped++;
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005817 WRITE_ONCE(ctx->rings->sq_dropped, ctx->cached_sq_dropped);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005818 return false;
5819}
5820
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005821static int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr,
Pavel Begunkovae9428c2019-11-06 00:22:14 +03005822 struct file *ring_file, int ring_fd,
5823 struct mm_struct **mm, bool async)
Jens Axboe6c271ce2019-01-10 11:22:30 -07005824{
5825 struct io_submit_state state, *statep = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06005826 struct io_kiocb *link = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06005827 int i, submitted = 0;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005828 bool mm_fault = false;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005829
Jens Axboec4a2ed72019-11-21 21:01:26 -07005830 /* if we have a backlog and couldn't flush it all, return BUSY */
Jens Axboead3eb2c2019-12-18 17:12:20 -07005831 if (test_bit(0, &ctx->sq_check_overflow)) {
5832 if (!list_empty(&ctx->cq_overflow_list) &&
5833 !io_cqring_overflow_flush(ctx, false))
5834 return -EBUSY;
5835 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07005836
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005837 /* make sure SQ entry isn't read before tail */
5838 nr = min3(nr, ctx->sq_entries, io_sqring_entries(ctx));
Pavel Begunkov9ef4f122019-12-30 21:24:44 +03005839
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03005840 if (!percpu_ref_tryget_many(&ctx->refs, nr))
5841 return -EAGAIN;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005842
5843 if (nr > IO_PLUG_THRESHOLD) {
Jackie Liu22efde52019-12-02 17:14:52 +08005844 io_submit_state_start(&state, nr);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005845 statep = &state;
5846 }
5847
Pavel Begunkovb14cca02020-01-17 04:45:59 +03005848 ctx->ring_fd = ring_fd;
5849 ctx->ring_file = ring_file;
5850
Jens Axboe6c271ce2019-01-10 11:22:30 -07005851 for (i = 0; i < nr; i++) {
Jens Axboe3529d8c2019-12-19 18:24:38 -07005852 const struct io_uring_sqe *sqe;
Pavel Begunkov196be952019-11-07 01:41:06 +03005853 struct io_kiocb *req;
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005854 int err;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005855
Pavel Begunkov196be952019-11-07 01:41:06 +03005856 req = io_get_req(ctx, statep);
5857 if (unlikely(!req)) {
5858 if (!submitted)
5859 submitted = -EAGAIN;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005860 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06005861 }
Jens Axboe3529d8c2019-12-19 18:24:38 -07005862 if (!io_get_sqring(ctx, req, &sqe)) {
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03005863 __io_req_do_free(req);
Pavel Begunkov196be952019-11-07 01:41:06 +03005864 break;
5865 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005866
Jens Axboed3656342019-12-18 09:50:26 -07005867 /* will complete beyond this point, count as submitted */
5868 submitted++;
5869
5870 if (unlikely(req->opcode >= IORING_OP_LAST)) {
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005871 err = -EINVAL;
5872fail_req:
5873 io_cqring_add_event(req, err);
Jens Axboed3656342019-12-18 09:50:26 -07005874 io_double_put_req(req);
5875 break;
5876 }
5877
5878 if (io_op_defs[req->opcode].needs_mm && !*mm) {
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005879 mm_fault = mm_fault || !mmget_not_zero(ctx->sqo_mm);
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005880 if (unlikely(mm_fault)) {
5881 err = -EFAULT;
5882 goto fail_req;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005883 }
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005884 use_mm(ctx->sqo_mm);
5885 *mm = ctx->sqo_mm;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005886 }
5887
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03005888 req->needs_fixed_file = async;
Jens Axboe354420f2020-01-08 18:55:15 -07005889 trace_io_uring_submit_sqe(ctx, req->opcode, req->user_data,
5890 true, async);
Jens Axboe3529d8c2019-12-19 18:24:38 -07005891 if (!io_submit_sqe(req, sqe, statep, &link))
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03005892 break;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005893 }
5894
Pavel Begunkov9466f432020-01-25 22:34:01 +03005895 if (unlikely(submitted != nr)) {
5896 int ref_used = (submitted == -EAGAIN) ? 0 : submitted;
5897
5898 percpu_ref_put_many(&ctx->refs, nr - ref_used);
5899 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005900 if (link)
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005901 io_queue_link_head(link);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005902 if (statep)
5903 io_submit_state_end(&state);
5904
Pavel Begunkovae9428c2019-11-06 00:22:14 +03005905 /* Commit SQ ring head once we've consumed and submitted all SQEs */
5906 io_commit_sqring(ctx);
5907
Jens Axboe6c271ce2019-01-10 11:22:30 -07005908 return submitted;
5909}
5910
5911static int io_sq_thread(void *data)
5912{
Jens Axboe6c271ce2019-01-10 11:22:30 -07005913 struct io_ring_ctx *ctx = data;
5914 struct mm_struct *cur_mm = NULL;
Jens Axboe181e4482019-11-25 08:52:30 -07005915 const struct cred *old_cred;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005916 mm_segment_t old_fs;
5917 DEFINE_WAIT(wait);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005918 unsigned long timeout;
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005919 int ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005920
Jens Axboe206aefd2019-11-07 18:27:42 -07005921 complete(&ctx->completions[1]);
Jackie Liua4c0b3d2019-07-08 13:41:12 +08005922
Jens Axboe6c271ce2019-01-10 11:22:30 -07005923 old_fs = get_fs();
5924 set_fs(USER_DS);
Jens Axboe181e4482019-11-25 08:52:30 -07005925 old_cred = override_creds(ctx->creds);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005926
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005927 timeout = jiffies + ctx->sq_thread_idle;
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02005928 while (!kthread_should_park()) {
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005929 unsigned int to_submit;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005930
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005931 if (!list_empty(&ctx->poll_list)) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07005932 unsigned nr_events = 0;
5933
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005934 mutex_lock(&ctx->uring_lock);
5935 if (!list_empty(&ctx->poll_list))
5936 io_iopoll_getevents(ctx, &nr_events, 0);
5937 else
Jens Axboe6c271ce2019-01-10 11:22:30 -07005938 timeout = jiffies + ctx->sq_thread_idle;
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005939 mutex_unlock(&ctx->uring_lock);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005940 }
5941
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005942 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07005943
5944 /*
5945 * If submit got -EBUSY, flag us as needing the application
5946 * to enter the kernel to reap and flush events.
5947 */
5948 if (!to_submit || ret == -EBUSY) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07005949 /*
Stefano Garzarella7143b5a2020-02-21 16:42:16 +01005950 * Drop cur_mm before scheduling, we can't hold it for
5951 * long periods (or over schedule()). Do this before
5952 * adding ourselves to the waitqueue, as the unuse/drop
5953 * may sleep.
5954 */
5955 if (cur_mm) {
5956 unuse_mm(cur_mm);
5957 mmput(cur_mm);
5958 cur_mm = NULL;
5959 }
5960
5961 /*
Jens Axboe6c271ce2019-01-10 11:22:30 -07005962 * We're polling. If we're within the defined idle
5963 * period, then let us spin without work before going
Jens Axboec1edbf52019-11-10 16:56:04 -07005964 * to sleep. The exception is if we got EBUSY doing
5965 * more IO, we should wait for the application to
5966 * reap events and wake us up.
Jens Axboe6c271ce2019-01-10 11:22:30 -07005967 */
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005968 if (!list_empty(&ctx->poll_list) ||
Jens Axboedf069d82020-02-04 16:48:34 -07005969 (!time_after(jiffies, timeout) && ret != -EBUSY &&
5970 !percpu_ref_is_dying(&ctx->refs))) {
Jens Axboeb41e9852020-02-17 09:52:41 -07005971 if (current->task_works)
5972 task_work_run();
Jens Axboe9831a902019-09-19 09:48:55 -06005973 cond_resched();
Jens Axboe6c271ce2019-01-10 11:22:30 -07005974 continue;
5975 }
5976
Jens Axboe6c271ce2019-01-10 11:22:30 -07005977 prepare_to_wait(&ctx->sqo_wait, &wait,
5978 TASK_INTERRUPTIBLE);
5979
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005980 /*
5981 * While doing polled IO, before going to sleep, we need
5982 * to check if there are new reqs added to poll_list, it
5983 * is because reqs may have been punted to io worker and
5984 * will be added to poll_list later, hence check the
5985 * poll_list again.
5986 */
5987 if ((ctx->flags & IORING_SETUP_IOPOLL) &&
5988 !list_empty_careful(&ctx->poll_list)) {
5989 finish_wait(&ctx->sqo_wait, &wait);
5990 continue;
5991 }
5992
Jens Axboe6c271ce2019-01-10 11:22:30 -07005993 /* Tell userspace we may need a wakeup call */
Hristo Venev75b28af2019-08-26 17:23:46 +00005994 ctx->rings->sq_flags |= IORING_SQ_NEED_WAKEUP;
Stefan Bühler0d7bae62019-04-19 11:57:45 +02005995 /* make sure to read SQ tail after writing flags */
5996 smp_mb();
Jens Axboe6c271ce2019-01-10 11:22:30 -07005997
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005998 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07005999 if (!to_submit || ret == -EBUSY) {
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02006000 if (kthread_should_park()) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07006001 finish_wait(&ctx->sqo_wait, &wait);
6002 break;
6003 }
Jens Axboeb41e9852020-02-17 09:52:41 -07006004 if (current->task_works) {
6005 task_work_run();
Hillf Danton10bea962020-04-01 17:19:33 +08006006 finish_wait(&ctx->sqo_wait, &wait);
Jens Axboeb41e9852020-02-17 09:52:41 -07006007 continue;
6008 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07006009 if (signal_pending(current))
6010 flush_signals(current);
6011 schedule();
6012 finish_wait(&ctx->sqo_wait, &wait);
6013
Hristo Venev75b28af2019-08-26 17:23:46 +00006014 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006015 continue;
6016 }
6017 finish_wait(&ctx->sqo_wait, &wait);
6018
Hristo Venev75b28af2019-08-26 17:23:46 +00006019 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006020 }
6021
Jens Axboe8a4955f2019-12-09 14:52:35 -07006022 mutex_lock(&ctx->uring_lock);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006023 ret = io_submit_sqes(ctx, to_submit, NULL, -1, &cur_mm, true);
Jens Axboe8a4955f2019-12-09 14:52:35 -07006024 mutex_unlock(&ctx->uring_lock);
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006025 timeout = jiffies + ctx->sq_thread_idle;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006026 }
6027
Jens Axboeb41e9852020-02-17 09:52:41 -07006028 if (current->task_works)
6029 task_work_run();
6030
Jens Axboe6c271ce2019-01-10 11:22:30 -07006031 set_fs(old_fs);
6032 if (cur_mm) {
6033 unuse_mm(cur_mm);
6034 mmput(cur_mm);
6035 }
Jens Axboe181e4482019-11-25 08:52:30 -07006036 revert_creds(old_cred);
Jens Axboe06058632019-04-13 09:26:03 -06006037
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02006038 kthread_parkme();
Jens Axboe06058632019-04-13 09:26:03 -06006039
Jens Axboe6c271ce2019-01-10 11:22:30 -07006040 return 0;
6041}
6042
Jens Axboebda52162019-09-24 13:47:15 -06006043struct io_wait_queue {
6044 struct wait_queue_entry wq;
6045 struct io_ring_ctx *ctx;
6046 unsigned to_wait;
6047 unsigned nr_timeouts;
6048};
6049
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006050static inline bool io_should_wake(struct io_wait_queue *iowq, bool noflush)
Jens Axboebda52162019-09-24 13:47:15 -06006051{
6052 struct io_ring_ctx *ctx = iowq->ctx;
6053
6054 /*
Brian Gianforcarod195a662019-12-13 03:09:50 -08006055 * Wake up if we have enough events, or if a timeout occurred since we
Jens Axboebda52162019-09-24 13:47:15 -06006056 * started waiting. For timeouts, we always want to return to userspace,
6057 * regardless of event count.
6058 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006059 return io_cqring_events(ctx, noflush) >= iowq->to_wait ||
Jens Axboebda52162019-09-24 13:47:15 -06006060 atomic_read(&ctx->cq_timeouts) != iowq->nr_timeouts;
6061}
6062
6063static int io_wake_function(struct wait_queue_entry *curr, unsigned int mode,
6064 int wake_flags, void *key)
6065{
6066 struct io_wait_queue *iowq = container_of(curr, struct io_wait_queue,
6067 wq);
6068
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006069 /* use noflush == true, as we can't safely rely on locking context */
6070 if (!io_should_wake(iowq, true))
Jens Axboebda52162019-09-24 13:47:15 -06006071 return -1;
6072
6073 return autoremove_wake_function(curr, mode, wake_flags, key);
6074}
6075
Jens Axboe2b188cc2019-01-07 10:46:33 -07006076/*
6077 * Wait until events become available, if we don't already have some. The
6078 * application must reap them itself, as they reside on the shared cq ring.
6079 */
6080static int io_cqring_wait(struct io_ring_ctx *ctx, int min_events,
6081 const sigset_t __user *sig, size_t sigsz)
6082{
Jens Axboebda52162019-09-24 13:47:15 -06006083 struct io_wait_queue iowq = {
6084 .wq = {
6085 .private = current,
6086 .func = io_wake_function,
6087 .entry = LIST_HEAD_INIT(iowq.wq.entry),
6088 },
6089 .ctx = ctx,
6090 .to_wait = min_events,
6091 };
Hristo Venev75b28af2019-08-26 17:23:46 +00006092 struct io_rings *rings = ctx->rings;
Jackie Liue9ffa5c2019-10-29 11:16:42 +08006093 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006094
Jens Axboeb41e9852020-02-17 09:52:41 -07006095 do {
6096 if (io_cqring_events(ctx, false) >= min_events)
6097 return 0;
6098 if (!current->task_works)
6099 break;
6100 task_work_run();
6101 } while (1);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006102
6103 if (sig) {
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006104#ifdef CONFIG_COMPAT
6105 if (in_compat_syscall())
6106 ret = set_compat_user_sigmask((const compat_sigset_t __user *)sig,
Oleg Nesterovb7724342019-07-16 16:29:53 -07006107 sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006108 else
6109#endif
Oleg Nesterovb7724342019-07-16 16:29:53 -07006110 ret = set_user_sigmask(sig, sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006111
Jens Axboe2b188cc2019-01-07 10:46:33 -07006112 if (ret)
6113 return ret;
6114 }
6115
Jens Axboebda52162019-09-24 13:47:15 -06006116 iowq.nr_timeouts = atomic_read(&ctx->cq_timeouts);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02006117 trace_io_uring_cqring_wait(ctx, min_events);
Jens Axboebda52162019-09-24 13:47:15 -06006118 do {
6119 prepare_to_wait_exclusive(&ctx->wait, &iowq.wq,
6120 TASK_INTERRUPTIBLE);
Jens Axboeb41e9852020-02-17 09:52:41 -07006121 if (current->task_works)
6122 task_work_run();
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006123 if (io_should_wake(&iowq, false))
Jens Axboebda52162019-09-24 13:47:15 -06006124 break;
6125 schedule();
6126 if (signal_pending(current)) {
Jackie Liue9ffa5c2019-10-29 11:16:42 +08006127 ret = -EINTR;
Jens Axboebda52162019-09-24 13:47:15 -06006128 break;
6129 }
6130 } while (1);
6131 finish_wait(&ctx->wait, &iowq.wq);
6132
Jackie Liue9ffa5c2019-10-29 11:16:42 +08006133 restore_saved_sigmask_unless(ret == -EINTR);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006134
Hristo Venev75b28af2019-08-26 17:23:46 +00006135 return READ_ONCE(rings->cq.head) == READ_ONCE(rings->cq.tail) ? ret : 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006136}
6137
Jens Axboe6b063142019-01-10 22:13:58 -07006138static void __io_sqe_files_unregister(struct io_ring_ctx *ctx)
6139{
6140#if defined(CONFIG_UNIX)
6141 if (ctx->ring_sock) {
6142 struct sock *sock = ctx->ring_sock->sk;
6143 struct sk_buff *skb;
6144
6145 while ((skb = skb_dequeue(&sock->sk_receive_queue)) != NULL)
6146 kfree_skb(skb);
6147 }
6148#else
6149 int i;
6150
Jens Axboe65e19f52019-10-26 07:20:21 -06006151 for (i = 0; i < ctx->nr_user_files; i++) {
6152 struct file *file;
6153
6154 file = io_file_from_index(ctx, i);
6155 if (file)
6156 fput(file);
6157 }
Jens Axboe6b063142019-01-10 22:13:58 -07006158#endif
6159}
6160
Jens Axboe05f3fb32019-12-09 11:22:50 -07006161static void io_file_ref_kill(struct percpu_ref *ref)
6162{
6163 struct fixed_file_data *data;
6164
6165 data = container_of(ref, struct fixed_file_data, refs);
6166 complete(&data->done);
6167}
6168
Jens Axboe6b063142019-01-10 22:13:58 -07006169static int io_sqe_files_unregister(struct io_ring_ctx *ctx)
6170{
Jens Axboe05f3fb32019-12-09 11:22:50 -07006171 struct fixed_file_data *data = ctx->file_data;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006172 struct fixed_file_ref_node *ref_node = NULL;
Jens Axboe65e19f52019-10-26 07:20:21 -06006173 unsigned nr_tables, i;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006174 unsigned long flags;
Jens Axboe65e19f52019-10-26 07:20:21 -06006175
Jens Axboe05f3fb32019-12-09 11:22:50 -07006176 if (!data)
Jens Axboe6b063142019-01-10 22:13:58 -07006177 return -ENXIO;
6178
Xiaoguang Wang05589552020-03-31 14:05:18 +08006179 spin_lock_irqsave(&data->lock, flags);
6180 if (!list_empty(&data->ref_list))
6181 ref_node = list_first_entry(&data->ref_list,
6182 struct fixed_file_ref_node, node);
6183 spin_unlock_irqrestore(&data->lock, flags);
6184 if (ref_node)
6185 percpu_ref_kill(&ref_node->refs);
6186
6187 percpu_ref_kill(&data->refs);
6188
6189 /* wait for all refs nodes to complete */
Jens Axboe2faf8522020-02-04 19:54:55 -07006190 wait_for_completion(&data->done);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006191
Jens Axboe6b063142019-01-10 22:13:58 -07006192 __io_sqe_files_unregister(ctx);
Jens Axboe65e19f52019-10-26 07:20:21 -06006193 nr_tables = DIV_ROUND_UP(ctx->nr_user_files, IORING_MAX_FILES_TABLE);
6194 for (i = 0; i < nr_tables; i++)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006195 kfree(data->table[i].files);
6196 kfree(data->table);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006197 percpu_ref_exit(&data->refs);
6198 kfree(data);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006199 ctx->file_data = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07006200 ctx->nr_user_files = 0;
6201 return 0;
6202}
6203
Jens Axboe6c271ce2019-01-10 11:22:30 -07006204static void io_sq_thread_stop(struct io_ring_ctx *ctx)
6205{
6206 if (ctx->sqo_thread) {
Jens Axboe206aefd2019-11-07 18:27:42 -07006207 wait_for_completion(&ctx->completions[1]);
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02006208 /*
6209 * The park is a bit of a work-around, without it we get
6210 * warning spews on shutdown with SQPOLL set and affinity
6211 * set to a single CPU.
6212 */
Jens Axboe06058632019-04-13 09:26:03 -06006213 kthread_park(ctx->sqo_thread);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006214 kthread_stop(ctx->sqo_thread);
6215 ctx->sqo_thread = NULL;
6216 }
6217}
6218
Jens Axboe6b063142019-01-10 22:13:58 -07006219static void io_finish_async(struct io_ring_ctx *ctx)
6220{
Jens Axboe6c271ce2019-01-10 11:22:30 -07006221 io_sq_thread_stop(ctx);
6222
Jens Axboe561fb042019-10-24 07:25:42 -06006223 if (ctx->io_wq) {
6224 io_wq_destroy(ctx->io_wq);
6225 ctx->io_wq = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07006226 }
6227}
6228
6229#if defined(CONFIG_UNIX)
Jens Axboe6b063142019-01-10 22:13:58 -07006230/*
6231 * Ensure the UNIX gc is aware of our file set, so we are certain that
6232 * the io_uring can be safely unregistered on process exit, even if we have
6233 * loops in the file referencing.
6234 */
6235static int __io_sqe_files_scm(struct io_ring_ctx *ctx, int nr, int offset)
6236{
6237 struct sock *sk = ctx->ring_sock->sk;
6238 struct scm_fp_list *fpl;
6239 struct sk_buff *skb;
Jens Axboe08a45172019-10-03 08:11:03 -06006240 int i, nr_files;
Jens Axboe6b063142019-01-10 22:13:58 -07006241
Jens Axboe6b063142019-01-10 22:13:58 -07006242 fpl = kzalloc(sizeof(*fpl), GFP_KERNEL);
6243 if (!fpl)
6244 return -ENOMEM;
6245
6246 skb = alloc_skb(0, GFP_KERNEL);
6247 if (!skb) {
6248 kfree(fpl);
6249 return -ENOMEM;
6250 }
6251
6252 skb->sk = sk;
Jens Axboe6b063142019-01-10 22:13:58 -07006253
Jens Axboe08a45172019-10-03 08:11:03 -06006254 nr_files = 0;
Jens Axboe6b063142019-01-10 22:13:58 -07006255 fpl->user = get_uid(ctx->user);
6256 for (i = 0; i < nr; i++) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006257 struct file *file = io_file_from_index(ctx, i + offset);
6258
6259 if (!file)
Jens Axboe08a45172019-10-03 08:11:03 -06006260 continue;
Jens Axboe65e19f52019-10-26 07:20:21 -06006261 fpl->fp[nr_files] = get_file(file);
Jens Axboe08a45172019-10-03 08:11:03 -06006262 unix_inflight(fpl->user, fpl->fp[nr_files]);
6263 nr_files++;
Jens Axboe6b063142019-01-10 22:13:58 -07006264 }
6265
Jens Axboe08a45172019-10-03 08:11:03 -06006266 if (nr_files) {
6267 fpl->max = SCM_MAX_FD;
6268 fpl->count = nr_files;
6269 UNIXCB(skb).fp = fpl;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006270 skb->destructor = unix_destruct_scm;
Jens Axboe08a45172019-10-03 08:11:03 -06006271 refcount_add(skb->truesize, &sk->sk_wmem_alloc);
6272 skb_queue_head(&sk->sk_receive_queue, skb);
Jens Axboe6b063142019-01-10 22:13:58 -07006273
Jens Axboe08a45172019-10-03 08:11:03 -06006274 for (i = 0; i < nr_files; i++)
6275 fput(fpl->fp[i]);
6276 } else {
6277 kfree_skb(skb);
6278 kfree(fpl);
6279 }
Jens Axboe6b063142019-01-10 22:13:58 -07006280
6281 return 0;
6282}
6283
6284/*
6285 * If UNIX sockets are enabled, fd passing can cause a reference cycle which
6286 * causes regular reference counting to break down. We rely on the UNIX
6287 * garbage collection to take care of this problem for us.
6288 */
6289static int io_sqe_files_scm(struct io_ring_ctx *ctx)
6290{
6291 unsigned left, total;
6292 int ret = 0;
6293
6294 total = 0;
6295 left = ctx->nr_user_files;
6296 while (left) {
6297 unsigned this_files = min_t(unsigned, left, SCM_MAX_FD);
Jens Axboe6b063142019-01-10 22:13:58 -07006298
6299 ret = __io_sqe_files_scm(ctx, this_files, total);
6300 if (ret)
6301 break;
6302 left -= this_files;
6303 total += this_files;
6304 }
6305
6306 if (!ret)
6307 return 0;
6308
6309 while (total < ctx->nr_user_files) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006310 struct file *file = io_file_from_index(ctx, total);
6311
6312 if (file)
6313 fput(file);
Jens Axboe6b063142019-01-10 22:13:58 -07006314 total++;
6315 }
6316
6317 return ret;
6318}
6319#else
6320static int io_sqe_files_scm(struct io_ring_ctx *ctx)
6321{
6322 return 0;
6323}
6324#endif
6325
Jens Axboe65e19f52019-10-26 07:20:21 -06006326static int io_sqe_alloc_file_tables(struct io_ring_ctx *ctx, unsigned nr_tables,
6327 unsigned nr_files)
6328{
6329 int i;
6330
6331 for (i = 0; i < nr_tables; i++) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006332 struct fixed_file_table *table = &ctx->file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06006333 unsigned this_files;
6334
6335 this_files = min(nr_files, IORING_MAX_FILES_TABLE);
6336 table->files = kcalloc(this_files, sizeof(struct file *),
6337 GFP_KERNEL);
6338 if (!table->files)
6339 break;
6340 nr_files -= this_files;
6341 }
6342
6343 if (i == nr_tables)
6344 return 0;
6345
6346 for (i = 0; i < nr_tables; i++) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006347 struct fixed_file_table *table = &ctx->file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06006348 kfree(table->files);
6349 }
6350 return 1;
6351}
6352
Jens Axboe05f3fb32019-12-09 11:22:50 -07006353static void io_ring_file_put(struct io_ring_ctx *ctx, struct file *file)
Jens Axboec3a31e62019-10-03 13:59:56 -06006354{
6355#if defined(CONFIG_UNIX)
Jens Axboec3a31e62019-10-03 13:59:56 -06006356 struct sock *sock = ctx->ring_sock->sk;
6357 struct sk_buff_head list, *head = &sock->sk_receive_queue;
6358 struct sk_buff *skb;
6359 int i;
6360
6361 __skb_queue_head_init(&list);
6362
6363 /*
6364 * Find the skb that holds this file in its SCM_RIGHTS. When found,
6365 * remove this entry and rearrange the file array.
6366 */
6367 skb = skb_dequeue(head);
6368 while (skb) {
6369 struct scm_fp_list *fp;
6370
6371 fp = UNIXCB(skb).fp;
6372 for (i = 0; i < fp->count; i++) {
6373 int left;
6374
6375 if (fp->fp[i] != file)
6376 continue;
6377
6378 unix_notinflight(fp->user, fp->fp[i]);
6379 left = fp->count - 1 - i;
6380 if (left) {
6381 memmove(&fp->fp[i], &fp->fp[i + 1],
6382 left * sizeof(struct file *));
6383 }
6384 fp->count--;
6385 if (!fp->count) {
6386 kfree_skb(skb);
6387 skb = NULL;
6388 } else {
6389 __skb_queue_tail(&list, skb);
6390 }
6391 fput(file);
6392 file = NULL;
6393 break;
6394 }
6395
6396 if (!file)
6397 break;
6398
6399 __skb_queue_tail(&list, skb);
6400
6401 skb = skb_dequeue(head);
6402 }
6403
6404 if (skb_peek(&list)) {
6405 spin_lock_irq(&head->lock);
6406 while ((skb = __skb_dequeue(&list)) != NULL)
6407 __skb_queue_tail(head, skb);
6408 spin_unlock_irq(&head->lock);
6409 }
6410#else
Jens Axboe05f3fb32019-12-09 11:22:50 -07006411 fput(file);
Jens Axboec3a31e62019-10-03 13:59:56 -06006412#endif
6413}
6414
Jens Axboe05f3fb32019-12-09 11:22:50 -07006415struct io_file_put {
Xiaoguang Wang05589552020-03-31 14:05:18 +08006416 struct list_head list;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006417 struct file *file;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006418};
6419
Xiaoguang Wang05589552020-03-31 14:05:18 +08006420static void io_file_put_work(struct work_struct *work)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006421{
Xiaoguang Wang05589552020-03-31 14:05:18 +08006422 struct fixed_file_ref_node *ref_node;
6423 struct fixed_file_data *file_data;
6424 struct io_ring_ctx *ctx;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006425 struct io_file_put *pfile, *tmp;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006426 unsigned long flags;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006427
Xiaoguang Wang05589552020-03-31 14:05:18 +08006428 ref_node = container_of(work, struct fixed_file_ref_node, work);
6429 file_data = ref_node->file_data;
6430 ctx = file_data->ctx;
6431
6432 list_for_each_entry_safe(pfile, tmp, &ref_node->file_list, list) {
6433 list_del_init(&pfile->list);
6434 io_ring_file_put(ctx, pfile->file);
6435 kfree(pfile);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006436 }
6437
Xiaoguang Wang05589552020-03-31 14:05:18 +08006438 spin_lock_irqsave(&file_data->lock, flags);
6439 list_del_init(&ref_node->node);
6440 spin_unlock_irqrestore(&file_data->lock, flags);
Jens Axboe2faf8522020-02-04 19:54:55 -07006441
Xiaoguang Wang05589552020-03-31 14:05:18 +08006442 percpu_ref_exit(&ref_node->refs);
6443 kfree(ref_node);
6444 percpu_ref_put(&file_data->refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006445}
6446
6447static void io_file_data_ref_zero(struct percpu_ref *ref)
6448{
Xiaoguang Wang05589552020-03-31 14:05:18 +08006449 struct fixed_file_ref_node *ref_node;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006450
Xiaoguang Wang05589552020-03-31 14:05:18 +08006451 ref_node = container_of(ref, struct fixed_file_ref_node, refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006452
Xiaoguang Wang05589552020-03-31 14:05:18 +08006453 queue_work(system_wq, &ref_node->work);
6454}
6455
6456static struct fixed_file_ref_node *alloc_fixed_file_ref_node(
6457 struct io_ring_ctx *ctx)
6458{
6459 struct fixed_file_ref_node *ref_node;
6460
6461 ref_node = kzalloc(sizeof(*ref_node), GFP_KERNEL);
6462 if (!ref_node)
6463 return ERR_PTR(-ENOMEM);
6464
6465 if (percpu_ref_init(&ref_node->refs, io_file_data_ref_zero,
6466 0, GFP_KERNEL)) {
6467 kfree(ref_node);
6468 return ERR_PTR(-ENOMEM);
6469 }
6470 INIT_LIST_HEAD(&ref_node->node);
6471 INIT_LIST_HEAD(&ref_node->file_list);
6472 INIT_WORK(&ref_node->work, io_file_put_work);
6473 ref_node->file_data = ctx->file_data;
6474 return ref_node;
6475
6476}
6477
6478static void destroy_fixed_file_ref_node(struct fixed_file_ref_node *ref_node)
6479{
6480 percpu_ref_exit(&ref_node->refs);
6481 kfree(ref_node);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006482}
6483
6484static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
6485 unsigned nr_args)
6486{
6487 __s32 __user *fds = (__s32 __user *) arg;
6488 unsigned nr_tables;
6489 struct file *file;
6490 int fd, ret = 0;
6491 unsigned i;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006492 struct fixed_file_ref_node *ref_node;
6493 unsigned long flags;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006494
6495 if (ctx->file_data)
6496 return -EBUSY;
6497 if (!nr_args)
6498 return -EINVAL;
6499 if (nr_args > IORING_MAX_FIXED_FILES)
6500 return -EMFILE;
6501
6502 ctx->file_data = kzalloc(sizeof(*ctx->file_data), GFP_KERNEL);
6503 if (!ctx->file_data)
6504 return -ENOMEM;
6505 ctx->file_data->ctx = ctx;
6506 init_completion(&ctx->file_data->done);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006507 INIT_LIST_HEAD(&ctx->file_data->ref_list);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006508
6509 nr_tables = DIV_ROUND_UP(nr_args, IORING_MAX_FILES_TABLE);
6510 ctx->file_data->table = kcalloc(nr_tables,
6511 sizeof(struct fixed_file_table),
6512 GFP_KERNEL);
6513 if (!ctx->file_data->table) {
6514 kfree(ctx->file_data);
6515 ctx->file_data = NULL;
6516 return -ENOMEM;
6517 }
6518
Xiaoguang Wang05589552020-03-31 14:05:18 +08006519 if (percpu_ref_init(&ctx->file_data->refs, io_file_ref_kill,
Jens Axboe05f3fb32019-12-09 11:22:50 -07006520 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL)) {
6521 kfree(ctx->file_data->table);
6522 kfree(ctx->file_data);
6523 ctx->file_data = NULL;
6524 return -ENOMEM;
6525 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07006526
6527 if (io_sqe_alloc_file_tables(ctx, nr_tables, nr_args)) {
6528 percpu_ref_exit(&ctx->file_data->refs);
6529 kfree(ctx->file_data->table);
6530 kfree(ctx->file_data);
6531 ctx->file_data = NULL;
6532 return -ENOMEM;
6533 }
6534
6535 for (i = 0; i < nr_args; i++, ctx->nr_user_files++) {
6536 struct fixed_file_table *table;
6537 unsigned index;
6538
6539 ret = -EFAULT;
6540 if (copy_from_user(&fd, &fds[i], sizeof(fd)))
6541 break;
6542 /* allow sparse sets */
6543 if (fd == -1) {
6544 ret = 0;
6545 continue;
6546 }
6547
6548 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
6549 index = i & IORING_FILE_TABLE_MASK;
6550 file = fget(fd);
6551
6552 ret = -EBADF;
6553 if (!file)
6554 break;
6555
6556 /*
6557 * Don't allow io_uring instances to be registered. If UNIX
6558 * isn't enabled, then this causes a reference cycle and this
6559 * instance can never get freed. If UNIX is enabled we'll
6560 * handle it just fine, but there's still no point in allowing
6561 * a ring fd as it doesn't support regular read/write anyway.
6562 */
6563 if (file->f_op == &io_uring_fops) {
6564 fput(file);
6565 break;
6566 }
6567 ret = 0;
6568 table->files[index] = file;
6569 }
6570
6571 if (ret) {
6572 for (i = 0; i < ctx->nr_user_files; i++) {
6573 file = io_file_from_index(ctx, i);
6574 if (file)
6575 fput(file);
6576 }
6577 for (i = 0; i < nr_tables; i++)
6578 kfree(ctx->file_data->table[i].files);
6579
6580 kfree(ctx->file_data->table);
6581 kfree(ctx->file_data);
6582 ctx->file_data = NULL;
6583 ctx->nr_user_files = 0;
6584 return ret;
6585 }
6586
6587 ret = io_sqe_files_scm(ctx);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006588 if (ret) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006589 io_sqe_files_unregister(ctx);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006590 return ret;
6591 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07006592
Xiaoguang Wang05589552020-03-31 14:05:18 +08006593 ref_node = alloc_fixed_file_ref_node(ctx);
6594 if (IS_ERR(ref_node)) {
6595 io_sqe_files_unregister(ctx);
6596 return PTR_ERR(ref_node);
6597 }
6598
6599 ctx->file_data->cur_refs = &ref_node->refs;
6600 spin_lock_irqsave(&ctx->file_data->lock, flags);
6601 list_add(&ref_node->node, &ctx->file_data->ref_list);
6602 spin_unlock_irqrestore(&ctx->file_data->lock, flags);
6603 percpu_ref_get(&ctx->file_data->refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006604 return ret;
6605}
6606
Jens Axboec3a31e62019-10-03 13:59:56 -06006607static int io_sqe_file_register(struct io_ring_ctx *ctx, struct file *file,
6608 int index)
6609{
6610#if defined(CONFIG_UNIX)
6611 struct sock *sock = ctx->ring_sock->sk;
6612 struct sk_buff_head *head = &sock->sk_receive_queue;
6613 struct sk_buff *skb;
6614
6615 /*
6616 * See if we can merge this file into an existing skb SCM_RIGHTS
6617 * file set. If there's no room, fall back to allocating a new skb
6618 * and filling it in.
6619 */
6620 spin_lock_irq(&head->lock);
6621 skb = skb_peek(head);
6622 if (skb) {
6623 struct scm_fp_list *fpl = UNIXCB(skb).fp;
6624
6625 if (fpl->count < SCM_MAX_FD) {
6626 __skb_unlink(skb, head);
6627 spin_unlock_irq(&head->lock);
6628 fpl->fp[fpl->count] = get_file(file);
6629 unix_inflight(fpl->user, fpl->fp[fpl->count]);
6630 fpl->count++;
6631 spin_lock_irq(&head->lock);
6632 __skb_queue_head(head, skb);
6633 } else {
6634 skb = NULL;
6635 }
6636 }
6637 spin_unlock_irq(&head->lock);
6638
6639 if (skb) {
6640 fput(file);
6641 return 0;
6642 }
6643
6644 return __io_sqe_files_scm(ctx, 1, index);
6645#else
6646 return 0;
6647#endif
6648}
6649
Hillf Dantona5318d32020-03-23 17:47:15 +08006650static int io_queue_file_removal(struct fixed_file_data *data,
Xiaoguang Wang05589552020-03-31 14:05:18 +08006651 struct file *file)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006652{
Hillf Dantona5318d32020-03-23 17:47:15 +08006653 struct io_file_put *pfile;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006654 struct percpu_ref *refs = data->cur_refs;
6655 struct fixed_file_ref_node *ref_node;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006656
Jens Axboe05f3fb32019-12-09 11:22:50 -07006657 pfile = kzalloc(sizeof(*pfile), GFP_KERNEL);
Hillf Dantona5318d32020-03-23 17:47:15 +08006658 if (!pfile)
6659 return -ENOMEM;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006660
Xiaoguang Wang05589552020-03-31 14:05:18 +08006661 ref_node = container_of(refs, struct fixed_file_ref_node, refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006662 pfile->file = file;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006663 list_add(&pfile->list, &ref_node->file_list);
6664
Hillf Dantona5318d32020-03-23 17:47:15 +08006665 return 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006666}
6667
6668static int __io_sqe_files_update(struct io_ring_ctx *ctx,
6669 struct io_uring_files_update *up,
6670 unsigned nr_args)
6671{
6672 struct fixed_file_data *data = ctx->file_data;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006673 struct fixed_file_ref_node *ref_node;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006674 struct file *file;
Jens Axboec3a31e62019-10-03 13:59:56 -06006675 __s32 __user *fds;
6676 int fd, i, err;
6677 __u32 done;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006678 unsigned long flags;
6679 bool needs_switch = false;
Jens Axboec3a31e62019-10-03 13:59:56 -06006680
Jens Axboe05f3fb32019-12-09 11:22:50 -07006681 if (check_add_overflow(up->offset, nr_args, &done))
Jens Axboec3a31e62019-10-03 13:59:56 -06006682 return -EOVERFLOW;
6683 if (done > ctx->nr_user_files)
6684 return -EINVAL;
6685
Xiaoguang Wang05589552020-03-31 14:05:18 +08006686 ref_node = alloc_fixed_file_ref_node(ctx);
6687 if (IS_ERR(ref_node))
6688 return PTR_ERR(ref_node);
6689
Jens Axboec3a31e62019-10-03 13:59:56 -06006690 done = 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006691 fds = u64_to_user_ptr(up->fds);
Jens Axboec3a31e62019-10-03 13:59:56 -06006692 while (nr_args) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006693 struct fixed_file_table *table;
6694 unsigned index;
6695
Jens Axboec3a31e62019-10-03 13:59:56 -06006696 err = 0;
6697 if (copy_from_user(&fd, &fds[done], sizeof(fd))) {
6698 err = -EFAULT;
6699 break;
6700 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07006701 i = array_index_nospec(up->offset, ctx->nr_user_files);
6702 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
Jens Axboe65e19f52019-10-26 07:20:21 -06006703 index = i & IORING_FILE_TABLE_MASK;
6704 if (table->files[index]) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006705 file = io_file_from_index(ctx, index);
Hillf Dantona5318d32020-03-23 17:47:15 +08006706 err = io_queue_file_removal(data, file);
6707 if (err)
6708 break;
Jens Axboe65e19f52019-10-26 07:20:21 -06006709 table->files[index] = NULL;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006710 needs_switch = true;
Jens Axboec3a31e62019-10-03 13:59:56 -06006711 }
6712 if (fd != -1) {
Jens Axboec3a31e62019-10-03 13:59:56 -06006713 file = fget(fd);
6714 if (!file) {
6715 err = -EBADF;
6716 break;
6717 }
6718 /*
6719 * Don't allow io_uring instances to be registered. If
6720 * UNIX isn't enabled, then this causes a reference
6721 * cycle and this instance can never get freed. If UNIX
6722 * is enabled we'll handle it just fine, but there's
6723 * still no point in allowing a ring fd as it doesn't
6724 * support regular read/write anyway.
6725 */
6726 if (file->f_op == &io_uring_fops) {
6727 fput(file);
6728 err = -EBADF;
6729 break;
6730 }
Jens Axboe65e19f52019-10-26 07:20:21 -06006731 table->files[index] = file;
Jens Axboec3a31e62019-10-03 13:59:56 -06006732 err = io_sqe_file_register(ctx, file, i);
6733 if (err)
6734 break;
6735 }
6736 nr_args--;
6737 done++;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006738 up->offset++;
6739 }
6740
Xiaoguang Wang05589552020-03-31 14:05:18 +08006741 if (needs_switch) {
6742 percpu_ref_kill(data->cur_refs);
6743 spin_lock_irqsave(&data->lock, flags);
6744 list_add(&ref_node->node, &data->ref_list);
6745 data->cur_refs = &ref_node->refs;
6746 spin_unlock_irqrestore(&data->lock, flags);
6747 percpu_ref_get(&ctx->file_data->refs);
6748 } else
6749 destroy_fixed_file_ref_node(ref_node);
Jens Axboec3a31e62019-10-03 13:59:56 -06006750
6751 return done ? done : err;
6752}
Xiaoguang Wang05589552020-03-31 14:05:18 +08006753
Jens Axboe05f3fb32019-12-09 11:22:50 -07006754static int io_sqe_files_update(struct io_ring_ctx *ctx, void __user *arg,
6755 unsigned nr_args)
6756{
6757 struct io_uring_files_update up;
6758
6759 if (!ctx->file_data)
6760 return -ENXIO;
6761 if (!nr_args)
6762 return -EINVAL;
6763 if (copy_from_user(&up, arg, sizeof(up)))
6764 return -EFAULT;
6765 if (up.resv)
6766 return -EINVAL;
6767
6768 return __io_sqe_files_update(ctx, &up, nr_args);
6769}
Jens Axboec3a31e62019-10-03 13:59:56 -06006770
Pavel Begunkove9fd9392020-03-04 16:14:12 +03006771static void io_free_work(struct io_wq_work *work)
Jens Axboe7d723062019-11-12 22:31:31 -07006772{
6773 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
6774
Pavel Begunkove9fd9392020-03-04 16:14:12 +03006775 /* Consider that io_steal_work() relies on this ref */
Jens Axboe7d723062019-11-12 22:31:31 -07006776 io_put_req(req);
6777}
6778
Pavel Begunkov24369c22020-01-28 03:15:48 +03006779static int io_init_wq_offload(struct io_ring_ctx *ctx,
6780 struct io_uring_params *p)
6781{
6782 struct io_wq_data data;
6783 struct fd f;
6784 struct io_ring_ctx *ctx_attach;
6785 unsigned int concurrency;
6786 int ret = 0;
6787
6788 data.user = ctx->user;
Pavel Begunkove9fd9392020-03-04 16:14:12 +03006789 data.free_work = io_free_work;
Pavel Begunkov24369c22020-01-28 03:15:48 +03006790
6791 if (!(p->flags & IORING_SETUP_ATTACH_WQ)) {
6792 /* Do QD, or 4 * CPUS, whatever is smallest */
6793 concurrency = min(ctx->sq_entries, 4 * num_online_cpus());
6794
6795 ctx->io_wq = io_wq_create(concurrency, &data);
6796 if (IS_ERR(ctx->io_wq)) {
6797 ret = PTR_ERR(ctx->io_wq);
6798 ctx->io_wq = NULL;
6799 }
6800 return ret;
6801 }
6802
6803 f = fdget(p->wq_fd);
6804 if (!f.file)
6805 return -EBADF;
6806
6807 if (f.file->f_op != &io_uring_fops) {
6808 ret = -EINVAL;
6809 goto out_fput;
6810 }
6811
6812 ctx_attach = f.file->private_data;
6813 /* @io_wq is protected by holding the fd */
6814 if (!io_wq_get(ctx_attach->io_wq, &data)) {
6815 ret = -EINVAL;
6816 goto out_fput;
6817 }
6818
6819 ctx->io_wq = ctx_attach->io_wq;
6820out_fput:
6821 fdput(f);
6822 return ret;
6823}
6824
Jens Axboe6c271ce2019-01-10 11:22:30 -07006825static int io_sq_offload_start(struct io_ring_ctx *ctx,
6826 struct io_uring_params *p)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006827{
6828 int ret;
6829
Jens Axboe6c271ce2019-01-10 11:22:30 -07006830 init_waitqueue_head(&ctx->sqo_wait);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006831 mmgrab(current->mm);
6832 ctx->sqo_mm = current->mm;
6833
Jens Axboe6c271ce2019-01-10 11:22:30 -07006834 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboe3ec482d2019-04-08 10:51:01 -06006835 ret = -EPERM;
6836 if (!capable(CAP_SYS_ADMIN))
6837 goto err;
6838
Jens Axboe917257d2019-04-13 09:28:55 -06006839 ctx->sq_thread_idle = msecs_to_jiffies(p->sq_thread_idle);
6840 if (!ctx->sq_thread_idle)
6841 ctx->sq_thread_idle = HZ;
6842
Jens Axboe6c271ce2019-01-10 11:22:30 -07006843 if (p->flags & IORING_SETUP_SQ_AFF) {
Jens Axboe44a9bd12019-05-14 20:00:30 -06006844 int cpu = p->sq_thread_cpu;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006845
Jens Axboe917257d2019-04-13 09:28:55 -06006846 ret = -EINVAL;
Jens Axboe44a9bd12019-05-14 20:00:30 -06006847 if (cpu >= nr_cpu_ids)
6848 goto err;
Shenghui Wang7889f442019-05-07 16:03:19 +08006849 if (!cpu_online(cpu))
Jens Axboe917257d2019-04-13 09:28:55 -06006850 goto err;
6851
Jens Axboe6c271ce2019-01-10 11:22:30 -07006852 ctx->sqo_thread = kthread_create_on_cpu(io_sq_thread,
6853 ctx, cpu,
6854 "io_uring-sq");
6855 } else {
6856 ctx->sqo_thread = kthread_create(io_sq_thread, ctx,
6857 "io_uring-sq");
6858 }
6859 if (IS_ERR(ctx->sqo_thread)) {
6860 ret = PTR_ERR(ctx->sqo_thread);
6861 ctx->sqo_thread = NULL;
6862 goto err;
6863 }
6864 wake_up_process(ctx->sqo_thread);
6865 } else if (p->flags & IORING_SETUP_SQ_AFF) {
6866 /* Can't have SQ_AFF without SQPOLL */
6867 ret = -EINVAL;
6868 goto err;
6869 }
6870
Pavel Begunkov24369c22020-01-28 03:15:48 +03006871 ret = io_init_wq_offload(ctx, p);
6872 if (ret)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006873 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006874
6875 return 0;
6876err:
Jens Axboe54a91f32019-09-10 09:15:04 -06006877 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006878 mmdrop(ctx->sqo_mm);
6879 ctx->sqo_mm = NULL;
6880 return ret;
6881}
6882
6883static void io_unaccount_mem(struct user_struct *user, unsigned long nr_pages)
6884{
6885 atomic_long_sub(nr_pages, &user->locked_vm);
6886}
6887
6888static int io_account_mem(struct user_struct *user, unsigned long nr_pages)
6889{
6890 unsigned long page_limit, cur_pages, new_pages;
6891
6892 /* Don't allow more pages than we can safely lock */
6893 page_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
6894
6895 do {
6896 cur_pages = atomic_long_read(&user->locked_vm);
6897 new_pages = cur_pages + nr_pages;
6898 if (new_pages > page_limit)
6899 return -ENOMEM;
6900 } while (atomic_long_cmpxchg(&user->locked_vm, cur_pages,
6901 new_pages) != cur_pages);
6902
6903 return 0;
6904}
6905
6906static void io_mem_free(void *ptr)
6907{
Mark Rutland52e04ef2019-04-30 17:30:21 +01006908 struct page *page;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006909
Mark Rutland52e04ef2019-04-30 17:30:21 +01006910 if (!ptr)
6911 return;
6912
6913 page = virt_to_head_page(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006914 if (put_page_testzero(page))
6915 free_compound_page(page);
6916}
6917
6918static void *io_mem_alloc(size_t size)
6919{
6920 gfp_t gfp_flags = GFP_KERNEL | __GFP_ZERO | __GFP_NOWARN | __GFP_COMP |
6921 __GFP_NORETRY;
6922
6923 return (void *) __get_free_pages(gfp_flags, get_order(size));
6924}
6925
Hristo Venev75b28af2019-08-26 17:23:46 +00006926static unsigned long rings_size(unsigned sq_entries, unsigned cq_entries,
6927 size_t *sq_offset)
6928{
6929 struct io_rings *rings;
6930 size_t off, sq_array_size;
6931
6932 off = struct_size(rings, cqes, cq_entries);
6933 if (off == SIZE_MAX)
6934 return SIZE_MAX;
6935
6936#ifdef CONFIG_SMP
6937 off = ALIGN(off, SMP_CACHE_BYTES);
6938 if (off == 0)
6939 return SIZE_MAX;
6940#endif
6941
6942 sq_array_size = array_size(sizeof(u32), sq_entries);
6943 if (sq_array_size == SIZE_MAX)
6944 return SIZE_MAX;
6945
6946 if (check_add_overflow(off, sq_array_size, &off))
6947 return SIZE_MAX;
6948
6949 if (sq_offset)
6950 *sq_offset = off;
6951
6952 return off;
6953}
6954
Jens Axboe2b188cc2019-01-07 10:46:33 -07006955static unsigned long ring_pages(unsigned sq_entries, unsigned cq_entries)
6956{
Hristo Venev75b28af2019-08-26 17:23:46 +00006957 size_t pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006958
Hristo Venev75b28af2019-08-26 17:23:46 +00006959 pages = (size_t)1 << get_order(
6960 rings_size(sq_entries, cq_entries, NULL));
6961 pages += (size_t)1 << get_order(
6962 array_size(sizeof(struct io_uring_sqe), sq_entries));
Jens Axboe2b188cc2019-01-07 10:46:33 -07006963
Hristo Venev75b28af2019-08-26 17:23:46 +00006964 return pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006965}
6966
Jens Axboeedafcce2019-01-09 09:16:05 -07006967static int io_sqe_buffer_unregister(struct io_ring_ctx *ctx)
6968{
6969 int i, j;
6970
6971 if (!ctx->user_bufs)
6972 return -ENXIO;
6973
6974 for (i = 0; i < ctx->nr_user_bufs; i++) {
6975 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
6976
6977 for (j = 0; j < imu->nr_bvecs; j++)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08006978 unpin_user_page(imu->bvec[j].bv_page);
Jens Axboeedafcce2019-01-09 09:16:05 -07006979
6980 if (ctx->account_mem)
6981 io_unaccount_mem(ctx->user, imu->nr_bvecs);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006982 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07006983 imu->nr_bvecs = 0;
6984 }
6985
6986 kfree(ctx->user_bufs);
6987 ctx->user_bufs = NULL;
6988 ctx->nr_user_bufs = 0;
6989 return 0;
6990}
6991
6992static int io_copy_iov(struct io_ring_ctx *ctx, struct iovec *dst,
6993 void __user *arg, unsigned index)
6994{
6995 struct iovec __user *src;
6996
6997#ifdef CONFIG_COMPAT
6998 if (ctx->compat) {
6999 struct compat_iovec __user *ciovs;
7000 struct compat_iovec ciov;
7001
7002 ciovs = (struct compat_iovec __user *) arg;
7003 if (copy_from_user(&ciov, &ciovs[index], sizeof(ciov)))
7004 return -EFAULT;
7005
Jens Axboed55e5f52019-12-11 16:12:15 -07007006 dst->iov_base = u64_to_user_ptr((u64)ciov.iov_base);
Jens Axboeedafcce2019-01-09 09:16:05 -07007007 dst->iov_len = ciov.iov_len;
7008 return 0;
7009 }
7010#endif
7011 src = (struct iovec __user *) arg;
7012 if (copy_from_user(dst, &src[index], sizeof(*dst)))
7013 return -EFAULT;
7014 return 0;
7015}
7016
7017static int io_sqe_buffer_register(struct io_ring_ctx *ctx, void __user *arg,
7018 unsigned nr_args)
7019{
7020 struct vm_area_struct **vmas = NULL;
7021 struct page **pages = NULL;
7022 int i, j, got_pages = 0;
7023 int ret = -EINVAL;
7024
7025 if (ctx->user_bufs)
7026 return -EBUSY;
7027 if (!nr_args || nr_args > UIO_MAXIOV)
7028 return -EINVAL;
7029
7030 ctx->user_bufs = kcalloc(nr_args, sizeof(struct io_mapped_ubuf),
7031 GFP_KERNEL);
7032 if (!ctx->user_bufs)
7033 return -ENOMEM;
7034
7035 for (i = 0; i < nr_args; i++) {
7036 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
7037 unsigned long off, start, end, ubuf;
7038 int pret, nr_pages;
7039 struct iovec iov;
7040 size_t size;
7041
7042 ret = io_copy_iov(ctx, &iov, arg, i);
7043 if (ret)
Pavel Begunkova2786822019-05-26 12:35:47 +03007044 goto err;
Jens Axboeedafcce2019-01-09 09:16:05 -07007045
7046 /*
7047 * Don't impose further limits on the size and buffer
7048 * constraints here, we'll -EINVAL later when IO is
7049 * submitted if they are wrong.
7050 */
7051 ret = -EFAULT;
7052 if (!iov.iov_base || !iov.iov_len)
7053 goto err;
7054
7055 /* arbitrary limit, but we need something */
7056 if (iov.iov_len > SZ_1G)
7057 goto err;
7058
7059 ubuf = (unsigned long) iov.iov_base;
7060 end = (ubuf + iov.iov_len + PAGE_SIZE - 1) >> PAGE_SHIFT;
7061 start = ubuf >> PAGE_SHIFT;
7062 nr_pages = end - start;
7063
7064 if (ctx->account_mem) {
7065 ret = io_account_mem(ctx->user, nr_pages);
7066 if (ret)
7067 goto err;
7068 }
7069
7070 ret = 0;
7071 if (!pages || nr_pages > got_pages) {
7072 kfree(vmas);
7073 kfree(pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007074 pages = kvmalloc_array(nr_pages, sizeof(struct page *),
Jens Axboeedafcce2019-01-09 09:16:05 -07007075 GFP_KERNEL);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007076 vmas = kvmalloc_array(nr_pages,
Jens Axboeedafcce2019-01-09 09:16:05 -07007077 sizeof(struct vm_area_struct *),
7078 GFP_KERNEL);
7079 if (!pages || !vmas) {
7080 ret = -ENOMEM;
7081 if (ctx->account_mem)
7082 io_unaccount_mem(ctx->user, nr_pages);
7083 goto err;
7084 }
7085 got_pages = nr_pages;
7086 }
7087
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007088 imu->bvec = kvmalloc_array(nr_pages, sizeof(struct bio_vec),
Jens Axboeedafcce2019-01-09 09:16:05 -07007089 GFP_KERNEL);
7090 ret = -ENOMEM;
7091 if (!imu->bvec) {
7092 if (ctx->account_mem)
7093 io_unaccount_mem(ctx->user, nr_pages);
7094 goto err;
7095 }
7096
7097 ret = 0;
7098 down_read(&current->mm->mmap_sem);
John Hubbard2113b052020-01-30 22:13:13 -08007099 pret = pin_user_pages(ubuf, nr_pages,
Ira Weiny932f4a62019-05-13 17:17:03 -07007100 FOLL_WRITE | FOLL_LONGTERM,
7101 pages, vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007102 if (pret == nr_pages) {
7103 /* don't support file backed memory */
7104 for (j = 0; j < nr_pages; j++) {
7105 struct vm_area_struct *vma = vmas[j];
7106
7107 if (vma->vm_file &&
7108 !is_file_hugepages(vma->vm_file)) {
7109 ret = -EOPNOTSUPP;
7110 break;
7111 }
7112 }
7113 } else {
7114 ret = pret < 0 ? pret : -EFAULT;
7115 }
7116 up_read(&current->mm->mmap_sem);
7117 if (ret) {
7118 /*
7119 * if we did partial map, or found file backed vmas,
7120 * release any pages we did get
7121 */
John Hubbard27c4d3a2019-08-04 19:32:06 -07007122 if (pret > 0)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08007123 unpin_user_pages(pages, pret);
Jens Axboeedafcce2019-01-09 09:16:05 -07007124 if (ctx->account_mem)
7125 io_unaccount_mem(ctx->user, nr_pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007126 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07007127 goto err;
7128 }
7129
7130 off = ubuf & ~PAGE_MASK;
7131 size = iov.iov_len;
7132 for (j = 0; j < nr_pages; j++) {
7133 size_t vec_len;
7134
7135 vec_len = min_t(size_t, size, PAGE_SIZE - off);
7136 imu->bvec[j].bv_page = pages[j];
7137 imu->bvec[j].bv_len = vec_len;
7138 imu->bvec[j].bv_offset = off;
7139 off = 0;
7140 size -= vec_len;
7141 }
7142 /* store original address for later verification */
7143 imu->ubuf = ubuf;
7144 imu->len = iov.iov_len;
7145 imu->nr_bvecs = nr_pages;
7146
7147 ctx->nr_user_bufs++;
7148 }
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007149 kvfree(pages);
7150 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007151 return 0;
7152err:
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007153 kvfree(pages);
7154 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007155 io_sqe_buffer_unregister(ctx);
7156 return ret;
7157}
7158
Jens Axboe9b402842019-04-11 11:45:41 -06007159static int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg)
7160{
7161 __s32 __user *fds = arg;
7162 int fd;
7163
7164 if (ctx->cq_ev_fd)
7165 return -EBUSY;
7166
7167 if (copy_from_user(&fd, fds, sizeof(*fds)))
7168 return -EFAULT;
7169
7170 ctx->cq_ev_fd = eventfd_ctx_fdget(fd);
7171 if (IS_ERR(ctx->cq_ev_fd)) {
7172 int ret = PTR_ERR(ctx->cq_ev_fd);
7173 ctx->cq_ev_fd = NULL;
7174 return ret;
7175 }
7176
7177 return 0;
7178}
7179
7180static int io_eventfd_unregister(struct io_ring_ctx *ctx)
7181{
7182 if (ctx->cq_ev_fd) {
7183 eventfd_ctx_put(ctx->cq_ev_fd);
7184 ctx->cq_ev_fd = NULL;
7185 return 0;
7186 }
7187
7188 return -ENXIO;
7189}
7190
Jens Axboe5a2e7452020-02-23 16:23:11 -07007191static int __io_destroy_buffers(int id, void *p, void *data)
7192{
7193 struct io_ring_ctx *ctx = data;
7194 struct io_buffer *buf = p;
7195
Jens Axboe067524e2020-03-02 16:32:28 -07007196 __io_remove_buffers(ctx, buf, id, -1U);
Jens Axboe5a2e7452020-02-23 16:23:11 -07007197 return 0;
7198}
7199
7200static void io_destroy_buffers(struct io_ring_ctx *ctx)
7201{
7202 idr_for_each(&ctx->io_buffer_idr, __io_destroy_buffers, ctx);
7203 idr_destroy(&ctx->io_buffer_idr);
7204}
7205
Jens Axboe2b188cc2019-01-07 10:46:33 -07007206static void io_ring_ctx_free(struct io_ring_ctx *ctx)
7207{
Jens Axboe6b063142019-01-10 22:13:58 -07007208 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007209 if (ctx->sqo_mm)
7210 mmdrop(ctx->sqo_mm);
Jens Axboedef596e2019-01-09 08:59:42 -07007211
7212 io_iopoll_reap_events(ctx);
Jens Axboeedafcce2019-01-09 09:16:05 -07007213 io_sqe_buffer_unregister(ctx);
Jens Axboe6b063142019-01-10 22:13:58 -07007214 io_sqe_files_unregister(ctx);
Jens Axboe9b402842019-04-11 11:45:41 -06007215 io_eventfd_unregister(ctx);
Jens Axboe5a2e7452020-02-23 16:23:11 -07007216 io_destroy_buffers(ctx);
Jens Axboe41726c92020-02-23 13:11:42 -07007217 idr_destroy(&ctx->personality_idr);
Jens Axboedef596e2019-01-09 08:59:42 -07007218
Jens Axboe2b188cc2019-01-07 10:46:33 -07007219#if defined(CONFIG_UNIX)
Eric Biggers355e8d22019-06-12 14:58:43 -07007220 if (ctx->ring_sock) {
7221 ctx->ring_sock->file = NULL; /* so that iput() is called */
Jens Axboe2b188cc2019-01-07 10:46:33 -07007222 sock_release(ctx->ring_sock);
Eric Biggers355e8d22019-06-12 14:58:43 -07007223 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007224#endif
7225
Hristo Venev75b28af2019-08-26 17:23:46 +00007226 io_mem_free(ctx->rings);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007227 io_mem_free(ctx->sq_sqes);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007228
7229 percpu_ref_exit(&ctx->refs);
7230 if (ctx->account_mem)
7231 io_unaccount_mem(ctx->user,
7232 ring_pages(ctx->sq_entries, ctx->cq_entries));
7233 free_uid(ctx->user);
Jens Axboe181e4482019-11-25 08:52:30 -07007234 put_cred(ctx->creds);
Jens Axboe206aefd2019-11-07 18:27:42 -07007235 kfree(ctx->completions);
Jens Axboe78076bb2019-12-04 19:56:40 -07007236 kfree(ctx->cancel_hash);
Jens Axboe0ddf92e2019-11-08 08:52:53 -07007237 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007238 kfree(ctx);
7239}
7240
7241static __poll_t io_uring_poll(struct file *file, poll_table *wait)
7242{
7243 struct io_ring_ctx *ctx = file->private_data;
7244 __poll_t mask = 0;
7245
7246 poll_wait(file, &ctx->cq_wait, wait);
Stefan Bühler4f7067c2019-04-24 23:54:17 +02007247 /*
7248 * synchronizes with barrier from wq_has_sleeper call in
7249 * io_commit_cqring
7250 */
Jens Axboe2b188cc2019-01-07 10:46:33 -07007251 smp_rmb();
Hristo Venev75b28af2019-08-26 17:23:46 +00007252 if (READ_ONCE(ctx->rings->sq.tail) - ctx->cached_sq_head !=
7253 ctx->rings->sq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007254 mask |= EPOLLOUT | EPOLLWRNORM;
Stefano Garzarella63e5d812020-02-07 13:18:28 +01007255 if (io_cqring_events(ctx, false))
Jens Axboe2b188cc2019-01-07 10:46:33 -07007256 mask |= EPOLLIN | EPOLLRDNORM;
7257
7258 return mask;
7259}
7260
7261static int io_uring_fasync(int fd, struct file *file, int on)
7262{
7263 struct io_ring_ctx *ctx = file->private_data;
7264
7265 return fasync_helper(fd, file, on, &ctx->cq_fasync);
7266}
7267
Jens Axboe071698e2020-01-28 10:04:42 -07007268static int io_remove_personalities(int id, void *p, void *data)
7269{
7270 struct io_ring_ctx *ctx = data;
7271 const struct cred *cred;
7272
7273 cred = idr_remove(&ctx->personality_idr, id);
7274 if (cred)
7275 put_cred(cred);
7276 return 0;
7277}
7278
Jens Axboe2b188cc2019-01-07 10:46:33 -07007279static void io_ring_ctx_wait_and_kill(struct io_ring_ctx *ctx)
7280{
7281 mutex_lock(&ctx->uring_lock);
7282 percpu_ref_kill(&ctx->refs);
7283 mutex_unlock(&ctx->uring_lock);
7284
Jens Axboedf069d82020-02-04 16:48:34 -07007285 /*
7286 * Wait for sq thread to idle, if we have one. It won't spin on new
7287 * work after we've killed the ctx ref above. This is important to do
7288 * before we cancel existing commands, as the thread could otherwise
7289 * be queueing new work post that. If that's work we need to cancel,
7290 * it could cause shutdown to hang.
7291 */
7292 while (ctx->sqo_thread && !wq_has_sleeper(&ctx->sqo_wait))
7293 cpu_relax();
7294
Jens Axboe5262f562019-09-17 12:26:57 -06007295 io_kill_timeouts(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07007296 io_poll_remove_all(ctx);
Jens Axboe561fb042019-10-24 07:25:42 -06007297
7298 if (ctx->io_wq)
7299 io_wq_cancel_all(ctx->io_wq);
7300
Jens Axboedef596e2019-01-09 08:59:42 -07007301 io_iopoll_reap_events(ctx);
Jens Axboe15dff282019-11-13 09:09:23 -07007302 /* if we failed setting up the ctx, we might not have any rings */
7303 if (ctx->rings)
7304 io_cqring_overflow_flush(ctx, true);
Jens Axboe071698e2020-01-28 10:04:42 -07007305 idr_for_each(&ctx->personality_idr, io_remove_personalities, ctx);
Jens Axboe206aefd2019-11-07 18:27:42 -07007306 wait_for_completion(&ctx->completions[0]);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007307 io_ring_ctx_free(ctx);
7308}
7309
7310static int io_uring_release(struct inode *inode, struct file *file)
7311{
7312 struct io_ring_ctx *ctx = file->private_data;
7313
7314 file->private_data = NULL;
7315 io_ring_ctx_wait_and_kill(ctx);
7316 return 0;
7317}
7318
Jens Axboefcb323c2019-10-24 12:39:47 -06007319static void io_uring_cancel_files(struct io_ring_ctx *ctx,
7320 struct files_struct *files)
7321{
7322 struct io_kiocb *req;
7323 DEFINE_WAIT(wait);
7324
7325 while (!list_empty_careful(&ctx->inflight_list)) {
Jens Axboe768134d2019-11-10 20:30:53 -07007326 struct io_kiocb *cancel_req = NULL;
Jens Axboefcb323c2019-10-24 12:39:47 -06007327
7328 spin_lock_irq(&ctx->inflight_lock);
7329 list_for_each_entry(req, &ctx->inflight_list, inflight_entry) {
Jens Axboe768134d2019-11-10 20:30:53 -07007330 if (req->work.files != files)
7331 continue;
7332 /* req is being completed, ignore */
7333 if (!refcount_inc_not_zero(&req->refs))
7334 continue;
7335 cancel_req = req;
7336 break;
Jens Axboefcb323c2019-10-24 12:39:47 -06007337 }
Jens Axboe768134d2019-11-10 20:30:53 -07007338 if (cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06007339 prepare_to_wait(&ctx->inflight_wait, &wait,
Jens Axboe768134d2019-11-10 20:30:53 -07007340 TASK_UNINTERRUPTIBLE);
Jens Axboefcb323c2019-10-24 12:39:47 -06007341 spin_unlock_irq(&ctx->inflight_lock);
7342
Jens Axboe768134d2019-11-10 20:30:53 -07007343 /* We need to keep going until we don't find a matching req */
7344 if (!cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06007345 break;
Bob Liu2f6d9b92019-11-13 18:06:24 +08007346
Jens Axboe2ca10252020-02-13 17:17:35 -07007347 if (cancel_req->flags & REQ_F_OVERFLOW) {
7348 spin_lock_irq(&ctx->completion_lock);
7349 list_del(&cancel_req->list);
7350 cancel_req->flags &= ~REQ_F_OVERFLOW;
7351 if (list_empty(&ctx->cq_overflow_list)) {
7352 clear_bit(0, &ctx->sq_check_overflow);
7353 clear_bit(0, &ctx->cq_check_overflow);
7354 }
7355 spin_unlock_irq(&ctx->completion_lock);
7356
7357 WRITE_ONCE(ctx->rings->cq_overflow,
7358 atomic_inc_return(&ctx->cached_cq_overflow));
7359
7360 /*
7361 * Put inflight ref and overflow ref. If that's
7362 * all we had, then we're done with this request.
7363 */
7364 if (refcount_sub_and_test(2, &cancel_req->refs)) {
7365 io_put_req(cancel_req);
7366 continue;
7367 }
7368 }
7369
Bob Liu2f6d9b92019-11-13 18:06:24 +08007370 io_wq_cancel_work(ctx->io_wq, &cancel_req->work);
7371 io_put_req(cancel_req);
Jens Axboefcb323c2019-10-24 12:39:47 -06007372 schedule();
7373 }
Jens Axboe768134d2019-11-10 20:30:53 -07007374 finish_wait(&ctx->inflight_wait, &wait);
Jens Axboefcb323c2019-10-24 12:39:47 -06007375}
7376
7377static int io_uring_flush(struct file *file, void *data)
7378{
7379 struct io_ring_ctx *ctx = file->private_data;
7380
7381 io_uring_cancel_files(ctx, data);
Jens Axboe6ab23142020-02-08 20:23:59 -07007382
7383 /*
7384 * If the task is going away, cancel work it may have pending
7385 */
7386 if (fatal_signal_pending(current) || (current->flags & PF_EXITING))
7387 io_wq_cancel_pid(ctx->io_wq, task_pid_vnr(current));
7388
Jens Axboefcb323c2019-10-24 12:39:47 -06007389 return 0;
7390}
7391
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007392static void *io_uring_validate_mmap_request(struct file *file,
7393 loff_t pgoff, size_t sz)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007394{
Jens Axboe2b188cc2019-01-07 10:46:33 -07007395 struct io_ring_ctx *ctx = file->private_data;
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007396 loff_t offset = pgoff << PAGE_SHIFT;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007397 struct page *page;
7398 void *ptr;
7399
7400 switch (offset) {
7401 case IORING_OFF_SQ_RING:
Hristo Venev75b28af2019-08-26 17:23:46 +00007402 case IORING_OFF_CQ_RING:
7403 ptr = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007404 break;
7405 case IORING_OFF_SQES:
7406 ptr = ctx->sq_sqes;
7407 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007408 default:
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007409 return ERR_PTR(-EINVAL);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007410 }
7411
7412 page = virt_to_head_page(ptr);
Matthew Wilcox (Oracle)a50b8542019-09-23 15:34:25 -07007413 if (sz > page_size(page))
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007414 return ERR_PTR(-EINVAL);
7415
7416 return ptr;
7417}
7418
7419#ifdef CONFIG_MMU
7420
7421static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
7422{
7423 size_t sz = vma->vm_end - vma->vm_start;
7424 unsigned long pfn;
7425 void *ptr;
7426
7427 ptr = io_uring_validate_mmap_request(file, vma->vm_pgoff, sz);
7428 if (IS_ERR(ptr))
7429 return PTR_ERR(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007430
7431 pfn = virt_to_phys(ptr) >> PAGE_SHIFT;
7432 return remap_pfn_range(vma, vma->vm_start, pfn, sz, vma->vm_page_prot);
7433}
7434
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007435#else /* !CONFIG_MMU */
7436
7437static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
7438{
7439 return vma->vm_flags & (VM_SHARED | VM_MAYSHARE) ? 0 : -EINVAL;
7440}
7441
7442static unsigned int io_uring_nommu_mmap_capabilities(struct file *file)
7443{
7444 return NOMMU_MAP_DIRECT | NOMMU_MAP_READ | NOMMU_MAP_WRITE;
7445}
7446
7447static unsigned long io_uring_nommu_get_unmapped_area(struct file *file,
7448 unsigned long addr, unsigned long len,
7449 unsigned long pgoff, unsigned long flags)
7450{
7451 void *ptr;
7452
7453 ptr = io_uring_validate_mmap_request(file, pgoff, len);
7454 if (IS_ERR(ptr))
7455 return PTR_ERR(ptr);
7456
7457 return (unsigned long) ptr;
7458}
7459
7460#endif /* !CONFIG_MMU */
7461
Jens Axboe2b188cc2019-01-07 10:46:33 -07007462SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
7463 u32, min_complete, u32, flags, const sigset_t __user *, sig,
7464 size_t, sigsz)
7465{
7466 struct io_ring_ctx *ctx;
7467 long ret = -EBADF;
7468 int submitted = 0;
7469 struct fd f;
7470
Jens Axboeb41e9852020-02-17 09:52:41 -07007471 if (current->task_works)
7472 task_work_run();
7473
Jens Axboe6c271ce2019-01-10 11:22:30 -07007474 if (flags & ~(IORING_ENTER_GETEVENTS | IORING_ENTER_SQ_WAKEUP))
Jens Axboe2b188cc2019-01-07 10:46:33 -07007475 return -EINVAL;
7476
7477 f = fdget(fd);
7478 if (!f.file)
7479 return -EBADF;
7480
7481 ret = -EOPNOTSUPP;
7482 if (f.file->f_op != &io_uring_fops)
7483 goto out_fput;
7484
7485 ret = -ENXIO;
7486 ctx = f.file->private_data;
7487 if (!percpu_ref_tryget(&ctx->refs))
7488 goto out_fput;
7489
Jens Axboe6c271ce2019-01-10 11:22:30 -07007490 /*
7491 * For SQ polling, the thread will do all submissions and completions.
7492 * Just return the requested submit count, and wake the thread if
7493 * we were asked to.
7494 */
Jens Axboeb2a9ead2019-09-12 14:19:16 -06007495 ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007496 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboec1edbf52019-11-10 16:56:04 -07007497 if (!list_empty_careful(&ctx->cq_overflow_list))
7498 io_cqring_overflow_flush(ctx, false);
Jens Axboe6c271ce2019-01-10 11:22:30 -07007499 if (flags & IORING_ENTER_SQ_WAKEUP)
7500 wake_up(&ctx->sqo_wait);
7501 submitted = to_submit;
Jens Axboeb2a9ead2019-09-12 14:19:16 -06007502 } else if (to_submit) {
Pavel Begunkovae9428c2019-11-06 00:22:14 +03007503 struct mm_struct *cur_mm;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007504
7505 mutex_lock(&ctx->uring_lock);
Pavel Begunkovae9428c2019-11-06 00:22:14 +03007506 /* already have mm, so io_submit_sqes() won't try to grab it */
7507 cur_mm = ctx->sqo_mm;
7508 submitted = io_submit_sqes(ctx, to_submit, f.file, fd,
7509 &cur_mm, false);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007510 mutex_unlock(&ctx->uring_lock);
Pavel Begunkov7c504e652019-12-18 19:53:45 +03007511
7512 if (submitted != to_submit)
7513 goto out;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007514 }
7515 if (flags & IORING_ENTER_GETEVENTS) {
Jens Axboedef596e2019-01-09 08:59:42 -07007516 unsigned nr_events = 0;
7517
Jens Axboe2b188cc2019-01-07 10:46:33 -07007518 min_complete = min(min_complete, ctx->cq_entries);
7519
Xiaoguang Wang32b22442020-03-11 09:26:09 +08007520 /*
7521 * When SETUP_IOPOLL and SETUP_SQPOLL are both enabled, user
7522 * space applications don't need to do io completion events
7523 * polling again, they can rely on io_sq_thread to do polling
7524 * work, which can reduce cpu usage and uring_lock contention.
7525 */
7526 if (ctx->flags & IORING_SETUP_IOPOLL &&
7527 !(ctx->flags & IORING_SETUP_SQPOLL)) {
Jens Axboedef596e2019-01-09 08:59:42 -07007528 ret = io_iopoll_check(ctx, &nr_events, min_complete);
Jens Axboedef596e2019-01-09 08:59:42 -07007529 } else {
7530 ret = io_cqring_wait(ctx, min_complete, sig, sigsz);
7531 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007532 }
7533
Pavel Begunkov7c504e652019-12-18 19:53:45 +03007534out:
Pavel Begunkov6805b322019-10-08 02:18:42 +03007535 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007536out_fput:
7537 fdput(f);
7538 return submitted ? submitted : ret;
7539}
7540
Tobias Klauserbebdb652020-02-26 18:38:32 +01007541#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -07007542static int io_uring_show_cred(int id, void *p, void *data)
7543{
7544 const struct cred *cred = p;
7545 struct seq_file *m = data;
7546 struct user_namespace *uns = seq_user_ns(m);
7547 struct group_info *gi;
7548 kernel_cap_t cap;
7549 unsigned __capi;
7550 int g;
7551
7552 seq_printf(m, "%5d\n", id);
7553 seq_put_decimal_ull(m, "\tUid:\t", from_kuid_munged(uns, cred->uid));
7554 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->euid));
7555 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->suid));
7556 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->fsuid));
7557 seq_put_decimal_ull(m, "\n\tGid:\t", from_kgid_munged(uns, cred->gid));
7558 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->egid));
7559 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->sgid));
7560 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->fsgid));
7561 seq_puts(m, "\n\tGroups:\t");
7562 gi = cred->group_info;
7563 for (g = 0; g < gi->ngroups; g++) {
7564 seq_put_decimal_ull(m, g ? " " : "",
7565 from_kgid_munged(uns, gi->gid[g]));
7566 }
7567 seq_puts(m, "\n\tCapEff:\t");
7568 cap = cred->cap_effective;
7569 CAP_FOR_EACH_U32(__capi)
7570 seq_put_hex_ll(m, NULL, cap.cap[CAP_LAST_U32 - __capi], 8);
7571 seq_putc(m, '\n');
7572 return 0;
7573}
7574
7575static void __io_uring_show_fdinfo(struct io_ring_ctx *ctx, struct seq_file *m)
7576{
7577 int i;
7578
7579 mutex_lock(&ctx->uring_lock);
7580 seq_printf(m, "UserFiles:\t%u\n", ctx->nr_user_files);
7581 for (i = 0; i < ctx->nr_user_files; i++) {
7582 struct fixed_file_table *table;
7583 struct file *f;
7584
7585 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
7586 f = table->files[i & IORING_FILE_TABLE_MASK];
7587 if (f)
7588 seq_printf(m, "%5u: %s\n", i, file_dentry(f)->d_iname);
7589 else
7590 seq_printf(m, "%5u: <none>\n", i);
7591 }
7592 seq_printf(m, "UserBufs:\t%u\n", ctx->nr_user_bufs);
7593 for (i = 0; i < ctx->nr_user_bufs; i++) {
7594 struct io_mapped_ubuf *buf = &ctx->user_bufs[i];
7595
7596 seq_printf(m, "%5u: 0x%llx/%u\n", i, buf->ubuf,
7597 (unsigned int) buf->len);
7598 }
7599 if (!idr_is_empty(&ctx->personality_idr)) {
7600 seq_printf(m, "Personalities:\n");
7601 idr_for_each(&ctx->personality_idr, io_uring_show_cred, m);
7602 }
Jens Axboed7718a92020-02-14 22:23:12 -07007603 seq_printf(m, "PollList:\n");
7604 spin_lock_irq(&ctx->completion_lock);
7605 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
7606 struct hlist_head *list = &ctx->cancel_hash[i];
7607 struct io_kiocb *req;
7608
7609 hlist_for_each_entry(req, list, hash_node)
7610 seq_printf(m, " op=%d, task_works=%d\n", req->opcode,
7611 req->task->task_works != NULL);
7612 }
7613 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe87ce9552020-01-30 08:25:34 -07007614 mutex_unlock(&ctx->uring_lock);
7615}
7616
7617static void io_uring_show_fdinfo(struct seq_file *m, struct file *f)
7618{
7619 struct io_ring_ctx *ctx = f->private_data;
7620
7621 if (percpu_ref_tryget(&ctx->refs)) {
7622 __io_uring_show_fdinfo(ctx, m);
7623 percpu_ref_put(&ctx->refs);
7624 }
7625}
Tobias Klauserbebdb652020-02-26 18:38:32 +01007626#endif
Jens Axboe87ce9552020-01-30 08:25:34 -07007627
Jens Axboe2b188cc2019-01-07 10:46:33 -07007628static const struct file_operations io_uring_fops = {
7629 .release = io_uring_release,
Jens Axboefcb323c2019-10-24 12:39:47 -06007630 .flush = io_uring_flush,
Jens Axboe2b188cc2019-01-07 10:46:33 -07007631 .mmap = io_uring_mmap,
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007632#ifndef CONFIG_MMU
7633 .get_unmapped_area = io_uring_nommu_get_unmapped_area,
7634 .mmap_capabilities = io_uring_nommu_mmap_capabilities,
7635#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07007636 .poll = io_uring_poll,
7637 .fasync = io_uring_fasync,
Tobias Klauserbebdb652020-02-26 18:38:32 +01007638#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -07007639 .show_fdinfo = io_uring_show_fdinfo,
Tobias Klauserbebdb652020-02-26 18:38:32 +01007640#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07007641};
7642
7643static int io_allocate_scq_urings(struct io_ring_ctx *ctx,
7644 struct io_uring_params *p)
7645{
Hristo Venev75b28af2019-08-26 17:23:46 +00007646 struct io_rings *rings;
7647 size_t size, sq_array_offset;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007648
Hristo Venev75b28af2019-08-26 17:23:46 +00007649 size = rings_size(p->sq_entries, p->cq_entries, &sq_array_offset);
7650 if (size == SIZE_MAX)
7651 return -EOVERFLOW;
7652
7653 rings = io_mem_alloc(size);
7654 if (!rings)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007655 return -ENOMEM;
7656
Hristo Venev75b28af2019-08-26 17:23:46 +00007657 ctx->rings = rings;
7658 ctx->sq_array = (u32 *)((char *)rings + sq_array_offset);
7659 rings->sq_ring_mask = p->sq_entries - 1;
7660 rings->cq_ring_mask = p->cq_entries - 1;
7661 rings->sq_ring_entries = p->sq_entries;
7662 rings->cq_ring_entries = p->cq_entries;
7663 ctx->sq_mask = rings->sq_ring_mask;
7664 ctx->cq_mask = rings->cq_ring_mask;
7665 ctx->sq_entries = rings->sq_ring_entries;
7666 ctx->cq_entries = rings->cq_ring_entries;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007667
7668 size = array_size(sizeof(struct io_uring_sqe), p->sq_entries);
Jens Axboeeb065d32019-11-20 09:26:29 -07007669 if (size == SIZE_MAX) {
7670 io_mem_free(ctx->rings);
7671 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007672 return -EOVERFLOW;
Jens Axboeeb065d32019-11-20 09:26:29 -07007673 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007674
7675 ctx->sq_sqes = io_mem_alloc(size);
Jens Axboeeb065d32019-11-20 09:26:29 -07007676 if (!ctx->sq_sqes) {
7677 io_mem_free(ctx->rings);
7678 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007679 return -ENOMEM;
Jens Axboeeb065d32019-11-20 09:26:29 -07007680 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007681
Jens Axboe2b188cc2019-01-07 10:46:33 -07007682 return 0;
7683}
7684
7685/*
7686 * Allocate an anonymous fd, this is what constitutes the application
7687 * visible backing of an io_uring instance. The application mmaps this
7688 * fd to gain access to the SQ/CQ ring details. If UNIX sockets are enabled,
7689 * we have to tie this fd to a socket for file garbage collection purposes.
7690 */
7691static int io_uring_get_fd(struct io_ring_ctx *ctx)
7692{
7693 struct file *file;
7694 int ret;
7695
7696#if defined(CONFIG_UNIX)
7697 ret = sock_create_kern(&init_net, PF_UNIX, SOCK_RAW, IPPROTO_IP,
7698 &ctx->ring_sock);
7699 if (ret)
7700 return ret;
7701#endif
7702
7703 ret = get_unused_fd_flags(O_RDWR | O_CLOEXEC);
7704 if (ret < 0)
7705 goto err;
7706
7707 file = anon_inode_getfile("[io_uring]", &io_uring_fops, ctx,
7708 O_RDWR | O_CLOEXEC);
7709 if (IS_ERR(file)) {
7710 put_unused_fd(ret);
7711 ret = PTR_ERR(file);
7712 goto err;
7713 }
7714
7715#if defined(CONFIG_UNIX)
7716 ctx->ring_sock->file = file;
7717#endif
7718 fd_install(ret, file);
7719 return ret;
7720err:
7721#if defined(CONFIG_UNIX)
7722 sock_release(ctx->ring_sock);
7723 ctx->ring_sock = NULL;
7724#endif
7725 return ret;
7726}
7727
7728static int io_uring_create(unsigned entries, struct io_uring_params *p)
7729{
7730 struct user_struct *user = NULL;
7731 struct io_ring_ctx *ctx;
7732 bool account_mem;
7733 int ret;
7734
Jens Axboe8110c1a2019-12-28 15:39:54 -07007735 if (!entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007736 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07007737 if (entries > IORING_MAX_ENTRIES) {
7738 if (!(p->flags & IORING_SETUP_CLAMP))
7739 return -EINVAL;
7740 entries = IORING_MAX_ENTRIES;
7741 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007742
7743 /*
7744 * Use twice as many entries for the CQ ring. It's possible for the
7745 * application to drive a higher depth than the size of the SQ ring,
7746 * since the sqes are only used at submission time. This allows for
Jens Axboe33a107f2019-10-04 12:10:03 -06007747 * some flexibility in overcommitting a bit. If the application has
7748 * set IORING_SETUP_CQSIZE, it will have passed in the desired number
7749 * of CQ ring entries manually.
Jens Axboe2b188cc2019-01-07 10:46:33 -07007750 */
7751 p->sq_entries = roundup_pow_of_two(entries);
Jens Axboe33a107f2019-10-04 12:10:03 -06007752 if (p->flags & IORING_SETUP_CQSIZE) {
7753 /*
7754 * If IORING_SETUP_CQSIZE is set, we do the same roundup
7755 * to a power-of-two, if it isn't already. We do NOT impose
7756 * any cq vs sq ring sizing.
7757 */
Jens Axboe8110c1a2019-12-28 15:39:54 -07007758 if (p->cq_entries < p->sq_entries)
Jens Axboe33a107f2019-10-04 12:10:03 -06007759 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07007760 if (p->cq_entries > IORING_MAX_CQ_ENTRIES) {
7761 if (!(p->flags & IORING_SETUP_CLAMP))
7762 return -EINVAL;
7763 p->cq_entries = IORING_MAX_CQ_ENTRIES;
7764 }
Jens Axboe33a107f2019-10-04 12:10:03 -06007765 p->cq_entries = roundup_pow_of_two(p->cq_entries);
7766 } else {
7767 p->cq_entries = 2 * p->sq_entries;
7768 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007769
7770 user = get_uid(current_user());
7771 account_mem = !capable(CAP_IPC_LOCK);
7772
7773 if (account_mem) {
7774 ret = io_account_mem(user,
7775 ring_pages(p->sq_entries, p->cq_entries));
7776 if (ret) {
7777 free_uid(user);
7778 return ret;
7779 }
7780 }
7781
7782 ctx = io_ring_ctx_alloc(p);
7783 if (!ctx) {
7784 if (account_mem)
7785 io_unaccount_mem(user, ring_pages(p->sq_entries,
7786 p->cq_entries));
7787 free_uid(user);
7788 return -ENOMEM;
7789 }
7790 ctx->compat = in_compat_syscall();
7791 ctx->account_mem = account_mem;
7792 ctx->user = user;
Jens Axboe0b8c0ec2019-12-02 08:50:00 -07007793 ctx->creds = get_current_cred();
Jens Axboe2b188cc2019-01-07 10:46:33 -07007794
7795 ret = io_allocate_scq_urings(ctx, p);
7796 if (ret)
7797 goto err;
7798
Jens Axboe6c271ce2019-01-10 11:22:30 -07007799 ret = io_sq_offload_start(ctx, p);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007800 if (ret)
7801 goto err;
7802
Jens Axboe2b188cc2019-01-07 10:46:33 -07007803 memset(&p->sq_off, 0, sizeof(p->sq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00007804 p->sq_off.head = offsetof(struct io_rings, sq.head);
7805 p->sq_off.tail = offsetof(struct io_rings, sq.tail);
7806 p->sq_off.ring_mask = offsetof(struct io_rings, sq_ring_mask);
7807 p->sq_off.ring_entries = offsetof(struct io_rings, sq_ring_entries);
7808 p->sq_off.flags = offsetof(struct io_rings, sq_flags);
7809 p->sq_off.dropped = offsetof(struct io_rings, sq_dropped);
7810 p->sq_off.array = (char *)ctx->sq_array - (char *)ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007811
7812 memset(&p->cq_off, 0, sizeof(p->cq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00007813 p->cq_off.head = offsetof(struct io_rings, cq.head);
7814 p->cq_off.tail = offsetof(struct io_rings, cq.tail);
7815 p->cq_off.ring_mask = offsetof(struct io_rings, cq_ring_mask);
7816 p->cq_off.ring_entries = offsetof(struct io_rings, cq_ring_entries);
7817 p->cq_off.overflow = offsetof(struct io_rings, cq_overflow);
7818 p->cq_off.cqes = offsetof(struct io_rings, cqes);
Jens Axboeac90f242019-09-06 10:26:21 -06007819
Jens Axboe044c1ab2019-10-28 09:15:33 -06007820 /*
7821 * Install ring fd as the very last thing, so we don't risk someone
7822 * having closed it before we finish setup
7823 */
7824 ret = io_uring_get_fd(ctx);
7825 if (ret < 0)
7826 goto err;
7827
Jens Axboeda8c9692019-12-02 18:51:26 -07007828 p->features = IORING_FEAT_SINGLE_MMAP | IORING_FEAT_NODROP |
Jens Axboecccf0ee2020-01-27 16:34:48 -07007829 IORING_FEAT_SUBMIT_STABLE | IORING_FEAT_RW_CUR_POS |
Jens Axboed7718a92020-02-14 22:23:12 -07007830 IORING_FEAT_CUR_PERSONALITY | IORING_FEAT_FAST_POLL;
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02007831 trace_io_uring_create(ret, ctx, p->sq_entries, p->cq_entries, p->flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007832 return ret;
7833err:
7834 io_ring_ctx_wait_and_kill(ctx);
7835 return ret;
7836}
7837
7838/*
7839 * Sets up an aio uring context, and returns the fd. Applications asks for a
7840 * ring size, we return the actual sq/cq ring sizes (among other things) in the
7841 * params structure passed in.
7842 */
7843static long io_uring_setup(u32 entries, struct io_uring_params __user *params)
7844{
7845 struct io_uring_params p;
7846 long ret;
7847 int i;
7848
7849 if (copy_from_user(&p, params, sizeof(p)))
7850 return -EFAULT;
7851 for (i = 0; i < ARRAY_SIZE(p.resv); i++) {
7852 if (p.resv[i])
7853 return -EINVAL;
7854 }
7855
Jens Axboe6c271ce2019-01-10 11:22:30 -07007856 if (p.flags & ~(IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL |
Jens Axboe8110c1a2019-12-28 15:39:54 -07007857 IORING_SETUP_SQ_AFF | IORING_SETUP_CQSIZE |
Pavel Begunkov24369c22020-01-28 03:15:48 +03007858 IORING_SETUP_CLAMP | IORING_SETUP_ATTACH_WQ))
Jens Axboe2b188cc2019-01-07 10:46:33 -07007859 return -EINVAL;
7860
7861 ret = io_uring_create(entries, &p);
7862 if (ret < 0)
7863 return ret;
7864
7865 if (copy_to_user(params, &p, sizeof(p)))
7866 return -EFAULT;
7867
7868 return ret;
7869}
7870
7871SYSCALL_DEFINE2(io_uring_setup, u32, entries,
7872 struct io_uring_params __user *, params)
7873{
7874 return io_uring_setup(entries, params);
7875}
7876
Jens Axboe66f4af92020-01-16 15:36:52 -07007877static int io_probe(struct io_ring_ctx *ctx, void __user *arg, unsigned nr_args)
7878{
7879 struct io_uring_probe *p;
7880 size_t size;
7881 int i, ret;
7882
7883 size = struct_size(p, ops, nr_args);
7884 if (size == SIZE_MAX)
7885 return -EOVERFLOW;
7886 p = kzalloc(size, GFP_KERNEL);
7887 if (!p)
7888 return -ENOMEM;
7889
7890 ret = -EFAULT;
7891 if (copy_from_user(p, arg, size))
7892 goto out;
7893 ret = -EINVAL;
7894 if (memchr_inv(p, 0, size))
7895 goto out;
7896
7897 p->last_op = IORING_OP_LAST - 1;
7898 if (nr_args > IORING_OP_LAST)
7899 nr_args = IORING_OP_LAST;
7900
7901 for (i = 0; i < nr_args; i++) {
7902 p->ops[i].op = i;
7903 if (!io_op_defs[i].not_supported)
7904 p->ops[i].flags = IO_URING_OP_SUPPORTED;
7905 }
7906 p->ops_len = i;
7907
7908 ret = 0;
7909 if (copy_to_user(arg, p, size))
7910 ret = -EFAULT;
7911out:
7912 kfree(p);
7913 return ret;
7914}
7915
Jens Axboe071698e2020-01-28 10:04:42 -07007916static int io_register_personality(struct io_ring_ctx *ctx)
7917{
7918 const struct cred *creds = get_current_cred();
7919 int id;
7920
7921 id = idr_alloc_cyclic(&ctx->personality_idr, (void *) creds, 1,
7922 USHRT_MAX, GFP_KERNEL);
7923 if (id < 0)
7924 put_cred(creds);
7925 return id;
7926}
7927
7928static int io_unregister_personality(struct io_ring_ctx *ctx, unsigned id)
7929{
7930 const struct cred *old_creds;
7931
7932 old_creds = idr_remove(&ctx->personality_idr, id);
7933 if (old_creds) {
7934 put_cred(old_creds);
7935 return 0;
7936 }
7937
7938 return -EINVAL;
7939}
7940
7941static bool io_register_op_must_quiesce(int op)
7942{
7943 switch (op) {
7944 case IORING_UNREGISTER_FILES:
7945 case IORING_REGISTER_FILES_UPDATE:
7946 case IORING_REGISTER_PROBE:
7947 case IORING_REGISTER_PERSONALITY:
7948 case IORING_UNREGISTER_PERSONALITY:
7949 return false;
7950 default:
7951 return true;
7952 }
7953}
7954
Jens Axboeedafcce2019-01-09 09:16:05 -07007955static int __io_uring_register(struct io_ring_ctx *ctx, unsigned opcode,
7956 void __user *arg, unsigned nr_args)
Jens Axboeb19062a2019-04-15 10:49:38 -06007957 __releases(ctx->uring_lock)
7958 __acquires(ctx->uring_lock)
Jens Axboeedafcce2019-01-09 09:16:05 -07007959{
7960 int ret;
7961
Jens Axboe35fa71a2019-04-22 10:23:23 -06007962 /*
7963 * We're inside the ring mutex, if the ref is already dying, then
7964 * someone else killed the ctx or is already going through
7965 * io_uring_register().
7966 */
7967 if (percpu_ref_is_dying(&ctx->refs))
7968 return -ENXIO;
7969
Jens Axboe071698e2020-01-28 10:04:42 -07007970 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07007971 percpu_ref_kill(&ctx->refs);
Jens Axboeb19062a2019-04-15 10:49:38 -06007972
Jens Axboe05f3fb32019-12-09 11:22:50 -07007973 /*
7974 * Drop uring mutex before waiting for references to exit. If
7975 * another thread is currently inside io_uring_enter() it might
7976 * need to grab the uring_lock to make progress. If we hold it
7977 * here across the drain wait, then we can deadlock. It's safe
7978 * to drop the mutex here, since no new references will come in
7979 * after we've killed the percpu ref.
7980 */
7981 mutex_unlock(&ctx->uring_lock);
Jens Axboec1503682020-01-08 08:26:07 -07007982 ret = wait_for_completion_interruptible(&ctx->completions[0]);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007983 mutex_lock(&ctx->uring_lock);
Jens Axboec1503682020-01-08 08:26:07 -07007984 if (ret) {
7985 percpu_ref_resurrect(&ctx->refs);
7986 ret = -EINTR;
7987 goto out;
7988 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07007989 }
Jens Axboeedafcce2019-01-09 09:16:05 -07007990
7991 switch (opcode) {
7992 case IORING_REGISTER_BUFFERS:
7993 ret = io_sqe_buffer_register(ctx, arg, nr_args);
7994 break;
7995 case IORING_UNREGISTER_BUFFERS:
7996 ret = -EINVAL;
7997 if (arg || nr_args)
7998 break;
7999 ret = io_sqe_buffer_unregister(ctx);
8000 break;
Jens Axboe6b063142019-01-10 22:13:58 -07008001 case IORING_REGISTER_FILES:
8002 ret = io_sqe_files_register(ctx, arg, nr_args);
8003 break;
8004 case IORING_UNREGISTER_FILES:
8005 ret = -EINVAL;
8006 if (arg || nr_args)
8007 break;
8008 ret = io_sqe_files_unregister(ctx);
8009 break;
Jens Axboec3a31e62019-10-03 13:59:56 -06008010 case IORING_REGISTER_FILES_UPDATE:
8011 ret = io_sqe_files_update(ctx, arg, nr_args);
8012 break;
Jens Axboe9b402842019-04-11 11:45:41 -06008013 case IORING_REGISTER_EVENTFD:
Jens Axboef2842ab2020-01-08 11:04:00 -07008014 case IORING_REGISTER_EVENTFD_ASYNC:
Jens Axboe9b402842019-04-11 11:45:41 -06008015 ret = -EINVAL;
8016 if (nr_args != 1)
8017 break;
8018 ret = io_eventfd_register(ctx, arg);
Jens Axboef2842ab2020-01-08 11:04:00 -07008019 if (ret)
8020 break;
8021 if (opcode == IORING_REGISTER_EVENTFD_ASYNC)
8022 ctx->eventfd_async = 1;
8023 else
8024 ctx->eventfd_async = 0;
Jens Axboe9b402842019-04-11 11:45:41 -06008025 break;
8026 case IORING_UNREGISTER_EVENTFD:
8027 ret = -EINVAL;
8028 if (arg || nr_args)
8029 break;
8030 ret = io_eventfd_unregister(ctx);
8031 break;
Jens Axboe66f4af92020-01-16 15:36:52 -07008032 case IORING_REGISTER_PROBE:
8033 ret = -EINVAL;
8034 if (!arg || nr_args > 256)
8035 break;
8036 ret = io_probe(ctx, arg, nr_args);
8037 break;
Jens Axboe071698e2020-01-28 10:04:42 -07008038 case IORING_REGISTER_PERSONALITY:
8039 ret = -EINVAL;
8040 if (arg || nr_args)
8041 break;
8042 ret = io_register_personality(ctx);
8043 break;
8044 case IORING_UNREGISTER_PERSONALITY:
8045 ret = -EINVAL;
8046 if (arg)
8047 break;
8048 ret = io_unregister_personality(ctx, nr_args);
8049 break;
Jens Axboeedafcce2019-01-09 09:16:05 -07008050 default:
8051 ret = -EINVAL;
8052 break;
8053 }
8054
Jens Axboe071698e2020-01-28 10:04:42 -07008055 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07008056 /* bring the ctx back to life */
Jens Axboe05f3fb32019-12-09 11:22:50 -07008057 percpu_ref_reinit(&ctx->refs);
Jens Axboec1503682020-01-08 08:26:07 -07008058out:
8059 reinit_completion(&ctx->completions[0]);
Jens Axboe05f3fb32019-12-09 11:22:50 -07008060 }
Jens Axboeedafcce2019-01-09 09:16:05 -07008061 return ret;
8062}
8063
8064SYSCALL_DEFINE4(io_uring_register, unsigned int, fd, unsigned int, opcode,
8065 void __user *, arg, unsigned int, nr_args)
8066{
8067 struct io_ring_ctx *ctx;
8068 long ret = -EBADF;
8069 struct fd f;
8070
8071 f = fdget(fd);
8072 if (!f.file)
8073 return -EBADF;
8074
8075 ret = -EOPNOTSUPP;
8076 if (f.file->f_op != &io_uring_fops)
8077 goto out_fput;
8078
8079 ctx = f.file->private_data;
8080
8081 mutex_lock(&ctx->uring_lock);
8082 ret = __io_uring_register(ctx, opcode, arg, nr_args);
8083 mutex_unlock(&ctx->uring_lock);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02008084 trace_io_uring_register(ctx, opcode, ctx->nr_user_files, ctx->nr_user_bufs,
8085 ctx->cq_ev_fd != NULL, ret);
Jens Axboeedafcce2019-01-09 09:16:05 -07008086out_fput:
8087 fdput(f);
8088 return ret;
8089}
8090
Jens Axboe2b188cc2019-01-07 10:46:33 -07008091static int __init io_uring_init(void)
8092{
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008093#define __BUILD_BUG_VERIFY_ELEMENT(stype, eoffset, etype, ename) do { \
8094 BUILD_BUG_ON(offsetof(stype, ename) != eoffset); \
8095 BUILD_BUG_ON(sizeof(etype) != sizeof_field(stype, ename)); \
8096} while (0)
8097
8098#define BUILD_BUG_SQE_ELEM(eoffset, etype, ename) \
8099 __BUILD_BUG_VERIFY_ELEMENT(struct io_uring_sqe, eoffset, etype, ename)
8100 BUILD_BUG_ON(sizeof(struct io_uring_sqe) != 64);
8101 BUILD_BUG_SQE_ELEM(0, __u8, opcode);
8102 BUILD_BUG_SQE_ELEM(1, __u8, flags);
8103 BUILD_BUG_SQE_ELEM(2, __u16, ioprio);
8104 BUILD_BUG_SQE_ELEM(4, __s32, fd);
8105 BUILD_BUG_SQE_ELEM(8, __u64, off);
8106 BUILD_BUG_SQE_ELEM(8, __u64, addr2);
8107 BUILD_BUG_SQE_ELEM(16, __u64, addr);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03008108 BUILD_BUG_SQE_ELEM(16, __u64, splice_off_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008109 BUILD_BUG_SQE_ELEM(24, __u32, len);
8110 BUILD_BUG_SQE_ELEM(28, __kernel_rwf_t, rw_flags);
8111 BUILD_BUG_SQE_ELEM(28, /* compat */ int, rw_flags);
8112 BUILD_BUG_SQE_ELEM(28, /* compat */ __u32, rw_flags);
8113 BUILD_BUG_SQE_ELEM(28, __u32, fsync_flags);
8114 BUILD_BUG_SQE_ELEM(28, __u16, poll_events);
8115 BUILD_BUG_SQE_ELEM(28, __u32, sync_range_flags);
8116 BUILD_BUG_SQE_ELEM(28, __u32, msg_flags);
8117 BUILD_BUG_SQE_ELEM(28, __u32, timeout_flags);
8118 BUILD_BUG_SQE_ELEM(28, __u32, accept_flags);
8119 BUILD_BUG_SQE_ELEM(28, __u32, cancel_flags);
8120 BUILD_BUG_SQE_ELEM(28, __u32, open_flags);
8121 BUILD_BUG_SQE_ELEM(28, __u32, statx_flags);
8122 BUILD_BUG_SQE_ELEM(28, __u32, fadvise_advice);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03008123 BUILD_BUG_SQE_ELEM(28, __u32, splice_flags);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008124 BUILD_BUG_SQE_ELEM(32, __u64, user_data);
8125 BUILD_BUG_SQE_ELEM(40, __u16, buf_index);
8126 BUILD_BUG_SQE_ELEM(42, __u16, personality);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03008127 BUILD_BUG_SQE_ELEM(44, __s32, splice_fd_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008128
Jens Axboed3656342019-12-18 09:50:26 -07008129 BUILD_BUG_ON(ARRAY_SIZE(io_op_defs) != IORING_OP_LAST);
Jens Axboe84557872020-03-03 15:28:17 -07008130 BUILD_BUG_ON(__REQ_F_LAST_BIT >= 8 * sizeof(int));
Jens Axboe2b188cc2019-01-07 10:46:33 -07008131 req_cachep = KMEM_CACHE(io_kiocb, SLAB_HWCACHE_ALIGN | SLAB_PANIC);
8132 return 0;
8133};
8134__initcall(io_uring_init);