blob: 7f9bf8b6e6afe4d58faef9b32062467ecb1775ca [file] [log] [blame]
Jens Axboe2b188cc2019-01-07 10:46:33 -07001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Shared application/kernel submission and completion ring pairs, for
4 * supporting fast/efficient IO.
5 *
6 * A note on the read/write ordering memory barriers that are matched between
Stefan Bühler1e84b972019-04-24 23:54:16 +02007 * the application and kernel side.
8 *
9 * After the application reads the CQ ring tail, it must use an
10 * appropriate smp_rmb() to pair with the smp_wmb() the kernel uses
11 * before writing the tail (using smp_load_acquire to read the tail will
12 * do). It also needs a smp_mb() before updating CQ head (ordering the
13 * entry load(s) with the head store), pairing with an implicit barrier
14 * through a control-dependency in io_get_cqring (smp_store_release to
15 * store head will do). Failure to do so could lead to reading invalid
16 * CQ entries.
17 *
18 * Likewise, the application must use an appropriate smp_wmb() before
19 * writing the SQ tail (ordering SQ entry stores with the tail store),
20 * which pairs with smp_load_acquire in io_get_sqring (smp_store_release
21 * to store the tail will do). And it needs a barrier ordering the SQ
22 * head load before writing new SQ entries (smp_load_acquire to read
23 * head will do).
24 *
25 * When using the SQ poll thread (IORING_SETUP_SQPOLL), the application
26 * needs to check the SQ flags for IORING_SQ_NEED_WAKEUP *after*
27 * updating the SQ tail; a full memory barrier smp_mb() is needed
28 * between.
Jens Axboe2b188cc2019-01-07 10:46:33 -070029 *
30 * Also see the examples in the liburing library:
31 *
32 * git://git.kernel.dk/liburing
33 *
34 * io_uring also uses READ/WRITE_ONCE() for _any_ store or load that happens
35 * from data shared between the kernel and application. This is done both
36 * for ordering purposes, but also to ensure that once a value is loaded from
37 * data that the application could potentially modify, it remains stable.
38 *
39 * Copyright (C) 2018-2019 Jens Axboe
Christoph Hellwigc992fe22019-01-11 09:43:02 -070040 * Copyright (c) 2018-2019 Christoph Hellwig
Jens Axboe2b188cc2019-01-07 10:46:33 -070041 */
42#include <linux/kernel.h>
43#include <linux/init.h>
44#include <linux/errno.h>
45#include <linux/syscalls.h>
46#include <linux/compat.h>
Jens Axboe52de1fe2020-02-27 10:15:42 -070047#include <net/compat.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070048#include <linux/refcount.h>
49#include <linux/uio.h>
Pavel Begunkov6b47ee62020-01-18 20:22:41 +030050#include <linux/bits.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070051
52#include <linux/sched/signal.h>
53#include <linux/fs.h>
54#include <linux/file.h>
55#include <linux/fdtable.h>
56#include <linux/mm.h>
57#include <linux/mman.h>
58#include <linux/mmu_context.h>
59#include <linux/percpu.h>
60#include <linux/slab.h>
Jens Axboe6c271ce2019-01-10 11:22:30 -070061#include <linux/kthread.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070062#include <linux/blkdev.h>
Jens Axboeedafcce2019-01-09 09:16:05 -070063#include <linux/bvec.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070064#include <linux/net.h>
65#include <net/sock.h>
66#include <net/af_unix.h>
Jens Axboe6b063142019-01-10 22:13:58 -070067#include <net/scm.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070068#include <linux/anon_inodes.h>
69#include <linux/sched/mm.h>
70#include <linux/uaccess.h>
71#include <linux/nospec.h>
Jens Axboeedafcce2019-01-09 09:16:05 -070072#include <linux/sizes.h>
73#include <linux/hugetlb.h>
Jens Axboeaa4c3962019-11-29 10:14:00 -070074#include <linux/highmem.h>
Jens Axboe15b71ab2019-12-11 11:20:36 -070075#include <linux/namei.h>
76#include <linux/fsnotify.h>
Jens Axboe4840e412019-12-25 22:03:45 -070077#include <linux/fadvise.h>
Jens Axboe3e4827b2020-01-08 15:18:09 -070078#include <linux/eventpoll.h>
Jens Axboeff002b32020-02-07 16:05:21 -070079#include <linux/fs_struct.h>
Pavel Begunkov7d67af22020-02-24 11:32:45 +030080#include <linux/splice.h>
Jens Axboeb41e9852020-02-17 09:52:41 -070081#include <linux/task_work.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070082
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +020083#define CREATE_TRACE_POINTS
84#include <trace/events/io_uring.h>
85
Jens Axboe2b188cc2019-01-07 10:46:33 -070086#include <uapi/linux/io_uring.h>
87
88#include "internal.h"
Jens Axboe561fb042019-10-24 07:25:42 -060089#include "io-wq.h"
Jens Axboe2b188cc2019-01-07 10:46:33 -070090
Daniel Xu5277dea2019-09-14 14:23:45 -070091#define IORING_MAX_ENTRIES 32768
Jens Axboe33a107f2019-10-04 12:10:03 -060092#define IORING_MAX_CQ_ENTRIES (2 * IORING_MAX_ENTRIES)
Jens Axboe65e19f52019-10-26 07:20:21 -060093
94/*
95 * Shift of 9 is 512 entries, or exactly one page on 64-bit archs
96 */
97#define IORING_FILE_TABLE_SHIFT 9
98#define IORING_MAX_FILES_TABLE (1U << IORING_FILE_TABLE_SHIFT)
99#define IORING_FILE_TABLE_MASK (IORING_MAX_FILES_TABLE - 1)
100#define IORING_MAX_FIXED_FILES (64 * IORING_MAX_FILES_TABLE)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700101
102struct io_uring {
103 u32 head ____cacheline_aligned_in_smp;
104 u32 tail ____cacheline_aligned_in_smp;
105};
106
Stefan Bühler1e84b972019-04-24 23:54:16 +0200107/*
Hristo Venev75b28af2019-08-26 17:23:46 +0000108 * This data is shared with the application through the mmap at offsets
109 * IORING_OFF_SQ_RING and IORING_OFF_CQ_RING.
Stefan Bühler1e84b972019-04-24 23:54:16 +0200110 *
111 * The offsets to the member fields are published through struct
112 * io_sqring_offsets when calling io_uring_setup.
113 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000114struct io_rings {
Stefan Bühler1e84b972019-04-24 23:54:16 +0200115 /*
116 * Head and tail offsets into the ring; the offsets need to be
117 * masked to get valid indices.
118 *
Hristo Venev75b28af2019-08-26 17:23:46 +0000119 * The kernel controls head of the sq ring and the tail of the cq ring,
120 * and the application controls tail of the sq ring and the head of the
121 * cq ring.
Stefan Bühler1e84b972019-04-24 23:54:16 +0200122 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000123 struct io_uring sq, cq;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200124 /*
Hristo Venev75b28af2019-08-26 17:23:46 +0000125 * Bitmasks to apply to head and tail offsets (constant, equals
Stefan Bühler1e84b972019-04-24 23:54:16 +0200126 * ring_entries - 1)
127 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000128 u32 sq_ring_mask, cq_ring_mask;
129 /* Ring sizes (constant, power of 2) */
130 u32 sq_ring_entries, cq_ring_entries;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200131 /*
132 * Number of invalid entries dropped by the kernel due to
133 * invalid index stored in array
134 *
135 * Written by the kernel, shouldn't be modified by the
136 * application (i.e. get number of "new events" by comparing to
137 * cached value).
138 *
139 * After a new SQ head value was read by the application this
140 * counter includes all submissions that were dropped reaching
141 * the new SQ head (and possibly more).
142 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000143 u32 sq_dropped;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200144 /*
145 * Runtime flags
146 *
147 * Written by the kernel, shouldn't be modified by the
148 * application.
149 *
150 * The application needs a full memory barrier before checking
151 * for IORING_SQ_NEED_WAKEUP after updating the sq tail.
152 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000153 u32 sq_flags;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200154 /*
155 * Number of completion events lost because the queue was full;
156 * this should be avoided by the application by making sure
LimingWu0b4295b2019-12-05 20:18:18 +0800157 * there are not more requests pending than there is space in
Stefan Bühler1e84b972019-04-24 23:54:16 +0200158 * the completion queue.
159 *
160 * Written by the kernel, shouldn't be modified by the
161 * application (i.e. get number of "new events" by comparing to
162 * cached value).
163 *
164 * As completion events come in out of order this counter is not
165 * ordered with any other data.
166 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000167 u32 cq_overflow;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200168 /*
169 * Ring buffer of completion events.
170 *
171 * The kernel writes completion events fresh every time they are
172 * produced, so the application is allowed to modify pending
173 * entries.
174 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000175 struct io_uring_cqe cqes[] ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700176};
177
Jens Axboeedafcce2019-01-09 09:16:05 -0700178struct io_mapped_ubuf {
179 u64 ubuf;
180 size_t len;
181 struct bio_vec *bvec;
182 unsigned int nr_bvecs;
183};
184
Jens Axboe65e19f52019-10-26 07:20:21 -0600185struct fixed_file_table {
186 struct file **files;
Jens Axboe31b51512019-01-18 22:56:34 -0700187};
188
Xiaoguang Wang05589552020-03-31 14:05:18 +0800189struct fixed_file_ref_node {
190 struct percpu_ref refs;
191 struct list_head node;
192 struct list_head file_list;
193 struct fixed_file_data *file_data;
194 struct work_struct work;
195};
196
Jens Axboe05f3fb32019-12-09 11:22:50 -0700197struct fixed_file_data {
198 struct fixed_file_table *table;
199 struct io_ring_ctx *ctx;
200
Xiaoguang Wang05589552020-03-31 14:05:18 +0800201 struct percpu_ref *cur_refs;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700202 struct percpu_ref refs;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700203 struct completion done;
Xiaoguang Wang05589552020-03-31 14:05:18 +0800204 struct list_head ref_list;
205 spinlock_t lock;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700206};
207
Jens Axboe5a2e7452020-02-23 16:23:11 -0700208struct io_buffer {
209 struct list_head list;
210 __u64 addr;
211 __s32 len;
212 __u16 bid;
213};
214
Jens Axboe2b188cc2019-01-07 10:46:33 -0700215struct io_ring_ctx {
216 struct {
217 struct percpu_ref refs;
218 } ____cacheline_aligned_in_smp;
219
220 struct {
221 unsigned int flags;
Randy Dunlape1d85332020-02-05 20:57:10 -0800222 unsigned int compat: 1;
223 unsigned int account_mem: 1;
224 unsigned int cq_overflow_flushed: 1;
225 unsigned int drain_next: 1;
226 unsigned int eventfd_async: 1;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700227
Hristo Venev75b28af2019-08-26 17:23:46 +0000228 /*
229 * Ring buffer of indices into array of io_uring_sqe, which is
230 * mmapped by the application using the IORING_OFF_SQES offset.
231 *
232 * This indirection could e.g. be used to assign fixed
233 * io_uring_sqe entries to operations and only submit them to
234 * the queue when needed.
235 *
236 * The kernel modifies neither the indices array nor the entries
237 * array.
238 */
239 u32 *sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700240 unsigned cached_sq_head;
241 unsigned sq_entries;
242 unsigned sq_mask;
Jens Axboe6c271ce2019-01-10 11:22:30 -0700243 unsigned sq_thread_idle;
Jens Axboe498ccd92019-10-25 10:04:25 -0600244 unsigned cached_sq_dropped;
Jens Axboe206aefd2019-11-07 18:27:42 -0700245 atomic_t cached_cq_overflow;
Jens Axboead3eb2c2019-12-18 17:12:20 -0700246 unsigned long sq_check_overflow;
Jens Axboede0617e2019-04-06 21:51:27 -0600247
248 struct list_head defer_list;
Jens Axboe5262f562019-09-17 12:26:57 -0600249 struct list_head timeout_list;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700250 struct list_head cq_overflow_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700251
Jens Axboefcb323c2019-10-24 12:39:47 -0600252 wait_queue_head_t inflight_wait;
Jens Axboead3eb2c2019-12-18 17:12:20 -0700253 struct io_uring_sqe *sq_sqes;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700254 } ____cacheline_aligned_in_smp;
255
Hristo Venev75b28af2019-08-26 17:23:46 +0000256 struct io_rings *rings;
257
Jens Axboe2b188cc2019-01-07 10:46:33 -0700258 /* IO offload */
Jens Axboe561fb042019-10-24 07:25:42 -0600259 struct io_wq *io_wq;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700260 struct task_struct *sqo_thread; /* if using sq thread polling */
261 struct mm_struct *sqo_mm;
262 wait_queue_head_t sqo_wait;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700263
Jens Axboe6b063142019-01-10 22:13:58 -0700264 /*
265 * If used, fixed file set. Writers must ensure that ->refs is dead,
266 * readers must ensure that ->refs is alive as long as the file* is
267 * used. Only updated through io_uring_register(2).
268 */
Jens Axboe05f3fb32019-12-09 11:22:50 -0700269 struct fixed_file_data *file_data;
Jens Axboe6b063142019-01-10 22:13:58 -0700270 unsigned nr_user_files;
Pavel Begunkovb14cca02020-01-17 04:45:59 +0300271 int ring_fd;
272 struct file *ring_file;
Jens Axboe6b063142019-01-10 22:13:58 -0700273
Jens Axboeedafcce2019-01-09 09:16:05 -0700274 /* if used, fixed mapped user buffers */
275 unsigned nr_user_bufs;
276 struct io_mapped_ubuf *user_bufs;
277
Jens Axboe2b188cc2019-01-07 10:46:33 -0700278 struct user_struct *user;
279
Jens Axboe0b8c0ec2019-12-02 08:50:00 -0700280 const struct cred *creds;
Jens Axboe181e4482019-11-25 08:52:30 -0700281
Jens Axboe206aefd2019-11-07 18:27:42 -0700282 /* 0 is for ctx quiesce/reinit/free, 1 is for sqo_thread started */
283 struct completion *completions;
284
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700285 /* if all else fails... */
286 struct io_kiocb *fallback_req;
287
Jens Axboe206aefd2019-11-07 18:27:42 -0700288#if defined(CONFIG_UNIX)
289 struct socket *ring_sock;
290#endif
291
Jens Axboe5a2e7452020-02-23 16:23:11 -0700292 struct idr io_buffer_idr;
293
Jens Axboe071698e2020-01-28 10:04:42 -0700294 struct idr personality_idr;
295
Jens Axboe206aefd2019-11-07 18:27:42 -0700296 struct {
297 unsigned cached_cq_tail;
298 unsigned cq_entries;
299 unsigned cq_mask;
300 atomic_t cq_timeouts;
Jens Axboead3eb2c2019-12-18 17:12:20 -0700301 unsigned long cq_check_overflow;
Jens Axboe206aefd2019-11-07 18:27:42 -0700302 struct wait_queue_head cq_wait;
303 struct fasync_struct *cq_fasync;
304 struct eventfd_ctx *cq_ev_fd;
305 } ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700306
307 struct {
308 struct mutex uring_lock;
309 wait_queue_head_t wait;
310 } ____cacheline_aligned_in_smp;
311
312 struct {
313 spinlock_t completion_lock;
Jens Axboee94f1412019-12-19 12:06:02 -0700314
Jens Axboedef596e2019-01-09 08:59:42 -0700315 /*
316 * ->poll_list is protected by the ctx->uring_lock for
317 * io_uring instances that don't use IORING_SETUP_SQPOLL.
318 * For SQPOLL, only the single threaded io_sq_thread() will
319 * manipulate the list, hence no extra locking is needed there.
320 */
321 struct list_head poll_list;
Jens Axboe78076bb2019-12-04 19:56:40 -0700322 struct hlist_head *cancel_hash;
323 unsigned cancel_hash_bits;
Jens Axboee94f1412019-12-19 12:06:02 -0700324 bool poll_multi_file;
Jens Axboefcb323c2019-10-24 12:39:47 -0600325
326 spinlock_t inflight_lock;
327 struct list_head inflight_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700328 } ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700329};
330
Jens Axboe09bb8392019-03-13 12:39:28 -0600331/*
332 * First field must be the file pointer in all the
333 * iocb unions! See also 'struct kiocb' in <linux/fs.h>
334 */
Jens Axboe221c5eb2019-01-17 09:41:58 -0700335struct io_poll_iocb {
336 struct file *file;
Jens Axboe0969e782019-12-17 18:40:57 -0700337 union {
338 struct wait_queue_head *head;
339 u64 addr;
340 };
Jens Axboe221c5eb2019-01-17 09:41:58 -0700341 __poll_t events;
Jens Axboe8c838782019-03-12 15:48:16 -0600342 bool done;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700343 bool canceled;
Jens Axboe392edb42019-12-09 17:52:20 -0700344 struct wait_queue_entry wait;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700345};
346
Jens Axboeb5dba592019-12-11 14:02:38 -0700347struct io_close {
348 struct file *file;
349 struct file *put_file;
350 int fd;
351};
352
Jens Axboead8a48a2019-11-15 08:49:11 -0700353struct io_timeout_data {
354 struct io_kiocb *req;
355 struct hrtimer timer;
356 struct timespec64 ts;
357 enum hrtimer_mode mode;
Pavel Begunkovcc42e0a2019-11-25 23:14:38 +0300358 u32 seq_offset;
Jens Axboead8a48a2019-11-15 08:49:11 -0700359};
360
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700361struct io_accept {
362 struct file *file;
363 struct sockaddr __user *addr;
364 int __user *addr_len;
365 int flags;
Jens Axboe09952e32020-03-19 20:16:56 -0600366 unsigned long nofile;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700367};
368
369struct io_sync {
370 struct file *file;
371 loff_t len;
372 loff_t off;
373 int flags;
Jens Axboed63d1b52019-12-10 10:38:56 -0700374 int mode;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700375};
376
Jens Axboefbf23842019-12-17 18:45:56 -0700377struct io_cancel {
378 struct file *file;
379 u64 addr;
380};
381
Jens Axboeb29472e2019-12-17 18:50:29 -0700382struct io_timeout {
383 struct file *file;
384 u64 addr;
385 int flags;
Jens Axboe26a61672019-12-20 09:02:01 -0700386 unsigned count;
Jens Axboeb29472e2019-12-17 18:50:29 -0700387};
388
Jens Axboe9adbd452019-12-20 08:45:55 -0700389struct io_rw {
390 /* NOTE: kiocb has the file as the first member, so don't do it here */
391 struct kiocb kiocb;
392 u64 addr;
393 u64 len;
394};
395
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700396struct io_connect {
397 struct file *file;
398 struct sockaddr __user *addr;
399 int addr_len;
400};
401
Jens Axboee47293f2019-12-20 08:58:21 -0700402struct io_sr_msg {
403 struct file *file;
Jens Axboefddafac2020-01-04 20:19:44 -0700404 union {
405 struct user_msghdr __user *msg;
406 void __user *buf;
407 };
Jens Axboee47293f2019-12-20 08:58:21 -0700408 int msg_flags;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700409 int bgid;
Jens Axboefddafac2020-01-04 20:19:44 -0700410 size_t len;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700411 struct io_buffer *kbuf;
Jens Axboee47293f2019-12-20 08:58:21 -0700412};
413
Jens Axboe15b71ab2019-12-11 11:20:36 -0700414struct io_open {
415 struct file *file;
416 int dfd;
Jens Axboeeddc7ef2019-12-13 21:18:10 -0700417 union {
Jens Axboeeddc7ef2019-12-13 21:18:10 -0700418 unsigned mask;
419 };
Jens Axboe15b71ab2019-12-11 11:20:36 -0700420 struct filename *filename;
Jens Axboeeddc7ef2019-12-13 21:18:10 -0700421 struct statx __user *buffer;
Jens Axboec12cedf2020-01-08 17:41:21 -0700422 struct open_how how;
Jens Axboe4022e7a2020-03-19 19:23:18 -0600423 unsigned long nofile;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700424};
425
Jens Axboe05f3fb32019-12-09 11:22:50 -0700426struct io_files_update {
427 struct file *file;
428 u64 arg;
429 u32 nr_args;
430 u32 offset;
431};
432
Jens Axboe4840e412019-12-25 22:03:45 -0700433struct io_fadvise {
434 struct file *file;
435 u64 offset;
436 u32 len;
437 u32 advice;
438};
439
Jens Axboec1ca7572019-12-25 22:18:28 -0700440struct io_madvise {
441 struct file *file;
442 u64 addr;
443 u32 len;
444 u32 advice;
445};
446
Jens Axboe3e4827b2020-01-08 15:18:09 -0700447struct io_epoll {
448 struct file *file;
449 int epfd;
450 int op;
451 int fd;
452 struct epoll_event event;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700453};
454
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300455struct io_splice {
456 struct file *file_out;
457 struct file *file_in;
458 loff_t off_out;
459 loff_t off_in;
460 u64 len;
461 unsigned int flags;
462};
463
Jens Axboeddf0322d2020-02-23 16:41:33 -0700464struct io_provide_buf {
465 struct file *file;
466 __u64 addr;
467 __s32 len;
468 __u32 bgid;
469 __u16 nbufs;
470 __u16 bid;
471};
472
Jens Axboef499a022019-12-02 16:28:46 -0700473struct io_async_connect {
474 struct sockaddr_storage address;
475};
476
Jens Axboe03b12302019-12-02 18:50:25 -0700477struct io_async_msghdr {
478 struct iovec fast_iov[UIO_FASTIOV];
479 struct iovec *iov;
480 struct sockaddr __user *uaddr;
481 struct msghdr msg;
Jens Axboeb5379162020-02-09 11:29:15 -0700482 struct sockaddr_storage addr;
Jens Axboe03b12302019-12-02 18:50:25 -0700483};
484
Jens Axboef67676d2019-12-02 11:03:47 -0700485struct io_async_rw {
486 struct iovec fast_iov[UIO_FASTIOV];
487 struct iovec *iov;
488 ssize_t nr_segs;
489 ssize_t size;
490};
491
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700492struct io_async_ctx {
Jens Axboef67676d2019-12-02 11:03:47 -0700493 union {
494 struct io_async_rw rw;
Jens Axboe03b12302019-12-02 18:50:25 -0700495 struct io_async_msghdr msg;
Jens Axboef499a022019-12-02 16:28:46 -0700496 struct io_async_connect connect;
Jens Axboe2d283902019-12-04 11:08:05 -0700497 struct io_timeout_data timeout;
Jens Axboef67676d2019-12-02 11:03:47 -0700498 };
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700499};
500
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300501enum {
502 REQ_F_FIXED_FILE_BIT = IOSQE_FIXED_FILE_BIT,
503 REQ_F_IO_DRAIN_BIT = IOSQE_IO_DRAIN_BIT,
504 REQ_F_LINK_BIT = IOSQE_IO_LINK_BIT,
505 REQ_F_HARDLINK_BIT = IOSQE_IO_HARDLINK_BIT,
506 REQ_F_FORCE_ASYNC_BIT = IOSQE_ASYNC_BIT,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700507 REQ_F_BUFFER_SELECT_BIT = IOSQE_BUFFER_SELECT_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300508
509 REQ_F_LINK_NEXT_BIT,
510 REQ_F_FAIL_LINK_BIT,
511 REQ_F_INFLIGHT_BIT,
512 REQ_F_CUR_POS_BIT,
513 REQ_F_NOWAIT_BIT,
514 REQ_F_IOPOLL_COMPLETED_BIT,
515 REQ_F_LINK_TIMEOUT_BIT,
516 REQ_F_TIMEOUT_BIT,
517 REQ_F_ISREG_BIT,
518 REQ_F_MUST_PUNT_BIT,
519 REQ_F_TIMEOUT_NOSEQ_BIT,
520 REQ_F_COMP_LOCKED_BIT,
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300521 REQ_F_NEED_CLEANUP_BIT,
Jens Axboe2ca10252020-02-13 17:17:35 -0700522 REQ_F_OVERFLOW_BIT,
Jens Axboed7718a92020-02-14 22:23:12 -0700523 REQ_F_POLLED_BIT,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700524 REQ_F_BUFFER_SELECTED_BIT,
Jens Axboe84557872020-03-03 15:28:17 -0700525
526 /* not a real bit, just to check we're not overflowing the space */
527 __REQ_F_LAST_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300528};
529
530enum {
531 /* ctx owns file */
532 REQ_F_FIXED_FILE = BIT(REQ_F_FIXED_FILE_BIT),
533 /* drain existing IO first */
534 REQ_F_IO_DRAIN = BIT(REQ_F_IO_DRAIN_BIT),
535 /* linked sqes */
536 REQ_F_LINK = BIT(REQ_F_LINK_BIT),
537 /* doesn't sever on completion < 0 */
538 REQ_F_HARDLINK = BIT(REQ_F_HARDLINK_BIT),
539 /* IOSQE_ASYNC */
540 REQ_F_FORCE_ASYNC = BIT(REQ_F_FORCE_ASYNC_BIT),
Jens Axboebcda7ba2020-02-23 16:42:51 -0700541 /* IOSQE_BUFFER_SELECT */
542 REQ_F_BUFFER_SELECT = BIT(REQ_F_BUFFER_SELECT_BIT),
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300543
544 /* already grabbed next link */
545 REQ_F_LINK_NEXT = BIT(REQ_F_LINK_NEXT_BIT),
546 /* fail rest of links */
547 REQ_F_FAIL_LINK = BIT(REQ_F_FAIL_LINK_BIT),
548 /* on inflight list */
549 REQ_F_INFLIGHT = BIT(REQ_F_INFLIGHT_BIT),
550 /* read/write uses file position */
551 REQ_F_CUR_POS = BIT(REQ_F_CUR_POS_BIT),
552 /* must not punt to workers */
553 REQ_F_NOWAIT = BIT(REQ_F_NOWAIT_BIT),
554 /* polled IO has completed */
555 REQ_F_IOPOLL_COMPLETED = BIT(REQ_F_IOPOLL_COMPLETED_BIT),
556 /* has linked timeout */
557 REQ_F_LINK_TIMEOUT = BIT(REQ_F_LINK_TIMEOUT_BIT),
558 /* timeout request */
559 REQ_F_TIMEOUT = BIT(REQ_F_TIMEOUT_BIT),
560 /* regular file */
561 REQ_F_ISREG = BIT(REQ_F_ISREG_BIT),
562 /* must be punted even for NONBLOCK */
563 REQ_F_MUST_PUNT = BIT(REQ_F_MUST_PUNT_BIT),
564 /* no timeout sequence */
565 REQ_F_TIMEOUT_NOSEQ = BIT(REQ_F_TIMEOUT_NOSEQ_BIT),
566 /* completion under lock */
567 REQ_F_COMP_LOCKED = BIT(REQ_F_COMP_LOCKED_BIT),
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300568 /* needs cleanup */
569 REQ_F_NEED_CLEANUP = BIT(REQ_F_NEED_CLEANUP_BIT),
Jens Axboe2ca10252020-02-13 17:17:35 -0700570 /* in overflow list */
571 REQ_F_OVERFLOW = BIT(REQ_F_OVERFLOW_BIT),
Jens Axboed7718a92020-02-14 22:23:12 -0700572 /* already went through poll handler */
573 REQ_F_POLLED = BIT(REQ_F_POLLED_BIT),
Jens Axboebcda7ba2020-02-23 16:42:51 -0700574 /* buffer already selected */
575 REQ_F_BUFFER_SELECTED = BIT(REQ_F_BUFFER_SELECTED_BIT),
Jens Axboed7718a92020-02-14 22:23:12 -0700576};
577
578struct async_poll {
579 struct io_poll_iocb poll;
580 struct io_wq_work work;
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300581};
582
Jens Axboe09bb8392019-03-13 12:39:28 -0600583/*
584 * NOTE! Each of the iocb union members has the file pointer
585 * as the first entry in their struct definition. So you can
586 * access the file pointer through any of the sub-structs,
587 * or directly as just 'ki_filp' in this struct.
588 */
Jens Axboe2b188cc2019-01-07 10:46:33 -0700589struct io_kiocb {
Jens Axboe221c5eb2019-01-17 09:41:58 -0700590 union {
Jens Axboe09bb8392019-03-13 12:39:28 -0600591 struct file *file;
Jens Axboe9adbd452019-12-20 08:45:55 -0700592 struct io_rw rw;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700593 struct io_poll_iocb poll;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700594 struct io_accept accept;
595 struct io_sync sync;
Jens Axboefbf23842019-12-17 18:45:56 -0700596 struct io_cancel cancel;
Jens Axboeb29472e2019-12-17 18:50:29 -0700597 struct io_timeout timeout;
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700598 struct io_connect connect;
Jens Axboee47293f2019-12-20 08:58:21 -0700599 struct io_sr_msg sr_msg;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700600 struct io_open open;
Jens Axboeb5dba592019-12-11 14:02:38 -0700601 struct io_close close;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700602 struct io_files_update files_update;
Jens Axboe4840e412019-12-25 22:03:45 -0700603 struct io_fadvise fadvise;
Jens Axboec1ca7572019-12-25 22:18:28 -0700604 struct io_madvise madvise;
Jens Axboe3e4827b2020-01-08 15:18:09 -0700605 struct io_epoll epoll;
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300606 struct io_splice splice;
Jens Axboeddf0322d2020-02-23 16:41:33 -0700607 struct io_provide_buf pbuf;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700608 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700609
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700610 struct io_async_ctx *io;
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +0300611 bool needs_fixed_file;
Jens Axboed625c6e2019-12-17 19:53:05 -0700612 u8 opcode;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700613
614 struct io_ring_ctx *ctx;
Jens Axboed7718a92020-02-14 22:23:12 -0700615 struct list_head list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700616 unsigned int flags;
Jens Axboec16361c2019-01-17 08:39:48 -0700617 refcount_t refs;
Jens Axboe3537b6a2020-04-03 11:19:06 -0600618 struct task_struct *task;
619 unsigned long fsize;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700620 u64 user_data;
Jens Axboe9e645e112019-05-10 16:07:28 -0600621 u32 result;
Jens Axboede0617e2019-04-06 21:51:27 -0600622 u32 sequence;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700623
Jens Axboed7718a92020-02-14 22:23:12 -0700624 struct list_head link_list;
625
Jens Axboefcb323c2019-10-24 12:39:47 -0600626 struct list_head inflight_entry;
627
Xiaoguang Wang05589552020-03-31 14:05:18 +0800628 struct percpu_ref *fixed_file_refs;
629
Jens Axboeb41e9852020-02-17 09:52:41 -0700630 union {
631 /*
632 * Only commands that never go async can use the below fields,
Jens Axboed7718a92020-02-14 22:23:12 -0700633 * obviously. Right now only IORING_OP_POLL_ADD uses them, and
634 * async armed poll handlers for regular commands. The latter
635 * restore the work, if needed.
Jens Axboeb41e9852020-02-17 09:52:41 -0700636 */
637 struct {
Jens Axboeb41e9852020-02-17 09:52:41 -0700638 struct callback_head task_work;
Jens Axboed7718a92020-02-14 22:23:12 -0700639 struct hlist_node hash_node;
640 struct async_poll *apoll;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700641 int cflags;
Jens Axboeb41e9852020-02-17 09:52:41 -0700642 };
643 struct io_wq_work work;
644 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700645};
646
647#define IO_PLUG_THRESHOLD 2
Jens Axboedef596e2019-01-09 08:59:42 -0700648#define IO_IOPOLL_BATCH 8
Jens Axboe2b188cc2019-01-07 10:46:33 -0700649
Jens Axboe9a56a232019-01-09 09:06:50 -0700650struct io_submit_state {
651 struct blk_plug plug;
652
653 /*
Jens Axboe2579f912019-01-09 09:10:43 -0700654 * io_kiocb alloc cache
655 */
656 void *reqs[IO_IOPOLL_BATCH];
Pavel Begunkov6c8a3132020-02-01 03:58:00 +0300657 unsigned int free_reqs;
Jens Axboe2579f912019-01-09 09:10:43 -0700658
659 /*
Jens Axboe9a56a232019-01-09 09:06:50 -0700660 * File reference cache
661 */
662 struct file *file;
663 unsigned int fd;
664 unsigned int has_refs;
665 unsigned int used_refs;
666 unsigned int ios_left;
667};
668
Jens Axboed3656342019-12-18 09:50:26 -0700669struct io_op_def {
670 /* needs req->io allocated for deferral/async */
671 unsigned async_ctx : 1;
672 /* needs current->mm setup, does mm access */
673 unsigned needs_mm : 1;
674 /* needs req->file assigned */
675 unsigned needs_file : 1;
676 /* needs req->file assigned IFF fd is >= 0 */
677 unsigned fd_non_neg : 1;
678 /* hash wq insertion if file is a regular file */
679 unsigned hash_reg_file : 1;
680 /* unbound wq insertion if file is a non-regular file */
681 unsigned unbound_nonreg_file : 1;
Jens Axboe66f4af92020-01-16 15:36:52 -0700682 /* opcode is not supported by this kernel */
683 unsigned not_supported : 1;
Jens Axboef86cd202020-01-29 13:46:44 -0700684 /* needs file table */
685 unsigned file_table : 1;
Jens Axboeff002b32020-02-07 16:05:21 -0700686 /* needs ->fs */
687 unsigned needs_fs : 1;
Jens Axboe8a727582020-02-20 09:59:44 -0700688 /* set if opcode supports polled "wait" */
689 unsigned pollin : 1;
690 unsigned pollout : 1;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700691 /* op supports buffer selection */
692 unsigned buffer_select : 1;
Jens Axboed3656342019-12-18 09:50:26 -0700693};
694
695static const struct io_op_def io_op_defs[] = {
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300696 [IORING_OP_NOP] = {},
697 [IORING_OP_READV] = {
Jens Axboed3656342019-12-18 09:50:26 -0700698 .async_ctx = 1,
699 .needs_mm = 1,
700 .needs_file = 1,
701 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700702 .pollin = 1,
Jens Axboe4d954c22020-02-27 07:31:19 -0700703 .buffer_select = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700704 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300705 [IORING_OP_WRITEV] = {
Jens Axboed3656342019-12-18 09:50:26 -0700706 .async_ctx = 1,
707 .needs_mm = 1,
708 .needs_file = 1,
709 .hash_reg_file = 1,
710 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700711 .pollout = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700712 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300713 [IORING_OP_FSYNC] = {
Jens Axboed3656342019-12-18 09:50:26 -0700714 .needs_file = 1,
715 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300716 [IORING_OP_READ_FIXED] = {
Jens Axboed3656342019-12-18 09:50:26 -0700717 .needs_file = 1,
718 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700719 .pollin = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700720 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300721 [IORING_OP_WRITE_FIXED] = {
Jens Axboed3656342019-12-18 09:50:26 -0700722 .needs_file = 1,
723 .hash_reg_file = 1,
724 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700725 .pollout = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700726 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300727 [IORING_OP_POLL_ADD] = {
Jens Axboed3656342019-12-18 09:50:26 -0700728 .needs_file = 1,
729 .unbound_nonreg_file = 1,
730 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300731 [IORING_OP_POLL_REMOVE] = {},
732 [IORING_OP_SYNC_FILE_RANGE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700733 .needs_file = 1,
734 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300735 [IORING_OP_SENDMSG] = {
Jens Axboed3656342019-12-18 09:50:26 -0700736 .async_ctx = 1,
737 .needs_mm = 1,
738 .needs_file = 1,
739 .unbound_nonreg_file = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700740 .needs_fs = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700741 .pollout = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700742 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300743 [IORING_OP_RECVMSG] = {
Jens Axboed3656342019-12-18 09:50:26 -0700744 .async_ctx = 1,
745 .needs_mm = 1,
746 .needs_file = 1,
747 .unbound_nonreg_file = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700748 .needs_fs = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700749 .pollin = 1,
Jens Axboe52de1fe2020-02-27 10:15:42 -0700750 .buffer_select = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700751 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300752 [IORING_OP_TIMEOUT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700753 .async_ctx = 1,
754 .needs_mm = 1,
755 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300756 [IORING_OP_TIMEOUT_REMOVE] = {},
757 [IORING_OP_ACCEPT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700758 .needs_mm = 1,
759 .needs_file = 1,
760 .unbound_nonreg_file = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700761 .file_table = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700762 .pollin = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700763 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300764 [IORING_OP_ASYNC_CANCEL] = {},
765 [IORING_OP_LINK_TIMEOUT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700766 .async_ctx = 1,
767 .needs_mm = 1,
768 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300769 [IORING_OP_CONNECT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700770 .async_ctx = 1,
771 .needs_mm = 1,
772 .needs_file = 1,
773 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700774 .pollout = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700775 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300776 [IORING_OP_FALLOCATE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700777 .needs_file = 1,
778 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300779 [IORING_OP_OPENAT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700780 .needs_file = 1,
781 .fd_non_neg = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700782 .file_table = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700783 .needs_fs = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700784 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300785 [IORING_OP_CLOSE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700786 .needs_file = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700787 .file_table = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700788 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300789 [IORING_OP_FILES_UPDATE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700790 .needs_mm = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700791 .file_table = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700792 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300793 [IORING_OP_STATX] = {
Jens Axboed3656342019-12-18 09:50:26 -0700794 .needs_mm = 1,
795 .needs_file = 1,
796 .fd_non_neg = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700797 .needs_fs = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700798 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300799 [IORING_OP_READ] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -0700800 .needs_mm = 1,
801 .needs_file = 1,
802 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700803 .pollin = 1,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700804 .buffer_select = 1,
Jens Axboe3a6820f2019-12-22 15:19:35 -0700805 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300806 [IORING_OP_WRITE] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -0700807 .needs_mm = 1,
808 .needs_file = 1,
809 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700810 .pollout = 1,
Jens Axboe3a6820f2019-12-22 15:19:35 -0700811 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300812 [IORING_OP_FADVISE] = {
Jens Axboe4840e412019-12-25 22:03:45 -0700813 .needs_file = 1,
814 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300815 [IORING_OP_MADVISE] = {
Jens Axboec1ca7572019-12-25 22:18:28 -0700816 .needs_mm = 1,
817 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300818 [IORING_OP_SEND] = {
Jens Axboefddafac2020-01-04 20:19:44 -0700819 .needs_mm = 1,
820 .needs_file = 1,
821 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700822 .pollout = 1,
Jens Axboefddafac2020-01-04 20:19:44 -0700823 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300824 [IORING_OP_RECV] = {
Jens Axboefddafac2020-01-04 20:19:44 -0700825 .needs_mm = 1,
826 .needs_file = 1,
827 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700828 .pollin = 1,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700829 .buffer_select = 1,
Jens Axboefddafac2020-01-04 20:19:44 -0700830 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300831 [IORING_OP_OPENAT2] = {
Jens Axboecebdb982020-01-08 17:59:24 -0700832 .needs_file = 1,
833 .fd_non_neg = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700834 .file_table = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700835 .needs_fs = 1,
Jens Axboecebdb982020-01-08 17:59:24 -0700836 },
Jens Axboe3e4827b2020-01-08 15:18:09 -0700837 [IORING_OP_EPOLL_CTL] = {
838 .unbound_nonreg_file = 1,
839 .file_table = 1,
840 },
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300841 [IORING_OP_SPLICE] = {
842 .needs_file = 1,
843 .hash_reg_file = 1,
844 .unbound_nonreg_file = 1,
Jens Axboeddf0322d2020-02-23 16:41:33 -0700845 },
846 [IORING_OP_PROVIDE_BUFFERS] = {},
Jens Axboe067524e2020-03-02 16:32:28 -0700847 [IORING_OP_REMOVE_BUFFERS] = {},
Jens Axboed3656342019-12-18 09:50:26 -0700848};
849
Jens Axboe561fb042019-10-24 07:25:42 -0600850static void io_wq_submit_work(struct io_wq_work **workptr);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700851static void io_cqring_fill_event(struct io_kiocb *req, long res);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800852static void io_put_req(struct io_kiocb *req);
Jens Axboe978db572019-11-14 22:39:04 -0700853static void __io_double_put_req(struct io_kiocb *req);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700854static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req);
855static void io_queue_linked_timeout(struct io_kiocb *req);
Jens Axboe05f3fb32019-12-09 11:22:50 -0700856static int __io_sqe_files_update(struct io_ring_ctx *ctx,
857 struct io_uring_files_update *ip,
858 unsigned nr_args);
Jens Axboef86cd202020-01-29 13:46:44 -0700859static int io_grab_files(struct io_kiocb *req);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300860static void io_cleanup_req(struct io_kiocb *req);
Jens Axboeb41e9852020-02-17 09:52:41 -0700861static int io_file_get(struct io_submit_state *state, struct io_kiocb *req,
862 int fd, struct file **out_file, bool fixed);
863static void __io_queue_sqe(struct io_kiocb *req,
864 const struct io_uring_sqe *sqe);
Jens Axboede0617e2019-04-06 21:51:27 -0600865
Jens Axboe2b188cc2019-01-07 10:46:33 -0700866static struct kmem_cache *req_cachep;
867
868static const struct file_operations io_uring_fops;
869
870struct sock *io_uring_get_socket(struct file *file)
871{
872#if defined(CONFIG_UNIX)
873 if (file->f_op == &io_uring_fops) {
874 struct io_ring_ctx *ctx = file->private_data;
875
876 return ctx->ring_sock->sk;
877 }
878#endif
879 return NULL;
880}
881EXPORT_SYMBOL(io_uring_get_socket);
882
883static void io_ring_ctx_ref_free(struct percpu_ref *ref)
884{
885 struct io_ring_ctx *ctx = container_of(ref, struct io_ring_ctx, refs);
886
Jens Axboe206aefd2019-11-07 18:27:42 -0700887 complete(&ctx->completions[0]);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700888}
889
890static struct io_ring_ctx *io_ring_ctx_alloc(struct io_uring_params *p)
891{
892 struct io_ring_ctx *ctx;
Jens Axboe78076bb2019-12-04 19:56:40 -0700893 int hash_bits;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700894
895 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
896 if (!ctx)
897 return NULL;
898
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700899 ctx->fallback_req = kmem_cache_alloc(req_cachep, GFP_KERNEL);
900 if (!ctx->fallback_req)
901 goto err;
902
Jens Axboe206aefd2019-11-07 18:27:42 -0700903 ctx->completions = kmalloc(2 * sizeof(struct completion), GFP_KERNEL);
904 if (!ctx->completions)
905 goto err;
906
Jens Axboe78076bb2019-12-04 19:56:40 -0700907 /*
908 * Use 5 bits less than the max cq entries, that should give us around
909 * 32 entries per hash list if totally full and uniformly spread.
910 */
911 hash_bits = ilog2(p->cq_entries);
912 hash_bits -= 5;
913 if (hash_bits <= 0)
914 hash_bits = 1;
915 ctx->cancel_hash_bits = hash_bits;
916 ctx->cancel_hash = kmalloc((1U << hash_bits) * sizeof(struct hlist_head),
917 GFP_KERNEL);
918 if (!ctx->cancel_hash)
919 goto err;
920 __hash_init(ctx->cancel_hash, 1U << hash_bits);
921
Roman Gushchin21482892019-05-07 10:01:48 -0700922 if (percpu_ref_init(&ctx->refs, io_ring_ctx_ref_free,
Jens Axboe206aefd2019-11-07 18:27:42 -0700923 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL))
924 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700925
926 ctx->flags = p->flags;
927 init_waitqueue_head(&ctx->cq_wait);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700928 INIT_LIST_HEAD(&ctx->cq_overflow_list);
Jens Axboe206aefd2019-11-07 18:27:42 -0700929 init_completion(&ctx->completions[0]);
930 init_completion(&ctx->completions[1]);
Jens Axboe5a2e7452020-02-23 16:23:11 -0700931 idr_init(&ctx->io_buffer_idr);
Jens Axboe071698e2020-01-28 10:04:42 -0700932 idr_init(&ctx->personality_idr);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700933 mutex_init(&ctx->uring_lock);
934 init_waitqueue_head(&ctx->wait);
935 spin_lock_init(&ctx->completion_lock);
Jens Axboedef596e2019-01-09 08:59:42 -0700936 INIT_LIST_HEAD(&ctx->poll_list);
Jens Axboede0617e2019-04-06 21:51:27 -0600937 INIT_LIST_HEAD(&ctx->defer_list);
Jens Axboe5262f562019-09-17 12:26:57 -0600938 INIT_LIST_HEAD(&ctx->timeout_list);
Jens Axboefcb323c2019-10-24 12:39:47 -0600939 init_waitqueue_head(&ctx->inflight_wait);
940 spin_lock_init(&ctx->inflight_lock);
941 INIT_LIST_HEAD(&ctx->inflight_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700942 return ctx;
Jens Axboe206aefd2019-11-07 18:27:42 -0700943err:
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700944 if (ctx->fallback_req)
945 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe206aefd2019-11-07 18:27:42 -0700946 kfree(ctx->completions);
Jens Axboe78076bb2019-12-04 19:56:40 -0700947 kfree(ctx->cancel_hash);
Jens Axboe206aefd2019-11-07 18:27:42 -0700948 kfree(ctx);
949 return NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700950}
951
Bob Liu9d858b22019-11-13 18:06:25 +0800952static inline bool __req_need_defer(struct io_kiocb *req)
Jens Axboede0617e2019-04-06 21:51:27 -0600953{
Jackie Liua197f662019-11-08 08:09:12 -0700954 struct io_ring_ctx *ctx = req->ctx;
955
Jens Axboe498ccd92019-10-25 10:04:25 -0600956 return req->sequence != ctx->cached_cq_tail + ctx->cached_sq_dropped
957 + atomic_read(&ctx->cached_cq_overflow);
Jens Axboede0617e2019-04-06 21:51:27 -0600958}
959
Bob Liu9d858b22019-11-13 18:06:25 +0800960static inline bool req_need_defer(struct io_kiocb *req)
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600961{
Pavel Begunkov87987892020-01-18 01:22:30 +0300962 if (unlikely(req->flags & REQ_F_IO_DRAIN))
Bob Liu9d858b22019-11-13 18:06:25 +0800963 return __req_need_defer(req);
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600964
Bob Liu9d858b22019-11-13 18:06:25 +0800965 return false;
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600966}
967
968static struct io_kiocb *io_get_deferred_req(struct io_ring_ctx *ctx)
Jens Axboede0617e2019-04-06 21:51:27 -0600969{
970 struct io_kiocb *req;
971
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600972 req = list_first_entry_or_null(&ctx->defer_list, struct io_kiocb, list);
Bob Liu9d858b22019-11-13 18:06:25 +0800973 if (req && !req_need_defer(req)) {
Jens Axboede0617e2019-04-06 21:51:27 -0600974 list_del_init(&req->list);
975 return req;
976 }
977
978 return NULL;
979}
980
Jens Axboe5262f562019-09-17 12:26:57 -0600981static struct io_kiocb *io_get_timeout_req(struct io_ring_ctx *ctx)
982{
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600983 struct io_kiocb *req;
984
985 req = list_first_entry_or_null(&ctx->timeout_list, struct io_kiocb, list);
Jens Axboe93bd25b2019-11-11 23:34:31 -0700986 if (req) {
987 if (req->flags & REQ_F_TIMEOUT_NOSEQ)
988 return NULL;
Linus Torvaldsfb4b3d32019-11-25 10:40:27 -0800989 if (!__req_need_defer(req)) {
Jens Axboe93bd25b2019-11-11 23:34:31 -0700990 list_del_init(&req->list);
991 return req;
992 }
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600993 }
994
995 return NULL;
Jens Axboe5262f562019-09-17 12:26:57 -0600996}
997
Jens Axboede0617e2019-04-06 21:51:27 -0600998static void __io_commit_cqring(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700999{
Hristo Venev75b28af2019-08-26 17:23:46 +00001000 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001001
Pavel Begunkov07910152020-01-17 03:52:46 +03001002 /* order cqe stores with ring update */
1003 smp_store_release(&rings->cq.tail, ctx->cached_cq_tail);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001004
Pavel Begunkov07910152020-01-17 03:52:46 +03001005 if (wq_has_sleeper(&ctx->cq_wait)) {
1006 wake_up_interruptible(&ctx->cq_wait);
1007 kill_fasync(&ctx->cq_fasync, SIGIO, POLL_IN);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001008 }
1009}
1010
Jens Axboecccf0ee2020-01-27 16:34:48 -07001011static inline void io_req_work_grab_env(struct io_kiocb *req,
1012 const struct io_op_def *def)
Jens Axboe18d9be12019-09-10 09:13:05 -06001013{
Jens Axboecccf0ee2020-01-27 16:34:48 -07001014 if (!req->work.mm && def->needs_mm) {
1015 mmgrab(current->mm);
1016 req->work.mm = current->mm;
1017 }
1018 if (!req->work.creds)
1019 req->work.creds = get_current_cred();
Jens Axboeff002b32020-02-07 16:05:21 -07001020 if (!req->work.fs && def->needs_fs) {
1021 spin_lock(&current->fs->lock);
1022 if (!current->fs->in_exec) {
1023 req->work.fs = current->fs;
1024 req->work.fs->users++;
1025 } else {
1026 req->work.flags |= IO_WQ_WORK_CANCEL;
1027 }
1028 spin_unlock(&current->fs->lock);
1029 }
Jens Axboe6ab23142020-02-08 20:23:59 -07001030 if (!req->work.task_pid)
1031 req->work.task_pid = task_pid_vnr(current);
Jens Axboecccf0ee2020-01-27 16:34:48 -07001032}
1033
1034static inline void io_req_work_drop_env(struct io_kiocb *req)
1035{
1036 if (req->work.mm) {
1037 mmdrop(req->work.mm);
1038 req->work.mm = NULL;
1039 }
1040 if (req->work.creds) {
1041 put_cred(req->work.creds);
1042 req->work.creds = NULL;
1043 }
Jens Axboeff002b32020-02-07 16:05:21 -07001044 if (req->work.fs) {
1045 struct fs_struct *fs = req->work.fs;
1046
1047 spin_lock(&req->work.fs->lock);
1048 if (--fs->users)
1049 fs = NULL;
1050 spin_unlock(&req->work.fs->lock);
1051 if (fs)
1052 free_fs_struct(fs);
1053 }
Jens Axboe561fb042019-10-24 07:25:42 -06001054}
1055
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001056static inline void io_prep_async_work(struct io_kiocb *req,
Jens Axboe94ae5e72019-11-14 19:39:52 -07001057 struct io_kiocb **link)
Jens Axboe561fb042019-10-24 07:25:42 -06001058{
Jens Axboed3656342019-12-18 09:50:26 -07001059 const struct io_op_def *def = &io_op_defs[req->opcode];
Jens Axboe54a91f32019-09-10 09:15:04 -06001060
Jens Axboed3656342019-12-18 09:50:26 -07001061 if (req->flags & REQ_F_ISREG) {
1062 if (def->hash_reg_file)
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001063 io_wq_hash_work(&req->work, file_inode(req->file));
Jens Axboed3656342019-12-18 09:50:26 -07001064 } else {
1065 if (def->unbound_nonreg_file)
Jens Axboe3529d8c2019-12-19 18:24:38 -07001066 req->work.flags |= IO_WQ_WORK_UNBOUND;
Jens Axboe54a91f32019-09-10 09:15:04 -06001067 }
Jens Axboecccf0ee2020-01-27 16:34:48 -07001068
1069 io_req_work_grab_env(req, def);
Jens Axboe54a91f32019-09-10 09:15:04 -06001070
Jens Axboe94ae5e72019-11-14 19:39:52 -07001071 *link = io_prep_linked_timeout(req);
Jens Axboe561fb042019-10-24 07:25:42 -06001072}
1073
Jackie Liua197f662019-11-08 08:09:12 -07001074static inline void io_queue_async_work(struct io_kiocb *req)
Jens Axboe561fb042019-10-24 07:25:42 -06001075{
Jackie Liua197f662019-11-08 08:09:12 -07001076 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001077 struct io_kiocb *link;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001078
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001079 io_prep_async_work(req, &link);
Jens Axboe561fb042019-10-24 07:25:42 -06001080
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001081 trace_io_uring_queue_async_work(ctx, io_wq_is_hashed(&req->work), req,
1082 &req->work, req->flags);
1083 io_wq_enqueue(ctx->io_wq, &req->work);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001084
1085 if (link)
1086 io_queue_linked_timeout(link);
Jens Axboe18d9be12019-09-10 09:13:05 -06001087}
1088
Jens Axboe5262f562019-09-17 12:26:57 -06001089static void io_kill_timeout(struct io_kiocb *req)
1090{
1091 int ret;
1092
Jens Axboe2d283902019-12-04 11:08:05 -07001093 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe5262f562019-09-17 12:26:57 -06001094 if (ret != -1) {
1095 atomic_inc(&req->ctx->cq_timeouts);
Jens Axboe842f9612019-10-29 12:34:10 -06001096 list_del_init(&req->list);
Pavel Begunkovf0e20b82020-03-07 01:15:22 +03001097 req->flags |= REQ_F_COMP_LOCKED;
Jens Axboe78e19bb2019-11-06 15:21:34 -07001098 io_cqring_fill_event(req, 0);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001099 io_put_req(req);
Jens Axboe5262f562019-09-17 12:26:57 -06001100 }
1101}
1102
1103static void io_kill_timeouts(struct io_ring_ctx *ctx)
1104{
1105 struct io_kiocb *req, *tmp;
1106
1107 spin_lock_irq(&ctx->completion_lock);
1108 list_for_each_entry_safe(req, tmp, &ctx->timeout_list, list)
1109 io_kill_timeout(req);
1110 spin_unlock_irq(&ctx->completion_lock);
1111}
1112
Jens Axboede0617e2019-04-06 21:51:27 -06001113static void io_commit_cqring(struct io_ring_ctx *ctx)
1114{
1115 struct io_kiocb *req;
1116
Jens Axboe5262f562019-09-17 12:26:57 -06001117 while ((req = io_get_timeout_req(ctx)) != NULL)
1118 io_kill_timeout(req);
1119
Jens Axboede0617e2019-04-06 21:51:27 -06001120 __io_commit_cqring(ctx);
1121
Pavel Begunkov87987892020-01-18 01:22:30 +03001122 while ((req = io_get_deferred_req(ctx)) != NULL)
Jackie Liua197f662019-11-08 08:09:12 -07001123 io_queue_async_work(req);
Jens Axboede0617e2019-04-06 21:51:27 -06001124}
1125
Jens Axboe2b188cc2019-01-07 10:46:33 -07001126static struct io_uring_cqe *io_get_cqring(struct io_ring_ctx *ctx)
1127{
Hristo Venev75b28af2019-08-26 17:23:46 +00001128 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001129 unsigned tail;
1130
1131 tail = ctx->cached_cq_tail;
Stefan Bühler115e12e2019-04-24 23:54:18 +02001132 /*
1133 * writes to the cq entry need to come after reading head; the
1134 * control dependency is enough as we're using WRITE_ONCE to
1135 * fill the cq entry
1136 */
Hristo Venev75b28af2019-08-26 17:23:46 +00001137 if (tail - READ_ONCE(rings->cq.head) == rings->cq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001138 return NULL;
1139
1140 ctx->cached_cq_tail++;
Hristo Venev75b28af2019-08-26 17:23:46 +00001141 return &rings->cqes[tail & ctx->cq_mask];
Jens Axboe2b188cc2019-01-07 10:46:33 -07001142}
1143
Jens Axboef2842ab2020-01-08 11:04:00 -07001144static inline bool io_should_trigger_evfd(struct io_ring_ctx *ctx)
1145{
Jens Axboef0b493e2020-02-01 21:30:11 -07001146 if (!ctx->cq_ev_fd)
1147 return false;
Jens Axboef2842ab2020-01-08 11:04:00 -07001148 if (!ctx->eventfd_async)
1149 return true;
Jens Axboeb41e9852020-02-17 09:52:41 -07001150 return io_wq_current_is_worker();
Jens Axboef2842ab2020-01-08 11:04:00 -07001151}
1152
Jens Axboeb41e9852020-02-17 09:52:41 -07001153static void io_cqring_ev_posted(struct io_ring_ctx *ctx)
Jens Axboe8c838782019-03-12 15:48:16 -06001154{
1155 if (waitqueue_active(&ctx->wait))
1156 wake_up(&ctx->wait);
1157 if (waitqueue_active(&ctx->sqo_wait))
1158 wake_up(&ctx->sqo_wait);
Jens Axboeb41e9852020-02-17 09:52:41 -07001159 if (io_should_trigger_evfd(ctx))
Jens Axboe9b402842019-04-11 11:45:41 -06001160 eventfd_signal(ctx->cq_ev_fd, 1);
Jens Axboe8c838782019-03-12 15:48:16 -06001161}
1162
Jens Axboec4a2ed72019-11-21 21:01:26 -07001163/* Returns true if there are no backlogged entries after the flush */
1164static bool io_cqring_overflow_flush(struct io_ring_ctx *ctx, bool force)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001165{
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001166 struct io_rings *rings = ctx->rings;
1167 struct io_uring_cqe *cqe;
1168 struct io_kiocb *req;
1169 unsigned long flags;
1170 LIST_HEAD(list);
1171
1172 if (!force) {
1173 if (list_empty_careful(&ctx->cq_overflow_list))
Jens Axboec4a2ed72019-11-21 21:01:26 -07001174 return true;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001175 if ((ctx->cached_cq_tail - READ_ONCE(rings->cq.head) ==
1176 rings->cq_ring_entries))
Jens Axboec4a2ed72019-11-21 21:01:26 -07001177 return false;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001178 }
1179
1180 spin_lock_irqsave(&ctx->completion_lock, flags);
1181
1182 /* if force is set, the ring is going away. always drop after that */
1183 if (force)
Jens Axboe69b3e542020-01-08 11:01:46 -07001184 ctx->cq_overflow_flushed = 1;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001185
Jens Axboec4a2ed72019-11-21 21:01:26 -07001186 cqe = NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001187 while (!list_empty(&ctx->cq_overflow_list)) {
1188 cqe = io_get_cqring(ctx);
1189 if (!cqe && !force)
1190 break;
1191
1192 req = list_first_entry(&ctx->cq_overflow_list, struct io_kiocb,
1193 list);
1194 list_move(&req->list, &list);
Jens Axboe2ca10252020-02-13 17:17:35 -07001195 req->flags &= ~REQ_F_OVERFLOW;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001196 if (cqe) {
1197 WRITE_ONCE(cqe->user_data, req->user_data);
1198 WRITE_ONCE(cqe->res, req->result);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001199 WRITE_ONCE(cqe->flags, req->cflags);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001200 } else {
1201 WRITE_ONCE(ctx->rings->cq_overflow,
1202 atomic_inc_return(&ctx->cached_cq_overflow));
1203 }
1204 }
1205
1206 io_commit_cqring(ctx);
Jens Axboead3eb2c2019-12-18 17:12:20 -07001207 if (cqe) {
1208 clear_bit(0, &ctx->sq_check_overflow);
1209 clear_bit(0, &ctx->cq_check_overflow);
1210 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001211 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1212 io_cqring_ev_posted(ctx);
1213
1214 while (!list_empty(&list)) {
1215 req = list_first_entry(&list, struct io_kiocb, list);
1216 list_del(&req->list);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001217 io_put_req(req);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001218 }
Jens Axboec4a2ed72019-11-21 21:01:26 -07001219
1220 return cqe != NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001221}
1222
Jens Axboebcda7ba2020-02-23 16:42:51 -07001223static void __io_cqring_fill_event(struct io_kiocb *req, long res, long cflags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001224{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001225 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001226 struct io_uring_cqe *cqe;
1227
Jens Axboe78e19bb2019-11-06 15:21:34 -07001228 trace_io_uring_complete(ctx, req->user_data, res);
Jens Axboe51c3ff62019-11-03 06:52:50 -07001229
Jens Axboe2b188cc2019-01-07 10:46:33 -07001230 /*
1231 * If we can't get a cq entry, userspace overflowed the
1232 * submission (by quite a lot). Increment the overflow count in
1233 * the ring.
1234 */
1235 cqe = io_get_cqring(ctx);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001236 if (likely(cqe)) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001237 WRITE_ONCE(cqe->user_data, req->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001238 WRITE_ONCE(cqe->res, res);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001239 WRITE_ONCE(cqe->flags, cflags);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001240 } else if (ctx->cq_overflow_flushed) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07001241 WRITE_ONCE(ctx->rings->cq_overflow,
1242 atomic_inc_return(&ctx->cached_cq_overflow));
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001243 } else {
Jens Axboead3eb2c2019-12-18 17:12:20 -07001244 if (list_empty(&ctx->cq_overflow_list)) {
1245 set_bit(0, &ctx->sq_check_overflow);
1246 set_bit(0, &ctx->cq_check_overflow);
1247 }
Jens Axboe2ca10252020-02-13 17:17:35 -07001248 req->flags |= REQ_F_OVERFLOW;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001249 refcount_inc(&req->refs);
1250 req->result = res;
Jens Axboebcda7ba2020-02-23 16:42:51 -07001251 req->cflags = cflags;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001252 list_add_tail(&req->list, &ctx->cq_overflow_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001253 }
1254}
1255
Jens Axboebcda7ba2020-02-23 16:42:51 -07001256static void io_cqring_fill_event(struct io_kiocb *req, long res)
1257{
1258 __io_cqring_fill_event(req, res, 0);
1259}
1260
1261static void __io_cqring_add_event(struct io_kiocb *req, long res, long cflags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001262{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001263 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001264 unsigned long flags;
1265
1266 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001267 __io_cqring_fill_event(req, res, cflags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001268 io_commit_cqring(ctx);
1269 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1270
Jens Axboe8c838782019-03-12 15:48:16 -06001271 io_cqring_ev_posted(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001272}
1273
Jens Axboebcda7ba2020-02-23 16:42:51 -07001274static void io_cqring_add_event(struct io_kiocb *req, long res)
1275{
1276 __io_cqring_add_event(req, res, 0);
1277}
1278
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001279static inline bool io_is_fallback_req(struct io_kiocb *req)
1280{
1281 return req == (struct io_kiocb *)
1282 ((unsigned long) req->ctx->fallback_req & ~1UL);
1283}
1284
1285static struct io_kiocb *io_get_fallback_req(struct io_ring_ctx *ctx)
1286{
1287 struct io_kiocb *req;
1288
1289 req = ctx->fallback_req;
1290 if (!test_and_set_bit_lock(0, (unsigned long *) ctx->fallback_req))
1291 return req;
1292
1293 return NULL;
1294}
1295
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03001296static struct io_kiocb *io_alloc_req(struct io_ring_ctx *ctx,
1297 struct io_submit_state *state)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001298{
Jens Axboefd6fab22019-03-14 16:30:06 -06001299 gfp_t gfp = GFP_KERNEL | __GFP_NOWARN;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001300 struct io_kiocb *req;
1301
Jens Axboe2579f912019-01-09 09:10:43 -07001302 if (!state) {
Jens Axboefd6fab22019-03-14 16:30:06 -06001303 req = kmem_cache_alloc(req_cachep, gfp);
Jens Axboe2579f912019-01-09 09:10:43 -07001304 if (unlikely(!req))
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001305 goto fallback;
Jens Axboe2579f912019-01-09 09:10:43 -07001306 } else if (!state->free_reqs) {
1307 size_t sz;
1308 int ret;
1309
1310 sz = min_t(size_t, state->ios_left, ARRAY_SIZE(state->reqs));
Jens Axboefd6fab22019-03-14 16:30:06 -06001311 ret = kmem_cache_alloc_bulk(req_cachep, gfp, sz, state->reqs);
1312
1313 /*
1314 * Bulk alloc is all-or-nothing. If we fail to get a batch,
1315 * retry single alloc to be on the safe side.
1316 */
1317 if (unlikely(ret <= 0)) {
1318 state->reqs[0] = kmem_cache_alloc(req_cachep, gfp);
1319 if (!state->reqs[0])
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001320 goto fallback;
Jens Axboefd6fab22019-03-14 16:30:06 -06001321 ret = 1;
1322 }
Jens Axboe2579f912019-01-09 09:10:43 -07001323 state->free_reqs = ret - 1;
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03001324 req = state->reqs[ret - 1];
Jens Axboe2579f912019-01-09 09:10:43 -07001325 } else {
Jens Axboe2579f912019-01-09 09:10:43 -07001326 state->free_reqs--;
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03001327 req = state->reqs[state->free_reqs];
Jens Axboe2b188cc2019-01-07 10:46:33 -07001328 }
1329
Jens Axboe2579f912019-01-09 09:10:43 -07001330 return req;
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001331fallback:
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03001332 return io_get_fallback_req(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001333}
1334
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001335static inline void io_put_file(struct io_kiocb *req, struct file *file,
1336 bool fixed)
1337{
1338 if (fixed)
Xiaoguang Wang05589552020-03-31 14:05:18 +08001339 percpu_ref_put(req->fixed_file_refs);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001340 else
1341 fput(file);
1342}
1343
Jens Axboec6ca97b302019-12-28 12:11:08 -07001344static void __io_req_aux_free(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001345{
Pavel Begunkov929a3af2020-02-19 00:19:09 +03001346 if (req->flags & REQ_F_NEED_CLEANUP)
1347 io_cleanup_req(req);
1348
YueHaibing96fd84d2020-01-07 22:22:44 +08001349 kfree(req->io);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001350 if (req->file)
1351 io_put_file(req, req->file, (req->flags & REQ_F_FIXED_FILE));
Jens Axboe3537b6a2020-04-03 11:19:06 -06001352 if (req->task)
1353 put_task_struct(req->task);
Jens Axboecccf0ee2020-01-27 16:34:48 -07001354
1355 io_req_work_drop_env(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001356}
1357
1358static void __io_free_req(struct io_kiocb *req)
1359{
Jens Axboec6ca97b302019-12-28 12:11:08 -07001360 __io_req_aux_free(req);
Jens Axboefcb323c2019-10-24 12:39:47 -06001361
Jens Axboefcb323c2019-10-24 12:39:47 -06001362 if (req->flags & REQ_F_INFLIGHT) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001363 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06001364 unsigned long flags;
1365
1366 spin_lock_irqsave(&ctx->inflight_lock, flags);
1367 list_del(&req->inflight_entry);
1368 if (waitqueue_active(&ctx->inflight_wait))
1369 wake_up(&ctx->inflight_wait);
1370 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
1371 }
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03001372
1373 percpu_ref_put(&req->ctx->refs);
Pavel Begunkovb1e50e52020-04-08 08:58:44 +03001374 if (likely(!io_is_fallback_req(req)))
1375 kmem_cache_free(req_cachep, req);
1376 else
1377 clear_bit_unlock(0, (unsigned long *) req->ctx->fallback_req);
Jens Axboee65ef562019-03-12 10:16:44 -06001378}
1379
Jens Axboec6ca97b302019-12-28 12:11:08 -07001380struct req_batch {
1381 void *reqs[IO_IOPOLL_BATCH];
1382 int to_free;
1383 int need_iter;
1384};
1385
1386static void io_free_req_many(struct io_ring_ctx *ctx, struct req_batch *rb)
1387{
1388 if (!rb->to_free)
1389 return;
1390 if (rb->need_iter) {
1391 int i, inflight = 0;
1392 unsigned long flags;
1393
1394 for (i = 0; i < rb->to_free; i++) {
1395 struct io_kiocb *req = rb->reqs[i];
1396
Jens Axboe10fef4b2020-01-09 07:52:28 -07001397 if (req->flags & REQ_F_FIXED_FILE) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001398 req->file = NULL;
Xiaoguang Wang05589552020-03-31 14:05:18 +08001399 percpu_ref_put(req->fixed_file_refs);
Jens Axboe10fef4b2020-01-09 07:52:28 -07001400 }
Jens Axboec6ca97b302019-12-28 12:11:08 -07001401 if (req->flags & REQ_F_INFLIGHT)
1402 inflight++;
Jens Axboec6ca97b302019-12-28 12:11:08 -07001403 __io_req_aux_free(req);
1404 }
1405 if (!inflight)
1406 goto do_free;
1407
1408 spin_lock_irqsave(&ctx->inflight_lock, flags);
1409 for (i = 0; i < rb->to_free; i++) {
1410 struct io_kiocb *req = rb->reqs[i];
1411
Jens Axboe10fef4b2020-01-09 07:52:28 -07001412 if (req->flags & REQ_F_INFLIGHT) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001413 list_del(&req->inflight_entry);
1414 if (!--inflight)
1415 break;
1416 }
1417 }
1418 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
1419
1420 if (waitqueue_active(&ctx->inflight_wait))
1421 wake_up(&ctx->inflight_wait);
1422 }
1423do_free:
1424 kmem_cache_free_bulk(req_cachep, rb->to_free, rb->reqs);
1425 percpu_ref_put_many(&ctx->refs, rb->to_free);
Jens Axboec6ca97b302019-12-28 12:11:08 -07001426 rb->to_free = rb->need_iter = 0;
Jens Axboee65ef562019-03-12 10:16:44 -06001427}
1428
Jackie Liua197f662019-11-08 08:09:12 -07001429static bool io_link_cancel_timeout(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -06001430{
Jackie Liua197f662019-11-08 08:09:12 -07001431 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001432 int ret;
1433
Jens Axboe2d283902019-12-04 11:08:05 -07001434 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe2665abf2019-11-05 12:40:47 -07001435 if (ret != -1) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001436 io_cqring_fill_event(req, -ECANCELED);
Jens Axboe2665abf2019-11-05 12:40:47 -07001437 io_commit_cqring(ctx);
1438 req->flags &= ~REQ_F_LINK;
Jackie Liuec9c02a2019-11-08 23:50:36 +08001439 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07001440 return true;
1441 }
1442
1443 return false;
1444}
1445
Jens Axboeba816ad2019-09-28 11:36:45 -06001446static void io_req_link_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboe9e645e112019-05-10 16:07:28 -06001447{
Jens Axboe2665abf2019-11-05 12:40:47 -07001448 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001449 bool wake_ev = false;
Jens Axboe9e645e112019-05-10 16:07:28 -06001450
Jens Axboe4d7dd462019-11-20 13:03:52 -07001451 /* Already got next link */
1452 if (req->flags & REQ_F_LINK_NEXT)
1453 return;
1454
Jens Axboe9e645e112019-05-10 16:07:28 -06001455 /*
1456 * The list should never be empty when we are called here. But could
1457 * potentially happen if the chain is messed up, check to be on the
1458 * safe side.
1459 */
Pavel Begunkov44932332019-12-05 16:16:35 +03001460 while (!list_empty(&req->link_list)) {
1461 struct io_kiocb *nxt = list_first_entry(&req->link_list,
1462 struct io_kiocb, link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001463
Pavel Begunkov44932332019-12-05 16:16:35 +03001464 if (unlikely((req->flags & REQ_F_LINK_TIMEOUT) &&
1465 (nxt->flags & REQ_F_TIMEOUT))) {
1466 list_del_init(&nxt->link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001467 wake_ev |= io_link_cancel_timeout(nxt);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001468 req->flags &= ~REQ_F_LINK_TIMEOUT;
1469 continue;
1470 }
Jens Axboe9e645e112019-05-10 16:07:28 -06001471
Pavel Begunkov44932332019-12-05 16:16:35 +03001472 list_del_init(&req->link_list);
1473 if (!list_empty(&nxt->link_list))
1474 nxt->flags |= REQ_F_LINK;
Pavel Begunkovb18fdf72019-11-21 23:21:02 +03001475 *nxtptr = nxt;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001476 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06001477 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001478
Jens Axboe4d7dd462019-11-20 13:03:52 -07001479 req->flags |= REQ_F_LINK_NEXT;
Jens Axboe2665abf2019-11-05 12:40:47 -07001480 if (wake_ev)
1481 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001482}
1483
1484/*
1485 * Called if REQ_F_LINK is set, and we fail the head request
1486 */
1487static void io_fail_links(struct io_kiocb *req)
1488{
Jens Axboe2665abf2019-11-05 12:40:47 -07001489 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001490 unsigned long flags;
1491
1492 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboe9e645e112019-05-10 16:07:28 -06001493
1494 while (!list_empty(&req->link_list)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03001495 struct io_kiocb *link = list_first_entry(&req->link_list,
1496 struct io_kiocb, link_list);
Jens Axboe9e645e112019-05-10 16:07:28 -06001497
Pavel Begunkov44932332019-12-05 16:16:35 +03001498 list_del_init(&link->link_list);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02001499 trace_io_uring_fail_link(req, link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001500
1501 if ((req->flags & REQ_F_LINK_TIMEOUT) &&
Jens Axboed625c6e2019-12-17 19:53:05 -07001502 link->opcode == IORING_OP_LINK_TIMEOUT) {
Jackie Liua197f662019-11-08 08:09:12 -07001503 io_link_cancel_timeout(link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001504 } else {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001505 io_cqring_fill_event(link, -ECANCELED);
Jens Axboe978db572019-11-14 22:39:04 -07001506 __io_double_put_req(link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001507 }
Jens Axboe5d960722019-11-19 15:31:28 -07001508 req->flags &= ~REQ_F_LINK_TIMEOUT;
Jens Axboe9e645e112019-05-10 16:07:28 -06001509 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001510
1511 io_commit_cqring(ctx);
1512 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1513 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001514}
1515
Jens Axboe4d7dd462019-11-20 13:03:52 -07001516static void io_req_find_next(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboe9e645e112019-05-10 16:07:28 -06001517{
Jens Axboe4d7dd462019-11-20 13:03:52 -07001518 if (likely(!(req->flags & REQ_F_LINK)))
Jens Axboe2665abf2019-11-05 12:40:47 -07001519 return;
Jens Axboe2665abf2019-11-05 12:40:47 -07001520
Jens Axboe9e645e112019-05-10 16:07:28 -06001521 /*
1522 * If LINK is set, we have dependent requests in this chain. If we
1523 * didn't fail this request, queue the first one up, moving any other
1524 * dependencies to the next request. In case of failure, fail the rest
1525 * of the chain.
1526 */
Jens Axboe2665abf2019-11-05 12:40:47 -07001527 if (req->flags & REQ_F_FAIL_LINK) {
1528 io_fail_links(req);
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001529 } else if ((req->flags & (REQ_F_LINK_TIMEOUT | REQ_F_COMP_LOCKED)) ==
1530 REQ_F_LINK_TIMEOUT) {
Jens Axboe2665abf2019-11-05 12:40:47 -07001531 struct io_ring_ctx *ctx = req->ctx;
1532 unsigned long flags;
1533
1534 /*
1535 * If this is a timeout link, we could be racing with the
1536 * timeout timer. Grab the completion lock for this case to
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001537 * protect against that.
Jens Axboe2665abf2019-11-05 12:40:47 -07001538 */
1539 spin_lock_irqsave(&ctx->completion_lock, flags);
1540 io_req_link_next(req, nxt);
1541 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1542 } else {
1543 io_req_link_next(req, nxt);
Jens Axboe9e645e112019-05-10 16:07:28 -06001544 }
Jens Axboe4d7dd462019-11-20 13:03:52 -07001545}
Jens Axboe9e645e112019-05-10 16:07:28 -06001546
Jackie Liuc69f8db2019-11-09 11:00:08 +08001547static void io_free_req(struct io_kiocb *req)
1548{
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001549 struct io_kiocb *nxt = NULL;
1550
1551 io_req_find_next(req, &nxt);
Pavel Begunkov70cf9f32019-11-21 23:21:00 +03001552 __io_free_req(req);
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001553
1554 if (nxt)
1555 io_queue_async_work(nxt);
Jackie Liuc69f8db2019-11-09 11:00:08 +08001556}
1557
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001558static void io_link_work_cb(struct io_wq_work **workptr)
1559{
Pavel Begunkov18a542f2020-03-23 00:23:29 +03001560 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
1561 struct io_kiocb *link;
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001562
Pavel Begunkov18a542f2020-03-23 00:23:29 +03001563 link = list_first_entry(&req->link_list, struct io_kiocb, link_list);
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001564 io_queue_linked_timeout(link);
1565 io_wq_submit_work(workptr);
1566}
1567
1568static void io_wq_assign_next(struct io_wq_work **workptr, struct io_kiocb *nxt)
1569{
1570 struct io_kiocb *link;
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001571 const struct io_op_def *def = &io_op_defs[nxt->opcode];
1572
1573 if ((nxt->flags & REQ_F_ISREG) && def->hash_reg_file)
1574 io_wq_hash_work(&nxt->work, file_inode(nxt->file));
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001575
1576 *workptr = &nxt->work;
1577 link = io_prep_linked_timeout(nxt);
Pavel Begunkov18a542f2020-03-23 00:23:29 +03001578 if (link)
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001579 nxt->work.func = io_link_work_cb;
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001580}
1581
Jens Axboeba816ad2019-09-28 11:36:45 -06001582/*
1583 * Drop reference to request, return next in chain (if there is one) if this
1584 * was the last reference to this request.
1585 */
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001586__attribute__((nonnull))
Jackie Liuec9c02a2019-11-08 23:50:36 +08001587static void io_put_req_find_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboee65ef562019-03-12 10:16:44 -06001588{
Jens Axboe2a44f462020-02-25 13:25:41 -07001589 if (refcount_dec_and_test(&req->refs)) {
1590 io_req_find_next(req, nxtptr);
Jens Axboe4d7dd462019-11-20 13:03:52 -07001591 __io_free_req(req);
Jens Axboe2a44f462020-02-25 13:25:41 -07001592 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001593}
1594
Jens Axboe2b188cc2019-01-07 10:46:33 -07001595static void io_put_req(struct io_kiocb *req)
1596{
Jens Axboedef596e2019-01-09 08:59:42 -07001597 if (refcount_dec_and_test(&req->refs))
1598 io_free_req(req);
1599}
1600
Pavel Begunkove9fd9392020-03-04 16:14:12 +03001601static void io_steal_work(struct io_kiocb *req,
1602 struct io_wq_work **workptr)
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001603{
1604 /*
1605 * It's in an io-wq worker, so there always should be at least
1606 * one reference, which will be dropped in io_put_work() just
1607 * after the current handler returns.
1608 *
1609 * It also means, that if the counter dropped to 1, then there is
1610 * no asynchronous users left, so it's safe to steal the next work.
1611 */
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001612 if (refcount_read(&req->refs) == 1) {
1613 struct io_kiocb *nxt = NULL;
1614
1615 io_req_find_next(req, &nxt);
1616 if (nxt)
1617 io_wq_assign_next(workptr, nxt);
1618 }
1619}
1620
Jens Axboe978db572019-11-14 22:39:04 -07001621/*
1622 * Must only be used if we don't need to care about links, usually from
1623 * within the completion handling itself.
1624 */
1625static void __io_double_put_req(struct io_kiocb *req)
Jens Axboea3a0e432019-08-20 11:03:11 -06001626{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001627 /* drop both submit and complete references */
1628 if (refcount_sub_and_test(2, &req->refs))
1629 __io_free_req(req);
1630}
1631
Jens Axboe978db572019-11-14 22:39:04 -07001632static void io_double_put_req(struct io_kiocb *req)
1633{
1634 /* drop both submit and complete references */
1635 if (refcount_sub_and_test(2, &req->refs))
1636 io_free_req(req);
1637}
1638
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001639static unsigned io_cqring_events(struct io_ring_ctx *ctx, bool noflush)
Jens Axboea3a0e432019-08-20 11:03:11 -06001640{
Jens Axboe84f97dc2019-11-06 11:27:53 -07001641 struct io_rings *rings = ctx->rings;
1642
Jens Axboead3eb2c2019-12-18 17:12:20 -07001643 if (test_bit(0, &ctx->cq_check_overflow)) {
1644 /*
1645 * noflush == true is from the waitqueue handler, just ensure
1646 * we wake up the task, and the next invocation will flush the
1647 * entries. We cannot safely to it from here.
1648 */
1649 if (noflush && !list_empty(&ctx->cq_overflow_list))
1650 return -1U;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001651
Jens Axboead3eb2c2019-12-18 17:12:20 -07001652 io_cqring_overflow_flush(ctx, false);
1653 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001654
Jens Axboea3a0e432019-08-20 11:03:11 -06001655 /* See comment at the top of this file */
1656 smp_rmb();
Jens Axboead3eb2c2019-12-18 17:12:20 -07001657 return ctx->cached_cq_tail - READ_ONCE(rings->cq.head);
Jens Axboea3a0e432019-08-20 11:03:11 -06001658}
1659
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03001660static inline unsigned int io_sqring_entries(struct io_ring_ctx *ctx)
1661{
1662 struct io_rings *rings = ctx->rings;
1663
1664 /* make sure SQ entry isn't read before tail */
1665 return smp_load_acquire(&rings->sq.tail) - ctx->cached_sq_head;
1666}
1667
Jens Axboe8237e042019-12-28 10:48:22 -07001668static inline bool io_req_multi_free(struct req_batch *rb, struct io_kiocb *req)
Jens Axboee94f1412019-12-19 12:06:02 -07001669{
Jens Axboec6ca97b302019-12-28 12:11:08 -07001670 if ((req->flags & REQ_F_LINK) || io_is_fallback_req(req))
1671 return false;
Jens Axboee94f1412019-12-19 12:06:02 -07001672
Jens Axboec6ca97b302019-12-28 12:11:08 -07001673 if (!(req->flags & REQ_F_FIXED_FILE) || req->io)
1674 rb->need_iter++;
1675
1676 rb->reqs[rb->to_free++] = req;
1677 if (unlikely(rb->to_free == ARRAY_SIZE(rb->reqs)))
1678 io_free_req_many(req->ctx, rb);
1679 return true;
Jens Axboee94f1412019-12-19 12:06:02 -07001680}
1681
Jens Axboebcda7ba2020-02-23 16:42:51 -07001682static int io_put_kbuf(struct io_kiocb *req)
1683{
Jens Axboe4d954c22020-02-27 07:31:19 -07001684 struct io_buffer *kbuf;
Jens Axboebcda7ba2020-02-23 16:42:51 -07001685 int cflags;
1686
Jens Axboe4d954c22020-02-27 07:31:19 -07001687 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
Jens Axboebcda7ba2020-02-23 16:42:51 -07001688 cflags = kbuf->bid << IORING_CQE_BUFFER_SHIFT;
1689 cflags |= IORING_CQE_F_BUFFER;
1690 req->rw.addr = 0;
1691 kfree(kbuf);
1692 return cflags;
1693}
1694
Jens Axboedef596e2019-01-09 08:59:42 -07001695/*
1696 * Find and free completed poll iocbs
1697 */
1698static void io_iopoll_complete(struct io_ring_ctx *ctx, unsigned int *nr_events,
1699 struct list_head *done)
1700{
Jens Axboe8237e042019-12-28 10:48:22 -07001701 struct req_batch rb;
Jens Axboedef596e2019-01-09 08:59:42 -07001702 struct io_kiocb *req;
Jens Axboedef596e2019-01-09 08:59:42 -07001703
Jens Axboec6ca97b302019-12-28 12:11:08 -07001704 rb.to_free = rb.need_iter = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001705 while (!list_empty(done)) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07001706 int cflags = 0;
1707
Jens Axboedef596e2019-01-09 08:59:42 -07001708 req = list_first_entry(done, struct io_kiocb, list);
1709 list_del(&req->list);
1710
Jens Axboebcda7ba2020-02-23 16:42:51 -07001711 if (req->flags & REQ_F_BUFFER_SELECTED)
1712 cflags = io_put_kbuf(req);
1713
1714 __io_cqring_fill_event(req, req->result, cflags);
Jens Axboedef596e2019-01-09 08:59:42 -07001715 (*nr_events)++;
1716
Jens Axboe8237e042019-12-28 10:48:22 -07001717 if (refcount_dec_and_test(&req->refs) &&
1718 !io_req_multi_free(&rb, req))
1719 io_free_req(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001720 }
Jens Axboedef596e2019-01-09 08:59:42 -07001721
Jens Axboe09bb8392019-03-13 12:39:28 -06001722 io_commit_cqring(ctx);
Xiaoguang Wang32b22442020-03-11 09:26:09 +08001723 if (ctx->flags & IORING_SETUP_SQPOLL)
1724 io_cqring_ev_posted(ctx);
Jens Axboe8237e042019-12-28 10:48:22 -07001725 io_free_req_many(ctx, &rb);
Jens Axboedef596e2019-01-09 08:59:42 -07001726}
1727
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001728static void io_iopoll_queue(struct list_head *again)
1729{
1730 struct io_kiocb *req;
1731
1732 do {
1733 req = list_first_entry(again, struct io_kiocb, list);
1734 list_del(&req->list);
1735 refcount_inc(&req->refs);
1736 io_queue_async_work(req);
1737 } while (!list_empty(again));
1738}
1739
Jens Axboedef596e2019-01-09 08:59:42 -07001740static int io_do_iopoll(struct io_ring_ctx *ctx, unsigned int *nr_events,
1741 long min)
1742{
1743 struct io_kiocb *req, *tmp;
1744 LIST_HEAD(done);
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001745 LIST_HEAD(again);
Jens Axboedef596e2019-01-09 08:59:42 -07001746 bool spin;
1747 int ret;
1748
1749 /*
1750 * Only spin for completions if we don't have multiple devices hanging
1751 * off our complete list, and we're under the requested amount.
1752 */
1753 spin = !ctx->poll_multi_file && *nr_events < min;
1754
1755 ret = 0;
1756 list_for_each_entry_safe(req, tmp, &ctx->poll_list, list) {
Jens Axboe9adbd452019-12-20 08:45:55 -07001757 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboedef596e2019-01-09 08:59:42 -07001758
1759 /*
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001760 * Move completed and retryable entries to our local lists.
1761 * If we find a request that requires polling, break out
1762 * and complete those lists first, if we have entries there.
Jens Axboedef596e2019-01-09 08:59:42 -07001763 */
1764 if (req->flags & REQ_F_IOPOLL_COMPLETED) {
1765 list_move_tail(&req->list, &done);
1766 continue;
1767 }
1768 if (!list_empty(&done))
1769 break;
1770
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001771 if (req->result == -EAGAIN) {
1772 list_move_tail(&req->list, &again);
1773 continue;
1774 }
1775 if (!list_empty(&again))
1776 break;
1777
Jens Axboedef596e2019-01-09 08:59:42 -07001778 ret = kiocb->ki_filp->f_op->iopoll(kiocb, spin);
1779 if (ret < 0)
1780 break;
1781
1782 if (ret && spin)
1783 spin = false;
1784 ret = 0;
1785 }
1786
1787 if (!list_empty(&done))
1788 io_iopoll_complete(ctx, nr_events, &done);
1789
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001790 if (!list_empty(&again))
1791 io_iopoll_queue(&again);
1792
Jens Axboedef596e2019-01-09 08:59:42 -07001793 return ret;
1794}
1795
1796/*
Brian Gianforcarod195a662019-12-13 03:09:50 -08001797 * Poll for a minimum of 'min' events. Note that if min == 0 we consider that a
Jens Axboedef596e2019-01-09 08:59:42 -07001798 * non-spinning poll check - we'll still enter the driver poll loop, but only
1799 * as a non-spinning completion check.
1800 */
1801static int io_iopoll_getevents(struct io_ring_ctx *ctx, unsigned int *nr_events,
1802 long min)
1803{
Jens Axboe08f54392019-08-21 22:19:11 -06001804 while (!list_empty(&ctx->poll_list) && !need_resched()) {
Jens Axboedef596e2019-01-09 08:59:42 -07001805 int ret;
1806
1807 ret = io_do_iopoll(ctx, nr_events, min);
1808 if (ret < 0)
1809 return ret;
1810 if (!min || *nr_events >= min)
1811 return 0;
1812 }
1813
1814 return 1;
1815}
1816
1817/*
1818 * We can't just wait for polled events to come to us, we have to actively
1819 * find and complete them.
1820 */
1821static void io_iopoll_reap_events(struct io_ring_ctx *ctx)
1822{
1823 if (!(ctx->flags & IORING_SETUP_IOPOLL))
1824 return;
1825
1826 mutex_lock(&ctx->uring_lock);
1827 while (!list_empty(&ctx->poll_list)) {
1828 unsigned int nr_events = 0;
1829
1830 io_iopoll_getevents(ctx, &nr_events, 1);
Jens Axboe08f54392019-08-21 22:19:11 -06001831
1832 /*
1833 * Ensure we allow local-to-the-cpu processing to take place,
1834 * in this case we need to ensure that we reap all events.
1835 */
1836 cond_resched();
Jens Axboedef596e2019-01-09 08:59:42 -07001837 }
1838 mutex_unlock(&ctx->uring_lock);
1839}
1840
Xiaoguang Wangc7849be2020-02-22 14:46:05 +08001841static int io_iopoll_check(struct io_ring_ctx *ctx, unsigned *nr_events,
1842 long min)
Jens Axboedef596e2019-01-09 08:59:42 -07001843{
Jens Axboe2b2ed972019-10-25 10:06:15 -06001844 int iters = 0, ret = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001845
Xiaoguang Wangc7849be2020-02-22 14:46:05 +08001846 /*
1847 * We disallow the app entering submit/complete with polling, but we
1848 * still need to lock the ring to prevent racing with polled issue
1849 * that got punted to a workqueue.
1850 */
1851 mutex_lock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07001852 do {
1853 int tmin = 0;
1854
Jens Axboe500f9fb2019-08-19 12:15:59 -06001855 /*
Jens Axboea3a0e432019-08-20 11:03:11 -06001856 * Don't enter poll loop if we already have events pending.
1857 * If we do, we can potentially be spinning for commands that
1858 * already triggered a CQE (eg in error).
1859 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001860 if (io_cqring_events(ctx, false))
Jens Axboea3a0e432019-08-20 11:03:11 -06001861 break;
1862
1863 /*
Jens Axboe500f9fb2019-08-19 12:15:59 -06001864 * If a submit got punted to a workqueue, we can have the
1865 * application entering polling for a command before it gets
1866 * issued. That app will hold the uring_lock for the duration
1867 * of the poll right here, so we need to take a breather every
1868 * now and then to ensure that the issue has a chance to add
1869 * the poll to the issued list. Otherwise we can spin here
1870 * forever, while the workqueue is stuck trying to acquire the
1871 * very same mutex.
1872 */
1873 if (!(++iters & 7)) {
1874 mutex_unlock(&ctx->uring_lock);
1875 mutex_lock(&ctx->uring_lock);
1876 }
1877
Jens Axboedef596e2019-01-09 08:59:42 -07001878 if (*nr_events < min)
1879 tmin = min - *nr_events;
1880
1881 ret = io_iopoll_getevents(ctx, nr_events, tmin);
1882 if (ret <= 0)
1883 break;
1884 ret = 0;
1885 } while (min && !*nr_events && !need_resched());
1886
Jens Axboe500f9fb2019-08-19 12:15:59 -06001887 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07001888 return ret;
1889}
1890
Jens Axboe491381ce2019-10-17 09:20:46 -06001891static void kiocb_end_write(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001892{
Jens Axboe491381ce2019-10-17 09:20:46 -06001893 /*
1894 * Tell lockdep we inherited freeze protection from submission
1895 * thread.
1896 */
1897 if (req->flags & REQ_F_ISREG) {
1898 struct inode *inode = file_inode(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001899
Jens Axboe491381ce2019-10-17 09:20:46 -06001900 __sb_writers_acquired(inode->i_sb, SB_FREEZE_WRITE);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001901 }
Jens Axboe491381ce2019-10-17 09:20:46 -06001902 file_end_write(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001903}
1904
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001905static inline void req_set_fail_links(struct io_kiocb *req)
1906{
1907 if ((req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) == REQ_F_LINK)
1908 req->flags |= REQ_F_FAIL_LINK;
1909}
1910
Jens Axboeba816ad2019-09-28 11:36:45 -06001911static void io_complete_rw_common(struct kiocb *kiocb, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001912{
Jens Axboe9adbd452019-12-20 08:45:55 -07001913 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001914 int cflags = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001915
Jens Axboe491381ce2019-10-17 09:20:46 -06001916 if (kiocb->ki_flags & IOCB_WRITE)
1917 kiocb_end_write(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001918
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001919 if (res != req->result)
1920 req_set_fail_links(req);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001921 if (req->flags & REQ_F_BUFFER_SELECTED)
1922 cflags = io_put_kbuf(req);
1923 __io_cqring_add_event(req, res, cflags);
Jens Axboeba816ad2019-09-28 11:36:45 -06001924}
1925
1926static void io_complete_rw(struct kiocb *kiocb, long res, long res2)
1927{
Jens Axboe9adbd452019-12-20 08:45:55 -07001928 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboeba816ad2019-09-28 11:36:45 -06001929
1930 io_complete_rw_common(kiocb, res);
Jens Axboee65ef562019-03-12 10:16:44 -06001931 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001932}
1933
Jens Axboedef596e2019-01-09 08:59:42 -07001934static void io_complete_rw_iopoll(struct kiocb *kiocb, long res, long res2)
1935{
Jens Axboe9adbd452019-12-20 08:45:55 -07001936 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboedef596e2019-01-09 08:59:42 -07001937
Jens Axboe491381ce2019-10-17 09:20:46 -06001938 if (kiocb->ki_flags & IOCB_WRITE)
1939 kiocb_end_write(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001940
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001941 if (res != req->result)
1942 req_set_fail_links(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06001943 req->result = res;
Jens Axboedef596e2019-01-09 08:59:42 -07001944 if (res != -EAGAIN)
1945 req->flags |= REQ_F_IOPOLL_COMPLETED;
1946}
1947
1948/*
1949 * After the iocb has been issued, it's safe to be found on the poll list.
1950 * Adding the kiocb to the list AFTER submission ensures that we don't
1951 * find it from a io_iopoll_getevents() thread before the issuer is done
1952 * accessing the kiocb cookie.
1953 */
1954static void io_iopoll_req_issued(struct io_kiocb *req)
1955{
1956 struct io_ring_ctx *ctx = req->ctx;
1957
1958 /*
1959 * Track whether we have multiple files in our lists. This will impact
1960 * how we do polling eventually, not spinning if we're on potentially
1961 * different devices.
1962 */
1963 if (list_empty(&ctx->poll_list)) {
1964 ctx->poll_multi_file = false;
1965 } else if (!ctx->poll_multi_file) {
1966 struct io_kiocb *list_req;
1967
1968 list_req = list_first_entry(&ctx->poll_list, struct io_kiocb,
1969 list);
Jens Axboe9adbd452019-12-20 08:45:55 -07001970 if (list_req->file != req->file)
Jens Axboedef596e2019-01-09 08:59:42 -07001971 ctx->poll_multi_file = true;
1972 }
1973
1974 /*
1975 * For fast devices, IO may have already completed. If it has, add
1976 * it to the front so we find it first.
1977 */
1978 if (req->flags & REQ_F_IOPOLL_COMPLETED)
1979 list_add(&req->list, &ctx->poll_list);
1980 else
1981 list_add_tail(&req->list, &ctx->poll_list);
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08001982
1983 if ((ctx->flags & IORING_SETUP_SQPOLL) &&
1984 wq_has_sleeper(&ctx->sqo_wait))
1985 wake_up(&ctx->sqo_wait);
Jens Axboedef596e2019-01-09 08:59:42 -07001986}
1987
Jens Axboe3d6770f2019-04-13 11:50:54 -06001988static void io_file_put(struct io_submit_state *state)
Jens Axboe9a56a232019-01-09 09:06:50 -07001989{
Jens Axboe3d6770f2019-04-13 11:50:54 -06001990 if (state->file) {
Jens Axboe9a56a232019-01-09 09:06:50 -07001991 int diff = state->has_refs - state->used_refs;
1992
1993 if (diff)
1994 fput_many(state->file, diff);
1995 state->file = NULL;
1996 }
1997}
1998
1999/*
2000 * Get as many references to a file as we have IOs left in this submission,
2001 * assuming most submissions are for one file, or at least that each file
2002 * has more than one submission.
2003 */
Pavel Begunkov8da11c12020-02-24 11:32:44 +03002004static struct file *__io_file_get(struct io_submit_state *state, int fd)
Jens Axboe9a56a232019-01-09 09:06:50 -07002005{
2006 if (!state)
2007 return fget(fd);
2008
2009 if (state->file) {
2010 if (state->fd == fd) {
2011 state->used_refs++;
2012 state->ios_left--;
2013 return state->file;
2014 }
Jens Axboe3d6770f2019-04-13 11:50:54 -06002015 io_file_put(state);
Jens Axboe9a56a232019-01-09 09:06:50 -07002016 }
2017 state->file = fget_many(fd, state->ios_left);
2018 if (!state->file)
2019 return NULL;
2020
2021 state->fd = fd;
2022 state->has_refs = state->ios_left;
2023 state->used_refs = 1;
2024 state->ios_left--;
2025 return state->file;
2026}
2027
Jens Axboe2b188cc2019-01-07 10:46:33 -07002028/*
2029 * If we tracked the file through the SCM inflight mechanism, we could support
2030 * any file. For now, just ensure that anything potentially problematic is done
2031 * inline.
2032 */
2033static bool io_file_supports_async(struct file *file)
2034{
2035 umode_t mode = file_inode(file)->i_mode;
2036
Jens Axboe10d59342019-12-09 20:16:22 -07002037 if (S_ISBLK(mode) || S_ISCHR(mode) || S_ISSOCK(mode))
Jens Axboe2b188cc2019-01-07 10:46:33 -07002038 return true;
2039 if (S_ISREG(mode) && file->f_op != &io_uring_fops)
2040 return true;
2041
2042 return false;
2043}
2044
Jens Axboe3529d8c2019-12-19 18:24:38 -07002045static int io_prep_rw(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2046 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002047{
Jens Axboedef596e2019-01-09 08:59:42 -07002048 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9adbd452019-12-20 08:45:55 -07002049 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe09bb8392019-03-13 12:39:28 -06002050 unsigned ioprio;
2051 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002052
Jens Axboe491381ce2019-10-17 09:20:46 -06002053 if (S_ISREG(file_inode(req->file)->i_mode))
2054 req->flags |= REQ_F_ISREG;
2055
Jens Axboe2b188cc2019-01-07 10:46:33 -07002056 kiocb->ki_pos = READ_ONCE(sqe->off);
Jens Axboeba042912019-12-25 16:33:42 -07002057 if (kiocb->ki_pos == -1 && !(req->file->f_mode & FMODE_STREAM)) {
2058 req->flags |= REQ_F_CUR_POS;
2059 kiocb->ki_pos = req->file->f_pos;
2060 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002061 kiocb->ki_hint = ki_hint_validate(file_write_hint(kiocb->ki_filp));
Pavel Begunkov3e577dc2020-02-01 03:58:42 +03002062 kiocb->ki_flags = iocb_flags(kiocb->ki_filp);
2063 ret = kiocb_set_rw_flags(kiocb, READ_ONCE(sqe->rw_flags));
2064 if (unlikely(ret))
2065 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002066
2067 ioprio = READ_ONCE(sqe->ioprio);
2068 if (ioprio) {
2069 ret = ioprio_check_cap(ioprio);
2070 if (ret)
Jens Axboe09bb8392019-03-13 12:39:28 -06002071 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002072
2073 kiocb->ki_ioprio = ioprio;
2074 } else
2075 kiocb->ki_ioprio = get_current_ioprio();
2076
Stefan Bühler8449eed2019-04-27 20:34:19 +02002077 /* don't allow async punt if RWF_NOWAIT was requested */
Jens Axboe491381ce2019-10-17 09:20:46 -06002078 if ((kiocb->ki_flags & IOCB_NOWAIT) ||
2079 (req->file->f_flags & O_NONBLOCK))
Stefan Bühler8449eed2019-04-27 20:34:19 +02002080 req->flags |= REQ_F_NOWAIT;
2081
2082 if (force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002083 kiocb->ki_flags |= IOCB_NOWAIT;
Stefan Bühler8449eed2019-04-27 20:34:19 +02002084
Jens Axboedef596e2019-01-09 08:59:42 -07002085 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07002086 if (!(kiocb->ki_flags & IOCB_DIRECT) ||
2087 !kiocb->ki_filp->f_op->iopoll)
Jens Axboe09bb8392019-03-13 12:39:28 -06002088 return -EOPNOTSUPP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002089
Jens Axboedef596e2019-01-09 08:59:42 -07002090 kiocb->ki_flags |= IOCB_HIPRI;
2091 kiocb->ki_complete = io_complete_rw_iopoll;
Jens Axboe6873e0b2019-10-30 13:53:09 -06002092 req->result = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07002093 } else {
Jens Axboe09bb8392019-03-13 12:39:28 -06002094 if (kiocb->ki_flags & IOCB_HIPRI)
2095 return -EINVAL;
Jens Axboedef596e2019-01-09 08:59:42 -07002096 kiocb->ki_complete = io_complete_rw;
2097 }
Jens Axboe9adbd452019-12-20 08:45:55 -07002098
Jens Axboe3529d8c2019-12-19 18:24:38 -07002099 req->rw.addr = READ_ONCE(sqe->addr);
2100 req->rw.len = READ_ONCE(sqe->len);
Jens Axboebcda7ba2020-02-23 16:42:51 -07002101 /* we own ->private, reuse it for the buffer index / buffer ID */
Jens Axboe9adbd452019-12-20 08:45:55 -07002102 req->rw.kiocb.private = (void *) (unsigned long)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002103 READ_ONCE(sqe->buf_index);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002104 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002105}
2106
2107static inline void io_rw_done(struct kiocb *kiocb, ssize_t ret)
2108{
2109 switch (ret) {
2110 case -EIOCBQUEUED:
2111 break;
2112 case -ERESTARTSYS:
2113 case -ERESTARTNOINTR:
2114 case -ERESTARTNOHAND:
2115 case -ERESTART_RESTARTBLOCK:
2116 /*
2117 * We can't just restart the syscall, since previously
2118 * submitted sqes may already be in progress. Just fail this
2119 * IO with EINTR.
2120 */
2121 ret = -EINTR;
2122 /* fall through */
2123 default:
2124 kiocb->ki_complete(kiocb, ret, 0);
2125 }
2126}
2127
Pavel Begunkov014db002020-03-03 21:33:12 +03002128static void kiocb_done(struct kiocb *kiocb, ssize_t ret)
Jens Axboeba816ad2019-09-28 11:36:45 -06002129{
Jens Axboeba042912019-12-25 16:33:42 -07002130 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
2131
2132 if (req->flags & REQ_F_CUR_POS)
2133 req->file->f_pos = kiocb->ki_pos;
Pavel Begunkovbcaec082020-02-24 11:30:18 +03002134 if (ret >= 0 && kiocb->ki_complete == io_complete_rw)
Pavel Begunkov014db002020-03-03 21:33:12 +03002135 io_complete_rw(kiocb, ret, 0);
Jens Axboeba816ad2019-09-28 11:36:45 -06002136 else
2137 io_rw_done(kiocb, ret);
2138}
2139
Jens Axboe9adbd452019-12-20 08:45:55 -07002140static ssize_t io_import_fixed(struct io_kiocb *req, int rw,
Pavel Begunkov7d009162019-11-25 23:14:40 +03002141 struct iov_iter *iter)
Jens Axboeedafcce2019-01-09 09:16:05 -07002142{
Jens Axboe9adbd452019-12-20 08:45:55 -07002143 struct io_ring_ctx *ctx = req->ctx;
2144 size_t len = req->rw.len;
Jens Axboeedafcce2019-01-09 09:16:05 -07002145 struct io_mapped_ubuf *imu;
2146 unsigned index, buf_index;
2147 size_t offset;
2148 u64 buf_addr;
2149
2150 /* attempt to use fixed buffers without having provided iovecs */
2151 if (unlikely(!ctx->user_bufs))
2152 return -EFAULT;
2153
Jens Axboe9adbd452019-12-20 08:45:55 -07002154 buf_index = (unsigned long) req->rw.kiocb.private;
Jens Axboeedafcce2019-01-09 09:16:05 -07002155 if (unlikely(buf_index >= ctx->nr_user_bufs))
2156 return -EFAULT;
2157
2158 index = array_index_nospec(buf_index, ctx->nr_user_bufs);
2159 imu = &ctx->user_bufs[index];
Jens Axboe9adbd452019-12-20 08:45:55 -07002160 buf_addr = req->rw.addr;
Jens Axboeedafcce2019-01-09 09:16:05 -07002161
2162 /* overflow */
2163 if (buf_addr + len < buf_addr)
2164 return -EFAULT;
2165 /* not inside the mapped region */
2166 if (buf_addr < imu->ubuf || buf_addr + len > imu->ubuf + imu->len)
2167 return -EFAULT;
2168
2169 /*
2170 * May not be a start of buffer, set size appropriately
2171 * and advance us to the beginning.
2172 */
2173 offset = buf_addr - imu->ubuf;
2174 iov_iter_bvec(iter, rw, imu->bvec, imu->nr_bvecs, offset + len);
Jens Axboebd11b3a2019-07-20 08:37:31 -06002175
2176 if (offset) {
2177 /*
2178 * Don't use iov_iter_advance() here, as it's really slow for
2179 * using the latter parts of a big fixed buffer - it iterates
2180 * over each segment manually. We can cheat a bit here, because
2181 * we know that:
2182 *
2183 * 1) it's a BVEC iter, we set it up
2184 * 2) all bvecs are PAGE_SIZE in size, except potentially the
2185 * first and last bvec
2186 *
2187 * So just find our index, and adjust the iterator afterwards.
2188 * If the offset is within the first bvec (or the whole first
2189 * bvec, just use iov_iter_advance(). This makes it easier
2190 * since we can just skip the first segment, which may not
2191 * be PAGE_SIZE aligned.
2192 */
2193 const struct bio_vec *bvec = imu->bvec;
2194
2195 if (offset <= bvec->bv_len) {
2196 iov_iter_advance(iter, offset);
2197 } else {
2198 unsigned long seg_skip;
2199
2200 /* skip first vec */
2201 offset -= bvec->bv_len;
2202 seg_skip = 1 + (offset >> PAGE_SHIFT);
2203
2204 iter->bvec = bvec + seg_skip;
2205 iter->nr_segs -= seg_skip;
Aleix Roca Nonell99c79f62019-08-15 14:03:22 +02002206 iter->count -= bvec->bv_len + offset;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002207 iter->iov_offset = offset & ~PAGE_MASK;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002208 }
2209 }
2210
Jens Axboe5e559562019-11-13 16:12:46 -07002211 return len;
Jens Axboeedafcce2019-01-09 09:16:05 -07002212}
2213
Jens Axboebcda7ba2020-02-23 16:42:51 -07002214static void io_ring_submit_unlock(struct io_ring_ctx *ctx, bool needs_lock)
2215{
2216 if (needs_lock)
2217 mutex_unlock(&ctx->uring_lock);
2218}
2219
2220static void io_ring_submit_lock(struct io_ring_ctx *ctx, bool needs_lock)
2221{
2222 /*
2223 * "Normal" inline submissions always hold the uring_lock, since we
2224 * grab it from the system call. Same is true for the SQPOLL offload.
2225 * The only exception is when we've detached the request and issue it
2226 * from an async worker thread, grab the lock for that case.
2227 */
2228 if (needs_lock)
2229 mutex_lock(&ctx->uring_lock);
2230}
2231
2232static struct io_buffer *io_buffer_select(struct io_kiocb *req, size_t *len,
2233 int bgid, struct io_buffer *kbuf,
2234 bool needs_lock)
2235{
2236 struct io_buffer *head;
2237
2238 if (req->flags & REQ_F_BUFFER_SELECTED)
2239 return kbuf;
2240
2241 io_ring_submit_lock(req->ctx, needs_lock);
2242
2243 lockdep_assert_held(&req->ctx->uring_lock);
2244
2245 head = idr_find(&req->ctx->io_buffer_idr, bgid);
2246 if (head) {
2247 if (!list_empty(&head->list)) {
2248 kbuf = list_last_entry(&head->list, struct io_buffer,
2249 list);
2250 list_del(&kbuf->list);
2251 } else {
2252 kbuf = head;
2253 idr_remove(&req->ctx->io_buffer_idr, bgid);
2254 }
2255 if (*len > kbuf->len)
2256 *len = kbuf->len;
2257 } else {
2258 kbuf = ERR_PTR(-ENOBUFS);
2259 }
2260
2261 io_ring_submit_unlock(req->ctx, needs_lock);
2262
2263 return kbuf;
2264}
2265
Jens Axboe4d954c22020-02-27 07:31:19 -07002266static void __user *io_rw_buffer_select(struct io_kiocb *req, size_t *len,
2267 bool needs_lock)
2268{
2269 struct io_buffer *kbuf;
2270 int bgid;
2271
2272 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
2273 bgid = (int) (unsigned long) req->rw.kiocb.private;
2274 kbuf = io_buffer_select(req, len, bgid, kbuf, needs_lock);
2275 if (IS_ERR(kbuf))
2276 return kbuf;
2277 req->rw.addr = (u64) (unsigned long) kbuf;
2278 req->flags |= REQ_F_BUFFER_SELECTED;
2279 return u64_to_user_ptr(kbuf->addr);
2280}
2281
2282#ifdef CONFIG_COMPAT
2283static ssize_t io_compat_import(struct io_kiocb *req, struct iovec *iov,
2284 bool needs_lock)
2285{
2286 struct compat_iovec __user *uiov;
2287 compat_ssize_t clen;
2288 void __user *buf;
2289 ssize_t len;
2290
2291 uiov = u64_to_user_ptr(req->rw.addr);
2292 if (!access_ok(uiov, sizeof(*uiov)))
2293 return -EFAULT;
2294 if (__get_user(clen, &uiov->iov_len))
2295 return -EFAULT;
2296 if (clen < 0)
2297 return -EINVAL;
2298
2299 len = clen;
2300 buf = io_rw_buffer_select(req, &len, needs_lock);
2301 if (IS_ERR(buf))
2302 return PTR_ERR(buf);
2303 iov[0].iov_base = buf;
2304 iov[0].iov_len = (compat_size_t) len;
2305 return 0;
2306}
2307#endif
2308
2309static ssize_t __io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
2310 bool needs_lock)
2311{
2312 struct iovec __user *uiov = u64_to_user_ptr(req->rw.addr);
2313 void __user *buf;
2314 ssize_t len;
2315
2316 if (copy_from_user(iov, uiov, sizeof(*uiov)))
2317 return -EFAULT;
2318
2319 len = iov[0].iov_len;
2320 if (len < 0)
2321 return -EINVAL;
2322 buf = io_rw_buffer_select(req, &len, needs_lock);
2323 if (IS_ERR(buf))
2324 return PTR_ERR(buf);
2325 iov[0].iov_base = buf;
2326 iov[0].iov_len = len;
2327 return 0;
2328}
2329
2330static ssize_t io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
2331 bool needs_lock)
2332{
2333 if (req->flags & REQ_F_BUFFER_SELECTED)
2334 return 0;
2335 if (!req->rw.len)
2336 return 0;
2337 else if (req->rw.len > 1)
2338 return -EINVAL;
2339
2340#ifdef CONFIG_COMPAT
2341 if (req->ctx->compat)
2342 return io_compat_import(req, iov, needs_lock);
2343#endif
2344
2345 return __io_iov_buffer_select(req, iov, needs_lock);
2346}
2347
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002348static ssize_t io_import_iovec(int rw, struct io_kiocb *req,
Jens Axboebcda7ba2020-02-23 16:42:51 -07002349 struct iovec **iovec, struct iov_iter *iter,
2350 bool needs_lock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002351{
Jens Axboe9adbd452019-12-20 08:45:55 -07002352 void __user *buf = u64_to_user_ptr(req->rw.addr);
2353 size_t sqe_len = req->rw.len;
Jens Axboe4d954c22020-02-27 07:31:19 -07002354 ssize_t ret;
Jens Axboeedafcce2019-01-09 09:16:05 -07002355 u8 opcode;
2356
Jens Axboed625c6e2019-12-17 19:53:05 -07002357 opcode = req->opcode;
Pavel Begunkov7d009162019-11-25 23:14:40 +03002358 if (opcode == IORING_OP_READ_FIXED || opcode == IORING_OP_WRITE_FIXED) {
Jens Axboeedafcce2019-01-09 09:16:05 -07002359 *iovec = NULL;
Jens Axboe9adbd452019-12-20 08:45:55 -07002360 return io_import_fixed(req, rw, iter);
Jens Axboeedafcce2019-01-09 09:16:05 -07002361 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002362
Jens Axboebcda7ba2020-02-23 16:42:51 -07002363 /* buffer index only valid with fixed read/write, or buffer select */
2364 if (req->rw.kiocb.private && !(req->flags & REQ_F_BUFFER_SELECT))
Jens Axboe9adbd452019-12-20 08:45:55 -07002365 return -EINVAL;
2366
Jens Axboe3a6820f2019-12-22 15:19:35 -07002367 if (opcode == IORING_OP_READ || opcode == IORING_OP_WRITE) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07002368 if (req->flags & REQ_F_BUFFER_SELECT) {
Jens Axboe4d954c22020-02-27 07:31:19 -07002369 buf = io_rw_buffer_select(req, &sqe_len, needs_lock);
2370 if (IS_ERR(buf)) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07002371 *iovec = NULL;
Jens Axboe4d954c22020-02-27 07:31:19 -07002372 return PTR_ERR(buf);
Jens Axboebcda7ba2020-02-23 16:42:51 -07002373 }
Jens Axboe3f9d6442020-03-11 12:27:04 -06002374 req->rw.len = sqe_len;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002375 }
2376
Jens Axboe3a6820f2019-12-22 15:19:35 -07002377 ret = import_single_range(rw, buf, sqe_len, *iovec, iter);
2378 *iovec = NULL;
Jens Axboe3a901592020-02-25 17:48:55 -07002379 return ret < 0 ? ret : sqe_len;
Jens Axboe3a6820f2019-12-22 15:19:35 -07002380 }
2381
Jens Axboef67676d2019-12-02 11:03:47 -07002382 if (req->io) {
2383 struct io_async_rw *iorw = &req->io->rw;
2384
2385 *iovec = iorw->iov;
2386 iov_iter_init(iter, rw, *iovec, iorw->nr_segs, iorw->size);
2387 if (iorw->iov == iorw->fast_iov)
2388 *iovec = NULL;
2389 return iorw->size;
2390 }
2391
Jens Axboe4d954c22020-02-27 07:31:19 -07002392 if (req->flags & REQ_F_BUFFER_SELECT) {
2393 ret = io_iov_buffer_select(req, *iovec, needs_lock);
Jens Axboe3f9d6442020-03-11 12:27:04 -06002394 if (!ret) {
2395 ret = (*iovec)->iov_len;
2396 iov_iter_init(iter, rw, *iovec, 1, ret);
2397 }
Jens Axboe4d954c22020-02-27 07:31:19 -07002398 *iovec = NULL;
2399 return ret;
2400 }
2401
Jens Axboe2b188cc2019-01-07 10:46:33 -07002402#ifdef CONFIG_COMPAT
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002403 if (req->ctx->compat)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002404 return compat_import_iovec(rw, buf, sqe_len, UIO_FASTIOV,
2405 iovec, iter);
2406#endif
2407
2408 return import_iovec(rw, buf, sqe_len, UIO_FASTIOV, iovec, iter);
2409}
2410
Jens Axboe32960612019-09-23 11:05:34 -06002411/*
2412 * For files that don't have ->read_iter() and ->write_iter(), handle them
2413 * by looping over ->read() or ->write() manually.
2414 */
2415static ssize_t loop_rw_iter(int rw, struct file *file, struct kiocb *kiocb,
2416 struct iov_iter *iter)
2417{
2418 ssize_t ret = 0;
2419
2420 /*
2421 * Don't support polled IO through this interface, and we can't
2422 * support non-blocking either. For the latter, this just causes
2423 * the kiocb to be handled from an async context.
2424 */
2425 if (kiocb->ki_flags & IOCB_HIPRI)
2426 return -EOPNOTSUPP;
2427 if (kiocb->ki_flags & IOCB_NOWAIT)
2428 return -EAGAIN;
2429
2430 while (iov_iter_count(iter)) {
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002431 struct iovec iovec;
Jens Axboe32960612019-09-23 11:05:34 -06002432 ssize_t nr;
2433
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002434 if (!iov_iter_is_bvec(iter)) {
2435 iovec = iov_iter_iovec(iter);
2436 } else {
2437 /* fixed buffers import bvec */
2438 iovec.iov_base = kmap(iter->bvec->bv_page)
2439 + iter->iov_offset;
2440 iovec.iov_len = min(iter->count,
2441 iter->bvec->bv_len - iter->iov_offset);
2442 }
2443
Jens Axboe32960612019-09-23 11:05:34 -06002444 if (rw == READ) {
2445 nr = file->f_op->read(file, iovec.iov_base,
2446 iovec.iov_len, &kiocb->ki_pos);
2447 } else {
2448 nr = file->f_op->write(file, iovec.iov_base,
2449 iovec.iov_len, &kiocb->ki_pos);
2450 }
2451
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002452 if (iov_iter_is_bvec(iter))
2453 kunmap(iter->bvec->bv_page);
2454
Jens Axboe32960612019-09-23 11:05:34 -06002455 if (nr < 0) {
2456 if (!ret)
2457 ret = nr;
2458 break;
2459 }
2460 ret += nr;
2461 if (nr != iovec.iov_len)
2462 break;
2463 iov_iter_advance(iter, nr);
2464 }
2465
2466 return ret;
2467}
2468
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002469static void io_req_map_rw(struct io_kiocb *req, ssize_t io_size,
Jens Axboef67676d2019-12-02 11:03:47 -07002470 struct iovec *iovec, struct iovec *fast_iov,
2471 struct iov_iter *iter)
2472{
2473 req->io->rw.nr_segs = iter->nr_segs;
2474 req->io->rw.size = io_size;
2475 req->io->rw.iov = iovec;
2476 if (!req->io->rw.iov) {
2477 req->io->rw.iov = req->io->rw.fast_iov;
Xiaoguang Wang45097da2020-04-08 22:29:58 +08002478 if (req->io->rw.iov != fast_iov)
2479 memcpy(req->io->rw.iov, fast_iov,
2480 sizeof(struct iovec) * iter->nr_segs);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002481 } else {
2482 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboef67676d2019-12-02 11:03:47 -07002483 }
2484}
2485
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08002486static inline int __io_alloc_async_ctx(struct io_kiocb *req)
2487{
2488 req->io = kmalloc(sizeof(*req->io), GFP_KERNEL);
2489 return req->io == NULL;
2490}
2491
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002492static int io_alloc_async_ctx(struct io_kiocb *req)
Jens Axboef67676d2019-12-02 11:03:47 -07002493{
Jens Axboed3656342019-12-18 09:50:26 -07002494 if (!io_op_defs[req->opcode].async_ctx)
2495 return 0;
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08002496
2497 return __io_alloc_async_ctx(req);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002498}
2499
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002500static int io_setup_async_rw(struct io_kiocb *req, ssize_t io_size,
2501 struct iovec *iovec, struct iovec *fast_iov,
2502 struct iov_iter *iter)
2503{
Jens Axboe980ad262020-01-24 23:08:54 -07002504 if (!io_op_defs[req->opcode].async_ctx)
Jens Axboe74566df2020-01-13 19:23:24 -07002505 return 0;
Jens Axboe5d204bc2020-01-31 12:06:52 -07002506 if (!req->io) {
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08002507 if (__io_alloc_async_ctx(req))
Jens Axboe5d204bc2020-01-31 12:06:52 -07002508 return -ENOMEM;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002509
Jens Axboe5d204bc2020-01-31 12:06:52 -07002510 io_req_map_rw(req, io_size, iovec, fast_iov, iter);
2511 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002512 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002513}
2514
Jens Axboe3529d8c2019-12-19 18:24:38 -07002515static int io_read_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2516 bool force_nonblock)
Jens Axboef67676d2019-12-02 11:03:47 -07002517{
Jens Axboe3529d8c2019-12-19 18:24:38 -07002518 struct io_async_ctx *io;
2519 struct iov_iter iter;
Jens Axboef67676d2019-12-02 11:03:47 -07002520 ssize_t ret;
2521
Jens Axboe3529d8c2019-12-19 18:24:38 -07002522 ret = io_prep_rw(req, sqe, force_nonblock);
2523 if (ret)
2524 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07002525
Jens Axboe3529d8c2019-12-19 18:24:38 -07002526 if (unlikely(!(req->file->f_mode & FMODE_READ)))
2527 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07002528
Pavel Begunkov5f798be2020-02-08 13:28:02 +03002529 /* either don't need iovec imported or already have it */
2530 if (!req->io || req->flags & REQ_F_NEED_CLEANUP)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002531 return 0;
2532
2533 io = req->io;
2534 io->rw.iov = io->rw.fast_iov;
2535 req->io = NULL;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002536 ret = io_import_iovec(READ, req, &io->rw.iov, &iter, !force_nonblock);
Jens Axboe3529d8c2019-12-19 18:24:38 -07002537 req->io = io;
2538 if (ret < 0)
2539 return ret;
2540
2541 io_req_map_rw(req, ret, io->rw.iov, io->rw.fast_iov, &iter);
2542 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002543}
2544
Pavel Begunkov014db002020-03-03 21:33:12 +03002545static int io_read(struct io_kiocb *req, bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002546{
2547 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07002548 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002549 struct iov_iter iter;
Jens Axboe31b51512019-01-18 22:56:34 -07002550 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07002551 ssize_t io_size, ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002552
Jens Axboebcda7ba2020-02-23 16:42:51 -07002553 ret = io_import_iovec(READ, req, &iovec, &iter, !force_nonblock);
Jens Axboe06b76d42019-12-19 14:44:26 -07002554 if (ret < 0)
2555 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002556
Jens Axboefd6c2e42019-12-18 12:19:41 -07002557 /* Ensure we clear previously set non-block flag */
2558 if (!force_nonblock)
Jens Axboe29de5f62020-02-20 09:56:08 -07002559 kiocb->ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07002560
Bijan Mottahedeh797f3f52020-01-15 18:37:45 -08002561 req->result = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002562 io_size = ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06002563 if (req->flags & REQ_F_LINK)
Jens Axboef67676d2019-12-02 11:03:47 -07002564 req->result = io_size;
2565
2566 /*
2567 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
2568 * we know to async punt it even if it was opened O_NONBLOCK
2569 */
Jens Axboe29de5f62020-02-20 09:56:08 -07002570 if (force_nonblock && !io_file_supports_async(req->file))
Jens Axboef67676d2019-12-02 11:03:47 -07002571 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06002572
Jens Axboe31b51512019-01-18 22:56:34 -07002573 iov_count = iov_iter_count(&iter);
Jens Axboe9adbd452019-12-20 08:45:55 -07002574 ret = rw_verify_area(READ, req->file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002575 if (!ret) {
2576 ssize_t ret2;
2577
Jens Axboe9adbd452019-12-20 08:45:55 -07002578 if (req->file->f_op->read_iter)
2579 ret2 = call_read_iter(req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002580 else
Jens Axboe9adbd452019-12-20 08:45:55 -07002581 ret2 = loop_rw_iter(READ, req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002582
Jens Axboe9d93a3f2019-05-15 13:53:07 -06002583 /* Catch -EAGAIN return for forced non-blocking submission */
Jens Axboef67676d2019-12-02 11:03:47 -07002584 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkov014db002020-03-03 21:33:12 +03002585 kiocb_done(kiocb, ret2);
Jens Axboef67676d2019-12-02 11:03:47 -07002586 } else {
2587copy_iov:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002588 ret = io_setup_async_rw(req, io_size, iovec,
Jens Axboef67676d2019-12-02 11:03:47 -07002589 inline_vecs, &iter);
2590 if (ret)
2591 goto out_free;
Jens Axboe29de5f62020-02-20 09:56:08 -07002592 /* any defer here is final, must blocking retry */
2593 if (!(req->flags & REQ_F_NOWAIT))
2594 req->flags |= REQ_F_MUST_PUNT;
Jens Axboef67676d2019-12-02 11:03:47 -07002595 return -EAGAIN;
2596 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002597 }
Jens Axboef67676d2019-12-02 11:03:47 -07002598out_free:
Pavel Begunkov1e950812020-02-06 19:51:16 +03002599 kfree(iovec);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002600 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002601 return ret;
2602}
2603
Jens Axboe3529d8c2019-12-19 18:24:38 -07002604static int io_write_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2605 bool force_nonblock)
Jens Axboef67676d2019-12-02 11:03:47 -07002606{
Jens Axboe3529d8c2019-12-19 18:24:38 -07002607 struct io_async_ctx *io;
2608 struct iov_iter iter;
Jens Axboef67676d2019-12-02 11:03:47 -07002609 ssize_t ret;
2610
Jens Axboe3529d8c2019-12-19 18:24:38 -07002611 ret = io_prep_rw(req, sqe, force_nonblock);
2612 if (ret)
2613 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07002614
Jens Axboe3529d8c2019-12-19 18:24:38 -07002615 if (unlikely(!(req->file->f_mode & FMODE_WRITE)))
2616 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07002617
Jens Axboe4ed734b2020-03-20 11:23:41 -06002618 req->fsize = rlimit(RLIMIT_FSIZE);
2619
Pavel Begunkov5f798be2020-02-08 13:28:02 +03002620 /* either don't need iovec imported or already have it */
2621 if (!req->io || req->flags & REQ_F_NEED_CLEANUP)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002622 return 0;
2623
2624 io = req->io;
2625 io->rw.iov = io->rw.fast_iov;
2626 req->io = NULL;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002627 ret = io_import_iovec(WRITE, req, &io->rw.iov, &iter, !force_nonblock);
Jens Axboe3529d8c2019-12-19 18:24:38 -07002628 req->io = io;
2629 if (ret < 0)
2630 return ret;
2631
2632 io_req_map_rw(req, ret, io->rw.iov, io->rw.fast_iov, &iter);
2633 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002634}
2635
Pavel Begunkov014db002020-03-03 21:33:12 +03002636static int io_write(struct io_kiocb *req, bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002637{
2638 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07002639 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002640 struct iov_iter iter;
Jens Axboe31b51512019-01-18 22:56:34 -07002641 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07002642 ssize_t ret, io_size;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002643
Jens Axboebcda7ba2020-02-23 16:42:51 -07002644 ret = io_import_iovec(WRITE, req, &iovec, &iter, !force_nonblock);
Jens Axboe06b76d42019-12-19 14:44:26 -07002645 if (ret < 0)
2646 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002647
Jens Axboefd6c2e42019-12-18 12:19:41 -07002648 /* Ensure we clear previously set non-block flag */
2649 if (!force_nonblock)
Jens Axboe9adbd452019-12-20 08:45:55 -07002650 req->rw.kiocb.ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07002651
Bijan Mottahedeh797f3f52020-01-15 18:37:45 -08002652 req->result = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002653 io_size = ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06002654 if (req->flags & REQ_F_LINK)
Jens Axboef67676d2019-12-02 11:03:47 -07002655 req->result = io_size;
2656
2657 /*
2658 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
2659 * we know to async punt it even if it was opened O_NONBLOCK
2660 */
Jens Axboe29de5f62020-02-20 09:56:08 -07002661 if (force_nonblock && !io_file_supports_async(req->file))
Jens Axboef67676d2019-12-02 11:03:47 -07002662 goto copy_iov;
Jens Axboef67676d2019-12-02 11:03:47 -07002663
Jens Axboe10d59342019-12-09 20:16:22 -07002664 /* file path doesn't support NOWAIT for non-direct_IO */
2665 if (force_nonblock && !(kiocb->ki_flags & IOCB_DIRECT) &&
2666 (req->flags & REQ_F_ISREG))
Jens Axboef67676d2019-12-02 11:03:47 -07002667 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06002668
Jens Axboe31b51512019-01-18 22:56:34 -07002669 iov_count = iov_iter_count(&iter);
Jens Axboe9adbd452019-12-20 08:45:55 -07002670 ret = rw_verify_area(WRITE, req->file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002671 if (!ret) {
Roman Penyaev9bf79332019-03-25 20:09:24 +01002672 ssize_t ret2;
2673
Jens Axboe2b188cc2019-01-07 10:46:33 -07002674 /*
2675 * Open-code file_start_write here to grab freeze protection,
2676 * which will be released by another thread in
2677 * io_complete_rw(). Fool lockdep by telling it the lock got
2678 * released so that it doesn't complain about the held lock when
2679 * we return to userspace.
2680 */
Jens Axboe491381ce2019-10-17 09:20:46 -06002681 if (req->flags & REQ_F_ISREG) {
Jens Axboe9adbd452019-12-20 08:45:55 -07002682 __sb_start_write(file_inode(req->file)->i_sb,
Jens Axboe2b188cc2019-01-07 10:46:33 -07002683 SB_FREEZE_WRITE, true);
Jens Axboe9adbd452019-12-20 08:45:55 -07002684 __sb_writers_release(file_inode(req->file)->i_sb,
Jens Axboe2b188cc2019-01-07 10:46:33 -07002685 SB_FREEZE_WRITE);
2686 }
2687 kiocb->ki_flags |= IOCB_WRITE;
Roman Penyaev9bf79332019-03-25 20:09:24 +01002688
Jens Axboe4ed734b2020-03-20 11:23:41 -06002689 if (!force_nonblock)
2690 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = req->fsize;
2691
Jens Axboe9adbd452019-12-20 08:45:55 -07002692 if (req->file->f_op->write_iter)
2693 ret2 = call_write_iter(req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002694 else
Jens Axboe9adbd452019-12-20 08:45:55 -07002695 ret2 = loop_rw_iter(WRITE, req->file, kiocb, &iter);
Jens Axboe4ed734b2020-03-20 11:23:41 -06002696
2697 if (!force_nonblock)
2698 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = RLIM_INFINITY;
2699
Jens Axboefaac9962020-02-07 15:45:22 -07002700 /*
Chucheng Luobff60352020-03-25 11:31:38 +08002701 * Raw bdev writes will return -EOPNOTSUPP for IOCB_NOWAIT. Just
Jens Axboefaac9962020-02-07 15:45:22 -07002702 * retry them without IOCB_NOWAIT.
2703 */
2704 if (ret2 == -EOPNOTSUPP && (kiocb->ki_flags & IOCB_NOWAIT))
2705 ret2 = -EAGAIN;
Jens Axboef67676d2019-12-02 11:03:47 -07002706 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkov014db002020-03-03 21:33:12 +03002707 kiocb_done(kiocb, ret2);
Jens Axboef67676d2019-12-02 11:03:47 -07002708 } else {
2709copy_iov:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002710 ret = io_setup_async_rw(req, io_size, iovec,
Jens Axboef67676d2019-12-02 11:03:47 -07002711 inline_vecs, &iter);
2712 if (ret)
2713 goto out_free;
Jens Axboe29de5f62020-02-20 09:56:08 -07002714 /* any defer here is final, must blocking retry */
2715 req->flags |= REQ_F_MUST_PUNT;
Jens Axboef67676d2019-12-02 11:03:47 -07002716 return -EAGAIN;
2717 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002718 }
Jens Axboe31b51512019-01-18 22:56:34 -07002719out_free:
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002720 req->flags &= ~REQ_F_NEED_CLEANUP;
Pavel Begunkov1e950812020-02-06 19:51:16 +03002721 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002722 return ret;
2723}
2724
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002725static int io_splice_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2726{
2727 struct io_splice* sp = &req->splice;
2728 unsigned int valid_flags = SPLICE_F_FD_IN_FIXED | SPLICE_F_ALL;
2729 int ret;
2730
2731 if (req->flags & REQ_F_NEED_CLEANUP)
2732 return 0;
2733
2734 sp->file_in = NULL;
2735 sp->off_in = READ_ONCE(sqe->splice_off_in);
2736 sp->off_out = READ_ONCE(sqe->off);
2737 sp->len = READ_ONCE(sqe->len);
2738 sp->flags = READ_ONCE(sqe->splice_flags);
2739
2740 if (unlikely(sp->flags & ~valid_flags))
2741 return -EINVAL;
2742
2743 ret = io_file_get(NULL, req, READ_ONCE(sqe->splice_fd_in), &sp->file_in,
2744 (sp->flags & SPLICE_F_FD_IN_FIXED));
2745 if (ret)
2746 return ret;
2747 req->flags |= REQ_F_NEED_CLEANUP;
2748
2749 if (!S_ISREG(file_inode(sp->file_in)->i_mode))
2750 req->work.flags |= IO_WQ_WORK_UNBOUND;
2751
2752 return 0;
2753}
2754
2755static bool io_splice_punt(struct file *file)
2756{
2757 if (get_pipe_info(file))
2758 return false;
2759 if (!io_file_supports_async(file))
2760 return true;
2761 return !(file->f_mode & O_NONBLOCK);
2762}
2763
Pavel Begunkov014db002020-03-03 21:33:12 +03002764static int io_splice(struct io_kiocb *req, bool force_nonblock)
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002765{
2766 struct io_splice *sp = &req->splice;
2767 struct file *in = sp->file_in;
2768 struct file *out = sp->file_out;
2769 unsigned int flags = sp->flags & ~SPLICE_F_FD_IN_FIXED;
2770 loff_t *poff_in, *poff_out;
2771 long ret;
2772
2773 if (force_nonblock) {
2774 if (io_splice_punt(in) || io_splice_punt(out))
2775 return -EAGAIN;
2776 flags |= SPLICE_F_NONBLOCK;
2777 }
2778
2779 poff_in = (sp->off_in == -1) ? NULL : &sp->off_in;
2780 poff_out = (sp->off_out == -1) ? NULL : &sp->off_out;
2781 ret = do_splice(in, poff_in, out, poff_out, sp->len, flags);
2782 if (force_nonblock && ret == -EAGAIN)
2783 return -EAGAIN;
2784
2785 io_put_file(req, in, (sp->flags & SPLICE_F_FD_IN_FIXED));
2786 req->flags &= ~REQ_F_NEED_CLEANUP;
2787
2788 io_cqring_add_event(req, ret);
2789 if (ret != sp->len)
2790 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03002791 io_put_req(req);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002792 return 0;
2793}
2794
Jens Axboe2b188cc2019-01-07 10:46:33 -07002795/*
2796 * IORING_OP_NOP just posts a completion event, nothing else.
2797 */
Jens Axboe78e19bb2019-11-06 15:21:34 -07002798static int io_nop(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002799{
2800 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002801
Jens Axboedef596e2019-01-09 08:59:42 -07002802 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
2803 return -EINVAL;
2804
Jens Axboe78e19bb2019-11-06 15:21:34 -07002805 io_cqring_add_event(req, 0);
Jens Axboee65ef562019-03-12 10:16:44 -06002806 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002807 return 0;
2808}
2809
Jens Axboe3529d8c2019-12-19 18:24:38 -07002810static int io_prep_fsync(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002811{
Jens Axboe6b063142019-01-10 22:13:58 -07002812 struct io_ring_ctx *ctx = req->ctx;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002813
Jens Axboe09bb8392019-03-13 12:39:28 -06002814 if (!req->file)
2815 return -EBADF;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002816
Jens Axboe6b063142019-01-10 22:13:58 -07002817 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboedef596e2019-01-09 08:59:42 -07002818 return -EINVAL;
Jens Axboeedafcce2019-01-09 09:16:05 -07002819 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002820 return -EINVAL;
2821
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002822 req->sync.flags = READ_ONCE(sqe->fsync_flags);
2823 if (unlikely(req->sync.flags & ~IORING_FSYNC_DATASYNC))
2824 return -EINVAL;
2825
2826 req->sync.off = READ_ONCE(sqe->off);
2827 req->sync.len = READ_ONCE(sqe->len);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002828 return 0;
2829}
2830
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002831static bool io_req_cancelled(struct io_kiocb *req)
2832{
2833 if (req->work.flags & IO_WQ_WORK_CANCEL) {
2834 req_set_fail_links(req);
2835 io_cqring_add_event(req, -ECANCELED);
2836 io_put_req(req);
2837 return true;
2838 }
2839
2840 return false;
2841}
2842
Pavel Begunkov014db002020-03-03 21:33:12 +03002843static void __io_fsync(struct io_kiocb *req)
Jens Axboe78912932020-01-14 22:09:06 -07002844{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002845 loff_t end = req->sync.off + req->sync.len;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002846 int ret;
2847
Jens Axboe9adbd452019-12-20 08:45:55 -07002848 ret = vfs_fsync_range(req->file, req->sync.off,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002849 end > 0 ? end : LLONG_MAX,
2850 req->sync.flags & IORING_FSYNC_DATASYNC);
2851 if (ret < 0)
2852 req_set_fail_links(req);
2853 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03002854 io_put_req(req);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002855}
2856
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002857static void io_fsync_finish(struct io_wq_work **workptr)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002858{
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002859 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002860
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002861 if (io_req_cancelled(req))
2862 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03002863 __io_fsync(req);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03002864 io_steal_work(req, workptr);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002865}
2866
Pavel Begunkov014db002020-03-03 21:33:12 +03002867static int io_fsync(struct io_kiocb *req, bool force_nonblock)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002868{
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002869 /* fsync always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002870 if (force_nonblock) {
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002871 req->work.func = io_fsync_finish;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002872 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002873 }
Pavel Begunkov014db002020-03-03 21:33:12 +03002874 __io_fsync(req);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002875 return 0;
2876}
2877
Pavel Begunkov014db002020-03-03 21:33:12 +03002878static void __io_fallocate(struct io_kiocb *req)
Jens Axboed63d1b52019-12-10 10:38:56 -07002879{
Jens Axboed63d1b52019-12-10 10:38:56 -07002880 int ret;
2881
Jens Axboe4ed734b2020-03-20 11:23:41 -06002882 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = req->fsize;
Jens Axboed63d1b52019-12-10 10:38:56 -07002883 ret = vfs_fallocate(req->file, req->sync.mode, req->sync.off,
2884 req->sync.len);
Jens Axboe4ed734b2020-03-20 11:23:41 -06002885 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = RLIM_INFINITY;
Jens Axboed63d1b52019-12-10 10:38:56 -07002886 if (ret < 0)
2887 req_set_fail_links(req);
2888 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03002889 io_put_req(req);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002890}
2891
Jens Axboe2b188cc2019-01-07 10:46:33 -07002892static void io_fallocate_finish(struct io_wq_work **workptr)
2893{
2894 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Jens Axboed63d1b52019-12-10 10:38:56 -07002895
2896 if (io_req_cancelled(req))
2897 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03002898 __io_fallocate(req);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03002899 io_steal_work(req, workptr);
Jens Axboed63d1b52019-12-10 10:38:56 -07002900}
2901
2902static int io_fallocate_prep(struct io_kiocb *req,
2903 const struct io_uring_sqe *sqe)
2904{
2905 if (sqe->ioprio || sqe->buf_index || sqe->rw_flags)
2906 return -EINVAL;
2907
2908 req->sync.off = READ_ONCE(sqe->off);
2909 req->sync.len = READ_ONCE(sqe->addr);
2910 req->sync.mode = READ_ONCE(sqe->len);
Jens Axboe4ed734b2020-03-20 11:23:41 -06002911 req->fsize = rlimit(RLIMIT_FSIZE);
Jens Axboed63d1b52019-12-10 10:38:56 -07002912 return 0;
2913}
2914
Pavel Begunkov014db002020-03-03 21:33:12 +03002915static int io_fallocate(struct io_kiocb *req, bool force_nonblock)
Jens Axboed63d1b52019-12-10 10:38:56 -07002916{
Jens Axboed63d1b52019-12-10 10:38:56 -07002917 /* fallocate always requiring blocking context */
2918 if (force_nonblock) {
Jens Axboed63d1b52019-12-10 10:38:56 -07002919 req->work.func = io_fallocate_finish;
2920 return -EAGAIN;
2921 }
2922
Pavel Begunkov014db002020-03-03 21:33:12 +03002923 __io_fallocate(req);
Jens Axboed63d1b52019-12-10 10:38:56 -07002924 return 0;
2925}
2926
Jens Axboe15b71ab2019-12-11 11:20:36 -07002927static int io_openat_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2928{
Jens Axboef8748882020-01-08 17:47:02 -07002929 const char __user *fname;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002930 int ret;
2931
2932 if (sqe->ioprio || sqe->buf_index)
2933 return -EINVAL;
Jens Axboecf3040c2020-02-06 21:31:40 -07002934 if (sqe->flags & IOSQE_FIXED_FILE)
2935 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03002936 if (req->flags & REQ_F_NEED_CLEANUP)
2937 return 0;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002938
2939 req->open.dfd = READ_ONCE(sqe->fd);
Jens Axboec12cedf2020-01-08 17:41:21 -07002940 req->open.how.mode = READ_ONCE(sqe->len);
Jens Axboef8748882020-01-08 17:47:02 -07002941 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboec12cedf2020-01-08 17:41:21 -07002942 req->open.how.flags = READ_ONCE(sqe->open_flags);
Jens Axboe08a1d26eb2020-04-08 09:20:54 -06002943 if (force_o_largefile())
2944 req->open.how.flags |= O_LARGEFILE;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002945
Jens Axboef8748882020-01-08 17:47:02 -07002946 req->open.filename = getname(fname);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002947 if (IS_ERR(req->open.filename)) {
2948 ret = PTR_ERR(req->open.filename);
2949 req->open.filename = NULL;
2950 return ret;
2951 }
2952
Jens Axboe4022e7a2020-03-19 19:23:18 -06002953 req->open.nofile = rlimit(RLIMIT_NOFILE);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03002954 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002955 return 0;
2956}
2957
Jens Axboecebdb982020-01-08 17:59:24 -07002958static int io_openat2_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2959{
2960 struct open_how __user *how;
2961 const char __user *fname;
2962 size_t len;
2963 int ret;
2964
2965 if (sqe->ioprio || sqe->buf_index)
2966 return -EINVAL;
Jens Axboecf3040c2020-02-06 21:31:40 -07002967 if (sqe->flags & IOSQE_FIXED_FILE)
2968 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03002969 if (req->flags & REQ_F_NEED_CLEANUP)
2970 return 0;
Jens Axboecebdb982020-01-08 17:59:24 -07002971
2972 req->open.dfd = READ_ONCE(sqe->fd);
2973 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
2974 how = u64_to_user_ptr(READ_ONCE(sqe->addr2));
2975 len = READ_ONCE(sqe->len);
2976
2977 if (len < OPEN_HOW_SIZE_VER0)
2978 return -EINVAL;
2979
2980 ret = copy_struct_from_user(&req->open.how, sizeof(req->open.how), how,
2981 len);
2982 if (ret)
2983 return ret;
2984
2985 if (!(req->open.how.flags & O_PATH) && force_o_largefile())
2986 req->open.how.flags |= O_LARGEFILE;
2987
2988 req->open.filename = getname(fname);
2989 if (IS_ERR(req->open.filename)) {
2990 ret = PTR_ERR(req->open.filename);
2991 req->open.filename = NULL;
2992 return ret;
2993 }
2994
Jens Axboe4022e7a2020-03-19 19:23:18 -06002995 req->open.nofile = rlimit(RLIMIT_NOFILE);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03002996 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboecebdb982020-01-08 17:59:24 -07002997 return 0;
2998}
2999
Pavel Begunkov014db002020-03-03 21:33:12 +03003000static int io_openat2(struct io_kiocb *req, bool force_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07003001{
3002 struct open_flags op;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003003 struct file *file;
3004 int ret;
3005
Jens Axboef86cd202020-01-29 13:46:44 -07003006 if (force_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07003007 return -EAGAIN;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003008
Jens Axboecebdb982020-01-08 17:59:24 -07003009 ret = build_open_flags(&req->open.how, &op);
Jens Axboe15b71ab2019-12-11 11:20:36 -07003010 if (ret)
3011 goto err;
3012
Jens Axboe4022e7a2020-03-19 19:23:18 -06003013 ret = __get_unused_fd_flags(req->open.how.flags, req->open.nofile);
Jens Axboe15b71ab2019-12-11 11:20:36 -07003014 if (ret < 0)
3015 goto err;
3016
3017 file = do_filp_open(req->open.dfd, req->open.filename, &op);
3018 if (IS_ERR(file)) {
3019 put_unused_fd(ret);
3020 ret = PTR_ERR(file);
3021 } else {
3022 fsnotify_open(file);
3023 fd_install(ret, file);
3024 }
3025err:
3026 putname(req->open.filename);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003027 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003028 if (ret < 0)
3029 req_set_fail_links(req);
3030 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003031 io_put_req(req);
Jens Axboe15b71ab2019-12-11 11:20:36 -07003032 return 0;
3033}
3034
Pavel Begunkov014db002020-03-03 21:33:12 +03003035static int io_openat(struct io_kiocb *req, bool force_nonblock)
Jens Axboecebdb982020-01-08 17:59:24 -07003036{
3037 req->open.how = build_open_how(req->open.how.flags, req->open.how.mode);
Pavel Begunkov014db002020-03-03 21:33:12 +03003038 return io_openat2(req, force_nonblock);
Jens Axboecebdb982020-01-08 17:59:24 -07003039}
3040
Jens Axboe067524e2020-03-02 16:32:28 -07003041static int io_remove_buffers_prep(struct io_kiocb *req,
3042 const struct io_uring_sqe *sqe)
3043{
3044 struct io_provide_buf *p = &req->pbuf;
3045 u64 tmp;
3046
3047 if (sqe->ioprio || sqe->rw_flags || sqe->addr || sqe->len || sqe->off)
3048 return -EINVAL;
3049
3050 tmp = READ_ONCE(sqe->fd);
3051 if (!tmp || tmp > USHRT_MAX)
3052 return -EINVAL;
3053
3054 memset(p, 0, sizeof(*p));
3055 p->nbufs = tmp;
3056 p->bgid = READ_ONCE(sqe->buf_group);
3057 return 0;
3058}
3059
3060static int __io_remove_buffers(struct io_ring_ctx *ctx, struct io_buffer *buf,
3061 int bgid, unsigned nbufs)
3062{
3063 unsigned i = 0;
3064
3065 /* shouldn't happen */
3066 if (!nbufs)
3067 return 0;
3068
3069 /* the head kbuf is the list itself */
3070 while (!list_empty(&buf->list)) {
3071 struct io_buffer *nxt;
3072
3073 nxt = list_first_entry(&buf->list, struct io_buffer, list);
3074 list_del(&nxt->list);
3075 kfree(nxt);
3076 if (++i == nbufs)
3077 return i;
3078 }
3079 i++;
3080 kfree(buf);
3081 idr_remove(&ctx->io_buffer_idr, bgid);
3082
3083 return i;
3084}
3085
3086static int io_remove_buffers(struct io_kiocb *req, bool force_nonblock)
3087{
3088 struct io_provide_buf *p = &req->pbuf;
3089 struct io_ring_ctx *ctx = req->ctx;
3090 struct io_buffer *head;
3091 int ret = 0;
3092
3093 io_ring_submit_lock(ctx, !force_nonblock);
3094
3095 lockdep_assert_held(&ctx->uring_lock);
3096
3097 ret = -ENOENT;
3098 head = idr_find(&ctx->io_buffer_idr, p->bgid);
3099 if (head)
3100 ret = __io_remove_buffers(ctx, head, p->bgid, p->nbufs);
3101
3102 io_ring_submit_lock(ctx, !force_nonblock);
3103 if (ret < 0)
3104 req_set_fail_links(req);
3105 io_cqring_add_event(req, ret);
3106 io_put_req(req);
3107 return 0;
3108}
3109
Jens Axboeddf0322d2020-02-23 16:41:33 -07003110static int io_provide_buffers_prep(struct io_kiocb *req,
3111 const struct io_uring_sqe *sqe)
3112{
3113 struct io_provide_buf *p = &req->pbuf;
3114 u64 tmp;
3115
3116 if (sqe->ioprio || sqe->rw_flags)
3117 return -EINVAL;
3118
3119 tmp = READ_ONCE(sqe->fd);
3120 if (!tmp || tmp > USHRT_MAX)
3121 return -E2BIG;
3122 p->nbufs = tmp;
3123 p->addr = READ_ONCE(sqe->addr);
3124 p->len = READ_ONCE(sqe->len);
3125
3126 if (!access_ok(u64_to_user_ptr(p->addr), p->len))
3127 return -EFAULT;
3128
3129 p->bgid = READ_ONCE(sqe->buf_group);
3130 tmp = READ_ONCE(sqe->off);
3131 if (tmp > USHRT_MAX)
3132 return -E2BIG;
3133 p->bid = tmp;
3134 return 0;
3135}
3136
3137static int io_add_buffers(struct io_provide_buf *pbuf, struct io_buffer **head)
3138{
3139 struct io_buffer *buf;
3140 u64 addr = pbuf->addr;
3141 int i, bid = pbuf->bid;
3142
3143 for (i = 0; i < pbuf->nbufs; i++) {
3144 buf = kmalloc(sizeof(*buf), GFP_KERNEL);
3145 if (!buf)
3146 break;
3147
3148 buf->addr = addr;
3149 buf->len = pbuf->len;
3150 buf->bid = bid;
3151 addr += pbuf->len;
3152 bid++;
3153 if (!*head) {
3154 INIT_LIST_HEAD(&buf->list);
3155 *head = buf;
3156 } else {
3157 list_add_tail(&buf->list, &(*head)->list);
3158 }
3159 }
3160
3161 return i ? i : -ENOMEM;
3162}
3163
Jens Axboeddf0322d2020-02-23 16:41:33 -07003164static int io_provide_buffers(struct io_kiocb *req, bool force_nonblock)
3165{
3166 struct io_provide_buf *p = &req->pbuf;
3167 struct io_ring_ctx *ctx = req->ctx;
3168 struct io_buffer *head, *list;
3169 int ret = 0;
3170
3171 io_ring_submit_lock(ctx, !force_nonblock);
3172
3173 lockdep_assert_held(&ctx->uring_lock);
3174
3175 list = head = idr_find(&ctx->io_buffer_idr, p->bgid);
3176
3177 ret = io_add_buffers(p, &head);
3178 if (ret < 0)
3179 goto out;
3180
3181 if (!list) {
3182 ret = idr_alloc(&ctx->io_buffer_idr, head, p->bgid, p->bgid + 1,
3183 GFP_KERNEL);
3184 if (ret < 0) {
Jens Axboe067524e2020-03-02 16:32:28 -07003185 __io_remove_buffers(ctx, head, p->bgid, -1U);
Jens Axboeddf0322d2020-02-23 16:41:33 -07003186 goto out;
3187 }
3188 }
3189out:
3190 io_ring_submit_unlock(ctx, !force_nonblock);
3191 if (ret < 0)
3192 req_set_fail_links(req);
3193 io_cqring_add_event(req, ret);
3194 io_put_req(req);
3195 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003196}
3197
Jens Axboe3e4827b2020-01-08 15:18:09 -07003198static int io_epoll_ctl_prep(struct io_kiocb *req,
3199 const struct io_uring_sqe *sqe)
3200{
3201#if defined(CONFIG_EPOLL)
3202 if (sqe->ioprio || sqe->buf_index)
3203 return -EINVAL;
3204
3205 req->epoll.epfd = READ_ONCE(sqe->fd);
3206 req->epoll.op = READ_ONCE(sqe->len);
3207 req->epoll.fd = READ_ONCE(sqe->off);
3208
3209 if (ep_op_has_event(req->epoll.op)) {
3210 struct epoll_event __user *ev;
3211
3212 ev = u64_to_user_ptr(READ_ONCE(sqe->addr));
3213 if (copy_from_user(&req->epoll.event, ev, sizeof(*ev)))
3214 return -EFAULT;
3215 }
3216
3217 return 0;
3218#else
3219 return -EOPNOTSUPP;
3220#endif
3221}
3222
Pavel Begunkov014db002020-03-03 21:33:12 +03003223static int io_epoll_ctl(struct io_kiocb *req, bool force_nonblock)
Jens Axboe3e4827b2020-01-08 15:18:09 -07003224{
3225#if defined(CONFIG_EPOLL)
3226 struct io_epoll *ie = &req->epoll;
3227 int ret;
3228
3229 ret = do_epoll_ctl(ie->epfd, ie->op, ie->fd, &ie->event, force_nonblock);
3230 if (force_nonblock && ret == -EAGAIN)
3231 return -EAGAIN;
3232
3233 if (ret < 0)
3234 req_set_fail_links(req);
3235 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003236 io_put_req(req);
Jens Axboe3e4827b2020-01-08 15:18:09 -07003237 return 0;
3238#else
3239 return -EOPNOTSUPP;
3240#endif
3241}
3242
Jens Axboec1ca7572019-12-25 22:18:28 -07003243static int io_madvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3244{
3245#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
3246 if (sqe->ioprio || sqe->buf_index || sqe->off)
3247 return -EINVAL;
3248
3249 req->madvise.addr = READ_ONCE(sqe->addr);
3250 req->madvise.len = READ_ONCE(sqe->len);
3251 req->madvise.advice = READ_ONCE(sqe->fadvise_advice);
3252 return 0;
3253#else
3254 return -EOPNOTSUPP;
3255#endif
3256}
3257
Pavel Begunkov014db002020-03-03 21:33:12 +03003258static int io_madvise(struct io_kiocb *req, bool force_nonblock)
Jens Axboec1ca7572019-12-25 22:18:28 -07003259{
3260#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
3261 struct io_madvise *ma = &req->madvise;
3262 int ret;
3263
3264 if (force_nonblock)
3265 return -EAGAIN;
3266
3267 ret = do_madvise(ma->addr, ma->len, ma->advice);
3268 if (ret < 0)
3269 req_set_fail_links(req);
3270 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003271 io_put_req(req);
Jens Axboec1ca7572019-12-25 22:18:28 -07003272 return 0;
3273#else
3274 return -EOPNOTSUPP;
3275#endif
3276}
3277
Jens Axboe4840e412019-12-25 22:03:45 -07003278static int io_fadvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3279{
3280 if (sqe->ioprio || sqe->buf_index || sqe->addr)
3281 return -EINVAL;
3282
3283 req->fadvise.offset = READ_ONCE(sqe->off);
3284 req->fadvise.len = READ_ONCE(sqe->len);
3285 req->fadvise.advice = READ_ONCE(sqe->fadvise_advice);
3286 return 0;
3287}
3288
Pavel Begunkov014db002020-03-03 21:33:12 +03003289static int io_fadvise(struct io_kiocb *req, bool force_nonblock)
Jens Axboe4840e412019-12-25 22:03:45 -07003290{
3291 struct io_fadvise *fa = &req->fadvise;
3292 int ret;
3293
Jens Axboe3e694262020-02-01 09:22:49 -07003294 if (force_nonblock) {
3295 switch (fa->advice) {
3296 case POSIX_FADV_NORMAL:
3297 case POSIX_FADV_RANDOM:
3298 case POSIX_FADV_SEQUENTIAL:
3299 break;
3300 default:
3301 return -EAGAIN;
3302 }
3303 }
Jens Axboe4840e412019-12-25 22:03:45 -07003304
3305 ret = vfs_fadvise(req->file, fa->offset, fa->len, fa->advice);
3306 if (ret < 0)
3307 req_set_fail_links(req);
3308 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003309 io_put_req(req);
Jens Axboe4840e412019-12-25 22:03:45 -07003310 return 0;
3311}
3312
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003313static int io_statx_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3314{
Jens Axboef8748882020-01-08 17:47:02 -07003315 const char __user *fname;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003316 unsigned lookup_flags;
3317 int ret;
3318
3319 if (sqe->ioprio || sqe->buf_index)
3320 return -EINVAL;
Jens Axboecf3040c2020-02-06 21:31:40 -07003321 if (sqe->flags & IOSQE_FIXED_FILE)
3322 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03003323 if (req->flags & REQ_F_NEED_CLEANUP)
3324 return 0;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003325
3326 req->open.dfd = READ_ONCE(sqe->fd);
3327 req->open.mask = READ_ONCE(sqe->len);
Jens Axboef8748882020-01-08 17:47:02 -07003328 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003329 req->open.buffer = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboec12cedf2020-01-08 17:41:21 -07003330 req->open.how.flags = READ_ONCE(sqe->statx_flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003331
Jens Axboec12cedf2020-01-08 17:41:21 -07003332 if (vfs_stat_set_lookup_flags(&lookup_flags, req->open.how.flags))
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003333 return -EINVAL;
3334
Jens Axboef8748882020-01-08 17:47:02 -07003335 req->open.filename = getname_flags(fname, lookup_flags, NULL);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003336 if (IS_ERR(req->open.filename)) {
3337 ret = PTR_ERR(req->open.filename);
3338 req->open.filename = NULL;
3339 return ret;
3340 }
3341
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003342 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003343 return 0;
3344}
3345
Pavel Begunkov014db002020-03-03 21:33:12 +03003346static int io_statx(struct io_kiocb *req, bool force_nonblock)
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003347{
3348 struct io_open *ctx = &req->open;
3349 unsigned lookup_flags;
3350 struct path path;
3351 struct kstat stat;
3352 int ret;
3353
3354 if (force_nonblock)
3355 return -EAGAIN;
3356
Jens Axboec12cedf2020-01-08 17:41:21 -07003357 if (vfs_stat_set_lookup_flags(&lookup_flags, ctx->how.flags))
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003358 return -EINVAL;
3359
3360retry:
3361 /* filename_lookup() drops it, keep a reference */
3362 ctx->filename->refcnt++;
3363
3364 ret = filename_lookup(ctx->dfd, ctx->filename, lookup_flags, &path,
3365 NULL);
3366 if (ret)
3367 goto err;
3368
Jens Axboec12cedf2020-01-08 17:41:21 -07003369 ret = vfs_getattr(&path, &stat, ctx->mask, ctx->how.flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003370 path_put(&path);
3371 if (retry_estale(ret, lookup_flags)) {
3372 lookup_flags |= LOOKUP_REVAL;
3373 goto retry;
3374 }
3375 if (!ret)
3376 ret = cp_statx(&stat, ctx->buffer);
3377err:
3378 putname(ctx->filename);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003379 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003380 if (ret < 0)
3381 req_set_fail_links(req);
3382 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003383 io_put_req(req);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003384 return 0;
3385}
3386
Jens Axboeb5dba592019-12-11 14:02:38 -07003387static int io_close_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3388{
3389 /*
3390 * If we queue this for async, it must not be cancellable. That would
3391 * leave the 'file' in an undeterminate state.
3392 */
3393 req->work.flags |= IO_WQ_WORK_NO_CANCEL;
3394
3395 if (sqe->ioprio || sqe->off || sqe->addr || sqe->len ||
3396 sqe->rw_flags || sqe->buf_index)
3397 return -EINVAL;
3398 if (sqe->flags & IOSQE_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07003399 return -EBADF;
Jens Axboeb5dba592019-12-11 14:02:38 -07003400
3401 req->close.fd = READ_ONCE(sqe->fd);
3402 if (req->file->f_op == &io_uring_fops ||
Pavel Begunkovb14cca02020-01-17 04:45:59 +03003403 req->close.fd == req->ctx->ring_fd)
Jens Axboeb5dba592019-12-11 14:02:38 -07003404 return -EBADF;
3405
3406 return 0;
3407}
3408
Pavel Begunkova93b3332020-02-08 14:04:34 +03003409/* only called when __close_fd_get_file() is done */
Pavel Begunkov014db002020-03-03 21:33:12 +03003410static void __io_close_finish(struct io_kiocb *req)
Pavel Begunkova93b3332020-02-08 14:04:34 +03003411{
3412 int ret;
3413
3414 ret = filp_close(req->close.put_file, req->work.files);
3415 if (ret < 0)
3416 req_set_fail_links(req);
3417 io_cqring_add_event(req, ret);
3418 fput(req->close.put_file);
Pavel Begunkov014db002020-03-03 21:33:12 +03003419 io_put_req(req);
Pavel Begunkova93b3332020-02-08 14:04:34 +03003420}
3421
Jens Axboeb5dba592019-12-11 14:02:38 -07003422static void io_close_finish(struct io_wq_work **workptr)
3423{
3424 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Jens Axboeb5dba592019-12-11 14:02:38 -07003425
Pavel Begunkov7fbeb952020-02-16 01:01:18 +03003426 /* not cancellable, don't do io_req_cancelled() */
Pavel Begunkov014db002020-03-03 21:33:12 +03003427 __io_close_finish(req);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03003428 io_steal_work(req, workptr);
Jens Axboeb5dba592019-12-11 14:02:38 -07003429}
3430
Pavel Begunkov014db002020-03-03 21:33:12 +03003431static int io_close(struct io_kiocb *req, bool force_nonblock)
Jens Axboeb5dba592019-12-11 14:02:38 -07003432{
3433 int ret;
3434
3435 req->close.put_file = NULL;
3436 ret = __close_fd_get_file(req->close.fd, &req->close.put_file);
3437 if (ret < 0)
3438 return ret;
3439
3440 /* if the file has a flush method, be safe and punt to async */
Pavel Begunkova2100672020-03-02 23:45:16 +03003441 if (req->close.put_file->f_op->flush && force_nonblock) {
Pavel Begunkov594506f2020-03-03 21:33:11 +03003442 /* submission ref will be dropped, take it for async */
3443 refcount_inc(&req->refs);
3444
Pavel Begunkova2100672020-03-02 23:45:16 +03003445 req->work.func = io_close_finish;
3446 /*
3447 * Do manual async queue here to avoid grabbing files - we don't
3448 * need the files, and it'll cause io_close_finish() to close
3449 * the file again and cause a double CQE entry for this request
3450 */
3451 io_queue_async_work(req);
3452 return 0;
3453 }
Jens Axboeb5dba592019-12-11 14:02:38 -07003454
3455 /*
3456 * No ->flush(), safely close from here and just punt the
3457 * fput() to async context.
3458 */
Pavel Begunkov014db002020-03-03 21:33:12 +03003459 __io_close_finish(req);
Jens Axboe1a417f42020-01-31 17:16:48 -07003460 return 0;
Jens Axboeb5dba592019-12-11 14:02:38 -07003461}
3462
Jens Axboe3529d8c2019-12-19 18:24:38 -07003463static int io_prep_sfr(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003464{
3465 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003466
3467 if (!req->file)
3468 return -EBADF;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003469
3470 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
3471 return -EINVAL;
3472 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
3473 return -EINVAL;
3474
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003475 req->sync.off = READ_ONCE(sqe->off);
3476 req->sync.len = READ_ONCE(sqe->len);
3477 req->sync.flags = READ_ONCE(sqe->sync_range_flags);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003478 return 0;
3479}
3480
Pavel Begunkov014db002020-03-03 21:33:12 +03003481static void __io_sync_file_range(struct io_kiocb *req)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003482{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003483 int ret;
3484
Jens Axboe9adbd452019-12-20 08:45:55 -07003485 ret = sync_file_range(req->file, req->sync.off, req->sync.len,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003486 req->sync.flags);
3487 if (ret < 0)
3488 req_set_fail_links(req);
3489 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003490 io_put_req(req);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03003491}
3492
3493
3494static void io_sync_file_range_finish(struct io_wq_work **workptr)
3495{
3496 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03003497
3498 if (io_req_cancelled(req))
3499 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03003500 __io_sync_file_range(req);
Pavel Begunkov594506f2020-03-03 21:33:11 +03003501 io_put_req(req); /* put submission ref */
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003502}
3503
Pavel Begunkov014db002020-03-03 21:33:12 +03003504static int io_sync_file_range(struct io_kiocb *req, bool force_nonblock)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003505{
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003506 /* sync_file_range always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003507 if (force_nonblock) {
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003508 req->work.func = io_sync_file_range_finish;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003509 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003510 }
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003511
Pavel Begunkov014db002020-03-03 21:33:12 +03003512 __io_sync_file_range(req);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003513 return 0;
3514}
3515
YueHaibing469956e2020-03-04 15:53:52 +08003516#if defined(CONFIG_NET)
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003517static int io_setup_async_msg(struct io_kiocb *req,
3518 struct io_async_msghdr *kmsg)
3519{
3520 if (req->io)
3521 return -EAGAIN;
3522 if (io_alloc_async_ctx(req)) {
3523 if (kmsg->iov != kmsg->fast_iov)
3524 kfree(kmsg->iov);
3525 return -ENOMEM;
3526 }
3527 req->flags |= REQ_F_NEED_CLEANUP;
3528 memcpy(&req->io->msg, kmsg, sizeof(*kmsg));
3529 return -EAGAIN;
3530}
3531
Jens Axboe3529d8c2019-12-19 18:24:38 -07003532static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboeaa1fa282019-04-19 13:38:09 -06003533{
Jens Axboee47293f2019-12-20 08:58:21 -07003534 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003535 struct io_async_ctx *io = req->io;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003536 int ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003537
Jens Axboee47293f2019-12-20 08:58:21 -07003538 sr->msg_flags = READ_ONCE(sqe->msg_flags);
3539 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboefddafac2020-01-04 20:19:44 -07003540 sr->len = READ_ONCE(sqe->len);
Jens Axboe3529d8c2019-12-19 18:24:38 -07003541
Jens Axboed8768362020-02-27 14:17:49 -07003542#ifdef CONFIG_COMPAT
3543 if (req->ctx->compat)
3544 sr->msg_flags |= MSG_CMSG_COMPAT;
3545#endif
3546
Jens Axboefddafac2020-01-04 20:19:44 -07003547 if (!io || req->opcode == IORING_OP_SEND)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003548 return 0;
Pavel Begunkov5f798be2020-02-08 13:28:02 +03003549 /* iovec is already imported */
3550 if (req->flags & REQ_F_NEED_CLEANUP)
3551 return 0;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003552
Jens Axboed9688562019-12-09 19:35:20 -07003553 io->msg.iov = io->msg.fast_iov;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003554 ret = sendmsg_copy_msghdr(&io->msg.msg, sr->msg, sr->msg_flags,
Jens Axboee47293f2019-12-20 08:58:21 -07003555 &io->msg.iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003556 if (!ret)
3557 req->flags |= REQ_F_NEED_CLEANUP;
3558 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003559}
3560
Pavel Begunkov014db002020-03-03 21:33:12 +03003561static int io_sendmsg(struct io_kiocb *req, bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07003562{
Jens Axboe0b416c32019-12-15 10:57:46 -07003563 struct io_async_msghdr *kmsg = NULL;
Jens Axboe03b12302019-12-02 18:50:25 -07003564 struct socket *sock;
3565 int ret;
3566
3567 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3568 return -EINVAL;
3569
3570 sock = sock_from_file(req->file, &ret);
3571 if (sock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003572 struct io_async_ctx io;
Jens Axboe03b12302019-12-02 18:50:25 -07003573 unsigned flags;
3574
Jens Axboe03b12302019-12-02 18:50:25 -07003575 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07003576 kmsg = &req->io->msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003577 kmsg->msg.msg_name = &req->io->msg.addr;
Jens Axboe0b416c32019-12-15 10:57:46 -07003578 /* if iov is set, it's allocated already */
3579 if (!kmsg->iov)
3580 kmsg->iov = kmsg->fast_iov;
3581 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07003582 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07003583 struct io_sr_msg *sr = &req->sr_msg;
3584
Jens Axboe0b416c32019-12-15 10:57:46 -07003585 kmsg = &io.msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003586 kmsg->msg.msg_name = &io.msg.addr;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003587
3588 io.msg.iov = io.msg.fast_iov;
3589 ret = sendmsg_copy_msghdr(&io.msg.msg, sr->msg,
3590 sr->msg_flags, &io.msg.iov);
Jens Axboe03b12302019-12-02 18:50:25 -07003591 if (ret)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003592 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003593 }
3594
Jens Axboee47293f2019-12-20 08:58:21 -07003595 flags = req->sr_msg.msg_flags;
3596 if (flags & MSG_DONTWAIT)
3597 req->flags |= REQ_F_NOWAIT;
3598 else if (force_nonblock)
3599 flags |= MSG_DONTWAIT;
3600
Jens Axboe0b416c32019-12-15 10:57:46 -07003601 ret = __sys_sendmsg_sock(sock, &kmsg->msg, flags);
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003602 if (force_nonblock && ret == -EAGAIN)
3603 return io_setup_async_msg(req, kmsg);
Jens Axboe03b12302019-12-02 18:50:25 -07003604 if (ret == -ERESTARTSYS)
3605 ret = -EINTR;
3606 }
3607
Pavel Begunkov1e950812020-02-06 19:51:16 +03003608 if (kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07003609 kfree(kmsg->iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003610 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe03b12302019-12-02 18:50:25 -07003611 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003612 if (ret < 0)
3613 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003614 io_put_req(req);
Jens Axboe03b12302019-12-02 18:50:25 -07003615 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07003616}
3617
Pavel Begunkov014db002020-03-03 21:33:12 +03003618static int io_send(struct io_kiocb *req, bool force_nonblock)
Jens Axboefddafac2020-01-04 20:19:44 -07003619{
Jens Axboefddafac2020-01-04 20:19:44 -07003620 struct socket *sock;
3621 int ret;
3622
3623 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3624 return -EINVAL;
3625
3626 sock = sock_from_file(req->file, &ret);
3627 if (sock) {
3628 struct io_sr_msg *sr = &req->sr_msg;
3629 struct msghdr msg;
3630 struct iovec iov;
3631 unsigned flags;
3632
3633 ret = import_single_range(WRITE, sr->buf, sr->len, &iov,
3634 &msg.msg_iter);
3635 if (ret)
3636 return ret;
3637
3638 msg.msg_name = NULL;
3639 msg.msg_control = NULL;
3640 msg.msg_controllen = 0;
3641 msg.msg_namelen = 0;
3642
3643 flags = req->sr_msg.msg_flags;
3644 if (flags & MSG_DONTWAIT)
3645 req->flags |= REQ_F_NOWAIT;
3646 else if (force_nonblock)
3647 flags |= MSG_DONTWAIT;
3648
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003649 msg.msg_flags = flags;
3650 ret = sock_sendmsg(sock, &msg);
Jens Axboefddafac2020-01-04 20:19:44 -07003651 if (force_nonblock && ret == -EAGAIN)
3652 return -EAGAIN;
3653 if (ret == -ERESTARTSYS)
3654 ret = -EINTR;
3655 }
3656
3657 io_cqring_add_event(req, ret);
3658 if (ret < 0)
3659 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003660 io_put_req(req);
Jens Axboefddafac2020-01-04 20:19:44 -07003661 return 0;
Jens Axboefddafac2020-01-04 20:19:44 -07003662}
3663
Jens Axboe52de1fe2020-02-27 10:15:42 -07003664static int __io_recvmsg_copy_hdr(struct io_kiocb *req, struct io_async_ctx *io)
3665{
3666 struct io_sr_msg *sr = &req->sr_msg;
3667 struct iovec __user *uiov;
3668 size_t iov_len;
3669 int ret;
3670
3671 ret = __copy_msghdr_from_user(&io->msg.msg, sr->msg, &io->msg.uaddr,
3672 &uiov, &iov_len);
3673 if (ret)
3674 return ret;
3675
3676 if (req->flags & REQ_F_BUFFER_SELECT) {
3677 if (iov_len > 1)
3678 return -EINVAL;
3679 if (copy_from_user(io->msg.iov, uiov, sizeof(*uiov)))
3680 return -EFAULT;
3681 sr->len = io->msg.iov[0].iov_len;
3682 iov_iter_init(&io->msg.msg.msg_iter, READ, io->msg.iov, 1,
3683 sr->len);
3684 io->msg.iov = NULL;
3685 } else {
3686 ret = import_iovec(READ, uiov, iov_len, UIO_FASTIOV,
3687 &io->msg.iov, &io->msg.msg.msg_iter);
3688 if (ret > 0)
3689 ret = 0;
3690 }
3691
3692 return ret;
3693}
3694
3695#ifdef CONFIG_COMPAT
3696static int __io_compat_recvmsg_copy_hdr(struct io_kiocb *req,
3697 struct io_async_ctx *io)
3698{
3699 struct compat_msghdr __user *msg_compat;
3700 struct io_sr_msg *sr = &req->sr_msg;
3701 struct compat_iovec __user *uiov;
3702 compat_uptr_t ptr;
3703 compat_size_t len;
3704 int ret;
3705
3706 msg_compat = (struct compat_msghdr __user *) sr->msg;
3707 ret = __get_compat_msghdr(&io->msg.msg, msg_compat, &io->msg.uaddr,
3708 &ptr, &len);
3709 if (ret)
3710 return ret;
3711
3712 uiov = compat_ptr(ptr);
3713 if (req->flags & REQ_F_BUFFER_SELECT) {
3714 compat_ssize_t clen;
3715
3716 if (len > 1)
3717 return -EINVAL;
3718 if (!access_ok(uiov, sizeof(*uiov)))
3719 return -EFAULT;
3720 if (__get_user(clen, &uiov->iov_len))
3721 return -EFAULT;
3722 if (clen < 0)
3723 return -EINVAL;
3724 sr->len = io->msg.iov[0].iov_len;
3725 io->msg.iov = NULL;
3726 } else {
3727 ret = compat_import_iovec(READ, uiov, len, UIO_FASTIOV,
3728 &io->msg.iov,
3729 &io->msg.msg.msg_iter);
3730 if (ret < 0)
3731 return ret;
3732 }
3733
3734 return 0;
3735}
Jens Axboe03b12302019-12-02 18:50:25 -07003736#endif
Jens Axboe52de1fe2020-02-27 10:15:42 -07003737
3738static int io_recvmsg_copy_hdr(struct io_kiocb *req, struct io_async_ctx *io)
3739{
3740 io->msg.iov = io->msg.fast_iov;
3741
3742#ifdef CONFIG_COMPAT
3743 if (req->ctx->compat)
3744 return __io_compat_recvmsg_copy_hdr(req, io);
3745#endif
3746
3747 return __io_recvmsg_copy_hdr(req, io);
3748}
3749
Jens Axboebcda7ba2020-02-23 16:42:51 -07003750static struct io_buffer *io_recv_buffer_select(struct io_kiocb *req,
3751 int *cflags, bool needs_lock)
3752{
3753 struct io_sr_msg *sr = &req->sr_msg;
3754 struct io_buffer *kbuf;
3755
3756 if (!(req->flags & REQ_F_BUFFER_SELECT))
3757 return NULL;
3758
3759 kbuf = io_buffer_select(req, &sr->len, sr->bgid, sr->kbuf, needs_lock);
3760 if (IS_ERR(kbuf))
3761 return kbuf;
3762
3763 sr->kbuf = kbuf;
3764 req->flags |= REQ_F_BUFFER_SELECTED;
3765
3766 *cflags = kbuf->bid << IORING_CQE_BUFFER_SHIFT;
3767 *cflags |= IORING_CQE_F_BUFFER;
3768 return kbuf;
Jens Axboe03b12302019-12-02 18:50:25 -07003769}
3770
Jens Axboe3529d8c2019-12-19 18:24:38 -07003771static int io_recvmsg_prep(struct io_kiocb *req,
3772 const struct io_uring_sqe *sqe)
Jens Axboe03b12302019-12-02 18:50:25 -07003773{
Jens Axboee47293f2019-12-20 08:58:21 -07003774 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003775 struct io_async_ctx *io = req->io;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003776 int ret;
Jens Axboe06b76d42019-12-19 14:44:26 -07003777
Jens Axboe3529d8c2019-12-19 18:24:38 -07003778 sr->msg_flags = READ_ONCE(sqe->msg_flags);
3779 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003780 sr->len = READ_ONCE(sqe->len);
Jens Axboebcda7ba2020-02-23 16:42:51 -07003781 sr->bgid = READ_ONCE(sqe->buf_group);
Jens Axboe3529d8c2019-12-19 18:24:38 -07003782
Jens Axboed8768362020-02-27 14:17:49 -07003783#ifdef CONFIG_COMPAT
3784 if (req->ctx->compat)
3785 sr->msg_flags |= MSG_CMSG_COMPAT;
3786#endif
3787
Jens Axboefddafac2020-01-04 20:19:44 -07003788 if (!io || req->opcode == IORING_OP_RECV)
Jens Axboe06b76d42019-12-19 14:44:26 -07003789 return 0;
Pavel Begunkov5f798be2020-02-08 13:28:02 +03003790 /* iovec is already imported */
3791 if (req->flags & REQ_F_NEED_CLEANUP)
3792 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07003793
Jens Axboe52de1fe2020-02-27 10:15:42 -07003794 ret = io_recvmsg_copy_hdr(req, io);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003795 if (!ret)
3796 req->flags |= REQ_F_NEED_CLEANUP;
3797 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003798}
3799
Pavel Begunkov014db002020-03-03 21:33:12 +03003800static int io_recvmsg(struct io_kiocb *req, bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07003801{
Jens Axboe0b416c32019-12-15 10:57:46 -07003802 struct io_async_msghdr *kmsg = NULL;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003803 struct socket *sock;
Jens Axboe52de1fe2020-02-27 10:15:42 -07003804 int ret, cflags = 0;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003805
3806 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3807 return -EINVAL;
3808
3809 sock = sock_from_file(req->file, &ret);
3810 if (sock) {
Jens Axboe52de1fe2020-02-27 10:15:42 -07003811 struct io_buffer *kbuf;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003812 struct io_async_ctx io;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003813 unsigned flags;
3814
Jens Axboe03b12302019-12-02 18:50:25 -07003815 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07003816 kmsg = &req->io->msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003817 kmsg->msg.msg_name = &req->io->msg.addr;
Jens Axboe0b416c32019-12-15 10:57:46 -07003818 /* if iov is set, it's allocated already */
3819 if (!kmsg->iov)
3820 kmsg->iov = kmsg->fast_iov;
3821 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07003822 } else {
Jens Axboe0b416c32019-12-15 10:57:46 -07003823 kmsg = &io.msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003824 kmsg->msg.msg_name = &io.msg.addr;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003825
Jens Axboe52de1fe2020-02-27 10:15:42 -07003826 ret = io_recvmsg_copy_hdr(req, &io);
Jens Axboe03b12302019-12-02 18:50:25 -07003827 if (ret)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003828 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003829 }
Jens Axboe0fa03c62019-04-19 13:34:07 -06003830
Jens Axboe52de1fe2020-02-27 10:15:42 -07003831 kbuf = io_recv_buffer_select(req, &cflags, !force_nonblock);
3832 if (IS_ERR(kbuf)) {
3833 return PTR_ERR(kbuf);
3834 } else if (kbuf) {
3835 kmsg->fast_iov[0].iov_base = u64_to_user_ptr(kbuf->addr);
3836 iov_iter_init(&kmsg->msg.msg_iter, READ, kmsg->iov,
3837 1, req->sr_msg.len);
3838 }
3839
Jens Axboee47293f2019-12-20 08:58:21 -07003840 flags = req->sr_msg.msg_flags;
3841 if (flags & MSG_DONTWAIT)
3842 req->flags |= REQ_F_NOWAIT;
3843 else if (force_nonblock)
3844 flags |= MSG_DONTWAIT;
3845
3846 ret = __sys_recvmsg_sock(sock, &kmsg->msg, req->sr_msg.msg,
3847 kmsg->uaddr, flags);
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003848 if (force_nonblock && ret == -EAGAIN)
3849 return io_setup_async_msg(req, kmsg);
Jens Axboe441cdbd2019-12-02 18:49:10 -07003850 if (ret == -ERESTARTSYS)
3851 ret = -EINTR;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003852 }
3853
Pavel Begunkov1e950812020-02-06 19:51:16 +03003854 if (kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07003855 kfree(kmsg->iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003856 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe52de1fe2020-02-27 10:15:42 -07003857 __io_cqring_add_event(req, ret, cflags);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003858 if (ret < 0)
3859 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003860 io_put_req(req);
Jens Axboe0fa03c62019-04-19 13:34:07 -06003861 return 0;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003862}
3863
Pavel Begunkov014db002020-03-03 21:33:12 +03003864static int io_recv(struct io_kiocb *req, bool force_nonblock)
Jens Axboefddafac2020-01-04 20:19:44 -07003865{
Jens Axboebcda7ba2020-02-23 16:42:51 -07003866 struct io_buffer *kbuf = NULL;
Jens Axboefddafac2020-01-04 20:19:44 -07003867 struct socket *sock;
Jens Axboebcda7ba2020-02-23 16:42:51 -07003868 int ret, cflags = 0;
Jens Axboefddafac2020-01-04 20:19:44 -07003869
3870 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3871 return -EINVAL;
3872
3873 sock = sock_from_file(req->file, &ret);
3874 if (sock) {
3875 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboebcda7ba2020-02-23 16:42:51 -07003876 void __user *buf = sr->buf;
Jens Axboefddafac2020-01-04 20:19:44 -07003877 struct msghdr msg;
3878 struct iovec iov;
3879 unsigned flags;
3880
Jens Axboebcda7ba2020-02-23 16:42:51 -07003881 kbuf = io_recv_buffer_select(req, &cflags, !force_nonblock);
3882 if (IS_ERR(kbuf))
3883 return PTR_ERR(kbuf);
3884 else if (kbuf)
3885 buf = u64_to_user_ptr(kbuf->addr);
Jens Axboefddafac2020-01-04 20:19:44 -07003886
Jens Axboebcda7ba2020-02-23 16:42:51 -07003887 ret = import_single_range(READ, buf, sr->len, &iov,
3888 &msg.msg_iter);
3889 if (ret) {
3890 kfree(kbuf);
3891 return ret;
3892 }
3893
3894 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboefddafac2020-01-04 20:19:44 -07003895 msg.msg_name = NULL;
3896 msg.msg_control = NULL;
3897 msg.msg_controllen = 0;
3898 msg.msg_namelen = 0;
3899 msg.msg_iocb = NULL;
3900 msg.msg_flags = 0;
3901
3902 flags = req->sr_msg.msg_flags;
3903 if (flags & MSG_DONTWAIT)
3904 req->flags |= REQ_F_NOWAIT;
3905 else if (force_nonblock)
3906 flags |= MSG_DONTWAIT;
3907
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003908 ret = sock_recvmsg(sock, &msg, flags);
Jens Axboefddafac2020-01-04 20:19:44 -07003909 if (force_nonblock && ret == -EAGAIN)
3910 return -EAGAIN;
3911 if (ret == -ERESTARTSYS)
3912 ret = -EINTR;
3913 }
3914
Jens Axboebcda7ba2020-02-23 16:42:51 -07003915 kfree(kbuf);
3916 req->flags &= ~REQ_F_NEED_CLEANUP;
3917 __io_cqring_add_event(req, ret, cflags);
Jens Axboefddafac2020-01-04 20:19:44 -07003918 if (ret < 0)
3919 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003920 io_put_req(req);
Jens Axboefddafac2020-01-04 20:19:44 -07003921 return 0;
Jens Axboefddafac2020-01-04 20:19:44 -07003922}
3923
Jens Axboe3529d8c2019-12-19 18:24:38 -07003924static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003925{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003926 struct io_accept *accept = &req->accept;
3927
Jens Axboe17f2fe32019-10-17 14:42:58 -06003928 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3929 return -EINVAL;
Hrvoje Zeba8042d6c2019-11-25 14:40:22 -05003930 if (sqe->ioprio || sqe->len || sqe->buf_index)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003931 return -EINVAL;
3932
Jens Axboed55e5f52019-12-11 16:12:15 -07003933 accept->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
3934 accept->addr_len = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003935 accept->flags = READ_ONCE(sqe->accept_flags);
Jens Axboe09952e32020-03-19 20:16:56 -06003936 accept->nofile = rlimit(RLIMIT_NOFILE);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003937 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003938}
Jens Axboe17f2fe32019-10-17 14:42:58 -06003939
Pavel Begunkov014db002020-03-03 21:33:12 +03003940static int __io_accept(struct io_kiocb *req, bool force_nonblock)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003941{
3942 struct io_accept *accept = &req->accept;
3943 unsigned file_flags;
3944 int ret;
3945
3946 file_flags = force_nonblock ? O_NONBLOCK : 0;
3947 ret = __sys_accept4_file(req->file, file_flags, accept->addr,
Jens Axboe09952e32020-03-19 20:16:56 -06003948 accept->addr_len, accept->flags,
3949 accept->nofile);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003950 if (ret == -EAGAIN && force_nonblock)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003951 return -EAGAIN;
Jens Axboe8e3cca12019-11-09 19:52:33 -07003952 if (ret == -ERESTARTSYS)
3953 ret = -EINTR;
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003954 if (ret < 0)
3955 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07003956 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003957 io_put_req(req);
Jens Axboe17f2fe32019-10-17 14:42:58 -06003958 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003959}
3960
3961static void io_accept_finish(struct io_wq_work **workptr)
3962{
3963 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003964
3965 if (io_req_cancelled(req))
3966 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03003967 __io_accept(req, false);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03003968 io_steal_work(req, workptr);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003969}
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003970
Pavel Begunkov014db002020-03-03 21:33:12 +03003971static int io_accept(struct io_kiocb *req, bool force_nonblock)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003972{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003973 int ret;
3974
Pavel Begunkov014db002020-03-03 21:33:12 +03003975 ret = __io_accept(req, force_nonblock);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003976 if (ret == -EAGAIN && force_nonblock) {
3977 req->work.func = io_accept_finish;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003978 return -EAGAIN;
3979 }
3980 return 0;
Jens Axboe17f2fe32019-10-17 14:42:58 -06003981}
3982
Jens Axboe3529d8c2019-12-19 18:24:38 -07003983static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef499a022019-12-02 16:28:46 -07003984{
Jens Axboe3529d8c2019-12-19 18:24:38 -07003985 struct io_connect *conn = &req->connect;
3986 struct io_async_ctx *io = req->io;
Jens Axboef499a022019-12-02 16:28:46 -07003987
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003988 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3989 return -EINVAL;
3990 if (sqe->ioprio || sqe->len || sqe->buf_index || sqe->rw_flags)
3991 return -EINVAL;
3992
Jens Axboe3529d8c2019-12-19 18:24:38 -07003993 conn->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
3994 conn->addr_len = READ_ONCE(sqe->addr2);
3995
3996 if (!io)
3997 return 0;
3998
3999 return move_addr_to_kernel(conn->addr, conn->addr_len,
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004000 &io->connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07004001}
4002
Pavel Begunkov014db002020-03-03 21:33:12 +03004003static int io_connect(struct io_kiocb *req, bool force_nonblock)
Jens Axboef8e85cf2019-11-23 14:24:24 -07004004{
Jens Axboef499a022019-12-02 16:28:46 -07004005 struct io_async_ctx __io, *io;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004006 unsigned file_flags;
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004007 int ret;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004008
Jens Axboef499a022019-12-02 16:28:46 -07004009 if (req->io) {
4010 io = req->io;
4011 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07004012 ret = move_addr_to_kernel(req->connect.addr,
4013 req->connect.addr_len,
4014 &__io.connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07004015 if (ret)
4016 goto out;
4017 io = &__io;
4018 }
4019
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004020 file_flags = force_nonblock ? O_NONBLOCK : 0;
4021
4022 ret = __sys_connect_file(req->file, &io->connect.address,
4023 req->connect.addr_len, file_flags);
Jens Axboe87f80d62019-12-03 11:23:54 -07004024 if ((ret == -EAGAIN || ret == -EINPROGRESS) && force_nonblock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004025 if (req->io)
4026 return -EAGAIN;
4027 if (io_alloc_async_ctx(req)) {
Jens Axboef499a022019-12-02 16:28:46 -07004028 ret = -ENOMEM;
4029 goto out;
4030 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004031 memcpy(&req->io->connect, &__io.connect, sizeof(__io.connect));
Jens Axboef8e85cf2019-11-23 14:24:24 -07004032 return -EAGAIN;
Jens Axboef499a022019-12-02 16:28:46 -07004033 }
Jens Axboef8e85cf2019-11-23 14:24:24 -07004034 if (ret == -ERESTARTSYS)
4035 ret = -EINTR;
Jens Axboef499a022019-12-02 16:28:46 -07004036out:
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004037 if (ret < 0)
4038 req_set_fail_links(req);
Jens Axboef8e85cf2019-11-23 14:24:24 -07004039 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03004040 io_put_req(req);
Jens Axboef8e85cf2019-11-23 14:24:24 -07004041 return 0;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004042}
YueHaibing469956e2020-03-04 15:53:52 +08004043#else /* !CONFIG_NET */
4044static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4045{
Jens Axboef8e85cf2019-11-23 14:24:24 -07004046 return -EOPNOTSUPP;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004047}
4048
YueHaibing469956e2020-03-04 15:53:52 +08004049static int io_sendmsg(struct io_kiocb *req, bool force_nonblock)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004050{
YueHaibing469956e2020-03-04 15:53:52 +08004051 return -EOPNOTSUPP;
4052}
4053
4054static int io_send(struct io_kiocb *req, bool force_nonblock)
4055{
4056 return -EOPNOTSUPP;
4057}
4058
4059static int io_recvmsg_prep(struct io_kiocb *req,
4060 const struct io_uring_sqe *sqe)
4061{
4062 return -EOPNOTSUPP;
4063}
4064
4065static int io_recvmsg(struct io_kiocb *req, bool force_nonblock)
4066{
4067 return -EOPNOTSUPP;
4068}
4069
4070static int io_recv(struct io_kiocb *req, bool force_nonblock)
4071{
4072 return -EOPNOTSUPP;
4073}
4074
4075static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4076{
4077 return -EOPNOTSUPP;
4078}
4079
4080static int io_accept(struct io_kiocb *req, bool force_nonblock)
4081{
4082 return -EOPNOTSUPP;
4083}
4084
4085static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4086{
4087 return -EOPNOTSUPP;
4088}
4089
4090static int io_connect(struct io_kiocb *req, bool force_nonblock)
4091{
4092 return -EOPNOTSUPP;
4093}
4094#endif /* CONFIG_NET */
Jens Axboe2b188cc2019-01-07 10:46:33 -07004095
Jens Axboed7718a92020-02-14 22:23:12 -07004096struct io_poll_table {
4097 struct poll_table_struct pt;
4098 struct io_kiocb *req;
4099 int error;
4100};
4101
4102static void __io_queue_proc(struct io_poll_iocb *poll, struct io_poll_table *pt,
4103 struct wait_queue_head *head)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004104{
Jens Axboed7718a92020-02-14 22:23:12 -07004105 if (unlikely(poll->head)) {
4106 pt->error = -EINVAL;
4107 return;
4108 }
4109
4110 pt->error = 0;
4111 poll->head = head;
4112 add_wait_queue(head, &poll->wait);
4113}
4114
4115static void io_async_queue_proc(struct file *file, struct wait_queue_head *head,
4116 struct poll_table_struct *p)
4117{
4118 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
4119
4120 __io_queue_proc(&pt->req->apoll->poll, pt, head);
4121}
4122
4123static int __io_async_wake(struct io_kiocb *req, struct io_poll_iocb *poll,
4124 __poll_t mask, task_work_func_t func)
4125{
4126 struct task_struct *tsk;
Jens Axboeaa96bf82020-04-03 11:26:26 -06004127 int ret;
Jens Axboed7718a92020-02-14 22:23:12 -07004128
4129 /* for instances that support it check for an event match first: */
4130 if (mask && !(mask & poll->events))
4131 return 0;
4132
4133 trace_io_uring_task_add(req->ctx, req->opcode, req->user_data, mask);
4134
4135 list_del_init(&poll->wait.entry);
4136
4137 tsk = req->task;
4138 req->result = mask;
4139 init_task_work(&req->task_work, func);
4140 /*
Jens Axboeaa96bf82020-04-03 11:26:26 -06004141 * If this fails, then the task is exiting. Punt to one of the io-wq
4142 * threads to ensure the work gets run, we can't always rely on exit
4143 * cancelation taking care of this.
Jens Axboed7718a92020-02-14 22:23:12 -07004144 */
Jens Axboeaa96bf82020-04-03 11:26:26 -06004145 ret = task_work_add(tsk, &req->task_work, true);
4146 if (unlikely(ret)) {
4147 tsk = io_wq_get_task(req->ctx->io_wq);
4148 task_work_add(tsk, &req->task_work, true);
4149 }
Jens Axboed7718a92020-02-14 22:23:12 -07004150 wake_up_process(tsk);
4151 return 1;
4152}
4153
4154static void io_async_task_func(struct callback_head *cb)
4155{
4156 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
4157 struct async_poll *apoll = req->apoll;
4158 struct io_ring_ctx *ctx = req->ctx;
4159
4160 trace_io_uring_task_run(req->ctx, req->opcode, req->user_data);
4161
4162 WARN_ON_ONCE(!list_empty(&req->apoll->poll.wait.entry));
4163
4164 if (hash_hashed(&req->hash_node)) {
4165 spin_lock_irq(&ctx->completion_lock);
4166 hash_del(&req->hash_node);
4167 spin_unlock_irq(&ctx->completion_lock);
4168 }
4169
4170 /* restore ->work in case we need to retry again */
4171 memcpy(&req->work, &apoll->work, sizeof(req->work));
4172
4173 __set_current_state(TASK_RUNNING);
4174 mutex_lock(&ctx->uring_lock);
4175 __io_queue_sqe(req, NULL);
4176 mutex_unlock(&ctx->uring_lock);
4177
4178 kfree(apoll);
4179}
4180
4181static int io_async_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
4182 void *key)
4183{
4184 struct io_kiocb *req = wait->private;
4185 struct io_poll_iocb *poll = &req->apoll->poll;
4186
4187 trace_io_uring_poll_wake(req->ctx, req->opcode, req->user_data,
4188 key_to_poll(key));
4189
4190 return __io_async_wake(req, poll, key_to_poll(key), io_async_task_func);
4191}
4192
4193static void io_poll_req_insert(struct io_kiocb *req)
4194{
4195 struct io_ring_ctx *ctx = req->ctx;
4196 struct hlist_head *list;
4197
4198 list = &ctx->cancel_hash[hash_long(req->user_data, ctx->cancel_hash_bits)];
4199 hlist_add_head(&req->hash_node, list);
4200}
4201
4202static __poll_t __io_arm_poll_handler(struct io_kiocb *req,
4203 struct io_poll_iocb *poll,
4204 struct io_poll_table *ipt, __poll_t mask,
4205 wait_queue_func_t wake_func)
4206 __acquires(&ctx->completion_lock)
4207{
4208 struct io_ring_ctx *ctx = req->ctx;
4209 bool cancel = false;
4210
4211 poll->file = req->file;
4212 poll->head = NULL;
4213 poll->done = poll->canceled = false;
4214 poll->events = mask;
4215
4216 ipt->pt._key = mask;
4217 ipt->req = req;
4218 ipt->error = -EINVAL;
4219
4220 INIT_LIST_HEAD(&poll->wait.entry);
4221 init_waitqueue_func_entry(&poll->wait, wake_func);
4222 poll->wait.private = req;
4223
4224 mask = vfs_poll(req->file, &ipt->pt) & poll->events;
4225
4226 spin_lock_irq(&ctx->completion_lock);
4227 if (likely(poll->head)) {
4228 spin_lock(&poll->head->lock);
4229 if (unlikely(list_empty(&poll->wait.entry))) {
4230 if (ipt->error)
4231 cancel = true;
4232 ipt->error = 0;
4233 mask = 0;
4234 }
4235 if (mask || ipt->error)
4236 list_del_init(&poll->wait.entry);
4237 else if (cancel)
4238 WRITE_ONCE(poll->canceled, true);
4239 else if (!poll->done) /* actually waiting for an event */
4240 io_poll_req_insert(req);
4241 spin_unlock(&poll->head->lock);
4242 }
4243
4244 return mask;
4245}
4246
4247static bool io_arm_poll_handler(struct io_kiocb *req)
4248{
4249 const struct io_op_def *def = &io_op_defs[req->opcode];
4250 struct io_ring_ctx *ctx = req->ctx;
4251 struct async_poll *apoll;
4252 struct io_poll_table ipt;
4253 __poll_t mask, ret;
4254
4255 if (!req->file || !file_can_poll(req->file))
4256 return false;
4257 if (req->flags & (REQ_F_MUST_PUNT | REQ_F_POLLED))
4258 return false;
4259 if (!def->pollin && !def->pollout)
4260 return false;
4261
4262 apoll = kmalloc(sizeof(*apoll), GFP_ATOMIC);
4263 if (unlikely(!apoll))
4264 return false;
4265
4266 req->flags |= REQ_F_POLLED;
4267 memcpy(&apoll->work, &req->work, sizeof(req->work));
4268
Jens Axboe3537b6a2020-04-03 11:19:06 -06004269 get_task_struct(current);
Jens Axboed7718a92020-02-14 22:23:12 -07004270 req->task = current;
4271 req->apoll = apoll;
4272 INIT_HLIST_NODE(&req->hash_node);
4273
Nathan Chancellor8755d972020-03-02 16:01:19 -07004274 mask = 0;
Jens Axboed7718a92020-02-14 22:23:12 -07004275 if (def->pollin)
Nathan Chancellor8755d972020-03-02 16:01:19 -07004276 mask |= POLLIN | POLLRDNORM;
Jens Axboed7718a92020-02-14 22:23:12 -07004277 if (def->pollout)
4278 mask |= POLLOUT | POLLWRNORM;
4279 mask |= POLLERR | POLLPRI;
4280
4281 ipt.pt._qproc = io_async_queue_proc;
4282
4283 ret = __io_arm_poll_handler(req, &apoll->poll, &ipt, mask,
4284 io_async_wake);
4285 if (ret) {
4286 ipt.error = 0;
4287 apoll->poll.done = true;
4288 spin_unlock_irq(&ctx->completion_lock);
4289 memcpy(&req->work, &apoll->work, sizeof(req->work));
4290 kfree(apoll);
4291 return false;
4292 }
4293 spin_unlock_irq(&ctx->completion_lock);
4294 trace_io_uring_poll_arm(ctx, req->opcode, req->user_data, mask,
4295 apoll->poll.events);
4296 return true;
4297}
4298
4299static bool __io_poll_remove_one(struct io_kiocb *req,
4300 struct io_poll_iocb *poll)
4301{
Jens Axboeb41e9852020-02-17 09:52:41 -07004302 bool do_complete = false;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004303
4304 spin_lock(&poll->head->lock);
4305 WRITE_ONCE(poll->canceled, true);
Jens Axboe392edb42019-12-09 17:52:20 -07004306 if (!list_empty(&poll->wait.entry)) {
4307 list_del_init(&poll->wait.entry);
Jens Axboeb41e9852020-02-17 09:52:41 -07004308 do_complete = true;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004309 }
4310 spin_unlock(&poll->head->lock);
Jens Axboed7718a92020-02-14 22:23:12 -07004311 return do_complete;
4312}
4313
4314static bool io_poll_remove_one(struct io_kiocb *req)
4315{
4316 bool do_complete;
4317
4318 if (req->opcode == IORING_OP_POLL_ADD) {
4319 do_complete = __io_poll_remove_one(req, &req->poll);
4320 } else {
4321 /* non-poll requests have submit ref still */
4322 do_complete = __io_poll_remove_one(req, &req->apoll->poll);
4323 if (do_complete)
4324 io_put_req(req);
4325 }
4326
Jens Axboe78076bb2019-12-04 19:56:40 -07004327 hash_del(&req->hash_node);
Jens Axboed7718a92020-02-14 22:23:12 -07004328
Jens Axboeb41e9852020-02-17 09:52:41 -07004329 if (do_complete) {
4330 io_cqring_fill_event(req, -ECANCELED);
4331 io_commit_cqring(req->ctx);
4332 req->flags |= REQ_F_COMP_LOCKED;
4333 io_put_req(req);
4334 }
4335
4336 return do_complete;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004337}
4338
4339static void io_poll_remove_all(struct io_ring_ctx *ctx)
4340{
Jens Axboe78076bb2019-12-04 19:56:40 -07004341 struct hlist_node *tmp;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004342 struct io_kiocb *req;
Jens Axboe78076bb2019-12-04 19:56:40 -07004343 int i;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004344
4345 spin_lock_irq(&ctx->completion_lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07004346 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
4347 struct hlist_head *list;
4348
4349 list = &ctx->cancel_hash[i];
4350 hlist_for_each_entry_safe(req, tmp, list, hash_node)
4351 io_poll_remove_one(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004352 }
4353 spin_unlock_irq(&ctx->completion_lock);
Jens Axboeb41e9852020-02-17 09:52:41 -07004354
4355 io_cqring_ev_posted(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004356}
4357
Jens Axboe47f46762019-11-09 17:43:02 -07004358static int io_poll_cancel(struct io_ring_ctx *ctx, __u64 sqe_addr)
4359{
Jens Axboe78076bb2019-12-04 19:56:40 -07004360 struct hlist_head *list;
Jens Axboe47f46762019-11-09 17:43:02 -07004361 struct io_kiocb *req;
4362
Jens Axboe78076bb2019-12-04 19:56:40 -07004363 list = &ctx->cancel_hash[hash_long(sqe_addr, ctx->cancel_hash_bits)];
4364 hlist_for_each_entry(req, list, hash_node) {
Jens Axboeb41e9852020-02-17 09:52:41 -07004365 if (sqe_addr != req->user_data)
4366 continue;
4367 if (io_poll_remove_one(req))
Jens Axboeeac406c2019-11-14 12:09:58 -07004368 return 0;
Jens Axboeb41e9852020-02-17 09:52:41 -07004369 return -EALREADY;
Jens Axboe47f46762019-11-09 17:43:02 -07004370 }
4371
4372 return -ENOENT;
4373}
4374
Jens Axboe3529d8c2019-12-19 18:24:38 -07004375static int io_poll_remove_prep(struct io_kiocb *req,
4376 const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004377{
Jens Axboe221c5eb2019-01-17 09:41:58 -07004378 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4379 return -EINVAL;
4380 if (sqe->ioprio || sqe->off || sqe->len || sqe->buf_index ||
4381 sqe->poll_events)
4382 return -EINVAL;
4383
Jens Axboe0969e782019-12-17 18:40:57 -07004384 req->poll.addr = READ_ONCE(sqe->addr);
Jens Axboe0969e782019-12-17 18:40:57 -07004385 return 0;
4386}
4387
4388/*
4389 * Find a running poll command that matches one specified in sqe->addr,
4390 * and remove it if found.
4391 */
4392static int io_poll_remove(struct io_kiocb *req)
4393{
4394 struct io_ring_ctx *ctx = req->ctx;
4395 u64 addr;
4396 int ret;
4397
Jens Axboe0969e782019-12-17 18:40:57 -07004398 addr = req->poll.addr;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004399 spin_lock_irq(&ctx->completion_lock);
Jens Axboe0969e782019-12-17 18:40:57 -07004400 ret = io_poll_cancel(ctx, addr);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004401 spin_unlock_irq(&ctx->completion_lock);
4402
Jens Axboe78e19bb2019-11-06 15:21:34 -07004403 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004404 if (ret < 0)
4405 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06004406 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004407 return 0;
4408}
4409
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004410static void io_poll_complete(struct io_kiocb *req, __poll_t mask, int error)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004411{
Jackie Liua197f662019-11-08 08:09:12 -07004412 struct io_ring_ctx *ctx = req->ctx;
4413
Jens Axboe8c838782019-03-12 15:48:16 -06004414 req->poll.done = true;
Pavel Begunkovb0a20342020-02-28 10:36:35 +03004415 io_cqring_fill_event(req, error ? error : mangle_poll(mask));
Jens Axboe8c838782019-03-12 15:48:16 -06004416 io_commit_cqring(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004417}
4418
Jens Axboeb41e9852020-02-17 09:52:41 -07004419static void io_poll_task_handler(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004420{
Jens Axboe221c5eb2019-01-17 09:41:58 -07004421 struct io_ring_ctx *ctx = req->ctx;
Jens Axboea6ba6322020-04-03 11:10:14 -06004422 struct io_poll_iocb *poll = &req->poll;
4423
4424 if (!req->result && !READ_ONCE(poll->canceled)) {
4425 struct poll_table_struct pt = { ._key = poll->events };
4426
4427 req->result = vfs_poll(req->file, &pt) & poll->events;
4428 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07004429
Jens Axboe221c5eb2019-01-17 09:41:58 -07004430 spin_lock_irq(&ctx->completion_lock);
Jens Axboea6ba6322020-04-03 11:10:14 -06004431 if (!req->result && !READ_ONCE(poll->canceled)) {
4432 add_wait_queue(poll->head, &poll->wait);
4433 spin_unlock_irq(&ctx->completion_lock);
4434 return;
4435 }
Jens Axboe78076bb2019-12-04 19:56:40 -07004436 hash_del(&req->hash_node);
Jens Axboeb41e9852020-02-17 09:52:41 -07004437 io_poll_complete(req, req->result, 0);
4438 req->flags |= REQ_F_COMP_LOCKED;
4439 io_put_req_find_next(req, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004440 spin_unlock_irq(&ctx->completion_lock);
4441
Jens Axboe8c838782019-03-12 15:48:16 -06004442 io_cqring_ev_posted(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004443}
4444
Jens Axboeb41e9852020-02-17 09:52:41 -07004445static void io_poll_task_func(struct callback_head *cb)
Jens Axboee94f1412019-12-19 12:06:02 -07004446{
Jens Axboeb41e9852020-02-17 09:52:41 -07004447 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
4448 struct io_kiocb *nxt = NULL;
Jens Axboee94f1412019-12-19 12:06:02 -07004449
Jens Axboeb41e9852020-02-17 09:52:41 -07004450 io_poll_task_handler(req, &nxt);
Jens Axboed7718a92020-02-14 22:23:12 -07004451 if (nxt) {
4452 struct io_ring_ctx *ctx = nxt->ctx;
Jens Axboee94f1412019-12-19 12:06:02 -07004453
Jens Axboed7718a92020-02-14 22:23:12 -07004454 mutex_lock(&ctx->uring_lock);
Jens Axboeb41e9852020-02-17 09:52:41 -07004455 __io_queue_sqe(nxt, NULL);
Jens Axboed7718a92020-02-14 22:23:12 -07004456 mutex_unlock(&ctx->uring_lock);
Jens Axboee94f1412019-12-19 12:06:02 -07004457 }
Jens Axboef0b493e2020-02-01 21:30:11 -07004458}
4459
Jens Axboe221c5eb2019-01-17 09:41:58 -07004460static int io_poll_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
4461 void *key)
4462{
Jens Axboec2f2eb72020-02-10 09:07:05 -07004463 struct io_kiocb *req = wait->private;
4464 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004465
Jens Axboed7718a92020-02-14 22:23:12 -07004466 return __io_async_wake(req, poll, key_to_poll(key), io_poll_task_func);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004467}
4468
Jens Axboe221c5eb2019-01-17 09:41:58 -07004469static void io_poll_queue_proc(struct file *file, struct wait_queue_head *head,
4470 struct poll_table_struct *p)
4471{
4472 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
4473
Jens Axboed7718a92020-02-14 22:23:12 -07004474 __io_queue_proc(&pt->req->poll, pt, head);
Jens Axboeeac406c2019-11-14 12:09:58 -07004475}
4476
Jens Axboe3529d8c2019-12-19 18:24:38 -07004477static int io_poll_add_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004478{
4479 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004480 u16 events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004481
4482 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4483 return -EINVAL;
4484 if (sqe->addr || sqe->ioprio || sqe->off || sqe->len || sqe->buf_index)
4485 return -EINVAL;
Jens Axboe09bb8392019-03-13 12:39:28 -06004486 if (!poll->file)
4487 return -EBADF;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004488
Jens Axboe221c5eb2019-01-17 09:41:58 -07004489 events = READ_ONCE(sqe->poll_events);
4490 poll->events = demangle_poll(events) | EPOLLERR | EPOLLHUP;
Jens Axboeb41e9852020-02-17 09:52:41 -07004491
Jens Axboe3537b6a2020-04-03 11:19:06 -06004492 get_task_struct(current);
Jens Axboeb41e9852020-02-17 09:52:41 -07004493 req->task = current;
Jens Axboe0969e782019-12-17 18:40:57 -07004494 return 0;
4495}
4496
Pavel Begunkov014db002020-03-03 21:33:12 +03004497static int io_poll_add(struct io_kiocb *req)
Jens Axboe0969e782019-12-17 18:40:57 -07004498{
4499 struct io_poll_iocb *poll = &req->poll;
4500 struct io_ring_ctx *ctx = req->ctx;
4501 struct io_poll_table ipt;
Jens Axboe0969e782019-12-17 18:40:57 -07004502 __poll_t mask;
Jens Axboe0969e782019-12-17 18:40:57 -07004503
Jens Axboe78076bb2019-12-04 19:56:40 -07004504 INIT_HLIST_NODE(&req->hash_node);
Jens Axboe36703242019-07-25 10:20:18 -06004505 INIT_LIST_HEAD(&req->list);
Jens Axboed7718a92020-02-14 22:23:12 -07004506 ipt.pt._qproc = io_poll_queue_proc;
Jens Axboe36703242019-07-25 10:20:18 -06004507
Jens Axboed7718a92020-02-14 22:23:12 -07004508 mask = __io_arm_poll_handler(req, &req->poll, &ipt, poll->events,
4509 io_poll_wake);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004510
Jens Axboe8c838782019-03-12 15:48:16 -06004511 if (mask) { /* no async, we'd stolen it */
Jens Axboe8c838782019-03-12 15:48:16 -06004512 ipt.error = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004513 io_poll_complete(req, mask, 0);
Jens Axboe8c838782019-03-12 15:48:16 -06004514 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07004515 spin_unlock_irq(&ctx->completion_lock);
4516
Jens Axboe8c838782019-03-12 15:48:16 -06004517 if (mask) {
4518 io_cqring_ev_posted(ctx);
Pavel Begunkov014db002020-03-03 21:33:12 +03004519 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004520 }
Jens Axboe8c838782019-03-12 15:48:16 -06004521 return ipt.error;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004522}
4523
Jens Axboe5262f562019-09-17 12:26:57 -06004524static enum hrtimer_restart io_timeout_fn(struct hrtimer *timer)
4525{
Jens Axboead8a48a2019-11-15 08:49:11 -07004526 struct io_timeout_data *data = container_of(timer,
4527 struct io_timeout_data, timer);
4528 struct io_kiocb *req = data->req;
4529 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5262f562019-09-17 12:26:57 -06004530 unsigned long flags;
4531
Jens Axboe5262f562019-09-17 12:26:57 -06004532 atomic_inc(&ctx->cq_timeouts);
4533
4534 spin_lock_irqsave(&ctx->completion_lock, flags);
zhangyi (F)ef036812019-10-23 15:10:08 +08004535 /*
Jens Axboe11365042019-10-16 09:08:32 -06004536 * We could be racing with timeout deletion. If the list is empty,
4537 * then timeout lookup already found it and will be handling it.
zhangyi (F)ef036812019-10-23 15:10:08 +08004538 */
Jens Axboe842f9612019-10-29 12:34:10 -06004539 if (!list_empty(&req->list)) {
Jens Axboe11365042019-10-16 09:08:32 -06004540 struct io_kiocb *prev;
Jens Axboe5262f562019-09-17 12:26:57 -06004541
Jens Axboe11365042019-10-16 09:08:32 -06004542 /*
4543 * Adjust the reqs sequence before the current one because it
Brian Gianforcarod195a662019-12-13 03:09:50 -08004544 * will consume a slot in the cq_ring and the cq_tail
Jens Axboe11365042019-10-16 09:08:32 -06004545 * pointer will be increased, otherwise other timeout reqs may
4546 * return in advance without waiting for enough wait_nr.
4547 */
4548 prev = req;
4549 list_for_each_entry_continue_reverse(prev, &ctx->timeout_list, list)
4550 prev->sequence++;
Jens Axboe11365042019-10-16 09:08:32 -06004551 list_del_init(&req->list);
Jens Axboe11365042019-10-16 09:08:32 -06004552 }
Jens Axboe842f9612019-10-29 12:34:10 -06004553
Jens Axboe78e19bb2019-11-06 15:21:34 -07004554 io_cqring_fill_event(req, -ETIME);
Jens Axboe5262f562019-09-17 12:26:57 -06004555 io_commit_cqring(ctx);
4556 spin_unlock_irqrestore(&ctx->completion_lock, flags);
4557
4558 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004559 req_set_fail_links(req);
Jens Axboe5262f562019-09-17 12:26:57 -06004560 io_put_req(req);
4561 return HRTIMER_NORESTART;
4562}
4563
Jens Axboe47f46762019-11-09 17:43:02 -07004564static int io_timeout_cancel(struct io_ring_ctx *ctx, __u64 user_data)
4565{
4566 struct io_kiocb *req;
4567 int ret = -ENOENT;
4568
4569 list_for_each_entry(req, &ctx->timeout_list, list) {
4570 if (user_data == req->user_data) {
4571 list_del_init(&req->list);
4572 ret = 0;
4573 break;
4574 }
4575 }
4576
4577 if (ret == -ENOENT)
4578 return ret;
4579
Jens Axboe2d283902019-12-04 11:08:05 -07004580 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe47f46762019-11-09 17:43:02 -07004581 if (ret == -1)
4582 return -EALREADY;
4583
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004584 req_set_fail_links(req);
Jens Axboe47f46762019-11-09 17:43:02 -07004585 io_cqring_fill_event(req, -ECANCELED);
4586 io_put_req(req);
4587 return 0;
4588}
4589
Jens Axboe3529d8c2019-12-19 18:24:38 -07004590static int io_timeout_remove_prep(struct io_kiocb *req,
4591 const struct io_uring_sqe *sqe)
Jens Axboeb29472e2019-12-17 18:50:29 -07004592{
Jens Axboeb29472e2019-12-17 18:50:29 -07004593 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4594 return -EINVAL;
4595 if (sqe->flags || sqe->ioprio || sqe->buf_index || sqe->len)
4596 return -EINVAL;
4597
4598 req->timeout.addr = READ_ONCE(sqe->addr);
4599 req->timeout.flags = READ_ONCE(sqe->timeout_flags);
4600 if (req->timeout.flags)
4601 return -EINVAL;
4602
Jens Axboeb29472e2019-12-17 18:50:29 -07004603 return 0;
4604}
4605
Jens Axboe11365042019-10-16 09:08:32 -06004606/*
4607 * Remove or update an existing timeout command
4608 */
Jens Axboefc4df992019-12-10 14:38:45 -07004609static int io_timeout_remove(struct io_kiocb *req)
Jens Axboe11365042019-10-16 09:08:32 -06004610{
4611 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe47f46762019-11-09 17:43:02 -07004612 int ret;
Jens Axboe11365042019-10-16 09:08:32 -06004613
Jens Axboe11365042019-10-16 09:08:32 -06004614 spin_lock_irq(&ctx->completion_lock);
Jens Axboeb29472e2019-12-17 18:50:29 -07004615 ret = io_timeout_cancel(ctx, req->timeout.addr);
Jens Axboe11365042019-10-16 09:08:32 -06004616
Jens Axboe47f46762019-11-09 17:43:02 -07004617 io_cqring_fill_event(req, ret);
Jens Axboe11365042019-10-16 09:08:32 -06004618 io_commit_cqring(ctx);
4619 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06004620 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004621 if (ret < 0)
4622 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08004623 io_put_req(req);
Jens Axboe11365042019-10-16 09:08:32 -06004624 return 0;
Jens Axboe5262f562019-09-17 12:26:57 -06004625}
4626
Jens Axboe3529d8c2019-12-19 18:24:38 -07004627static int io_timeout_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboe2d283902019-12-04 11:08:05 -07004628 bool is_timeout_link)
Jens Axboe5262f562019-09-17 12:26:57 -06004629{
Jens Axboead8a48a2019-11-15 08:49:11 -07004630 struct io_timeout_data *data;
Jens Axboea41525a2019-10-15 16:48:15 -06004631 unsigned flags;
Jens Axboe5262f562019-09-17 12:26:57 -06004632
Jens Axboead8a48a2019-11-15 08:49:11 -07004633 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe5262f562019-09-17 12:26:57 -06004634 return -EINVAL;
Jens Axboead8a48a2019-11-15 08:49:11 -07004635 if (sqe->ioprio || sqe->buf_index || sqe->len != 1)
Jens Axboea41525a2019-10-15 16:48:15 -06004636 return -EINVAL;
Jens Axboe2d283902019-12-04 11:08:05 -07004637 if (sqe->off && is_timeout_link)
4638 return -EINVAL;
Jens Axboea41525a2019-10-15 16:48:15 -06004639 flags = READ_ONCE(sqe->timeout_flags);
4640 if (flags & ~IORING_TIMEOUT_ABS)
Jens Axboe5262f562019-09-17 12:26:57 -06004641 return -EINVAL;
Arnd Bergmannbdf20072019-10-01 09:53:29 -06004642
Jens Axboe26a61672019-12-20 09:02:01 -07004643 req->timeout.count = READ_ONCE(sqe->off);
4644
Jens Axboe3529d8c2019-12-19 18:24:38 -07004645 if (!req->io && io_alloc_async_ctx(req))
Jens Axboe26a61672019-12-20 09:02:01 -07004646 return -ENOMEM;
4647
4648 data = &req->io->timeout;
Jens Axboead8a48a2019-11-15 08:49:11 -07004649 data->req = req;
Jens Axboead8a48a2019-11-15 08:49:11 -07004650 req->flags |= REQ_F_TIMEOUT;
4651
4652 if (get_timespec64(&data->ts, u64_to_user_ptr(sqe->addr)))
Jens Axboe5262f562019-09-17 12:26:57 -06004653 return -EFAULT;
4654
Jens Axboe11365042019-10-16 09:08:32 -06004655 if (flags & IORING_TIMEOUT_ABS)
Jens Axboead8a48a2019-11-15 08:49:11 -07004656 data->mode = HRTIMER_MODE_ABS;
Jens Axboe11365042019-10-16 09:08:32 -06004657 else
Jens Axboead8a48a2019-11-15 08:49:11 -07004658 data->mode = HRTIMER_MODE_REL;
Jens Axboe11365042019-10-16 09:08:32 -06004659
Jens Axboead8a48a2019-11-15 08:49:11 -07004660 hrtimer_init(&data->timer, CLOCK_MONOTONIC, data->mode);
4661 return 0;
4662}
4663
Jens Axboefc4df992019-12-10 14:38:45 -07004664static int io_timeout(struct io_kiocb *req)
Jens Axboead8a48a2019-11-15 08:49:11 -07004665{
4666 unsigned count;
4667 struct io_ring_ctx *ctx = req->ctx;
4668 struct io_timeout_data *data;
4669 struct list_head *entry;
4670 unsigned span = 0;
Jens Axboead8a48a2019-11-15 08:49:11 -07004671
Jens Axboe2d283902019-12-04 11:08:05 -07004672 data = &req->io->timeout;
Jens Axboe93bd25b2019-11-11 23:34:31 -07004673
Jens Axboe5262f562019-09-17 12:26:57 -06004674 /*
4675 * sqe->off holds how many events that need to occur for this
Jens Axboe93bd25b2019-11-11 23:34:31 -07004676 * timeout event to be satisfied. If it isn't set, then this is
4677 * a pure timeout request, sequence isn't used.
Jens Axboe5262f562019-09-17 12:26:57 -06004678 */
Jens Axboe26a61672019-12-20 09:02:01 -07004679 count = req->timeout.count;
Jens Axboe93bd25b2019-11-11 23:34:31 -07004680 if (!count) {
4681 req->flags |= REQ_F_TIMEOUT_NOSEQ;
4682 spin_lock_irq(&ctx->completion_lock);
4683 entry = ctx->timeout_list.prev;
4684 goto add;
4685 }
Jens Axboe5262f562019-09-17 12:26:57 -06004686
4687 req->sequence = ctx->cached_sq_head + count - 1;
Jens Axboe2d283902019-12-04 11:08:05 -07004688 data->seq_offset = count;
Jens Axboe5262f562019-09-17 12:26:57 -06004689
4690 /*
4691 * Insertion sort, ensuring the first entry in the list is always
4692 * the one we need first.
4693 */
Jens Axboe5262f562019-09-17 12:26:57 -06004694 spin_lock_irq(&ctx->completion_lock);
4695 list_for_each_prev(entry, &ctx->timeout_list) {
4696 struct io_kiocb *nxt = list_entry(entry, struct io_kiocb, list);
yangerkun5da0fb12019-10-15 21:59:29 +08004697 unsigned nxt_sq_head;
4698 long long tmp, tmp_nxt;
Jens Axboe2d283902019-12-04 11:08:05 -07004699 u32 nxt_offset = nxt->io->timeout.seq_offset;
Jens Axboe5262f562019-09-17 12:26:57 -06004700
Jens Axboe93bd25b2019-11-11 23:34:31 -07004701 if (nxt->flags & REQ_F_TIMEOUT_NOSEQ)
4702 continue;
4703
yangerkun5da0fb12019-10-15 21:59:29 +08004704 /*
4705 * Since cached_sq_head + count - 1 can overflow, use type long
4706 * long to store it.
4707 */
4708 tmp = (long long)ctx->cached_sq_head + count - 1;
Pavel Begunkovcc42e0a2019-11-25 23:14:38 +03004709 nxt_sq_head = nxt->sequence - nxt_offset + 1;
4710 tmp_nxt = (long long)nxt_sq_head + nxt_offset - 1;
yangerkun5da0fb12019-10-15 21:59:29 +08004711
4712 /*
4713 * cached_sq_head may overflow, and it will never overflow twice
4714 * once there is some timeout req still be valid.
4715 */
4716 if (ctx->cached_sq_head < nxt_sq_head)
yangerkun8b07a652019-10-17 12:12:35 +08004717 tmp += UINT_MAX;
yangerkun5da0fb12019-10-15 21:59:29 +08004718
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004719 if (tmp > tmp_nxt)
Jens Axboe5262f562019-09-17 12:26:57 -06004720 break;
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004721
4722 /*
4723 * Sequence of reqs after the insert one and itself should
4724 * be adjusted because each timeout req consumes a slot.
4725 */
4726 span++;
4727 nxt->sequence++;
Jens Axboe5262f562019-09-17 12:26:57 -06004728 }
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004729 req->sequence -= span;
Jens Axboe93bd25b2019-11-11 23:34:31 -07004730add:
Jens Axboe5262f562019-09-17 12:26:57 -06004731 list_add(&req->list, entry);
Jens Axboead8a48a2019-11-15 08:49:11 -07004732 data->timer.function = io_timeout_fn;
4733 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts), data->mode);
Jens Axboe842f9612019-10-29 12:34:10 -06004734 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06004735 return 0;
4736}
4737
Jens Axboe62755e32019-10-28 21:49:21 -06004738static bool io_cancel_cb(struct io_wq_work *work, void *data)
Jens Axboede0617e2019-04-06 21:51:27 -06004739{
Jens Axboe62755e32019-10-28 21:49:21 -06004740 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboede0617e2019-04-06 21:51:27 -06004741
Jens Axboe62755e32019-10-28 21:49:21 -06004742 return req->user_data == (unsigned long) data;
4743}
4744
Jens Axboee977d6d2019-11-05 12:39:45 -07004745static int io_async_cancel_one(struct io_ring_ctx *ctx, void *sqe_addr)
Jens Axboe62755e32019-10-28 21:49:21 -06004746{
Jens Axboe62755e32019-10-28 21:49:21 -06004747 enum io_wq_cancel cancel_ret;
Jens Axboe62755e32019-10-28 21:49:21 -06004748 int ret = 0;
4749
Jens Axboe62755e32019-10-28 21:49:21 -06004750 cancel_ret = io_wq_cancel_cb(ctx->io_wq, io_cancel_cb, sqe_addr);
4751 switch (cancel_ret) {
4752 case IO_WQ_CANCEL_OK:
4753 ret = 0;
4754 break;
4755 case IO_WQ_CANCEL_RUNNING:
4756 ret = -EALREADY;
4757 break;
4758 case IO_WQ_CANCEL_NOTFOUND:
4759 ret = -ENOENT;
4760 break;
4761 }
4762
Jens Axboee977d6d2019-11-05 12:39:45 -07004763 return ret;
4764}
4765
Jens Axboe47f46762019-11-09 17:43:02 -07004766static void io_async_find_and_cancel(struct io_ring_ctx *ctx,
4767 struct io_kiocb *req, __u64 sqe_addr,
Pavel Begunkov014db002020-03-03 21:33:12 +03004768 int success_ret)
Jens Axboe47f46762019-11-09 17:43:02 -07004769{
4770 unsigned long flags;
4771 int ret;
4772
4773 ret = io_async_cancel_one(ctx, (void *) (unsigned long) sqe_addr);
4774 if (ret != -ENOENT) {
4775 spin_lock_irqsave(&ctx->completion_lock, flags);
4776 goto done;
4777 }
4778
4779 spin_lock_irqsave(&ctx->completion_lock, flags);
4780 ret = io_timeout_cancel(ctx, sqe_addr);
4781 if (ret != -ENOENT)
4782 goto done;
4783 ret = io_poll_cancel(ctx, sqe_addr);
4784done:
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004785 if (!ret)
4786 ret = success_ret;
Jens Axboe47f46762019-11-09 17:43:02 -07004787 io_cqring_fill_event(req, ret);
4788 io_commit_cqring(ctx);
4789 spin_unlock_irqrestore(&ctx->completion_lock, flags);
4790 io_cqring_ev_posted(ctx);
4791
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004792 if (ret < 0)
4793 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03004794 io_put_req(req);
Jens Axboe47f46762019-11-09 17:43:02 -07004795}
4796
Jens Axboe3529d8c2019-12-19 18:24:38 -07004797static int io_async_cancel_prep(struct io_kiocb *req,
4798 const struct io_uring_sqe *sqe)
Jens Axboee977d6d2019-11-05 12:39:45 -07004799{
Jens Axboefbf23842019-12-17 18:45:56 -07004800 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboee977d6d2019-11-05 12:39:45 -07004801 return -EINVAL;
4802 if (sqe->flags || sqe->ioprio || sqe->off || sqe->len ||
4803 sqe->cancel_flags)
4804 return -EINVAL;
4805
Jens Axboefbf23842019-12-17 18:45:56 -07004806 req->cancel.addr = READ_ONCE(sqe->addr);
4807 return 0;
4808}
4809
Pavel Begunkov014db002020-03-03 21:33:12 +03004810static int io_async_cancel(struct io_kiocb *req)
Jens Axboefbf23842019-12-17 18:45:56 -07004811{
4812 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefbf23842019-12-17 18:45:56 -07004813
Pavel Begunkov014db002020-03-03 21:33:12 +03004814 io_async_find_and_cancel(ctx, req, req->cancel.addr, 0);
Jens Axboe62755e32019-10-28 21:49:21 -06004815 return 0;
4816}
4817
Jens Axboe05f3fb32019-12-09 11:22:50 -07004818static int io_files_update_prep(struct io_kiocb *req,
4819 const struct io_uring_sqe *sqe)
4820{
4821 if (sqe->flags || sqe->ioprio || sqe->rw_flags)
4822 return -EINVAL;
4823
4824 req->files_update.offset = READ_ONCE(sqe->off);
4825 req->files_update.nr_args = READ_ONCE(sqe->len);
4826 if (!req->files_update.nr_args)
4827 return -EINVAL;
4828 req->files_update.arg = READ_ONCE(sqe->addr);
4829 return 0;
4830}
4831
4832static int io_files_update(struct io_kiocb *req, bool force_nonblock)
4833{
4834 struct io_ring_ctx *ctx = req->ctx;
4835 struct io_uring_files_update up;
4836 int ret;
4837
Jens Axboef86cd202020-01-29 13:46:44 -07004838 if (force_nonblock)
Jens Axboe05f3fb32019-12-09 11:22:50 -07004839 return -EAGAIN;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004840
4841 up.offset = req->files_update.offset;
4842 up.fds = req->files_update.arg;
4843
4844 mutex_lock(&ctx->uring_lock);
4845 ret = __io_sqe_files_update(ctx, &up, req->files_update.nr_args);
4846 mutex_unlock(&ctx->uring_lock);
4847
4848 if (ret < 0)
4849 req_set_fail_links(req);
4850 io_cqring_add_event(req, ret);
4851 io_put_req(req);
4852 return 0;
4853}
4854
Jens Axboe3529d8c2019-12-19 18:24:38 -07004855static int io_req_defer_prep(struct io_kiocb *req,
4856 const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07004857{
Jens Axboee7815732019-12-17 19:45:06 -07004858 ssize_t ret = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07004859
Pavel Begunkovf1d96a82020-03-13 22:29:14 +03004860 if (!sqe)
4861 return 0;
4862
Jens Axboef86cd202020-01-29 13:46:44 -07004863 if (io_op_defs[req->opcode].file_table) {
4864 ret = io_grab_files(req);
4865 if (unlikely(ret))
4866 return ret;
4867 }
4868
Jens Axboecccf0ee2020-01-27 16:34:48 -07004869 io_req_work_grab_env(req, &io_op_defs[req->opcode]);
4870
Jens Axboed625c6e2019-12-17 19:53:05 -07004871 switch (req->opcode) {
Jens Axboee7815732019-12-17 19:45:06 -07004872 case IORING_OP_NOP:
4873 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004874 case IORING_OP_READV:
4875 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004876 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004877 ret = io_read_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07004878 break;
4879 case IORING_OP_WRITEV:
4880 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004881 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004882 ret = io_write_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07004883 break;
Jens Axboe0969e782019-12-17 18:40:57 -07004884 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004885 ret = io_poll_add_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07004886 break;
4887 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004888 ret = io_poll_remove_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07004889 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004890 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004891 ret = io_prep_fsync(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004892 break;
4893 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004894 ret = io_prep_sfr(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004895 break;
Jens Axboe03b12302019-12-02 18:50:25 -07004896 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004897 case IORING_OP_SEND:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004898 ret = io_sendmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07004899 break;
4900 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004901 case IORING_OP_RECV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004902 ret = io_recvmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07004903 break;
Jens Axboef499a022019-12-02 16:28:46 -07004904 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004905 ret = io_connect_prep(req, sqe);
Jens Axboef499a022019-12-02 16:28:46 -07004906 break;
Jens Axboe2d283902019-12-04 11:08:05 -07004907 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004908 ret = io_timeout_prep(req, sqe, false);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004909 break;
Jens Axboeb29472e2019-12-17 18:50:29 -07004910 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004911 ret = io_timeout_remove_prep(req, sqe);
Jens Axboeb29472e2019-12-17 18:50:29 -07004912 break;
Jens Axboefbf23842019-12-17 18:45:56 -07004913 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004914 ret = io_async_cancel_prep(req, sqe);
Jens Axboefbf23842019-12-17 18:45:56 -07004915 break;
Jens Axboe2d283902019-12-04 11:08:05 -07004916 case IORING_OP_LINK_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004917 ret = io_timeout_prep(req, sqe, true);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004918 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004919 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004920 ret = io_accept_prep(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004921 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07004922 case IORING_OP_FALLOCATE:
4923 ret = io_fallocate_prep(req, sqe);
4924 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004925 case IORING_OP_OPENAT:
4926 ret = io_openat_prep(req, sqe);
4927 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07004928 case IORING_OP_CLOSE:
4929 ret = io_close_prep(req, sqe);
4930 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004931 case IORING_OP_FILES_UPDATE:
4932 ret = io_files_update_prep(req, sqe);
4933 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004934 case IORING_OP_STATX:
4935 ret = io_statx_prep(req, sqe);
4936 break;
Jens Axboe4840e412019-12-25 22:03:45 -07004937 case IORING_OP_FADVISE:
4938 ret = io_fadvise_prep(req, sqe);
4939 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07004940 case IORING_OP_MADVISE:
4941 ret = io_madvise_prep(req, sqe);
4942 break;
Jens Axboecebdb982020-01-08 17:59:24 -07004943 case IORING_OP_OPENAT2:
4944 ret = io_openat2_prep(req, sqe);
4945 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07004946 case IORING_OP_EPOLL_CTL:
4947 ret = io_epoll_ctl_prep(req, sqe);
4948 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03004949 case IORING_OP_SPLICE:
4950 ret = io_splice_prep(req, sqe);
4951 break;
Jens Axboeddf0322d2020-02-23 16:41:33 -07004952 case IORING_OP_PROVIDE_BUFFERS:
4953 ret = io_provide_buffers_prep(req, sqe);
4954 break;
Jens Axboe067524e2020-03-02 16:32:28 -07004955 case IORING_OP_REMOVE_BUFFERS:
4956 ret = io_remove_buffers_prep(req, sqe);
4957 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004958 default:
Jens Axboee7815732019-12-17 19:45:06 -07004959 printk_once(KERN_WARNING "io_uring: unhandled opcode %d\n",
4960 req->opcode);
4961 ret = -EINVAL;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004962 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004963 }
4964
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004965 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07004966}
4967
Jens Axboe3529d8c2019-12-19 18:24:38 -07004968static int io_req_defer(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboede0617e2019-04-06 21:51:27 -06004969{
Jackie Liua197f662019-11-08 08:09:12 -07004970 struct io_ring_ctx *ctx = req->ctx;
Jens Axboef67676d2019-12-02 11:03:47 -07004971 int ret;
Jens Axboede0617e2019-04-06 21:51:27 -06004972
Bob Liu9d858b22019-11-13 18:06:25 +08004973 /* Still need defer if there is pending req in defer list. */
4974 if (!req_need_defer(req) && list_empty(&ctx->defer_list))
Jens Axboede0617e2019-04-06 21:51:27 -06004975 return 0;
4976
Jens Axboe3529d8c2019-12-19 18:24:38 -07004977 if (!req->io && io_alloc_async_ctx(req))
Jens Axboede0617e2019-04-06 21:51:27 -06004978 return -EAGAIN;
4979
Jens Axboe3529d8c2019-12-19 18:24:38 -07004980 ret = io_req_defer_prep(req, sqe);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004981 if (ret < 0)
Jens Axboe2d283902019-12-04 11:08:05 -07004982 return ret;
Jens Axboe2d283902019-12-04 11:08:05 -07004983
Jens Axboede0617e2019-04-06 21:51:27 -06004984 spin_lock_irq(&ctx->completion_lock);
Bob Liu9d858b22019-11-13 18:06:25 +08004985 if (!req_need_defer(req) && list_empty(&ctx->defer_list)) {
Jens Axboede0617e2019-04-06 21:51:27 -06004986 spin_unlock_irq(&ctx->completion_lock);
Jens Axboede0617e2019-04-06 21:51:27 -06004987 return 0;
4988 }
4989
Jens Axboe915967f2019-11-21 09:01:20 -07004990 trace_io_uring_defer(ctx, req, req->user_data);
Jens Axboede0617e2019-04-06 21:51:27 -06004991 list_add_tail(&req->list, &ctx->defer_list);
4992 spin_unlock_irq(&ctx->completion_lock);
4993 return -EIOCBQUEUED;
4994}
4995
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004996static void io_cleanup_req(struct io_kiocb *req)
4997{
4998 struct io_async_ctx *io = req->io;
4999
5000 switch (req->opcode) {
5001 case IORING_OP_READV:
5002 case IORING_OP_READ_FIXED:
5003 case IORING_OP_READ:
Jens Axboebcda7ba2020-02-23 16:42:51 -07005004 if (req->flags & REQ_F_BUFFER_SELECTED)
5005 kfree((void *)(unsigned long)req->rw.addr);
5006 /* fallthrough */
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005007 case IORING_OP_WRITEV:
5008 case IORING_OP_WRITE_FIXED:
5009 case IORING_OP_WRITE:
5010 if (io->rw.iov != io->rw.fast_iov)
5011 kfree(io->rw.iov);
5012 break;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005013 case IORING_OP_RECVMSG:
Jens Axboe52de1fe2020-02-27 10:15:42 -07005014 if (req->flags & REQ_F_BUFFER_SELECTED)
5015 kfree(req->sr_msg.kbuf);
5016 /* fallthrough */
5017 case IORING_OP_SENDMSG:
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005018 if (io->msg.iov != io->msg.fast_iov)
5019 kfree(io->msg.iov);
5020 break;
Jens Axboebcda7ba2020-02-23 16:42:51 -07005021 case IORING_OP_RECV:
5022 if (req->flags & REQ_F_BUFFER_SELECTED)
5023 kfree(req->sr_msg.kbuf);
5024 break;
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03005025 case IORING_OP_OPENAT:
5026 case IORING_OP_OPENAT2:
5027 case IORING_OP_STATX:
5028 putname(req->open.filename);
5029 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005030 case IORING_OP_SPLICE:
5031 io_put_file(req, req->splice.file_in,
5032 (req->splice.flags & SPLICE_F_FD_IN_FIXED));
5033 break;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005034 }
5035
5036 req->flags &= ~REQ_F_NEED_CLEANUP;
5037}
5038
Jens Axboe3529d8c2019-12-19 18:24:38 -07005039static int io_issue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Pavel Begunkov014db002020-03-03 21:33:12 +03005040 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005041{
Jackie Liua197f662019-11-08 08:09:12 -07005042 struct io_ring_ctx *ctx = req->ctx;
Jens Axboed625c6e2019-12-17 19:53:05 -07005043 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005044
Jens Axboed625c6e2019-12-17 19:53:05 -07005045 switch (req->opcode) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07005046 case IORING_OP_NOP:
Jens Axboe78e19bb2019-11-06 15:21:34 -07005047 ret = io_nop(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005048 break;
5049 case IORING_OP_READV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005050 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07005051 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005052 if (sqe) {
5053 ret = io_read_prep(req, sqe, force_nonblock);
5054 if (ret < 0)
5055 break;
5056 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005057 ret = io_read(req, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005058 break;
5059 case IORING_OP_WRITEV:
Jens Axboeedafcce2019-01-09 09:16:05 -07005060 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07005061 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005062 if (sqe) {
5063 ret = io_write_prep(req, sqe, force_nonblock);
5064 if (ret < 0)
5065 break;
5066 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005067 ret = io_write(req, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005068 break;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07005069 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005070 if (sqe) {
5071 ret = io_prep_fsync(req, sqe);
5072 if (ret < 0)
5073 break;
5074 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005075 ret = io_fsync(req, force_nonblock);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07005076 break;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005077 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005078 if (sqe) {
5079 ret = io_poll_add_prep(req, sqe);
5080 if (ret)
5081 break;
5082 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005083 ret = io_poll_add(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005084 break;
5085 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005086 if (sqe) {
5087 ret = io_poll_remove_prep(req, sqe);
5088 if (ret < 0)
5089 break;
5090 }
Jens Axboefc4df992019-12-10 14:38:45 -07005091 ret = io_poll_remove(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005092 break;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06005093 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005094 if (sqe) {
5095 ret = io_prep_sfr(req, sqe);
5096 if (ret < 0)
5097 break;
5098 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005099 ret = io_sync_file_range(req, force_nonblock);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06005100 break;
Jens Axboe0fa03c62019-04-19 13:34:07 -06005101 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005102 case IORING_OP_SEND:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005103 if (sqe) {
5104 ret = io_sendmsg_prep(req, sqe);
5105 if (ret < 0)
5106 break;
5107 }
Jens Axboefddafac2020-01-04 20:19:44 -07005108 if (req->opcode == IORING_OP_SENDMSG)
Pavel Begunkov014db002020-03-03 21:33:12 +03005109 ret = io_sendmsg(req, force_nonblock);
Jens Axboefddafac2020-01-04 20:19:44 -07005110 else
Pavel Begunkov014db002020-03-03 21:33:12 +03005111 ret = io_send(req, force_nonblock);
Jens Axboe0fa03c62019-04-19 13:34:07 -06005112 break;
Jens Axboeaa1fa282019-04-19 13:38:09 -06005113 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005114 case IORING_OP_RECV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005115 if (sqe) {
5116 ret = io_recvmsg_prep(req, sqe);
5117 if (ret)
5118 break;
5119 }
Jens Axboefddafac2020-01-04 20:19:44 -07005120 if (req->opcode == IORING_OP_RECVMSG)
Pavel Begunkov014db002020-03-03 21:33:12 +03005121 ret = io_recvmsg(req, force_nonblock);
Jens Axboefddafac2020-01-04 20:19:44 -07005122 else
Pavel Begunkov014db002020-03-03 21:33:12 +03005123 ret = io_recv(req, force_nonblock);
Jens Axboeaa1fa282019-04-19 13:38:09 -06005124 break;
Jens Axboe5262f562019-09-17 12:26:57 -06005125 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005126 if (sqe) {
5127 ret = io_timeout_prep(req, sqe, false);
5128 if (ret)
5129 break;
5130 }
Jens Axboefc4df992019-12-10 14:38:45 -07005131 ret = io_timeout(req);
Jens Axboe5262f562019-09-17 12:26:57 -06005132 break;
Jens Axboe11365042019-10-16 09:08:32 -06005133 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005134 if (sqe) {
5135 ret = io_timeout_remove_prep(req, sqe);
5136 if (ret)
5137 break;
5138 }
Jens Axboefc4df992019-12-10 14:38:45 -07005139 ret = io_timeout_remove(req);
Jens Axboe11365042019-10-16 09:08:32 -06005140 break;
Jens Axboe17f2fe32019-10-17 14:42:58 -06005141 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005142 if (sqe) {
5143 ret = io_accept_prep(req, sqe);
5144 if (ret)
5145 break;
5146 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005147 ret = io_accept(req, force_nonblock);
Jens Axboe17f2fe32019-10-17 14:42:58 -06005148 break;
Jens Axboef8e85cf2019-11-23 14:24:24 -07005149 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005150 if (sqe) {
5151 ret = io_connect_prep(req, sqe);
5152 if (ret)
5153 break;
5154 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005155 ret = io_connect(req, force_nonblock);
Jens Axboef8e85cf2019-11-23 14:24:24 -07005156 break;
Jens Axboe62755e32019-10-28 21:49:21 -06005157 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005158 if (sqe) {
5159 ret = io_async_cancel_prep(req, sqe);
5160 if (ret)
5161 break;
5162 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005163 ret = io_async_cancel(req);
Jens Axboe62755e32019-10-28 21:49:21 -06005164 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07005165 case IORING_OP_FALLOCATE:
5166 if (sqe) {
5167 ret = io_fallocate_prep(req, sqe);
5168 if (ret)
5169 break;
5170 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005171 ret = io_fallocate(req, force_nonblock);
Jens Axboed63d1b52019-12-10 10:38:56 -07005172 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07005173 case IORING_OP_OPENAT:
5174 if (sqe) {
5175 ret = io_openat_prep(req, sqe);
5176 if (ret)
5177 break;
5178 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005179 ret = io_openat(req, force_nonblock);
Jens Axboe15b71ab2019-12-11 11:20:36 -07005180 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07005181 case IORING_OP_CLOSE:
5182 if (sqe) {
5183 ret = io_close_prep(req, sqe);
5184 if (ret)
5185 break;
5186 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005187 ret = io_close(req, force_nonblock);
Jens Axboeb5dba592019-12-11 14:02:38 -07005188 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005189 case IORING_OP_FILES_UPDATE:
5190 if (sqe) {
5191 ret = io_files_update_prep(req, sqe);
5192 if (ret)
5193 break;
5194 }
5195 ret = io_files_update(req, force_nonblock);
5196 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07005197 case IORING_OP_STATX:
5198 if (sqe) {
5199 ret = io_statx_prep(req, sqe);
5200 if (ret)
5201 break;
5202 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005203 ret = io_statx(req, force_nonblock);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07005204 break;
Jens Axboe4840e412019-12-25 22:03:45 -07005205 case IORING_OP_FADVISE:
5206 if (sqe) {
5207 ret = io_fadvise_prep(req, sqe);
5208 if (ret)
5209 break;
5210 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005211 ret = io_fadvise(req, force_nonblock);
Jens Axboe4840e412019-12-25 22:03:45 -07005212 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07005213 case IORING_OP_MADVISE:
5214 if (sqe) {
5215 ret = io_madvise_prep(req, sqe);
5216 if (ret)
5217 break;
5218 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005219 ret = io_madvise(req, force_nonblock);
Jens Axboec1ca7572019-12-25 22:18:28 -07005220 break;
Jens Axboecebdb982020-01-08 17:59:24 -07005221 case IORING_OP_OPENAT2:
5222 if (sqe) {
5223 ret = io_openat2_prep(req, sqe);
5224 if (ret)
5225 break;
5226 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005227 ret = io_openat2(req, force_nonblock);
Jens Axboecebdb982020-01-08 17:59:24 -07005228 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07005229 case IORING_OP_EPOLL_CTL:
5230 if (sqe) {
5231 ret = io_epoll_ctl_prep(req, sqe);
5232 if (ret)
5233 break;
5234 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005235 ret = io_epoll_ctl(req, force_nonblock);
Jens Axboe3e4827b2020-01-08 15:18:09 -07005236 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005237 case IORING_OP_SPLICE:
5238 if (sqe) {
5239 ret = io_splice_prep(req, sqe);
5240 if (ret < 0)
5241 break;
5242 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005243 ret = io_splice(req, force_nonblock);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005244 break;
Jens Axboeddf0322d2020-02-23 16:41:33 -07005245 case IORING_OP_PROVIDE_BUFFERS:
5246 if (sqe) {
5247 ret = io_provide_buffers_prep(req, sqe);
5248 if (ret)
5249 break;
5250 }
5251 ret = io_provide_buffers(req, force_nonblock);
5252 break;
Jens Axboe067524e2020-03-02 16:32:28 -07005253 case IORING_OP_REMOVE_BUFFERS:
5254 if (sqe) {
5255 ret = io_remove_buffers_prep(req, sqe);
5256 if (ret)
5257 break;
5258 }
5259 ret = io_remove_buffers(req, force_nonblock);
Jens Axboe31b51512019-01-18 22:56:34 -07005260 break;
5261 default:
5262 ret = -EINVAL;
Jens Axboeedafcce2019-01-09 09:16:05 -07005263 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005264 }
5265
Jens Axboe31b51512019-01-18 22:56:34 -07005266 if (ret)
5267 return ret;
5268
5269 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboe11ba8202020-01-15 21:51:17 -07005270 const bool in_async = io_wq_current_is_worker();
5271
Jens Axboe9e645e112019-05-10 16:07:28 -06005272 if (req->result == -EAGAIN)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005273 return -EAGAIN;
5274
Jens Axboe11ba8202020-01-15 21:51:17 -07005275 /* workqueue context doesn't hold uring_lock, grab it now */
5276 if (in_async)
5277 mutex_lock(&ctx->uring_lock);
5278
Jens Axboe2b188cc2019-01-07 10:46:33 -07005279 io_iopoll_req_issued(req);
Jens Axboe11ba8202020-01-15 21:51:17 -07005280
5281 if (in_async)
5282 mutex_unlock(&ctx->uring_lock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005283 }
5284
5285 return 0;
5286}
5287
Jens Axboe561fb042019-10-24 07:25:42 -06005288static void io_wq_submit_work(struct io_wq_work **workptr)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005289{
Jens Axboe561fb042019-10-24 07:25:42 -06005290 struct io_wq_work *work = *workptr;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005291 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboe561fb042019-10-24 07:25:42 -06005292 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005293
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07005294 /* if NO_CANCEL is set, we must still run the work */
5295 if ((work->flags & (IO_WQ_WORK_CANCEL|IO_WQ_WORK_NO_CANCEL)) ==
5296 IO_WQ_WORK_CANCEL) {
Jens Axboe561fb042019-10-24 07:25:42 -06005297 ret = -ECANCELED;
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07005298 }
Jens Axboe31b51512019-01-18 22:56:34 -07005299
Jens Axboe561fb042019-10-24 07:25:42 -06005300 if (!ret) {
Jens Axboe561fb042019-10-24 07:25:42 -06005301 do {
Pavel Begunkov014db002020-03-03 21:33:12 +03005302 ret = io_issue_sqe(req, NULL, false);
Jens Axboe561fb042019-10-24 07:25:42 -06005303 /*
5304 * We can get EAGAIN for polled IO even though we're
5305 * forcing a sync submission from here, since we can't
5306 * wait for request slots on the block side.
5307 */
5308 if (ret != -EAGAIN)
5309 break;
5310 cond_resched();
5311 } while (1);
5312 }
Jens Axboe31b51512019-01-18 22:56:34 -07005313
Jens Axboe561fb042019-10-24 07:25:42 -06005314 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005315 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07005316 io_cqring_add_event(req, ret);
Jens Axboe817869d2019-04-30 14:44:05 -06005317 io_put_req(req);
Jens Axboeedafcce2019-01-09 09:16:05 -07005318 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07005319
Pavel Begunkove9fd9392020-03-04 16:14:12 +03005320 io_steal_work(req, workptr);
Jens Axboe31b51512019-01-18 22:56:34 -07005321}
Jens Axboe2b188cc2019-01-07 10:46:33 -07005322
Jens Axboe15b71ab2019-12-11 11:20:36 -07005323static int io_req_needs_file(struct io_kiocb *req, int fd)
Jens Axboe9e3aa612019-12-11 15:55:43 -07005324{
Jens Axboed3656342019-12-18 09:50:26 -07005325 if (!io_op_defs[req->opcode].needs_file)
Jens Axboe9e3aa612019-12-11 15:55:43 -07005326 return 0;
Jens Axboe0b5faf62020-02-06 21:42:51 -07005327 if ((fd == -1 || fd == AT_FDCWD) && io_op_defs[req->opcode].fd_non_neg)
Jens Axboed3656342019-12-18 09:50:26 -07005328 return 0;
5329 return 1;
Jens Axboe09bb8392019-03-13 12:39:28 -06005330}
5331
Jens Axboe65e19f52019-10-26 07:20:21 -06005332static inline struct file *io_file_from_index(struct io_ring_ctx *ctx,
5333 int index)
Jens Axboe09bb8392019-03-13 12:39:28 -06005334{
Jens Axboe65e19f52019-10-26 07:20:21 -06005335 struct fixed_file_table *table;
5336
Jens Axboe05f3fb32019-12-09 11:22:50 -07005337 table = &ctx->file_data->table[index >> IORING_FILE_TABLE_SHIFT];
5338 return table->files[index & IORING_FILE_TABLE_MASK];;
Jens Axboe65e19f52019-10-26 07:20:21 -06005339}
5340
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005341static int io_file_get(struct io_submit_state *state, struct io_kiocb *req,
5342 int fd, struct file **out_file, bool fixed)
5343{
5344 struct io_ring_ctx *ctx = req->ctx;
5345 struct file *file;
5346
5347 if (fixed) {
5348 if (unlikely(!ctx->file_data ||
5349 (unsigned) fd >= ctx->nr_user_files))
5350 return -EBADF;
5351 fd = array_index_nospec(fd, ctx->nr_user_files);
5352 file = io_file_from_index(ctx, fd);
5353 if (!file)
5354 return -EBADF;
Xiaoguang Wang05589552020-03-31 14:05:18 +08005355 req->fixed_file_refs = ctx->file_data->cur_refs;
5356 percpu_ref_get(req->fixed_file_refs);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005357 } else {
5358 trace_io_uring_file_get(ctx, fd);
5359 file = __io_file_get(state, fd);
5360 if (unlikely(!file))
5361 return -EBADF;
5362 }
5363
5364 *out_file = file;
5365 return 0;
5366}
5367
Jens Axboe3529d8c2019-12-19 18:24:38 -07005368static int io_req_set_file(struct io_submit_state *state, struct io_kiocb *req,
5369 const struct io_uring_sqe *sqe)
Jens Axboe09bb8392019-03-13 12:39:28 -06005370{
5371 unsigned flags;
Jens Axboed3656342019-12-18 09:50:26 -07005372 int fd;
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005373 bool fixed;
Jens Axboe09bb8392019-03-13 12:39:28 -06005374
Jens Axboe3529d8c2019-12-19 18:24:38 -07005375 flags = READ_ONCE(sqe->flags);
5376 fd = READ_ONCE(sqe->fd);
Jens Axboe09bb8392019-03-13 12:39:28 -06005377
Jens Axboed3656342019-12-18 09:50:26 -07005378 if (!io_req_needs_file(req, fd))
5379 return 0;
Jens Axboe09bb8392019-03-13 12:39:28 -06005380
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005381 fixed = (flags & IOSQE_FIXED_FILE);
5382 if (unlikely(!fixed && req->needs_fixed_file))
5383 return -EBADF;
Jens Axboe09bb8392019-03-13 12:39:28 -06005384
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005385 return io_file_get(state, req, fd, &req->file, fixed);
Jens Axboe09bb8392019-03-13 12:39:28 -06005386}
5387
Jackie Liua197f662019-11-08 08:09:12 -07005388static int io_grab_files(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005389{
Jens Axboefcb323c2019-10-24 12:39:47 -06005390 int ret = -EBADF;
Jackie Liua197f662019-11-08 08:09:12 -07005391 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06005392
Jens Axboef86cd202020-01-29 13:46:44 -07005393 if (req->work.files)
5394 return 0;
Pavel Begunkovb14cca02020-01-17 04:45:59 +03005395 if (!ctx->ring_file)
Jens Axboeb5dba592019-12-11 14:02:38 -07005396 return -EBADF;
5397
Jens Axboefcb323c2019-10-24 12:39:47 -06005398 rcu_read_lock();
5399 spin_lock_irq(&ctx->inflight_lock);
5400 /*
5401 * We use the f_ops->flush() handler to ensure that we can flush
5402 * out work accessing these files if the fd is closed. Check if
5403 * the fd has changed since we started down this path, and disallow
5404 * this operation if it has.
5405 */
Pavel Begunkovb14cca02020-01-17 04:45:59 +03005406 if (fcheck(ctx->ring_fd) == ctx->ring_file) {
Jens Axboefcb323c2019-10-24 12:39:47 -06005407 list_add(&req->inflight_entry, &ctx->inflight_list);
5408 req->flags |= REQ_F_INFLIGHT;
5409 req->work.files = current->files;
5410 ret = 0;
5411 }
5412 spin_unlock_irq(&ctx->inflight_lock);
5413 rcu_read_unlock();
5414
5415 return ret;
5416}
5417
Jens Axboe2665abf2019-11-05 12:40:47 -07005418static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer)
5419{
Jens Axboead8a48a2019-11-15 08:49:11 -07005420 struct io_timeout_data *data = container_of(timer,
5421 struct io_timeout_data, timer);
5422 struct io_kiocb *req = data->req;
Jens Axboe2665abf2019-11-05 12:40:47 -07005423 struct io_ring_ctx *ctx = req->ctx;
5424 struct io_kiocb *prev = NULL;
5425 unsigned long flags;
Jens Axboe2665abf2019-11-05 12:40:47 -07005426
5427 spin_lock_irqsave(&ctx->completion_lock, flags);
5428
5429 /*
5430 * We don't expect the list to be empty, that will only happen if we
5431 * race with the completion of the linked work.
5432 */
Pavel Begunkov44932332019-12-05 16:16:35 +03005433 if (!list_empty(&req->link_list)) {
5434 prev = list_entry(req->link_list.prev, struct io_kiocb,
5435 link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07005436 if (refcount_inc_not_zero(&prev->refs)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03005437 list_del_init(&req->link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07005438 prev->flags &= ~REQ_F_LINK_TIMEOUT;
5439 } else
Jens Axboe76a46e02019-11-10 23:34:16 -07005440 prev = NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07005441 }
5442
5443 spin_unlock_irqrestore(&ctx->completion_lock, flags);
5444
5445 if (prev) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005446 req_set_fail_links(prev);
Pavel Begunkov014db002020-03-03 21:33:12 +03005447 io_async_find_and_cancel(ctx, req, prev->user_data, -ETIME);
Jens Axboe76a46e02019-11-10 23:34:16 -07005448 io_put_req(prev);
Jens Axboe47f46762019-11-09 17:43:02 -07005449 } else {
5450 io_cqring_add_event(req, -ETIME);
5451 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07005452 }
Jens Axboe2665abf2019-11-05 12:40:47 -07005453 return HRTIMER_NORESTART;
5454}
5455
Jens Axboead8a48a2019-11-15 08:49:11 -07005456static void io_queue_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07005457{
Jens Axboe76a46e02019-11-10 23:34:16 -07005458 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07005459
Jens Axboe76a46e02019-11-10 23:34:16 -07005460 /*
5461 * If the list is now empty, then our linked request finished before
5462 * we got a chance to setup the timer
5463 */
5464 spin_lock_irq(&ctx->completion_lock);
Pavel Begunkov44932332019-12-05 16:16:35 +03005465 if (!list_empty(&req->link_list)) {
Jens Axboe2d283902019-12-04 11:08:05 -07005466 struct io_timeout_data *data = &req->io->timeout;
Jens Axboe94ae5e72019-11-14 19:39:52 -07005467
Jens Axboead8a48a2019-11-15 08:49:11 -07005468 data->timer.function = io_link_timeout_fn;
5469 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts),
5470 data->mode);
Jens Axboe2665abf2019-11-05 12:40:47 -07005471 }
Jens Axboe76a46e02019-11-10 23:34:16 -07005472 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe2665abf2019-11-05 12:40:47 -07005473
Jens Axboe2665abf2019-11-05 12:40:47 -07005474 /* drop submission reference */
Jens Axboe76a46e02019-11-10 23:34:16 -07005475 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07005476}
5477
Jens Axboead8a48a2019-11-15 08:49:11 -07005478static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07005479{
5480 struct io_kiocb *nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005481
Jens Axboe2665abf2019-11-05 12:40:47 -07005482 if (!(req->flags & REQ_F_LINK))
5483 return NULL;
Jens Axboed7718a92020-02-14 22:23:12 -07005484 /* for polled retry, if flag is set, we already went through here */
5485 if (req->flags & REQ_F_POLLED)
5486 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07005487
Pavel Begunkov44932332019-12-05 16:16:35 +03005488 nxt = list_first_entry_or_null(&req->link_list, struct io_kiocb,
5489 link_list);
Jens Axboed625c6e2019-12-17 19:53:05 -07005490 if (!nxt || nxt->opcode != IORING_OP_LINK_TIMEOUT)
Jens Axboe76a46e02019-11-10 23:34:16 -07005491 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07005492
Jens Axboe76a46e02019-11-10 23:34:16 -07005493 req->flags |= REQ_F_LINK_TIMEOUT;
Jens Axboe76a46e02019-11-10 23:34:16 -07005494 return nxt;
Jens Axboe2665abf2019-11-05 12:40:47 -07005495}
5496
Jens Axboe3529d8c2019-12-19 18:24:38 -07005497static void __io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005498{
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005499 struct io_kiocb *linked_timeout;
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005500 struct io_kiocb *nxt;
Jens Axboe193155c2020-02-22 23:22:19 -07005501 const struct cred *old_creds = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005502 int ret;
5503
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005504again:
5505 linked_timeout = io_prep_linked_timeout(req);
5506
Jens Axboe193155c2020-02-22 23:22:19 -07005507 if (req->work.creds && req->work.creds != current_cred()) {
5508 if (old_creds)
5509 revert_creds(old_creds);
5510 if (old_creds == req->work.creds)
5511 old_creds = NULL; /* restored original creds */
5512 else
5513 old_creds = override_creds(req->work.creds);
5514 }
5515
Pavel Begunkov014db002020-03-03 21:33:12 +03005516 ret = io_issue_sqe(req, sqe, true);
Jens Axboe491381ce2019-10-17 09:20:46 -06005517
5518 /*
5519 * We async punt it if the file wasn't marked NOWAIT, or if the file
5520 * doesn't support non-blocking read/write attempts
5521 */
5522 if (ret == -EAGAIN && (!(req->flags & REQ_F_NOWAIT) ||
5523 (req->flags & REQ_F_MUST_PUNT))) {
Jens Axboed7718a92020-02-14 22:23:12 -07005524 if (io_arm_poll_handler(req)) {
5525 if (linked_timeout)
5526 io_queue_linked_timeout(linked_timeout);
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005527 goto exit;
Jens Axboed7718a92020-02-14 22:23:12 -07005528 }
Pavel Begunkov86a761f2020-01-22 23:09:36 +03005529punt:
Jens Axboef86cd202020-01-29 13:46:44 -07005530 if (io_op_defs[req->opcode].file_table) {
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03005531 ret = io_grab_files(req);
5532 if (ret)
5533 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005534 }
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03005535
5536 /*
5537 * Queued up for async execution, worker will release
5538 * submit reference when the iocb is actually submitted.
5539 */
5540 io_queue_async_work(req);
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005541 goto exit;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005542 }
Jens Axboee65ef562019-03-12 10:16:44 -06005543
Jens Axboefcb323c2019-10-24 12:39:47 -06005544err:
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005545 nxt = NULL;
Jens Axboee65ef562019-03-12 10:16:44 -06005546 /* drop submission reference */
Jens Axboe2a44f462020-02-25 13:25:41 -07005547 io_put_req_find_next(req, &nxt);
Jens Axboee65ef562019-03-12 10:16:44 -06005548
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03005549 if (linked_timeout) {
Jens Axboe76a46e02019-11-10 23:34:16 -07005550 if (!ret)
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03005551 io_queue_linked_timeout(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07005552 else
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03005553 io_put_req(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07005554 }
5555
Jens Axboee65ef562019-03-12 10:16:44 -06005556 /* and drop final reference, if we failed */
Jens Axboe9e645e112019-05-10 16:07:28 -06005557 if (ret) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07005558 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005559 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06005560 io_put_req(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06005561 }
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005562 if (nxt) {
5563 req = nxt;
Pavel Begunkov86a761f2020-01-22 23:09:36 +03005564
5565 if (req->flags & REQ_F_FORCE_ASYNC)
5566 goto punt;
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005567 goto again;
5568 }
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005569exit:
Jens Axboe193155c2020-02-22 23:22:19 -07005570 if (old_creds)
5571 revert_creds(old_creds);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005572}
5573
Jens Axboe3529d8c2019-12-19 18:24:38 -07005574static void io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jackie Liu4fe2c962019-09-09 20:50:40 +08005575{
5576 int ret;
5577
Jens Axboe3529d8c2019-12-19 18:24:38 -07005578 ret = io_req_defer(req, sqe);
Jackie Liu4fe2c962019-09-09 20:50:40 +08005579 if (ret) {
5580 if (ret != -EIOCBQUEUED) {
Pavel Begunkov11185912020-01-22 23:09:35 +03005581fail_req:
Jens Axboe78e19bb2019-11-06 15:21:34 -07005582 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005583 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07005584 io_double_put_req(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08005585 }
Pavel Begunkov25508782019-12-30 21:24:47 +03005586 } else if (req->flags & REQ_F_FORCE_ASYNC) {
Pavel Begunkov11185912020-01-22 23:09:35 +03005587 ret = io_req_defer_prep(req, sqe);
5588 if (unlikely(ret < 0))
5589 goto fail_req;
Jens Axboece35a472019-12-17 08:04:44 -07005590 /*
5591 * Never try inline submit of IOSQE_ASYNC is set, go straight
5592 * to async execution.
5593 */
5594 req->work.flags |= IO_WQ_WORK_CONCURRENT;
5595 io_queue_async_work(req);
5596 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07005597 __io_queue_sqe(req, sqe);
Jens Axboece35a472019-12-17 08:04:44 -07005598 }
Jackie Liu4fe2c962019-09-09 20:50:40 +08005599}
5600
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005601static inline void io_queue_link_head(struct io_kiocb *req)
Jackie Liu4fe2c962019-09-09 20:50:40 +08005602{
Jens Axboe94ae5e72019-11-14 19:39:52 -07005603 if (unlikely(req->flags & REQ_F_FAIL_LINK)) {
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005604 io_cqring_add_event(req, -ECANCELED);
5605 io_double_put_req(req);
5606 } else
Jens Axboe3529d8c2019-12-19 18:24:38 -07005607 io_queue_sqe(req, NULL);
Jackie Liu4fe2c962019-09-09 20:50:40 +08005608}
5609
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005610#define SQE_VALID_FLAGS (IOSQE_FIXED_FILE|IOSQE_IO_DRAIN|IOSQE_IO_LINK| \
Jens Axboebcda7ba2020-02-23 16:42:51 -07005611 IOSQE_IO_HARDLINK | IOSQE_ASYNC | \
5612 IOSQE_BUFFER_SELECT)
Jens Axboe9e645e112019-05-10 16:07:28 -06005613
Jens Axboe3529d8c2019-12-19 18:24:38 -07005614static bool io_submit_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
5615 struct io_submit_state *state, struct io_kiocb **link)
Jens Axboe9e645e112019-05-10 16:07:28 -06005616{
Jackie Liua197f662019-11-08 08:09:12 -07005617 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005618 unsigned int sqe_flags;
Jens Axboe75c6a032020-01-28 10:15:23 -07005619 int ret, id;
Jens Axboe9e645e112019-05-10 16:07:28 -06005620
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005621 sqe_flags = READ_ONCE(sqe->flags);
Jens Axboe9e645e112019-05-10 16:07:28 -06005622
5623 /* enforce forwards compatibility on users */
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005624 if (unlikely(sqe_flags & ~SQE_VALID_FLAGS)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06005625 ret = -EINVAL;
Pavel Begunkov196be952019-11-07 01:41:06 +03005626 goto err_req;
Jens Axboe9e645e112019-05-10 16:07:28 -06005627 }
5628
Jens Axboebcda7ba2020-02-23 16:42:51 -07005629 if ((sqe_flags & IOSQE_BUFFER_SELECT) &&
5630 !io_op_defs[req->opcode].buffer_select) {
5631 ret = -EOPNOTSUPP;
5632 goto err_req;
5633 }
5634
Jens Axboe75c6a032020-01-28 10:15:23 -07005635 id = READ_ONCE(sqe->personality);
5636 if (id) {
Jens Axboe193155c2020-02-22 23:22:19 -07005637 req->work.creds = idr_find(&ctx->personality_idr, id);
5638 if (unlikely(!req->work.creds)) {
Jens Axboe75c6a032020-01-28 10:15:23 -07005639 ret = -EINVAL;
5640 goto err_req;
5641 }
Jens Axboe193155c2020-02-22 23:22:19 -07005642 get_cred(req->work.creds);
Jens Axboe75c6a032020-01-28 10:15:23 -07005643 }
5644
Pavel Begunkov6b47ee62020-01-18 20:22:41 +03005645 /* same numerical values with corresponding REQ_F_*, safe to copy */
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005646 req->flags |= sqe_flags & (IOSQE_IO_DRAIN | IOSQE_IO_HARDLINK |
Jens Axboebcda7ba2020-02-23 16:42:51 -07005647 IOSQE_ASYNC | IOSQE_FIXED_FILE |
5648 IOSQE_BUFFER_SELECT);
Jens Axboe9e645e112019-05-10 16:07:28 -06005649
Jens Axboe3529d8c2019-12-19 18:24:38 -07005650 ret = io_req_set_file(state, req, sqe);
Jens Axboe9e645e112019-05-10 16:07:28 -06005651 if (unlikely(ret)) {
5652err_req:
Jens Axboe78e19bb2019-11-06 15:21:34 -07005653 io_cqring_add_event(req, ret);
5654 io_double_put_req(req);
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03005655 return false;
Jens Axboe9e645e112019-05-10 16:07:28 -06005656 }
5657
Jens Axboe9e645e112019-05-10 16:07:28 -06005658 /*
5659 * If we already have a head request, queue this one for async
5660 * submittal once the head completes. If we don't have a head but
5661 * IOSQE_IO_LINK is set in the sqe, start a new head. This one will be
5662 * submitted sync once the chain is complete. If none of those
5663 * conditions are true (normal request), then just queue it.
5664 */
5665 if (*link) {
Pavel Begunkov9d763772019-12-17 02:22:07 +03005666 struct io_kiocb *head = *link;
Jens Axboe9e645e112019-05-10 16:07:28 -06005667
Pavel Begunkov8cdf2192020-01-25 00:40:24 +03005668 /*
5669 * Taking sequential execution of a link, draining both sides
5670 * of the link also fullfils IOSQE_IO_DRAIN semantics for all
5671 * requests in the link. So, it drains the head and the
5672 * next after the link request. The last one is done via
5673 * drain_next flag to persist the effect across calls.
5674 */
Pavel Begunkov711be032020-01-17 03:57:59 +03005675 if (sqe_flags & IOSQE_IO_DRAIN) {
5676 head->flags |= REQ_F_IO_DRAIN;
5677 ctx->drain_next = 1;
5678 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07005679 if (io_alloc_async_ctx(req)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06005680 ret = -EAGAIN;
5681 goto err_req;
5682 }
5683
Jens Axboe3529d8c2019-12-19 18:24:38 -07005684 ret = io_req_defer_prep(req, sqe);
Jens Axboe2d283902019-12-04 11:08:05 -07005685 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005686 /* fail even hard links since we don't submit */
Pavel Begunkov9d763772019-12-17 02:22:07 +03005687 head->flags |= REQ_F_FAIL_LINK;
Jens Axboef67676d2019-12-02 11:03:47 -07005688 goto err_req;
Jens Axboe2d283902019-12-04 11:08:05 -07005689 }
Pavel Begunkov9d763772019-12-17 02:22:07 +03005690 trace_io_uring_link(ctx, req, head);
5691 list_add_tail(&req->link_list, &head->link_list);
Jens Axboe9e645e112019-05-10 16:07:28 -06005692
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005693 /* last request of a link, enqueue the link */
5694 if (!(sqe_flags & (IOSQE_IO_LINK|IOSQE_IO_HARDLINK))) {
5695 io_queue_link_head(head);
5696 *link = NULL;
5697 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005698 } else {
Pavel Begunkov711be032020-01-17 03:57:59 +03005699 if (unlikely(ctx->drain_next)) {
5700 req->flags |= REQ_F_IO_DRAIN;
5701 req->ctx->drain_next = 0;
5702 }
5703 if (sqe_flags & (IOSQE_IO_LINK|IOSQE_IO_HARDLINK)) {
5704 req->flags |= REQ_F_LINK;
Pavel Begunkov711be032020-01-17 03:57:59 +03005705 INIT_LIST_HEAD(&req->link_list);
Pavel Begunkovf1d96a82020-03-13 22:29:14 +03005706
5707 if (io_alloc_async_ctx(req)) {
5708 ret = -EAGAIN;
5709 goto err_req;
5710 }
Pavel Begunkov711be032020-01-17 03:57:59 +03005711 ret = io_req_defer_prep(req, sqe);
5712 if (ret)
5713 req->flags |= REQ_F_FAIL_LINK;
5714 *link = req;
5715 } else {
5716 io_queue_sqe(req, sqe);
5717 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005718 }
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03005719
5720 return true;
Jens Axboe9e645e112019-05-10 16:07:28 -06005721}
5722
Jens Axboe9a56a232019-01-09 09:06:50 -07005723/*
5724 * Batched submission is done, ensure local IO is flushed out.
5725 */
5726static void io_submit_state_end(struct io_submit_state *state)
5727{
5728 blk_finish_plug(&state->plug);
Jens Axboe3d6770f2019-04-13 11:50:54 -06005729 io_file_put(state);
Jens Axboe2579f912019-01-09 09:10:43 -07005730 if (state->free_reqs)
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03005731 kmem_cache_free_bulk(req_cachep, state->free_reqs, state->reqs);
Jens Axboe9a56a232019-01-09 09:06:50 -07005732}
5733
5734/*
5735 * Start submission side cache.
5736 */
5737static void io_submit_state_start(struct io_submit_state *state,
Jackie Liu22efde52019-12-02 17:14:52 +08005738 unsigned int max_ios)
Jens Axboe9a56a232019-01-09 09:06:50 -07005739{
5740 blk_start_plug(&state->plug);
Jens Axboe2579f912019-01-09 09:10:43 -07005741 state->free_reqs = 0;
Jens Axboe9a56a232019-01-09 09:06:50 -07005742 state->file = NULL;
5743 state->ios_left = max_ios;
5744}
5745
Jens Axboe2b188cc2019-01-07 10:46:33 -07005746static void io_commit_sqring(struct io_ring_ctx *ctx)
5747{
Hristo Venev75b28af2019-08-26 17:23:46 +00005748 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005749
Pavel Begunkovcaf582c2019-12-30 21:24:46 +03005750 /*
5751 * Ensure any loads from the SQEs are done at this point,
5752 * since once we write the new head, the application could
5753 * write new data to them.
5754 */
5755 smp_store_release(&rings->sq.head, ctx->cached_sq_head);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005756}
5757
5758/*
Jens Axboe3529d8c2019-12-19 18:24:38 -07005759 * Fetch an sqe, if one is available. Note that sqe_ptr will point to memory
Jens Axboe2b188cc2019-01-07 10:46:33 -07005760 * that is mapped by userspace. This means that care needs to be taken to
5761 * ensure that reads are stable, as we cannot rely on userspace always
5762 * being a good citizen. If members of the sqe are validated and then later
5763 * used, it's important that those reads are done through READ_ONCE() to
5764 * prevent a re-load down the line.
5765 */
Pavel Begunkov709b3022020-04-08 08:58:43 +03005766static const struct io_uring_sqe *io_get_sqe(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005767{
Hristo Venev75b28af2019-08-26 17:23:46 +00005768 u32 *sq_array = ctx->sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005769 unsigned head;
5770
5771 /*
5772 * The cached sq head (or cq tail) serves two purposes:
5773 *
5774 * 1) allows us to batch the cost of updating the user visible
5775 * head updates.
5776 * 2) allows the kernel side to track the head on its own, even
5777 * though the application is the one updating it.
5778 */
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005779 head = READ_ONCE(sq_array[ctx->cached_sq_head & ctx->sq_mask]);
Pavel Begunkov709b3022020-04-08 08:58:43 +03005780 if (likely(head < ctx->sq_entries))
5781 return &ctx->sq_sqes[head];
Jens Axboe2b188cc2019-01-07 10:46:33 -07005782
5783 /* drop invalid entries */
Jens Axboe498ccd92019-10-25 10:04:25 -06005784 ctx->cached_sq_dropped++;
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005785 WRITE_ONCE(ctx->rings->sq_dropped, ctx->cached_sq_dropped);
Pavel Begunkov709b3022020-04-08 08:58:43 +03005786 return NULL;
5787}
5788
5789static inline void io_consume_sqe(struct io_ring_ctx *ctx)
5790{
5791 ctx->cached_sq_head++;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005792}
5793
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03005794static void io_init_req(struct io_ring_ctx *ctx, struct io_kiocb *req,
5795 const struct io_uring_sqe *sqe)
5796{
5797 /*
5798 * All io need record the previous position, if LINK vs DARIN,
5799 * it can be used to mark the position of the first IO in the
5800 * link list.
5801 */
5802 req->sequence = ctx->cached_sq_head;
5803 req->opcode = READ_ONCE(sqe->opcode);
5804 req->user_data = READ_ONCE(sqe->user_data);
5805 req->io = NULL;
5806 req->file = NULL;
5807 req->ctx = ctx;
5808 req->flags = 0;
5809 /* one is dropped after submission, the other at completion */
5810 refcount_set(&req->refs, 2);
5811 req->task = NULL;
5812 req->result = 0;
5813 INIT_IO_WORK(&req->work, io_wq_submit_work);
5814}
5815
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005816static int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr,
Pavel Begunkovae9428c2019-11-06 00:22:14 +03005817 struct file *ring_file, int ring_fd,
5818 struct mm_struct **mm, bool async)
Jens Axboe6c271ce2019-01-10 11:22:30 -07005819{
5820 struct io_submit_state state, *statep = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06005821 struct io_kiocb *link = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06005822 int i, submitted = 0;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005823 bool mm_fault = false;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005824
Jens Axboec4a2ed72019-11-21 21:01:26 -07005825 /* if we have a backlog and couldn't flush it all, return BUSY */
Jens Axboead3eb2c2019-12-18 17:12:20 -07005826 if (test_bit(0, &ctx->sq_check_overflow)) {
5827 if (!list_empty(&ctx->cq_overflow_list) &&
5828 !io_cqring_overflow_flush(ctx, false))
5829 return -EBUSY;
5830 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07005831
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005832 /* make sure SQ entry isn't read before tail */
5833 nr = min3(nr, ctx->sq_entries, io_sqring_entries(ctx));
Pavel Begunkov9ef4f122019-12-30 21:24:44 +03005834
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03005835 if (!percpu_ref_tryget_many(&ctx->refs, nr))
5836 return -EAGAIN;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005837
5838 if (nr > IO_PLUG_THRESHOLD) {
Jackie Liu22efde52019-12-02 17:14:52 +08005839 io_submit_state_start(&state, nr);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005840 statep = &state;
5841 }
5842
Pavel Begunkovb14cca02020-01-17 04:45:59 +03005843 ctx->ring_fd = ring_fd;
5844 ctx->ring_file = ring_file;
5845
Jens Axboe6c271ce2019-01-10 11:22:30 -07005846 for (i = 0; i < nr; i++) {
Jens Axboe3529d8c2019-12-19 18:24:38 -07005847 const struct io_uring_sqe *sqe;
Pavel Begunkov196be952019-11-07 01:41:06 +03005848 struct io_kiocb *req;
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005849 int err;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005850
Pavel Begunkovb1e50e52020-04-08 08:58:44 +03005851 sqe = io_get_sqe(ctx);
5852 if (unlikely(!sqe)) {
5853 io_consume_sqe(ctx);
5854 break;
5855 }
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03005856 req = io_alloc_req(ctx, statep);
Pavel Begunkov196be952019-11-07 01:41:06 +03005857 if (unlikely(!req)) {
5858 if (!submitted)
5859 submitted = -EAGAIN;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005860 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06005861 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005862
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03005863 io_init_req(ctx, req, sqe);
Pavel Begunkov709b3022020-04-08 08:58:43 +03005864 io_consume_sqe(ctx);
Jens Axboed3656342019-12-18 09:50:26 -07005865 /* will complete beyond this point, count as submitted */
5866 submitted++;
5867
5868 if (unlikely(req->opcode >= IORING_OP_LAST)) {
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005869 err = -EINVAL;
5870fail_req:
5871 io_cqring_add_event(req, err);
Jens Axboed3656342019-12-18 09:50:26 -07005872 io_double_put_req(req);
5873 break;
5874 }
5875
5876 if (io_op_defs[req->opcode].needs_mm && !*mm) {
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005877 mm_fault = mm_fault || !mmget_not_zero(ctx->sqo_mm);
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005878 if (unlikely(mm_fault)) {
5879 err = -EFAULT;
5880 goto fail_req;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005881 }
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005882 use_mm(ctx->sqo_mm);
5883 *mm = ctx->sqo_mm;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005884 }
5885
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03005886 req->needs_fixed_file = async;
Jens Axboe354420f2020-01-08 18:55:15 -07005887 trace_io_uring_submit_sqe(ctx, req->opcode, req->user_data,
5888 true, async);
Jens Axboe3529d8c2019-12-19 18:24:38 -07005889 if (!io_submit_sqe(req, sqe, statep, &link))
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03005890 break;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005891 }
5892
Pavel Begunkov9466f432020-01-25 22:34:01 +03005893 if (unlikely(submitted != nr)) {
5894 int ref_used = (submitted == -EAGAIN) ? 0 : submitted;
5895
5896 percpu_ref_put_many(&ctx->refs, nr - ref_used);
5897 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005898 if (link)
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005899 io_queue_link_head(link);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005900 if (statep)
5901 io_submit_state_end(&state);
5902
Pavel Begunkovae9428c2019-11-06 00:22:14 +03005903 /* Commit SQ ring head once we've consumed and submitted all SQEs */
5904 io_commit_sqring(ctx);
5905
Jens Axboe6c271ce2019-01-10 11:22:30 -07005906 return submitted;
5907}
5908
5909static int io_sq_thread(void *data)
5910{
Jens Axboe6c271ce2019-01-10 11:22:30 -07005911 struct io_ring_ctx *ctx = data;
5912 struct mm_struct *cur_mm = NULL;
Jens Axboe181e4482019-11-25 08:52:30 -07005913 const struct cred *old_cred;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005914 mm_segment_t old_fs;
5915 DEFINE_WAIT(wait);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005916 unsigned long timeout;
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005917 int ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005918
Jens Axboe206aefd2019-11-07 18:27:42 -07005919 complete(&ctx->completions[1]);
Jackie Liua4c0b3d2019-07-08 13:41:12 +08005920
Jens Axboe6c271ce2019-01-10 11:22:30 -07005921 old_fs = get_fs();
5922 set_fs(USER_DS);
Jens Axboe181e4482019-11-25 08:52:30 -07005923 old_cred = override_creds(ctx->creds);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005924
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005925 timeout = jiffies + ctx->sq_thread_idle;
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02005926 while (!kthread_should_park()) {
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005927 unsigned int to_submit;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005928
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005929 if (!list_empty(&ctx->poll_list)) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07005930 unsigned nr_events = 0;
5931
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005932 mutex_lock(&ctx->uring_lock);
5933 if (!list_empty(&ctx->poll_list))
5934 io_iopoll_getevents(ctx, &nr_events, 0);
5935 else
Jens Axboe6c271ce2019-01-10 11:22:30 -07005936 timeout = jiffies + ctx->sq_thread_idle;
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005937 mutex_unlock(&ctx->uring_lock);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005938 }
5939
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005940 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07005941
5942 /*
5943 * If submit got -EBUSY, flag us as needing the application
5944 * to enter the kernel to reap and flush events.
5945 */
5946 if (!to_submit || ret == -EBUSY) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07005947 /*
Stefano Garzarella7143b5a2020-02-21 16:42:16 +01005948 * Drop cur_mm before scheduling, we can't hold it for
5949 * long periods (or over schedule()). Do this before
5950 * adding ourselves to the waitqueue, as the unuse/drop
5951 * may sleep.
5952 */
5953 if (cur_mm) {
5954 unuse_mm(cur_mm);
5955 mmput(cur_mm);
5956 cur_mm = NULL;
5957 }
5958
5959 /*
Jens Axboe6c271ce2019-01-10 11:22:30 -07005960 * We're polling. If we're within the defined idle
5961 * period, then let us spin without work before going
Jens Axboec1edbf52019-11-10 16:56:04 -07005962 * to sleep. The exception is if we got EBUSY doing
5963 * more IO, we should wait for the application to
5964 * reap events and wake us up.
Jens Axboe6c271ce2019-01-10 11:22:30 -07005965 */
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005966 if (!list_empty(&ctx->poll_list) ||
Jens Axboedf069d82020-02-04 16:48:34 -07005967 (!time_after(jiffies, timeout) && ret != -EBUSY &&
5968 !percpu_ref_is_dying(&ctx->refs))) {
Jens Axboeb41e9852020-02-17 09:52:41 -07005969 if (current->task_works)
5970 task_work_run();
Jens Axboe9831a902019-09-19 09:48:55 -06005971 cond_resched();
Jens Axboe6c271ce2019-01-10 11:22:30 -07005972 continue;
5973 }
5974
Jens Axboe6c271ce2019-01-10 11:22:30 -07005975 prepare_to_wait(&ctx->sqo_wait, &wait,
5976 TASK_INTERRUPTIBLE);
5977
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005978 /*
5979 * While doing polled IO, before going to sleep, we need
5980 * to check if there are new reqs added to poll_list, it
5981 * is because reqs may have been punted to io worker and
5982 * will be added to poll_list later, hence check the
5983 * poll_list again.
5984 */
5985 if ((ctx->flags & IORING_SETUP_IOPOLL) &&
5986 !list_empty_careful(&ctx->poll_list)) {
5987 finish_wait(&ctx->sqo_wait, &wait);
5988 continue;
5989 }
5990
Jens Axboe6c271ce2019-01-10 11:22:30 -07005991 /* Tell userspace we may need a wakeup call */
Hristo Venev75b28af2019-08-26 17:23:46 +00005992 ctx->rings->sq_flags |= IORING_SQ_NEED_WAKEUP;
Stefan Bühler0d7bae62019-04-19 11:57:45 +02005993 /* make sure to read SQ tail after writing flags */
5994 smp_mb();
Jens Axboe6c271ce2019-01-10 11:22:30 -07005995
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005996 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07005997 if (!to_submit || ret == -EBUSY) {
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02005998 if (kthread_should_park()) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07005999 finish_wait(&ctx->sqo_wait, &wait);
6000 break;
6001 }
Jens Axboeb41e9852020-02-17 09:52:41 -07006002 if (current->task_works) {
6003 task_work_run();
Hillf Danton10bea962020-04-01 17:19:33 +08006004 finish_wait(&ctx->sqo_wait, &wait);
Jens Axboeb41e9852020-02-17 09:52:41 -07006005 continue;
6006 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07006007 if (signal_pending(current))
6008 flush_signals(current);
6009 schedule();
6010 finish_wait(&ctx->sqo_wait, &wait);
6011
Hristo Venev75b28af2019-08-26 17:23:46 +00006012 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006013 continue;
6014 }
6015 finish_wait(&ctx->sqo_wait, &wait);
6016
Hristo Venev75b28af2019-08-26 17:23:46 +00006017 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006018 }
6019
Jens Axboe8a4955f2019-12-09 14:52:35 -07006020 mutex_lock(&ctx->uring_lock);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006021 ret = io_submit_sqes(ctx, to_submit, NULL, -1, &cur_mm, true);
Jens Axboe8a4955f2019-12-09 14:52:35 -07006022 mutex_unlock(&ctx->uring_lock);
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006023 timeout = jiffies + ctx->sq_thread_idle;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006024 }
6025
Jens Axboeb41e9852020-02-17 09:52:41 -07006026 if (current->task_works)
6027 task_work_run();
6028
Jens Axboe6c271ce2019-01-10 11:22:30 -07006029 set_fs(old_fs);
6030 if (cur_mm) {
6031 unuse_mm(cur_mm);
6032 mmput(cur_mm);
6033 }
Jens Axboe181e4482019-11-25 08:52:30 -07006034 revert_creds(old_cred);
Jens Axboe06058632019-04-13 09:26:03 -06006035
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02006036 kthread_parkme();
Jens Axboe06058632019-04-13 09:26:03 -06006037
Jens Axboe6c271ce2019-01-10 11:22:30 -07006038 return 0;
6039}
6040
Jens Axboebda52162019-09-24 13:47:15 -06006041struct io_wait_queue {
6042 struct wait_queue_entry wq;
6043 struct io_ring_ctx *ctx;
6044 unsigned to_wait;
6045 unsigned nr_timeouts;
6046};
6047
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006048static inline bool io_should_wake(struct io_wait_queue *iowq, bool noflush)
Jens Axboebda52162019-09-24 13:47:15 -06006049{
6050 struct io_ring_ctx *ctx = iowq->ctx;
6051
6052 /*
Brian Gianforcarod195a662019-12-13 03:09:50 -08006053 * Wake up if we have enough events, or if a timeout occurred since we
Jens Axboebda52162019-09-24 13:47:15 -06006054 * started waiting. For timeouts, we always want to return to userspace,
6055 * regardless of event count.
6056 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006057 return io_cqring_events(ctx, noflush) >= iowq->to_wait ||
Jens Axboebda52162019-09-24 13:47:15 -06006058 atomic_read(&ctx->cq_timeouts) != iowq->nr_timeouts;
6059}
6060
6061static int io_wake_function(struct wait_queue_entry *curr, unsigned int mode,
6062 int wake_flags, void *key)
6063{
6064 struct io_wait_queue *iowq = container_of(curr, struct io_wait_queue,
6065 wq);
6066
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006067 /* use noflush == true, as we can't safely rely on locking context */
6068 if (!io_should_wake(iowq, true))
Jens Axboebda52162019-09-24 13:47:15 -06006069 return -1;
6070
6071 return autoremove_wake_function(curr, mode, wake_flags, key);
6072}
6073
Jens Axboe2b188cc2019-01-07 10:46:33 -07006074/*
6075 * Wait until events become available, if we don't already have some. The
6076 * application must reap them itself, as they reside on the shared cq ring.
6077 */
6078static int io_cqring_wait(struct io_ring_ctx *ctx, int min_events,
6079 const sigset_t __user *sig, size_t sigsz)
6080{
Jens Axboebda52162019-09-24 13:47:15 -06006081 struct io_wait_queue iowq = {
6082 .wq = {
6083 .private = current,
6084 .func = io_wake_function,
6085 .entry = LIST_HEAD_INIT(iowq.wq.entry),
6086 },
6087 .ctx = ctx,
6088 .to_wait = min_events,
6089 };
Hristo Venev75b28af2019-08-26 17:23:46 +00006090 struct io_rings *rings = ctx->rings;
Jackie Liue9ffa5c2019-10-29 11:16:42 +08006091 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006092
Jens Axboeb41e9852020-02-17 09:52:41 -07006093 do {
6094 if (io_cqring_events(ctx, false) >= min_events)
6095 return 0;
6096 if (!current->task_works)
6097 break;
6098 task_work_run();
6099 } while (1);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006100
6101 if (sig) {
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006102#ifdef CONFIG_COMPAT
6103 if (in_compat_syscall())
6104 ret = set_compat_user_sigmask((const compat_sigset_t __user *)sig,
Oleg Nesterovb7724342019-07-16 16:29:53 -07006105 sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006106 else
6107#endif
Oleg Nesterovb7724342019-07-16 16:29:53 -07006108 ret = set_user_sigmask(sig, sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006109
Jens Axboe2b188cc2019-01-07 10:46:33 -07006110 if (ret)
6111 return ret;
6112 }
6113
Jens Axboebda52162019-09-24 13:47:15 -06006114 iowq.nr_timeouts = atomic_read(&ctx->cq_timeouts);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02006115 trace_io_uring_cqring_wait(ctx, min_events);
Jens Axboebda52162019-09-24 13:47:15 -06006116 do {
6117 prepare_to_wait_exclusive(&ctx->wait, &iowq.wq,
6118 TASK_INTERRUPTIBLE);
Jens Axboeb41e9852020-02-17 09:52:41 -07006119 if (current->task_works)
6120 task_work_run();
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006121 if (io_should_wake(&iowq, false))
Jens Axboebda52162019-09-24 13:47:15 -06006122 break;
6123 schedule();
6124 if (signal_pending(current)) {
Jackie Liue9ffa5c2019-10-29 11:16:42 +08006125 ret = -EINTR;
Jens Axboebda52162019-09-24 13:47:15 -06006126 break;
6127 }
6128 } while (1);
6129 finish_wait(&ctx->wait, &iowq.wq);
6130
Jackie Liue9ffa5c2019-10-29 11:16:42 +08006131 restore_saved_sigmask_unless(ret == -EINTR);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006132
Hristo Venev75b28af2019-08-26 17:23:46 +00006133 return READ_ONCE(rings->cq.head) == READ_ONCE(rings->cq.tail) ? ret : 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006134}
6135
Jens Axboe6b063142019-01-10 22:13:58 -07006136static void __io_sqe_files_unregister(struct io_ring_ctx *ctx)
6137{
6138#if defined(CONFIG_UNIX)
6139 if (ctx->ring_sock) {
6140 struct sock *sock = ctx->ring_sock->sk;
6141 struct sk_buff *skb;
6142
6143 while ((skb = skb_dequeue(&sock->sk_receive_queue)) != NULL)
6144 kfree_skb(skb);
6145 }
6146#else
6147 int i;
6148
Jens Axboe65e19f52019-10-26 07:20:21 -06006149 for (i = 0; i < ctx->nr_user_files; i++) {
6150 struct file *file;
6151
6152 file = io_file_from_index(ctx, i);
6153 if (file)
6154 fput(file);
6155 }
Jens Axboe6b063142019-01-10 22:13:58 -07006156#endif
6157}
6158
Jens Axboe05f3fb32019-12-09 11:22:50 -07006159static void io_file_ref_kill(struct percpu_ref *ref)
6160{
6161 struct fixed_file_data *data;
6162
6163 data = container_of(ref, struct fixed_file_data, refs);
6164 complete(&data->done);
6165}
6166
Jens Axboe6b063142019-01-10 22:13:58 -07006167static int io_sqe_files_unregister(struct io_ring_ctx *ctx)
6168{
Jens Axboe05f3fb32019-12-09 11:22:50 -07006169 struct fixed_file_data *data = ctx->file_data;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006170 struct fixed_file_ref_node *ref_node = NULL;
Jens Axboe65e19f52019-10-26 07:20:21 -06006171 unsigned nr_tables, i;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006172 unsigned long flags;
Jens Axboe65e19f52019-10-26 07:20:21 -06006173
Jens Axboe05f3fb32019-12-09 11:22:50 -07006174 if (!data)
Jens Axboe6b063142019-01-10 22:13:58 -07006175 return -ENXIO;
6176
Xiaoguang Wang05589552020-03-31 14:05:18 +08006177 spin_lock_irqsave(&data->lock, flags);
6178 if (!list_empty(&data->ref_list))
6179 ref_node = list_first_entry(&data->ref_list,
6180 struct fixed_file_ref_node, node);
6181 spin_unlock_irqrestore(&data->lock, flags);
6182 if (ref_node)
6183 percpu_ref_kill(&ref_node->refs);
6184
6185 percpu_ref_kill(&data->refs);
6186
6187 /* wait for all refs nodes to complete */
Jens Axboe2faf8522020-02-04 19:54:55 -07006188 wait_for_completion(&data->done);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006189
Jens Axboe6b063142019-01-10 22:13:58 -07006190 __io_sqe_files_unregister(ctx);
Jens Axboe65e19f52019-10-26 07:20:21 -06006191 nr_tables = DIV_ROUND_UP(ctx->nr_user_files, IORING_MAX_FILES_TABLE);
6192 for (i = 0; i < nr_tables; i++)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006193 kfree(data->table[i].files);
6194 kfree(data->table);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006195 percpu_ref_exit(&data->refs);
6196 kfree(data);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006197 ctx->file_data = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07006198 ctx->nr_user_files = 0;
6199 return 0;
6200}
6201
Jens Axboe6c271ce2019-01-10 11:22:30 -07006202static void io_sq_thread_stop(struct io_ring_ctx *ctx)
6203{
6204 if (ctx->sqo_thread) {
Jens Axboe206aefd2019-11-07 18:27:42 -07006205 wait_for_completion(&ctx->completions[1]);
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02006206 /*
6207 * The park is a bit of a work-around, without it we get
6208 * warning spews on shutdown with SQPOLL set and affinity
6209 * set to a single CPU.
6210 */
Jens Axboe06058632019-04-13 09:26:03 -06006211 kthread_park(ctx->sqo_thread);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006212 kthread_stop(ctx->sqo_thread);
6213 ctx->sqo_thread = NULL;
6214 }
6215}
6216
Jens Axboe6b063142019-01-10 22:13:58 -07006217static void io_finish_async(struct io_ring_ctx *ctx)
6218{
Jens Axboe6c271ce2019-01-10 11:22:30 -07006219 io_sq_thread_stop(ctx);
6220
Jens Axboe561fb042019-10-24 07:25:42 -06006221 if (ctx->io_wq) {
6222 io_wq_destroy(ctx->io_wq);
6223 ctx->io_wq = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07006224 }
6225}
6226
6227#if defined(CONFIG_UNIX)
Jens Axboe6b063142019-01-10 22:13:58 -07006228/*
6229 * Ensure the UNIX gc is aware of our file set, so we are certain that
6230 * the io_uring can be safely unregistered on process exit, even if we have
6231 * loops in the file referencing.
6232 */
6233static int __io_sqe_files_scm(struct io_ring_ctx *ctx, int nr, int offset)
6234{
6235 struct sock *sk = ctx->ring_sock->sk;
6236 struct scm_fp_list *fpl;
6237 struct sk_buff *skb;
Jens Axboe08a45172019-10-03 08:11:03 -06006238 int i, nr_files;
Jens Axboe6b063142019-01-10 22:13:58 -07006239
Jens Axboe6b063142019-01-10 22:13:58 -07006240 fpl = kzalloc(sizeof(*fpl), GFP_KERNEL);
6241 if (!fpl)
6242 return -ENOMEM;
6243
6244 skb = alloc_skb(0, GFP_KERNEL);
6245 if (!skb) {
6246 kfree(fpl);
6247 return -ENOMEM;
6248 }
6249
6250 skb->sk = sk;
Jens Axboe6b063142019-01-10 22:13:58 -07006251
Jens Axboe08a45172019-10-03 08:11:03 -06006252 nr_files = 0;
Jens Axboe6b063142019-01-10 22:13:58 -07006253 fpl->user = get_uid(ctx->user);
6254 for (i = 0; i < nr; i++) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006255 struct file *file = io_file_from_index(ctx, i + offset);
6256
6257 if (!file)
Jens Axboe08a45172019-10-03 08:11:03 -06006258 continue;
Jens Axboe65e19f52019-10-26 07:20:21 -06006259 fpl->fp[nr_files] = get_file(file);
Jens Axboe08a45172019-10-03 08:11:03 -06006260 unix_inflight(fpl->user, fpl->fp[nr_files]);
6261 nr_files++;
Jens Axboe6b063142019-01-10 22:13:58 -07006262 }
6263
Jens Axboe08a45172019-10-03 08:11:03 -06006264 if (nr_files) {
6265 fpl->max = SCM_MAX_FD;
6266 fpl->count = nr_files;
6267 UNIXCB(skb).fp = fpl;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006268 skb->destructor = unix_destruct_scm;
Jens Axboe08a45172019-10-03 08:11:03 -06006269 refcount_add(skb->truesize, &sk->sk_wmem_alloc);
6270 skb_queue_head(&sk->sk_receive_queue, skb);
Jens Axboe6b063142019-01-10 22:13:58 -07006271
Jens Axboe08a45172019-10-03 08:11:03 -06006272 for (i = 0; i < nr_files; i++)
6273 fput(fpl->fp[i]);
6274 } else {
6275 kfree_skb(skb);
6276 kfree(fpl);
6277 }
Jens Axboe6b063142019-01-10 22:13:58 -07006278
6279 return 0;
6280}
6281
6282/*
6283 * If UNIX sockets are enabled, fd passing can cause a reference cycle which
6284 * causes regular reference counting to break down. We rely on the UNIX
6285 * garbage collection to take care of this problem for us.
6286 */
6287static int io_sqe_files_scm(struct io_ring_ctx *ctx)
6288{
6289 unsigned left, total;
6290 int ret = 0;
6291
6292 total = 0;
6293 left = ctx->nr_user_files;
6294 while (left) {
6295 unsigned this_files = min_t(unsigned, left, SCM_MAX_FD);
Jens Axboe6b063142019-01-10 22:13:58 -07006296
6297 ret = __io_sqe_files_scm(ctx, this_files, total);
6298 if (ret)
6299 break;
6300 left -= this_files;
6301 total += this_files;
6302 }
6303
6304 if (!ret)
6305 return 0;
6306
6307 while (total < ctx->nr_user_files) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006308 struct file *file = io_file_from_index(ctx, total);
6309
6310 if (file)
6311 fput(file);
Jens Axboe6b063142019-01-10 22:13:58 -07006312 total++;
6313 }
6314
6315 return ret;
6316}
6317#else
6318static int io_sqe_files_scm(struct io_ring_ctx *ctx)
6319{
6320 return 0;
6321}
6322#endif
6323
Jens Axboe65e19f52019-10-26 07:20:21 -06006324static int io_sqe_alloc_file_tables(struct io_ring_ctx *ctx, unsigned nr_tables,
6325 unsigned nr_files)
6326{
6327 int i;
6328
6329 for (i = 0; i < nr_tables; i++) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006330 struct fixed_file_table *table = &ctx->file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06006331 unsigned this_files;
6332
6333 this_files = min(nr_files, IORING_MAX_FILES_TABLE);
6334 table->files = kcalloc(this_files, sizeof(struct file *),
6335 GFP_KERNEL);
6336 if (!table->files)
6337 break;
6338 nr_files -= this_files;
6339 }
6340
6341 if (i == nr_tables)
6342 return 0;
6343
6344 for (i = 0; i < nr_tables; i++) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006345 struct fixed_file_table *table = &ctx->file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06006346 kfree(table->files);
6347 }
6348 return 1;
6349}
6350
Jens Axboe05f3fb32019-12-09 11:22:50 -07006351static void io_ring_file_put(struct io_ring_ctx *ctx, struct file *file)
Jens Axboec3a31e62019-10-03 13:59:56 -06006352{
6353#if defined(CONFIG_UNIX)
Jens Axboec3a31e62019-10-03 13:59:56 -06006354 struct sock *sock = ctx->ring_sock->sk;
6355 struct sk_buff_head list, *head = &sock->sk_receive_queue;
6356 struct sk_buff *skb;
6357 int i;
6358
6359 __skb_queue_head_init(&list);
6360
6361 /*
6362 * Find the skb that holds this file in its SCM_RIGHTS. When found,
6363 * remove this entry and rearrange the file array.
6364 */
6365 skb = skb_dequeue(head);
6366 while (skb) {
6367 struct scm_fp_list *fp;
6368
6369 fp = UNIXCB(skb).fp;
6370 for (i = 0; i < fp->count; i++) {
6371 int left;
6372
6373 if (fp->fp[i] != file)
6374 continue;
6375
6376 unix_notinflight(fp->user, fp->fp[i]);
6377 left = fp->count - 1 - i;
6378 if (left) {
6379 memmove(&fp->fp[i], &fp->fp[i + 1],
6380 left * sizeof(struct file *));
6381 }
6382 fp->count--;
6383 if (!fp->count) {
6384 kfree_skb(skb);
6385 skb = NULL;
6386 } else {
6387 __skb_queue_tail(&list, skb);
6388 }
6389 fput(file);
6390 file = NULL;
6391 break;
6392 }
6393
6394 if (!file)
6395 break;
6396
6397 __skb_queue_tail(&list, skb);
6398
6399 skb = skb_dequeue(head);
6400 }
6401
6402 if (skb_peek(&list)) {
6403 spin_lock_irq(&head->lock);
6404 while ((skb = __skb_dequeue(&list)) != NULL)
6405 __skb_queue_tail(head, skb);
6406 spin_unlock_irq(&head->lock);
6407 }
6408#else
Jens Axboe05f3fb32019-12-09 11:22:50 -07006409 fput(file);
Jens Axboec3a31e62019-10-03 13:59:56 -06006410#endif
6411}
6412
Jens Axboe05f3fb32019-12-09 11:22:50 -07006413struct io_file_put {
Xiaoguang Wang05589552020-03-31 14:05:18 +08006414 struct list_head list;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006415 struct file *file;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006416};
6417
Xiaoguang Wang05589552020-03-31 14:05:18 +08006418static void io_file_put_work(struct work_struct *work)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006419{
Xiaoguang Wang05589552020-03-31 14:05:18 +08006420 struct fixed_file_ref_node *ref_node;
6421 struct fixed_file_data *file_data;
6422 struct io_ring_ctx *ctx;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006423 struct io_file_put *pfile, *tmp;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006424 unsigned long flags;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006425
Xiaoguang Wang05589552020-03-31 14:05:18 +08006426 ref_node = container_of(work, struct fixed_file_ref_node, work);
6427 file_data = ref_node->file_data;
6428 ctx = file_data->ctx;
6429
6430 list_for_each_entry_safe(pfile, tmp, &ref_node->file_list, list) {
6431 list_del_init(&pfile->list);
6432 io_ring_file_put(ctx, pfile->file);
6433 kfree(pfile);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006434 }
6435
Xiaoguang Wang05589552020-03-31 14:05:18 +08006436 spin_lock_irqsave(&file_data->lock, flags);
6437 list_del_init(&ref_node->node);
6438 spin_unlock_irqrestore(&file_data->lock, flags);
Jens Axboe2faf8522020-02-04 19:54:55 -07006439
Xiaoguang Wang05589552020-03-31 14:05:18 +08006440 percpu_ref_exit(&ref_node->refs);
6441 kfree(ref_node);
6442 percpu_ref_put(&file_data->refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006443}
6444
6445static void io_file_data_ref_zero(struct percpu_ref *ref)
6446{
Xiaoguang Wang05589552020-03-31 14:05:18 +08006447 struct fixed_file_ref_node *ref_node;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006448
Xiaoguang Wang05589552020-03-31 14:05:18 +08006449 ref_node = container_of(ref, struct fixed_file_ref_node, refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006450
Xiaoguang Wang05589552020-03-31 14:05:18 +08006451 queue_work(system_wq, &ref_node->work);
6452}
6453
6454static struct fixed_file_ref_node *alloc_fixed_file_ref_node(
6455 struct io_ring_ctx *ctx)
6456{
6457 struct fixed_file_ref_node *ref_node;
6458
6459 ref_node = kzalloc(sizeof(*ref_node), GFP_KERNEL);
6460 if (!ref_node)
6461 return ERR_PTR(-ENOMEM);
6462
6463 if (percpu_ref_init(&ref_node->refs, io_file_data_ref_zero,
6464 0, GFP_KERNEL)) {
6465 kfree(ref_node);
6466 return ERR_PTR(-ENOMEM);
6467 }
6468 INIT_LIST_HEAD(&ref_node->node);
6469 INIT_LIST_HEAD(&ref_node->file_list);
6470 INIT_WORK(&ref_node->work, io_file_put_work);
6471 ref_node->file_data = ctx->file_data;
6472 return ref_node;
6473
6474}
6475
6476static void destroy_fixed_file_ref_node(struct fixed_file_ref_node *ref_node)
6477{
6478 percpu_ref_exit(&ref_node->refs);
6479 kfree(ref_node);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006480}
6481
6482static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
6483 unsigned nr_args)
6484{
6485 __s32 __user *fds = (__s32 __user *) arg;
6486 unsigned nr_tables;
6487 struct file *file;
6488 int fd, ret = 0;
6489 unsigned i;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006490 struct fixed_file_ref_node *ref_node;
6491 unsigned long flags;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006492
6493 if (ctx->file_data)
6494 return -EBUSY;
6495 if (!nr_args)
6496 return -EINVAL;
6497 if (nr_args > IORING_MAX_FIXED_FILES)
6498 return -EMFILE;
6499
6500 ctx->file_data = kzalloc(sizeof(*ctx->file_data), GFP_KERNEL);
6501 if (!ctx->file_data)
6502 return -ENOMEM;
6503 ctx->file_data->ctx = ctx;
6504 init_completion(&ctx->file_data->done);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006505 INIT_LIST_HEAD(&ctx->file_data->ref_list);
Xiaoguang Wangf7fe9342020-04-07 20:02:31 +08006506 spin_lock_init(&ctx->file_data->lock);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006507
6508 nr_tables = DIV_ROUND_UP(nr_args, IORING_MAX_FILES_TABLE);
6509 ctx->file_data->table = kcalloc(nr_tables,
6510 sizeof(struct fixed_file_table),
6511 GFP_KERNEL);
6512 if (!ctx->file_data->table) {
6513 kfree(ctx->file_data);
6514 ctx->file_data = NULL;
6515 return -ENOMEM;
6516 }
6517
Xiaoguang Wang05589552020-03-31 14:05:18 +08006518 if (percpu_ref_init(&ctx->file_data->refs, io_file_ref_kill,
Jens Axboe05f3fb32019-12-09 11:22:50 -07006519 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL)) {
6520 kfree(ctx->file_data->table);
6521 kfree(ctx->file_data);
6522 ctx->file_data = NULL;
6523 return -ENOMEM;
6524 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07006525
6526 if (io_sqe_alloc_file_tables(ctx, nr_tables, nr_args)) {
6527 percpu_ref_exit(&ctx->file_data->refs);
6528 kfree(ctx->file_data->table);
6529 kfree(ctx->file_data);
6530 ctx->file_data = NULL;
6531 return -ENOMEM;
6532 }
6533
6534 for (i = 0; i < nr_args; i++, ctx->nr_user_files++) {
6535 struct fixed_file_table *table;
6536 unsigned index;
6537
6538 ret = -EFAULT;
6539 if (copy_from_user(&fd, &fds[i], sizeof(fd)))
6540 break;
6541 /* allow sparse sets */
6542 if (fd == -1) {
6543 ret = 0;
6544 continue;
6545 }
6546
6547 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
6548 index = i & IORING_FILE_TABLE_MASK;
6549 file = fget(fd);
6550
6551 ret = -EBADF;
6552 if (!file)
6553 break;
6554
6555 /*
6556 * Don't allow io_uring instances to be registered. If UNIX
6557 * isn't enabled, then this causes a reference cycle and this
6558 * instance can never get freed. If UNIX is enabled we'll
6559 * handle it just fine, but there's still no point in allowing
6560 * a ring fd as it doesn't support regular read/write anyway.
6561 */
6562 if (file->f_op == &io_uring_fops) {
6563 fput(file);
6564 break;
6565 }
6566 ret = 0;
6567 table->files[index] = file;
6568 }
6569
6570 if (ret) {
6571 for (i = 0; i < ctx->nr_user_files; i++) {
6572 file = io_file_from_index(ctx, i);
6573 if (file)
6574 fput(file);
6575 }
6576 for (i = 0; i < nr_tables; i++)
6577 kfree(ctx->file_data->table[i].files);
6578
6579 kfree(ctx->file_data->table);
6580 kfree(ctx->file_data);
6581 ctx->file_data = NULL;
6582 ctx->nr_user_files = 0;
6583 return ret;
6584 }
6585
6586 ret = io_sqe_files_scm(ctx);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006587 if (ret) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006588 io_sqe_files_unregister(ctx);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006589 return ret;
6590 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07006591
Xiaoguang Wang05589552020-03-31 14:05:18 +08006592 ref_node = alloc_fixed_file_ref_node(ctx);
6593 if (IS_ERR(ref_node)) {
6594 io_sqe_files_unregister(ctx);
6595 return PTR_ERR(ref_node);
6596 }
6597
6598 ctx->file_data->cur_refs = &ref_node->refs;
6599 spin_lock_irqsave(&ctx->file_data->lock, flags);
6600 list_add(&ref_node->node, &ctx->file_data->ref_list);
6601 spin_unlock_irqrestore(&ctx->file_data->lock, flags);
6602 percpu_ref_get(&ctx->file_data->refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006603 return ret;
6604}
6605
Jens Axboec3a31e62019-10-03 13:59:56 -06006606static int io_sqe_file_register(struct io_ring_ctx *ctx, struct file *file,
6607 int index)
6608{
6609#if defined(CONFIG_UNIX)
6610 struct sock *sock = ctx->ring_sock->sk;
6611 struct sk_buff_head *head = &sock->sk_receive_queue;
6612 struct sk_buff *skb;
6613
6614 /*
6615 * See if we can merge this file into an existing skb SCM_RIGHTS
6616 * file set. If there's no room, fall back to allocating a new skb
6617 * and filling it in.
6618 */
6619 spin_lock_irq(&head->lock);
6620 skb = skb_peek(head);
6621 if (skb) {
6622 struct scm_fp_list *fpl = UNIXCB(skb).fp;
6623
6624 if (fpl->count < SCM_MAX_FD) {
6625 __skb_unlink(skb, head);
6626 spin_unlock_irq(&head->lock);
6627 fpl->fp[fpl->count] = get_file(file);
6628 unix_inflight(fpl->user, fpl->fp[fpl->count]);
6629 fpl->count++;
6630 spin_lock_irq(&head->lock);
6631 __skb_queue_head(head, skb);
6632 } else {
6633 skb = NULL;
6634 }
6635 }
6636 spin_unlock_irq(&head->lock);
6637
6638 if (skb) {
6639 fput(file);
6640 return 0;
6641 }
6642
6643 return __io_sqe_files_scm(ctx, 1, index);
6644#else
6645 return 0;
6646#endif
6647}
6648
Hillf Dantona5318d32020-03-23 17:47:15 +08006649static int io_queue_file_removal(struct fixed_file_data *data,
Xiaoguang Wang05589552020-03-31 14:05:18 +08006650 struct file *file)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006651{
Hillf Dantona5318d32020-03-23 17:47:15 +08006652 struct io_file_put *pfile;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006653 struct percpu_ref *refs = data->cur_refs;
6654 struct fixed_file_ref_node *ref_node;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006655
Jens Axboe05f3fb32019-12-09 11:22:50 -07006656 pfile = kzalloc(sizeof(*pfile), GFP_KERNEL);
Hillf Dantona5318d32020-03-23 17:47:15 +08006657 if (!pfile)
6658 return -ENOMEM;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006659
Xiaoguang Wang05589552020-03-31 14:05:18 +08006660 ref_node = container_of(refs, struct fixed_file_ref_node, refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006661 pfile->file = file;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006662 list_add(&pfile->list, &ref_node->file_list);
6663
Hillf Dantona5318d32020-03-23 17:47:15 +08006664 return 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006665}
6666
6667static int __io_sqe_files_update(struct io_ring_ctx *ctx,
6668 struct io_uring_files_update *up,
6669 unsigned nr_args)
6670{
6671 struct fixed_file_data *data = ctx->file_data;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006672 struct fixed_file_ref_node *ref_node;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006673 struct file *file;
Jens Axboec3a31e62019-10-03 13:59:56 -06006674 __s32 __user *fds;
6675 int fd, i, err;
6676 __u32 done;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006677 unsigned long flags;
6678 bool needs_switch = false;
Jens Axboec3a31e62019-10-03 13:59:56 -06006679
Jens Axboe05f3fb32019-12-09 11:22:50 -07006680 if (check_add_overflow(up->offset, nr_args, &done))
Jens Axboec3a31e62019-10-03 13:59:56 -06006681 return -EOVERFLOW;
6682 if (done > ctx->nr_user_files)
6683 return -EINVAL;
6684
Xiaoguang Wang05589552020-03-31 14:05:18 +08006685 ref_node = alloc_fixed_file_ref_node(ctx);
6686 if (IS_ERR(ref_node))
6687 return PTR_ERR(ref_node);
6688
Jens Axboec3a31e62019-10-03 13:59:56 -06006689 done = 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006690 fds = u64_to_user_ptr(up->fds);
Jens Axboec3a31e62019-10-03 13:59:56 -06006691 while (nr_args) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006692 struct fixed_file_table *table;
6693 unsigned index;
6694
Jens Axboec3a31e62019-10-03 13:59:56 -06006695 err = 0;
6696 if (copy_from_user(&fd, &fds[done], sizeof(fd))) {
6697 err = -EFAULT;
6698 break;
6699 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07006700 i = array_index_nospec(up->offset, ctx->nr_user_files);
6701 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
Jens Axboe65e19f52019-10-26 07:20:21 -06006702 index = i & IORING_FILE_TABLE_MASK;
6703 if (table->files[index]) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006704 file = io_file_from_index(ctx, index);
Hillf Dantona5318d32020-03-23 17:47:15 +08006705 err = io_queue_file_removal(data, file);
6706 if (err)
6707 break;
Jens Axboe65e19f52019-10-26 07:20:21 -06006708 table->files[index] = NULL;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006709 needs_switch = true;
Jens Axboec3a31e62019-10-03 13:59:56 -06006710 }
6711 if (fd != -1) {
Jens Axboec3a31e62019-10-03 13:59:56 -06006712 file = fget(fd);
6713 if (!file) {
6714 err = -EBADF;
6715 break;
6716 }
6717 /*
6718 * Don't allow io_uring instances to be registered. If
6719 * UNIX isn't enabled, then this causes a reference
6720 * cycle and this instance can never get freed. If UNIX
6721 * is enabled we'll handle it just fine, but there's
6722 * still no point in allowing a ring fd as it doesn't
6723 * support regular read/write anyway.
6724 */
6725 if (file->f_op == &io_uring_fops) {
6726 fput(file);
6727 err = -EBADF;
6728 break;
6729 }
Jens Axboe65e19f52019-10-26 07:20:21 -06006730 table->files[index] = file;
Jens Axboec3a31e62019-10-03 13:59:56 -06006731 err = io_sqe_file_register(ctx, file, i);
6732 if (err)
6733 break;
6734 }
6735 nr_args--;
6736 done++;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006737 up->offset++;
6738 }
6739
Xiaoguang Wang05589552020-03-31 14:05:18 +08006740 if (needs_switch) {
6741 percpu_ref_kill(data->cur_refs);
6742 spin_lock_irqsave(&data->lock, flags);
6743 list_add(&ref_node->node, &data->ref_list);
6744 data->cur_refs = &ref_node->refs;
6745 spin_unlock_irqrestore(&data->lock, flags);
6746 percpu_ref_get(&ctx->file_data->refs);
6747 } else
6748 destroy_fixed_file_ref_node(ref_node);
Jens Axboec3a31e62019-10-03 13:59:56 -06006749
6750 return done ? done : err;
6751}
Xiaoguang Wang05589552020-03-31 14:05:18 +08006752
Jens Axboe05f3fb32019-12-09 11:22:50 -07006753static int io_sqe_files_update(struct io_ring_ctx *ctx, void __user *arg,
6754 unsigned nr_args)
6755{
6756 struct io_uring_files_update up;
6757
6758 if (!ctx->file_data)
6759 return -ENXIO;
6760 if (!nr_args)
6761 return -EINVAL;
6762 if (copy_from_user(&up, arg, sizeof(up)))
6763 return -EFAULT;
6764 if (up.resv)
6765 return -EINVAL;
6766
6767 return __io_sqe_files_update(ctx, &up, nr_args);
6768}
Jens Axboec3a31e62019-10-03 13:59:56 -06006769
Pavel Begunkove9fd9392020-03-04 16:14:12 +03006770static void io_free_work(struct io_wq_work *work)
Jens Axboe7d723062019-11-12 22:31:31 -07006771{
6772 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
6773
Pavel Begunkove9fd9392020-03-04 16:14:12 +03006774 /* Consider that io_steal_work() relies on this ref */
Jens Axboe7d723062019-11-12 22:31:31 -07006775 io_put_req(req);
6776}
6777
Pavel Begunkov24369c22020-01-28 03:15:48 +03006778static int io_init_wq_offload(struct io_ring_ctx *ctx,
6779 struct io_uring_params *p)
6780{
6781 struct io_wq_data data;
6782 struct fd f;
6783 struct io_ring_ctx *ctx_attach;
6784 unsigned int concurrency;
6785 int ret = 0;
6786
6787 data.user = ctx->user;
Pavel Begunkove9fd9392020-03-04 16:14:12 +03006788 data.free_work = io_free_work;
Pavel Begunkov24369c22020-01-28 03:15:48 +03006789
6790 if (!(p->flags & IORING_SETUP_ATTACH_WQ)) {
6791 /* Do QD, or 4 * CPUS, whatever is smallest */
6792 concurrency = min(ctx->sq_entries, 4 * num_online_cpus());
6793
6794 ctx->io_wq = io_wq_create(concurrency, &data);
6795 if (IS_ERR(ctx->io_wq)) {
6796 ret = PTR_ERR(ctx->io_wq);
6797 ctx->io_wq = NULL;
6798 }
6799 return ret;
6800 }
6801
6802 f = fdget(p->wq_fd);
6803 if (!f.file)
6804 return -EBADF;
6805
6806 if (f.file->f_op != &io_uring_fops) {
6807 ret = -EINVAL;
6808 goto out_fput;
6809 }
6810
6811 ctx_attach = f.file->private_data;
6812 /* @io_wq is protected by holding the fd */
6813 if (!io_wq_get(ctx_attach->io_wq, &data)) {
6814 ret = -EINVAL;
6815 goto out_fput;
6816 }
6817
6818 ctx->io_wq = ctx_attach->io_wq;
6819out_fput:
6820 fdput(f);
6821 return ret;
6822}
6823
Jens Axboe6c271ce2019-01-10 11:22:30 -07006824static int io_sq_offload_start(struct io_ring_ctx *ctx,
6825 struct io_uring_params *p)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006826{
6827 int ret;
6828
Jens Axboe6c271ce2019-01-10 11:22:30 -07006829 init_waitqueue_head(&ctx->sqo_wait);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006830 mmgrab(current->mm);
6831 ctx->sqo_mm = current->mm;
6832
Jens Axboe6c271ce2019-01-10 11:22:30 -07006833 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboe3ec482d2019-04-08 10:51:01 -06006834 ret = -EPERM;
6835 if (!capable(CAP_SYS_ADMIN))
6836 goto err;
6837
Jens Axboe917257d2019-04-13 09:28:55 -06006838 ctx->sq_thread_idle = msecs_to_jiffies(p->sq_thread_idle);
6839 if (!ctx->sq_thread_idle)
6840 ctx->sq_thread_idle = HZ;
6841
Jens Axboe6c271ce2019-01-10 11:22:30 -07006842 if (p->flags & IORING_SETUP_SQ_AFF) {
Jens Axboe44a9bd12019-05-14 20:00:30 -06006843 int cpu = p->sq_thread_cpu;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006844
Jens Axboe917257d2019-04-13 09:28:55 -06006845 ret = -EINVAL;
Jens Axboe44a9bd12019-05-14 20:00:30 -06006846 if (cpu >= nr_cpu_ids)
6847 goto err;
Shenghui Wang7889f442019-05-07 16:03:19 +08006848 if (!cpu_online(cpu))
Jens Axboe917257d2019-04-13 09:28:55 -06006849 goto err;
6850
Jens Axboe6c271ce2019-01-10 11:22:30 -07006851 ctx->sqo_thread = kthread_create_on_cpu(io_sq_thread,
6852 ctx, cpu,
6853 "io_uring-sq");
6854 } else {
6855 ctx->sqo_thread = kthread_create(io_sq_thread, ctx,
6856 "io_uring-sq");
6857 }
6858 if (IS_ERR(ctx->sqo_thread)) {
6859 ret = PTR_ERR(ctx->sqo_thread);
6860 ctx->sqo_thread = NULL;
6861 goto err;
6862 }
6863 wake_up_process(ctx->sqo_thread);
6864 } else if (p->flags & IORING_SETUP_SQ_AFF) {
6865 /* Can't have SQ_AFF without SQPOLL */
6866 ret = -EINVAL;
6867 goto err;
6868 }
6869
Pavel Begunkov24369c22020-01-28 03:15:48 +03006870 ret = io_init_wq_offload(ctx, p);
6871 if (ret)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006872 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006873
6874 return 0;
6875err:
Jens Axboe54a91f32019-09-10 09:15:04 -06006876 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006877 mmdrop(ctx->sqo_mm);
6878 ctx->sqo_mm = NULL;
6879 return ret;
6880}
6881
6882static void io_unaccount_mem(struct user_struct *user, unsigned long nr_pages)
6883{
6884 atomic_long_sub(nr_pages, &user->locked_vm);
6885}
6886
6887static int io_account_mem(struct user_struct *user, unsigned long nr_pages)
6888{
6889 unsigned long page_limit, cur_pages, new_pages;
6890
6891 /* Don't allow more pages than we can safely lock */
6892 page_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
6893
6894 do {
6895 cur_pages = atomic_long_read(&user->locked_vm);
6896 new_pages = cur_pages + nr_pages;
6897 if (new_pages > page_limit)
6898 return -ENOMEM;
6899 } while (atomic_long_cmpxchg(&user->locked_vm, cur_pages,
6900 new_pages) != cur_pages);
6901
6902 return 0;
6903}
6904
6905static void io_mem_free(void *ptr)
6906{
Mark Rutland52e04ef2019-04-30 17:30:21 +01006907 struct page *page;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006908
Mark Rutland52e04ef2019-04-30 17:30:21 +01006909 if (!ptr)
6910 return;
6911
6912 page = virt_to_head_page(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006913 if (put_page_testzero(page))
6914 free_compound_page(page);
6915}
6916
6917static void *io_mem_alloc(size_t size)
6918{
6919 gfp_t gfp_flags = GFP_KERNEL | __GFP_ZERO | __GFP_NOWARN | __GFP_COMP |
6920 __GFP_NORETRY;
6921
6922 return (void *) __get_free_pages(gfp_flags, get_order(size));
6923}
6924
Hristo Venev75b28af2019-08-26 17:23:46 +00006925static unsigned long rings_size(unsigned sq_entries, unsigned cq_entries,
6926 size_t *sq_offset)
6927{
6928 struct io_rings *rings;
6929 size_t off, sq_array_size;
6930
6931 off = struct_size(rings, cqes, cq_entries);
6932 if (off == SIZE_MAX)
6933 return SIZE_MAX;
6934
6935#ifdef CONFIG_SMP
6936 off = ALIGN(off, SMP_CACHE_BYTES);
6937 if (off == 0)
6938 return SIZE_MAX;
6939#endif
6940
6941 sq_array_size = array_size(sizeof(u32), sq_entries);
6942 if (sq_array_size == SIZE_MAX)
6943 return SIZE_MAX;
6944
6945 if (check_add_overflow(off, sq_array_size, &off))
6946 return SIZE_MAX;
6947
6948 if (sq_offset)
6949 *sq_offset = off;
6950
6951 return off;
6952}
6953
Jens Axboe2b188cc2019-01-07 10:46:33 -07006954static unsigned long ring_pages(unsigned sq_entries, unsigned cq_entries)
6955{
Hristo Venev75b28af2019-08-26 17:23:46 +00006956 size_t pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006957
Hristo Venev75b28af2019-08-26 17:23:46 +00006958 pages = (size_t)1 << get_order(
6959 rings_size(sq_entries, cq_entries, NULL));
6960 pages += (size_t)1 << get_order(
6961 array_size(sizeof(struct io_uring_sqe), sq_entries));
Jens Axboe2b188cc2019-01-07 10:46:33 -07006962
Hristo Venev75b28af2019-08-26 17:23:46 +00006963 return pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006964}
6965
Jens Axboeedafcce2019-01-09 09:16:05 -07006966static int io_sqe_buffer_unregister(struct io_ring_ctx *ctx)
6967{
6968 int i, j;
6969
6970 if (!ctx->user_bufs)
6971 return -ENXIO;
6972
6973 for (i = 0; i < ctx->nr_user_bufs; i++) {
6974 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
6975
6976 for (j = 0; j < imu->nr_bvecs; j++)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08006977 unpin_user_page(imu->bvec[j].bv_page);
Jens Axboeedafcce2019-01-09 09:16:05 -07006978
6979 if (ctx->account_mem)
6980 io_unaccount_mem(ctx->user, imu->nr_bvecs);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006981 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07006982 imu->nr_bvecs = 0;
6983 }
6984
6985 kfree(ctx->user_bufs);
6986 ctx->user_bufs = NULL;
6987 ctx->nr_user_bufs = 0;
6988 return 0;
6989}
6990
6991static int io_copy_iov(struct io_ring_ctx *ctx, struct iovec *dst,
6992 void __user *arg, unsigned index)
6993{
6994 struct iovec __user *src;
6995
6996#ifdef CONFIG_COMPAT
6997 if (ctx->compat) {
6998 struct compat_iovec __user *ciovs;
6999 struct compat_iovec ciov;
7000
7001 ciovs = (struct compat_iovec __user *) arg;
7002 if (copy_from_user(&ciov, &ciovs[index], sizeof(ciov)))
7003 return -EFAULT;
7004
Jens Axboed55e5f52019-12-11 16:12:15 -07007005 dst->iov_base = u64_to_user_ptr((u64)ciov.iov_base);
Jens Axboeedafcce2019-01-09 09:16:05 -07007006 dst->iov_len = ciov.iov_len;
7007 return 0;
7008 }
7009#endif
7010 src = (struct iovec __user *) arg;
7011 if (copy_from_user(dst, &src[index], sizeof(*dst)))
7012 return -EFAULT;
7013 return 0;
7014}
7015
7016static int io_sqe_buffer_register(struct io_ring_ctx *ctx, void __user *arg,
7017 unsigned nr_args)
7018{
7019 struct vm_area_struct **vmas = NULL;
7020 struct page **pages = NULL;
7021 int i, j, got_pages = 0;
7022 int ret = -EINVAL;
7023
7024 if (ctx->user_bufs)
7025 return -EBUSY;
7026 if (!nr_args || nr_args > UIO_MAXIOV)
7027 return -EINVAL;
7028
7029 ctx->user_bufs = kcalloc(nr_args, sizeof(struct io_mapped_ubuf),
7030 GFP_KERNEL);
7031 if (!ctx->user_bufs)
7032 return -ENOMEM;
7033
7034 for (i = 0; i < nr_args; i++) {
7035 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
7036 unsigned long off, start, end, ubuf;
7037 int pret, nr_pages;
7038 struct iovec iov;
7039 size_t size;
7040
7041 ret = io_copy_iov(ctx, &iov, arg, i);
7042 if (ret)
Pavel Begunkova2786822019-05-26 12:35:47 +03007043 goto err;
Jens Axboeedafcce2019-01-09 09:16:05 -07007044
7045 /*
7046 * Don't impose further limits on the size and buffer
7047 * constraints here, we'll -EINVAL later when IO is
7048 * submitted if they are wrong.
7049 */
7050 ret = -EFAULT;
7051 if (!iov.iov_base || !iov.iov_len)
7052 goto err;
7053
7054 /* arbitrary limit, but we need something */
7055 if (iov.iov_len > SZ_1G)
7056 goto err;
7057
7058 ubuf = (unsigned long) iov.iov_base;
7059 end = (ubuf + iov.iov_len + PAGE_SIZE - 1) >> PAGE_SHIFT;
7060 start = ubuf >> PAGE_SHIFT;
7061 nr_pages = end - start;
7062
7063 if (ctx->account_mem) {
7064 ret = io_account_mem(ctx->user, nr_pages);
7065 if (ret)
7066 goto err;
7067 }
7068
7069 ret = 0;
7070 if (!pages || nr_pages > got_pages) {
7071 kfree(vmas);
7072 kfree(pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007073 pages = kvmalloc_array(nr_pages, sizeof(struct page *),
Jens Axboeedafcce2019-01-09 09:16:05 -07007074 GFP_KERNEL);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007075 vmas = kvmalloc_array(nr_pages,
Jens Axboeedafcce2019-01-09 09:16:05 -07007076 sizeof(struct vm_area_struct *),
7077 GFP_KERNEL);
7078 if (!pages || !vmas) {
7079 ret = -ENOMEM;
7080 if (ctx->account_mem)
7081 io_unaccount_mem(ctx->user, nr_pages);
7082 goto err;
7083 }
7084 got_pages = nr_pages;
7085 }
7086
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007087 imu->bvec = kvmalloc_array(nr_pages, sizeof(struct bio_vec),
Jens Axboeedafcce2019-01-09 09:16:05 -07007088 GFP_KERNEL);
7089 ret = -ENOMEM;
7090 if (!imu->bvec) {
7091 if (ctx->account_mem)
7092 io_unaccount_mem(ctx->user, nr_pages);
7093 goto err;
7094 }
7095
7096 ret = 0;
7097 down_read(&current->mm->mmap_sem);
John Hubbard2113b052020-01-30 22:13:13 -08007098 pret = pin_user_pages(ubuf, nr_pages,
Ira Weiny932f4a62019-05-13 17:17:03 -07007099 FOLL_WRITE | FOLL_LONGTERM,
7100 pages, vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007101 if (pret == nr_pages) {
7102 /* don't support file backed memory */
7103 for (j = 0; j < nr_pages; j++) {
7104 struct vm_area_struct *vma = vmas[j];
7105
7106 if (vma->vm_file &&
7107 !is_file_hugepages(vma->vm_file)) {
7108 ret = -EOPNOTSUPP;
7109 break;
7110 }
7111 }
7112 } else {
7113 ret = pret < 0 ? pret : -EFAULT;
7114 }
7115 up_read(&current->mm->mmap_sem);
7116 if (ret) {
7117 /*
7118 * if we did partial map, or found file backed vmas,
7119 * release any pages we did get
7120 */
John Hubbard27c4d3a2019-08-04 19:32:06 -07007121 if (pret > 0)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08007122 unpin_user_pages(pages, pret);
Jens Axboeedafcce2019-01-09 09:16:05 -07007123 if (ctx->account_mem)
7124 io_unaccount_mem(ctx->user, nr_pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007125 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07007126 goto err;
7127 }
7128
7129 off = ubuf & ~PAGE_MASK;
7130 size = iov.iov_len;
7131 for (j = 0; j < nr_pages; j++) {
7132 size_t vec_len;
7133
7134 vec_len = min_t(size_t, size, PAGE_SIZE - off);
7135 imu->bvec[j].bv_page = pages[j];
7136 imu->bvec[j].bv_len = vec_len;
7137 imu->bvec[j].bv_offset = off;
7138 off = 0;
7139 size -= vec_len;
7140 }
7141 /* store original address for later verification */
7142 imu->ubuf = ubuf;
7143 imu->len = iov.iov_len;
7144 imu->nr_bvecs = nr_pages;
7145
7146 ctx->nr_user_bufs++;
7147 }
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007148 kvfree(pages);
7149 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007150 return 0;
7151err:
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007152 kvfree(pages);
7153 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007154 io_sqe_buffer_unregister(ctx);
7155 return ret;
7156}
7157
Jens Axboe9b402842019-04-11 11:45:41 -06007158static int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg)
7159{
7160 __s32 __user *fds = arg;
7161 int fd;
7162
7163 if (ctx->cq_ev_fd)
7164 return -EBUSY;
7165
7166 if (copy_from_user(&fd, fds, sizeof(*fds)))
7167 return -EFAULT;
7168
7169 ctx->cq_ev_fd = eventfd_ctx_fdget(fd);
7170 if (IS_ERR(ctx->cq_ev_fd)) {
7171 int ret = PTR_ERR(ctx->cq_ev_fd);
7172 ctx->cq_ev_fd = NULL;
7173 return ret;
7174 }
7175
7176 return 0;
7177}
7178
7179static int io_eventfd_unregister(struct io_ring_ctx *ctx)
7180{
7181 if (ctx->cq_ev_fd) {
7182 eventfd_ctx_put(ctx->cq_ev_fd);
7183 ctx->cq_ev_fd = NULL;
7184 return 0;
7185 }
7186
7187 return -ENXIO;
7188}
7189
Jens Axboe5a2e7452020-02-23 16:23:11 -07007190static int __io_destroy_buffers(int id, void *p, void *data)
7191{
7192 struct io_ring_ctx *ctx = data;
7193 struct io_buffer *buf = p;
7194
Jens Axboe067524e2020-03-02 16:32:28 -07007195 __io_remove_buffers(ctx, buf, id, -1U);
Jens Axboe5a2e7452020-02-23 16:23:11 -07007196 return 0;
7197}
7198
7199static void io_destroy_buffers(struct io_ring_ctx *ctx)
7200{
7201 idr_for_each(&ctx->io_buffer_idr, __io_destroy_buffers, ctx);
7202 idr_destroy(&ctx->io_buffer_idr);
7203}
7204
Jens Axboe2b188cc2019-01-07 10:46:33 -07007205static void io_ring_ctx_free(struct io_ring_ctx *ctx)
7206{
Jens Axboe6b063142019-01-10 22:13:58 -07007207 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007208 if (ctx->sqo_mm)
7209 mmdrop(ctx->sqo_mm);
Jens Axboedef596e2019-01-09 08:59:42 -07007210
7211 io_iopoll_reap_events(ctx);
Jens Axboeedafcce2019-01-09 09:16:05 -07007212 io_sqe_buffer_unregister(ctx);
Jens Axboe6b063142019-01-10 22:13:58 -07007213 io_sqe_files_unregister(ctx);
Jens Axboe9b402842019-04-11 11:45:41 -06007214 io_eventfd_unregister(ctx);
Jens Axboe5a2e7452020-02-23 16:23:11 -07007215 io_destroy_buffers(ctx);
Jens Axboe41726c92020-02-23 13:11:42 -07007216 idr_destroy(&ctx->personality_idr);
Jens Axboedef596e2019-01-09 08:59:42 -07007217
Jens Axboe2b188cc2019-01-07 10:46:33 -07007218#if defined(CONFIG_UNIX)
Eric Biggers355e8d22019-06-12 14:58:43 -07007219 if (ctx->ring_sock) {
7220 ctx->ring_sock->file = NULL; /* so that iput() is called */
Jens Axboe2b188cc2019-01-07 10:46:33 -07007221 sock_release(ctx->ring_sock);
Eric Biggers355e8d22019-06-12 14:58:43 -07007222 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007223#endif
7224
Hristo Venev75b28af2019-08-26 17:23:46 +00007225 io_mem_free(ctx->rings);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007226 io_mem_free(ctx->sq_sqes);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007227
7228 percpu_ref_exit(&ctx->refs);
7229 if (ctx->account_mem)
7230 io_unaccount_mem(ctx->user,
7231 ring_pages(ctx->sq_entries, ctx->cq_entries));
7232 free_uid(ctx->user);
Jens Axboe181e4482019-11-25 08:52:30 -07007233 put_cred(ctx->creds);
Jens Axboe206aefd2019-11-07 18:27:42 -07007234 kfree(ctx->completions);
Jens Axboe78076bb2019-12-04 19:56:40 -07007235 kfree(ctx->cancel_hash);
Jens Axboe0ddf92e2019-11-08 08:52:53 -07007236 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007237 kfree(ctx);
7238}
7239
7240static __poll_t io_uring_poll(struct file *file, poll_table *wait)
7241{
7242 struct io_ring_ctx *ctx = file->private_data;
7243 __poll_t mask = 0;
7244
7245 poll_wait(file, &ctx->cq_wait, wait);
Stefan Bühler4f7067c2019-04-24 23:54:17 +02007246 /*
7247 * synchronizes with barrier from wq_has_sleeper call in
7248 * io_commit_cqring
7249 */
Jens Axboe2b188cc2019-01-07 10:46:33 -07007250 smp_rmb();
Hristo Venev75b28af2019-08-26 17:23:46 +00007251 if (READ_ONCE(ctx->rings->sq.tail) - ctx->cached_sq_head !=
7252 ctx->rings->sq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007253 mask |= EPOLLOUT | EPOLLWRNORM;
Stefano Garzarella63e5d812020-02-07 13:18:28 +01007254 if (io_cqring_events(ctx, false))
Jens Axboe2b188cc2019-01-07 10:46:33 -07007255 mask |= EPOLLIN | EPOLLRDNORM;
7256
7257 return mask;
7258}
7259
7260static int io_uring_fasync(int fd, struct file *file, int on)
7261{
7262 struct io_ring_ctx *ctx = file->private_data;
7263
7264 return fasync_helper(fd, file, on, &ctx->cq_fasync);
7265}
7266
Jens Axboe071698e2020-01-28 10:04:42 -07007267static int io_remove_personalities(int id, void *p, void *data)
7268{
7269 struct io_ring_ctx *ctx = data;
7270 const struct cred *cred;
7271
7272 cred = idr_remove(&ctx->personality_idr, id);
7273 if (cred)
7274 put_cred(cred);
7275 return 0;
7276}
7277
Jens Axboe2b188cc2019-01-07 10:46:33 -07007278static void io_ring_ctx_wait_and_kill(struct io_ring_ctx *ctx)
7279{
7280 mutex_lock(&ctx->uring_lock);
7281 percpu_ref_kill(&ctx->refs);
7282 mutex_unlock(&ctx->uring_lock);
7283
Jens Axboedf069d82020-02-04 16:48:34 -07007284 /*
7285 * Wait for sq thread to idle, if we have one. It won't spin on new
7286 * work after we've killed the ctx ref above. This is important to do
7287 * before we cancel existing commands, as the thread could otherwise
7288 * be queueing new work post that. If that's work we need to cancel,
7289 * it could cause shutdown to hang.
7290 */
7291 while (ctx->sqo_thread && !wq_has_sleeper(&ctx->sqo_wait))
7292 cpu_relax();
7293
Jens Axboe5262f562019-09-17 12:26:57 -06007294 io_kill_timeouts(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07007295 io_poll_remove_all(ctx);
Jens Axboe561fb042019-10-24 07:25:42 -06007296
7297 if (ctx->io_wq)
7298 io_wq_cancel_all(ctx->io_wq);
7299
Jens Axboedef596e2019-01-09 08:59:42 -07007300 io_iopoll_reap_events(ctx);
Jens Axboe15dff282019-11-13 09:09:23 -07007301 /* if we failed setting up the ctx, we might not have any rings */
7302 if (ctx->rings)
7303 io_cqring_overflow_flush(ctx, true);
Jens Axboe071698e2020-01-28 10:04:42 -07007304 idr_for_each(&ctx->personality_idr, io_remove_personalities, ctx);
Jens Axboe206aefd2019-11-07 18:27:42 -07007305 wait_for_completion(&ctx->completions[0]);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007306 io_ring_ctx_free(ctx);
7307}
7308
7309static int io_uring_release(struct inode *inode, struct file *file)
7310{
7311 struct io_ring_ctx *ctx = file->private_data;
7312
7313 file->private_data = NULL;
7314 io_ring_ctx_wait_and_kill(ctx);
7315 return 0;
7316}
7317
Jens Axboefcb323c2019-10-24 12:39:47 -06007318static void io_uring_cancel_files(struct io_ring_ctx *ctx,
7319 struct files_struct *files)
7320{
7321 struct io_kiocb *req;
7322 DEFINE_WAIT(wait);
7323
7324 while (!list_empty_careful(&ctx->inflight_list)) {
Jens Axboe768134d2019-11-10 20:30:53 -07007325 struct io_kiocb *cancel_req = NULL;
Jens Axboefcb323c2019-10-24 12:39:47 -06007326
7327 spin_lock_irq(&ctx->inflight_lock);
7328 list_for_each_entry(req, &ctx->inflight_list, inflight_entry) {
Jens Axboe768134d2019-11-10 20:30:53 -07007329 if (req->work.files != files)
7330 continue;
7331 /* req is being completed, ignore */
7332 if (!refcount_inc_not_zero(&req->refs))
7333 continue;
7334 cancel_req = req;
7335 break;
Jens Axboefcb323c2019-10-24 12:39:47 -06007336 }
Jens Axboe768134d2019-11-10 20:30:53 -07007337 if (cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06007338 prepare_to_wait(&ctx->inflight_wait, &wait,
Jens Axboe768134d2019-11-10 20:30:53 -07007339 TASK_UNINTERRUPTIBLE);
Jens Axboefcb323c2019-10-24 12:39:47 -06007340 spin_unlock_irq(&ctx->inflight_lock);
7341
Jens Axboe768134d2019-11-10 20:30:53 -07007342 /* We need to keep going until we don't find a matching req */
7343 if (!cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06007344 break;
Bob Liu2f6d9b92019-11-13 18:06:24 +08007345
Jens Axboe2ca10252020-02-13 17:17:35 -07007346 if (cancel_req->flags & REQ_F_OVERFLOW) {
7347 spin_lock_irq(&ctx->completion_lock);
7348 list_del(&cancel_req->list);
7349 cancel_req->flags &= ~REQ_F_OVERFLOW;
7350 if (list_empty(&ctx->cq_overflow_list)) {
7351 clear_bit(0, &ctx->sq_check_overflow);
7352 clear_bit(0, &ctx->cq_check_overflow);
7353 }
7354 spin_unlock_irq(&ctx->completion_lock);
7355
7356 WRITE_ONCE(ctx->rings->cq_overflow,
7357 atomic_inc_return(&ctx->cached_cq_overflow));
7358
7359 /*
7360 * Put inflight ref and overflow ref. If that's
7361 * all we had, then we're done with this request.
7362 */
7363 if (refcount_sub_and_test(2, &cancel_req->refs)) {
7364 io_put_req(cancel_req);
7365 continue;
7366 }
7367 }
7368
Bob Liu2f6d9b92019-11-13 18:06:24 +08007369 io_wq_cancel_work(ctx->io_wq, &cancel_req->work);
7370 io_put_req(cancel_req);
Jens Axboefcb323c2019-10-24 12:39:47 -06007371 schedule();
7372 }
Jens Axboe768134d2019-11-10 20:30:53 -07007373 finish_wait(&ctx->inflight_wait, &wait);
Jens Axboefcb323c2019-10-24 12:39:47 -06007374}
7375
7376static int io_uring_flush(struct file *file, void *data)
7377{
7378 struct io_ring_ctx *ctx = file->private_data;
7379
7380 io_uring_cancel_files(ctx, data);
Jens Axboe6ab23142020-02-08 20:23:59 -07007381
7382 /*
7383 * If the task is going away, cancel work it may have pending
7384 */
7385 if (fatal_signal_pending(current) || (current->flags & PF_EXITING))
7386 io_wq_cancel_pid(ctx->io_wq, task_pid_vnr(current));
7387
Jens Axboefcb323c2019-10-24 12:39:47 -06007388 return 0;
7389}
7390
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007391static void *io_uring_validate_mmap_request(struct file *file,
7392 loff_t pgoff, size_t sz)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007393{
Jens Axboe2b188cc2019-01-07 10:46:33 -07007394 struct io_ring_ctx *ctx = file->private_data;
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007395 loff_t offset = pgoff << PAGE_SHIFT;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007396 struct page *page;
7397 void *ptr;
7398
7399 switch (offset) {
7400 case IORING_OFF_SQ_RING:
Hristo Venev75b28af2019-08-26 17:23:46 +00007401 case IORING_OFF_CQ_RING:
7402 ptr = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007403 break;
7404 case IORING_OFF_SQES:
7405 ptr = ctx->sq_sqes;
7406 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007407 default:
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007408 return ERR_PTR(-EINVAL);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007409 }
7410
7411 page = virt_to_head_page(ptr);
Matthew Wilcox (Oracle)a50b8542019-09-23 15:34:25 -07007412 if (sz > page_size(page))
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007413 return ERR_PTR(-EINVAL);
7414
7415 return ptr;
7416}
7417
7418#ifdef CONFIG_MMU
7419
7420static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
7421{
7422 size_t sz = vma->vm_end - vma->vm_start;
7423 unsigned long pfn;
7424 void *ptr;
7425
7426 ptr = io_uring_validate_mmap_request(file, vma->vm_pgoff, sz);
7427 if (IS_ERR(ptr))
7428 return PTR_ERR(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007429
7430 pfn = virt_to_phys(ptr) >> PAGE_SHIFT;
7431 return remap_pfn_range(vma, vma->vm_start, pfn, sz, vma->vm_page_prot);
7432}
7433
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007434#else /* !CONFIG_MMU */
7435
7436static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
7437{
7438 return vma->vm_flags & (VM_SHARED | VM_MAYSHARE) ? 0 : -EINVAL;
7439}
7440
7441static unsigned int io_uring_nommu_mmap_capabilities(struct file *file)
7442{
7443 return NOMMU_MAP_DIRECT | NOMMU_MAP_READ | NOMMU_MAP_WRITE;
7444}
7445
7446static unsigned long io_uring_nommu_get_unmapped_area(struct file *file,
7447 unsigned long addr, unsigned long len,
7448 unsigned long pgoff, unsigned long flags)
7449{
7450 void *ptr;
7451
7452 ptr = io_uring_validate_mmap_request(file, pgoff, len);
7453 if (IS_ERR(ptr))
7454 return PTR_ERR(ptr);
7455
7456 return (unsigned long) ptr;
7457}
7458
7459#endif /* !CONFIG_MMU */
7460
Jens Axboe2b188cc2019-01-07 10:46:33 -07007461SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
7462 u32, min_complete, u32, flags, const sigset_t __user *, sig,
7463 size_t, sigsz)
7464{
7465 struct io_ring_ctx *ctx;
7466 long ret = -EBADF;
7467 int submitted = 0;
7468 struct fd f;
7469
Jens Axboeb41e9852020-02-17 09:52:41 -07007470 if (current->task_works)
7471 task_work_run();
7472
Jens Axboe6c271ce2019-01-10 11:22:30 -07007473 if (flags & ~(IORING_ENTER_GETEVENTS | IORING_ENTER_SQ_WAKEUP))
Jens Axboe2b188cc2019-01-07 10:46:33 -07007474 return -EINVAL;
7475
7476 f = fdget(fd);
7477 if (!f.file)
7478 return -EBADF;
7479
7480 ret = -EOPNOTSUPP;
7481 if (f.file->f_op != &io_uring_fops)
7482 goto out_fput;
7483
7484 ret = -ENXIO;
7485 ctx = f.file->private_data;
7486 if (!percpu_ref_tryget(&ctx->refs))
7487 goto out_fput;
7488
Jens Axboe6c271ce2019-01-10 11:22:30 -07007489 /*
7490 * For SQ polling, the thread will do all submissions and completions.
7491 * Just return the requested submit count, and wake the thread if
7492 * we were asked to.
7493 */
Jens Axboeb2a9ead2019-09-12 14:19:16 -06007494 ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007495 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboec1edbf52019-11-10 16:56:04 -07007496 if (!list_empty_careful(&ctx->cq_overflow_list))
7497 io_cqring_overflow_flush(ctx, false);
Jens Axboe6c271ce2019-01-10 11:22:30 -07007498 if (flags & IORING_ENTER_SQ_WAKEUP)
7499 wake_up(&ctx->sqo_wait);
7500 submitted = to_submit;
Jens Axboeb2a9ead2019-09-12 14:19:16 -06007501 } else if (to_submit) {
Pavel Begunkovae9428c2019-11-06 00:22:14 +03007502 struct mm_struct *cur_mm;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007503
7504 mutex_lock(&ctx->uring_lock);
Pavel Begunkovae9428c2019-11-06 00:22:14 +03007505 /* already have mm, so io_submit_sqes() won't try to grab it */
7506 cur_mm = ctx->sqo_mm;
7507 submitted = io_submit_sqes(ctx, to_submit, f.file, fd,
7508 &cur_mm, false);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007509 mutex_unlock(&ctx->uring_lock);
Pavel Begunkov7c504e652019-12-18 19:53:45 +03007510
7511 if (submitted != to_submit)
7512 goto out;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007513 }
7514 if (flags & IORING_ENTER_GETEVENTS) {
Jens Axboedef596e2019-01-09 08:59:42 -07007515 unsigned nr_events = 0;
7516
Jens Axboe2b188cc2019-01-07 10:46:33 -07007517 min_complete = min(min_complete, ctx->cq_entries);
7518
Xiaoguang Wang32b22442020-03-11 09:26:09 +08007519 /*
7520 * When SETUP_IOPOLL and SETUP_SQPOLL are both enabled, user
7521 * space applications don't need to do io completion events
7522 * polling again, they can rely on io_sq_thread to do polling
7523 * work, which can reduce cpu usage and uring_lock contention.
7524 */
7525 if (ctx->flags & IORING_SETUP_IOPOLL &&
7526 !(ctx->flags & IORING_SETUP_SQPOLL)) {
Jens Axboedef596e2019-01-09 08:59:42 -07007527 ret = io_iopoll_check(ctx, &nr_events, min_complete);
Jens Axboedef596e2019-01-09 08:59:42 -07007528 } else {
7529 ret = io_cqring_wait(ctx, min_complete, sig, sigsz);
7530 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007531 }
7532
Pavel Begunkov7c504e652019-12-18 19:53:45 +03007533out:
Pavel Begunkov6805b322019-10-08 02:18:42 +03007534 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007535out_fput:
7536 fdput(f);
7537 return submitted ? submitted : ret;
7538}
7539
Tobias Klauserbebdb652020-02-26 18:38:32 +01007540#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -07007541static int io_uring_show_cred(int id, void *p, void *data)
7542{
7543 const struct cred *cred = p;
7544 struct seq_file *m = data;
7545 struct user_namespace *uns = seq_user_ns(m);
7546 struct group_info *gi;
7547 kernel_cap_t cap;
7548 unsigned __capi;
7549 int g;
7550
7551 seq_printf(m, "%5d\n", id);
7552 seq_put_decimal_ull(m, "\tUid:\t", from_kuid_munged(uns, cred->uid));
7553 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->euid));
7554 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->suid));
7555 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->fsuid));
7556 seq_put_decimal_ull(m, "\n\tGid:\t", from_kgid_munged(uns, cred->gid));
7557 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->egid));
7558 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->sgid));
7559 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->fsgid));
7560 seq_puts(m, "\n\tGroups:\t");
7561 gi = cred->group_info;
7562 for (g = 0; g < gi->ngroups; g++) {
7563 seq_put_decimal_ull(m, g ? " " : "",
7564 from_kgid_munged(uns, gi->gid[g]));
7565 }
7566 seq_puts(m, "\n\tCapEff:\t");
7567 cap = cred->cap_effective;
7568 CAP_FOR_EACH_U32(__capi)
7569 seq_put_hex_ll(m, NULL, cap.cap[CAP_LAST_U32 - __capi], 8);
7570 seq_putc(m, '\n');
7571 return 0;
7572}
7573
7574static void __io_uring_show_fdinfo(struct io_ring_ctx *ctx, struct seq_file *m)
7575{
7576 int i;
7577
7578 mutex_lock(&ctx->uring_lock);
7579 seq_printf(m, "UserFiles:\t%u\n", ctx->nr_user_files);
7580 for (i = 0; i < ctx->nr_user_files; i++) {
7581 struct fixed_file_table *table;
7582 struct file *f;
7583
7584 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
7585 f = table->files[i & IORING_FILE_TABLE_MASK];
7586 if (f)
7587 seq_printf(m, "%5u: %s\n", i, file_dentry(f)->d_iname);
7588 else
7589 seq_printf(m, "%5u: <none>\n", i);
7590 }
7591 seq_printf(m, "UserBufs:\t%u\n", ctx->nr_user_bufs);
7592 for (i = 0; i < ctx->nr_user_bufs; i++) {
7593 struct io_mapped_ubuf *buf = &ctx->user_bufs[i];
7594
7595 seq_printf(m, "%5u: 0x%llx/%u\n", i, buf->ubuf,
7596 (unsigned int) buf->len);
7597 }
7598 if (!idr_is_empty(&ctx->personality_idr)) {
7599 seq_printf(m, "Personalities:\n");
7600 idr_for_each(&ctx->personality_idr, io_uring_show_cred, m);
7601 }
Jens Axboed7718a92020-02-14 22:23:12 -07007602 seq_printf(m, "PollList:\n");
7603 spin_lock_irq(&ctx->completion_lock);
7604 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
7605 struct hlist_head *list = &ctx->cancel_hash[i];
7606 struct io_kiocb *req;
7607
7608 hlist_for_each_entry(req, list, hash_node)
7609 seq_printf(m, " op=%d, task_works=%d\n", req->opcode,
7610 req->task->task_works != NULL);
7611 }
7612 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe87ce9552020-01-30 08:25:34 -07007613 mutex_unlock(&ctx->uring_lock);
7614}
7615
7616static void io_uring_show_fdinfo(struct seq_file *m, struct file *f)
7617{
7618 struct io_ring_ctx *ctx = f->private_data;
7619
7620 if (percpu_ref_tryget(&ctx->refs)) {
7621 __io_uring_show_fdinfo(ctx, m);
7622 percpu_ref_put(&ctx->refs);
7623 }
7624}
Tobias Klauserbebdb652020-02-26 18:38:32 +01007625#endif
Jens Axboe87ce9552020-01-30 08:25:34 -07007626
Jens Axboe2b188cc2019-01-07 10:46:33 -07007627static const struct file_operations io_uring_fops = {
7628 .release = io_uring_release,
Jens Axboefcb323c2019-10-24 12:39:47 -06007629 .flush = io_uring_flush,
Jens Axboe2b188cc2019-01-07 10:46:33 -07007630 .mmap = io_uring_mmap,
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007631#ifndef CONFIG_MMU
7632 .get_unmapped_area = io_uring_nommu_get_unmapped_area,
7633 .mmap_capabilities = io_uring_nommu_mmap_capabilities,
7634#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07007635 .poll = io_uring_poll,
7636 .fasync = io_uring_fasync,
Tobias Klauserbebdb652020-02-26 18:38:32 +01007637#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -07007638 .show_fdinfo = io_uring_show_fdinfo,
Tobias Klauserbebdb652020-02-26 18:38:32 +01007639#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07007640};
7641
7642static int io_allocate_scq_urings(struct io_ring_ctx *ctx,
7643 struct io_uring_params *p)
7644{
Hristo Venev75b28af2019-08-26 17:23:46 +00007645 struct io_rings *rings;
7646 size_t size, sq_array_offset;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007647
Hristo Venev75b28af2019-08-26 17:23:46 +00007648 size = rings_size(p->sq_entries, p->cq_entries, &sq_array_offset);
7649 if (size == SIZE_MAX)
7650 return -EOVERFLOW;
7651
7652 rings = io_mem_alloc(size);
7653 if (!rings)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007654 return -ENOMEM;
7655
Hristo Venev75b28af2019-08-26 17:23:46 +00007656 ctx->rings = rings;
7657 ctx->sq_array = (u32 *)((char *)rings + sq_array_offset);
7658 rings->sq_ring_mask = p->sq_entries - 1;
7659 rings->cq_ring_mask = p->cq_entries - 1;
7660 rings->sq_ring_entries = p->sq_entries;
7661 rings->cq_ring_entries = p->cq_entries;
7662 ctx->sq_mask = rings->sq_ring_mask;
7663 ctx->cq_mask = rings->cq_ring_mask;
7664 ctx->sq_entries = rings->sq_ring_entries;
7665 ctx->cq_entries = rings->cq_ring_entries;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007666
7667 size = array_size(sizeof(struct io_uring_sqe), p->sq_entries);
Jens Axboeeb065d32019-11-20 09:26:29 -07007668 if (size == SIZE_MAX) {
7669 io_mem_free(ctx->rings);
7670 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007671 return -EOVERFLOW;
Jens Axboeeb065d32019-11-20 09:26:29 -07007672 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007673
7674 ctx->sq_sqes = io_mem_alloc(size);
Jens Axboeeb065d32019-11-20 09:26:29 -07007675 if (!ctx->sq_sqes) {
7676 io_mem_free(ctx->rings);
7677 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007678 return -ENOMEM;
Jens Axboeeb065d32019-11-20 09:26:29 -07007679 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007680
Jens Axboe2b188cc2019-01-07 10:46:33 -07007681 return 0;
7682}
7683
7684/*
7685 * Allocate an anonymous fd, this is what constitutes the application
7686 * visible backing of an io_uring instance. The application mmaps this
7687 * fd to gain access to the SQ/CQ ring details. If UNIX sockets are enabled,
7688 * we have to tie this fd to a socket for file garbage collection purposes.
7689 */
7690static int io_uring_get_fd(struct io_ring_ctx *ctx)
7691{
7692 struct file *file;
7693 int ret;
7694
7695#if defined(CONFIG_UNIX)
7696 ret = sock_create_kern(&init_net, PF_UNIX, SOCK_RAW, IPPROTO_IP,
7697 &ctx->ring_sock);
7698 if (ret)
7699 return ret;
7700#endif
7701
7702 ret = get_unused_fd_flags(O_RDWR | O_CLOEXEC);
7703 if (ret < 0)
7704 goto err;
7705
7706 file = anon_inode_getfile("[io_uring]", &io_uring_fops, ctx,
7707 O_RDWR | O_CLOEXEC);
7708 if (IS_ERR(file)) {
7709 put_unused_fd(ret);
7710 ret = PTR_ERR(file);
7711 goto err;
7712 }
7713
7714#if defined(CONFIG_UNIX)
7715 ctx->ring_sock->file = file;
7716#endif
7717 fd_install(ret, file);
7718 return ret;
7719err:
7720#if defined(CONFIG_UNIX)
7721 sock_release(ctx->ring_sock);
7722 ctx->ring_sock = NULL;
7723#endif
7724 return ret;
7725}
7726
7727static int io_uring_create(unsigned entries, struct io_uring_params *p)
7728{
7729 struct user_struct *user = NULL;
7730 struct io_ring_ctx *ctx;
7731 bool account_mem;
7732 int ret;
7733
Jens Axboe8110c1a2019-12-28 15:39:54 -07007734 if (!entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007735 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07007736 if (entries > IORING_MAX_ENTRIES) {
7737 if (!(p->flags & IORING_SETUP_CLAMP))
7738 return -EINVAL;
7739 entries = IORING_MAX_ENTRIES;
7740 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007741
7742 /*
7743 * Use twice as many entries for the CQ ring. It's possible for the
7744 * application to drive a higher depth than the size of the SQ ring,
7745 * since the sqes are only used at submission time. This allows for
Jens Axboe33a107f2019-10-04 12:10:03 -06007746 * some flexibility in overcommitting a bit. If the application has
7747 * set IORING_SETUP_CQSIZE, it will have passed in the desired number
7748 * of CQ ring entries manually.
Jens Axboe2b188cc2019-01-07 10:46:33 -07007749 */
7750 p->sq_entries = roundup_pow_of_two(entries);
Jens Axboe33a107f2019-10-04 12:10:03 -06007751 if (p->flags & IORING_SETUP_CQSIZE) {
7752 /*
7753 * If IORING_SETUP_CQSIZE is set, we do the same roundup
7754 * to a power-of-two, if it isn't already. We do NOT impose
7755 * any cq vs sq ring sizing.
7756 */
Jens Axboe8110c1a2019-12-28 15:39:54 -07007757 if (p->cq_entries < p->sq_entries)
Jens Axboe33a107f2019-10-04 12:10:03 -06007758 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07007759 if (p->cq_entries > IORING_MAX_CQ_ENTRIES) {
7760 if (!(p->flags & IORING_SETUP_CLAMP))
7761 return -EINVAL;
7762 p->cq_entries = IORING_MAX_CQ_ENTRIES;
7763 }
Jens Axboe33a107f2019-10-04 12:10:03 -06007764 p->cq_entries = roundup_pow_of_two(p->cq_entries);
7765 } else {
7766 p->cq_entries = 2 * p->sq_entries;
7767 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007768
7769 user = get_uid(current_user());
7770 account_mem = !capable(CAP_IPC_LOCK);
7771
7772 if (account_mem) {
7773 ret = io_account_mem(user,
7774 ring_pages(p->sq_entries, p->cq_entries));
7775 if (ret) {
7776 free_uid(user);
7777 return ret;
7778 }
7779 }
7780
7781 ctx = io_ring_ctx_alloc(p);
7782 if (!ctx) {
7783 if (account_mem)
7784 io_unaccount_mem(user, ring_pages(p->sq_entries,
7785 p->cq_entries));
7786 free_uid(user);
7787 return -ENOMEM;
7788 }
7789 ctx->compat = in_compat_syscall();
7790 ctx->account_mem = account_mem;
7791 ctx->user = user;
Jens Axboe0b8c0ec2019-12-02 08:50:00 -07007792 ctx->creds = get_current_cred();
Jens Axboe2b188cc2019-01-07 10:46:33 -07007793
7794 ret = io_allocate_scq_urings(ctx, p);
7795 if (ret)
7796 goto err;
7797
Jens Axboe6c271ce2019-01-10 11:22:30 -07007798 ret = io_sq_offload_start(ctx, p);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007799 if (ret)
7800 goto err;
7801
Jens Axboe2b188cc2019-01-07 10:46:33 -07007802 memset(&p->sq_off, 0, sizeof(p->sq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00007803 p->sq_off.head = offsetof(struct io_rings, sq.head);
7804 p->sq_off.tail = offsetof(struct io_rings, sq.tail);
7805 p->sq_off.ring_mask = offsetof(struct io_rings, sq_ring_mask);
7806 p->sq_off.ring_entries = offsetof(struct io_rings, sq_ring_entries);
7807 p->sq_off.flags = offsetof(struct io_rings, sq_flags);
7808 p->sq_off.dropped = offsetof(struct io_rings, sq_dropped);
7809 p->sq_off.array = (char *)ctx->sq_array - (char *)ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007810
7811 memset(&p->cq_off, 0, sizeof(p->cq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00007812 p->cq_off.head = offsetof(struct io_rings, cq.head);
7813 p->cq_off.tail = offsetof(struct io_rings, cq.tail);
7814 p->cq_off.ring_mask = offsetof(struct io_rings, cq_ring_mask);
7815 p->cq_off.ring_entries = offsetof(struct io_rings, cq_ring_entries);
7816 p->cq_off.overflow = offsetof(struct io_rings, cq_overflow);
7817 p->cq_off.cqes = offsetof(struct io_rings, cqes);
Jens Axboeac90f242019-09-06 10:26:21 -06007818
Jens Axboe044c1ab2019-10-28 09:15:33 -06007819 /*
7820 * Install ring fd as the very last thing, so we don't risk someone
7821 * having closed it before we finish setup
7822 */
7823 ret = io_uring_get_fd(ctx);
7824 if (ret < 0)
7825 goto err;
7826
Jens Axboeda8c9692019-12-02 18:51:26 -07007827 p->features = IORING_FEAT_SINGLE_MMAP | IORING_FEAT_NODROP |
Jens Axboecccf0ee2020-01-27 16:34:48 -07007828 IORING_FEAT_SUBMIT_STABLE | IORING_FEAT_RW_CUR_POS |
Jens Axboed7718a92020-02-14 22:23:12 -07007829 IORING_FEAT_CUR_PERSONALITY | IORING_FEAT_FAST_POLL;
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02007830 trace_io_uring_create(ret, ctx, p->sq_entries, p->cq_entries, p->flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007831 return ret;
7832err:
7833 io_ring_ctx_wait_and_kill(ctx);
7834 return ret;
7835}
7836
7837/*
7838 * Sets up an aio uring context, and returns the fd. Applications asks for a
7839 * ring size, we return the actual sq/cq ring sizes (among other things) in the
7840 * params structure passed in.
7841 */
7842static long io_uring_setup(u32 entries, struct io_uring_params __user *params)
7843{
7844 struct io_uring_params p;
7845 long ret;
7846 int i;
7847
7848 if (copy_from_user(&p, params, sizeof(p)))
7849 return -EFAULT;
7850 for (i = 0; i < ARRAY_SIZE(p.resv); i++) {
7851 if (p.resv[i])
7852 return -EINVAL;
7853 }
7854
Jens Axboe6c271ce2019-01-10 11:22:30 -07007855 if (p.flags & ~(IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL |
Jens Axboe8110c1a2019-12-28 15:39:54 -07007856 IORING_SETUP_SQ_AFF | IORING_SETUP_CQSIZE |
Pavel Begunkov24369c22020-01-28 03:15:48 +03007857 IORING_SETUP_CLAMP | IORING_SETUP_ATTACH_WQ))
Jens Axboe2b188cc2019-01-07 10:46:33 -07007858 return -EINVAL;
7859
7860 ret = io_uring_create(entries, &p);
7861 if (ret < 0)
7862 return ret;
7863
7864 if (copy_to_user(params, &p, sizeof(p)))
7865 return -EFAULT;
7866
7867 return ret;
7868}
7869
7870SYSCALL_DEFINE2(io_uring_setup, u32, entries,
7871 struct io_uring_params __user *, params)
7872{
7873 return io_uring_setup(entries, params);
7874}
7875
Jens Axboe66f4af92020-01-16 15:36:52 -07007876static int io_probe(struct io_ring_ctx *ctx, void __user *arg, unsigned nr_args)
7877{
7878 struct io_uring_probe *p;
7879 size_t size;
7880 int i, ret;
7881
7882 size = struct_size(p, ops, nr_args);
7883 if (size == SIZE_MAX)
7884 return -EOVERFLOW;
7885 p = kzalloc(size, GFP_KERNEL);
7886 if (!p)
7887 return -ENOMEM;
7888
7889 ret = -EFAULT;
7890 if (copy_from_user(p, arg, size))
7891 goto out;
7892 ret = -EINVAL;
7893 if (memchr_inv(p, 0, size))
7894 goto out;
7895
7896 p->last_op = IORING_OP_LAST - 1;
7897 if (nr_args > IORING_OP_LAST)
7898 nr_args = IORING_OP_LAST;
7899
7900 for (i = 0; i < nr_args; i++) {
7901 p->ops[i].op = i;
7902 if (!io_op_defs[i].not_supported)
7903 p->ops[i].flags = IO_URING_OP_SUPPORTED;
7904 }
7905 p->ops_len = i;
7906
7907 ret = 0;
7908 if (copy_to_user(arg, p, size))
7909 ret = -EFAULT;
7910out:
7911 kfree(p);
7912 return ret;
7913}
7914
Jens Axboe071698e2020-01-28 10:04:42 -07007915static int io_register_personality(struct io_ring_ctx *ctx)
7916{
7917 const struct cred *creds = get_current_cred();
7918 int id;
7919
7920 id = idr_alloc_cyclic(&ctx->personality_idr, (void *) creds, 1,
7921 USHRT_MAX, GFP_KERNEL);
7922 if (id < 0)
7923 put_cred(creds);
7924 return id;
7925}
7926
7927static int io_unregister_personality(struct io_ring_ctx *ctx, unsigned id)
7928{
7929 const struct cred *old_creds;
7930
7931 old_creds = idr_remove(&ctx->personality_idr, id);
7932 if (old_creds) {
7933 put_cred(old_creds);
7934 return 0;
7935 }
7936
7937 return -EINVAL;
7938}
7939
7940static bool io_register_op_must_quiesce(int op)
7941{
7942 switch (op) {
7943 case IORING_UNREGISTER_FILES:
7944 case IORING_REGISTER_FILES_UPDATE:
7945 case IORING_REGISTER_PROBE:
7946 case IORING_REGISTER_PERSONALITY:
7947 case IORING_UNREGISTER_PERSONALITY:
7948 return false;
7949 default:
7950 return true;
7951 }
7952}
7953
Jens Axboeedafcce2019-01-09 09:16:05 -07007954static int __io_uring_register(struct io_ring_ctx *ctx, unsigned opcode,
7955 void __user *arg, unsigned nr_args)
Jens Axboeb19062a2019-04-15 10:49:38 -06007956 __releases(ctx->uring_lock)
7957 __acquires(ctx->uring_lock)
Jens Axboeedafcce2019-01-09 09:16:05 -07007958{
7959 int ret;
7960
Jens Axboe35fa71a2019-04-22 10:23:23 -06007961 /*
7962 * We're inside the ring mutex, if the ref is already dying, then
7963 * someone else killed the ctx or is already going through
7964 * io_uring_register().
7965 */
7966 if (percpu_ref_is_dying(&ctx->refs))
7967 return -ENXIO;
7968
Jens Axboe071698e2020-01-28 10:04:42 -07007969 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07007970 percpu_ref_kill(&ctx->refs);
Jens Axboeb19062a2019-04-15 10:49:38 -06007971
Jens Axboe05f3fb32019-12-09 11:22:50 -07007972 /*
7973 * Drop uring mutex before waiting for references to exit. If
7974 * another thread is currently inside io_uring_enter() it might
7975 * need to grab the uring_lock to make progress. If we hold it
7976 * here across the drain wait, then we can deadlock. It's safe
7977 * to drop the mutex here, since no new references will come in
7978 * after we've killed the percpu ref.
7979 */
7980 mutex_unlock(&ctx->uring_lock);
Jens Axboec1503682020-01-08 08:26:07 -07007981 ret = wait_for_completion_interruptible(&ctx->completions[0]);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007982 mutex_lock(&ctx->uring_lock);
Jens Axboec1503682020-01-08 08:26:07 -07007983 if (ret) {
7984 percpu_ref_resurrect(&ctx->refs);
7985 ret = -EINTR;
7986 goto out;
7987 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07007988 }
Jens Axboeedafcce2019-01-09 09:16:05 -07007989
7990 switch (opcode) {
7991 case IORING_REGISTER_BUFFERS:
7992 ret = io_sqe_buffer_register(ctx, arg, nr_args);
7993 break;
7994 case IORING_UNREGISTER_BUFFERS:
7995 ret = -EINVAL;
7996 if (arg || nr_args)
7997 break;
7998 ret = io_sqe_buffer_unregister(ctx);
7999 break;
Jens Axboe6b063142019-01-10 22:13:58 -07008000 case IORING_REGISTER_FILES:
8001 ret = io_sqe_files_register(ctx, arg, nr_args);
8002 break;
8003 case IORING_UNREGISTER_FILES:
8004 ret = -EINVAL;
8005 if (arg || nr_args)
8006 break;
8007 ret = io_sqe_files_unregister(ctx);
8008 break;
Jens Axboec3a31e62019-10-03 13:59:56 -06008009 case IORING_REGISTER_FILES_UPDATE:
8010 ret = io_sqe_files_update(ctx, arg, nr_args);
8011 break;
Jens Axboe9b402842019-04-11 11:45:41 -06008012 case IORING_REGISTER_EVENTFD:
Jens Axboef2842ab2020-01-08 11:04:00 -07008013 case IORING_REGISTER_EVENTFD_ASYNC:
Jens Axboe9b402842019-04-11 11:45:41 -06008014 ret = -EINVAL;
8015 if (nr_args != 1)
8016 break;
8017 ret = io_eventfd_register(ctx, arg);
Jens Axboef2842ab2020-01-08 11:04:00 -07008018 if (ret)
8019 break;
8020 if (opcode == IORING_REGISTER_EVENTFD_ASYNC)
8021 ctx->eventfd_async = 1;
8022 else
8023 ctx->eventfd_async = 0;
Jens Axboe9b402842019-04-11 11:45:41 -06008024 break;
8025 case IORING_UNREGISTER_EVENTFD:
8026 ret = -EINVAL;
8027 if (arg || nr_args)
8028 break;
8029 ret = io_eventfd_unregister(ctx);
8030 break;
Jens Axboe66f4af92020-01-16 15:36:52 -07008031 case IORING_REGISTER_PROBE:
8032 ret = -EINVAL;
8033 if (!arg || nr_args > 256)
8034 break;
8035 ret = io_probe(ctx, arg, nr_args);
8036 break;
Jens Axboe071698e2020-01-28 10:04:42 -07008037 case IORING_REGISTER_PERSONALITY:
8038 ret = -EINVAL;
8039 if (arg || nr_args)
8040 break;
8041 ret = io_register_personality(ctx);
8042 break;
8043 case IORING_UNREGISTER_PERSONALITY:
8044 ret = -EINVAL;
8045 if (arg)
8046 break;
8047 ret = io_unregister_personality(ctx, nr_args);
8048 break;
Jens Axboeedafcce2019-01-09 09:16:05 -07008049 default:
8050 ret = -EINVAL;
8051 break;
8052 }
8053
Jens Axboe071698e2020-01-28 10:04:42 -07008054 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07008055 /* bring the ctx back to life */
Jens Axboe05f3fb32019-12-09 11:22:50 -07008056 percpu_ref_reinit(&ctx->refs);
Jens Axboec1503682020-01-08 08:26:07 -07008057out:
8058 reinit_completion(&ctx->completions[0]);
Jens Axboe05f3fb32019-12-09 11:22:50 -07008059 }
Jens Axboeedafcce2019-01-09 09:16:05 -07008060 return ret;
8061}
8062
8063SYSCALL_DEFINE4(io_uring_register, unsigned int, fd, unsigned int, opcode,
8064 void __user *, arg, unsigned int, nr_args)
8065{
8066 struct io_ring_ctx *ctx;
8067 long ret = -EBADF;
8068 struct fd f;
8069
8070 f = fdget(fd);
8071 if (!f.file)
8072 return -EBADF;
8073
8074 ret = -EOPNOTSUPP;
8075 if (f.file->f_op != &io_uring_fops)
8076 goto out_fput;
8077
8078 ctx = f.file->private_data;
8079
8080 mutex_lock(&ctx->uring_lock);
8081 ret = __io_uring_register(ctx, opcode, arg, nr_args);
8082 mutex_unlock(&ctx->uring_lock);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02008083 trace_io_uring_register(ctx, opcode, ctx->nr_user_files, ctx->nr_user_bufs,
8084 ctx->cq_ev_fd != NULL, ret);
Jens Axboeedafcce2019-01-09 09:16:05 -07008085out_fput:
8086 fdput(f);
8087 return ret;
8088}
8089
Jens Axboe2b188cc2019-01-07 10:46:33 -07008090static int __init io_uring_init(void)
8091{
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008092#define __BUILD_BUG_VERIFY_ELEMENT(stype, eoffset, etype, ename) do { \
8093 BUILD_BUG_ON(offsetof(stype, ename) != eoffset); \
8094 BUILD_BUG_ON(sizeof(etype) != sizeof_field(stype, ename)); \
8095} while (0)
8096
8097#define BUILD_BUG_SQE_ELEM(eoffset, etype, ename) \
8098 __BUILD_BUG_VERIFY_ELEMENT(struct io_uring_sqe, eoffset, etype, ename)
8099 BUILD_BUG_ON(sizeof(struct io_uring_sqe) != 64);
8100 BUILD_BUG_SQE_ELEM(0, __u8, opcode);
8101 BUILD_BUG_SQE_ELEM(1, __u8, flags);
8102 BUILD_BUG_SQE_ELEM(2, __u16, ioprio);
8103 BUILD_BUG_SQE_ELEM(4, __s32, fd);
8104 BUILD_BUG_SQE_ELEM(8, __u64, off);
8105 BUILD_BUG_SQE_ELEM(8, __u64, addr2);
8106 BUILD_BUG_SQE_ELEM(16, __u64, addr);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03008107 BUILD_BUG_SQE_ELEM(16, __u64, splice_off_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008108 BUILD_BUG_SQE_ELEM(24, __u32, len);
8109 BUILD_BUG_SQE_ELEM(28, __kernel_rwf_t, rw_flags);
8110 BUILD_BUG_SQE_ELEM(28, /* compat */ int, rw_flags);
8111 BUILD_BUG_SQE_ELEM(28, /* compat */ __u32, rw_flags);
8112 BUILD_BUG_SQE_ELEM(28, __u32, fsync_flags);
8113 BUILD_BUG_SQE_ELEM(28, __u16, poll_events);
8114 BUILD_BUG_SQE_ELEM(28, __u32, sync_range_flags);
8115 BUILD_BUG_SQE_ELEM(28, __u32, msg_flags);
8116 BUILD_BUG_SQE_ELEM(28, __u32, timeout_flags);
8117 BUILD_BUG_SQE_ELEM(28, __u32, accept_flags);
8118 BUILD_BUG_SQE_ELEM(28, __u32, cancel_flags);
8119 BUILD_BUG_SQE_ELEM(28, __u32, open_flags);
8120 BUILD_BUG_SQE_ELEM(28, __u32, statx_flags);
8121 BUILD_BUG_SQE_ELEM(28, __u32, fadvise_advice);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03008122 BUILD_BUG_SQE_ELEM(28, __u32, splice_flags);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008123 BUILD_BUG_SQE_ELEM(32, __u64, user_data);
8124 BUILD_BUG_SQE_ELEM(40, __u16, buf_index);
8125 BUILD_BUG_SQE_ELEM(42, __u16, personality);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03008126 BUILD_BUG_SQE_ELEM(44, __s32, splice_fd_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008127
Jens Axboed3656342019-12-18 09:50:26 -07008128 BUILD_BUG_ON(ARRAY_SIZE(io_op_defs) != IORING_OP_LAST);
Jens Axboe84557872020-03-03 15:28:17 -07008129 BUILD_BUG_ON(__REQ_F_LAST_BIT >= 8 * sizeof(int));
Jens Axboe2b188cc2019-01-07 10:46:33 -07008130 req_cachep = KMEM_CACHE(io_kiocb, SLAB_HWCACHE_ALIGN | SLAB_PANIC);
8131 return 0;
8132};
8133__initcall(io_uring_init);