blob: 845c173d92820d01ce8bbe53a51c2c089d6876ca [file] [log] [blame]
Jens Axboe2b188cc2019-01-07 10:46:33 -07001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Shared application/kernel submission and completion ring pairs, for
4 * supporting fast/efficient IO.
5 *
6 * A note on the read/write ordering memory barriers that are matched between
Stefan Bühler1e84b972019-04-24 23:54:16 +02007 * the application and kernel side.
8 *
9 * After the application reads the CQ ring tail, it must use an
10 * appropriate smp_rmb() to pair with the smp_wmb() the kernel uses
11 * before writing the tail (using smp_load_acquire to read the tail will
12 * do). It also needs a smp_mb() before updating CQ head (ordering the
13 * entry load(s) with the head store), pairing with an implicit barrier
14 * through a control-dependency in io_get_cqring (smp_store_release to
15 * store head will do). Failure to do so could lead to reading invalid
16 * CQ entries.
17 *
18 * Likewise, the application must use an appropriate smp_wmb() before
19 * writing the SQ tail (ordering SQ entry stores with the tail store),
20 * which pairs with smp_load_acquire in io_get_sqring (smp_store_release
21 * to store the tail will do). And it needs a barrier ordering the SQ
22 * head load before writing new SQ entries (smp_load_acquire to read
23 * head will do).
24 *
25 * When using the SQ poll thread (IORING_SETUP_SQPOLL), the application
26 * needs to check the SQ flags for IORING_SQ_NEED_WAKEUP *after*
27 * updating the SQ tail; a full memory barrier smp_mb() is needed
28 * between.
Jens Axboe2b188cc2019-01-07 10:46:33 -070029 *
30 * Also see the examples in the liburing library:
31 *
32 * git://git.kernel.dk/liburing
33 *
34 * io_uring also uses READ/WRITE_ONCE() for _any_ store or load that happens
35 * from data shared between the kernel and application. This is done both
36 * for ordering purposes, but also to ensure that once a value is loaded from
37 * data that the application could potentially modify, it remains stable.
38 *
39 * Copyright (C) 2018-2019 Jens Axboe
Christoph Hellwigc992fe22019-01-11 09:43:02 -070040 * Copyright (c) 2018-2019 Christoph Hellwig
Jens Axboe2b188cc2019-01-07 10:46:33 -070041 */
42#include <linux/kernel.h>
43#include <linux/init.h>
44#include <linux/errno.h>
45#include <linux/syscalls.h>
46#include <linux/compat.h>
Jens Axboe52de1fe2020-02-27 10:15:42 -070047#include <net/compat.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070048#include <linux/refcount.h>
49#include <linux/uio.h>
Pavel Begunkov6b47ee62020-01-18 20:22:41 +030050#include <linux/bits.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070051
52#include <linux/sched/signal.h>
53#include <linux/fs.h>
54#include <linux/file.h>
55#include <linux/fdtable.h>
56#include <linux/mm.h>
57#include <linux/mman.h>
58#include <linux/mmu_context.h>
59#include <linux/percpu.h>
60#include <linux/slab.h>
Jens Axboe6c271ce2019-01-10 11:22:30 -070061#include <linux/kthread.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070062#include <linux/blkdev.h>
Jens Axboeedafcce2019-01-09 09:16:05 -070063#include <linux/bvec.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070064#include <linux/net.h>
65#include <net/sock.h>
66#include <net/af_unix.h>
Jens Axboe6b063142019-01-10 22:13:58 -070067#include <net/scm.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070068#include <linux/anon_inodes.h>
69#include <linux/sched/mm.h>
70#include <linux/uaccess.h>
71#include <linux/nospec.h>
Jens Axboeedafcce2019-01-09 09:16:05 -070072#include <linux/sizes.h>
73#include <linux/hugetlb.h>
Jens Axboeaa4c3962019-11-29 10:14:00 -070074#include <linux/highmem.h>
Jens Axboe15b71ab2019-12-11 11:20:36 -070075#include <linux/namei.h>
76#include <linux/fsnotify.h>
Jens Axboe4840e412019-12-25 22:03:45 -070077#include <linux/fadvise.h>
Jens Axboe3e4827b2020-01-08 15:18:09 -070078#include <linux/eventpoll.h>
Jens Axboeff002b32020-02-07 16:05:21 -070079#include <linux/fs_struct.h>
Pavel Begunkov7d67af22020-02-24 11:32:45 +030080#include <linux/splice.h>
Jens Axboeb41e9852020-02-17 09:52:41 -070081#include <linux/task_work.h>
Jens Axboe2b188cc2019-01-07 10:46:33 -070082
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +020083#define CREATE_TRACE_POINTS
84#include <trace/events/io_uring.h>
85
Jens Axboe2b188cc2019-01-07 10:46:33 -070086#include <uapi/linux/io_uring.h>
87
88#include "internal.h"
Jens Axboe561fb042019-10-24 07:25:42 -060089#include "io-wq.h"
Jens Axboe2b188cc2019-01-07 10:46:33 -070090
Daniel Xu5277dea2019-09-14 14:23:45 -070091#define IORING_MAX_ENTRIES 32768
Jens Axboe33a107f2019-10-04 12:10:03 -060092#define IORING_MAX_CQ_ENTRIES (2 * IORING_MAX_ENTRIES)
Jens Axboe65e19f52019-10-26 07:20:21 -060093
94/*
95 * Shift of 9 is 512 entries, or exactly one page on 64-bit archs
96 */
97#define IORING_FILE_TABLE_SHIFT 9
98#define IORING_MAX_FILES_TABLE (1U << IORING_FILE_TABLE_SHIFT)
99#define IORING_FILE_TABLE_MASK (IORING_MAX_FILES_TABLE - 1)
100#define IORING_MAX_FIXED_FILES (64 * IORING_MAX_FILES_TABLE)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700101
102struct io_uring {
103 u32 head ____cacheline_aligned_in_smp;
104 u32 tail ____cacheline_aligned_in_smp;
105};
106
Stefan Bühler1e84b972019-04-24 23:54:16 +0200107/*
Hristo Venev75b28af2019-08-26 17:23:46 +0000108 * This data is shared with the application through the mmap at offsets
109 * IORING_OFF_SQ_RING and IORING_OFF_CQ_RING.
Stefan Bühler1e84b972019-04-24 23:54:16 +0200110 *
111 * The offsets to the member fields are published through struct
112 * io_sqring_offsets when calling io_uring_setup.
113 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000114struct io_rings {
Stefan Bühler1e84b972019-04-24 23:54:16 +0200115 /*
116 * Head and tail offsets into the ring; the offsets need to be
117 * masked to get valid indices.
118 *
Hristo Venev75b28af2019-08-26 17:23:46 +0000119 * The kernel controls head of the sq ring and the tail of the cq ring,
120 * and the application controls tail of the sq ring and the head of the
121 * cq ring.
Stefan Bühler1e84b972019-04-24 23:54:16 +0200122 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000123 struct io_uring sq, cq;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200124 /*
Hristo Venev75b28af2019-08-26 17:23:46 +0000125 * Bitmasks to apply to head and tail offsets (constant, equals
Stefan Bühler1e84b972019-04-24 23:54:16 +0200126 * ring_entries - 1)
127 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000128 u32 sq_ring_mask, cq_ring_mask;
129 /* Ring sizes (constant, power of 2) */
130 u32 sq_ring_entries, cq_ring_entries;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200131 /*
132 * Number of invalid entries dropped by the kernel due to
133 * invalid index stored in array
134 *
135 * Written by the kernel, shouldn't be modified by the
136 * application (i.e. get number of "new events" by comparing to
137 * cached value).
138 *
139 * After a new SQ head value was read by the application this
140 * counter includes all submissions that were dropped reaching
141 * the new SQ head (and possibly more).
142 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000143 u32 sq_dropped;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200144 /*
145 * Runtime flags
146 *
147 * Written by the kernel, shouldn't be modified by the
148 * application.
149 *
150 * The application needs a full memory barrier before checking
151 * for IORING_SQ_NEED_WAKEUP after updating the sq tail.
152 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000153 u32 sq_flags;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200154 /*
155 * Number of completion events lost because the queue was full;
156 * this should be avoided by the application by making sure
LimingWu0b4295b2019-12-05 20:18:18 +0800157 * there are not more requests pending than there is space in
Stefan Bühler1e84b972019-04-24 23:54:16 +0200158 * the completion queue.
159 *
160 * Written by the kernel, shouldn't be modified by the
161 * application (i.e. get number of "new events" by comparing to
162 * cached value).
163 *
164 * As completion events come in out of order this counter is not
165 * ordered with any other data.
166 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000167 u32 cq_overflow;
Stefan Bühler1e84b972019-04-24 23:54:16 +0200168 /*
169 * Ring buffer of completion events.
170 *
171 * The kernel writes completion events fresh every time they are
172 * produced, so the application is allowed to modify pending
173 * entries.
174 */
Hristo Venev75b28af2019-08-26 17:23:46 +0000175 struct io_uring_cqe cqes[] ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700176};
177
Jens Axboeedafcce2019-01-09 09:16:05 -0700178struct io_mapped_ubuf {
179 u64 ubuf;
180 size_t len;
181 struct bio_vec *bvec;
182 unsigned int nr_bvecs;
183};
184
Jens Axboe65e19f52019-10-26 07:20:21 -0600185struct fixed_file_table {
186 struct file **files;
Jens Axboe31b51512019-01-18 22:56:34 -0700187};
188
Xiaoguang Wang05589552020-03-31 14:05:18 +0800189struct fixed_file_ref_node {
190 struct percpu_ref refs;
191 struct list_head node;
192 struct list_head file_list;
193 struct fixed_file_data *file_data;
194 struct work_struct work;
195};
196
Jens Axboe05f3fb32019-12-09 11:22:50 -0700197struct fixed_file_data {
198 struct fixed_file_table *table;
199 struct io_ring_ctx *ctx;
200
Xiaoguang Wang05589552020-03-31 14:05:18 +0800201 struct percpu_ref *cur_refs;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700202 struct percpu_ref refs;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700203 struct completion done;
Xiaoguang Wang05589552020-03-31 14:05:18 +0800204 struct list_head ref_list;
205 spinlock_t lock;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700206};
207
Jens Axboe5a2e7452020-02-23 16:23:11 -0700208struct io_buffer {
209 struct list_head list;
210 __u64 addr;
211 __s32 len;
212 __u16 bid;
213};
214
Jens Axboe2b188cc2019-01-07 10:46:33 -0700215struct io_ring_ctx {
216 struct {
217 struct percpu_ref refs;
218 } ____cacheline_aligned_in_smp;
219
220 struct {
221 unsigned int flags;
Randy Dunlape1d85332020-02-05 20:57:10 -0800222 unsigned int compat: 1;
223 unsigned int account_mem: 1;
224 unsigned int cq_overflow_flushed: 1;
225 unsigned int drain_next: 1;
226 unsigned int eventfd_async: 1;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700227
Hristo Venev75b28af2019-08-26 17:23:46 +0000228 /*
229 * Ring buffer of indices into array of io_uring_sqe, which is
230 * mmapped by the application using the IORING_OFF_SQES offset.
231 *
232 * This indirection could e.g. be used to assign fixed
233 * io_uring_sqe entries to operations and only submit them to
234 * the queue when needed.
235 *
236 * The kernel modifies neither the indices array nor the entries
237 * array.
238 */
239 u32 *sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700240 unsigned cached_sq_head;
241 unsigned sq_entries;
242 unsigned sq_mask;
Jens Axboe6c271ce2019-01-10 11:22:30 -0700243 unsigned sq_thread_idle;
Jens Axboe498ccd92019-10-25 10:04:25 -0600244 unsigned cached_sq_dropped;
Jens Axboe206aefd2019-11-07 18:27:42 -0700245 atomic_t cached_cq_overflow;
Jens Axboead3eb2c2019-12-18 17:12:20 -0700246 unsigned long sq_check_overflow;
Jens Axboede0617e2019-04-06 21:51:27 -0600247
248 struct list_head defer_list;
Jens Axboe5262f562019-09-17 12:26:57 -0600249 struct list_head timeout_list;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700250 struct list_head cq_overflow_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700251
Jens Axboefcb323c2019-10-24 12:39:47 -0600252 wait_queue_head_t inflight_wait;
Jens Axboead3eb2c2019-12-18 17:12:20 -0700253 struct io_uring_sqe *sq_sqes;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700254 } ____cacheline_aligned_in_smp;
255
Hristo Venev75b28af2019-08-26 17:23:46 +0000256 struct io_rings *rings;
257
Jens Axboe2b188cc2019-01-07 10:46:33 -0700258 /* IO offload */
Jens Axboe561fb042019-10-24 07:25:42 -0600259 struct io_wq *io_wq;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700260 struct task_struct *sqo_thread; /* if using sq thread polling */
261 struct mm_struct *sqo_mm;
262 wait_queue_head_t sqo_wait;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700263
Jens Axboe6b063142019-01-10 22:13:58 -0700264 /*
265 * If used, fixed file set. Writers must ensure that ->refs is dead,
266 * readers must ensure that ->refs is alive as long as the file* is
267 * used. Only updated through io_uring_register(2).
268 */
Jens Axboe05f3fb32019-12-09 11:22:50 -0700269 struct fixed_file_data *file_data;
Jens Axboe6b063142019-01-10 22:13:58 -0700270 unsigned nr_user_files;
Pavel Begunkovb14cca02020-01-17 04:45:59 +0300271 int ring_fd;
272 struct file *ring_file;
Jens Axboe6b063142019-01-10 22:13:58 -0700273
Jens Axboeedafcce2019-01-09 09:16:05 -0700274 /* if used, fixed mapped user buffers */
275 unsigned nr_user_bufs;
276 struct io_mapped_ubuf *user_bufs;
277
Jens Axboe2b188cc2019-01-07 10:46:33 -0700278 struct user_struct *user;
279
Jens Axboe0b8c0ec2019-12-02 08:50:00 -0700280 const struct cred *creds;
Jens Axboe181e4482019-11-25 08:52:30 -0700281
Jens Axboe206aefd2019-11-07 18:27:42 -0700282 /* 0 is for ctx quiesce/reinit/free, 1 is for sqo_thread started */
283 struct completion *completions;
284
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700285 /* if all else fails... */
286 struct io_kiocb *fallback_req;
287
Jens Axboe206aefd2019-11-07 18:27:42 -0700288#if defined(CONFIG_UNIX)
289 struct socket *ring_sock;
290#endif
291
Jens Axboe5a2e7452020-02-23 16:23:11 -0700292 struct idr io_buffer_idr;
293
Jens Axboe071698e2020-01-28 10:04:42 -0700294 struct idr personality_idr;
295
Jens Axboe206aefd2019-11-07 18:27:42 -0700296 struct {
297 unsigned cached_cq_tail;
298 unsigned cq_entries;
299 unsigned cq_mask;
300 atomic_t cq_timeouts;
Jens Axboead3eb2c2019-12-18 17:12:20 -0700301 unsigned long cq_check_overflow;
Jens Axboe206aefd2019-11-07 18:27:42 -0700302 struct wait_queue_head cq_wait;
303 struct fasync_struct *cq_fasync;
304 struct eventfd_ctx *cq_ev_fd;
305 } ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700306
307 struct {
308 struct mutex uring_lock;
309 wait_queue_head_t wait;
310 } ____cacheline_aligned_in_smp;
311
312 struct {
313 spinlock_t completion_lock;
Jens Axboee94f1412019-12-19 12:06:02 -0700314
Jens Axboedef596e2019-01-09 08:59:42 -0700315 /*
316 * ->poll_list is protected by the ctx->uring_lock for
317 * io_uring instances that don't use IORING_SETUP_SQPOLL.
318 * For SQPOLL, only the single threaded io_sq_thread() will
319 * manipulate the list, hence no extra locking is needed there.
320 */
321 struct list_head poll_list;
Jens Axboe78076bb2019-12-04 19:56:40 -0700322 struct hlist_head *cancel_hash;
323 unsigned cancel_hash_bits;
Jens Axboee94f1412019-12-19 12:06:02 -0700324 bool poll_multi_file;
Jens Axboefcb323c2019-10-24 12:39:47 -0600325
326 spinlock_t inflight_lock;
327 struct list_head inflight_list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700328 } ____cacheline_aligned_in_smp;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700329};
330
Jens Axboe09bb8392019-03-13 12:39:28 -0600331/*
332 * First field must be the file pointer in all the
333 * iocb unions! See also 'struct kiocb' in <linux/fs.h>
334 */
Jens Axboe221c5eb2019-01-17 09:41:58 -0700335struct io_poll_iocb {
336 struct file *file;
Jens Axboe0969e782019-12-17 18:40:57 -0700337 union {
338 struct wait_queue_head *head;
339 u64 addr;
340 };
Jens Axboe221c5eb2019-01-17 09:41:58 -0700341 __poll_t events;
Jens Axboe8c838782019-03-12 15:48:16 -0600342 bool done;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700343 bool canceled;
Jens Axboe392edb42019-12-09 17:52:20 -0700344 struct wait_queue_entry wait;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700345};
346
Jens Axboeb5dba592019-12-11 14:02:38 -0700347struct io_close {
348 struct file *file;
349 struct file *put_file;
350 int fd;
351};
352
Jens Axboead8a48a2019-11-15 08:49:11 -0700353struct io_timeout_data {
354 struct io_kiocb *req;
355 struct hrtimer timer;
356 struct timespec64 ts;
357 enum hrtimer_mode mode;
Pavel Begunkovcc42e0a2019-11-25 23:14:38 +0300358 u32 seq_offset;
Jens Axboead8a48a2019-11-15 08:49:11 -0700359};
360
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700361struct io_accept {
362 struct file *file;
363 struct sockaddr __user *addr;
364 int __user *addr_len;
365 int flags;
Jens Axboe09952e32020-03-19 20:16:56 -0600366 unsigned long nofile;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700367};
368
369struct io_sync {
370 struct file *file;
371 loff_t len;
372 loff_t off;
373 int flags;
Jens Axboed63d1b52019-12-10 10:38:56 -0700374 int mode;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700375};
376
Jens Axboefbf23842019-12-17 18:45:56 -0700377struct io_cancel {
378 struct file *file;
379 u64 addr;
380};
381
Jens Axboeb29472e2019-12-17 18:50:29 -0700382struct io_timeout {
383 struct file *file;
384 u64 addr;
385 int flags;
Jens Axboe26a61672019-12-20 09:02:01 -0700386 unsigned count;
Jens Axboeb29472e2019-12-17 18:50:29 -0700387};
388
Jens Axboe9adbd452019-12-20 08:45:55 -0700389struct io_rw {
390 /* NOTE: kiocb has the file as the first member, so don't do it here */
391 struct kiocb kiocb;
392 u64 addr;
393 u64 len;
394};
395
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700396struct io_connect {
397 struct file *file;
398 struct sockaddr __user *addr;
399 int addr_len;
400};
401
Jens Axboee47293f2019-12-20 08:58:21 -0700402struct io_sr_msg {
403 struct file *file;
Jens Axboefddafac2020-01-04 20:19:44 -0700404 union {
405 struct user_msghdr __user *msg;
406 void __user *buf;
407 };
Jens Axboee47293f2019-12-20 08:58:21 -0700408 int msg_flags;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700409 int bgid;
Jens Axboefddafac2020-01-04 20:19:44 -0700410 size_t len;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700411 struct io_buffer *kbuf;
Jens Axboee47293f2019-12-20 08:58:21 -0700412};
413
Jens Axboe15b71ab2019-12-11 11:20:36 -0700414struct io_open {
415 struct file *file;
416 int dfd;
Jens Axboeeddc7ef2019-12-13 21:18:10 -0700417 union {
Jens Axboeeddc7ef2019-12-13 21:18:10 -0700418 unsigned mask;
419 };
Jens Axboe15b71ab2019-12-11 11:20:36 -0700420 struct filename *filename;
Jens Axboeeddc7ef2019-12-13 21:18:10 -0700421 struct statx __user *buffer;
Jens Axboec12cedf2020-01-08 17:41:21 -0700422 struct open_how how;
Jens Axboe4022e7a2020-03-19 19:23:18 -0600423 unsigned long nofile;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700424};
425
Jens Axboe05f3fb32019-12-09 11:22:50 -0700426struct io_files_update {
427 struct file *file;
428 u64 arg;
429 u32 nr_args;
430 u32 offset;
431};
432
Jens Axboe4840e412019-12-25 22:03:45 -0700433struct io_fadvise {
434 struct file *file;
435 u64 offset;
436 u32 len;
437 u32 advice;
438};
439
Jens Axboec1ca7572019-12-25 22:18:28 -0700440struct io_madvise {
441 struct file *file;
442 u64 addr;
443 u32 len;
444 u32 advice;
445};
446
Jens Axboe3e4827b2020-01-08 15:18:09 -0700447struct io_epoll {
448 struct file *file;
449 int epfd;
450 int op;
451 int fd;
452 struct epoll_event event;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700453};
454
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300455struct io_splice {
456 struct file *file_out;
457 struct file *file_in;
458 loff_t off_out;
459 loff_t off_in;
460 u64 len;
461 unsigned int flags;
462};
463
Jens Axboeddf0322d2020-02-23 16:41:33 -0700464struct io_provide_buf {
465 struct file *file;
466 __u64 addr;
467 __s32 len;
468 __u32 bgid;
469 __u16 nbufs;
470 __u16 bid;
471};
472
Jens Axboef499a022019-12-02 16:28:46 -0700473struct io_async_connect {
474 struct sockaddr_storage address;
475};
476
Jens Axboe03b12302019-12-02 18:50:25 -0700477struct io_async_msghdr {
478 struct iovec fast_iov[UIO_FASTIOV];
479 struct iovec *iov;
480 struct sockaddr __user *uaddr;
481 struct msghdr msg;
Jens Axboeb5379162020-02-09 11:29:15 -0700482 struct sockaddr_storage addr;
Jens Axboe03b12302019-12-02 18:50:25 -0700483};
484
Jens Axboef67676d2019-12-02 11:03:47 -0700485struct io_async_rw {
486 struct iovec fast_iov[UIO_FASTIOV];
487 struct iovec *iov;
488 ssize_t nr_segs;
489 ssize_t size;
490};
491
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700492struct io_async_ctx {
Jens Axboef67676d2019-12-02 11:03:47 -0700493 union {
494 struct io_async_rw rw;
Jens Axboe03b12302019-12-02 18:50:25 -0700495 struct io_async_msghdr msg;
Jens Axboef499a022019-12-02 16:28:46 -0700496 struct io_async_connect connect;
Jens Axboe2d283902019-12-04 11:08:05 -0700497 struct io_timeout_data timeout;
Jens Axboef67676d2019-12-02 11:03:47 -0700498 };
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700499};
500
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300501enum {
502 REQ_F_FIXED_FILE_BIT = IOSQE_FIXED_FILE_BIT,
503 REQ_F_IO_DRAIN_BIT = IOSQE_IO_DRAIN_BIT,
504 REQ_F_LINK_BIT = IOSQE_IO_LINK_BIT,
505 REQ_F_HARDLINK_BIT = IOSQE_IO_HARDLINK_BIT,
506 REQ_F_FORCE_ASYNC_BIT = IOSQE_ASYNC_BIT,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700507 REQ_F_BUFFER_SELECT_BIT = IOSQE_BUFFER_SELECT_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300508
509 REQ_F_LINK_NEXT_BIT,
510 REQ_F_FAIL_LINK_BIT,
511 REQ_F_INFLIGHT_BIT,
512 REQ_F_CUR_POS_BIT,
513 REQ_F_NOWAIT_BIT,
514 REQ_F_IOPOLL_COMPLETED_BIT,
515 REQ_F_LINK_TIMEOUT_BIT,
516 REQ_F_TIMEOUT_BIT,
517 REQ_F_ISREG_BIT,
518 REQ_F_MUST_PUNT_BIT,
519 REQ_F_TIMEOUT_NOSEQ_BIT,
520 REQ_F_COMP_LOCKED_BIT,
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300521 REQ_F_NEED_CLEANUP_BIT,
Jens Axboe2ca10252020-02-13 17:17:35 -0700522 REQ_F_OVERFLOW_BIT,
Jens Axboed7718a92020-02-14 22:23:12 -0700523 REQ_F_POLLED_BIT,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700524 REQ_F_BUFFER_SELECTED_BIT,
Jens Axboe84557872020-03-03 15:28:17 -0700525
526 /* not a real bit, just to check we're not overflowing the space */
527 __REQ_F_LAST_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300528};
529
530enum {
531 /* ctx owns file */
532 REQ_F_FIXED_FILE = BIT(REQ_F_FIXED_FILE_BIT),
533 /* drain existing IO first */
534 REQ_F_IO_DRAIN = BIT(REQ_F_IO_DRAIN_BIT),
535 /* linked sqes */
536 REQ_F_LINK = BIT(REQ_F_LINK_BIT),
537 /* doesn't sever on completion < 0 */
538 REQ_F_HARDLINK = BIT(REQ_F_HARDLINK_BIT),
539 /* IOSQE_ASYNC */
540 REQ_F_FORCE_ASYNC = BIT(REQ_F_FORCE_ASYNC_BIT),
Jens Axboebcda7ba2020-02-23 16:42:51 -0700541 /* IOSQE_BUFFER_SELECT */
542 REQ_F_BUFFER_SELECT = BIT(REQ_F_BUFFER_SELECT_BIT),
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300543
544 /* already grabbed next link */
545 REQ_F_LINK_NEXT = BIT(REQ_F_LINK_NEXT_BIT),
546 /* fail rest of links */
547 REQ_F_FAIL_LINK = BIT(REQ_F_FAIL_LINK_BIT),
548 /* on inflight list */
549 REQ_F_INFLIGHT = BIT(REQ_F_INFLIGHT_BIT),
550 /* read/write uses file position */
551 REQ_F_CUR_POS = BIT(REQ_F_CUR_POS_BIT),
552 /* must not punt to workers */
553 REQ_F_NOWAIT = BIT(REQ_F_NOWAIT_BIT),
554 /* polled IO has completed */
555 REQ_F_IOPOLL_COMPLETED = BIT(REQ_F_IOPOLL_COMPLETED_BIT),
556 /* has linked timeout */
557 REQ_F_LINK_TIMEOUT = BIT(REQ_F_LINK_TIMEOUT_BIT),
558 /* timeout request */
559 REQ_F_TIMEOUT = BIT(REQ_F_TIMEOUT_BIT),
560 /* regular file */
561 REQ_F_ISREG = BIT(REQ_F_ISREG_BIT),
562 /* must be punted even for NONBLOCK */
563 REQ_F_MUST_PUNT = BIT(REQ_F_MUST_PUNT_BIT),
564 /* no timeout sequence */
565 REQ_F_TIMEOUT_NOSEQ = BIT(REQ_F_TIMEOUT_NOSEQ_BIT),
566 /* completion under lock */
567 REQ_F_COMP_LOCKED = BIT(REQ_F_COMP_LOCKED_BIT),
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300568 /* needs cleanup */
569 REQ_F_NEED_CLEANUP = BIT(REQ_F_NEED_CLEANUP_BIT),
Jens Axboe2ca10252020-02-13 17:17:35 -0700570 /* in overflow list */
571 REQ_F_OVERFLOW = BIT(REQ_F_OVERFLOW_BIT),
Jens Axboed7718a92020-02-14 22:23:12 -0700572 /* already went through poll handler */
573 REQ_F_POLLED = BIT(REQ_F_POLLED_BIT),
Jens Axboebcda7ba2020-02-23 16:42:51 -0700574 /* buffer already selected */
575 REQ_F_BUFFER_SELECTED = BIT(REQ_F_BUFFER_SELECTED_BIT),
Jens Axboed7718a92020-02-14 22:23:12 -0700576};
577
578struct async_poll {
579 struct io_poll_iocb poll;
580 struct io_wq_work work;
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300581};
582
Jens Axboe09bb8392019-03-13 12:39:28 -0600583/*
584 * NOTE! Each of the iocb union members has the file pointer
585 * as the first entry in their struct definition. So you can
586 * access the file pointer through any of the sub-structs,
587 * or directly as just 'ki_filp' in this struct.
588 */
Jens Axboe2b188cc2019-01-07 10:46:33 -0700589struct io_kiocb {
Jens Axboe221c5eb2019-01-17 09:41:58 -0700590 union {
Jens Axboe09bb8392019-03-13 12:39:28 -0600591 struct file *file;
Jens Axboe9adbd452019-12-20 08:45:55 -0700592 struct io_rw rw;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700593 struct io_poll_iocb poll;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700594 struct io_accept accept;
595 struct io_sync sync;
Jens Axboefbf23842019-12-17 18:45:56 -0700596 struct io_cancel cancel;
Jens Axboeb29472e2019-12-17 18:50:29 -0700597 struct io_timeout timeout;
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700598 struct io_connect connect;
Jens Axboee47293f2019-12-20 08:58:21 -0700599 struct io_sr_msg sr_msg;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700600 struct io_open open;
Jens Axboeb5dba592019-12-11 14:02:38 -0700601 struct io_close close;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700602 struct io_files_update files_update;
Jens Axboe4840e412019-12-25 22:03:45 -0700603 struct io_fadvise fadvise;
Jens Axboec1ca7572019-12-25 22:18:28 -0700604 struct io_madvise madvise;
Jens Axboe3e4827b2020-01-08 15:18:09 -0700605 struct io_epoll epoll;
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300606 struct io_splice splice;
Jens Axboeddf0322d2020-02-23 16:41:33 -0700607 struct io_provide_buf pbuf;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700608 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700609
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700610 struct io_async_ctx *io;
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +0300611 bool needs_fixed_file;
Jens Axboed625c6e2019-12-17 19:53:05 -0700612 u8 opcode;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700613
614 struct io_ring_ctx *ctx;
Jens Axboed7718a92020-02-14 22:23:12 -0700615 struct list_head list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700616 unsigned int flags;
Jens Axboec16361c2019-01-17 08:39:48 -0700617 refcount_t refs;
Jens Axboe3537b6a2020-04-03 11:19:06 -0600618 struct task_struct *task;
619 unsigned long fsize;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700620 u64 user_data;
Jens Axboe9e645e112019-05-10 16:07:28 -0600621 u32 result;
Jens Axboede0617e2019-04-06 21:51:27 -0600622 u32 sequence;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700623
Jens Axboed7718a92020-02-14 22:23:12 -0700624 struct list_head link_list;
625
Jens Axboefcb323c2019-10-24 12:39:47 -0600626 struct list_head inflight_entry;
627
Xiaoguang Wang05589552020-03-31 14:05:18 +0800628 struct percpu_ref *fixed_file_refs;
629
Jens Axboeb41e9852020-02-17 09:52:41 -0700630 union {
631 /*
632 * Only commands that never go async can use the below fields,
Jens Axboed7718a92020-02-14 22:23:12 -0700633 * obviously. Right now only IORING_OP_POLL_ADD uses them, and
634 * async armed poll handlers for regular commands. The latter
635 * restore the work, if needed.
Jens Axboeb41e9852020-02-17 09:52:41 -0700636 */
637 struct {
Jens Axboeb41e9852020-02-17 09:52:41 -0700638 struct callback_head task_work;
Jens Axboed7718a92020-02-14 22:23:12 -0700639 struct hlist_node hash_node;
640 struct async_poll *apoll;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700641 int cflags;
Jens Axboeb41e9852020-02-17 09:52:41 -0700642 };
643 struct io_wq_work work;
644 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700645};
646
647#define IO_PLUG_THRESHOLD 2
Jens Axboedef596e2019-01-09 08:59:42 -0700648#define IO_IOPOLL_BATCH 8
Jens Axboe2b188cc2019-01-07 10:46:33 -0700649
Jens Axboe9a56a232019-01-09 09:06:50 -0700650struct io_submit_state {
651 struct blk_plug plug;
652
653 /*
Jens Axboe2579f912019-01-09 09:10:43 -0700654 * io_kiocb alloc cache
655 */
656 void *reqs[IO_IOPOLL_BATCH];
Pavel Begunkov6c8a3132020-02-01 03:58:00 +0300657 unsigned int free_reqs;
Jens Axboe2579f912019-01-09 09:10:43 -0700658
659 /*
Jens Axboe9a56a232019-01-09 09:06:50 -0700660 * File reference cache
661 */
662 struct file *file;
663 unsigned int fd;
664 unsigned int has_refs;
665 unsigned int used_refs;
666 unsigned int ios_left;
667};
668
Jens Axboed3656342019-12-18 09:50:26 -0700669struct io_op_def {
670 /* needs req->io allocated for deferral/async */
671 unsigned async_ctx : 1;
672 /* needs current->mm setup, does mm access */
673 unsigned needs_mm : 1;
674 /* needs req->file assigned */
675 unsigned needs_file : 1;
676 /* needs req->file assigned IFF fd is >= 0 */
677 unsigned fd_non_neg : 1;
678 /* hash wq insertion if file is a regular file */
679 unsigned hash_reg_file : 1;
680 /* unbound wq insertion if file is a non-regular file */
681 unsigned unbound_nonreg_file : 1;
Jens Axboe66f4af92020-01-16 15:36:52 -0700682 /* opcode is not supported by this kernel */
683 unsigned not_supported : 1;
Jens Axboef86cd202020-01-29 13:46:44 -0700684 /* needs file table */
685 unsigned file_table : 1;
Jens Axboeff002b32020-02-07 16:05:21 -0700686 /* needs ->fs */
687 unsigned needs_fs : 1;
Jens Axboe8a727582020-02-20 09:59:44 -0700688 /* set if opcode supports polled "wait" */
689 unsigned pollin : 1;
690 unsigned pollout : 1;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700691 /* op supports buffer selection */
692 unsigned buffer_select : 1;
Jens Axboed3656342019-12-18 09:50:26 -0700693};
694
695static const struct io_op_def io_op_defs[] = {
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300696 [IORING_OP_NOP] = {},
697 [IORING_OP_READV] = {
Jens Axboed3656342019-12-18 09:50:26 -0700698 .async_ctx = 1,
699 .needs_mm = 1,
700 .needs_file = 1,
701 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700702 .pollin = 1,
Jens Axboe4d954c22020-02-27 07:31:19 -0700703 .buffer_select = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700704 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300705 [IORING_OP_WRITEV] = {
Jens Axboed3656342019-12-18 09:50:26 -0700706 .async_ctx = 1,
707 .needs_mm = 1,
708 .needs_file = 1,
709 .hash_reg_file = 1,
710 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700711 .pollout = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700712 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300713 [IORING_OP_FSYNC] = {
Jens Axboed3656342019-12-18 09:50:26 -0700714 .needs_file = 1,
715 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300716 [IORING_OP_READ_FIXED] = {
Jens Axboed3656342019-12-18 09:50:26 -0700717 .needs_file = 1,
718 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700719 .pollin = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700720 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300721 [IORING_OP_WRITE_FIXED] = {
Jens Axboed3656342019-12-18 09:50:26 -0700722 .needs_file = 1,
723 .hash_reg_file = 1,
724 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700725 .pollout = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700726 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300727 [IORING_OP_POLL_ADD] = {
Jens Axboed3656342019-12-18 09:50:26 -0700728 .needs_file = 1,
729 .unbound_nonreg_file = 1,
730 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300731 [IORING_OP_POLL_REMOVE] = {},
732 [IORING_OP_SYNC_FILE_RANGE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700733 .needs_file = 1,
734 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300735 [IORING_OP_SENDMSG] = {
Jens Axboed3656342019-12-18 09:50:26 -0700736 .async_ctx = 1,
737 .needs_mm = 1,
738 .needs_file = 1,
739 .unbound_nonreg_file = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700740 .needs_fs = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700741 .pollout = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700742 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300743 [IORING_OP_RECVMSG] = {
Jens Axboed3656342019-12-18 09:50:26 -0700744 .async_ctx = 1,
745 .needs_mm = 1,
746 .needs_file = 1,
747 .unbound_nonreg_file = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700748 .needs_fs = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700749 .pollin = 1,
Jens Axboe52de1fe2020-02-27 10:15:42 -0700750 .buffer_select = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700751 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300752 [IORING_OP_TIMEOUT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700753 .async_ctx = 1,
754 .needs_mm = 1,
755 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300756 [IORING_OP_TIMEOUT_REMOVE] = {},
757 [IORING_OP_ACCEPT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700758 .needs_mm = 1,
759 .needs_file = 1,
760 .unbound_nonreg_file = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700761 .file_table = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700762 .pollin = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700763 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300764 [IORING_OP_ASYNC_CANCEL] = {},
765 [IORING_OP_LINK_TIMEOUT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700766 .async_ctx = 1,
767 .needs_mm = 1,
768 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300769 [IORING_OP_CONNECT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700770 .async_ctx = 1,
771 .needs_mm = 1,
772 .needs_file = 1,
773 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700774 .pollout = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700775 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300776 [IORING_OP_FALLOCATE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700777 .needs_file = 1,
778 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300779 [IORING_OP_OPENAT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700780 .needs_file = 1,
781 .fd_non_neg = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700782 .file_table = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700783 .needs_fs = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700784 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300785 [IORING_OP_CLOSE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700786 .needs_file = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700787 .file_table = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700788 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300789 [IORING_OP_FILES_UPDATE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700790 .needs_mm = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700791 .file_table = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700792 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300793 [IORING_OP_STATX] = {
Jens Axboed3656342019-12-18 09:50:26 -0700794 .needs_mm = 1,
795 .needs_file = 1,
796 .fd_non_neg = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700797 .needs_fs = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700798 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300799 [IORING_OP_READ] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -0700800 .needs_mm = 1,
801 .needs_file = 1,
802 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700803 .pollin = 1,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700804 .buffer_select = 1,
Jens Axboe3a6820f2019-12-22 15:19:35 -0700805 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300806 [IORING_OP_WRITE] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -0700807 .needs_mm = 1,
808 .needs_file = 1,
809 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700810 .pollout = 1,
Jens Axboe3a6820f2019-12-22 15:19:35 -0700811 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300812 [IORING_OP_FADVISE] = {
Jens Axboe4840e412019-12-25 22:03:45 -0700813 .needs_file = 1,
814 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300815 [IORING_OP_MADVISE] = {
Jens Axboec1ca7572019-12-25 22:18:28 -0700816 .needs_mm = 1,
817 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300818 [IORING_OP_SEND] = {
Jens Axboefddafac2020-01-04 20:19:44 -0700819 .needs_mm = 1,
820 .needs_file = 1,
821 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700822 .pollout = 1,
Jens Axboefddafac2020-01-04 20:19:44 -0700823 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300824 [IORING_OP_RECV] = {
Jens Axboefddafac2020-01-04 20:19:44 -0700825 .needs_mm = 1,
826 .needs_file = 1,
827 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700828 .pollin = 1,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700829 .buffer_select = 1,
Jens Axboefddafac2020-01-04 20:19:44 -0700830 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300831 [IORING_OP_OPENAT2] = {
Jens Axboecebdb982020-01-08 17:59:24 -0700832 .needs_file = 1,
833 .fd_non_neg = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700834 .file_table = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700835 .needs_fs = 1,
Jens Axboecebdb982020-01-08 17:59:24 -0700836 },
Jens Axboe3e4827b2020-01-08 15:18:09 -0700837 [IORING_OP_EPOLL_CTL] = {
838 .unbound_nonreg_file = 1,
839 .file_table = 1,
840 },
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300841 [IORING_OP_SPLICE] = {
842 .needs_file = 1,
843 .hash_reg_file = 1,
844 .unbound_nonreg_file = 1,
Jens Axboeddf0322d2020-02-23 16:41:33 -0700845 },
846 [IORING_OP_PROVIDE_BUFFERS] = {},
Jens Axboe067524e2020-03-02 16:32:28 -0700847 [IORING_OP_REMOVE_BUFFERS] = {},
Jens Axboed3656342019-12-18 09:50:26 -0700848};
849
Jens Axboe561fb042019-10-24 07:25:42 -0600850static void io_wq_submit_work(struct io_wq_work **workptr);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700851static void io_cqring_fill_event(struct io_kiocb *req, long res);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800852static void io_put_req(struct io_kiocb *req);
Jens Axboe978db572019-11-14 22:39:04 -0700853static void __io_double_put_req(struct io_kiocb *req);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700854static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req);
855static void io_queue_linked_timeout(struct io_kiocb *req);
Jens Axboe05f3fb32019-12-09 11:22:50 -0700856static int __io_sqe_files_update(struct io_ring_ctx *ctx,
857 struct io_uring_files_update *ip,
858 unsigned nr_args);
Jens Axboef86cd202020-01-29 13:46:44 -0700859static int io_grab_files(struct io_kiocb *req);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300860static void io_cleanup_req(struct io_kiocb *req);
Jens Axboeb41e9852020-02-17 09:52:41 -0700861static int io_file_get(struct io_submit_state *state, struct io_kiocb *req,
862 int fd, struct file **out_file, bool fixed);
863static void __io_queue_sqe(struct io_kiocb *req,
864 const struct io_uring_sqe *sqe);
Jens Axboede0617e2019-04-06 21:51:27 -0600865
Jens Axboe2b188cc2019-01-07 10:46:33 -0700866static struct kmem_cache *req_cachep;
867
868static const struct file_operations io_uring_fops;
869
870struct sock *io_uring_get_socket(struct file *file)
871{
872#if defined(CONFIG_UNIX)
873 if (file->f_op == &io_uring_fops) {
874 struct io_ring_ctx *ctx = file->private_data;
875
876 return ctx->ring_sock->sk;
877 }
878#endif
879 return NULL;
880}
881EXPORT_SYMBOL(io_uring_get_socket);
882
883static void io_ring_ctx_ref_free(struct percpu_ref *ref)
884{
885 struct io_ring_ctx *ctx = container_of(ref, struct io_ring_ctx, refs);
886
Jens Axboe206aefd2019-11-07 18:27:42 -0700887 complete(&ctx->completions[0]);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700888}
889
890static struct io_ring_ctx *io_ring_ctx_alloc(struct io_uring_params *p)
891{
892 struct io_ring_ctx *ctx;
Jens Axboe78076bb2019-12-04 19:56:40 -0700893 int hash_bits;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700894
895 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
896 if (!ctx)
897 return NULL;
898
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700899 ctx->fallback_req = kmem_cache_alloc(req_cachep, GFP_KERNEL);
900 if (!ctx->fallback_req)
901 goto err;
902
Jens Axboe206aefd2019-11-07 18:27:42 -0700903 ctx->completions = kmalloc(2 * sizeof(struct completion), GFP_KERNEL);
904 if (!ctx->completions)
905 goto err;
906
Jens Axboe78076bb2019-12-04 19:56:40 -0700907 /*
908 * Use 5 bits less than the max cq entries, that should give us around
909 * 32 entries per hash list if totally full and uniformly spread.
910 */
911 hash_bits = ilog2(p->cq_entries);
912 hash_bits -= 5;
913 if (hash_bits <= 0)
914 hash_bits = 1;
915 ctx->cancel_hash_bits = hash_bits;
916 ctx->cancel_hash = kmalloc((1U << hash_bits) * sizeof(struct hlist_head),
917 GFP_KERNEL);
918 if (!ctx->cancel_hash)
919 goto err;
920 __hash_init(ctx->cancel_hash, 1U << hash_bits);
921
Roman Gushchin21482892019-05-07 10:01:48 -0700922 if (percpu_ref_init(&ctx->refs, io_ring_ctx_ref_free,
Jens Axboe206aefd2019-11-07 18:27:42 -0700923 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL))
924 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700925
926 ctx->flags = p->flags;
927 init_waitqueue_head(&ctx->cq_wait);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700928 INIT_LIST_HEAD(&ctx->cq_overflow_list);
Jens Axboe206aefd2019-11-07 18:27:42 -0700929 init_completion(&ctx->completions[0]);
930 init_completion(&ctx->completions[1]);
Jens Axboe5a2e7452020-02-23 16:23:11 -0700931 idr_init(&ctx->io_buffer_idr);
Jens Axboe071698e2020-01-28 10:04:42 -0700932 idr_init(&ctx->personality_idr);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700933 mutex_init(&ctx->uring_lock);
934 init_waitqueue_head(&ctx->wait);
935 spin_lock_init(&ctx->completion_lock);
Jens Axboedef596e2019-01-09 08:59:42 -0700936 INIT_LIST_HEAD(&ctx->poll_list);
Jens Axboede0617e2019-04-06 21:51:27 -0600937 INIT_LIST_HEAD(&ctx->defer_list);
Jens Axboe5262f562019-09-17 12:26:57 -0600938 INIT_LIST_HEAD(&ctx->timeout_list);
Jens Axboefcb323c2019-10-24 12:39:47 -0600939 init_waitqueue_head(&ctx->inflight_wait);
940 spin_lock_init(&ctx->inflight_lock);
941 INIT_LIST_HEAD(&ctx->inflight_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700942 return ctx;
Jens Axboe206aefd2019-11-07 18:27:42 -0700943err:
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700944 if (ctx->fallback_req)
945 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe206aefd2019-11-07 18:27:42 -0700946 kfree(ctx->completions);
Jens Axboe78076bb2019-12-04 19:56:40 -0700947 kfree(ctx->cancel_hash);
Jens Axboe206aefd2019-11-07 18:27:42 -0700948 kfree(ctx);
949 return NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700950}
951
Bob Liu9d858b22019-11-13 18:06:25 +0800952static inline bool __req_need_defer(struct io_kiocb *req)
Jens Axboede0617e2019-04-06 21:51:27 -0600953{
Jackie Liua197f662019-11-08 08:09:12 -0700954 struct io_ring_ctx *ctx = req->ctx;
955
Jens Axboe498ccd92019-10-25 10:04:25 -0600956 return req->sequence != ctx->cached_cq_tail + ctx->cached_sq_dropped
957 + atomic_read(&ctx->cached_cq_overflow);
Jens Axboede0617e2019-04-06 21:51:27 -0600958}
959
Bob Liu9d858b22019-11-13 18:06:25 +0800960static inline bool req_need_defer(struct io_kiocb *req)
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600961{
Pavel Begunkov87987892020-01-18 01:22:30 +0300962 if (unlikely(req->flags & REQ_F_IO_DRAIN))
Bob Liu9d858b22019-11-13 18:06:25 +0800963 return __req_need_defer(req);
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600964
Bob Liu9d858b22019-11-13 18:06:25 +0800965 return false;
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600966}
967
968static struct io_kiocb *io_get_deferred_req(struct io_ring_ctx *ctx)
Jens Axboede0617e2019-04-06 21:51:27 -0600969{
970 struct io_kiocb *req;
971
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600972 req = list_first_entry_or_null(&ctx->defer_list, struct io_kiocb, list);
Bob Liu9d858b22019-11-13 18:06:25 +0800973 if (req && !req_need_defer(req)) {
Jens Axboede0617e2019-04-06 21:51:27 -0600974 list_del_init(&req->list);
975 return req;
976 }
977
978 return NULL;
979}
980
Jens Axboe5262f562019-09-17 12:26:57 -0600981static struct io_kiocb *io_get_timeout_req(struct io_ring_ctx *ctx)
982{
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600983 struct io_kiocb *req;
984
985 req = list_first_entry_or_null(&ctx->timeout_list, struct io_kiocb, list);
Jens Axboe93bd25b2019-11-11 23:34:31 -0700986 if (req) {
987 if (req->flags & REQ_F_TIMEOUT_NOSEQ)
988 return NULL;
Linus Torvaldsfb4b3d32019-11-25 10:40:27 -0800989 if (!__req_need_defer(req)) {
Jens Axboe93bd25b2019-11-11 23:34:31 -0700990 list_del_init(&req->list);
991 return req;
992 }
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600993 }
994
995 return NULL;
Jens Axboe5262f562019-09-17 12:26:57 -0600996}
997
Jens Axboede0617e2019-04-06 21:51:27 -0600998static void __io_commit_cqring(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -0700999{
Hristo Venev75b28af2019-08-26 17:23:46 +00001000 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001001
Pavel Begunkov07910152020-01-17 03:52:46 +03001002 /* order cqe stores with ring update */
1003 smp_store_release(&rings->cq.tail, ctx->cached_cq_tail);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001004
Pavel Begunkov07910152020-01-17 03:52:46 +03001005 if (wq_has_sleeper(&ctx->cq_wait)) {
1006 wake_up_interruptible(&ctx->cq_wait);
1007 kill_fasync(&ctx->cq_fasync, SIGIO, POLL_IN);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001008 }
1009}
1010
Jens Axboecccf0ee2020-01-27 16:34:48 -07001011static inline void io_req_work_grab_env(struct io_kiocb *req,
1012 const struct io_op_def *def)
Jens Axboe18d9be12019-09-10 09:13:05 -06001013{
Jens Axboecccf0ee2020-01-27 16:34:48 -07001014 if (!req->work.mm && def->needs_mm) {
1015 mmgrab(current->mm);
1016 req->work.mm = current->mm;
1017 }
1018 if (!req->work.creds)
1019 req->work.creds = get_current_cred();
Jens Axboeff002b32020-02-07 16:05:21 -07001020 if (!req->work.fs && def->needs_fs) {
1021 spin_lock(&current->fs->lock);
1022 if (!current->fs->in_exec) {
1023 req->work.fs = current->fs;
1024 req->work.fs->users++;
1025 } else {
1026 req->work.flags |= IO_WQ_WORK_CANCEL;
1027 }
1028 spin_unlock(&current->fs->lock);
1029 }
Jens Axboe6ab23142020-02-08 20:23:59 -07001030 if (!req->work.task_pid)
1031 req->work.task_pid = task_pid_vnr(current);
Jens Axboecccf0ee2020-01-27 16:34:48 -07001032}
1033
1034static inline void io_req_work_drop_env(struct io_kiocb *req)
1035{
1036 if (req->work.mm) {
1037 mmdrop(req->work.mm);
1038 req->work.mm = NULL;
1039 }
1040 if (req->work.creds) {
1041 put_cred(req->work.creds);
1042 req->work.creds = NULL;
1043 }
Jens Axboeff002b32020-02-07 16:05:21 -07001044 if (req->work.fs) {
1045 struct fs_struct *fs = req->work.fs;
1046
1047 spin_lock(&req->work.fs->lock);
1048 if (--fs->users)
1049 fs = NULL;
1050 spin_unlock(&req->work.fs->lock);
1051 if (fs)
1052 free_fs_struct(fs);
1053 }
Jens Axboe561fb042019-10-24 07:25:42 -06001054}
1055
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001056static inline void io_prep_async_work(struct io_kiocb *req,
Jens Axboe94ae5e72019-11-14 19:39:52 -07001057 struct io_kiocb **link)
Jens Axboe561fb042019-10-24 07:25:42 -06001058{
Jens Axboed3656342019-12-18 09:50:26 -07001059 const struct io_op_def *def = &io_op_defs[req->opcode];
Jens Axboe54a91f32019-09-10 09:15:04 -06001060
Jens Axboed3656342019-12-18 09:50:26 -07001061 if (req->flags & REQ_F_ISREG) {
1062 if (def->hash_reg_file)
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001063 io_wq_hash_work(&req->work, file_inode(req->file));
Jens Axboed3656342019-12-18 09:50:26 -07001064 } else {
1065 if (def->unbound_nonreg_file)
Jens Axboe3529d8c2019-12-19 18:24:38 -07001066 req->work.flags |= IO_WQ_WORK_UNBOUND;
Jens Axboe54a91f32019-09-10 09:15:04 -06001067 }
Jens Axboecccf0ee2020-01-27 16:34:48 -07001068
1069 io_req_work_grab_env(req, def);
Jens Axboe54a91f32019-09-10 09:15:04 -06001070
Jens Axboe94ae5e72019-11-14 19:39:52 -07001071 *link = io_prep_linked_timeout(req);
Jens Axboe561fb042019-10-24 07:25:42 -06001072}
1073
Jackie Liua197f662019-11-08 08:09:12 -07001074static inline void io_queue_async_work(struct io_kiocb *req)
Jens Axboe561fb042019-10-24 07:25:42 -06001075{
Jackie Liua197f662019-11-08 08:09:12 -07001076 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001077 struct io_kiocb *link;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001078
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001079 io_prep_async_work(req, &link);
Jens Axboe561fb042019-10-24 07:25:42 -06001080
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001081 trace_io_uring_queue_async_work(ctx, io_wq_is_hashed(&req->work), req,
1082 &req->work, req->flags);
1083 io_wq_enqueue(ctx->io_wq, &req->work);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001084
1085 if (link)
1086 io_queue_linked_timeout(link);
Jens Axboe18d9be12019-09-10 09:13:05 -06001087}
1088
Jens Axboe5262f562019-09-17 12:26:57 -06001089static void io_kill_timeout(struct io_kiocb *req)
1090{
1091 int ret;
1092
Jens Axboe2d283902019-12-04 11:08:05 -07001093 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe5262f562019-09-17 12:26:57 -06001094 if (ret != -1) {
1095 atomic_inc(&req->ctx->cq_timeouts);
Jens Axboe842f9612019-10-29 12:34:10 -06001096 list_del_init(&req->list);
Pavel Begunkovf0e20b82020-03-07 01:15:22 +03001097 req->flags |= REQ_F_COMP_LOCKED;
Jens Axboe78e19bb2019-11-06 15:21:34 -07001098 io_cqring_fill_event(req, 0);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001099 io_put_req(req);
Jens Axboe5262f562019-09-17 12:26:57 -06001100 }
1101}
1102
1103static void io_kill_timeouts(struct io_ring_ctx *ctx)
1104{
1105 struct io_kiocb *req, *tmp;
1106
1107 spin_lock_irq(&ctx->completion_lock);
1108 list_for_each_entry_safe(req, tmp, &ctx->timeout_list, list)
1109 io_kill_timeout(req);
1110 spin_unlock_irq(&ctx->completion_lock);
1111}
1112
Jens Axboede0617e2019-04-06 21:51:27 -06001113static void io_commit_cqring(struct io_ring_ctx *ctx)
1114{
1115 struct io_kiocb *req;
1116
Jens Axboe5262f562019-09-17 12:26:57 -06001117 while ((req = io_get_timeout_req(ctx)) != NULL)
1118 io_kill_timeout(req);
1119
Jens Axboede0617e2019-04-06 21:51:27 -06001120 __io_commit_cqring(ctx);
1121
Pavel Begunkov87987892020-01-18 01:22:30 +03001122 while ((req = io_get_deferred_req(ctx)) != NULL)
Jackie Liua197f662019-11-08 08:09:12 -07001123 io_queue_async_work(req);
Jens Axboede0617e2019-04-06 21:51:27 -06001124}
1125
Jens Axboe2b188cc2019-01-07 10:46:33 -07001126static struct io_uring_cqe *io_get_cqring(struct io_ring_ctx *ctx)
1127{
Hristo Venev75b28af2019-08-26 17:23:46 +00001128 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001129 unsigned tail;
1130
1131 tail = ctx->cached_cq_tail;
Stefan Bühler115e12e2019-04-24 23:54:18 +02001132 /*
1133 * writes to the cq entry need to come after reading head; the
1134 * control dependency is enough as we're using WRITE_ONCE to
1135 * fill the cq entry
1136 */
Hristo Venev75b28af2019-08-26 17:23:46 +00001137 if (tail - READ_ONCE(rings->cq.head) == rings->cq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001138 return NULL;
1139
1140 ctx->cached_cq_tail++;
Hristo Venev75b28af2019-08-26 17:23:46 +00001141 return &rings->cqes[tail & ctx->cq_mask];
Jens Axboe2b188cc2019-01-07 10:46:33 -07001142}
1143
Jens Axboef2842ab2020-01-08 11:04:00 -07001144static inline bool io_should_trigger_evfd(struct io_ring_ctx *ctx)
1145{
Jens Axboef0b493e2020-02-01 21:30:11 -07001146 if (!ctx->cq_ev_fd)
1147 return false;
Jens Axboef2842ab2020-01-08 11:04:00 -07001148 if (!ctx->eventfd_async)
1149 return true;
Jens Axboeb41e9852020-02-17 09:52:41 -07001150 return io_wq_current_is_worker();
Jens Axboef2842ab2020-01-08 11:04:00 -07001151}
1152
Jens Axboeb41e9852020-02-17 09:52:41 -07001153static void io_cqring_ev_posted(struct io_ring_ctx *ctx)
Jens Axboe8c838782019-03-12 15:48:16 -06001154{
1155 if (waitqueue_active(&ctx->wait))
1156 wake_up(&ctx->wait);
1157 if (waitqueue_active(&ctx->sqo_wait))
1158 wake_up(&ctx->sqo_wait);
Jens Axboeb41e9852020-02-17 09:52:41 -07001159 if (io_should_trigger_evfd(ctx))
Jens Axboe9b402842019-04-11 11:45:41 -06001160 eventfd_signal(ctx->cq_ev_fd, 1);
Jens Axboe8c838782019-03-12 15:48:16 -06001161}
1162
Jens Axboec4a2ed72019-11-21 21:01:26 -07001163/* Returns true if there are no backlogged entries after the flush */
1164static bool io_cqring_overflow_flush(struct io_ring_ctx *ctx, bool force)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001165{
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001166 struct io_rings *rings = ctx->rings;
1167 struct io_uring_cqe *cqe;
1168 struct io_kiocb *req;
1169 unsigned long flags;
1170 LIST_HEAD(list);
1171
1172 if (!force) {
1173 if (list_empty_careful(&ctx->cq_overflow_list))
Jens Axboec4a2ed72019-11-21 21:01:26 -07001174 return true;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001175 if ((ctx->cached_cq_tail - READ_ONCE(rings->cq.head) ==
1176 rings->cq_ring_entries))
Jens Axboec4a2ed72019-11-21 21:01:26 -07001177 return false;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001178 }
1179
1180 spin_lock_irqsave(&ctx->completion_lock, flags);
1181
1182 /* if force is set, the ring is going away. always drop after that */
1183 if (force)
Jens Axboe69b3e542020-01-08 11:01:46 -07001184 ctx->cq_overflow_flushed = 1;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001185
Jens Axboec4a2ed72019-11-21 21:01:26 -07001186 cqe = NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001187 while (!list_empty(&ctx->cq_overflow_list)) {
1188 cqe = io_get_cqring(ctx);
1189 if (!cqe && !force)
1190 break;
1191
1192 req = list_first_entry(&ctx->cq_overflow_list, struct io_kiocb,
1193 list);
1194 list_move(&req->list, &list);
Jens Axboe2ca10252020-02-13 17:17:35 -07001195 req->flags &= ~REQ_F_OVERFLOW;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001196 if (cqe) {
1197 WRITE_ONCE(cqe->user_data, req->user_data);
1198 WRITE_ONCE(cqe->res, req->result);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001199 WRITE_ONCE(cqe->flags, req->cflags);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001200 } else {
1201 WRITE_ONCE(ctx->rings->cq_overflow,
1202 atomic_inc_return(&ctx->cached_cq_overflow));
1203 }
1204 }
1205
1206 io_commit_cqring(ctx);
Jens Axboead3eb2c2019-12-18 17:12:20 -07001207 if (cqe) {
1208 clear_bit(0, &ctx->sq_check_overflow);
1209 clear_bit(0, &ctx->cq_check_overflow);
1210 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001211 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1212 io_cqring_ev_posted(ctx);
1213
1214 while (!list_empty(&list)) {
1215 req = list_first_entry(&list, struct io_kiocb, list);
1216 list_del(&req->list);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001217 io_put_req(req);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001218 }
Jens Axboec4a2ed72019-11-21 21:01:26 -07001219
1220 return cqe != NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001221}
1222
Jens Axboebcda7ba2020-02-23 16:42:51 -07001223static void __io_cqring_fill_event(struct io_kiocb *req, long res, long cflags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001224{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001225 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001226 struct io_uring_cqe *cqe;
1227
Jens Axboe78e19bb2019-11-06 15:21:34 -07001228 trace_io_uring_complete(ctx, req->user_data, res);
Jens Axboe51c3ff62019-11-03 06:52:50 -07001229
Jens Axboe2b188cc2019-01-07 10:46:33 -07001230 /*
1231 * If we can't get a cq entry, userspace overflowed the
1232 * submission (by quite a lot). Increment the overflow count in
1233 * the ring.
1234 */
1235 cqe = io_get_cqring(ctx);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001236 if (likely(cqe)) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001237 WRITE_ONCE(cqe->user_data, req->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001238 WRITE_ONCE(cqe->res, res);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001239 WRITE_ONCE(cqe->flags, cflags);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001240 } else if (ctx->cq_overflow_flushed) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07001241 WRITE_ONCE(ctx->rings->cq_overflow,
1242 atomic_inc_return(&ctx->cached_cq_overflow));
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001243 } else {
Jens Axboead3eb2c2019-12-18 17:12:20 -07001244 if (list_empty(&ctx->cq_overflow_list)) {
1245 set_bit(0, &ctx->sq_check_overflow);
1246 set_bit(0, &ctx->cq_check_overflow);
1247 }
Jens Axboe2ca10252020-02-13 17:17:35 -07001248 req->flags |= REQ_F_OVERFLOW;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001249 refcount_inc(&req->refs);
1250 req->result = res;
Jens Axboebcda7ba2020-02-23 16:42:51 -07001251 req->cflags = cflags;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001252 list_add_tail(&req->list, &ctx->cq_overflow_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001253 }
1254}
1255
Jens Axboebcda7ba2020-02-23 16:42:51 -07001256static void io_cqring_fill_event(struct io_kiocb *req, long res)
1257{
1258 __io_cqring_fill_event(req, res, 0);
1259}
1260
1261static void __io_cqring_add_event(struct io_kiocb *req, long res, long cflags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001262{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001263 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001264 unsigned long flags;
1265
1266 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001267 __io_cqring_fill_event(req, res, cflags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001268 io_commit_cqring(ctx);
1269 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1270
Jens Axboe8c838782019-03-12 15:48:16 -06001271 io_cqring_ev_posted(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001272}
1273
Jens Axboebcda7ba2020-02-23 16:42:51 -07001274static void io_cqring_add_event(struct io_kiocb *req, long res)
1275{
1276 __io_cqring_add_event(req, res, 0);
1277}
1278
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001279static inline bool io_is_fallback_req(struct io_kiocb *req)
1280{
1281 return req == (struct io_kiocb *)
1282 ((unsigned long) req->ctx->fallback_req & ~1UL);
1283}
1284
1285static struct io_kiocb *io_get_fallback_req(struct io_ring_ctx *ctx)
1286{
1287 struct io_kiocb *req;
1288
1289 req = ctx->fallback_req;
1290 if (!test_and_set_bit_lock(0, (unsigned long *) ctx->fallback_req))
1291 return req;
1292
1293 return NULL;
1294}
1295
Jens Axboe2579f912019-01-09 09:10:43 -07001296static struct io_kiocb *io_get_req(struct io_ring_ctx *ctx,
1297 struct io_submit_state *state)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001298{
Jens Axboefd6fab22019-03-14 16:30:06 -06001299 gfp_t gfp = GFP_KERNEL | __GFP_NOWARN;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001300 struct io_kiocb *req;
1301
Jens Axboe2579f912019-01-09 09:10:43 -07001302 if (!state) {
Jens Axboefd6fab22019-03-14 16:30:06 -06001303 req = kmem_cache_alloc(req_cachep, gfp);
Jens Axboe2579f912019-01-09 09:10:43 -07001304 if (unlikely(!req))
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001305 goto fallback;
Jens Axboe2579f912019-01-09 09:10:43 -07001306 } else if (!state->free_reqs) {
1307 size_t sz;
1308 int ret;
1309
1310 sz = min_t(size_t, state->ios_left, ARRAY_SIZE(state->reqs));
Jens Axboefd6fab22019-03-14 16:30:06 -06001311 ret = kmem_cache_alloc_bulk(req_cachep, gfp, sz, state->reqs);
1312
1313 /*
1314 * Bulk alloc is all-or-nothing. If we fail to get a batch,
1315 * retry single alloc to be on the safe side.
1316 */
1317 if (unlikely(ret <= 0)) {
1318 state->reqs[0] = kmem_cache_alloc(req_cachep, gfp);
1319 if (!state->reqs[0])
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001320 goto fallback;
Jens Axboefd6fab22019-03-14 16:30:06 -06001321 ret = 1;
1322 }
Jens Axboe2579f912019-01-09 09:10:43 -07001323 state->free_reqs = ret - 1;
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03001324 req = state->reqs[ret - 1];
Jens Axboe2579f912019-01-09 09:10:43 -07001325 } else {
Jens Axboe2579f912019-01-09 09:10:43 -07001326 state->free_reqs--;
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03001327 req = state->reqs[state->free_reqs];
Jens Axboe2b188cc2019-01-07 10:46:33 -07001328 }
1329
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001330got_it:
Jens Axboe1a6b74f2019-12-02 10:33:15 -07001331 req->io = NULL;
Jens Axboe60c112b2019-06-21 10:20:18 -06001332 req->file = NULL;
Jens Axboe2579f912019-01-09 09:10:43 -07001333 req->ctx = ctx;
1334 req->flags = 0;
Jens Axboee65ef562019-03-12 10:16:44 -06001335 /* one is dropped after submission, the other at completion */
1336 refcount_set(&req->refs, 2);
Jens Axboe3537b6a2020-04-03 11:19:06 -06001337 req->task = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06001338 req->result = 0;
Jens Axboe561fb042019-10-24 07:25:42 -06001339 INIT_IO_WORK(&req->work, io_wq_submit_work);
Jens Axboe2579f912019-01-09 09:10:43 -07001340 return req;
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001341fallback:
1342 req = io_get_fallback_req(ctx);
1343 if (req)
1344 goto got_it;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001345 return NULL;
1346}
1347
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001348static inline void io_put_file(struct io_kiocb *req, struct file *file,
1349 bool fixed)
1350{
1351 if (fixed)
Xiaoguang Wang05589552020-03-31 14:05:18 +08001352 percpu_ref_put(req->fixed_file_refs);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001353 else
1354 fput(file);
1355}
1356
Jens Axboec6ca97b302019-12-28 12:11:08 -07001357static void __io_req_aux_free(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001358{
Pavel Begunkov929a3af2020-02-19 00:19:09 +03001359 if (req->flags & REQ_F_NEED_CLEANUP)
1360 io_cleanup_req(req);
1361
YueHaibing96fd84d2020-01-07 22:22:44 +08001362 kfree(req->io);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001363 if (req->file)
1364 io_put_file(req, req->file, (req->flags & REQ_F_FIXED_FILE));
Jens Axboe3537b6a2020-04-03 11:19:06 -06001365 if (req->task)
1366 put_task_struct(req->task);
Jens Axboecccf0ee2020-01-27 16:34:48 -07001367
1368 io_req_work_drop_env(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001369}
1370
1371static void __io_free_req(struct io_kiocb *req)
1372{
Jens Axboec6ca97b302019-12-28 12:11:08 -07001373 __io_req_aux_free(req);
Jens Axboefcb323c2019-10-24 12:39:47 -06001374
Jens Axboefcb323c2019-10-24 12:39:47 -06001375 if (req->flags & REQ_F_INFLIGHT) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001376 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06001377 unsigned long flags;
1378
1379 spin_lock_irqsave(&ctx->inflight_lock, flags);
1380 list_del(&req->inflight_entry);
1381 if (waitqueue_active(&ctx->inflight_wait))
1382 wake_up(&ctx->inflight_wait);
1383 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
1384 }
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03001385
1386 percpu_ref_put(&req->ctx->refs);
Pavel Begunkovb1e50e52020-04-08 08:58:44 +03001387 if (likely(!io_is_fallback_req(req)))
1388 kmem_cache_free(req_cachep, req);
1389 else
1390 clear_bit_unlock(0, (unsigned long *) req->ctx->fallback_req);
Jens Axboee65ef562019-03-12 10:16:44 -06001391}
1392
Jens Axboec6ca97b302019-12-28 12:11:08 -07001393struct req_batch {
1394 void *reqs[IO_IOPOLL_BATCH];
1395 int to_free;
1396 int need_iter;
1397};
1398
1399static void io_free_req_many(struct io_ring_ctx *ctx, struct req_batch *rb)
1400{
1401 if (!rb->to_free)
1402 return;
1403 if (rb->need_iter) {
1404 int i, inflight = 0;
1405 unsigned long flags;
1406
1407 for (i = 0; i < rb->to_free; i++) {
1408 struct io_kiocb *req = rb->reqs[i];
1409
Jens Axboe10fef4b2020-01-09 07:52:28 -07001410 if (req->flags & REQ_F_FIXED_FILE) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001411 req->file = NULL;
Xiaoguang Wang05589552020-03-31 14:05:18 +08001412 percpu_ref_put(req->fixed_file_refs);
Jens Axboe10fef4b2020-01-09 07:52:28 -07001413 }
Jens Axboec6ca97b302019-12-28 12:11:08 -07001414 if (req->flags & REQ_F_INFLIGHT)
1415 inflight++;
Jens Axboec6ca97b302019-12-28 12:11:08 -07001416 __io_req_aux_free(req);
1417 }
1418 if (!inflight)
1419 goto do_free;
1420
1421 spin_lock_irqsave(&ctx->inflight_lock, flags);
1422 for (i = 0; i < rb->to_free; i++) {
1423 struct io_kiocb *req = rb->reqs[i];
1424
Jens Axboe10fef4b2020-01-09 07:52:28 -07001425 if (req->flags & REQ_F_INFLIGHT) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001426 list_del(&req->inflight_entry);
1427 if (!--inflight)
1428 break;
1429 }
1430 }
1431 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
1432
1433 if (waitqueue_active(&ctx->inflight_wait))
1434 wake_up(&ctx->inflight_wait);
1435 }
1436do_free:
1437 kmem_cache_free_bulk(req_cachep, rb->to_free, rb->reqs);
1438 percpu_ref_put_many(&ctx->refs, rb->to_free);
Jens Axboec6ca97b302019-12-28 12:11:08 -07001439 rb->to_free = rb->need_iter = 0;
Jens Axboee65ef562019-03-12 10:16:44 -06001440}
1441
Jackie Liua197f662019-11-08 08:09:12 -07001442static bool io_link_cancel_timeout(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -06001443{
Jackie Liua197f662019-11-08 08:09:12 -07001444 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001445 int ret;
1446
Jens Axboe2d283902019-12-04 11:08:05 -07001447 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe2665abf2019-11-05 12:40:47 -07001448 if (ret != -1) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001449 io_cqring_fill_event(req, -ECANCELED);
Jens Axboe2665abf2019-11-05 12:40:47 -07001450 io_commit_cqring(ctx);
1451 req->flags &= ~REQ_F_LINK;
Jackie Liuec9c02a2019-11-08 23:50:36 +08001452 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07001453 return true;
1454 }
1455
1456 return false;
1457}
1458
Jens Axboeba816ad2019-09-28 11:36:45 -06001459static void io_req_link_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboe9e645e112019-05-10 16:07:28 -06001460{
Jens Axboe2665abf2019-11-05 12:40:47 -07001461 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001462 bool wake_ev = false;
Jens Axboe9e645e112019-05-10 16:07:28 -06001463
Jens Axboe4d7dd462019-11-20 13:03:52 -07001464 /* Already got next link */
1465 if (req->flags & REQ_F_LINK_NEXT)
1466 return;
1467
Jens Axboe9e645e112019-05-10 16:07:28 -06001468 /*
1469 * The list should never be empty when we are called here. But could
1470 * potentially happen if the chain is messed up, check to be on the
1471 * safe side.
1472 */
Pavel Begunkov44932332019-12-05 16:16:35 +03001473 while (!list_empty(&req->link_list)) {
1474 struct io_kiocb *nxt = list_first_entry(&req->link_list,
1475 struct io_kiocb, link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001476
Pavel Begunkov44932332019-12-05 16:16:35 +03001477 if (unlikely((req->flags & REQ_F_LINK_TIMEOUT) &&
1478 (nxt->flags & REQ_F_TIMEOUT))) {
1479 list_del_init(&nxt->link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001480 wake_ev |= io_link_cancel_timeout(nxt);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001481 req->flags &= ~REQ_F_LINK_TIMEOUT;
1482 continue;
1483 }
Jens Axboe9e645e112019-05-10 16:07:28 -06001484
Pavel Begunkov44932332019-12-05 16:16:35 +03001485 list_del_init(&req->link_list);
1486 if (!list_empty(&nxt->link_list))
1487 nxt->flags |= REQ_F_LINK;
Pavel Begunkovb18fdf72019-11-21 23:21:02 +03001488 *nxtptr = nxt;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001489 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06001490 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001491
Jens Axboe4d7dd462019-11-20 13:03:52 -07001492 req->flags |= REQ_F_LINK_NEXT;
Jens Axboe2665abf2019-11-05 12:40:47 -07001493 if (wake_ev)
1494 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001495}
1496
1497/*
1498 * Called if REQ_F_LINK is set, and we fail the head request
1499 */
1500static void io_fail_links(struct io_kiocb *req)
1501{
Jens Axboe2665abf2019-11-05 12:40:47 -07001502 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001503 unsigned long flags;
1504
1505 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboe9e645e112019-05-10 16:07:28 -06001506
1507 while (!list_empty(&req->link_list)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03001508 struct io_kiocb *link = list_first_entry(&req->link_list,
1509 struct io_kiocb, link_list);
Jens Axboe9e645e112019-05-10 16:07:28 -06001510
Pavel Begunkov44932332019-12-05 16:16:35 +03001511 list_del_init(&link->link_list);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02001512 trace_io_uring_fail_link(req, link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001513
1514 if ((req->flags & REQ_F_LINK_TIMEOUT) &&
Jens Axboed625c6e2019-12-17 19:53:05 -07001515 link->opcode == IORING_OP_LINK_TIMEOUT) {
Jackie Liua197f662019-11-08 08:09:12 -07001516 io_link_cancel_timeout(link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001517 } else {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001518 io_cqring_fill_event(link, -ECANCELED);
Jens Axboe978db572019-11-14 22:39:04 -07001519 __io_double_put_req(link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001520 }
Jens Axboe5d960722019-11-19 15:31:28 -07001521 req->flags &= ~REQ_F_LINK_TIMEOUT;
Jens Axboe9e645e112019-05-10 16:07:28 -06001522 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001523
1524 io_commit_cqring(ctx);
1525 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1526 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001527}
1528
Jens Axboe4d7dd462019-11-20 13:03:52 -07001529static void io_req_find_next(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboe9e645e112019-05-10 16:07:28 -06001530{
Jens Axboe4d7dd462019-11-20 13:03:52 -07001531 if (likely(!(req->flags & REQ_F_LINK)))
Jens Axboe2665abf2019-11-05 12:40:47 -07001532 return;
Jens Axboe2665abf2019-11-05 12:40:47 -07001533
Jens Axboe9e645e112019-05-10 16:07:28 -06001534 /*
1535 * If LINK is set, we have dependent requests in this chain. If we
1536 * didn't fail this request, queue the first one up, moving any other
1537 * dependencies to the next request. In case of failure, fail the rest
1538 * of the chain.
1539 */
Jens Axboe2665abf2019-11-05 12:40:47 -07001540 if (req->flags & REQ_F_FAIL_LINK) {
1541 io_fail_links(req);
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001542 } else if ((req->flags & (REQ_F_LINK_TIMEOUT | REQ_F_COMP_LOCKED)) ==
1543 REQ_F_LINK_TIMEOUT) {
Jens Axboe2665abf2019-11-05 12:40:47 -07001544 struct io_ring_ctx *ctx = req->ctx;
1545 unsigned long flags;
1546
1547 /*
1548 * If this is a timeout link, we could be racing with the
1549 * timeout timer. Grab the completion lock for this case to
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001550 * protect against that.
Jens Axboe2665abf2019-11-05 12:40:47 -07001551 */
1552 spin_lock_irqsave(&ctx->completion_lock, flags);
1553 io_req_link_next(req, nxt);
1554 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1555 } else {
1556 io_req_link_next(req, nxt);
Jens Axboe9e645e112019-05-10 16:07:28 -06001557 }
Jens Axboe4d7dd462019-11-20 13:03:52 -07001558}
Jens Axboe9e645e112019-05-10 16:07:28 -06001559
Jackie Liuc69f8db2019-11-09 11:00:08 +08001560static void io_free_req(struct io_kiocb *req)
1561{
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001562 struct io_kiocb *nxt = NULL;
1563
1564 io_req_find_next(req, &nxt);
Pavel Begunkov70cf9f32019-11-21 23:21:00 +03001565 __io_free_req(req);
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001566
1567 if (nxt)
1568 io_queue_async_work(nxt);
Jackie Liuc69f8db2019-11-09 11:00:08 +08001569}
1570
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001571static void io_link_work_cb(struct io_wq_work **workptr)
1572{
Pavel Begunkov18a542f2020-03-23 00:23:29 +03001573 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
1574 struct io_kiocb *link;
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001575
Pavel Begunkov18a542f2020-03-23 00:23:29 +03001576 link = list_first_entry(&req->link_list, struct io_kiocb, link_list);
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001577 io_queue_linked_timeout(link);
1578 io_wq_submit_work(workptr);
1579}
1580
1581static void io_wq_assign_next(struct io_wq_work **workptr, struct io_kiocb *nxt)
1582{
1583 struct io_kiocb *link;
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001584 const struct io_op_def *def = &io_op_defs[nxt->opcode];
1585
1586 if ((nxt->flags & REQ_F_ISREG) && def->hash_reg_file)
1587 io_wq_hash_work(&nxt->work, file_inode(nxt->file));
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001588
1589 *workptr = &nxt->work;
1590 link = io_prep_linked_timeout(nxt);
Pavel Begunkov18a542f2020-03-23 00:23:29 +03001591 if (link)
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001592 nxt->work.func = io_link_work_cb;
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001593}
1594
Jens Axboeba816ad2019-09-28 11:36:45 -06001595/*
1596 * Drop reference to request, return next in chain (if there is one) if this
1597 * was the last reference to this request.
1598 */
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001599__attribute__((nonnull))
Jackie Liuec9c02a2019-11-08 23:50:36 +08001600static void io_put_req_find_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboee65ef562019-03-12 10:16:44 -06001601{
Jens Axboe2a44f462020-02-25 13:25:41 -07001602 if (refcount_dec_and_test(&req->refs)) {
1603 io_req_find_next(req, nxtptr);
Jens Axboe4d7dd462019-11-20 13:03:52 -07001604 __io_free_req(req);
Jens Axboe2a44f462020-02-25 13:25:41 -07001605 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001606}
1607
Jens Axboe2b188cc2019-01-07 10:46:33 -07001608static void io_put_req(struct io_kiocb *req)
1609{
Jens Axboedef596e2019-01-09 08:59:42 -07001610 if (refcount_dec_and_test(&req->refs))
1611 io_free_req(req);
1612}
1613
Pavel Begunkove9fd9392020-03-04 16:14:12 +03001614static void io_steal_work(struct io_kiocb *req,
1615 struct io_wq_work **workptr)
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001616{
1617 /*
1618 * It's in an io-wq worker, so there always should be at least
1619 * one reference, which will be dropped in io_put_work() just
1620 * after the current handler returns.
1621 *
1622 * It also means, that if the counter dropped to 1, then there is
1623 * no asynchronous users left, so it's safe to steal the next work.
1624 */
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001625 if (refcount_read(&req->refs) == 1) {
1626 struct io_kiocb *nxt = NULL;
1627
1628 io_req_find_next(req, &nxt);
1629 if (nxt)
1630 io_wq_assign_next(workptr, nxt);
1631 }
1632}
1633
Jens Axboe978db572019-11-14 22:39:04 -07001634/*
1635 * Must only be used if we don't need to care about links, usually from
1636 * within the completion handling itself.
1637 */
1638static void __io_double_put_req(struct io_kiocb *req)
Jens Axboea3a0e432019-08-20 11:03:11 -06001639{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001640 /* drop both submit and complete references */
1641 if (refcount_sub_and_test(2, &req->refs))
1642 __io_free_req(req);
1643}
1644
Jens Axboe978db572019-11-14 22:39:04 -07001645static void io_double_put_req(struct io_kiocb *req)
1646{
1647 /* drop both submit and complete references */
1648 if (refcount_sub_and_test(2, &req->refs))
1649 io_free_req(req);
1650}
1651
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001652static unsigned io_cqring_events(struct io_ring_ctx *ctx, bool noflush)
Jens Axboea3a0e432019-08-20 11:03:11 -06001653{
Jens Axboe84f97dc2019-11-06 11:27:53 -07001654 struct io_rings *rings = ctx->rings;
1655
Jens Axboead3eb2c2019-12-18 17:12:20 -07001656 if (test_bit(0, &ctx->cq_check_overflow)) {
1657 /*
1658 * noflush == true is from the waitqueue handler, just ensure
1659 * we wake up the task, and the next invocation will flush the
1660 * entries. We cannot safely to it from here.
1661 */
1662 if (noflush && !list_empty(&ctx->cq_overflow_list))
1663 return -1U;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001664
Jens Axboead3eb2c2019-12-18 17:12:20 -07001665 io_cqring_overflow_flush(ctx, false);
1666 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001667
Jens Axboea3a0e432019-08-20 11:03:11 -06001668 /* See comment at the top of this file */
1669 smp_rmb();
Jens Axboead3eb2c2019-12-18 17:12:20 -07001670 return ctx->cached_cq_tail - READ_ONCE(rings->cq.head);
Jens Axboea3a0e432019-08-20 11:03:11 -06001671}
1672
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03001673static inline unsigned int io_sqring_entries(struct io_ring_ctx *ctx)
1674{
1675 struct io_rings *rings = ctx->rings;
1676
1677 /* make sure SQ entry isn't read before tail */
1678 return smp_load_acquire(&rings->sq.tail) - ctx->cached_sq_head;
1679}
1680
Jens Axboe8237e042019-12-28 10:48:22 -07001681static inline bool io_req_multi_free(struct req_batch *rb, struct io_kiocb *req)
Jens Axboee94f1412019-12-19 12:06:02 -07001682{
Jens Axboec6ca97b302019-12-28 12:11:08 -07001683 if ((req->flags & REQ_F_LINK) || io_is_fallback_req(req))
1684 return false;
Jens Axboee94f1412019-12-19 12:06:02 -07001685
Jens Axboec6ca97b302019-12-28 12:11:08 -07001686 if (!(req->flags & REQ_F_FIXED_FILE) || req->io)
1687 rb->need_iter++;
1688
1689 rb->reqs[rb->to_free++] = req;
1690 if (unlikely(rb->to_free == ARRAY_SIZE(rb->reqs)))
1691 io_free_req_many(req->ctx, rb);
1692 return true;
Jens Axboee94f1412019-12-19 12:06:02 -07001693}
1694
Jens Axboebcda7ba2020-02-23 16:42:51 -07001695static int io_put_kbuf(struct io_kiocb *req)
1696{
Jens Axboe4d954c22020-02-27 07:31:19 -07001697 struct io_buffer *kbuf;
Jens Axboebcda7ba2020-02-23 16:42:51 -07001698 int cflags;
1699
Jens Axboe4d954c22020-02-27 07:31:19 -07001700 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
Jens Axboebcda7ba2020-02-23 16:42:51 -07001701 cflags = kbuf->bid << IORING_CQE_BUFFER_SHIFT;
1702 cflags |= IORING_CQE_F_BUFFER;
1703 req->rw.addr = 0;
1704 kfree(kbuf);
1705 return cflags;
1706}
1707
Jens Axboedef596e2019-01-09 08:59:42 -07001708/*
1709 * Find and free completed poll iocbs
1710 */
1711static void io_iopoll_complete(struct io_ring_ctx *ctx, unsigned int *nr_events,
1712 struct list_head *done)
1713{
Jens Axboe8237e042019-12-28 10:48:22 -07001714 struct req_batch rb;
Jens Axboedef596e2019-01-09 08:59:42 -07001715 struct io_kiocb *req;
Jens Axboedef596e2019-01-09 08:59:42 -07001716
Jens Axboec6ca97b302019-12-28 12:11:08 -07001717 rb.to_free = rb.need_iter = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001718 while (!list_empty(done)) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07001719 int cflags = 0;
1720
Jens Axboedef596e2019-01-09 08:59:42 -07001721 req = list_first_entry(done, struct io_kiocb, list);
1722 list_del(&req->list);
1723
Jens Axboebcda7ba2020-02-23 16:42:51 -07001724 if (req->flags & REQ_F_BUFFER_SELECTED)
1725 cflags = io_put_kbuf(req);
1726
1727 __io_cqring_fill_event(req, req->result, cflags);
Jens Axboedef596e2019-01-09 08:59:42 -07001728 (*nr_events)++;
1729
Jens Axboe8237e042019-12-28 10:48:22 -07001730 if (refcount_dec_and_test(&req->refs) &&
1731 !io_req_multi_free(&rb, req))
1732 io_free_req(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001733 }
Jens Axboedef596e2019-01-09 08:59:42 -07001734
Jens Axboe09bb8392019-03-13 12:39:28 -06001735 io_commit_cqring(ctx);
Xiaoguang Wang32b22442020-03-11 09:26:09 +08001736 if (ctx->flags & IORING_SETUP_SQPOLL)
1737 io_cqring_ev_posted(ctx);
Jens Axboe8237e042019-12-28 10:48:22 -07001738 io_free_req_many(ctx, &rb);
Jens Axboedef596e2019-01-09 08:59:42 -07001739}
1740
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001741static void io_iopoll_queue(struct list_head *again)
1742{
1743 struct io_kiocb *req;
1744
1745 do {
1746 req = list_first_entry(again, struct io_kiocb, list);
1747 list_del(&req->list);
1748 refcount_inc(&req->refs);
1749 io_queue_async_work(req);
1750 } while (!list_empty(again));
1751}
1752
Jens Axboedef596e2019-01-09 08:59:42 -07001753static int io_do_iopoll(struct io_ring_ctx *ctx, unsigned int *nr_events,
1754 long min)
1755{
1756 struct io_kiocb *req, *tmp;
1757 LIST_HEAD(done);
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001758 LIST_HEAD(again);
Jens Axboedef596e2019-01-09 08:59:42 -07001759 bool spin;
1760 int ret;
1761
1762 /*
1763 * Only spin for completions if we don't have multiple devices hanging
1764 * off our complete list, and we're under the requested amount.
1765 */
1766 spin = !ctx->poll_multi_file && *nr_events < min;
1767
1768 ret = 0;
1769 list_for_each_entry_safe(req, tmp, &ctx->poll_list, list) {
Jens Axboe9adbd452019-12-20 08:45:55 -07001770 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboedef596e2019-01-09 08:59:42 -07001771
1772 /*
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001773 * Move completed and retryable entries to our local lists.
1774 * If we find a request that requires polling, break out
1775 * and complete those lists first, if we have entries there.
Jens Axboedef596e2019-01-09 08:59:42 -07001776 */
1777 if (req->flags & REQ_F_IOPOLL_COMPLETED) {
1778 list_move_tail(&req->list, &done);
1779 continue;
1780 }
1781 if (!list_empty(&done))
1782 break;
1783
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001784 if (req->result == -EAGAIN) {
1785 list_move_tail(&req->list, &again);
1786 continue;
1787 }
1788 if (!list_empty(&again))
1789 break;
1790
Jens Axboedef596e2019-01-09 08:59:42 -07001791 ret = kiocb->ki_filp->f_op->iopoll(kiocb, spin);
1792 if (ret < 0)
1793 break;
1794
1795 if (ret && spin)
1796 spin = false;
1797 ret = 0;
1798 }
1799
1800 if (!list_empty(&done))
1801 io_iopoll_complete(ctx, nr_events, &done);
1802
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001803 if (!list_empty(&again))
1804 io_iopoll_queue(&again);
1805
Jens Axboedef596e2019-01-09 08:59:42 -07001806 return ret;
1807}
1808
1809/*
Brian Gianforcarod195a662019-12-13 03:09:50 -08001810 * Poll for a minimum of 'min' events. Note that if min == 0 we consider that a
Jens Axboedef596e2019-01-09 08:59:42 -07001811 * non-spinning poll check - we'll still enter the driver poll loop, but only
1812 * as a non-spinning completion check.
1813 */
1814static int io_iopoll_getevents(struct io_ring_ctx *ctx, unsigned int *nr_events,
1815 long min)
1816{
Jens Axboe08f54392019-08-21 22:19:11 -06001817 while (!list_empty(&ctx->poll_list) && !need_resched()) {
Jens Axboedef596e2019-01-09 08:59:42 -07001818 int ret;
1819
1820 ret = io_do_iopoll(ctx, nr_events, min);
1821 if (ret < 0)
1822 return ret;
1823 if (!min || *nr_events >= min)
1824 return 0;
1825 }
1826
1827 return 1;
1828}
1829
1830/*
1831 * We can't just wait for polled events to come to us, we have to actively
1832 * find and complete them.
1833 */
1834static void io_iopoll_reap_events(struct io_ring_ctx *ctx)
1835{
1836 if (!(ctx->flags & IORING_SETUP_IOPOLL))
1837 return;
1838
1839 mutex_lock(&ctx->uring_lock);
1840 while (!list_empty(&ctx->poll_list)) {
1841 unsigned int nr_events = 0;
1842
1843 io_iopoll_getevents(ctx, &nr_events, 1);
Jens Axboe08f54392019-08-21 22:19:11 -06001844
1845 /*
1846 * Ensure we allow local-to-the-cpu processing to take place,
1847 * in this case we need to ensure that we reap all events.
1848 */
1849 cond_resched();
Jens Axboedef596e2019-01-09 08:59:42 -07001850 }
1851 mutex_unlock(&ctx->uring_lock);
1852}
1853
Xiaoguang Wangc7849be2020-02-22 14:46:05 +08001854static int io_iopoll_check(struct io_ring_ctx *ctx, unsigned *nr_events,
1855 long min)
Jens Axboedef596e2019-01-09 08:59:42 -07001856{
Jens Axboe2b2ed972019-10-25 10:06:15 -06001857 int iters = 0, ret = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001858
Xiaoguang Wangc7849be2020-02-22 14:46:05 +08001859 /*
1860 * We disallow the app entering submit/complete with polling, but we
1861 * still need to lock the ring to prevent racing with polled issue
1862 * that got punted to a workqueue.
1863 */
1864 mutex_lock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07001865 do {
1866 int tmin = 0;
1867
Jens Axboe500f9fb2019-08-19 12:15:59 -06001868 /*
Jens Axboea3a0e432019-08-20 11:03:11 -06001869 * Don't enter poll loop if we already have events pending.
1870 * If we do, we can potentially be spinning for commands that
1871 * already triggered a CQE (eg in error).
1872 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001873 if (io_cqring_events(ctx, false))
Jens Axboea3a0e432019-08-20 11:03:11 -06001874 break;
1875
1876 /*
Jens Axboe500f9fb2019-08-19 12:15:59 -06001877 * If a submit got punted to a workqueue, we can have the
1878 * application entering polling for a command before it gets
1879 * issued. That app will hold the uring_lock for the duration
1880 * of the poll right here, so we need to take a breather every
1881 * now and then to ensure that the issue has a chance to add
1882 * the poll to the issued list. Otherwise we can spin here
1883 * forever, while the workqueue is stuck trying to acquire the
1884 * very same mutex.
1885 */
1886 if (!(++iters & 7)) {
1887 mutex_unlock(&ctx->uring_lock);
1888 mutex_lock(&ctx->uring_lock);
1889 }
1890
Jens Axboedef596e2019-01-09 08:59:42 -07001891 if (*nr_events < min)
1892 tmin = min - *nr_events;
1893
1894 ret = io_iopoll_getevents(ctx, nr_events, tmin);
1895 if (ret <= 0)
1896 break;
1897 ret = 0;
1898 } while (min && !*nr_events && !need_resched());
1899
Jens Axboe500f9fb2019-08-19 12:15:59 -06001900 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07001901 return ret;
1902}
1903
Jens Axboe491381ce2019-10-17 09:20:46 -06001904static void kiocb_end_write(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001905{
Jens Axboe491381ce2019-10-17 09:20:46 -06001906 /*
1907 * Tell lockdep we inherited freeze protection from submission
1908 * thread.
1909 */
1910 if (req->flags & REQ_F_ISREG) {
1911 struct inode *inode = file_inode(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001912
Jens Axboe491381ce2019-10-17 09:20:46 -06001913 __sb_writers_acquired(inode->i_sb, SB_FREEZE_WRITE);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001914 }
Jens Axboe491381ce2019-10-17 09:20:46 -06001915 file_end_write(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001916}
1917
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001918static inline void req_set_fail_links(struct io_kiocb *req)
1919{
1920 if ((req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) == REQ_F_LINK)
1921 req->flags |= REQ_F_FAIL_LINK;
1922}
1923
Jens Axboeba816ad2019-09-28 11:36:45 -06001924static void io_complete_rw_common(struct kiocb *kiocb, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001925{
Jens Axboe9adbd452019-12-20 08:45:55 -07001926 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001927 int cflags = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001928
Jens Axboe491381ce2019-10-17 09:20:46 -06001929 if (kiocb->ki_flags & IOCB_WRITE)
1930 kiocb_end_write(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001931
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001932 if (res != req->result)
1933 req_set_fail_links(req);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001934 if (req->flags & REQ_F_BUFFER_SELECTED)
1935 cflags = io_put_kbuf(req);
1936 __io_cqring_add_event(req, res, cflags);
Jens Axboeba816ad2019-09-28 11:36:45 -06001937}
1938
1939static void io_complete_rw(struct kiocb *kiocb, long res, long res2)
1940{
Jens Axboe9adbd452019-12-20 08:45:55 -07001941 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboeba816ad2019-09-28 11:36:45 -06001942
1943 io_complete_rw_common(kiocb, res);
Jens Axboee65ef562019-03-12 10:16:44 -06001944 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001945}
1946
Jens Axboedef596e2019-01-09 08:59:42 -07001947static void io_complete_rw_iopoll(struct kiocb *kiocb, long res, long res2)
1948{
Jens Axboe9adbd452019-12-20 08:45:55 -07001949 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboedef596e2019-01-09 08:59:42 -07001950
Jens Axboe491381ce2019-10-17 09:20:46 -06001951 if (kiocb->ki_flags & IOCB_WRITE)
1952 kiocb_end_write(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001953
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001954 if (res != req->result)
1955 req_set_fail_links(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06001956 req->result = res;
Jens Axboedef596e2019-01-09 08:59:42 -07001957 if (res != -EAGAIN)
1958 req->flags |= REQ_F_IOPOLL_COMPLETED;
1959}
1960
1961/*
1962 * After the iocb has been issued, it's safe to be found on the poll list.
1963 * Adding the kiocb to the list AFTER submission ensures that we don't
1964 * find it from a io_iopoll_getevents() thread before the issuer is done
1965 * accessing the kiocb cookie.
1966 */
1967static void io_iopoll_req_issued(struct io_kiocb *req)
1968{
1969 struct io_ring_ctx *ctx = req->ctx;
1970
1971 /*
1972 * Track whether we have multiple files in our lists. This will impact
1973 * how we do polling eventually, not spinning if we're on potentially
1974 * different devices.
1975 */
1976 if (list_empty(&ctx->poll_list)) {
1977 ctx->poll_multi_file = false;
1978 } else if (!ctx->poll_multi_file) {
1979 struct io_kiocb *list_req;
1980
1981 list_req = list_first_entry(&ctx->poll_list, struct io_kiocb,
1982 list);
Jens Axboe9adbd452019-12-20 08:45:55 -07001983 if (list_req->file != req->file)
Jens Axboedef596e2019-01-09 08:59:42 -07001984 ctx->poll_multi_file = true;
1985 }
1986
1987 /*
1988 * For fast devices, IO may have already completed. If it has, add
1989 * it to the front so we find it first.
1990 */
1991 if (req->flags & REQ_F_IOPOLL_COMPLETED)
1992 list_add(&req->list, &ctx->poll_list);
1993 else
1994 list_add_tail(&req->list, &ctx->poll_list);
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08001995
1996 if ((ctx->flags & IORING_SETUP_SQPOLL) &&
1997 wq_has_sleeper(&ctx->sqo_wait))
1998 wake_up(&ctx->sqo_wait);
Jens Axboedef596e2019-01-09 08:59:42 -07001999}
2000
Jens Axboe3d6770f2019-04-13 11:50:54 -06002001static void io_file_put(struct io_submit_state *state)
Jens Axboe9a56a232019-01-09 09:06:50 -07002002{
Jens Axboe3d6770f2019-04-13 11:50:54 -06002003 if (state->file) {
Jens Axboe9a56a232019-01-09 09:06:50 -07002004 int diff = state->has_refs - state->used_refs;
2005
2006 if (diff)
2007 fput_many(state->file, diff);
2008 state->file = NULL;
2009 }
2010}
2011
2012/*
2013 * Get as many references to a file as we have IOs left in this submission,
2014 * assuming most submissions are for one file, or at least that each file
2015 * has more than one submission.
2016 */
Pavel Begunkov8da11c12020-02-24 11:32:44 +03002017static struct file *__io_file_get(struct io_submit_state *state, int fd)
Jens Axboe9a56a232019-01-09 09:06:50 -07002018{
2019 if (!state)
2020 return fget(fd);
2021
2022 if (state->file) {
2023 if (state->fd == fd) {
2024 state->used_refs++;
2025 state->ios_left--;
2026 return state->file;
2027 }
Jens Axboe3d6770f2019-04-13 11:50:54 -06002028 io_file_put(state);
Jens Axboe9a56a232019-01-09 09:06:50 -07002029 }
2030 state->file = fget_many(fd, state->ios_left);
2031 if (!state->file)
2032 return NULL;
2033
2034 state->fd = fd;
2035 state->has_refs = state->ios_left;
2036 state->used_refs = 1;
2037 state->ios_left--;
2038 return state->file;
2039}
2040
Jens Axboe2b188cc2019-01-07 10:46:33 -07002041/*
2042 * If we tracked the file through the SCM inflight mechanism, we could support
2043 * any file. For now, just ensure that anything potentially problematic is done
2044 * inline.
2045 */
2046static bool io_file_supports_async(struct file *file)
2047{
2048 umode_t mode = file_inode(file)->i_mode;
2049
Jens Axboe10d59342019-12-09 20:16:22 -07002050 if (S_ISBLK(mode) || S_ISCHR(mode) || S_ISSOCK(mode))
Jens Axboe2b188cc2019-01-07 10:46:33 -07002051 return true;
2052 if (S_ISREG(mode) && file->f_op != &io_uring_fops)
2053 return true;
2054
2055 return false;
2056}
2057
Jens Axboe3529d8c2019-12-19 18:24:38 -07002058static int io_prep_rw(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2059 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002060{
Jens Axboedef596e2019-01-09 08:59:42 -07002061 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9adbd452019-12-20 08:45:55 -07002062 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe09bb8392019-03-13 12:39:28 -06002063 unsigned ioprio;
2064 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002065
Jens Axboe491381ce2019-10-17 09:20:46 -06002066 if (S_ISREG(file_inode(req->file)->i_mode))
2067 req->flags |= REQ_F_ISREG;
2068
Jens Axboe2b188cc2019-01-07 10:46:33 -07002069 kiocb->ki_pos = READ_ONCE(sqe->off);
Jens Axboeba042912019-12-25 16:33:42 -07002070 if (kiocb->ki_pos == -1 && !(req->file->f_mode & FMODE_STREAM)) {
2071 req->flags |= REQ_F_CUR_POS;
2072 kiocb->ki_pos = req->file->f_pos;
2073 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002074 kiocb->ki_hint = ki_hint_validate(file_write_hint(kiocb->ki_filp));
Pavel Begunkov3e577dc2020-02-01 03:58:42 +03002075 kiocb->ki_flags = iocb_flags(kiocb->ki_filp);
2076 ret = kiocb_set_rw_flags(kiocb, READ_ONCE(sqe->rw_flags));
2077 if (unlikely(ret))
2078 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002079
2080 ioprio = READ_ONCE(sqe->ioprio);
2081 if (ioprio) {
2082 ret = ioprio_check_cap(ioprio);
2083 if (ret)
Jens Axboe09bb8392019-03-13 12:39:28 -06002084 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002085
2086 kiocb->ki_ioprio = ioprio;
2087 } else
2088 kiocb->ki_ioprio = get_current_ioprio();
2089
Stefan Bühler8449eed2019-04-27 20:34:19 +02002090 /* don't allow async punt if RWF_NOWAIT was requested */
Jens Axboe491381ce2019-10-17 09:20:46 -06002091 if ((kiocb->ki_flags & IOCB_NOWAIT) ||
2092 (req->file->f_flags & O_NONBLOCK))
Stefan Bühler8449eed2019-04-27 20:34:19 +02002093 req->flags |= REQ_F_NOWAIT;
2094
2095 if (force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002096 kiocb->ki_flags |= IOCB_NOWAIT;
Stefan Bühler8449eed2019-04-27 20:34:19 +02002097
Jens Axboedef596e2019-01-09 08:59:42 -07002098 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07002099 if (!(kiocb->ki_flags & IOCB_DIRECT) ||
2100 !kiocb->ki_filp->f_op->iopoll)
Jens Axboe09bb8392019-03-13 12:39:28 -06002101 return -EOPNOTSUPP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002102
Jens Axboedef596e2019-01-09 08:59:42 -07002103 kiocb->ki_flags |= IOCB_HIPRI;
2104 kiocb->ki_complete = io_complete_rw_iopoll;
Jens Axboe6873e0b2019-10-30 13:53:09 -06002105 req->result = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07002106 } else {
Jens Axboe09bb8392019-03-13 12:39:28 -06002107 if (kiocb->ki_flags & IOCB_HIPRI)
2108 return -EINVAL;
Jens Axboedef596e2019-01-09 08:59:42 -07002109 kiocb->ki_complete = io_complete_rw;
2110 }
Jens Axboe9adbd452019-12-20 08:45:55 -07002111
Jens Axboe3529d8c2019-12-19 18:24:38 -07002112 req->rw.addr = READ_ONCE(sqe->addr);
2113 req->rw.len = READ_ONCE(sqe->len);
Jens Axboebcda7ba2020-02-23 16:42:51 -07002114 /* we own ->private, reuse it for the buffer index / buffer ID */
Jens Axboe9adbd452019-12-20 08:45:55 -07002115 req->rw.kiocb.private = (void *) (unsigned long)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002116 READ_ONCE(sqe->buf_index);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002117 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002118}
2119
2120static inline void io_rw_done(struct kiocb *kiocb, ssize_t ret)
2121{
2122 switch (ret) {
2123 case -EIOCBQUEUED:
2124 break;
2125 case -ERESTARTSYS:
2126 case -ERESTARTNOINTR:
2127 case -ERESTARTNOHAND:
2128 case -ERESTART_RESTARTBLOCK:
2129 /*
2130 * We can't just restart the syscall, since previously
2131 * submitted sqes may already be in progress. Just fail this
2132 * IO with EINTR.
2133 */
2134 ret = -EINTR;
2135 /* fall through */
2136 default:
2137 kiocb->ki_complete(kiocb, ret, 0);
2138 }
2139}
2140
Pavel Begunkov014db002020-03-03 21:33:12 +03002141static void kiocb_done(struct kiocb *kiocb, ssize_t ret)
Jens Axboeba816ad2019-09-28 11:36:45 -06002142{
Jens Axboeba042912019-12-25 16:33:42 -07002143 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
2144
2145 if (req->flags & REQ_F_CUR_POS)
2146 req->file->f_pos = kiocb->ki_pos;
Pavel Begunkovbcaec082020-02-24 11:30:18 +03002147 if (ret >= 0 && kiocb->ki_complete == io_complete_rw)
Pavel Begunkov014db002020-03-03 21:33:12 +03002148 io_complete_rw(kiocb, ret, 0);
Jens Axboeba816ad2019-09-28 11:36:45 -06002149 else
2150 io_rw_done(kiocb, ret);
2151}
2152
Jens Axboe9adbd452019-12-20 08:45:55 -07002153static ssize_t io_import_fixed(struct io_kiocb *req, int rw,
Pavel Begunkov7d009162019-11-25 23:14:40 +03002154 struct iov_iter *iter)
Jens Axboeedafcce2019-01-09 09:16:05 -07002155{
Jens Axboe9adbd452019-12-20 08:45:55 -07002156 struct io_ring_ctx *ctx = req->ctx;
2157 size_t len = req->rw.len;
Jens Axboeedafcce2019-01-09 09:16:05 -07002158 struct io_mapped_ubuf *imu;
2159 unsigned index, buf_index;
2160 size_t offset;
2161 u64 buf_addr;
2162
2163 /* attempt to use fixed buffers without having provided iovecs */
2164 if (unlikely(!ctx->user_bufs))
2165 return -EFAULT;
2166
Jens Axboe9adbd452019-12-20 08:45:55 -07002167 buf_index = (unsigned long) req->rw.kiocb.private;
Jens Axboeedafcce2019-01-09 09:16:05 -07002168 if (unlikely(buf_index >= ctx->nr_user_bufs))
2169 return -EFAULT;
2170
2171 index = array_index_nospec(buf_index, ctx->nr_user_bufs);
2172 imu = &ctx->user_bufs[index];
Jens Axboe9adbd452019-12-20 08:45:55 -07002173 buf_addr = req->rw.addr;
Jens Axboeedafcce2019-01-09 09:16:05 -07002174
2175 /* overflow */
2176 if (buf_addr + len < buf_addr)
2177 return -EFAULT;
2178 /* not inside the mapped region */
2179 if (buf_addr < imu->ubuf || buf_addr + len > imu->ubuf + imu->len)
2180 return -EFAULT;
2181
2182 /*
2183 * May not be a start of buffer, set size appropriately
2184 * and advance us to the beginning.
2185 */
2186 offset = buf_addr - imu->ubuf;
2187 iov_iter_bvec(iter, rw, imu->bvec, imu->nr_bvecs, offset + len);
Jens Axboebd11b3a2019-07-20 08:37:31 -06002188
2189 if (offset) {
2190 /*
2191 * Don't use iov_iter_advance() here, as it's really slow for
2192 * using the latter parts of a big fixed buffer - it iterates
2193 * over each segment manually. We can cheat a bit here, because
2194 * we know that:
2195 *
2196 * 1) it's a BVEC iter, we set it up
2197 * 2) all bvecs are PAGE_SIZE in size, except potentially the
2198 * first and last bvec
2199 *
2200 * So just find our index, and adjust the iterator afterwards.
2201 * If the offset is within the first bvec (or the whole first
2202 * bvec, just use iov_iter_advance(). This makes it easier
2203 * since we can just skip the first segment, which may not
2204 * be PAGE_SIZE aligned.
2205 */
2206 const struct bio_vec *bvec = imu->bvec;
2207
2208 if (offset <= bvec->bv_len) {
2209 iov_iter_advance(iter, offset);
2210 } else {
2211 unsigned long seg_skip;
2212
2213 /* skip first vec */
2214 offset -= bvec->bv_len;
2215 seg_skip = 1 + (offset >> PAGE_SHIFT);
2216
2217 iter->bvec = bvec + seg_skip;
2218 iter->nr_segs -= seg_skip;
Aleix Roca Nonell99c79f62019-08-15 14:03:22 +02002219 iter->count -= bvec->bv_len + offset;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002220 iter->iov_offset = offset & ~PAGE_MASK;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002221 }
2222 }
2223
Jens Axboe5e559562019-11-13 16:12:46 -07002224 return len;
Jens Axboeedafcce2019-01-09 09:16:05 -07002225}
2226
Jens Axboebcda7ba2020-02-23 16:42:51 -07002227static void io_ring_submit_unlock(struct io_ring_ctx *ctx, bool needs_lock)
2228{
2229 if (needs_lock)
2230 mutex_unlock(&ctx->uring_lock);
2231}
2232
2233static void io_ring_submit_lock(struct io_ring_ctx *ctx, bool needs_lock)
2234{
2235 /*
2236 * "Normal" inline submissions always hold the uring_lock, since we
2237 * grab it from the system call. Same is true for the SQPOLL offload.
2238 * The only exception is when we've detached the request and issue it
2239 * from an async worker thread, grab the lock for that case.
2240 */
2241 if (needs_lock)
2242 mutex_lock(&ctx->uring_lock);
2243}
2244
2245static struct io_buffer *io_buffer_select(struct io_kiocb *req, size_t *len,
2246 int bgid, struct io_buffer *kbuf,
2247 bool needs_lock)
2248{
2249 struct io_buffer *head;
2250
2251 if (req->flags & REQ_F_BUFFER_SELECTED)
2252 return kbuf;
2253
2254 io_ring_submit_lock(req->ctx, needs_lock);
2255
2256 lockdep_assert_held(&req->ctx->uring_lock);
2257
2258 head = idr_find(&req->ctx->io_buffer_idr, bgid);
2259 if (head) {
2260 if (!list_empty(&head->list)) {
2261 kbuf = list_last_entry(&head->list, struct io_buffer,
2262 list);
2263 list_del(&kbuf->list);
2264 } else {
2265 kbuf = head;
2266 idr_remove(&req->ctx->io_buffer_idr, bgid);
2267 }
2268 if (*len > kbuf->len)
2269 *len = kbuf->len;
2270 } else {
2271 kbuf = ERR_PTR(-ENOBUFS);
2272 }
2273
2274 io_ring_submit_unlock(req->ctx, needs_lock);
2275
2276 return kbuf;
2277}
2278
Jens Axboe4d954c22020-02-27 07:31:19 -07002279static void __user *io_rw_buffer_select(struct io_kiocb *req, size_t *len,
2280 bool needs_lock)
2281{
2282 struct io_buffer *kbuf;
2283 int bgid;
2284
2285 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
2286 bgid = (int) (unsigned long) req->rw.kiocb.private;
2287 kbuf = io_buffer_select(req, len, bgid, kbuf, needs_lock);
2288 if (IS_ERR(kbuf))
2289 return kbuf;
2290 req->rw.addr = (u64) (unsigned long) kbuf;
2291 req->flags |= REQ_F_BUFFER_SELECTED;
2292 return u64_to_user_ptr(kbuf->addr);
2293}
2294
2295#ifdef CONFIG_COMPAT
2296static ssize_t io_compat_import(struct io_kiocb *req, struct iovec *iov,
2297 bool needs_lock)
2298{
2299 struct compat_iovec __user *uiov;
2300 compat_ssize_t clen;
2301 void __user *buf;
2302 ssize_t len;
2303
2304 uiov = u64_to_user_ptr(req->rw.addr);
2305 if (!access_ok(uiov, sizeof(*uiov)))
2306 return -EFAULT;
2307 if (__get_user(clen, &uiov->iov_len))
2308 return -EFAULT;
2309 if (clen < 0)
2310 return -EINVAL;
2311
2312 len = clen;
2313 buf = io_rw_buffer_select(req, &len, needs_lock);
2314 if (IS_ERR(buf))
2315 return PTR_ERR(buf);
2316 iov[0].iov_base = buf;
2317 iov[0].iov_len = (compat_size_t) len;
2318 return 0;
2319}
2320#endif
2321
2322static ssize_t __io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
2323 bool needs_lock)
2324{
2325 struct iovec __user *uiov = u64_to_user_ptr(req->rw.addr);
2326 void __user *buf;
2327 ssize_t len;
2328
2329 if (copy_from_user(iov, uiov, sizeof(*uiov)))
2330 return -EFAULT;
2331
2332 len = iov[0].iov_len;
2333 if (len < 0)
2334 return -EINVAL;
2335 buf = io_rw_buffer_select(req, &len, needs_lock);
2336 if (IS_ERR(buf))
2337 return PTR_ERR(buf);
2338 iov[0].iov_base = buf;
2339 iov[0].iov_len = len;
2340 return 0;
2341}
2342
2343static ssize_t io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
2344 bool needs_lock)
2345{
2346 if (req->flags & REQ_F_BUFFER_SELECTED)
2347 return 0;
2348 if (!req->rw.len)
2349 return 0;
2350 else if (req->rw.len > 1)
2351 return -EINVAL;
2352
2353#ifdef CONFIG_COMPAT
2354 if (req->ctx->compat)
2355 return io_compat_import(req, iov, needs_lock);
2356#endif
2357
2358 return __io_iov_buffer_select(req, iov, needs_lock);
2359}
2360
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002361static ssize_t io_import_iovec(int rw, struct io_kiocb *req,
Jens Axboebcda7ba2020-02-23 16:42:51 -07002362 struct iovec **iovec, struct iov_iter *iter,
2363 bool needs_lock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002364{
Jens Axboe9adbd452019-12-20 08:45:55 -07002365 void __user *buf = u64_to_user_ptr(req->rw.addr);
2366 size_t sqe_len = req->rw.len;
Jens Axboe4d954c22020-02-27 07:31:19 -07002367 ssize_t ret;
Jens Axboeedafcce2019-01-09 09:16:05 -07002368 u8 opcode;
2369
Jens Axboed625c6e2019-12-17 19:53:05 -07002370 opcode = req->opcode;
Pavel Begunkov7d009162019-11-25 23:14:40 +03002371 if (opcode == IORING_OP_READ_FIXED || opcode == IORING_OP_WRITE_FIXED) {
Jens Axboeedafcce2019-01-09 09:16:05 -07002372 *iovec = NULL;
Jens Axboe9adbd452019-12-20 08:45:55 -07002373 return io_import_fixed(req, rw, iter);
Jens Axboeedafcce2019-01-09 09:16:05 -07002374 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002375
Jens Axboebcda7ba2020-02-23 16:42:51 -07002376 /* buffer index only valid with fixed read/write, or buffer select */
2377 if (req->rw.kiocb.private && !(req->flags & REQ_F_BUFFER_SELECT))
Jens Axboe9adbd452019-12-20 08:45:55 -07002378 return -EINVAL;
2379
Jens Axboe3a6820f2019-12-22 15:19:35 -07002380 if (opcode == IORING_OP_READ || opcode == IORING_OP_WRITE) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07002381 if (req->flags & REQ_F_BUFFER_SELECT) {
Jens Axboe4d954c22020-02-27 07:31:19 -07002382 buf = io_rw_buffer_select(req, &sqe_len, needs_lock);
2383 if (IS_ERR(buf)) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07002384 *iovec = NULL;
Jens Axboe4d954c22020-02-27 07:31:19 -07002385 return PTR_ERR(buf);
Jens Axboebcda7ba2020-02-23 16:42:51 -07002386 }
Jens Axboe3f9d6442020-03-11 12:27:04 -06002387 req->rw.len = sqe_len;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002388 }
2389
Jens Axboe3a6820f2019-12-22 15:19:35 -07002390 ret = import_single_range(rw, buf, sqe_len, *iovec, iter);
2391 *iovec = NULL;
Jens Axboe3a901592020-02-25 17:48:55 -07002392 return ret < 0 ? ret : sqe_len;
Jens Axboe3a6820f2019-12-22 15:19:35 -07002393 }
2394
Jens Axboef67676d2019-12-02 11:03:47 -07002395 if (req->io) {
2396 struct io_async_rw *iorw = &req->io->rw;
2397
2398 *iovec = iorw->iov;
2399 iov_iter_init(iter, rw, *iovec, iorw->nr_segs, iorw->size);
2400 if (iorw->iov == iorw->fast_iov)
2401 *iovec = NULL;
2402 return iorw->size;
2403 }
2404
Jens Axboe4d954c22020-02-27 07:31:19 -07002405 if (req->flags & REQ_F_BUFFER_SELECT) {
2406 ret = io_iov_buffer_select(req, *iovec, needs_lock);
Jens Axboe3f9d6442020-03-11 12:27:04 -06002407 if (!ret) {
2408 ret = (*iovec)->iov_len;
2409 iov_iter_init(iter, rw, *iovec, 1, ret);
2410 }
Jens Axboe4d954c22020-02-27 07:31:19 -07002411 *iovec = NULL;
2412 return ret;
2413 }
2414
Jens Axboe2b188cc2019-01-07 10:46:33 -07002415#ifdef CONFIG_COMPAT
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002416 if (req->ctx->compat)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002417 return compat_import_iovec(rw, buf, sqe_len, UIO_FASTIOV,
2418 iovec, iter);
2419#endif
2420
2421 return import_iovec(rw, buf, sqe_len, UIO_FASTIOV, iovec, iter);
2422}
2423
Jens Axboe32960612019-09-23 11:05:34 -06002424/*
2425 * For files that don't have ->read_iter() and ->write_iter(), handle them
2426 * by looping over ->read() or ->write() manually.
2427 */
2428static ssize_t loop_rw_iter(int rw, struct file *file, struct kiocb *kiocb,
2429 struct iov_iter *iter)
2430{
2431 ssize_t ret = 0;
2432
2433 /*
2434 * Don't support polled IO through this interface, and we can't
2435 * support non-blocking either. For the latter, this just causes
2436 * the kiocb to be handled from an async context.
2437 */
2438 if (kiocb->ki_flags & IOCB_HIPRI)
2439 return -EOPNOTSUPP;
2440 if (kiocb->ki_flags & IOCB_NOWAIT)
2441 return -EAGAIN;
2442
2443 while (iov_iter_count(iter)) {
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002444 struct iovec iovec;
Jens Axboe32960612019-09-23 11:05:34 -06002445 ssize_t nr;
2446
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002447 if (!iov_iter_is_bvec(iter)) {
2448 iovec = iov_iter_iovec(iter);
2449 } else {
2450 /* fixed buffers import bvec */
2451 iovec.iov_base = kmap(iter->bvec->bv_page)
2452 + iter->iov_offset;
2453 iovec.iov_len = min(iter->count,
2454 iter->bvec->bv_len - iter->iov_offset);
2455 }
2456
Jens Axboe32960612019-09-23 11:05:34 -06002457 if (rw == READ) {
2458 nr = file->f_op->read(file, iovec.iov_base,
2459 iovec.iov_len, &kiocb->ki_pos);
2460 } else {
2461 nr = file->f_op->write(file, iovec.iov_base,
2462 iovec.iov_len, &kiocb->ki_pos);
2463 }
2464
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002465 if (iov_iter_is_bvec(iter))
2466 kunmap(iter->bvec->bv_page);
2467
Jens Axboe32960612019-09-23 11:05:34 -06002468 if (nr < 0) {
2469 if (!ret)
2470 ret = nr;
2471 break;
2472 }
2473 ret += nr;
2474 if (nr != iovec.iov_len)
2475 break;
2476 iov_iter_advance(iter, nr);
2477 }
2478
2479 return ret;
2480}
2481
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002482static void io_req_map_rw(struct io_kiocb *req, ssize_t io_size,
Jens Axboef67676d2019-12-02 11:03:47 -07002483 struct iovec *iovec, struct iovec *fast_iov,
2484 struct iov_iter *iter)
2485{
2486 req->io->rw.nr_segs = iter->nr_segs;
2487 req->io->rw.size = io_size;
2488 req->io->rw.iov = iovec;
2489 if (!req->io->rw.iov) {
2490 req->io->rw.iov = req->io->rw.fast_iov;
Xiaoguang Wang45097da2020-04-08 22:29:58 +08002491 if (req->io->rw.iov != fast_iov)
2492 memcpy(req->io->rw.iov, fast_iov,
2493 sizeof(struct iovec) * iter->nr_segs);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002494 } else {
2495 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboef67676d2019-12-02 11:03:47 -07002496 }
2497}
2498
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08002499static inline int __io_alloc_async_ctx(struct io_kiocb *req)
2500{
2501 req->io = kmalloc(sizeof(*req->io), GFP_KERNEL);
2502 return req->io == NULL;
2503}
2504
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002505static int io_alloc_async_ctx(struct io_kiocb *req)
Jens Axboef67676d2019-12-02 11:03:47 -07002506{
Jens Axboed3656342019-12-18 09:50:26 -07002507 if (!io_op_defs[req->opcode].async_ctx)
2508 return 0;
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08002509
2510 return __io_alloc_async_ctx(req);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002511}
2512
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002513static int io_setup_async_rw(struct io_kiocb *req, ssize_t io_size,
2514 struct iovec *iovec, struct iovec *fast_iov,
2515 struct iov_iter *iter)
2516{
Jens Axboe980ad262020-01-24 23:08:54 -07002517 if (!io_op_defs[req->opcode].async_ctx)
Jens Axboe74566df2020-01-13 19:23:24 -07002518 return 0;
Jens Axboe5d204bc2020-01-31 12:06:52 -07002519 if (!req->io) {
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08002520 if (__io_alloc_async_ctx(req))
Jens Axboe5d204bc2020-01-31 12:06:52 -07002521 return -ENOMEM;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002522
Jens Axboe5d204bc2020-01-31 12:06:52 -07002523 io_req_map_rw(req, io_size, iovec, fast_iov, iter);
2524 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002525 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002526}
2527
Jens Axboe3529d8c2019-12-19 18:24:38 -07002528static int io_read_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2529 bool force_nonblock)
Jens Axboef67676d2019-12-02 11:03:47 -07002530{
Jens Axboe3529d8c2019-12-19 18:24:38 -07002531 struct io_async_ctx *io;
2532 struct iov_iter iter;
Jens Axboef67676d2019-12-02 11:03:47 -07002533 ssize_t ret;
2534
Jens Axboe3529d8c2019-12-19 18:24:38 -07002535 ret = io_prep_rw(req, sqe, force_nonblock);
2536 if (ret)
2537 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07002538
Jens Axboe3529d8c2019-12-19 18:24:38 -07002539 if (unlikely(!(req->file->f_mode & FMODE_READ)))
2540 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07002541
Pavel Begunkov5f798be2020-02-08 13:28:02 +03002542 /* either don't need iovec imported or already have it */
2543 if (!req->io || req->flags & REQ_F_NEED_CLEANUP)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002544 return 0;
2545
2546 io = req->io;
2547 io->rw.iov = io->rw.fast_iov;
2548 req->io = NULL;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002549 ret = io_import_iovec(READ, req, &io->rw.iov, &iter, !force_nonblock);
Jens Axboe3529d8c2019-12-19 18:24:38 -07002550 req->io = io;
2551 if (ret < 0)
2552 return ret;
2553
2554 io_req_map_rw(req, ret, io->rw.iov, io->rw.fast_iov, &iter);
2555 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002556}
2557
Pavel Begunkov014db002020-03-03 21:33:12 +03002558static int io_read(struct io_kiocb *req, bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002559{
2560 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07002561 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002562 struct iov_iter iter;
Jens Axboe31b51512019-01-18 22:56:34 -07002563 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07002564 ssize_t io_size, ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002565
Jens Axboebcda7ba2020-02-23 16:42:51 -07002566 ret = io_import_iovec(READ, req, &iovec, &iter, !force_nonblock);
Jens Axboe06b76d42019-12-19 14:44:26 -07002567 if (ret < 0)
2568 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002569
Jens Axboefd6c2e42019-12-18 12:19:41 -07002570 /* Ensure we clear previously set non-block flag */
2571 if (!force_nonblock)
Jens Axboe29de5f62020-02-20 09:56:08 -07002572 kiocb->ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07002573
Bijan Mottahedeh797f3f52020-01-15 18:37:45 -08002574 req->result = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002575 io_size = ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06002576 if (req->flags & REQ_F_LINK)
Jens Axboef67676d2019-12-02 11:03:47 -07002577 req->result = io_size;
2578
2579 /*
2580 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
2581 * we know to async punt it even if it was opened O_NONBLOCK
2582 */
Jens Axboe29de5f62020-02-20 09:56:08 -07002583 if (force_nonblock && !io_file_supports_async(req->file))
Jens Axboef67676d2019-12-02 11:03:47 -07002584 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06002585
Jens Axboe31b51512019-01-18 22:56:34 -07002586 iov_count = iov_iter_count(&iter);
Jens Axboe9adbd452019-12-20 08:45:55 -07002587 ret = rw_verify_area(READ, req->file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002588 if (!ret) {
2589 ssize_t ret2;
2590
Jens Axboe9adbd452019-12-20 08:45:55 -07002591 if (req->file->f_op->read_iter)
2592 ret2 = call_read_iter(req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002593 else
Jens Axboe9adbd452019-12-20 08:45:55 -07002594 ret2 = loop_rw_iter(READ, req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002595
Jens Axboe9d93a3f2019-05-15 13:53:07 -06002596 /* Catch -EAGAIN return for forced non-blocking submission */
Jens Axboef67676d2019-12-02 11:03:47 -07002597 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkov014db002020-03-03 21:33:12 +03002598 kiocb_done(kiocb, ret2);
Jens Axboef67676d2019-12-02 11:03:47 -07002599 } else {
2600copy_iov:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002601 ret = io_setup_async_rw(req, io_size, iovec,
Jens Axboef67676d2019-12-02 11:03:47 -07002602 inline_vecs, &iter);
2603 if (ret)
2604 goto out_free;
Jens Axboe29de5f62020-02-20 09:56:08 -07002605 /* any defer here is final, must blocking retry */
2606 if (!(req->flags & REQ_F_NOWAIT))
2607 req->flags |= REQ_F_MUST_PUNT;
Jens Axboef67676d2019-12-02 11:03:47 -07002608 return -EAGAIN;
2609 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002610 }
Jens Axboef67676d2019-12-02 11:03:47 -07002611out_free:
Pavel Begunkov1e950812020-02-06 19:51:16 +03002612 kfree(iovec);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002613 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002614 return ret;
2615}
2616
Jens Axboe3529d8c2019-12-19 18:24:38 -07002617static int io_write_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2618 bool force_nonblock)
Jens Axboef67676d2019-12-02 11:03:47 -07002619{
Jens Axboe3529d8c2019-12-19 18:24:38 -07002620 struct io_async_ctx *io;
2621 struct iov_iter iter;
Jens Axboef67676d2019-12-02 11:03:47 -07002622 ssize_t ret;
2623
Jens Axboe3529d8c2019-12-19 18:24:38 -07002624 ret = io_prep_rw(req, sqe, force_nonblock);
2625 if (ret)
2626 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07002627
Jens Axboe3529d8c2019-12-19 18:24:38 -07002628 if (unlikely(!(req->file->f_mode & FMODE_WRITE)))
2629 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07002630
Jens Axboe4ed734b2020-03-20 11:23:41 -06002631 req->fsize = rlimit(RLIMIT_FSIZE);
2632
Pavel Begunkov5f798be2020-02-08 13:28:02 +03002633 /* either don't need iovec imported or already have it */
2634 if (!req->io || req->flags & REQ_F_NEED_CLEANUP)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002635 return 0;
2636
2637 io = req->io;
2638 io->rw.iov = io->rw.fast_iov;
2639 req->io = NULL;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002640 ret = io_import_iovec(WRITE, req, &io->rw.iov, &iter, !force_nonblock);
Jens Axboe3529d8c2019-12-19 18:24:38 -07002641 req->io = io;
2642 if (ret < 0)
2643 return ret;
2644
2645 io_req_map_rw(req, ret, io->rw.iov, io->rw.fast_iov, &iter);
2646 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002647}
2648
Pavel Begunkov014db002020-03-03 21:33:12 +03002649static int io_write(struct io_kiocb *req, bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002650{
2651 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07002652 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002653 struct iov_iter iter;
Jens Axboe31b51512019-01-18 22:56:34 -07002654 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07002655 ssize_t ret, io_size;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002656
Jens Axboebcda7ba2020-02-23 16:42:51 -07002657 ret = io_import_iovec(WRITE, req, &iovec, &iter, !force_nonblock);
Jens Axboe06b76d42019-12-19 14:44:26 -07002658 if (ret < 0)
2659 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002660
Jens Axboefd6c2e42019-12-18 12:19:41 -07002661 /* Ensure we clear previously set non-block flag */
2662 if (!force_nonblock)
Jens Axboe9adbd452019-12-20 08:45:55 -07002663 req->rw.kiocb.ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07002664
Bijan Mottahedeh797f3f52020-01-15 18:37:45 -08002665 req->result = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002666 io_size = ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06002667 if (req->flags & REQ_F_LINK)
Jens Axboef67676d2019-12-02 11:03:47 -07002668 req->result = io_size;
2669
2670 /*
2671 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
2672 * we know to async punt it even if it was opened O_NONBLOCK
2673 */
Jens Axboe29de5f62020-02-20 09:56:08 -07002674 if (force_nonblock && !io_file_supports_async(req->file))
Jens Axboef67676d2019-12-02 11:03:47 -07002675 goto copy_iov;
Jens Axboef67676d2019-12-02 11:03:47 -07002676
Jens Axboe10d59342019-12-09 20:16:22 -07002677 /* file path doesn't support NOWAIT for non-direct_IO */
2678 if (force_nonblock && !(kiocb->ki_flags & IOCB_DIRECT) &&
2679 (req->flags & REQ_F_ISREG))
Jens Axboef67676d2019-12-02 11:03:47 -07002680 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06002681
Jens Axboe31b51512019-01-18 22:56:34 -07002682 iov_count = iov_iter_count(&iter);
Jens Axboe9adbd452019-12-20 08:45:55 -07002683 ret = rw_verify_area(WRITE, req->file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002684 if (!ret) {
Roman Penyaev9bf79332019-03-25 20:09:24 +01002685 ssize_t ret2;
2686
Jens Axboe2b188cc2019-01-07 10:46:33 -07002687 /*
2688 * Open-code file_start_write here to grab freeze protection,
2689 * which will be released by another thread in
2690 * io_complete_rw(). Fool lockdep by telling it the lock got
2691 * released so that it doesn't complain about the held lock when
2692 * we return to userspace.
2693 */
Jens Axboe491381ce2019-10-17 09:20:46 -06002694 if (req->flags & REQ_F_ISREG) {
Jens Axboe9adbd452019-12-20 08:45:55 -07002695 __sb_start_write(file_inode(req->file)->i_sb,
Jens Axboe2b188cc2019-01-07 10:46:33 -07002696 SB_FREEZE_WRITE, true);
Jens Axboe9adbd452019-12-20 08:45:55 -07002697 __sb_writers_release(file_inode(req->file)->i_sb,
Jens Axboe2b188cc2019-01-07 10:46:33 -07002698 SB_FREEZE_WRITE);
2699 }
2700 kiocb->ki_flags |= IOCB_WRITE;
Roman Penyaev9bf79332019-03-25 20:09:24 +01002701
Jens Axboe4ed734b2020-03-20 11:23:41 -06002702 if (!force_nonblock)
2703 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = req->fsize;
2704
Jens Axboe9adbd452019-12-20 08:45:55 -07002705 if (req->file->f_op->write_iter)
2706 ret2 = call_write_iter(req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002707 else
Jens Axboe9adbd452019-12-20 08:45:55 -07002708 ret2 = loop_rw_iter(WRITE, req->file, kiocb, &iter);
Jens Axboe4ed734b2020-03-20 11:23:41 -06002709
2710 if (!force_nonblock)
2711 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = RLIM_INFINITY;
2712
Jens Axboefaac9962020-02-07 15:45:22 -07002713 /*
Chucheng Luobff60352020-03-25 11:31:38 +08002714 * Raw bdev writes will return -EOPNOTSUPP for IOCB_NOWAIT. Just
Jens Axboefaac9962020-02-07 15:45:22 -07002715 * retry them without IOCB_NOWAIT.
2716 */
2717 if (ret2 == -EOPNOTSUPP && (kiocb->ki_flags & IOCB_NOWAIT))
2718 ret2 = -EAGAIN;
Jens Axboef67676d2019-12-02 11:03:47 -07002719 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkov014db002020-03-03 21:33:12 +03002720 kiocb_done(kiocb, ret2);
Jens Axboef67676d2019-12-02 11:03:47 -07002721 } else {
2722copy_iov:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002723 ret = io_setup_async_rw(req, io_size, iovec,
Jens Axboef67676d2019-12-02 11:03:47 -07002724 inline_vecs, &iter);
2725 if (ret)
2726 goto out_free;
Jens Axboe29de5f62020-02-20 09:56:08 -07002727 /* any defer here is final, must blocking retry */
2728 req->flags |= REQ_F_MUST_PUNT;
Jens Axboef67676d2019-12-02 11:03:47 -07002729 return -EAGAIN;
2730 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002731 }
Jens Axboe31b51512019-01-18 22:56:34 -07002732out_free:
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002733 req->flags &= ~REQ_F_NEED_CLEANUP;
Pavel Begunkov1e950812020-02-06 19:51:16 +03002734 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002735 return ret;
2736}
2737
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002738static int io_splice_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2739{
2740 struct io_splice* sp = &req->splice;
2741 unsigned int valid_flags = SPLICE_F_FD_IN_FIXED | SPLICE_F_ALL;
2742 int ret;
2743
2744 if (req->flags & REQ_F_NEED_CLEANUP)
2745 return 0;
2746
2747 sp->file_in = NULL;
2748 sp->off_in = READ_ONCE(sqe->splice_off_in);
2749 sp->off_out = READ_ONCE(sqe->off);
2750 sp->len = READ_ONCE(sqe->len);
2751 sp->flags = READ_ONCE(sqe->splice_flags);
2752
2753 if (unlikely(sp->flags & ~valid_flags))
2754 return -EINVAL;
2755
2756 ret = io_file_get(NULL, req, READ_ONCE(sqe->splice_fd_in), &sp->file_in,
2757 (sp->flags & SPLICE_F_FD_IN_FIXED));
2758 if (ret)
2759 return ret;
2760 req->flags |= REQ_F_NEED_CLEANUP;
2761
2762 if (!S_ISREG(file_inode(sp->file_in)->i_mode))
2763 req->work.flags |= IO_WQ_WORK_UNBOUND;
2764
2765 return 0;
2766}
2767
2768static bool io_splice_punt(struct file *file)
2769{
2770 if (get_pipe_info(file))
2771 return false;
2772 if (!io_file_supports_async(file))
2773 return true;
2774 return !(file->f_mode & O_NONBLOCK);
2775}
2776
Pavel Begunkov014db002020-03-03 21:33:12 +03002777static int io_splice(struct io_kiocb *req, bool force_nonblock)
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002778{
2779 struct io_splice *sp = &req->splice;
2780 struct file *in = sp->file_in;
2781 struct file *out = sp->file_out;
2782 unsigned int flags = sp->flags & ~SPLICE_F_FD_IN_FIXED;
2783 loff_t *poff_in, *poff_out;
2784 long ret;
2785
2786 if (force_nonblock) {
2787 if (io_splice_punt(in) || io_splice_punt(out))
2788 return -EAGAIN;
2789 flags |= SPLICE_F_NONBLOCK;
2790 }
2791
2792 poff_in = (sp->off_in == -1) ? NULL : &sp->off_in;
2793 poff_out = (sp->off_out == -1) ? NULL : &sp->off_out;
2794 ret = do_splice(in, poff_in, out, poff_out, sp->len, flags);
2795 if (force_nonblock && ret == -EAGAIN)
2796 return -EAGAIN;
2797
2798 io_put_file(req, in, (sp->flags & SPLICE_F_FD_IN_FIXED));
2799 req->flags &= ~REQ_F_NEED_CLEANUP;
2800
2801 io_cqring_add_event(req, ret);
2802 if (ret != sp->len)
2803 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03002804 io_put_req(req);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002805 return 0;
2806}
2807
Jens Axboe2b188cc2019-01-07 10:46:33 -07002808/*
2809 * IORING_OP_NOP just posts a completion event, nothing else.
2810 */
Jens Axboe78e19bb2019-11-06 15:21:34 -07002811static int io_nop(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002812{
2813 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002814
Jens Axboedef596e2019-01-09 08:59:42 -07002815 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
2816 return -EINVAL;
2817
Jens Axboe78e19bb2019-11-06 15:21:34 -07002818 io_cqring_add_event(req, 0);
Jens Axboee65ef562019-03-12 10:16:44 -06002819 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002820 return 0;
2821}
2822
Jens Axboe3529d8c2019-12-19 18:24:38 -07002823static int io_prep_fsync(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002824{
Jens Axboe6b063142019-01-10 22:13:58 -07002825 struct io_ring_ctx *ctx = req->ctx;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002826
Jens Axboe09bb8392019-03-13 12:39:28 -06002827 if (!req->file)
2828 return -EBADF;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002829
Jens Axboe6b063142019-01-10 22:13:58 -07002830 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboedef596e2019-01-09 08:59:42 -07002831 return -EINVAL;
Jens Axboeedafcce2019-01-09 09:16:05 -07002832 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002833 return -EINVAL;
2834
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002835 req->sync.flags = READ_ONCE(sqe->fsync_flags);
2836 if (unlikely(req->sync.flags & ~IORING_FSYNC_DATASYNC))
2837 return -EINVAL;
2838
2839 req->sync.off = READ_ONCE(sqe->off);
2840 req->sync.len = READ_ONCE(sqe->len);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002841 return 0;
2842}
2843
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002844static bool io_req_cancelled(struct io_kiocb *req)
2845{
2846 if (req->work.flags & IO_WQ_WORK_CANCEL) {
2847 req_set_fail_links(req);
2848 io_cqring_add_event(req, -ECANCELED);
2849 io_put_req(req);
2850 return true;
2851 }
2852
2853 return false;
2854}
2855
Pavel Begunkov014db002020-03-03 21:33:12 +03002856static void __io_fsync(struct io_kiocb *req)
Jens Axboe78912932020-01-14 22:09:06 -07002857{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002858 loff_t end = req->sync.off + req->sync.len;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002859 int ret;
2860
Jens Axboe9adbd452019-12-20 08:45:55 -07002861 ret = vfs_fsync_range(req->file, req->sync.off,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002862 end > 0 ? end : LLONG_MAX,
2863 req->sync.flags & IORING_FSYNC_DATASYNC);
2864 if (ret < 0)
2865 req_set_fail_links(req);
2866 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03002867 io_put_req(req);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002868}
2869
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002870static void io_fsync_finish(struct io_wq_work **workptr)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002871{
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002872 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002873
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002874 if (io_req_cancelled(req))
2875 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03002876 __io_fsync(req);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03002877 io_steal_work(req, workptr);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002878}
2879
Pavel Begunkov014db002020-03-03 21:33:12 +03002880static int io_fsync(struct io_kiocb *req, bool force_nonblock)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002881{
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002882 /* fsync always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002883 if (force_nonblock) {
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002884 req->work.func = io_fsync_finish;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002885 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002886 }
Pavel Begunkov014db002020-03-03 21:33:12 +03002887 __io_fsync(req);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002888 return 0;
2889}
2890
Pavel Begunkov014db002020-03-03 21:33:12 +03002891static void __io_fallocate(struct io_kiocb *req)
Jens Axboed63d1b52019-12-10 10:38:56 -07002892{
Jens Axboed63d1b52019-12-10 10:38:56 -07002893 int ret;
2894
Jens Axboe4ed734b2020-03-20 11:23:41 -06002895 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = req->fsize;
Jens Axboed63d1b52019-12-10 10:38:56 -07002896 ret = vfs_fallocate(req->file, req->sync.mode, req->sync.off,
2897 req->sync.len);
Jens Axboe4ed734b2020-03-20 11:23:41 -06002898 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = RLIM_INFINITY;
Jens Axboed63d1b52019-12-10 10:38:56 -07002899 if (ret < 0)
2900 req_set_fail_links(req);
2901 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03002902 io_put_req(req);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002903}
2904
Jens Axboe2b188cc2019-01-07 10:46:33 -07002905static void io_fallocate_finish(struct io_wq_work **workptr)
2906{
2907 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Jens Axboed63d1b52019-12-10 10:38:56 -07002908
2909 if (io_req_cancelled(req))
2910 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03002911 __io_fallocate(req);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03002912 io_steal_work(req, workptr);
Jens Axboed63d1b52019-12-10 10:38:56 -07002913}
2914
2915static int io_fallocate_prep(struct io_kiocb *req,
2916 const struct io_uring_sqe *sqe)
2917{
2918 if (sqe->ioprio || sqe->buf_index || sqe->rw_flags)
2919 return -EINVAL;
2920
2921 req->sync.off = READ_ONCE(sqe->off);
2922 req->sync.len = READ_ONCE(sqe->addr);
2923 req->sync.mode = READ_ONCE(sqe->len);
Jens Axboe4ed734b2020-03-20 11:23:41 -06002924 req->fsize = rlimit(RLIMIT_FSIZE);
Jens Axboed63d1b52019-12-10 10:38:56 -07002925 return 0;
2926}
2927
Pavel Begunkov014db002020-03-03 21:33:12 +03002928static int io_fallocate(struct io_kiocb *req, bool force_nonblock)
Jens Axboed63d1b52019-12-10 10:38:56 -07002929{
Jens Axboed63d1b52019-12-10 10:38:56 -07002930 /* fallocate always requiring blocking context */
2931 if (force_nonblock) {
Jens Axboed63d1b52019-12-10 10:38:56 -07002932 req->work.func = io_fallocate_finish;
2933 return -EAGAIN;
2934 }
2935
Pavel Begunkov014db002020-03-03 21:33:12 +03002936 __io_fallocate(req);
Jens Axboed63d1b52019-12-10 10:38:56 -07002937 return 0;
2938}
2939
Jens Axboe15b71ab2019-12-11 11:20:36 -07002940static int io_openat_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2941{
Jens Axboef8748882020-01-08 17:47:02 -07002942 const char __user *fname;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002943 int ret;
2944
2945 if (sqe->ioprio || sqe->buf_index)
2946 return -EINVAL;
Jens Axboecf3040c2020-02-06 21:31:40 -07002947 if (sqe->flags & IOSQE_FIXED_FILE)
2948 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03002949 if (req->flags & REQ_F_NEED_CLEANUP)
2950 return 0;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002951
2952 req->open.dfd = READ_ONCE(sqe->fd);
Jens Axboec12cedf2020-01-08 17:41:21 -07002953 req->open.how.mode = READ_ONCE(sqe->len);
Jens Axboef8748882020-01-08 17:47:02 -07002954 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboec12cedf2020-01-08 17:41:21 -07002955 req->open.how.flags = READ_ONCE(sqe->open_flags);
Jens Axboe08a1d26eb2020-04-08 09:20:54 -06002956 if (force_o_largefile())
2957 req->open.how.flags |= O_LARGEFILE;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002958
Jens Axboef8748882020-01-08 17:47:02 -07002959 req->open.filename = getname(fname);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002960 if (IS_ERR(req->open.filename)) {
2961 ret = PTR_ERR(req->open.filename);
2962 req->open.filename = NULL;
2963 return ret;
2964 }
2965
Jens Axboe4022e7a2020-03-19 19:23:18 -06002966 req->open.nofile = rlimit(RLIMIT_NOFILE);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03002967 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002968 return 0;
2969}
2970
Jens Axboecebdb982020-01-08 17:59:24 -07002971static int io_openat2_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2972{
2973 struct open_how __user *how;
2974 const char __user *fname;
2975 size_t len;
2976 int ret;
2977
2978 if (sqe->ioprio || sqe->buf_index)
2979 return -EINVAL;
Jens Axboecf3040c2020-02-06 21:31:40 -07002980 if (sqe->flags & IOSQE_FIXED_FILE)
2981 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03002982 if (req->flags & REQ_F_NEED_CLEANUP)
2983 return 0;
Jens Axboecebdb982020-01-08 17:59:24 -07002984
2985 req->open.dfd = READ_ONCE(sqe->fd);
2986 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
2987 how = u64_to_user_ptr(READ_ONCE(sqe->addr2));
2988 len = READ_ONCE(sqe->len);
2989
2990 if (len < OPEN_HOW_SIZE_VER0)
2991 return -EINVAL;
2992
2993 ret = copy_struct_from_user(&req->open.how, sizeof(req->open.how), how,
2994 len);
2995 if (ret)
2996 return ret;
2997
2998 if (!(req->open.how.flags & O_PATH) && force_o_largefile())
2999 req->open.how.flags |= O_LARGEFILE;
3000
3001 req->open.filename = getname(fname);
3002 if (IS_ERR(req->open.filename)) {
3003 ret = PTR_ERR(req->open.filename);
3004 req->open.filename = NULL;
3005 return ret;
3006 }
3007
Jens Axboe4022e7a2020-03-19 19:23:18 -06003008 req->open.nofile = rlimit(RLIMIT_NOFILE);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003009 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboecebdb982020-01-08 17:59:24 -07003010 return 0;
3011}
3012
Pavel Begunkov014db002020-03-03 21:33:12 +03003013static int io_openat2(struct io_kiocb *req, bool force_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07003014{
3015 struct open_flags op;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003016 struct file *file;
3017 int ret;
3018
Jens Axboef86cd202020-01-29 13:46:44 -07003019 if (force_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07003020 return -EAGAIN;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003021
Jens Axboecebdb982020-01-08 17:59:24 -07003022 ret = build_open_flags(&req->open.how, &op);
Jens Axboe15b71ab2019-12-11 11:20:36 -07003023 if (ret)
3024 goto err;
3025
Jens Axboe4022e7a2020-03-19 19:23:18 -06003026 ret = __get_unused_fd_flags(req->open.how.flags, req->open.nofile);
Jens Axboe15b71ab2019-12-11 11:20:36 -07003027 if (ret < 0)
3028 goto err;
3029
3030 file = do_filp_open(req->open.dfd, req->open.filename, &op);
3031 if (IS_ERR(file)) {
3032 put_unused_fd(ret);
3033 ret = PTR_ERR(file);
3034 } else {
3035 fsnotify_open(file);
3036 fd_install(ret, file);
3037 }
3038err:
3039 putname(req->open.filename);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003040 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003041 if (ret < 0)
3042 req_set_fail_links(req);
3043 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003044 io_put_req(req);
Jens Axboe15b71ab2019-12-11 11:20:36 -07003045 return 0;
3046}
3047
Pavel Begunkov014db002020-03-03 21:33:12 +03003048static int io_openat(struct io_kiocb *req, bool force_nonblock)
Jens Axboecebdb982020-01-08 17:59:24 -07003049{
3050 req->open.how = build_open_how(req->open.how.flags, req->open.how.mode);
Pavel Begunkov014db002020-03-03 21:33:12 +03003051 return io_openat2(req, force_nonblock);
Jens Axboecebdb982020-01-08 17:59:24 -07003052}
3053
Jens Axboe067524e2020-03-02 16:32:28 -07003054static int io_remove_buffers_prep(struct io_kiocb *req,
3055 const struct io_uring_sqe *sqe)
3056{
3057 struct io_provide_buf *p = &req->pbuf;
3058 u64 tmp;
3059
3060 if (sqe->ioprio || sqe->rw_flags || sqe->addr || sqe->len || sqe->off)
3061 return -EINVAL;
3062
3063 tmp = READ_ONCE(sqe->fd);
3064 if (!tmp || tmp > USHRT_MAX)
3065 return -EINVAL;
3066
3067 memset(p, 0, sizeof(*p));
3068 p->nbufs = tmp;
3069 p->bgid = READ_ONCE(sqe->buf_group);
3070 return 0;
3071}
3072
3073static int __io_remove_buffers(struct io_ring_ctx *ctx, struct io_buffer *buf,
3074 int bgid, unsigned nbufs)
3075{
3076 unsigned i = 0;
3077
3078 /* shouldn't happen */
3079 if (!nbufs)
3080 return 0;
3081
3082 /* the head kbuf is the list itself */
3083 while (!list_empty(&buf->list)) {
3084 struct io_buffer *nxt;
3085
3086 nxt = list_first_entry(&buf->list, struct io_buffer, list);
3087 list_del(&nxt->list);
3088 kfree(nxt);
3089 if (++i == nbufs)
3090 return i;
3091 }
3092 i++;
3093 kfree(buf);
3094 idr_remove(&ctx->io_buffer_idr, bgid);
3095
3096 return i;
3097}
3098
3099static int io_remove_buffers(struct io_kiocb *req, bool force_nonblock)
3100{
3101 struct io_provide_buf *p = &req->pbuf;
3102 struct io_ring_ctx *ctx = req->ctx;
3103 struct io_buffer *head;
3104 int ret = 0;
3105
3106 io_ring_submit_lock(ctx, !force_nonblock);
3107
3108 lockdep_assert_held(&ctx->uring_lock);
3109
3110 ret = -ENOENT;
3111 head = idr_find(&ctx->io_buffer_idr, p->bgid);
3112 if (head)
3113 ret = __io_remove_buffers(ctx, head, p->bgid, p->nbufs);
3114
3115 io_ring_submit_lock(ctx, !force_nonblock);
3116 if (ret < 0)
3117 req_set_fail_links(req);
3118 io_cqring_add_event(req, ret);
3119 io_put_req(req);
3120 return 0;
3121}
3122
Jens Axboeddf0322d2020-02-23 16:41:33 -07003123static int io_provide_buffers_prep(struct io_kiocb *req,
3124 const struct io_uring_sqe *sqe)
3125{
3126 struct io_provide_buf *p = &req->pbuf;
3127 u64 tmp;
3128
3129 if (sqe->ioprio || sqe->rw_flags)
3130 return -EINVAL;
3131
3132 tmp = READ_ONCE(sqe->fd);
3133 if (!tmp || tmp > USHRT_MAX)
3134 return -E2BIG;
3135 p->nbufs = tmp;
3136 p->addr = READ_ONCE(sqe->addr);
3137 p->len = READ_ONCE(sqe->len);
3138
3139 if (!access_ok(u64_to_user_ptr(p->addr), p->len))
3140 return -EFAULT;
3141
3142 p->bgid = READ_ONCE(sqe->buf_group);
3143 tmp = READ_ONCE(sqe->off);
3144 if (tmp > USHRT_MAX)
3145 return -E2BIG;
3146 p->bid = tmp;
3147 return 0;
3148}
3149
3150static int io_add_buffers(struct io_provide_buf *pbuf, struct io_buffer **head)
3151{
3152 struct io_buffer *buf;
3153 u64 addr = pbuf->addr;
3154 int i, bid = pbuf->bid;
3155
3156 for (i = 0; i < pbuf->nbufs; i++) {
3157 buf = kmalloc(sizeof(*buf), GFP_KERNEL);
3158 if (!buf)
3159 break;
3160
3161 buf->addr = addr;
3162 buf->len = pbuf->len;
3163 buf->bid = bid;
3164 addr += pbuf->len;
3165 bid++;
3166 if (!*head) {
3167 INIT_LIST_HEAD(&buf->list);
3168 *head = buf;
3169 } else {
3170 list_add_tail(&buf->list, &(*head)->list);
3171 }
3172 }
3173
3174 return i ? i : -ENOMEM;
3175}
3176
Jens Axboeddf0322d2020-02-23 16:41:33 -07003177static int io_provide_buffers(struct io_kiocb *req, bool force_nonblock)
3178{
3179 struct io_provide_buf *p = &req->pbuf;
3180 struct io_ring_ctx *ctx = req->ctx;
3181 struct io_buffer *head, *list;
3182 int ret = 0;
3183
3184 io_ring_submit_lock(ctx, !force_nonblock);
3185
3186 lockdep_assert_held(&ctx->uring_lock);
3187
3188 list = head = idr_find(&ctx->io_buffer_idr, p->bgid);
3189
3190 ret = io_add_buffers(p, &head);
3191 if (ret < 0)
3192 goto out;
3193
3194 if (!list) {
3195 ret = idr_alloc(&ctx->io_buffer_idr, head, p->bgid, p->bgid + 1,
3196 GFP_KERNEL);
3197 if (ret < 0) {
Jens Axboe067524e2020-03-02 16:32:28 -07003198 __io_remove_buffers(ctx, head, p->bgid, -1U);
Jens Axboeddf0322d2020-02-23 16:41:33 -07003199 goto out;
3200 }
3201 }
3202out:
3203 io_ring_submit_unlock(ctx, !force_nonblock);
3204 if (ret < 0)
3205 req_set_fail_links(req);
3206 io_cqring_add_event(req, ret);
3207 io_put_req(req);
3208 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003209}
3210
Jens Axboe3e4827b2020-01-08 15:18:09 -07003211static int io_epoll_ctl_prep(struct io_kiocb *req,
3212 const struct io_uring_sqe *sqe)
3213{
3214#if defined(CONFIG_EPOLL)
3215 if (sqe->ioprio || sqe->buf_index)
3216 return -EINVAL;
3217
3218 req->epoll.epfd = READ_ONCE(sqe->fd);
3219 req->epoll.op = READ_ONCE(sqe->len);
3220 req->epoll.fd = READ_ONCE(sqe->off);
3221
3222 if (ep_op_has_event(req->epoll.op)) {
3223 struct epoll_event __user *ev;
3224
3225 ev = u64_to_user_ptr(READ_ONCE(sqe->addr));
3226 if (copy_from_user(&req->epoll.event, ev, sizeof(*ev)))
3227 return -EFAULT;
3228 }
3229
3230 return 0;
3231#else
3232 return -EOPNOTSUPP;
3233#endif
3234}
3235
Pavel Begunkov014db002020-03-03 21:33:12 +03003236static int io_epoll_ctl(struct io_kiocb *req, bool force_nonblock)
Jens Axboe3e4827b2020-01-08 15:18:09 -07003237{
3238#if defined(CONFIG_EPOLL)
3239 struct io_epoll *ie = &req->epoll;
3240 int ret;
3241
3242 ret = do_epoll_ctl(ie->epfd, ie->op, ie->fd, &ie->event, force_nonblock);
3243 if (force_nonblock && ret == -EAGAIN)
3244 return -EAGAIN;
3245
3246 if (ret < 0)
3247 req_set_fail_links(req);
3248 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003249 io_put_req(req);
Jens Axboe3e4827b2020-01-08 15:18:09 -07003250 return 0;
3251#else
3252 return -EOPNOTSUPP;
3253#endif
3254}
3255
Jens Axboec1ca7572019-12-25 22:18:28 -07003256static int io_madvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3257{
3258#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
3259 if (sqe->ioprio || sqe->buf_index || sqe->off)
3260 return -EINVAL;
3261
3262 req->madvise.addr = READ_ONCE(sqe->addr);
3263 req->madvise.len = READ_ONCE(sqe->len);
3264 req->madvise.advice = READ_ONCE(sqe->fadvise_advice);
3265 return 0;
3266#else
3267 return -EOPNOTSUPP;
3268#endif
3269}
3270
Pavel Begunkov014db002020-03-03 21:33:12 +03003271static int io_madvise(struct io_kiocb *req, bool force_nonblock)
Jens Axboec1ca7572019-12-25 22:18:28 -07003272{
3273#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
3274 struct io_madvise *ma = &req->madvise;
3275 int ret;
3276
3277 if (force_nonblock)
3278 return -EAGAIN;
3279
3280 ret = do_madvise(ma->addr, ma->len, ma->advice);
3281 if (ret < 0)
3282 req_set_fail_links(req);
3283 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003284 io_put_req(req);
Jens Axboec1ca7572019-12-25 22:18:28 -07003285 return 0;
3286#else
3287 return -EOPNOTSUPP;
3288#endif
3289}
3290
Jens Axboe4840e412019-12-25 22:03:45 -07003291static int io_fadvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3292{
3293 if (sqe->ioprio || sqe->buf_index || sqe->addr)
3294 return -EINVAL;
3295
3296 req->fadvise.offset = READ_ONCE(sqe->off);
3297 req->fadvise.len = READ_ONCE(sqe->len);
3298 req->fadvise.advice = READ_ONCE(sqe->fadvise_advice);
3299 return 0;
3300}
3301
Pavel Begunkov014db002020-03-03 21:33:12 +03003302static int io_fadvise(struct io_kiocb *req, bool force_nonblock)
Jens Axboe4840e412019-12-25 22:03:45 -07003303{
3304 struct io_fadvise *fa = &req->fadvise;
3305 int ret;
3306
Jens Axboe3e694262020-02-01 09:22:49 -07003307 if (force_nonblock) {
3308 switch (fa->advice) {
3309 case POSIX_FADV_NORMAL:
3310 case POSIX_FADV_RANDOM:
3311 case POSIX_FADV_SEQUENTIAL:
3312 break;
3313 default:
3314 return -EAGAIN;
3315 }
3316 }
Jens Axboe4840e412019-12-25 22:03:45 -07003317
3318 ret = vfs_fadvise(req->file, fa->offset, fa->len, fa->advice);
3319 if (ret < 0)
3320 req_set_fail_links(req);
3321 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003322 io_put_req(req);
Jens Axboe4840e412019-12-25 22:03:45 -07003323 return 0;
3324}
3325
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003326static int io_statx_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3327{
Jens Axboef8748882020-01-08 17:47:02 -07003328 const char __user *fname;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003329 unsigned lookup_flags;
3330 int ret;
3331
3332 if (sqe->ioprio || sqe->buf_index)
3333 return -EINVAL;
Jens Axboecf3040c2020-02-06 21:31:40 -07003334 if (sqe->flags & IOSQE_FIXED_FILE)
3335 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03003336 if (req->flags & REQ_F_NEED_CLEANUP)
3337 return 0;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003338
3339 req->open.dfd = READ_ONCE(sqe->fd);
3340 req->open.mask = READ_ONCE(sqe->len);
Jens Axboef8748882020-01-08 17:47:02 -07003341 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003342 req->open.buffer = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboec12cedf2020-01-08 17:41:21 -07003343 req->open.how.flags = READ_ONCE(sqe->statx_flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003344
Jens Axboec12cedf2020-01-08 17:41:21 -07003345 if (vfs_stat_set_lookup_flags(&lookup_flags, req->open.how.flags))
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003346 return -EINVAL;
3347
Jens Axboef8748882020-01-08 17:47:02 -07003348 req->open.filename = getname_flags(fname, lookup_flags, NULL);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003349 if (IS_ERR(req->open.filename)) {
3350 ret = PTR_ERR(req->open.filename);
3351 req->open.filename = NULL;
3352 return ret;
3353 }
3354
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003355 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003356 return 0;
3357}
3358
Pavel Begunkov014db002020-03-03 21:33:12 +03003359static int io_statx(struct io_kiocb *req, bool force_nonblock)
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003360{
3361 struct io_open *ctx = &req->open;
3362 unsigned lookup_flags;
3363 struct path path;
3364 struct kstat stat;
3365 int ret;
3366
3367 if (force_nonblock)
3368 return -EAGAIN;
3369
Jens Axboec12cedf2020-01-08 17:41:21 -07003370 if (vfs_stat_set_lookup_flags(&lookup_flags, ctx->how.flags))
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003371 return -EINVAL;
3372
3373retry:
3374 /* filename_lookup() drops it, keep a reference */
3375 ctx->filename->refcnt++;
3376
3377 ret = filename_lookup(ctx->dfd, ctx->filename, lookup_flags, &path,
3378 NULL);
3379 if (ret)
3380 goto err;
3381
Jens Axboec12cedf2020-01-08 17:41:21 -07003382 ret = vfs_getattr(&path, &stat, ctx->mask, ctx->how.flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003383 path_put(&path);
3384 if (retry_estale(ret, lookup_flags)) {
3385 lookup_flags |= LOOKUP_REVAL;
3386 goto retry;
3387 }
3388 if (!ret)
3389 ret = cp_statx(&stat, ctx->buffer);
3390err:
3391 putname(ctx->filename);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003392 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003393 if (ret < 0)
3394 req_set_fail_links(req);
3395 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003396 io_put_req(req);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003397 return 0;
3398}
3399
Jens Axboeb5dba592019-12-11 14:02:38 -07003400static int io_close_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3401{
3402 /*
3403 * If we queue this for async, it must not be cancellable. That would
3404 * leave the 'file' in an undeterminate state.
3405 */
3406 req->work.flags |= IO_WQ_WORK_NO_CANCEL;
3407
3408 if (sqe->ioprio || sqe->off || sqe->addr || sqe->len ||
3409 sqe->rw_flags || sqe->buf_index)
3410 return -EINVAL;
3411 if (sqe->flags & IOSQE_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07003412 return -EBADF;
Jens Axboeb5dba592019-12-11 14:02:38 -07003413
3414 req->close.fd = READ_ONCE(sqe->fd);
3415 if (req->file->f_op == &io_uring_fops ||
Pavel Begunkovb14cca02020-01-17 04:45:59 +03003416 req->close.fd == req->ctx->ring_fd)
Jens Axboeb5dba592019-12-11 14:02:38 -07003417 return -EBADF;
3418
3419 return 0;
3420}
3421
Pavel Begunkova93b3332020-02-08 14:04:34 +03003422/* only called when __close_fd_get_file() is done */
Pavel Begunkov014db002020-03-03 21:33:12 +03003423static void __io_close_finish(struct io_kiocb *req)
Pavel Begunkova93b3332020-02-08 14:04:34 +03003424{
3425 int ret;
3426
3427 ret = filp_close(req->close.put_file, req->work.files);
3428 if (ret < 0)
3429 req_set_fail_links(req);
3430 io_cqring_add_event(req, ret);
3431 fput(req->close.put_file);
Pavel Begunkov014db002020-03-03 21:33:12 +03003432 io_put_req(req);
Pavel Begunkova93b3332020-02-08 14:04:34 +03003433}
3434
Jens Axboeb5dba592019-12-11 14:02:38 -07003435static void io_close_finish(struct io_wq_work **workptr)
3436{
3437 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Jens Axboeb5dba592019-12-11 14:02:38 -07003438
Pavel Begunkov7fbeb952020-02-16 01:01:18 +03003439 /* not cancellable, don't do io_req_cancelled() */
Pavel Begunkov014db002020-03-03 21:33:12 +03003440 __io_close_finish(req);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03003441 io_steal_work(req, workptr);
Jens Axboeb5dba592019-12-11 14:02:38 -07003442}
3443
Pavel Begunkov014db002020-03-03 21:33:12 +03003444static int io_close(struct io_kiocb *req, bool force_nonblock)
Jens Axboeb5dba592019-12-11 14:02:38 -07003445{
3446 int ret;
3447
3448 req->close.put_file = NULL;
3449 ret = __close_fd_get_file(req->close.fd, &req->close.put_file);
3450 if (ret < 0)
3451 return ret;
3452
3453 /* if the file has a flush method, be safe and punt to async */
Pavel Begunkova2100672020-03-02 23:45:16 +03003454 if (req->close.put_file->f_op->flush && force_nonblock) {
Pavel Begunkov594506f2020-03-03 21:33:11 +03003455 /* submission ref will be dropped, take it for async */
3456 refcount_inc(&req->refs);
3457
Pavel Begunkova2100672020-03-02 23:45:16 +03003458 req->work.func = io_close_finish;
3459 /*
3460 * Do manual async queue here to avoid grabbing files - we don't
3461 * need the files, and it'll cause io_close_finish() to close
3462 * the file again and cause a double CQE entry for this request
3463 */
3464 io_queue_async_work(req);
3465 return 0;
3466 }
Jens Axboeb5dba592019-12-11 14:02:38 -07003467
3468 /*
3469 * No ->flush(), safely close from here and just punt the
3470 * fput() to async context.
3471 */
Pavel Begunkov014db002020-03-03 21:33:12 +03003472 __io_close_finish(req);
Jens Axboe1a417f42020-01-31 17:16:48 -07003473 return 0;
Jens Axboeb5dba592019-12-11 14:02:38 -07003474}
3475
Jens Axboe3529d8c2019-12-19 18:24:38 -07003476static int io_prep_sfr(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003477{
3478 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003479
3480 if (!req->file)
3481 return -EBADF;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003482
3483 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
3484 return -EINVAL;
3485 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
3486 return -EINVAL;
3487
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003488 req->sync.off = READ_ONCE(sqe->off);
3489 req->sync.len = READ_ONCE(sqe->len);
3490 req->sync.flags = READ_ONCE(sqe->sync_range_flags);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003491 return 0;
3492}
3493
Pavel Begunkov014db002020-03-03 21:33:12 +03003494static void __io_sync_file_range(struct io_kiocb *req)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003495{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003496 int ret;
3497
Jens Axboe9adbd452019-12-20 08:45:55 -07003498 ret = sync_file_range(req->file, req->sync.off, req->sync.len,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003499 req->sync.flags);
3500 if (ret < 0)
3501 req_set_fail_links(req);
3502 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003503 io_put_req(req);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03003504}
3505
3506
3507static void io_sync_file_range_finish(struct io_wq_work **workptr)
3508{
3509 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03003510
3511 if (io_req_cancelled(req))
3512 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03003513 __io_sync_file_range(req);
Pavel Begunkov594506f2020-03-03 21:33:11 +03003514 io_put_req(req); /* put submission ref */
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003515}
3516
Pavel Begunkov014db002020-03-03 21:33:12 +03003517static int io_sync_file_range(struct io_kiocb *req, bool force_nonblock)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003518{
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003519 /* sync_file_range always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003520 if (force_nonblock) {
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003521 req->work.func = io_sync_file_range_finish;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003522 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003523 }
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003524
Pavel Begunkov014db002020-03-03 21:33:12 +03003525 __io_sync_file_range(req);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003526 return 0;
3527}
3528
YueHaibing469956e2020-03-04 15:53:52 +08003529#if defined(CONFIG_NET)
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003530static int io_setup_async_msg(struct io_kiocb *req,
3531 struct io_async_msghdr *kmsg)
3532{
3533 if (req->io)
3534 return -EAGAIN;
3535 if (io_alloc_async_ctx(req)) {
3536 if (kmsg->iov != kmsg->fast_iov)
3537 kfree(kmsg->iov);
3538 return -ENOMEM;
3539 }
3540 req->flags |= REQ_F_NEED_CLEANUP;
3541 memcpy(&req->io->msg, kmsg, sizeof(*kmsg));
3542 return -EAGAIN;
3543}
3544
Jens Axboe3529d8c2019-12-19 18:24:38 -07003545static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboeaa1fa282019-04-19 13:38:09 -06003546{
Jens Axboee47293f2019-12-20 08:58:21 -07003547 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003548 struct io_async_ctx *io = req->io;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003549 int ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003550
Jens Axboee47293f2019-12-20 08:58:21 -07003551 sr->msg_flags = READ_ONCE(sqe->msg_flags);
3552 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboefddafac2020-01-04 20:19:44 -07003553 sr->len = READ_ONCE(sqe->len);
Jens Axboe3529d8c2019-12-19 18:24:38 -07003554
Jens Axboed8768362020-02-27 14:17:49 -07003555#ifdef CONFIG_COMPAT
3556 if (req->ctx->compat)
3557 sr->msg_flags |= MSG_CMSG_COMPAT;
3558#endif
3559
Jens Axboefddafac2020-01-04 20:19:44 -07003560 if (!io || req->opcode == IORING_OP_SEND)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003561 return 0;
Pavel Begunkov5f798be2020-02-08 13:28:02 +03003562 /* iovec is already imported */
3563 if (req->flags & REQ_F_NEED_CLEANUP)
3564 return 0;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003565
Jens Axboed9688562019-12-09 19:35:20 -07003566 io->msg.iov = io->msg.fast_iov;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003567 ret = sendmsg_copy_msghdr(&io->msg.msg, sr->msg, sr->msg_flags,
Jens Axboee47293f2019-12-20 08:58:21 -07003568 &io->msg.iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003569 if (!ret)
3570 req->flags |= REQ_F_NEED_CLEANUP;
3571 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003572}
3573
Pavel Begunkov014db002020-03-03 21:33:12 +03003574static int io_sendmsg(struct io_kiocb *req, bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07003575{
Jens Axboe0b416c32019-12-15 10:57:46 -07003576 struct io_async_msghdr *kmsg = NULL;
Jens Axboe03b12302019-12-02 18:50:25 -07003577 struct socket *sock;
3578 int ret;
3579
3580 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3581 return -EINVAL;
3582
3583 sock = sock_from_file(req->file, &ret);
3584 if (sock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003585 struct io_async_ctx io;
Jens Axboe03b12302019-12-02 18:50:25 -07003586 unsigned flags;
3587
Jens Axboe03b12302019-12-02 18:50:25 -07003588 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07003589 kmsg = &req->io->msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003590 kmsg->msg.msg_name = &req->io->msg.addr;
Jens Axboe0b416c32019-12-15 10:57:46 -07003591 /* if iov is set, it's allocated already */
3592 if (!kmsg->iov)
3593 kmsg->iov = kmsg->fast_iov;
3594 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07003595 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07003596 struct io_sr_msg *sr = &req->sr_msg;
3597
Jens Axboe0b416c32019-12-15 10:57:46 -07003598 kmsg = &io.msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003599 kmsg->msg.msg_name = &io.msg.addr;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003600
3601 io.msg.iov = io.msg.fast_iov;
3602 ret = sendmsg_copy_msghdr(&io.msg.msg, sr->msg,
3603 sr->msg_flags, &io.msg.iov);
Jens Axboe03b12302019-12-02 18:50:25 -07003604 if (ret)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003605 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003606 }
3607
Jens Axboee47293f2019-12-20 08:58:21 -07003608 flags = req->sr_msg.msg_flags;
3609 if (flags & MSG_DONTWAIT)
3610 req->flags |= REQ_F_NOWAIT;
3611 else if (force_nonblock)
3612 flags |= MSG_DONTWAIT;
3613
Jens Axboe0b416c32019-12-15 10:57:46 -07003614 ret = __sys_sendmsg_sock(sock, &kmsg->msg, flags);
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003615 if (force_nonblock && ret == -EAGAIN)
3616 return io_setup_async_msg(req, kmsg);
Jens Axboe03b12302019-12-02 18:50:25 -07003617 if (ret == -ERESTARTSYS)
3618 ret = -EINTR;
3619 }
3620
Pavel Begunkov1e950812020-02-06 19:51:16 +03003621 if (kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07003622 kfree(kmsg->iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003623 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe03b12302019-12-02 18:50:25 -07003624 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003625 if (ret < 0)
3626 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003627 io_put_req(req);
Jens Axboe03b12302019-12-02 18:50:25 -07003628 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07003629}
3630
Pavel Begunkov014db002020-03-03 21:33:12 +03003631static int io_send(struct io_kiocb *req, bool force_nonblock)
Jens Axboefddafac2020-01-04 20:19:44 -07003632{
Jens Axboefddafac2020-01-04 20:19:44 -07003633 struct socket *sock;
3634 int ret;
3635
3636 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3637 return -EINVAL;
3638
3639 sock = sock_from_file(req->file, &ret);
3640 if (sock) {
3641 struct io_sr_msg *sr = &req->sr_msg;
3642 struct msghdr msg;
3643 struct iovec iov;
3644 unsigned flags;
3645
3646 ret = import_single_range(WRITE, sr->buf, sr->len, &iov,
3647 &msg.msg_iter);
3648 if (ret)
3649 return ret;
3650
3651 msg.msg_name = NULL;
3652 msg.msg_control = NULL;
3653 msg.msg_controllen = 0;
3654 msg.msg_namelen = 0;
3655
3656 flags = req->sr_msg.msg_flags;
3657 if (flags & MSG_DONTWAIT)
3658 req->flags |= REQ_F_NOWAIT;
3659 else if (force_nonblock)
3660 flags |= MSG_DONTWAIT;
3661
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003662 msg.msg_flags = flags;
3663 ret = sock_sendmsg(sock, &msg);
Jens Axboefddafac2020-01-04 20:19:44 -07003664 if (force_nonblock && ret == -EAGAIN)
3665 return -EAGAIN;
3666 if (ret == -ERESTARTSYS)
3667 ret = -EINTR;
3668 }
3669
3670 io_cqring_add_event(req, ret);
3671 if (ret < 0)
3672 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003673 io_put_req(req);
Jens Axboefddafac2020-01-04 20:19:44 -07003674 return 0;
Jens Axboefddafac2020-01-04 20:19:44 -07003675}
3676
Jens Axboe52de1fe2020-02-27 10:15:42 -07003677static int __io_recvmsg_copy_hdr(struct io_kiocb *req, struct io_async_ctx *io)
3678{
3679 struct io_sr_msg *sr = &req->sr_msg;
3680 struct iovec __user *uiov;
3681 size_t iov_len;
3682 int ret;
3683
3684 ret = __copy_msghdr_from_user(&io->msg.msg, sr->msg, &io->msg.uaddr,
3685 &uiov, &iov_len);
3686 if (ret)
3687 return ret;
3688
3689 if (req->flags & REQ_F_BUFFER_SELECT) {
3690 if (iov_len > 1)
3691 return -EINVAL;
3692 if (copy_from_user(io->msg.iov, uiov, sizeof(*uiov)))
3693 return -EFAULT;
3694 sr->len = io->msg.iov[0].iov_len;
3695 iov_iter_init(&io->msg.msg.msg_iter, READ, io->msg.iov, 1,
3696 sr->len);
3697 io->msg.iov = NULL;
3698 } else {
3699 ret = import_iovec(READ, uiov, iov_len, UIO_FASTIOV,
3700 &io->msg.iov, &io->msg.msg.msg_iter);
3701 if (ret > 0)
3702 ret = 0;
3703 }
3704
3705 return ret;
3706}
3707
3708#ifdef CONFIG_COMPAT
3709static int __io_compat_recvmsg_copy_hdr(struct io_kiocb *req,
3710 struct io_async_ctx *io)
3711{
3712 struct compat_msghdr __user *msg_compat;
3713 struct io_sr_msg *sr = &req->sr_msg;
3714 struct compat_iovec __user *uiov;
3715 compat_uptr_t ptr;
3716 compat_size_t len;
3717 int ret;
3718
3719 msg_compat = (struct compat_msghdr __user *) sr->msg;
3720 ret = __get_compat_msghdr(&io->msg.msg, msg_compat, &io->msg.uaddr,
3721 &ptr, &len);
3722 if (ret)
3723 return ret;
3724
3725 uiov = compat_ptr(ptr);
3726 if (req->flags & REQ_F_BUFFER_SELECT) {
3727 compat_ssize_t clen;
3728
3729 if (len > 1)
3730 return -EINVAL;
3731 if (!access_ok(uiov, sizeof(*uiov)))
3732 return -EFAULT;
3733 if (__get_user(clen, &uiov->iov_len))
3734 return -EFAULT;
3735 if (clen < 0)
3736 return -EINVAL;
3737 sr->len = io->msg.iov[0].iov_len;
3738 io->msg.iov = NULL;
3739 } else {
3740 ret = compat_import_iovec(READ, uiov, len, UIO_FASTIOV,
3741 &io->msg.iov,
3742 &io->msg.msg.msg_iter);
3743 if (ret < 0)
3744 return ret;
3745 }
3746
3747 return 0;
3748}
Jens Axboe03b12302019-12-02 18:50:25 -07003749#endif
Jens Axboe52de1fe2020-02-27 10:15:42 -07003750
3751static int io_recvmsg_copy_hdr(struct io_kiocb *req, struct io_async_ctx *io)
3752{
3753 io->msg.iov = io->msg.fast_iov;
3754
3755#ifdef CONFIG_COMPAT
3756 if (req->ctx->compat)
3757 return __io_compat_recvmsg_copy_hdr(req, io);
3758#endif
3759
3760 return __io_recvmsg_copy_hdr(req, io);
3761}
3762
Jens Axboebcda7ba2020-02-23 16:42:51 -07003763static struct io_buffer *io_recv_buffer_select(struct io_kiocb *req,
3764 int *cflags, bool needs_lock)
3765{
3766 struct io_sr_msg *sr = &req->sr_msg;
3767 struct io_buffer *kbuf;
3768
3769 if (!(req->flags & REQ_F_BUFFER_SELECT))
3770 return NULL;
3771
3772 kbuf = io_buffer_select(req, &sr->len, sr->bgid, sr->kbuf, needs_lock);
3773 if (IS_ERR(kbuf))
3774 return kbuf;
3775
3776 sr->kbuf = kbuf;
3777 req->flags |= REQ_F_BUFFER_SELECTED;
3778
3779 *cflags = kbuf->bid << IORING_CQE_BUFFER_SHIFT;
3780 *cflags |= IORING_CQE_F_BUFFER;
3781 return kbuf;
Jens Axboe03b12302019-12-02 18:50:25 -07003782}
3783
Jens Axboe3529d8c2019-12-19 18:24:38 -07003784static int io_recvmsg_prep(struct io_kiocb *req,
3785 const struct io_uring_sqe *sqe)
Jens Axboe03b12302019-12-02 18:50:25 -07003786{
Jens Axboee47293f2019-12-20 08:58:21 -07003787 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003788 struct io_async_ctx *io = req->io;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003789 int ret;
Jens Axboe06b76d42019-12-19 14:44:26 -07003790
Jens Axboe3529d8c2019-12-19 18:24:38 -07003791 sr->msg_flags = READ_ONCE(sqe->msg_flags);
3792 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003793 sr->len = READ_ONCE(sqe->len);
Jens Axboebcda7ba2020-02-23 16:42:51 -07003794 sr->bgid = READ_ONCE(sqe->buf_group);
Jens Axboe3529d8c2019-12-19 18:24:38 -07003795
Jens Axboed8768362020-02-27 14:17:49 -07003796#ifdef CONFIG_COMPAT
3797 if (req->ctx->compat)
3798 sr->msg_flags |= MSG_CMSG_COMPAT;
3799#endif
3800
Jens Axboefddafac2020-01-04 20:19:44 -07003801 if (!io || req->opcode == IORING_OP_RECV)
Jens Axboe06b76d42019-12-19 14:44:26 -07003802 return 0;
Pavel Begunkov5f798be2020-02-08 13:28:02 +03003803 /* iovec is already imported */
3804 if (req->flags & REQ_F_NEED_CLEANUP)
3805 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07003806
Jens Axboe52de1fe2020-02-27 10:15:42 -07003807 ret = io_recvmsg_copy_hdr(req, io);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003808 if (!ret)
3809 req->flags |= REQ_F_NEED_CLEANUP;
3810 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003811}
3812
Pavel Begunkov014db002020-03-03 21:33:12 +03003813static int io_recvmsg(struct io_kiocb *req, bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07003814{
Jens Axboe0b416c32019-12-15 10:57:46 -07003815 struct io_async_msghdr *kmsg = NULL;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003816 struct socket *sock;
Jens Axboe52de1fe2020-02-27 10:15:42 -07003817 int ret, cflags = 0;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003818
3819 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3820 return -EINVAL;
3821
3822 sock = sock_from_file(req->file, &ret);
3823 if (sock) {
Jens Axboe52de1fe2020-02-27 10:15:42 -07003824 struct io_buffer *kbuf;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003825 struct io_async_ctx io;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003826 unsigned flags;
3827
Jens Axboe03b12302019-12-02 18:50:25 -07003828 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07003829 kmsg = &req->io->msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003830 kmsg->msg.msg_name = &req->io->msg.addr;
Jens Axboe0b416c32019-12-15 10:57:46 -07003831 /* if iov is set, it's allocated already */
3832 if (!kmsg->iov)
3833 kmsg->iov = kmsg->fast_iov;
3834 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07003835 } else {
Jens Axboe0b416c32019-12-15 10:57:46 -07003836 kmsg = &io.msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003837 kmsg->msg.msg_name = &io.msg.addr;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003838
Jens Axboe52de1fe2020-02-27 10:15:42 -07003839 ret = io_recvmsg_copy_hdr(req, &io);
Jens Axboe03b12302019-12-02 18:50:25 -07003840 if (ret)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003841 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003842 }
Jens Axboe0fa03c62019-04-19 13:34:07 -06003843
Jens Axboe52de1fe2020-02-27 10:15:42 -07003844 kbuf = io_recv_buffer_select(req, &cflags, !force_nonblock);
3845 if (IS_ERR(kbuf)) {
3846 return PTR_ERR(kbuf);
3847 } else if (kbuf) {
3848 kmsg->fast_iov[0].iov_base = u64_to_user_ptr(kbuf->addr);
3849 iov_iter_init(&kmsg->msg.msg_iter, READ, kmsg->iov,
3850 1, req->sr_msg.len);
3851 }
3852
Jens Axboee47293f2019-12-20 08:58:21 -07003853 flags = req->sr_msg.msg_flags;
3854 if (flags & MSG_DONTWAIT)
3855 req->flags |= REQ_F_NOWAIT;
3856 else if (force_nonblock)
3857 flags |= MSG_DONTWAIT;
3858
3859 ret = __sys_recvmsg_sock(sock, &kmsg->msg, req->sr_msg.msg,
3860 kmsg->uaddr, flags);
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003861 if (force_nonblock && ret == -EAGAIN)
3862 return io_setup_async_msg(req, kmsg);
Jens Axboe441cdbd2019-12-02 18:49:10 -07003863 if (ret == -ERESTARTSYS)
3864 ret = -EINTR;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003865 }
3866
Pavel Begunkov1e950812020-02-06 19:51:16 +03003867 if (kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07003868 kfree(kmsg->iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003869 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe52de1fe2020-02-27 10:15:42 -07003870 __io_cqring_add_event(req, ret, cflags);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003871 if (ret < 0)
3872 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003873 io_put_req(req);
Jens Axboe0fa03c62019-04-19 13:34:07 -06003874 return 0;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003875}
3876
Pavel Begunkov014db002020-03-03 21:33:12 +03003877static int io_recv(struct io_kiocb *req, bool force_nonblock)
Jens Axboefddafac2020-01-04 20:19:44 -07003878{
Jens Axboebcda7ba2020-02-23 16:42:51 -07003879 struct io_buffer *kbuf = NULL;
Jens Axboefddafac2020-01-04 20:19:44 -07003880 struct socket *sock;
Jens Axboebcda7ba2020-02-23 16:42:51 -07003881 int ret, cflags = 0;
Jens Axboefddafac2020-01-04 20:19:44 -07003882
3883 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3884 return -EINVAL;
3885
3886 sock = sock_from_file(req->file, &ret);
3887 if (sock) {
3888 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboebcda7ba2020-02-23 16:42:51 -07003889 void __user *buf = sr->buf;
Jens Axboefddafac2020-01-04 20:19:44 -07003890 struct msghdr msg;
3891 struct iovec iov;
3892 unsigned flags;
3893
Jens Axboebcda7ba2020-02-23 16:42:51 -07003894 kbuf = io_recv_buffer_select(req, &cflags, !force_nonblock);
3895 if (IS_ERR(kbuf))
3896 return PTR_ERR(kbuf);
3897 else if (kbuf)
3898 buf = u64_to_user_ptr(kbuf->addr);
Jens Axboefddafac2020-01-04 20:19:44 -07003899
Jens Axboebcda7ba2020-02-23 16:42:51 -07003900 ret = import_single_range(READ, buf, sr->len, &iov,
3901 &msg.msg_iter);
3902 if (ret) {
3903 kfree(kbuf);
3904 return ret;
3905 }
3906
3907 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboefddafac2020-01-04 20:19:44 -07003908 msg.msg_name = NULL;
3909 msg.msg_control = NULL;
3910 msg.msg_controllen = 0;
3911 msg.msg_namelen = 0;
3912 msg.msg_iocb = NULL;
3913 msg.msg_flags = 0;
3914
3915 flags = req->sr_msg.msg_flags;
3916 if (flags & MSG_DONTWAIT)
3917 req->flags |= REQ_F_NOWAIT;
3918 else if (force_nonblock)
3919 flags |= MSG_DONTWAIT;
3920
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003921 ret = sock_recvmsg(sock, &msg, flags);
Jens Axboefddafac2020-01-04 20:19:44 -07003922 if (force_nonblock && ret == -EAGAIN)
3923 return -EAGAIN;
3924 if (ret == -ERESTARTSYS)
3925 ret = -EINTR;
3926 }
3927
Jens Axboebcda7ba2020-02-23 16:42:51 -07003928 kfree(kbuf);
3929 req->flags &= ~REQ_F_NEED_CLEANUP;
3930 __io_cqring_add_event(req, ret, cflags);
Jens Axboefddafac2020-01-04 20:19:44 -07003931 if (ret < 0)
3932 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003933 io_put_req(req);
Jens Axboefddafac2020-01-04 20:19:44 -07003934 return 0;
Jens Axboefddafac2020-01-04 20:19:44 -07003935}
3936
Jens Axboe3529d8c2019-12-19 18:24:38 -07003937static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003938{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003939 struct io_accept *accept = &req->accept;
3940
Jens Axboe17f2fe32019-10-17 14:42:58 -06003941 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3942 return -EINVAL;
Hrvoje Zeba8042d6c2019-11-25 14:40:22 -05003943 if (sqe->ioprio || sqe->len || sqe->buf_index)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003944 return -EINVAL;
3945
Jens Axboed55e5f52019-12-11 16:12:15 -07003946 accept->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
3947 accept->addr_len = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003948 accept->flags = READ_ONCE(sqe->accept_flags);
Jens Axboe09952e32020-03-19 20:16:56 -06003949 accept->nofile = rlimit(RLIMIT_NOFILE);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003950 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003951}
Jens Axboe17f2fe32019-10-17 14:42:58 -06003952
Pavel Begunkov014db002020-03-03 21:33:12 +03003953static int __io_accept(struct io_kiocb *req, bool force_nonblock)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003954{
3955 struct io_accept *accept = &req->accept;
3956 unsigned file_flags;
3957 int ret;
3958
3959 file_flags = force_nonblock ? O_NONBLOCK : 0;
3960 ret = __sys_accept4_file(req->file, file_flags, accept->addr,
Jens Axboe09952e32020-03-19 20:16:56 -06003961 accept->addr_len, accept->flags,
3962 accept->nofile);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003963 if (ret == -EAGAIN && force_nonblock)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003964 return -EAGAIN;
Jens Axboe8e3cca12019-11-09 19:52:33 -07003965 if (ret == -ERESTARTSYS)
3966 ret = -EINTR;
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003967 if (ret < 0)
3968 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07003969 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003970 io_put_req(req);
Jens Axboe17f2fe32019-10-17 14:42:58 -06003971 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003972}
3973
3974static void io_accept_finish(struct io_wq_work **workptr)
3975{
3976 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003977
3978 if (io_req_cancelled(req))
3979 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03003980 __io_accept(req, false);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03003981 io_steal_work(req, workptr);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003982}
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003983
Pavel Begunkov014db002020-03-03 21:33:12 +03003984static int io_accept(struct io_kiocb *req, bool force_nonblock)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003985{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003986 int ret;
3987
Pavel Begunkov014db002020-03-03 21:33:12 +03003988 ret = __io_accept(req, force_nonblock);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003989 if (ret == -EAGAIN && force_nonblock) {
3990 req->work.func = io_accept_finish;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003991 return -EAGAIN;
3992 }
3993 return 0;
Jens Axboe17f2fe32019-10-17 14:42:58 -06003994}
3995
Jens Axboe3529d8c2019-12-19 18:24:38 -07003996static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef499a022019-12-02 16:28:46 -07003997{
Jens Axboe3529d8c2019-12-19 18:24:38 -07003998 struct io_connect *conn = &req->connect;
3999 struct io_async_ctx *io = req->io;
Jens Axboef499a022019-12-02 16:28:46 -07004000
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004001 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
4002 return -EINVAL;
4003 if (sqe->ioprio || sqe->len || sqe->buf_index || sqe->rw_flags)
4004 return -EINVAL;
4005
Jens Axboe3529d8c2019-12-19 18:24:38 -07004006 conn->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
4007 conn->addr_len = READ_ONCE(sqe->addr2);
4008
4009 if (!io)
4010 return 0;
4011
4012 return move_addr_to_kernel(conn->addr, conn->addr_len,
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004013 &io->connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07004014}
4015
Pavel Begunkov014db002020-03-03 21:33:12 +03004016static int io_connect(struct io_kiocb *req, bool force_nonblock)
Jens Axboef8e85cf2019-11-23 14:24:24 -07004017{
Jens Axboef499a022019-12-02 16:28:46 -07004018 struct io_async_ctx __io, *io;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004019 unsigned file_flags;
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004020 int ret;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004021
Jens Axboef499a022019-12-02 16:28:46 -07004022 if (req->io) {
4023 io = req->io;
4024 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07004025 ret = move_addr_to_kernel(req->connect.addr,
4026 req->connect.addr_len,
4027 &__io.connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07004028 if (ret)
4029 goto out;
4030 io = &__io;
4031 }
4032
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004033 file_flags = force_nonblock ? O_NONBLOCK : 0;
4034
4035 ret = __sys_connect_file(req->file, &io->connect.address,
4036 req->connect.addr_len, file_flags);
Jens Axboe87f80d62019-12-03 11:23:54 -07004037 if ((ret == -EAGAIN || ret == -EINPROGRESS) && force_nonblock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004038 if (req->io)
4039 return -EAGAIN;
4040 if (io_alloc_async_ctx(req)) {
Jens Axboef499a022019-12-02 16:28:46 -07004041 ret = -ENOMEM;
4042 goto out;
4043 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004044 memcpy(&req->io->connect, &__io.connect, sizeof(__io.connect));
Jens Axboef8e85cf2019-11-23 14:24:24 -07004045 return -EAGAIN;
Jens Axboef499a022019-12-02 16:28:46 -07004046 }
Jens Axboef8e85cf2019-11-23 14:24:24 -07004047 if (ret == -ERESTARTSYS)
4048 ret = -EINTR;
Jens Axboef499a022019-12-02 16:28:46 -07004049out:
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004050 if (ret < 0)
4051 req_set_fail_links(req);
Jens Axboef8e85cf2019-11-23 14:24:24 -07004052 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03004053 io_put_req(req);
Jens Axboef8e85cf2019-11-23 14:24:24 -07004054 return 0;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004055}
YueHaibing469956e2020-03-04 15:53:52 +08004056#else /* !CONFIG_NET */
4057static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4058{
Jens Axboef8e85cf2019-11-23 14:24:24 -07004059 return -EOPNOTSUPP;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004060}
4061
YueHaibing469956e2020-03-04 15:53:52 +08004062static int io_sendmsg(struct io_kiocb *req, bool force_nonblock)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004063{
YueHaibing469956e2020-03-04 15:53:52 +08004064 return -EOPNOTSUPP;
4065}
4066
4067static int io_send(struct io_kiocb *req, bool force_nonblock)
4068{
4069 return -EOPNOTSUPP;
4070}
4071
4072static int io_recvmsg_prep(struct io_kiocb *req,
4073 const struct io_uring_sqe *sqe)
4074{
4075 return -EOPNOTSUPP;
4076}
4077
4078static int io_recvmsg(struct io_kiocb *req, bool force_nonblock)
4079{
4080 return -EOPNOTSUPP;
4081}
4082
4083static int io_recv(struct io_kiocb *req, bool force_nonblock)
4084{
4085 return -EOPNOTSUPP;
4086}
4087
4088static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4089{
4090 return -EOPNOTSUPP;
4091}
4092
4093static int io_accept(struct io_kiocb *req, bool force_nonblock)
4094{
4095 return -EOPNOTSUPP;
4096}
4097
4098static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4099{
4100 return -EOPNOTSUPP;
4101}
4102
4103static int io_connect(struct io_kiocb *req, bool force_nonblock)
4104{
4105 return -EOPNOTSUPP;
4106}
4107#endif /* CONFIG_NET */
Jens Axboe2b188cc2019-01-07 10:46:33 -07004108
Jens Axboed7718a92020-02-14 22:23:12 -07004109struct io_poll_table {
4110 struct poll_table_struct pt;
4111 struct io_kiocb *req;
4112 int error;
4113};
4114
4115static void __io_queue_proc(struct io_poll_iocb *poll, struct io_poll_table *pt,
4116 struct wait_queue_head *head)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004117{
Jens Axboed7718a92020-02-14 22:23:12 -07004118 if (unlikely(poll->head)) {
4119 pt->error = -EINVAL;
4120 return;
4121 }
4122
4123 pt->error = 0;
4124 poll->head = head;
4125 add_wait_queue(head, &poll->wait);
4126}
4127
4128static void io_async_queue_proc(struct file *file, struct wait_queue_head *head,
4129 struct poll_table_struct *p)
4130{
4131 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
4132
4133 __io_queue_proc(&pt->req->apoll->poll, pt, head);
4134}
4135
4136static int __io_async_wake(struct io_kiocb *req, struct io_poll_iocb *poll,
4137 __poll_t mask, task_work_func_t func)
4138{
4139 struct task_struct *tsk;
Jens Axboeaa96bf82020-04-03 11:26:26 -06004140 int ret;
Jens Axboed7718a92020-02-14 22:23:12 -07004141
4142 /* for instances that support it check for an event match first: */
4143 if (mask && !(mask & poll->events))
4144 return 0;
4145
4146 trace_io_uring_task_add(req->ctx, req->opcode, req->user_data, mask);
4147
4148 list_del_init(&poll->wait.entry);
4149
4150 tsk = req->task;
4151 req->result = mask;
4152 init_task_work(&req->task_work, func);
4153 /*
Jens Axboeaa96bf82020-04-03 11:26:26 -06004154 * If this fails, then the task is exiting. Punt to one of the io-wq
4155 * threads to ensure the work gets run, we can't always rely on exit
4156 * cancelation taking care of this.
Jens Axboed7718a92020-02-14 22:23:12 -07004157 */
Jens Axboeaa96bf82020-04-03 11:26:26 -06004158 ret = task_work_add(tsk, &req->task_work, true);
4159 if (unlikely(ret)) {
4160 tsk = io_wq_get_task(req->ctx->io_wq);
4161 task_work_add(tsk, &req->task_work, true);
4162 }
Jens Axboed7718a92020-02-14 22:23:12 -07004163 wake_up_process(tsk);
4164 return 1;
4165}
4166
4167static void io_async_task_func(struct callback_head *cb)
4168{
4169 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
4170 struct async_poll *apoll = req->apoll;
4171 struct io_ring_ctx *ctx = req->ctx;
4172
4173 trace_io_uring_task_run(req->ctx, req->opcode, req->user_data);
4174
4175 WARN_ON_ONCE(!list_empty(&req->apoll->poll.wait.entry));
4176
4177 if (hash_hashed(&req->hash_node)) {
4178 spin_lock_irq(&ctx->completion_lock);
4179 hash_del(&req->hash_node);
4180 spin_unlock_irq(&ctx->completion_lock);
4181 }
4182
4183 /* restore ->work in case we need to retry again */
4184 memcpy(&req->work, &apoll->work, sizeof(req->work));
4185
4186 __set_current_state(TASK_RUNNING);
4187 mutex_lock(&ctx->uring_lock);
4188 __io_queue_sqe(req, NULL);
4189 mutex_unlock(&ctx->uring_lock);
4190
4191 kfree(apoll);
4192}
4193
4194static int io_async_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
4195 void *key)
4196{
4197 struct io_kiocb *req = wait->private;
4198 struct io_poll_iocb *poll = &req->apoll->poll;
4199
4200 trace_io_uring_poll_wake(req->ctx, req->opcode, req->user_data,
4201 key_to_poll(key));
4202
4203 return __io_async_wake(req, poll, key_to_poll(key), io_async_task_func);
4204}
4205
4206static void io_poll_req_insert(struct io_kiocb *req)
4207{
4208 struct io_ring_ctx *ctx = req->ctx;
4209 struct hlist_head *list;
4210
4211 list = &ctx->cancel_hash[hash_long(req->user_data, ctx->cancel_hash_bits)];
4212 hlist_add_head(&req->hash_node, list);
4213}
4214
4215static __poll_t __io_arm_poll_handler(struct io_kiocb *req,
4216 struct io_poll_iocb *poll,
4217 struct io_poll_table *ipt, __poll_t mask,
4218 wait_queue_func_t wake_func)
4219 __acquires(&ctx->completion_lock)
4220{
4221 struct io_ring_ctx *ctx = req->ctx;
4222 bool cancel = false;
4223
4224 poll->file = req->file;
4225 poll->head = NULL;
4226 poll->done = poll->canceled = false;
4227 poll->events = mask;
4228
4229 ipt->pt._key = mask;
4230 ipt->req = req;
4231 ipt->error = -EINVAL;
4232
4233 INIT_LIST_HEAD(&poll->wait.entry);
4234 init_waitqueue_func_entry(&poll->wait, wake_func);
4235 poll->wait.private = req;
4236
4237 mask = vfs_poll(req->file, &ipt->pt) & poll->events;
4238
4239 spin_lock_irq(&ctx->completion_lock);
4240 if (likely(poll->head)) {
4241 spin_lock(&poll->head->lock);
4242 if (unlikely(list_empty(&poll->wait.entry))) {
4243 if (ipt->error)
4244 cancel = true;
4245 ipt->error = 0;
4246 mask = 0;
4247 }
4248 if (mask || ipt->error)
4249 list_del_init(&poll->wait.entry);
4250 else if (cancel)
4251 WRITE_ONCE(poll->canceled, true);
4252 else if (!poll->done) /* actually waiting for an event */
4253 io_poll_req_insert(req);
4254 spin_unlock(&poll->head->lock);
4255 }
4256
4257 return mask;
4258}
4259
4260static bool io_arm_poll_handler(struct io_kiocb *req)
4261{
4262 const struct io_op_def *def = &io_op_defs[req->opcode];
4263 struct io_ring_ctx *ctx = req->ctx;
4264 struct async_poll *apoll;
4265 struct io_poll_table ipt;
4266 __poll_t mask, ret;
4267
4268 if (!req->file || !file_can_poll(req->file))
4269 return false;
4270 if (req->flags & (REQ_F_MUST_PUNT | REQ_F_POLLED))
4271 return false;
4272 if (!def->pollin && !def->pollout)
4273 return false;
4274
4275 apoll = kmalloc(sizeof(*apoll), GFP_ATOMIC);
4276 if (unlikely(!apoll))
4277 return false;
4278
4279 req->flags |= REQ_F_POLLED;
4280 memcpy(&apoll->work, &req->work, sizeof(req->work));
4281
Jens Axboe3537b6a2020-04-03 11:19:06 -06004282 get_task_struct(current);
Jens Axboed7718a92020-02-14 22:23:12 -07004283 req->task = current;
4284 req->apoll = apoll;
4285 INIT_HLIST_NODE(&req->hash_node);
4286
Nathan Chancellor8755d972020-03-02 16:01:19 -07004287 mask = 0;
Jens Axboed7718a92020-02-14 22:23:12 -07004288 if (def->pollin)
Nathan Chancellor8755d972020-03-02 16:01:19 -07004289 mask |= POLLIN | POLLRDNORM;
Jens Axboed7718a92020-02-14 22:23:12 -07004290 if (def->pollout)
4291 mask |= POLLOUT | POLLWRNORM;
4292 mask |= POLLERR | POLLPRI;
4293
4294 ipt.pt._qproc = io_async_queue_proc;
4295
4296 ret = __io_arm_poll_handler(req, &apoll->poll, &ipt, mask,
4297 io_async_wake);
4298 if (ret) {
4299 ipt.error = 0;
4300 apoll->poll.done = true;
4301 spin_unlock_irq(&ctx->completion_lock);
4302 memcpy(&req->work, &apoll->work, sizeof(req->work));
4303 kfree(apoll);
4304 return false;
4305 }
4306 spin_unlock_irq(&ctx->completion_lock);
4307 trace_io_uring_poll_arm(ctx, req->opcode, req->user_data, mask,
4308 apoll->poll.events);
4309 return true;
4310}
4311
4312static bool __io_poll_remove_one(struct io_kiocb *req,
4313 struct io_poll_iocb *poll)
4314{
Jens Axboeb41e9852020-02-17 09:52:41 -07004315 bool do_complete = false;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004316
4317 spin_lock(&poll->head->lock);
4318 WRITE_ONCE(poll->canceled, true);
Jens Axboe392edb42019-12-09 17:52:20 -07004319 if (!list_empty(&poll->wait.entry)) {
4320 list_del_init(&poll->wait.entry);
Jens Axboeb41e9852020-02-17 09:52:41 -07004321 do_complete = true;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004322 }
4323 spin_unlock(&poll->head->lock);
Jens Axboed7718a92020-02-14 22:23:12 -07004324 return do_complete;
4325}
4326
4327static bool io_poll_remove_one(struct io_kiocb *req)
4328{
4329 bool do_complete;
4330
4331 if (req->opcode == IORING_OP_POLL_ADD) {
4332 do_complete = __io_poll_remove_one(req, &req->poll);
4333 } else {
4334 /* non-poll requests have submit ref still */
4335 do_complete = __io_poll_remove_one(req, &req->apoll->poll);
4336 if (do_complete)
4337 io_put_req(req);
4338 }
4339
Jens Axboe78076bb2019-12-04 19:56:40 -07004340 hash_del(&req->hash_node);
Jens Axboed7718a92020-02-14 22:23:12 -07004341
Jens Axboeb41e9852020-02-17 09:52:41 -07004342 if (do_complete) {
4343 io_cqring_fill_event(req, -ECANCELED);
4344 io_commit_cqring(req->ctx);
4345 req->flags |= REQ_F_COMP_LOCKED;
4346 io_put_req(req);
4347 }
4348
4349 return do_complete;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004350}
4351
4352static void io_poll_remove_all(struct io_ring_ctx *ctx)
4353{
Jens Axboe78076bb2019-12-04 19:56:40 -07004354 struct hlist_node *tmp;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004355 struct io_kiocb *req;
Jens Axboe78076bb2019-12-04 19:56:40 -07004356 int i;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004357
4358 spin_lock_irq(&ctx->completion_lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07004359 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
4360 struct hlist_head *list;
4361
4362 list = &ctx->cancel_hash[i];
4363 hlist_for_each_entry_safe(req, tmp, list, hash_node)
4364 io_poll_remove_one(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004365 }
4366 spin_unlock_irq(&ctx->completion_lock);
Jens Axboeb41e9852020-02-17 09:52:41 -07004367
4368 io_cqring_ev_posted(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004369}
4370
Jens Axboe47f46762019-11-09 17:43:02 -07004371static int io_poll_cancel(struct io_ring_ctx *ctx, __u64 sqe_addr)
4372{
Jens Axboe78076bb2019-12-04 19:56:40 -07004373 struct hlist_head *list;
Jens Axboe47f46762019-11-09 17:43:02 -07004374 struct io_kiocb *req;
4375
Jens Axboe78076bb2019-12-04 19:56:40 -07004376 list = &ctx->cancel_hash[hash_long(sqe_addr, ctx->cancel_hash_bits)];
4377 hlist_for_each_entry(req, list, hash_node) {
Jens Axboeb41e9852020-02-17 09:52:41 -07004378 if (sqe_addr != req->user_data)
4379 continue;
4380 if (io_poll_remove_one(req))
Jens Axboeeac406c2019-11-14 12:09:58 -07004381 return 0;
Jens Axboeb41e9852020-02-17 09:52:41 -07004382 return -EALREADY;
Jens Axboe47f46762019-11-09 17:43:02 -07004383 }
4384
4385 return -ENOENT;
4386}
4387
Jens Axboe3529d8c2019-12-19 18:24:38 -07004388static int io_poll_remove_prep(struct io_kiocb *req,
4389 const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004390{
Jens Axboe221c5eb2019-01-17 09:41:58 -07004391 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4392 return -EINVAL;
4393 if (sqe->ioprio || sqe->off || sqe->len || sqe->buf_index ||
4394 sqe->poll_events)
4395 return -EINVAL;
4396
Jens Axboe0969e782019-12-17 18:40:57 -07004397 req->poll.addr = READ_ONCE(sqe->addr);
Jens Axboe0969e782019-12-17 18:40:57 -07004398 return 0;
4399}
4400
4401/*
4402 * Find a running poll command that matches one specified in sqe->addr,
4403 * and remove it if found.
4404 */
4405static int io_poll_remove(struct io_kiocb *req)
4406{
4407 struct io_ring_ctx *ctx = req->ctx;
4408 u64 addr;
4409 int ret;
4410
Jens Axboe0969e782019-12-17 18:40:57 -07004411 addr = req->poll.addr;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004412 spin_lock_irq(&ctx->completion_lock);
Jens Axboe0969e782019-12-17 18:40:57 -07004413 ret = io_poll_cancel(ctx, addr);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004414 spin_unlock_irq(&ctx->completion_lock);
4415
Jens Axboe78e19bb2019-11-06 15:21:34 -07004416 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004417 if (ret < 0)
4418 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06004419 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004420 return 0;
4421}
4422
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004423static void io_poll_complete(struct io_kiocb *req, __poll_t mask, int error)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004424{
Jackie Liua197f662019-11-08 08:09:12 -07004425 struct io_ring_ctx *ctx = req->ctx;
4426
Jens Axboe8c838782019-03-12 15:48:16 -06004427 req->poll.done = true;
Pavel Begunkovb0a20342020-02-28 10:36:35 +03004428 io_cqring_fill_event(req, error ? error : mangle_poll(mask));
Jens Axboe8c838782019-03-12 15:48:16 -06004429 io_commit_cqring(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004430}
4431
Jens Axboeb41e9852020-02-17 09:52:41 -07004432static void io_poll_task_handler(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004433{
Jens Axboe221c5eb2019-01-17 09:41:58 -07004434 struct io_ring_ctx *ctx = req->ctx;
Jens Axboea6ba6322020-04-03 11:10:14 -06004435 struct io_poll_iocb *poll = &req->poll;
4436
4437 if (!req->result && !READ_ONCE(poll->canceled)) {
4438 struct poll_table_struct pt = { ._key = poll->events };
4439
4440 req->result = vfs_poll(req->file, &pt) & poll->events;
4441 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07004442
Jens Axboe221c5eb2019-01-17 09:41:58 -07004443 spin_lock_irq(&ctx->completion_lock);
Jens Axboea6ba6322020-04-03 11:10:14 -06004444 if (!req->result && !READ_ONCE(poll->canceled)) {
4445 add_wait_queue(poll->head, &poll->wait);
4446 spin_unlock_irq(&ctx->completion_lock);
4447 return;
4448 }
Jens Axboe78076bb2019-12-04 19:56:40 -07004449 hash_del(&req->hash_node);
Jens Axboeb41e9852020-02-17 09:52:41 -07004450 io_poll_complete(req, req->result, 0);
4451 req->flags |= REQ_F_COMP_LOCKED;
4452 io_put_req_find_next(req, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004453 spin_unlock_irq(&ctx->completion_lock);
4454
Jens Axboe8c838782019-03-12 15:48:16 -06004455 io_cqring_ev_posted(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004456}
4457
Jens Axboeb41e9852020-02-17 09:52:41 -07004458static void io_poll_task_func(struct callback_head *cb)
Jens Axboee94f1412019-12-19 12:06:02 -07004459{
Jens Axboeb41e9852020-02-17 09:52:41 -07004460 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
4461 struct io_kiocb *nxt = NULL;
Jens Axboee94f1412019-12-19 12:06:02 -07004462
Jens Axboeb41e9852020-02-17 09:52:41 -07004463 io_poll_task_handler(req, &nxt);
Jens Axboed7718a92020-02-14 22:23:12 -07004464 if (nxt) {
4465 struct io_ring_ctx *ctx = nxt->ctx;
Jens Axboee94f1412019-12-19 12:06:02 -07004466
Jens Axboed7718a92020-02-14 22:23:12 -07004467 mutex_lock(&ctx->uring_lock);
Jens Axboeb41e9852020-02-17 09:52:41 -07004468 __io_queue_sqe(nxt, NULL);
Jens Axboed7718a92020-02-14 22:23:12 -07004469 mutex_unlock(&ctx->uring_lock);
Jens Axboee94f1412019-12-19 12:06:02 -07004470 }
Jens Axboef0b493e2020-02-01 21:30:11 -07004471}
4472
Jens Axboe221c5eb2019-01-17 09:41:58 -07004473static int io_poll_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
4474 void *key)
4475{
Jens Axboec2f2eb72020-02-10 09:07:05 -07004476 struct io_kiocb *req = wait->private;
4477 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004478
Jens Axboed7718a92020-02-14 22:23:12 -07004479 return __io_async_wake(req, poll, key_to_poll(key), io_poll_task_func);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004480}
4481
Jens Axboe221c5eb2019-01-17 09:41:58 -07004482static void io_poll_queue_proc(struct file *file, struct wait_queue_head *head,
4483 struct poll_table_struct *p)
4484{
4485 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
4486
Jens Axboed7718a92020-02-14 22:23:12 -07004487 __io_queue_proc(&pt->req->poll, pt, head);
Jens Axboeeac406c2019-11-14 12:09:58 -07004488}
4489
Jens Axboe3529d8c2019-12-19 18:24:38 -07004490static int io_poll_add_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004491{
4492 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004493 u16 events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004494
4495 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4496 return -EINVAL;
4497 if (sqe->addr || sqe->ioprio || sqe->off || sqe->len || sqe->buf_index)
4498 return -EINVAL;
Jens Axboe09bb8392019-03-13 12:39:28 -06004499 if (!poll->file)
4500 return -EBADF;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004501
Jens Axboe221c5eb2019-01-17 09:41:58 -07004502 events = READ_ONCE(sqe->poll_events);
4503 poll->events = demangle_poll(events) | EPOLLERR | EPOLLHUP;
Jens Axboeb41e9852020-02-17 09:52:41 -07004504
Jens Axboe3537b6a2020-04-03 11:19:06 -06004505 get_task_struct(current);
Jens Axboeb41e9852020-02-17 09:52:41 -07004506 req->task = current;
Jens Axboe0969e782019-12-17 18:40:57 -07004507 return 0;
4508}
4509
Pavel Begunkov014db002020-03-03 21:33:12 +03004510static int io_poll_add(struct io_kiocb *req)
Jens Axboe0969e782019-12-17 18:40:57 -07004511{
4512 struct io_poll_iocb *poll = &req->poll;
4513 struct io_ring_ctx *ctx = req->ctx;
4514 struct io_poll_table ipt;
Jens Axboe0969e782019-12-17 18:40:57 -07004515 __poll_t mask;
Jens Axboe0969e782019-12-17 18:40:57 -07004516
Jens Axboe78076bb2019-12-04 19:56:40 -07004517 INIT_HLIST_NODE(&req->hash_node);
Jens Axboe36703242019-07-25 10:20:18 -06004518 INIT_LIST_HEAD(&req->list);
Jens Axboed7718a92020-02-14 22:23:12 -07004519 ipt.pt._qproc = io_poll_queue_proc;
Jens Axboe36703242019-07-25 10:20:18 -06004520
Jens Axboed7718a92020-02-14 22:23:12 -07004521 mask = __io_arm_poll_handler(req, &req->poll, &ipt, poll->events,
4522 io_poll_wake);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004523
Jens Axboe8c838782019-03-12 15:48:16 -06004524 if (mask) { /* no async, we'd stolen it */
Jens Axboe8c838782019-03-12 15:48:16 -06004525 ipt.error = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004526 io_poll_complete(req, mask, 0);
Jens Axboe8c838782019-03-12 15:48:16 -06004527 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07004528 spin_unlock_irq(&ctx->completion_lock);
4529
Jens Axboe8c838782019-03-12 15:48:16 -06004530 if (mask) {
4531 io_cqring_ev_posted(ctx);
Pavel Begunkov014db002020-03-03 21:33:12 +03004532 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004533 }
Jens Axboe8c838782019-03-12 15:48:16 -06004534 return ipt.error;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004535}
4536
Jens Axboe5262f562019-09-17 12:26:57 -06004537static enum hrtimer_restart io_timeout_fn(struct hrtimer *timer)
4538{
Jens Axboead8a48a2019-11-15 08:49:11 -07004539 struct io_timeout_data *data = container_of(timer,
4540 struct io_timeout_data, timer);
4541 struct io_kiocb *req = data->req;
4542 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5262f562019-09-17 12:26:57 -06004543 unsigned long flags;
4544
Jens Axboe5262f562019-09-17 12:26:57 -06004545 atomic_inc(&ctx->cq_timeouts);
4546
4547 spin_lock_irqsave(&ctx->completion_lock, flags);
zhangyi (F)ef036812019-10-23 15:10:08 +08004548 /*
Jens Axboe11365042019-10-16 09:08:32 -06004549 * We could be racing with timeout deletion. If the list is empty,
4550 * then timeout lookup already found it and will be handling it.
zhangyi (F)ef036812019-10-23 15:10:08 +08004551 */
Jens Axboe842f9612019-10-29 12:34:10 -06004552 if (!list_empty(&req->list)) {
Jens Axboe11365042019-10-16 09:08:32 -06004553 struct io_kiocb *prev;
Jens Axboe5262f562019-09-17 12:26:57 -06004554
Jens Axboe11365042019-10-16 09:08:32 -06004555 /*
4556 * Adjust the reqs sequence before the current one because it
Brian Gianforcarod195a662019-12-13 03:09:50 -08004557 * will consume a slot in the cq_ring and the cq_tail
Jens Axboe11365042019-10-16 09:08:32 -06004558 * pointer will be increased, otherwise other timeout reqs may
4559 * return in advance without waiting for enough wait_nr.
4560 */
4561 prev = req;
4562 list_for_each_entry_continue_reverse(prev, &ctx->timeout_list, list)
4563 prev->sequence++;
Jens Axboe11365042019-10-16 09:08:32 -06004564 list_del_init(&req->list);
Jens Axboe11365042019-10-16 09:08:32 -06004565 }
Jens Axboe842f9612019-10-29 12:34:10 -06004566
Jens Axboe78e19bb2019-11-06 15:21:34 -07004567 io_cqring_fill_event(req, -ETIME);
Jens Axboe5262f562019-09-17 12:26:57 -06004568 io_commit_cqring(ctx);
4569 spin_unlock_irqrestore(&ctx->completion_lock, flags);
4570
4571 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004572 req_set_fail_links(req);
Jens Axboe5262f562019-09-17 12:26:57 -06004573 io_put_req(req);
4574 return HRTIMER_NORESTART;
4575}
4576
Jens Axboe47f46762019-11-09 17:43:02 -07004577static int io_timeout_cancel(struct io_ring_ctx *ctx, __u64 user_data)
4578{
4579 struct io_kiocb *req;
4580 int ret = -ENOENT;
4581
4582 list_for_each_entry(req, &ctx->timeout_list, list) {
4583 if (user_data == req->user_data) {
4584 list_del_init(&req->list);
4585 ret = 0;
4586 break;
4587 }
4588 }
4589
4590 if (ret == -ENOENT)
4591 return ret;
4592
Jens Axboe2d283902019-12-04 11:08:05 -07004593 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe47f46762019-11-09 17:43:02 -07004594 if (ret == -1)
4595 return -EALREADY;
4596
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004597 req_set_fail_links(req);
Jens Axboe47f46762019-11-09 17:43:02 -07004598 io_cqring_fill_event(req, -ECANCELED);
4599 io_put_req(req);
4600 return 0;
4601}
4602
Jens Axboe3529d8c2019-12-19 18:24:38 -07004603static int io_timeout_remove_prep(struct io_kiocb *req,
4604 const struct io_uring_sqe *sqe)
Jens Axboeb29472e2019-12-17 18:50:29 -07004605{
Jens Axboeb29472e2019-12-17 18:50:29 -07004606 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4607 return -EINVAL;
4608 if (sqe->flags || sqe->ioprio || sqe->buf_index || sqe->len)
4609 return -EINVAL;
4610
4611 req->timeout.addr = READ_ONCE(sqe->addr);
4612 req->timeout.flags = READ_ONCE(sqe->timeout_flags);
4613 if (req->timeout.flags)
4614 return -EINVAL;
4615
Jens Axboeb29472e2019-12-17 18:50:29 -07004616 return 0;
4617}
4618
Jens Axboe11365042019-10-16 09:08:32 -06004619/*
4620 * Remove or update an existing timeout command
4621 */
Jens Axboefc4df992019-12-10 14:38:45 -07004622static int io_timeout_remove(struct io_kiocb *req)
Jens Axboe11365042019-10-16 09:08:32 -06004623{
4624 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe47f46762019-11-09 17:43:02 -07004625 int ret;
Jens Axboe11365042019-10-16 09:08:32 -06004626
Jens Axboe11365042019-10-16 09:08:32 -06004627 spin_lock_irq(&ctx->completion_lock);
Jens Axboeb29472e2019-12-17 18:50:29 -07004628 ret = io_timeout_cancel(ctx, req->timeout.addr);
Jens Axboe11365042019-10-16 09:08:32 -06004629
Jens Axboe47f46762019-11-09 17:43:02 -07004630 io_cqring_fill_event(req, ret);
Jens Axboe11365042019-10-16 09:08:32 -06004631 io_commit_cqring(ctx);
4632 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06004633 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004634 if (ret < 0)
4635 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08004636 io_put_req(req);
Jens Axboe11365042019-10-16 09:08:32 -06004637 return 0;
Jens Axboe5262f562019-09-17 12:26:57 -06004638}
4639
Jens Axboe3529d8c2019-12-19 18:24:38 -07004640static int io_timeout_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboe2d283902019-12-04 11:08:05 -07004641 bool is_timeout_link)
Jens Axboe5262f562019-09-17 12:26:57 -06004642{
Jens Axboead8a48a2019-11-15 08:49:11 -07004643 struct io_timeout_data *data;
Jens Axboea41525a2019-10-15 16:48:15 -06004644 unsigned flags;
Jens Axboe5262f562019-09-17 12:26:57 -06004645
Jens Axboead8a48a2019-11-15 08:49:11 -07004646 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe5262f562019-09-17 12:26:57 -06004647 return -EINVAL;
Jens Axboead8a48a2019-11-15 08:49:11 -07004648 if (sqe->ioprio || sqe->buf_index || sqe->len != 1)
Jens Axboea41525a2019-10-15 16:48:15 -06004649 return -EINVAL;
Jens Axboe2d283902019-12-04 11:08:05 -07004650 if (sqe->off && is_timeout_link)
4651 return -EINVAL;
Jens Axboea41525a2019-10-15 16:48:15 -06004652 flags = READ_ONCE(sqe->timeout_flags);
4653 if (flags & ~IORING_TIMEOUT_ABS)
Jens Axboe5262f562019-09-17 12:26:57 -06004654 return -EINVAL;
Arnd Bergmannbdf20072019-10-01 09:53:29 -06004655
Jens Axboe26a61672019-12-20 09:02:01 -07004656 req->timeout.count = READ_ONCE(sqe->off);
4657
Jens Axboe3529d8c2019-12-19 18:24:38 -07004658 if (!req->io && io_alloc_async_ctx(req))
Jens Axboe26a61672019-12-20 09:02:01 -07004659 return -ENOMEM;
4660
4661 data = &req->io->timeout;
Jens Axboead8a48a2019-11-15 08:49:11 -07004662 data->req = req;
Jens Axboead8a48a2019-11-15 08:49:11 -07004663 req->flags |= REQ_F_TIMEOUT;
4664
4665 if (get_timespec64(&data->ts, u64_to_user_ptr(sqe->addr)))
Jens Axboe5262f562019-09-17 12:26:57 -06004666 return -EFAULT;
4667
Jens Axboe11365042019-10-16 09:08:32 -06004668 if (flags & IORING_TIMEOUT_ABS)
Jens Axboead8a48a2019-11-15 08:49:11 -07004669 data->mode = HRTIMER_MODE_ABS;
Jens Axboe11365042019-10-16 09:08:32 -06004670 else
Jens Axboead8a48a2019-11-15 08:49:11 -07004671 data->mode = HRTIMER_MODE_REL;
Jens Axboe11365042019-10-16 09:08:32 -06004672
Jens Axboead8a48a2019-11-15 08:49:11 -07004673 hrtimer_init(&data->timer, CLOCK_MONOTONIC, data->mode);
4674 return 0;
4675}
4676
Jens Axboefc4df992019-12-10 14:38:45 -07004677static int io_timeout(struct io_kiocb *req)
Jens Axboead8a48a2019-11-15 08:49:11 -07004678{
4679 unsigned count;
4680 struct io_ring_ctx *ctx = req->ctx;
4681 struct io_timeout_data *data;
4682 struct list_head *entry;
4683 unsigned span = 0;
Jens Axboead8a48a2019-11-15 08:49:11 -07004684
Jens Axboe2d283902019-12-04 11:08:05 -07004685 data = &req->io->timeout;
Jens Axboe93bd25b2019-11-11 23:34:31 -07004686
Jens Axboe5262f562019-09-17 12:26:57 -06004687 /*
4688 * sqe->off holds how many events that need to occur for this
Jens Axboe93bd25b2019-11-11 23:34:31 -07004689 * timeout event to be satisfied. If it isn't set, then this is
4690 * a pure timeout request, sequence isn't used.
Jens Axboe5262f562019-09-17 12:26:57 -06004691 */
Jens Axboe26a61672019-12-20 09:02:01 -07004692 count = req->timeout.count;
Jens Axboe93bd25b2019-11-11 23:34:31 -07004693 if (!count) {
4694 req->flags |= REQ_F_TIMEOUT_NOSEQ;
4695 spin_lock_irq(&ctx->completion_lock);
4696 entry = ctx->timeout_list.prev;
4697 goto add;
4698 }
Jens Axboe5262f562019-09-17 12:26:57 -06004699
4700 req->sequence = ctx->cached_sq_head + count - 1;
Jens Axboe2d283902019-12-04 11:08:05 -07004701 data->seq_offset = count;
Jens Axboe5262f562019-09-17 12:26:57 -06004702
4703 /*
4704 * Insertion sort, ensuring the first entry in the list is always
4705 * the one we need first.
4706 */
Jens Axboe5262f562019-09-17 12:26:57 -06004707 spin_lock_irq(&ctx->completion_lock);
4708 list_for_each_prev(entry, &ctx->timeout_list) {
4709 struct io_kiocb *nxt = list_entry(entry, struct io_kiocb, list);
yangerkun5da0fb12019-10-15 21:59:29 +08004710 unsigned nxt_sq_head;
4711 long long tmp, tmp_nxt;
Jens Axboe2d283902019-12-04 11:08:05 -07004712 u32 nxt_offset = nxt->io->timeout.seq_offset;
Jens Axboe5262f562019-09-17 12:26:57 -06004713
Jens Axboe93bd25b2019-11-11 23:34:31 -07004714 if (nxt->flags & REQ_F_TIMEOUT_NOSEQ)
4715 continue;
4716
yangerkun5da0fb12019-10-15 21:59:29 +08004717 /*
4718 * Since cached_sq_head + count - 1 can overflow, use type long
4719 * long to store it.
4720 */
4721 tmp = (long long)ctx->cached_sq_head + count - 1;
Pavel Begunkovcc42e0a2019-11-25 23:14:38 +03004722 nxt_sq_head = nxt->sequence - nxt_offset + 1;
4723 tmp_nxt = (long long)nxt_sq_head + nxt_offset - 1;
yangerkun5da0fb12019-10-15 21:59:29 +08004724
4725 /*
4726 * cached_sq_head may overflow, and it will never overflow twice
4727 * once there is some timeout req still be valid.
4728 */
4729 if (ctx->cached_sq_head < nxt_sq_head)
yangerkun8b07a652019-10-17 12:12:35 +08004730 tmp += UINT_MAX;
yangerkun5da0fb12019-10-15 21:59:29 +08004731
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004732 if (tmp > tmp_nxt)
Jens Axboe5262f562019-09-17 12:26:57 -06004733 break;
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004734
4735 /*
4736 * Sequence of reqs after the insert one and itself should
4737 * be adjusted because each timeout req consumes a slot.
4738 */
4739 span++;
4740 nxt->sequence++;
Jens Axboe5262f562019-09-17 12:26:57 -06004741 }
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004742 req->sequence -= span;
Jens Axboe93bd25b2019-11-11 23:34:31 -07004743add:
Jens Axboe5262f562019-09-17 12:26:57 -06004744 list_add(&req->list, entry);
Jens Axboead8a48a2019-11-15 08:49:11 -07004745 data->timer.function = io_timeout_fn;
4746 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts), data->mode);
Jens Axboe842f9612019-10-29 12:34:10 -06004747 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06004748 return 0;
4749}
4750
Jens Axboe62755e32019-10-28 21:49:21 -06004751static bool io_cancel_cb(struct io_wq_work *work, void *data)
Jens Axboede0617e2019-04-06 21:51:27 -06004752{
Jens Axboe62755e32019-10-28 21:49:21 -06004753 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboede0617e2019-04-06 21:51:27 -06004754
Jens Axboe62755e32019-10-28 21:49:21 -06004755 return req->user_data == (unsigned long) data;
4756}
4757
Jens Axboee977d6d2019-11-05 12:39:45 -07004758static int io_async_cancel_one(struct io_ring_ctx *ctx, void *sqe_addr)
Jens Axboe62755e32019-10-28 21:49:21 -06004759{
Jens Axboe62755e32019-10-28 21:49:21 -06004760 enum io_wq_cancel cancel_ret;
Jens Axboe62755e32019-10-28 21:49:21 -06004761 int ret = 0;
4762
Jens Axboe62755e32019-10-28 21:49:21 -06004763 cancel_ret = io_wq_cancel_cb(ctx->io_wq, io_cancel_cb, sqe_addr);
4764 switch (cancel_ret) {
4765 case IO_WQ_CANCEL_OK:
4766 ret = 0;
4767 break;
4768 case IO_WQ_CANCEL_RUNNING:
4769 ret = -EALREADY;
4770 break;
4771 case IO_WQ_CANCEL_NOTFOUND:
4772 ret = -ENOENT;
4773 break;
4774 }
4775
Jens Axboee977d6d2019-11-05 12:39:45 -07004776 return ret;
4777}
4778
Jens Axboe47f46762019-11-09 17:43:02 -07004779static void io_async_find_and_cancel(struct io_ring_ctx *ctx,
4780 struct io_kiocb *req, __u64 sqe_addr,
Pavel Begunkov014db002020-03-03 21:33:12 +03004781 int success_ret)
Jens Axboe47f46762019-11-09 17:43:02 -07004782{
4783 unsigned long flags;
4784 int ret;
4785
4786 ret = io_async_cancel_one(ctx, (void *) (unsigned long) sqe_addr);
4787 if (ret != -ENOENT) {
4788 spin_lock_irqsave(&ctx->completion_lock, flags);
4789 goto done;
4790 }
4791
4792 spin_lock_irqsave(&ctx->completion_lock, flags);
4793 ret = io_timeout_cancel(ctx, sqe_addr);
4794 if (ret != -ENOENT)
4795 goto done;
4796 ret = io_poll_cancel(ctx, sqe_addr);
4797done:
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004798 if (!ret)
4799 ret = success_ret;
Jens Axboe47f46762019-11-09 17:43:02 -07004800 io_cqring_fill_event(req, ret);
4801 io_commit_cqring(ctx);
4802 spin_unlock_irqrestore(&ctx->completion_lock, flags);
4803 io_cqring_ev_posted(ctx);
4804
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004805 if (ret < 0)
4806 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03004807 io_put_req(req);
Jens Axboe47f46762019-11-09 17:43:02 -07004808}
4809
Jens Axboe3529d8c2019-12-19 18:24:38 -07004810static int io_async_cancel_prep(struct io_kiocb *req,
4811 const struct io_uring_sqe *sqe)
Jens Axboee977d6d2019-11-05 12:39:45 -07004812{
Jens Axboefbf23842019-12-17 18:45:56 -07004813 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboee977d6d2019-11-05 12:39:45 -07004814 return -EINVAL;
4815 if (sqe->flags || sqe->ioprio || sqe->off || sqe->len ||
4816 sqe->cancel_flags)
4817 return -EINVAL;
4818
Jens Axboefbf23842019-12-17 18:45:56 -07004819 req->cancel.addr = READ_ONCE(sqe->addr);
4820 return 0;
4821}
4822
Pavel Begunkov014db002020-03-03 21:33:12 +03004823static int io_async_cancel(struct io_kiocb *req)
Jens Axboefbf23842019-12-17 18:45:56 -07004824{
4825 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefbf23842019-12-17 18:45:56 -07004826
Pavel Begunkov014db002020-03-03 21:33:12 +03004827 io_async_find_and_cancel(ctx, req, req->cancel.addr, 0);
Jens Axboe62755e32019-10-28 21:49:21 -06004828 return 0;
4829}
4830
Jens Axboe05f3fb32019-12-09 11:22:50 -07004831static int io_files_update_prep(struct io_kiocb *req,
4832 const struct io_uring_sqe *sqe)
4833{
4834 if (sqe->flags || sqe->ioprio || sqe->rw_flags)
4835 return -EINVAL;
4836
4837 req->files_update.offset = READ_ONCE(sqe->off);
4838 req->files_update.nr_args = READ_ONCE(sqe->len);
4839 if (!req->files_update.nr_args)
4840 return -EINVAL;
4841 req->files_update.arg = READ_ONCE(sqe->addr);
4842 return 0;
4843}
4844
4845static int io_files_update(struct io_kiocb *req, bool force_nonblock)
4846{
4847 struct io_ring_ctx *ctx = req->ctx;
4848 struct io_uring_files_update up;
4849 int ret;
4850
Jens Axboef86cd202020-01-29 13:46:44 -07004851 if (force_nonblock)
Jens Axboe05f3fb32019-12-09 11:22:50 -07004852 return -EAGAIN;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004853
4854 up.offset = req->files_update.offset;
4855 up.fds = req->files_update.arg;
4856
4857 mutex_lock(&ctx->uring_lock);
4858 ret = __io_sqe_files_update(ctx, &up, req->files_update.nr_args);
4859 mutex_unlock(&ctx->uring_lock);
4860
4861 if (ret < 0)
4862 req_set_fail_links(req);
4863 io_cqring_add_event(req, ret);
4864 io_put_req(req);
4865 return 0;
4866}
4867
Jens Axboe3529d8c2019-12-19 18:24:38 -07004868static int io_req_defer_prep(struct io_kiocb *req,
4869 const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07004870{
Jens Axboee7815732019-12-17 19:45:06 -07004871 ssize_t ret = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07004872
Pavel Begunkovf1d96a82020-03-13 22:29:14 +03004873 if (!sqe)
4874 return 0;
4875
Jens Axboef86cd202020-01-29 13:46:44 -07004876 if (io_op_defs[req->opcode].file_table) {
4877 ret = io_grab_files(req);
4878 if (unlikely(ret))
4879 return ret;
4880 }
4881
Jens Axboecccf0ee2020-01-27 16:34:48 -07004882 io_req_work_grab_env(req, &io_op_defs[req->opcode]);
4883
Jens Axboed625c6e2019-12-17 19:53:05 -07004884 switch (req->opcode) {
Jens Axboee7815732019-12-17 19:45:06 -07004885 case IORING_OP_NOP:
4886 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004887 case IORING_OP_READV:
4888 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004889 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004890 ret = io_read_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07004891 break;
4892 case IORING_OP_WRITEV:
4893 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004894 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004895 ret = io_write_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07004896 break;
Jens Axboe0969e782019-12-17 18:40:57 -07004897 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004898 ret = io_poll_add_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07004899 break;
4900 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004901 ret = io_poll_remove_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07004902 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004903 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004904 ret = io_prep_fsync(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004905 break;
4906 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004907 ret = io_prep_sfr(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004908 break;
Jens Axboe03b12302019-12-02 18:50:25 -07004909 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004910 case IORING_OP_SEND:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004911 ret = io_sendmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07004912 break;
4913 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004914 case IORING_OP_RECV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004915 ret = io_recvmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07004916 break;
Jens Axboef499a022019-12-02 16:28:46 -07004917 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004918 ret = io_connect_prep(req, sqe);
Jens Axboef499a022019-12-02 16:28:46 -07004919 break;
Jens Axboe2d283902019-12-04 11:08:05 -07004920 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004921 ret = io_timeout_prep(req, sqe, false);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004922 break;
Jens Axboeb29472e2019-12-17 18:50:29 -07004923 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004924 ret = io_timeout_remove_prep(req, sqe);
Jens Axboeb29472e2019-12-17 18:50:29 -07004925 break;
Jens Axboefbf23842019-12-17 18:45:56 -07004926 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004927 ret = io_async_cancel_prep(req, sqe);
Jens Axboefbf23842019-12-17 18:45:56 -07004928 break;
Jens Axboe2d283902019-12-04 11:08:05 -07004929 case IORING_OP_LINK_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004930 ret = io_timeout_prep(req, sqe, true);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004931 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004932 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004933 ret = io_accept_prep(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004934 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07004935 case IORING_OP_FALLOCATE:
4936 ret = io_fallocate_prep(req, sqe);
4937 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004938 case IORING_OP_OPENAT:
4939 ret = io_openat_prep(req, sqe);
4940 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07004941 case IORING_OP_CLOSE:
4942 ret = io_close_prep(req, sqe);
4943 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004944 case IORING_OP_FILES_UPDATE:
4945 ret = io_files_update_prep(req, sqe);
4946 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004947 case IORING_OP_STATX:
4948 ret = io_statx_prep(req, sqe);
4949 break;
Jens Axboe4840e412019-12-25 22:03:45 -07004950 case IORING_OP_FADVISE:
4951 ret = io_fadvise_prep(req, sqe);
4952 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07004953 case IORING_OP_MADVISE:
4954 ret = io_madvise_prep(req, sqe);
4955 break;
Jens Axboecebdb982020-01-08 17:59:24 -07004956 case IORING_OP_OPENAT2:
4957 ret = io_openat2_prep(req, sqe);
4958 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07004959 case IORING_OP_EPOLL_CTL:
4960 ret = io_epoll_ctl_prep(req, sqe);
4961 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03004962 case IORING_OP_SPLICE:
4963 ret = io_splice_prep(req, sqe);
4964 break;
Jens Axboeddf0322d2020-02-23 16:41:33 -07004965 case IORING_OP_PROVIDE_BUFFERS:
4966 ret = io_provide_buffers_prep(req, sqe);
4967 break;
Jens Axboe067524e2020-03-02 16:32:28 -07004968 case IORING_OP_REMOVE_BUFFERS:
4969 ret = io_remove_buffers_prep(req, sqe);
4970 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004971 default:
Jens Axboee7815732019-12-17 19:45:06 -07004972 printk_once(KERN_WARNING "io_uring: unhandled opcode %d\n",
4973 req->opcode);
4974 ret = -EINVAL;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004975 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004976 }
4977
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004978 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07004979}
4980
Jens Axboe3529d8c2019-12-19 18:24:38 -07004981static int io_req_defer(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboede0617e2019-04-06 21:51:27 -06004982{
Jackie Liua197f662019-11-08 08:09:12 -07004983 struct io_ring_ctx *ctx = req->ctx;
Jens Axboef67676d2019-12-02 11:03:47 -07004984 int ret;
Jens Axboede0617e2019-04-06 21:51:27 -06004985
Bob Liu9d858b22019-11-13 18:06:25 +08004986 /* Still need defer if there is pending req in defer list. */
4987 if (!req_need_defer(req) && list_empty(&ctx->defer_list))
Jens Axboede0617e2019-04-06 21:51:27 -06004988 return 0;
4989
Jens Axboe3529d8c2019-12-19 18:24:38 -07004990 if (!req->io && io_alloc_async_ctx(req))
Jens Axboede0617e2019-04-06 21:51:27 -06004991 return -EAGAIN;
4992
Jens Axboe3529d8c2019-12-19 18:24:38 -07004993 ret = io_req_defer_prep(req, sqe);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004994 if (ret < 0)
Jens Axboe2d283902019-12-04 11:08:05 -07004995 return ret;
Jens Axboe2d283902019-12-04 11:08:05 -07004996
Jens Axboede0617e2019-04-06 21:51:27 -06004997 spin_lock_irq(&ctx->completion_lock);
Bob Liu9d858b22019-11-13 18:06:25 +08004998 if (!req_need_defer(req) && list_empty(&ctx->defer_list)) {
Jens Axboede0617e2019-04-06 21:51:27 -06004999 spin_unlock_irq(&ctx->completion_lock);
Jens Axboede0617e2019-04-06 21:51:27 -06005000 return 0;
5001 }
5002
Jens Axboe915967f2019-11-21 09:01:20 -07005003 trace_io_uring_defer(ctx, req, req->user_data);
Jens Axboede0617e2019-04-06 21:51:27 -06005004 list_add_tail(&req->list, &ctx->defer_list);
5005 spin_unlock_irq(&ctx->completion_lock);
5006 return -EIOCBQUEUED;
5007}
5008
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005009static void io_cleanup_req(struct io_kiocb *req)
5010{
5011 struct io_async_ctx *io = req->io;
5012
5013 switch (req->opcode) {
5014 case IORING_OP_READV:
5015 case IORING_OP_READ_FIXED:
5016 case IORING_OP_READ:
Jens Axboebcda7ba2020-02-23 16:42:51 -07005017 if (req->flags & REQ_F_BUFFER_SELECTED)
5018 kfree((void *)(unsigned long)req->rw.addr);
5019 /* fallthrough */
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005020 case IORING_OP_WRITEV:
5021 case IORING_OP_WRITE_FIXED:
5022 case IORING_OP_WRITE:
5023 if (io->rw.iov != io->rw.fast_iov)
5024 kfree(io->rw.iov);
5025 break;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005026 case IORING_OP_RECVMSG:
Jens Axboe52de1fe2020-02-27 10:15:42 -07005027 if (req->flags & REQ_F_BUFFER_SELECTED)
5028 kfree(req->sr_msg.kbuf);
5029 /* fallthrough */
5030 case IORING_OP_SENDMSG:
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005031 if (io->msg.iov != io->msg.fast_iov)
5032 kfree(io->msg.iov);
5033 break;
Jens Axboebcda7ba2020-02-23 16:42:51 -07005034 case IORING_OP_RECV:
5035 if (req->flags & REQ_F_BUFFER_SELECTED)
5036 kfree(req->sr_msg.kbuf);
5037 break;
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03005038 case IORING_OP_OPENAT:
5039 case IORING_OP_OPENAT2:
5040 case IORING_OP_STATX:
5041 putname(req->open.filename);
5042 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005043 case IORING_OP_SPLICE:
5044 io_put_file(req, req->splice.file_in,
5045 (req->splice.flags & SPLICE_F_FD_IN_FIXED));
5046 break;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005047 }
5048
5049 req->flags &= ~REQ_F_NEED_CLEANUP;
5050}
5051
Jens Axboe3529d8c2019-12-19 18:24:38 -07005052static int io_issue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Pavel Begunkov014db002020-03-03 21:33:12 +03005053 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005054{
Jackie Liua197f662019-11-08 08:09:12 -07005055 struct io_ring_ctx *ctx = req->ctx;
Jens Axboed625c6e2019-12-17 19:53:05 -07005056 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005057
Jens Axboed625c6e2019-12-17 19:53:05 -07005058 switch (req->opcode) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07005059 case IORING_OP_NOP:
Jens Axboe78e19bb2019-11-06 15:21:34 -07005060 ret = io_nop(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005061 break;
5062 case IORING_OP_READV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005063 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07005064 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005065 if (sqe) {
5066 ret = io_read_prep(req, sqe, force_nonblock);
5067 if (ret < 0)
5068 break;
5069 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005070 ret = io_read(req, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005071 break;
5072 case IORING_OP_WRITEV:
Jens Axboeedafcce2019-01-09 09:16:05 -07005073 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07005074 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005075 if (sqe) {
5076 ret = io_write_prep(req, sqe, force_nonblock);
5077 if (ret < 0)
5078 break;
5079 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005080 ret = io_write(req, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005081 break;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07005082 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005083 if (sqe) {
5084 ret = io_prep_fsync(req, sqe);
5085 if (ret < 0)
5086 break;
5087 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005088 ret = io_fsync(req, force_nonblock);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07005089 break;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005090 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005091 if (sqe) {
5092 ret = io_poll_add_prep(req, sqe);
5093 if (ret)
5094 break;
5095 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005096 ret = io_poll_add(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005097 break;
5098 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005099 if (sqe) {
5100 ret = io_poll_remove_prep(req, sqe);
5101 if (ret < 0)
5102 break;
5103 }
Jens Axboefc4df992019-12-10 14:38:45 -07005104 ret = io_poll_remove(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005105 break;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06005106 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005107 if (sqe) {
5108 ret = io_prep_sfr(req, sqe);
5109 if (ret < 0)
5110 break;
5111 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005112 ret = io_sync_file_range(req, force_nonblock);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06005113 break;
Jens Axboe0fa03c62019-04-19 13:34:07 -06005114 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005115 case IORING_OP_SEND:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005116 if (sqe) {
5117 ret = io_sendmsg_prep(req, sqe);
5118 if (ret < 0)
5119 break;
5120 }
Jens Axboefddafac2020-01-04 20:19:44 -07005121 if (req->opcode == IORING_OP_SENDMSG)
Pavel Begunkov014db002020-03-03 21:33:12 +03005122 ret = io_sendmsg(req, force_nonblock);
Jens Axboefddafac2020-01-04 20:19:44 -07005123 else
Pavel Begunkov014db002020-03-03 21:33:12 +03005124 ret = io_send(req, force_nonblock);
Jens Axboe0fa03c62019-04-19 13:34:07 -06005125 break;
Jens Axboeaa1fa282019-04-19 13:38:09 -06005126 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005127 case IORING_OP_RECV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005128 if (sqe) {
5129 ret = io_recvmsg_prep(req, sqe);
5130 if (ret)
5131 break;
5132 }
Jens Axboefddafac2020-01-04 20:19:44 -07005133 if (req->opcode == IORING_OP_RECVMSG)
Pavel Begunkov014db002020-03-03 21:33:12 +03005134 ret = io_recvmsg(req, force_nonblock);
Jens Axboefddafac2020-01-04 20:19:44 -07005135 else
Pavel Begunkov014db002020-03-03 21:33:12 +03005136 ret = io_recv(req, force_nonblock);
Jens Axboeaa1fa282019-04-19 13:38:09 -06005137 break;
Jens Axboe5262f562019-09-17 12:26:57 -06005138 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005139 if (sqe) {
5140 ret = io_timeout_prep(req, sqe, false);
5141 if (ret)
5142 break;
5143 }
Jens Axboefc4df992019-12-10 14:38:45 -07005144 ret = io_timeout(req);
Jens Axboe5262f562019-09-17 12:26:57 -06005145 break;
Jens Axboe11365042019-10-16 09:08:32 -06005146 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005147 if (sqe) {
5148 ret = io_timeout_remove_prep(req, sqe);
5149 if (ret)
5150 break;
5151 }
Jens Axboefc4df992019-12-10 14:38:45 -07005152 ret = io_timeout_remove(req);
Jens Axboe11365042019-10-16 09:08:32 -06005153 break;
Jens Axboe17f2fe32019-10-17 14:42:58 -06005154 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005155 if (sqe) {
5156 ret = io_accept_prep(req, sqe);
5157 if (ret)
5158 break;
5159 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005160 ret = io_accept(req, force_nonblock);
Jens Axboe17f2fe32019-10-17 14:42:58 -06005161 break;
Jens Axboef8e85cf2019-11-23 14:24:24 -07005162 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005163 if (sqe) {
5164 ret = io_connect_prep(req, sqe);
5165 if (ret)
5166 break;
5167 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005168 ret = io_connect(req, force_nonblock);
Jens Axboef8e85cf2019-11-23 14:24:24 -07005169 break;
Jens Axboe62755e32019-10-28 21:49:21 -06005170 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005171 if (sqe) {
5172 ret = io_async_cancel_prep(req, sqe);
5173 if (ret)
5174 break;
5175 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005176 ret = io_async_cancel(req);
Jens Axboe62755e32019-10-28 21:49:21 -06005177 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07005178 case IORING_OP_FALLOCATE:
5179 if (sqe) {
5180 ret = io_fallocate_prep(req, sqe);
5181 if (ret)
5182 break;
5183 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005184 ret = io_fallocate(req, force_nonblock);
Jens Axboed63d1b52019-12-10 10:38:56 -07005185 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07005186 case IORING_OP_OPENAT:
5187 if (sqe) {
5188 ret = io_openat_prep(req, sqe);
5189 if (ret)
5190 break;
5191 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005192 ret = io_openat(req, force_nonblock);
Jens Axboe15b71ab2019-12-11 11:20:36 -07005193 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07005194 case IORING_OP_CLOSE:
5195 if (sqe) {
5196 ret = io_close_prep(req, sqe);
5197 if (ret)
5198 break;
5199 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005200 ret = io_close(req, force_nonblock);
Jens Axboeb5dba592019-12-11 14:02:38 -07005201 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005202 case IORING_OP_FILES_UPDATE:
5203 if (sqe) {
5204 ret = io_files_update_prep(req, sqe);
5205 if (ret)
5206 break;
5207 }
5208 ret = io_files_update(req, force_nonblock);
5209 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07005210 case IORING_OP_STATX:
5211 if (sqe) {
5212 ret = io_statx_prep(req, sqe);
5213 if (ret)
5214 break;
5215 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005216 ret = io_statx(req, force_nonblock);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07005217 break;
Jens Axboe4840e412019-12-25 22:03:45 -07005218 case IORING_OP_FADVISE:
5219 if (sqe) {
5220 ret = io_fadvise_prep(req, sqe);
5221 if (ret)
5222 break;
5223 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005224 ret = io_fadvise(req, force_nonblock);
Jens Axboe4840e412019-12-25 22:03:45 -07005225 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07005226 case IORING_OP_MADVISE:
5227 if (sqe) {
5228 ret = io_madvise_prep(req, sqe);
5229 if (ret)
5230 break;
5231 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005232 ret = io_madvise(req, force_nonblock);
Jens Axboec1ca7572019-12-25 22:18:28 -07005233 break;
Jens Axboecebdb982020-01-08 17:59:24 -07005234 case IORING_OP_OPENAT2:
5235 if (sqe) {
5236 ret = io_openat2_prep(req, sqe);
5237 if (ret)
5238 break;
5239 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005240 ret = io_openat2(req, force_nonblock);
Jens Axboecebdb982020-01-08 17:59:24 -07005241 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07005242 case IORING_OP_EPOLL_CTL:
5243 if (sqe) {
5244 ret = io_epoll_ctl_prep(req, sqe);
5245 if (ret)
5246 break;
5247 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005248 ret = io_epoll_ctl(req, force_nonblock);
Jens Axboe3e4827b2020-01-08 15:18:09 -07005249 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005250 case IORING_OP_SPLICE:
5251 if (sqe) {
5252 ret = io_splice_prep(req, sqe);
5253 if (ret < 0)
5254 break;
5255 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005256 ret = io_splice(req, force_nonblock);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005257 break;
Jens Axboeddf0322d2020-02-23 16:41:33 -07005258 case IORING_OP_PROVIDE_BUFFERS:
5259 if (sqe) {
5260 ret = io_provide_buffers_prep(req, sqe);
5261 if (ret)
5262 break;
5263 }
5264 ret = io_provide_buffers(req, force_nonblock);
5265 break;
Jens Axboe067524e2020-03-02 16:32:28 -07005266 case IORING_OP_REMOVE_BUFFERS:
5267 if (sqe) {
5268 ret = io_remove_buffers_prep(req, sqe);
5269 if (ret)
5270 break;
5271 }
5272 ret = io_remove_buffers(req, force_nonblock);
Jens Axboe31b51512019-01-18 22:56:34 -07005273 break;
5274 default:
5275 ret = -EINVAL;
Jens Axboeedafcce2019-01-09 09:16:05 -07005276 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005277 }
5278
Jens Axboe31b51512019-01-18 22:56:34 -07005279 if (ret)
5280 return ret;
5281
5282 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboe11ba8202020-01-15 21:51:17 -07005283 const bool in_async = io_wq_current_is_worker();
5284
Jens Axboe9e645e112019-05-10 16:07:28 -06005285 if (req->result == -EAGAIN)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005286 return -EAGAIN;
5287
Jens Axboe11ba8202020-01-15 21:51:17 -07005288 /* workqueue context doesn't hold uring_lock, grab it now */
5289 if (in_async)
5290 mutex_lock(&ctx->uring_lock);
5291
Jens Axboe2b188cc2019-01-07 10:46:33 -07005292 io_iopoll_req_issued(req);
Jens Axboe11ba8202020-01-15 21:51:17 -07005293
5294 if (in_async)
5295 mutex_unlock(&ctx->uring_lock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005296 }
5297
5298 return 0;
5299}
5300
Jens Axboe561fb042019-10-24 07:25:42 -06005301static void io_wq_submit_work(struct io_wq_work **workptr)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005302{
Jens Axboe561fb042019-10-24 07:25:42 -06005303 struct io_wq_work *work = *workptr;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005304 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboe561fb042019-10-24 07:25:42 -06005305 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005306
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07005307 /* if NO_CANCEL is set, we must still run the work */
5308 if ((work->flags & (IO_WQ_WORK_CANCEL|IO_WQ_WORK_NO_CANCEL)) ==
5309 IO_WQ_WORK_CANCEL) {
Jens Axboe561fb042019-10-24 07:25:42 -06005310 ret = -ECANCELED;
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07005311 }
Jens Axboe31b51512019-01-18 22:56:34 -07005312
Jens Axboe561fb042019-10-24 07:25:42 -06005313 if (!ret) {
Jens Axboe561fb042019-10-24 07:25:42 -06005314 do {
Pavel Begunkov014db002020-03-03 21:33:12 +03005315 ret = io_issue_sqe(req, NULL, false);
Jens Axboe561fb042019-10-24 07:25:42 -06005316 /*
5317 * We can get EAGAIN for polled IO even though we're
5318 * forcing a sync submission from here, since we can't
5319 * wait for request slots on the block side.
5320 */
5321 if (ret != -EAGAIN)
5322 break;
5323 cond_resched();
5324 } while (1);
5325 }
Jens Axboe31b51512019-01-18 22:56:34 -07005326
Jens Axboe561fb042019-10-24 07:25:42 -06005327 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005328 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07005329 io_cqring_add_event(req, ret);
Jens Axboe817869d2019-04-30 14:44:05 -06005330 io_put_req(req);
Jens Axboeedafcce2019-01-09 09:16:05 -07005331 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07005332
Pavel Begunkove9fd9392020-03-04 16:14:12 +03005333 io_steal_work(req, workptr);
Jens Axboe31b51512019-01-18 22:56:34 -07005334}
Jens Axboe2b188cc2019-01-07 10:46:33 -07005335
Jens Axboe15b71ab2019-12-11 11:20:36 -07005336static int io_req_needs_file(struct io_kiocb *req, int fd)
Jens Axboe9e3aa612019-12-11 15:55:43 -07005337{
Jens Axboed3656342019-12-18 09:50:26 -07005338 if (!io_op_defs[req->opcode].needs_file)
Jens Axboe9e3aa612019-12-11 15:55:43 -07005339 return 0;
Jens Axboe0b5faf62020-02-06 21:42:51 -07005340 if ((fd == -1 || fd == AT_FDCWD) && io_op_defs[req->opcode].fd_non_neg)
Jens Axboed3656342019-12-18 09:50:26 -07005341 return 0;
5342 return 1;
Jens Axboe09bb8392019-03-13 12:39:28 -06005343}
5344
Jens Axboe65e19f52019-10-26 07:20:21 -06005345static inline struct file *io_file_from_index(struct io_ring_ctx *ctx,
5346 int index)
Jens Axboe09bb8392019-03-13 12:39:28 -06005347{
Jens Axboe65e19f52019-10-26 07:20:21 -06005348 struct fixed_file_table *table;
5349
Jens Axboe05f3fb32019-12-09 11:22:50 -07005350 table = &ctx->file_data->table[index >> IORING_FILE_TABLE_SHIFT];
5351 return table->files[index & IORING_FILE_TABLE_MASK];;
Jens Axboe65e19f52019-10-26 07:20:21 -06005352}
5353
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005354static int io_file_get(struct io_submit_state *state, struct io_kiocb *req,
5355 int fd, struct file **out_file, bool fixed)
5356{
5357 struct io_ring_ctx *ctx = req->ctx;
5358 struct file *file;
5359
5360 if (fixed) {
5361 if (unlikely(!ctx->file_data ||
5362 (unsigned) fd >= ctx->nr_user_files))
5363 return -EBADF;
5364 fd = array_index_nospec(fd, ctx->nr_user_files);
5365 file = io_file_from_index(ctx, fd);
5366 if (!file)
5367 return -EBADF;
Xiaoguang Wang05589552020-03-31 14:05:18 +08005368 req->fixed_file_refs = ctx->file_data->cur_refs;
5369 percpu_ref_get(req->fixed_file_refs);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005370 } else {
5371 trace_io_uring_file_get(ctx, fd);
5372 file = __io_file_get(state, fd);
5373 if (unlikely(!file))
5374 return -EBADF;
5375 }
5376
5377 *out_file = file;
5378 return 0;
5379}
5380
Jens Axboe3529d8c2019-12-19 18:24:38 -07005381static int io_req_set_file(struct io_submit_state *state, struct io_kiocb *req,
5382 const struct io_uring_sqe *sqe)
Jens Axboe09bb8392019-03-13 12:39:28 -06005383{
5384 unsigned flags;
Jens Axboed3656342019-12-18 09:50:26 -07005385 int fd;
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005386 bool fixed;
Jens Axboe09bb8392019-03-13 12:39:28 -06005387
Jens Axboe3529d8c2019-12-19 18:24:38 -07005388 flags = READ_ONCE(sqe->flags);
5389 fd = READ_ONCE(sqe->fd);
Jens Axboe09bb8392019-03-13 12:39:28 -06005390
Jens Axboed3656342019-12-18 09:50:26 -07005391 if (!io_req_needs_file(req, fd))
5392 return 0;
Jens Axboe09bb8392019-03-13 12:39:28 -06005393
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005394 fixed = (flags & IOSQE_FIXED_FILE);
5395 if (unlikely(!fixed && req->needs_fixed_file))
5396 return -EBADF;
Jens Axboe09bb8392019-03-13 12:39:28 -06005397
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005398 return io_file_get(state, req, fd, &req->file, fixed);
Jens Axboe09bb8392019-03-13 12:39:28 -06005399}
5400
Jackie Liua197f662019-11-08 08:09:12 -07005401static int io_grab_files(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005402{
Jens Axboefcb323c2019-10-24 12:39:47 -06005403 int ret = -EBADF;
Jackie Liua197f662019-11-08 08:09:12 -07005404 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06005405
Jens Axboef86cd202020-01-29 13:46:44 -07005406 if (req->work.files)
5407 return 0;
Pavel Begunkovb14cca02020-01-17 04:45:59 +03005408 if (!ctx->ring_file)
Jens Axboeb5dba592019-12-11 14:02:38 -07005409 return -EBADF;
5410
Jens Axboefcb323c2019-10-24 12:39:47 -06005411 rcu_read_lock();
5412 spin_lock_irq(&ctx->inflight_lock);
5413 /*
5414 * We use the f_ops->flush() handler to ensure that we can flush
5415 * out work accessing these files if the fd is closed. Check if
5416 * the fd has changed since we started down this path, and disallow
5417 * this operation if it has.
5418 */
Pavel Begunkovb14cca02020-01-17 04:45:59 +03005419 if (fcheck(ctx->ring_fd) == ctx->ring_file) {
Jens Axboefcb323c2019-10-24 12:39:47 -06005420 list_add(&req->inflight_entry, &ctx->inflight_list);
5421 req->flags |= REQ_F_INFLIGHT;
5422 req->work.files = current->files;
5423 ret = 0;
5424 }
5425 spin_unlock_irq(&ctx->inflight_lock);
5426 rcu_read_unlock();
5427
5428 return ret;
5429}
5430
Jens Axboe2665abf2019-11-05 12:40:47 -07005431static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer)
5432{
Jens Axboead8a48a2019-11-15 08:49:11 -07005433 struct io_timeout_data *data = container_of(timer,
5434 struct io_timeout_data, timer);
5435 struct io_kiocb *req = data->req;
Jens Axboe2665abf2019-11-05 12:40:47 -07005436 struct io_ring_ctx *ctx = req->ctx;
5437 struct io_kiocb *prev = NULL;
5438 unsigned long flags;
Jens Axboe2665abf2019-11-05 12:40:47 -07005439
5440 spin_lock_irqsave(&ctx->completion_lock, flags);
5441
5442 /*
5443 * We don't expect the list to be empty, that will only happen if we
5444 * race with the completion of the linked work.
5445 */
Pavel Begunkov44932332019-12-05 16:16:35 +03005446 if (!list_empty(&req->link_list)) {
5447 prev = list_entry(req->link_list.prev, struct io_kiocb,
5448 link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07005449 if (refcount_inc_not_zero(&prev->refs)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03005450 list_del_init(&req->link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07005451 prev->flags &= ~REQ_F_LINK_TIMEOUT;
5452 } else
Jens Axboe76a46e02019-11-10 23:34:16 -07005453 prev = NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07005454 }
5455
5456 spin_unlock_irqrestore(&ctx->completion_lock, flags);
5457
5458 if (prev) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005459 req_set_fail_links(prev);
Pavel Begunkov014db002020-03-03 21:33:12 +03005460 io_async_find_and_cancel(ctx, req, prev->user_data, -ETIME);
Jens Axboe76a46e02019-11-10 23:34:16 -07005461 io_put_req(prev);
Jens Axboe47f46762019-11-09 17:43:02 -07005462 } else {
5463 io_cqring_add_event(req, -ETIME);
5464 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07005465 }
Jens Axboe2665abf2019-11-05 12:40:47 -07005466 return HRTIMER_NORESTART;
5467}
5468
Jens Axboead8a48a2019-11-15 08:49:11 -07005469static void io_queue_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07005470{
Jens Axboe76a46e02019-11-10 23:34:16 -07005471 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07005472
Jens Axboe76a46e02019-11-10 23:34:16 -07005473 /*
5474 * If the list is now empty, then our linked request finished before
5475 * we got a chance to setup the timer
5476 */
5477 spin_lock_irq(&ctx->completion_lock);
Pavel Begunkov44932332019-12-05 16:16:35 +03005478 if (!list_empty(&req->link_list)) {
Jens Axboe2d283902019-12-04 11:08:05 -07005479 struct io_timeout_data *data = &req->io->timeout;
Jens Axboe94ae5e72019-11-14 19:39:52 -07005480
Jens Axboead8a48a2019-11-15 08:49:11 -07005481 data->timer.function = io_link_timeout_fn;
5482 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts),
5483 data->mode);
Jens Axboe2665abf2019-11-05 12:40:47 -07005484 }
Jens Axboe76a46e02019-11-10 23:34:16 -07005485 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe2665abf2019-11-05 12:40:47 -07005486
Jens Axboe2665abf2019-11-05 12:40:47 -07005487 /* drop submission reference */
Jens Axboe76a46e02019-11-10 23:34:16 -07005488 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07005489}
5490
Jens Axboead8a48a2019-11-15 08:49:11 -07005491static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07005492{
5493 struct io_kiocb *nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005494
Jens Axboe2665abf2019-11-05 12:40:47 -07005495 if (!(req->flags & REQ_F_LINK))
5496 return NULL;
Jens Axboed7718a92020-02-14 22:23:12 -07005497 /* for polled retry, if flag is set, we already went through here */
5498 if (req->flags & REQ_F_POLLED)
5499 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07005500
Pavel Begunkov44932332019-12-05 16:16:35 +03005501 nxt = list_first_entry_or_null(&req->link_list, struct io_kiocb,
5502 link_list);
Jens Axboed625c6e2019-12-17 19:53:05 -07005503 if (!nxt || nxt->opcode != IORING_OP_LINK_TIMEOUT)
Jens Axboe76a46e02019-11-10 23:34:16 -07005504 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07005505
Jens Axboe76a46e02019-11-10 23:34:16 -07005506 req->flags |= REQ_F_LINK_TIMEOUT;
Jens Axboe76a46e02019-11-10 23:34:16 -07005507 return nxt;
Jens Axboe2665abf2019-11-05 12:40:47 -07005508}
5509
Jens Axboe3529d8c2019-12-19 18:24:38 -07005510static void __io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005511{
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005512 struct io_kiocb *linked_timeout;
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005513 struct io_kiocb *nxt;
Jens Axboe193155c2020-02-22 23:22:19 -07005514 const struct cred *old_creds = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005515 int ret;
5516
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005517again:
5518 linked_timeout = io_prep_linked_timeout(req);
5519
Jens Axboe193155c2020-02-22 23:22:19 -07005520 if (req->work.creds && req->work.creds != current_cred()) {
5521 if (old_creds)
5522 revert_creds(old_creds);
5523 if (old_creds == req->work.creds)
5524 old_creds = NULL; /* restored original creds */
5525 else
5526 old_creds = override_creds(req->work.creds);
5527 }
5528
Pavel Begunkov014db002020-03-03 21:33:12 +03005529 ret = io_issue_sqe(req, sqe, true);
Jens Axboe491381ce2019-10-17 09:20:46 -06005530
5531 /*
5532 * We async punt it if the file wasn't marked NOWAIT, or if the file
5533 * doesn't support non-blocking read/write attempts
5534 */
5535 if (ret == -EAGAIN && (!(req->flags & REQ_F_NOWAIT) ||
5536 (req->flags & REQ_F_MUST_PUNT))) {
Jens Axboed7718a92020-02-14 22:23:12 -07005537 if (io_arm_poll_handler(req)) {
5538 if (linked_timeout)
5539 io_queue_linked_timeout(linked_timeout);
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005540 goto exit;
Jens Axboed7718a92020-02-14 22:23:12 -07005541 }
Pavel Begunkov86a761f2020-01-22 23:09:36 +03005542punt:
Jens Axboef86cd202020-01-29 13:46:44 -07005543 if (io_op_defs[req->opcode].file_table) {
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03005544 ret = io_grab_files(req);
5545 if (ret)
5546 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005547 }
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03005548
5549 /*
5550 * Queued up for async execution, worker will release
5551 * submit reference when the iocb is actually submitted.
5552 */
5553 io_queue_async_work(req);
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005554 goto exit;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005555 }
Jens Axboee65ef562019-03-12 10:16:44 -06005556
Jens Axboefcb323c2019-10-24 12:39:47 -06005557err:
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005558 nxt = NULL;
Jens Axboee65ef562019-03-12 10:16:44 -06005559 /* drop submission reference */
Jens Axboe2a44f462020-02-25 13:25:41 -07005560 io_put_req_find_next(req, &nxt);
Jens Axboee65ef562019-03-12 10:16:44 -06005561
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03005562 if (linked_timeout) {
Jens Axboe76a46e02019-11-10 23:34:16 -07005563 if (!ret)
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03005564 io_queue_linked_timeout(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07005565 else
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03005566 io_put_req(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07005567 }
5568
Jens Axboee65ef562019-03-12 10:16:44 -06005569 /* and drop final reference, if we failed */
Jens Axboe9e645e112019-05-10 16:07:28 -06005570 if (ret) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07005571 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005572 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06005573 io_put_req(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06005574 }
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005575 if (nxt) {
5576 req = nxt;
Pavel Begunkov86a761f2020-01-22 23:09:36 +03005577
5578 if (req->flags & REQ_F_FORCE_ASYNC)
5579 goto punt;
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005580 goto again;
5581 }
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005582exit:
Jens Axboe193155c2020-02-22 23:22:19 -07005583 if (old_creds)
5584 revert_creds(old_creds);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005585}
5586
Jens Axboe3529d8c2019-12-19 18:24:38 -07005587static void io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jackie Liu4fe2c962019-09-09 20:50:40 +08005588{
5589 int ret;
5590
Jens Axboe3529d8c2019-12-19 18:24:38 -07005591 ret = io_req_defer(req, sqe);
Jackie Liu4fe2c962019-09-09 20:50:40 +08005592 if (ret) {
5593 if (ret != -EIOCBQUEUED) {
Pavel Begunkov11185912020-01-22 23:09:35 +03005594fail_req:
Jens Axboe78e19bb2019-11-06 15:21:34 -07005595 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005596 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07005597 io_double_put_req(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08005598 }
Pavel Begunkov25508782019-12-30 21:24:47 +03005599 } else if (req->flags & REQ_F_FORCE_ASYNC) {
Pavel Begunkov11185912020-01-22 23:09:35 +03005600 ret = io_req_defer_prep(req, sqe);
5601 if (unlikely(ret < 0))
5602 goto fail_req;
Jens Axboece35a472019-12-17 08:04:44 -07005603 /*
5604 * Never try inline submit of IOSQE_ASYNC is set, go straight
5605 * to async execution.
5606 */
5607 req->work.flags |= IO_WQ_WORK_CONCURRENT;
5608 io_queue_async_work(req);
5609 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07005610 __io_queue_sqe(req, sqe);
Jens Axboece35a472019-12-17 08:04:44 -07005611 }
Jackie Liu4fe2c962019-09-09 20:50:40 +08005612}
5613
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005614static inline void io_queue_link_head(struct io_kiocb *req)
Jackie Liu4fe2c962019-09-09 20:50:40 +08005615{
Jens Axboe94ae5e72019-11-14 19:39:52 -07005616 if (unlikely(req->flags & REQ_F_FAIL_LINK)) {
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005617 io_cqring_add_event(req, -ECANCELED);
5618 io_double_put_req(req);
5619 } else
Jens Axboe3529d8c2019-12-19 18:24:38 -07005620 io_queue_sqe(req, NULL);
Jackie Liu4fe2c962019-09-09 20:50:40 +08005621}
5622
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005623#define SQE_VALID_FLAGS (IOSQE_FIXED_FILE|IOSQE_IO_DRAIN|IOSQE_IO_LINK| \
Jens Axboebcda7ba2020-02-23 16:42:51 -07005624 IOSQE_IO_HARDLINK | IOSQE_ASYNC | \
5625 IOSQE_BUFFER_SELECT)
Jens Axboe9e645e112019-05-10 16:07:28 -06005626
Jens Axboe3529d8c2019-12-19 18:24:38 -07005627static bool io_submit_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
5628 struct io_submit_state *state, struct io_kiocb **link)
Jens Axboe9e645e112019-05-10 16:07:28 -06005629{
Jackie Liua197f662019-11-08 08:09:12 -07005630 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005631 unsigned int sqe_flags;
Jens Axboe75c6a032020-01-28 10:15:23 -07005632 int ret, id;
Jens Axboe9e645e112019-05-10 16:07:28 -06005633
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005634 sqe_flags = READ_ONCE(sqe->flags);
Jens Axboe9e645e112019-05-10 16:07:28 -06005635
5636 /* enforce forwards compatibility on users */
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005637 if (unlikely(sqe_flags & ~SQE_VALID_FLAGS)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06005638 ret = -EINVAL;
Pavel Begunkov196be952019-11-07 01:41:06 +03005639 goto err_req;
Jens Axboe9e645e112019-05-10 16:07:28 -06005640 }
5641
Jens Axboebcda7ba2020-02-23 16:42:51 -07005642 if ((sqe_flags & IOSQE_BUFFER_SELECT) &&
5643 !io_op_defs[req->opcode].buffer_select) {
5644 ret = -EOPNOTSUPP;
5645 goto err_req;
5646 }
5647
Jens Axboe75c6a032020-01-28 10:15:23 -07005648 id = READ_ONCE(sqe->personality);
5649 if (id) {
Jens Axboe193155c2020-02-22 23:22:19 -07005650 req->work.creds = idr_find(&ctx->personality_idr, id);
5651 if (unlikely(!req->work.creds)) {
Jens Axboe75c6a032020-01-28 10:15:23 -07005652 ret = -EINVAL;
5653 goto err_req;
5654 }
Jens Axboe193155c2020-02-22 23:22:19 -07005655 get_cred(req->work.creds);
Jens Axboe75c6a032020-01-28 10:15:23 -07005656 }
5657
Pavel Begunkov6b47ee62020-01-18 20:22:41 +03005658 /* same numerical values with corresponding REQ_F_*, safe to copy */
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005659 req->flags |= sqe_flags & (IOSQE_IO_DRAIN | IOSQE_IO_HARDLINK |
Jens Axboebcda7ba2020-02-23 16:42:51 -07005660 IOSQE_ASYNC | IOSQE_FIXED_FILE |
5661 IOSQE_BUFFER_SELECT);
Jens Axboe9e645e112019-05-10 16:07:28 -06005662
Jens Axboe3529d8c2019-12-19 18:24:38 -07005663 ret = io_req_set_file(state, req, sqe);
Jens Axboe9e645e112019-05-10 16:07:28 -06005664 if (unlikely(ret)) {
5665err_req:
Jens Axboe78e19bb2019-11-06 15:21:34 -07005666 io_cqring_add_event(req, ret);
5667 io_double_put_req(req);
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03005668 return false;
Jens Axboe9e645e112019-05-10 16:07:28 -06005669 }
5670
Jens Axboe9e645e112019-05-10 16:07:28 -06005671 /*
5672 * If we already have a head request, queue this one for async
5673 * submittal once the head completes. If we don't have a head but
5674 * IOSQE_IO_LINK is set in the sqe, start a new head. This one will be
5675 * submitted sync once the chain is complete. If none of those
5676 * conditions are true (normal request), then just queue it.
5677 */
5678 if (*link) {
Pavel Begunkov9d763772019-12-17 02:22:07 +03005679 struct io_kiocb *head = *link;
Jens Axboe9e645e112019-05-10 16:07:28 -06005680
Pavel Begunkov8cdf2192020-01-25 00:40:24 +03005681 /*
5682 * Taking sequential execution of a link, draining both sides
5683 * of the link also fullfils IOSQE_IO_DRAIN semantics for all
5684 * requests in the link. So, it drains the head and the
5685 * next after the link request. The last one is done via
5686 * drain_next flag to persist the effect across calls.
5687 */
Pavel Begunkov711be032020-01-17 03:57:59 +03005688 if (sqe_flags & IOSQE_IO_DRAIN) {
5689 head->flags |= REQ_F_IO_DRAIN;
5690 ctx->drain_next = 1;
5691 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07005692 if (io_alloc_async_ctx(req)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06005693 ret = -EAGAIN;
5694 goto err_req;
5695 }
5696
Jens Axboe3529d8c2019-12-19 18:24:38 -07005697 ret = io_req_defer_prep(req, sqe);
Jens Axboe2d283902019-12-04 11:08:05 -07005698 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005699 /* fail even hard links since we don't submit */
Pavel Begunkov9d763772019-12-17 02:22:07 +03005700 head->flags |= REQ_F_FAIL_LINK;
Jens Axboef67676d2019-12-02 11:03:47 -07005701 goto err_req;
Jens Axboe2d283902019-12-04 11:08:05 -07005702 }
Pavel Begunkov9d763772019-12-17 02:22:07 +03005703 trace_io_uring_link(ctx, req, head);
5704 list_add_tail(&req->link_list, &head->link_list);
Jens Axboe9e645e112019-05-10 16:07:28 -06005705
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005706 /* last request of a link, enqueue the link */
5707 if (!(sqe_flags & (IOSQE_IO_LINK|IOSQE_IO_HARDLINK))) {
5708 io_queue_link_head(head);
5709 *link = NULL;
5710 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005711 } else {
Pavel Begunkov711be032020-01-17 03:57:59 +03005712 if (unlikely(ctx->drain_next)) {
5713 req->flags |= REQ_F_IO_DRAIN;
5714 req->ctx->drain_next = 0;
5715 }
5716 if (sqe_flags & (IOSQE_IO_LINK|IOSQE_IO_HARDLINK)) {
5717 req->flags |= REQ_F_LINK;
Pavel Begunkov711be032020-01-17 03:57:59 +03005718 INIT_LIST_HEAD(&req->link_list);
Pavel Begunkovf1d96a82020-03-13 22:29:14 +03005719
5720 if (io_alloc_async_ctx(req)) {
5721 ret = -EAGAIN;
5722 goto err_req;
5723 }
Pavel Begunkov711be032020-01-17 03:57:59 +03005724 ret = io_req_defer_prep(req, sqe);
5725 if (ret)
5726 req->flags |= REQ_F_FAIL_LINK;
5727 *link = req;
5728 } else {
5729 io_queue_sqe(req, sqe);
5730 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005731 }
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03005732
5733 return true;
Jens Axboe9e645e112019-05-10 16:07:28 -06005734}
5735
Jens Axboe9a56a232019-01-09 09:06:50 -07005736/*
5737 * Batched submission is done, ensure local IO is flushed out.
5738 */
5739static void io_submit_state_end(struct io_submit_state *state)
5740{
5741 blk_finish_plug(&state->plug);
Jens Axboe3d6770f2019-04-13 11:50:54 -06005742 io_file_put(state);
Jens Axboe2579f912019-01-09 09:10:43 -07005743 if (state->free_reqs)
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03005744 kmem_cache_free_bulk(req_cachep, state->free_reqs, state->reqs);
Jens Axboe9a56a232019-01-09 09:06:50 -07005745}
5746
5747/*
5748 * Start submission side cache.
5749 */
5750static void io_submit_state_start(struct io_submit_state *state,
Jackie Liu22efde52019-12-02 17:14:52 +08005751 unsigned int max_ios)
Jens Axboe9a56a232019-01-09 09:06:50 -07005752{
5753 blk_start_plug(&state->plug);
Jens Axboe2579f912019-01-09 09:10:43 -07005754 state->free_reqs = 0;
Jens Axboe9a56a232019-01-09 09:06:50 -07005755 state->file = NULL;
5756 state->ios_left = max_ios;
5757}
5758
Jens Axboe2b188cc2019-01-07 10:46:33 -07005759static void io_commit_sqring(struct io_ring_ctx *ctx)
5760{
Hristo Venev75b28af2019-08-26 17:23:46 +00005761 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005762
Pavel Begunkovcaf582c2019-12-30 21:24:46 +03005763 /*
5764 * Ensure any loads from the SQEs are done at this point,
5765 * since once we write the new head, the application could
5766 * write new data to them.
5767 */
5768 smp_store_release(&rings->sq.head, ctx->cached_sq_head);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005769}
5770
5771/*
Jens Axboe3529d8c2019-12-19 18:24:38 -07005772 * Fetch an sqe, if one is available. Note that sqe_ptr will point to memory
Jens Axboe2b188cc2019-01-07 10:46:33 -07005773 * that is mapped by userspace. This means that care needs to be taken to
5774 * ensure that reads are stable, as we cannot rely on userspace always
5775 * being a good citizen. If members of the sqe are validated and then later
5776 * used, it's important that those reads are done through READ_ONCE() to
5777 * prevent a re-load down the line.
5778 */
Pavel Begunkov709b3022020-04-08 08:58:43 +03005779static const struct io_uring_sqe *io_get_sqe(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005780{
Hristo Venev75b28af2019-08-26 17:23:46 +00005781 u32 *sq_array = ctx->sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005782 unsigned head;
5783
5784 /*
5785 * The cached sq head (or cq tail) serves two purposes:
5786 *
5787 * 1) allows us to batch the cost of updating the user visible
5788 * head updates.
5789 * 2) allows the kernel side to track the head on its own, even
5790 * though the application is the one updating it.
5791 */
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005792 head = READ_ONCE(sq_array[ctx->cached_sq_head & ctx->sq_mask]);
Pavel Begunkov709b3022020-04-08 08:58:43 +03005793 if (likely(head < ctx->sq_entries))
5794 return &ctx->sq_sqes[head];
Jens Axboe2b188cc2019-01-07 10:46:33 -07005795
5796 /* drop invalid entries */
Jens Axboe498ccd92019-10-25 10:04:25 -06005797 ctx->cached_sq_dropped++;
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005798 WRITE_ONCE(ctx->rings->sq_dropped, ctx->cached_sq_dropped);
Pavel Begunkov709b3022020-04-08 08:58:43 +03005799 return NULL;
5800}
5801
5802static inline void io_consume_sqe(struct io_ring_ctx *ctx)
5803{
5804 ctx->cached_sq_head++;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005805}
5806
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005807static int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr,
Pavel Begunkovae9428c2019-11-06 00:22:14 +03005808 struct file *ring_file, int ring_fd,
5809 struct mm_struct **mm, bool async)
Jens Axboe6c271ce2019-01-10 11:22:30 -07005810{
5811 struct io_submit_state state, *statep = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06005812 struct io_kiocb *link = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06005813 int i, submitted = 0;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005814 bool mm_fault = false;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005815
Jens Axboec4a2ed72019-11-21 21:01:26 -07005816 /* if we have a backlog and couldn't flush it all, return BUSY */
Jens Axboead3eb2c2019-12-18 17:12:20 -07005817 if (test_bit(0, &ctx->sq_check_overflow)) {
5818 if (!list_empty(&ctx->cq_overflow_list) &&
5819 !io_cqring_overflow_flush(ctx, false))
5820 return -EBUSY;
5821 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07005822
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005823 /* make sure SQ entry isn't read before tail */
5824 nr = min3(nr, ctx->sq_entries, io_sqring_entries(ctx));
Pavel Begunkov9ef4f122019-12-30 21:24:44 +03005825
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03005826 if (!percpu_ref_tryget_many(&ctx->refs, nr))
5827 return -EAGAIN;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005828
5829 if (nr > IO_PLUG_THRESHOLD) {
Jackie Liu22efde52019-12-02 17:14:52 +08005830 io_submit_state_start(&state, nr);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005831 statep = &state;
5832 }
5833
Pavel Begunkovb14cca02020-01-17 04:45:59 +03005834 ctx->ring_fd = ring_fd;
5835 ctx->ring_file = ring_file;
5836
Jens Axboe6c271ce2019-01-10 11:22:30 -07005837 for (i = 0; i < nr; i++) {
Jens Axboe3529d8c2019-12-19 18:24:38 -07005838 const struct io_uring_sqe *sqe;
Pavel Begunkov196be952019-11-07 01:41:06 +03005839 struct io_kiocb *req;
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005840 int err;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005841
Pavel Begunkovb1e50e52020-04-08 08:58:44 +03005842 sqe = io_get_sqe(ctx);
5843 if (unlikely(!sqe)) {
5844 io_consume_sqe(ctx);
5845 break;
5846 }
Pavel Begunkov196be952019-11-07 01:41:06 +03005847 req = io_get_req(ctx, statep);
5848 if (unlikely(!req)) {
5849 if (!submitted)
5850 submitted = -EAGAIN;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005851 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06005852 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005853
Pavel Begunkov709b3022020-04-08 08:58:43 +03005854 /*
5855 * All io need record the previous position, if LINK vs DARIN,
5856 * it can be used to mark the position of the first IO in the
5857 * link list.
5858 */
5859 req->sequence = ctx->cached_sq_head;
5860 req->opcode = READ_ONCE(sqe->opcode);
5861 req->user_data = READ_ONCE(sqe->user_data);
5862 io_consume_sqe(ctx);
5863
Jens Axboed3656342019-12-18 09:50:26 -07005864 /* will complete beyond this point, count as submitted */
5865 submitted++;
5866
5867 if (unlikely(req->opcode >= IORING_OP_LAST)) {
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005868 err = -EINVAL;
5869fail_req:
5870 io_cqring_add_event(req, err);
Jens Axboed3656342019-12-18 09:50:26 -07005871 io_double_put_req(req);
5872 break;
5873 }
5874
5875 if (io_op_defs[req->opcode].needs_mm && !*mm) {
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005876 mm_fault = mm_fault || !mmget_not_zero(ctx->sqo_mm);
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005877 if (unlikely(mm_fault)) {
5878 err = -EFAULT;
5879 goto fail_req;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005880 }
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005881 use_mm(ctx->sqo_mm);
5882 *mm = ctx->sqo_mm;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005883 }
5884
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03005885 req->needs_fixed_file = async;
Jens Axboe354420f2020-01-08 18:55:15 -07005886 trace_io_uring_submit_sqe(ctx, req->opcode, req->user_data,
5887 true, async);
Jens Axboe3529d8c2019-12-19 18:24:38 -07005888 if (!io_submit_sqe(req, sqe, statep, &link))
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03005889 break;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005890 }
5891
Pavel Begunkov9466f432020-01-25 22:34:01 +03005892 if (unlikely(submitted != nr)) {
5893 int ref_used = (submitted == -EAGAIN) ? 0 : submitted;
5894
5895 percpu_ref_put_many(&ctx->refs, nr - ref_used);
5896 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005897 if (link)
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005898 io_queue_link_head(link);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005899 if (statep)
5900 io_submit_state_end(&state);
5901
Pavel Begunkovae9428c2019-11-06 00:22:14 +03005902 /* Commit SQ ring head once we've consumed and submitted all SQEs */
5903 io_commit_sqring(ctx);
5904
Jens Axboe6c271ce2019-01-10 11:22:30 -07005905 return submitted;
5906}
5907
5908static int io_sq_thread(void *data)
5909{
Jens Axboe6c271ce2019-01-10 11:22:30 -07005910 struct io_ring_ctx *ctx = data;
5911 struct mm_struct *cur_mm = NULL;
Jens Axboe181e4482019-11-25 08:52:30 -07005912 const struct cred *old_cred;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005913 mm_segment_t old_fs;
5914 DEFINE_WAIT(wait);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005915 unsigned long timeout;
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005916 int ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005917
Jens Axboe206aefd2019-11-07 18:27:42 -07005918 complete(&ctx->completions[1]);
Jackie Liua4c0b3d2019-07-08 13:41:12 +08005919
Jens Axboe6c271ce2019-01-10 11:22:30 -07005920 old_fs = get_fs();
5921 set_fs(USER_DS);
Jens Axboe181e4482019-11-25 08:52:30 -07005922 old_cred = override_creds(ctx->creds);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005923
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005924 timeout = jiffies + ctx->sq_thread_idle;
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02005925 while (!kthread_should_park()) {
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005926 unsigned int to_submit;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005927
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005928 if (!list_empty(&ctx->poll_list)) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07005929 unsigned nr_events = 0;
5930
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005931 mutex_lock(&ctx->uring_lock);
5932 if (!list_empty(&ctx->poll_list))
5933 io_iopoll_getevents(ctx, &nr_events, 0);
5934 else
Jens Axboe6c271ce2019-01-10 11:22:30 -07005935 timeout = jiffies + ctx->sq_thread_idle;
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005936 mutex_unlock(&ctx->uring_lock);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005937 }
5938
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005939 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07005940
5941 /*
5942 * If submit got -EBUSY, flag us as needing the application
5943 * to enter the kernel to reap and flush events.
5944 */
5945 if (!to_submit || ret == -EBUSY) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07005946 /*
Stefano Garzarella7143b5a2020-02-21 16:42:16 +01005947 * Drop cur_mm before scheduling, we can't hold it for
5948 * long periods (or over schedule()). Do this before
5949 * adding ourselves to the waitqueue, as the unuse/drop
5950 * may sleep.
5951 */
5952 if (cur_mm) {
5953 unuse_mm(cur_mm);
5954 mmput(cur_mm);
5955 cur_mm = NULL;
5956 }
5957
5958 /*
Jens Axboe6c271ce2019-01-10 11:22:30 -07005959 * We're polling. If we're within the defined idle
5960 * period, then let us spin without work before going
Jens Axboec1edbf52019-11-10 16:56:04 -07005961 * to sleep. The exception is if we got EBUSY doing
5962 * more IO, we should wait for the application to
5963 * reap events and wake us up.
Jens Axboe6c271ce2019-01-10 11:22:30 -07005964 */
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005965 if (!list_empty(&ctx->poll_list) ||
Jens Axboedf069d82020-02-04 16:48:34 -07005966 (!time_after(jiffies, timeout) && ret != -EBUSY &&
5967 !percpu_ref_is_dying(&ctx->refs))) {
Jens Axboeb41e9852020-02-17 09:52:41 -07005968 if (current->task_works)
5969 task_work_run();
Jens Axboe9831a902019-09-19 09:48:55 -06005970 cond_resched();
Jens Axboe6c271ce2019-01-10 11:22:30 -07005971 continue;
5972 }
5973
Jens Axboe6c271ce2019-01-10 11:22:30 -07005974 prepare_to_wait(&ctx->sqo_wait, &wait,
5975 TASK_INTERRUPTIBLE);
5976
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005977 /*
5978 * While doing polled IO, before going to sleep, we need
5979 * to check if there are new reqs added to poll_list, it
5980 * is because reqs may have been punted to io worker and
5981 * will be added to poll_list later, hence check the
5982 * poll_list again.
5983 */
5984 if ((ctx->flags & IORING_SETUP_IOPOLL) &&
5985 !list_empty_careful(&ctx->poll_list)) {
5986 finish_wait(&ctx->sqo_wait, &wait);
5987 continue;
5988 }
5989
Jens Axboe6c271ce2019-01-10 11:22:30 -07005990 /* Tell userspace we may need a wakeup call */
Hristo Venev75b28af2019-08-26 17:23:46 +00005991 ctx->rings->sq_flags |= IORING_SQ_NEED_WAKEUP;
Stefan Bühler0d7bae62019-04-19 11:57:45 +02005992 /* make sure to read SQ tail after writing flags */
5993 smp_mb();
Jens Axboe6c271ce2019-01-10 11:22:30 -07005994
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005995 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07005996 if (!to_submit || ret == -EBUSY) {
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02005997 if (kthread_should_park()) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07005998 finish_wait(&ctx->sqo_wait, &wait);
5999 break;
6000 }
Jens Axboeb41e9852020-02-17 09:52:41 -07006001 if (current->task_works) {
6002 task_work_run();
Hillf Danton10bea962020-04-01 17:19:33 +08006003 finish_wait(&ctx->sqo_wait, &wait);
Jens Axboeb41e9852020-02-17 09:52:41 -07006004 continue;
6005 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07006006 if (signal_pending(current))
6007 flush_signals(current);
6008 schedule();
6009 finish_wait(&ctx->sqo_wait, &wait);
6010
Hristo Venev75b28af2019-08-26 17:23:46 +00006011 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006012 continue;
6013 }
6014 finish_wait(&ctx->sqo_wait, &wait);
6015
Hristo Venev75b28af2019-08-26 17:23:46 +00006016 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006017 }
6018
Jens Axboe8a4955f2019-12-09 14:52:35 -07006019 mutex_lock(&ctx->uring_lock);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006020 ret = io_submit_sqes(ctx, to_submit, NULL, -1, &cur_mm, true);
Jens Axboe8a4955f2019-12-09 14:52:35 -07006021 mutex_unlock(&ctx->uring_lock);
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006022 timeout = jiffies + ctx->sq_thread_idle;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006023 }
6024
Jens Axboeb41e9852020-02-17 09:52:41 -07006025 if (current->task_works)
6026 task_work_run();
6027
Jens Axboe6c271ce2019-01-10 11:22:30 -07006028 set_fs(old_fs);
6029 if (cur_mm) {
6030 unuse_mm(cur_mm);
6031 mmput(cur_mm);
6032 }
Jens Axboe181e4482019-11-25 08:52:30 -07006033 revert_creds(old_cred);
Jens Axboe06058632019-04-13 09:26:03 -06006034
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02006035 kthread_parkme();
Jens Axboe06058632019-04-13 09:26:03 -06006036
Jens Axboe6c271ce2019-01-10 11:22:30 -07006037 return 0;
6038}
6039
Jens Axboebda52162019-09-24 13:47:15 -06006040struct io_wait_queue {
6041 struct wait_queue_entry wq;
6042 struct io_ring_ctx *ctx;
6043 unsigned to_wait;
6044 unsigned nr_timeouts;
6045};
6046
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006047static inline bool io_should_wake(struct io_wait_queue *iowq, bool noflush)
Jens Axboebda52162019-09-24 13:47:15 -06006048{
6049 struct io_ring_ctx *ctx = iowq->ctx;
6050
6051 /*
Brian Gianforcarod195a662019-12-13 03:09:50 -08006052 * Wake up if we have enough events, or if a timeout occurred since we
Jens Axboebda52162019-09-24 13:47:15 -06006053 * started waiting. For timeouts, we always want to return to userspace,
6054 * regardless of event count.
6055 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006056 return io_cqring_events(ctx, noflush) >= iowq->to_wait ||
Jens Axboebda52162019-09-24 13:47:15 -06006057 atomic_read(&ctx->cq_timeouts) != iowq->nr_timeouts;
6058}
6059
6060static int io_wake_function(struct wait_queue_entry *curr, unsigned int mode,
6061 int wake_flags, void *key)
6062{
6063 struct io_wait_queue *iowq = container_of(curr, struct io_wait_queue,
6064 wq);
6065
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006066 /* use noflush == true, as we can't safely rely on locking context */
6067 if (!io_should_wake(iowq, true))
Jens Axboebda52162019-09-24 13:47:15 -06006068 return -1;
6069
6070 return autoremove_wake_function(curr, mode, wake_flags, key);
6071}
6072
Jens Axboe2b188cc2019-01-07 10:46:33 -07006073/*
6074 * Wait until events become available, if we don't already have some. The
6075 * application must reap them itself, as they reside on the shared cq ring.
6076 */
6077static int io_cqring_wait(struct io_ring_ctx *ctx, int min_events,
6078 const sigset_t __user *sig, size_t sigsz)
6079{
Jens Axboebda52162019-09-24 13:47:15 -06006080 struct io_wait_queue iowq = {
6081 .wq = {
6082 .private = current,
6083 .func = io_wake_function,
6084 .entry = LIST_HEAD_INIT(iowq.wq.entry),
6085 },
6086 .ctx = ctx,
6087 .to_wait = min_events,
6088 };
Hristo Venev75b28af2019-08-26 17:23:46 +00006089 struct io_rings *rings = ctx->rings;
Jackie Liue9ffa5c2019-10-29 11:16:42 +08006090 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006091
Jens Axboeb41e9852020-02-17 09:52:41 -07006092 do {
6093 if (io_cqring_events(ctx, false) >= min_events)
6094 return 0;
6095 if (!current->task_works)
6096 break;
6097 task_work_run();
6098 } while (1);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006099
6100 if (sig) {
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006101#ifdef CONFIG_COMPAT
6102 if (in_compat_syscall())
6103 ret = set_compat_user_sigmask((const compat_sigset_t __user *)sig,
Oleg Nesterovb7724342019-07-16 16:29:53 -07006104 sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006105 else
6106#endif
Oleg Nesterovb7724342019-07-16 16:29:53 -07006107 ret = set_user_sigmask(sig, sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006108
Jens Axboe2b188cc2019-01-07 10:46:33 -07006109 if (ret)
6110 return ret;
6111 }
6112
Jens Axboebda52162019-09-24 13:47:15 -06006113 iowq.nr_timeouts = atomic_read(&ctx->cq_timeouts);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02006114 trace_io_uring_cqring_wait(ctx, min_events);
Jens Axboebda52162019-09-24 13:47:15 -06006115 do {
6116 prepare_to_wait_exclusive(&ctx->wait, &iowq.wq,
6117 TASK_INTERRUPTIBLE);
Jens Axboeb41e9852020-02-17 09:52:41 -07006118 if (current->task_works)
6119 task_work_run();
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006120 if (io_should_wake(&iowq, false))
Jens Axboebda52162019-09-24 13:47:15 -06006121 break;
6122 schedule();
6123 if (signal_pending(current)) {
Jackie Liue9ffa5c2019-10-29 11:16:42 +08006124 ret = -EINTR;
Jens Axboebda52162019-09-24 13:47:15 -06006125 break;
6126 }
6127 } while (1);
6128 finish_wait(&ctx->wait, &iowq.wq);
6129
Jackie Liue9ffa5c2019-10-29 11:16:42 +08006130 restore_saved_sigmask_unless(ret == -EINTR);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006131
Hristo Venev75b28af2019-08-26 17:23:46 +00006132 return READ_ONCE(rings->cq.head) == READ_ONCE(rings->cq.tail) ? ret : 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006133}
6134
Jens Axboe6b063142019-01-10 22:13:58 -07006135static void __io_sqe_files_unregister(struct io_ring_ctx *ctx)
6136{
6137#if defined(CONFIG_UNIX)
6138 if (ctx->ring_sock) {
6139 struct sock *sock = ctx->ring_sock->sk;
6140 struct sk_buff *skb;
6141
6142 while ((skb = skb_dequeue(&sock->sk_receive_queue)) != NULL)
6143 kfree_skb(skb);
6144 }
6145#else
6146 int i;
6147
Jens Axboe65e19f52019-10-26 07:20:21 -06006148 for (i = 0; i < ctx->nr_user_files; i++) {
6149 struct file *file;
6150
6151 file = io_file_from_index(ctx, i);
6152 if (file)
6153 fput(file);
6154 }
Jens Axboe6b063142019-01-10 22:13:58 -07006155#endif
6156}
6157
Jens Axboe05f3fb32019-12-09 11:22:50 -07006158static void io_file_ref_kill(struct percpu_ref *ref)
6159{
6160 struct fixed_file_data *data;
6161
6162 data = container_of(ref, struct fixed_file_data, refs);
6163 complete(&data->done);
6164}
6165
Jens Axboe6b063142019-01-10 22:13:58 -07006166static int io_sqe_files_unregister(struct io_ring_ctx *ctx)
6167{
Jens Axboe05f3fb32019-12-09 11:22:50 -07006168 struct fixed_file_data *data = ctx->file_data;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006169 struct fixed_file_ref_node *ref_node = NULL;
Jens Axboe65e19f52019-10-26 07:20:21 -06006170 unsigned nr_tables, i;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006171 unsigned long flags;
Jens Axboe65e19f52019-10-26 07:20:21 -06006172
Jens Axboe05f3fb32019-12-09 11:22:50 -07006173 if (!data)
Jens Axboe6b063142019-01-10 22:13:58 -07006174 return -ENXIO;
6175
Xiaoguang Wang05589552020-03-31 14:05:18 +08006176 spin_lock_irqsave(&data->lock, flags);
6177 if (!list_empty(&data->ref_list))
6178 ref_node = list_first_entry(&data->ref_list,
6179 struct fixed_file_ref_node, node);
6180 spin_unlock_irqrestore(&data->lock, flags);
6181 if (ref_node)
6182 percpu_ref_kill(&ref_node->refs);
6183
6184 percpu_ref_kill(&data->refs);
6185
6186 /* wait for all refs nodes to complete */
Jens Axboe2faf8522020-02-04 19:54:55 -07006187 wait_for_completion(&data->done);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006188
Jens Axboe6b063142019-01-10 22:13:58 -07006189 __io_sqe_files_unregister(ctx);
Jens Axboe65e19f52019-10-26 07:20:21 -06006190 nr_tables = DIV_ROUND_UP(ctx->nr_user_files, IORING_MAX_FILES_TABLE);
6191 for (i = 0; i < nr_tables; i++)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006192 kfree(data->table[i].files);
6193 kfree(data->table);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006194 percpu_ref_exit(&data->refs);
6195 kfree(data);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006196 ctx->file_data = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07006197 ctx->nr_user_files = 0;
6198 return 0;
6199}
6200
Jens Axboe6c271ce2019-01-10 11:22:30 -07006201static void io_sq_thread_stop(struct io_ring_ctx *ctx)
6202{
6203 if (ctx->sqo_thread) {
Jens Axboe206aefd2019-11-07 18:27:42 -07006204 wait_for_completion(&ctx->completions[1]);
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02006205 /*
6206 * The park is a bit of a work-around, without it we get
6207 * warning spews on shutdown with SQPOLL set and affinity
6208 * set to a single CPU.
6209 */
Jens Axboe06058632019-04-13 09:26:03 -06006210 kthread_park(ctx->sqo_thread);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006211 kthread_stop(ctx->sqo_thread);
6212 ctx->sqo_thread = NULL;
6213 }
6214}
6215
Jens Axboe6b063142019-01-10 22:13:58 -07006216static void io_finish_async(struct io_ring_ctx *ctx)
6217{
Jens Axboe6c271ce2019-01-10 11:22:30 -07006218 io_sq_thread_stop(ctx);
6219
Jens Axboe561fb042019-10-24 07:25:42 -06006220 if (ctx->io_wq) {
6221 io_wq_destroy(ctx->io_wq);
6222 ctx->io_wq = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07006223 }
6224}
6225
6226#if defined(CONFIG_UNIX)
Jens Axboe6b063142019-01-10 22:13:58 -07006227/*
6228 * Ensure the UNIX gc is aware of our file set, so we are certain that
6229 * the io_uring can be safely unregistered on process exit, even if we have
6230 * loops in the file referencing.
6231 */
6232static int __io_sqe_files_scm(struct io_ring_ctx *ctx, int nr, int offset)
6233{
6234 struct sock *sk = ctx->ring_sock->sk;
6235 struct scm_fp_list *fpl;
6236 struct sk_buff *skb;
Jens Axboe08a45172019-10-03 08:11:03 -06006237 int i, nr_files;
Jens Axboe6b063142019-01-10 22:13:58 -07006238
Jens Axboe6b063142019-01-10 22:13:58 -07006239 fpl = kzalloc(sizeof(*fpl), GFP_KERNEL);
6240 if (!fpl)
6241 return -ENOMEM;
6242
6243 skb = alloc_skb(0, GFP_KERNEL);
6244 if (!skb) {
6245 kfree(fpl);
6246 return -ENOMEM;
6247 }
6248
6249 skb->sk = sk;
Jens Axboe6b063142019-01-10 22:13:58 -07006250
Jens Axboe08a45172019-10-03 08:11:03 -06006251 nr_files = 0;
Jens Axboe6b063142019-01-10 22:13:58 -07006252 fpl->user = get_uid(ctx->user);
6253 for (i = 0; i < nr; i++) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006254 struct file *file = io_file_from_index(ctx, i + offset);
6255
6256 if (!file)
Jens Axboe08a45172019-10-03 08:11:03 -06006257 continue;
Jens Axboe65e19f52019-10-26 07:20:21 -06006258 fpl->fp[nr_files] = get_file(file);
Jens Axboe08a45172019-10-03 08:11:03 -06006259 unix_inflight(fpl->user, fpl->fp[nr_files]);
6260 nr_files++;
Jens Axboe6b063142019-01-10 22:13:58 -07006261 }
6262
Jens Axboe08a45172019-10-03 08:11:03 -06006263 if (nr_files) {
6264 fpl->max = SCM_MAX_FD;
6265 fpl->count = nr_files;
6266 UNIXCB(skb).fp = fpl;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006267 skb->destructor = unix_destruct_scm;
Jens Axboe08a45172019-10-03 08:11:03 -06006268 refcount_add(skb->truesize, &sk->sk_wmem_alloc);
6269 skb_queue_head(&sk->sk_receive_queue, skb);
Jens Axboe6b063142019-01-10 22:13:58 -07006270
Jens Axboe08a45172019-10-03 08:11:03 -06006271 for (i = 0; i < nr_files; i++)
6272 fput(fpl->fp[i]);
6273 } else {
6274 kfree_skb(skb);
6275 kfree(fpl);
6276 }
Jens Axboe6b063142019-01-10 22:13:58 -07006277
6278 return 0;
6279}
6280
6281/*
6282 * If UNIX sockets are enabled, fd passing can cause a reference cycle which
6283 * causes regular reference counting to break down. We rely on the UNIX
6284 * garbage collection to take care of this problem for us.
6285 */
6286static int io_sqe_files_scm(struct io_ring_ctx *ctx)
6287{
6288 unsigned left, total;
6289 int ret = 0;
6290
6291 total = 0;
6292 left = ctx->nr_user_files;
6293 while (left) {
6294 unsigned this_files = min_t(unsigned, left, SCM_MAX_FD);
Jens Axboe6b063142019-01-10 22:13:58 -07006295
6296 ret = __io_sqe_files_scm(ctx, this_files, total);
6297 if (ret)
6298 break;
6299 left -= this_files;
6300 total += this_files;
6301 }
6302
6303 if (!ret)
6304 return 0;
6305
6306 while (total < ctx->nr_user_files) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006307 struct file *file = io_file_from_index(ctx, total);
6308
6309 if (file)
6310 fput(file);
Jens Axboe6b063142019-01-10 22:13:58 -07006311 total++;
6312 }
6313
6314 return ret;
6315}
6316#else
6317static int io_sqe_files_scm(struct io_ring_ctx *ctx)
6318{
6319 return 0;
6320}
6321#endif
6322
Jens Axboe65e19f52019-10-26 07:20:21 -06006323static int io_sqe_alloc_file_tables(struct io_ring_ctx *ctx, unsigned nr_tables,
6324 unsigned nr_files)
6325{
6326 int i;
6327
6328 for (i = 0; i < nr_tables; i++) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006329 struct fixed_file_table *table = &ctx->file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06006330 unsigned this_files;
6331
6332 this_files = min(nr_files, IORING_MAX_FILES_TABLE);
6333 table->files = kcalloc(this_files, sizeof(struct file *),
6334 GFP_KERNEL);
6335 if (!table->files)
6336 break;
6337 nr_files -= this_files;
6338 }
6339
6340 if (i == nr_tables)
6341 return 0;
6342
6343 for (i = 0; i < nr_tables; i++) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006344 struct fixed_file_table *table = &ctx->file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06006345 kfree(table->files);
6346 }
6347 return 1;
6348}
6349
Jens Axboe05f3fb32019-12-09 11:22:50 -07006350static void io_ring_file_put(struct io_ring_ctx *ctx, struct file *file)
Jens Axboec3a31e62019-10-03 13:59:56 -06006351{
6352#if defined(CONFIG_UNIX)
Jens Axboec3a31e62019-10-03 13:59:56 -06006353 struct sock *sock = ctx->ring_sock->sk;
6354 struct sk_buff_head list, *head = &sock->sk_receive_queue;
6355 struct sk_buff *skb;
6356 int i;
6357
6358 __skb_queue_head_init(&list);
6359
6360 /*
6361 * Find the skb that holds this file in its SCM_RIGHTS. When found,
6362 * remove this entry and rearrange the file array.
6363 */
6364 skb = skb_dequeue(head);
6365 while (skb) {
6366 struct scm_fp_list *fp;
6367
6368 fp = UNIXCB(skb).fp;
6369 for (i = 0; i < fp->count; i++) {
6370 int left;
6371
6372 if (fp->fp[i] != file)
6373 continue;
6374
6375 unix_notinflight(fp->user, fp->fp[i]);
6376 left = fp->count - 1 - i;
6377 if (left) {
6378 memmove(&fp->fp[i], &fp->fp[i + 1],
6379 left * sizeof(struct file *));
6380 }
6381 fp->count--;
6382 if (!fp->count) {
6383 kfree_skb(skb);
6384 skb = NULL;
6385 } else {
6386 __skb_queue_tail(&list, skb);
6387 }
6388 fput(file);
6389 file = NULL;
6390 break;
6391 }
6392
6393 if (!file)
6394 break;
6395
6396 __skb_queue_tail(&list, skb);
6397
6398 skb = skb_dequeue(head);
6399 }
6400
6401 if (skb_peek(&list)) {
6402 spin_lock_irq(&head->lock);
6403 while ((skb = __skb_dequeue(&list)) != NULL)
6404 __skb_queue_tail(head, skb);
6405 spin_unlock_irq(&head->lock);
6406 }
6407#else
Jens Axboe05f3fb32019-12-09 11:22:50 -07006408 fput(file);
Jens Axboec3a31e62019-10-03 13:59:56 -06006409#endif
6410}
6411
Jens Axboe05f3fb32019-12-09 11:22:50 -07006412struct io_file_put {
Xiaoguang Wang05589552020-03-31 14:05:18 +08006413 struct list_head list;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006414 struct file *file;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006415};
6416
Xiaoguang Wang05589552020-03-31 14:05:18 +08006417static void io_file_put_work(struct work_struct *work)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006418{
Xiaoguang Wang05589552020-03-31 14:05:18 +08006419 struct fixed_file_ref_node *ref_node;
6420 struct fixed_file_data *file_data;
6421 struct io_ring_ctx *ctx;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006422 struct io_file_put *pfile, *tmp;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006423 unsigned long flags;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006424
Xiaoguang Wang05589552020-03-31 14:05:18 +08006425 ref_node = container_of(work, struct fixed_file_ref_node, work);
6426 file_data = ref_node->file_data;
6427 ctx = file_data->ctx;
6428
6429 list_for_each_entry_safe(pfile, tmp, &ref_node->file_list, list) {
6430 list_del_init(&pfile->list);
6431 io_ring_file_put(ctx, pfile->file);
6432 kfree(pfile);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006433 }
6434
Xiaoguang Wang05589552020-03-31 14:05:18 +08006435 spin_lock_irqsave(&file_data->lock, flags);
6436 list_del_init(&ref_node->node);
6437 spin_unlock_irqrestore(&file_data->lock, flags);
Jens Axboe2faf8522020-02-04 19:54:55 -07006438
Xiaoguang Wang05589552020-03-31 14:05:18 +08006439 percpu_ref_exit(&ref_node->refs);
6440 kfree(ref_node);
6441 percpu_ref_put(&file_data->refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006442}
6443
6444static void io_file_data_ref_zero(struct percpu_ref *ref)
6445{
Xiaoguang Wang05589552020-03-31 14:05:18 +08006446 struct fixed_file_ref_node *ref_node;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006447
Xiaoguang Wang05589552020-03-31 14:05:18 +08006448 ref_node = container_of(ref, struct fixed_file_ref_node, refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006449
Xiaoguang Wang05589552020-03-31 14:05:18 +08006450 queue_work(system_wq, &ref_node->work);
6451}
6452
6453static struct fixed_file_ref_node *alloc_fixed_file_ref_node(
6454 struct io_ring_ctx *ctx)
6455{
6456 struct fixed_file_ref_node *ref_node;
6457
6458 ref_node = kzalloc(sizeof(*ref_node), GFP_KERNEL);
6459 if (!ref_node)
6460 return ERR_PTR(-ENOMEM);
6461
6462 if (percpu_ref_init(&ref_node->refs, io_file_data_ref_zero,
6463 0, GFP_KERNEL)) {
6464 kfree(ref_node);
6465 return ERR_PTR(-ENOMEM);
6466 }
6467 INIT_LIST_HEAD(&ref_node->node);
6468 INIT_LIST_HEAD(&ref_node->file_list);
6469 INIT_WORK(&ref_node->work, io_file_put_work);
6470 ref_node->file_data = ctx->file_data;
6471 return ref_node;
6472
6473}
6474
6475static void destroy_fixed_file_ref_node(struct fixed_file_ref_node *ref_node)
6476{
6477 percpu_ref_exit(&ref_node->refs);
6478 kfree(ref_node);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006479}
6480
6481static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
6482 unsigned nr_args)
6483{
6484 __s32 __user *fds = (__s32 __user *) arg;
6485 unsigned nr_tables;
6486 struct file *file;
6487 int fd, ret = 0;
6488 unsigned i;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006489 struct fixed_file_ref_node *ref_node;
6490 unsigned long flags;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006491
6492 if (ctx->file_data)
6493 return -EBUSY;
6494 if (!nr_args)
6495 return -EINVAL;
6496 if (nr_args > IORING_MAX_FIXED_FILES)
6497 return -EMFILE;
6498
6499 ctx->file_data = kzalloc(sizeof(*ctx->file_data), GFP_KERNEL);
6500 if (!ctx->file_data)
6501 return -ENOMEM;
6502 ctx->file_data->ctx = ctx;
6503 init_completion(&ctx->file_data->done);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006504 INIT_LIST_HEAD(&ctx->file_data->ref_list);
Xiaoguang Wangf7fe9342020-04-07 20:02:31 +08006505 spin_lock_init(&ctx->file_data->lock);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006506
6507 nr_tables = DIV_ROUND_UP(nr_args, IORING_MAX_FILES_TABLE);
6508 ctx->file_data->table = kcalloc(nr_tables,
6509 sizeof(struct fixed_file_table),
6510 GFP_KERNEL);
6511 if (!ctx->file_data->table) {
6512 kfree(ctx->file_data);
6513 ctx->file_data = NULL;
6514 return -ENOMEM;
6515 }
6516
Xiaoguang Wang05589552020-03-31 14:05:18 +08006517 if (percpu_ref_init(&ctx->file_data->refs, io_file_ref_kill,
Jens Axboe05f3fb32019-12-09 11:22:50 -07006518 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL)) {
6519 kfree(ctx->file_data->table);
6520 kfree(ctx->file_data);
6521 ctx->file_data = NULL;
6522 return -ENOMEM;
6523 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07006524
6525 if (io_sqe_alloc_file_tables(ctx, nr_tables, nr_args)) {
6526 percpu_ref_exit(&ctx->file_data->refs);
6527 kfree(ctx->file_data->table);
6528 kfree(ctx->file_data);
6529 ctx->file_data = NULL;
6530 return -ENOMEM;
6531 }
6532
6533 for (i = 0; i < nr_args; i++, ctx->nr_user_files++) {
6534 struct fixed_file_table *table;
6535 unsigned index;
6536
6537 ret = -EFAULT;
6538 if (copy_from_user(&fd, &fds[i], sizeof(fd)))
6539 break;
6540 /* allow sparse sets */
6541 if (fd == -1) {
6542 ret = 0;
6543 continue;
6544 }
6545
6546 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
6547 index = i & IORING_FILE_TABLE_MASK;
6548 file = fget(fd);
6549
6550 ret = -EBADF;
6551 if (!file)
6552 break;
6553
6554 /*
6555 * Don't allow io_uring instances to be registered. If UNIX
6556 * isn't enabled, then this causes a reference cycle and this
6557 * instance can never get freed. If UNIX is enabled we'll
6558 * handle it just fine, but there's still no point in allowing
6559 * a ring fd as it doesn't support regular read/write anyway.
6560 */
6561 if (file->f_op == &io_uring_fops) {
6562 fput(file);
6563 break;
6564 }
6565 ret = 0;
6566 table->files[index] = file;
6567 }
6568
6569 if (ret) {
6570 for (i = 0; i < ctx->nr_user_files; i++) {
6571 file = io_file_from_index(ctx, i);
6572 if (file)
6573 fput(file);
6574 }
6575 for (i = 0; i < nr_tables; i++)
6576 kfree(ctx->file_data->table[i].files);
6577
6578 kfree(ctx->file_data->table);
6579 kfree(ctx->file_data);
6580 ctx->file_data = NULL;
6581 ctx->nr_user_files = 0;
6582 return ret;
6583 }
6584
6585 ret = io_sqe_files_scm(ctx);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006586 if (ret) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006587 io_sqe_files_unregister(ctx);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006588 return ret;
6589 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07006590
Xiaoguang Wang05589552020-03-31 14:05:18 +08006591 ref_node = alloc_fixed_file_ref_node(ctx);
6592 if (IS_ERR(ref_node)) {
6593 io_sqe_files_unregister(ctx);
6594 return PTR_ERR(ref_node);
6595 }
6596
6597 ctx->file_data->cur_refs = &ref_node->refs;
6598 spin_lock_irqsave(&ctx->file_data->lock, flags);
6599 list_add(&ref_node->node, &ctx->file_data->ref_list);
6600 spin_unlock_irqrestore(&ctx->file_data->lock, flags);
6601 percpu_ref_get(&ctx->file_data->refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006602 return ret;
6603}
6604
Jens Axboec3a31e62019-10-03 13:59:56 -06006605static int io_sqe_file_register(struct io_ring_ctx *ctx, struct file *file,
6606 int index)
6607{
6608#if defined(CONFIG_UNIX)
6609 struct sock *sock = ctx->ring_sock->sk;
6610 struct sk_buff_head *head = &sock->sk_receive_queue;
6611 struct sk_buff *skb;
6612
6613 /*
6614 * See if we can merge this file into an existing skb SCM_RIGHTS
6615 * file set. If there's no room, fall back to allocating a new skb
6616 * and filling it in.
6617 */
6618 spin_lock_irq(&head->lock);
6619 skb = skb_peek(head);
6620 if (skb) {
6621 struct scm_fp_list *fpl = UNIXCB(skb).fp;
6622
6623 if (fpl->count < SCM_MAX_FD) {
6624 __skb_unlink(skb, head);
6625 spin_unlock_irq(&head->lock);
6626 fpl->fp[fpl->count] = get_file(file);
6627 unix_inflight(fpl->user, fpl->fp[fpl->count]);
6628 fpl->count++;
6629 spin_lock_irq(&head->lock);
6630 __skb_queue_head(head, skb);
6631 } else {
6632 skb = NULL;
6633 }
6634 }
6635 spin_unlock_irq(&head->lock);
6636
6637 if (skb) {
6638 fput(file);
6639 return 0;
6640 }
6641
6642 return __io_sqe_files_scm(ctx, 1, index);
6643#else
6644 return 0;
6645#endif
6646}
6647
Hillf Dantona5318d32020-03-23 17:47:15 +08006648static int io_queue_file_removal(struct fixed_file_data *data,
Xiaoguang Wang05589552020-03-31 14:05:18 +08006649 struct file *file)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006650{
Hillf Dantona5318d32020-03-23 17:47:15 +08006651 struct io_file_put *pfile;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006652 struct percpu_ref *refs = data->cur_refs;
6653 struct fixed_file_ref_node *ref_node;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006654
Jens Axboe05f3fb32019-12-09 11:22:50 -07006655 pfile = kzalloc(sizeof(*pfile), GFP_KERNEL);
Hillf Dantona5318d32020-03-23 17:47:15 +08006656 if (!pfile)
6657 return -ENOMEM;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006658
Xiaoguang Wang05589552020-03-31 14:05:18 +08006659 ref_node = container_of(refs, struct fixed_file_ref_node, refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006660 pfile->file = file;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006661 list_add(&pfile->list, &ref_node->file_list);
6662
Hillf Dantona5318d32020-03-23 17:47:15 +08006663 return 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006664}
6665
6666static int __io_sqe_files_update(struct io_ring_ctx *ctx,
6667 struct io_uring_files_update *up,
6668 unsigned nr_args)
6669{
6670 struct fixed_file_data *data = ctx->file_data;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006671 struct fixed_file_ref_node *ref_node;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006672 struct file *file;
Jens Axboec3a31e62019-10-03 13:59:56 -06006673 __s32 __user *fds;
6674 int fd, i, err;
6675 __u32 done;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006676 unsigned long flags;
6677 bool needs_switch = false;
Jens Axboec3a31e62019-10-03 13:59:56 -06006678
Jens Axboe05f3fb32019-12-09 11:22:50 -07006679 if (check_add_overflow(up->offset, nr_args, &done))
Jens Axboec3a31e62019-10-03 13:59:56 -06006680 return -EOVERFLOW;
6681 if (done > ctx->nr_user_files)
6682 return -EINVAL;
6683
Xiaoguang Wang05589552020-03-31 14:05:18 +08006684 ref_node = alloc_fixed_file_ref_node(ctx);
6685 if (IS_ERR(ref_node))
6686 return PTR_ERR(ref_node);
6687
Jens Axboec3a31e62019-10-03 13:59:56 -06006688 done = 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006689 fds = u64_to_user_ptr(up->fds);
Jens Axboec3a31e62019-10-03 13:59:56 -06006690 while (nr_args) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006691 struct fixed_file_table *table;
6692 unsigned index;
6693
Jens Axboec3a31e62019-10-03 13:59:56 -06006694 err = 0;
6695 if (copy_from_user(&fd, &fds[done], sizeof(fd))) {
6696 err = -EFAULT;
6697 break;
6698 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07006699 i = array_index_nospec(up->offset, ctx->nr_user_files);
6700 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
Jens Axboe65e19f52019-10-26 07:20:21 -06006701 index = i & IORING_FILE_TABLE_MASK;
6702 if (table->files[index]) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006703 file = io_file_from_index(ctx, index);
Hillf Dantona5318d32020-03-23 17:47:15 +08006704 err = io_queue_file_removal(data, file);
6705 if (err)
6706 break;
Jens Axboe65e19f52019-10-26 07:20:21 -06006707 table->files[index] = NULL;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006708 needs_switch = true;
Jens Axboec3a31e62019-10-03 13:59:56 -06006709 }
6710 if (fd != -1) {
Jens Axboec3a31e62019-10-03 13:59:56 -06006711 file = fget(fd);
6712 if (!file) {
6713 err = -EBADF;
6714 break;
6715 }
6716 /*
6717 * Don't allow io_uring instances to be registered. If
6718 * UNIX isn't enabled, then this causes a reference
6719 * cycle and this instance can never get freed. If UNIX
6720 * is enabled we'll handle it just fine, but there's
6721 * still no point in allowing a ring fd as it doesn't
6722 * support regular read/write anyway.
6723 */
6724 if (file->f_op == &io_uring_fops) {
6725 fput(file);
6726 err = -EBADF;
6727 break;
6728 }
Jens Axboe65e19f52019-10-26 07:20:21 -06006729 table->files[index] = file;
Jens Axboec3a31e62019-10-03 13:59:56 -06006730 err = io_sqe_file_register(ctx, file, i);
6731 if (err)
6732 break;
6733 }
6734 nr_args--;
6735 done++;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006736 up->offset++;
6737 }
6738
Xiaoguang Wang05589552020-03-31 14:05:18 +08006739 if (needs_switch) {
6740 percpu_ref_kill(data->cur_refs);
6741 spin_lock_irqsave(&data->lock, flags);
6742 list_add(&ref_node->node, &data->ref_list);
6743 data->cur_refs = &ref_node->refs;
6744 spin_unlock_irqrestore(&data->lock, flags);
6745 percpu_ref_get(&ctx->file_data->refs);
6746 } else
6747 destroy_fixed_file_ref_node(ref_node);
Jens Axboec3a31e62019-10-03 13:59:56 -06006748
6749 return done ? done : err;
6750}
Xiaoguang Wang05589552020-03-31 14:05:18 +08006751
Jens Axboe05f3fb32019-12-09 11:22:50 -07006752static int io_sqe_files_update(struct io_ring_ctx *ctx, void __user *arg,
6753 unsigned nr_args)
6754{
6755 struct io_uring_files_update up;
6756
6757 if (!ctx->file_data)
6758 return -ENXIO;
6759 if (!nr_args)
6760 return -EINVAL;
6761 if (copy_from_user(&up, arg, sizeof(up)))
6762 return -EFAULT;
6763 if (up.resv)
6764 return -EINVAL;
6765
6766 return __io_sqe_files_update(ctx, &up, nr_args);
6767}
Jens Axboec3a31e62019-10-03 13:59:56 -06006768
Pavel Begunkove9fd9392020-03-04 16:14:12 +03006769static void io_free_work(struct io_wq_work *work)
Jens Axboe7d723062019-11-12 22:31:31 -07006770{
6771 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
6772
Pavel Begunkove9fd9392020-03-04 16:14:12 +03006773 /* Consider that io_steal_work() relies on this ref */
Jens Axboe7d723062019-11-12 22:31:31 -07006774 io_put_req(req);
6775}
6776
Pavel Begunkov24369c22020-01-28 03:15:48 +03006777static int io_init_wq_offload(struct io_ring_ctx *ctx,
6778 struct io_uring_params *p)
6779{
6780 struct io_wq_data data;
6781 struct fd f;
6782 struct io_ring_ctx *ctx_attach;
6783 unsigned int concurrency;
6784 int ret = 0;
6785
6786 data.user = ctx->user;
Pavel Begunkove9fd9392020-03-04 16:14:12 +03006787 data.free_work = io_free_work;
Pavel Begunkov24369c22020-01-28 03:15:48 +03006788
6789 if (!(p->flags & IORING_SETUP_ATTACH_WQ)) {
6790 /* Do QD, or 4 * CPUS, whatever is smallest */
6791 concurrency = min(ctx->sq_entries, 4 * num_online_cpus());
6792
6793 ctx->io_wq = io_wq_create(concurrency, &data);
6794 if (IS_ERR(ctx->io_wq)) {
6795 ret = PTR_ERR(ctx->io_wq);
6796 ctx->io_wq = NULL;
6797 }
6798 return ret;
6799 }
6800
6801 f = fdget(p->wq_fd);
6802 if (!f.file)
6803 return -EBADF;
6804
6805 if (f.file->f_op != &io_uring_fops) {
6806 ret = -EINVAL;
6807 goto out_fput;
6808 }
6809
6810 ctx_attach = f.file->private_data;
6811 /* @io_wq is protected by holding the fd */
6812 if (!io_wq_get(ctx_attach->io_wq, &data)) {
6813 ret = -EINVAL;
6814 goto out_fput;
6815 }
6816
6817 ctx->io_wq = ctx_attach->io_wq;
6818out_fput:
6819 fdput(f);
6820 return ret;
6821}
6822
Jens Axboe6c271ce2019-01-10 11:22:30 -07006823static int io_sq_offload_start(struct io_ring_ctx *ctx,
6824 struct io_uring_params *p)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006825{
6826 int ret;
6827
Jens Axboe6c271ce2019-01-10 11:22:30 -07006828 init_waitqueue_head(&ctx->sqo_wait);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006829 mmgrab(current->mm);
6830 ctx->sqo_mm = current->mm;
6831
Jens Axboe6c271ce2019-01-10 11:22:30 -07006832 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboe3ec482d2019-04-08 10:51:01 -06006833 ret = -EPERM;
6834 if (!capable(CAP_SYS_ADMIN))
6835 goto err;
6836
Jens Axboe917257d2019-04-13 09:28:55 -06006837 ctx->sq_thread_idle = msecs_to_jiffies(p->sq_thread_idle);
6838 if (!ctx->sq_thread_idle)
6839 ctx->sq_thread_idle = HZ;
6840
Jens Axboe6c271ce2019-01-10 11:22:30 -07006841 if (p->flags & IORING_SETUP_SQ_AFF) {
Jens Axboe44a9bd12019-05-14 20:00:30 -06006842 int cpu = p->sq_thread_cpu;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006843
Jens Axboe917257d2019-04-13 09:28:55 -06006844 ret = -EINVAL;
Jens Axboe44a9bd12019-05-14 20:00:30 -06006845 if (cpu >= nr_cpu_ids)
6846 goto err;
Shenghui Wang7889f442019-05-07 16:03:19 +08006847 if (!cpu_online(cpu))
Jens Axboe917257d2019-04-13 09:28:55 -06006848 goto err;
6849
Jens Axboe6c271ce2019-01-10 11:22:30 -07006850 ctx->sqo_thread = kthread_create_on_cpu(io_sq_thread,
6851 ctx, cpu,
6852 "io_uring-sq");
6853 } else {
6854 ctx->sqo_thread = kthread_create(io_sq_thread, ctx,
6855 "io_uring-sq");
6856 }
6857 if (IS_ERR(ctx->sqo_thread)) {
6858 ret = PTR_ERR(ctx->sqo_thread);
6859 ctx->sqo_thread = NULL;
6860 goto err;
6861 }
6862 wake_up_process(ctx->sqo_thread);
6863 } else if (p->flags & IORING_SETUP_SQ_AFF) {
6864 /* Can't have SQ_AFF without SQPOLL */
6865 ret = -EINVAL;
6866 goto err;
6867 }
6868
Pavel Begunkov24369c22020-01-28 03:15:48 +03006869 ret = io_init_wq_offload(ctx, p);
6870 if (ret)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006871 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006872
6873 return 0;
6874err:
Jens Axboe54a91f32019-09-10 09:15:04 -06006875 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006876 mmdrop(ctx->sqo_mm);
6877 ctx->sqo_mm = NULL;
6878 return ret;
6879}
6880
6881static void io_unaccount_mem(struct user_struct *user, unsigned long nr_pages)
6882{
6883 atomic_long_sub(nr_pages, &user->locked_vm);
6884}
6885
6886static int io_account_mem(struct user_struct *user, unsigned long nr_pages)
6887{
6888 unsigned long page_limit, cur_pages, new_pages;
6889
6890 /* Don't allow more pages than we can safely lock */
6891 page_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
6892
6893 do {
6894 cur_pages = atomic_long_read(&user->locked_vm);
6895 new_pages = cur_pages + nr_pages;
6896 if (new_pages > page_limit)
6897 return -ENOMEM;
6898 } while (atomic_long_cmpxchg(&user->locked_vm, cur_pages,
6899 new_pages) != cur_pages);
6900
6901 return 0;
6902}
6903
6904static void io_mem_free(void *ptr)
6905{
Mark Rutland52e04ef2019-04-30 17:30:21 +01006906 struct page *page;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006907
Mark Rutland52e04ef2019-04-30 17:30:21 +01006908 if (!ptr)
6909 return;
6910
6911 page = virt_to_head_page(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006912 if (put_page_testzero(page))
6913 free_compound_page(page);
6914}
6915
6916static void *io_mem_alloc(size_t size)
6917{
6918 gfp_t gfp_flags = GFP_KERNEL | __GFP_ZERO | __GFP_NOWARN | __GFP_COMP |
6919 __GFP_NORETRY;
6920
6921 return (void *) __get_free_pages(gfp_flags, get_order(size));
6922}
6923
Hristo Venev75b28af2019-08-26 17:23:46 +00006924static unsigned long rings_size(unsigned sq_entries, unsigned cq_entries,
6925 size_t *sq_offset)
6926{
6927 struct io_rings *rings;
6928 size_t off, sq_array_size;
6929
6930 off = struct_size(rings, cqes, cq_entries);
6931 if (off == SIZE_MAX)
6932 return SIZE_MAX;
6933
6934#ifdef CONFIG_SMP
6935 off = ALIGN(off, SMP_CACHE_BYTES);
6936 if (off == 0)
6937 return SIZE_MAX;
6938#endif
6939
6940 sq_array_size = array_size(sizeof(u32), sq_entries);
6941 if (sq_array_size == SIZE_MAX)
6942 return SIZE_MAX;
6943
6944 if (check_add_overflow(off, sq_array_size, &off))
6945 return SIZE_MAX;
6946
6947 if (sq_offset)
6948 *sq_offset = off;
6949
6950 return off;
6951}
6952
Jens Axboe2b188cc2019-01-07 10:46:33 -07006953static unsigned long ring_pages(unsigned sq_entries, unsigned cq_entries)
6954{
Hristo Venev75b28af2019-08-26 17:23:46 +00006955 size_t pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006956
Hristo Venev75b28af2019-08-26 17:23:46 +00006957 pages = (size_t)1 << get_order(
6958 rings_size(sq_entries, cq_entries, NULL));
6959 pages += (size_t)1 << get_order(
6960 array_size(sizeof(struct io_uring_sqe), sq_entries));
Jens Axboe2b188cc2019-01-07 10:46:33 -07006961
Hristo Venev75b28af2019-08-26 17:23:46 +00006962 return pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006963}
6964
Jens Axboeedafcce2019-01-09 09:16:05 -07006965static int io_sqe_buffer_unregister(struct io_ring_ctx *ctx)
6966{
6967 int i, j;
6968
6969 if (!ctx->user_bufs)
6970 return -ENXIO;
6971
6972 for (i = 0; i < ctx->nr_user_bufs; i++) {
6973 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
6974
6975 for (j = 0; j < imu->nr_bvecs; j++)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08006976 unpin_user_page(imu->bvec[j].bv_page);
Jens Axboeedafcce2019-01-09 09:16:05 -07006977
6978 if (ctx->account_mem)
6979 io_unaccount_mem(ctx->user, imu->nr_bvecs);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006980 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07006981 imu->nr_bvecs = 0;
6982 }
6983
6984 kfree(ctx->user_bufs);
6985 ctx->user_bufs = NULL;
6986 ctx->nr_user_bufs = 0;
6987 return 0;
6988}
6989
6990static int io_copy_iov(struct io_ring_ctx *ctx, struct iovec *dst,
6991 void __user *arg, unsigned index)
6992{
6993 struct iovec __user *src;
6994
6995#ifdef CONFIG_COMPAT
6996 if (ctx->compat) {
6997 struct compat_iovec __user *ciovs;
6998 struct compat_iovec ciov;
6999
7000 ciovs = (struct compat_iovec __user *) arg;
7001 if (copy_from_user(&ciov, &ciovs[index], sizeof(ciov)))
7002 return -EFAULT;
7003
Jens Axboed55e5f52019-12-11 16:12:15 -07007004 dst->iov_base = u64_to_user_ptr((u64)ciov.iov_base);
Jens Axboeedafcce2019-01-09 09:16:05 -07007005 dst->iov_len = ciov.iov_len;
7006 return 0;
7007 }
7008#endif
7009 src = (struct iovec __user *) arg;
7010 if (copy_from_user(dst, &src[index], sizeof(*dst)))
7011 return -EFAULT;
7012 return 0;
7013}
7014
7015static int io_sqe_buffer_register(struct io_ring_ctx *ctx, void __user *arg,
7016 unsigned nr_args)
7017{
7018 struct vm_area_struct **vmas = NULL;
7019 struct page **pages = NULL;
7020 int i, j, got_pages = 0;
7021 int ret = -EINVAL;
7022
7023 if (ctx->user_bufs)
7024 return -EBUSY;
7025 if (!nr_args || nr_args > UIO_MAXIOV)
7026 return -EINVAL;
7027
7028 ctx->user_bufs = kcalloc(nr_args, sizeof(struct io_mapped_ubuf),
7029 GFP_KERNEL);
7030 if (!ctx->user_bufs)
7031 return -ENOMEM;
7032
7033 for (i = 0; i < nr_args; i++) {
7034 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
7035 unsigned long off, start, end, ubuf;
7036 int pret, nr_pages;
7037 struct iovec iov;
7038 size_t size;
7039
7040 ret = io_copy_iov(ctx, &iov, arg, i);
7041 if (ret)
Pavel Begunkova2786822019-05-26 12:35:47 +03007042 goto err;
Jens Axboeedafcce2019-01-09 09:16:05 -07007043
7044 /*
7045 * Don't impose further limits on the size and buffer
7046 * constraints here, we'll -EINVAL later when IO is
7047 * submitted if they are wrong.
7048 */
7049 ret = -EFAULT;
7050 if (!iov.iov_base || !iov.iov_len)
7051 goto err;
7052
7053 /* arbitrary limit, but we need something */
7054 if (iov.iov_len > SZ_1G)
7055 goto err;
7056
7057 ubuf = (unsigned long) iov.iov_base;
7058 end = (ubuf + iov.iov_len + PAGE_SIZE - 1) >> PAGE_SHIFT;
7059 start = ubuf >> PAGE_SHIFT;
7060 nr_pages = end - start;
7061
7062 if (ctx->account_mem) {
7063 ret = io_account_mem(ctx->user, nr_pages);
7064 if (ret)
7065 goto err;
7066 }
7067
7068 ret = 0;
7069 if (!pages || nr_pages > got_pages) {
7070 kfree(vmas);
7071 kfree(pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007072 pages = kvmalloc_array(nr_pages, sizeof(struct page *),
Jens Axboeedafcce2019-01-09 09:16:05 -07007073 GFP_KERNEL);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007074 vmas = kvmalloc_array(nr_pages,
Jens Axboeedafcce2019-01-09 09:16:05 -07007075 sizeof(struct vm_area_struct *),
7076 GFP_KERNEL);
7077 if (!pages || !vmas) {
7078 ret = -ENOMEM;
7079 if (ctx->account_mem)
7080 io_unaccount_mem(ctx->user, nr_pages);
7081 goto err;
7082 }
7083 got_pages = nr_pages;
7084 }
7085
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007086 imu->bvec = kvmalloc_array(nr_pages, sizeof(struct bio_vec),
Jens Axboeedafcce2019-01-09 09:16:05 -07007087 GFP_KERNEL);
7088 ret = -ENOMEM;
7089 if (!imu->bvec) {
7090 if (ctx->account_mem)
7091 io_unaccount_mem(ctx->user, nr_pages);
7092 goto err;
7093 }
7094
7095 ret = 0;
7096 down_read(&current->mm->mmap_sem);
John Hubbard2113b052020-01-30 22:13:13 -08007097 pret = pin_user_pages(ubuf, nr_pages,
Ira Weiny932f4a62019-05-13 17:17:03 -07007098 FOLL_WRITE | FOLL_LONGTERM,
7099 pages, vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007100 if (pret == nr_pages) {
7101 /* don't support file backed memory */
7102 for (j = 0; j < nr_pages; j++) {
7103 struct vm_area_struct *vma = vmas[j];
7104
7105 if (vma->vm_file &&
7106 !is_file_hugepages(vma->vm_file)) {
7107 ret = -EOPNOTSUPP;
7108 break;
7109 }
7110 }
7111 } else {
7112 ret = pret < 0 ? pret : -EFAULT;
7113 }
7114 up_read(&current->mm->mmap_sem);
7115 if (ret) {
7116 /*
7117 * if we did partial map, or found file backed vmas,
7118 * release any pages we did get
7119 */
John Hubbard27c4d3a2019-08-04 19:32:06 -07007120 if (pret > 0)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08007121 unpin_user_pages(pages, pret);
Jens Axboeedafcce2019-01-09 09:16:05 -07007122 if (ctx->account_mem)
7123 io_unaccount_mem(ctx->user, nr_pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007124 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07007125 goto err;
7126 }
7127
7128 off = ubuf & ~PAGE_MASK;
7129 size = iov.iov_len;
7130 for (j = 0; j < nr_pages; j++) {
7131 size_t vec_len;
7132
7133 vec_len = min_t(size_t, size, PAGE_SIZE - off);
7134 imu->bvec[j].bv_page = pages[j];
7135 imu->bvec[j].bv_len = vec_len;
7136 imu->bvec[j].bv_offset = off;
7137 off = 0;
7138 size -= vec_len;
7139 }
7140 /* store original address for later verification */
7141 imu->ubuf = ubuf;
7142 imu->len = iov.iov_len;
7143 imu->nr_bvecs = nr_pages;
7144
7145 ctx->nr_user_bufs++;
7146 }
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007147 kvfree(pages);
7148 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007149 return 0;
7150err:
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007151 kvfree(pages);
7152 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007153 io_sqe_buffer_unregister(ctx);
7154 return ret;
7155}
7156
Jens Axboe9b402842019-04-11 11:45:41 -06007157static int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg)
7158{
7159 __s32 __user *fds = arg;
7160 int fd;
7161
7162 if (ctx->cq_ev_fd)
7163 return -EBUSY;
7164
7165 if (copy_from_user(&fd, fds, sizeof(*fds)))
7166 return -EFAULT;
7167
7168 ctx->cq_ev_fd = eventfd_ctx_fdget(fd);
7169 if (IS_ERR(ctx->cq_ev_fd)) {
7170 int ret = PTR_ERR(ctx->cq_ev_fd);
7171 ctx->cq_ev_fd = NULL;
7172 return ret;
7173 }
7174
7175 return 0;
7176}
7177
7178static int io_eventfd_unregister(struct io_ring_ctx *ctx)
7179{
7180 if (ctx->cq_ev_fd) {
7181 eventfd_ctx_put(ctx->cq_ev_fd);
7182 ctx->cq_ev_fd = NULL;
7183 return 0;
7184 }
7185
7186 return -ENXIO;
7187}
7188
Jens Axboe5a2e7452020-02-23 16:23:11 -07007189static int __io_destroy_buffers(int id, void *p, void *data)
7190{
7191 struct io_ring_ctx *ctx = data;
7192 struct io_buffer *buf = p;
7193
Jens Axboe067524e2020-03-02 16:32:28 -07007194 __io_remove_buffers(ctx, buf, id, -1U);
Jens Axboe5a2e7452020-02-23 16:23:11 -07007195 return 0;
7196}
7197
7198static void io_destroy_buffers(struct io_ring_ctx *ctx)
7199{
7200 idr_for_each(&ctx->io_buffer_idr, __io_destroy_buffers, ctx);
7201 idr_destroy(&ctx->io_buffer_idr);
7202}
7203
Jens Axboe2b188cc2019-01-07 10:46:33 -07007204static void io_ring_ctx_free(struct io_ring_ctx *ctx)
7205{
Jens Axboe6b063142019-01-10 22:13:58 -07007206 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007207 if (ctx->sqo_mm)
7208 mmdrop(ctx->sqo_mm);
Jens Axboedef596e2019-01-09 08:59:42 -07007209
7210 io_iopoll_reap_events(ctx);
Jens Axboeedafcce2019-01-09 09:16:05 -07007211 io_sqe_buffer_unregister(ctx);
Jens Axboe6b063142019-01-10 22:13:58 -07007212 io_sqe_files_unregister(ctx);
Jens Axboe9b402842019-04-11 11:45:41 -06007213 io_eventfd_unregister(ctx);
Jens Axboe5a2e7452020-02-23 16:23:11 -07007214 io_destroy_buffers(ctx);
Jens Axboe41726c92020-02-23 13:11:42 -07007215 idr_destroy(&ctx->personality_idr);
Jens Axboedef596e2019-01-09 08:59:42 -07007216
Jens Axboe2b188cc2019-01-07 10:46:33 -07007217#if defined(CONFIG_UNIX)
Eric Biggers355e8d22019-06-12 14:58:43 -07007218 if (ctx->ring_sock) {
7219 ctx->ring_sock->file = NULL; /* so that iput() is called */
Jens Axboe2b188cc2019-01-07 10:46:33 -07007220 sock_release(ctx->ring_sock);
Eric Biggers355e8d22019-06-12 14:58:43 -07007221 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007222#endif
7223
Hristo Venev75b28af2019-08-26 17:23:46 +00007224 io_mem_free(ctx->rings);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007225 io_mem_free(ctx->sq_sqes);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007226
7227 percpu_ref_exit(&ctx->refs);
7228 if (ctx->account_mem)
7229 io_unaccount_mem(ctx->user,
7230 ring_pages(ctx->sq_entries, ctx->cq_entries));
7231 free_uid(ctx->user);
Jens Axboe181e4482019-11-25 08:52:30 -07007232 put_cred(ctx->creds);
Jens Axboe206aefd2019-11-07 18:27:42 -07007233 kfree(ctx->completions);
Jens Axboe78076bb2019-12-04 19:56:40 -07007234 kfree(ctx->cancel_hash);
Jens Axboe0ddf92e2019-11-08 08:52:53 -07007235 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007236 kfree(ctx);
7237}
7238
7239static __poll_t io_uring_poll(struct file *file, poll_table *wait)
7240{
7241 struct io_ring_ctx *ctx = file->private_data;
7242 __poll_t mask = 0;
7243
7244 poll_wait(file, &ctx->cq_wait, wait);
Stefan Bühler4f7067c2019-04-24 23:54:17 +02007245 /*
7246 * synchronizes with barrier from wq_has_sleeper call in
7247 * io_commit_cqring
7248 */
Jens Axboe2b188cc2019-01-07 10:46:33 -07007249 smp_rmb();
Hristo Venev75b28af2019-08-26 17:23:46 +00007250 if (READ_ONCE(ctx->rings->sq.tail) - ctx->cached_sq_head !=
7251 ctx->rings->sq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007252 mask |= EPOLLOUT | EPOLLWRNORM;
Stefano Garzarella63e5d812020-02-07 13:18:28 +01007253 if (io_cqring_events(ctx, false))
Jens Axboe2b188cc2019-01-07 10:46:33 -07007254 mask |= EPOLLIN | EPOLLRDNORM;
7255
7256 return mask;
7257}
7258
7259static int io_uring_fasync(int fd, struct file *file, int on)
7260{
7261 struct io_ring_ctx *ctx = file->private_data;
7262
7263 return fasync_helper(fd, file, on, &ctx->cq_fasync);
7264}
7265
Jens Axboe071698e2020-01-28 10:04:42 -07007266static int io_remove_personalities(int id, void *p, void *data)
7267{
7268 struct io_ring_ctx *ctx = data;
7269 const struct cred *cred;
7270
7271 cred = idr_remove(&ctx->personality_idr, id);
7272 if (cred)
7273 put_cred(cred);
7274 return 0;
7275}
7276
Jens Axboe2b188cc2019-01-07 10:46:33 -07007277static void io_ring_ctx_wait_and_kill(struct io_ring_ctx *ctx)
7278{
7279 mutex_lock(&ctx->uring_lock);
7280 percpu_ref_kill(&ctx->refs);
7281 mutex_unlock(&ctx->uring_lock);
7282
Jens Axboedf069d82020-02-04 16:48:34 -07007283 /*
7284 * Wait for sq thread to idle, if we have one. It won't spin on new
7285 * work after we've killed the ctx ref above. This is important to do
7286 * before we cancel existing commands, as the thread could otherwise
7287 * be queueing new work post that. If that's work we need to cancel,
7288 * it could cause shutdown to hang.
7289 */
7290 while (ctx->sqo_thread && !wq_has_sleeper(&ctx->sqo_wait))
7291 cpu_relax();
7292
Jens Axboe5262f562019-09-17 12:26:57 -06007293 io_kill_timeouts(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07007294 io_poll_remove_all(ctx);
Jens Axboe561fb042019-10-24 07:25:42 -06007295
7296 if (ctx->io_wq)
7297 io_wq_cancel_all(ctx->io_wq);
7298
Jens Axboedef596e2019-01-09 08:59:42 -07007299 io_iopoll_reap_events(ctx);
Jens Axboe15dff282019-11-13 09:09:23 -07007300 /* if we failed setting up the ctx, we might not have any rings */
7301 if (ctx->rings)
7302 io_cqring_overflow_flush(ctx, true);
Jens Axboe071698e2020-01-28 10:04:42 -07007303 idr_for_each(&ctx->personality_idr, io_remove_personalities, ctx);
Jens Axboe206aefd2019-11-07 18:27:42 -07007304 wait_for_completion(&ctx->completions[0]);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007305 io_ring_ctx_free(ctx);
7306}
7307
7308static int io_uring_release(struct inode *inode, struct file *file)
7309{
7310 struct io_ring_ctx *ctx = file->private_data;
7311
7312 file->private_data = NULL;
7313 io_ring_ctx_wait_and_kill(ctx);
7314 return 0;
7315}
7316
Jens Axboefcb323c2019-10-24 12:39:47 -06007317static void io_uring_cancel_files(struct io_ring_ctx *ctx,
7318 struct files_struct *files)
7319{
7320 struct io_kiocb *req;
7321 DEFINE_WAIT(wait);
7322
7323 while (!list_empty_careful(&ctx->inflight_list)) {
Jens Axboe768134d2019-11-10 20:30:53 -07007324 struct io_kiocb *cancel_req = NULL;
Jens Axboefcb323c2019-10-24 12:39:47 -06007325
7326 spin_lock_irq(&ctx->inflight_lock);
7327 list_for_each_entry(req, &ctx->inflight_list, inflight_entry) {
Jens Axboe768134d2019-11-10 20:30:53 -07007328 if (req->work.files != files)
7329 continue;
7330 /* req is being completed, ignore */
7331 if (!refcount_inc_not_zero(&req->refs))
7332 continue;
7333 cancel_req = req;
7334 break;
Jens Axboefcb323c2019-10-24 12:39:47 -06007335 }
Jens Axboe768134d2019-11-10 20:30:53 -07007336 if (cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06007337 prepare_to_wait(&ctx->inflight_wait, &wait,
Jens Axboe768134d2019-11-10 20:30:53 -07007338 TASK_UNINTERRUPTIBLE);
Jens Axboefcb323c2019-10-24 12:39:47 -06007339 spin_unlock_irq(&ctx->inflight_lock);
7340
Jens Axboe768134d2019-11-10 20:30:53 -07007341 /* We need to keep going until we don't find a matching req */
7342 if (!cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06007343 break;
Bob Liu2f6d9b92019-11-13 18:06:24 +08007344
Jens Axboe2ca10252020-02-13 17:17:35 -07007345 if (cancel_req->flags & REQ_F_OVERFLOW) {
7346 spin_lock_irq(&ctx->completion_lock);
7347 list_del(&cancel_req->list);
7348 cancel_req->flags &= ~REQ_F_OVERFLOW;
7349 if (list_empty(&ctx->cq_overflow_list)) {
7350 clear_bit(0, &ctx->sq_check_overflow);
7351 clear_bit(0, &ctx->cq_check_overflow);
7352 }
7353 spin_unlock_irq(&ctx->completion_lock);
7354
7355 WRITE_ONCE(ctx->rings->cq_overflow,
7356 atomic_inc_return(&ctx->cached_cq_overflow));
7357
7358 /*
7359 * Put inflight ref and overflow ref. If that's
7360 * all we had, then we're done with this request.
7361 */
7362 if (refcount_sub_and_test(2, &cancel_req->refs)) {
7363 io_put_req(cancel_req);
7364 continue;
7365 }
7366 }
7367
Bob Liu2f6d9b92019-11-13 18:06:24 +08007368 io_wq_cancel_work(ctx->io_wq, &cancel_req->work);
7369 io_put_req(cancel_req);
Jens Axboefcb323c2019-10-24 12:39:47 -06007370 schedule();
7371 }
Jens Axboe768134d2019-11-10 20:30:53 -07007372 finish_wait(&ctx->inflight_wait, &wait);
Jens Axboefcb323c2019-10-24 12:39:47 -06007373}
7374
7375static int io_uring_flush(struct file *file, void *data)
7376{
7377 struct io_ring_ctx *ctx = file->private_data;
7378
7379 io_uring_cancel_files(ctx, data);
Jens Axboe6ab23142020-02-08 20:23:59 -07007380
7381 /*
7382 * If the task is going away, cancel work it may have pending
7383 */
7384 if (fatal_signal_pending(current) || (current->flags & PF_EXITING))
7385 io_wq_cancel_pid(ctx->io_wq, task_pid_vnr(current));
7386
Jens Axboefcb323c2019-10-24 12:39:47 -06007387 return 0;
7388}
7389
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007390static void *io_uring_validate_mmap_request(struct file *file,
7391 loff_t pgoff, size_t sz)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007392{
Jens Axboe2b188cc2019-01-07 10:46:33 -07007393 struct io_ring_ctx *ctx = file->private_data;
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007394 loff_t offset = pgoff << PAGE_SHIFT;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007395 struct page *page;
7396 void *ptr;
7397
7398 switch (offset) {
7399 case IORING_OFF_SQ_RING:
Hristo Venev75b28af2019-08-26 17:23:46 +00007400 case IORING_OFF_CQ_RING:
7401 ptr = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007402 break;
7403 case IORING_OFF_SQES:
7404 ptr = ctx->sq_sqes;
7405 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007406 default:
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007407 return ERR_PTR(-EINVAL);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007408 }
7409
7410 page = virt_to_head_page(ptr);
Matthew Wilcox (Oracle)a50b8542019-09-23 15:34:25 -07007411 if (sz > page_size(page))
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007412 return ERR_PTR(-EINVAL);
7413
7414 return ptr;
7415}
7416
7417#ifdef CONFIG_MMU
7418
7419static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
7420{
7421 size_t sz = vma->vm_end - vma->vm_start;
7422 unsigned long pfn;
7423 void *ptr;
7424
7425 ptr = io_uring_validate_mmap_request(file, vma->vm_pgoff, sz);
7426 if (IS_ERR(ptr))
7427 return PTR_ERR(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007428
7429 pfn = virt_to_phys(ptr) >> PAGE_SHIFT;
7430 return remap_pfn_range(vma, vma->vm_start, pfn, sz, vma->vm_page_prot);
7431}
7432
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007433#else /* !CONFIG_MMU */
7434
7435static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
7436{
7437 return vma->vm_flags & (VM_SHARED | VM_MAYSHARE) ? 0 : -EINVAL;
7438}
7439
7440static unsigned int io_uring_nommu_mmap_capabilities(struct file *file)
7441{
7442 return NOMMU_MAP_DIRECT | NOMMU_MAP_READ | NOMMU_MAP_WRITE;
7443}
7444
7445static unsigned long io_uring_nommu_get_unmapped_area(struct file *file,
7446 unsigned long addr, unsigned long len,
7447 unsigned long pgoff, unsigned long flags)
7448{
7449 void *ptr;
7450
7451 ptr = io_uring_validate_mmap_request(file, pgoff, len);
7452 if (IS_ERR(ptr))
7453 return PTR_ERR(ptr);
7454
7455 return (unsigned long) ptr;
7456}
7457
7458#endif /* !CONFIG_MMU */
7459
Jens Axboe2b188cc2019-01-07 10:46:33 -07007460SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
7461 u32, min_complete, u32, flags, const sigset_t __user *, sig,
7462 size_t, sigsz)
7463{
7464 struct io_ring_ctx *ctx;
7465 long ret = -EBADF;
7466 int submitted = 0;
7467 struct fd f;
7468
Jens Axboeb41e9852020-02-17 09:52:41 -07007469 if (current->task_works)
7470 task_work_run();
7471
Jens Axboe6c271ce2019-01-10 11:22:30 -07007472 if (flags & ~(IORING_ENTER_GETEVENTS | IORING_ENTER_SQ_WAKEUP))
Jens Axboe2b188cc2019-01-07 10:46:33 -07007473 return -EINVAL;
7474
7475 f = fdget(fd);
7476 if (!f.file)
7477 return -EBADF;
7478
7479 ret = -EOPNOTSUPP;
7480 if (f.file->f_op != &io_uring_fops)
7481 goto out_fput;
7482
7483 ret = -ENXIO;
7484 ctx = f.file->private_data;
7485 if (!percpu_ref_tryget(&ctx->refs))
7486 goto out_fput;
7487
Jens Axboe6c271ce2019-01-10 11:22:30 -07007488 /*
7489 * For SQ polling, the thread will do all submissions and completions.
7490 * Just return the requested submit count, and wake the thread if
7491 * we were asked to.
7492 */
Jens Axboeb2a9ead2019-09-12 14:19:16 -06007493 ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007494 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboec1edbf52019-11-10 16:56:04 -07007495 if (!list_empty_careful(&ctx->cq_overflow_list))
7496 io_cqring_overflow_flush(ctx, false);
Jens Axboe6c271ce2019-01-10 11:22:30 -07007497 if (flags & IORING_ENTER_SQ_WAKEUP)
7498 wake_up(&ctx->sqo_wait);
7499 submitted = to_submit;
Jens Axboeb2a9ead2019-09-12 14:19:16 -06007500 } else if (to_submit) {
Pavel Begunkovae9428c2019-11-06 00:22:14 +03007501 struct mm_struct *cur_mm;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007502
7503 mutex_lock(&ctx->uring_lock);
Pavel Begunkovae9428c2019-11-06 00:22:14 +03007504 /* already have mm, so io_submit_sqes() won't try to grab it */
7505 cur_mm = ctx->sqo_mm;
7506 submitted = io_submit_sqes(ctx, to_submit, f.file, fd,
7507 &cur_mm, false);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007508 mutex_unlock(&ctx->uring_lock);
Pavel Begunkov7c504e652019-12-18 19:53:45 +03007509
7510 if (submitted != to_submit)
7511 goto out;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007512 }
7513 if (flags & IORING_ENTER_GETEVENTS) {
Jens Axboedef596e2019-01-09 08:59:42 -07007514 unsigned nr_events = 0;
7515
Jens Axboe2b188cc2019-01-07 10:46:33 -07007516 min_complete = min(min_complete, ctx->cq_entries);
7517
Xiaoguang Wang32b22442020-03-11 09:26:09 +08007518 /*
7519 * When SETUP_IOPOLL and SETUP_SQPOLL are both enabled, user
7520 * space applications don't need to do io completion events
7521 * polling again, they can rely on io_sq_thread to do polling
7522 * work, which can reduce cpu usage and uring_lock contention.
7523 */
7524 if (ctx->flags & IORING_SETUP_IOPOLL &&
7525 !(ctx->flags & IORING_SETUP_SQPOLL)) {
Jens Axboedef596e2019-01-09 08:59:42 -07007526 ret = io_iopoll_check(ctx, &nr_events, min_complete);
Jens Axboedef596e2019-01-09 08:59:42 -07007527 } else {
7528 ret = io_cqring_wait(ctx, min_complete, sig, sigsz);
7529 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007530 }
7531
Pavel Begunkov7c504e652019-12-18 19:53:45 +03007532out:
Pavel Begunkov6805b322019-10-08 02:18:42 +03007533 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007534out_fput:
7535 fdput(f);
7536 return submitted ? submitted : ret;
7537}
7538
Tobias Klauserbebdb652020-02-26 18:38:32 +01007539#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -07007540static int io_uring_show_cred(int id, void *p, void *data)
7541{
7542 const struct cred *cred = p;
7543 struct seq_file *m = data;
7544 struct user_namespace *uns = seq_user_ns(m);
7545 struct group_info *gi;
7546 kernel_cap_t cap;
7547 unsigned __capi;
7548 int g;
7549
7550 seq_printf(m, "%5d\n", id);
7551 seq_put_decimal_ull(m, "\tUid:\t", from_kuid_munged(uns, cred->uid));
7552 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->euid));
7553 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->suid));
7554 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->fsuid));
7555 seq_put_decimal_ull(m, "\n\tGid:\t", from_kgid_munged(uns, cred->gid));
7556 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->egid));
7557 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->sgid));
7558 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->fsgid));
7559 seq_puts(m, "\n\tGroups:\t");
7560 gi = cred->group_info;
7561 for (g = 0; g < gi->ngroups; g++) {
7562 seq_put_decimal_ull(m, g ? " " : "",
7563 from_kgid_munged(uns, gi->gid[g]));
7564 }
7565 seq_puts(m, "\n\tCapEff:\t");
7566 cap = cred->cap_effective;
7567 CAP_FOR_EACH_U32(__capi)
7568 seq_put_hex_ll(m, NULL, cap.cap[CAP_LAST_U32 - __capi], 8);
7569 seq_putc(m, '\n');
7570 return 0;
7571}
7572
7573static void __io_uring_show_fdinfo(struct io_ring_ctx *ctx, struct seq_file *m)
7574{
7575 int i;
7576
7577 mutex_lock(&ctx->uring_lock);
7578 seq_printf(m, "UserFiles:\t%u\n", ctx->nr_user_files);
7579 for (i = 0; i < ctx->nr_user_files; i++) {
7580 struct fixed_file_table *table;
7581 struct file *f;
7582
7583 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
7584 f = table->files[i & IORING_FILE_TABLE_MASK];
7585 if (f)
7586 seq_printf(m, "%5u: %s\n", i, file_dentry(f)->d_iname);
7587 else
7588 seq_printf(m, "%5u: <none>\n", i);
7589 }
7590 seq_printf(m, "UserBufs:\t%u\n", ctx->nr_user_bufs);
7591 for (i = 0; i < ctx->nr_user_bufs; i++) {
7592 struct io_mapped_ubuf *buf = &ctx->user_bufs[i];
7593
7594 seq_printf(m, "%5u: 0x%llx/%u\n", i, buf->ubuf,
7595 (unsigned int) buf->len);
7596 }
7597 if (!idr_is_empty(&ctx->personality_idr)) {
7598 seq_printf(m, "Personalities:\n");
7599 idr_for_each(&ctx->personality_idr, io_uring_show_cred, m);
7600 }
Jens Axboed7718a92020-02-14 22:23:12 -07007601 seq_printf(m, "PollList:\n");
7602 spin_lock_irq(&ctx->completion_lock);
7603 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
7604 struct hlist_head *list = &ctx->cancel_hash[i];
7605 struct io_kiocb *req;
7606
7607 hlist_for_each_entry(req, list, hash_node)
7608 seq_printf(m, " op=%d, task_works=%d\n", req->opcode,
7609 req->task->task_works != NULL);
7610 }
7611 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe87ce9552020-01-30 08:25:34 -07007612 mutex_unlock(&ctx->uring_lock);
7613}
7614
7615static void io_uring_show_fdinfo(struct seq_file *m, struct file *f)
7616{
7617 struct io_ring_ctx *ctx = f->private_data;
7618
7619 if (percpu_ref_tryget(&ctx->refs)) {
7620 __io_uring_show_fdinfo(ctx, m);
7621 percpu_ref_put(&ctx->refs);
7622 }
7623}
Tobias Klauserbebdb652020-02-26 18:38:32 +01007624#endif
Jens Axboe87ce9552020-01-30 08:25:34 -07007625
Jens Axboe2b188cc2019-01-07 10:46:33 -07007626static const struct file_operations io_uring_fops = {
7627 .release = io_uring_release,
Jens Axboefcb323c2019-10-24 12:39:47 -06007628 .flush = io_uring_flush,
Jens Axboe2b188cc2019-01-07 10:46:33 -07007629 .mmap = io_uring_mmap,
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007630#ifndef CONFIG_MMU
7631 .get_unmapped_area = io_uring_nommu_get_unmapped_area,
7632 .mmap_capabilities = io_uring_nommu_mmap_capabilities,
7633#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07007634 .poll = io_uring_poll,
7635 .fasync = io_uring_fasync,
Tobias Klauserbebdb652020-02-26 18:38:32 +01007636#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -07007637 .show_fdinfo = io_uring_show_fdinfo,
Tobias Klauserbebdb652020-02-26 18:38:32 +01007638#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07007639};
7640
7641static int io_allocate_scq_urings(struct io_ring_ctx *ctx,
7642 struct io_uring_params *p)
7643{
Hristo Venev75b28af2019-08-26 17:23:46 +00007644 struct io_rings *rings;
7645 size_t size, sq_array_offset;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007646
Hristo Venev75b28af2019-08-26 17:23:46 +00007647 size = rings_size(p->sq_entries, p->cq_entries, &sq_array_offset);
7648 if (size == SIZE_MAX)
7649 return -EOVERFLOW;
7650
7651 rings = io_mem_alloc(size);
7652 if (!rings)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007653 return -ENOMEM;
7654
Hristo Venev75b28af2019-08-26 17:23:46 +00007655 ctx->rings = rings;
7656 ctx->sq_array = (u32 *)((char *)rings + sq_array_offset);
7657 rings->sq_ring_mask = p->sq_entries - 1;
7658 rings->cq_ring_mask = p->cq_entries - 1;
7659 rings->sq_ring_entries = p->sq_entries;
7660 rings->cq_ring_entries = p->cq_entries;
7661 ctx->sq_mask = rings->sq_ring_mask;
7662 ctx->cq_mask = rings->cq_ring_mask;
7663 ctx->sq_entries = rings->sq_ring_entries;
7664 ctx->cq_entries = rings->cq_ring_entries;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007665
7666 size = array_size(sizeof(struct io_uring_sqe), p->sq_entries);
Jens Axboeeb065d32019-11-20 09:26:29 -07007667 if (size == SIZE_MAX) {
7668 io_mem_free(ctx->rings);
7669 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007670 return -EOVERFLOW;
Jens Axboeeb065d32019-11-20 09:26:29 -07007671 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007672
7673 ctx->sq_sqes = io_mem_alloc(size);
Jens Axboeeb065d32019-11-20 09:26:29 -07007674 if (!ctx->sq_sqes) {
7675 io_mem_free(ctx->rings);
7676 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007677 return -ENOMEM;
Jens Axboeeb065d32019-11-20 09:26:29 -07007678 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007679
Jens Axboe2b188cc2019-01-07 10:46:33 -07007680 return 0;
7681}
7682
7683/*
7684 * Allocate an anonymous fd, this is what constitutes the application
7685 * visible backing of an io_uring instance. The application mmaps this
7686 * fd to gain access to the SQ/CQ ring details. If UNIX sockets are enabled,
7687 * we have to tie this fd to a socket for file garbage collection purposes.
7688 */
7689static int io_uring_get_fd(struct io_ring_ctx *ctx)
7690{
7691 struct file *file;
7692 int ret;
7693
7694#if defined(CONFIG_UNIX)
7695 ret = sock_create_kern(&init_net, PF_UNIX, SOCK_RAW, IPPROTO_IP,
7696 &ctx->ring_sock);
7697 if (ret)
7698 return ret;
7699#endif
7700
7701 ret = get_unused_fd_flags(O_RDWR | O_CLOEXEC);
7702 if (ret < 0)
7703 goto err;
7704
7705 file = anon_inode_getfile("[io_uring]", &io_uring_fops, ctx,
7706 O_RDWR | O_CLOEXEC);
7707 if (IS_ERR(file)) {
7708 put_unused_fd(ret);
7709 ret = PTR_ERR(file);
7710 goto err;
7711 }
7712
7713#if defined(CONFIG_UNIX)
7714 ctx->ring_sock->file = file;
7715#endif
7716 fd_install(ret, file);
7717 return ret;
7718err:
7719#if defined(CONFIG_UNIX)
7720 sock_release(ctx->ring_sock);
7721 ctx->ring_sock = NULL;
7722#endif
7723 return ret;
7724}
7725
7726static int io_uring_create(unsigned entries, struct io_uring_params *p)
7727{
7728 struct user_struct *user = NULL;
7729 struct io_ring_ctx *ctx;
7730 bool account_mem;
7731 int ret;
7732
Jens Axboe8110c1a2019-12-28 15:39:54 -07007733 if (!entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007734 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07007735 if (entries > IORING_MAX_ENTRIES) {
7736 if (!(p->flags & IORING_SETUP_CLAMP))
7737 return -EINVAL;
7738 entries = IORING_MAX_ENTRIES;
7739 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007740
7741 /*
7742 * Use twice as many entries for the CQ ring. It's possible for the
7743 * application to drive a higher depth than the size of the SQ ring,
7744 * since the sqes are only used at submission time. This allows for
Jens Axboe33a107f2019-10-04 12:10:03 -06007745 * some flexibility in overcommitting a bit. If the application has
7746 * set IORING_SETUP_CQSIZE, it will have passed in the desired number
7747 * of CQ ring entries manually.
Jens Axboe2b188cc2019-01-07 10:46:33 -07007748 */
7749 p->sq_entries = roundup_pow_of_two(entries);
Jens Axboe33a107f2019-10-04 12:10:03 -06007750 if (p->flags & IORING_SETUP_CQSIZE) {
7751 /*
7752 * If IORING_SETUP_CQSIZE is set, we do the same roundup
7753 * to a power-of-two, if it isn't already. We do NOT impose
7754 * any cq vs sq ring sizing.
7755 */
Jens Axboe8110c1a2019-12-28 15:39:54 -07007756 if (p->cq_entries < p->sq_entries)
Jens Axboe33a107f2019-10-04 12:10:03 -06007757 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07007758 if (p->cq_entries > IORING_MAX_CQ_ENTRIES) {
7759 if (!(p->flags & IORING_SETUP_CLAMP))
7760 return -EINVAL;
7761 p->cq_entries = IORING_MAX_CQ_ENTRIES;
7762 }
Jens Axboe33a107f2019-10-04 12:10:03 -06007763 p->cq_entries = roundup_pow_of_two(p->cq_entries);
7764 } else {
7765 p->cq_entries = 2 * p->sq_entries;
7766 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007767
7768 user = get_uid(current_user());
7769 account_mem = !capable(CAP_IPC_LOCK);
7770
7771 if (account_mem) {
7772 ret = io_account_mem(user,
7773 ring_pages(p->sq_entries, p->cq_entries));
7774 if (ret) {
7775 free_uid(user);
7776 return ret;
7777 }
7778 }
7779
7780 ctx = io_ring_ctx_alloc(p);
7781 if (!ctx) {
7782 if (account_mem)
7783 io_unaccount_mem(user, ring_pages(p->sq_entries,
7784 p->cq_entries));
7785 free_uid(user);
7786 return -ENOMEM;
7787 }
7788 ctx->compat = in_compat_syscall();
7789 ctx->account_mem = account_mem;
7790 ctx->user = user;
Jens Axboe0b8c0ec2019-12-02 08:50:00 -07007791 ctx->creds = get_current_cred();
Jens Axboe2b188cc2019-01-07 10:46:33 -07007792
7793 ret = io_allocate_scq_urings(ctx, p);
7794 if (ret)
7795 goto err;
7796
Jens Axboe6c271ce2019-01-10 11:22:30 -07007797 ret = io_sq_offload_start(ctx, p);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007798 if (ret)
7799 goto err;
7800
Jens Axboe2b188cc2019-01-07 10:46:33 -07007801 memset(&p->sq_off, 0, sizeof(p->sq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00007802 p->sq_off.head = offsetof(struct io_rings, sq.head);
7803 p->sq_off.tail = offsetof(struct io_rings, sq.tail);
7804 p->sq_off.ring_mask = offsetof(struct io_rings, sq_ring_mask);
7805 p->sq_off.ring_entries = offsetof(struct io_rings, sq_ring_entries);
7806 p->sq_off.flags = offsetof(struct io_rings, sq_flags);
7807 p->sq_off.dropped = offsetof(struct io_rings, sq_dropped);
7808 p->sq_off.array = (char *)ctx->sq_array - (char *)ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007809
7810 memset(&p->cq_off, 0, sizeof(p->cq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00007811 p->cq_off.head = offsetof(struct io_rings, cq.head);
7812 p->cq_off.tail = offsetof(struct io_rings, cq.tail);
7813 p->cq_off.ring_mask = offsetof(struct io_rings, cq_ring_mask);
7814 p->cq_off.ring_entries = offsetof(struct io_rings, cq_ring_entries);
7815 p->cq_off.overflow = offsetof(struct io_rings, cq_overflow);
7816 p->cq_off.cqes = offsetof(struct io_rings, cqes);
Jens Axboeac90f242019-09-06 10:26:21 -06007817
Jens Axboe044c1ab2019-10-28 09:15:33 -06007818 /*
7819 * Install ring fd as the very last thing, so we don't risk someone
7820 * having closed it before we finish setup
7821 */
7822 ret = io_uring_get_fd(ctx);
7823 if (ret < 0)
7824 goto err;
7825
Jens Axboeda8c9692019-12-02 18:51:26 -07007826 p->features = IORING_FEAT_SINGLE_MMAP | IORING_FEAT_NODROP |
Jens Axboecccf0ee2020-01-27 16:34:48 -07007827 IORING_FEAT_SUBMIT_STABLE | IORING_FEAT_RW_CUR_POS |
Jens Axboed7718a92020-02-14 22:23:12 -07007828 IORING_FEAT_CUR_PERSONALITY | IORING_FEAT_FAST_POLL;
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02007829 trace_io_uring_create(ret, ctx, p->sq_entries, p->cq_entries, p->flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007830 return ret;
7831err:
7832 io_ring_ctx_wait_and_kill(ctx);
7833 return ret;
7834}
7835
7836/*
7837 * Sets up an aio uring context, and returns the fd. Applications asks for a
7838 * ring size, we return the actual sq/cq ring sizes (among other things) in the
7839 * params structure passed in.
7840 */
7841static long io_uring_setup(u32 entries, struct io_uring_params __user *params)
7842{
7843 struct io_uring_params p;
7844 long ret;
7845 int i;
7846
7847 if (copy_from_user(&p, params, sizeof(p)))
7848 return -EFAULT;
7849 for (i = 0; i < ARRAY_SIZE(p.resv); i++) {
7850 if (p.resv[i])
7851 return -EINVAL;
7852 }
7853
Jens Axboe6c271ce2019-01-10 11:22:30 -07007854 if (p.flags & ~(IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL |
Jens Axboe8110c1a2019-12-28 15:39:54 -07007855 IORING_SETUP_SQ_AFF | IORING_SETUP_CQSIZE |
Pavel Begunkov24369c22020-01-28 03:15:48 +03007856 IORING_SETUP_CLAMP | IORING_SETUP_ATTACH_WQ))
Jens Axboe2b188cc2019-01-07 10:46:33 -07007857 return -EINVAL;
7858
7859 ret = io_uring_create(entries, &p);
7860 if (ret < 0)
7861 return ret;
7862
7863 if (copy_to_user(params, &p, sizeof(p)))
7864 return -EFAULT;
7865
7866 return ret;
7867}
7868
7869SYSCALL_DEFINE2(io_uring_setup, u32, entries,
7870 struct io_uring_params __user *, params)
7871{
7872 return io_uring_setup(entries, params);
7873}
7874
Jens Axboe66f4af92020-01-16 15:36:52 -07007875static int io_probe(struct io_ring_ctx *ctx, void __user *arg, unsigned nr_args)
7876{
7877 struct io_uring_probe *p;
7878 size_t size;
7879 int i, ret;
7880
7881 size = struct_size(p, ops, nr_args);
7882 if (size == SIZE_MAX)
7883 return -EOVERFLOW;
7884 p = kzalloc(size, GFP_KERNEL);
7885 if (!p)
7886 return -ENOMEM;
7887
7888 ret = -EFAULT;
7889 if (copy_from_user(p, arg, size))
7890 goto out;
7891 ret = -EINVAL;
7892 if (memchr_inv(p, 0, size))
7893 goto out;
7894
7895 p->last_op = IORING_OP_LAST - 1;
7896 if (nr_args > IORING_OP_LAST)
7897 nr_args = IORING_OP_LAST;
7898
7899 for (i = 0; i < nr_args; i++) {
7900 p->ops[i].op = i;
7901 if (!io_op_defs[i].not_supported)
7902 p->ops[i].flags = IO_URING_OP_SUPPORTED;
7903 }
7904 p->ops_len = i;
7905
7906 ret = 0;
7907 if (copy_to_user(arg, p, size))
7908 ret = -EFAULT;
7909out:
7910 kfree(p);
7911 return ret;
7912}
7913
Jens Axboe071698e2020-01-28 10:04:42 -07007914static int io_register_personality(struct io_ring_ctx *ctx)
7915{
7916 const struct cred *creds = get_current_cred();
7917 int id;
7918
7919 id = idr_alloc_cyclic(&ctx->personality_idr, (void *) creds, 1,
7920 USHRT_MAX, GFP_KERNEL);
7921 if (id < 0)
7922 put_cred(creds);
7923 return id;
7924}
7925
7926static int io_unregister_personality(struct io_ring_ctx *ctx, unsigned id)
7927{
7928 const struct cred *old_creds;
7929
7930 old_creds = idr_remove(&ctx->personality_idr, id);
7931 if (old_creds) {
7932 put_cred(old_creds);
7933 return 0;
7934 }
7935
7936 return -EINVAL;
7937}
7938
7939static bool io_register_op_must_quiesce(int op)
7940{
7941 switch (op) {
7942 case IORING_UNREGISTER_FILES:
7943 case IORING_REGISTER_FILES_UPDATE:
7944 case IORING_REGISTER_PROBE:
7945 case IORING_REGISTER_PERSONALITY:
7946 case IORING_UNREGISTER_PERSONALITY:
7947 return false;
7948 default:
7949 return true;
7950 }
7951}
7952
Jens Axboeedafcce2019-01-09 09:16:05 -07007953static int __io_uring_register(struct io_ring_ctx *ctx, unsigned opcode,
7954 void __user *arg, unsigned nr_args)
Jens Axboeb19062a2019-04-15 10:49:38 -06007955 __releases(ctx->uring_lock)
7956 __acquires(ctx->uring_lock)
Jens Axboeedafcce2019-01-09 09:16:05 -07007957{
7958 int ret;
7959
Jens Axboe35fa71a2019-04-22 10:23:23 -06007960 /*
7961 * We're inside the ring mutex, if the ref is already dying, then
7962 * someone else killed the ctx or is already going through
7963 * io_uring_register().
7964 */
7965 if (percpu_ref_is_dying(&ctx->refs))
7966 return -ENXIO;
7967
Jens Axboe071698e2020-01-28 10:04:42 -07007968 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07007969 percpu_ref_kill(&ctx->refs);
Jens Axboeb19062a2019-04-15 10:49:38 -06007970
Jens Axboe05f3fb32019-12-09 11:22:50 -07007971 /*
7972 * Drop uring mutex before waiting for references to exit. If
7973 * another thread is currently inside io_uring_enter() it might
7974 * need to grab the uring_lock to make progress. If we hold it
7975 * here across the drain wait, then we can deadlock. It's safe
7976 * to drop the mutex here, since no new references will come in
7977 * after we've killed the percpu ref.
7978 */
7979 mutex_unlock(&ctx->uring_lock);
Jens Axboec1503682020-01-08 08:26:07 -07007980 ret = wait_for_completion_interruptible(&ctx->completions[0]);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007981 mutex_lock(&ctx->uring_lock);
Jens Axboec1503682020-01-08 08:26:07 -07007982 if (ret) {
7983 percpu_ref_resurrect(&ctx->refs);
7984 ret = -EINTR;
7985 goto out;
7986 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07007987 }
Jens Axboeedafcce2019-01-09 09:16:05 -07007988
7989 switch (opcode) {
7990 case IORING_REGISTER_BUFFERS:
7991 ret = io_sqe_buffer_register(ctx, arg, nr_args);
7992 break;
7993 case IORING_UNREGISTER_BUFFERS:
7994 ret = -EINVAL;
7995 if (arg || nr_args)
7996 break;
7997 ret = io_sqe_buffer_unregister(ctx);
7998 break;
Jens Axboe6b063142019-01-10 22:13:58 -07007999 case IORING_REGISTER_FILES:
8000 ret = io_sqe_files_register(ctx, arg, nr_args);
8001 break;
8002 case IORING_UNREGISTER_FILES:
8003 ret = -EINVAL;
8004 if (arg || nr_args)
8005 break;
8006 ret = io_sqe_files_unregister(ctx);
8007 break;
Jens Axboec3a31e62019-10-03 13:59:56 -06008008 case IORING_REGISTER_FILES_UPDATE:
8009 ret = io_sqe_files_update(ctx, arg, nr_args);
8010 break;
Jens Axboe9b402842019-04-11 11:45:41 -06008011 case IORING_REGISTER_EVENTFD:
Jens Axboef2842ab2020-01-08 11:04:00 -07008012 case IORING_REGISTER_EVENTFD_ASYNC:
Jens Axboe9b402842019-04-11 11:45:41 -06008013 ret = -EINVAL;
8014 if (nr_args != 1)
8015 break;
8016 ret = io_eventfd_register(ctx, arg);
Jens Axboef2842ab2020-01-08 11:04:00 -07008017 if (ret)
8018 break;
8019 if (opcode == IORING_REGISTER_EVENTFD_ASYNC)
8020 ctx->eventfd_async = 1;
8021 else
8022 ctx->eventfd_async = 0;
Jens Axboe9b402842019-04-11 11:45:41 -06008023 break;
8024 case IORING_UNREGISTER_EVENTFD:
8025 ret = -EINVAL;
8026 if (arg || nr_args)
8027 break;
8028 ret = io_eventfd_unregister(ctx);
8029 break;
Jens Axboe66f4af92020-01-16 15:36:52 -07008030 case IORING_REGISTER_PROBE:
8031 ret = -EINVAL;
8032 if (!arg || nr_args > 256)
8033 break;
8034 ret = io_probe(ctx, arg, nr_args);
8035 break;
Jens Axboe071698e2020-01-28 10:04:42 -07008036 case IORING_REGISTER_PERSONALITY:
8037 ret = -EINVAL;
8038 if (arg || nr_args)
8039 break;
8040 ret = io_register_personality(ctx);
8041 break;
8042 case IORING_UNREGISTER_PERSONALITY:
8043 ret = -EINVAL;
8044 if (arg)
8045 break;
8046 ret = io_unregister_personality(ctx, nr_args);
8047 break;
Jens Axboeedafcce2019-01-09 09:16:05 -07008048 default:
8049 ret = -EINVAL;
8050 break;
8051 }
8052
Jens Axboe071698e2020-01-28 10:04:42 -07008053 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07008054 /* bring the ctx back to life */
Jens Axboe05f3fb32019-12-09 11:22:50 -07008055 percpu_ref_reinit(&ctx->refs);
Jens Axboec1503682020-01-08 08:26:07 -07008056out:
8057 reinit_completion(&ctx->completions[0]);
Jens Axboe05f3fb32019-12-09 11:22:50 -07008058 }
Jens Axboeedafcce2019-01-09 09:16:05 -07008059 return ret;
8060}
8061
8062SYSCALL_DEFINE4(io_uring_register, unsigned int, fd, unsigned int, opcode,
8063 void __user *, arg, unsigned int, nr_args)
8064{
8065 struct io_ring_ctx *ctx;
8066 long ret = -EBADF;
8067 struct fd f;
8068
8069 f = fdget(fd);
8070 if (!f.file)
8071 return -EBADF;
8072
8073 ret = -EOPNOTSUPP;
8074 if (f.file->f_op != &io_uring_fops)
8075 goto out_fput;
8076
8077 ctx = f.file->private_data;
8078
8079 mutex_lock(&ctx->uring_lock);
8080 ret = __io_uring_register(ctx, opcode, arg, nr_args);
8081 mutex_unlock(&ctx->uring_lock);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02008082 trace_io_uring_register(ctx, opcode, ctx->nr_user_files, ctx->nr_user_bufs,
8083 ctx->cq_ev_fd != NULL, ret);
Jens Axboeedafcce2019-01-09 09:16:05 -07008084out_fput:
8085 fdput(f);
8086 return ret;
8087}
8088
Jens Axboe2b188cc2019-01-07 10:46:33 -07008089static int __init io_uring_init(void)
8090{
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008091#define __BUILD_BUG_VERIFY_ELEMENT(stype, eoffset, etype, ename) do { \
8092 BUILD_BUG_ON(offsetof(stype, ename) != eoffset); \
8093 BUILD_BUG_ON(sizeof(etype) != sizeof_field(stype, ename)); \
8094} while (0)
8095
8096#define BUILD_BUG_SQE_ELEM(eoffset, etype, ename) \
8097 __BUILD_BUG_VERIFY_ELEMENT(struct io_uring_sqe, eoffset, etype, ename)
8098 BUILD_BUG_ON(sizeof(struct io_uring_sqe) != 64);
8099 BUILD_BUG_SQE_ELEM(0, __u8, opcode);
8100 BUILD_BUG_SQE_ELEM(1, __u8, flags);
8101 BUILD_BUG_SQE_ELEM(2, __u16, ioprio);
8102 BUILD_BUG_SQE_ELEM(4, __s32, fd);
8103 BUILD_BUG_SQE_ELEM(8, __u64, off);
8104 BUILD_BUG_SQE_ELEM(8, __u64, addr2);
8105 BUILD_BUG_SQE_ELEM(16, __u64, addr);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03008106 BUILD_BUG_SQE_ELEM(16, __u64, splice_off_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008107 BUILD_BUG_SQE_ELEM(24, __u32, len);
8108 BUILD_BUG_SQE_ELEM(28, __kernel_rwf_t, rw_flags);
8109 BUILD_BUG_SQE_ELEM(28, /* compat */ int, rw_flags);
8110 BUILD_BUG_SQE_ELEM(28, /* compat */ __u32, rw_flags);
8111 BUILD_BUG_SQE_ELEM(28, __u32, fsync_flags);
8112 BUILD_BUG_SQE_ELEM(28, __u16, poll_events);
8113 BUILD_BUG_SQE_ELEM(28, __u32, sync_range_flags);
8114 BUILD_BUG_SQE_ELEM(28, __u32, msg_flags);
8115 BUILD_BUG_SQE_ELEM(28, __u32, timeout_flags);
8116 BUILD_BUG_SQE_ELEM(28, __u32, accept_flags);
8117 BUILD_BUG_SQE_ELEM(28, __u32, cancel_flags);
8118 BUILD_BUG_SQE_ELEM(28, __u32, open_flags);
8119 BUILD_BUG_SQE_ELEM(28, __u32, statx_flags);
8120 BUILD_BUG_SQE_ELEM(28, __u32, fadvise_advice);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03008121 BUILD_BUG_SQE_ELEM(28, __u32, splice_flags);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008122 BUILD_BUG_SQE_ELEM(32, __u64, user_data);
8123 BUILD_BUG_SQE_ELEM(40, __u16, buf_index);
8124 BUILD_BUG_SQE_ELEM(42, __u16, personality);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03008125 BUILD_BUG_SQE_ELEM(44, __s32, splice_fd_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008126
Jens Axboed3656342019-12-18 09:50:26 -07008127 BUILD_BUG_ON(ARRAY_SIZE(io_op_defs) != IORING_OP_LAST);
Jens Axboe84557872020-03-03 15:28:17 -07008128 BUILD_BUG_ON(__REQ_F_LAST_BIT >= 8 * sizeof(int));
Jens Axboe2b188cc2019-01-07 10:46:33 -07008129 req_cachep = KMEM_CACHE(io_kiocb, SLAB_HWCACHE_ALIGN | SLAB_PANIC);
8130 return 0;
8131};
8132__initcall(io_uring_init);