blob: 10645077d6b4a32fef582a6cfb880aab0bbb7d26 [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 Axboe4ed734b2020-03-20 11:23:41 -0600618 union {
619 struct task_struct *task;
620 unsigned long fsize;
621 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700622 u64 user_data;
Jens Axboe9e645e112019-05-10 16:07:28 -0600623 u32 result;
Jens Axboede0617e2019-04-06 21:51:27 -0600624 u32 sequence;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700625
Jens Axboed7718a92020-02-14 22:23:12 -0700626 struct list_head link_list;
627
Jens Axboefcb323c2019-10-24 12:39:47 -0600628 struct list_head inflight_entry;
629
Xiaoguang Wang05589552020-03-31 14:05:18 +0800630 struct percpu_ref *fixed_file_refs;
631
Jens Axboeb41e9852020-02-17 09:52:41 -0700632 union {
633 /*
634 * Only commands that never go async can use the below fields,
Jens Axboed7718a92020-02-14 22:23:12 -0700635 * obviously. Right now only IORING_OP_POLL_ADD uses them, and
636 * async armed poll handlers for regular commands. The latter
637 * restore the work, if needed.
Jens Axboeb41e9852020-02-17 09:52:41 -0700638 */
639 struct {
Jens Axboeb41e9852020-02-17 09:52:41 -0700640 struct callback_head task_work;
Jens Axboed7718a92020-02-14 22:23:12 -0700641 struct hlist_node hash_node;
642 struct async_poll *apoll;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700643 int cflags;
Jens Axboeb41e9852020-02-17 09:52:41 -0700644 };
645 struct io_wq_work work;
646 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700647};
648
649#define IO_PLUG_THRESHOLD 2
Jens Axboedef596e2019-01-09 08:59:42 -0700650#define IO_IOPOLL_BATCH 8
Jens Axboe2b188cc2019-01-07 10:46:33 -0700651
Jens Axboe9a56a232019-01-09 09:06:50 -0700652struct io_submit_state {
653 struct blk_plug plug;
654
655 /*
Jens Axboe2579f912019-01-09 09:10:43 -0700656 * io_kiocb alloc cache
657 */
658 void *reqs[IO_IOPOLL_BATCH];
Pavel Begunkov6c8a3132020-02-01 03:58:00 +0300659 unsigned int free_reqs;
Jens Axboe2579f912019-01-09 09:10:43 -0700660
661 /*
Jens Axboe9a56a232019-01-09 09:06:50 -0700662 * File reference cache
663 */
664 struct file *file;
665 unsigned int fd;
666 unsigned int has_refs;
667 unsigned int used_refs;
668 unsigned int ios_left;
669};
670
Jens Axboed3656342019-12-18 09:50:26 -0700671struct io_op_def {
672 /* needs req->io allocated for deferral/async */
673 unsigned async_ctx : 1;
674 /* needs current->mm setup, does mm access */
675 unsigned needs_mm : 1;
676 /* needs req->file assigned */
677 unsigned needs_file : 1;
678 /* needs req->file assigned IFF fd is >= 0 */
679 unsigned fd_non_neg : 1;
680 /* hash wq insertion if file is a regular file */
681 unsigned hash_reg_file : 1;
682 /* unbound wq insertion if file is a non-regular file */
683 unsigned unbound_nonreg_file : 1;
Jens Axboe66f4af92020-01-16 15:36:52 -0700684 /* opcode is not supported by this kernel */
685 unsigned not_supported : 1;
Jens Axboef86cd202020-01-29 13:46:44 -0700686 /* needs file table */
687 unsigned file_table : 1;
Jens Axboeff002b32020-02-07 16:05:21 -0700688 /* needs ->fs */
689 unsigned needs_fs : 1;
Jens Axboe8a727582020-02-20 09:59:44 -0700690 /* set if opcode supports polled "wait" */
691 unsigned pollin : 1;
692 unsigned pollout : 1;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700693 /* op supports buffer selection */
694 unsigned buffer_select : 1;
Jens Axboed3656342019-12-18 09:50:26 -0700695};
696
697static const struct io_op_def io_op_defs[] = {
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300698 [IORING_OP_NOP] = {},
699 [IORING_OP_READV] = {
Jens Axboed3656342019-12-18 09:50:26 -0700700 .async_ctx = 1,
701 .needs_mm = 1,
702 .needs_file = 1,
703 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700704 .pollin = 1,
Jens Axboe4d954c22020-02-27 07:31:19 -0700705 .buffer_select = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700706 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300707 [IORING_OP_WRITEV] = {
Jens Axboed3656342019-12-18 09:50:26 -0700708 .async_ctx = 1,
709 .needs_mm = 1,
710 .needs_file = 1,
711 .hash_reg_file = 1,
712 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700713 .pollout = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700714 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300715 [IORING_OP_FSYNC] = {
Jens Axboed3656342019-12-18 09:50:26 -0700716 .needs_file = 1,
717 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300718 [IORING_OP_READ_FIXED] = {
Jens Axboed3656342019-12-18 09:50:26 -0700719 .needs_file = 1,
720 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700721 .pollin = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700722 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300723 [IORING_OP_WRITE_FIXED] = {
Jens Axboed3656342019-12-18 09:50:26 -0700724 .needs_file = 1,
725 .hash_reg_file = 1,
726 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700727 .pollout = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700728 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300729 [IORING_OP_POLL_ADD] = {
Jens Axboed3656342019-12-18 09:50:26 -0700730 .needs_file = 1,
731 .unbound_nonreg_file = 1,
732 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300733 [IORING_OP_POLL_REMOVE] = {},
734 [IORING_OP_SYNC_FILE_RANGE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700735 .needs_file = 1,
736 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300737 [IORING_OP_SENDMSG] = {
Jens Axboed3656342019-12-18 09:50:26 -0700738 .async_ctx = 1,
739 .needs_mm = 1,
740 .needs_file = 1,
741 .unbound_nonreg_file = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700742 .needs_fs = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700743 .pollout = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700744 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300745 [IORING_OP_RECVMSG] = {
Jens Axboed3656342019-12-18 09:50:26 -0700746 .async_ctx = 1,
747 .needs_mm = 1,
748 .needs_file = 1,
749 .unbound_nonreg_file = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700750 .needs_fs = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700751 .pollin = 1,
Jens Axboe52de1fe2020-02-27 10:15:42 -0700752 .buffer_select = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700753 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300754 [IORING_OP_TIMEOUT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700755 .async_ctx = 1,
756 .needs_mm = 1,
757 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300758 [IORING_OP_TIMEOUT_REMOVE] = {},
759 [IORING_OP_ACCEPT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700760 .needs_mm = 1,
761 .needs_file = 1,
762 .unbound_nonreg_file = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700763 .file_table = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700764 .pollin = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700765 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300766 [IORING_OP_ASYNC_CANCEL] = {},
767 [IORING_OP_LINK_TIMEOUT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700768 .async_ctx = 1,
769 .needs_mm = 1,
770 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300771 [IORING_OP_CONNECT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700772 .async_ctx = 1,
773 .needs_mm = 1,
774 .needs_file = 1,
775 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700776 .pollout = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700777 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300778 [IORING_OP_FALLOCATE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700779 .needs_file = 1,
780 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300781 [IORING_OP_OPENAT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700782 .needs_file = 1,
783 .fd_non_neg = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700784 .file_table = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700785 .needs_fs = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700786 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300787 [IORING_OP_CLOSE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700788 .needs_file = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700789 .file_table = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700790 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300791 [IORING_OP_FILES_UPDATE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700792 .needs_mm = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700793 .file_table = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700794 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300795 [IORING_OP_STATX] = {
Jens Axboed3656342019-12-18 09:50:26 -0700796 .needs_mm = 1,
797 .needs_file = 1,
798 .fd_non_neg = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700799 .needs_fs = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700800 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300801 [IORING_OP_READ] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -0700802 .needs_mm = 1,
803 .needs_file = 1,
804 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700805 .pollin = 1,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700806 .buffer_select = 1,
Jens Axboe3a6820f2019-12-22 15:19:35 -0700807 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300808 [IORING_OP_WRITE] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -0700809 .needs_mm = 1,
810 .needs_file = 1,
811 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700812 .pollout = 1,
Jens Axboe3a6820f2019-12-22 15:19:35 -0700813 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300814 [IORING_OP_FADVISE] = {
Jens Axboe4840e412019-12-25 22:03:45 -0700815 .needs_file = 1,
816 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300817 [IORING_OP_MADVISE] = {
Jens Axboec1ca7572019-12-25 22:18:28 -0700818 .needs_mm = 1,
819 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300820 [IORING_OP_SEND] = {
Jens Axboefddafac2020-01-04 20:19:44 -0700821 .needs_mm = 1,
822 .needs_file = 1,
823 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700824 .pollout = 1,
Jens Axboefddafac2020-01-04 20:19:44 -0700825 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300826 [IORING_OP_RECV] = {
Jens Axboefddafac2020-01-04 20:19:44 -0700827 .needs_mm = 1,
828 .needs_file = 1,
829 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700830 .pollin = 1,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700831 .buffer_select = 1,
Jens Axboefddafac2020-01-04 20:19:44 -0700832 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300833 [IORING_OP_OPENAT2] = {
Jens Axboecebdb982020-01-08 17:59:24 -0700834 .needs_file = 1,
835 .fd_non_neg = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700836 .file_table = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700837 .needs_fs = 1,
Jens Axboecebdb982020-01-08 17:59:24 -0700838 },
Jens Axboe3e4827b2020-01-08 15:18:09 -0700839 [IORING_OP_EPOLL_CTL] = {
840 .unbound_nonreg_file = 1,
841 .file_table = 1,
842 },
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300843 [IORING_OP_SPLICE] = {
844 .needs_file = 1,
845 .hash_reg_file = 1,
846 .unbound_nonreg_file = 1,
Jens Axboeddf0322d2020-02-23 16:41:33 -0700847 },
848 [IORING_OP_PROVIDE_BUFFERS] = {},
Jens Axboe067524e2020-03-02 16:32:28 -0700849 [IORING_OP_REMOVE_BUFFERS] = {},
Jens Axboed3656342019-12-18 09:50:26 -0700850};
851
Jens Axboe561fb042019-10-24 07:25:42 -0600852static void io_wq_submit_work(struct io_wq_work **workptr);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700853static void io_cqring_fill_event(struct io_kiocb *req, long res);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800854static void io_put_req(struct io_kiocb *req);
Jens Axboe978db572019-11-14 22:39:04 -0700855static void __io_double_put_req(struct io_kiocb *req);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700856static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req);
857static void io_queue_linked_timeout(struct io_kiocb *req);
Jens Axboe05f3fb32019-12-09 11:22:50 -0700858static int __io_sqe_files_update(struct io_ring_ctx *ctx,
859 struct io_uring_files_update *ip,
860 unsigned nr_args);
Jens Axboef86cd202020-01-29 13:46:44 -0700861static int io_grab_files(struct io_kiocb *req);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300862static void io_cleanup_req(struct io_kiocb *req);
Jens Axboeb41e9852020-02-17 09:52:41 -0700863static int io_file_get(struct io_submit_state *state, struct io_kiocb *req,
864 int fd, struct file **out_file, bool fixed);
865static void __io_queue_sqe(struct io_kiocb *req,
866 const struct io_uring_sqe *sqe);
Jens Axboede0617e2019-04-06 21:51:27 -0600867
Jens Axboe2b188cc2019-01-07 10:46:33 -0700868static struct kmem_cache *req_cachep;
869
870static const struct file_operations io_uring_fops;
871
872struct sock *io_uring_get_socket(struct file *file)
873{
874#if defined(CONFIG_UNIX)
875 if (file->f_op == &io_uring_fops) {
876 struct io_ring_ctx *ctx = file->private_data;
877
878 return ctx->ring_sock->sk;
879 }
880#endif
881 return NULL;
882}
883EXPORT_SYMBOL(io_uring_get_socket);
884
885static void io_ring_ctx_ref_free(struct percpu_ref *ref)
886{
887 struct io_ring_ctx *ctx = container_of(ref, struct io_ring_ctx, refs);
888
Jens Axboe206aefd2019-11-07 18:27:42 -0700889 complete(&ctx->completions[0]);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700890}
891
892static struct io_ring_ctx *io_ring_ctx_alloc(struct io_uring_params *p)
893{
894 struct io_ring_ctx *ctx;
Jens Axboe78076bb2019-12-04 19:56:40 -0700895 int hash_bits;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700896
897 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
898 if (!ctx)
899 return NULL;
900
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700901 ctx->fallback_req = kmem_cache_alloc(req_cachep, GFP_KERNEL);
902 if (!ctx->fallback_req)
903 goto err;
904
Jens Axboe206aefd2019-11-07 18:27:42 -0700905 ctx->completions = kmalloc(2 * sizeof(struct completion), GFP_KERNEL);
906 if (!ctx->completions)
907 goto err;
908
Jens Axboe78076bb2019-12-04 19:56:40 -0700909 /*
910 * Use 5 bits less than the max cq entries, that should give us around
911 * 32 entries per hash list if totally full and uniformly spread.
912 */
913 hash_bits = ilog2(p->cq_entries);
914 hash_bits -= 5;
915 if (hash_bits <= 0)
916 hash_bits = 1;
917 ctx->cancel_hash_bits = hash_bits;
918 ctx->cancel_hash = kmalloc((1U << hash_bits) * sizeof(struct hlist_head),
919 GFP_KERNEL);
920 if (!ctx->cancel_hash)
921 goto err;
922 __hash_init(ctx->cancel_hash, 1U << hash_bits);
923
Roman Gushchin21482892019-05-07 10:01:48 -0700924 if (percpu_ref_init(&ctx->refs, io_ring_ctx_ref_free,
Jens Axboe206aefd2019-11-07 18:27:42 -0700925 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL))
926 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700927
928 ctx->flags = p->flags;
929 init_waitqueue_head(&ctx->cq_wait);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700930 INIT_LIST_HEAD(&ctx->cq_overflow_list);
Jens Axboe206aefd2019-11-07 18:27:42 -0700931 init_completion(&ctx->completions[0]);
932 init_completion(&ctx->completions[1]);
Jens Axboe5a2e7452020-02-23 16:23:11 -0700933 idr_init(&ctx->io_buffer_idr);
Jens Axboe071698e2020-01-28 10:04:42 -0700934 idr_init(&ctx->personality_idr);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700935 mutex_init(&ctx->uring_lock);
936 init_waitqueue_head(&ctx->wait);
937 spin_lock_init(&ctx->completion_lock);
Jens Axboedef596e2019-01-09 08:59:42 -0700938 INIT_LIST_HEAD(&ctx->poll_list);
Jens Axboede0617e2019-04-06 21:51:27 -0600939 INIT_LIST_HEAD(&ctx->defer_list);
Jens Axboe5262f562019-09-17 12:26:57 -0600940 INIT_LIST_HEAD(&ctx->timeout_list);
Jens Axboefcb323c2019-10-24 12:39:47 -0600941 init_waitqueue_head(&ctx->inflight_wait);
942 spin_lock_init(&ctx->inflight_lock);
943 INIT_LIST_HEAD(&ctx->inflight_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700944 return ctx;
Jens Axboe206aefd2019-11-07 18:27:42 -0700945err:
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700946 if (ctx->fallback_req)
947 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe206aefd2019-11-07 18:27:42 -0700948 kfree(ctx->completions);
Jens Axboe78076bb2019-12-04 19:56:40 -0700949 kfree(ctx->cancel_hash);
Jens Axboe206aefd2019-11-07 18:27:42 -0700950 kfree(ctx);
951 return NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700952}
953
Bob Liu9d858b22019-11-13 18:06:25 +0800954static inline bool __req_need_defer(struct io_kiocb *req)
Jens Axboede0617e2019-04-06 21:51:27 -0600955{
Jackie Liua197f662019-11-08 08:09:12 -0700956 struct io_ring_ctx *ctx = req->ctx;
957
Jens Axboe498ccd92019-10-25 10:04:25 -0600958 return req->sequence != ctx->cached_cq_tail + ctx->cached_sq_dropped
959 + atomic_read(&ctx->cached_cq_overflow);
Jens Axboede0617e2019-04-06 21:51:27 -0600960}
961
Bob Liu9d858b22019-11-13 18:06:25 +0800962static inline bool req_need_defer(struct io_kiocb *req)
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600963{
Pavel Begunkov87987892020-01-18 01:22:30 +0300964 if (unlikely(req->flags & REQ_F_IO_DRAIN))
Bob Liu9d858b22019-11-13 18:06:25 +0800965 return __req_need_defer(req);
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600966
Bob Liu9d858b22019-11-13 18:06:25 +0800967 return false;
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600968}
969
970static struct io_kiocb *io_get_deferred_req(struct io_ring_ctx *ctx)
Jens Axboede0617e2019-04-06 21:51:27 -0600971{
972 struct io_kiocb *req;
973
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600974 req = list_first_entry_or_null(&ctx->defer_list, struct io_kiocb, list);
Bob Liu9d858b22019-11-13 18:06:25 +0800975 if (req && !req_need_defer(req)) {
Jens Axboede0617e2019-04-06 21:51:27 -0600976 list_del_init(&req->list);
977 return req;
978 }
979
980 return NULL;
981}
982
Jens Axboe5262f562019-09-17 12:26:57 -0600983static struct io_kiocb *io_get_timeout_req(struct io_ring_ctx *ctx)
984{
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600985 struct io_kiocb *req;
986
987 req = list_first_entry_or_null(&ctx->timeout_list, struct io_kiocb, list);
Jens Axboe93bd25b2019-11-11 23:34:31 -0700988 if (req) {
989 if (req->flags & REQ_F_TIMEOUT_NOSEQ)
990 return NULL;
Linus Torvaldsfb4b3d32019-11-25 10:40:27 -0800991 if (!__req_need_defer(req)) {
Jens Axboe93bd25b2019-11-11 23:34:31 -0700992 list_del_init(&req->list);
993 return req;
994 }
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600995 }
996
997 return NULL;
Jens Axboe5262f562019-09-17 12:26:57 -0600998}
999
Jens Axboede0617e2019-04-06 21:51:27 -06001000static void __io_commit_cqring(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001001{
Hristo Venev75b28af2019-08-26 17:23:46 +00001002 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001003
Pavel Begunkov07910152020-01-17 03:52:46 +03001004 /* order cqe stores with ring update */
1005 smp_store_release(&rings->cq.tail, ctx->cached_cq_tail);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001006
Pavel Begunkov07910152020-01-17 03:52:46 +03001007 if (wq_has_sleeper(&ctx->cq_wait)) {
1008 wake_up_interruptible(&ctx->cq_wait);
1009 kill_fasync(&ctx->cq_fasync, SIGIO, POLL_IN);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001010 }
1011}
1012
Jens Axboecccf0ee2020-01-27 16:34:48 -07001013static inline void io_req_work_grab_env(struct io_kiocb *req,
1014 const struct io_op_def *def)
Jens Axboe18d9be12019-09-10 09:13:05 -06001015{
Jens Axboecccf0ee2020-01-27 16:34:48 -07001016 if (!req->work.mm && def->needs_mm) {
1017 mmgrab(current->mm);
1018 req->work.mm = current->mm;
1019 }
1020 if (!req->work.creds)
1021 req->work.creds = get_current_cred();
Jens Axboeff002b32020-02-07 16:05:21 -07001022 if (!req->work.fs && def->needs_fs) {
1023 spin_lock(&current->fs->lock);
1024 if (!current->fs->in_exec) {
1025 req->work.fs = current->fs;
1026 req->work.fs->users++;
1027 } else {
1028 req->work.flags |= IO_WQ_WORK_CANCEL;
1029 }
1030 spin_unlock(&current->fs->lock);
1031 }
Jens Axboe6ab23142020-02-08 20:23:59 -07001032 if (!req->work.task_pid)
1033 req->work.task_pid = task_pid_vnr(current);
Jens Axboecccf0ee2020-01-27 16:34:48 -07001034}
1035
1036static inline void io_req_work_drop_env(struct io_kiocb *req)
1037{
1038 if (req->work.mm) {
1039 mmdrop(req->work.mm);
1040 req->work.mm = NULL;
1041 }
1042 if (req->work.creds) {
1043 put_cred(req->work.creds);
1044 req->work.creds = NULL;
1045 }
Jens Axboeff002b32020-02-07 16:05:21 -07001046 if (req->work.fs) {
1047 struct fs_struct *fs = req->work.fs;
1048
1049 spin_lock(&req->work.fs->lock);
1050 if (--fs->users)
1051 fs = NULL;
1052 spin_unlock(&req->work.fs->lock);
1053 if (fs)
1054 free_fs_struct(fs);
1055 }
Jens Axboe561fb042019-10-24 07:25:42 -06001056}
1057
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001058static inline void io_prep_async_work(struct io_kiocb *req,
Jens Axboe94ae5e72019-11-14 19:39:52 -07001059 struct io_kiocb **link)
Jens Axboe561fb042019-10-24 07:25:42 -06001060{
Jens Axboed3656342019-12-18 09:50:26 -07001061 const struct io_op_def *def = &io_op_defs[req->opcode];
Jens Axboe54a91f32019-09-10 09:15:04 -06001062
Jens Axboed3656342019-12-18 09:50:26 -07001063 if (req->flags & REQ_F_ISREG) {
1064 if (def->hash_reg_file)
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001065 io_wq_hash_work(&req->work, file_inode(req->file));
Jens Axboed3656342019-12-18 09:50:26 -07001066 } else {
1067 if (def->unbound_nonreg_file)
Jens Axboe3529d8c2019-12-19 18:24:38 -07001068 req->work.flags |= IO_WQ_WORK_UNBOUND;
Jens Axboe54a91f32019-09-10 09:15:04 -06001069 }
Jens Axboecccf0ee2020-01-27 16:34:48 -07001070
1071 io_req_work_grab_env(req, def);
Jens Axboe54a91f32019-09-10 09:15:04 -06001072
Jens Axboe94ae5e72019-11-14 19:39:52 -07001073 *link = io_prep_linked_timeout(req);
Jens Axboe561fb042019-10-24 07:25:42 -06001074}
1075
Jackie Liua197f662019-11-08 08:09:12 -07001076static inline void io_queue_async_work(struct io_kiocb *req)
Jens Axboe561fb042019-10-24 07:25:42 -06001077{
Jackie Liua197f662019-11-08 08:09:12 -07001078 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001079 struct io_kiocb *link;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001080
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001081 io_prep_async_work(req, &link);
Jens Axboe561fb042019-10-24 07:25:42 -06001082
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001083 trace_io_uring_queue_async_work(ctx, io_wq_is_hashed(&req->work), req,
1084 &req->work, req->flags);
1085 io_wq_enqueue(ctx->io_wq, &req->work);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001086
1087 if (link)
1088 io_queue_linked_timeout(link);
Jens Axboe18d9be12019-09-10 09:13:05 -06001089}
1090
Jens Axboe5262f562019-09-17 12:26:57 -06001091static void io_kill_timeout(struct io_kiocb *req)
1092{
1093 int ret;
1094
Jens Axboe2d283902019-12-04 11:08:05 -07001095 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe5262f562019-09-17 12:26:57 -06001096 if (ret != -1) {
1097 atomic_inc(&req->ctx->cq_timeouts);
Jens Axboe842f9612019-10-29 12:34:10 -06001098 list_del_init(&req->list);
Pavel Begunkovf0e20b82020-03-07 01:15:22 +03001099 req->flags |= REQ_F_COMP_LOCKED;
Jens Axboe78e19bb2019-11-06 15:21:34 -07001100 io_cqring_fill_event(req, 0);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001101 io_put_req(req);
Jens Axboe5262f562019-09-17 12:26:57 -06001102 }
1103}
1104
1105static void io_kill_timeouts(struct io_ring_ctx *ctx)
1106{
1107 struct io_kiocb *req, *tmp;
1108
1109 spin_lock_irq(&ctx->completion_lock);
1110 list_for_each_entry_safe(req, tmp, &ctx->timeout_list, list)
1111 io_kill_timeout(req);
1112 spin_unlock_irq(&ctx->completion_lock);
1113}
1114
Jens Axboede0617e2019-04-06 21:51:27 -06001115static void io_commit_cqring(struct io_ring_ctx *ctx)
1116{
1117 struct io_kiocb *req;
1118
Jens Axboe5262f562019-09-17 12:26:57 -06001119 while ((req = io_get_timeout_req(ctx)) != NULL)
1120 io_kill_timeout(req);
1121
Jens Axboede0617e2019-04-06 21:51:27 -06001122 __io_commit_cqring(ctx);
1123
Pavel Begunkov87987892020-01-18 01:22:30 +03001124 while ((req = io_get_deferred_req(ctx)) != NULL)
Jackie Liua197f662019-11-08 08:09:12 -07001125 io_queue_async_work(req);
Jens Axboede0617e2019-04-06 21:51:27 -06001126}
1127
Jens Axboe2b188cc2019-01-07 10:46:33 -07001128static struct io_uring_cqe *io_get_cqring(struct io_ring_ctx *ctx)
1129{
Hristo Venev75b28af2019-08-26 17:23:46 +00001130 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001131 unsigned tail;
1132
1133 tail = ctx->cached_cq_tail;
Stefan Bühler115e12e2019-04-24 23:54:18 +02001134 /*
1135 * writes to the cq entry need to come after reading head; the
1136 * control dependency is enough as we're using WRITE_ONCE to
1137 * fill the cq entry
1138 */
Hristo Venev75b28af2019-08-26 17:23:46 +00001139 if (tail - READ_ONCE(rings->cq.head) == rings->cq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001140 return NULL;
1141
1142 ctx->cached_cq_tail++;
Hristo Venev75b28af2019-08-26 17:23:46 +00001143 return &rings->cqes[tail & ctx->cq_mask];
Jens Axboe2b188cc2019-01-07 10:46:33 -07001144}
1145
Jens Axboef2842ab2020-01-08 11:04:00 -07001146static inline bool io_should_trigger_evfd(struct io_ring_ctx *ctx)
1147{
Jens Axboef0b493e2020-02-01 21:30:11 -07001148 if (!ctx->cq_ev_fd)
1149 return false;
Jens Axboef2842ab2020-01-08 11:04:00 -07001150 if (!ctx->eventfd_async)
1151 return true;
Jens Axboeb41e9852020-02-17 09:52:41 -07001152 return io_wq_current_is_worker();
Jens Axboef2842ab2020-01-08 11:04:00 -07001153}
1154
Jens Axboeb41e9852020-02-17 09:52:41 -07001155static void io_cqring_ev_posted(struct io_ring_ctx *ctx)
Jens Axboe8c838782019-03-12 15:48:16 -06001156{
1157 if (waitqueue_active(&ctx->wait))
1158 wake_up(&ctx->wait);
1159 if (waitqueue_active(&ctx->sqo_wait))
1160 wake_up(&ctx->sqo_wait);
Jens Axboeb41e9852020-02-17 09:52:41 -07001161 if (io_should_trigger_evfd(ctx))
Jens Axboe9b402842019-04-11 11:45:41 -06001162 eventfd_signal(ctx->cq_ev_fd, 1);
Jens Axboe8c838782019-03-12 15:48:16 -06001163}
1164
Jens Axboec4a2ed72019-11-21 21:01:26 -07001165/* Returns true if there are no backlogged entries after the flush */
1166static bool io_cqring_overflow_flush(struct io_ring_ctx *ctx, bool force)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001167{
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001168 struct io_rings *rings = ctx->rings;
1169 struct io_uring_cqe *cqe;
1170 struct io_kiocb *req;
1171 unsigned long flags;
1172 LIST_HEAD(list);
1173
1174 if (!force) {
1175 if (list_empty_careful(&ctx->cq_overflow_list))
Jens Axboec4a2ed72019-11-21 21:01:26 -07001176 return true;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001177 if ((ctx->cached_cq_tail - READ_ONCE(rings->cq.head) ==
1178 rings->cq_ring_entries))
Jens Axboec4a2ed72019-11-21 21:01:26 -07001179 return false;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001180 }
1181
1182 spin_lock_irqsave(&ctx->completion_lock, flags);
1183
1184 /* if force is set, the ring is going away. always drop after that */
1185 if (force)
Jens Axboe69b3e542020-01-08 11:01:46 -07001186 ctx->cq_overflow_flushed = 1;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001187
Jens Axboec4a2ed72019-11-21 21:01:26 -07001188 cqe = NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001189 while (!list_empty(&ctx->cq_overflow_list)) {
1190 cqe = io_get_cqring(ctx);
1191 if (!cqe && !force)
1192 break;
1193
1194 req = list_first_entry(&ctx->cq_overflow_list, struct io_kiocb,
1195 list);
1196 list_move(&req->list, &list);
Jens Axboe2ca10252020-02-13 17:17:35 -07001197 req->flags &= ~REQ_F_OVERFLOW;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001198 if (cqe) {
1199 WRITE_ONCE(cqe->user_data, req->user_data);
1200 WRITE_ONCE(cqe->res, req->result);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001201 WRITE_ONCE(cqe->flags, req->cflags);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001202 } else {
1203 WRITE_ONCE(ctx->rings->cq_overflow,
1204 atomic_inc_return(&ctx->cached_cq_overflow));
1205 }
1206 }
1207
1208 io_commit_cqring(ctx);
Jens Axboead3eb2c2019-12-18 17:12:20 -07001209 if (cqe) {
1210 clear_bit(0, &ctx->sq_check_overflow);
1211 clear_bit(0, &ctx->cq_check_overflow);
1212 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001213 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1214 io_cqring_ev_posted(ctx);
1215
1216 while (!list_empty(&list)) {
1217 req = list_first_entry(&list, struct io_kiocb, list);
1218 list_del(&req->list);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001219 io_put_req(req);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001220 }
Jens Axboec4a2ed72019-11-21 21:01:26 -07001221
1222 return cqe != NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001223}
1224
Jens Axboebcda7ba2020-02-23 16:42:51 -07001225static void __io_cqring_fill_event(struct io_kiocb *req, long res, long cflags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001226{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001227 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001228 struct io_uring_cqe *cqe;
1229
Jens Axboe78e19bb2019-11-06 15:21:34 -07001230 trace_io_uring_complete(ctx, req->user_data, res);
Jens Axboe51c3ff62019-11-03 06:52:50 -07001231
Jens Axboe2b188cc2019-01-07 10:46:33 -07001232 /*
1233 * If we can't get a cq entry, userspace overflowed the
1234 * submission (by quite a lot). Increment the overflow count in
1235 * the ring.
1236 */
1237 cqe = io_get_cqring(ctx);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001238 if (likely(cqe)) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001239 WRITE_ONCE(cqe->user_data, req->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001240 WRITE_ONCE(cqe->res, res);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001241 WRITE_ONCE(cqe->flags, cflags);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001242 } else if (ctx->cq_overflow_flushed) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07001243 WRITE_ONCE(ctx->rings->cq_overflow,
1244 atomic_inc_return(&ctx->cached_cq_overflow));
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001245 } else {
Jens Axboead3eb2c2019-12-18 17:12:20 -07001246 if (list_empty(&ctx->cq_overflow_list)) {
1247 set_bit(0, &ctx->sq_check_overflow);
1248 set_bit(0, &ctx->cq_check_overflow);
1249 }
Jens Axboe2ca10252020-02-13 17:17:35 -07001250 req->flags |= REQ_F_OVERFLOW;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001251 refcount_inc(&req->refs);
1252 req->result = res;
Jens Axboebcda7ba2020-02-23 16:42:51 -07001253 req->cflags = cflags;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001254 list_add_tail(&req->list, &ctx->cq_overflow_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001255 }
1256}
1257
Jens Axboebcda7ba2020-02-23 16:42:51 -07001258static void io_cqring_fill_event(struct io_kiocb *req, long res)
1259{
1260 __io_cqring_fill_event(req, res, 0);
1261}
1262
1263static void __io_cqring_add_event(struct io_kiocb *req, long res, long cflags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001264{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001265 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001266 unsigned long flags;
1267
1268 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001269 __io_cqring_fill_event(req, res, cflags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001270 io_commit_cqring(ctx);
1271 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1272
Jens Axboe8c838782019-03-12 15:48:16 -06001273 io_cqring_ev_posted(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001274}
1275
Jens Axboebcda7ba2020-02-23 16:42:51 -07001276static void io_cqring_add_event(struct io_kiocb *req, long res)
1277{
1278 __io_cqring_add_event(req, res, 0);
1279}
1280
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001281static inline bool io_is_fallback_req(struct io_kiocb *req)
1282{
1283 return req == (struct io_kiocb *)
1284 ((unsigned long) req->ctx->fallback_req & ~1UL);
1285}
1286
1287static struct io_kiocb *io_get_fallback_req(struct io_ring_ctx *ctx)
1288{
1289 struct io_kiocb *req;
1290
1291 req = ctx->fallback_req;
1292 if (!test_and_set_bit_lock(0, (unsigned long *) ctx->fallback_req))
1293 return req;
1294
1295 return NULL;
1296}
1297
Jens Axboe2579f912019-01-09 09:10:43 -07001298static struct io_kiocb *io_get_req(struct io_ring_ctx *ctx,
1299 struct io_submit_state *state)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001300{
Jens Axboefd6fab22019-03-14 16:30:06 -06001301 gfp_t gfp = GFP_KERNEL | __GFP_NOWARN;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001302 struct io_kiocb *req;
1303
Jens Axboe2579f912019-01-09 09:10:43 -07001304 if (!state) {
Jens Axboefd6fab22019-03-14 16:30:06 -06001305 req = kmem_cache_alloc(req_cachep, gfp);
Jens Axboe2579f912019-01-09 09:10:43 -07001306 if (unlikely(!req))
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001307 goto fallback;
Jens Axboe2579f912019-01-09 09:10:43 -07001308 } else if (!state->free_reqs) {
1309 size_t sz;
1310 int ret;
1311
1312 sz = min_t(size_t, state->ios_left, ARRAY_SIZE(state->reqs));
Jens Axboefd6fab22019-03-14 16:30:06 -06001313 ret = kmem_cache_alloc_bulk(req_cachep, gfp, sz, state->reqs);
1314
1315 /*
1316 * Bulk alloc is all-or-nothing. If we fail to get a batch,
1317 * retry single alloc to be on the safe side.
1318 */
1319 if (unlikely(ret <= 0)) {
1320 state->reqs[0] = kmem_cache_alloc(req_cachep, gfp);
1321 if (!state->reqs[0])
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001322 goto fallback;
Jens Axboefd6fab22019-03-14 16:30:06 -06001323 ret = 1;
1324 }
Jens Axboe2579f912019-01-09 09:10:43 -07001325 state->free_reqs = ret - 1;
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03001326 req = state->reqs[ret - 1];
Jens Axboe2579f912019-01-09 09:10:43 -07001327 } else {
Jens Axboe2579f912019-01-09 09:10:43 -07001328 state->free_reqs--;
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03001329 req = state->reqs[state->free_reqs];
Jens Axboe2b188cc2019-01-07 10:46:33 -07001330 }
1331
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001332got_it:
Jens Axboe1a6b74f2019-12-02 10:33:15 -07001333 req->io = NULL;
Jens Axboe60c112b2019-06-21 10:20:18 -06001334 req->file = NULL;
Jens Axboe2579f912019-01-09 09:10:43 -07001335 req->ctx = ctx;
1336 req->flags = 0;
Jens Axboee65ef562019-03-12 10:16:44 -06001337 /* one is dropped after submission, the other at completion */
1338 refcount_set(&req->refs, 2);
Jens Axboe9e645e112019-05-10 16:07:28 -06001339 req->result = 0;
Jens Axboe561fb042019-10-24 07:25:42 -06001340 INIT_IO_WORK(&req->work, io_wq_submit_work);
Jens Axboe2579f912019-01-09 09:10:43 -07001341 return req;
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001342fallback:
1343 req = io_get_fallback_req(ctx);
1344 if (req)
1345 goto got_it;
Pavel Begunkov6805b322019-10-08 02:18:42 +03001346 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001347 return NULL;
1348}
1349
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001350static inline void io_put_file(struct io_kiocb *req, struct file *file,
1351 bool fixed)
1352{
1353 if (fixed)
Xiaoguang Wang05589552020-03-31 14:05:18 +08001354 percpu_ref_put(req->fixed_file_refs);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001355 else
1356 fput(file);
1357}
1358
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03001359static void __io_req_do_free(struct io_kiocb *req)
Jens Axboedef596e2019-01-09 08:59:42 -07001360{
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03001361 if (likely(!io_is_fallback_req(req)))
1362 kmem_cache_free(req_cachep, req);
1363 else
1364 clear_bit_unlock(0, (unsigned long *) req->ctx->fallback_req);
1365}
1366
Jens Axboec6ca97b302019-12-28 12:11:08 -07001367static void __io_req_aux_free(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001368{
Pavel Begunkov929a3af2020-02-19 00:19:09 +03001369 if (req->flags & REQ_F_NEED_CLEANUP)
1370 io_cleanup_req(req);
1371
YueHaibing96fd84d2020-01-07 22:22:44 +08001372 kfree(req->io);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001373 if (req->file)
1374 io_put_file(req, req->file, (req->flags & REQ_F_FIXED_FILE));
Jens Axboecccf0ee2020-01-27 16:34:48 -07001375
1376 io_req_work_drop_env(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001377}
1378
1379static void __io_free_req(struct io_kiocb *req)
1380{
Jens Axboec6ca97b302019-12-28 12:11:08 -07001381 __io_req_aux_free(req);
Jens Axboefcb323c2019-10-24 12:39:47 -06001382
Jens Axboefcb323c2019-10-24 12:39:47 -06001383 if (req->flags & REQ_F_INFLIGHT) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001384 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06001385 unsigned long flags;
1386
1387 spin_lock_irqsave(&ctx->inflight_lock, flags);
1388 list_del(&req->inflight_entry);
1389 if (waitqueue_active(&ctx->inflight_wait))
1390 wake_up(&ctx->inflight_wait);
1391 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
1392 }
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03001393
1394 percpu_ref_put(&req->ctx->refs);
1395 __io_req_do_free(req);
Jens Axboee65ef562019-03-12 10:16:44 -06001396}
1397
Jens Axboec6ca97b302019-12-28 12:11:08 -07001398struct req_batch {
1399 void *reqs[IO_IOPOLL_BATCH];
1400 int to_free;
1401 int need_iter;
1402};
1403
1404static void io_free_req_many(struct io_ring_ctx *ctx, struct req_batch *rb)
1405{
1406 if (!rb->to_free)
1407 return;
1408 if (rb->need_iter) {
1409 int i, inflight = 0;
1410 unsigned long flags;
1411
1412 for (i = 0; i < rb->to_free; i++) {
1413 struct io_kiocb *req = rb->reqs[i];
1414
Jens Axboe10fef4b2020-01-09 07:52:28 -07001415 if (req->flags & REQ_F_FIXED_FILE) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001416 req->file = NULL;
Xiaoguang Wang05589552020-03-31 14:05:18 +08001417 percpu_ref_put(req->fixed_file_refs);
Jens Axboe10fef4b2020-01-09 07:52:28 -07001418 }
Jens Axboec6ca97b302019-12-28 12:11:08 -07001419 if (req->flags & REQ_F_INFLIGHT)
1420 inflight++;
Jens Axboec6ca97b302019-12-28 12:11:08 -07001421 __io_req_aux_free(req);
1422 }
1423 if (!inflight)
1424 goto do_free;
1425
1426 spin_lock_irqsave(&ctx->inflight_lock, flags);
1427 for (i = 0; i < rb->to_free; i++) {
1428 struct io_kiocb *req = rb->reqs[i];
1429
Jens Axboe10fef4b2020-01-09 07:52:28 -07001430 if (req->flags & REQ_F_INFLIGHT) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001431 list_del(&req->inflight_entry);
1432 if (!--inflight)
1433 break;
1434 }
1435 }
1436 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
1437
1438 if (waitqueue_active(&ctx->inflight_wait))
1439 wake_up(&ctx->inflight_wait);
1440 }
1441do_free:
1442 kmem_cache_free_bulk(req_cachep, rb->to_free, rb->reqs);
1443 percpu_ref_put_many(&ctx->refs, rb->to_free);
Jens Axboec6ca97b302019-12-28 12:11:08 -07001444 rb->to_free = rb->need_iter = 0;
Jens Axboee65ef562019-03-12 10:16:44 -06001445}
1446
Jackie Liua197f662019-11-08 08:09:12 -07001447static bool io_link_cancel_timeout(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -06001448{
Jackie Liua197f662019-11-08 08:09:12 -07001449 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001450 int ret;
1451
Jens Axboe2d283902019-12-04 11:08:05 -07001452 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe2665abf2019-11-05 12:40:47 -07001453 if (ret != -1) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001454 io_cqring_fill_event(req, -ECANCELED);
Jens Axboe2665abf2019-11-05 12:40:47 -07001455 io_commit_cqring(ctx);
1456 req->flags &= ~REQ_F_LINK;
Jackie Liuec9c02a2019-11-08 23:50:36 +08001457 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07001458 return true;
1459 }
1460
1461 return false;
1462}
1463
Jens Axboeba816ad2019-09-28 11:36:45 -06001464static void io_req_link_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboe9e645e112019-05-10 16:07:28 -06001465{
Jens Axboe2665abf2019-11-05 12:40:47 -07001466 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001467 bool wake_ev = false;
Jens Axboe9e645e112019-05-10 16:07:28 -06001468
Jens Axboe4d7dd462019-11-20 13:03:52 -07001469 /* Already got next link */
1470 if (req->flags & REQ_F_LINK_NEXT)
1471 return;
1472
Jens Axboe9e645e112019-05-10 16:07:28 -06001473 /*
1474 * The list should never be empty when we are called here. But could
1475 * potentially happen if the chain is messed up, check to be on the
1476 * safe side.
1477 */
Pavel Begunkov44932332019-12-05 16:16:35 +03001478 while (!list_empty(&req->link_list)) {
1479 struct io_kiocb *nxt = list_first_entry(&req->link_list,
1480 struct io_kiocb, link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001481
Pavel Begunkov44932332019-12-05 16:16:35 +03001482 if (unlikely((req->flags & REQ_F_LINK_TIMEOUT) &&
1483 (nxt->flags & REQ_F_TIMEOUT))) {
1484 list_del_init(&nxt->link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001485 wake_ev |= io_link_cancel_timeout(nxt);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001486 req->flags &= ~REQ_F_LINK_TIMEOUT;
1487 continue;
1488 }
Jens Axboe9e645e112019-05-10 16:07:28 -06001489
Pavel Begunkov44932332019-12-05 16:16:35 +03001490 list_del_init(&req->link_list);
1491 if (!list_empty(&nxt->link_list))
1492 nxt->flags |= REQ_F_LINK;
Pavel Begunkovb18fdf72019-11-21 23:21:02 +03001493 *nxtptr = nxt;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001494 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06001495 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001496
Jens Axboe4d7dd462019-11-20 13:03:52 -07001497 req->flags |= REQ_F_LINK_NEXT;
Jens Axboe2665abf2019-11-05 12:40:47 -07001498 if (wake_ev)
1499 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001500}
1501
1502/*
1503 * Called if REQ_F_LINK is set, and we fail the head request
1504 */
1505static void io_fail_links(struct io_kiocb *req)
1506{
Jens Axboe2665abf2019-11-05 12:40:47 -07001507 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001508 unsigned long flags;
1509
1510 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboe9e645e112019-05-10 16:07:28 -06001511
1512 while (!list_empty(&req->link_list)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03001513 struct io_kiocb *link = list_first_entry(&req->link_list,
1514 struct io_kiocb, link_list);
Jens Axboe9e645e112019-05-10 16:07:28 -06001515
Pavel Begunkov44932332019-12-05 16:16:35 +03001516 list_del_init(&link->link_list);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02001517 trace_io_uring_fail_link(req, link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001518
1519 if ((req->flags & REQ_F_LINK_TIMEOUT) &&
Jens Axboed625c6e2019-12-17 19:53:05 -07001520 link->opcode == IORING_OP_LINK_TIMEOUT) {
Jackie Liua197f662019-11-08 08:09:12 -07001521 io_link_cancel_timeout(link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001522 } else {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001523 io_cqring_fill_event(link, -ECANCELED);
Jens Axboe978db572019-11-14 22:39:04 -07001524 __io_double_put_req(link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001525 }
Jens Axboe5d960722019-11-19 15:31:28 -07001526 req->flags &= ~REQ_F_LINK_TIMEOUT;
Jens Axboe9e645e112019-05-10 16:07:28 -06001527 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001528
1529 io_commit_cqring(ctx);
1530 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1531 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001532}
1533
Jens Axboe4d7dd462019-11-20 13:03:52 -07001534static void io_req_find_next(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboe9e645e112019-05-10 16:07:28 -06001535{
Jens Axboe4d7dd462019-11-20 13:03:52 -07001536 if (likely(!(req->flags & REQ_F_LINK)))
Jens Axboe2665abf2019-11-05 12:40:47 -07001537 return;
Jens Axboe2665abf2019-11-05 12:40:47 -07001538
Jens Axboe9e645e112019-05-10 16:07:28 -06001539 /*
1540 * If LINK is set, we have dependent requests in this chain. If we
1541 * didn't fail this request, queue the first one up, moving any other
1542 * dependencies to the next request. In case of failure, fail the rest
1543 * of the chain.
1544 */
Jens Axboe2665abf2019-11-05 12:40:47 -07001545 if (req->flags & REQ_F_FAIL_LINK) {
1546 io_fail_links(req);
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001547 } else if ((req->flags & (REQ_F_LINK_TIMEOUT | REQ_F_COMP_LOCKED)) ==
1548 REQ_F_LINK_TIMEOUT) {
Jens Axboe2665abf2019-11-05 12:40:47 -07001549 struct io_ring_ctx *ctx = req->ctx;
1550 unsigned long flags;
1551
1552 /*
1553 * If this is a timeout link, we could be racing with the
1554 * timeout timer. Grab the completion lock for this case to
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001555 * protect against that.
Jens Axboe2665abf2019-11-05 12:40:47 -07001556 */
1557 spin_lock_irqsave(&ctx->completion_lock, flags);
1558 io_req_link_next(req, nxt);
1559 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1560 } else {
1561 io_req_link_next(req, nxt);
Jens Axboe9e645e112019-05-10 16:07:28 -06001562 }
Jens Axboe4d7dd462019-11-20 13:03:52 -07001563}
Jens Axboe9e645e112019-05-10 16:07:28 -06001564
Jackie Liuc69f8db2019-11-09 11:00:08 +08001565static void io_free_req(struct io_kiocb *req)
1566{
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001567 struct io_kiocb *nxt = NULL;
1568
1569 io_req_find_next(req, &nxt);
Pavel Begunkov70cf9f32019-11-21 23:21:00 +03001570 __io_free_req(req);
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001571
1572 if (nxt)
1573 io_queue_async_work(nxt);
Jackie Liuc69f8db2019-11-09 11:00:08 +08001574}
1575
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001576static void io_link_work_cb(struct io_wq_work **workptr)
1577{
Pavel Begunkov18a542f2020-03-23 00:23:29 +03001578 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
1579 struct io_kiocb *link;
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001580
Pavel Begunkov18a542f2020-03-23 00:23:29 +03001581 link = list_first_entry(&req->link_list, struct io_kiocb, link_list);
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001582 io_queue_linked_timeout(link);
1583 io_wq_submit_work(workptr);
1584}
1585
1586static void io_wq_assign_next(struct io_wq_work **workptr, struct io_kiocb *nxt)
1587{
1588 struct io_kiocb *link;
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001589 const struct io_op_def *def = &io_op_defs[nxt->opcode];
1590
1591 if ((nxt->flags & REQ_F_ISREG) && def->hash_reg_file)
1592 io_wq_hash_work(&nxt->work, file_inode(nxt->file));
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001593
1594 *workptr = &nxt->work;
1595 link = io_prep_linked_timeout(nxt);
Pavel Begunkov18a542f2020-03-23 00:23:29 +03001596 if (link)
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001597 nxt->work.func = io_link_work_cb;
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001598}
1599
Jens Axboeba816ad2019-09-28 11:36:45 -06001600/*
1601 * Drop reference to request, return next in chain (if there is one) if this
1602 * was the last reference to this request.
1603 */
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001604__attribute__((nonnull))
Jackie Liuec9c02a2019-11-08 23:50:36 +08001605static void io_put_req_find_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboee65ef562019-03-12 10:16:44 -06001606{
Jens Axboe2a44f462020-02-25 13:25:41 -07001607 if (refcount_dec_and_test(&req->refs)) {
1608 io_req_find_next(req, nxtptr);
Jens Axboe4d7dd462019-11-20 13:03:52 -07001609 __io_free_req(req);
Jens Axboe2a44f462020-02-25 13:25:41 -07001610 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001611}
1612
Jens Axboe2b188cc2019-01-07 10:46:33 -07001613static void io_put_req(struct io_kiocb *req)
1614{
Jens Axboedef596e2019-01-09 08:59:42 -07001615 if (refcount_dec_and_test(&req->refs))
1616 io_free_req(req);
1617}
1618
Pavel Begunkove9fd9392020-03-04 16:14:12 +03001619static void io_steal_work(struct io_kiocb *req,
1620 struct io_wq_work **workptr)
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001621{
1622 /*
1623 * It's in an io-wq worker, so there always should be at least
1624 * one reference, which will be dropped in io_put_work() just
1625 * after the current handler returns.
1626 *
1627 * It also means, that if the counter dropped to 1, then there is
1628 * no asynchronous users left, so it's safe to steal the next work.
1629 */
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001630 if (refcount_read(&req->refs) == 1) {
1631 struct io_kiocb *nxt = NULL;
1632
1633 io_req_find_next(req, &nxt);
1634 if (nxt)
1635 io_wq_assign_next(workptr, nxt);
1636 }
1637}
1638
Jens Axboe978db572019-11-14 22:39:04 -07001639/*
1640 * Must only be used if we don't need to care about links, usually from
1641 * within the completion handling itself.
1642 */
1643static void __io_double_put_req(struct io_kiocb *req)
Jens Axboea3a0e432019-08-20 11:03:11 -06001644{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001645 /* drop both submit and complete references */
1646 if (refcount_sub_and_test(2, &req->refs))
1647 __io_free_req(req);
1648}
1649
Jens Axboe978db572019-11-14 22:39:04 -07001650static void io_double_put_req(struct io_kiocb *req)
1651{
1652 /* drop both submit and complete references */
1653 if (refcount_sub_and_test(2, &req->refs))
1654 io_free_req(req);
1655}
1656
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001657static unsigned io_cqring_events(struct io_ring_ctx *ctx, bool noflush)
Jens Axboea3a0e432019-08-20 11:03:11 -06001658{
Jens Axboe84f97dc2019-11-06 11:27:53 -07001659 struct io_rings *rings = ctx->rings;
1660
Jens Axboead3eb2c2019-12-18 17:12:20 -07001661 if (test_bit(0, &ctx->cq_check_overflow)) {
1662 /*
1663 * noflush == true is from the waitqueue handler, just ensure
1664 * we wake up the task, and the next invocation will flush the
1665 * entries. We cannot safely to it from here.
1666 */
1667 if (noflush && !list_empty(&ctx->cq_overflow_list))
1668 return -1U;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001669
Jens Axboead3eb2c2019-12-18 17:12:20 -07001670 io_cqring_overflow_flush(ctx, false);
1671 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001672
Jens Axboea3a0e432019-08-20 11:03:11 -06001673 /* See comment at the top of this file */
1674 smp_rmb();
Jens Axboead3eb2c2019-12-18 17:12:20 -07001675 return ctx->cached_cq_tail - READ_ONCE(rings->cq.head);
Jens Axboea3a0e432019-08-20 11:03:11 -06001676}
1677
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03001678static inline unsigned int io_sqring_entries(struct io_ring_ctx *ctx)
1679{
1680 struct io_rings *rings = ctx->rings;
1681
1682 /* make sure SQ entry isn't read before tail */
1683 return smp_load_acquire(&rings->sq.tail) - ctx->cached_sq_head;
1684}
1685
Jens Axboe8237e042019-12-28 10:48:22 -07001686static inline bool io_req_multi_free(struct req_batch *rb, struct io_kiocb *req)
Jens Axboee94f1412019-12-19 12:06:02 -07001687{
Jens Axboec6ca97b302019-12-28 12:11:08 -07001688 if ((req->flags & REQ_F_LINK) || io_is_fallback_req(req))
1689 return false;
Jens Axboee94f1412019-12-19 12:06:02 -07001690
Jens Axboec6ca97b302019-12-28 12:11:08 -07001691 if (!(req->flags & REQ_F_FIXED_FILE) || req->io)
1692 rb->need_iter++;
1693
1694 rb->reqs[rb->to_free++] = req;
1695 if (unlikely(rb->to_free == ARRAY_SIZE(rb->reqs)))
1696 io_free_req_many(req->ctx, rb);
1697 return true;
Jens Axboee94f1412019-12-19 12:06:02 -07001698}
1699
Jens Axboebcda7ba2020-02-23 16:42:51 -07001700static int io_put_kbuf(struct io_kiocb *req)
1701{
Jens Axboe4d954c22020-02-27 07:31:19 -07001702 struct io_buffer *kbuf;
Jens Axboebcda7ba2020-02-23 16:42:51 -07001703 int cflags;
1704
Jens Axboe4d954c22020-02-27 07:31:19 -07001705 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
Jens Axboebcda7ba2020-02-23 16:42:51 -07001706 cflags = kbuf->bid << IORING_CQE_BUFFER_SHIFT;
1707 cflags |= IORING_CQE_F_BUFFER;
1708 req->rw.addr = 0;
1709 kfree(kbuf);
1710 return cflags;
1711}
1712
Jens Axboedef596e2019-01-09 08:59:42 -07001713/*
1714 * Find and free completed poll iocbs
1715 */
1716static void io_iopoll_complete(struct io_ring_ctx *ctx, unsigned int *nr_events,
1717 struct list_head *done)
1718{
Jens Axboe8237e042019-12-28 10:48:22 -07001719 struct req_batch rb;
Jens Axboedef596e2019-01-09 08:59:42 -07001720 struct io_kiocb *req;
Jens Axboedef596e2019-01-09 08:59:42 -07001721
Jens Axboec6ca97b302019-12-28 12:11:08 -07001722 rb.to_free = rb.need_iter = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001723 while (!list_empty(done)) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07001724 int cflags = 0;
1725
Jens Axboedef596e2019-01-09 08:59:42 -07001726 req = list_first_entry(done, struct io_kiocb, list);
1727 list_del(&req->list);
1728
Jens Axboebcda7ba2020-02-23 16:42:51 -07001729 if (req->flags & REQ_F_BUFFER_SELECTED)
1730 cflags = io_put_kbuf(req);
1731
1732 __io_cqring_fill_event(req, req->result, cflags);
Jens Axboedef596e2019-01-09 08:59:42 -07001733 (*nr_events)++;
1734
Jens Axboe8237e042019-12-28 10:48:22 -07001735 if (refcount_dec_and_test(&req->refs) &&
1736 !io_req_multi_free(&rb, req))
1737 io_free_req(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001738 }
Jens Axboedef596e2019-01-09 08:59:42 -07001739
Jens Axboe09bb8392019-03-13 12:39:28 -06001740 io_commit_cqring(ctx);
Xiaoguang Wang32b22442020-03-11 09:26:09 +08001741 if (ctx->flags & IORING_SETUP_SQPOLL)
1742 io_cqring_ev_posted(ctx);
Jens Axboe8237e042019-12-28 10:48:22 -07001743 io_free_req_many(ctx, &rb);
Jens Axboedef596e2019-01-09 08:59:42 -07001744}
1745
1746static int io_do_iopoll(struct io_ring_ctx *ctx, unsigned int *nr_events,
1747 long min)
1748{
1749 struct io_kiocb *req, *tmp;
1750 LIST_HEAD(done);
1751 bool spin;
1752 int ret;
1753
1754 /*
1755 * Only spin for completions if we don't have multiple devices hanging
1756 * off our complete list, and we're under the requested amount.
1757 */
1758 spin = !ctx->poll_multi_file && *nr_events < min;
1759
1760 ret = 0;
1761 list_for_each_entry_safe(req, tmp, &ctx->poll_list, list) {
Jens Axboe9adbd452019-12-20 08:45:55 -07001762 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboedef596e2019-01-09 08:59:42 -07001763
1764 /*
1765 * Move completed entries to our local list. If we find a
1766 * request that requires polling, break out and complete
1767 * the done list first, if we have entries there.
1768 */
1769 if (req->flags & REQ_F_IOPOLL_COMPLETED) {
1770 list_move_tail(&req->list, &done);
1771 continue;
1772 }
1773 if (!list_empty(&done))
1774 break;
1775
1776 ret = kiocb->ki_filp->f_op->iopoll(kiocb, spin);
1777 if (ret < 0)
1778 break;
1779
1780 if (ret && spin)
1781 spin = false;
1782 ret = 0;
1783 }
1784
1785 if (!list_empty(&done))
1786 io_iopoll_complete(ctx, nr_events, &done);
1787
1788 return ret;
1789}
1790
1791/*
Brian Gianforcarod195a662019-12-13 03:09:50 -08001792 * Poll for a minimum of 'min' events. Note that if min == 0 we consider that a
Jens Axboedef596e2019-01-09 08:59:42 -07001793 * non-spinning poll check - we'll still enter the driver poll loop, but only
1794 * as a non-spinning completion check.
1795 */
1796static int io_iopoll_getevents(struct io_ring_ctx *ctx, unsigned int *nr_events,
1797 long min)
1798{
Jens Axboe08f54392019-08-21 22:19:11 -06001799 while (!list_empty(&ctx->poll_list) && !need_resched()) {
Jens Axboedef596e2019-01-09 08:59:42 -07001800 int ret;
1801
1802 ret = io_do_iopoll(ctx, nr_events, min);
1803 if (ret < 0)
1804 return ret;
1805 if (!min || *nr_events >= min)
1806 return 0;
1807 }
1808
1809 return 1;
1810}
1811
1812/*
1813 * We can't just wait for polled events to come to us, we have to actively
1814 * find and complete them.
1815 */
1816static void io_iopoll_reap_events(struct io_ring_ctx *ctx)
1817{
1818 if (!(ctx->flags & IORING_SETUP_IOPOLL))
1819 return;
1820
1821 mutex_lock(&ctx->uring_lock);
1822 while (!list_empty(&ctx->poll_list)) {
1823 unsigned int nr_events = 0;
1824
1825 io_iopoll_getevents(ctx, &nr_events, 1);
Jens Axboe08f54392019-08-21 22:19:11 -06001826
1827 /*
1828 * Ensure we allow local-to-the-cpu processing to take place,
1829 * in this case we need to ensure that we reap all events.
1830 */
1831 cond_resched();
Jens Axboedef596e2019-01-09 08:59:42 -07001832 }
1833 mutex_unlock(&ctx->uring_lock);
1834}
1835
Xiaoguang Wangc7849be2020-02-22 14:46:05 +08001836static int io_iopoll_check(struct io_ring_ctx *ctx, unsigned *nr_events,
1837 long min)
Jens Axboedef596e2019-01-09 08:59:42 -07001838{
Jens Axboe2b2ed972019-10-25 10:06:15 -06001839 int iters = 0, ret = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001840
Xiaoguang Wangc7849be2020-02-22 14:46:05 +08001841 /*
1842 * We disallow the app entering submit/complete with polling, but we
1843 * still need to lock the ring to prevent racing with polled issue
1844 * that got punted to a workqueue.
1845 */
1846 mutex_lock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07001847 do {
1848 int tmin = 0;
1849
Jens Axboe500f9fb2019-08-19 12:15:59 -06001850 /*
Jens Axboea3a0e432019-08-20 11:03:11 -06001851 * Don't enter poll loop if we already have events pending.
1852 * If we do, we can potentially be spinning for commands that
1853 * already triggered a CQE (eg in error).
1854 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001855 if (io_cqring_events(ctx, false))
Jens Axboea3a0e432019-08-20 11:03:11 -06001856 break;
1857
1858 /*
Jens Axboe500f9fb2019-08-19 12:15:59 -06001859 * If a submit got punted to a workqueue, we can have the
1860 * application entering polling for a command before it gets
1861 * issued. That app will hold the uring_lock for the duration
1862 * of the poll right here, so we need to take a breather every
1863 * now and then to ensure that the issue has a chance to add
1864 * the poll to the issued list. Otherwise we can spin here
1865 * forever, while the workqueue is stuck trying to acquire the
1866 * very same mutex.
1867 */
1868 if (!(++iters & 7)) {
1869 mutex_unlock(&ctx->uring_lock);
1870 mutex_lock(&ctx->uring_lock);
1871 }
1872
Jens Axboedef596e2019-01-09 08:59:42 -07001873 if (*nr_events < min)
1874 tmin = min - *nr_events;
1875
1876 ret = io_iopoll_getevents(ctx, nr_events, tmin);
1877 if (ret <= 0)
1878 break;
1879 ret = 0;
1880 } while (min && !*nr_events && !need_resched());
1881
Jens Axboe500f9fb2019-08-19 12:15:59 -06001882 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07001883 return ret;
1884}
1885
Jens Axboe491381ce2019-10-17 09:20:46 -06001886static void kiocb_end_write(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001887{
Jens Axboe491381ce2019-10-17 09:20:46 -06001888 /*
1889 * Tell lockdep we inherited freeze protection from submission
1890 * thread.
1891 */
1892 if (req->flags & REQ_F_ISREG) {
1893 struct inode *inode = file_inode(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001894
Jens Axboe491381ce2019-10-17 09:20:46 -06001895 __sb_writers_acquired(inode->i_sb, SB_FREEZE_WRITE);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001896 }
Jens Axboe491381ce2019-10-17 09:20:46 -06001897 file_end_write(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001898}
1899
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001900static inline void req_set_fail_links(struct io_kiocb *req)
1901{
1902 if ((req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) == REQ_F_LINK)
1903 req->flags |= REQ_F_FAIL_LINK;
1904}
1905
Jens Axboeba816ad2019-09-28 11:36:45 -06001906static void io_complete_rw_common(struct kiocb *kiocb, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001907{
Jens Axboe9adbd452019-12-20 08:45:55 -07001908 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001909 int cflags = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001910
Jens Axboe491381ce2019-10-17 09:20:46 -06001911 if (kiocb->ki_flags & IOCB_WRITE)
1912 kiocb_end_write(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001913
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001914 if (res != req->result)
1915 req_set_fail_links(req);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001916 if (req->flags & REQ_F_BUFFER_SELECTED)
1917 cflags = io_put_kbuf(req);
1918 __io_cqring_add_event(req, res, cflags);
Jens Axboeba816ad2019-09-28 11:36:45 -06001919}
1920
1921static void io_complete_rw(struct kiocb *kiocb, long res, long res2)
1922{
Jens Axboe9adbd452019-12-20 08:45:55 -07001923 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboeba816ad2019-09-28 11:36:45 -06001924
1925 io_complete_rw_common(kiocb, res);
Jens Axboee65ef562019-03-12 10:16:44 -06001926 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001927}
1928
Jens Axboedef596e2019-01-09 08:59:42 -07001929static void io_complete_rw_iopoll(struct kiocb *kiocb, long res, long res2)
1930{
Jens Axboe9adbd452019-12-20 08:45:55 -07001931 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboedef596e2019-01-09 08:59:42 -07001932
Jens Axboe491381ce2019-10-17 09:20:46 -06001933 if (kiocb->ki_flags & IOCB_WRITE)
1934 kiocb_end_write(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001935
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001936 if (res != req->result)
1937 req_set_fail_links(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06001938 req->result = res;
Jens Axboedef596e2019-01-09 08:59:42 -07001939 if (res != -EAGAIN)
1940 req->flags |= REQ_F_IOPOLL_COMPLETED;
1941}
1942
1943/*
1944 * After the iocb has been issued, it's safe to be found on the poll list.
1945 * Adding the kiocb to the list AFTER submission ensures that we don't
1946 * find it from a io_iopoll_getevents() thread before the issuer is done
1947 * accessing the kiocb cookie.
1948 */
1949static void io_iopoll_req_issued(struct io_kiocb *req)
1950{
1951 struct io_ring_ctx *ctx = req->ctx;
1952
1953 /*
1954 * Track whether we have multiple files in our lists. This will impact
1955 * how we do polling eventually, not spinning if we're on potentially
1956 * different devices.
1957 */
1958 if (list_empty(&ctx->poll_list)) {
1959 ctx->poll_multi_file = false;
1960 } else if (!ctx->poll_multi_file) {
1961 struct io_kiocb *list_req;
1962
1963 list_req = list_first_entry(&ctx->poll_list, struct io_kiocb,
1964 list);
Jens Axboe9adbd452019-12-20 08:45:55 -07001965 if (list_req->file != req->file)
Jens Axboedef596e2019-01-09 08:59:42 -07001966 ctx->poll_multi_file = true;
1967 }
1968
1969 /*
1970 * For fast devices, IO may have already completed. If it has, add
1971 * it to the front so we find it first.
1972 */
1973 if (req->flags & REQ_F_IOPOLL_COMPLETED)
1974 list_add(&req->list, &ctx->poll_list);
1975 else
1976 list_add_tail(&req->list, &ctx->poll_list);
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08001977
1978 if ((ctx->flags & IORING_SETUP_SQPOLL) &&
1979 wq_has_sleeper(&ctx->sqo_wait))
1980 wake_up(&ctx->sqo_wait);
Jens Axboedef596e2019-01-09 08:59:42 -07001981}
1982
Jens Axboe3d6770f2019-04-13 11:50:54 -06001983static void io_file_put(struct io_submit_state *state)
Jens Axboe9a56a232019-01-09 09:06:50 -07001984{
Jens Axboe3d6770f2019-04-13 11:50:54 -06001985 if (state->file) {
Jens Axboe9a56a232019-01-09 09:06:50 -07001986 int diff = state->has_refs - state->used_refs;
1987
1988 if (diff)
1989 fput_many(state->file, diff);
1990 state->file = NULL;
1991 }
1992}
1993
1994/*
1995 * Get as many references to a file as we have IOs left in this submission,
1996 * assuming most submissions are for one file, or at least that each file
1997 * has more than one submission.
1998 */
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001999static struct file *__io_file_get(struct io_submit_state *state, int fd)
Jens Axboe9a56a232019-01-09 09:06:50 -07002000{
2001 if (!state)
2002 return fget(fd);
2003
2004 if (state->file) {
2005 if (state->fd == fd) {
2006 state->used_refs++;
2007 state->ios_left--;
2008 return state->file;
2009 }
Jens Axboe3d6770f2019-04-13 11:50:54 -06002010 io_file_put(state);
Jens Axboe9a56a232019-01-09 09:06:50 -07002011 }
2012 state->file = fget_many(fd, state->ios_left);
2013 if (!state->file)
2014 return NULL;
2015
2016 state->fd = fd;
2017 state->has_refs = state->ios_left;
2018 state->used_refs = 1;
2019 state->ios_left--;
2020 return state->file;
2021}
2022
Jens Axboe2b188cc2019-01-07 10:46:33 -07002023/*
2024 * If we tracked the file through the SCM inflight mechanism, we could support
2025 * any file. For now, just ensure that anything potentially problematic is done
2026 * inline.
2027 */
2028static bool io_file_supports_async(struct file *file)
2029{
2030 umode_t mode = file_inode(file)->i_mode;
2031
Jens Axboe10d59342019-12-09 20:16:22 -07002032 if (S_ISBLK(mode) || S_ISCHR(mode) || S_ISSOCK(mode))
Jens Axboe2b188cc2019-01-07 10:46:33 -07002033 return true;
2034 if (S_ISREG(mode) && file->f_op != &io_uring_fops)
2035 return true;
2036
2037 return false;
2038}
2039
Jens Axboe3529d8c2019-12-19 18:24:38 -07002040static int io_prep_rw(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2041 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002042{
Jens Axboedef596e2019-01-09 08:59:42 -07002043 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9adbd452019-12-20 08:45:55 -07002044 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe09bb8392019-03-13 12:39:28 -06002045 unsigned ioprio;
2046 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002047
Jens Axboe491381ce2019-10-17 09:20:46 -06002048 if (S_ISREG(file_inode(req->file)->i_mode))
2049 req->flags |= REQ_F_ISREG;
2050
Jens Axboe2b188cc2019-01-07 10:46:33 -07002051 kiocb->ki_pos = READ_ONCE(sqe->off);
Jens Axboeba042912019-12-25 16:33:42 -07002052 if (kiocb->ki_pos == -1 && !(req->file->f_mode & FMODE_STREAM)) {
2053 req->flags |= REQ_F_CUR_POS;
2054 kiocb->ki_pos = req->file->f_pos;
2055 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002056 kiocb->ki_hint = ki_hint_validate(file_write_hint(kiocb->ki_filp));
Pavel Begunkov3e577dc2020-02-01 03:58:42 +03002057 kiocb->ki_flags = iocb_flags(kiocb->ki_filp);
2058 ret = kiocb_set_rw_flags(kiocb, READ_ONCE(sqe->rw_flags));
2059 if (unlikely(ret))
2060 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002061
2062 ioprio = READ_ONCE(sqe->ioprio);
2063 if (ioprio) {
2064 ret = ioprio_check_cap(ioprio);
2065 if (ret)
Jens Axboe09bb8392019-03-13 12:39:28 -06002066 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002067
2068 kiocb->ki_ioprio = ioprio;
2069 } else
2070 kiocb->ki_ioprio = get_current_ioprio();
2071
Stefan Bühler8449eed2019-04-27 20:34:19 +02002072 /* don't allow async punt if RWF_NOWAIT was requested */
Jens Axboe491381ce2019-10-17 09:20:46 -06002073 if ((kiocb->ki_flags & IOCB_NOWAIT) ||
2074 (req->file->f_flags & O_NONBLOCK))
Stefan Bühler8449eed2019-04-27 20:34:19 +02002075 req->flags |= REQ_F_NOWAIT;
2076
2077 if (force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002078 kiocb->ki_flags |= IOCB_NOWAIT;
Stefan Bühler8449eed2019-04-27 20:34:19 +02002079
Jens Axboedef596e2019-01-09 08:59:42 -07002080 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07002081 if (!(kiocb->ki_flags & IOCB_DIRECT) ||
2082 !kiocb->ki_filp->f_op->iopoll)
Jens Axboe09bb8392019-03-13 12:39:28 -06002083 return -EOPNOTSUPP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002084
Jens Axboedef596e2019-01-09 08:59:42 -07002085 kiocb->ki_flags |= IOCB_HIPRI;
2086 kiocb->ki_complete = io_complete_rw_iopoll;
Jens Axboe6873e0b2019-10-30 13:53:09 -06002087 req->result = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07002088 } else {
Jens Axboe09bb8392019-03-13 12:39:28 -06002089 if (kiocb->ki_flags & IOCB_HIPRI)
2090 return -EINVAL;
Jens Axboedef596e2019-01-09 08:59:42 -07002091 kiocb->ki_complete = io_complete_rw;
2092 }
Jens Axboe9adbd452019-12-20 08:45:55 -07002093
Jens Axboe3529d8c2019-12-19 18:24:38 -07002094 req->rw.addr = READ_ONCE(sqe->addr);
2095 req->rw.len = READ_ONCE(sqe->len);
Jens Axboebcda7ba2020-02-23 16:42:51 -07002096 /* we own ->private, reuse it for the buffer index / buffer ID */
Jens Axboe9adbd452019-12-20 08:45:55 -07002097 req->rw.kiocb.private = (void *) (unsigned long)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002098 READ_ONCE(sqe->buf_index);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002099 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002100}
2101
2102static inline void io_rw_done(struct kiocb *kiocb, ssize_t ret)
2103{
2104 switch (ret) {
2105 case -EIOCBQUEUED:
2106 break;
2107 case -ERESTARTSYS:
2108 case -ERESTARTNOINTR:
2109 case -ERESTARTNOHAND:
2110 case -ERESTART_RESTARTBLOCK:
2111 /*
2112 * We can't just restart the syscall, since previously
2113 * submitted sqes may already be in progress. Just fail this
2114 * IO with EINTR.
2115 */
2116 ret = -EINTR;
2117 /* fall through */
2118 default:
2119 kiocb->ki_complete(kiocb, ret, 0);
2120 }
2121}
2122
Pavel Begunkov014db002020-03-03 21:33:12 +03002123static void kiocb_done(struct kiocb *kiocb, ssize_t ret)
Jens Axboeba816ad2019-09-28 11:36:45 -06002124{
Jens Axboeba042912019-12-25 16:33:42 -07002125 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
2126
2127 if (req->flags & REQ_F_CUR_POS)
2128 req->file->f_pos = kiocb->ki_pos;
Pavel Begunkovbcaec082020-02-24 11:30:18 +03002129 if (ret >= 0 && kiocb->ki_complete == io_complete_rw)
Pavel Begunkov014db002020-03-03 21:33:12 +03002130 io_complete_rw(kiocb, ret, 0);
Jens Axboeba816ad2019-09-28 11:36:45 -06002131 else
2132 io_rw_done(kiocb, ret);
2133}
2134
Jens Axboe9adbd452019-12-20 08:45:55 -07002135static ssize_t io_import_fixed(struct io_kiocb *req, int rw,
Pavel Begunkov7d009162019-11-25 23:14:40 +03002136 struct iov_iter *iter)
Jens Axboeedafcce2019-01-09 09:16:05 -07002137{
Jens Axboe9adbd452019-12-20 08:45:55 -07002138 struct io_ring_ctx *ctx = req->ctx;
2139 size_t len = req->rw.len;
Jens Axboeedafcce2019-01-09 09:16:05 -07002140 struct io_mapped_ubuf *imu;
2141 unsigned index, buf_index;
2142 size_t offset;
2143 u64 buf_addr;
2144
2145 /* attempt to use fixed buffers without having provided iovecs */
2146 if (unlikely(!ctx->user_bufs))
2147 return -EFAULT;
2148
Jens Axboe9adbd452019-12-20 08:45:55 -07002149 buf_index = (unsigned long) req->rw.kiocb.private;
Jens Axboeedafcce2019-01-09 09:16:05 -07002150 if (unlikely(buf_index >= ctx->nr_user_bufs))
2151 return -EFAULT;
2152
2153 index = array_index_nospec(buf_index, ctx->nr_user_bufs);
2154 imu = &ctx->user_bufs[index];
Jens Axboe9adbd452019-12-20 08:45:55 -07002155 buf_addr = req->rw.addr;
Jens Axboeedafcce2019-01-09 09:16:05 -07002156
2157 /* overflow */
2158 if (buf_addr + len < buf_addr)
2159 return -EFAULT;
2160 /* not inside the mapped region */
2161 if (buf_addr < imu->ubuf || buf_addr + len > imu->ubuf + imu->len)
2162 return -EFAULT;
2163
2164 /*
2165 * May not be a start of buffer, set size appropriately
2166 * and advance us to the beginning.
2167 */
2168 offset = buf_addr - imu->ubuf;
2169 iov_iter_bvec(iter, rw, imu->bvec, imu->nr_bvecs, offset + len);
Jens Axboebd11b3a2019-07-20 08:37:31 -06002170
2171 if (offset) {
2172 /*
2173 * Don't use iov_iter_advance() here, as it's really slow for
2174 * using the latter parts of a big fixed buffer - it iterates
2175 * over each segment manually. We can cheat a bit here, because
2176 * we know that:
2177 *
2178 * 1) it's a BVEC iter, we set it up
2179 * 2) all bvecs are PAGE_SIZE in size, except potentially the
2180 * first and last bvec
2181 *
2182 * So just find our index, and adjust the iterator afterwards.
2183 * If the offset is within the first bvec (or the whole first
2184 * bvec, just use iov_iter_advance(). This makes it easier
2185 * since we can just skip the first segment, which may not
2186 * be PAGE_SIZE aligned.
2187 */
2188 const struct bio_vec *bvec = imu->bvec;
2189
2190 if (offset <= bvec->bv_len) {
2191 iov_iter_advance(iter, offset);
2192 } else {
2193 unsigned long seg_skip;
2194
2195 /* skip first vec */
2196 offset -= bvec->bv_len;
2197 seg_skip = 1 + (offset >> PAGE_SHIFT);
2198
2199 iter->bvec = bvec + seg_skip;
2200 iter->nr_segs -= seg_skip;
Aleix Roca Nonell99c79f62019-08-15 14:03:22 +02002201 iter->count -= bvec->bv_len + offset;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002202 iter->iov_offset = offset & ~PAGE_MASK;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002203 }
2204 }
2205
Jens Axboe5e559562019-11-13 16:12:46 -07002206 return len;
Jens Axboeedafcce2019-01-09 09:16:05 -07002207}
2208
Jens Axboebcda7ba2020-02-23 16:42:51 -07002209static void io_ring_submit_unlock(struct io_ring_ctx *ctx, bool needs_lock)
2210{
2211 if (needs_lock)
2212 mutex_unlock(&ctx->uring_lock);
2213}
2214
2215static void io_ring_submit_lock(struct io_ring_ctx *ctx, bool needs_lock)
2216{
2217 /*
2218 * "Normal" inline submissions always hold the uring_lock, since we
2219 * grab it from the system call. Same is true for the SQPOLL offload.
2220 * The only exception is when we've detached the request and issue it
2221 * from an async worker thread, grab the lock for that case.
2222 */
2223 if (needs_lock)
2224 mutex_lock(&ctx->uring_lock);
2225}
2226
2227static struct io_buffer *io_buffer_select(struct io_kiocb *req, size_t *len,
2228 int bgid, struct io_buffer *kbuf,
2229 bool needs_lock)
2230{
2231 struct io_buffer *head;
2232
2233 if (req->flags & REQ_F_BUFFER_SELECTED)
2234 return kbuf;
2235
2236 io_ring_submit_lock(req->ctx, needs_lock);
2237
2238 lockdep_assert_held(&req->ctx->uring_lock);
2239
2240 head = idr_find(&req->ctx->io_buffer_idr, bgid);
2241 if (head) {
2242 if (!list_empty(&head->list)) {
2243 kbuf = list_last_entry(&head->list, struct io_buffer,
2244 list);
2245 list_del(&kbuf->list);
2246 } else {
2247 kbuf = head;
2248 idr_remove(&req->ctx->io_buffer_idr, bgid);
2249 }
2250 if (*len > kbuf->len)
2251 *len = kbuf->len;
2252 } else {
2253 kbuf = ERR_PTR(-ENOBUFS);
2254 }
2255
2256 io_ring_submit_unlock(req->ctx, needs_lock);
2257
2258 return kbuf;
2259}
2260
Jens Axboe4d954c22020-02-27 07:31:19 -07002261static void __user *io_rw_buffer_select(struct io_kiocb *req, size_t *len,
2262 bool needs_lock)
2263{
2264 struct io_buffer *kbuf;
2265 int bgid;
2266
2267 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
2268 bgid = (int) (unsigned long) req->rw.kiocb.private;
2269 kbuf = io_buffer_select(req, len, bgid, kbuf, needs_lock);
2270 if (IS_ERR(kbuf))
2271 return kbuf;
2272 req->rw.addr = (u64) (unsigned long) kbuf;
2273 req->flags |= REQ_F_BUFFER_SELECTED;
2274 return u64_to_user_ptr(kbuf->addr);
2275}
2276
2277#ifdef CONFIG_COMPAT
2278static ssize_t io_compat_import(struct io_kiocb *req, struct iovec *iov,
2279 bool needs_lock)
2280{
2281 struct compat_iovec __user *uiov;
2282 compat_ssize_t clen;
2283 void __user *buf;
2284 ssize_t len;
2285
2286 uiov = u64_to_user_ptr(req->rw.addr);
2287 if (!access_ok(uiov, sizeof(*uiov)))
2288 return -EFAULT;
2289 if (__get_user(clen, &uiov->iov_len))
2290 return -EFAULT;
2291 if (clen < 0)
2292 return -EINVAL;
2293
2294 len = clen;
2295 buf = io_rw_buffer_select(req, &len, needs_lock);
2296 if (IS_ERR(buf))
2297 return PTR_ERR(buf);
2298 iov[0].iov_base = buf;
2299 iov[0].iov_len = (compat_size_t) len;
2300 return 0;
2301}
2302#endif
2303
2304static ssize_t __io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
2305 bool needs_lock)
2306{
2307 struct iovec __user *uiov = u64_to_user_ptr(req->rw.addr);
2308 void __user *buf;
2309 ssize_t len;
2310
2311 if (copy_from_user(iov, uiov, sizeof(*uiov)))
2312 return -EFAULT;
2313
2314 len = iov[0].iov_len;
2315 if (len < 0)
2316 return -EINVAL;
2317 buf = io_rw_buffer_select(req, &len, needs_lock);
2318 if (IS_ERR(buf))
2319 return PTR_ERR(buf);
2320 iov[0].iov_base = buf;
2321 iov[0].iov_len = len;
2322 return 0;
2323}
2324
2325static ssize_t io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
2326 bool needs_lock)
2327{
2328 if (req->flags & REQ_F_BUFFER_SELECTED)
2329 return 0;
2330 if (!req->rw.len)
2331 return 0;
2332 else if (req->rw.len > 1)
2333 return -EINVAL;
2334
2335#ifdef CONFIG_COMPAT
2336 if (req->ctx->compat)
2337 return io_compat_import(req, iov, needs_lock);
2338#endif
2339
2340 return __io_iov_buffer_select(req, iov, needs_lock);
2341}
2342
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002343static ssize_t io_import_iovec(int rw, struct io_kiocb *req,
Jens Axboebcda7ba2020-02-23 16:42:51 -07002344 struct iovec **iovec, struct iov_iter *iter,
2345 bool needs_lock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002346{
Jens Axboe9adbd452019-12-20 08:45:55 -07002347 void __user *buf = u64_to_user_ptr(req->rw.addr);
2348 size_t sqe_len = req->rw.len;
Jens Axboe4d954c22020-02-27 07:31:19 -07002349 ssize_t ret;
Jens Axboeedafcce2019-01-09 09:16:05 -07002350 u8 opcode;
2351
Jens Axboed625c6e2019-12-17 19:53:05 -07002352 opcode = req->opcode;
Pavel Begunkov7d009162019-11-25 23:14:40 +03002353 if (opcode == IORING_OP_READ_FIXED || opcode == IORING_OP_WRITE_FIXED) {
Jens Axboeedafcce2019-01-09 09:16:05 -07002354 *iovec = NULL;
Jens Axboe9adbd452019-12-20 08:45:55 -07002355 return io_import_fixed(req, rw, iter);
Jens Axboeedafcce2019-01-09 09:16:05 -07002356 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002357
Jens Axboebcda7ba2020-02-23 16:42:51 -07002358 /* buffer index only valid with fixed read/write, or buffer select */
2359 if (req->rw.kiocb.private && !(req->flags & REQ_F_BUFFER_SELECT))
Jens Axboe9adbd452019-12-20 08:45:55 -07002360 return -EINVAL;
2361
Jens Axboe3a6820f2019-12-22 15:19:35 -07002362 if (opcode == IORING_OP_READ || opcode == IORING_OP_WRITE) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07002363 if (req->flags & REQ_F_BUFFER_SELECT) {
Jens Axboe4d954c22020-02-27 07:31:19 -07002364 buf = io_rw_buffer_select(req, &sqe_len, needs_lock);
2365 if (IS_ERR(buf)) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07002366 *iovec = NULL;
Jens Axboe4d954c22020-02-27 07:31:19 -07002367 return PTR_ERR(buf);
Jens Axboebcda7ba2020-02-23 16:42:51 -07002368 }
Jens Axboe3f9d6442020-03-11 12:27:04 -06002369 req->rw.len = sqe_len;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002370 }
2371
Jens Axboe3a6820f2019-12-22 15:19:35 -07002372 ret = import_single_range(rw, buf, sqe_len, *iovec, iter);
2373 *iovec = NULL;
Jens Axboe3a901592020-02-25 17:48:55 -07002374 return ret < 0 ? ret : sqe_len;
Jens Axboe3a6820f2019-12-22 15:19:35 -07002375 }
2376
Jens Axboef67676d2019-12-02 11:03:47 -07002377 if (req->io) {
2378 struct io_async_rw *iorw = &req->io->rw;
2379
2380 *iovec = iorw->iov;
2381 iov_iter_init(iter, rw, *iovec, iorw->nr_segs, iorw->size);
2382 if (iorw->iov == iorw->fast_iov)
2383 *iovec = NULL;
2384 return iorw->size;
2385 }
2386
Jens Axboe4d954c22020-02-27 07:31:19 -07002387 if (req->flags & REQ_F_BUFFER_SELECT) {
2388 ret = io_iov_buffer_select(req, *iovec, needs_lock);
Jens Axboe3f9d6442020-03-11 12:27:04 -06002389 if (!ret) {
2390 ret = (*iovec)->iov_len;
2391 iov_iter_init(iter, rw, *iovec, 1, ret);
2392 }
Jens Axboe4d954c22020-02-27 07:31:19 -07002393 *iovec = NULL;
2394 return ret;
2395 }
2396
Jens Axboe2b188cc2019-01-07 10:46:33 -07002397#ifdef CONFIG_COMPAT
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002398 if (req->ctx->compat)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002399 return compat_import_iovec(rw, buf, sqe_len, UIO_FASTIOV,
2400 iovec, iter);
2401#endif
2402
2403 return import_iovec(rw, buf, sqe_len, UIO_FASTIOV, iovec, iter);
2404}
2405
Jens Axboe32960612019-09-23 11:05:34 -06002406/*
2407 * For files that don't have ->read_iter() and ->write_iter(), handle them
2408 * by looping over ->read() or ->write() manually.
2409 */
2410static ssize_t loop_rw_iter(int rw, struct file *file, struct kiocb *kiocb,
2411 struct iov_iter *iter)
2412{
2413 ssize_t ret = 0;
2414
2415 /*
2416 * Don't support polled IO through this interface, and we can't
2417 * support non-blocking either. For the latter, this just causes
2418 * the kiocb to be handled from an async context.
2419 */
2420 if (kiocb->ki_flags & IOCB_HIPRI)
2421 return -EOPNOTSUPP;
2422 if (kiocb->ki_flags & IOCB_NOWAIT)
2423 return -EAGAIN;
2424
2425 while (iov_iter_count(iter)) {
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002426 struct iovec iovec;
Jens Axboe32960612019-09-23 11:05:34 -06002427 ssize_t nr;
2428
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002429 if (!iov_iter_is_bvec(iter)) {
2430 iovec = iov_iter_iovec(iter);
2431 } else {
2432 /* fixed buffers import bvec */
2433 iovec.iov_base = kmap(iter->bvec->bv_page)
2434 + iter->iov_offset;
2435 iovec.iov_len = min(iter->count,
2436 iter->bvec->bv_len - iter->iov_offset);
2437 }
2438
Jens Axboe32960612019-09-23 11:05:34 -06002439 if (rw == READ) {
2440 nr = file->f_op->read(file, iovec.iov_base,
2441 iovec.iov_len, &kiocb->ki_pos);
2442 } else {
2443 nr = file->f_op->write(file, iovec.iov_base,
2444 iovec.iov_len, &kiocb->ki_pos);
2445 }
2446
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002447 if (iov_iter_is_bvec(iter))
2448 kunmap(iter->bvec->bv_page);
2449
Jens Axboe32960612019-09-23 11:05:34 -06002450 if (nr < 0) {
2451 if (!ret)
2452 ret = nr;
2453 break;
2454 }
2455 ret += nr;
2456 if (nr != iovec.iov_len)
2457 break;
2458 iov_iter_advance(iter, nr);
2459 }
2460
2461 return ret;
2462}
2463
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002464static void io_req_map_rw(struct io_kiocb *req, ssize_t io_size,
Jens Axboef67676d2019-12-02 11:03:47 -07002465 struct iovec *iovec, struct iovec *fast_iov,
2466 struct iov_iter *iter)
2467{
2468 req->io->rw.nr_segs = iter->nr_segs;
2469 req->io->rw.size = io_size;
2470 req->io->rw.iov = iovec;
2471 if (!req->io->rw.iov) {
2472 req->io->rw.iov = req->io->rw.fast_iov;
2473 memcpy(req->io->rw.iov, fast_iov,
2474 sizeof(struct iovec) * iter->nr_segs);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002475 } else {
2476 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboef67676d2019-12-02 11:03:47 -07002477 }
2478}
2479
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08002480static inline int __io_alloc_async_ctx(struct io_kiocb *req)
2481{
2482 req->io = kmalloc(sizeof(*req->io), GFP_KERNEL);
2483 return req->io == NULL;
2484}
2485
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002486static int io_alloc_async_ctx(struct io_kiocb *req)
Jens Axboef67676d2019-12-02 11:03:47 -07002487{
Jens Axboed3656342019-12-18 09:50:26 -07002488 if (!io_op_defs[req->opcode].async_ctx)
2489 return 0;
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08002490
2491 return __io_alloc_async_ctx(req);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002492}
2493
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002494static int io_setup_async_rw(struct io_kiocb *req, ssize_t io_size,
2495 struct iovec *iovec, struct iovec *fast_iov,
2496 struct iov_iter *iter)
2497{
Jens Axboe980ad262020-01-24 23:08:54 -07002498 if (!io_op_defs[req->opcode].async_ctx)
Jens Axboe74566df2020-01-13 19:23:24 -07002499 return 0;
Jens Axboe5d204bc2020-01-31 12:06:52 -07002500 if (!req->io) {
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08002501 if (__io_alloc_async_ctx(req))
Jens Axboe5d204bc2020-01-31 12:06:52 -07002502 return -ENOMEM;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002503
Jens Axboe5d204bc2020-01-31 12:06:52 -07002504 io_req_map_rw(req, io_size, iovec, fast_iov, iter);
2505 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002506 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002507}
2508
Jens Axboe3529d8c2019-12-19 18:24:38 -07002509static int io_read_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2510 bool force_nonblock)
Jens Axboef67676d2019-12-02 11:03:47 -07002511{
Jens Axboe3529d8c2019-12-19 18:24:38 -07002512 struct io_async_ctx *io;
2513 struct iov_iter iter;
Jens Axboef67676d2019-12-02 11:03:47 -07002514 ssize_t ret;
2515
Jens Axboe3529d8c2019-12-19 18:24:38 -07002516 ret = io_prep_rw(req, sqe, force_nonblock);
2517 if (ret)
2518 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07002519
Jens Axboe3529d8c2019-12-19 18:24:38 -07002520 if (unlikely(!(req->file->f_mode & FMODE_READ)))
2521 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07002522
Pavel Begunkov5f798be2020-02-08 13:28:02 +03002523 /* either don't need iovec imported or already have it */
2524 if (!req->io || req->flags & REQ_F_NEED_CLEANUP)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002525 return 0;
2526
2527 io = req->io;
2528 io->rw.iov = io->rw.fast_iov;
2529 req->io = NULL;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002530 ret = io_import_iovec(READ, req, &io->rw.iov, &iter, !force_nonblock);
Jens Axboe3529d8c2019-12-19 18:24:38 -07002531 req->io = io;
2532 if (ret < 0)
2533 return ret;
2534
2535 io_req_map_rw(req, ret, io->rw.iov, io->rw.fast_iov, &iter);
2536 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002537}
2538
Pavel Begunkov014db002020-03-03 21:33:12 +03002539static int io_read(struct io_kiocb *req, bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002540{
2541 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07002542 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002543 struct iov_iter iter;
Jens Axboe31b51512019-01-18 22:56:34 -07002544 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07002545 ssize_t io_size, ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002546
Jens Axboebcda7ba2020-02-23 16:42:51 -07002547 ret = io_import_iovec(READ, req, &iovec, &iter, !force_nonblock);
Jens Axboe06b76d42019-12-19 14:44:26 -07002548 if (ret < 0)
2549 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002550
Jens Axboefd6c2e42019-12-18 12:19:41 -07002551 /* Ensure we clear previously set non-block flag */
2552 if (!force_nonblock)
Jens Axboe29de5f62020-02-20 09:56:08 -07002553 kiocb->ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07002554
Bijan Mottahedeh797f3f52020-01-15 18:37:45 -08002555 req->result = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002556 io_size = ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06002557 if (req->flags & REQ_F_LINK)
Jens Axboef67676d2019-12-02 11:03:47 -07002558 req->result = io_size;
2559
2560 /*
2561 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
2562 * we know to async punt it even if it was opened O_NONBLOCK
2563 */
Jens Axboe29de5f62020-02-20 09:56:08 -07002564 if (force_nonblock && !io_file_supports_async(req->file))
Jens Axboef67676d2019-12-02 11:03:47 -07002565 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06002566
Jens Axboe31b51512019-01-18 22:56:34 -07002567 iov_count = iov_iter_count(&iter);
Jens Axboe9adbd452019-12-20 08:45:55 -07002568 ret = rw_verify_area(READ, req->file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002569 if (!ret) {
2570 ssize_t ret2;
2571
Jens Axboe9adbd452019-12-20 08:45:55 -07002572 if (req->file->f_op->read_iter)
2573 ret2 = call_read_iter(req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002574 else
Jens Axboe9adbd452019-12-20 08:45:55 -07002575 ret2 = loop_rw_iter(READ, req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002576
Jens Axboe9d93a3f2019-05-15 13:53:07 -06002577 /* Catch -EAGAIN return for forced non-blocking submission */
Jens Axboef67676d2019-12-02 11:03:47 -07002578 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkov014db002020-03-03 21:33:12 +03002579 kiocb_done(kiocb, ret2);
Jens Axboef67676d2019-12-02 11:03:47 -07002580 } else {
2581copy_iov:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002582 ret = io_setup_async_rw(req, io_size, iovec,
Jens Axboef67676d2019-12-02 11:03:47 -07002583 inline_vecs, &iter);
2584 if (ret)
2585 goto out_free;
Jens Axboe29de5f62020-02-20 09:56:08 -07002586 /* any defer here is final, must blocking retry */
2587 if (!(req->flags & REQ_F_NOWAIT))
2588 req->flags |= REQ_F_MUST_PUNT;
Jens Axboef67676d2019-12-02 11:03:47 -07002589 return -EAGAIN;
2590 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002591 }
Jens Axboef67676d2019-12-02 11:03:47 -07002592out_free:
Pavel Begunkov1e950812020-02-06 19:51:16 +03002593 kfree(iovec);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002594 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002595 return ret;
2596}
2597
Jens Axboe3529d8c2019-12-19 18:24:38 -07002598static int io_write_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2599 bool force_nonblock)
Jens Axboef67676d2019-12-02 11:03:47 -07002600{
Jens Axboe3529d8c2019-12-19 18:24:38 -07002601 struct io_async_ctx *io;
2602 struct iov_iter iter;
Jens Axboef67676d2019-12-02 11:03:47 -07002603 ssize_t ret;
2604
Jens Axboe3529d8c2019-12-19 18:24:38 -07002605 ret = io_prep_rw(req, sqe, force_nonblock);
2606 if (ret)
2607 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07002608
Jens Axboe3529d8c2019-12-19 18:24:38 -07002609 if (unlikely(!(req->file->f_mode & FMODE_WRITE)))
2610 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07002611
Jens Axboe4ed734b2020-03-20 11:23:41 -06002612 req->fsize = rlimit(RLIMIT_FSIZE);
2613
Pavel Begunkov5f798be2020-02-08 13:28:02 +03002614 /* either don't need iovec imported or already have it */
2615 if (!req->io || req->flags & REQ_F_NEED_CLEANUP)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002616 return 0;
2617
2618 io = req->io;
2619 io->rw.iov = io->rw.fast_iov;
2620 req->io = NULL;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002621 ret = io_import_iovec(WRITE, req, &io->rw.iov, &iter, !force_nonblock);
Jens Axboe3529d8c2019-12-19 18:24:38 -07002622 req->io = io;
2623 if (ret < 0)
2624 return ret;
2625
2626 io_req_map_rw(req, ret, io->rw.iov, io->rw.fast_iov, &iter);
2627 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002628}
2629
Pavel Begunkov014db002020-03-03 21:33:12 +03002630static int io_write(struct io_kiocb *req, bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002631{
2632 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07002633 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002634 struct iov_iter iter;
Jens Axboe31b51512019-01-18 22:56:34 -07002635 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07002636 ssize_t ret, io_size;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002637
Jens Axboebcda7ba2020-02-23 16:42:51 -07002638 ret = io_import_iovec(WRITE, req, &iovec, &iter, !force_nonblock);
Jens Axboe06b76d42019-12-19 14:44:26 -07002639 if (ret < 0)
2640 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002641
Jens Axboefd6c2e42019-12-18 12:19:41 -07002642 /* Ensure we clear previously set non-block flag */
2643 if (!force_nonblock)
Jens Axboe9adbd452019-12-20 08:45:55 -07002644 req->rw.kiocb.ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07002645
Bijan Mottahedeh797f3f52020-01-15 18:37:45 -08002646 req->result = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002647 io_size = ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06002648 if (req->flags & REQ_F_LINK)
Jens Axboef67676d2019-12-02 11:03:47 -07002649 req->result = io_size;
2650
2651 /*
2652 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
2653 * we know to async punt it even if it was opened O_NONBLOCK
2654 */
Jens Axboe29de5f62020-02-20 09:56:08 -07002655 if (force_nonblock && !io_file_supports_async(req->file))
Jens Axboef67676d2019-12-02 11:03:47 -07002656 goto copy_iov;
Jens Axboef67676d2019-12-02 11:03:47 -07002657
Jens Axboe10d59342019-12-09 20:16:22 -07002658 /* file path doesn't support NOWAIT for non-direct_IO */
2659 if (force_nonblock && !(kiocb->ki_flags & IOCB_DIRECT) &&
2660 (req->flags & REQ_F_ISREG))
Jens Axboef67676d2019-12-02 11:03:47 -07002661 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06002662
Jens Axboe31b51512019-01-18 22:56:34 -07002663 iov_count = iov_iter_count(&iter);
Jens Axboe9adbd452019-12-20 08:45:55 -07002664 ret = rw_verify_area(WRITE, req->file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002665 if (!ret) {
Roman Penyaev9bf79332019-03-25 20:09:24 +01002666 ssize_t ret2;
2667
Jens Axboe2b188cc2019-01-07 10:46:33 -07002668 /*
2669 * Open-code file_start_write here to grab freeze protection,
2670 * which will be released by another thread in
2671 * io_complete_rw(). Fool lockdep by telling it the lock got
2672 * released so that it doesn't complain about the held lock when
2673 * we return to userspace.
2674 */
Jens Axboe491381ce2019-10-17 09:20:46 -06002675 if (req->flags & REQ_F_ISREG) {
Jens Axboe9adbd452019-12-20 08:45:55 -07002676 __sb_start_write(file_inode(req->file)->i_sb,
Jens Axboe2b188cc2019-01-07 10:46:33 -07002677 SB_FREEZE_WRITE, true);
Jens Axboe9adbd452019-12-20 08:45:55 -07002678 __sb_writers_release(file_inode(req->file)->i_sb,
Jens Axboe2b188cc2019-01-07 10:46:33 -07002679 SB_FREEZE_WRITE);
2680 }
2681 kiocb->ki_flags |= IOCB_WRITE;
Roman Penyaev9bf79332019-03-25 20:09:24 +01002682
Jens Axboe4ed734b2020-03-20 11:23:41 -06002683 if (!force_nonblock)
2684 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = req->fsize;
2685
Jens Axboe9adbd452019-12-20 08:45:55 -07002686 if (req->file->f_op->write_iter)
2687 ret2 = call_write_iter(req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002688 else
Jens Axboe9adbd452019-12-20 08:45:55 -07002689 ret2 = loop_rw_iter(WRITE, req->file, kiocb, &iter);
Jens Axboe4ed734b2020-03-20 11:23:41 -06002690
2691 if (!force_nonblock)
2692 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = RLIM_INFINITY;
2693
Jens Axboefaac9962020-02-07 15:45:22 -07002694 /*
Chucheng Luobff60352020-03-25 11:31:38 +08002695 * Raw bdev writes will return -EOPNOTSUPP for IOCB_NOWAIT. Just
Jens Axboefaac9962020-02-07 15:45:22 -07002696 * retry them without IOCB_NOWAIT.
2697 */
2698 if (ret2 == -EOPNOTSUPP && (kiocb->ki_flags & IOCB_NOWAIT))
2699 ret2 = -EAGAIN;
Jens Axboef67676d2019-12-02 11:03:47 -07002700 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkov014db002020-03-03 21:33:12 +03002701 kiocb_done(kiocb, ret2);
Jens Axboef67676d2019-12-02 11:03:47 -07002702 } else {
2703copy_iov:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002704 ret = io_setup_async_rw(req, io_size, iovec,
Jens Axboef67676d2019-12-02 11:03:47 -07002705 inline_vecs, &iter);
2706 if (ret)
2707 goto out_free;
Jens Axboe29de5f62020-02-20 09:56:08 -07002708 /* any defer here is final, must blocking retry */
2709 req->flags |= REQ_F_MUST_PUNT;
Jens Axboef67676d2019-12-02 11:03:47 -07002710 return -EAGAIN;
2711 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002712 }
Jens Axboe31b51512019-01-18 22:56:34 -07002713out_free:
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002714 req->flags &= ~REQ_F_NEED_CLEANUP;
Pavel Begunkov1e950812020-02-06 19:51:16 +03002715 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002716 return ret;
2717}
2718
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002719static int io_splice_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2720{
2721 struct io_splice* sp = &req->splice;
2722 unsigned int valid_flags = SPLICE_F_FD_IN_FIXED | SPLICE_F_ALL;
2723 int ret;
2724
2725 if (req->flags & REQ_F_NEED_CLEANUP)
2726 return 0;
2727
2728 sp->file_in = NULL;
2729 sp->off_in = READ_ONCE(sqe->splice_off_in);
2730 sp->off_out = READ_ONCE(sqe->off);
2731 sp->len = READ_ONCE(sqe->len);
2732 sp->flags = READ_ONCE(sqe->splice_flags);
2733
2734 if (unlikely(sp->flags & ~valid_flags))
2735 return -EINVAL;
2736
2737 ret = io_file_get(NULL, req, READ_ONCE(sqe->splice_fd_in), &sp->file_in,
2738 (sp->flags & SPLICE_F_FD_IN_FIXED));
2739 if (ret)
2740 return ret;
2741 req->flags |= REQ_F_NEED_CLEANUP;
2742
2743 if (!S_ISREG(file_inode(sp->file_in)->i_mode))
2744 req->work.flags |= IO_WQ_WORK_UNBOUND;
2745
2746 return 0;
2747}
2748
2749static bool io_splice_punt(struct file *file)
2750{
2751 if (get_pipe_info(file))
2752 return false;
2753 if (!io_file_supports_async(file))
2754 return true;
2755 return !(file->f_mode & O_NONBLOCK);
2756}
2757
Pavel Begunkov014db002020-03-03 21:33:12 +03002758static int io_splice(struct io_kiocb *req, bool force_nonblock)
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002759{
2760 struct io_splice *sp = &req->splice;
2761 struct file *in = sp->file_in;
2762 struct file *out = sp->file_out;
2763 unsigned int flags = sp->flags & ~SPLICE_F_FD_IN_FIXED;
2764 loff_t *poff_in, *poff_out;
2765 long ret;
2766
2767 if (force_nonblock) {
2768 if (io_splice_punt(in) || io_splice_punt(out))
2769 return -EAGAIN;
2770 flags |= SPLICE_F_NONBLOCK;
2771 }
2772
2773 poff_in = (sp->off_in == -1) ? NULL : &sp->off_in;
2774 poff_out = (sp->off_out == -1) ? NULL : &sp->off_out;
2775 ret = do_splice(in, poff_in, out, poff_out, sp->len, flags);
2776 if (force_nonblock && ret == -EAGAIN)
2777 return -EAGAIN;
2778
2779 io_put_file(req, in, (sp->flags & SPLICE_F_FD_IN_FIXED));
2780 req->flags &= ~REQ_F_NEED_CLEANUP;
2781
2782 io_cqring_add_event(req, ret);
2783 if (ret != sp->len)
2784 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03002785 io_put_req(req);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002786 return 0;
2787}
2788
Jens Axboe2b188cc2019-01-07 10:46:33 -07002789/*
2790 * IORING_OP_NOP just posts a completion event, nothing else.
2791 */
Jens Axboe78e19bb2019-11-06 15:21:34 -07002792static int io_nop(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002793{
2794 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002795
Jens Axboedef596e2019-01-09 08:59:42 -07002796 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
2797 return -EINVAL;
2798
Jens Axboe78e19bb2019-11-06 15:21:34 -07002799 io_cqring_add_event(req, 0);
Jens Axboee65ef562019-03-12 10:16:44 -06002800 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002801 return 0;
2802}
2803
Jens Axboe3529d8c2019-12-19 18:24:38 -07002804static int io_prep_fsync(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002805{
Jens Axboe6b063142019-01-10 22:13:58 -07002806 struct io_ring_ctx *ctx = req->ctx;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002807
Jens Axboe09bb8392019-03-13 12:39:28 -06002808 if (!req->file)
2809 return -EBADF;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002810
Jens Axboe6b063142019-01-10 22:13:58 -07002811 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboedef596e2019-01-09 08:59:42 -07002812 return -EINVAL;
Jens Axboeedafcce2019-01-09 09:16:05 -07002813 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002814 return -EINVAL;
2815
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002816 req->sync.flags = READ_ONCE(sqe->fsync_flags);
2817 if (unlikely(req->sync.flags & ~IORING_FSYNC_DATASYNC))
2818 return -EINVAL;
2819
2820 req->sync.off = READ_ONCE(sqe->off);
2821 req->sync.len = READ_ONCE(sqe->len);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002822 return 0;
2823}
2824
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002825static bool io_req_cancelled(struct io_kiocb *req)
2826{
2827 if (req->work.flags & IO_WQ_WORK_CANCEL) {
2828 req_set_fail_links(req);
2829 io_cqring_add_event(req, -ECANCELED);
2830 io_put_req(req);
2831 return true;
2832 }
2833
2834 return false;
2835}
2836
Pavel Begunkov014db002020-03-03 21:33:12 +03002837static void __io_fsync(struct io_kiocb *req)
Jens Axboe78912932020-01-14 22:09:06 -07002838{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002839 loff_t end = req->sync.off + req->sync.len;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002840 int ret;
2841
Jens Axboe9adbd452019-12-20 08:45:55 -07002842 ret = vfs_fsync_range(req->file, req->sync.off,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002843 end > 0 ? end : LLONG_MAX,
2844 req->sync.flags & IORING_FSYNC_DATASYNC);
2845 if (ret < 0)
2846 req_set_fail_links(req);
2847 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03002848 io_put_req(req);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002849}
2850
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002851static void io_fsync_finish(struct io_wq_work **workptr)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002852{
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002853 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002854
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002855 if (io_req_cancelled(req))
2856 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03002857 __io_fsync(req);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03002858 io_steal_work(req, workptr);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002859}
2860
Pavel Begunkov014db002020-03-03 21:33:12 +03002861static int io_fsync(struct io_kiocb *req, bool force_nonblock)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002862{
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002863 /* fsync always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002864 if (force_nonblock) {
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002865 req->work.func = io_fsync_finish;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002866 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002867 }
Pavel Begunkov014db002020-03-03 21:33:12 +03002868 __io_fsync(req);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002869 return 0;
2870}
2871
Pavel Begunkov014db002020-03-03 21:33:12 +03002872static void __io_fallocate(struct io_kiocb *req)
Jens Axboed63d1b52019-12-10 10:38:56 -07002873{
Jens Axboed63d1b52019-12-10 10:38:56 -07002874 int ret;
2875
Jens Axboe4ed734b2020-03-20 11:23:41 -06002876 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = req->fsize;
Jens Axboed63d1b52019-12-10 10:38:56 -07002877 ret = vfs_fallocate(req->file, req->sync.mode, req->sync.off,
2878 req->sync.len);
Jens Axboe4ed734b2020-03-20 11:23:41 -06002879 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = RLIM_INFINITY;
Jens Axboed63d1b52019-12-10 10:38:56 -07002880 if (ret < 0)
2881 req_set_fail_links(req);
2882 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03002883 io_put_req(req);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002884}
2885
Jens Axboe2b188cc2019-01-07 10:46:33 -07002886static void io_fallocate_finish(struct io_wq_work **workptr)
2887{
2888 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Jens Axboed63d1b52019-12-10 10:38:56 -07002889
2890 if (io_req_cancelled(req))
2891 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03002892 __io_fallocate(req);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03002893 io_steal_work(req, workptr);
Jens Axboed63d1b52019-12-10 10:38:56 -07002894}
2895
2896static int io_fallocate_prep(struct io_kiocb *req,
2897 const struct io_uring_sqe *sqe)
2898{
2899 if (sqe->ioprio || sqe->buf_index || sqe->rw_flags)
2900 return -EINVAL;
2901
2902 req->sync.off = READ_ONCE(sqe->off);
2903 req->sync.len = READ_ONCE(sqe->addr);
2904 req->sync.mode = READ_ONCE(sqe->len);
Jens Axboe4ed734b2020-03-20 11:23:41 -06002905 req->fsize = rlimit(RLIMIT_FSIZE);
Jens Axboed63d1b52019-12-10 10:38:56 -07002906 return 0;
2907}
2908
Pavel Begunkov014db002020-03-03 21:33:12 +03002909static int io_fallocate(struct io_kiocb *req, bool force_nonblock)
Jens Axboed63d1b52019-12-10 10:38:56 -07002910{
Jens Axboed63d1b52019-12-10 10:38:56 -07002911 /* fallocate always requiring blocking context */
2912 if (force_nonblock) {
Jens Axboed63d1b52019-12-10 10:38:56 -07002913 req->work.func = io_fallocate_finish;
2914 return -EAGAIN;
2915 }
2916
Pavel Begunkov014db002020-03-03 21:33:12 +03002917 __io_fallocate(req);
Jens Axboed63d1b52019-12-10 10:38:56 -07002918 return 0;
2919}
2920
Jens Axboe15b71ab2019-12-11 11:20:36 -07002921static int io_openat_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2922{
Jens Axboef8748882020-01-08 17:47:02 -07002923 const char __user *fname;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002924 int ret;
2925
2926 if (sqe->ioprio || sqe->buf_index)
2927 return -EINVAL;
Jens Axboecf3040c2020-02-06 21:31:40 -07002928 if (sqe->flags & IOSQE_FIXED_FILE)
2929 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03002930 if (req->flags & REQ_F_NEED_CLEANUP)
2931 return 0;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002932
2933 req->open.dfd = READ_ONCE(sqe->fd);
Jens Axboec12cedf2020-01-08 17:41:21 -07002934 req->open.how.mode = READ_ONCE(sqe->len);
Jens Axboef8748882020-01-08 17:47:02 -07002935 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboec12cedf2020-01-08 17:41:21 -07002936 req->open.how.flags = READ_ONCE(sqe->open_flags);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002937
Jens Axboef8748882020-01-08 17:47:02 -07002938 req->open.filename = getname(fname);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002939 if (IS_ERR(req->open.filename)) {
2940 ret = PTR_ERR(req->open.filename);
2941 req->open.filename = NULL;
2942 return ret;
2943 }
2944
Jens Axboe4022e7a2020-03-19 19:23:18 -06002945 req->open.nofile = rlimit(RLIMIT_NOFILE);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03002946 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002947 return 0;
2948}
2949
Jens Axboecebdb982020-01-08 17:59:24 -07002950static int io_openat2_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2951{
2952 struct open_how __user *how;
2953 const char __user *fname;
2954 size_t len;
2955 int ret;
2956
2957 if (sqe->ioprio || sqe->buf_index)
2958 return -EINVAL;
Jens Axboecf3040c2020-02-06 21:31:40 -07002959 if (sqe->flags & IOSQE_FIXED_FILE)
2960 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03002961 if (req->flags & REQ_F_NEED_CLEANUP)
2962 return 0;
Jens Axboecebdb982020-01-08 17:59:24 -07002963
2964 req->open.dfd = READ_ONCE(sqe->fd);
2965 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
2966 how = u64_to_user_ptr(READ_ONCE(sqe->addr2));
2967 len = READ_ONCE(sqe->len);
2968
2969 if (len < OPEN_HOW_SIZE_VER0)
2970 return -EINVAL;
2971
2972 ret = copy_struct_from_user(&req->open.how, sizeof(req->open.how), how,
2973 len);
2974 if (ret)
2975 return ret;
2976
2977 if (!(req->open.how.flags & O_PATH) && force_o_largefile())
2978 req->open.how.flags |= O_LARGEFILE;
2979
2980 req->open.filename = getname(fname);
2981 if (IS_ERR(req->open.filename)) {
2982 ret = PTR_ERR(req->open.filename);
2983 req->open.filename = NULL;
2984 return ret;
2985 }
2986
Jens Axboe4022e7a2020-03-19 19:23:18 -06002987 req->open.nofile = rlimit(RLIMIT_NOFILE);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03002988 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboecebdb982020-01-08 17:59:24 -07002989 return 0;
2990}
2991
Pavel Begunkov014db002020-03-03 21:33:12 +03002992static int io_openat2(struct io_kiocb *req, bool force_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07002993{
2994 struct open_flags op;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002995 struct file *file;
2996 int ret;
2997
Jens Axboef86cd202020-01-29 13:46:44 -07002998 if (force_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07002999 return -EAGAIN;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003000
Jens Axboecebdb982020-01-08 17:59:24 -07003001 ret = build_open_flags(&req->open.how, &op);
Jens Axboe15b71ab2019-12-11 11:20:36 -07003002 if (ret)
3003 goto err;
3004
Jens Axboe4022e7a2020-03-19 19:23:18 -06003005 ret = __get_unused_fd_flags(req->open.how.flags, req->open.nofile);
Jens Axboe15b71ab2019-12-11 11:20:36 -07003006 if (ret < 0)
3007 goto err;
3008
3009 file = do_filp_open(req->open.dfd, req->open.filename, &op);
3010 if (IS_ERR(file)) {
3011 put_unused_fd(ret);
3012 ret = PTR_ERR(file);
3013 } else {
3014 fsnotify_open(file);
3015 fd_install(ret, file);
3016 }
3017err:
3018 putname(req->open.filename);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003019 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003020 if (ret < 0)
3021 req_set_fail_links(req);
3022 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003023 io_put_req(req);
Jens Axboe15b71ab2019-12-11 11:20:36 -07003024 return 0;
3025}
3026
Pavel Begunkov014db002020-03-03 21:33:12 +03003027static int io_openat(struct io_kiocb *req, bool force_nonblock)
Jens Axboecebdb982020-01-08 17:59:24 -07003028{
3029 req->open.how = build_open_how(req->open.how.flags, req->open.how.mode);
Pavel Begunkov014db002020-03-03 21:33:12 +03003030 return io_openat2(req, force_nonblock);
Jens Axboecebdb982020-01-08 17:59:24 -07003031}
3032
Jens Axboe067524e2020-03-02 16:32:28 -07003033static int io_remove_buffers_prep(struct io_kiocb *req,
3034 const struct io_uring_sqe *sqe)
3035{
3036 struct io_provide_buf *p = &req->pbuf;
3037 u64 tmp;
3038
3039 if (sqe->ioprio || sqe->rw_flags || sqe->addr || sqe->len || sqe->off)
3040 return -EINVAL;
3041
3042 tmp = READ_ONCE(sqe->fd);
3043 if (!tmp || tmp > USHRT_MAX)
3044 return -EINVAL;
3045
3046 memset(p, 0, sizeof(*p));
3047 p->nbufs = tmp;
3048 p->bgid = READ_ONCE(sqe->buf_group);
3049 return 0;
3050}
3051
3052static int __io_remove_buffers(struct io_ring_ctx *ctx, struct io_buffer *buf,
3053 int bgid, unsigned nbufs)
3054{
3055 unsigned i = 0;
3056
3057 /* shouldn't happen */
3058 if (!nbufs)
3059 return 0;
3060
3061 /* the head kbuf is the list itself */
3062 while (!list_empty(&buf->list)) {
3063 struct io_buffer *nxt;
3064
3065 nxt = list_first_entry(&buf->list, struct io_buffer, list);
3066 list_del(&nxt->list);
3067 kfree(nxt);
3068 if (++i == nbufs)
3069 return i;
3070 }
3071 i++;
3072 kfree(buf);
3073 idr_remove(&ctx->io_buffer_idr, bgid);
3074
3075 return i;
3076}
3077
3078static int io_remove_buffers(struct io_kiocb *req, bool force_nonblock)
3079{
3080 struct io_provide_buf *p = &req->pbuf;
3081 struct io_ring_ctx *ctx = req->ctx;
3082 struct io_buffer *head;
3083 int ret = 0;
3084
3085 io_ring_submit_lock(ctx, !force_nonblock);
3086
3087 lockdep_assert_held(&ctx->uring_lock);
3088
3089 ret = -ENOENT;
3090 head = idr_find(&ctx->io_buffer_idr, p->bgid);
3091 if (head)
3092 ret = __io_remove_buffers(ctx, head, p->bgid, p->nbufs);
3093
3094 io_ring_submit_lock(ctx, !force_nonblock);
3095 if (ret < 0)
3096 req_set_fail_links(req);
3097 io_cqring_add_event(req, ret);
3098 io_put_req(req);
3099 return 0;
3100}
3101
Jens Axboeddf0322d2020-02-23 16:41:33 -07003102static int io_provide_buffers_prep(struct io_kiocb *req,
3103 const struct io_uring_sqe *sqe)
3104{
3105 struct io_provide_buf *p = &req->pbuf;
3106 u64 tmp;
3107
3108 if (sqe->ioprio || sqe->rw_flags)
3109 return -EINVAL;
3110
3111 tmp = READ_ONCE(sqe->fd);
3112 if (!tmp || tmp > USHRT_MAX)
3113 return -E2BIG;
3114 p->nbufs = tmp;
3115 p->addr = READ_ONCE(sqe->addr);
3116 p->len = READ_ONCE(sqe->len);
3117
3118 if (!access_ok(u64_to_user_ptr(p->addr), p->len))
3119 return -EFAULT;
3120
3121 p->bgid = READ_ONCE(sqe->buf_group);
3122 tmp = READ_ONCE(sqe->off);
3123 if (tmp > USHRT_MAX)
3124 return -E2BIG;
3125 p->bid = tmp;
3126 return 0;
3127}
3128
3129static int io_add_buffers(struct io_provide_buf *pbuf, struct io_buffer **head)
3130{
3131 struct io_buffer *buf;
3132 u64 addr = pbuf->addr;
3133 int i, bid = pbuf->bid;
3134
3135 for (i = 0; i < pbuf->nbufs; i++) {
3136 buf = kmalloc(sizeof(*buf), GFP_KERNEL);
3137 if (!buf)
3138 break;
3139
3140 buf->addr = addr;
3141 buf->len = pbuf->len;
3142 buf->bid = bid;
3143 addr += pbuf->len;
3144 bid++;
3145 if (!*head) {
3146 INIT_LIST_HEAD(&buf->list);
3147 *head = buf;
3148 } else {
3149 list_add_tail(&buf->list, &(*head)->list);
3150 }
3151 }
3152
3153 return i ? i : -ENOMEM;
3154}
3155
Jens Axboeddf0322d2020-02-23 16:41:33 -07003156static int io_provide_buffers(struct io_kiocb *req, bool force_nonblock)
3157{
3158 struct io_provide_buf *p = &req->pbuf;
3159 struct io_ring_ctx *ctx = req->ctx;
3160 struct io_buffer *head, *list;
3161 int ret = 0;
3162
3163 io_ring_submit_lock(ctx, !force_nonblock);
3164
3165 lockdep_assert_held(&ctx->uring_lock);
3166
3167 list = head = idr_find(&ctx->io_buffer_idr, p->bgid);
3168
3169 ret = io_add_buffers(p, &head);
3170 if (ret < 0)
3171 goto out;
3172
3173 if (!list) {
3174 ret = idr_alloc(&ctx->io_buffer_idr, head, p->bgid, p->bgid + 1,
3175 GFP_KERNEL);
3176 if (ret < 0) {
Jens Axboe067524e2020-03-02 16:32:28 -07003177 __io_remove_buffers(ctx, head, p->bgid, -1U);
Jens Axboeddf0322d2020-02-23 16:41:33 -07003178 goto out;
3179 }
3180 }
3181out:
3182 io_ring_submit_unlock(ctx, !force_nonblock);
3183 if (ret < 0)
3184 req_set_fail_links(req);
3185 io_cqring_add_event(req, ret);
3186 io_put_req(req);
3187 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003188}
3189
Jens Axboe3e4827b2020-01-08 15:18:09 -07003190static int io_epoll_ctl_prep(struct io_kiocb *req,
3191 const struct io_uring_sqe *sqe)
3192{
3193#if defined(CONFIG_EPOLL)
3194 if (sqe->ioprio || sqe->buf_index)
3195 return -EINVAL;
3196
3197 req->epoll.epfd = READ_ONCE(sqe->fd);
3198 req->epoll.op = READ_ONCE(sqe->len);
3199 req->epoll.fd = READ_ONCE(sqe->off);
3200
3201 if (ep_op_has_event(req->epoll.op)) {
3202 struct epoll_event __user *ev;
3203
3204 ev = u64_to_user_ptr(READ_ONCE(sqe->addr));
3205 if (copy_from_user(&req->epoll.event, ev, sizeof(*ev)))
3206 return -EFAULT;
3207 }
3208
3209 return 0;
3210#else
3211 return -EOPNOTSUPP;
3212#endif
3213}
3214
Pavel Begunkov014db002020-03-03 21:33:12 +03003215static int io_epoll_ctl(struct io_kiocb *req, bool force_nonblock)
Jens Axboe3e4827b2020-01-08 15:18:09 -07003216{
3217#if defined(CONFIG_EPOLL)
3218 struct io_epoll *ie = &req->epoll;
3219 int ret;
3220
3221 ret = do_epoll_ctl(ie->epfd, ie->op, ie->fd, &ie->event, force_nonblock);
3222 if (force_nonblock && ret == -EAGAIN)
3223 return -EAGAIN;
3224
3225 if (ret < 0)
3226 req_set_fail_links(req);
3227 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003228 io_put_req(req);
Jens Axboe3e4827b2020-01-08 15:18:09 -07003229 return 0;
3230#else
3231 return -EOPNOTSUPP;
3232#endif
3233}
3234
Jens Axboec1ca7572019-12-25 22:18:28 -07003235static int io_madvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3236{
3237#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
3238 if (sqe->ioprio || sqe->buf_index || sqe->off)
3239 return -EINVAL;
3240
3241 req->madvise.addr = READ_ONCE(sqe->addr);
3242 req->madvise.len = READ_ONCE(sqe->len);
3243 req->madvise.advice = READ_ONCE(sqe->fadvise_advice);
3244 return 0;
3245#else
3246 return -EOPNOTSUPP;
3247#endif
3248}
3249
Pavel Begunkov014db002020-03-03 21:33:12 +03003250static int io_madvise(struct io_kiocb *req, bool force_nonblock)
Jens Axboec1ca7572019-12-25 22:18:28 -07003251{
3252#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
3253 struct io_madvise *ma = &req->madvise;
3254 int ret;
3255
3256 if (force_nonblock)
3257 return -EAGAIN;
3258
3259 ret = do_madvise(ma->addr, ma->len, ma->advice);
3260 if (ret < 0)
3261 req_set_fail_links(req);
3262 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003263 io_put_req(req);
Jens Axboec1ca7572019-12-25 22:18:28 -07003264 return 0;
3265#else
3266 return -EOPNOTSUPP;
3267#endif
3268}
3269
Jens Axboe4840e412019-12-25 22:03:45 -07003270static int io_fadvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3271{
3272 if (sqe->ioprio || sqe->buf_index || sqe->addr)
3273 return -EINVAL;
3274
3275 req->fadvise.offset = READ_ONCE(sqe->off);
3276 req->fadvise.len = READ_ONCE(sqe->len);
3277 req->fadvise.advice = READ_ONCE(sqe->fadvise_advice);
3278 return 0;
3279}
3280
Pavel Begunkov014db002020-03-03 21:33:12 +03003281static int io_fadvise(struct io_kiocb *req, bool force_nonblock)
Jens Axboe4840e412019-12-25 22:03:45 -07003282{
3283 struct io_fadvise *fa = &req->fadvise;
3284 int ret;
3285
Jens Axboe3e694262020-02-01 09:22:49 -07003286 if (force_nonblock) {
3287 switch (fa->advice) {
3288 case POSIX_FADV_NORMAL:
3289 case POSIX_FADV_RANDOM:
3290 case POSIX_FADV_SEQUENTIAL:
3291 break;
3292 default:
3293 return -EAGAIN;
3294 }
3295 }
Jens Axboe4840e412019-12-25 22:03:45 -07003296
3297 ret = vfs_fadvise(req->file, fa->offset, fa->len, fa->advice);
3298 if (ret < 0)
3299 req_set_fail_links(req);
3300 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003301 io_put_req(req);
Jens Axboe4840e412019-12-25 22:03:45 -07003302 return 0;
3303}
3304
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003305static int io_statx_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3306{
Jens Axboef8748882020-01-08 17:47:02 -07003307 const char __user *fname;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003308 unsigned lookup_flags;
3309 int ret;
3310
3311 if (sqe->ioprio || sqe->buf_index)
3312 return -EINVAL;
Jens Axboecf3040c2020-02-06 21:31:40 -07003313 if (sqe->flags & IOSQE_FIXED_FILE)
3314 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03003315 if (req->flags & REQ_F_NEED_CLEANUP)
3316 return 0;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003317
3318 req->open.dfd = READ_ONCE(sqe->fd);
3319 req->open.mask = READ_ONCE(sqe->len);
Jens Axboef8748882020-01-08 17:47:02 -07003320 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003321 req->open.buffer = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboec12cedf2020-01-08 17:41:21 -07003322 req->open.how.flags = READ_ONCE(sqe->statx_flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003323
Jens Axboec12cedf2020-01-08 17:41:21 -07003324 if (vfs_stat_set_lookup_flags(&lookup_flags, req->open.how.flags))
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003325 return -EINVAL;
3326
Jens Axboef8748882020-01-08 17:47:02 -07003327 req->open.filename = getname_flags(fname, lookup_flags, NULL);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003328 if (IS_ERR(req->open.filename)) {
3329 ret = PTR_ERR(req->open.filename);
3330 req->open.filename = NULL;
3331 return ret;
3332 }
3333
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003334 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003335 return 0;
3336}
3337
Pavel Begunkov014db002020-03-03 21:33:12 +03003338static int io_statx(struct io_kiocb *req, bool force_nonblock)
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003339{
3340 struct io_open *ctx = &req->open;
3341 unsigned lookup_flags;
3342 struct path path;
3343 struct kstat stat;
3344 int ret;
3345
3346 if (force_nonblock)
3347 return -EAGAIN;
3348
Jens Axboec12cedf2020-01-08 17:41:21 -07003349 if (vfs_stat_set_lookup_flags(&lookup_flags, ctx->how.flags))
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003350 return -EINVAL;
3351
3352retry:
3353 /* filename_lookup() drops it, keep a reference */
3354 ctx->filename->refcnt++;
3355
3356 ret = filename_lookup(ctx->dfd, ctx->filename, lookup_flags, &path,
3357 NULL);
3358 if (ret)
3359 goto err;
3360
Jens Axboec12cedf2020-01-08 17:41:21 -07003361 ret = vfs_getattr(&path, &stat, ctx->mask, ctx->how.flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003362 path_put(&path);
3363 if (retry_estale(ret, lookup_flags)) {
3364 lookup_flags |= LOOKUP_REVAL;
3365 goto retry;
3366 }
3367 if (!ret)
3368 ret = cp_statx(&stat, ctx->buffer);
3369err:
3370 putname(ctx->filename);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003371 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003372 if (ret < 0)
3373 req_set_fail_links(req);
3374 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003375 io_put_req(req);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003376 return 0;
3377}
3378
Jens Axboeb5dba592019-12-11 14:02:38 -07003379static int io_close_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3380{
3381 /*
3382 * If we queue this for async, it must not be cancellable. That would
3383 * leave the 'file' in an undeterminate state.
3384 */
3385 req->work.flags |= IO_WQ_WORK_NO_CANCEL;
3386
3387 if (sqe->ioprio || sqe->off || sqe->addr || sqe->len ||
3388 sqe->rw_flags || sqe->buf_index)
3389 return -EINVAL;
3390 if (sqe->flags & IOSQE_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07003391 return -EBADF;
Jens Axboeb5dba592019-12-11 14:02:38 -07003392
3393 req->close.fd = READ_ONCE(sqe->fd);
3394 if (req->file->f_op == &io_uring_fops ||
Pavel Begunkovb14cca02020-01-17 04:45:59 +03003395 req->close.fd == req->ctx->ring_fd)
Jens Axboeb5dba592019-12-11 14:02:38 -07003396 return -EBADF;
3397
3398 return 0;
3399}
3400
Pavel Begunkova93b3332020-02-08 14:04:34 +03003401/* only called when __close_fd_get_file() is done */
Pavel Begunkov014db002020-03-03 21:33:12 +03003402static void __io_close_finish(struct io_kiocb *req)
Pavel Begunkova93b3332020-02-08 14:04:34 +03003403{
3404 int ret;
3405
3406 ret = filp_close(req->close.put_file, req->work.files);
3407 if (ret < 0)
3408 req_set_fail_links(req);
3409 io_cqring_add_event(req, ret);
3410 fput(req->close.put_file);
Pavel Begunkov014db002020-03-03 21:33:12 +03003411 io_put_req(req);
Pavel Begunkova93b3332020-02-08 14:04:34 +03003412}
3413
Jens Axboeb5dba592019-12-11 14:02:38 -07003414static void io_close_finish(struct io_wq_work **workptr)
3415{
3416 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Jens Axboeb5dba592019-12-11 14:02:38 -07003417
Pavel Begunkov7fbeb952020-02-16 01:01:18 +03003418 /* not cancellable, don't do io_req_cancelled() */
Pavel Begunkov014db002020-03-03 21:33:12 +03003419 __io_close_finish(req);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03003420 io_steal_work(req, workptr);
Jens Axboeb5dba592019-12-11 14:02:38 -07003421}
3422
Pavel Begunkov014db002020-03-03 21:33:12 +03003423static int io_close(struct io_kiocb *req, bool force_nonblock)
Jens Axboeb5dba592019-12-11 14:02:38 -07003424{
3425 int ret;
3426
3427 req->close.put_file = NULL;
3428 ret = __close_fd_get_file(req->close.fd, &req->close.put_file);
3429 if (ret < 0)
3430 return ret;
3431
3432 /* if the file has a flush method, be safe and punt to async */
Pavel Begunkova2100672020-03-02 23:45:16 +03003433 if (req->close.put_file->f_op->flush && force_nonblock) {
Pavel Begunkov594506f2020-03-03 21:33:11 +03003434 /* submission ref will be dropped, take it for async */
3435 refcount_inc(&req->refs);
3436
Pavel Begunkova2100672020-03-02 23:45:16 +03003437 req->work.func = io_close_finish;
3438 /*
3439 * Do manual async queue here to avoid grabbing files - we don't
3440 * need the files, and it'll cause io_close_finish() to close
3441 * the file again and cause a double CQE entry for this request
3442 */
3443 io_queue_async_work(req);
3444 return 0;
3445 }
Jens Axboeb5dba592019-12-11 14:02:38 -07003446
3447 /*
3448 * No ->flush(), safely close from here and just punt the
3449 * fput() to async context.
3450 */
Pavel Begunkov014db002020-03-03 21:33:12 +03003451 __io_close_finish(req);
Jens Axboe1a417f42020-01-31 17:16:48 -07003452 return 0;
Jens Axboeb5dba592019-12-11 14:02:38 -07003453}
3454
Jens Axboe3529d8c2019-12-19 18:24:38 -07003455static int io_prep_sfr(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003456{
3457 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003458
3459 if (!req->file)
3460 return -EBADF;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003461
3462 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
3463 return -EINVAL;
3464 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
3465 return -EINVAL;
3466
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003467 req->sync.off = READ_ONCE(sqe->off);
3468 req->sync.len = READ_ONCE(sqe->len);
3469 req->sync.flags = READ_ONCE(sqe->sync_range_flags);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003470 return 0;
3471}
3472
Pavel Begunkov014db002020-03-03 21:33:12 +03003473static void __io_sync_file_range(struct io_kiocb *req)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003474{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003475 int ret;
3476
Jens Axboe9adbd452019-12-20 08:45:55 -07003477 ret = sync_file_range(req->file, req->sync.off, req->sync.len,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003478 req->sync.flags);
3479 if (ret < 0)
3480 req_set_fail_links(req);
3481 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003482 io_put_req(req);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03003483}
3484
3485
3486static void io_sync_file_range_finish(struct io_wq_work **workptr)
3487{
3488 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
3489 struct io_kiocb *nxt = NULL;
3490
3491 if (io_req_cancelled(req))
3492 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03003493 __io_sync_file_range(req);
Pavel Begunkov594506f2020-03-03 21:33:11 +03003494 io_put_req(req); /* put submission ref */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003495 if (nxt)
Jens Axboe78912932020-01-14 22:09:06 -07003496 io_wq_assign_next(workptr, nxt);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003497}
3498
Pavel Begunkov014db002020-03-03 21:33:12 +03003499static int io_sync_file_range(struct io_kiocb *req, bool force_nonblock)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003500{
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003501 /* sync_file_range always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003502 if (force_nonblock) {
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003503 req->work.func = io_sync_file_range_finish;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003504 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003505 }
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003506
Pavel Begunkov014db002020-03-03 21:33:12 +03003507 __io_sync_file_range(req);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003508 return 0;
3509}
3510
YueHaibing469956e2020-03-04 15:53:52 +08003511#if defined(CONFIG_NET)
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003512static int io_setup_async_msg(struct io_kiocb *req,
3513 struct io_async_msghdr *kmsg)
3514{
3515 if (req->io)
3516 return -EAGAIN;
3517 if (io_alloc_async_ctx(req)) {
3518 if (kmsg->iov != kmsg->fast_iov)
3519 kfree(kmsg->iov);
3520 return -ENOMEM;
3521 }
3522 req->flags |= REQ_F_NEED_CLEANUP;
3523 memcpy(&req->io->msg, kmsg, sizeof(*kmsg));
3524 return -EAGAIN;
3525}
3526
Jens Axboe3529d8c2019-12-19 18:24:38 -07003527static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboeaa1fa282019-04-19 13:38:09 -06003528{
Jens Axboee47293f2019-12-20 08:58:21 -07003529 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003530 struct io_async_ctx *io = req->io;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003531 int ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003532
Jens Axboee47293f2019-12-20 08:58:21 -07003533 sr->msg_flags = READ_ONCE(sqe->msg_flags);
3534 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboefddafac2020-01-04 20:19:44 -07003535 sr->len = READ_ONCE(sqe->len);
Jens Axboe3529d8c2019-12-19 18:24:38 -07003536
Jens Axboed8768362020-02-27 14:17:49 -07003537#ifdef CONFIG_COMPAT
3538 if (req->ctx->compat)
3539 sr->msg_flags |= MSG_CMSG_COMPAT;
3540#endif
3541
Jens Axboefddafac2020-01-04 20:19:44 -07003542 if (!io || req->opcode == IORING_OP_SEND)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003543 return 0;
Pavel Begunkov5f798be2020-02-08 13:28:02 +03003544 /* iovec is already imported */
3545 if (req->flags & REQ_F_NEED_CLEANUP)
3546 return 0;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003547
Jens Axboed9688562019-12-09 19:35:20 -07003548 io->msg.iov = io->msg.fast_iov;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003549 ret = sendmsg_copy_msghdr(&io->msg.msg, sr->msg, sr->msg_flags,
Jens Axboee47293f2019-12-20 08:58:21 -07003550 &io->msg.iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003551 if (!ret)
3552 req->flags |= REQ_F_NEED_CLEANUP;
3553 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003554}
3555
Pavel Begunkov014db002020-03-03 21:33:12 +03003556static int io_sendmsg(struct io_kiocb *req, bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07003557{
Jens Axboe0b416c32019-12-15 10:57:46 -07003558 struct io_async_msghdr *kmsg = NULL;
Jens Axboe03b12302019-12-02 18:50:25 -07003559 struct socket *sock;
3560 int ret;
3561
3562 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3563 return -EINVAL;
3564
3565 sock = sock_from_file(req->file, &ret);
3566 if (sock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003567 struct io_async_ctx io;
Jens Axboe03b12302019-12-02 18:50:25 -07003568 unsigned flags;
3569
Jens Axboe03b12302019-12-02 18:50:25 -07003570 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07003571 kmsg = &req->io->msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003572 kmsg->msg.msg_name = &req->io->msg.addr;
Jens Axboe0b416c32019-12-15 10:57:46 -07003573 /* if iov is set, it's allocated already */
3574 if (!kmsg->iov)
3575 kmsg->iov = kmsg->fast_iov;
3576 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07003577 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07003578 struct io_sr_msg *sr = &req->sr_msg;
3579
Jens Axboe0b416c32019-12-15 10:57:46 -07003580 kmsg = &io.msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003581 kmsg->msg.msg_name = &io.msg.addr;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003582
3583 io.msg.iov = io.msg.fast_iov;
3584 ret = sendmsg_copy_msghdr(&io.msg.msg, sr->msg,
3585 sr->msg_flags, &io.msg.iov);
Jens Axboe03b12302019-12-02 18:50:25 -07003586 if (ret)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003587 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003588 }
3589
Jens Axboee47293f2019-12-20 08:58:21 -07003590 flags = req->sr_msg.msg_flags;
3591 if (flags & MSG_DONTWAIT)
3592 req->flags |= REQ_F_NOWAIT;
3593 else if (force_nonblock)
3594 flags |= MSG_DONTWAIT;
3595
Jens Axboe0b416c32019-12-15 10:57:46 -07003596 ret = __sys_sendmsg_sock(sock, &kmsg->msg, flags);
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003597 if (force_nonblock && ret == -EAGAIN)
3598 return io_setup_async_msg(req, kmsg);
Jens Axboe03b12302019-12-02 18:50:25 -07003599 if (ret == -ERESTARTSYS)
3600 ret = -EINTR;
3601 }
3602
Pavel Begunkov1e950812020-02-06 19:51:16 +03003603 if (kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07003604 kfree(kmsg->iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003605 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe03b12302019-12-02 18:50:25 -07003606 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003607 if (ret < 0)
3608 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003609 io_put_req(req);
Jens Axboe03b12302019-12-02 18:50:25 -07003610 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07003611}
3612
Pavel Begunkov014db002020-03-03 21:33:12 +03003613static int io_send(struct io_kiocb *req, bool force_nonblock)
Jens Axboefddafac2020-01-04 20:19:44 -07003614{
Jens Axboefddafac2020-01-04 20:19:44 -07003615 struct socket *sock;
3616 int ret;
3617
3618 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3619 return -EINVAL;
3620
3621 sock = sock_from_file(req->file, &ret);
3622 if (sock) {
3623 struct io_sr_msg *sr = &req->sr_msg;
3624 struct msghdr msg;
3625 struct iovec iov;
3626 unsigned flags;
3627
3628 ret = import_single_range(WRITE, sr->buf, sr->len, &iov,
3629 &msg.msg_iter);
3630 if (ret)
3631 return ret;
3632
3633 msg.msg_name = NULL;
3634 msg.msg_control = NULL;
3635 msg.msg_controllen = 0;
3636 msg.msg_namelen = 0;
3637
3638 flags = req->sr_msg.msg_flags;
3639 if (flags & MSG_DONTWAIT)
3640 req->flags |= REQ_F_NOWAIT;
3641 else if (force_nonblock)
3642 flags |= MSG_DONTWAIT;
3643
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003644 msg.msg_flags = flags;
3645 ret = sock_sendmsg(sock, &msg);
Jens Axboefddafac2020-01-04 20:19:44 -07003646 if (force_nonblock && ret == -EAGAIN)
3647 return -EAGAIN;
3648 if (ret == -ERESTARTSYS)
3649 ret = -EINTR;
3650 }
3651
3652 io_cqring_add_event(req, ret);
3653 if (ret < 0)
3654 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003655 io_put_req(req);
Jens Axboefddafac2020-01-04 20:19:44 -07003656 return 0;
Jens Axboefddafac2020-01-04 20:19:44 -07003657}
3658
Jens Axboe52de1fe2020-02-27 10:15:42 -07003659static int __io_recvmsg_copy_hdr(struct io_kiocb *req, struct io_async_ctx *io)
3660{
3661 struct io_sr_msg *sr = &req->sr_msg;
3662 struct iovec __user *uiov;
3663 size_t iov_len;
3664 int ret;
3665
3666 ret = __copy_msghdr_from_user(&io->msg.msg, sr->msg, &io->msg.uaddr,
3667 &uiov, &iov_len);
3668 if (ret)
3669 return ret;
3670
3671 if (req->flags & REQ_F_BUFFER_SELECT) {
3672 if (iov_len > 1)
3673 return -EINVAL;
3674 if (copy_from_user(io->msg.iov, uiov, sizeof(*uiov)))
3675 return -EFAULT;
3676 sr->len = io->msg.iov[0].iov_len;
3677 iov_iter_init(&io->msg.msg.msg_iter, READ, io->msg.iov, 1,
3678 sr->len);
3679 io->msg.iov = NULL;
3680 } else {
3681 ret = import_iovec(READ, uiov, iov_len, UIO_FASTIOV,
3682 &io->msg.iov, &io->msg.msg.msg_iter);
3683 if (ret > 0)
3684 ret = 0;
3685 }
3686
3687 return ret;
3688}
3689
3690#ifdef CONFIG_COMPAT
3691static int __io_compat_recvmsg_copy_hdr(struct io_kiocb *req,
3692 struct io_async_ctx *io)
3693{
3694 struct compat_msghdr __user *msg_compat;
3695 struct io_sr_msg *sr = &req->sr_msg;
3696 struct compat_iovec __user *uiov;
3697 compat_uptr_t ptr;
3698 compat_size_t len;
3699 int ret;
3700
3701 msg_compat = (struct compat_msghdr __user *) sr->msg;
3702 ret = __get_compat_msghdr(&io->msg.msg, msg_compat, &io->msg.uaddr,
3703 &ptr, &len);
3704 if (ret)
3705 return ret;
3706
3707 uiov = compat_ptr(ptr);
3708 if (req->flags & REQ_F_BUFFER_SELECT) {
3709 compat_ssize_t clen;
3710
3711 if (len > 1)
3712 return -EINVAL;
3713 if (!access_ok(uiov, sizeof(*uiov)))
3714 return -EFAULT;
3715 if (__get_user(clen, &uiov->iov_len))
3716 return -EFAULT;
3717 if (clen < 0)
3718 return -EINVAL;
3719 sr->len = io->msg.iov[0].iov_len;
3720 io->msg.iov = NULL;
3721 } else {
3722 ret = compat_import_iovec(READ, uiov, len, UIO_FASTIOV,
3723 &io->msg.iov,
3724 &io->msg.msg.msg_iter);
3725 if (ret < 0)
3726 return ret;
3727 }
3728
3729 return 0;
3730}
Jens Axboe03b12302019-12-02 18:50:25 -07003731#endif
Jens Axboe52de1fe2020-02-27 10:15:42 -07003732
3733static int io_recvmsg_copy_hdr(struct io_kiocb *req, struct io_async_ctx *io)
3734{
3735 io->msg.iov = io->msg.fast_iov;
3736
3737#ifdef CONFIG_COMPAT
3738 if (req->ctx->compat)
3739 return __io_compat_recvmsg_copy_hdr(req, io);
3740#endif
3741
3742 return __io_recvmsg_copy_hdr(req, io);
3743}
3744
Jens Axboebcda7ba2020-02-23 16:42:51 -07003745static struct io_buffer *io_recv_buffer_select(struct io_kiocb *req,
3746 int *cflags, bool needs_lock)
3747{
3748 struct io_sr_msg *sr = &req->sr_msg;
3749 struct io_buffer *kbuf;
3750
3751 if (!(req->flags & REQ_F_BUFFER_SELECT))
3752 return NULL;
3753
3754 kbuf = io_buffer_select(req, &sr->len, sr->bgid, sr->kbuf, needs_lock);
3755 if (IS_ERR(kbuf))
3756 return kbuf;
3757
3758 sr->kbuf = kbuf;
3759 req->flags |= REQ_F_BUFFER_SELECTED;
3760
3761 *cflags = kbuf->bid << IORING_CQE_BUFFER_SHIFT;
3762 *cflags |= IORING_CQE_F_BUFFER;
3763 return kbuf;
Jens Axboe03b12302019-12-02 18:50:25 -07003764}
3765
Jens Axboe3529d8c2019-12-19 18:24:38 -07003766static int io_recvmsg_prep(struct io_kiocb *req,
3767 const struct io_uring_sqe *sqe)
Jens Axboe03b12302019-12-02 18:50:25 -07003768{
Jens Axboee47293f2019-12-20 08:58:21 -07003769 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003770 struct io_async_ctx *io = req->io;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003771 int ret;
Jens Axboe06b76d42019-12-19 14:44:26 -07003772
Jens Axboe3529d8c2019-12-19 18:24:38 -07003773 sr->msg_flags = READ_ONCE(sqe->msg_flags);
3774 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003775 sr->len = READ_ONCE(sqe->len);
Jens Axboebcda7ba2020-02-23 16:42:51 -07003776 sr->bgid = READ_ONCE(sqe->buf_group);
Jens Axboe3529d8c2019-12-19 18:24:38 -07003777
Jens Axboed8768362020-02-27 14:17:49 -07003778#ifdef CONFIG_COMPAT
3779 if (req->ctx->compat)
3780 sr->msg_flags |= MSG_CMSG_COMPAT;
3781#endif
3782
Jens Axboefddafac2020-01-04 20:19:44 -07003783 if (!io || req->opcode == IORING_OP_RECV)
Jens Axboe06b76d42019-12-19 14:44:26 -07003784 return 0;
Pavel Begunkov5f798be2020-02-08 13:28:02 +03003785 /* iovec is already imported */
3786 if (req->flags & REQ_F_NEED_CLEANUP)
3787 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07003788
Jens Axboe52de1fe2020-02-27 10:15:42 -07003789 ret = io_recvmsg_copy_hdr(req, io);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003790 if (!ret)
3791 req->flags |= REQ_F_NEED_CLEANUP;
3792 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003793}
3794
Pavel Begunkov014db002020-03-03 21:33:12 +03003795static int io_recvmsg(struct io_kiocb *req, bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07003796{
Jens Axboe0b416c32019-12-15 10:57:46 -07003797 struct io_async_msghdr *kmsg = NULL;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003798 struct socket *sock;
Jens Axboe52de1fe2020-02-27 10:15:42 -07003799 int ret, cflags = 0;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003800
3801 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3802 return -EINVAL;
3803
3804 sock = sock_from_file(req->file, &ret);
3805 if (sock) {
Jens Axboe52de1fe2020-02-27 10:15:42 -07003806 struct io_buffer *kbuf;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003807 struct io_async_ctx io;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003808 unsigned flags;
3809
Jens Axboe03b12302019-12-02 18:50:25 -07003810 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07003811 kmsg = &req->io->msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003812 kmsg->msg.msg_name = &req->io->msg.addr;
Jens Axboe0b416c32019-12-15 10:57:46 -07003813 /* if iov is set, it's allocated already */
3814 if (!kmsg->iov)
3815 kmsg->iov = kmsg->fast_iov;
3816 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07003817 } else {
Jens Axboe0b416c32019-12-15 10:57:46 -07003818 kmsg = &io.msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003819 kmsg->msg.msg_name = &io.msg.addr;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003820
Jens Axboe52de1fe2020-02-27 10:15:42 -07003821 ret = io_recvmsg_copy_hdr(req, &io);
Jens Axboe03b12302019-12-02 18:50:25 -07003822 if (ret)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003823 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003824 }
Jens Axboe0fa03c62019-04-19 13:34:07 -06003825
Jens Axboe52de1fe2020-02-27 10:15:42 -07003826 kbuf = io_recv_buffer_select(req, &cflags, !force_nonblock);
3827 if (IS_ERR(kbuf)) {
3828 return PTR_ERR(kbuf);
3829 } else if (kbuf) {
3830 kmsg->fast_iov[0].iov_base = u64_to_user_ptr(kbuf->addr);
3831 iov_iter_init(&kmsg->msg.msg_iter, READ, kmsg->iov,
3832 1, req->sr_msg.len);
3833 }
3834
Jens Axboee47293f2019-12-20 08:58:21 -07003835 flags = req->sr_msg.msg_flags;
3836 if (flags & MSG_DONTWAIT)
3837 req->flags |= REQ_F_NOWAIT;
3838 else if (force_nonblock)
3839 flags |= MSG_DONTWAIT;
3840
3841 ret = __sys_recvmsg_sock(sock, &kmsg->msg, req->sr_msg.msg,
3842 kmsg->uaddr, flags);
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003843 if (force_nonblock && ret == -EAGAIN)
3844 return io_setup_async_msg(req, kmsg);
Jens Axboe441cdbd2019-12-02 18:49:10 -07003845 if (ret == -ERESTARTSYS)
3846 ret = -EINTR;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003847 }
3848
Pavel Begunkov1e950812020-02-06 19:51:16 +03003849 if (kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07003850 kfree(kmsg->iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003851 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe52de1fe2020-02-27 10:15:42 -07003852 __io_cqring_add_event(req, ret, cflags);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003853 if (ret < 0)
3854 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003855 io_put_req(req);
Jens Axboe0fa03c62019-04-19 13:34:07 -06003856 return 0;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003857}
3858
Pavel Begunkov014db002020-03-03 21:33:12 +03003859static int io_recv(struct io_kiocb *req, bool force_nonblock)
Jens Axboefddafac2020-01-04 20:19:44 -07003860{
Jens Axboebcda7ba2020-02-23 16:42:51 -07003861 struct io_buffer *kbuf = NULL;
Jens Axboefddafac2020-01-04 20:19:44 -07003862 struct socket *sock;
Jens Axboebcda7ba2020-02-23 16:42:51 -07003863 int ret, cflags = 0;
Jens Axboefddafac2020-01-04 20:19:44 -07003864
3865 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3866 return -EINVAL;
3867
3868 sock = sock_from_file(req->file, &ret);
3869 if (sock) {
3870 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboebcda7ba2020-02-23 16:42:51 -07003871 void __user *buf = sr->buf;
Jens Axboefddafac2020-01-04 20:19:44 -07003872 struct msghdr msg;
3873 struct iovec iov;
3874 unsigned flags;
3875
Jens Axboebcda7ba2020-02-23 16:42:51 -07003876 kbuf = io_recv_buffer_select(req, &cflags, !force_nonblock);
3877 if (IS_ERR(kbuf))
3878 return PTR_ERR(kbuf);
3879 else if (kbuf)
3880 buf = u64_to_user_ptr(kbuf->addr);
Jens Axboefddafac2020-01-04 20:19:44 -07003881
Jens Axboebcda7ba2020-02-23 16:42:51 -07003882 ret = import_single_range(READ, buf, sr->len, &iov,
3883 &msg.msg_iter);
3884 if (ret) {
3885 kfree(kbuf);
3886 return ret;
3887 }
3888
3889 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboefddafac2020-01-04 20:19:44 -07003890 msg.msg_name = NULL;
3891 msg.msg_control = NULL;
3892 msg.msg_controllen = 0;
3893 msg.msg_namelen = 0;
3894 msg.msg_iocb = NULL;
3895 msg.msg_flags = 0;
3896
3897 flags = req->sr_msg.msg_flags;
3898 if (flags & MSG_DONTWAIT)
3899 req->flags |= REQ_F_NOWAIT;
3900 else if (force_nonblock)
3901 flags |= MSG_DONTWAIT;
3902
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003903 ret = sock_recvmsg(sock, &msg, flags);
Jens Axboefddafac2020-01-04 20:19:44 -07003904 if (force_nonblock && ret == -EAGAIN)
3905 return -EAGAIN;
3906 if (ret == -ERESTARTSYS)
3907 ret = -EINTR;
3908 }
3909
Jens Axboebcda7ba2020-02-23 16:42:51 -07003910 kfree(kbuf);
3911 req->flags &= ~REQ_F_NEED_CLEANUP;
3912 __io_cqring_add_event(req, ret, cflags);
Jens Axboefddafac2020-01-04 20:19:44 -07003913 if (ret < 0)
3914 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003915 io_put_req(req);
Jens Axboefddafac2020-01-04 20:19:44 -07003916 return 0;
Jens Axboefddafac2020-01-04 20:19:44 -07003917}
3918
Jens Axboe3529d8c2019-12-19 18:24:38 -07003919static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003920{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003921 struct io_accept *accept = &req->accept;
3922
Jens Axboe17f2fe32019-10-17 14:42:58 -06003923 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3924 return -EINVAL;
Hrvoje Zeba8042d6c2019-11-25 14:40:22 -05003925 if (sqe->ioprio || sqe->len || sqe->buf_index)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003926 return -EINVAL;
3927
Jens Axboed55e5f52019-12-11 16:12:15 -07003928 accept->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
3929 accept->addr_len = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003930 accept->flags = READ_ONCE(sqe->accept_flags);
Jens Axboe09952e32020-03-19 20:16:56 -06003931 accept->nofile = rlimit(RLIMIT_NOFILE);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003932 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003933}
Jens Axboe17f2fe32019-10-17 14:42:58 -06003934
Pavel Begunkov014db002020-03-03 21:33:12 +03003935static int __io_accept(struct io_kiocb *req, bool force_nonblock)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003936{
3937 struct io_accept *accept = &req->accept;
3938 unsigned file_flags;
3939 int ret;
3940
3941 file_flags = force_nonblock ? O_NONBLOCK : 0;
3942 ret = __sys_accept4_file(req->file, file_flags, accept->addr,
Jens Axboe09952e32020-03-19 20:16:56 -06003943 accept->addr_len, accept->flags,
3944 accept->nofile);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003945 if (ret == -EAGAIN && force_nonblock)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003946 return -EAGAIN;
Jens Axboe8e3cca12019-11-09 19:52:33 -07003947 if (ret == -ERESTARTSYS)
3948 ret = -EINTR;
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003949 if (ret < 0)
3950 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07003951 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003952 io_put_req(req);
Jens Axboe17f2fe32019-10-17 14:42:58 -06003953 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003954}
3955
3956static void io_accept_finish(struct io_wq_work **workptr)
3957{
3958 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003959
3960 if (io_req_cancelled(req))
3961 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03003962 __io_accept(req, false);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03003963 io_steal_work(req, workptr);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003964}
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003965
Pavel Begunkov014db002020-03-03 21:33:12 +03003966static int io_accept(struct io_kiocb *req, bool force_nonblock)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003967{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003968 int ret;
3969
Pavel Begunkov014db002020-03-03 21:33:12 +03003970 ret = __io_accept(req, force_nonblock);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003971 if (ret == -EAGAIN && force_nonblock) {
3972 req->work.func = io_accept_finish;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003973 return -EAGAIN;
3974 }
3975 return 0;
Jens Axboe17f2fe32019-10-17 14:42:58 -06003976}
3977
Jens Axboe3529d8c2019-12-19 18:24:38 -07003978static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef499a022019-12-02 16:28:46 -07003979{
Jens Axboe3529d8c2019-12-19 18:24:38 -07003980 struct io_connect *conn = &req->connect;
3981 struct io_async_ctx *io = req->io;
Jens Axboef499a022019-12-02 16:28:46 -07003982
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003983 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3984 return -EINVAL;
3985 if (sqe->ioprio || sqe->len || sqe->buf_index || sqe->rw_flags)
3986 return -EINVAL;
3987
Jens Axboe3529d8c2019-12-19 18:24:38 -07003988 conn->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
3989 conn->addr_len = READ_ONCE(sqe->addr2);
3990
3991 if (!io)
3992 return 0;
3993
3994 return move_addr_to_kernel(conn->addr, conn->addr_len,
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003995 &io->connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07003996}
3997
Pavel Begunkov014db002020-03-03 21:33:12 +03003998static int io_connect(struct io_kiocb *req, bool force_nonblock)
Jens Axboef8e85cf2019-11-23 14:24:24 -07003999{
Jens Axboef499a022019-12-02 16:28:46 -07004000 struct io_async_ctx __io, *io;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004001 unsigned file_flags;
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004002 int ret;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004003
Jens Axboef499a022019-12-02 16:28:46 -07004004 if (req->io) {
4005 io = req->io;
4006 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07004007 ret = move_addr_to_kernel(req->connect.addr,
4008 req->connect.addr_len,
4009 &__io.connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07004010 if (ret)
4011 goto out;
4012 io = &__io;
4013 }
4014
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004015 file_flags = force_nonblock ? O_NONBLOCK : 0;
4016
4017 ret = __sys_connect_file(req->file, &io->connect.address,
4018 req->connect.addr_len, file_flags);
Jens Axboe87f80d62019-12-03 11:23:54 -07004019 if ((ret == -EAGAIN || ret == -EINPROGRESS) && force_nonblock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004020 if (req->io)
4021 return -EAGAIN;
4022 if (io_alloc_async_ctx(req)) {
Jens Axboef499a022019-12-02 16:28:46 -07004023 ret = -ENOMEM;
4024 goto out;
4025 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004026 memcpy(&req->io->connect, &__io.connect, sizeof(__io.connect));
Jens Axboef8e85cf2019-11-23 14:24:24 -07004027 return -EAGAIN;
Jens Axboef499a022019-12-02 16:28:46 -07004028 }
Jens Axboef8e85cf2019-11-23 14:24:24 -07004029 if (ret == -ERESTARTSYS)
4030 ret = -EINTR;
Jens Axboef499a022019-12-02 16:28:46 -07004031out:
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004032 if (ret < 0)
4033 req_set_fail_links(req);
Jens Axboef8e85cf2019-11-23 14:24:24 -07004034 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03004035 io_put_req(req);
Jens Axboef8e85cf2019-11-23 14:24:24 -07004036 return 0;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004037}
YueHaibing469956e2020-03-04 15:53:52 +08004038#else /* !CONFIG_NET */
4039static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4040{
Jens Axboef8e85cf2019-11-23 14:24:24 -07004041 return -EOPNOTSUPP;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004042}
4043
YueHaibing469956e2020-03-04 15:53:52 +08004044static int io_sendmsg(struct io_kiocb *req, bool force_nonblock)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004045{
YueHaibing469956e2020-03-04 15:53:52 +08004046 return -EOPNOTSUPP;
4047}
4048
4049static int io_send(struct io_kiocb *req, bool force_nonblock)
4050{
4051 return -EOPNOTSUPP;
4052}
4053
4054static int io_recvmsg_prep(struct io_kiocb *req,
4055 const struct io_uring_sqe *sqe)
4056{
4057 return -EOPNOTSUPP;
4058}
4059
4060static int io_recvmsg(struct io_kiocb *req, bool force_nonblock)
4061{
4062 return -EOPNOTSUPP;
4063}
4064
4065static int io_recv(struct io_kiocb *req, bool force_nonblock)
4066{
4067 return -EOPNOTSUPP;
4068}
4069
4070static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4071{
4072 return -EOPNOTSUPP;
4073}
4074
4075static int io_accept(struct io_kiocb *req, bool force_nonblock)
4076{
4077 return -EOPNOTSUPP;
4078}
4079
4080static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4081{
4082 return -EOPNOTSUPP;
4083}
4084
4085static int io_connect(struct io_kiocb *req, bool force_nonblock)
4086{
4087 return -EOPNOTSUPP;
4088}
4089#endif /* CONFIG_NET */
Jens Axboe2b188cc2019-01-07 10:46:33 -07004090
Jens Axboed7718a92020-02-14 22:23:12 -07004091struct io_poll_table {
4092 struct poll_table_struct pt;
4093 struct io_kiocb *req;
4094 int error;
4095};
4096
4097static void __io_queue_proc(struct io_poll_iocb *poll, struct io_poll_table *pt,
4098 struct wait_queue_head *head)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004099{
Jens Axboed7718a92020-02-14 22:23:12 -07004100 if (unlikely(poll->head)) {
4101 pt->error = -EINVAL;
4102 return;
4103 }
4104
4105 pt->error = 0;
4106 poll->head = head;
4107 add_wait_queue(head, &poll->wait);
4108}
4109
4110static void io_async_queue_proc(struct file *file, struct wait_queue_head *head,
4111 struct poll_table_struct *p)
4112{
4113 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
4114
4115 __io_queue_proc(&pt->req->apoll->poll, pt, head);
4116}
4117
4118static int __io_async_wake(struct io_kiocb *req, struct io_poll_iocb *poll,
4119 __poll_t mask, task_work_func_t func)
4120{
4121 struct task_struct *tsk;
4122
4123 /* for instances that support it check for an event match first: */
4124 if (mask && !(mask & poll->events))
4125 return 0;
4126
4127 trace_io_uring_task_add(req->ctx, req->opcode, req->user_data, mask);
4128
4129 list_del_init(&poll->wait.entry);
4130
4131 tsk = req->task;
4132 req->result = mask;
4133 init_task_work(&req->task_work, func);
4134 /*
4135 * If this fails, then the task is exiting. If that is the case, then
4136 * the exit check will ultimately cancel these work items. Hence we
4137 * don't need to check here and handle it specifically.
4138 */
4139 task_work_add(tsk, &req->task_work, true);
4140 wake_up_process(tsk);
4141 return 1;
4142}
4143
4144static void io_async_task_func(struct callback_head *cb)
4145{
4146 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
4147 struct async_poll *apoll = req->apoll;
4148 struct io_ring_ctx *ctx = req->ctx;
4149
4150 trace_io_uring_task_run(req->ctx, req->opcode, req->user_data);
4151
4152 WARN_ON_ONCE(!list_empty(&req->apoll->poll.wait.entry));
4153
4154 if (hash_hashed(&req->hash_node)) {
4155 spin_lock_irq(&ctx->completion_lock);
4156 hash_del(&req->hash_node);
4157 spin_unlock_irq(&ctx->completion_lock);
4158 }
4159
4160 /* restore ->work in case we need to retry again */
4161 memcpy(&req->work, &apoll->work, sizeof(req->work));
4162
4163 __set_current_state(TASK_RUNNING);
4164 mutex_lock(&ctx->uring_lock);
4165 __io_queue_sqe(req, NULL);
4166 mutex_unlock(&ctx->uring_lock);
4167
4168 kfree(apoll);
4169}
4170
4171static int io_async_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
4172 void *key)
4173{
4174 struct io_kiocb *req = wait->private;
4175 struct io_poll_iocb *poll = &req->apoll->poll;
4176
4177 trace_io_uring_poll_wake(req->ctx, req->opcode, req->user_data,
4178 key_to_poll(key));
4179
4180 return __io_async_wake(req, poll, key_to_poll(key), io_async_task_func);
4181}
4182
4183static void io_poll_req_insert(struct io_kiocb *req)
4184{
4185 struct io_ring_ctx *ctx = req->ctx;
4186 struct hlist_head *list;
4187
4188 list = &ctx->cancel_hash[hash_long(req->user_data, ctx->cancel_hash_bits)];
4189 hlist_add_head(&req->hash_node, list);
4190}
4191
4192static __poll_t __io_arm_poll_handler(struct io_kiocb *req,
4193 struct io_poll_iocb *poll,
4194 struct io_poll_table *ipt, __poll_t mask,
4195 wait_queue_func_t wake_func)
4196 __acquires(&ctx->completion_lock)
4197{
4198 struct io_ring_ctx *ctx = req->ctx;
4199 bool cancel = false;
4200
4201 poll->file = req->file;
4202 poll->head = NULL;
4203 poll->done = poll->canceled = false;
4204 poll->events = mask;
4205
4206 ipt->pt._key = mask;
4207 ipt->req = req;
4208 ipt->error = -EINVAL;
4209
4210 INIT_LIST_HEAD(&poll->wait.entry);
4211 init_waitqueue_func_entry(&poll->wait, wake_func);
4212 poll->wait.private = req;
4213
4214 mask = vfs_poll(req->file, &ipt->pt) & poll->events;
4215
4216 spin_lock_irq(&ctx->completion_lock);
4217 if (likely(poll->head)) {
4218 spin_lock(&poll->head->lock);
4219 if (unlikely(list_empty(&poll->wait.entry))) {
4220 if (ipt->error)
4221 cancel = true;
4222 ipt->error = 0;
4223 mask = 0;
4224 }
4225 if (mask || ipt->error)
4226 list_del_init(&poll->wait.entry);
4227 else if (cancel)
4228 WRITE_ONCE(poll->canceled, true);
4229 else if (!poll->done) /* actually waiting for an event */
4230 io_poll_req_insert(req);
4231 spin_unlock(&poll->head->lock);
4232 }
4233
4234 return mask;
4235}
4236
4237static bool io_arm_poll_handler(struct io_kiocb *req)
4238{
4239 const struct io_op_def *def = &io_op_defs[req->opcode];
4240 struct io_ring_ctx *ctx = req->ctx;
4241 struct async_poll *apoll;
4242 struct io_poll_table ipt;
4243 __poll_t mask, ret;
4244
4245 if (!req->file || !file_can_poll(req->file))
4246 return false;
4247 if (req->flags & (REQ_F_MUST_PUNT | REQ_F_POLLED))
4248 return false;
4249 if (!def->pollin && !def->pollout)
4250 return false;
4251
4252 apoll = kmalloc(sizeof(*apoll), GFP_ATOMIC);
4253 if (unlikely(!apoll))
4254 return false;
4255
4256 req->flags |= REQ_F_POLLED;
4257 memcpy(&apoll->work, &req->work, sizeof(req->work));
4258
4259 /*
4260 * Don't need a reference here, as we're adding it to the task
4261 * task_works list. If the task exits, the list is pruned.
4262 */
4263 req->task = current;
4264 req->apoll = apoll;
4265 INIT_HLIST_NODE(&req->hash_node);
4266
Nathan Chancellor8755d972020-03-02 16:01:19 -07004267 mask = 0;
Jens Axboed7718a92020-02-14 22:23:12 -07004268 if (def->pollin)
Nathan Chancellor8755d972020-03-02 16:01:19 -07004269 mask |= POLLIN | POLLRDNORM;
Jens Axboed7718a92020-02-14 22:23:12 -07004270 if (def->pollout)
4271 mask |= POLLOUT | POLLWRNORM;
4272 mask |= POLLERR | POLLPRI;
4273
4274 ipt.pt._qproc = io_async_queue_proc;
4275
4276 ret = __io_arm_poll_handler(req, &apoll->poll, &ipt, mask,
4277 io_async_wake);
4278 if (ret) {
4279 ipt.error = 0;
4280 apoll->poll.done = true;
4281 spin_unlock_irq(&ctx->completion_lock);
4282 memcpy(&req->work, &apoll->work, sizeof(req->work));
4283 kfree(apoll);
4284 return false;
4285 }
4286 spin_unlock_irq(&ctx->completion_lock);
4287 trace_io_uring_poll_arm(ctx, req->opcode, req->user_data, mask,
4288 apoll->poll.events);
4289 return true;
4290}
4291
4292static bool __io_poll_remove_one(struct io_kiocb *req,
4293 struct io_poll_iocb *poll)
4294{
Jens Axboeb41e9852020-02-17 09:52:41 -07004295 bool do_complete = false;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004296
4297 spin_lock(&poll->head->lock);
4298 WRITE_ONCE(poll->canceled, true);
Jens Axboe392edb42019-12-09 17:52:20 -07004299 if (!list_empty(&poll->wait.entry)) {
4300 list_del_init(&poll->wait.entry);
Jens Axboeb41e9852020-02-17 09:52:41 -07004301 do_complete = true;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004302 }
4303 spin_unlock(&poll->head->lock);
Jens Axboed7718a92020-02-14 22:23:12 -07004304 return do_complete;
4305}
4306
4307static bool io_poll_remove_one(struct io_kiocb *req)
4308{
4309 bool do_complete;
4310
4311 if (req->opcode == IORING_OP_POLL_ADD) {
4312 do_complete = __io_poll_remove_one(req, &req->poll);
4313 } else {
4314 /* non-poll requests have submit ref still */
4315 do_complete = __io_poll_remove_one(req, &req->apoll->poll);
4316 if (do_complete)
4317 io_put_req(req);
4318 }
4319
Jens Axboe78076bb2019-12-04 19:56:40 -07004320 hash_del(&req->hash_node);
Jens Axboed7718a92020-02-14 22:23:12 -07004321
Jens Axboeb41e9852020-02-17 09:52:41 -07004322 if (do_complete) {
4323 io_cqring_fill_event(req, -ECANCELED);
4324 io_commit_cqring(req->ctx);
4325 req->flags |= REQ_F_COMP_LOCKED;
4326 io_put_req(req);
4327 }
4328
4329 return do_complete;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004330}
4331
4332static void io_poll_remove_all(struct io_ring_ctx *ctx)
4333{
Jens Axboe78076bb2019-12-04 19:56:40 -07004334 struct hlist_node *tmp;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004335 struct io_kiocb *req;
Jens Axboe78076bb2019-12-04 19:56:40 -07004336 int i;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004337
4338 spin_lock_irq(&ctx->completion_lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07004339 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
4340 struct hlist_head *list;
4341
4342 list = &ctx->cancel_hash[i];
4343 hlist_for_each_entry_safe(req, tmp, list, hash_node)
4344 io_poll_remove_one(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004345 }
4346 spin_unlock_irq(&ctx->completion_lock);
Jens Axboeb41e9852020-02-17 09:52:41 -07004347
4348 io_cqring_ev_posted(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004349}
4350
Jens Axboe47f46762019-11-09 17:43:02 -07004351static int io_poll_cancel(struct io_ring_ctx *ctx, __u64 sqe_addr)
4352{
Jens Axboe78076bb2019-12-04 19:56:40 -07004353 struct hlist_head *list;
Jens Axboe47f46762019-11-09 17:43:02 -07004354 struct io_kiocb *req;
4355
Jens Axboe78076bb2019-12-04 19:56:40 -07004356 list = &ctx->cancel_hash[hash_long(sqe_addr, ctx->cancel_hash_bits)];
4357 hlist_for_each_entry(req, list, hash_node) {
Jens Axboeb41e9852020-02-17 09:52:41 -07004358 if (sqe_addr != req->user_data)
4359 continue;
4360 if (io_poll_remove_one(req))
Jens Axboeeac406c2019-11-14 12:09:58 -07004361 return 0;
Jens Axboeb41e9852020-02-17 09:52:41 -07004362 return -EALREADY;
Jens Axboe47f46762019-11-09 17:43:02 -07004363 }
4364
4365 return -ENOENT;
4366}
4367
Jens Axboe3529d8c2019-12-19 18:24:38 -07004368static int io_poll_remove_prep(struct io_kiocb *req,
4369 const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004370{
Jens Axboe221c5eb2019-01-17 09:41:58 -07004371 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4372 return -EINVAL;
4373 if (sqe->ioprio || sqe->off || sqe->len || sqe->buf_index ||
4374 sqe->poll_events)
4375 return -EINVAL;
4376
Jens Axboe0969e782019-12-17 18:40:57 -07004377 req->poll.addr = READ_ONCE(sqe->addr);
Jens Axboe0969e782019-12-17 18:40:57 -07004378 return 0;
4379}
4380
4381/*
4382 * Find a running poll command that matches one specified in sqe->addr,
4383 * and remove it if found.
4384 */
4385static int io_poll_remove(struct io_kiocb *req)
4386{
4387 struct io_ring_ctx *ctx = req->ctx;
4388 u64 addr;
4389 int ret;
4390
Jens Axboe0969e782019-12-17 18:40:57 -07004391 addr = req->poll.addr;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004392 spin_lock_irq(&ctx->completion_lock);
Jens Axboe0969e782019-12-17 18:40:57 -07004393 ret = io_poll_cancel(ctx, addr);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004394 spin_unlock_irq(&ctx->completion_lock);
4395
Jens Axboe78e19bb2019-11-06 15:21:34 -07004396 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004397 if (ret < 0)
4398 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06004399 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004400 return 0;
4401}
4402
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004403static void io_poll_complete(struct io_kiocb *req, __poll_t mask, int error)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004404{
Jackie Liua197f662019-11-08 08:09:12 -07004405 struct io_ring_ctx *ctx = req->ctx;
4406
Jens Axboe8c838782019-03-12 15:48:16 -06004407 req->poll.done = true;
Pavel Begunkovb0a20342020-02-28 10:36:35 +03004408 io_cqring_fill_event(req, error ? error : mangle_poll(mask));
Jens Axboe8c838782019-03-12 15:48:16 -06004409 io_commit_cqring(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004410}
4411
Jens Axboeb41e9852020-02-17 09:52:41 -07004412static void io_poll_task_handler(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004413{
Jens Axboe221c5eb2019-01-17 09:41:58 -07004414 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004415
Jens Axboe221c5eb2019-01-17 09:41:58 -07004416 spin_lock_irq(&ctx->completion_lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07004417 hash_del(&req->hash_node);
Jens Axboeb41e9852020-02-17 09:52:41 -07004418 io_poll_complete(req, req->result, 0);
4419 req->flags |= REQ_F_COMP_LOCKED;
4420 io_put_req_find_next(req, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004421 spin_unlock_irq(&ctx->completion_lock);
4422
Jens Axboe8c838782019-03-12 15:48:16 -06004423 io_cqring_ev_posted(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004424}
4425
Jens Axboeb41e9852020-02-17 09:52:41 -07004426static void io_poll_task_func(struct callback_head *cb)
Jens Axboee94f1412019-12-19 12:06:02 -07004427{
Jens Axboeb41e9852020-02-17 09:52:41 -07004428 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
4429 struct io_kiocb *nxt = NULL;
Jens Axboee94f1412019-12-19 12:06:02 -07004430
Jens Axboeb41e9852020-02-17 09:52:41 -07004431 io_poll_task_handler(req, &nxt);
Jens Axboed7718a92020-02-14 22:23:12 -07004432 if (nxt) {
4433 struct io_ring_ctx *ctx = nxt->ctx;
Jens Axboee94f1412019-12-19 12:06:02 -07004434
Jens Axboed7718a92020-02-14 22:23:12 -07004435 mutex_lock(&ctx->uring_lock);
Jens Axboeb41e9852020-02-17 09:52:41 -07004436 __io_queue_sqe(nxt, NULL);
Jens Axboed7718a92020-02-14 22:23:12 -07004437 mutex_unlock(&ctx->uring_lock);
Jens Axboee94f1412019-12-19 12:06:02 -07004438 }
Jens Axboef0b493e2020-02-01 21:30:11 -07004439}
4440
Jens Axboe221c5eb2019-01-17 09:41:58 -07004441static int io_poll_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
4442 void *key)
4443{
Jens Axboec2f2eb72020-02-10 09:07:05 -07004444 struct io_kiocb *req = wait->private;
4445 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004446
Jens Axboed7718a92020-02-14 22:23:12 -07004447 return __io_async_wake(req, poll, key_to_poll(key), io_poll_task_func);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004448}
4449
Jens Axboe221c5eb2019-01-17 09:41:58 -07004450static void io_poll_queue_proc(struct file *file, struct wait_queue_head *head,
4451 struct poll_table_struct *p)
4452{
4453 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
4454
Jens Axboed7718a92020-02-14 22:23:12 -07004455 __io_queue_proc(&pt->req->poll, pt, head);
Jens Axboeeac406c2019-11-14 12:09:58 -07004456}
4457
Jens Axboe3529d8c2019-12-19 18:24:38 -07004458static int io_poll_add_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004459{
4460 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004461 u16 events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004462
4463 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4464 return -EINVAL;
4465 if (sqe->addr || sqe->ioprio || sqe->off || sqe->len || sqe->buf_index)
4466 return -EINVAL;
Jens Axboe09bb8392019-03-13 12:39:28 -06004467 if (!poll->file)
4468 return -EBADF;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004469
Jens Axboe221c5eb2019-01-17 09:41:58 -07004470 events = READ_ONCE(sqe->poll_events);
4471 poll->events = demangle_poll(events) | EPOLLERR | EPOLLHUP;
Jens Axboeb41e9852020-02-17 09:52:41 -07004472
Jens Axboed7718a92020-02-14 22:23:12 -07004473 /*
4474 * Don't need a reference here, as we're adding it to the task
4475 * task_works list. If the task exits, the list is pruned.
4476 */
Jens Axboeb41e9852020-02-17 09:52:41 -07004477 req->task = current;
Jens Axboe0969e782019-12-17 18:40:57 -07004478 return 0;
4479}
4480
Pavel Begunkov014db002020-03-03 21:33:12 +03004481static int io_poll_add(struct io_kiocb *req)
Jens Axboe0969e782019-12-17 18:40:57 -07004482{
4483 struct io_poll_iocb *poll = &req->poll;
4484 struct io_ring_ctx *ctx = req->ctx;
4485 struct io_poll_table ipt;
Jens Axboe0969e782019-12-17 18:40:57 -07004486 __poll_t mask;
Jens Axboe0969e782019-12-17 18:40:57 -07004487
Jens Axboe78076bb2019-12-04 19:56:40 -07004488 INIT_HLIST_NODE(&req->hash_node);
Jens Axboe36703242019-07-25 10:20:18 -06004489 INIT_LIST_HEAD(&req->list);
Jens Axboed7718a92020-02-14 22:23:12 -07004490 ipt.pt._qproc = io_poll_queue_proc;
Jens Axboe36703242019-07-25 10:20:18 -06004491
Jens Axboed7718a92020-02-14 22:23:12 -07004492 mask = __io_arm_poll_handler(req, &req->poll, &ipt, poll->events,
4493 io_poll_wake);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004494
Jens Axboe8c838782019-03-12 15:48:16 -06004495 if (mask) { /* no async, we'd stolen it */
Jens Axboe8c838782019-03-12 15:48:16 -06004496 ipt.error = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004497 io_poll_complete(req, mask, 0);
Jens Axboe8c838782019-03-12 15:48:16 -06004498 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07004499 spin_unlock_irq(&ctx->completion_lock);
4500
Jens Axboe8c838782019-03-12 15:48:16 -06004501 if (mask) {
4502 io_cqring_ev_posted(ctx);
Pavel Begunkov014db002020-03-03 21:33:12 +03004503 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004504 }
Jens Axboe8c838782019-03-12 15:48:16 -06004505 return ipt.error;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004506}
4507
Jens Axboe5262f562019-09-17 12:26:57 -06004508static enum hrtimer_restart io_timeout_fn(struct hrtimer *timer)
4509{
Jens Axboead8a48a2019-11-15 08:49:11 -07004510 struct io_timeout_data *data = container_of(timer,
4511 struct io_timeout_data, timer);
4512 struct io_kiocb *req = data->req;
4513 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5262f562019-09-17 12:26:57 -06004514 unsigned long flags;
4515
Jens Axboe5262f562019-09-17 12:26:57 -06004516 atomic_inc(&ctx->cq_timeouts);
4517
4518 spin_lock_irqsave(&ctx->completion_lock, flags);
zhangyi (F)ef036812019-10-23 15:10:08 +08004519 /*
Jens Axboe11365042019-10-16 09:08:32 -06004520 * We could be racing with timeout deletion. If the list is empty,
4521 * then timeout lookup already found it and will be handling it.
zhangyi (F)ef036812019-10-23 15:10:08 +08004522 */
Jens Axboe842f9612019-10-29 12:34:10 -06004523 if (!list_empty(&req->list)) {
Jens Axboe11365042019-10-16 09:08:32 -06004524 struct io_kiocb *prev;
Jens Axboe5262f562019-09-17 12:26:57 -06004525
Jens Axboe11365042019-10-16 09:08:32 -06004526 /*
4527 * Adjust the reqs sequence before the current one because it
Brian Gianforcarod195a662019-12-13 03:09:50 -08004528 * will consume a slot in the cq_ring and the cq_tail
Jens Axboe11365042019-10-16 09:08:32 -06004529 * pointer will be increased, otherwise other timeout reqs may
4530 * return in advance without waiting for enough wait_nr.
4531 */
4532 prev = req;
4533 list_for_each_entry_continue_reverse(prev, &ctx->timeout_list, list)
4534 prev->sequence++;
Jens Axboe11365042019-10-16 09:08:32 -06004535 list_del_init(&req->list);
Jens Axboe11365042019-10-16 09:08:32 -06004536 }
Jens Axboe842f9612019-10-29 12:34:10 -06004537
Jens Axboe78e19bb2019-11-06 15:21:34 -07004538 io_cqring_fill_event(req, -ETIME);
Jens Axboe5262f562019-09-17 12:26:57 -06004539 io_commit_cqring(ctx);
4540 spin_unlock_irqrestore(&ctx->completion_lock, flags);
4541
4542 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004543 req_set_fail_links(req);
Jens Axboe5262f562019-09-17 12:26:57 -06004544 io_put_req(req);
4545 return HRTIMER_NORESTART;
4546}
4547
Jens Axboe47f46762019-11-09 17:43:02 -07004548static int io_timeout_cancel(struct io_ring_ctx *ctx, __u64 user_data)
4549{
4550 struct io_kiocb *req;
4551 int ret = -ENOENT;
4552
4553 list_for_each_entry(req, &ctx->timeout_list, list) {
4554 if (user_data == req->user_data) {
4555 list_del_init(&req->list);
4556 ret = 0;
4557 break;
4558 }
4559 }
4560
4561 if (ret == -ENOENT)
4562 return ret;
4563
Jens Axboe2d283902019-12-04 11:08:05 -07004564 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe47f46762019-11-09 17:43:02 -07004565 if (ret == -1)
4566 return -EALREADY;
4567
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004568 req_set_fail_links(req);
Jens Axboe47f46762019-11-09 17:43:02 -07004569 io_cqring_fill_event(req, -ECANCELED);
4570 io_put_req(req);
4571 return 0;
4572}
4573
Jens Axboe3529d8c2019-12-19 18:24:38 -07004574static int io_timeout_remove_prep(struct io_kiocb *req,
4575 const struct io_uring_sqe *sqe)
Jens Axboeb29472e2019-12-17 18:50:29 -07004576{
Jens Axboeb29472e2019-12-17 18:50:29 -07004577 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4578 return -EINVAL;
4579 if (sqe->flags || sqe->ioprio || sqe->buf_index || sqe->len)
4580 return -EINVAL;
4581
4582 req->timeout.addr = READ_ONCE(sqe->addr);
4583 req->timeout.flags = READ_ONCE(sqe->timeout_flags);
4584 if (req->timeout.flags)
4585 return -EINVAL;
4586
Jens Axboeb29472e2019-12-17 18:50:29 -07004587 return 0;
4588}
4589
Jens Axboe11365042019-10-16 09:08:32 -06004590/*
4591 * Remove or update an existing timeout command
4592 */
Jens Axboefc4df992019-12-10 14:38:45 -07004593static int io_timeout_remove(struct io_kiocb *req)
Jens Axboe11365042019-10-16 09:08:32 -06004594{
4595 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe47f46762019-11-09 17:43:02 -07004596 int ret;
Jens Axboe11365042019-10-16 09:08:32 -06004597
Jens Axboe11365042019-10-16 09:08:32 -06004598 spin_lock_irq(&ctx->completion_lock);
Jens Axboeb29472e2019-12-17 18:50:29 -07004599 ret = io_timeout_cancel(ctx, req->timeout.addr);
Jens Axboe11365042019-10-16 09:08:32 -06004600
Jens Axboe47f46762019-11-09 17:43:02 -07004601 io_cqring_fill_event(req, ret);
Jens Axboe11365042019-10-16 09:08:32 -06004602 io_commit_cqring(ctx);
4603 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06004604 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004605 if (ret < 0)
4606 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08004607 io_put_req(req);
Jens Axboe11365042019-10-16 09:08:32 -06004608 return 0;
Jens Axboe5262f562019-09-17 12:26:57 -06004609}
4610
Jens Axboe3529d8c2019-12-19 18:24:38 -07004611static int io_timeout_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboe2d283902019-12-04 11:08:05 -07004612 bool is_timeout_link)
Jens Axboe5262f562019-09-17 12:26:57 -06004613{
Jens Axboead8a48a2019-11-15 08:49:11 -07004614 struct io_timeout_data *data;
Jens Axboea41525a2019-10-15 16:48:15 -06004615 unsigned flags;
Jens Axboe5262f562019-09-17 12:26:57 -06004616
Jens Axboead8a48a2019-11-15 08:49:11 -07004617 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe5262f562019-09-17 12:26:57 -06004618 return -EINVAL;
Jens Axboead8a48a2019-11-15 08:49:11 -07004619 if (sqe->ioprio || sqe->buf_index || sqe->len != 1)
Jens Axboea41525a2019-10-15 16:48:15 -06004620 return -EINVAL;
Jens Axboe2d283902019-12-04 11:08:05 -07004621 if (sqe->off && is_timeout_link)
4622 return -EINVAL;
Jens Axboea41525a2019-10-15 16:48:15 -06004623 flags = READ_ONCE(sqe->timeout_flags);
4624 if (flags & ~IORING_TIMEOUT_ABS)
Jens Axboe5262f562019-09-17 12:26:57 -06004625 return -EINVAL;
Arnd Bergmannbdf20072019-10-01 09:53:29 -06004626
Jens Axboe26a61672019-12-20 09:02:01 -07004627 req->timeout.count = READ_ONCE(sqe->off);
4628
Jens Axboe3529d8c2019-12-19 18:24:38 -07004629 if (!req->io && io_alloc_async_ctx(req))
Jens Axboe26a61672019-12-20 09:02:01 -07004630 return -ENOMEM;
4631
4632 data = &req->io->timeout;
Jens Axboead8a48a2019-11-15 08:49:11 -07004633 data->req = req;
Jens Axboead8a48a2019-11-15 08:49:11 -07004634 req->flags |= REQ_F_TIMEOUT;
4635
4636 if (get_timespec64(&data->ts, u64_to_user_ptr(sqe->addr)))
Jens Axboe5262f562019-09-17 12:26:57 -06004637 return -EFAULT;
4638
Jens Axboe11365042019-10-16 09:08:32 -06004639 if (flags & IORING_TIMEOUT_ABS)
Jens Axboead8a48a2019-11-15 08:49:11 -07004640 data->mode = HRTIMER_MODE_ABS;
Jens Axboe11365042019-10-16 09:08:32 -06004641 else
Jens Axboead8a48a2019-11-15 08:49:11 -07004642 data->mode = HRTIMER_MODE_REL;
Jens Axboe11365042019-10-16 09:08:32 -06004643
Jens Axboead8a48a2019-11-15 08:49:11 -07004644 hrtimer_init(&data->timer, CLOCK_MONOTONIC, data->mode);
4645 return 0;
4646}
4647
Jens Axboefc4df992019-12-10 14:38:45 -07004648static int io_timeout(struct io_kiocb *req)
Jens Axboead8a48a2019-11-15 08:49:11 -07004649{
4650 unsigned count;
4651 struct io_ring_ctx *ctx = req->ctx;
4652 struct io_timeout_data *data;
4653 struct list_head *entry;
4654 unsigned span = 0;
Jens Axboead8a48a2019-11-15 08:49:11 -07004655
Jens Axboe2d283902019-12-04 11:08:05 -07004656 data = &req->io->timeout;
Jens Axboe93bd25b2019-11-11 23:34:31 -07004657
Jens Axboe5262f562019-09-17 12:26:57 -06004658 /*
4659 * sqe->off holds how many events that need to occur for this
Jens Axboe93bd25b2019-11-11 23:34:31 -07004660 * timeout event to be satisfied. If it isn't set, then this is
4661 * a pure timeout request, sequence isn't used.
Jens Axboe5262f562019-09-17 12:26:57 -06004662 */
Jens Axboe26a61672019-12-20 09:02:01 -07004663 count = req->timeout.count;
Jens Axboe93bd25b2019-11-11 23:34:31 -07004664 if (!count) {
4665 req->flags |= REQ_F_TIMEOUT_NOSEQ;
4666 spin_lock_irq(&ctx->completion_lock);
4667 entry = ctx->timeout_list.prev;
4668 goto add;
4669 }
Jens Axboe5262f562019-09-17 12:26:57 -06004670
4671 req->sequence = ctx->cached_sq_head + count - 1;
Jens Axboe2d283902019-12-04 11:08:05 -07004672 data->seq_offset = count;
Jens Axboe5262f562019-09-17 12:26:57 -06004673
4674 /*
4675 * Insertion sort, ensuring the first entry in the list is always
4676 * the one we need first.
4677 */
Jens Axboe5262f562019-09-17 12:26:57 -06004678 spin_lock_irq(&ctx->completion_lock);
4679 list_for_each_prev(entry, &ctx->timeout_list) {
4680 struct io_kiocb *nxt = list_entry(entry, struct io_kiocb, list);
yangerkun5da0fb12019-10-15 21:59:29 +08004681 unsigned nxt_sq_head;
4682 long long tmp, tmp_nxt;
Jens Axboe2d283902019-12-04 11:08:05 -07004683 u32 nxt_offset = nxt->io->timeout.seq_offset;
Jens Axboe5262f562019-09-17 12:26:57 -06004684
Jens Axboe93bd25b2019-11-11 23:34:31 -07004685 if (nxt->flags & REQ_F_TIMEOUT_NOSEQ)
4686 continue;
4687
yangerkun5da0fb12019-10-15 21:59:29 +08004688 /*
4689 * Since cached_sq_head + count - 1 can overflow, use type long
4690 * long to store it.
4691 */
4692 tmp = (long long)ctx->cached_sq_head + count - 1;
Pavel Begunkovcc42e0a2019-11-25 23:14:38 +03004693 nxt_sq_head = nxt->sequence - nxt_offset + 1;
4694 tmp_nxt = (long long)nxt_sq_head + nxt_offset - 1;
yangerkun5da0fb12019-10-15 21:59:29 +08004695
4696 /*
4697 * cached_sq_head may overflow, and it will never overflow twice
4698 * once there is some timeout req still be valid.
4699 */
4700 if (ctx->cached_sq_head < nxt_sq_head)
yangerkun8b07a652019-10-17 12:12:35 +08004701 tmp += UINT_MAX;
yangerkun5da0fb12019-10-15 21:59:29 +08004702
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004703 if (tmp > tmp_nxt)
Jens Axboe5262f562019-09-17 12:26:57 -06004704 break;
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004705
4706 /*
4707 * Sequence of reqs after the insert one and itself should
4708 * be adjusted because each timeout req consumes a slot.
4709 */
4710 span++;
4711 nxt->sequence++;
Jens Axboe5262f562019-09-17 12:26:57 -06004712 }
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004713 req->sequence -= span;
Jens Axboe93bd25b2019-11-11 23:34:31 -07004714add:
Jens Axboe5262f562019-09-17 12:26:57 -06004715 list_add(&req->list, entry);
Jens Axboead8a48a2019-11-15 08:49:11 -07004716 data->timer.function = io_timeout_fn;
4717 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts), data->mode);
Jens Axboe842f9612019-10-29 12:34:10 -06004718 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06004719 return 0;
4720}
4721
Jens Axboe62755e32019-10-28 21:49:21 -06004722static bool io_cancel_cb(struct io_wq_work *work, void *data)
Jens Axboede0617e2019-04-06 21:51:27 -06004723{
Jens Axboe62755e32019-10-28 21:49:21 -06004724 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboede0617e2019-04-06 21:51:27 -06004725
Jens Axboe62755e32019-10-28 21:49:21 -06004726 return req->user_data == (unsigned long) data;
4727}
4728
Jens Axboee977d6d2019-11-05 12:39:45 -07004729static int io_async_cancel_one(struct io_ring_ctx *ctx, void *sqe_addr)
Jens Axboe62755e32019-10-28 21:49:21 -06004730{
Jens Axboe62755e32019-10-28 21:49:21 -06004731 enum io_wq_cancel cancel_ret;
Jens Axboe62755e32019-10-28 21:49:21 -06004732 int ret = 0;
4733
Jens Axboe62755e32019-10-28 21:49:21 -06004734 cancel_ret = io_wq_cancel_cb(ctx->io_wq, io_cancel_cb, sqe_addr);
4735 switch (cancel_ret) {
4736 case IO_WQ_CANCEL_OK:
4737 ret = 0;
4738 break;
4739 case IO_WQ_CANCEL_RUNNING:
4740 ret = -EALREADY;
4741 break;
4742 case IO_WQ_CANCEL_NOTFOUND:
4743 ret = -ENOENT;
4744 break;
4745 }
4746
Jens Axboee977d6d2019-11-05 12:39:45 -07004747 return ret;
4748}
4749
Jens Axboe47f46762019-11-09 17:43:02 -07004750static void io_async_find_and_cancel(struct io_ring_ctx *ctx,
4751 struct io_kiocb *req, __u64 sqe_addr,
Pavel Begunkov014db002020-03-03 21:33:12 +03004752 int success_ret)
Jens Axboe47f46762019-11-09 17:43:02 -07004753{
4754 unsigned long flags;
4755 int ret;
4756
4757 ret = io_async_cancel_one(ctx, (void *) (unsigned long) sqe_addr);
4758 if (ret != -ENOENT) {
4759 spin_lock_irqsave(&ctx->completion_lock, flags);
4760 goto done;
4761 }
4762
4763 spin_lock_irqsave(&ctx->completion_lock, flags);
4764 ret = io_timeout_cancel(ctx, sqe_addr);
4765 if (ret != -ENOENT)
4766 goto done;
4767 ret = io_poll_cancel(ctx, sqe_addr);
4768done:
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004769 if (!ret)
4770 ret = success_ret;
Jens Axboe47f46762019-11-09 17:43:02 -07004771 io_cqring_fill_event(req, ret);
4772 io_commit_cqring(ctx);
4773 spin_unlock_irqrestore(&ctx->completion_lock, flags);
4774 io_cqring_ev_posted(ctx);
4775
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004776 if (ret < 0)
4777 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03004778 io_put_req(req);
Jens Axboe47f46762019-11-09 17:43:02 -07004779}
4780
Jens Axboe3529d8c2019-12-19 18:24:38 -07004781static int io_async_cancel_prep(struct io_kiocb *req,
4782 const struct io_uring_sqe *sqe)
Jens Axboee977d6d2019-11-05 12:39:45 -07004783{
Jens Axboefbf23842019-12-17 18:45:56 -07004784 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboee977d6d2019-11-05 12:39:45 -07004785 return -EINVAL;
4786 if (sqe->flags || sqe->ioprio || sqe->off || sqe->len ||
4787 sqe->cancel_flags)
4788 return -EINVAL;
4789
Jens Axboefbf23842019-12-17 18:45:56 -07004790 req->cancel.addr = READ_ONCE(sqe->addr);
4791 return 0;
4792}
4793
Pavel Begunkov014db002020-03-03 21:33:12 +03004794static int io_async_cancel(struct io_kiocb *req)
Jens Axboefbf23842019-12-17 18:45:56 -07004795{
4796 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefbf23842019-12-17 18:45:56 -07004797
Pavel Begunkov014db002020-03-03 21:33:12 +03004798 io_async_find_and_cancel(ctx, req, req->cancel.addr, 0);
Jens Axboe62755e32019-10-28 21:49:21 -06004799 return 0;
4800}
4801
Jens Axboe05f3fb32019-12-09 11:22:50 -07004802static int io_files_update_prep(struct io_kiocb *req,
4803 const struct io_uring_sqe *sqe)
4804{
4805 if (sqe->flags || sqe->ioprio || sqe->rw_flags)
4806 return -EINVAL;
4807
4808 req->files_update.offset = READ_ONCE(sqe->off);
4809 req->files_update.nr_args = READ_ONCE(sqe->len);
4810 if (!req->files_update.nr_args)
4811 return -EINVAL;
4812 req->files_update.arg = READ_ONCE(sqe->addr);
4813 return 0;
4814}
4815
4816static int io_files_update(struct io_kiocb *req, bool force_nonblock)
4817{
4818 struct io_ring_ctx *ctx = req->ctx;
4819 struct io_uring_files_update up;
4820 int ret;
4821
Jens Axboef86cd202020-01-29 13:46:44 -07004822 if (force_nonblock)
Jens Axboe05f3fb32019-12-09 11:22:50 -07004823 return -EAGAIN;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004824
4825 up.offset = req->files_update.offset;
4826 up.fds = req->files_update.arg;
4827
4828 mutex_lock(&ctx->uring_lock);
4829 ret = __io_sqe_files_update(ctx, &up, req->files_update.nr_args);
4830 mutex_unlock(&ctx->uring_lock);
4831
4832 if (ret < 0)
4833 req_set_fail_links(req);
4834 io_cqring_add_event(req, ret);
4835 io_put_req(req);
4836 return 0;
4837}
4838
Jens Axboe3529d8c2019-12-19 18:24:38 -07004839static int io_req_defer_prep(struct io_kiocb *req,
4840 const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07004841{
Jens Axboee7815732019-12-17 19:45:06 -07004842 ssize_t ret = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07004843
Pavel Begunkovf1d96a82020-03-13 22:29:14 +03004844 if (!sqe)
4845 return 0;
4846
Jens Axboef86cd202020-01-29 13:46:44 -07004847 if (io_op_defs[req->opcode].file_table) {
4848 ret = io_grab_files(req);
4849 if (unlikely(ret))
4850 return ret;
4851 }
4852
Jens Axboecccf0ee2020-01-27 16:34:48 -07004853 io_req_work_grab_env(req, &io_op_defs[req->opcode]);
4854
Jens Axboed625c6e2019-12-17 19:53:05 -07004855 switch (req->opcode) {
Jens Axboee7815732019-12-17 19:45:06 -07004856 case IORING_OP_NOP:
4857 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004858 case IORING_OP_READV:
4859 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004860 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004861 ret = io_read_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07004862 break;
4863 case IORING_OP_WRITEV:
4864 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004865 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004866 ret = io_write_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07004867 break;
Jens Axboe0969e782019-12-17 18:40:57 -07004868 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004869 ret = io_poll_add_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07004870 break;
4871 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004872 ret = io_poll_remove_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07004873 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004874 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004875 ret = io_prep_fsync(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004876 break;
4877 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004878 ret = io_prep_sfr(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004879 break;
Jens Axboe03b12302019-12-02 18:50:25 -07004880 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004881 case IORING_OP_SEND:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004882 ret = io_sendmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07004883 break;
4884 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004885 case IORING_OP_RECV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004886 ret = io_recvmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07004887 break;
Jens Axboef499a022019-12-02 16:28:46 -07004888 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004889 ret = io_connect_prep(req, sqe);
Jens Axboef499a022019-12-02 16:28:46 -07004890 break;
Jens Axboe2d283902019-12-04 11:08:05 -07004891 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004892 ret = io_timeout_prep(req, sqe, false);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004893 break;
Jens Axboeb29472e2019-12-17 18:50:29 -07004894 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004895 ret = io_timeout_remove_prep(req, sqe);
Jens Axboeb29472e2019-12-17 18:50:29 -07004896 break;
Jens Axboefbf23842019-12-17 18:45:56 -07004897 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004898 ret = io_async_cancel_prep(req, sqe);
Jens Axboefbf23842019-12-17 18:45:56 -07004899 break;
Jens Axboe2d283902019-12-04 11:08:05 -07004900 case IORING_OP_LINK_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004901 ret = io_timeout_prep(req, sqe, true);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004902 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004903 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004904 ret = io_accept_prep(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004905 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07004906 case IORING_OP_FALLOCATE:
4907 ret = io_fallocate_prep(req, sqe);
4908 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004909 case IORING_OP_OPENAT:
4910 ret = io_openat_prep(req, sqe);
4911 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07004912 case IORING_OP_CLOSE:
4913 ret = io_close_prep(req, sqe);
4914 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004915 case IORING_OP_FILES_UPDATE:
4916 ret = io_files_update_prep(req, sqe);
4917 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004918 case IORING_OP_STATX:
4919 ret = io_statx_prep(req, sqe);
4920 break;
Jens Axboe4840e412019-12-25 22:03:45 -07004921 case IORING_OP_FADVISE:
4922 ret = io_fadvise_prep(req, sqe);
4923 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07004924 case IORING_OP_MADVISE:
4925 ret = io_madvise_prep(req, sqe);
4926 break;
Jens Axboecebdb982020-01-08 17:59:24 -07004927 case IORING_OP_OPENAT2:
4928 ret = io_openat2_prep(req, sqe);
4929 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07004930 case IORING_OP_EPOLL_CTL:
4931 ret = io_epoll_ctl_prep(req, sqe);
4932 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03004933 case IORING_OP_SPLICE:
4934 ret = io_splice_prep(req, sqe);
4935 break;
Jens Axboeddf0322d2020-02-23 16:41:33 -07004936 case IORING_OP_PROVIDE_BUFFERS:
4937 ret = io_provide_buffers_prep(req, sqe);
4938 break;
Jens Axboe067524e2020-03-02 16:32:28 -07004939 case IORING_OP_REMOVE_BUFFERS:
4940 ret = io_remove_buffers_prep(req, sqe);
4941 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004942 default:
Jens Axboee7815732019-12-17 19:45:06 -07004943 printk_once(KERN_WARNING "io_uring: unhandled opcode %d\n",
4944 req->opcode);
4945 ret = -EINVAL;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004946 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004947 }
4948
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004949 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07004950}
4951
Jens Axboe3529d8c2019-12-19 18:24:38 -07004952static int io_req_defer(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboede0617e2019-04-06 21:51:27 -06004953{
Jackie Liua197f662019-11-08 08:09:12 -07004954 struct io_ring_ctx *ctx = req->ctx;
Jens Axboef67676d2019-12-02 11:03:47 -07004955 int ret;
Jens Axboede0617e2019-04-06 21:51:27 -06004956
Bob Liu9d858b22019-11-13 18:06:25 +08004957 /* Still need defer if there is pending req in defer list. */
4958 if (!req_need_defer(req) && list_empty(&ctx->defer_list))
Jens Axboede0617e2019-04-06 21:51:27 -06004959 return 0;
4960
Jens Axboe3529d8c2019-12-19 18:24:38 -07004961 if (!req->io && io_alloc_async_ctx(req))
Jens Axboede0617e2019-04-06 21:51:27 -06004962 return -EAGAIN;
4963
Jens Axboe3529d8c2019-12-19 18:24:38 -07004964 ret = io_req_defer_prep(req, sqe);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004965 if (ret < 0)
Jens Axboe2d283902019-12-04 11:08:05 -07004966 return ret;
Jens Axboe2d283902019-12-04 11:08:05 -07004967
Jens Axboede0617e2019-04-06 21:51:27 -06004968 spin_lock_irq(&ctx->completion_lock);
Bob Liu9d858b22019-11-13 18:06:25 +08004969 if (!req_need_defer(req) && list_empty(&ctx->defer_list)) {
Jens Axboede0617e2019-04-06 21:51:27 -06004970 spin_unlock_irq(&ctx->completion_lock);
Jens Axboede0617e2019-04-06 21:51:27 -06004971 return 0;
4972 }
4973
Jens Axboe915967f2019-11-21 09:01:20 -07004974 trace_io_uring_defer(ctx, req, req->user_data);
Jens Axboede0617e2019-04-06 21:51:27 -06004975 list_add_tail(&req->list, &ctx->defer_list);
4976 spin_unlock_irq(&ctx->completion_lock);
4977 return -EIOCBQUEUED;
4978}
4979
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004980static void io_cleanup_req(struct io_kiocb *req)
4981{
4982 struct io_async_ctx *io = req->io;
4983
4984 switch (req->opcode) {
4985 case IORING_OP_READV:
4986 case IORING_OP_READ_FIXED:
4987 case IORING_OP_READ:
Jens Axboebcda7ba2020-02-23 16:42:51 -07004988 if (req->flags & REQ_F_BUFFER_SELECTED)
4989 kfree((void *)(unsigned long)req->rw.addr);
4990 /* fallthrough */
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004991 case IORING_OP_WRITEV:
4992 case IORING_OP_WRITE_FIXED:
4993 case IORING_OP_WRITE:
4994 if (io->rw.iov != io->rw.fast_iov)
4995 kfree(io->rw.iov);
4996 break;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004997 case IORING_OP_RECVMSG:
Jens Axboe52de1fe2020-02-27 10:15:42 -07004998 if (req->flags & REQ_F_BUFFER_SELECTED)
4999 kfree(req->sr_msg.kbuf);
5000 /* fallthrough */
5001 case IORING_OP_SENDMSG:
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005002 if (io->msg.iov != io->msg.fast_iov)
5003 kfree(io->msg.iov);
5004 break;
Jens Axboebcda7ba2020-02-23 16:42:51 -07005005 case IORING_OP_RECV:
5006 if (req->flags & REQ_F_BUFFER_SELECTED)
5007 kfree(req->sr_msg.kbuf);
5008 break;
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03005009 case IORING_OP_OPENAT:
5010 case IORING_OP_OPENAT2:
5011 case IORING_OP_STATX:
5012 putname(req->open.filename);
5013 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005014 case IORING_OP_SPLICE:
5015 io_put_file(req, req->splice.file_in,
5016 (req->splice.flags & SPLICE_F_FD_IN_FIXED));
5017 break;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005018 }
5019
5020 req->flags &= ~REQ_F_NEED_CLEANUP;
5021}
5022
Jens Axboe3529d8c2019-12-19 18:24:38 -07005023static int io_issue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Pavel Begunkov014db002020-03-03 21:33:12 +03005024 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005025{
Jackie Liua197f662019-11-08 08:09:12 -07005026 struct io_ring_ctx *ctx = req->ctx;
Jens Axboed625c6e2019-12-17 19:53:05 -07005027 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005028
Jens Axboed625c6e2019-12-17 19:53:05 -07005029 switch (req->opcode) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07005030 case IORING_OP_NOP:
Jens Axboe78e19bb2019-11-06 15:21:34 -07005031 ret = io_nop(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005032 break;
5033 case IORING_OP_READV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005034 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07005035 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005036 if (sqe) {
5037 ret = io_read_prep(req, sqe, force_nonblock);
5038 if (ret < 0)
5039 break;
5040 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005041 ret = io_read(req, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005042 break;
5043 case IORING_OP_WRITEV:
Jens Axboeedafcce2019-01-09 09:16:05 -07005044 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07005045 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005046 if (sqe) {
5047 ret = io_write_prep(req, sqe, force_nonblock);
5048 if (ret < 0)
5049 break;
5050 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005051 ret = io_write(req, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005052 break;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07005053 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005054 if (sqe) {
5055 ret = io_prep_fsync(req, sqe);
5056 if (ret < 0)
5057 break;
5058 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005059 ret = io_fsync(req, force_nonblock);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07005060 break;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005061 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005062 if (sqe) {
5063 ret = io_poll_add_prep(req, sqe);
5064 if (ret)
5065 break;
5066 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005067 ret = io_poll_add(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005068 break;
5069 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005070 if (sqe) {
5071 ret = io_poll_remove_prep(req, sqe);
5072 if (ret < 0)
5073 break;
5074 }
Jens Axboefc4df992019-12-10 14:38:45 -07005075 ret = io_poll_remove(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005076 break;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06005077 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005078 if (sqe) {
5079 ret = io_prep_sfr(req, sqe);
5080 if (ret < 0)
5081 break;
5082 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005083 ret = io_sync_file_range(req, force_nonblock);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06005084 break;
Jens Axboe0fa03c62019-04-19 13:34:07 -06005085 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005086 case IORING_OP_SEND:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005087 if (sqe) {
5088 ret = io_sendmsg_prep(req, sqe);
5089 if (ret < 0)
5090 break;
5091 }
Jens Axboefddafac2020-01-04 20:19:44 -07005092 if (req->opcode == IORING_OP_SENDMSG)
Pavel Begunkov014db002020-03-03 21:33:12 +03005093 ret = io_sendmsg(req, force_nonblock);
Jens Axboefddafac2020-01-04 20:19:44 -07005094 else
Pavel Begunkov014db002020-03-03 21:33:12 +03005095 ret = io_send(req, force_nonblock);
Jens Axboe0fa03c62019-04-19 13:34:07 -06005096 break;
Jens Axboeaa1fa282019-04-19 13:38:09 -06005097 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005098 case IORING_OP_RECV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005099 if (sqe) {
5100 ret = io_recvmsg_prep(req, sqe);
5101 if (ret)
5102 break;
5103 }
Jens Axboefddafac2020-01-04 20:19:44 -07005104 if (req->opcode == IORING_OP_RECVMSG)
Pavel Begunkov014db002020-03-03 21:33:12 +03005105 ret = io_recvmsg(req, force_nonblock);
Jens Axboefddafac2020-01-04 20:19:44 -07005106 else
Pavel Begunkov014db002020-03-03 21:33:12 +03005107 ret = io_recv(req, force_nonblock);
Jens Axboeaa1fa282019-04-19 13:38:09 -06005108 break;
Jens Axboe5262f562019-09-17 12:26:57 -06005109 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005110 if (sqe) {
5111 ret = io_timeout_prep(req, sqe, false);
5112 if (ret)
5113 break;
5114 }
Jens Axboefc4df992019-12-10 14:38:45 -07005115 ret = io_timeout(req);
Jens Axboe5262f562019-09-17 12:26:57 -06005116 break;
Jens Axboe11365042019-10-16 09:08:32 -06005117 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005118 if (sqe) {
5119 ret = io_timeout_remove_prep(req, sqe);
5120 if (ret)
5121 break;
5122 }
Jens Axboefc4df992019-12-10 14:38:45 -07005123 ret = io_timeout_remove(req);
Jens Axboe11365042019-10-16 09:08:32 -06005124 break;
Jens Axboe17f2fe32019-10-17 14:42:58 -06005125 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005126 if (sqe) {
5127 ret = io_accept_prep(req, sqe);
5128 if (ret)
5129 break;
5130 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005131 ret = io_accept(req, force_nonblock);
Jens Axboe17f2fe32019-10-17 14:42:58 -06005132 break;
Jens Axboef8e85cf2019-11-23 14:24:24 -07005133 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005134 if (sqe) {
5135 ret = io_connect_prep(req, sqe);
5136 if (ret)
5137 break;
5138 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005139 ret = io_connect(req, force_nonblock);
Jens Axboef8e85cf2019-11-23 14:24:24 -07005140 break;
Jens Axboe62755e32019-10-28 21:49:21 -06005141 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005142 if (sqe) {
5143 ret = io_async_cancel_prep(req, sqe);
5144 if (ret)
5145 break;
5146 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005147 ret = io_async_cancel(req);
Jens Axboe62755e32019-10-28 21:49:21 -06005148 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07005149 case IORING_OP_FALLOCATE:
5150 if (sqe) {
5151 ret = io_fallocate_prep(req, sqe);
5152 if (ret)
5153 break;
5154 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005155 ret = io_fallocate(req, force_nonblock);
Jens Axboed63d1b52019-12-10 10:38:56 -07005156 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07005157 case IORING_OP_OPENAT:
5158 if (sqe) {
5159 ret = io_openat_prep(req, sqe);
5160 if (ret)
5161 break;
5162 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005163 ret = io_openat(req, force_nonblock);
Jens Axboe15b71ab2019-12-11 11:20:36 -07005164 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07005165 case IORING_OP_CLOSE:
5166 if (sqe) {
5167 ret = io_close_prep(req, sqe);
5168 if (ret)
5169 break;
5170 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005171 ret = io_close(req, force_nonblock);
Jens Axboeb5dba592019-12-11 14:02:38 -07005172 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005173 case IORING_OP_FILES_UPDATE:
5174 if (sqe) {
5175 ret = io_files_update_prep(req, sqe);
5176 if (ret)
5177 break;
5178 }
5179 ret = io_files_update(req, force_nonblock);
5180 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07005181 case IORING_OP_STATX:
5182 if (sqe) {
5183 ret = io_statx_prep(req, sqe);
5184 if (ret)
5185 break;
5186 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005187 ret = io_statx(req, force_nonblock);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07005188 break;
Jens Axboe4840e412019-12-25 22:03:45 -07005189 case IORING_OP_FADVISE:
5190 if (sqe) {
5191 ret = io_fadvise_prep(req, sqe);
5192 if (ret)
5193 break;
5194 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005195 ret = io_fadvise(req, force_nonblock);
Jens Axboe4840e412019-12-25 22:03:45 -07005196 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07005197 case IORING_OP_MADVISE:
5198 if (sqe) {
5199 ret = io_madvise_prep(req, sqe);
5200 if (ret)
5201 break;
5202 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005203 ret = io_madvise(req, force_nonblock);
Jens Axboec1ca7572019-12-25 22:18:28 -07005204 break;
Jens Axboecebdb982020-01-08 17:59:24 -07005205 case IORING_OP_OPENAT2:
5206 if (sqe) {
5207 ret = io_openat2_prep(req, sqe);
5208 if (ret)
5209 break;
5210 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005211 ret = io_openat2(req, force_nonblock);
Jens Axboecebdb982020-01-08 17:59:24 -07005212 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07005213 case IORING_OP_EPOLL_CTL:
5214 if (sqe) {
5215 ret = io_epoll_ctl_prep(req, sqe);
5216 if (ret)
5217 break;
5218 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005219 ret = io_epoll_ctl(req, force_nonblock);
Jens Axboe3e4827b2020-01-08 15:18:09 -07005220 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005221 case IORING_OP_SPLICE:
5222 if (sqe) {
5223 ret = io_splice_prep(req, sqe);
5224 if (ret < 0)
5225 break;
5226 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005227 ret = io_splice(req, force_nonblock);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005228 break;
Jens Axboeddf0322d2020-02-23 16:41:33 -07005229 case IORING_OP_PROVIDE_BUFFERS:
5230 if (sqe) {
5231 ret = io_provide_buffers_prep(req, sqe);
5232 if (ret)
5233 break;
5234 }
5235 ret = io_provide_buffers(req, force_nonblock);
5236 break;
Jens Axboe067524e2020-03-02 16:32:28 -07005237 case IORING_OP_REMOVE_BUFFERS:
5238 if (sqe) {
5239 ret = io_remove_buffers_prep(req, sqe);
5240 if (ret)
5241 break;
5242 }
5243 ret = io_remove_buffers(req, force_nonblock);
Jens Axboe31b51512019-01-18 22:56:34 -07005244 break;
5245 default:
5246 ret = -EINVAL;
Jens Axboeedafcce2019-01-09 09:16:05 -07005247 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005248 }
5249
Jens Axboe31b51512019-01-18 22:56:34 -07005250 if (ret)
5251 return ret;
5252
5253 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboe11ba8202020-01-15 21:51:17 -07005254 const bool in_async = io_wq_current_is_worker();
5255
Jens Axboe9e645e112019-05-10 16:07:28 -06005256 if (req->result == -EAGAIN)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005257 return -EAGAIN;
5258
Jens Axboe11ba8202020-01-15 21:51:17 -07005259 /* workqueue context doesn't hold uring_lock, grab it now */
5260 if (in_async)
5261 mutex_lock(&ctx->uring_lock);
5262
Jens Axboe2b188cc2019-01-07 10:46:33 -07005263 io_iopoll_req_issued(req);
Jens Axboe11ba8202020-01-15 21:51:17 -07005264
5265 if (in_async)
5266 mutex_unlock(&ctx->uring_lock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005267 }
5268
5269 return 0;
5270}
5271
Jens Axboe561fb042019-10-24 07:25:42 -06005272static void io_wq_submit_work(struct io_wq_work **workptr)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005273{
Jens Axboe561fb042019-10-24 07:25:42 -06005274 struct io_wq_work *work = *workptr;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005275 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboe561fb042019-10-24 07:25:42 -06005276 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005277
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07005278 /* if NO_CANCEL is set, we must still run the work */
5279 if ((work->flags & (IO_WQ_WORK_CANCEL|IO_WQ_WORK_NO_CANCEL)) ==
5280 IO_WQ_WORK_CANCEL) {
Jens Axboe561fb042019-10-24 07:25:42 -06005281 ret = -ECANCELED;
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07005282 }
Jens Axboe31b51512019-01-18 22:56:34 -07005283
Jens Axboe561fb042019-10-24 07:25:42 -06005284 if (!ret) {
Jens Axboe561fb042019-10-24 07:25:42 -06005285 do {
Pavel Begunkov014db002020-03-03 21:33:12 +03005286 ret = io_issue_sqe(req, NULL, false);
Jens Axboe561fb042019-10-24 07:25:42 -06005287 /*
5288 * We can get EAGAIN for polled IO even though we're
5289 * forcing a sync submission from here, since we can't
5290 * wait for request slots on the block side.
5291 */
5292 if (ret != -EAGAIN)
5293 break;
5294 cond_resched();
5295 } while (1);
5296 }
Jens Axboe31b51512019-01-18 22:56:34 -07005297
Jens Axboe561fb042019-10-24 07:25:42 -06005298 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005299 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07005300 io_cqring_add_event(req, ret);
Jens Axboe817869d2019-04-30 14:44:05 -06005301 io_put_req(req);
Jens Axboeedafcce2019-01-09 09:16:05 -07005302 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07005303
Pavel Begunkove9fd9392020-03-04 16:14:12 +03005304 io_steal_work(req, workptr);
Jens Axboe31b51512019-01-18 22:56:34 -07005305}
Jens Axboe2b188cc2019-01-07 10:46:33 -07005306
Jens Axboe15b71ab2019-12-11 11:20:36 -07005307static int io_req_needs_file(struct io_kiocb *req, int fd)
Jens Axboe9e3aa612019-12-11 15:55:43 -07005308{
Jens Axboed3656342019-12-18 09:50:26 -07005309 if (!io_op_defs[req->opcode].needs_file)
Jens Axboe9e3aa612019-12-11 15:55:43 -07005310 return 0;
Jens Axboe0b5faf62020-02-06 21:42:51 -07005311 if ((fd == -1 || fd == AT_FDCWD) && io_op_defs[req->opcode].fd_non_neg)
Jens Axboed3656342019-12-18 09:50:26 -07005312 return 0;
5313 return 1;
Jens Axboe09bb8392019-03-13 12:39:28 -06005314}
5315
Jens Axboe65e19f52019-10-26 07:20:21 -06005316static inline struct file *io_file_from_index(struct io_ring_ctx *ctx,
5317 int index)
Jens Axboe09bb8392019-03-13 12:39:28 -06005318{
Jens Axboe65e19f52019-10-26 07:20:21 -06005319 struct fixed_file_table *table;
5320
Jens Axboe05f3fb32019-12-09 11:22:50 -07005321 table = &ctx->file_data->table[index >> IORING_FILE_TABLE_SHIFT];
5322 return table->files[index & IORING_FILE_TABLE_MASK];;
Jens Axboe65e19f52019-10-26 07:20:21 -06005323}
5324
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005325static int io_file_get(struct io_submit_state *state, struct io_kiocb *req,
5326 int fd, struct file **out_file, bool fixed)
5327{
5328 struct io_ring_ctx *ctx = req->ctx;
5329 struct file *file;
5330
5331 if (fixed) {
5332 if (unlikely(!ctx->file_data ||
5333 (unsigned) fd >= ctx->nr_user_files))
5334 return -EBADF;
5335 fd = array_index_nospec(fd, ctx->nr_user_files);
5336 file = io_file_from_index(ctx, fd);
5337 if (!file)
5338 return -EBADF;
Xiaoguang Wang05589552020-03-31 14:05:18 +08005339 req->fixed_file_refs = ctx->file_data->cur_refs;
5340 percpu_ref_get(req->fixed_file_refs);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005341 } else {
5342 trace_io_uring_file_get(ctx, fd);
5343 file = __io_file_get(state, fd);
5344 if (unlikely(!file))
5345 return -EBADF;
5346 }
5347
5348 *out_file = file;
5349 return 0;
5350}
5351
Jens Axboe3529d8c2019-12-19 18:24:38 -07005352static int io_req_set_file(struct io_submit_state *state, struct io_kiocb *req,
5353 const struct io_uring_sqe *sqe)
Jens Axboe09bb8392019-03-13 12:39:28 -06005354{
5355 unsigned flags;
Jens Axboed3656342019-12-18 09:50:26 -07005356 int fd;
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005357 bool fixed;
Jens Axboe09bb8392019-03-13 12:39:28 -06005358
Jens Axboe3529d8c2019-12-19 18:24:38 -07005359 flags = READ_ONCE(sqe->flags);
5360 fd = READ_ONCE(sqe->fd);
Jens Axboe09bb8392019-03-13 12:39:28 -06005361
Jens Axboed3656342019-12-18 09:50:26 -07005362 if (!io_req_needs_file(req, fd))
5363 return 0;
Jens Axboe09bb8392019-03-13 12:39:28 -06005364
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005365 fixed = (flags & IOSQE_FIXED_FILE);
5366 if (unlikely(!fixed && req->needs_fixed_file))
5367 return -EBADF;
Jens Axboe09bb8392019-03-13 12:39:28 -06005368
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005369 return io_file_get(state, req, fd, &req->file, fixed);
Jens Axboe09bb8392019-03-13 12:39:28 -06005370}
5371
Jackie Liua197f662019-11-08 08:09:12 -07005372static int io_grab_files(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005373{
Jens Axboefcb323c2019-10-24 12:39:47 -06005374 int ret = -EBADF;
Jackie Liua197f662019-11-08 08:09:12 -07005375 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06005376
Jens Axboef86cd202020-01-29 13:46:44 -07005377 if (req->work.files)
5378 return 0;
Pavel Begunkovb14cca02020-01-17 04:45:59 +03005379 if (!ctx->ring_file)
Jens Axboeb5dba592019-12-11 14:02:38 -07005380 return -EBADF;
5381
Jens Axboefcb323c2019-10-24 12:39:47 -06005382 rcu_read_lock();
5383 spin_lock_irq(&ctx->inflight_lock);
5384 /*
5385 * We use the f_ops->flush() handler to ensure that we can flush
5386 * out work accessing these files if the fd is closed. Check if
5387 * the fd has changed since we started down this path, and disallow
5388 * this operation if it has.
5389 */
Pavel Begunkovb14cca02020-01-17 04:45:59 +03005390 if (fcheck(ctx->ring_fd) == ctx->ring_file) {
Jens Axboefcb323c2019-10-24 12:39:47 -06005391 list_add(&req->inflight_entry, &ctx->inflight_list);
5392 req->flags |= REQ_F_INFLIGHT;
5393 req->work.files = current->files;
5394 ret = 0;
5395 }
5396 spin_unlock_irq(&ctx->inflight_lock);
5397 rcu_read_unlock();
5398
5399 return ret;
5400}
5401
Jens Axboe2665abf2019-11-05 12:40:47 -07005402static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer)
5403{
Jens Axboead8a48a2019-11-15 08:49:11 -07005404 struct io_timeout_data *data = container_of(timer,
5405 struct io_timeout_data, timer);
5406 struct io_kiocb *req = data->req;
Jens Axboe2665abf2019-11-05 12:40:47 -07005407 struct io_ring_ctx *ctx = req->ctx;
5408 struct io_kiocb *prev = NULL;
5409 unsigned long flags;
Jens Axboe2665abf2019-11-05 12:40:47 -07005410
5411 spin_lock_irqsave(&ctx->completion_lock, flags);
5412
5413 /*
5414 * We don't expect the list to be empty, that will only happen if we
5415 * race with the completion of the linked work.
5416 */
Pavel Begunkov44932332019-12-05 16:16:35 +03005417 if (!list_empty(&req->link_list)) {
5418 prev = list_entry(req->link_list.prev, struct io_kiocb,
5419 link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07005420 if (refcount_inc_not_zero(&prev->refs)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03005421 list_del_init(&req->link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07005422 prev->flags &= ~REQ_F_LINK_TIMEOUT;
5423 } else
Jens Axboe76a46e02019-11-10 23:34:16 -07005424 prev = NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07005425 }
5426
5427 spin_unlock_irqrestore(&ctx->completion_lock, flags);
5428
5429 if (prev) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005430 req_set_fail_links(prev);
Pavel Begunkov014db002020-03-03 21:33:12 +03005431 io_async_find_and_cancel(ctx, req, prev->user_data, -ETIME);
Jens Axboe76a46e02019-11-10 23:34:16 -07005432 io_put_req(prev);
Jens Axboe47f46762019-11-09 17:43:02 -07005433 } else {
5434 io_cqring_add_event(req, -ETIME);
5435 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07005436 }
Jens Axboe2665abf2019-11-05 12:40:47 -07005437 return HRTIMER_NORESTART;
5438}
5439
Jens Axboead8a48a2019-11-15 08:49:11 -07005440static void io_queue_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07005441{
Jens Axboe76a46e02019-11-10 23:34:16 -07005442 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07005443
Jens Axboe76a46e02019-11-10 23:34:16 -07005444 /*
5445 * If the list is now empty, then our linked request finished before
5446 * we got a chance to setup the timer
5447 */
5448 spin_lock_irq(&ctx->completion_lock);
Pavel Begunkov44932332019-12-05 16:16:35 +03005449 if (!list_empty(&req->link_list)) {
Jens Axboe2d283902019-12-04 11:08:05 -07005450 struct io_timeout_data *data = &req->io->timeout;
Jens Axboe94ae5e72019-11-14 19:39:52 -07005451
Jens Axboead8a48a2019-11-15 08:49:11 -07005452 data->timer.function = io_link_timeout_fn;
5453 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts),
5454 data->mode);
Jens Axboe2665abf2019-11-05 12:40:47 -07005455 }
Jens Axboe76a46e02019-11-10 23:34:16 -07005456 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe2665abf2019-11-05 12:40:47 -07005457
Jens Axboe2665abf2019-11-05 12:40:47 -07005458 /* drop submission reference */
Jens Axboe76a46e02019-11-10 23:34:16 -07005459 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07005460}
5461
Jens Axboead8a48a2019-11-15 08:49:11 -07005462static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07005463{
5464 struct io_kiocb *nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005465
Jens Axboe2665abf2019-11-05 12:40:47 -07005466 if (!(req->flags & REQ_F_LINK))
5467 return NULL;
Jens Axboed7718a92020-02-14 22:23:12 -07005468 /* for polled retry, if flag is set, we already went through here */
5469 if (req->flags & REQ_F_POLLED)
5470 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07005471
Pavel Begunkov44932332019-12-05 16:16:35 +03005472 nxt = list_first_entry_or_null(&req->link_list, struct io_kiocb,
5473 link_list);
Jens Axboed625c6e2019-12-17 19:53:05 -07005474 if (!nxt || nxt->opcode != IORING_OP_LINK_TIMEOUT)
Jens Axboe76a46e02019-11-10 23:34:16 -07005475 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07005476
Jens Axboe76a46e02019-11-10 23:34:16 -07005477 req->flags |= REQ_F_LINK_TIMEOUT;
Jens Axboe76a46e02019-11-10 23:34:16 -07005478 return nxt;
Jens Axboe2665abf2019-11-05 12:40:47 -07005479}
5480
Jens Axboe3529d8c2019-12-19 18:24:38 -07005481static void __io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005482{
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005483 struct io_kiocb *linked_timeout;
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005484 struct io_kiocb *nxt;
Jens Axboe193155c2020-02-22 23:22:19 -07005485 const struct cred *old_creds = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005486 int ret;
5487
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005488again:
5489 linked_timeout = io_prep_linked_timeout(req);
5490
Jens Axboe193155c2020-02-22 23:22:19 -07005491 if (req->work.creds && req->work.creds != current_cred()) {
5492 if (old_creds)
5493 revert_creds(old_creds);
5494 if (old_creds == req->work.creds)
5495 old_creds = NULL; /* restored original creds */
5496 else
5497 old_creds = override_creds(req->work.creds);
5498 }
5499
Pavel Begunkov014db002020-03-03 21:33:12 +03005500 ret = io_issue_sqe(req, sqe, true);
Jens Axboe491381ce2019-10-17 09:20:46 -06005501
5502 /*
5503 * We async punt it if the file wasn't marked NOWAIT, or if the file
5504 * doesn't support non-blocking read/write attempts
5505 */
5506 if (ret == -EAGAIN && (!(req->flags & REQ_F_NOWAIT) ||
5507 (req->flags & REQ_F_MUST_PUNT))) {
Jens Axboed7718a92020-02-14 22:23:12 -07005508 if (io_arm_poll_handler(req)) {
5509 if (linked_timeout)
5510 io_queue_linked_timeout(linked_timeout);
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005511 goto exit;
Jens Axboed7718a92020-02-14 22:23:12 -07005512 }
Pavel Begunkov86a761f2020-01-22 23:09:36 +03005513punt:
Jens Axboef86cd202020-01-29 13:46:44 -07005514 if (io_op_defs[req->opcode].file_table) {
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03005515 ret = io_grab_files(req);
5516 if (ret)
5517 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005518 }
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03005519
5520 /*
5521 * Queued up for async execution, worker will release
5522 * submit reference when the iocb is actually submitted.
5523 */
5524 io_queue_async_work(req);
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005525 goto exit;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005526 }
Jens Axboee65ef562019-03-12 10:16:44 -06005527
Jens Axboefcb323c2019-10-24 12:39:47 -06005528err:
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005529 nxt = NULL;
Jens Axboee65ef562019-03-12 10:16:44 -06005530 /* drop submission reference */
Jens Axboe2a44f462020-02-25 13:25:41 -07005531 io_put_req_find_next(req, &nxt);
Jens Axboee65ef562019-03-12 10:16:44 -06005532
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03005533 if (linked_timeout) {
Jens Axboe76a46e02019-11-10 23:34:16 -07005534 if (!ret)
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03005535 io_queue_linked_timeout(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07005536 else
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03005537 io_put_req(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07005538 }
5539
Jens Axboee65ef562019-03-12 10:16:44 -06005540 /* and drop final reference, if we failed */
Jens Axboe9e645e112019-05-10 16:07:28 -06005541 if (ret) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07005542 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005543 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06005544 io_put_req(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06005545 }
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005546 if (nxt) {
5547 req = nxt;
Pavel Begunkov86a761f2020-01-22 23:09:36 +03005548
5549 if (req->flags & REQ_F_FORCE_ASYNC)
5550 goto punt;
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005551 goto again;
5552 }
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005553exit:
Jens Axboe193155c2020-02-22 23:22:19 -07005554 if (old_creds)
5555 revert_creds(old_creds);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005556}
5557
Jens Axboe3529d8c2019-12-19 18:24:38 -07005558static void io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jackie Liu4fe2c962019-09-09 20:50:40 +08005559{
5560 int ret;
5561
Jens Axboe3529d8c2019-12-19 18:24:38 -07005562 ret = io_req_defer(req, sqe);
Jackie Liu4fe2c962019-09-09 20:50:40 +08005563 if (ret) {
5564 if (ret != -EIOCBQUEUED) {
Pavel Begunkov11185912020-01-22 23:09:35 +03005565fail_req:
Jens Axboe78e19bb2019-11-06 15:21:34 -07005566 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005567 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07005568 io_double_put_req(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08005569 }
Pavel Begunkov25508782019-12-30 21:24:47 +03005570 } else if (req->flags & REQ_F_FORCE_ASYNC) {
Pavel Begunkov11185912020-01-22 23:09:35 +03005571 ret = io_req_defer_prep(req, sqe);
5572 if (unlikely(ret < 0))
5573 goto fail_req;
Jens Axboece35a472019-12-17 08:04:44 -07005574 /*
5575 * Never try inline submit of IOSQE_ASYNC is set, go straight
5576 * to async execution.
5577 */
5578 req->work.flags |= IO_WQ_WORK_CONCURRENT;
5579 io_queue_async_work(req);
5580 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07005581 __io_queue_sqe(req, sqe);
Jens Axboece35a472019-12-17 08:04:44 -07005582 }
Jackie Liu4fe2c962019-09-09 20:50:40 +08005583}
5584
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005585static inline void io_queue_link_head(struct io_kiocb *req)
Jackie Liu4fe2c962019-09-09 20:50:40 +08005586{
Jens Axboe94ae5e72019-11-14 19:39:52 -07005587 if (unlikely(req->flags & REQ_F_FAIL_LINK)) {
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005588 io_cqring_add_event(req, -ECANCELED);
5589 io_double_put_req(req);
5590 } else
Jens Axboe3529d8c2019-12-19 18:24:38 -07005591 io_queue_sqe(req, NULL);
Jackie Liu4fe2c962019-09-09 20:50:40 +08005592}
5593
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005594#define SQE_VALID_FLAGS (IOSQE_FIXED_FILE|IOSQE_IO_DRAIN|IOSQE_IO_LINK| \
Jens Axboebcda7ba2020-02-23 16:42:51 -07005595 IOSQE_IO_HARDLINK | IOSQE_ASYNC | \
5596 IOSQE_BUFFER_SELECT)
Jens Axboe9e645e112019-05-10 16:07:28 -06005597
Jens Axboe3529d8c2019-12-19 18:24:38 -07005598static bool io_submit_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
5599 struct io_submit_state *state, struct io_kiocb **link)
Jens Axboe9e645e112019-05-10 16:07:28 -06005600{
Jackie Liua197f662019-11-08 08:09:12 -07005601 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005602 unsigned int sqe_flags;
Jens Axboe75c6a032020-01-28 10:15:23 -07005603 int ret, id;
Jens Axboe9e645e112019-05-10 16:07:28 -06005604
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005605 sqe_flags = READ_ONCE(sqe->flags);
Jens Axboe9e645e112019-05-10 16:07:28 -06005606
5607 /* enforce forwards compatibility on users */
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005608 if (unlikely(sqe_flags & ~SQE_VALID_FLAGS)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06005609 ret = -EINVAL;
Pavel Begunkov196be952019-11-07 01:41:06 +03005610 goto err_req;
Jens Axboe9e645e112019-05-10 16:07:28 -06005611 }
5612
Jens Axboebcda7ba2020-02-23 16:42:51 -07005613 if ((sqe_flags & IOSQE_BUFFER_SELECT) &&
5614 !io_op_defs[req->opcode].buffer_select) {
5615 ret = -EOPNOTSUPP;
5616 goto err_req;
5617 }
5618
Jens Axboe75c6a032020-01-28 10:15:23 -07005619 id = READ_ONCE(sqe->personality);
5620 if (id) {
Jens Axboe193155c2020-02-22 23:22:19 -07005621 req->work.creds = idr_find(&ctx->personality_idr, id);
5622 if (unlikely(!req->work.creds)) {
Jens Axboe75c6a032020-01-28 10:15:23 -07005623 ret = -EINVAL;
5624 goto err_req;
5625 }
Jens Axboe193155c2020-02-22 23:22:19 -07005626 get_cred(req->work.creds);
Jens Axboe75c6a032020-01-28 10:15:23 -07005627 }
5628
Pavel Begunkov6b47ee62020-01-18 20:22:41 +03005629 /* same numerical values with corresponding REQ_F_*, safe to copy */
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005630 req->flags |= sqe_flags & (IOSQE_IO_DRAIN | IOSQE_IO_HARDLINK |
Jens Axboebcda7ba2020-02-23 16:42:51 -07005631 IOSQE_ASYNC | IOSQE_FIXED_FILE |
5632 IOSQE_BUFFER_SELECT);
Jens Axboe9e645e112019-05-10 16:07:28 -06005633
Jens Axboe3529d8c2019-12-19 18:24:38 -07005634 ret = io_req_set_file(state, req, sqe);
Jens Axboe9e645e112019-05-10 16:07:28 -06005635 if (unlikely(ret)) {
5636err_req:
Jens Axboe78e19bb2019-11-06 15:21:34 -07005637 io_cqring_add_event(req, ret);
5638 io_double_put_req(req);
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03005639 return false;
Jens Axboe9e645e112019-05-10 16:07:28 -06005640 }
5641
Jens Axboe9e645e112019-05-10 16:07:28 -06005642 /*
5643 * If we already have a head request, queue this one for async
5644 * submittal once the head completes. If we don't have a head but
5645 * IOSQE_IO_LINK is set in the sqe, start a new head. This one will be
5646 * submitted sync once the chain is complete. If none of those
5647 * conditions are true (normal request), then just queue it.
5648 */
5649 if (*link) {
Pavel Begunkov9d763772019-12-17 02:22:07 +03005650 struct io_kiocb *head = *link;
Jens Axboe9e645e112019-05-10 16:07:28 -06005651
Pavel Begunkov8cdf2192020-01-25 00:40:24 +03005652 /*
5653 * Taking sequential execution of a link, draining both sides
5654 * of the link also fullfils IOSQE_IO_DRAIN semantics for all
5655 * requests in the link. So, it drains the head and the
5656 * next after the link request. The last one is done via
5657 * drain_next flag to persist the effect across calls.
5658 */
Pavel Begunkov711be032020-01-17 03:57:59 +03005659 if (sqe_flags & IOSQE_IO_DRAIN) {
5660 head->flags |= REQ_F_IO_DRAIN;
5661 ctx->drain_next = 1;
5662 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07005663 if (io_alloc_async_ctx(req)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06005664 ret = -EAGAIN;
5665 goto err_req;
5666 }
5667
Jens Axboe3529d8c2019-12-19 18:24:38 -07005668 ret = io_req_defer_prep(req, sqe);
Jens Axboe2d283902019-12-04 11:08:05 -07005669 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005670 /* fail even hard links since we don't submit */
Pavel Begunkov9d763772019-12-17 02:22:07 +03005671 head->flags |= REQ_F_FAIL_LINK;
Jens Axboef67676d2019-12-02 11:03:47 -07005672 goto err_req;
Jens Axboe2d283902019-12-04 11:08:05 -07005673 }
Pavel Begunkov9d763772019-12-17 02:22:07 +03005674 trace_io_uring_link(ctx, req, head);
5675 list_add_tail(&req->link_list, &head->link_list);
Jens Axboe9e645e112019-05-10 16:07:28 -06005676
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005677 /* last request of a link, enqueue the link */
5678 if (!(sqe_flags & (IOSQE_IO_LINK|IOSQE_IO_HARDLINK))) {
5679 io_queue_link_head(head);
5680 *link = NULL;
5681 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005682 } else {
Pavel Begunkov711be032020-01-17 03:57:59 +03005683 if (unlikely(ctx->drain_next)) {
5684 req->flags |= REQ_F_IO_DRAIN;
5685 req->ctx->drain_next = 0;
5686 }
5687 if (sqe_flags & (IOSQE_IO_LINK|IOSQE_IO_HARDLINK)) {
5688 req->flags |= REQ_F_LINK;
Pavel Begunkov711be032020-01-17 03:57:59 +03005689 INIT_LIST_HEAD(&req->link_list);
Pavel Begunkovf1d96a82020-03-13 22:29:14 +03005690
5691 if (io_alloc_async_ctx(req)) {
5692 ret = -EAGAIN;
5693 goto err_req;
5694 }
Pavel Begunkov711be032020-01-17 03:57:59 +03005695 ret = io_req_defer_prep(req, sqe);
5696 if (ret)
5697 req->flags |= REQ_F_FAIL_LINK;
5698 *link = req;
5699 } else {
5700 io_queue_sqe(req, sqe);
5701 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005702 }
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03005703
5704 return true;
Jens Axboe9e645e112019-05-10 16:07:28 -06005705}
5706
Jens Axboe9a56a232019-01-09 09:06:50 -07005707/*
5708 * Batched submission is done, ensure local IO is flushed out.
5709 */
5710static void io_submit_state_end(struct io_submit_state *state)
5711{
5712 blk_finish_plug(&state->plug);
Jens Axboe3d6770f2019-04-13 11:50:54 -06005713 io_file_put(state);
Jens Axboe2579f912019-01-09 09:10:43 -07005714 if (state->free_reqs)
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03005715 kmem_cache_free_bulk(req_cachep, state->free_reqs, state->reqs);
Jens Axboe9a56a232019-01-09 09:06:50 -07005716}
5717
5718/*
5719 * Start submission side cache.
5720 */
5721static void io_submit_state_start(struct io_submit_state *state,
Jackie Liu22efde52019-12-02 17:14:52 +08005722 unsigned int max_ios)
Jens Axboe9a56a232019-01-09 09:06:50 -07005723{
5724 blk_start_plug(&state->plug);
Jens Axboe2579f912019-01-09 09:10:43 -07005725 state->free_reqs = 0;
Jens Axboe9a56a232019-01-09 09:06:50 -07005726 state->file = NULL;
5727 state->ios_left = max_ios;
5728}
5729
Jens Axboe2b188cc2019-01-07 10:46:33 -07005730static void io_commit_sqring(struct io_ring_ctx *ctx)
5731{
Hristo Venev75b28af2019-08-26 17:23:46 +00005732 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005733
Pavel Begunkovcaf582c2019-12-30 21:24:46 +03005734 /*
5735 * Ensure any loads from the SQEs are done at this point,
5736 * since once we write the new head, the application could
5737 * write new data to them.
5738 */
5739 smp_store_release(&rings->sq.head, ctx->cached_sq_head);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005740}
5741
5742/*
Jens Axboe3529d8c2019-12-19 18:24:38 -07005743 * Fetch an sqe, if one is available. Note that sqe_ptr will point to memory
Jens Axboe2b188cc2019-01-07 10:46:33 -07005744 * that is mapped by userspace. This means that care needs to be taken to
5745 * ensure that reads are stable, as we cannot rely on userspace always
5746 * being a good citizen. If members of the sqe are validated and then later
5747 * used, it's important that those reads are done through READ_ONCE() to
5748 * prevent a re-load down the line.
5749 */
Jens Axboe3529d8c2019-12-19 18:24:38 -07005750static bool io_get_sqring(struct io_ring_ctx *ctx, struct io_kiocb *req,
5751 const struct io_uring_sqe **sqe_ptr)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005752{
Hristo Venev75b28af2019-08-26 17:23:46 +00005753 u32 *sq_array = ctx->sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005754 unsigned head;
5755
5756 /*
5757 * The cached sq head (or cq tail) serves two purposes:
5758 *
5759 * 1) allows us to batch the cost of updating the user visible
5760 * head updates.
5761 * 2) allows the kernel side to track the head on its own, even
5762 * though the application is the one updating it.
5763 */
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005764 head = READ_ONCE(sq_array[ctx->cached_sq_head & ctx->sq_mask]);
Pavel Begunkov9835d6f2019-11-21 21:24:56 +03005765 if (likely(head < ctx->sq_entries)) {
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03005766 /*
5767 * All io need record the previous position, if LINK vs DARIN,
5768 * it can be used to mark the position of the first IO in the
5769 * link list.
5770 */
5771 req->sequence = ctx->cached_sq_head;
Jens Axboe3529d8c2019-12-19 18:24:38 -07005772 *sqe_ptr = &ctx->sq_sqes[head];
5773 req->opcode = READ_ONCE((*sqe_ptr)->opcode);
5774 req->user_data = READ_ONCE((*sqe_ptr)->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005775 ctx->cached_sq_head++;
5776 return true;
5777 }
5778
5779 /* drop invalid entries */
5780 ctx->cached_sq_head++;
Jens Axboe498ccd92019-10-25 10:04:25 -06005781 ctx->cached_sq_dropped++;
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005782 WRITE_ONCE(ctx->rings->sq_dropped, ctx->cached_sq_dropped);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005783 return false;
5784}
5785
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005786static int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr,
Pavel Begunkovae9428c2019-11-06 00:22:14 +03005787 struct file *ring_file, int ring_fd,
5788 struct mm_struct **mm, bool async)
Jens Axboe6c271ce2019-01-10 11:22:30 -07005789{
5790 struct io_submit_state state, *statep = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06005791 struct io_kiocb *link = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06005792 int i, submitted = 0;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005793 bool mm_fault = false;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005794
Jens Axboec4a2ed72019-11-21 21:01:26 -07005795 /* if we have a backlog and couldn't flush it all, return BUSY */
Jens Axboead3eb2c2019-12-18 17:12:20 -07005796 if (test_bit(0, &ctx->sq_check_overflow)) {
5797 if (!list_empty(&ctx->cq_overflow_list) &&
5798 !io_cqring_overflow_flush(ctx, false))
5799 return -EBUSY;
5800 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07005801
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005802 /* make sure SQ entry isn't read before tail */
5803 nr = min3(nr, ctx->sq_entries, io_sqring_entries(ctx));
Pavel Begunkov9ef4f122019-12-30 21:24:44 +03005804
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03005805 if (!percpu_ref_tryget_many(&ctx->refs, nr))
5806 return -EAGAIN;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005807
5808 if (nr > IO_PLUG_THRESHOLD) {
Jackie Liu22efde52019-12-02 17:14:52 +08005809 io_submit_state_start(&state, nr);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005810 statep = &state;
5811 }
5812
Pavel Begunkovb14cca02020-01-17 04:45:59 +03005813 ctx->ring_fd = ring_fd;
5814 ctx->ring_file = ring_file;
5815
Jens Axboe6c271ce2019-01-10 11:22:30 -07005816 for (i = 0; i < nr; i++) {
Jens Axboe3529d8c2019-12-19 18:24:38 -07005817 const struct io_uring_sqe *sqe;
Pavel Begunkov196be952019-11-07 01:41:06 +03005818 struct io_kiocb *req;
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005819 int err;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005820
Pavel Begunkov196be952019-11-07 01:41:06 +03005821 req = io_get_req(ctx, statep);
5822 if (unlikely(!req)) {
5823 if (!submitted)
5824 submitted = -EAGAIN;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005825 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06005826 }
Jens Axboe3529d8c2019-12-19 18:24:38 -07005827 if (!io_get_sqring(ctx, req, &sqe)) {
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03005828 __io_req_do_free(req);
Pavel Begunkov196be952019-11-07 01:41:06 +03005829 break;
5830 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005831
Jens Axboed3656342019-12-18 09:50:26 -07005832 /* will complete beyond this point, count as submitted */
5833 submitted++;
5834
5835 if (unlikely(req->opcode >= IORING_OP_LAST)) {
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005836 err = -EINVAL;
5837fail_req:
5838 io_cqring_add_event(req, err);
Jens Axboed3656342019-12-18 09:50:26 -07005839 io_double_put_req(req);
5840 break;
5841 }
5842
5843 if (io_op_defs[req->opcode].needs_mm && !*mm) {
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005844 mm_fault = mm_fault || !mmget_not_zero(ctx->sqo_mm);
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005845 if (unlikely(mm_fault)) {
5846 err = -EFAULT;
5847 goto fail_req;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005848 }
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005849 use_mm(ctx->sqo_mm);
5850 *mm = ctx->sqo_mm;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005851 }
5852
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03005853 req->needs_fixed_file = async;
Jens Axboe354420f2020-01-08 18:55:15 -07005854 trace_io_uring_submit_sqe(ctx, req->opcode, req->user_data,
5855 true, async);
Jens Axboe3529d8c2019-12-19 18:24:38 -07005856 if (!io_submit_sqe(req, sqe, statep, &link))
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03005857 break;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005858 }
5859
Pavel Begunkov9466f432020-01-25 22:34:01 +03005860 if (unlikely(submitted != nr)) {
5861 int ref_used = (submitted == -EAGAIN) ? 0 : submitted;
5862
5863 percpu_ref_put_many(&ctx->refs, nr - ref_used);
5864 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005865 if (link)
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005866 io_queue_link_head(link);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005867 if (statep)
5868 io_submit_state_end(&state);
5869
Pavel Begunkovae9428c2019-11-06 00:22:14 +03005870 /* Commit SQ ring head once we've consumed and submitted all SQEs */
5871 io_commit_sqring(ctx);
5872
Jens Axboe6c271ce2019-01-10 11:22:30 -07005873 return submitted;
5874}
5875
5876static int io_sq_thread(void *data)
5877{
Jens Axboe6c271ce2019-01-10 11:22:30 -07005878 struct io_ring_ctx *ctx = data;
5879 struct mm_struct *cur_mm = NULL;
Jens Axboe181e4482019-11-25 08:52:30 -07005880 const struct cred *old_cred;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005881 mm_segment_t old_fs;
5882 DEFINE_WAIT(wait);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005883 unsigned long timeout;
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005884 int ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005885
Jens Axboe206aefd2019-11-07 18:27:42 -07005886 complete(&ctx->completions[1]);
Jackie Liua4c0b3d2019-07-08 13:41:12 +08005887
Jens Axboe6c271ce2019-01-10 11:22:30 -07005888 old_fs = get_fs();
5889 set_fs(USER_DS);
Jens Axboe181e4482019-11-25 08:52:30 -07005890 old_cred = override_creds(ctx->creds);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005891
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005892 timeout = jiffies + ctx->sq_thread_idle;
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02005893 while (!kthread_should_park()) {
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005894 unsigned int to_submit;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005895
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005896 if (!list_empty(&ctx->poll_list)) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07005897 unsigned nr_events = 0;
5898
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005899 mutex_lock(&ctx->uring_lock);
5900 if (!list_empty(&ctx->poll_list))
5901 io_iopoll_getevents(ctx, &nr_events, 0);
5902 else
Jens Axboe6c271ce2019-01-10 11:22:30 -07005903 timeout = jiffies + ctx->sq_thread_idle;
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005904 mutex_unlock(&ctx->uring_lock);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005905 }
5906
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005907 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07005908
5909 /*
5910 * If submit got -EBUSY, flag us as needing the application
5911 * to enter the kernel to reap and flush events.
5912 */
5913 if (!to_submit || ret == -EBUSY) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07005914 /*
Stefano Garzarella7143b5a2020-02-21 16:42:16 +01005915 * Drop cur_mm before scheduling, we can't hold it for
5916 * long periods (or over schedule()). Do this before
5917 * adding ourselves to the waitqueue, as the unuse/drop
5918 * may sleep.
5919 */
5920 if (cur_mm) {
5921 unuse_mm(cur_mm);
5922 mmput(cur_mm);
5923 cur_mm = NULL;
5924 }
5925
5926 /*
Jens Axboe6c271ce2019-01-10 11:22:30 -07005927 * We're polling. If we're within the defined idle
5928 * period, then let us spin without work before going
Jens Axboec1edbf52019-11-10 16:56:04 -07005929 * to sleep. The exception is if we got EBUSY doing
5930 * more IO, we should wait for the application to
5931 * reap events and wake us up.
Jens Axboe6c271ce2019-01-10 11:22:30 -07005932 */
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005933 if (!list_empty(&ctx->poll_list) ||
Jens Axboedf069d82020-02-04 16:48:34 -07005934 (!time_after(jiffies, timeout) && ret != -EBUSY &&
5935 !percpu_ref_is_dying(&ctx->refs))) {
Jens Axboeb41e9852020-02-17 09:52:41 -07005936 if (current->task_works)
5937 task_work_run();
Jens Axboe9831a902019-09-19 09:48:55 -06005938 cond_resched();
Jens Axboe6c271ce2019-01-10 11:22:30 -07005939 continue;
5940 }
5941
Jens Axboe6c271ce2019-01-10 11:22:30 -07005942 prepare_to_wait(&ctx->sqo_wait, &wait,
5943 TASK_INTERRUPTIBLE);
5944
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005945 /*
5946 * While doing polled IO, before going to sleep, we need
5947 * to check if there are new reqs added to poll_list, it
5948 * is because reqs may have been punted to io worker and
5949 * will be added to poll_list later, hence check the
5950 * poll_list again.
5951 */
5952 if ((ctx->flags & IORING_SETUP_IOPOLL) &&
5953 !list_empty_careful(&ctx->poll_list)) {
5954 finish_wait(&ctx->sqo_wait, &wait);
5955 continue;
5956 }
5957
Jens Axboe6c271ce2019-01-10 11:22:30 -07005958 /* Tell userspace we may need a wakeup call */
Hristo Venev75b28af2019-08-26 17:23:46 +00005959 ctx->rings->sq_flags |= IORING_SQ_NEED_WAKEUP;
Stefan Bühler0d7bae62019-04-19 11:57:45 +02005960 /* make sure to read SQ tail after writing flags */
5961 smp_mb();
Jens Axboe6c271ce2019-01-10 11:22:30 -07005962
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005963 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07005964 if (!to_submit || ret == -EBUSY) {
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02005965 if (kthread_should_park()) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07005966 finish_wait(&ctx->sqo_wait, &wait);
5967 break;
5968 }
Jens Axboeb41e9852020-02-17 09:52:41 -07005969 if (current->task_works) {
5970 task_work_run();
Hillf Danton10bea962020-04-01 17:19:33 +08005971 finish_wait(&ctx->sqo_wait, &wait);
Jens Axboeb41e9852020-02-17 09:52:41 -07005972 continue;
5973 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07005974 if (signal_pending(current))
5975 flush_signals(current);
5976 schedule();
5977 finish_wait(&ctx->sqo_wait, &wait);
5978
Hristo Venev75b28af2019-08-26 17:23:46 +00005979 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005980 continue;
5981 }
5982 finish_wait(&ctx->sqo_wait, &wait);
5983
Hristo Venev75b28af2019-08-26 17:23:46 +00005984 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005985 }
5986
Jens Axboe8a4955f2019-12-09 14:52:35 -07005987 mutex_lock(&ctx->uring_lock);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07005988 ret = io_submit_sqes(ctx, to_submit, NULL, -1, &cur_mm, true);
Jens Axboe8a4955f2019-12-09 14:52:35 -07005989 mutex_unlock(&ctx->uring_lock);
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005990 timeout = jiffies + ctx->sq_thread_idle;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005991 }
5992
Jens Axboeb41e9852020-02-17 09:52:41 -07005993 if (current->task_works)
5994 task_work_run();
5995
Jens Axboe6c271ce2019-01-10 11:22:30 -07005996 set_fs(old_fs);
5997 if (cur_mm) {
5998 unuse_mm(cur_mm);
5999 mmput(cur_mm);
6000 }
Jens Axboe181e4482019-11-25 08:52:30 -07006001 revert_creds(old_cred);
Jens Axboe06058632019-04-13 09:26:03 -06006002
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02006003 kthread_parkme();
Jens Axboe06058632019-04-13 09:26:03 -06006004
Jens Axboe6c271ce2019-01-10 11:22:30 -07006005 return 0;
6006}
6007
Jens Axboebda52162019-09-24 13:47:15 -06006008struct io_wait_queue {
6009 struct wait_queue_entry wq;
6010 struct io_ring_ctx *ctx;
6011 unsigned to_wait;
6012 unsigned nr_timeouts;
6013};
6014
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006015static inline bool io_should_wake(struct io_wait_queue *iowq, bool noflush)
Jens Axboebda52162019-09-24 13:47:15 -06006016{
6017 struct io_ring_ctx *ctx = iowq->ctx;
6018
6019 /*
Brian Gianforcarod195a662019-12-13 03:09:50 -08006020 * Wake up if we have enough events, or if a timeout occurred since we
Jens Axboebda52162019-09-24 13:47:15 -06006021 * started waiting. For timeouts, we always want to return to userspace,
6022 * regardless of event count.
6023 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006024 return io_cqring_events(ctx, noflush) >= iowq->to_wait ||
Jens Axboebda52162019-09-24 13:47:15 -06006025 atomic_read(&ctx->cq_timeouts) != iowq->nr_timeouts;
6026}
6027
6028static int io_wake_function(struct wait_queue_entry *curr, unsigned int mode,
6029 int wake_flags, void *key)
6030{
6031 struct io_wait_queue *iowq = container_of(curr, struct io_wait_queue,
6032 wq);
6033
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006034 /* use noflush == true, as we can't safely rely on locking context */
6035 if (!io_should_wake(iowq, true))
Jens Axboebda52162019-09-24 13:47:15 -06006036 return -1;
6037
6038 return autoremove_wake_function(curr, mode, wake_flags, key);
6039}
6040
Jens Axboe2b188cc2019-01-07 10:46:33 -07006041/*
6042 * Wait until events become available, if we don't already have some. The
6043 * application must reap them itself, as they reside on the shared cq ring.
6044 */
6045static int io_cqring_wait(struct io_ring_ctx *ctx, int min_events,
6046 const sigset_t __user *sig, size_t sigsz)
6047{
Jens Axboebda52162019-09-24 13:47:15 -06006048 struct io_wait_queue iowq = {
6049 .wq = {
6050 .private = current,
6051 .func = io_wake_function,
6052 .entry = LIST_HEAD_INIT(iowq.wq.entry),
6053 },
6054 .ctx = ctx,
6055 .to_wait = min_events,
6056 };
Hristo Venev75b28af2019-08-26 17:23:46 +00006057 struct io_rings *rings = ctx->rings;
Jackie Liue9ffa5c2019-10-29 11:16:42 +08006058 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006059
Jens Axboeb41e9852020-02-17 09:52:41 -07006060 do {
6061 if (io_cqring_events(ctx, false) >= min_events)
6062 return 0;
6063 if (!current->task_works)
6064 break;
6065 task_work_run();
6066 } while (1);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006067
6068 if (sig) {
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006069#ifdef CONFIG_COMPAT
6070 if (in_compat_syscall())
6071 ret = set_compat_user_sigmask((const compat_sigset_t __user *)sig,
Oleg Nesterovb7724342019-07-16 16:29:53 -07006072 sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006073 else
6074#endif
Oleg Nesterovb7724342019-07-16 16:29:53 -07006075 ret = set_user_sigmask(sig, sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006076
Jens Axboe2b188cc2019-01-07 10:46:33 -07006077 if (ret)
6078 return ret;
6079 }
6080
Jens Axboebda52162019-09-24 13:47:15 -06006081 iowq.nr_timeouts = atomic_read(&ctx->cq_timeouts);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02006082 trace_io_uring_cqring_wait(ctx, min_events);
Jens Axboebda52162019-09-24 13:47:15 -06006083 do {
6084 prepare_to_wait_exclusive(&ctx->wait, &iowq.wq,
6085 TASK_INTERRUPTIBLE);
Jens Axboeb41e9852020-02-17 09:52:41 -07006086 if (current->task_works)
6087 task_work_run();
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006088 if (io_should_wake(&iowq, false))
Jens Axboebda52162019-09-24 13:47:15 -06006089 break;
6090 schedule();
6091 if (signal_pending(current)) {
Jackie Liue9ffa5c2019-10-29 11:16:42 +08006092 ret = -EINTR;
Jens Axboebda52162019-09-24 13:47:15 -06006093 break;
6094 }
6095 } while (1);
6096 finish_wait(&ctx->wait, &iowq.wq);
6097
Jackie Liue9ffa5c2019-10-29 11:16:42 +08006098 restore_saved_sigmask_unless(ret == -EINTR);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006099
Hristo Venev75b28af2019-08-26 17:23:46 +00006100 return READ_ONCE(rings->cq.head) == READ_ONCE(rings->cq.tail) ? ret : 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006101}
6102
Jens Axboe6b063142019-01-10 22:13:58 -07006103static void __io_sqe_files_unregister(struct io_ring_ctx *ctx)
6104{
6105#if defined(CONFIG_UNIX)
6106 if (ctx->ring_sock) {
6107 struct sock *sock = ctx->ring_sock->sk;
6108 struct sk_buff *skb;
6109
6110 while ((skb = skb_dequeue(&sock->sk_receive_queue)) != NULL)
6111 kfree_skb(skb);
6112 }
6113#else
6114 int i;
6115
Jens Axboe65e19f52019-10-26 07:20:21 -06006116 for (i = 0; i < ctx->nr_user_files; i++) {
6117 struct file *file;
6118
6119 file = io_file_from_index(ctx, i);
6120 if (file)
6121 fput(file);
6122 }
Jens Axboe6b063142019-01-10 22:13:58 -07006123#endif
6124}
6125
Jens Axboe05f3fb32019-12-09 11:22:50 -07006126static void io_file_ref_kill(struct percpu_ref *ref)
6127{
6128 struct fixed_file_data *data;
6129
6130 data = container_of(ref, struct fixed_file_data, refs);
6131 complete(&data->done);
6132}
6133
Jens Axboe6b063142019-01-10 22:13:58 -07006134static int io_sqe_files_unregister(struct io_ring_ctx *ctx)
6135{
Jens Axboe05f3fb32019-12-09 11:22:50 -07006136 struct fixed_file_data *data = ctx->file_data;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006137 struct fixed_file_ref_node *ref_node = NULL;
Jens Axboe65e19f52019-10-26 07:20:21 -06006138 unsigned nr_tables, i;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006139 unsigned long flags;
Jens Axboe65e19f52019-10-26 07:20:21 -06006140
Jens Axboe05f3fb32019-12-09 11:22:50 -07006141 if (!data)
Jens Axboe6b063142019-01-10 22:13:58 -07006142 return -ENXIO;
6143
Xiaoguang Wang05589552020-03-31 14:05:18 +08006144 spin_lock_irqsave(&data->lock, flags);
6145 if (!list_empty(&data->ref_list))
6146 ref_node = list_first_entry(&data->ref_list,
6147 struct fixed_file_ref_node, node);
6148 spin_unlock_irqrestore(&data->lock, flags);
6149 if (ref_node)
6150 percpu_ref_kill(&ref_node->refs);
6151
6152 percpu_ref_kill(&data->refs);
6153
6154 /* wait for all refs nodes to complete */
Jens Axboe2faf8522020-02-04 19:54:55 -07006155 wait_for_completion(&data->done);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006156
Jens Axboe6b063142019-01-10 22:13:58 -07006157 __io_sqe_files_unregister(ctx);
Jens Axboe65e19f52019-10-26 07:20:21 -06006158 nr_tables = DIV_ROUND_UP(ctx->nr_user_files, IORING_MAX_FILES_TABLE);
6159 for (i = 0; i < nr_tables; i++)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006160 kfree(data->table[i].files);
6161 kfree(data->table);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006162 percpu_ref_exit(&data->refs);
6163 kfree(data);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006164 ctx->file_data = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07006165 ctx->nr_user_files = 0;
6166 return 0;
6167}
6168
Jens Axboe6c271ce2019-01-10 11:22:30 -07006169static void io_sq_thread_stop(struct io_ring_ctx *ctx)
6170{
6171 if (ctx->sqo_thread) {
Jens Axboe206aefd2019-11-07 18:27:42 -07006172 wait_for_completion(&ctx->completions[1]);
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02006173 /*
6174 * The park is a bit of a work-around, without it we get
6175 * warning spews on shutdown with SQPOLL set and affinity
6176 * set to a single CPU.
6177 */
Jens Axboe06058632019-04-13 09:26:03 -06006178 kthread_park(ctx->sqo_thread);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006179 kthread_stop(ctx->sqo_thread);
6180 ctx->sqo_thread = NULL;
6181 }
6182}
6183
Jens Axboe6b063142019-01-10 22:13:58 -07006184static void io_finish_async(struct io_ring_ctx *ctx)
6185{
Jens Axboe6c271ce2019-01-10 11:22:30 -07006186 io_sq_thread_stop(ctx);
6187
Jens Axboe561fb042019-10-24 07:25:42 -06006188 if (ctx->io_wq) {
6189 io_wq_destroy(ctx->io_wq);
6190 ctx->io_wq = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07006191 }
6192}
6193
6194#if defined(CONFIG_UNIX)
Jens Axboe6b063142019-01-10 22:13:58 -07006195/*
6196 * Ensure the UNIX gc is aware of our file set, so we are certain that
6197 * the io_uring can be safely unregistered on process exit, even if we have
6198 * loops in the file referencing.
6199 */
6200static int __io_sqe_files_scm(struct io_ring_ctx *ctx, int nr, int offset)
6201{
6202 struct sock *sk = ctx->ring_sock->sk;
6203 struct scm_fp_list *fpl;
6204 struct sk_buff *skb;
Jens Axboe08a45172019-10-03 08:11:03 -06006205 int i, nr_files;
Jens Axboe6b063142019-01-10 22:13:58 -07006206
6207 if (!capable(CAP_SYS_RESOURCE) && !capable(CAP_SYS_ADMIN)) {
6208 unsigned long inflight = ctx->user->unix_inflight + nr;
6209
6210 if (inflight > task_rlimit(current, RLIMIT_NOFILE))
6211 return -EMFILE;
6212 }
6213
6214 fpl = kzalloc(sizeof(*fpl), GFP_KERNEL);
6215 if (!fpl)
6216 return -ENOMEM;
6217
6218 skb = alloc_skb(0, GFP_KERNEL);
6219 if (!skb) {
6220 kfree(fpl);
6221 return -ENOMEM;
6222 }
6223
6224 skb->sk = sk;
Jens Axboe6b063142019-01-10 22:13:58 -07006225
Jens Axboe08a45172019-10-03 08:11:03 -06006226 nr_files = 0;
Jens Axboe6b063142019-01-10 22:13:58 -07006227 fpl->user = get_uid(ctx->user);
6228 for (i = 0; i < nr; i++) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006229 struct file *file = io_file_from_index(ctx, i + offset);
6230
6231 if (!file)
Jens Axboe08a45172019-10-03 08:11:03 -06006232 continue;
Jens Axboe65e19f52019-10-26 07:20:21 -06006233 fpl->fp[nr_files] = get_file(file);
Jens Axboe08a45172019-10-03 08:11:03 -06006234 unix_inflight(fpl->user, fpl->fp[nr_files]);
6235 nr_files++;
Jens Axboe6b063142019-01-10 22:13:58 -07006236 }
6237
Jens Axboe08a45172019-10-03 08:11:03 -06006238 if (nr_files) {
6239 fpl->max = SCM_MAX_FD;
6240 fpl->count = nr_files;
6241 UNIXCB(skb).fp = fpl;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006242 skb->destructor = unix_destruct_scm;
Jens Axboe08a45172019-10-03 08:11:03 -06006243 refcount_add(skb->truesize, &sk->sk_wmem_alloc);
6244 skb_queue_head(&sk->sk_receive_queue, skb);
Jens Axboe6b063142019-01-10 22:13:58 -07006245
Jens Axboe08a45172019-10-03 08:11:03 -06006246 for (i = 0; i < nr_files; i++)
6247 fput(fpl->fp[i]);
6248 } else {
6249 kfree_skb(skb);
6250 kfree(fpl);
6251 }
Jens Axboe6b063142019-01-10 22:13:58 -07006252
6253 return 0;
6254}
6255
6256/*
6257 * If UNIX sockets are enabled, fd passing can cause a reference cycle which
6258 * causes regular reference counting to break down. We rely on the UNIX
6259 * garbage collection to take care of this problem for us.
6260 */
6261static int io_sqe_files_scm(struct io_ring_ctx *ctx)
6262{
6263 unsigned left, total;
6264 int ret = 0;
6265
6266 total = 0;
6267 left = ctx->nr_user_files;
6268 while (left) {
6269 unsigned this_files = min_t(unsigned, left, SCM_MAX_FD);
Jens Axboe6b063142019-01-10 22:13:58 -07006270
6271 ret = __io_sqe_files_scm(ctx, this_files, total);
6272 if (ret)
6273 break;
6274 left -= this_files;
6275 total += this_files;
6276 }
6277
6278 if (!ret)
6279 return 0;
6280
6281 while (total < ctx->nr_user_files) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006282 struct file *file = io_file_from_index(ctx, total);
6283
6284 if (file)
6285 fput(file);
Jens Axboe6b063142019-01-10 22:13:58 -07006286 total++;
6287 }
6288
6289 return ret;
6290}
6291#else
6292static int io_sqe_files_scm(struct io_ring_ctx *ctx)
6293{
6294 return 0;
6295}
6296#endif
6297
Jens Axboe65e19f52019-10-26 07:20:21 -06006298static int io_sqe_alloc_file_tables(struct io_ring_ctx *ctx, unsigned nr_tables,
6299 unsigned nr_files)
6300{
6301 int i;
6302
6303 for (i = 0; i < nr_tables; i++) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006304 struct fixed_file_table *table = &ctx->file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06006305 unsigned this_files;
6306
6307 this_files = min(nr_files, IORING_MAX_FILES_TABLE);
6308 table->files = kcalloc(this_files, sizeof(struct file *),
6309 GFP_KERNEL);
6310 if (!table->files)
6311 break;
6312 nr_files -= this_files;
6313 }
6314
6315 if (i == nr_tables)
6316 return 0;
6317
6318 for (i = 0; i < nr_tables; i++) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006319 struct fixed_file_table *table = &ctx->file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06006320 kfree(table->files);
6321 }
6322 return 1;
6323}
6324
Jens Axboe05f3fb32019-12-09 11:22:50 -07006325static void io_ring_file_put(struct io_ring_ctx *ctx, struct file *file)
Jens Axboec3a31e62019-10-03 13:59:56 -06006326{
6327#if defined(CONFIG_UNIX)
Jens Axboec3a31e62019-10-03 13:59:56 -06006328 struct sock *sock = ctx->ring_sock->sk;
6329 struct sk_buff_head list, *head = &sock->sk_receive_queue;
6330 struct sk_buff *skb;
6331 int i;
6332
6333 __skb_queue_head_init(&list);
6334
6335 /*
6336 * Find the skb that holds this file in its SCM_RIGHTS. When found,
6337 * remove this entry and rearrange the file array.
6338 */
6339 skb = skb_dequeue(head);
6340 while (skb) {
6341 struct scm_fp_list *fp;
6342
6343 fp = UNIXCB(skb).fp;
6344 for (i = 0; i < fp->count; i++) {
6345 int left;
6346
6347 if (fp->fp[i] != file)
6348 continue;
6349
6350 unix_notinflight(fp->user, fp->fp[i]);
6351 left = fp->count - 1 - i;
6352 if (left) {
6353 memmove(&fp->fp[i], &fp->fp[i + 1],
6354 left * sizeof(struct file *));
6355 }
6356 fp->count--;
6357 if (!fp->count) {
6358 kfree_skb(skb);
6359 skb = NULL;
6360 } else {
6361 __skb_queue_tail(&list, skb);
6362 }
6363 fput(file);
6364 file = NULL;
6365 break;
6366 }
6367
6368 if (!file)
6369 break;
6370
6371 __skb_queue_tail(&list, skb);
6372
6373 skb = skb_dequeue(head);
6374 }
6375
6376 if (skb_peek(&list)) {
6377 spin_lock_irq(&head->lock);
6378 while ((skb = __skb_dequeue(&list)) != NULL)
6379 __skb_queue_tail(head, skb);
6380 spin_unlock_irq(&head->lock);
6381 }
6382#else
Jens Axboe05f3fb32019-12-09 11:22:50 -07006383 fput(file);
Jens Axboec3a31e62019-10-03 13:59:56 -06006384#endif
6385}
6386
Jens Axboe05f3fb32019-12-09 11:22:50 -07006387struct io_file_put {
Xiaoguang Wang05589552020-03-31 14:05:18 +08006388 struct list_head list;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006389 struct file *file;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006390};
6391
Xiaoguang Wang05589552020-03-31 14:05:18 +08006392static void io_file_put_work(struct work_struct *work)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006393{
Xiaoguang Wang05589552020-03-31 14:05:18 +08006394 struct fixed_file_ref_node *ref_node;
6395 struct fixed_file_data *file_data;
6396 struct io_ring_ctx *ctx;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006397 struct io_file_put *pfile, *tmp;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006398 unsigned long flags;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006399
Xiaoguang Wang05589552020-03-31 14:05:18 +08006400 ref_node = container_of(work, struct fixed_file_ref_node, work);
6401 file_data = ref_node->file_data;
6402 ctx = file_data->ctx;
6403
6404 list_for_each_entry_safe(pfile, tmp, &ref_node->file_list, list) {
6405 list_del_init(&pfile->list);
6406 io_ring_file_put(ctx, pfile->file);
6407 kfree(pfile);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006408 }
6409
Xiaoguang Wang05589552020-03-31 14:05:18 +08006410 spin_lock_irqsave(&file_data->lock, flags);
6411 list_del_init(&ref_node->node);
6412 spin_unlock_irqrestore(&file_data->lock, flags);
Jens Axboe2faf8522020-02-04 19:54:55 -07006413
Xiaoguang Wang05589552020-03-31 14:05:18 +08006414 percpu_ref_exit(&ref_node->refs);
6415 kfree(ref_node);
6416 percpu_ref_put(&file_data->refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006417}
6418
6419static void io_file_data_ref_zero(struct percpu_ref *ref)
6420{
Xiaoguang Wang05589552020-03-31 14:05:18 +08006421 struct fixed_file_ref_node *ref_node;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006422
Xiaoguang Wang05589552020-03-31 14:05:18 +08006423 ref_node = container_of(ref, struct fixed_file_ref_node, refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006424
Xiaoguang Wang05589552020-03-31 14:05:18 +08006425 queue_work(system_wq, &ref_node->work);
6426}
6427
6428static struct fixed_file_ref_node *alloc_fixed_file_ref_node(
6429 struct io_ring_ctx *ctx)
6430{
6431 struct fixed_file_ref_node *ref_node;
6432
6433 ref_node = kzalloc(sizeof(*ref_node), GFP_KERNEL);
6434 if (!ref_node)
6435 return ERR_PTR(-ENOMEM);
6436
6437 if (percpu_ref_init(&ref_node->refs, io_file_data_ref_zero,
6438 0, GFP_KERNEL)) {
6439 kfree(ref_node);
6440 return ERR_PTR(-ENOMEM);
6441 }
6442 INIT_LIST_HEAD(&ref_node->node);
6443 INIT_LIST_HEAD(&ref_node->file_list);
6444 INIT_WORK(&ref_node->work, io_file_put_work);
6445 ref_node->file_data = ctx->file_data;
6446 return ref_node;
6447
6448}
6449
6450static void destroy_fixed_file_ref_node(struct fixed_file_ref_node *ref_node)
6451{
6452 percpu_ref_exit(&ref_node->refs);
6453 kfree(ref_node);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006454}
6455
6456static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
6457 unsigned nr_args)
6458{
6459 __s32 __user *fds = (__s32 __user *) arg;
6460 unsigned nr_tables;
6461 struct file *file;
6462 int fd, ret = 0;
6463 unsigned i;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006464 struct fixed_file_ref_node *ref_node;
6465 unsigned long flags;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006466
6467 if (ctx->file_data)
6468 return -EBUSY;
6469 if (!nr_args)
6470 return -EINVAL;
6471 if (nr_args > IORING_MAX_FIXED_FILES)
6472 return -EMFILE;
6473
6474 ctx->file_data = kzalloc(sizeof(*ctx->file_data), GFP_KERNEL);
6475 if (!ctx->file_data)
6476 return -ENOMEM;
6477 ctx->file_data->ctx = ctx;
6478 init_completion(&ctx->file_data->done);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006479 INIT_LIST_HEAD(&ctx->file_data->ref_list);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006480
6481 nr_tables = DIV_ROUND_UP(nr_args, IORING_MAX_FILES_TABLE);
6482 ctx->file_data->table = kcalloc(nr_tables,
6483 sizeof(struct fixed_file_table),
6484 GFP_KERNEL);
6485 if (!ctx->file_data->table) {
6486 kfree(ctx->file_data);
6487 ctx->file_data = NULL;
6488 return -ENOMEM;
6489 }
6490
Xiaoguang Wang05589552020-03-31 14:05:18 +08006491 if (percpu_ref_init(&ctx->file_data->refs, io_file_ref_kill,
Jens Axboe05f3fb32019-12-09 11:22:50 -07006492 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL)) {
6493 kfree(ctx->file_data->table);
6494 kfree(ctx->file_data);
6495 ctx->file_data = NULL;
6496 return -ENOMEM;
6497 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07006498
6499 if (io_sqe_alloc_file_tables(ctx, nr_tables, nr_args)) {
6500 percpu_ref_exit(&ctx->file_data->refs);
6501 kfree(ctx->file_data->table);
6502 kfree(ctx->file_data);
6503 ctx->file_data = NULL;
6504 return -ENOMEM;
6505 }
6506
6507 for (i = 0; i < nr_args; i++, ctx->nr_user_files++) {
6508 struct fixed_file_table *table;
6509 unsigned index;
6510
6511 ret = -EFAULT;
6512 if (copy_from_user(&fd, &fds[i], sizeof(fd)))
6513 break;
6514 /* allow sparse sets */
6515 if (fd == -1) {
6516 ret = 0;
6517 continue;
6518 }
6519
6520 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
6521 index = i & IORING_FILE_TABLE_MASK;
6522 file = fget(fd);
6523
6524 ret = -EBADF;
6525 if (!file)
6526 break;
6527
6528 /*
6529 * Don't allow io_uring instances to be registered. If UNIX
6530 * isn't enabled, then this causes a reference cycle and this
6531 * instance can never get freed. If UNIX is enabled we'll
6532 * handle it just fine, but there's still no point in allowing
6533 * a ring fd as it doesn't support regular read/write anyway.
6534 */
6535 if (file->f_op == &io_uring_fops) {
6536 fput(file);
6537 break;
6538 }
6539 ret = 0;
6540 table->files[index] = file;
6541 }
6542
6543 if (ret) {
6544 for (i = 0; i < ctx->nr_user_files; i++) {
6545 file = io_file_from_index(ctx, i);
6546 if (file)
6547 fput(file);
6548 }
6549 for (i = 0; i < nr_tables; i++)
6550 kfree(ctx->file_data->table[i].files);
6551
6552 kfree(ctx->file_data->table);
6553 kfree(ctx->file_data);
6554 ctx->file_data = NULL;
6555 ctx->nr_user_files = 0;
6556 return ret;
6557 }
6558
6559 ret = io_sqe_files_scm(ctx);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006560 if (ret) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006561 io_sqe_files_unregister(ctx);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006562 return ret;
6563 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07006564
Xiaoguang Wang05589552020-03-31 14:05:18 +08006565 ref_node = alloc_fixed_file_ref_node(ctx);
6566 if (IS_ERR(ref_node)) {
6567 io_sqe_files_unregister(ctx);
6568 return PTR_ERR(ref_node);
6569 }
6570
6571 ctx->file_data->cur_refs = &ref_node->refs;
6572 spin_lock_irqsave(&ctx->file_data->lock, flags);
6573 list_add(&ref_node->node, &ctx->file_data->ref_list);
6574 spin_unlock_irqrestore(&ctx->file_data->lock, flags);
6575 percpu_ref_get(&ctx->file_data->refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006576 return ret;
6577}
6578
Jens Axboec3a31e62019-10-03 13:59:56 -06006579static int io_sqe_file_register(struct io_ring_ctx *ctx, struct file *file,
6580 int index)
6581{
6582#if defined(CONFIG_UNIX)
6583 struct sock *sock = ctx->ring_sock->sk;
6584 struct sk_buff_head *head = &sock->sk_receive_queue;
6585 struct sk_buff *skb;
6586
6587 /*
6588 * See if we can merge this file into an existing skb SCM_RIGHTS
6589 * file set. If there's no room, fall back to allocating a new skb
6590 * and filling it in.
6591 */
6592 spin_lock_irq(&head->lock);
6593 skb = skb_peek(head);
6594 if (skb) {
6595 struct scm_fp_list *fpl = UNIXCB(skb).fp;
6596
6597 if (fpl->count < SCM_MAX_FD) {
6598 __skb_unlink(skb, head);
6599 spin_unlock_irq(&head->lock);
6600 fpl->fp[fpl->count] = get_file(file);
6601 unix_inflight(fpl->user, fpl->fp[fpl->count]);
6602 fpl->count++;
6603 spin_lock_irq(&head->lock);
6604 __skb_queue_head(head, skb);
6605 } else {
6606 skb = NULL;
6607 }
6608 }
6609 spin_unlock_irq(&head->lock);
6610
6611 if (skb) {
6612 fput(file);
6613 return 0;
6614 }
6615
6616 return __io_sqe_files_scm(ctx, 1, index);
6617#else
6618 return 0;
6619#endif
6620}
6621
Hillf Dantona5318d32020-03-23 17:47:15 +08006622static int io_queue_file_removal(struct fixed_file_data *data,
Xiaoguang Wang05589552020-03-31 14:05:18 +08006623 struct file *file)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006624{
Hillf Dantona5318d32020-03-23 17:47:15 +08006625 struct io_file_put *pfile;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006626 struct percpu_ref *refs = data->cur_refs;
6627 struct fixed_file_ref_node *ref_node;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006628
Jens Axboe05f3fb32019-12-09 11:22:50 -07006629 pfile = kzalloc(sizeof(*pfile), GFP_KERNEL);
Hillf Dantona5318d32020-03-23 17:47:15 +08006630 if (!pfile)
6631 return -ENOMEM;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006632
Xiaoguang Wang05589552020-03-31 14:05:18 +08006633 ref_node = container_of(refs, struct fixed_file_ref_node, refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006634 pfile->file = file;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006635 list_add(&pfile->list, &ref_node->file_list);
6636
Hillf Dantona5318d32020-03-23 17:47:15 +08006637 return 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006638}
6639
6640static int __io_sqe_files_update(struct io_ring_ctx *ctx,
6641 struct io_uring_files_update *up,
6642 unsigned nr_args)
6643{
6644 struct fixed_file_data *data = ctx->file_data;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006645 struct fixed_file_ref_node *ref_node;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006646 struct file *file;
Jens Axboec3a31e62019-10-03 13:59:56 -06006647 __s32 __user *fds;
6648 int fd, i, err;
6649 __u32 done;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006650 unsigned long flags;
6651 bool needs_switch = false;
Jens Axboec3a31e62019-10-03 13:59:56 -06006652
Jens Axboe05f3fb32019-12-09 11:22:50 -07006653 if (check_add_overflow(up->offset, nr_args, &done))
Jens Axboec3a31e62019-10-03 13:59:56 -06006654 return -EOVERFLOW;
6655 if (done > ctx->nr_user_files)
6656 return -EINVAL;
6657
Xiaoguang Wang05589552020-03-31 14:05:18 +08006658 ref_node = alloc_fixed_file_ref_node(ctx);
6659 if (IS_ERR(ref_node))
6660 return PTR_ERR(ref_node);
6661
Jens Axboec3a31e62019-10-03 13:59:56 -06006662 done = 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006663 fds = u64_to_user_ptr(up->fds);
Jens Axboec3a31e62019-10-03 13:59:56 -06006664 while (nr_args) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006665 struct fixed_file_table *table;
6666 unsigned index;
6667
Jens Axboec3a31e62019-10-03 13:59:56 -06006668 err = 0;
6669 if (copy_from_user(&fd, &fds[done], sizeof(fd))) {
6670 err = -EFAULT;
6671 break;
6672 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07006673 i = array_index_nospec(up->offset, ctx->nr_user_files);
6674 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
Jens Axboe65e19f52019-10-26 07:20:21 -06006675 index = i & IORING_FILE_TABLE_MASK;
6676 if (table->files[index]) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006677 file = io_file_from_index(ctx, index);
Hillf Dantona5318d32020-03-23 17:47:15 +08006678 err = io_queue_file_removal(data, file);
6679 if (err)
6680 break;
Jens Axboe65e19f52019-10-26 07:20:21 -06006681 table->files[index] = NULL;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006682 needs_switch = true;
Jens Axboec3a31e62019-10-03 13:59:56 -06006683 }
6684 if (fd != -1) {
Jens Axboec3a31e62019-10-03 13:59:56 -06006685 file = fget(fd);
6686 if (!file) {
6687 err = -EBADF;
6688 break;
6689 }
6690 /*
6691 * Don't allow io_uring instances to be registered. If
6692 * UNIX isn't enabled, then this causes a reference
6693 * cycle and this instance can never get freed. If UNIX
6694 * is enabled we'll handle it just fine, but there's
6695 * still no point in allowing a ring fd as it doesn't
6696 * support regular read/write anyway.
6697 */
6698 if (file->f_op == &io_uring_fops) {
6699 fput(file);
6700 err = -EBADF;
6701 break;
6702 }
Jens Axboe65e19f52019-10-26 07:20:21 -06006703 table->files[index] = file;
Jens Axboec3a31e62019-10-03 13:59:56 -06006704 err = io_sqe_file_register(ctx, file, i);
6705 if (err)
6706 break;
6707 }
6708 nr_args--;
6709 done++;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006710 up->offset++;
6711 }
6712
Xiaoguang Wang05589552020-03-31 14:05:18 +08006713 if (needs_switch) {
6714 percpu_ref_kill(data->cur_refs);
6715 spin_lock_irqsave(&data->lock, flags);
6716 list_add(&ref_node->node, &data->ref_list);
6717 data->cur_refs = &ref_node->refs;
6718 spin_unlock_irqrestore(&data->lock, flags);
6719 percpu_ref_get(&ctx->file_data->refs);
6720 } else
6721 destroy_fixed_file_ref_node(ref_node);
Jens Axboec3a31e62019-10-03 13:59:56 -06006722
6723 return done ? done : err;
6724}
Xiaoguang Wang05589552020-03-31 14:05:18 +08006725
Jens Axboe05f3fb32019-12-09 11:22:50 -07006726static int io_sqe_files_update(struct io_ring_ctx *ctx, void __user *arg,
6727 unsigned nr_args)
6728{
6729 struct io_uring_files_update up;
6730
6731 if (!ctx->file_data)
6732 return -ENXIO;
6733 if (!nr_args)
6734 return -EINVAL;
6735 if (copy_from_user(&up, arg, sizeof(up)))
6736 return -EFAULT;
6737 if (up.resv)
6738 return -EINVAL;
6739
6740 return __io_sqe_files_update(ctx, &up, nr_args);
6741}
Jens Axboec3a31e62019-10-03 13:59:56 -06006742
Pavel Begunkove9fd9392020-03-04 16:14:12 +03006743static void io_free_work(struct io_wq_work *work)
Jens Axboe7d723062019-11-12 22:31:31 -07006744{
6745 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
6746
Pavel Begunkove9fd9392020-03-04 16:14:12 +03006747 /* Consider that io_steal_work() relies on this ref */
Jens Axboe7d723062019-11-12 22:31:31 -07006748 io_put_req(req);
6749}
6750
Pavel Begunkov24369c22020-01-28 03:15:48 +03006751static int io_init_wq_offload(struct io_ring_ctx *ctx,
6752 struct io_uring_params *p)
6753{
6754 struct io_wq_data data;
6755 struct fd f;
6756 struct io_ring_ctx *ctx_attach;
6757 unsigned int concurrency;
6758 int ret = 0;
6759
6760 data.user = ctx->user;
Pavel Begunkove9fd9392020-03-04 16:14:12 +03006761 data.free_work = io_free_work;
Pavel Begunkov24369c22020-01-28 03:15:48 +03006762
6763 if (!(p->flags & IORING_SETUP_ATTACH_WQ)) {
6764 /* Do QD, or 4 * CPUS, whatever is smallest */
6765 concurrency = min(ctx->sq_entries, 4 * num_online_cpus());
6766
6767 ctx->io_wq = io_wq_create(concurrency, &data);
6768 if (IS_ERR(ctx->io_wq)) {
6769 ret = PTR_ERR(ctx->io_wq);
6770 ctx->io_wq = NULL;
6771 }
6772 return ret;
6773 }
6774
6775 f = fdget(p->wq_fd);
6776 if (!f.file)
6777 return -EBADF;
6778
6779 if (f.file->f_op != &io_uring_fops) {
6780 ret = -EINVAL;
6781 goto out_fput;
6782 }
6783
6784 ctx_attach = f.file->private_data;
6785 /* @io_wq is protected by holding the fd */
6786 if (!io_wq_get(ctx_attach->io_wq, &data)) {
6787 ret = -EINVAL;
6788 goto out_fput;
6789 }
6790
6791 ctx->io_wq = ctx_attach->io_wq;
6792out_fput:
6793 fdput(f);
6794 return ret;
6795}
6796
Jens Axboe6c271ce2019-01-10 11:22:30 -07006797static int io_sq_offload_start(struct io_ring_ctx *ctx,
6798 struct io_uring_params *p)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006799{
6800 int ret;
6801
Jens Axboe6c271ce2019-01-10 11:22:30 -07006802 init_waitqueue_head(&ctx->sqo_wait);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006803 mmgrab(current->mm);
6804 ctx->sqo_mm = current->mm;
6805
Jens Axboe6c271ce2019-01-10 11:22:30 -07006806 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboe3ec482d2019-04-08 10:51:01 -06006807 ret = -EPERM;
6808 if (!capable(CAP_SYS_ADMIN))
6809 goto err;
6810
Jens Axboe917257d2019-04-13 09:28:55 -06006811 ctx->sq_thread_idle = msecs_to_jiffies(p->sq_thread_idle);
6812 if (!ctx->sq_thread_idle)
6813 ctx->sq_thread_idle = HZ;
6814
Jens Axboe6c271ce2019-01-10 11:22:30 -07006815 if (p->flags & IORING_SETUP_SQ_AFF) {
Jens Axboe44a9bd12019-05-14 20:00:30 -06006816 int cpu = p->sq_thread_cpu;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006817
Jens Axboe917257d2019-04-13 09:28:55 -06006818 ret = -EINVAL;
Jens Axboe44a9bd12019-05-14 20:00:30 -06006819 if (cpu >= nr_cpu_ids)
6820 goto err;
Shenghui Wang7889f442019-05-07 16:03:19 +08006821 if (!cpu_online(cpu))
Jens Axboe917257d2019-04-13 09:28:55 -06006822 goto err;
6823
Jens Axboe6c271ce2019-01-10 11:22:30 -07006824 ctx->sqo_thread = kthread_create_on_cpu(io_sq_thread,
6825 ctx, cpu,
6826 "io_uring-sq");
6827 } else {
6828 ctx->sqo_thread = kthread_create(io_sq_thread, ctx,
6829 "io_uring-sq");
6830 }
6831 if (IS_ERR(ctx->sqo_thread)) {
6832 ret = PTR_ERR(ctx->sqo_thread);
6833 ctx->sqo_thread = NULL;
6834 goto err;
6835 }
6836 wake_up_process(ctx->sqo_thread);
6837 } else if (p->flags & IORING_SETUP_SQ_AFF) {
6838 /* Can't have SQ_AFF without SQPOLL */
6839 ret = -EINVAL;
6840 goto err;
6841 }
6842
Pavel Begunkov24369c22020-01-28 03:15:48 +03006843 ret = io_init_wq_offload(ctx, p);
6844 if (ret)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006845 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006846
6847 return 0;
6848err:
Jens Axboe54a91f32019-09-10 09:15:04 -06006849 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006850 mmdrop(ctx->sqo_mm);
6851 ctx->sqo_mm = NULL;
6852 return ret;
6853}
6854
6855static void io_unaccount_mem(struct user_struct *user, unsigned long nr_pages)
6856{
6857 atomic_long_sub(nr_pages, &user->locked_vm);
6858}
6859
6860static int io_account_mem(struct user_struct *user, unsigned long nr_pages)
6861{
6862 unsigned long page_limit, cur_pages, new_pages;
6863
6864 /* Don't allow more pages than we can safely lock */
6865 page_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
6866
6867 do {
6868 cur_pages = atomic_long_read(&user->locked_vm);
6869 new_pages = cur_pages + nr_pages;
6870 if (new_pages > page_limit)
6871 return -ENOMEM;
6872 } while (atomic_long_cmpxchg(&user->locked_vm, cur_pages,
6873 new_pages) != cur_pages);
6874
6875 return 0;
6876}
6877
6878static void io_mem_free(void *ptr)
6879{
Mark Rutland52e04ef2019-04-30 17:30:21 +01006880 struct page *page;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006881
Mark Rutland52e04ef2019-04-30 17:30:21 +01006882 if (!ptr)
6883 return;
6884
6885 page = virt_to_head_page(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006886 if (put_page_testzero(page))
6887 free_compound_page(page);
6888}
6889
6890static void *io_mem_alloc(size_t size)
6891{
6892 gfp_t gfp_flags = GFP_KERNEL | __GFP_ZERO | __GFP_NOWARN | __GFP_COMP |
6893 __GFP_NORETRY;
6894
6895 return (void *) __get_free_pages(gfp_flags, get_order(size));
6896}
6897
Hristo Venev75b28af2019-08-26 17:23:46 +00006898static unsigned long rings_size(unsigned sq_entries, unsigned cq_entries,
6899 size_t *sq_offset)
6900{
6901 struct io_rings *rings;
6902 size_t off, sq_array_size;
6903
6904 off = struct_size(rings, cqes, cq_entries);
6905 if (off == SIZE_MAX)
6906 return SIZE_MAX;
6907
6908#ifdef CONFIG_SMP
6909 off = ALIGN(off, SMP_CACHE_BYTES);
6910 if (off == 0)
6911 return SIZE_MAX;
6912#endif
6913
6914 sq_array_size = array_size(sizeof(u32), sq_entries);
6915 if (sq_array_size == SIZE_MAX)
6916 return SIZE_MAX;
6917
6918 if (check_add_overflow(off, sq_array_size, &off))
6919 return SIZE_MAX;
6920
6921 if (sq_offset)
6922 *sq_offset = off;
6923
6924 return off;
6925}
6926
Jens Axboe2b188cc2019-01-07 10:46:33 -07006927static unsigned long ring_pages(unsigned sq_entries, unsigned cq_entries)
6928{
Hristo Venev75b28af2019-08-26 17:23:46 +00006929 size_t pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006930
Hristo Venev75b28af2019-08-26 17:23:46 +00006931 pages = (size_t)1 << get_order(
6932 rings_size(sq_entries, cq_entries, NULL));
6933 pages += (size_t)1 << get_order(
6934 array_size(sizeof(struct io_uring_sqe), sq_entries));
Jens Axboe2b188cc2019-01-07 10:46:33 -07006935
Hristo Venev75b28af2019-08-26 17:23:46 +00006936 return pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006937}
6938
Jens Axboeedafcce2019-01-09 09:16:05 -07006939static int io_sqe_buffer_unregister(struct io_ring_ctx *ctx)
6940{
6941 int i, j;
6942
6943 if (!ctx->user_bufs)
6944 return -ENXIO;
6945
6946 for (i = 0; i < ctx->nr_user_bufs; i++) {
6947 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
6948
6949 for (j = 0; j < imu->nr_bvecs; j++)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08006950 unpin_user_page(imu->bvec[j].bv_page);
Jens Axboeedafcce2019-01-09 09:16:05 -07006951
6952 if (ctx->account_mem)
6953 io_unaccount_mem(ctx->user, imu->nr_bvecs);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006954 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07006955 imu->nr_bvecs = 0;
6956 }
6957
6958 kfree(ctx->user_bufs);
6959 ctx->user_bufs = NULL;
6960 ctx->nr_user_bufs = 0;
6961 return 0;
6962}
6963
6964static int io_copy_iov(struct io_ring_ctx *ctx, struct iovec *dst,
6965 void __user *arg, unsigned index)
6966{
6967 struct iovec __user *src;
6968
6969#ifdef CONFIG_COMPAT
6970 if (ctx->compat) {
6971 struct compat_iovec __user *ciovs;
6972 struct compat_iovec ciov;
6973
6974 ciovs = (struct compat_iovec __user *) arg;
6975 if (copy_from_user(&ciov, &ciovs[index], sizeof(ciov)))
6976 return -EFAULT;
6977
Jens Axboed55e5f52019-12-11 16:12:15 -07006978 dst->iov_base = u64_to_user_ptr((u64)ciov.iov_base);
Jens Axboeedafcce2019-01-09 09:16:05 -07006979 dst->iov_len = ciov.iov_len;
6980 return 0;
6981 }
6982#endif
6983 src = (struct iovec __user *) arg;
6984 if (copy_from_user(dst, &src[index], sizeof(*dst)))
6985 return -EFAULT;
6986 return 0;
6987}
6988
6989static int io_sqe_buffer_register(struct io_ring_ctx *ctx, void __user *arg,
6990 unsigned nr_args)
6991{
6992 struct vm_area_struct **vmas = NULL;
6993 struct page **pages = NULL;
6994 int i, j, got_pages = 0;
6995 int ret = -EINVAL;
6996
6997 if (ctx->user_bufs)
6998 return -EBUSY;
6999 if (!nr_args || nr_args > UIO_MAXIOV)
7000 return -EINVAL;
7001
7002 ctx->user_bufs = kcalloc(nr_args, sizeof(struct io_mapped_ubuf),
7003 GFP_KERNEL);
7004 if (!ctx->user_bufs)
7005 return -ENOMEM;
7006
7007 for (i = 0; i < nr_args; i++) {
7008 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
7009 unsigned long off, start, end, ubuf;
7010 int pret, nr_pages;
7011 struct iovec iov;
7012 size_t size;
7013
7014 ret = io_copy_iov(ctx, &iov, arg, i);
7015 if (ret)
Pavel Begunkova2786822019-05-26 12:35:47 +03007016 goto err;
Jens Axboeedafcce2019-01-09 09:16:05 -07007017
7018 /*
7019 * Don't impose further limits on the size and buffer
7020 * constraints here, we'll -EINVAL later when IO is
7021 * submitted if they are wrong.
7022 */
7023 ret = -EFAULT;
7024 if (!iov.iov_base || !iov.iov_len)
7025 goto err;
7026
7027 /* arbitrary limit, but we need something */
7028 if (iov.iov_len > SZ_1G)
7029 goto err;
7030
7031 ubuf = (unsigned long) iov.iov_base;
7032 end = (ubuf + iov.iov_len + PAGE_SIZE - 1) >> PAGE_SHIFT;
7033 start = ubuf >> PAGE_SHIFT;
7034 nr_pages = end - start;
7035
7036 if (ctx->account_mem) {
7037 ret = io_account_mem(ctx->user, nr_pages);
7038 if (ret)
7039 goto err;
7040 }
7041
7042 ret = 0;
7043 if (!pages || nr_pages > got_pages) {
7044 kfree(vmas);
7045 kfree(pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007046 pages = kvmalloc_array(nr_pages, sizeof(struct page *),
Jens Axboeedafcce2019-01-09 09:16:05 -07007047 GFP_KERNEL);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007048 vmas = kvmalloc_array(nr_pages,
Jens Axboeedafcce2019-01-09 09:16:05 -07007049 sizeof(struct vm_area_struct *),
7050 GFP_KERNEL);
7051 if (!pages || !vmas) {
7052 ret = -ENOMEM;
7053 if (ctx->account_mem)
7054 io_unaccount_mem(ctx->user, nr_pages);
7055 goto err;
7056 }
7057 got_pages = nr_pages;
7058 }
7059
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007060 imu->bvec = kvmalloc_array(nr_pages, sizeof(struct bio_vec),
Jens Axboeedafcce2019-01-09 09:16:05 -07007061 GFP_KERNEL);
7062 ret = -ENOMEM;
7063 if (!imu->bvec) {
7064 if (ctx->account_mem)
7065 io_unaccount_mem(ctx->user, nr_pages);
7066 goto err;
7067 }
7068
7069 ret = 0;
7070 down_read(&current->mm->mmap_sem);
John Hubbard2113b052020-01-30 22:13:13 -08007071 pret = pin_user_pages(ubuf, nr_pages,
Ira Weiny932f4a62019-05-13 17:17:03 -07007072 FOLL_WRITE | FOLL_LONGTERM,
7073 pages, vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007074 if (pret == nr_pages) {
7075 /* don't support file backed memory */
7076 for (j = 0; j < nr_pages; j++) {
7077 struct vm_area_struct *vma = vmas[j];
7078
7079 if (vma->vm_file &&
7080 !is_file_hugepages(vma->vm_file)) {
7081 ret = -EOPNOTSUPP;
7082 break;
7083 }
7084 }
7085 } else {
7086 ret = pret < 0 ? pret : -EFAULT;
7087 }
7088 up_read(&current->mm->mmap_sem);
7089 if (ret) {
7090 /*
7091 * if we did partial map, or found file backed vmas,
7092 * release any pages we did get
7093 */
John Hubbard27c4d3a2019-08-04 19:32:06 -07007094 if (pret > 0)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08007095 unpin_user_pages(pages, pret);
Jens Axboeedafcce2019-01-09 09:16:05 -07007096 if (ctx->account_mem)
7097 io_unaccount_mem(ctx->user, nr_pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007098 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07007099 goto err;
7100 }
7101
7102 off = ubuf & ~PAGE_MASK;
7103 size = iov.iov_len;
7104 for (j = 0; j < nr_pages; j++) {
7105 size_t vec_len;
7106
7107 vec_len = min_t(size_t, size, PAGE_SIZE - off);
7108 imu->bvec[j].bv_page = pages[j];
7109 imu->bvec[j].bv_len = vec_len;
7110 imu->bvec[j].bv_offset = off;
7111 off = 0;
7112 size -= vec_len;
7113 }
7114 /* store original address for later verification */
7115 imu->ubuf = ubuf;
7116 imu->len = iov.iov_len;
7117 imu->nr_bvecs = nr_pages;
7118
7119 ctx->nr_user_bufs++;
7120 }
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007121 kvfree(pages);
7122 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007123 return 0;
7124err:
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007125 kvfree(pages);
7126 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007127 io_sqe_buffer_unregister(ctx);
7128 return ret;
7129}
7130
Jens Axboe9b402842019-04-11 11:45:41 -06007131static int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg)
7132{
7133 __s32 __user *fds = arg;
7134 int fd;
7135
7136 if (ctx->cq_ev_fd)
7137 return -EBUSY;
7138
7139 if (copy_from_user(&fd, fds, sizeof(*fds)))
7140 return -EFAULT;
7141
7142 ctx->cq_ev_fd = eventfd_ctx_fdget(fd);
7143 if (IS_ERR(ctx->cq_ev_fd)) {
7144 int ret = PTR_ERR(ctx->cq_ev_fd);
7145 ctx->cq_ev_fd = NULL;
7146 return ret;
7147 }
7148
7149 return 0;
7150}
7151
7152static int io_eventfd_unregister(struct io_ring_ctx *ctx)
7153{
7154 if (ctx->cq_ev_fd) {
7155 eventfd_ctx_put(ctx->cq_ev_fd);
7156 ctx->cq_ev_fd = NULL;
7157 return 0;
7158 }
7159
7160 return -ENXIO;
7161}
7162
Jens Axboe5a2e7452020-02-23 16:23:11 -07007163static int __io_destroy_buffers(int id, void *p, void *data)
7164{
7165 struct io_ring_ctx *ctx = data;
7166 struct io_buffer *buf = p;
7167
Jens Axboe067524e2020-03-02 16:32:28 -07007168 __io_remove_buffers(ctx, buf, id, -1U);
Jens Axboe5a2e7452020-02-23 16:23:11 -07007169 return 0;
7170}
7171
7172static void io_destroy_buffers(struct io_ring_ctx *ctx)
7173{
7174 idr_for_each(&ctx->io_buffer_idr, __io_destroy_buffers, ctx);
7175 idr_destroy(&ctx->io_buffer_idr);
7176}
7177
Jens Axboe2b188cc2019-01-07 10:46:33 -07007178static void io_ring_ctx_free(struct io_ring_ctx *ctx)
7179{
Jens Axboe6b063142019-01-10 22:13:58 -07007180 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007181 if (ctx->sqo_mm)
7182 mmdrop(ctx->sqo_mm);
Jens Axboedef596e2019-01-09 08:59:42 -07007183
7184 io_iopoll_reap_events(ctx);
Jens Axboeedafcce2019-01-09 09:16:05 -07007185 io_sqe_buffer_unregister(ctx);
Jens Axboe6b063142019-01-10 22:13:58 -07007186 io_sqe_files_unregister(ctx);
Jens Axboe9b402842019-04-11 11:45:41 -06007187 io_eventfd_unregister(ctx);
Jens Axboe5a2e7452020-02-23 16:23:11 -07007188 io_destroy_buffers(ctx);
Jens Axboe41726c92020-02-23 13:11:42 -07007189 idr_destroy(&ctx->personality_idr);
Jens Axboedef596e2019-01-09 08:59:42 -07007190
Jens Axboe2b188cc2019-01-07 10:46:33 -07007191#if defined(CONFIG_UNIX)
Eric Biggers355e8d22019-06-12 14:58:43 -07007192 if (ctx->ring_sock) {
7193 ctx->ring_sock->file = NULL; /* so that iput() is called */
Jens Axboe2b188cc2019-01-07 10:46:33 -07007194 sock_release(ctx->ring_sock);
Eric Biggers355e8d22019-06-12 14:58:43 -07007195 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007196#endif
7197
Hristo Venev75b28af2019-08-26 17:23:46 +00007198 io_mem_free(ctx->rings);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007199 io_mem_free(ctx->sq_sqes);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007200
7201 percpu_ref_exit(&ctx->refs);
7202 if (ctx->account_mem)
7203 io_unaccount_mem(ctx->user,
7204 ring_pages(ctx->sq_entries, ctx->cq_entries));
7205 free_uid(ctx->user);
Jens Axboe181e4482019-11-25 08:52:30 -07007206 put_cred(ctx->creds);
Jens Axboe206aefd2019-11-07 18:27:42 -07007207 kfree(ctx->completions);
Jens Axboe78076bb2019-12-04 19:56:40 -07007208 kfree(ctx->cancel_hash);
Jens Axboe0ddf92e2019-11-08 08:52:53 -07007209 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007210 kfree(ctx);
7211}
7212
7213static __poll_t io_uring_poll(struct file *file, poll_table *wait)
7214{
7215 struct io_ring_ctx *ctx = file->private_data;
7216 __poll_t mask = 0;
7217
7218 poll_wait(file, &ctx->cq_wait, wait);
Stefan Bühler4f7067c2019-04-24 23:54:17 +02007219 /*
7220 * synchronizes with barrier from wq_has_sleeper call in
7221 * io_commit_cqring
7222 */
Jens Axboe2b188cc2019-01-07 10:46:33 -07007223 smp_rmb();
Hristo Venev75b28af2019-08-26 17:23:46 +00007224 if (READ_ONCE(ctx->rings->sq.tail) - ctx->cached_sq_head !=
7225 ctx->rings->sq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007226 mask |= EPOLLOUT | EPOLLWRNORM;
Stefano Garzarella63e5d812020-02-07 13:18:28 +01007227 if (io_cqring_events(ctx, false))
Jens Axboe2b188cc2019-01-07 10:46:33 -07007228 mask |= EPOLLIN | EPOLLRDNORM;
7229
7230 return mask;
7231}
7232
7233static int io_uring_fasync(int fd, struct file *file, int on)
7234{
7235 struct io_ring_ctx *ctx = file->private_data;
7236
7237 return fasync_helper(fd, file, on, &ctx->cq_fasync);
7238}
7239
Jens Axboe071698e2020-01-28 10:04:42 -07007240static int io_remove_personalities(int id, void *p, void *data)
7241{
7242 struct io_ring_ctx *ctx = data;
7243 const struct cred *cred;
7244
7245 cred = idr_remove(&ctx->personality_idr, id);
7246 if (cred)
7247 put_cred(cred);
7248 return 0;
7249}
7250
Jens Axboe2b188cc2019-01-07 10:46:33 -07007251static void io_ring_ctx_wait_and_kill(struct io_ring_ctx *ctx)
7252{
7253 mutex_lock(&ctx->uring_lock);
7254 percpu_ref_kill(&ctx->refs);
7255 mutex_unlock(&ctx->uring_lock);
7256
Jens Axboedf069d82020-02-04 16:48:34 -07007257 /*
7258 * Wait for sq thread to idle, if we have one. It won't spin on new
7259 * work after we've killed the ctx ref above. This is important to do
7260 * before we cancel existing commands, as the thread could otherwise
7261 * be queueing new work post that. If that's work we need to cancel,
7262 * it could cause shutdown to hang.
7263 */
7264 while (ctx->sqo_thread && !wq_has_sleeper(&ctx->sqo_wait))
7265 cpu_relax();
7266
Jens Axboe5262f562019-09-17 12:26:57 -06007267 io_kill_timeouts(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07007268 io_poll_remove_all(ctx);
Jens Axboe561fb042019-10-24 07:25:42 -06007269
7270 if (ctx->io_wq)
7271 io_wq_cancel_all(ctx->io_wq);
7272
Jens Axboedef596e2019-01-09 08:59:42 -07007273 io_iopoll_reap_events(ctx);
Jens Axboe15dff282019-11-13 09:09:23 -07007274 /* if we failed setting up the ctx, we might not have any rings */
7275 if (ctx->rings)
7276 io_cqring_overflow_flush(ctx, true);
Jens Axboe071698e2020-01-28 10:04:42 -07007277 idr_for_each(&ctx->personality_idr, io_remove_personalities, ctx);
Jens Axboe206aefd2019-11-07 18:27:42 -07007278 wait_for_completion(&ctx->completions[0]);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007279 io_ring_ctx_free(ctx);
7280}
7281
7282static int io_uring_release(struct inode *inode, struct file *file)
7283{
7284 struct io_ring_ctx *ctx = file->private_data;
7285
7286 file->private_data = NULL;
7287 io_ring_ctx_wait_and_kill(ctx);
7288 return 0;
7289}
7290
Jens Axboefcb323c2019-10-24 12:39:47 -06007291static void io_uring_cancel_files(struct io_ring_ctx *ctx,
7292 struct files_struct *files)
7293{
7294 struct io_kiocb *req;
7295 DEFINE_WAIT(wait);
7296
7297 while (!list_empty_careful(&ctx->inflight_list)) {
Jens Axboe768134d2019-11-10 20:30:53 -07007298 struct io_kiocb *cancel_req = NULL;
Jens Axboefcb323c2019-10-24 12:39:47 -06007299
7300 spin_lock_irq(&ctx->inflight_lock);
7301 list_for_each_entry(req, &ctx->inflight_list, inflight_entry) {
Jens Axboe768134d2019-11-10 20:30:53 -07007302 if (req->work.files != files)
7303 continue;
7304 /* req is being completed, ignore */
7305 if (!refcount_inc_not_zero(&req->refs))
7306 continue;
7307 cancel_req = req;
7308 break;
Jens Axboefcb323c2019-10-24 12:39:47 -06007309 }
Jens Axboe768134d2019-11-10 20:30:53 -07007310 if (cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06007311 prepare_to_wait(&ctx->inflight_wait, &wait,
Jens Axboe768134d2019-11-10 20:30:53 -07007312 TASK_UNINTERRUPTIBLE);
Jens Axboefcb323c2019-10-24 12:39:47 -06007313 spin_unlock_irq(&ctx->inflight_lock);
7314
Jens Axboe768134d2019-11-10 20:30:53 -07007315 /* We need to keep going until we don't find a matching req */
7316 if (!cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06007317 break;
Bob Liu2f6d9b92019-11-13 18:06:24 +08007318
Jens Axboe2ca10252020-02-13 17:17:35 -07007319 if (cancel_req->flags & REQ_F_OVERFLOW) {
7320 spin_lock_irq(&ctx->completion_lock);
7321 list_del(&cancel_req->list);
7322 cancel_req->flags &= ~REQ_F_OVERFLOW;
7323 if (list_empty(&ctx->cq_overflow_list)) {
7324 clear_bit(0, &ctx->sq_check_overflow);
7325 clear_bit(0, &ctx->cq_check_overflow);
7326 }
7327 spin_unlock_irq(&ctx->completion_lock);
7328
7329 WRITE_ONCE(ctx->rings->cq_overflow,
7330 atomic_inc_return(&ctx->cached_cq_overflow));
7331
7332 /*
7333 * Put inflight ref and overflow ref. If that's
7334 * all we had, then we're done with this request.
7335 */
7336 if (refcount_sub_and_test(2, &cancel_req->refs)) {
7337 io_put_req(cancel_req);
7338 continue;
7339 }
7340 }
7341
Bob Liu2f6d9b92019-11-13 18:06:24 +08007342 io_wq_cancel_work(ctx->io_wq, &cancel_req->work);
7343 io_put_req(cancel_req);
Jens Axboefcb323c2019-10-24 12:39:47 -06007344 schedule();
7345 }
Jens Axboe768134d2019-11-10 20:30:53 -07007346 finish_wait(&ctx->inflight_wait, &wait);
Jens Axboefcb323c2019-10-24 12:39:47 -06007347}
7348
7349static int io_uring_flush(struct file *file, void *data)
7350{
7351 struct io_ring_ctx *ctx = file->private_data;
7352
7353 io_uring_cancel_files(ctx, data);
Jens Axboe6ab23142020-02-08 20:23:59 -07007354
7355 /*
7356 * If the task is going away, cancel work it may have pending
7357 */
7358 if (fatal_signal_pending(current) || (current->flags & PF_EXITING))
7359 io_wq_cancel_pid(ctx->io_wq, task_pid_vnr(current));
7360
Jens Axboefcb323c2019-10-24 12:39:47 -06007361 return 0;
7362}
7363
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007364static void *io_uring_validate_mmap_request(struct file *file,
7365 loff_t pgoff, size_t sz)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007366{
Jens Axboe2b188cc2019-01-07 10:46:33 -07007367 struct io_ring_ctx *ctx = file->private_data;
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007368 loff_t offset = pgoff << PAGE_SHIFT;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007369 struct page *page;
7370 void *ptr;
7371
7372 switch (offset) {
7373 case IORING_OFF_SQ_RING:
Hristo Venev75b28af2019-08-26 17:23:46 +00007374 case IORING_OFF_CQ_RING:
7375 ptr = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007376 break;
7377 case IORING_OFF_SQES:
7378 ptr = ctx->sq_sqes;
7379 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007380 default:
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007381 return ERR_PTR(-EINVAL);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007382 }
7383
7384 page = virt_to_head_page(ptr);
Matthew Wilcox (Oracle)a50b8542019-09-23 15:34:25 -07007385 if (sz > page_size(page))
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007386 return ERR_PTR(-EINVAL);
7387
7388 return ptr;
7389}
7390
7391#ifdef CONFIG_MMU
7392
7393static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
7394{
7395 size_t sz = vma->vm_end - vma->vm_start;
7396 unsigned long pfn;
7397 void *ptr;
7398
7399 ptr = io_uring_validate_mmap_request(file, vma->vm_pgoff, sz);
7400 if (IS_ERR(ptr))
7401 return PTR_ERR(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007402
7403 pfn = virt_to_phys(ptr) >> PAGE_SHIFT;
7404 return remap_pfn_range(vma, vma->vm_start, pfn, sz, vma->vm_page_prot);
7405}
7406
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007407#else /* !CONFIG_MMU */
7408
7409static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
7410{
7411 return vma->vm_flags & (VM_SHARED | VM_MAYSHARE) ? 0 : -EINVAL;
7412}
7413
7414static unsigned int io_uring_nommu_mmap_capabilities(struct file *file)
7415{
7416 return NOMMU_MAP_DIRECT | NOMMU_MAP_READ | NOMMU_MAP_WRITE;
7417}
7418
7419static unsigned long io_uring_nommu_get_unmapped_area(struct file *file,
7420 unsigned long addr, unsigned long len,
7421 unsigned long pgoff, unsigned long flags)
7422{
7423 void *ptr;
7424
7425 ptr = io_uring_validate_mmap_request(file, pgoff, len);
7426 if (IS_ERR(ptr))
7427 return PTR_ERR(ptr);
7428
7429 return (unsigned long) ptr;
7430}
7431
7432#endif /* !CONFIG_MMU */
7433
Jens Axboe2b188cc2019-01-07 10:46:33 -07007434SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
7435 u32, min_complete, u32, flags, const sigset_t __user *, sig,
7436 size_t, sigsz)
7437{
7438 struct io_ring_ctx *ctx;
7439 long ret = -EBADF;
7440 int submitted = 0;
7441 struct fd f;
7442
Jens Axboeb41e9852020-02-17 09:52:41 -07007443 if (current->task_works)
7444 task_work_run();
7445
Jens Axboe6c271ce2019-01-10 11:22:30 -07007446 if (flags & ~(IORING_ENTER_GETEVENTS | IORING_ENTER_SQ_WAKEUP))
Jens Axboe2b188cc2019-01-07 10:46:33 -07007447 return -EINVAL;
7448
7449 f = fdget(fd);
7450 if (!f.file)
7451 return -EBADF;
7452
7453 ret = -EOPNOTSUPP;
7454 if (f.file->f_op != &io_uring_fops)
7455 goto out_fput;
7456
7457 ret = -ENXIO;
7458 ctx = f.file->private_data;
7459 if (!percpu_ref_tryget(&ctx->refs))
7460 goto out_fput;
7461
Jens Axboe6c271ce2019-01-10 11:22:30 -07007462 /*
7463 * For SQ polling, the thread will do all submissions and completions.
7464 * Just return the requested submit count, and wake the thread if
7465 * we were asked to.
7466 */
Jens Axboeb2a9ead2019-09-12 14:19:16 -06007467 ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007468 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboec1edbf52019-11-10 16:56:04 -07007469 if (!list_empty_careful(&ctx->cq_overflow_list))
7470 io_cqring_overflow_flush(ctx, false);
Jens Axboe6c271ce2019-01-10 11:22:30 -07007471 if (flags & IORING_ENTER_SQ_WAKEUP)
7472 wake_up(&ctx->sqo_wait);
7473 submitted = to_submit;
Jens Axboeb2a9ead2019-09-12 14:19:16 -06007474 } else if (to_submit) {
Pavel Begunkovae9428c2019-11-06 00:22:14 +03007475 struct mm_struct *cur_mm;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007476
7477 mutex_lock(&ctx->uring_lock);
Pavel Begunkovae9428c2019-11-06 00:22:14 +03007478 /* already have mm, so io_submit_sqes() won't try to grab it */
7479 cur_mm = ctx->sqo_mm;
7480 submitted = io_submit_sqes(ctx, to_submit, f.file, fd,
7481 &cur_mm, false);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007482 mutex_unlock(&ctx->uring_lock);
Pavel Begunkov7c504e652019-12-18 19:53:45 +03007483
7484 if (submitted != to_submit)
7485 goto out;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007486 }
7487 if (flags & IORING_ENTER_GETEVENTS) {
Jens Axboedef596e2019-01-09 08:59:42 -07007488 unsigned nr_events = 0;
7489
Jens Axboe2b188cc2019-01-07 10:46:33 -07007490 min_complete = min(min_complete, ctx->cq_entries);
7491
Xiaoguang Wang32b22442020-03-11 09:26:09 +08007492 /*
7493 * When SETUP_IOPOLL and SETUP_SQPOLL are both enabled, user
7494 * space applications don't need to do io completion events
7495 * polling again, they can rely on io_sq_thread to do polling
7496 * work, which can reduce cpu usage and uring_lock contention.
7497 */
7498 if (ctx->flags & IORING_SETUP_IOPOLL &&
7499 !(ctx->flags & IORING_SETUP_SQPOLL)) {
Jens Axboedef596e2019-01-09 08:59:42 -07007500 ret = io_iopoll_check(ctx, &nr_events, min_complete);
Jens Axboedef596e2019-01-09 08:59:42 -07007501 } else {
7502 ret = io_cqring_wait(ctx, min_complete, sig, sigsz);
7503 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007504 }
7505
Pavel Begunkov7c504e652019-12-18 19:53:45 +03007506out:
Pavel Begunkov6805b322019-10-08 02:18:42 +03007507 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007508out_fput:
7509 fdput(f);
7510 return submitted ? submitted : ret;
7511}
7512
Tobias Klauserbebdb652020-02-26 18:38:32 +01007513#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -07007514static int io_uring_show_cred(int id, void *p, void *data)
7515{
7516 const struct cred *cred = p;
7517 struct seq_file *m = data;
7518 struct user_namespace *uns = seq_user_ns(m);
7519 struct group_info *gi;
7520 kernel_cap_t cap;
7521 unsigned __capi;
7522 int g;
7523
7524 seq_printf(m, "%5d\n", id);
7525 seq_put_decimal_ull(m, "\tUid:\t", from_kuid_munged(uns, cred->uid));
7526 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->euid));
7527 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->suid));
7528 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->fsuid));
7529 seq_put_decimal_ull(m, "\n\tGid:\t", from_kgid_munged(uns, cred->gid));
7530 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->egid));
7531 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->sgid));
7532 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->fsgid));
7533 seq_puts(m, "\n\tGroups:\t");
7534 gi = cred->group_info;
7535 for (g = 0; g < gi->ngroups; g++) {
7536 seq_put_decimal_ull(m, g ? " " : "",
7537 from_kgid_munged(uns, gi->gid[g]));
7538 }
7539 seq_puts(m, "\n\tCapEff:\t");
7540 cap = cred->cap_effective;
7541 CAP_FOR_EACH_U32(__capi)
7542 seq_put_hex_ll(m, NULL, cap.cap[CAP_LAST_U32 - __capi], 8);
7543 seq_putc(m, '\n');
7544 return 0;
7545}
7546
7547static void __io_uring_show_fdinfo(struct io_ring_ctx *ctx, struct seq_file *m)
7548{
7549 int i;
7550
7551 mutex_lock(&ctx->uring_lock);
7552 seq_printf(m, "UserFiles:\t%u\n", ctx->nr_user_files);
7553 for (i = 0; i < ctx->nr_user_files; i++) {
7554 struct fixed_file_table *table;
7555 struct file *f;
7556
7557 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
7558 f = table->files[i & IORING_FILE_TABLE_MASK];
7559 if (f)
7560 seq_printf(m, "%5u: %s\n", i, file_dentry(f)->d_iname);
7561 else
7562 seq_printf(m, "%5u: <none>\n", i);
7563 }
7564 seq_printf(m, "UserBufs:\t%u\n", ctx->nr_user_bufs);
7565 for (i = 0; i < ctx->nr_user_bufs; i++) {
7566 struct io_mapped_ubuf *buf = &ctx->user_bufs[i];
7567
7568 seq_printf(m, "%5u: 0x%llx/%u\n", i, buf->ubuf,
7569 (unsigned int) buf->len);
7570 }
7571 if (!idr_is_empty(&ctx->personality_idr)) {
7572 seq_printf(m, "Personalities:\n");
7573 idr_for_each(&ctx->personality_idr, io_uring_show_cred, m);
7574 }
Jens Axboed7718a92020-02-14 22:23:12 -07007575 seq_printf(m, "PollList:\n");
7576 spin_lock_irq(&ctx->completion_lock);
7577 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
7578 struct hlist_head *list = &ctx->cancel_hash[i];
7579 struct io_kiocb *req;
7580
7581 hlist_for_each_entry(req, list, hash_node)
7582 seq_printf(m, " op=%d, task_works=%d\n", req->opcode,
7583 req->task->task_works != NULL);
7584 }
7585 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe87ce9552020-01-30 08:25:34 -07007586 mutex_unlock(&ctx->uring_lock);
7587}
7588
7589static void io_uring_show_fdinfo(struct seq_file *m, struct file *f)
7590{
7591 struct io_ring_ctx *ctx = f->private_data;
7592
7593 if (percpu_ref_tryget(&ctx->refs)) {
7594 __io_uring_show_fdinfo(ctx, m);
7595 percpu_ref_put(&ctx->refs);
7596 }
7597}
Tobias Klauserbebdb652020-02-26 18:38:32 +01007598#endif
Jens Axboe87ce9552020-01-30 08:25:34 -07007599
Jens Axboe2b188cc2019-01-07 10:46:33 -07007600static const struct file_operations io_uring_fops = {
7601 .release = io_uring_release,
Jens Axboefcb323c2019-10-24 12:39:47 -06007602 .flush = io_uring_flush,
Jens Axboe2b188cc2019-01-07 10:46:33 -07007603 .mmap = io_uring_mmap,
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007604#ifndef CONFIG_MMU
7605 .get_unmapped_area = io_uring_nommu_get_unmapped_area,
7606 .mmap_capabilities = io_uring_nommu_mmap_capabilities,
7607#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07007608 .poll = io_uring_poll,
7609 .fasync = io_uring_fasync,
Tobias Klauserbebdb652020-02-26 18:38:32 +01007610#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -07007611 .show_fdinfo = io_uring_show_fdinfo,
Tobias Klauserbebdb652020-02-26 18:38:32 +01007612#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07007613};
7614
7615static int io_allocate_scq_urings(struct io_ring_ctx *ctx,
7616 struct io_uring_params *p)
7617{
Hristo Venev75b28af2019-08-26 17:23:46 +00007618 struct io_rings *rings;
7619 size_t size, sq_array_offset;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007620
Hristo Venev75b28af2019-08-26 17:23:46 +00007621 size = rings_size(p->sq_entries, p->cq_entries, &sq_array_offset);
7622 if (size == SIZE_MAX)
7623 return -EOVERFLOW;
7624
7625 rings = io_mem_alloc(size);
7626 if (!rings)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007627 return -ENOMEM;
7628
Hristo Venev75b28af2019-08-26 17:23:46 +00007629 ctx->rings = rings;
7630 ctx->sq_array = (u32 *)((char *)rings + sq_array_offset);
7631 rings->sq_ring_mask = p->sq_entries - 1;
7632 rings->cq_ring_mask = p->cq_entries - 1;
7633 rings->sq_ring_entries = p->sq_entries;
7634 rings->cq_ring_entries = p->cq_entries;
7635 ctx->sq_mask = rings->sq_ring_mask;
7636 ctx->cq_mask = rings->cq_ring_mask;
7637 ctx->sq_entries = rings->sq_ring_entries;
7638 ctx->cq_entries = rings->cq_ring_entries;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007639
7640 size = array_size(sizeof(struct io_uring_sqe), p->sq_entries);
Jens Axboeeb065d32019-11-20 09:26:29 -07007641 if (size == SIZE_MAX) {
7642 io_mem_free(ctx->rings);
7643 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007644 return -EOVERFLOW;
Jens Axboeeb065d32019-11-20 09:26:29 -07007645 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007646
7647 ctx->sq_sqes = io_mem_alloc(size);
Jens Axboeeb065d32019-11-20 09:26:29 -07007648 if (!ctx->sq_sqes) {
7649 io_mem_free(ctx->rings);
7650 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007651 return -ENOMEM;
Jens Axboeeb065d32019-11-20 09:26:29 -07007652 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007653
Jens Axboe2b188cc2019-01-07 10:46:33 -07007654 return 0;
7655}
7656
7657/*
7658 * Allocate an anonymous fd, this is what constitutes the application
7659 * visible backing of an io_uring instance. The application mmaps this
7660 * fd to gain access to the SQ/CQ ring details. If UNIX sockets are enabled,
7661 * we have to tie this fd to a socket for file garbage collection purposes.
7662 */
7663static int io_uring_get_fd(struct io_ring_ctx *ctx)
7664{
7665 struct file *file;
7666 int ret;
7667
7668#if defined(CONFIG_UNIX)
7669 ret = sock_create_kern(&init_net, PF_UNIX, SOCK_RAW, IPPROTO_IP,
7670 &ctx->ring_sock);
7671 if (ret)
7672 return ret;
7673#endif
7674
7675 ret = get_unused_fd_flags(O_RDWR | O_CLOEXEC);
7676 if (ret < 0)
7677 goto err;
7678
7679 file = anon_inode_getfile("[io_uring]", &io_uring_fops, ctx,
7680 O_RDWR | O_CLOEXEC);
7681 if (IS_ERR(file)) {
7682 put_unused_fd(ret);
7683 ret = PTR_ERR(file);
7684 goto err;
7685 }
7686
7687#if defined(CONFIG_UNIX)
7688 ctx->ring_sock->file = file;
7689#endif
7690 fd_install(ret, file);
7691 return ret;
7692err:
7693#if defined(CONFIG_UNIX)
7694 sock_release(ctx->ring_sock);
7695 ctx->ring_sock = NULL;
7696#endif
7697 return ret;
7698}
7699
7700static int io_uring_create(unsigned entries, struct io_uring_params *p)
7701{
7702 struct user_struct *user = NULL;
7703 struct io_ring_ctx *ctx;
7704 bool account_mem;
7705 int ret;
7706
Jens Axboe8110c1a2019-12-28 15:39:54 -07007707 if (!entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007708 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07007709 if (entries > IORING_MAX_ENTRIES) {
7710 if (!(p->flags & IORING_SETUP_CLAMP))
7711 return -EINVAL;
7712 entries = IORING_MAX_ENTRIES;
7713 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007714
7715 /*
7716 * Use twice as many entries for the CQ ring. It's possible for the
7717 * application to drive a higher depth than the size of the SQ ring,
7718 * since the sqes are only used at submission time. This allows for
Jens Axboe33a107f2019-10-04 12:10:03 -06007719 * some flexibility in overcommitting a bit. If the application has
7720 * set IORING_SETUP_CQSIZE, it will have passed in the desired number
7721 * of CQ ring entries manually.
Jens Axboe2b188cc2019-01-07 10:46:33 -07007722 */
7723 p->sq_entries = roundup_pow_of_two(entries);
Jens Axboe33a107f2019-10-04 12:10:03 -06007724 if (p->flags & IORING_SETUP_CQSIZE) {
7725 /*
7726 * If IORING_SETUP_CQSIZE is set, we do the same roundup
7727 * to a power-of-two, if it isn't already. We do NOT impose
7728 * any cq vs sq ring sizing.
7729 */
Jens Axboe8110c1a2019-12-28 15:39:54 -07007730 if (p->cq_entries < p->sq_entries)
Jens Axboe33a107f2019-10-04 12:10:03 -06007731 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07007732 if (p->cq_entries > IORING_MAX_CQ_ENTRIES) {
7733 if (!(p->flags & IORING_SETUP_CLAMP))
7734 return -EINVAL;
7735 p->cq_entries = IORING_MAX_CQ_ENTRIES;
7736 }
Jens Axboe33a107f2019-10-04 12:10:03 -06007737 p->cq_entries = roundup_pow_of_two(p->cq_entries);
7738 } else {
7739 p->cq_entries = 2 * p->sq_entries;
7740 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007741
7742 user = get_uid(current_user());
7743 account_mem = !capable(CAP_IPC_LOCK);
7744
7745 if (account_mem) {
7746 ret = io_account_mem(user,
7747 ring_pages(p->sq_entries, p->cq_entries));
7748 if (ret) {
7749 free_uid(user);
7750 return ret;
7751 }
7752 }
7753
7754 ctx = io_ring_ctx_alloc(p);
7755 if (!ctx) {
7756 if (account_mem)
7757 io_unaccount_mem(user, ring_pages(p->sq_entries,
7758 p->cq_entries));
7759 free_uid(user);
7760 return -ENOMEM;
7761 }
7762 ctx->compat = in_compat_syscall();
7763 ctx->account_mem = account_mem;
7764 ctx->user = user;
Jens Axboe0b8c0ec2019-12-02 08:50:00 -07007765 ctx->creds = get_current_cred();
Jens Axboe2b188cc2019-01-07 10:46:33 -07007766
7767 ret = io_allocate_scq_urings(ctx, p);
7768 if (ret)
7769 goto err;
7770
Jens Axboe6c271ce2019-01-10 11:22:30 -07007771 ret = io_sq_offload_start(ctx, p);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007772 if (ret)
7773 goto err;
7774
Jens Axboe2b188cc2019-01-07 10:46:33 -07007775 memset(&p->sq_off, 0, sizeof(p->sq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00007776 p->sq_off.head = offsetof(struct io_rings, sq.head);
7777 p->sq_off.tail = offsetof(struct io_rings, sq.tail);
7778 p->sq_off.ring_mask = offsetof(struct io_rings, sq_ring_mask);
7779 p->sq_off.ring_entries = offsetof(struct io_rings, sq_ring_entries);
7780 p->sq_off.flags = offsetof(struct io_rings, sq_flags);
7781 p->sq_off.dropped = offsetof(struct io_rings, sq_dropped);
7782 p->sq_off.array = (char *)ctx->sq_array - (char *)ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007783
7784 memset(&p->cq_off, 0, sizeof(p->cq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00007785 p->cq_off.head = offsetof(struct io_rings, cq.head);
7786 p->cq_off.tail = offsetof(struct io_rings, cq.tail);
7787 p->cq_off.ring_mask = offsetof(struct io_rings, cq_ring_mask);
7788 p->cq_off.ring_entries = offsetof(struct io_rings, cq_ring_entries);
7789 p->cq_off.overflow = offsetof(struct io_rings, cq_overflow);
7790 p->cq_off.cqes = offsetof(struct io_rings, cqes);
Jens Axboeac90f242019-09-06 10:26:21 -06007791
Jens Axboe044c1ab2019-10-28 09:15:33 -06007792 /*
7793 * Install ring fd as the very last thing, so we don't risk someone
7794 * having closed it before we finish setup
7795 */
7796 ret = io_uring_get_fd(ctx);
7797 if (ret < 0)
7798 goto err;
7799
Jens Axboeda8c9692019-12-02 18:51:26 -07007800 p->features = IORING_FEAT_SINGLE_MMAP | IORING_FEAT_NODROP |
Jens Axboecccf0ee2020-01-27 16:34:48 -07007801 IORING_FEAT_SUBMIT_STABLE | IORING_FEAT_RW_CUR_POS |
Jens Axboed7718a92020-02-14 22:23:12 -07007802 IORING_FEAT_CUR_PERSONALITY | IORING_FEAT_FAST_POLL;
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02007803 trace_io_uring_create(ret, ctx, p->sq_entries, p->cq_entries, p->flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007804 return ret;
7805err:
7806 io_ring_ctx_wait_and_kill(ctx);
7807 return ret;
7808}
7809
7810/*
7811 * Sets up an aio uring context, and returns the fd. Applications asks for a
7812 * ring size, we return the actual sq/cq ring sizes (among other things) in the
7813 * params structure passed in.
7814 */
7815static long io_uring_setup(u32 entries, struct io_uring_params __user *params)
7816{
7817 struct io_uring_params p;
7818 long ret;
7819 int i;
7820
7821 if (copy_from_user(&p, params, sizeof(p)))
7822 return -EFAULT;
7823 for (i = 0; i < ARRAY_SIZE(p.resv); i++) {
7824 if (p.resv[i])
7825 return -EINVAL;
7826 }
7827
Jens Axboe6c271ce2019-01-10 11:22:30 -07007828 if (p.flags & ~(IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL |
Jens Axboe8110c1a2019-12-28 15:39:54 -07007829 IORING_SETUP_SQ_AFF | IORING_SETUP_CQSIZE |
Pavel Begunkov24369c22020-01-28 03:15:48 +03007830 IORING_SETUP_CLAMP | IORING_SETUP_ATTACH_WQ))
Jens Axboe2b188cc2019-01-07 10:46:33 -07007831 return -EINVAL;
7832
7833 ret = io_uring_create(entries, &p);
7834 if (ret < 0)
7835 return ret;
7836
7837 if (copy_to_user(params, &p, sizeof(p)))
7838 return -EFAULT;
7839
7840 return ret;
7841}
7842
7843SYSCALL_DEFINE2(io_uring_setup, u32, entries,
7844 struct io_uring_params __user *, params)
7845{
7846 return io_uring_setup(entries, params);
7847}
7848
Jens Axboe66f4af92020-01-16 15:36:52 -07007849static int io_probe(struct io_ring_ctx *ctx, void __user *arg, unsigned nr_args)
7850{
7851 struct io_uring_probe *p;
7852 size_t size;
7853 int i, ret;
7854
7855 size = struct_size(p, ops, nr_args);
7856 if (size == SIZE_MAX)
7857 return -EOVERFLOW;
7858 p = kzalloc(size, GFP_KERNEL);
7859 if (!p)
7860 return -ENOMEM;
7861
7862 ret = -EFAULT;
7863 if (copy_from_user(p, arg, size))
7864 goto out;
7865 ret = -EINVAL;
7866 if (memchr_inv(p, 0, size))
7867 goto out;
7868
7869 p->last_op = IORING_OP_LAST - 1;
7870 if (nr_args > IORING_OP_LAST)
7871 nr_args = IORING_OP_LAST;
7872
7873 for (i = 0; i < nr_args; i++) {
7874 p->ops[i].op = i;
7875 if (!io_op_defs[i].not_supported)
7876 p->ops[i].flags = IO_URING_OP_SUPPORTED;
7877 }
7878 p->ops_len = i;
7879
7880 ret = 0;
7881 if (copy_to_user(arg, p, size))
7882 ret = -EFAULT;
7883out:
7884 kfree(p);
7885 return ret;
7886}
7887
Jens Axboe071698e2020-01-28 10:04:42 -07007888static int io_register_personality(struct io_ring_ctx *ctx)
7889{
7890 const struct cred *creds = get_current_cred();
7891 int id;
7892
7893 id = idr_alloc_cyclic(&ctx->personality_idr, (void *) creds, 1,
7894 USHRT_MAX, GFP_KERNEL);
7895 if (id < 0)
7896 put_cred(creds);
7897 return id;
7898}
7899
7900static int io_unregister_personality(struct io_ring_ctx *ctx, unsigned id)
7901{
7902 const struct cred *old_creds;
7903
7904 old_creds = idr_remove(&ctx->personality_idr, id);
7905 if (old_creds) {
7906 put_cred(old_creds);
7907 return 0;
7908 }
7909
7910 return -EINVAL;
7911}
7912
7913static bool io_register_op_must_quiesce(int op)
7914{
7915 switch (op) {
7916 case IORING_UNREGISTER_FILES:
7917 case IORING_REGISTER_FILES_UPDATE:
7918 case IORING_REGISTER_PROBE:
7919 case IORING_REGISTER_PERSONALITY:
7920 case IORING_UNREGISTER_PERSONALITY:
7921 return false;
7922 default:
7923 return true;
7924 }
7925}
7926
Jens Axboeedafcce2019-01-09 09:16:05 -07007927static int __io_uring_register(struct io_ring_ctx *ctx, unsigned opcode,
7928 void __user *arg, unsigned nr_args)
Jens Axboeb19062a2019-04-15 10:49:38 -06007929 __releases(ctx->uring_lock)
7930 __acquires(ctx->uring_lock)
Jens Axboeedafcce2019-01-09 09:16:05 -07007931{
7932 int ret;
7933
Jens Axboe35fa71a2019-04-22 10:23:23 -06007934 /*
7935 * We're inside the ring mutex, if the ref is already dying, then
7936 * someone else killed the ctx or is already going through
7937 * io_uring_register().
7938 */
7939 if (percpu_ref_is_dying(&ctx->refs))
7940 return -ENXIO;
7941
Jens Axboe071698e2020-01-28 10:04:42 -07007942 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07007943 percpu_ref_kill(&ctx->refs);
Jens Axboeb19062a2019-04-15 10:49:38 -06007944
Jens Axboe05f3fb32019-12-09 11:22:50 -07007945 /*
7946 * Drop uring mutex before waiting for references to exit. If
7947 * another thread is currently inside io_uring_enter() it might
7948 * need to grab the uring_lock to make progress. If we hold it
7949 * here across the drain wait, then we can deadlock. It's safe
7950 * to drop the mutex here, since no new references will come in
7951 * after we've killed the percpu ref.
7952 */
7953 mutex_unlock(&ctx->uring_lock);
Jens Axboec1503682020-01-08 08:26:07 -07007954 ret = wait_for_completion_interruptible(&ctx->completions[0]);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007955 mutex_lock(&ctx->uring_lock);
Jens Axboec1503682020-01-08 08:26:07 -07007956 if (ret) {
7957 percpu_ref_resurrect(&ctx->refs);
7958 ret = -EINTR;
7959 goto out;
7960 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07007961 }
Jens Axboeedafcce2019-01-09 09:16:05 -07007962
7963 switch (opcode) {
7964 case IORING_REGISTER_BUFFERS:
7965 ret = io_sqe_buffer_register(ctx, arg, nr_args);
7966 break;
7967 case IORING_UNREGISTER_BUFFERS:
7968 ret = -EINVAL;
7969 if (arg || nr_args)
7970 break;
7971 ret = io_sqe_buffer_unregister(ctx);
7972 break;
Jens Axboe6b063142019-01-10 22:13:58 -07007973 case IORING_REGISTER_FILES:
7974 ret = io_sqe_files_register(ctx, arg, nr_args);
7975 break;
7976 case IORING_UNREGISTER_FILES:
7977 ret = -EINVAL;
7978 if (arg || nr_args)
7979 break;
7980 ret = io_sqe_files_unregister(ctx);
7981 break;
Jens Axboec3a31e62019-10-03 13:59:56 -06007982 case IORING_REGISTER_FILES_UPDATE:
7983 ret = io_sqe_files_update(ctx, arg, nr_args);
7984 break;
Jens Axboe9b402842019-04-11 11:45:41 -06007985 case IORING_REGISTER_EVENTFD:
Jens Axboef2842ab2020-01-08 11:04:00 -07007986 case IORING_REGISTER_EVENTFD_ASYNC:
Jens Axboe9b402842019-04-11 11:45:41 -06007987 ret = -EINVAL;
7988 if (nr_args != 1)
7989 break;
7990 ret = io_eventfd_register(ctx, arg);
Jens Axboef2842ab2020-01-08 11:04:00 -07007991 if (ret)
7992 break;
7993 if (opcode == IORING_REGISTER_EVENTFD_ASYNC)
7994 ctx->eventfd_async = 1;
7995 else
7996 ctx->eventfd_async = 0;
Jens Axboe9b402842019-04-11 11:45:41 -06007997 break;
7998 case IORING_UNREGISTER_EVENTFD:
7999 ret = -EINVAL;
8000 if (arg || nr_args)
8001 break;
8002 ret = io_eventfd_unregister(ctx);
8003 break;
Jens Axboe66f4af92020-01-16 15:36:52 -07008004 case IORING_REGISTER_PROBE:
8005 ret = -EINVAL;
8006 if (!arg || nr_args > 256)
8007 break;
8008 ret = io_probe(ctx, arg, nr_args);
8009 break;
Jens Axboe071698e2020-01-28 10:04:42 -07008010 case IORING_REGISTER_PERSONALITY:
8011 ret = -EINVAL;
8012 if (arg || nr_args)
8013 break;
8014 ret = io_register_personality(ctx);
8015 break;
8016 case IORING_UNREGISTER_PERSONALITY:
8017 ret = -EINVAL;
8018 if (arg)
8019 break;
8020 ret = io_unregister_personality(ctx, nr_args);
8021 break;
Jens Axboeedafcce2019-01-09 09:16:05 -07008022 default:
8023 ret = -EINVAL;
8024 break;
8025 }
8026
Jens Axboe071698e2020-01-28 10:04:42 -07008027 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07008028 /* bring the ctx back to life */
Jens Axboe05f3fb32019-12-09 11:22:50 -07008029 percpu_ref_reinit(&ctx->refs);
Jens Axboec1503682020-01-08 08:26:07 -07008030out:
8031 reinit_completion(&ctx->completions[0]);
Jens Axboe05f3fb32019-12-09 11:22:50 -07008032 }
Jens Axboeedafcce2019-01-09 09:16:05 -07008033 return ret;
8034}
8035
8036SYSCALL_DEFINE4(io_uring_register, unsigned int, fd, unsigned int, opcode,
8037 void __user *, arg, unsigned int, nr_args)
8038{
8039 struct io_ring_ctx *ctx;
8040 long ret = -EBADF;
8041 struct fd f;
8042
8043 f = fdget(fd);
8044 if (!f.file)
8045 return -EBADF;
8046
8047 ret = -EOPNOTSUPP;
8048 if (f.file->f_op != &io_uring_fops)
8049 goto out_fput;
8050
8051 ctx = f.file->private_data;
8052
8053 mutex_lock(&ctx->uring_lock);
8054 ret = __io_uring_register(ctx, opcode, arg, nr_args);
8055 mutex_unlock(&ctx->uring_lock);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02008056 trace_io_uring_register(ctx, opcode, ctx->nr_user_files, ctx->nr_user_bufs,
8057 ctx->cq_ev_fd != NULL, ret);
Jens Axboeedafcce2019-01-09 09:16:05 -07008058out_fput:
8059 fdput(f);
8060 return ret;
8061}
8062
Jens Axboe2b188cc2019-01-07 10:46:33 -07008063static int __init io_uring_init(void)
8064{
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008065#define __BUILD_BUG_VERIFY_ELEMENT(stype, eoffset, etype, ename) do { \
8066 BUILD_BUG_ON(offsetof(stype, ename) != eoffset); \
8067 BUILD_BUG_ON(sizeof(etype) != sizeof_field(stype, ename)); \
8068} while (0)
8069
8070#define BUILD_BUG_SQE_ELEM(eoffset, etype, ename) \
8071 __BUILD_BUG_VERIFY_ELEMENT(struct io_uring_sqe, eoffset, etype, ename)
8072 BUILD_BUG_ON(sizeof(struct io_uring_sqe) != 64);
8073 BUILD_BUG_SQE_ELEM(0, __u8, opcode);
8074 BUILD_BUG_SQE_ELEM(1, __u8, flags);
8075 BUILD_BUG_SQE_ELEM(2, __u16, ioprio);
8076 BUILD_BUG_SQE_ELEM(4, __s32, fd);
8077 BUILD_BUG_SQE_ELEM(8, __u64, off);
8078 BUILD_BUG_SQE_ELEM(8, __u64, addr2);
8079 BUILD_BUG_SQE_ELEM(16, __u64, addr);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03008080 BUILD_BUG_SQE_ELEM(16, __u64, splice_off_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008081 BUILD_BUG_SQE_ELEM(24, __u32, len);
8082 BUILD_BUG_SQE_ELEM(28, __kernel_rwf_t, rw_flags);
8083 BUILD_BUG_SQE_ELEM(28, /* compat */ int, rw_flags);
8084 BUILD_BUG_SQE_ELEM(28, /* compat */ __u32, rw_flags);
8085 BUILD_BUG_SQE_ELEM(28, __u32, fsync_flags);
8086 BUILD_BUG_SQE_ELEM(28, __u16, poll_events);
8087 BUILD_BUG_SQE_ELEM(28, __u32, sync_range_flags);
8088 BUILD_BUG_SQE_ELEM(28, __u32, msg_flags);
8089 BUILD_BUG_SQE_ELEM(28, __u32, timeout_flags);
8090 BUILD_BUG_SQE_ELEM(28, __u32, accept_flags);
8091 BUILD_BUG_SQE_ELEM(28, __u32, cancel_flags);
8092 BUILD_BUG_SQE_ELEM(28, __u32, open_flags);
8093 BUILD_BUG_SQE_ELEM(28, __u32, statx_flags);
8094 BUILD_BUG_SQE_ELEM(28, __u32, fadvise_advice);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03008095 BUILD_BUG_SQE_ELEM(28, __u32, splice_flags);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008096 BUILD_BUG_SQE_ELEM(32, __u64, user_data);
8097 BUILD_BUG_SQE_ELEM(40, __u16, buf_index);
8098 BUILD_BUG_SQE_ELEM(42, __u16, personality);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03008099 BUILD_BUG_SQE_ELEM(44, __s32, splice_fd_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008100
Jens Axboed3656342019-12-18 09:50:26 -07008101 BUILD_BUG_ON(ARRAY_SIZE(io_op_defs) != IORING_OP_LAST);
Jens Axboe84557872020-03-03 15:28:17 -07008102 BUILD_BUG_ON(__REQ_F_LAST_BIT >= 8 * sizeof(int));
Jens Axboe2b188cc2019-01-07 10:46:33 -07008103 req_cachep = KMEM_CACHE(io_kiocb, SLAB_HWCACHE_ALIGN | SLAB_PANIC);
8104 return 0;
8105};
8106__initcall(io_uring_init);