blob: ecfd7f054ef68ae778bb562653f6015d778eaff1 [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 Axboe85faa7b2020-04-09 18:14:00 -0600329
330 struct work_struct exit_work;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700331};
332
Jens Axboe09bb8392019-03-13 12:39:28 -0600333/*
334 * First field must be the file pointer in all the
335 * iocb unions! See also 'struct kiocb' in <linux/fs.h>
336 */
Jens Axboe221c5eb2019-01-17 09:41:58 -0700337struct io_poll_iocb {
338 struct file *file;
Jens Axboe0969e782019-12-17 18:40:57 -0700339 union {
340 struct wait_queue_head *head;
341 u64 addr;
342 };
Jens Axboe221c5eb2019-01-17 09:41:58 -0700343 __poll_t events;
Jens Axboe8c838782019-03-12 15:48:16 -0600344 bool done;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700345 bool canceled;
Jens Axboe392edb42019-12-09 17:52:20 -0700346 struct wait_queue_entry wait;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700347};
348
Jens Axboeb5dba592019-12-11 14:02:38 -0700349struct io_close {
350 struct file *file;
351 struct file *put_file;
352 int fd;
353};
354
Jens Axboead8a48a2019-11-15 08:49:11 -0700355struct io_timeout_data {
356 struct io_kiocb *req;
357 struct hrtimer timer;
358 struct timespec64 ts;
359 enum hrtimer_mode mode;
360};
361
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700362struct io_accept {
363 struct file *file;
364 struct sockaddr __user *addr;
365 int __user *addr_len;
366 int flags;
Jens Axboe09952e32020-03-19 20:16:56 -0600367 unsigned long nofile;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700368};
369
370struct io_sync {
371 struct file *file;
372 loff_t len;
373 loff_t off;
374 int flags;
Jens Axboed63d1b52019-12-10 10:38:56 -0700375 int mode;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700376};
377
Jens Axboefbf23842019-12-17 18:45:56 -0700378struct io_cancel {
379 struct file *file;
380 u64 addr;
381};
382
Jens Axboeb29472e2019-12-17 18:50:29 -0700383struct io_timeout {
384 struct file *file;
385 u64 addr;
386 int flags;
Pavel Begunkovb55ce732020-04-15 00:39:49 +0300387 u32 count;
Jens Axboeb29472e2019-12-17 18:50:29 -0700388};
389
Jens Axboe9adbd452019-12-20 08:45:55 -0700390struct io_rw {
391 /* NOTE: kiocb has the file as the first member, so don't do it here */
392 struct kiocb kiocb;
393 u64 addr;
394 u64 len;
395};
396
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700397struct io_connect {
398 struct file *file;
399 struct sockaddr __user *addr;
400 int addr_len;
401};
402
Jens Axboee47293f2019-12-20 08:58:21 -0700403struct io_sr_msg {
404 struct file *file;
Jens Axboefddafac2020-01-04 20:19:44 -0700405 union {
406 struct user_msghdr __user *msg;
407 void __user *buf;
408 };
Jens Axboee47293f2019-12-20 08:58:21 -0700409 int msg_flags;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700410 int bgid;
Jens Axboefddafac2020-01-04 20:19:44 -0700411 size_t len;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700412 struct io_buffer *kbuf;
Jens Axboee47293f2019-12-20 08:58:21 -0700413};
414
Jens Axboe15b71ab2019-12-11 11:20:36 -0700415struct io_open {
416 struct file *file;
417 int dfd;
Jens Axboeeddc7ef2019-12-13 21:18:10 -0700418 union {
Jens Axboeeddc7ef2019-12-13 21:18:10 -0700419 unsigned mask;
420 };
Jens Axboe15b71ab2019-12-11 11:20:36 -0700421 struct filename *filename;
Jens Axboeeddc7ef2019-12-13 21:18:10 -0700422 struct statx __user *buffer;
Jens Axboec12cedf2020-01-08 17:41:21 -0700423 struct open_how how;
Jens Axboe4022e7a2020-03-19 19:23:18 -0600424 unsigned long nofile;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700425};
426
Jens Axboe05f3fb32019-12-09 11:22:50 -0700427struct io_files_update {
428 struct file *file;
429 u64 arg;
430 u32 nr_args;
431 u32 offset;
432};
433
Jens Axboe4840e412019-12-25 22:03:45 -0700434struct io_fadvise {
435 struct file *file;
436 u64 offset;
437 u32 len;
438 u32 advice;
439};
440
Jens Axboec1ca7572019-12-25 22:18:28 -0700441struct io_madvise {
442 struct file *file;
443 u64 addr;
444 u32 len;
445 u32 advice;
446};
447
Jens Axboe3e4827b2020-01-08 15:18:09 -0700448struct io_epoll {
449 struct file *file;
450 int epfd;
451 int op;
452 int fd;
453 struct epoll_event event;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700454};
455
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300456struct io_splice {
457 struct file *file_out;
458 struct file *file_in;
459 loff_t off_out;
460 loff_t off_in;
461 u64 len;
462 unsigned int flags;
463};
464
Jens Axboeddf0322d2020-02-23 16:41:33 -0700465struct io_provide_buf {
466 struct file *file;
467 __u64 addr;
468 __s32 len;
469 __u32 bgid;
470 __u16 nbufs;
471 __u16 bid;
472};
473
Jens Axboef499a022019-12-02 16:28:46 -0700474struct io_async_connect {
475 struct sockaddr_storage address;
476};
477
Jens Axboe03b12302019-12-02 18:50:25 -0700478struct io_async_msghdr {
479 struct iovec fast_iov[UIO_FASTIOV];
480 struct iovec *iov;
481 struct sockaddr __user *uaddr;
482 struct msghdr msg;
Jens Axboeb5379162020-02-09 11:29:15 -0700483 struct sockaddr_storage addr;
Jens Axboe03b12302019-12-02 18:50:25 -0700484};
485
Jens Axboef67676d2019-12-02 11:03:47 -0700486struct io_async_rw {
487 struct iovec fast_iov[UIO_FASTIOV];
488 struct iovec *iov;
489 ssize_t nr_segs;
490 ssize_t size;
491};
492
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700493struct io_async_ctx {
Jens Axboef67676d2019-12-02 11:03:47 -0700494 union {
495 struct io_async_rw rw;
Jens Axboe03b12302019-12-02 18:50:25 -0700496 struct io_async_msghdr msg;
Jens Axboef499a022019-12-02 16:28:46 -0700497 struct io_async_connect connect;
Jens Axboe2d283902019-12-04 11:08:05 -0700498 struct io_timeout_data timeout;
Jens Axboef67676d2019-12-02 11:03:47 -0700499 };
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700500};
501
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300502enum {
503 REQ_F_FIXED_FILE_BIT = IOSQE_FIXED_FILE_BIT,
504 REQ_F_IO_DRAIN_BIT = IOSQE_IO_DRAIN_BIT,
505 REQ_F_LINK_BIT = IOSQE_IO_LINK_BIT,
506 REQ_F_HARDLINK_BIT = IOSQE_IO_HARDLINK_BIT,
507 REQ_F_FORCE_ASYNC_BIT = IOSQE_ASYNC_BIT,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700508 REQ_F_BUFFER_SELECT_BIT = IOSQE_BUFFER_SELECT_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300509
Pavel Begunkovdea3b492020-04-12 02:05:04 +0300510 REQ_F_LINK_HEAD_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300511 REQ_F_LINK_NEXT_BIT,
512 REQ_F_FAIL_LINK_BIT,
513 REQ_F_INFLIGHT_BIT,
514 REQ_F_CUR_POS_BIT,
515 REQ_F_NOWAIT_BIT,
516 REQ_F_IOPOLL_COMPLETED_BIT,
517 REQ_F_LINK_TIMEOUT_BIT,
518 REQ_F_TIMEOUT_BIT,
519 REQ_F_ISREG_BIT,
520 REQ_F_MUST_PUNT_BIT,
521 REQ_F_TIMEOUT_NOSEQ_BIT,
522 REQ_F_COMP_LOCKED_BIT,
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300523 REQ_F_NEED_CLEANUP_BIT,
Jens Axboe2ca10252020-02-13 17:17:35 -0700524 REQ_F_OVERFLOW_BIT,
Jens Axboed7718a92020-02-14 22:23:12 -0700525 REQ_F_POLLED_BIT,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700526 REQ_F_BUFFER_SELECTED_BIT,
Jens Axboe5b0bbee2020-04-27 10:41:22 -0600527 REQ_F_NO_FILE_TABLE_BIT,
Jens Axboe84557872020-03-03 15:28:17 -0700528
529 /* not a real bit, just to check we're not overflowing the space */
530 __REQ_F_LAST_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300531};
532
533enum {
534 /* ctx owns file */
535 REQ_F_FIXED_FILE = BIT(REQ_F_FIXED_FILE_BIT),
536 /* drain existing IO first */
537 REQ_F_IO_DRAIN = BIT(REQ_F_IO_DRAIN_BIT),
538 /* linked sqes */
539 REQ_F_LINK = BIT(REQ_F_LINK_BIT),
540 /* doesn't sever on completion < 0 */
541 REQ_F_HARDLINK = BIT(REQ_F_HARDLINK_BIT),
542 /* IOSQE_ASYNC */
543 REQ_F_FORCE_ASYNC = BIT(REQ_F_FORCE_ASYNC_BIT),
Jens Axboebcda7ba2020-02-23 16:42:51 -0700544 /* IOSQE_BUFFER_SELECT */
545 REQ_F_BUFFER_SELECT = BIT(REQ_F_BUFFER_SELECT_BIT),
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300546
Pavel Begunkovdea3b492020-04-12 02:05:04 +0300547 /* head of a link */
548 REQ_F_LINK_HEAD = BIT(REQ_F_LINK_HEAD_BIT),
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300549 /* already grabbed next link */
550 REQ_F_LINK_NEXT = BIT(REQ_F_LINK_NEXT_BIT),
551 /* fail rest of links */
552 REQ_F_FAIL_LINK = BIT(REQ_F_FAIL_LINK_BIT),
553 /* on inflight list */
554 REQ_F_INFLIGHT = BIT(REQ_F_INFLIGHT_BIT),
555 /* read/write uses file position */
556 REQ_F_CUR_POS = BIT(REQ_F_CUR_POS_BIT),
557 /* must not punt to workers */
558 REQ_F_NOWAIT = BIT(REQ_F_NOWAIT_BIT),
559 /* polled IO has completed */
560 REQ_F_IOPOLL_COMPLETED = BIT(REQ_F_IOPOLL_COMPLETED_BIT),
561 /* has linked timeout */
562 REQ_F_LINK_TIMEOUT = BIT(REQ_F_LINK_TIMEOUT_BIT),
563 /* timeout request */
564 REQ_F_TIMEOUT = BIT(REQ_F_TIMEOUT_BIT),
565 /* regular file */
566 REQ_F_ISREG = BIT(REQ_F_ISREG_BIT),
567 /* must be punted even for NONBLOCK */
568 REQ_F_MUST_PUNT = BIT(REQ_F_MUST_PUNT_BIT),
569 /* no timeout sequence */
570 REQ_F_TIMEOUT_NOSEQ = BIT(REQ_F_TIMEOUT_NOSEQ_BIT),
571 /* completion under lock */
572 REQ_F_COMP_LOCKED = BIT(REQ_F_COMP_LOCKED_BIT),
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300573 /* needs cleanup */
574 REQ_F_NEED_CLEANUP = BIT(REQ_F_NEED_CLEANUP_BIT),
Jens Axboe2ca10252020-02-13 17:17:35 -0700575 /* in overflow list */
576 REQ_F_OVERFLOW = BIT(REQ_F_OVERFLOW_BIT),
Jens Axboed7718a92020-02-14 22:23:12 -0700577 /* already went through poll handler */
578 REQ_F_POLLED = BIT(REQ_F_POLLED_BIT),
Jens Axboebcda7ba2020-02-23 16:42:51 -0700579 /* buffer already selected */
580 REQ_F_BUFFER_SELECTED = BIT(REQ_F_BUFFER_SELECTED_BIT),
Jens Axboe5b0bbee2020-04-27 10:41:22 -0600581 /* doesn't need file table for this request */
582 REQ_F_NO_FILE_TABLE = BIT(REQ_F_NO_FILE_TABLE_BIT),
Jens Axboed7718a92020-02-14 22:23:12 -0700583};
584
585struct async_poll {
586 struct io_poll_iocb poll;
587 struct io_wq_work work;
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300588};
589
Jens Axboe09bb8392019-03-13 12:39:28 -0600590/*
591 * NOTE! Each of the iocb union members has the file pointer
592 * as the first entry in their struct definition. So you can
593 * access the file pointer through any of the sub-structs,
594 * or directly as just 'ki_filp' in this struct.
595 */
Jens Axboe2b188cc2019-01-07 10:46:33 -0700596struct io_kiocb {
Jens Axboe221c5eb2019-01-17 09:41:58 -0700597 union {
Jens Axboe09bb8392019-03-13 12:39:28 -0600598 struct file *file;
Jens Axboe9adbd452019-12-20 08:45:55 -0700599 struct io_rw rw;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700600 struct io_poll_iocb poll;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700601 struct io_accept accept;
602 struct io_sync sync;
Jens Axboefbf23842019-12-17 18:45:56 -0700603 struct io_cancel cancel;
Jens Axboeb29472e2019-12-17 18:50:29 -0700604 struct io_timeout timeout;
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700605 struct io_connect connect;
Jens Axboee47293f2019-12-20 08:58:21 -0700606 struct io_sr_msg sr_msg;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700607 struct io_open open;
Jens Axboeb5dba592019-12-11 14:02:38 -0700608 struct io_close close;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700609 struct io_files_update files_update;
Jens Axboe4840e412019-12-25 22:03:45 -0700610 struct io_fadvise fadvise;
Jens Axboec1ca7572019-12-25 22:18:28 -0700611 struct io_madvise madvise;
Jens Axboe3e4827b2020-01-08 15:18:09 -0700612 struct io_epoll epoll;
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300613 struct io_splice splice;
Jens Axboeddf0322d2020-02-23 16:41:33 -0700614 struct io_provide_buf pbuf;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700615 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700616
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700617 struct io_async_ctx *io;
Pavel Begunkovc398ecb2020-04-09 08:17:59 +0300618 int cflags;
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +0300619 bool needs_fixed_file;
Jens Axboed625c6e2019-12-17 19:53:05 -0700620 u8 opcode;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700621
622 struct io_ring_ctx *ctx;
Jens Axboed7718a92020-02-14 22:23:12 -0700623 struct list_head list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700624 unsigned int flags;
Jens Axboec16361c2019-01-17 08:39:48 -0700625 refcount_t refs;
Jens Axboe3537b6a2020-04-03 11:19:06 -0600626 struct task_struct *task;
627 unsigned long fsize;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700628 u64 user_data;
Jens Axboe9e645e112019-05-10 16:07:28 -0600629 u32 result;
Jens Axboede0617e2019-04-06 21:51:27 -0600630 u32 sequence;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700631
Jens Axboed7718a92020-02-14 22:23:12 -0700632 struct list_head link_list;
633
Jens Axboefcb323c2019-10-24 12:39:47 -0600634 struct list_head inflight_entry;
635
Xiaoguang Wang05589552020-03-31 14:05:18 +0800636 struct percpu_ref *fixed_file_refs;
637
Jens Axboeb41e9852020-02-17 09:52:41 -0700638 union {
639 /*
640 * Only commands that never go async can use the below fields,
Jens Axboed7718a92020-02-14 22:23:12 -0700641 * obviously. Right now only IORING_OP_POLL_ADD uses them, and
642 * async armed poll handlers for regular commands. The latter
643 * restore the work, if needed.
Jens Axboeb41e9852020-02-17 09:52:41 -0700644 */
645 struct {
Jens Axboeb41e9852020-02-17 09:52:41 -0700646 struct callback_head task_work;
Jens Axboed7718a92020-02-14 22:23:12 -0700647 struct hlist_node hash_node;
648 struct async_poll *apoll;
Jens Axboeb41e9852020-02-17 09:52:41 -0700649 };
650 struct io_wq_work work;
651 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700652};
653
654#define IO_PLUG_THRESHOLD 2
Jens Axboedef596e2019-01-09 08:59:42 -0700655#define IO_IOPOLL_BATCH 8
Jens Axboe2b188cc2019-01-07 10:46:33 -0700656
Jens Axboe9a56a232019-01-09 09:06:50 -0700657struct io_submit_state {
658 struct blk_plug plug;
659
660 /*
Jens Axboe2579f912019-01-09 09:10:43 -0700661 * io_kiocb alloc cache
662 */
663 void *reqs[IO_IOPOLL_BATCH];
Pavel Begunkov6c8a3132020-02-01 03:58:00 +0300664 unsigned int free_reqs;
Jens Axboe2579f912019-01-09 09:10:43 -0700665
666 /*
Jens Axboe9a56a232019-01-09 09:06:50 -0700667 * File reference cache
668 */
669 struct file *file;
670 unsigned int fd;
671 unsigned int has_refs;
672 unsigned int used_refs;
673 unsigned int ios_left;
674};
675
Jens Axboed3656342019-12-18 09:50:26 -0700676struct io_op_def {
677 /* needs req->io allocated for deferral/async */
678 unsigned async_ctx : 1;
679 /* needs current->mm setup, does mm access */
680 unsigned needs_mm : 1;
681 /* needs req->file assigned */
682 unsigned needs_file : 1;
Jens Axboed3656342019-12-18 09:50:26 -0700683 /* hash wq insertion if file is a regular file */
684 unsigned hash_reg_file : 1;
685 /* unbound wq insertion if file is a non-regular file */
686 unsigned unbound_nonreg_file : 1;
Jens Axboe66f4af92020-01-16 15:36:52 -0700687 /* opcode is not supported by this kernel */
688 unsigned not_supported : 1;
Jens Axboef86cd202020-01-29 13:46:44 -0700689 /* needs file table */
690 unsigned file_table : 1;
Jens Axboeff002b32020-02-07 16:05:21 -0700691 /* needs ->fs */
692 unsigned needs_fs : 1;
Jens Axboe8a727582020-02-20 09:59:44 -0700693 /* set if opcode supports polled "wait" */
694 unsigned pollin : 1;
695 unsigned pollout : 1;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700696 /* op supports buffer selection */
697 unsigned buffer_select : 1;
Jens Axboed3656342019-12-18 09:50:26 -0700698};
699
700static const struct io_op_def io_op_defs[] = {
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300701 [IORING_OP_NOP] = {},
702 [IORING_OP_READV] = {
Jens Axboed3656342019-12-18 09:50:26 -0700703 .async_ctx = 1,
704 .needs_mm = 1,
705 .needs_file = 1,
706 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700707 .pollin = 1,
Jens Axboe4d954c22020-02-27 07:31:19 -0700708 .buffer_select = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700709 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300710 [IORING_OP_WRITEV] = {
Jens Axboed3656342019-12-18 09:50:26 -0700711 .async_ctx = 1,
712 .needs_mm = 1,
713 .needs_file = 1,
714 .hash_reg_file = 1,
715 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700716 .pollout = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700717 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300718 [IORING_OP_FSYNC] = {
Jens Axboed3656342019-12-18 09:50:26 -0700719 .needs_file = 1,
720 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300721 [IORING_OP_READ_FIXED] = {
Jens Axboed3656342019-12-18 09:50:26 -0700722 .needs_file = 1,
723 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700724 .pollin = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700725 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300726 [IORING_OP_WRITE_FIXED] = {
Jens Axboed3656342019-12-18 09:50:26 -0700727 .needs_file = 1,
728 .hash_reg_file = 1,
729 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700730 .pollout = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700731 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300732 [IORING_OP_POLL_ADD] = {
Jens Axboed3656342019-12-18 09:50:26 -0700733 .needs_file = 1,
734 .unbound_nonreg_file = 1,
735 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300736 [IORING_OP_POLL_REMOVE] = {},
737 [IORING_OP_SYNC_FILE_RANGE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700738 .needs_file = 1,
739 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300740 [IORING_OP_SENDMSG] = {
Jens Axboed3656342019-12-18 09:50:26 -0700741 .async_ctx = 1,
742 .needs_mm = 1,
743 .needs_file = 1,
744 .unbound_nonreg_file = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700745 .needs_fs = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700746 .pollout = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700747 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300748 [IORING_OP_RECVMSG] = {
Jens Axboed3656342019-12-18 09:50:26 -0700749 .async_ctx = 1,
750 .needs_mm = 1,
751 .needs_file = 1,
752 .unbound_nonreg_file = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700753 .needs_fs = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700754 .pollin = 1,
Jens Axboe52de1fe2020-02-27 10:15:42 -0700755 .buffer_select = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700756 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300757 [IORING_OP_TIMEOUT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700758 .async_ctx = 1,
759 .needs_mm = 1,
760 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300761 [IORING_OP_TIMEOUT_REMOVE] = {},
762 [IORING_OP_ACCEPT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700763 .needs_mm = 1,
764 .needs_file = 1,
765 .unbound_nonreg_file = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700766 .file_table = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700767 .pollin = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700768 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300769 [IORING_OP_ASYNC_CANCEL] = {},
770 [IORING_OP_LINK_TIMEOUT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700771 .async_ctx = 1,
772 .needs_mm = 1,
773 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300774 [IORING_OP_CONNECT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700775 .async_ctx = 1,
776 .needs_mm = 1,
777 .needs_file = 1,
778 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700779 .pollout = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700780 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300781 [IORING_OP_FALLOCATE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700782 .needs_file = 1,
783 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300784 [IORING_OP_OPENAT] = {
Jens Axboef86cd202020-01-29 13:46:44 -0700785 .file_table = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700786 .needs_fs = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700787 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300788 [IORING_OP_CLOSE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700789 .needs_file = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700790 .file_table = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700791 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300792 [IORING_OP_FILES_UPDATE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700793 .needs_mm = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700794 .file_table = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700795 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300796 [IORING_OP_STATX] = {
Jens Axboed3656342019-12-18 09:50:26 -0700797 .needs_mm = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700798 .needs_fs = 1,
Jens Axboe5b0bbee2020-04-27 10:41:22 -0600799 .file_table = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700800 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300801 [IORING_OP_READ] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -0700802 .needs_mm = 1,
803 .needs_file = 1,
804 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700805 .pollin = 1,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700806 .buffer_select = 1,
Jens Axboe3a6820f2019-12-22 15:19:35 -0700807 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300808 [IORING_OP_WRITE] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -0700809 .needs_mm = 1,
810 .needs_file = 1,
811 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700812 .pollout = 1,
Jens Axboe3a6820f2019-12-22 15:19:35 -0700813 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300814 [IORING_OP_FADVISE] = {
Jens Axboe4840e412019-12-25 22:03:45 -0700815 .needs_file = 1,
816 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300817 [IORING_OP_MADVISE] = {
Jens Axboec1ca7572019-12-25 22:18:28 -0700818 .needs_mm = 1,
819 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300820 [IORING_OP_SEND] = {
Jens Axboefddafac2020-01-04 20:19:44 -0700821 .needs_mm = 1,
822 .needs_file = 1,
823 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700824 .pollout = 1,
Jens Axboefddafac2020-01-04 20:19:44 -0700825 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300826 [IORING_OP_RECV] = {
Jens Axboefddafac2020-01-04 20:19:44 -0700827 .needs_mm = 1,
828 .needs_file = 1,
829 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700830 .pollin = 1,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700831 .buffer_select = 1,
Jens Axboefddafac2020-01-04 20:19:44 -0700832 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300833 [IORING_OP_OPENAT2] = {
Jens 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;
Jens Axboe583863e2020-05-17 09:20:00 -0600927 init_waitqueue_head(&ctx->sqo_wait);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700928 init_waitqueue_head(&ctx->cq_wait);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700929 INIT_LIST_HEAD(&ctx->cq_overflow_list);
Jens Axboe206aefd2019-11-07 18:27:42 -0700930 init_completion(&ctx->completions[0]);
931 init_completion(&ctx->completions[1]);
Jens Axboe5a2e7452020-02-23 16:23:11 -0700932 idr_init(&ctx->io_buffer_idr);
Jens Axboe071698e2020-01-28 10:04:42 -0700933 idr_init(&ctx->personality_idr);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700934 mutex_init(&ctx->uring_lock);
935 init_waitqueue_head(&ctx->wait);
936 spin_lock_init(&ctx->completion_lock);
Jens Axboedef596e2019-01-09 08:59:42 -0700937 INIT_LIST_HEAD(&ctx->poll_list);
Jens Axboede0617e2019-04-06 21:51:27 -0600938 INIT_LIST_HEAD(&ctx->defer_list);
Jens Axboe5262f562019-09-17 12:26:57 -0600939 INIT_LIST_HEAD(&ctx->timeout_list);
Jens Axboefcb323c2019-10-24 12:39:47 -0600940 init_waitqueue_head(&ctx->inflight_wait);
941 spin_lock_init(&ctx->inflight_lock);
942 INIT_LIST_HEAD(&ctx->inflight_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700943 return ctx;
Jens Axboe206aefd2019-11-07 18:27:42 -0700944err:
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700945 if (ctx->fallback_req)
946 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe206aefd2019-11-07 18:27:42 -0700947 kfree(ctx->completions);
Jens Axboe78076bb2019-12-04 19:56:40 -0700948 kfree(ctx->cancel_hash);
Jens Axboe206aefd2019-11-07 18:27:42 -0700949 kfree(ctx);
950 return NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700951}
952
Bob Liu9d858b22019-11-13 18:06:25 +0800953static inline bool __req_need_defer(struct io_kiocb *req)
Jens Axboede0617e2019-04-06 21:51:27 -0600954{
Jackie Liua197f662019-11-08 08:09:12 -0700955 struct io_ring_ctx *ctx = req->ctx;
956
Pavel Begunkov31af27c2020-04-15 00:39:50 +0300957 return req->sequence != ctx->cached_cq_tail
958 + atomic_read(&ctx->cached_cq_overflow);
Jens Axboede0617e2019-04-06 21:51:27 -0600959}
960
Bob Liu9d858b22019-11-13 18:06:25 +0800961static inline bool req_need_defer(struct io_kiocb *req)
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600962{
Pavel Begunkov87987892020-01-18 01:22:30 +0300963 if (unlikely(req->flags & REQ_F_IO_DRAIN))
Bob Liu9d858b22019-11-13 18:06:25 +0800964 return __req_need_defer(req);
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600965
Bob Liu9d858b22019-11-13 18:06:25 +0800966 return false;
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600967}
968
969static struct io_kiocb *io_get_deferred_req(struct io_ring_ctx *ctx)
Jens Axboede0617e2019-04-06 21:51:27 -0600970{
971 struct io_kiocb *req;
972
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600973 req = list_first_entry_or_null(&ctx->defer_list, struct io_kiocb, list);
Bob Liu9d858b22019-11-13 18:06:25 +0800974 if (req && !req_need_defer(req)) {
Jens Axboede0617e2019-04-06 21:51:27 -0600975 list_del_init(&req->list);
976 return req;
977 }
978
979 return NULL;
980}
981
Jens Axboe5262f562019-09-17 12:26:57 -0600982static struct io_kiocb *io_get_timeout_req(struct io_ring_ctx *ctx)
983{
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600984 struct io_kiocb *req;
985
986 req = list_first_entry_or_null(&ctx->timeout_list, struct io_kiocb, list);
Jens Axboe93bd25b2019-11-11 23:34:31 -0700987 if (req) {
988 if (req->flags & REQ_F_TIMEOUT_NOSEQ)
989 return NULL;
Linus Torvaldsfb4b3d32019-11-25 10:40:27 -0800990 if (!__req_need_defer(req)) {
Jens Axboe93bd25b2019-11-11 23:34:31 -0700991 list_del_init(&req->list);
992 return req;
993 }
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600994 }
995
996 return NULL;
Jens Axboe5262f562019-09-17 12:26:57 -0600997}
998
Jens Axboede0617e2019-04-06 21:51:27 -0600999static void __io_commit_cqring(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001000{
Hristo Venev75b28af2019-08-26 17:23:46 +00001001 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001002
Pavel Begunkov07910152020-01-17 03:52:46 +03001003 /* order cqe stores with ring update */
1004 smp_store_release(&rings->cq.tail, ctx->cached_cq_tail);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001005
Pavel Begunkov07910152020-01-17 03:52:46 +03001006 if (wq_has_sleeper(&ctx->cq_wait)) {
1007 wake_up_interruptible(&ctx->cq_wait);
1008 kill_fasync(&ctx->cq_fasync, SIGIO, POLL_IN);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001009 }
1010}
1011
Jens Axboecccf0ee2020-01-27 16:34:48 -07001012static inline void io_req_work_grab_env(struct io_kiocb *req,
1013 const struct io_op_def *def)
Jens Axboe18d9be12019-09-10 09:13:05 -06001014{
Jens Axboecccf0ee2020-01-27 16:34:48 -07001015 if (!req->work.mm && def->needs_mm) {
1016 mmgrab(current->mm);
1017 req->work.mm = current->mm;
1018 }
1019 if (!req->work.creds)
1020 req->work.creds = get_current_cred();
Jens Axboeff002b32020-02-07 16:05:21 -07001021 if (!req->work.fs && def->needs_fs) {
1022 spin_lock(&current->fs->lock);
1023 if (!current->fs->in_exec) {
1024 req->work.fs = current->fs;
1025 req->work.fs->users++;
1026 } else {
1027 req->work.flags |= IO_WQ_WORK_CANCEL;
1028 }
1029 spin_unlock(&current->fs->lock);
1030 }
Jens Axboe6ab23142020-02-08 20:23:59 -07001031 if (!req->work.task_pid)
1032 req->work.task_pid = task_pid_vnr(current);
Jens Axboecccf0ee2020-01-27 16:34:48 -07001033}
1034
1035static inline void io_req_work_drop_env(struct io_kiocb *req)
1036{
1037 if (req->work.mm) {
1038 mmdrop(req->work.mm);
1039 req->work.mm = NULL;
1040 }
1041 if (req->work.creds) {
1042 put_cred(req->work.creds);
1043 req->work.creds = NULL;
1044 }
Jens Axboeff002b32020-02-07 16:05:21 -07001045 if (req->work.fs) {
1046 struct fs_struct *fs = req->work.fs;
1047
1048 spin_lock(&req->work.fs->lock);
1049 if (--fs->users)
1050 fs = NULL;
1051 spin_unlock(&req->work.fs->lock);
1052 if (fs)
1053 free_fs_struct(fs);
1054 }
Jens Axboe561fb042019-10-24 07:25:42 -06001055}
1056
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001057static inline void io_prep_async_work(struct io_kiocb *req,
Jens Axboe94ae5e72019-11-14 19:39:52 -07001058 struct io_kiocb **link)
Jens Axboe561fb042019-10-24 07:25:42 -06001059{
Jens Axboed3656342019-12-18 09:50:26 -07001060 const struct io_op_def *def = &io_op_defs[req->opcode];
Jens Axboe54a91f32019-09-10 09:15:04 -06001061
Jens Axboed3656342019-12-18 09:50:26 -07001062 if (req->flags & REQ_F_ISREG) {
1063 if (def->hash_reg_file)
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001064 io_wq_hash_work(&req->work, file_inode(req->file));
Jens Axboed3656342019-12-18 09:50:26 -07001065 } else {
1066 if (def->unbound_nonreg_file)
Jens Axboe3529d8c2019-12-19 18:24:38 -07001067 req->work.flags |= IO_WQ_WORK_UNBOUND;
Jens Axboe54a91f32019-09-10 09:15:04 -06001068 }
Jens Axboecccf0ee2020-01-27 16:34:48 -07001069
1070 io_req_work_grab_env(req, def);
Jens Axboe54a91f32019-09-10 09:15:04 -06001071
Jens Axboe94ae5e72019-11-14 19:39:52 -07001072 *link = io_prep_linked_timeout(req);
Jens Axboe561fb042019-10-24 07:25:42 -06001073}
1074
Jackie Liua197f662019-11-08 08:09:12 -07001075static inline void io_queue_async_work(struct io_kiocb *req)
Jens Axboe561fb042019-10-24 07:25:42 -06001076{
Jackie Liua197f662019-11-08 08:09:12 -07001077 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001078 struct io_kiocb *link;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001079
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001080 io_prep_async_work(req, &link);
Jens Axboe561fb042019-10-24 07:25:42 -06001081
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001082 trace_io_uring_queue_async_work(ctx, io_wq_is_hashed(&req->work), req,
1083 &req->work, req->flags);
1084 io_wq_enqueue(ctx->io_wq, &req->work);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001085
1086 if (link)
1087 io_queue_linked_timeout(link);
Jens Axboe18d9be12019-09-10 09:13:05 -06001088}
1089
Jens Axboe5262f562019-09-17 12:26:57 -06001090static void io_kill_timeout(struct io_kiocb *req)
1091{
1092 int ret;
1093
Jens Axboe2d283902019-12-04 11:08:05 -07001094 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe5262f562019-09-17 12:26:57 -06001095 if (ret != -1) {
1096 atomic_inc(&req->ctx->cq_timeouts);
Jens Axboe842f9612019-10-29 12:34:10 -06001097 list_del_init(&req->list);
Pavel Begunkovf0e20b82020-03-07 01:15:22 +03001098 req->flags |= REQ_F_COMP_LOCKED;
Jens Axboe78e19bb2019-11-06 15:21:34 -07001099 io_cqring_fill_event(req, 0);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001100 io_put_req(req);
Jens Axboe5262f562019-09-17 12:26:57 -06001101 }
1102}
1103
1104static void io_kill_timeouts(struct io_ring_ctx *ctx)
1105{
1106 struct io_kiocb *req, *tmp;
1107
1108 spin_lock_irq(&ctx->completion_lock);
1109 list_for_each_entry_safe(req, tmp, &ctx->timeout_list, list)
1110 io_kill_timeout(req);
1111 spin_unlock_irq(&ctx->completion_lock);
1112}
1113
Jens Axboede0617e2019-04-06 21:51:27 -06001114static void io_commit_cqring(struct io_ring_ctx *ctx)
1115{
1116 struct io_kiocb *req;
1117
Jens Axboe5262f562019-09-17 12:26:57 -06001118 while ((req = io_get_timeout_req(ctx)) != NULL)
1119 io_kill_timeout(req);
1120
Jens Axboede0617e2019-04-06 21:51:27 -06001121 __io_commit_cqring(ctx);
1122
Pavel Begunkov87987892020-01-18 01:22:30 +03001123 while ((req = io_get_deferred_req(ctx)) != NULL)
Jackie Liua197f662019-11-08 08:09:12 -07001124 io_queue_async_work(req);
Jens Axboede0617e2019-04-06 21:51:27 -06001125}
1126
Jens Axboe2b188cc2019-01-07 10:46:33 -07001127static struct io_uring_cqe *io_get_cqring(struct io_ring_ctx *ctx)
1128{
Hristo Venev75b28af2019-08-26 17:23:46 +00001129 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001130 unsigned tail;
1131
1132 tail = ctx->cached_cq_tail;
Stefan Bühler115e12e2019-04-24 23:54:18 +02001133 /*
1134 * writes to the cq entry need to come after reading head; the
1135 * control dependency is enough as we're using WRITE_ONCE to
1136 * fill the cq entry
1137 */
Hristo Venev75b28af2019-08-26 17:23:46 +00001138 if (tail - READ_ONCE(rings->cq.head) == rings->cq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001139 return NULL;
1140
1141 ctx->cached_cq_tail++;
Hristo Venev75b28af2019-08-26 17:23:46 +00001142 return &rings->cqes[tail & ctx->cq_mask];
Jens Axboe2b188cc2019-01-07 10:46:33 -07001143}
1144
Jens Axboef2842ab2020-01-08 11:04:00 -07001145static inline bool io_should_trigger_evfd(struct io_ring_ctx *ctx)
1146{
Jens Axboef0b493e2020-02-01 21:30:11 -07001147 if (!ctx->cq_ev_fd)
1148 return false;
Jens Axboef2842ab2020-01-08 11:04:00 -07001149 if (!ctx->eventfd_async)
1150 return true;
Jens Axboeb41e9852020-02-17 09:52:41 -07001151 return io_wq_current_is_worker();
Jens Axboef2842ab2020-01-08 11:04:00 -07001152}
1153
Jens Axboeb41e9852020-02-17 09:52:41 -07001154static void io_cqring_ev_posted(struct io_ring_ctx *ctx)
Jens Axboe8c838782019-03-12 15:48:16 -06001155{
1156 if (waitqueue_active(&ctx->wait))
1157 wake_up(&ctx->wait);
1158 if (waitqueue_active(&ctx->sqo_wait))
1159 wake_up(&ctx->sqo_wait);
Jens Axboeb41e9852020-02-17 09:52:41 -07001160 if (io_should_trigger_evfd(ctx))
Jens Axboe9b402842019-04-11 11:45:41 -06001161 eventfd_signal(ctx->cq_ev_fd, 1);
Jens Axboe8c838782019-03-12 15:48:16 -06001162}
1163
Jens Axboec4a2ed72019-11-21 21:01:26 -07001164/* Returns true if there are no backlogged entries after the flush */
1165static bool io_cqring_overflow_flush(struct io_ring_ctx *ctx, bool force)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001166{
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001167 struct io_rings *rings = ctx->rings;
1168 struct io_uring_cqe *cqe;
1169 struct io_kiocb *req;
1170 unsigned long flags;
1171 LIST_HEAD(list);
1172
1173 if (!force) {
1174 if (list_empty_careful(&ctx->cq_overflow_list))
Jens Axboec4a2ed72019-11-21 21:01:26 -07001175 return true;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001176 if ((ctx->cached_cq_tail - READ_ONCE(rings->cq.head) ==
1177 rings->cq_ring_entries))
Jens Axboec4a2ed72019-11-21 21:01:26 -07001178 return false;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001179 }
1180
1181 spin_lock_irqsave(&ctx->completion_lock, flags);
1182
1183 /* if force is set, the ring is going away. always drop after that */
1184 if (force)
Jens Axboe69b3e542020-01-08 11:01:46 -07001185 ctx->cq_overflow_flushed = 1;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001186
Jens Axboec4a2ed72019-11-21 21:01:26 -07001187 cqe = NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001188 while (!list_empty(&ctx->cq_overflow_list)) {
1189 cqe = io_get_cqring(ctx);
1190 if (!cqe && !force)
1191 break;
1192
1193 req = list_first_entry(&ctx->cq_overflow_list, struct io_kiocb,
1194 list);
1195 list_move(&req->list, &list);
Jens Axboe2ca10252020-02-13 17:17:35 -07001196 req->flags &= ~REQ_F_OVERFLOW;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001197 if (cqe) {
1198 WRITE_ONCE(cqe->user_data, req->user_data);
1199 WRITE_ONCE(cqe->res, req->result);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001200 WRITE_ONCE(cqe->flags, req->cflags);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001201 } else {
1202 WRITE_ONCE(ctx->rings->cq_overflow,
1203 atomic_inc_return(&ctx->cached_cq_overflow));
1204 }
1205 }
1206
1207 io_commit_cqring(ctx);
Jens Axboead3eb2c2019-12-18 17:12:20 -07001208 if (cqe) {
1209 clear_bit(0, &ctx->sq_check_overflow);
1210 clear_bit(0, &ctx->cq_check_overflow);
1211 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001212 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1213 io_cqring_ev_posted(ctx);
1214
1215 while (!list_empty(&list)) {
1216 req = list_first_entry(&list, struct io_kiocb, list);
1217 list_del(&req->list);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001218 io_put_req(req);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001219 }
Jens Axboec4a2ed72019-11-21 21:01:26 -07001220
1221 return cqe != NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001222}
1223
Jens Axboebcda7ba2020-02-23 16:42:51 -07001224static void __io_cqring_fill_event(struct io_kiocb *req, long res, long cflags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001225{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001226 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001227 struct io_uring_cqe *cqe;
1228
Jens Axboe78e19bb2019-11-06 15:21:34 -07001229 trace_io_uring_complete(ctx, req->user_data, res);
Jens Axboe51c3ff62019-11-03 06:52:50 -07001230
Jens Axboe2b188cc2019-01-07 10:46:33 -07001231 /*
1232 * If we can't get a cq entry, userspace overflowed the
1233 * submission (by quite a lot). Increment the overflow count in
1234 * the ring.
1235 */
1236 cqe = io_get_cqring(ctx);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001237 if (likely(cqe)) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001238 WRITE_ONCE(cqe->user_data, req->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001239 WRITE_ONCE(cqe->res, res);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001240 WRITE_ONCE(cqe->flags, cflags);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001241 } else if (ctx->cq_overflow_flushed) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07001242 WRITE_ONCE(ctx->rings->cq_overflow,
1243 atomic_inc_return(&ctx->cached_cq_overflow));
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001244 } else {
Jens Axboead3eb2c2019-12-18 17:12:20 -07001245 if (list_empty(&ctx->cq_overflow_list)) {
1246 set_bit(0, &ctx->sq_check_overflow);
1247 set_bit(0, &ctx->cq_check_overflow);
1248 }
Jens Axboe2ca10252020-02-13 17:17:35 -07001249 req->flags |= REQ_F_OVERFLOW;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001250 refcount_inc(&req->refs);
1251 req->result = res;
Jens Axboebcda7ba2020-02-23 16:42:51 -07001252 req->cflags = cflags;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001253 list_add_tail(&req->list, &ctx->cq_overflow_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001254 }
1255}
1256
Jens Axboebcda7ba2020-02-23 16:42:51 -07001257static void io_cqring_fill_event(struct io_kiocb *req, long res)
1258{
1259 __io_cqring_fill_event(req, res, 0);
1260}
1261
1262static void __io_cqring_add_event(struct io_kiocb *req, long res, long cflags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001263{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001264 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001265 unsigned long flags;
1266
1267 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001268 __io_cqring_fill_event(req, res, cflags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001269 io_commit_cqring(ctx);
1270 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1271
Jens Axboe8c838782019-03-12 15:48:16 -06001272 io_cqring_ev_posted(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001273}
1274
Jens Axboebcda7ba2020-02-23 16:42:51 -07001275static void io_cqring_add_event(struct io_kiocb *req, long res)
1276{
1277 __io_cqring_add_event(req, res, 0);
1278}
1279
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001280static inline bool io_is_fallback_req(struct io_kiocb *req)
1281{
1282 return req == (struct io_kiocb *)
1283 ((unsigned long) req->ctx->fallback_req & ~1UL);
1284}
1285
1286static struct io_kiocb *io_get_fallback_req(struct io_ring_ctx *ctx)
1287{
1288 struct io_kiocb *req;
1289
1290 req = ctx->fallback_req;
Bijan Mottahedehdd461af2020-04-29 17:47:50 -07001291 if (!test_and_set_bit_lock(0, (unsigned long *) &ctx->fallback_req))
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001292 return req;
1293
1294 return NULL;
1295}
1296
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03001297static struct io_kiocb *io_alloc_req(struct io_ring_ctx *ctx,
1298 struct io_submit_state *state)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001299{
Jens Axboefd6fab22019-03-14 16:30:06 -06001300 gfp_t gfp = GFP_KERNEL | __GFP_NOWARN;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001301 struct io_kiocb *req;
1302
Jens Axboe2579f912019-01-09 09:10:43 -07001303 if (!state) {
Jens Axboefd6fab22019-03-14 16:30:06 -06001304 req = kmem_cache_alloc(req_cachep, gfp);
Jens Axboe2579f912019-01-09 09:10:43 -07001305 if (unlikely(!req))
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001306 goto fallback;
Jens Axboe2579f912019-01-09 09:10:43 -07001307 } else if (!state->free_reqs) {
1308 size_t sz;
1309 int ret;
1310
1311 sz = min_t(size_t, state->ios_left, ARRAY_SIZE(state->reqs));
Jens Axboefd6fab22019-03-14 16:30:06 -06001312 ret = kmem_cache_alloc_bulk(req_cachep, gfp, sz, state->reqs);
1313
1314 /*
1315 * Bulk alloc is all-or-nothing. If we fail to get a batch,
1316 * retry single alloc to be on the safe side.
1317 */
1318 if (unlikely(ret <= 0)) {
1319 state->reqs[0] = kmem_cache_alloc(req_cachep, gfp);
1320 if (!state->reqs[0])
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001321 goto fallback;
Jens Axboefd6fab22019-03-14 16:30:06 -06001322 ret = 1;
1323 }
Jens Axboe2579f912019-01-09 09:10:43 -07001324 state->free_reqs = ret - 1;
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03001325 req = state->reqs[ret - 1];
Jens Axboe2579f912019-01-09 09:10:43 -07001326 } else {
Jens Axboe2579f912019-01-09 09:10:43 -07001327 state->free_reqs--;
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03001328 req = state->reqs[state->free_reqs];
Jens Axboe2b188cc2019-01-07 10:46:33 -07001329 }
1330
Jens Axboe2579f912019-01-09 09:10:43 -07001331 return req;
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001332fallback:
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03001333 return io_get_fallback_req(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001334}
1335
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001336static inline void io_put_file(struct io_kiocb *req, struct file *file,
1337 bool fixed)
1338{
1339 if (fixed)
Xiaoguang Wang05589552020-03-31 14:05:18 +08001340 percpu_ref_put(req->fixed_file_refs);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001341 else
1342 fput(file);
1343}
1344
Jens Axboec6ca97b302019-12-28 12:11:08 -07001345static void __io_req_aux_free(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001346{
Pavel Begunkov929a3af2020-02-19 00:19:09 +03001347 if (req->flags & REQ_F_NEED_CLEANUP)
1348 io_cleanup_req(req);
1349
YueHaibing96fd84d2020-01-07 22:22:44 +08001350 kfree(req->io);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001351 if (req->file)
1352 io_put_file(req, req->file, (req->flags & REQ_F_FIXED_FILE));
Jens Axboe3537b6a2020-04-03 11:19:06 -06001353 if (req->task)
1354 put_task_struct(req->task);
Jens Axboecccf0ee2020-01-27 16:34:48 -07001355
1356 io_req_work_drop_env(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001357}
1358
1359static void __io_free_req(struct io_kiocb *req)
1360{
Jens Axboec6ca97b302019-12-28 12:11:08 -07001361 __io_req_aux_free(req);
Jens Axboefcb323c2019-10-24 12:39:47 -06001362
Jens Axboefcb323c2019-10-24 12:39:47 -06001363 if (req->flags & REQ_F_INFLIGHT) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001364 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06001365 unsigned long flags;
1366
1367 spin_lock_irqsave(&ctx->inflight_lock, flags);
1368 list_del(&req->inflight_entry);
1369 if (waitqueue_active(&ctx->inflight_wait))
1370 wake_up(&ctx->inflight_wait);
1371 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
1372 }
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03001373
1374 percpu_ref_put(&req->ctx->refs);
Pavel Begunkovb1e50e52020-04-08 08:58:44 +03001375 if (likely(!io_is_fallback_req(req)))
1376 kmem_cache_free(req_cachep, req);
1377 else
Bijan Mottahedehdd461af2020-04-29 17:47:50 -07001378 clear_bit_unlock(0, (unsigned long *) &req->ctx->fallback_req);
Jens Axboee65ef562019-03-12 10:16:44 -06001379}
1380
Jens Axboec6ca97b302019-12-28 12:11:08 -07001381struct req_batch {
1382 void *reqs[IO_IOPOLL_BATCH];
1383 int to_free;
1384 int need_iter;
1385};
1386
1387static void io_free_req_many(struct io_ring_ctx *ctx, struct req_batch *rb)
1388{
1389 if (!rb->to_free)
1390 return;
1391 if (rb->need_iter) {
1392 int i, inflight = 0;
1393 unsigned long flags;
1394
1395 for (i = 0; i < rb->to_free; i++) {
1396 struct io_kiocb *req = rb->reqs[i];
1397
Jens Axboec6ca97b302019-12-28 12:11:08 -07001398 if (req->flags & REQ_F_INFLIGHT)
1399 inflight++;
Jens Axboec6ca97b302019-12-28 12:11:08 -07001400 __io_req_aux_free(req);
1401 }
1402 if (!inflight)
1403 goto do_free;
1404
1405 spin_lock_irqsave(&ctx->inflight_lock, flags);
1406 for (i = 0; i < rb->to_free; i++) {
1407 struct io_kiocb *req = rb->reqs[i];
1408
Jens Axboe10fef4b2020-01-09 07:52:28 -07001409 if (req->flags & REQ_F_INFLIGHT) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001410 list_del(&req->inflight_entry);
1411 if (!--inflight)
1412 break;
1413 }
1414 }
1415 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
1416
1417 if (waitqueue_active(&ctx->inflight_wait))
1418 wake_up(&ctx->inflight_wait);
1419 }
1420do_free:
1421 kmem_cache_free_bulk(req_cachep, rb->to_free, rb->reqs);
1422 percpu_ref_put_many(&ctx->refs, rb->to_free);
Jens Axboec6ca97b302019-12-28 12:11:08 -07001423 rb->to_free = rb->need_iter = 0;
Jens Axboee65ef562019-03-12 10:16:44 -06001424}
1425
Jackie Liua197f662019-11-08 08:09:12 -07001426static bool io_link_cancel_timeout(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -06001427{
Jackie Liua197f662019-11-08 08:09:12 -07001428 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001429 int ret;
1430
Jens Axboe2d283902019-12-04 11:08:05 -07001431 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe2665abf2019-11-05 12:40:47 -07001432 if (ret != -1) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001433 io_cqring_fill_event(req, -ECANCELED);
Jens Axboe2665abf2019-11-05 12:40:47 -07001434 io_commit_cqring(ctx);
Pavel Begunkovdea3b492020-04-12 02:05:04 +03001435 req->flags &= ~REQ_F_LINK_HEAD;
Jackie Liuec9c02a2019-11-08 23:50:36 +08001436 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07001437 return true;
1438 }
1439
1440 return false;
1441}
1442
Jens Axboeba816ad2019-09-28 11:36:45 -06001443static void io_req_link_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboe9e645e112019-05-10 16:07:28 -06001444{
Jens Axboe2665abf2019-11-05 12:40:47 -07001445 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001446 bool wake_ev = false;
Jens Axboe9e645e112019-05-10 16:07:28 -06001447
Jens Axboe4d7dd462019-11-20 13:03:52 -07001448 /* Already got next link */
1449 if (req->flags & REQ_F_LINK_NEXT)
1450 return;
1451
Jens Axboe9e645e112019-05-10 16:07:28 -06001452 /*
1453 * The list should never be empty when we are called here. But could
1454 * potentially happen if the chain is messed up, check to be on the
1455 * safe side.
1456 */
Pavel Begunkov44932332019-12-05 16:16:35 +03001457 while (!list_empty(&req->link_list)) {
1458 struct io_kiocb *nxt = list_first_entry(&req->link_list,
1459 struct io_kiocb, link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001460
Pavel Begunkov44932332019-12-05 16:16:35 +03001461 if (unlikely((req->flags & REQ_F_LINK_TIMEOUT) &&
1462 (nxt->flags & REQ_F_TIMEOUT))) {
1463 list_del_init(&nxt->link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001464 wake_ev |= io_link_cancel_timeout(nxt);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001465 req->flags &= ~REQ_F_LINK_TIMEOUT;
1466 continue;
1467 }
Jens Axboe9e645e112019-05-10 16:07:28 -06001468
Pavel Begunkov44932332019-12-05 16:16:35 +03001469 list_del_init(&req->link_list);
1470 if (!list_empty(&nxt->link_list))
Pavel Begunkovdea3b492020-04-12 02:05:04 +03001471 nxt->flags |= REQ_F_LINK_HEAD;
Pavel Begunkovb18fdf72019-11-21 23:21:02 +03001472 *nxtptr = nxt;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001473 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06001474 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001475
Jens Axboe4d7dd462019-11-20 13:03:52 -07001476 req->flags |= REQ_F_LINK_NEXT;
Jens Axboe2665abf2019-11-05 12:40:47 -07001477 if (wake_ev)
1478 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001479}
1480
1481/*
Pavel Begunkovdea3b492020-04-12 02:05:04 +03001482 * Called if REQ_F_LINK_HEAD is set, and we fail the head request
Jens Axboe9e645e112019-05-10 16:07:28 -06001483 */
1484static void io_fail_links(struct io_kiocb *req)
1485{
Jens Axboe2665abf2019-11-05 12:40:47 -07001486 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001487 unsigned long flags;
1488
1489 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboe9e645e112019-05-10 16:07:28 -06001490
1491 while (!list_empty(&req->link_list)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03001492 struct io_kiocb *link = list_first_entry(&req->link_list,
1493 struct io_kiocb, link_list);
Jens Axboe9e645e112019-05-10 16:07:28 -06001494
Pavel Begunkov44932332019-12-05 16:16:35 +03001495 list_del_init(&link->link_list);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02001496 trace_io_uring_fail_link(req, link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001497
1498 if ((req->flags & REQ_F_LINK_TIMEOUT) &&
Jens Axboed625c6e2019-12-17 19:53:05 -07001499 link->opcode == IORING_OP_LINK_TIMEOUT) {
Jackie Liua197f662019-11-08 08:09:12 -07001500 io_link_cancel_timeout(link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001501 } else {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001502 io_cqring_fill_event(link, -ECANCELED);
Jens Axboe978db572019-11-14 22:39:04 -07001503 __io_double_put_req(link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001504 }
Jens Axboe5d960722019-11-19 15:31:28 -07001505 req->flags &= ~REQ_F_LINK_TIMEOUT;
Jens Axboe9e645e112019-05-10 16:07:28 -06001506 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001507
1508 io_commit_cqring(ctx);
1509 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1510 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001511}
1512
Jens Axboe4d7dd462019-11-20 13:03:52 -07001513static void io_req_find_next(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboe9e645e112019-05-10 16:07:28 -06001514{
Pavel Begunkovdea3b492020-04-12 02:05:04 +03001515 if (likely(!(req->flags & REQ_F_LINK_HEAD)))
Jens Axboe2665abf2019-11-05 12:40:47 -07001516 return;
Jens Axboe2665abf2019-11-05 12:40:47 -07001517
Jens Axboe9e645e112019-05-10 16:07:28 -06001518 /*
1519 * If LINK is set, we have dependent requests in this chain. If we
1520 * didn't fail this request, queue the first one up, moving any other
1521 * dependencies to the next request. In case of failure, fail the rest
1522 * of the chain.
1523 */
Jens Axboe2665abf2019-11-05 12:40:47 -07001524 if (req->flags & REQ_F_FAIL_LINK) {
1525 io_fail_links(req);
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001526 } else if ((req->flags & (REQ_F_LINK_TIMEOUT | REQ_F_COMP_LOCKED)) ==
1527 REQ_F_LINK_TIMEOUT) {
Jens Axboe2665abf2019-11-05 12:40:47 -07001528 struct io_ring_ctx *ctx = req->ctx;
1529 unsigned long flags;
1530
1531 /*
1532 * If this is a timeout link, we could be racing with the
1533 * timeout timer. Grab the completion lock for this case to
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001534 * protect against that.
Jens Axboe2665abf2019-11-05 12:40:47 -07001535 */
1536 spin_lock_irqsave(&ctx->completion_lock, flags);
1537 io_req_link_next(req, nxt);
1538 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1539 } else {
1540 io_req_link_next(req, nxt);
Jens Axboe9e645e112019-05-10 16:07:28 -06001541 }
Jens Axboe4d7dd462019-11-20 13:03:52 -07001542}
Jens Axboe9e645e112019-05-10 16:07:28 -06001543
Jackie Liuc69f8db2019-11-09 11:00:08 +08001544static void io_free_req(struct io_kiocb *req)
1545{
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001546 struct io_kiocb *nxt = NULL;
1547
1548 io_req_find_next(req, &nxt);
Pavel Begunkov70cf9f32019-11-21 23:21:00 +03001549 __io_free_req(req);
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001550
1551 if (nxt)
1552 io_queue_async_work(nxt);
Jackie Liuc69f8db2019-11-09 11:00:08 +08001553}
1554
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001555static void io_link_work_cb(struct io_wq_work **workptr)
1556{
Pavel Begunkov18a542f2020-03-23 00:23:29 +03001557 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
1558 struct io_kiocb *link;
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001559
Pavel Begunkov18a542f2020-03-23 00:23:29 +03001560 link = list_first_entry(&req->link_list, struct io_kiocb, link_list);
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001561 io_queue_linked_timeout(link);
1562 io_wq_submit_work(workptr);
1563}
1564
1565static void io_wq_assign_next(struct io_wq_work **workptr, struct io_kiocb *nxt)
1566{
1567 struct io_kiocb *link;
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001568 const struct io_op_def *def = &io_op_defs[nxt->opcode];
1569
1570 if ((nxt->flags & REQ_F_ISREG) && def->hash_reg_file)
1571 io_wq_hash_work(&nxt->work, file_inode(nxt->file));
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001572
1573 *workptr = &nxt->work;
1574 link = io_prep_linked_timeout(nxt);
Pavel Begunkov18a542f2020-03-23 00:23:29 +03001575 if (link)
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001576 nxt->work.func = io_link_work_cb;
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001577}
1578
Jens Axboeba816ad2019-09-28 11:36:45 -06001579/*
1580 * Drop reference to request, return next in chain (if there is one) if this
1581 * was the last reference to this request.
1582 */
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001583__attribute__((nonnull))
Jackie Liuec9c02a2019-11-08 23:50:36 +08001584static void io_put_req_find_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboee65ef562019-03-12 10:16:44 -06001585{
Jens Axboe2a44f462020-02-25 13:25:41 -07001586 if (refcount_dec_and_test(&req->refs)) {
1587 io_req_find_next(req, nxtptr);
Jens Axboe4d7dd462019-11-20 13:03:52 -07001588 __io_free_req(req);
Jens Axboe2a44f462020-02-25 13:25:41 -07001589 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001590}
1591
Jens Axboe2b188cc2019-01-07 10:46:33 -07001592static void io_put_req(struct io_kiocb *req)
1593{
Jens Axboedef596e2019-01-09 08:59:42 -07001594 if (refcount_dec_and_test(&req->refs))
1595 io_free_req(req);
1596}
1597
Pavel Begunkove9fd9392020-03-04 16:14:12 +03001598static void io_steal_work(struct io_kiocb *req,
1599 struct io_wq_work **workptr)
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001600{
1601 /*
1602 * It's in an io-wq worker, so there always should be at least
1603 * one reference, which will be dropped in io_put_work() just
1604 * after the current handler returns.
1605 *
1606 * It also means, that if the counter dropped to 1, then there is
1607 * no asynchronous users left, so it's safe to steal the next work.
1608 */
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001609 if (refcount_read(&req->refs) == 1) {
1610 struct io_kiocb *nxt = NULL;
1611
1612 io_req_find_next(req, &nxt);
1613 if (nxt)
1614 io_wq_assign_next(workptr, nxt);
1615 }
1616}
1617
Jens Axboe978db572019-11-14 22:39:04 -07001618/*
1619 * Must only be used if we don't need to care about links, usually from
1620 * within the completion handling itself.
1621 */
1622static void __io_double_put_req(struct io_kiocb *req)
Jens Axboea3a0e432019-08-20 11:03:11 -06001623{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001624 /* drop both submit and complete references */
1625 if (refcount_sub_and_test(2, &req->refs))
1626 __io_free_req(req);
1627}
1628
Jens Axboe978db572019-11-14 22:39:04 -07001629static void io_double_put_req(struct io_kiocb *req)
1630{
1631 /* drop both submit and complete references */
1632 if (refcount_sub_and_test(2, &req->refs))
1633 io_free_req(req);
1634}
1635
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001636static unsigned io_cqring_events(struct io_ring_ctx *ctx, bool noflush)
Jens Axboea3a0e432019-08-20 11:03:11 -06001637{
Jens Axboe84f97dc2019-11-06 11:27:53 -07001638 struct io_rings *rings = ctx->rings;
1639
Jens Axboead3eb2c2019-12-18 17:12:20 -07001640 if (test_bit(0, &ctx->cq_check_overflow)) {
1641 /*
1642 * noflush == true is from the waitqueue handler, just ensure
1643 * we wake up the task, and the next invocation will flush the
1644 * entries. We cannot safely to it from here.
1645 */
1646 if (noflush && !list_empty(&ctx->cq_overflow_list))
1647 return -1U;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001648
Jens Axboead3eb2c2019-12-18 17:12:20 -07001649 io_cqring_overflow_flush(ctx, false);
1650 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001651
Jens Axboea3a0e432019-08-20 11:03:11 -06001652 /* See comment at the top of this file */
1653 smp_rmb();
Jens Axboead3eb2c2019-12-18 17:12:20 -07001654 return ctx->cached_cq_tail - READ_ONCE(rings->cq.head);
Jens Axboea3a0e432019-08-20 11:03:11 -06001655}
1656
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03001657static inline unsigned int io_sqring_entries(struct io_ring_ctx *ctx)
1658{
1659 struct io_rings *rings = ctx->rings;
1660
1661 /* make sure SQ entry isn't read before tail */
1662 return smp_load_acquire(&rings->sq.tail) - ctx->cached_sq_head;
1663}
1664
Jens Axboe8237e042019-12-28 10:48:22 -07001665static inline bool io_req_multi_free(struct req_batch *rb, struct io_kiocb *req)
Jens Axboee94f1412019-12-19 12:06:02 -07001666{
Pavel Begunkovdea3b492020-04-12 02:05:04 +03001667 if ((req->flags & REQ_F_LINK_HEAD) || io_is_fallback_req(req))
Jens Axboec6ca97b302019-12-28 12:11:08 -07001668 return false;
Jens Axboee94f1412019-12-19 12:06:02 -07001669
Jens Axboe9d9e88a2020-05-13 12:53:19 -06001670 if (req->file || req->io)
Jens Axboec6ca97b302019-12-28 12:11:08 -07001671 rb->need_iter++;
1672
1673 rb->reqs[rb->to_free++] = req;
1674 if (unlikely(rb->to_free == ARRAY_SIZE(rb->reqs)))
1675 io_free_req_many(req->ctx, rb);
1676 return true;
Jens Axboee94f1412019-12-19 12:06:02 -07001677}
1678
Jens Axboebcda7ba2020-02-23 16:42:51 -07001679static int io_put_kbuf(struct io_kiocb *req)
1680{
Jens Axboe4d954c22020-02-27 07:31:19 -07001681 struct io_buffer *kbuf;
Jens Axboebcda7ba2020-02-23 16:42:51 -07001682 int cflags;
1683
Jens Axboe4d954c22020-02-27 07:31:19 -07001684 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
Jens Axboebcda7ba2020-02-23 16:42:51 -07001685 cflags = kbuf->bid << IORING_CQE_BUFFER_SHIFT;
1686 cflags |= IORING_CQE_F_BUFFER;
1687 req->rw.addr = 0;
1688 kfree(kbuf);
1689 return cflags;
1690}
1691
Jens Axboedef596e2019-01-09 08:59:42 -07001692/*
1693 * Find and free completed poll iocbs
1694 */
1695static void io_iopoll_complete(struct io_ring_ctx *ctx, unsigned int *nr_events,
1696 struct list_head *done)
1697{
Jens Axboe8237e042019-12-28 10:48:22 -07001698 struct req_batch rb;
Jens Axboedef596e2019-01-09 08:59:42 -07001699 struct io_kiocb *req;
Jens Axboedef596e2019-01-09 08:59:42 -07001700
Jens Axboec6ca97b302019-12-28 12:11:08 -07001701 rb.to_free = rb.need_iter = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001702 while (!list_empty(done)) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07001703 int cflags = 0;
1704
Jens Axboedef596e2019-01-09 08:59:42 -07001705 req = list_first_entry(done, struct io_kiocb, list);
1706 list_del(&req->list);
1707
Jens Axboebcda7ba2020-02-23 16:42:51 -07001708 if (req->flags & REQ_F_BUFFER_SELECTED)
1709 cflags = io_put_kbuf(req);
1710
1711 __io_cqring_fill_event(req, req->result, cflags);
Jens Axboedef596e2019-01-09 08:59:42 -07001712 (*nr_events)++;
1713
Jens Axboe8237e042019-12-28 10:48:22 -07001714 if (refcount_dec_and_test(&req->refs) &&
1715 !io_req_multi_free(&rb, req))
1716 io_free_req(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001717 }
Jens Axboedef596e2019-01-09 08:59:42 -07001718
Jens Axboe09bb8392019-03-13 12:39:28 -06001719 io_commit_cqring(ctx);
Xiaoguang Wang32b22442020-03-11 09:26:09 +08001720 if (ctx->flags & IORING_SETUP_SQPOLL)
1721 io_cqring_ev_posted(ctx);
Jens Axboe8237e042019-12-28 10:48:22 -07001722 io_free_req_many(ctx, &rb);
Jens Axboedef596e2019-01-09 08:59:42 -07001723}
1724
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001725static void io_iopoll_queue(struct list_head *again)
1726{
1727 struct io_kiocb *req;
1728
1729 do {
1730 req = list_first_entry(again, struct io_kiocb, list);
1731 list_del(&req->list);
1732 refcount_inc(&req->refs);
1733 io_queue_async_work(req);
1734 } while (!list_empty(again));
1735}
1736
Jens Axboedef596e2019-01-09 08:59:42 -07001737static int io_do_iopoll(struct io_ring_ctx *ctx, unsigned int *nr_events,
1738 long min)
1739{
1740 struct io_kiocb *req, *tmp;
1741 LIST_HEAD(done);
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001742 LIST_HEAD(again);
Jens Axboedef596e2019-01-09 08:59:42 -07001743 bool spin;
1744 int ret;
1745
1746 /*
1747 * Only spin for completions if we don't have multiple devices hanging
1748 * off our complete list, and we're under the requested amount.
1749 */
1750 spin = !ctx->poll_multi_file && *nr_events < min;
1751
1752 ret = 0;
1753 list_for_each_entry_safe(req, tmp, &ctx->poll_list, list) {
Jens Axboe9adbd452019-12-20 08:45:55 -07001754 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboedef596e2019-01-09 08:59:42 -07001755
1756 /*
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001757 * Move completed and retryable entries to our local lists.
1758 * If we find a request that requires polling, break out
1759 * and complete those lists first, if we have entries there.
Jens Axboedef596e2019-01-09 08:59:42 -07001760 */
1761 if (req->flags & REQ_F_IOPOLL_COMPLETED) {
1762 list_move_tail(&req->list, &done);
1763 continue;
1764 }
1765 if (!list_empty(&done))
1766 break;
1767
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001768 if (req->result == -EAGAIN) {
1769 list_move_tail(&req->list, &again);
1770 continue;
1771 }
1772 if (!list_empty(&again))
1773 break;
1774
Jens Axboedef596e2019-01-09 08:59:42 -07001775 ret = kiocb->ki_filp->f_op->iopoll(kiocb, spin);
1776 if (ret < 0)
1777 break;
1778
1779 if (ret && spin)
1780 spin = false;
1781 ret = 0;
1782 }
1783
1784 if (!list_empty(&done))
1785 io_iopoll_complete(ctx, nr_events, &done);
1786
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001787 if (!list_empty(&again))
1788 io_iopoll_queue(&again);
1789
Jens Axboedef596e2019-01-09 08:59:42 -07001790 return ret;
1791}
1792
1793/*
Brian Gianforcarod195a662019-12-13 03:09:50 -08001794 * Poll for a minimum of 'min' events. Note that if min == 0 we consider that a
Jens Axboedef596e2019-01-09 08:59:42 -07001795 * non-spinning poll check - we'll still enter the driver poll loop, but only
1796 * as a non-spinning completion check.
1797 */
1798static int io_iopoll_getevents(struct io_ring_ctx *ctx, unsigned int *nr_events,
1799 long min)
1800{
Jens Axboe08f54392019-08-21 22:19:11 -06001801 while (!list_empty(&ctx->poll_list) && !need_resched()) {
Jens Axboedef596e2019-01-09 08:59:42 -07001802 int ret;
1803
1804 ret = io_do_iopoll(ctx, nr_events, min);
1805 if (ret < 0)
1806 return ret;
1807 if (!min || *nr_events >= min)
1808 return 0;
1809 }
1810
1811 return 1;
1812}
1813
1814/*
1815 * We can't just wait for polled events to come to us, we have to actively
1816 * find and complete them.
1817 */
1818static void io_iopoll_reap_events(struct io_ring_ctx *ctx)
1819{
1820 if (!(ctx->flags & IORING_SETUP_IOPOLL))
1821 return;
1822
1823 mutex_lock(&ctx->uring_lock);
1824 while (!list_empty(&ctx->poll_list)) {
1825 unsigned int nr_events = 0;
1826
1827 io_iopoll_getevents(ctx, &nr_events, 1);
Jens Axboe08f54392019-08-21 22:19:11 -06001828
1829 /*
1830 * Ensure we allow local-to-the-cpu processing to take place,
1831 * in this case we need to ensure that we reap all events.
1832 */
1833 cond_resched();
Jens Axboedef596e2019-01-09 08:59:42 -07001834 }
1835 mutex_unlock(&ctx->uring_lock);
1836}
1837
Xiaoguang Wangc7849be2020-02-22 14:46:05 +08001838static int io_iopoll_check(struct io_ring_ctx *ctx, unsigned *nr_events,
1839 long min)
Jens Axboedef596e2019-01-09 08:59:42 -07001840{
Jens Axboe2b2ed972019-10-25 10:06:15 -06001841 int iters = 0, ret = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001842
Xiaoguang Wangc7849be2020-02-22 14:46:05 +08001843 /*
1844 * We disallow the app entering submit/complete with polling, but we
1845 * still need to lock the ring to prevent racing with polled issue
1846 * that got punted to a workqueue.
1847 */
1848 mutex_lock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07001849 do {
1850 int tmin = 0;
1851
Jens Axboe500f9fb2019-08-19 12:15:59 -06001852 /*
Jens Axboea3a0e432019-08-20 11:03:11 -06001853 * Don't enter poll loop if we already have events pending.
1854 * If we do, we can potentially be spinning for commands that
1855 * already triggered a CQE (eg in error).
1856 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001857 if (io_cqring_events(ctx, false))
Jens Axboea3a0e432019-08-20 11:03:11 -06001858 break;
1859
1860 /*
Jens Axboe500f9fb2019-08-19 12:15:59 -06001861 * If a submit got punted to a workqueue, we can have the
1862 * application entering polling for a command before it gets
1863 * issued. That app will hold the uring_lock for the duration
1864 * of the poll right here, so we need to take a breather every
1865 * now and then to ensure that the issue has a chance to add
1866 * the poll to the issued list. Otherwise we can spin here
1867 * forever, while the workqueue is stuck trying to acquire the
1868 * very same mutex.
1869 */
1870 if (!(++iters & 7)) {
1871 mutex_unlock(&ctx->uring_lock);
1872 mutex_lock(&ctx->uring_lock);
1873 }
1874
Jens Axboedef596e2019-01-09 08:59:42 -07001875 if (*nr_events < min)
1876 tmin = min - *nr_events;
1877
1878 ret = io_iopoll_getevents(ctx, nr_events, tmin);
1879 if (ret <= 0)
1880 break;
1881 ret = 0;
1882 } while (min && !*nr_events && !need_resched());
1883
Jens Axboe500f9fb2019-08-19 12:15:59 -06001884 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07001885 return ret;
1886}
1887
Jens Axboe491381ce2019-10-17 09:20:46 -06001888static void kiocb_end_write(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001889{
Jens Axboe491381ce2019-10-17 09:20:46 -06001890 /*
1891 * Tell lockdep we inherited freeze protection from submission
1892 * thread.
1893 */
1894 if (req->flags & REQ_F_ISREG) {
1895 struct inode *inode = file_inode(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001896
Jens Axboe491381ce2019-10-17 09:20:46 -06001897 __sb_writers_acquired(inode->i_sb, SB_FREEZE_WRITE);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001898 }
Jens Axboe491381ce2019-10-17 09:20:46 -06001899 file_end_write(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001900}
1901
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001902static inline void req_set_fail_links(struct io_kiocb *req)
1903{
1904 if ((req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) == REQ_F_LINK)
1905 req->flags |= REQ_F_FAIL_LINK;
1906}
1907
Jens Axboeba816ad2019-09-28 11:36:45 -06001908static void io_complete_rw_common(struct kiocb *kiocb, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001909{
Jens Axboe9adbd452019-12-20 08:45:55 -07001910 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001911 int cflags = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001912
Jens Axboe491381ce2019-10-17 09:20:46 -06001913 if (kiocb->ki_flags & IOCB_WRITE)
1914 kiocb_end_write(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001915
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001916 if (res != req->result)
1917 req_set_fail_links(req);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001918 if (req->flags & REQ_F_BUFFER_SELECTED)
1919 cflags = io_put_kbuf(req);
1920 __io_cqring_add_event(req, res, cflags);
Jens Axboeba816ad2019-09-28 11:36:45 -06001921}
1922
1923static void io_complete_rw(struct kiocb *kiocb, long res, long res2)
1924{
Jens Axboe9adbd452019-12-20 08:45:55 -07001925 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboeba816ad2019-09-28 11:36:45 -06001926
1927 io_complete_rw_common(kiocb, res);
Jens Axboee65ef562019-03-12 10:16:44 -06001928 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001929}
1930
Jens Axboedef596e2019-01-09 08:59:42 -07001931static void io_complete_rw_iopoll(struct kiocb *kiocb, long res, long res2)
1932{
Jens Axboe9adbd452019-12-20 08:45:55 -07001933 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboedef596e2019-01-09 08:59:42 -07001934
Jens Axboe491381ce2019-10-17 09:20:46 -06001935 if (kiocb->ki_flags & IOCB_WRITE)
1936 kiocb_end_write(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001937
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001938 if (res != req->result)
1939 req_set_fail_links(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06001940 req->result = res;
Jens Axboedef596e2019-01-09 08:59:42 -07001941 if (res != -EAGAIN)
1942 req->flags |= REQ_F_IOPOLL_COMPLETED;
1943}
1944
1945/*
1946 * After the iocb has been issued, it's safe to be found on the poll list.
1947 * Adding the kiocb to the list AFTER submission ensures that we don't
1948 * find it from a io_iopoll_getevents() thread before the issuer is done
1949 * accessing the kiocb cookie.
1950 */
1951static void io_iopoll_req_issued(struct io_kiocb *req)
1952{
1953 struct io_ring_ctx *ctx = req->ctx;
1954
1955 /*
1956 * Track whether we have multiple files in our lists. This will impact
1957 * how we do polling eventually, not spinning if we're on potentially
1958 * different devices.
1959 */
1960 if (list_empty(&ctx->poll_list)) {
1961 ctx->poll_multi_file = false;
1962 } else if (!ctx->poll_multi_file) {
1963 struct io_kiocb *list_req;
1964
1965 list_req = list_first_entry(&ctx->poll_list, struct io_kiocb,
1966 list);
Jens Axboe9adbd452019-12-20 08:45:55 -07001967 if (list_req->file != req->file)
Jens Axboedef596e2019-01-09 08:59:42 -07001968 ctx->poll_multi_file = true;
1969 }
1970
1971 /*
1972 * For fast devices, IO may have already completed. If it has, add
1973 * it to the front so we find it first.
1974 */
1975 if (req->flags & REQ_F_IOPOLL_COMPLETED)
1976 list_add(&req->list, &ctx->poll_list);
1977 else
1978 list_add_tail(&req->list, &ctx->poll_list);
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08001979
1980 if ((ctx->flags & IORING_SETUP_SQPOLL) &&
1981 wq_has_sleeper(&ctx->sqo_wait))
1982 wake_up(&ctx->sqo_wait);
Jens Axboedef596e2019-01-09 08:59:42 -07001983}
1984
Jens Axboe3d6770f2019-04-13 11:50:54 -06001985static void io_file_put(struct io_submit_state *state)
Jens Axboe9a56a232019-01-09 09:06:50 -07001986{
Jens Axboe3d6770f2019-04-13 11:50:54 -06001987 if (state->file) {
Jens Axboe9a56a232019-01-09 09:06:50 -07001988 int diff = state->has_refs - state->used_refs;
1989
1990 if (diff)
1991 fput_many(state->file, diff);
1992 state->file = NULL;
1993 }
1994}
1995
1996/*
1997 * Get as many references to a file as we have IOs left in this submission,
1998 * assuming most submissions are for one file, or at least that each file
1999 * has more than one submission.
2000 */
Pavel Begunkov8da11c12020-02-24 11:32:44 +03002001static struct file *__io_file_get(struct io_submit_state *state, int fd)
Jens Axboe9a56a232019-01-09 09:06:50 -07002002{
2003 if (!state)
2004 return fget(fd);
2005
2006 if (state->file) {
2007 if (state->fd == fd) {
2008 state->used_refs++;
2009 state->ios_left--;
2010 return state->file;
2011 }
Jens Axboe3d6770f2019-04-13 11:50:54 -06002012 io_file_put(state);
Jens Axboe9a56a232019-01-09 09:06:50 -07002013 }
2014 state->file = fget_many(fd, state->ios_left);
2015 if (!state->file)
2016 return NULL;
2017
2018 state->fd = fd;
2019 state->has_refs = state->ios_left;
2020 state->used_refs = 1;
2021 state->ios_left--;
2022 return state->file;
2023}
2024
Jens Axboe2b188cc2019-01-07 10:46:33 -07002025/*
2026 * If we tracked the file through the SCM inflight mechanism, we could support
2027 * any file. For now, just ensure that anything potentially problematic is done
2028 * inline.
2029 */
Jens Axboeaf197f52020-04-28 13:15:06 -06002030static bool io_file_supports_async(struct file *file, int rw)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002031{
2032 umode_t mode = file_inode(file)->i_mode;
2033
Jens Axboe10d59342019-12-09 20:16:22 -07002034 if (S_ISBLK(mode) || S_ISCHR(mode) || S_ISSOCK(mode))
Jens Axboe2b188cc2019-01-07 10:46:33 -07002035 return true;
2036 if (S_ISREG(mode) && file->f_op != &io_uring_fops)
2037 return true;
2038
Jens Axboeaf197f52020-04-28 13:15:06 -06002039 if (!(file->f_mode & FMODE_NOWAIT))
2040 return false;
2041
2042 if (rw == READ)
2043 return file->f_op->read_iter != NULL;
2044
2045 return file->f_op->write_iter != NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002046}
2047
Jens Axboe3529d8c2019-12-19 18:24:38 -07002048static int io_prep_rw(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2049 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002050{
Jens Axboedef596e2019-01-09 08:59:42 -07002051 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9adbd452019-12-20 08:45:55 -07002052 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe09bb8392019-03-13 12:39:28 -06002053 unsigned ioprio;
2054 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002055
Jens Axboe491381ce2019-10-17 09:20:46 -06002056 if (S_ISREG(file_inode(req->file)->i_mode))
2057 req->flags |= REQ_F_ISREG;
2058
Jens Axboe2b188cc2019-01-07 10:46:33 -07002059 kiocb->ki_pos = READ_ONCE(sqe->off);
Jens Axboeba042912019-12-25 16:33:42 -07002060 if (kiocb->ki_pos == -1 && !(req->file->f_mode & FMODE_STREAM)) {
2061 req->flags |= REQ_F_CUR_POS;
2062 kiocb->ki_pos = req->file->f_pos;
2063 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002064 kiocb->ki_hint = ki_hint_validate(file_write_hint(kiocb->ki_filp));
Pavel Begunkov3e577dc2020-02-01 03:58:42 +03002065 kiocb->ki_flags = iocb_flags(kiocb->ki_filp);
2066 ret = kiocb_set_rw_flags(kiocb, READ_ONCE(sqe->rw_flags));
2067 if (unlikely(ret))
2068 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002069
2070 ioprio = READ_ONCE(sqe->ioprio);
2071 if (ioprio) {
2072 ret = ioprio_check_cap(ioprio);
2073 if (ret)
Jens Axboe09bb8392019-03-13 12:39:28 -06002074 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002075
2076 kiocb->ki_ioprio = ioprio;
2077 } else
2078 kiocb->ki_ioprio = get_current_ioprio();
2079
Stefan Bühler8449eed2019-04-27 20:34:19 +02002080 /* don't allow async punt if RWF_NOWAIT was requested */
Jens Axboe491381ce2019-10-17 09:20:46 -06002081 if ((kiocb->ki_flags & IOCB_NOWAIT) ||
2082 (req->file->f_flags & O_NONBLOCK))
Stefan Bühler8449eed2019-04-27 20:34:19 +02002083 req->flags |= REQ_F_NOWAIT;
2084
2085 if (force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002086 kiocb->ki_flags |= IOCB_NOWAIT;
Stefan Bühler8449eed2019-04-27 20:34:19 +02002087
Jens Axboedef596e2019-01-09 08:59:42 -07002088 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07002089 if (!(kiocb->ki_flags & IOCB_DIRECT) ||
2090 !kiocb->ki_filp->f_op->iopoll)
Jens Axboe09bb8392019-03-13 12:39:28 -06002091 return -EOPNOTSUPP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002092
Jens Axboedef596e2019-01-09 08:59:42 -07002093 kiocb->ki_flags |= IOCB_HIPRI;
2094 kiocb->ki_complete = io_complete_rw_iopoll;
Jens Axboe6873e0b2019-10-30 13:53:09 -06002095 req->result = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07002096 } else {
Jens Axboe09bb8392019-03-13 12:39:28 -06002097 if (kiocb->ki_flags & IOCB_HIPRI)
2098 return -EINVAL;
Jens Axboedef596e2019-01-09 08:59:42 -07002099 kiocb->ki_complete = io_complete_rw;
2100 }
Jens Axboe9adbd452019-12-20 08:45:55 -07002101
Jens Axboe3529d8c2019-12-19 18:24:38 -07002102 req->rw.addr = READ_ONCE(sqe->addr);
2103 req->rw.len = READ_ONCE(sqe->len);
Jens Axboebcda7ba2020-02-23 16:42:51 -07002104 /* we own ->private, reuse it for the buffer index / buffer ID */
Jens Axboe9adbd452019-12-20 08:45:55 -07002105 req->rw.kiocb.private = (void *) (unsigned long)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002106 READ_ONCE(sqe->buf_index);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002107 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002108}
2109
2110static inline void io_rw_done(struct kiocb *kiocb, ssize_t ret)
2111{
2112 switch (ret) {
2113 case -EIOCBQUEUED:
2114 break;
2115 case -ERESTARTSYS:
2116 case -ERESTARTNOINTR:
2117 case -ERESTARTNOHAND:
2118 case -ERESTART_RESTARTBLOCK:
2119 /*
2120 * We can't just restart the syscall, since previously
2121 * submitted sqes may already be in progress. Just fail this
2122 * IO with EINTR.
2123 */
2124 ret = -EINTR;
2125 /* fall through */
2126 default:
2127 kiocb->ki_complete(kiocb, ret, 0);
2128 }
2129}
2130
Pavel Begunkov014db002020-03-03 21:33:12 +03002131static void kiocb_done(struct kiocb *kiocb, ssize_t ret)
Jens Axboeba816ad2019-09-28 11:36:45 -06002132{
Jens Axboeba042912019-12-25 16:33:42 -07002133 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
2134
2135 if (req->flags & REQ_F_CUR_POS)
2136 req->file->f_pos = kiocb->ki_pos;
Pavel Begunkovbcaec082020-02-24 11:30:18 +03002137 if (ret >= 0 && kiocb->ki_complete == io_complete_rw)
Pavel Begunkov014db002020-03-03 21:33:12 +03002138 io_complete_rw(kiocb, ret, 0);
Jens Axboeba816ad2019-09-28 11:36:45 -06002139 else
2140 io_rw_done(kiocb, ret);
2141}
2142
Jens Axboe9adbd452019-12-20 08:45:55 -07002143static ssize_t io_import_fixed(struct io_kiocb *req, int rw,
Pavel Begunkov7d009162019-11-25 23:14:40 +03002144 struct iov_iter *iter)
Jens Axboeedafcce2019-01-09 09:16:05 -07002145{
Jens Axboe9adbd452019-12-20 08:45:55 -07002146 struct io_ring_ctx *ctx = req->ctx;
2147 size_t len = req->rw.len;
Jens Axboeedafcce2019-01-09 09:16:05 -07002148 struct io_mapped_ubuf *imu;
2149 unsigned index, buf_index;
2150 size_t offset;
2151 u64 buf_addr;
2152
2153 /* attempt to use fixed buffers without having provided iovecs */
2154 if (unlikely(!ctx->user_bufs))
2155 return -EFAULT;
2156
Jens Axboe9adbd452019-12-20 08:45:55 -07002157 buf_index = (unsigned long) req->rw.kiocb.private;
Jens Axboeedafcce2019-01-09 09:16:05 -07002158 if (unlikely(buf_index >= ctx->nr_user_bufs))
2159 return -EFAULT;
2160
2161 index = array_index_nospec(buf_index, ctx->nr_user_bufs);
2162 imu = &ctx->user_bufs[index];
Jens Axboe9adbd452019-12-20 08:45:55 -07002163 buf_addr = req->rw.addr;
Jens Axboeedafcce2019-01-09 09:16:05 -07002164
2165 /* overflow */
2166 if (buf_addr + len < buf_addr)
2167 return -EFAULT;
2168 /* not inside the mapped region */
2169 if (buf_addr < imu->ubuf || buf_addr + len > imu->ubuf + imu->len)
2170 return -EFAULT;
2171
2172 /*
2173 * May not be a start of buffer, set size appropriately
2174 * and advance us to the beginning.
2175 */
2176 offset = buf_addr - imu->ubuf;
2177 iov_iter_bvec(iter, rw, imu->bvec, imu->nr_bvecs, offset + len);
Jens Axboebd11b3a2019-07-20 08:37:31 -06002178
2179 if (offset) {
2180 /*
2181 * Don't use iov_iter_advance() here, as it's really slow for
2182 * using the latter parts of a big fixed buffer - it iterates
2183 * over each segment manually. We can cheat a bit here, because
2184 * we know that:
2185 *
2186 * 1) it's a BVEC iter, we set it up
2187 * 2) all bvecs are PAGE_SIZE in size, except potentially the
2188 * first and last bvec
2189 *
2190 * So just find our index, and adjust the iterator afterwards.
2191 * If the offset is within the first bvec (or the whole first
2192 * bvec, just use iov_iter_advance(). This makes it easier
2193 * since we can just skip the first segment, which may not
2194 * be PAGE_SIZE aligned.
2195 */
2196 const struct bio_vec *bvec = imu->bvec;
2197
2198 if (offset <= bvec->bv_len) {
2199 iov_iter_advance(iter, offset);
2200 } else {
2201 unsigned long seg_skip;
2202
2203 /* skip first vec */
2204 offset -= bvec->bv_len;
2205 seg_skip = 1 + (offset >> PAGE_SHIFT);
2206
2207 iter->bvec = bvec + seg_skip;
2208 iter->nr_segs -= seg_skip;
Aleix Roca Nonell99c79f62019-08-15 14:03:22 +02002209 iter->count -= bvec->bv_len + offset;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002210 iter->iov_offset = offset & ~PAGE_MASK;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002211 }
2212 }
2213
Jens Axboe5e559562019-11-13 16:12:46 -07002214 return len;
Jens Axboeedafcce2019-01-09 09:16:05 -07002215}
2216
Jens Axboebcda7ba2020-02-23 16:42:51 -07002217static void io_ring_submit_unlock(struct io_ring_ctx *ctx, bool needs_lock)
2218{
2219 if (needs_lock)
2220 mutex_unlock(&ctx->uring_lock);
2221}
2222
2223static void io_ring_submit_lock(struct io_ring_ctx *ctx, bool needs_lock)
2224{
2225 /*
2226 * "Normal" inline submissions always hold the uring_lock, since we
2227 * grab it from the system call. Same is true for the SQPOLL offload.
2228 * The only exception is when we've detached the request and issue it
2229 * from an async worker thread, grab the lock for that case.
2230 */
2231 if (needs_lock)
2232 mutex_lock(&ctx->uring_lock);
2233}
2234
2235static struct io_buffer *io_buffer_select(struct io_kiocb *req, size_t *len,
2236 int bgid, struct io_buffer *kbuf,
2237 bool needs_lock)
2238{
2239 struct io_buffer *head;
2240
2241 if (req->flags & REQ_F_BUFFER_SELECTED)
2242 return kbuf;
2243
2244 io_ring_submit_lock(req->ctx, needs_lock);
2245
2246 lockdep_assert_held(&req->ctx->uring_lock);
2247
2248 head = idr_find(&req->ctx->io_buffer_idr, bgid);
2249 if (head) {
2250 if (!list_empty(&head->list)) {
2251 kbuf = list_last_entry(&head->list, struct io_buffer,
2252 list);
2253 list_del(&kbuf->list);
2254 } else {
2255 kbuf = head;
2256 idr_remove(&req->ctx->io_buffer_idr, bgid);
2257 }
2258 if (*len > kbuf->len)
2259 *len = kbuf->len;
2260 } else {
2261 kbuf = ERR_PTR(-ENOBUFS);
2262 }
2263
2264 io_ring_submit_unlock(req->ctx, needs_lock);
2265
2266 return kbuf;
2267}
2268
Jens Axboe4d954c22020-02-27 07:31:19 -07002269static void __user *io_rw_buffer_select(struct io_kiocb *req, size_t *len,
2270 bool needs_lock)
2271{
2272 struct io_buffer *kbuf;
2273 int bgid;
2274
2275 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
2276 bgid = (int) (unsigned long) req->rw.kiocb.private;
2277 kbuf = io_buffer_select(req, len, bgid, kbuf, needs_lock);
2278 if (IS_ERR(kbuf))
2279 return kbuf;
2280 req->rw.addr = (u64) (unsigned long) kbuf;
2281 req->flags |= REQ_F_BUFFER_SELECTED;
2282 return u64_to_user_ptr(kbuf->addr);
2283}
2284
2285#ifdef CONFIG_COMPAT
2286static ssize_t io_compat_import(struct io_kiocb *req, struct iovec *iov,
2287 bool needs_lock)
2288{
2289 struct compat_iovec __user *uiov;
2290 compat_ssize_t clen;
2291 void __user *buf;
2292 ssize_t len;
2293
2294 uiov = u64_to_user_ptr(req->rw.addr);
2295 if (!access_ok(uiov, sizeof(*uiov)))
2296 return -EFAULT;
2297 if (__get_user(clen, &uiov->iov_len))
2298 return -EFAULT;
2299 if (clen < 0)
2300 return -EINVAL;
2301
2302 len = clen;
2303 buf = io_rw_buffer_select(req, &len, needs_lock);
2304 if (IS_ERR(buf))
2305 return PTR_ERR(buf);
2306 iov[0].iov_base = buf;
2307 iov[0].iov_len = (compat_size_t) len;
2308 return 0;
2309}
2310#endif
2311
2312static ssize_t __io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
2313 bool needs_lock)
2314{
2315 struct iovec __user *uiov = u64_to_user_ptr(req->rw.addr);
2316 void __user *buf;
2317 ssize_t len;
2318
2319 if (copy_from_user(iov, uiov, sizeof(*uiov)))
2320 return -EFAULT;
2321
2322 len = iov[0].iov_len;
2323 if (len < 0)
2324 return -EINVAL;
2325 buf = io_rw_buffer_select(req, &len, needs_lock);
2326 if (IS_ERR(buf))
2327 return PTR_ERR(buf);
2328 iov[0].iov_base = buf;
2329 iov[0].iov_len = len;
2330 return 0;
2331}
2332
2333static ssize_t io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
2334 bool needs_lock)
2335{
2336 if (req->flags & REQ_F_BUFFER_SELECTED)
2337 return 0;
2338 if (!req->rw.len)
2339 return 0;
2340 else if (req->rw.len > 1)
2341 return -EINVAL;
2342
2343#ifdef CONFIG_COMPAT
2344 if (req->ctx->compat)
2345 return io_compat_import(req, iov, needs_lock);
2346#endif
2347
2348 return __io_iov_buffer_select(req, iov, needs_lock);
2349}
2350
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002351static ssize_t io_import_iovec(int rw, struct io_kiocb *req,
Jens Axboebcda7ba2020-02-23 16:42:51 -07002352 struct iovec **iovec, struct iov_iter *iter,
2353 bool needs_lock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002354{
Jens Axboe9adbd452019-12-20 08:45:55 -07002355 void __user *buf = u64_to_user_ptr(req->rw.addr);
2356 size_t sqe_len = req->rw.len;
Jens Axboe4d954c22020-02-27 07:31:19 -07002357 ssize_t ret;
Jens Axboeedafcce2019-01-09 09:16:05 -07002358 u8 opcode;
2359
Jens Axboed625c6e2019-12-17 19:53:05 -07002360 opcode = req->opcode;
Pavel Begunkov7d009162019-11-25 23:14:40 +03002361 if (opcode == IORING_OP_READ_FIXED || opcode == IORING_OP_WRITE_FIXED) {
Jens Axboeedafcce2019-01-09 09:16:05 -07002362 *iovec = NULL;
Jens Axboe9adbd452019-12-20 08:45:55 -07002363 return io_import_fixed(req, rw, iter);
Jens Axboeedafcce2019-01-09 09:16:05 -07002364 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002365
Jens Axboebcda7ba2020-02-23 16:42:51 -07002366 /* buffer index only valid with fixed read/write, or buffer select */
2367 if (req->rw.kiocb.private && !(req->flags & REQ_F_BUFFER_SELECT))
Jens Axboe9adbd452019-12-20 08:45:55 -07002368 return -EINVAL;
2369
Jens Axboe3a6820f2019-12-22 15:19:35 -07002370 if (opcode == IORING_OP_READ || opcode == IORING_OP_WRITE) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07002371 if (req->flags & REQ_F_BUFFER_SELECT) {
Jens Axboe4d954c22020-02-27 07:31:19 -07002372 buf = io_rw_buffer_select(req, &sqe_len, needs_lock);
2373 if (IS_ERR(buf)) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07002374 *iovec = NULL;
Jens Axboe4d954c22020-02-27 07:31:19 -07002375 return PTR_ERR(buf);
Jens Axboebcda7ba2020-02-23 16:42:51 -07002376 }
Jens Axboe3f9d6442020-03-11 12:27:04 -06002377 req->rw.len = sqe_len;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002378 }
2379
Jens Axboe3a6820f2019-12-22 15:19:35 -07002380 ret = import_single_range(rw, buf, sqe_len, *iovec, iter);
2381 *iovec = NULL;
Jens Axboe3a901592020-02-25 17:48:55 -07002382 return ret < 0 ? ret : sqe_len;
Jens Axboe3a6820f2019-12-22 15:19:35 -07002383 }
2384
Jens Axboef67676d2019-12-02 11:03:47 -07002385 if (req->io) {
2386 struct io_async_rw *iorw = &req->io->rw;
2387
2388 *iovec = iorw->iov;
2389 iov_iter_init(iter, rw, *iovec, iorw->nr_segs, iorw->size);
2390 if (iorw->iov == iorw->fast_iov)
2391 *iovec = NULL;
2392 return iorw->size;
2393 }
2394
Jens Axboe4d954c22020-02-27 07:31:19 -07002395 if (req->flags & REQ_F_BUFFER_SELECT) {
2396 ret = io_iov_buffer_select(req, *iovec, needs_lock);
Jens Axboe3f9d6442020-03-11 12:27:04 -06002397 if (!ret) {
2398 ret = (*iovec)->iov_len;
2399 iov_iter_init(iter, rw, *iovec, 1, ret);
2400 }
Jens Axboe4d954c22020-02-27 07:31:19 -07002401 *iovec = NULL;
2402 return ret;
2403 }
2404
Jens Axboe2b188cc2019-01-07 10:46:33 -07002405#ifdef CONFIG_COMPAT
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002406 if (req->ctx->compat)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002407 return compat_import_iovec(rw, buf, sqe_len, UIO_FASTIOV,
2408 iovec, iter);
2409#endif
2410
2411 return import_iovec(rw, buf, sqe_len, UIO_FASTIOV, iovec, iter);
2412}
2413
Jens Axboe32960612019-09-23 11:05:34 -06002414/*
2415 * For files that don't have ->read_iter() and ->write_iter(), handle them
2416 * by looping over ->read() or ->write() manually.
2417 */
2418static ssize_t loop_rw_iter(int rw, struct file *file, struct kiocb *kiocb,
2419 struct iov_iter *iter)
2420{
2421 ssize_t ret = 0;
2422
2423 /*
2424 * Don't support polled IO through this interface, and we can't
2425 * support non-blocking either. For the latter, this just causes
2426 * the kiocb to be handled from an async context.
2427 */
2428 if (kiocb->ki_flags & IOCB_HIPRI)
2429 return -EOPNOTSUPP;
2430 if (kiocb->ki_flags & IOCB_NOWAIT)
2431 return -EAGAIN;
2432
2433 while (iov_iter_count(iter)) {
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002434 struct iovec iovec;
Jens Axboe32960612019-09-23 11:05:34 -06002435 ssize_t nr;
2436
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002437 if (!iov_iter_is_bvec(iter)) {
2438 iovec = iov_iter_iovec(iter);
2439 } else {
2440 /* fixed buffers import bvec */
2441 iovec.iov_base = kmap(iter->bvec->bv_page)
2442 + iter->iov_offset;
2443 iovec.iov_len = min(iter->count,
2444 iter->bvec->bv_len - iter->iov_offset);
2445 }
2446
Jens Axboe32960612019-09-23 11:05:34 -06002447 if (rw == READ) {
2448 nr = file->f_op->read(file, iovec.iov_base,
2449 iovec.iov_len, &kiocb->ki_pos);
2450 } else {
2451 nr = file->f_op->write(file, iovec.iov_base,
2452 iovec.iov_len, &kiocb->ki_pos);
2453 }
2454
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002455 if (iov_iter_is_bvec(iter))
2456 kunmap(iter->bvec->bv_page);
2457
Jens Axboe32960612019-09-23 11:05:34 -06002458 if (nr < 0) {
2459 if (!ret)
2460 ret = nr;
2461 break;
2462 }
2463 ret += nr;
2464 if (nr != iovec.iov_len)
2465 break;
2466 iov_iter_advance(iter, nr);
2467 }
2468
2469 return ret;
2470}
2471
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002472static void io_req_map_rw(struct io_kiocb *req, ssize_t io_size,
Jens Axboef67676d2019-12-02 11:03:47 -07002473 struct iovec *iovec, struct iovec *fast_iov,
2474 struct iov_iter *iter)
2475{
2476 req->io->rw.nr_segs = iter->nr_segs;
2477 req->io->rw.size = io_size;
2478 req->io->rw.iov = iovec;
2479 if (!req->io->rw.iov) {
2480 req->io->rw.iov = req->io->rw.fast_iov;
Xiaoguang Wang45097da2020-04-08 22:29:58 +08002481 if (req->io->rw.iov != fast_iov)
2482 memcpy(req->io->rw.iov, fast_iov,
2483 sizeof(struct iovec) * iter->nr_segs);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002484 } else {
2485 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboef67676d2019-12-02 11:03:47 -07002486 }
2487}
2488
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08002489static inline int __io_alloc_async_ctx(struct io_kiocb *req)
2490{
2491 req->io = kmalloc(sizeof(*req->io), GFP_KERNEL);
2492 return req->io == NULL;
2493}
2494
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002495static int io_alloc_async_ctx(struct io_kiocb *req)
Jens Axboef67676d2019-12-02 11:03:47 -07002496{
Jens Axboed3656342019-12-18 09:50:26 -07002497 if (!io_op_defs[req->opcode].async_ctx)
2498 return 0;
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08002499
2500 return __io_alloc_async_ctx(req);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002501}
2502
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002503static int io_setup_async_rw(struct io_kiocb *req, ssize_t io_size,
2504 struct iovec *iovec, struct iovec *fast_iov,
2505 struct iov_iter *iter)
2506{
Jens Axboe980ad262020-01-24 23:08:54 -07002507 if (!io_op_defs[req->opcode].async_ctx)
Jens Axboe74566df2020-01-13 19:23:24 -07002508 return 0;
Jens Axboe5d204bc2020-01-31 12:06:52 -07002509 if (!req->io) {
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08002510 if (__io_alloc_async_ctx(req))
Jens Axboe5d204bc2020-01-31 12:06:52 -07002511 return -ENOMEM;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002512
Jens Axboe5d204bc2020-01-31 12:06:52 -07002513 io_req_map_rw(req, io_size, iovec, fast_iov, iter);
2514 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002515 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002516}
2517
Jens Axboe3529d8c2019-12-19 18:24:38 -07002518static int io_read_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2519 bool force_nonblock)
Jens Axboef67676d2019-12-02 11:03:47 -07002520{
Jens Axboe3529d8c2019-12-19 18:24:38 -07002521 struct io_async_ctx *io;
2522 struct iov_iter iter;
Jens Axboef67676d2019-12-02 11:03:47 -07002523 ssize_t ret;
2524
Jens Axboe3529d8c2019-12-19 18:24:38 -07002525 ret = io_prep_rw(req, sqe, force_nonblock);
2526 if (ret)
2527 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07002528
Jens Axboe3529d8c2019-12-19 18:24:38 -07002529 if (unlikely(!(req->file->f_mode & FMODE_READ)))
2530 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07002531
Pavel Begunkov5f798be2020-02-08 13:28:02 +03002532 /* either don't need iovec imported or already have it */
2533 if (!req->io || req->flags & REQ_F_NEED_CLEANUP)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002534 return 0;
2535
2536 io = req->io;
2537 io->rw.iov = io->rw.fast_iov;
2538 req->io = NULL;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002539 ret = io_import_iovec(READ, req, &io->rw.iov, &iter, !force_nonblock);
Jens Axboe3529d8c2019-12-19 18:24:38 -07002540 req->io = io;
2541 if (ret < 0)
2542 return ret;
2543
2544 io_req_map_rw(req, ret, io->rw.iov, io->rw.fast_iov, &iter);
2545 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002546}
2547
Pavel Begunkov014db002020-03-03 21:33:12 +03002548static int io_read(struct io_kiocb *req, bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002549{
2550 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07002551 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002552 struct iov_iter iter;
Jens Axboe31b51512019-01-18 22:56:34 -07002553 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07002554 ssize_t io_size, ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002555
Jens Axboebcda7ba2020-02-23 16:42:51 -07002556 ret = io_import_iovec(READ, req, &iovec, &iter, !force_nonblock);
Jens Axboe06b76d42019-12-19 14:44:26 -07002557 if (ret < 0)
2558 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002559
Jens Axboefd6c2e42019-12-18 12:19:41 -07002560 /* Ensure we clear previously set non-block flag */
2561 if (!force_nonblock)
Jens Axboe29de5f62020-02-20 09:56:08 -07002562 kiocb->ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07002563
Bijan Mottahedeh797f3f52020-01-15 18:37:45 -08002564 req->result = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002565 io_size = ret;
Pavel Begunkovdea3b492020-04-12 02:05:04 +03002566 if (req->flags & REQ_F_LINK_HEAD)
Jens Axboef67676d2019-12-02 11:03:47 -07002567 req->result = io_size;
2568
2569 /*
2570 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
2571 * we know to async punt it even if it was opened O_NONBLOCK
2572 */
Jens Axboeaf197f52020-04-28 13:15:06 -06002573 if (force_nonblock && !io_file_supports_async(req->file, READ))
Jens Axboef67676d2019-12-02 11:03:47 -07002574 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06002575
Jens Axboe31b51512019-01-18 22:56:34 -07002576 iov_count = iov_iter_count(&iter);
Jens Axboe9adbd452019-12-20 08:45:55 -07002577 ret = rw_verify_area(READ, req->file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002578 if (!ret) {
2579 ssize_t ret2;
2580
Jens Axboe9adbd452019-12-20 08:45:55 -07002581 if (req->file->f_op->read_iter)
2582 ret2 = call_read_iter(req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002583 else
Jens Axboe9adbd452019-12-20 08:45:55 -07002584 ret2 = loop_rw_iter(READ, req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002585
Jens Axboe9d93a3f2019-05-15 13:53:07 -06002586 /* Catch -EAGAIN return for forced non-blocking submission */
Jens Axboef67676d2019-12-02 11:03:47 -07002587 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkov014db002020-03-03 21:33:12 +03002588 kiocb_done(kiocb, ret2);
Jens Axboef67676d2019-12-02 11:03:47 -07002589 } else {
2590copy_iov:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002591 ret = io_setup_async_rw(req, io_size, iovec,
Jens Axboef67676d2019-12-02 11:03:47 -07002592 inline_vecs, &iter);
2593 if (ret)
2594 goto out_free;
Jens Axboe29de5f62020-02-20 09:56:08 -07002595 /* any defer here is final, must blocking retry */
Jens Axboe490e8962020-04-28 13:16:53 -06002596 if (!(req->flags & REQ_F_NOWAIT) &&
2597 !file_can_poll(req->file))
Jens Axboe29de5f62020-02-20 09:56:08 -07002598 req->flags |= REQ_F_MUST_PUNT;
Jens Axboef67676d2019-12-02 11:03:47 -07002599 return -EAGAIN;
2600 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002601 }
Jens Axboef67676d2019-12-02 11:03:47 -07002602out_free:
Pavel Begunkov1e950812020-02-06 19:51:16 +03002603 kfree(iovec);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002604 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002605 return ret;
2606}
2607
Jens Axboe3529d8c2019-12-19 18:24:38 -07002608static int io_write_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2609 bool force_nonblock)
Jens Axboef67676d2019-12-02 11:03:47 -07002610{
Jens Axboe3529d8c2019-12-19 18:24:38 -07002611 struct io_async_ctx *io;
2612 struct iov_iter iter;
Jens Axboef67676d2019-12-02 11:03:47 -07002613 ssize_t ret;
2614
Jens Axboe3529d8c2019-12-19 18:24:38 -07002615 ret = io_prep_rw(req, sqe, force_nonblock);
2616 if (ret)
2617 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07002618
Jens Axboe3529d8c2019-12-19 18:24:38 -07002619 if (unlikely(!(req->file->f_mode & FMODE_WRITE)))
2620 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07002621
Jens Axboe4ed734b2020-03-20 11:23:41 -06002622 req->fsize = rlimit(RLIMIT_FSIZE);
2623
Pavel Begunkov5f798be2020-02-08 13:28:02 +03002624 /* either don't need iovec imported or already have it */
2625 if (!req->io || req->flags & REQ_F_NEED_CLEANUP)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002626 return 0;
2627
2628 io = req->io;
2629 io->rw.iov = io->rw.fast_iov;
2630 req->io = NULL;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002631 ret = io_import_iovec(WRITE, req, &io->rw.iov, &iter, !force_nonblock);
Jens Axboe3529d8c2019-12-19 18:24:38 -07002632 req->io = io;
2633 if (ret < 0)
2634 return ret;
2635
2636 io_req_map_rw(req, ret, io->rw.iov, io->rw.fast_iov, &iter);
2637 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002638}
2639
Pavel Begunkov014db002020-03-03 21:33:12 +03002640static int io_write(struct io_kiocb *req, bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002641{
2642 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07002643 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002644 struct iov_iter iter;
Jens Axboe31b51512019-01-18 22:56:34 -07002645 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07002646 ssize_t ret, io_size;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002647
Jens Axboebcda7ba2020-02-23 16:42:51 -07002648 ret = io_import_iovec(WRITE, req, &iovec, &iter, !force_nonblock);
Jens Axboe06b76d42019-12-19 14:44:26 -07002649 if (ret < 0)
2650 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002651
Jens Axboefd6c2e42019-12-18 12:19:41 -07002652 /* Ensure we clear previously set non-block flag */
2653 if (!force_nonblock)
Jens Axboe9adbd452019-12-20 08:45:55 -07002654 req->rw.kiocb.ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07002655
Bijan Mottahedeh797f3f52020-01-15 18:37:45 -08002656 req->result = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002657 io_size = ret;
Pavel Begunkovdea3b492020-04-12 02:05:04 +03002658 if (req->flags & REQ_F_LINK_HEAD)
Jens Axboef67676d2019-12-02 11:03:47 -07002659 req->result = io_size;
2660
2661 /*
2662 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
2663 * we know to async punt it even if it was opened O_NONBLOCK
2664 */
Jens Axboeaf197f52020-04-28 13:15:06 -06002665 if (force_nonblock && !io_file_supports_async(req->file, WRITE))
Jens Axboef67676d2019-12-02 11:03:47 -07002666 goto copy_iov;
Jens Axboef67676d2019-12-02 11:03:47 -07002667
Jens Axboe10d59342019-12-09 20:16:22 -07002668 /* file path doesn't support NOWAIT for non-direct_IO */
2669 if (force_nonblock && !(kiocb->ki_flags & IOCB_DIRECT) &&
2670 (req->flags & REQ_F_ISREG))
Jens Axboef67676d2019-12-02 11:03:47 -07002671 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06002672
Jens Axboe31b51512019-01-18 22:56:34 -07002673 iov_count = iov_iter_count(&iter);
Jens Axboe9adbd452019-12-20 08:45:55 -07002674 ret = rw_verify_area(WRITE, req->file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002675 if (!ret) {
Roman Penyaev9bf79332019-03-25 20:09:24 +01002676 ssize_t ret2;
2677
Jens Axboe2b188cc2019-01-07 10:46:33 -07002678 /*
2679 * Open-code file_start_write here to grab freeze protection,
2680 * which will be released by another thread in
2681 * io_complete_rw(). Fool lockdep by telling it the lock got
2682 * released so that it doesn't complain about the held lock when
2683 * we return to userspace.
2684 */
Jens Axboe491381ce2019-10-17 09:20:46 -06002685 if (req->flags & REQ_F_ISREG) {
Jens Axboe9adbd452019-12-20 08:45:55 -07002686 __sb_start_write(file_inode(req->file)->i_sb,
Jens Axboe2b188cc2019-01-07 10:46:33 -07002687 SB_FREEZE_WRITE, true);
Jens Axboe9adbd452019-12-20 08:45:55 -07002688 __sb_writers_release(file_inode(req->file)->i_sb,
Jens Axboe2b188cc2019-01-07 10:46:33 -07002689 SB_FREEZE_WRITE);
2690 }
2691 kiocb->ki_flags |= IOCB_WRITE;
Roman Penyaev9bf79332019-03-25 20:09:24 +01002692
Jens Axboe4ed734b2020-03-20 11:23:41 -06002693 if (!force_nonblock)
2694 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = req->fsize;
2695
Jens Axboe9adbd452019-12-20 08:45:55 -07002696 if (req->file->f_op->write_iter)
2697 ret2 = call_write_iter(req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002698 else
Jens Axboe9adbd452019-12-20 08:45:55 -07002699 ret2 = loop_rw_iter(WRITE, req->file, kiocb, &iter);
Jens Axboe4ed734b2020-03-20 11:23:41 -06002700
2701 if (!force_nonblock)
2702 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = RLIM_INFINITY;
2703
Jens Axboefaac9962020-02-07 15:45:22 -07002704 /*
Chucheng Luobff60352020-03-25 11:31:38 +08002705 * Raw bdev writes will return -EOPNOTSUPP for IOCB_NOWAIT. Just
Jens Axboefaac9962020-02-07 15:45:22 -07002706 * retry them without IOCB_NOWAIT.
2707 */
2708 if (ret2 == -EOPNOTSUPP && (kiocb->ki_flags & IOCB_NOWAIT))
2709 ret2 = -EAGAIN;
Jens Axboef67676d2019-12-02 11:03:47 -07002710 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkov014db002020-03-03 21:33:12 +03002711 kiocb_done(kiocb, ret2);
Jens Axboef67676d2019-12-02 11:03:47 -07002712 } else {
2713copy_iov:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002714 ret = io_setup_async_rw(req, io_size, iovec,
Jens Axboef67676d2019-12-02 11:03:47 -07002715 inline_vecs, &iter);
2716 if (ret)
2717 goto out_free;
Jens Axboe29de5f62020-02-20 09:56:08 -07002718 /* any defer here is final, must blocking retry */
Jens Axboe490e8962020-04-28 13:16:53 -06002719 if (!file_can_poll(req->file))
2720 req->flags |= REQ_F_MUST_PUNT;
Jens Axboef67676d2019-12-02 11:03:47 -07002721 return -EAGAIN;
2722 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002723 }
Jens Axboe31b51512019-01-18 22:56:34 -07002724out_free:
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002725 req->flags &= ~REQ_F_NEED_CLEANUP;
Pavel Begunkov1e950812020-02-06 19:51:16 +03002726 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002727 return ret;
2728}
2729
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002730static int io_splice_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2731{
2732 struct io_splice* sp = &req->splice;
2733 unsigned int valid_flags = SPLICE_F_FD_IN_FIXED | SPLICE_F_ALL;
2734 int ret;
2735
2736 if (req->flags & REQ_F_NEED_CLEANUP)
2737 return 0;
2738
2739 sp->file_in = NULL;
2740 sp->off_in = READ_ONCE(sqe->splice_off_in);
2741 sp->off_out = READ_ONCE(sqe->off);
2742 sp->len = READ_ONCE(sqe->len);
2743 sp->flags = READ_ONCE(sqe->splice_flags);
2744
2745 if (unlikely(sp->flags & ~valid_flags))
2746 return -EINVAL;
2747
2748 ret = io_file_get(NULL, req, READ_ONCE(sqe->splice_fd_in), &sp->file_in,
2749 (sp->flags & SPLICE_F_FD_IN_FIXED));
2750 if (ret)
2751 return ret;
2752 req->flags |= REQ_F_NEED_CLEANUP;
2753
2754 if (!S_ISREG(file_inode(sp->file_in)->i_mode))
2755 req->work.flags |= IO_WQ_WORK_UNBOUND;
2756
2757 return 0;
2758}
2759
Pavel Begunkov014db002020-03-03 21:33:12 +03002760static int io_splice(struct io_kiocb *req, bool force_nonblock)
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002761{
2762 struct io_splice *sp = &req->splice;
2763 struct file *in = sp->file_in;
2764 struct file *out = sp->file_out;
2765 unsigned int flags = sp->flags & ~SPLICE_F_FD_IN_FIXED;
2766 loff_t *poff_in, *poff_out;
Pavel Begunkovc9687422020-05-04 23:00:54 +03002767 long ret = 0;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002768
Pavel Begunkov2fb3e822020-05-01 17:09:38 +03002769 if (force_nonblock)
2770 return -EAGAIN;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002771
2772 poff_in = (sp->off_in == -1) ? NULL : &sp->off_in;
2773 poff_out = (sp->off_out == -1) ? NULL : &sp->off_out;
Pavel Begunkovc9687422020-05-04 23:00:54 +03002774
Jens Axboe948a7742020-05-17 14:21:38 -06002775 if (sp->len)
Pavel Begunkovc9687422020-05-04 23:00:54 +03002776 ret = do_splice(in, poff_in, out, poff_out, sp->len, flags);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002777
2778 io_put_file(req, in, (sp->flags & SPLICE_F_FD_IN_FIXED));
2779 req->flags &= ~REQ_F_NEED_CLEANUP;
2780
2781 io_cqring_add_event(req, ret);
2782 if (ret != sp->len)
2783 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03002784 io_put_req(req);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002785 return 0;
2786}
2787
Jens Axboe2b188cc2019-01-07 10:46:33 -07002788/*
2789 * IORING_OP_NOP just posts a completion event, nothing else.
2790 */
Jens Axboe78e19bb2019-11-06 15:21:34 -07002791static int io_nop(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002792{
2793 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002794
Jens Axboedef596e2019-01-09 08:59:42 -07002795 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
2796 return -EINVAL;
2797
Jens Axboe78e19bb2019-11-06 15:21:34 -07002798 io_cqring_add_event(req, 0);
Jens Axboee65ef562019-03-12 10:16:44 -06002799 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002800 return 0;
2801}
2802
Jens Axboe3529d8c2019-12-19 18:24:38 -07002803static int io_prep_fsync(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002804{
Jens Axboe6b063142019-01-10 22:13:58 -07002805 struct io_ring_ctx *ctx = req->ctx;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002806
Jens Axboe09bb8392019-03-13 12:39:28 -06002807 if (!req->file)
2808 return -EBADF;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002809
Jens Axboe6b063142019-01-10 22:13:58 -07002810 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboedef596e2019-01-09 08:59:42 -07002811 return -EINVAL;
Jens Axboeedafcce2019-01-09 09:16:05 -07002812 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002813 return -EINVAL;
2814
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002815 req->sync.flags = READ_ONCE(sqe->fsync_flags);
2816 if (unlikely(req->sync.flags & ~IORING_FSYNC_DATASYNC))
2817 return -EINVAL;
2818
2819 req->sync.off = READ_ONCE(sqe->off);
2820 req->sync.len = READ_ONCE(sqe->len);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002821 return 0;
2822}
2823
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002824static bool io_req_cancelled(struct io_kiocb *req)
2825{
2826 if (req->work.flags & IO_WQ_WORK_CANCEL) {
2827 req_set_fail_links(req);
2828 io_cqring_add_event(req, -ECANCELED);
2829 io_put_req(req);
2830 return true;
2831 }
2832
2833 return false;
2834}
2835
Pavel Begunkov014db002020-03-03 21:33:12 +03002836static void __io_fsync(struct io_kiocb *req)
Jens Axboe78912932020-01-14 22:09:06 -07002837{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002838 loff_t end = req->sync.off + req->sync.len;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002839 int ret;
2840
Jens Axboe9adbd452019-12-20 08:45:55 -07002841 ret = vfs_fsync_range(req->file, req->sync.off,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002842 end > 0 ? end : LLONG_MAX,
2843 req->sync.flags & IORING_FSYNC_DATASYNC);
2844 if (ret < 0)
2845 req_set_fail_links(req);
2846 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03002847 io_put_req(req);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002848}
2849
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002850static void io_fsync_finish(struct io_wq_work **workptr)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002851{
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002852 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002853
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002854 if (io_req_cancelled(req))
2855 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03002856 __io_fsync(req);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03002857 io_steal_work(req, workptr);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002858}
2859
Pavel Begunkov014db002020-03-03 21:33:12 +03002860static int io_fsync(struct io_kiocb *req, bool force_nonblock)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002861{
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002862 /* fsync always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002863 if (force_nonblock) {
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002864 req->work.func = io_fsync_finish;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002865 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002866 }
Pavel Begunkov014db002020-03-03 21:33:12 +03002867 __io_fsync(req);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002868 return 0;
2869}
2870
Pavel Begunkov014db002020-03-03 21:33:12 +03002871static void __io_fallocate(struct io_kiocb *req)
Jens Axboed63d1b52019-12-10 10:38:56 -07002872{
Jens Axboed63d1b52019-12-10 10:38:56 -07002873 int ret;
2874
Jens Axboe4ed734b2020-03-20 11:23:41 -06002875 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = req->fsize;
Jens Axboed63d1b52019-12-10 10:38:56 -07002876 ret = vfs_fallocate(req->file, req->sync.mode, req->sync.off,
2877 req->sync.len);
Jens Axboe4ed734b2020-03-20 11:23:41 -06002878 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = RLIM_INFINITY;
Jens Axboed63d1b52019-12-10 10:38:56 -07002879 if (ret < 0)
2880 req_set_fail_links(req);
2881 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03002882 io_put_req(req);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002883}
2884
Jens Axboe2b188cc2019-01-07 10:46:33 -07002885static void io_fallocate_finish(struct io_wq_work **workptr)
2886{
2887 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Jens Axboed63d1b52019-12-10 10:38:56 -07002888
2889 if (io_req_cancelled(req))
2890 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03002891 __io_fallocate(req);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03002892 io_steal_work(req, workptr);
Jens Axboed63d1b52019-12-10 10:38:56 -07002893}
2894
2895static int io_fallocate_prep(struct io_kiocb *req,
2896 const struct io_uring_sqe *sqe)
2897{
2898 if (sqe->ioprio || sqe->buf_index || sqe->rw_flags)
2899 return -EINVAL;
2900
2901 req->sync.off = READ_ONCE(sqe->off);
2902 req->sync.len = READ_ONCE(sqe->addr);
2903 req->sync.mode = READ_ONCE(sqe->len);
Jens Axboe4ed734b2020-03-20 11:23:41 -06002904 req->fsize = rlimit(RLIMIT_FSIZE);
Jens Axboed63d1b52019-12-10 10:38:56 -07002905 return 0;
2906}
2907
Pavel Begunkov014db002020-03-03 21:33:12 +03002908static int io_fallocate(struct io_kiocb *req, bool force_nonblock)
Jens Axboed63d1b52019-12-10 10:38:56 -07002909{
Jens Axboed63d1b52019-12-10 10:38:56 -07002910 /* fallocate always requiring blocking context */
2911 if (force_nonblock) {
Jens Axboed63d1b52019-12-10 10:38:56 -07002912 req->work.func = io_fallocate_finish;
2913 return -EAGAIN;
2914 }
2915
Pavel Begunkov014db002020-03-03 21:33:12 +03002916 __io_fallocate(req);
Jens Axboed63d1b52019-12-10 10:38:56 -07002917 return 0;
2918}
2919
Jens Axboe15b71ab2019-12-11 11:20:36 -07002920static int io_openat_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2921{
Jens Axboef8748882020-01-08 17:47:02 -07002922 const char __user *fname;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002923 int ret;
2924
2925 if (sqe->ioprio || sqe->buf_index)
2926 return -EINVAL;
Pavel Begunkov9c280f92020-04-08 08:58:46 +03002927 if (req->flags & REQ_F_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07002928 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03002929 if (req->flags & REQ_F_NEED_CLEANUP)
2930 return 0;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002931
2932 req->open.dfd = READ_ONCE(sqe->fd);
Jens Axboec12cedf2020-01-08 17:41:21 -07002933 req->open.how.mode = READ_ONCE(sqe->len);
Jens Axboef8748882020-01-08 17:47:02 -07002934 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboec12cedf2020-01-08 17:41:21 -07002935 req->open.how.flags = READ_ONCE(sqe->open_flags);
Jens Axboe08a1d26eb2020-04-08 09:20:54 -06002936 if (force_o_largefile())
2937 req->open.how.flags |= O_LARGEFILE;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002938
Jens Axboef8748882020-01-08 17:47:02 -07002939 req->open.filename = getname(fname);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002940 if (IS_ERR(req->open.filename)) {
2941 ret = PTR_ERR(req->open.filename);
2942 req->open.filename = NULL;
2943 return ret;
2944 }
2945
Jens Axboe4022e7a2020-03-19 19:23:18 -06002946 req->open.nofile = rlimit(RLIMIT_NOFILE);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03002947 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002948 return 0;
2949}
2950
Jens Axboecebdb982020-01-08 17:59:24 -07002951static int io_openat2_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2952{
2953 struct open_how __user *how;
2954 const char __user *fname;
2955 size_t len;
2956 int ret;
2957
2958 if (sqe->ioprio || sqe->buf_index)
2959 return -EINVAL;
Pavel Begunkov9c280f92020-04-08 08:58:46 +03002960 if (req->flags & REQ_F_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07002961 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03002962 if (req->flags & REQ_F_NEED_CLEANUP)
2963 return 0;
Jens Axboecebdb982020-01-08 17:59:24 -07002964
2965 req->open.dfd = READ_ONCE(sqe->fd);
2966 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
2967 how = u64_to_user_ptr(READ_ONCE(sqe->addr2));
2968 len = READ_ONCE(sqe->len);
2969
2970 if (len < OPEN_HOW_SIZE_VER0)
2971 return -EINVAL;
2972
2973 ret = copy_struct_from_user(&req->open.how, sizeof(req->open.how), how,
2974 len);
2975 if (ret)
2976 return ret;
2977
2978 if (!(req->open.how.flags & O_PATH) && force_o_largefile())
2979 req->open.how.flags |= O_LARGEFILE;
2980
2981 req->open.filename = getname(fname);
2982 if (IS_ERR(req->open.filename)) {
2983 ret = PTR_ERR(req->open.filename);
2984 req->open.filename = NULL;
2985 return ret;
2986 }
2987
Jens Axboe4022e7a2020-03-19 19:23:18 -06002988 req->open.nofile = rlimit(RLIMIT_NOFILE);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03002989 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboecebdb982020-01-08 17:59:24 -07002990 return 0;
2991}
2992
Pavel Begunkov014db002020-03-03 21:33:12 +03002993static int io_openat2(struct io_kiocb *req, bool force_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07002994{
2995 struct open_flags op;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002996 struct file *file;
2997 int ret;
2998
Jens Axboef86cd202020-01-29 13:46:44 -07002999 if (force_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07003000 return -EAGAIN;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003001
Jens Axboecebdb982020-01-08 17:59:24 -07003002 ret = build_open_flags(&req->open.how, &op);
Jens Axboe15b71ab2019-12-11 11:20:36 -07003003 if (ret)
3004 goto err;
3005
Jens Axboe4022e7a2020-03-19 19:23:18 -06003006 ret = __get_unused_fd_flags(req->open.how.flags, req->open.nofile);
Jens Axboe15b71ab2019-12-11 11:20:36 -07003007 if (ret < 0)
3008 goto err;
3009
3010 file = do_filp_open(req->open.dfd, req->open.filename, &op);
3011 if (IS_ERR(file)) {
3012 put_unused_fd(ret);
3013 ret = PTR_ERR(file);
3014 } else {
3015 fsnotify_open(file);
3016 fd_install(ret, file);
3017 }
3018err:
3019 putname(req->open.filename);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003020 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003021 if (ret < 0)
3022 req_set_fail_links(req);
3023 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003024 io_put_req(req);
Jens Axboe15b71ab2019-12-11 11:20:36 -07003025 return 0;
3026}
3027
Pavel Begunkov014db002020-03-03 21:33:12 +03003028static int io_openat(struct io_kiocb *req, bool force_nonblock)
Jens Axboecebdb982020-01-08 17:59:24 -07003029{
3030 req->open.how = build_open_how(req->open.how.flags, req->open.how.mode);
Pavel Begunkov014db002020-03-03 21:33:12 +03003031 return io_openat2(req, force_nonblock);
Jens Axboecebdb982020-01-08 17:59:24 -07003032}
3033
Jens Axboe067524e2020-03-02 16:32:28 -07003034static int io_remove_buffers_prep(struct io_kiocb *req,
3035 const struct io_uring_sqe *sqe)
3036{
3037 struct io_provide_buf *p = &req->pbuf;
3038 u64 tmp;
3039
3040 if (sqe->ioprio || sqe->rw_flags || sqe->addr || sqe->len || sqe->off)
3041 return -EINVAL;
3042
3043 tmp = READ_ONCE(sqe->fd);
3044 if (!tmp || tmp > USHRT_MAX)
3045 return -EINVAL;
3046
3047 memset(p, 0, sizeof(*p));
3048 p->nbufs = tmp;
3049 p->bgid = READ_ONCE(sqe->buf_group);
3050 return 0;
3051}
3052
3053static int __io_remove_buffers(struct io_ring_ctx *ctx, struct io_buffer *buf,
3054 int bgid, unsigned nbufs)
3055{
3056 unsigned i = 0;
3057
3058 /* shouldn't happen */
3059 if (!nbufs)
3060 return 0;
3061
3062 /* the head kbuf is the list itself */
3063 while (!list_empty(&buf->list)) {
3064 struct io_buffer *nxt;
3065
3066 nxt = list_first_entry(&buf->list, struct io_buffer, list);
3067 list_del(&nxt->list);
3068 kfree(nxt);
3069 if (++i == nbufs)
3070 return i;
3071 }
3072 i++;
3073 kfree(buf);
3074 idr_remove(&ctx->io_buffer_idr, bgid);
3075
3076 return i;
3077}
3078
3079static int io_remove_buffers(struct io_kiocb *req, bool force_nonblock)
3080{
3081 struct io_provide_buf *p = &req->pbuf;
3082 struct io_ring_ctx *ctx = req->ctx;
3083 struct io_buffer *head;
3084 int ret = 0;
3085
3086 io_ring_submit_lock(ctx, !force_nonblock);
3087
3088 lockdep_assert_held(&ctx->uring_lock);
3089
3090 ret = -ENOENT;
3091 head = idr_find(&ctx->io_buffer_idr, p->bgid);
3092 if (head)
3093 ret = __io_remove_buffers(ctx, head, p->bgid, p->nbufs);
3094
3095 io_ring_submit_lock(ctx, !force_nonblock);
3096 if (ret < 0)
3097 req_set_fail_links(req);
3098 io_cqring_add_event(req, ret);
3099 io_put_req(req);
3100 return 0;
3101}
3102
Jens Axboeddf0322d2020-02-23 16:41:33 -07003103static int io_provide_buffers_prep(struct io_kiocb *req,
3104 const struct io_uring_sqe *sqe)
3105{
3106 struct io_provide_buf *p = &req->pbuf;
3107 u64 tmp;
3108
3109 if (sqe->ioprio || sqe->rw_flags)
3110 return -EINVAL;
3111
3112 tmp = READ_ONCE(sqe->fd);
3113 if (!tmp || tmp > USHRT_MAX)
3114 return -E2BIG;
3115 p->nbufs = tmp;
3116 p->addr = READ_ONCE(sqe->addr);
3117 p->len = READ_ONCE(sqe->len);
3118
3119 if (!access_ok(u64_to_user_ptr(p->addr), p->len))
3120 return -EFAULT;
3121
3122 p->bgid = READ_ONCE(sqe->buf_group);
3123 tmp = READ_ONCE(sqe->off);
3124 if (tmp > USHRT_MAX)
3125 return -E2BIG;
3126 p->bid = tmp;
3127 return 0;
3128}
3129
3130static int io_add_buffers(struct io_provide_buf *pbuf, struct io_buffer **head)
3131{
3132 struct io_buffer *buf;
3133 u64 addr = pbuf->addr;
3134 int i, bid = pbuf->bid;
3135
3136 for (i = 0; i < pbuf->nbufs; i++) {
3137 buf = kmalloc(sizeof(*buf), GFP_KERNEL);
3138 if (!buf)
3139 break;
3140
3141 buf->addr = addr;
3142 buf->len = pbuf->len;
3143 buf->bid = bid;
3144 addr += pbuf->len;
3145 bid++;
3146 if (!*head) {
3147 INIT_LIST_HEAD(&buf->list);
3148 *head = buf;
3149 } else {
3150 list_add_tail(&buf->list, &(*head)->list);
3151 }
3152 }
3153
3154 return i ? i : -ENOMEM;
3155}
3156
Jens Axboeddf0322d2020-02-23 16:41:33 -07003157static int io_provide_buffers(struct io_kiocb *req, bool force_nonblock)
3158{
3159 struct io_provide_buf *p = &req->pbuf;
3160 struct io_ring_ctx *ctx = req->ctx;
3161 struct io_buffer *head, *list;
3162 int ret = 0;
3163
3164 io_ring_submit_lock(ctx, !force_nonblock);
3165
3166 lockdep_assert_held(&ctx->uring_lock);
3167
3168 list = head = idr_find(&ctx->io_buffer_idr, p->bgid);
3169
3170 ret = io_add_buffers(p, &head);
3171 if (ret < 0)
3172 goto out;
3173
3174 if (!list) {
3175 ret = idr_alloc(&ctx->io_buffer_idr, head, p->bgid, p->bgid + 1,
3176 GFP_KERNEL);
3177 if (ret < 0) {
Jens Axboe067524e2020-03-02 16:32:28 -07003178 __io_remove_buffers(ctx, head, p->bgid, -1U);
Jens Axboeddf0322d2020-02-23 16:41:33 -07003179 goto out;
3180 }
3181 }
3182out:
3183 io_ring_submit_unlock(ctx, !force_nonblock);
3184 if (ret < 0)
3185 req_set_fail_links(req);
3186 io_cqring_add_event(req, ret);
3187 io_put_req(req);
3188 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003189}
3190
Jens Axboe3e4827b2020-01-08 15:18:09 -07003191static int io_epoll_ctl_prep(struct io_kiocb *req,
3192 const struct io_uring_sqe *sqe)
3193{
3194#if defined(CONFIG_EPOLL)
3195 if (sqe->ioprio || sqe->buf_index)
3196 return -EINVAL;
3197
3198 req->epoll.epfd = READ_ONCE(sqe->fd);
3199 req->epoll.op = READ_ONCE(sqe->len);
3200 req->epoll.fd = READ_ONCE(sqe->off);
3201
3202 if (ep_op_has_event(req->epoll.op)) {
3203 struct epoll_event __user *ev;
3204
3205 ev = u64_to_user_ptr(READ_ONCE(sqe->addr));
3206 if (copy_from_user(&req->epoll.event, ev, sizeof(*ev)))
3207 return -EFAULT;
3208 }
3209
3210 return 0;
3211#else
3212 return -EOPNOTSUPP;
3213#endif
3214}
3215
Pavel Begunkov014db002020-03-03 21:33:12 +03003216static int io_epoll_ctl(struct io_kiocb *req, bool force_nonblock)
Jens Axboe3e4827b2020-01-08 15:18:09 -07003217{
3218#if defined(CONFIG_EPOLL)
3219 struct io_epoll *ie = &req->epoll;
3220 int ret;
3221
3222 ret = do_epoll_ctl(ie->epfd, ie->op, ie->fd, &ie->event, force_nonblock);
3223 if (force_nonblock && ret == -EAGAIN)
3224 return -EAGAIN;
3225
3226 if (ret < 0)
3227 req_set_fail_links(req);
3228 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003229 io_put_req(req);
Jens Axboe3e4827b2020-01-08 15:18:09 -07003230 return 0;
3231#else
3232 return -EOPNOTSUPP;
3233#endif
3234}
3235
Jens Axboec1ca7572019-12-25 22:18:28 -07003236static int io_madvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3237{
3238#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
3239 if (sqe->ioprio || sqe->buf_index || sqe->off)
3240 return -EINVAL;
3241
3242 req->madvise.addr = READ_ONCE(sqe->addr);
3243 req->madvise.len = READ_ONCE(sqe->len);
3244 req->madvise.advice = READ_ONCE(sqe->fadvise_advice);
3245 return 0;
3246#else
3247 return -EOPNOTSUPP;
3248#endif
3249}
3250
Pavel Begunkov014db002020-03-03 21:33:12 +03003251static int io_madvise(struct io_kiocb *req, bool force_nonblock)
Jens Axboec1ca7572019-12-25 22:18:28 -07003252{
3253#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
3254 struct io_madvise *ma = &req->madvise;
3255 int ret;
3256
3257 if (force_nonblock)
3258 return -EAGAIN;
3259
3260 ret = do_madvise(ma->addr, ma->len, ma->advice);
3261 if (ret < 0)
3262 req_set_fail_links(req);
3263 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003264 io_put_req(req);
Jens Axboec1ca7572019-12-25 22:18:28 -07003265 return 0;
3266#else
3267 return -EOPNOTSUPP;
3268#endif
3269}
3270
Jens Axboe4840e412019-12-25 22:03:45 -07003271static int io_fadvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3272{
3273 if (sqe->ioprio || sqe->buf_index || sqe->addr)
3274 return -EINVAL;
3275
3276 req->fadvise.offset = READ_ONCE(sqe->off);
3277 req->fadvise.len = READ_ONCE(sqe->len);
3278 req->fadvise.advice = READ_ONCE(sqe->fadvise_advice);
3279 return 0;
3280}
3281
Pavel Begunkov014db002020-03-03 21:33:12 +03003282static int io_fadvise(struct io_kiocb *req, bool force_nonblock)
Jens Axboe4840e412019-12-25 22:03:45 -07003283{
3284 struct io_fadvise *fa = &req->fadvise;
3285 int ret;
3286
Jens Axboe3e694262020-02-01 09:22:49 -07003287 if (force_nonblock) {
3288 switch (fa->advice) {
3289 case POSIX_FADV_NORMAL:
3290 case POSIX_FADV_RANDOM:
3291 case POSIX_FADV_SEQUENTIAL:
3292 break;
3293 default:
3294 return -EAGAIN;
3295 }
3296 }
Jens Axboe4840e412019-12-25 22:03:45 -07003297
3298 ret = vfs_fadvise(req->file, fa->offset, fa->len, fa->advice);
3299 if (ret < 0)
3300 req_set_fail_links(req);
3301 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003302 io_put_req(req);
Jens Axboe4840e412019-12-25 22:03:45 -07003303 return 0;
3304}
3305
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003306static int io_statx_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3307{
Jens Axboef8748882020-01-08 17:47:02 -07003308 const char __user *fname;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003309 unsigned lookup_flags;
3310 int ret;
3311
3312 if (sqe->ioprio || sqe->buf_index)
3313 return -EINVAL;
Pavel Begunkov9c280f92020-04-08 08:58:46 +03003314 if (req->flags & REQ_F_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07003315 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03003316 if (req->flags & REQ_F_NEED_CLEANUP)
3317 return 0;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003318
3319 req->open.dfd = READ_ONCE(sqe->fd);
3320 req->open.mask = READ_ONCE(sqe->len);
Jens Axboef8748882020-01-08 17:47:02 -07003321 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003322 req->open.buffer = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboec12cedf2020-01-08 17:41:21 -07003323 req->open.how.flags = READ_ONCE(sqe->statx_flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003324
Jens Axboec12cedf2020-01-08 17:41:21 -07003325 if (vfs_stat_set_lookup_flags(&lookup_flags, req->open.how.flags))
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003326 return -EINVAL;
3327
Jens Axboef8748882020-01-08 17:47:02 -07003328 req->open.filename = getname_flags(fname, lookup_flags, NULL);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003329 if (IS_ERR(req->open.filename)) {
3330 ret = PTR_ERR(req->open.filename);
3331 req->open.filename = NULL;
3332 return ret;
3333 }
3334
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003335 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003336 return 0;
3337}
3338
Pavel Begunkov014db002020-03-03 21:33:12 +03003339static int io_statx(struct io_kiocb *req, bool force_nonblock)
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003340{
3341 struct io_open *ctx = &req->open;
3342 unsigned lookup_flags;
3343 struct path path;
3344 struct kstat stat;
3345 int ret;
3346
Jens Axboe5b0bbee2020-04-27 10:41:22 -06003347 if (force_nonblock) {
3348 /* only need file table for an actual valid fd */
3349 if (ctx->dfd == -1 || ctx->dfd == AT_FDCWD)
3350 req->flags |= REQ_F_NO_FILE_TABLE;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003351 return -EAGAIN;
Jens Axboe5b0bbee2020-04-27 10:41:22 -06003352 }
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003353
Jens Axboec12cedf2020-01-08 17:41:21 -07003354 if (vfs_stat_set_lookup_flags(&lookup_flags, ctx->how.flags))
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003355 return -EINVAL;
3356
3357retry:
3358 /* filename_lookup() drops it, keep a reference */
3359 ctx->filename->refcnt++;
3360
3361 ret = filename_lookup(ctx->dfd, ctx->filename, lookup_flags, &path,
3362 NULL);
3363 if (ret)
3364 goto err;
3365
Jens Axboec12cedf2020-01-08 17:41:21 -07003366 ret = vfs_getattr(&path, &stat, ctx->mask, ctx->how.flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003367 path_put(&path);
3368 if (retry_estale(ret, lookup_flags)) {
3369 lookup_flags |= LOOKUP_REVAL;
3370 goto retry;
3371 }
3372 if (!ret)
3373 ret = cp_statx(&stat, ctx->buffer);
3374err:
3375 putname(ctx->filename);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003376 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003377 if (ret < 0)
3378 req_set_fail_links(req);
3379 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003380 io_put_req(req);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003381 return 0;
3382}
3383
Jens Axboeb5dba592019-12-11 14:02:38 -07003384static int io_close_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3385{
3386 /*
3387 * If we queue this for async, it must not be cancellable. That would
3388 * leave the 'file' in an undeterminate state.
3389 */
3390 req->work.flags |= IO_WQ_WORK_NO_CANCEL;
3391
3392 if (sqe->ioprio || sqe->off || sqe->addr || sqe->len ||
3393 sqe->rw_flags || sqe->buf_index)
3394 return -EINVAL;
Pavel Begunkov9c280f92020-04-08 08:58:46 +03003395 if (req->flags & REQ_F_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07003396 return -EBADF;
Jens Axboeb5dba592019-12-11 14:02:38 -07003397
3398 req->close.fd = READ_ONCE(sqe->fd);
3399 if (req->file->f_op == &io_uring_fops ||
Pavel Begunkovb14cca02020-01-17 04:45:59 +03003400 req->close.fd == req->ctx->ring_fd)
Jens Axboeb5dba592019-12-11 14:02:38 -07003401 return -EBADF;
3402
3403 return 0;
3404}
3405
Pavel Begunkova93b3332020-02-08 14:04:34 +03003406/* only called when __close_fd_get_file() is done */
Pavel Begunkov014db002020-03-03 21:33:12 +03003407static void __io_close_finish(struct io_kiocb *req)
Pavel Begunkova93b3332020-02-08 14:04:34 +03003408{
3409 int ret;
3410
3411 ret = filp_close(req->close.put_file, req->work.files);
3412 if (ret < 0)
3413 req_set_fail_links(req);
3414 io_cqring_add_event(req, ret);
3415 fput(req->close.put_file);
Pavel Begunkov014db002020-03-03 21:33:12 +03003416 io_put_req(req);
Pavel Begunkova93b3332020-02-08 14:04:34 +03003417}
3418
Jens Axboeb5dba592019-12-11 14:02:38 -07003419static void io_close_finish(struct io_wq_work **workptr)
3420{
3421 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Jens Axboeb5dba592019-12-11 14:02:38 -07003422
Pavel Begunkov7fbeb952020-02-16 01:01:18 +03003423 /* not cancellable, don't do io_req_cancelled() */
Pavel Begunkov014db002020-03-03 21:33:12 +03003424 __io_close_finish(req);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03003425 io_steal_work(req, workptr);
Jens Axboeb5dba592019-12-11 14:02:38 -07003426}
3427
Pavel Begunkov014db002020-03-03 21:33:12 +03003428static int io_close(struct io_kiocb *req, bool force_nonblock)
Jens Axboeb5dba592019-12-11 14:02:38 -07003429{
3430 int ret;
3431
3432 req->close.put_file = NULL;
3433 ret = __close_fd_get_file(req->close.fd, &req->close.put_file);
3434 if (ret < 0)
3435 return ret;
3436
3437 /* if the file has a flush method, be safe and punt to async */
Pavel Begunkova2100672020-03-02 23:45:16 +03003438 if (req->close.put_file->f_op->flush && force_nonblock) {
Pavel Begunkov594506f2020-03-03 21:33:11 +03003439 /* submission ref will be dropped, take it for async */
3440 refcount_inc(&req->refs);
3441
Pavel Begunkova2100672020-03-02 23:45:16 +03003442 req->work.func = io_close_finish;
3443 /*
3444 * Do manual async queue here to avoid grabbing files - we don't
3445 * need the files, and it'll cause io_close_finish() to close
3446 * the file again and cause a double CQE entry for this request
3447 */
3448 io_queue_async_work(req);
3449 return 0;
3450 }
Jens Axboeb5dba592019-12-11 14:02:38 -07003451
3452 /*
3453 * No ->flush(), safely close from here and just punt the
3454 * fput() to async context.
3455 */
Pavel Begunkov014db002020-03-03 21:33:12 +03003456 __io_close_finish(req);
Jens Axboe1a417f42020-01-31 17:16:48 -07003457 return 0;
Jens Axboeb5dba592019-12-11 14:02:38 -07003458}
3459
Jens Axboe3529d8c2019-12-19 18:24:38 -07003460static int io_prep_sfr(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003461{
3462 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003463
3464 if (!req->file)
3465 return -EBADF;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003466
3467 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
3468 return -EINVAL;
3469 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
3470 return -EINVAL;
3471
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003472 req->sync.off = READ_ONCE(sqe->off);
3473 req->sync.len = READ_ONCE(sqe->len);
3474 req->sync.flags = READ_ONCE(sqe->sync_range_flags);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003475 return 0;
3476}
3477
Pavel Begunkov014db002020-03-03 21:33:12 +03003478static void __io_sync_file_range(struct io_kiocb *req)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003479{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003480 int ret;
3481
Jens Axboe9adbd452019-12-20 08:45:55 -07003482 ret = sync_file_range(req->file, req->sync.off, req->sync.len,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003483 req->sync.flags);
3484 if (ret < 0)
3485 req_set_fail_links(req);
3486 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003487 io_put_req(req);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03003488}
3489
3490
3491static void io_sync_file_range_finish(struct io_wq_work **workptr)
3492{
3493 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03003494
3495 if (io_req_cancelled(req))
3496 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03003497 __io_sync_file_range(req);
Pavel Begunkov7759a0b2020-05-01 17:09:36 +03003498 io_steal_work(req, workptr);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003499}
3500
Pavel Begunkov014db002020-03-03 21:33:12 +03003501static int io_sync_file_range(struct io_kiocb *req, bool force_nonblock)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003502{
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003503 /* sync_file_range always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003504 if (force_nonblock) {
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003505 req->work.func = io_sync_file_range_finish;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003506 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003507 }
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003508
Pavel Begunkov014db002020-03-03 21:33:12 +03003509 __io_sync_file_range(req);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003510 return 0;
3511}
3512
YueHaibing469956e2020-03-04 15:53:52 +08003513#if defined(CONFIG_NET)
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003514static int io_setup_async_msg(struct io_kiocb *req,
3515 struct io_async_msghdr *kmsg)
3516{
3517 if (req->io)
3518 return -EAGAIN;
3519 if (io_alloc_async_ctx(req)) {
3520 if (kmsg->iov != kmsg->fast_iov)
3521 kfree(kmsg->iov);
3522 return -ENOMEM;
3523 }
3524 req->flags |= REQ_F_NEED_CLEANUP;
3525 memcpy(&req->io->msg, kmsg, sizeof(*kmsg));
3526 return -EAGAIN;
3527}
3528
Jens Axboe3529d8c2019-12-19 18:24:38 -07003529static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboeaa1fa282019-04-19 13:38:09 -06003530{
Jens Axboee47293f2019-12-20 08:58:21 -07003531 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003532 struct io_async_ctx *io = req->io;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003533 int ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003534
Jens Axboee47293f2019-12-20 08:58:21 -07003535 sr->msg_flags = READ_ONCE(sqe->msg_flags);
3536 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboefddafac2020-01-04 20:19:44 -07003537 sr->len = READ_ONCE(sqe->len);
Jens Axboe3529d8c2019-12-19 18:24:38 -07003538
Jens Axboed8768362020-02-27 14:17:49 -07003539#ifdef CONFIG_COMPAT
3540 if (req->ctx->compat)
3541 sr->msg_flags |= MSG_CMSG_COMPAT;
3542#endif
3543
Jens Axboefddafac2020-01-04 20:19:44 -07003544 if (!io || req->opcode == IORING_OP_SEND)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003545 return 0;
Pavel Begunkov5f798be2020-02-08 13:28:02 +03003546 /* iovec is already imported */
3547 if (req->flags & REQ_F_NEED_CLEANUP)
3548 return 0;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003549
Jens Axboed9688562019-12-09 19:35:20 -07003550 io->msg.iov = io->msg.fast_iov;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003551 ret = sendmsg_copy_msghdr(&io->msg.msg, sr->msg, sr->msg_flags,
Jens Axboee47293f2019-12-20 08:58:21 -07003552 &io->msg.iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003553 if (!ret)
3554 req->flags |= REQ_F_NEED_CLEANUP;
3555 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003556}
3557
Pavel Begunkov014db002020-03-03 21:33:12 +03003558static int io_sendmsg(struct io_kiocb *req, bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07003559{
Jens Axboe0b416c32019-12-15 10:57:46 -07003560 struct io_async_msghdr *kmsg = NULL;
Jens Axboe03b12302019-12-02 18:50:25 -07003561 struct socket *sock;
3562 int ret;
3563
3564 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3565 return -EINVAL;
3566
3567 sock = sock_from_file(req->file, &ret);
3568 if (sock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003569 struct io_async_ctx io;
Jens Axboe03b12302019-12-02 18:50:25 -07003570 unsigned flags;
3571
Jens Axboe03b12302019-12-02 18:50:25 -07003572 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07003573 kmsg = &req->io->msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003574 kmsg->msg.msg_name = &req->io->msg.addr;
Jens Axboe0b416c32019-12-15 10:57:46 -07003575 /* if iov is set, it's allocated already */
3576 if (!kmsg->iov)
3577 kmsg->iov = kmsg->fast_iov;
3578 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07003579 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07003580 struct io_sr_msg *sr = &req->sr_msg;
3581
Jens Axboe0b416c32019-12-15 10:57:46 -07003582 kmsg = &io.msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003583 kmsg->msg.msg_name = &io.msg.addr;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003584
3585 io.msg.iov = io.msg.fast_iov;
3586 ret = sendmsg_copy_msghdr(&io.msg.msg, sr->msg,
3587 sr->msg_flags, &io.msg.iov);
Jens Axboe03b12302019-12-02 18:50:25 -07003588 if (ret)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003589 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003590 }
3591
Jens Axboee47293f2019-12-20 08:58:21 -07003592 flags = req->sr_msg.msg_flags;
3593 if (flags & MSG_DONTWAIT)
3594 req->flags |= REQ_F_NOWAIT;
3595 else if (force_nonblock)
3596 flags |= MSG_DONTWAIT;
3597
Jens Axboe0b416c32019-12-15 10:57:46 -07003598 ret = __sys_sendmsg_sock(sock, &kmsg->msg, flags);
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003599 if (force_nonblock && ret == -EAGAIN)
3600 return io_setup_async_msg(req, kmsg);
Jens Axboe03b12302019-12-02 18:50:25 -07003601 if (ret == -ERESTARTSYS)
3602 ret = -EINTR;
3603 }
3604
Pavel Begunkov1e950812020-02-06 19:51:16 +03003605 if (kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07003606 kfree(kmsg->iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003607 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe03b12302019-12-02 18:50:25 -07003608 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003609 if (ret < 0)
3610 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003611 io_put_req(req);
Jens Axboe03b12302019-12-02 18:50:25 -07003612 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07003613}
3614
Pavel Begunkov014db002020-03-03 21:33:12 +03003615static int io_send(struct io_kiocb *req, bool force_nonblock)
Jens Axboefddafac2020-01-04 20:19:44 -07003616{
Jens Axboefddafac2020-01-04 20:19:44 -07003617 struct socket *sock;
3618 int ret;
3619
3620 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3621 return -EINVAL;
3622
3623 sock = sock_from_file(req->file, &ret);
3624 if (sock) {
3625 struct io_sr_msg *sr = &req->sr_msg;
3626 struct msghdr msg;
3627 struct iovec iov;
3628 unsigned flags;
3629
3630 ret = import_single_range(WRITE, sr->buf, sr->len, &iov,
3631 &msg.msg_iter);
3632 if (ret)
3633 return ret;
3634
3635 msg.msg_name = NULL;
3636 msg.msg_control = NULL;
3637 msg.msg_controllen = 0;
3638 msg.msg_namelen = 0;
3639
3640 flags = req->sr_msg.msg_flags;
3641 if (flags & MSG_DONTWAIT)
3642 req->flags |= REQ_F_NOWAIT;
3643 else if (force_nonblock)
3644 flags |= MSG_DONTWAIT;
3645
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003646 msg.msg_flags = flags;
3647 ret = sock_sendmsg(sock, &msg);
Jens Axboefddafac2020-01-04 20:19:44 -07003648 if (force_nonblock && ret == -EAGAIN)
3649 return -EAGAIN;
3650 if (ret == -ERESTARTSYS)
3651 ret = -EINTR;
3652 }
3653
3654 io_cqring_add_event(req, ret);
3655 if (ret < 0)
3656 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003657 io_put_req(req);
Jens Axboefddafac2020-01-04 20:19:44 -07003658 return 0;
Jens Axboefddafac2020-01-04 20:19:44 -07003659}
3660
Jens Axboe52de1fe2020-02-27 10:15:42 -07003661static int __io_recvmsg_copy_hdr(struct io_kiocb *req, struct io_async_ctx *io)
3662{
3663 struct io_sr_msg *sr = &req->sr_msg;
3664 struct iovec __user *uiov;
3665 size_t iov_len;
3666 int ret;
3667
3668 ret = __copy_msghdr_from_user(&io->msg.msg, sr->msg, &io->msg.uaddr,
3669 &uiov, &iov_len);
3670 if (ret)
3671 return ret;
3672
3673 if (req->flags & REQ_F_BUFFER_SELECT) {
3674 if (iov_len > 1)
3675 return -EINVAL;
3676 if (copy_from_user(io->msg.iov, uiov, sizeof(*uiov)))
3677 return -EFAULT;
3678 sr->len = io->msg.iov[0].iov_len;
3679 iov_iter_init(&io->msg.msg.msg_iter, READ, io->msg.iov, 1,
3680 sr->len);
3681 io->msg.iov = NULL;
3682 } else {
3683 ret = import_iovec(READ, uiov, iov_len, UIO_FASTIOV,
3684 &io->msg.iov, &io->msg.msg.msg_iter);
3685 if (ret > 0)
3686 ret = 0;
3687 }
3688
3689 return ret;
3690}
3691
3692#ifdef CONFIG_COMPAT
3693static int __io_compat_recvmsg_copy_hdr(struct io_kiocb *req,
3694 struct io_async_ctx *io)
3695{
3696 struct compat_msghdr __user *msg_compat;
3697 struct io_sr_msg *sr = &req->sr_msg;
3698 struct compat_iovec __user *uiov;
3699 compat_uptr_t ptr;
3700 compat_size_t len;
3701 int ret;
3702
3703 msg_compat = (struct compat_msghdr __user *) sr->msg;
3704 ret = __get_compat_msghdr(&io->msg.msg, msg_compat, &io->msg.uaddr,
3705 &ptr, &len);
3706 if (ret)
3707 return ret;
3708
3709 uiov = compat_ptr(ptr);
3710 if (req->flags & REQ_F_BUFFER_SELECT) {
3711 compat_ssize_t clen;
3712
3713 if (len > 1)
3714 return -EINVAL;
3715 if (!access_ok(uiov, sizeof(*uiov)))
3716 return -EFAULT;
3717 if (__get_user(clen, &uiov->iov_len))
3718 return -EFAULT;
3719 if (clen < 0)
3720 return -EINVAL;
3721 sr->len = io->msg.iov[0].iov_len;
3722 io->msg.iov = NULL;
3723 } else {
3724 ret = compat_import_iovec(READ, uiov, len, UIO_FASTIOV,
3725 &io->msg.iov,
3726 &io->msg.msg.msg_iter);
3727 if (ret < 0)
3728 return ret;
3729 }
3730
3731 return 0;
3732}
Jens Axboe03b12302019-12-02 18:50:25 -07003733#endif
Jens Axboe52de1fe2020-02-27 10:15:42 -07003734
3735static int io_recvmsg_copy_hdr(struct io_kiocb *req, struct io_async_ctx *io)
3736{
3737 io->msg.iov = io->msg.fast_iov;
3738
3739#ifdef CONFIG_COMPAT
3740 if (req->ctx->compat)
3741 return __io_compat_recvmsg_copy_hdr(req, io);
3742#endif
3743
3744 return __io_recvmsg_copy_hdr(req, io);
3745}
3746
Jens Axboebcda7ba2020-02-23 16:42:51 -07003747static struct io_buffer *io_recv_buffer_select(struct io_kiocb *req,
3748 int *cflags, bool needs_lock)
3749{
3750 struct io_sr_msg *sr = &req->sr_msg;
3751 struct io_buffer *kbuf;
3752
3753 if (!(req->flags & REQ_F_BUFFER_SELECT))
3754 return NULL;
3755
3756 kbuf = io_buffer_select(req, &sr->len, sr->bgid, sr->kbuf, needs_lock);
3757 if (IS_ERR(kbuf))
3758 return kbuf;
3759
3760 sr->kbuf = kbuf;
3761 req->flags |= REQ_F_BUFFER_SELECTED;
3762
3763 *cflags = kbuf->bid << IORING_CQE_BUFFER_SHIFT;
3764 *cflags |= IORING_CQE_F_BUFFER;
3765 return kbuf;
Jens Axboe03b12302019-12-02 18:50:25 -07003766}
3767
Jens Axboe3529d8c2019-12-19 18:24:38 -07003768static int io_recvmsg_prep(struct io_kiocb *req,
3769 const struct io_uring_sqe *sqe)
Jens Axboe03b12302019-12-02 18:50:25 -07003770{
Jens Axboee47293f2019-12-20 08:58:21 -07003771 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003772 struct io_async_ctx *io = req->io;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003773 int ret;
Jens Axboe06b76d42019-12-19 14:44:26 -07003774
Jens Axboe3529d8c2019-12-19 18:24:38 -07003775 sr->msg_flags = READ_ONCE(sqe->msg_flags);
3776 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003777 sr->len = READ_ONCE(sqe->len);
Jens Axboebcda7ba2020-02-23 16:42:51 -07003778 sr->bgid = READ_ONCE(sqe->buf_group);
Jens Axboe3529d8c2019-12-19 18:24:38 -07003779
Jens Axboed8768362020-02-27 14:17:49 -07003780#ifdef CONFIG_COMPAT
3781 if (req->ctx->compat)
3782 sr->msg_flags |= MSG_CMSG_COMPAT;
3783#endif
3784
Jens Axboefddafac2020-01-04 20:19:44 -07003785 if (!io || req->opcode == IORING_OP_RECV)
Jens Axboe06b76d42019-12-19 14:44:26 -07003786 return 0;
Pavel Begunkov5f798be2020-02-08 13:28:02 +03003787 /* iovec is already imported */
3788 if (req->flags & REQ_F_NEED_CLEANUP)
3789 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07003790
Jens Axboe52de1fe2020-02-27 10:15:42 -07003791 ret = io_recvmsg_copy_hdr(req, io);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003792 if (!ret)
3793 req->flags |= REQ_F_NEED_CLEANUP;
3794 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003795}
3796
Pavel Begunkov014db002020-03-03 21:33:12 +03003797static int io_recvmsg(struct io_kiocb *req, bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07003798{
Jens Axboe0b416c32019-12-15 10:57:46 -07003799 struct io_async_msghdr *kmsg = NULL;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003800 struct socket *sock;
Jens Axboe52de1fe2020-02-27 10:15:42 -07003801 int ret, cflags = 0;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003802
3803 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3804 return -EINVAL;
3805
3806 sock = sock_from_file(req->file, &ret);
3807 if (sock) {
Jens Axboe52de1fe2020-02-27 10:15:42 -07003808 struct io_buffer *kbuf;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003809 struct io_async_ctx io;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003810 unsigned flags;
3811
Jens Axboe03b12302019-12-02 18:50:25 -07003812 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07003813 kmsg = &req->io->msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003814 kmsg->msg.msg_name = &req->io->msg.addr;
Jens Axboe0b416c32019-12-15 10:57:46 -07003815 /* if iov is set, it's allocated already */
3816 if (!kmsg->iov)
3817 kmsg->iov = kmsg->fast_iov;
3818 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07003819 } else {
Jens Axboe0b416c32019-12-15 10:57:46 -07003820 kmsg = &io.msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003821 kmsg->msg.msg_name = &io.msg.addr;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003822
Jens Axboe52de1fe2020-02-27 10:15:42 -07003823 ret = io_recvmsg_copy_hdr(req, &io);
Jens Axboe03b12302019-12-02 18:50:25 -07003824 if (ret)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003825 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003826 }
Jens Axboe0fa03c62019-04-19 13:34:07 -06003827
Jens Axboe52de1fe2020-02-27 10:15:42 -07003828 kbuf = io_recv_buffer_select(req, &cflags, !force_nonblock);
3829 if (IS_ERR(kbuf)) {
3830 return PTR_ERR(kbuf);
3831 } else if (kbuf) {
3832 kmsg->fast_iov[0].iov_base = u64_to_user_ptr(kbuf->addr);
3833 iov_iter_init(&kmsg->msg.msg_iter, READ, kmsg->iov,
3834 1, req->sr_msg.len);
3835 }
3836
Jens Axboee47293f2019-12-20 08:58:21 -07003837 flags = req->sr_msg.msg_flags;
3838 if (flags & MSG_DONTWAIT)
3839 req->flags |= REQ_F_NOWAIT;
3840 else if (force_nonblock)
3841 flags |= MSG_DONTWAIT;
3842
3843 ret = __sys_recvmsg_sock(sock, &kmsg->msg, req->sr_msg.msg,
3844 kmsg->uaddr, flags);
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003845 if (force_nonblock && ret == -EAGAIN)
3846 return io_setup_async_msg(req, kmsg);
Jens Axboe441cdbd2019-12-02 18:49:10 -07003847 if (ret == -ERESTARTSYS)
3848 ret = -EINTR;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003849 }
3850
Pavel Begunkov1e950812020-02-06 19:51:16 +03003851 if (kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07003852 kfree(kmsg->iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003853 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe52de1fe2020-02-27 10:15:42 -07003854 __io_cqring_add_event(req, ret, cflags);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003855 if (ret < 0)
3856 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003857 io_put_req(req);
Jens Axboe0fa03c62019-04-19 13:34:07 -06003858 return 0;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003859}
3860
Pavel Begunkov014db002020-03-03 21:33:12 +03003861static int io_recv(struct io_kiocb *req, bool force_nonblock)
Jens Axboefddafac2020-01-04 20:19:44 -07003862{
Jens Axboebcda7ba2020-02-23 16:42:51 -07003863 struct io_buffer *kbuf = NULL;
Jens Axboefddafac2020-01-04 20:19:44 -07003864 struct socket *sock;
Jens Axboebcda7ba2020-02-23 16:42:51 -07003865 int ret, cflags = 0;
Jens Axboefddafac2020-01-04 20:19:44 -07003866
3867 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3868 return -EINVAL;
3869
3870 sock = sock_from_file(req->file, &ret);
3871 if (sock) {
3872 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboebcda7ba2020-02-23 16:42:51 -07003873 void __user *buf = sr->buf;
Jens Axboefddafac2020-01-04 20:19:44 -07003874 struct msghdr msg;
3875 struct iovec iov;
3876 unsigned flags;
3877
Jens Axboebcda7ba2020-02-23 16:42:51 -07003878 kbuf = io_recv_buffer_select(req, &cflags, !force_nonblock);
3879 if (IS_ERR(kbuf))
3880 return PTR_ERR(kbuf);
3881 else if (kbuf)
3882 buf = u64_to_user_ptr(kbuf->addr);
Jens Axboefddafac2020-01-04 20:19:44 -07003883
Jens Axboebcda7ba2020-02-23 16:42:51 -07003884 ret = import_single_range(READ, buf, sr->len, &iov,
3885 &msg.msg_iter);
3886 if (ret) {
3887 kfree(kbuf);
3888 return ret;
3889 }
3890
3891 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboefddafac2020-01-04 20:19:44 -07003892 msg.msg_name = NULL;
3893 msg.msg_control = NULL;
3894 msg.msg_controllen = 0;
3895 msg.msg_namelen = 0;
3896 msg.msg_iocb = NULL;
3897 msg.msg_flags = 0;
3898
3899 flags = req->sr_msg.msg_flags;
3900 if (flags & MSG_DONTWAIT)
3901 req->flags |= REQ_F_NOWAIT;
3902 else if (force_nonblock)
3903 flags |= MSG_DONTWAIT;
3904
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003905 ret = sock_recvmsg(sock, &msg, flags);
Jens Axboefddafac2020-01-04 20:19:44 -07003906 if (force_nonblock && ret == -EAGAIN)
3907 return -EAGAIN;
3908 if (ret == -ERESTARTSYS)
3909 ret = -EINTR;
3910 }
3911
Jens Axboebcda7ba2020-02-23 16:42:51 -07003912 kfree(kbuf);
3913 req->flags &= ~REQ_F_NEED_CLEANUP;
3914 __io_cqring_add_event(req, ret, cflags);
Jens Axboefddafac2020-01-04 20:19:44 -07003915 if (ret < 0)
3916 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003917 io_put_req(req);
Jens Axboefddafac2020-01-04 20:19:44 -07003918 return 0;
Jens Axboefddafac2020-01-04 20:19:44 -07003919}
3920
Jens Axboe3529d8c2019-12-19 18:24:38 -07003921static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003922{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003923 struct io_accept *accept = &req->accept;
3924
Jens Axboe17f2fe32019-10-17 14:42:58 -06003925 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3926 return -EINVAL;
Hrvoje Zeba8042d6c2019-11-25 14:40:22 -05003927 if (sqe->ioprio || sqe->len || sqe->buf_index)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003928 return -EINVAL;
3929
Jens Axboed55e5f52019-12-11 16:12:15 -07003930 accept->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
3931 accept->addr_len = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003932 accept->flags = READ_ONCE(sqe->accept_flags);
Jens Axboe09952e32020-03-19 20:16:56 -06003933 accept->nofile = rlimit(RLIMIT_NOFILE);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003934 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003935}
Jens Axboe17f2fe32019-10-17 14:42:58 -06003936
Pavel Begunkov014db002020-03-03 21:33:12 +03003937static int __io_accept(struct io_kiocb *req, bool force_nonblock)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003938{
3939 struct io_accept *accept = &req->accept;
3940 unsigned file_flags;
3941 int ret;
3942
3943 file_flags = force_nonblock ? O_NONBLOCK : 0;
3944 ret = __sys_accept4_file(req->file, file_flags, accept->addr,
Jens Axboe09952e32020-03-19 20:16:56 -06003945 accept->addr_len, accept->flags,
3946 accept->nofile);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003947 if (ret == -EAGAIN && force_nonblock)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003948 return -EAGAIN;
Jens Axboe8e3cca12019-11-09 19:52:33 -07003949 if (ret == -ERESTARTSYS)
3950 ret = -EINTR;
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003951 if (ret < 0)
3952 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07003953 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003954 io_put_req(req);
Jens Axboe17f2fe32019-10-17 14:42:58 -06003955 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003956}
3957
3958static void io_accept_finish(struct io_wq_work **workptr)
3959{
3960 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003961
3962 if (io_req_cancelled(req))
3963 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03003964 __io_accept(req, false);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03003965 io_steal_work(req, workptr);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003966}
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003967
Pavel Begunkov014db002020-03-03 21:33:12 +03003968static int io_accept(struct io_kiocb *req, bool force_nonblock)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003969{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003970 int ret;
3971
Pavel Begunkov014db002020-03-03 21:33:12 +03003972 ret = __io_accept(req, force_nonblock);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003973 if (ret == -EAGAIN && force_nonblock) {
3974 req->work.func = io_accept_finish;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003975 return -EAGAIN;
3976 }
3977 return 0;
Jens Axboe17f2fe32019-10-17 14:42:58 -06003978}
3979
Jens Axboe3529d8c2019-12-19 18:24:38 -07003980static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef499a022019-12-02 16:28:46 -07003981{
Jens Axboe3529d8c2019-12-19 18:24:38 -07003982 struct io_connect *conn = &req->connect;
3983 struct io_async_ctx *io = req->io;
Jens Axboef499a022019-12-02 16:28:46 -07003984
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003985 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3986 return -EINVAL;
3987 if (sqe->ioprio || sqe->len || sqe->buf_index || sqe->rw_flags)
3988 return -EINVAL;
3989
Jens Axboe3529d8c2019-12-19 18:24:38 -07003990 conn->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
3991 conn->addr_len = READ_ONCE(sqe->addr2);
3992
3993 if (!io)
3994 return 0;
3995
3996 return move_addr_to_kernel(conn->addr, conn->addr_len,
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003997 &io->connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07003998}
3999
Pavel Begunkov014db002020-03-03 21:33:12 +03004000static int io_connect(struct io_kiocb *req, bool force_nonblock)
Jens Axboef8e85cf2019-11-23 14:24:24 -07004001{
Jens Axboef499a022019-12-02 16:28:46 -07004002 struct io_async_ctx __io, *io;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004003 unsigned file_flags;
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004004 int ret;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004005
Jens Axboef499a022019-12-02 16:28:46 -07004006 if (req->io) {
4007 io = req->io;
4008 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07004009 ret = move_addr_to_kernel(req->connect.addr,
4010 req->connect.addr_len,
4011 &__io.connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07004012 if (ret)
4013 goto out;
4014 io = &__io;
4015 }
4016
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004017 file_flags = force_nonblock ? O_NONBLOCK : 0;
4018
4019 ret = __sys_connect_file(req->file, &io->connect.address,
4020 req->connect.addr_len, file_flags);
Jens Axboe87f80d62019-12-03 11:23:54 -07004021 if ((ret == -EAGAIN || ret == -EINPROGRESS) && force_nonblock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004022 if (req->io)
4023 return -EAGAIN;
4024 if (io_alloc_async_ctx(req)) {
Jens Axboef499a022019-12-02 16:28:46 -07004025 ret = -ENOMEM;
4026 goto out;
4027 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004028 memcpy(&req->io->connect, &__io.connect, sizeof(__io.connect));
Jens Axboef8e85cf2019-11-23 14:24:24 -07004029 return -EAGAIN;
Jens Axboef499a022019-12-02 16:28:46 -07004030 }
Jens Axboef8e85cf2019-11-23 14:24:24 -07004031 if (ret == -ERESTARTSYS)
4032 ret = -EINTR;
Jens Axboef499a022019-12-02 16:28:46 -07004033out:
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004034 if (ret < 0)
4035 req_set_fail_links(req);
Jens Axboef8e85cf2019-11-23 14:24:24 -07004036 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03004037 io_put_req(req);
Jens Axboef8e85cf2019-11-23 14:24:24 -07004038 return 0;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004039}
YueHaibing469956e2020-03-04 15:53:52 +08004040#else /* !CONFIG_NET */
4041static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4042{
Jens Axboef8e85cf2019-11-23 14:24:24 -07004043 return -EOPNOTSUPP;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004044}
4045
YueHaibing469956e2020-03-04 15:53:52 +08004046static int io_sendmsg(struct io_kiocb *req, bool force_nonblock)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004047{
YueHaibing469956e2020-03-04 15:53:52 +08004048 return -EOPNOTSUPP;
4049}
4050
4051static int io_send(struct io_kiocb *req, bool force_nonblock)
4052{
4053 return -EOPNOTSUPP;
4054}
4055
4056static int io_recvmsg_prep(struct io_kiocb *req,
4057 const struct io_uring_sqe *sqe)
4058{
4059 return -EOPNOTSUPP;
4060}
4061
4062static int io_recvmsg(struct io_kiocb *req, bool force_nonblock)
4063{
4064 return -EOPNOTSUPP;
4065}
4066
4067static int io_recv(struct io_kiocb *req, bool force_nonblock)
4068{
4069 return -EOPNOTSUPP;
4070}
4071
4072static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4073{
4074 return -EOPNOTSUPP;
4075}
4076
4077static int io_accept(struct io_kiocb *req, bool force_nonblock)
4078{
4079 return -EOPNOTSUPP;
4080}
4081
4082static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4083{
4084 return -EOPNOTSUPP;
4085}
4086
4087static int io_connect(struct io_kiocb *req, bool force_nonblock)
4088{
4089 return -EOPNOTSUPP;
4090}
4091#endif /* CONFIG_NET */
Jens Axboe2b188cc2019-01-07 10:46:33 -07004092
Jens Axboed7718a92020-02-14 22:23:12 -07004093struct io_poll_table {
4094 struct poll_table_struct pt;
4095 struct io_kiocb *req;
4096 int error;
4097};
4098
4099static void __io_queue_proc(struct io_poll_iocb *poll, struct io_poll_table *pt,
4100 struct wait_queue_head *head)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004101{
Jens Axboed7718a92020-02-14 22:23:12 -07004102 if (unlikely(poll->head)) {
4103 pt->error = -EINVAL;
4104 return;
4105 }
4106
4107 pt->error = 0;
4108 poll->head = head;
4109 add_wait_queue(head, &poll->wait);
4110}
4111
4112static void io_async_queue_proc(struct file *file, struct wait_queue_head *head,
4113 struct poll_table_struct *p)
4114{
4115 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
4116
4117 __io_queue_proc(&pt->req->apoll->poll, pt, head);
4118}
4119
4120static int __io_async_wake(struct io_kiocb *req, struct io_poll_iocb *poll,
4121 __poll_t mask, task_work_func_t func)
4122{
4123 struct task_struct *tsk;
Jens Axboeaa96bf82020-04-03 11:26:26 -06004124 int ret;
Jens Axboed7718a92020-02-14 22:23:12 -07004125
4126 /* for instances that support it check for an event match first: */
4127 if (mask && !(mask & poll->events))
4128 return 0;
4129
4130 trace_io_uring_task_add(req->ctx, req->opcode, req->user_data, mask);
4131
4132 list_del_init(&poll->wait.entry);
4133
4134 tsk = req->task;
4135 req->result = mask;
4136 init_task_work(&req->task_work, func);
4137 /*
Jens Axboeaa96bf82020-04-03 11:26:26 -06004138 * If this fails, then the task is exiting. Punt to one of the io-wq
4139 * threads to ensure the work gets run, we can't always rely on exit
4140 * cancelation taking care of this.
Jens Axboed7718a92020-02-14 22:23:12 -07004141 */
Jens Axboeaa96bf82020-04-03 11:26:26 -06004142 ret = task_work_add(tsk, &req->task_work, true);
4143 if (unlikely(ret)) {
4144 tsk = io_wq_get_task(req->ctx->io_wq);
4145 task_work_add(tsk, &req->task_work, true);
4146 }
Jens Axboed7718a92020-02-14 22:23:12 -07004147 wake_up_process(tsk);
4148 return 1;
4149}
4150
Jens Axboe74ce6ce2020-04-13 11:09:12 -06004151static bool io_poll_rewait(struct io_kiocb *req, struct io_poll_iocb *poll)
4152 __acquires(&req->ctx->completion_lock)
4153{
4154 struct io_ring_ctx *ctx = req->ctx;
4155
4156 if (!req->result && !READ_ONCE(poll->canceled)) {
4157 struct poll_table_struct pt = { ._key = poll->events };
4158
4159 req->result = vfs_poll(req->file, &pt) & poll->events;
4160 }
4161
4162 spin_lock_irq(&ctx->completion_lock);
4163 if (!req->result && !READ_ONCE(poll->canceled)) {
4164 add_wait_queue(poll->head, &poll->wait);
4165 return true;
4166 }
4167
4168 return false;
4169}
4170
Jens Axboed7718a92020-02-14 22:23:12 -07004171static void io_async_task_func(struct callback_head *cb)
4172{
4173 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
4174 struct async_poll *apoll = req->apoll;
4175 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2bae0472020-04-13 11:16:34 -06004176 bool canceled;
Jens Axboed7718a92020-02-14 22:23:12 -07004177
4178 trace_io_uring_task_run(req->ctx, req->opcode, req->user_data);
4179
Jens Axboe74ce6ce2020-04-13 11:09:12 -06004180 if (io_poll_rewait(req, &apoll->poll)) {
Jens Axboed7718a92020-02-14 22:23:12 -07004181 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe74ce6ce2020-04-13 11:09:12 -06004182 return;
Jens Axboed7718a92020-02-14 22:23:12 -07004183 }
4184
Jens Axboe74ce6ce2020-04-13 11:09:12 -06004185 if (hash_hashed(&req->hash_node))
4186 hash_del(&req->hash_node);
4187
Jens Axboe2bae0472020-04-13 11:16:34 -06004188 canceled = READ_ONCE(apoll->poll.canceled);
4189 if (canceled) {
4190 io_cqring_fill_event(req, -ECANCELED);
4191 io_commit_cqring(ctx);
4192 }
4193
Jens Axboe74ce6ce2020-04-13 11:09:12 -06004194 spin_unlock_irq(&ctx->completion_lock);
4195
Xiaoguang Wang44575a62020-04-19 10:06:55 +08004196 /* restore ->work in case we need to retry again */
4197 memcpy(&req->work, &apoll->work, sizeof(req->work));
4198
Jens Axboe2bae0472020-04-13 11:16:34 -06004199 if (canceled) {
4200 kfree(apoll);
4201 io_cqring_ev_posted(ctx);
4202 req_set_fail_links(req);
Xiaoguang Wang44575a62020-04-19 10:06:55 +08004203 io_double_put_req(req);
Jens Axboe2bae0472020-04-13 11:16:34 -06004204 return;
4205 }
4206
Jens Axboed7718a92020-02-14 22:23:12 -07004207 __set_current_state(TASK_RUNNING);
4208 mutex_lock(&ctx->uring_lock);
4209 __io_queue_sqe(req, NULL);
4210 mutex_unlock(&ctx->uring_lock);
4211
4212 kfree(apoll);
4213}
4214
4215static int io_async_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
4216 void *key)
4217{
4218 struct io_kiocb *req = wait->private;
4219 struct io_poll_iocb *poll = &req->apoll->poll;
4220
4221 trace_io_uring_poll_wake(req->ctx, req->opcode, req->user_data,
4222 key_to_poll(key));
4223
4224 return __io_async_wake(req, poll, key_to_poll(key), io_async_task_func);
4225}
4226
4227static void io_poll_req_insert(struct io_kiocb *req)
4228{
4229 struct io_ring_ctx *ctx = req->ctx;
4230 struct hlist_head *list;
4231
4232 list = &ctx->cancel_hash[hash_long(req->user_data, ctx->cancel_hash_bits)];
4233 hlist_add_head(&req->hash_node, list);
4234}
4235
4236static __poll_t __io_arm_poll_handler(struct io_kiocb *req,
4237 struct io_poll_iocb *poll,
4238 struct io_poll_table *ipt, __poll_t mask,
4239 wait_queue_func_t wake_func)
4240 __acquires(&ctx->completion_lock)
4241{
4242 struct io_ring_ctx *ctx = req->ctx;
4243 bool cancel = false;
4244
4245 poll->file = req->file;
4246 poll->head = NULL;
4247 poll->done = poll->canceled = false;
4248 poll->events = mask;
4249
4250 ipt->pt._key = mask;
4251 ipt->req = req;
4252 ipt->error = -EINVAL;
4253
4254 INIT_LIST_HEAD(&poll->wait.entry);
4255 init_waitqueue_func_entry(&poll->wait, wake_func);
4256 poll->wait.private = req;
4257
4258 mask = vfs_poll(req->file, &ipt->pt) & poll->events;
4259
4260 spin_lock_irq(&ctx->completion_lock);
4261 if (likely(poll->head)) {
4262 spin_lock(&poll->head->lock);
4263 if (unlikely(list_empty(&poll->wait.entry))) {
4264 if (ipt->error)
4265 cancel = true;
4266 ipt->error = 0;
4267 mask = 0;
4268 }
4269 if (mask || ipt->error)
4270 list_del_init(&poll->wait.entry);
4271 else if (cancel)
4272 WRITE_ONCE(poll->canceled, true);
4273 else if (!poll->done) /* actually waiting for an event */
4274 io_poll_req_insert(req);
4275 spin_unlock(&poll->head->lock);
4276 }
4277
4278 return mask;
4279}
4280
4281static bool io_arm_poll_handler(struct io_kiocb *req)
4282{
4283 const struct io_op_def *def = &io_op_defs[req->opcode];
4284 struct io_ring_ctx *ctx = req->ctx;
4285 struct async_poll *apoll;
4286 struct io_poll_table ipt;
4287 __poll_t mask, ret;
4288
4289 if (!req->file || !file_can_poll(req->file))
4290 return false;
4291 if (req->flags & (REQ_F_MUST_PUNT | REQ_F_POLLED))
4292 return false;
4293 if (!def->pollin && !def->pollout)
4294 return false;
4295
4296 apoll = kmalloc(sizeof(*apoll), GFP_ATOMIC);
4297 if (unlikely(!apoll))
4298 return false;
4299
4300 req->flags |= REQ_F_POLLED;
4301 memcpy(&apoll->work, &req->work, sizeof(req->work));
4302
Jens Axboe3537b6a2020-04-03 11:19:06 -06004303 get_task_struct(current);
Jens Axboed7718a92020-02-14 22:23:12 -07004304 req->task = current;
4305 req->apoll = apoll;
4306 INIT_HLIST_NODE(&req->hash_node);
4307
Nathan Chancellor8755d972020-03-02 16:01:19 -07004308 mask = 0;
Jens Axboed7718a92020-02-14 22:23:12 -07004309 if (def->pollin)
Nathan Chancellor8755d972020-03-02 16:01:19 -07004310 mask |= POLLIN | POLLRDNORM;
Jens Axboed7718a92020-02-14 22:23:12 -07004311 if (def->pollout)
4312 mask |= POLLOUT | POLLWRNORM;
4313 mask |= POLLERR | POLLPRI;
4314
4315 ipt.pt._qproc = io_async_queue_proc;
4316
4317 ret = __io_arm_poll_handler(req, &apoll->poll, &ipt, mask,
4318 io_async_wake);
4319 if (ret) {
4320 ipt.error = 0;
4321 apoll->poll.done = true;
4322 spin_unlock_irq(&ctx->completion_lock);
4323 memcpy(&req->work, &apoll->work, sizeof(req->work));
4324 kfree(apoll);
4325 return false;
4326 }
4327 spin_unlock_irq(&ctx->completion_lock);
4328 trace_io_uring_poll_arm(ctx, req->opcode, req->user_data, mask,
4329 apoll->poll.events);
4330 return true;
4331}
4332
4333static bool __io_poll_remove_one(struct io_kiocb *req,
4334 struct io_poll_iocb *poll)
4335{
Jens Axboeb41e9852020-02-17 09:52:41 -07004336 bool do_complete = false;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004337
4338 spin_lock(&poll->head->lock);
4339 WRITE_ONCE(poll->canceled, true);
Jens Axboe392edb42019-12-09 17:52:20 -07004340 if (!list_empty(&poll->wait.entry)) {
4341 list_del_init(&poll->wait.entry);
Jens Axboeb41e9852020-02-17 09:52:41 -07004342 do_complete = true;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004343 }
4344 spin_unlock(&poll->head->lock);
Jens Axboed7718a92020-02-14 22:23:12 -07004345 return do_complete;
4346}
4347
4348static bool io_poll_remove_one(struct io_kiocb *req)
4349{
Xiaoguang Wangb1f573b2020-04-12 14:50:54 +08004350 struct async_poll *apoll = NULL;
Jens Axboed7718a92020-02-14 22:23:12 -07004351 bool do_complete;
4352
4353 if (req->opcode == IORING_OP_POLL_ADD) {
4354 do_complete = __io_poll_remove_one(req, &req->poll);
4355 } else {
Xiaoguang Wangb1f573b2020-04-12 14:50:54 +08004356 apoll = req->apoll;
Jens Axboed7718a92020-02-14 22:23:12 -07004357 /* non-poll requests have submit ref still */
4358 do_complete = __io_poll_remove_one(req, &req->apoll->poll);
4359 if (do_complete)
4360 io_put_req(req);
4361 }
4362
Jens Axboe78076bb2019-12-04 19:56:40 -07004363 hash_del(&req->hash_node);
Jens Axboed7718a92020-02-14 22:23:12 -07004364
Xiaoguang Wang44575a62020-04-19 10:06:55 +08004365 if (do_complete && apoll) {
Xiaoguang Wangb1f573b2020-04-12 14:50:54 +08004366 /*
4367 * restore ->work because we need to call io_req_work_drop_env.
4368 */
4369 memcpy(&req->work, &apoll->work, sizeof(req->work));
4370 kfree(apoll);
4371 }
4372
Jens Axboeb41e9852020-02-17 09:52:41 -07004373 if (do_complete) {
4374 io_cqring_fill_event(req, -ECANCELED);
4375 io_commit_cqring(req->ctx);
4376 req->flags |= REQ_F_COMP_LOCKED;
4377 io_put_req(req);
4378 }
4379
4380 return do_complete;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004381}
4382
4383static void io_poll_remove_all(struct io_ring_ctx *ctx)
4384{
Jens Axboe78076bb2019-12-04 19:56:40 -07004385 struct hlist_node *tmp;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004386 struct io_kiocb *req;
Jens Axboe8e2e1fa2020-04-13 17:05:14 -06004387 int posted = 0, i;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004388
4389 spin_lock_irq(&ctx->completion_lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07004390 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
4391 struct hlist_head *list;
4392
4393 list = &ctx->cancel_hash[i];
4394 hlist_for_each_entry_safe(req, tmp, list, hash_node)
Jens Axboe8e2e1fa2020-04-13 17:05:14 -06004395 posted += io_poll_remove_one(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004396 }
4397 spin_unlock_irq(&ctx->completion_lock);
Jens Axboeb41e9852020-02-17 09:52:41 -07004398
Jens Axboe8e2e1fa2020-04-13 17:05:14 -06004399 if (posted)
4400 io_cqring_ev_posted(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004401}
4402
Jens Axboe47f46762019-11-09 17:43:02 -07004403static int io_poll_cancel(struct io_ring_ctx *ctx, __u64 sqe_addr)
4404{
Jens Axboe78076bb2019-12-04 19:56:40 -07004405 struct hlist_head *list;
Jens Axboe47f46762019-11-09 17:43:02 -07004406 struct io_kiocb *req;
4407
Jens Axboe78076bb2019-12-04 19:56:40 -07004408 list = &ctx->cancel_hash[hash_long(sqe_addr, ctx->cancel_hash_bits)];
4409 hlist_for_each_entry(req, list, hash_node) {
Jens Axboeb41e9852020-02-17 09:52:41 -07004410 if (sqe_addr != req->user_data)
4411 continue;
4412 if (io_poll_remove_one(req))
Jens Axboeeac406c2019-11-14 12:09:58 -07004413 return 0;
Jens Axboeb41e9852020-02-17 09:52:41 -07004414 return -EALREADY;
Jens Axboe47f46762019-11-09 17:43:02 -07004415 }
4416
4417 return -ENOENT;
4418}
4419
Jens Axboe3529d8c2019-12-19 18:24:38 -07004420static int io_poll_remove_prep(struct io_kiocb *req,
4421 const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004422{
Jens Axboe221c5eb2019-01-17 09:41:58 -07004423 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4424 return -EINVAL;
4425 if (sqe->ioprio || sqe->off || sqe->len || sqe->buf_index ||
4426 sqe->poll_events)
4427 return -EINVAL;
4428
Jens Axboe0969e782019-12-17 18:40:57 -07004429 req->poll.addr = READ_ONCE(sqe->addr);
Jens Axboe0969e782019-12-17 18:40:57 -07004430 return 0;
4431}
4432
4433/*
4434 * Find a running poll command that matches one specified in sqe->addr,
4435 * and remove it if found.
4436 */
4437static int io_poll_remove(struct io_kiocb *req)
4438{
4439 struct io_ring_ctx *ctx = req->ctx;
4440 u64 addr;
4441 int ret;
4442
Jens Axboe0969e782019-12-17 18:40:57 -07004443 addr = req->poll.addr;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004444 spin_lock_irq(&ctx->completion_lock);
Jens Axboe0969e782019-12-17 18:40:57 -07004445 ret = io_poll_cancel(ctx, addr);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004446 spin_unlock_irq(&ctx->completion_lock);
4447
Jens Axboe78e19bb2019-11-06 15:21:34 -07004448 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004449 if (ret < 0)
4450 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06004451 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004452 return 0;
4453}
4454
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004455static void io_poll_complete(struct io_kiocb *req, __poll_t mask, int error)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004456{
Jackie Liua197f662019-11-08 08:09:12 -07004457 struct io_ring_ctx *ctx = req->ctx;
4458
Jens Axboe8c838782019-03-12 15:48:16 -06004459 req->poll.done = true;
Pavel Begunkovb0a20342020-02-28 10:36:35 +03004460 io_cqring_fill_event(req, error ? error : mangle_poll(mask));
Jens Axboe8c838782019-03-12 15:48:16 -06004461 io_commit_cqring(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004462}
4463
Jens Axboeb41e9852020-02-17 09:52:41 -07004464static void io_poll_task_handler(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004465{
Jens Axboe221c5eb2019-01-17 09:41:58 -07004466 struct io_ring_ctx *ctx = req->ctx;
Jens Axboea6ba6322020-04-03 11:10:14 -06004467 struct io_poll_iocb *poll = &req->poll;
4468
Jens Axboe74ce6ce2020-04-13 11:09:12 -06004469 if (io_poll_rewait(req, poll)) {
Jens Axboea6ba6322020-04-03 11:10:14 -06004470 spin_unlock_irq(&ctx->completion_lock);
4471 return;
4472 }
Jens Axboe74ce6ce2020-04-13 11:09:12 -06004473
Jens Axboe78076bb2019-12-04 19:56:40 -07004474 hash_del(&req->hash_node);
Jens Axboeb41e9852020-02-17 09:52:41 -07004475 io_poll_complete(req, req->result, 0);
4476 req->flags |= REQ_F_COMP_LOCKED;
4477 io_put_req_find_next(req, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004478 spin_unlock_irq(&ctx->completion_lock);
4479
Jens Axboe8c838782019-03-12 15:48:16 -06004480 io_cqring_ev_posted(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004481}
4482
Jens Axboeb41e9852020-02-17 09:52:41 -07004483static void io_poll_task_func(struct callback_head *cb)
Jens Axboee94f1412019-12-19 12:06:02 -07004484{
Jens Axboeb41e9852020-02-17 09:52:41 -07004485 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
4486 struct io_kiocb *nxt = NULL;
Jens Axboee94f1412019-12-19 12:06:02 -07004487
Jens Axboeb41e9852020-02-17 09:52:41 -07004488 io_poll_task_handler(req, &nxt);
Jens Axboed7718a92020-02-14 22:23:12 -07004489 if (nxt) {
4490 struct io_ring_ctx *ctx = nxt->ctx;
Jens Axboee94f1412019-12-19 12:06:02 -07004491
Jens Axboed7718a92020-02-14 22:23:12 -07004492 mutex_lock(&ctx->uring_lock);
Jens Axboeb41e9852020-02-17 09:52:41 -07004493 __io_queue_sqe(nxt, NULL);
Jens Axboed7718a92020-02-14 22:23:12 -07004494 mutex_unlock(&ctx->uring_lock);
Jens Axboee94f1412019-12-19 12:06:02 -07004495 }
Jens Axboef0b493e2020-02-01 21:30:11 -07004496}
4497
Jens Axboe221c5eb2019-01-17 09:41:58 -07004498static int io_poll_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
4499 void *key)
4500{
Jens Axboec2f2eb72020-02-10 09:07:05 -07004501 struct io_kiocb *req = wait->private;
4502 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004503
Jens Axboed7718a92020-02-14 22:23:12 -07004504 return __io_async_wake(req, poll, key_to_poll(key), io_poll_task_func);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004505}
4506
Jens Axboe221c5eb2019-01-17 09:41:58 -07004507static void io_poll_queue_proc(struct file *file, struct wait_queue_head *head,
4508 struct poll_table_struct *p)
4509{
4510 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
4511
Jens Axboed7718a92020-02-14 22:23:12 -07004512 __io_queue_proc(&pt->req->poll, pt, head);
Jens Axboeeac406c2019-11-14 12:09:58 -07004513}
4514
Jens Axboe3529d8c2019-12-19 18:24:38 -07004515static int io_poll_add_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004516{
4517 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004518 u16 events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004519
4520 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4521 return -EINVAL;
4522 if (sqe->addr || sqe->ioprio || sqe->off || sqe->len || sqe->buf_index)
4523 return -EINVAL;
Jens Axboe09bb8392019-03-13 12:39:28 -06004524 if (!poll->file)
4525 return -EBADF;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004526
Jens Axboe221c5eb2019-01-17 09:41:58 -07004527 events = READ_ONCE(sqe->poll_events);
4528 poll->events = demangle_poll(events) | EPOLLERR | EPOLLHUP;
Jens Axboeb41e9852020-02-17 09:52:41 -07004529
Jens Axboe3537b6a2020-04-03 11:19:06 -06004530 get_task_struct(current);
Jens Axboeb41e9852020-02-17 09:52:41 -07004531 req->task = current;
Jens Axboe0969e782019-12-17 18:40:57 -07004532 return 0;
4533}
4534
Pavel Begunkov014db002020-03-03 21:33:12 +03004535static int io_poll_add(struct io_kiocb *req)
Jens Axboe0969e782019-12-17 18:40:57 -07004536{
4537 struct io_poll_iocb *poll = &req->poll;
4538 struct io_ring_ctx *ctx = req->ctx;
4539 struct io_poll_table ipt;
Jens Axboe0969e782019-12-17 18:40:57 -07004540 __poll_t mask;
Jens Axboe0969e782019-12-17 18:40:57 -07004541
Jens Axboe78076bb2019-12-04 19:56:40 -07004542 INIT_HLIST_NODE(&req->hash_node);
Jens Axboe36703242019-07-25 10:20:18 -06004543 INIT_LIST_HEAD(&req->list);
Jens Axboed7718a92020-02-14 22:23:12 -07004544 ipt.pt._qproc = io_poll_queue_proc;
Jens Axboe36703242019-07-25 10:20:18 -06004545
Jens Axboed7718a92020-02-14 22:23:12 -07004546 mask = __io_arm_poll_handler(req, &req->poll, &ipt, poll->events,
4547 io_poll_wake);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004548
Jens Axboe8c838782019-03-12 15:48:16 -06004549 if (mask) { /* no async, we'd stolen it */
Jens Axboe8c838782019-03-12 15:48:16 -06004550 ipt.error = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004551 io_poll_complete(req, mask, 0);
Jens Axboe8c838782019-03-12 15:48:16 -06004552 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07004553 spin_unlock_irq(&ctx->completion_lock);
4554
Jens Axboe8c838782019-03-12 15:48:16 -06004555 if (mask) {
4556 io_cqring_ev_posted(ctx);
Pavel Begunkov014db002020-03-03 21:33:12 +03004557 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004558 }
Jens Axboe8c838782019-03-12 15:48:16 -06004559 return ipt.error;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004560}
4561
Jens Axboe5262f562019-09-17 12:26:57 -06004562static enum hrtimer_restart io_timeout_fn(struct hrtimer *timer)
4563{
Jens Axboead8a48a2019-11-15 08:49:11 -07004564 struct io_timeout_data *data = container_of(timer,
4565 struct io_timeout_data, timer);
4566 struct io_kiocb *req = data->req;
4567 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5262f562019-09-17 12:26:57 -06004568 unsigned long flags;
4569
Jens Axboe5262f562019-09-17 12:26:57 -06004570 atomic_inc(&ctx->cq_timeouts);
4571
4572 spin_lock_irqsave(&ctx->completion_lock, flags);
zhangyi (F)ef036812019-10-23 15:10:08 +08004573 /*
Jens Axboe11365042019-10-16 09:08:32 -06004574 * We could be racing with timeout deletion. If the list is empty,
4575 * then timeout lookup already found it and will be handling it.
zhangyi (F)ef036812019-10-23 15:10:08 +08004576 */
Jens Axboe842f9612019-10-29 12:34:10 -06004577 if (!list_empty(&req->list)) {
Jens Axboe11365042019-10-16 09:08:32 -06004578 struct io_kiocb *prev;
Jens Axboe5262f562019-09-17 12:26:57 -06004579
Jens Axboe11365042019-10-16 09:08:32 -06004580 /*
4581 * Adjust the reqs sequence before the current one because it
Brian Gianforcarod195a662019-12-13 03:09:50 -08004582 * will consume a slot in the cq_ring and the cq_tail
Jens Axboe11365042019-10-16 09:08:32 -06004583 * pointer will be increased, otherwise other timeout reqs may
4584 * return in advance without waiting for enough wait_nr.
4585 */
4586 prev = req;
4587 list_for_each_entry_continue_reverse(prev, &ctx->timeout_list, list)
4588 prev->sequence++;
Jens Axboe11365042019-10-16 09:08:32 -06004589 list_del_init(&req->list);
Jens Axboe11365042019-10-16 09:08:32 -06004590 }
Jens Axboe842f9612019-10-29 12:34:10 -06004591
Jens Axboe78e19bb2019-11-06 15:21:34 -07004592 io_cqring_fill_event(req, -ETIME);
Jens Axboe5262f562019-09-17 12:26:57 -06004593 io_commit_cqring(ctx);
4594 spin_unlock_irqrestore(&ctx->completion_lock, flags);
4595
4596 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004597 req_set_fail_links(req);
Jens Axboe5262f562019-09-17 12:26:57 -06004598 io_put_req(req);
4599 return HRTIMER_NORESTART;
4600}
4601
Jens Axboe47f46762019-11-09 17:43:02 -07004602static int io_timeout_cancel(struct io_ring_ctx *ctx, __u64 user_data)
4603{
4604 struct io_kiocb *req;
4605 int ret = -ENOENT;
4606
4607 list_for_each_entry(req, &ctx->timeout_list, list) {
4608 if (user_data == req->user_data) {
4609 list_del_init(&req->list);
4610 ret = 0;
4611 break;
4612 }
4613 }
4614
4615 if (ret == -ENOENT)
4616 return ret;
4617
Jens Axboe2d283902019-12-04 11:08:05 -07004618 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe47f46762019-11-09 17:43:02 -07004619 if (ret == -1)
4620 return -EALREADY;
4621
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004622 req_set_fail_links(req);
Jens Axboe47f46762019-11-09 17:43:02 -07004623 io_cqring_fill_event(req, -ECANCELED);
4624 io_put_req(req);
4625 return 0;
4626}
4627
Jens Axboe3529d8c2019-12-19 18:24:38 -07004628static int io_timeout_remove_prep(struct io_kiocb *req,
4629 const struct io_uring_sqe *sqe)
Jens Axboeb29472e2019-12-17 18:50:29 -07004630{
Jens Axboeb29472e2019-12-17 18:50:29 -07004631 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4632 return -EINVAL;
4633 if (sqe->flags || sqe->ioprio || sqe->buf_index || sqe->len)
4634 return -EINVAL;
4635
4636 req->timeout.addr = READ_ONCE(sqe->addr);
4637 req->timeout.flags = READ_ONCE(sqe->timeout_flags);
4638 if (req->timeout.flags)
4639 return -EINVAL;
4640
Jens Axboeb29472e2019-12-17 18:50:29 -07004641 return 0;
4642}
4643
Jens Axboe11365042019-10-16 09:08:32 -06004644/*
4645 * Remove or update an existing timeout command
4646 */
Jens Axboefc4df992019-12-10 14:38:45 -07004647static int io_timeout_remove(struct io_kiocb *req)
Jens Axboe11365042019-10-16 09:08:32 -06004648{
4649 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe47f46762019-11-09 17:43:02 -07004650 int ret;
Jens Axboe11365042019-10-16 09:08:32 -06004651
Jens Axboe11365042019-10-16 09:08:32 -06004652 spin_lock_irq(&ctx->completion_lock);
Jens Axboeb29472e2019-12-17 18:50:29 -07004653 ret = io_timeout_cancel(ctx, req->timeout.addr);
Jens Axboe11365042019-10-16 09:08:32 -06004654
Jens Axboe47f46762019-11-09 17:43:02 -07004655 io_cqring_fill_event(req, ret);
Jens Axboe11365042019-10-16 09:08:32 -06004656 io_commit_cqring(ctx);
4657 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06004658 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004659 if (ret < 0)
4660 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08004661 io_put_req(req);
Jens Axboe11365042019-10-16 09:08:32 -06004662 return 0;
Jens Axboe5262f562019-09-17 12:26:57 -06004663}
4664
Jens Axboe3529d8c2019-12-19 18:24:38 -07004665static int io_timeout_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboe2d283902019-12-04 11:08:05 -07004666 bool is_timeout_link)
Jens Axboe5262f562019-09-17 12:26:57 -06004667{
Jens Axboead8a48a2019-11-15 08:49:11 -07004668 struct io_timeout_data *data;
Jens Axboea41525a2019-10-15 16:48:15 -06004669 unsigned flags;
Jens Axboe5262f562019-09-17 12:26:57 -06004670
Jens Axboead8a48a2019-11-15 08:49:11 -07004671 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe5262f562019-09-17 12:26:57 -06004672 return -EINVAL;
Jens Axboead8a48a2019-11-15 08:49:11 -07004673 if (sqe->ioprio || sqe->buf_index || sqe->len != 1)
Jens Axboea41525a2019-10-15 16:48:15 -06004674 return -EINVAL;
Jens Axboe2d283902019-12-04 11:08:05 -07004675 if (sqe->off && is_timeout_link)
4676 return -EINVAL;
Jens Axboea41525a2019-10-15 16:48:15 -06004677 flags = READ_ONCE(sqe->timeout_flags);
4678 if (flags & ~IORING_TIMEOUT_ABS)
Jens Axboe5262f562019-09-17 12:26:57 -06004679 return -EINVAL;
Arnd Bergmannbdf20072019-10-01 09:53:29 -06004680
Jens Axboe26a61672019-12-20 09:02:01 -07004681 req->timeout.count = READ_ONCE(sqe->off);
4682
Jens Axboe3529d8c2019-12-19 18:24:38 -07004683 if (!req->io && io_alloc_async_ctx(req))
Jens Axboe26a61672019-12-20 09:02:01 -07004684 return -ENOMEM;
4685
4686 data = &req->io->timeout;
Jens Axboead8a48a2019-11-15 08:49:11 -07004687 data->req = req;
Jens Axboead8a48a2019-11-15 08:49:11 -07004688 req->flags |= REQ_F_TIMEOUT;
4689
4690 if (get_timespec64(&data->ts, u64_to_user_ptr(sqe->addr)))
Jens Axboe5262f562019-09-17 12:26:57 -06004691 return -EFAULT;
4692
Jens Axboe11365042019-10-16 09:08:32 -06004693 if (flags & IORING_TIMEOUT_ABS)
Jens Axboead8a48a2019-11-15 08:49:11 -07004694 data->mode = HRTIMER_MODE_ABS;
Jens Axboe11365042019-10-16 09:08:32 -06004695 else
Jens Axboead8a48a2019-11-15 08:49:11 -07004696 data->mode = HRTIMER_MODE_REL;
Jens Axboe11365042019-10-16 09:08:32 -06004697
Jens Axboead8a48a2019-11-15 08:49:11 -07004698 hrtimer_init(&data->timer, CLOCK_MONOTONIC, data->mode);
4699 return 0;
4700}
4701
Jens Axboefc4df992019-12-10 14:38:45 -07004702static int io_timeout(struct io_kiocb *req)
Jens Axboead8a48a2019-11-15 08:49:11 -07004703{
Jens Axboead8a48a2019-11-15 08:49:11 -07004704 struct io_ring_ctx *ctx = req->ctx;
4705 struct io_timeout_data *data;
4706 struct list_head *entry;
4707 unsigned span = 0;
Pavel Begunkovb55ce732020-04-15 00:39:49 +03004708 u32 count = req->timeout.count;
Pavel Begunkov22cad152020-04-15 00:39:48 +03004709 u32 seq = req->sequence;
Jens Axboead8a48a2019-11-15 08:49:11 -07004710
Jens Axboe2d283902019-12-04 11:08:05 -07004711 data = &req->io->timeout;
Jens Axboe93bd25b2019-11-11 23:34:31 -07004712
Jens Axboe5262f562019-09-17 12:26:57 -06004713 /*
4714 * sqe->off holds how many events that need to occur for this
Jens Axboe93bd25b2019-11-11 23:34:31 -07004715 * timeout event to be satisfied. If it isn't set, then this is
4716 * a pure timeout request, sequence isn't used.
Jens Axboe5262f562019-09-17 12:26:57 -06004717 */
Jens Axboe93bd25b2019-11-11 23:34:31 -07004718 if (!count) {
4719 req->flags |= REQ_F_TIMEOUT_NOSEQ;
4720 spin_lock_irq(&ctx->completion_lock);
4721 entry = ctx->timeout_list.prev;
4722 goto add;
4723 }
Jens Axboe5262f562019-09-17 12:26:57 -06004724
Pavel Begunkov22cad152020-04-15 00:39:48 +03004725 req->sequence = seq + count;
Jens Axboe5262f562019-09-17 12:26:57 -06004726
4727 /*
4728 * Insertion sort, ensuring the first entry in the list is always
4729 * the one we need first.
4730 */
Jens Axboe5262f562019-09-17 12:26:57 -06004731 spin_lock_irq(&ctx->completion_lock);
4732 list_for_each_prev(entry, &ctx->timeout_list) {
4733 struct io_kiocb *nxt = list_entry(entry, struct io_kiocb, list);
Pavel Begunkov22cad152020-04-15 00:39:48 +03004734 unsigned nxt_seq;
yangerkun5da0fb12019-10-15 21:59:29 +08004735 long long tmp, tmp_nxt;
Pavel Begunkovb55ce732020-04-15 00:39:49 +03004736 u32 nxt_offset = nxt->timeout.count;
Jens Axboe5262f562019-09-17 12:26:57 -06004737
Jens Axboe93bd25b2019-11-11 23:34:31 -07004738 if (nxt->flags & REQ_F_TIMEOUT_NOSEQ)
4739 continue;
4740
yangerkun5da0fb12019-10-15 21:59:29 +08004741 /*
Pavel Begunkov22cad152020-04-15 00:39:48 +03004742 * Since seq + count can overflow, use type long
yangerkun5da0fb12019-10-15 21:59:29 +08004743 * long to store it.
4744 */
Pavel Begunkov22cad152020-04-15 00:39:48 +03004745 tmp = (long long)seq + count;
4746 nxt_seq = nxt->sequence - nxt_offset;
4747 tmp_nxt = (long long)nxt_seq + nxt_offset;
yangerkun5da0fb12019-10-15 21:59:29 +08004748
4749 /*
4750 * cached_sq_head may overflow, and it will never overflow twice
4751 * once there is some timeout req still be valid.
4752 */
Pavel Begunkov22cad152020-04-15 00:39:48 +03004753 if (seq < nxt_seq)
yangerkun8b07a652019-10-17 12:12:35 +08004754 tmp += UINT_MAX;
yangerkun5da0fb12019-10-15 21:59:29 +08004755
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004756 if (tmp > tmp_nxt)
Jens Axboe5262f562019-09-17 12:26:57 -06004757 break;
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004758
4759 /*
4760 * Sequence of reqs after the insert one and itself should
4761 * be adjusted because each timeout req consumes a slot.
4762 */
4763 span++;
4764 nxt->sequence++;
Jens Axboe5262f562019-09-17 12:26:57 -06004765 }
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004766 req->sequence -= span;
Jens Axboe93bd25b2019-11-11 23:34:31 -07004767add:
Jens Axboe5262f562019-09-17 12:26:57 -06004768 list_add(&req->list, entry);
Jens Axboead8a48a2019-11-15 08:49:11 -07004769 data->timer.function = io_timeout_fn;
4770 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts), data->mode);
Jens Axboe842f9612019-10-29 12:34:10 -06004771 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06004772 return 0;
4773}
4774
Jens Axboe62755e32019-10-28 21:49:21 -06004775static bool io_cancel_cb(struct io_wq_work *work, void *data)
Jens Axboede0617e2019-04-06 21:51:27 -06004776{
Jens Axboe62755e32019-10-28 21:49:21 -06004777 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboede0617e2019-04-06 21:51:27 -06004778
Jens Axboe62755e32019-10-28 21:49:21 -06004779 return req->user_data == (unsigned long) data;
4780}
4781
Jens Axboee977d6d2019-11-05 12:39:45 -07004782static int io_async_cancel_one(struct io_ring_ctx *ctx, void *sqe_addr)
Jens Axboe62755e32019-10-28 21:49:21 -06004783{
Jens Axboe62755e32019-10-28 21:49:21 -06004784 enum io_wq_cancel cancel_ret;
Jens Axboe62755e32019-10-28 21:49:21 -06004785 int ret = 0;
4786
Jens Axboe62755e32019-10-28 21:49:21 -06004787 cancel_ret = io_wq_cancel_cb(ctx->io_wq, io_cancel_cb, sqe_addr);
4788 switch (cancel_ret) {
4789 case IO_WQ_CANCEL_OK:
4790 ret = 0;
4791 break;
4792 case IO_WQ_CANCEL_RUNNING:
4793 ret = -EALREADY;
4794 break;
4795 case IO_WQ_CANCEL_NOTFOUND:
4796 ret = -ENOENT;
4797 break;
4798 }
4799
Jens Axboee977d6d2019-11-05 12:39:45 -07004800 return ret;
4801}
4802
Jens Axboe47f46762019-11-09 17:43:02 -07004803static void io_async_find_and_cancel(struct io_ring_ctx *ctx,
4804 struct io_kiocb *req, __u64 sqe_addr,
Pavel Begunkov014db002020-03-03 21:33:12 +03004805 int success_ret)
Jens Axboe47f46762019-11-09 17:43:02 -07004806{
4807 unsigned long flags;
4808 int ret;
4809
4810 ret = io_async_cancel_one(ctx, (void *) (unsigned long) sqe_addr);
4811 if (ret != -ENOENT) {
4812 spin_lock_irqsave(&ctx->completion_lock, flags);
4813 goto done;
4814 }
4815
4816 spin_lock_irqsave(&ctx->completion_lock, flags);
4817 ret = io_timeout_cancel(ctx, sqe_addr);
4818 if (ret != -ENOENT)
4819 goto done;
4820 ret = io_poll_cancel(ctx, sqe_addr);
4821done:
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004822 if (!ret)
4823 ret = success_ret;
Jens Axboe47f46762019-11-09 17:43:02 -07004824 io_cqring_fill_event(req, ret);
4825 io_commit_cqring(ctx);
4826 spin_unlock_irqrestore(&ctx->completion_lock, flags);
4827 io_cqring_ev_posted(ctx);
4828
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004829 if (ret < 0)
4830 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03004831 io_put_req(req);
Jens Axboe47f46762019-11-09 17:43:02 -07004832}
4833
Jens Axboe3529d8c2019-12-19 18:24:38 -07004834static int io_async_cancel_prep(struct io_kiocb *req,
4835 const struct io_uring_sqe *sqe)
Jens Axboee977d6d2019-11-05 12:39:45 -07004836{
Jens Axboefbf23842019-12-17 18:45:56 -07004837 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboee977d6d2019-11-05 12:39:45 -07004838 return -EINVAL;
4839 if (sqe->flags || sqe->ioprio || sqe->off || sqe->len ||
4840 sqe->cancel_flags)
4841 return -EINVAL;
4842
Jens Axboefbf23842019-12-17 18:45:56 -07004843 req->cancel.addr = READ_ONCE(sqe->addr);
4844 return 0;
4845}
4846
Pavel Begunkov014db002020-03-03 21:33:12 +03004847static int io_async_cancel(struct io_kiocb *req)
Jens Axboefbf23842019-12-17 18:45:56 -07004848{
4849 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefbf23842019-12-17 18:45:56 -07004850
Pavel Begunkov014db002020-03-03 21:33:12 +03004851 io_async_find_and_cancel(ctx, req, req->cancel.addr, 0);
Jens Axboe62755e32019-10-28 21:49:21 -06004852 return 0;
4853}
4854
Jens Axboe05f3fb32019-12-09 11:22:50 -07004855static int io_files_update_prep(struct io_kiocb *req,
4856 const struct io_uring_sqe *sqe)
4857{
4858 if (sqe->flags || sqe->ioprio || sqe->rw_flags)
4859 return -EINVAL;
4860
4861 req->files_update.offset = READ_ONCE(sqe->off);
4862 req->files_update.nr_args = READ_ONCE(sqe->len);
4863 if (!req->files_update.nr_args)
4864 return -EINVAL;
4865 req->files_update.arg = READ_ONCE(sqe->addr);
4866 return 0;
4867}
4868
4869static int io_files_update(struct io_kiocb *req, bool force_nonblock)
4870{
4871 struct io_ring_ctx *ctx = req->ctx;
4872 struct io_uring_files_update up;
4873 int ret;
4874
Jens Axboef86cd202020-01-29 13:46:44 -07004875 if (force_nonblock)
Jens Axboe05f3fb32019-12-09 11:22:50 -07004876 return -EAGAIN;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004877
4878 up.offset = req->files_update.offset;
4879 up.fds = req->files_update.arg;
4880
4881 mutex_lock(&ctx->uring_lock);
4882 ret = __io_sqe_files_update(ctx, &up, req->files_update.nr_args);
4883 mutex_unlock(&ctx->uring_lock);
4884
4885 if (ret < 0)
4886 req_set_fail_links(req);
4887 io_cqring_add_event(req, ret);
4888 io_put_req(req);
4889 return 0;
4890}
4891
Jens Axboe3529d8c2019-12-19 18:24:38 -07004892static int io_req_defer_prep(struct io_kiocb *req,
4893 const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07004894{
Jens Axboee7815732019-12-17 19:45:06 -07004895 ssize_t ret = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07004896
Pavel Begunkovf1d96a82020-03-13 22:29:14 +03004897 if (!sqe)
4898 return 0;
4899
Jens Axboef86cd202020-01-29 13:46:44 -07004900 if (io_op_defs[req->opcode].file_table) {
4901 ret = io_grab_files(req);
4902 if (unlikely(ret))
4903 return ret;
4904 }
4905
Jens Axboecccf0ee2020-01-27 16:34:48 -07004906 io_req_work_grab_env(req, &io_op_defs[req->opcode]);
4907
Jens Axboed625c6e2019-12-17 19:53:05 -07004908 switch (req->opcode) {
Jens Axboee7815732019-12-17 19:45:06 -07004909 case IORING_OP_NOP:
4910 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004911 case IORING_OP_READV:
4912 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004913 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004914 ret = io_read_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07004915 break;
4916 case IORING_OP_WRITEV:
4917 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004918 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004919 ret = io_write_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07004920 break;
Jens Axboe0969e782019-12-17 18:40:57 -07004921 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004922 ret = io_poll_add_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07004923 break;
4924 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004925 ret = io_poll_remove_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07004926 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004927 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004928 ret = io_prep_fsync(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004929 break;
4930 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004931 ret = io_prep_sfr(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004932 break;
Jens Axboe03b12302019-12-02 18:50:25 -07004933 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004934 case IORING_OP_SEND:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004935 ret = io_sendmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07004936 break;
4937 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004938 case IORING_OP_RECV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004939 ret = io_recvmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07004940 break;
Jens Axboef499a022019-12-02 16:28:46 -07004941 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004942 ret = io_connect_prep(req, sqe);
Jens Axboef499a022019-12-02 16:28:46 -07004943 break;
Jens Axboe2d283902019-12-04 11:08:05 -07004944 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004945 ret = io_timeout_prep(req, sqe, false);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004946 break;
Jens Axboeb29472e2019-12-17 18:50:29 -07004947 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004948 ret = io_timeout_remove_prep(req, sqe);
Jens Axboeb29472e2019-12-17 18:50:29 -07004949 break;
Jens Axboefbf23842019-12-17 18:45:56 -07004950 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004951 ret = io_async_cancel_prep(req, sqe);
Jens Axboefbf23842019-12-17 18:45:56 -07004952 break;
Jens Axboe2d283902019-12-04 11:08:05 -07004953 case IORING_OP_LINK_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004954 ret = io_timeout_prep(req, sqe, true);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004955 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004956 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004957 ret = io_accept_prep(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004958 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07004959 case IORING_OP_FALLOCATE:
4960 ret = io_fallocate_prep(req, sqe);
4961 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004962 case IORING_OP_OPENAT:
4963 ret = io_openat_prep(req, sqe);
4964 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07004965 case IORING_OP_CLOSE:
4966 ret = io_close_prep(req, sqe);
4967 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004968 case IORING_OP_FILES_UPDATE:
4969 ret = io_files_update_prep(req, sqe);
4970 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004971 case IORING_OP_STATX:
4972 ret = io_statx_prep(req, sqe);
4973 break;
Jens Axboe4840e412019-12-25 22:03:45 -07004974 case IORING_OP_FADVISE:
4975 ret = io_fadvise_prep(req, sqe);
4976 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07004977 case IORING_OP_MADVISE:
4978 ret = io_madvise_prep(req, sqe);
4979 break;
Jens Axboecebdb982020-01-08 17:59:24 -07004980 case IORING_OP_OPENAT2:
4981 ret = io_openat2_prep(req, sqe);
4982 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07004983 case IORING_OP_EPOLL_CTL:
4984 ret = io_epoll_ctl_prep(req, sqe);
4985 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03004986 case IORING_OP_SPLICE:
4987 ret = io_splice_prep(req, sqe);
4988 break;
Jens Axboeddf0322d2020-02-23 16:41:33 -07004989 case IORING_OP_PROVIDE_BUFFERS:
4990 ret = io_provide_buffers_prep(req, sqe);
4991 break;
Jens Axboe067524e2020-03-02 16:32:28 -07004992 case IORING_OP_REMOVE_BUFFERS:
4993 ret = io_remove_buffers_prep(req, sqe);
4994 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004995 default:
Jens Axboee7815732019-12-17 19:45:06 -07004996 printk_once(KERN_WARNING "io_uring: unhandled opcode %d\n",
4997 req->opcode);
4998 ret = -EINVAL;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004999 break;
Jens Axboef67676d2019-12-02 11:03:47 -07005000 }
5001
Jens Axboeb7bb4f72019-12-15 22:13:43 -07005002 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07005003}
5004
Jens Axboe3529d8c2019-12-19 18:24:38 -07005005static int io_req_defer(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboede0617e2019-04-06 21:51:27 -06005006{
Jackie Liua197f662019-11-08 08:09:12 -07005007 struct io_ring_ctx *ctx = req->ctx;
Jens Axboef67676d2019-12-02 11:03:47 -07005008 int ret;
Jens Axboede0617e2019-04-06 21:51:27 -06005009
Bob Liu9d858b22019-11-13 18:06:25 +08005010 /* Still need defer if there is pending req in defer list. */
Pavel Begunkov4ee36312020-05-01 17:09:37 +03005011 if (!req_need_defer(req) && list_empty_careful(&ctx->defer_list))
Jens Axboede0617e2019-04-06 21:51:27 -06005012 return 0;
5013
Pavel Begunkov650b5482020-05-17 14:02:11 +03005014 if (!req->io) {
5015 if (io_alloc_async_ctx(req))
5016 return -EAGAIN;
5017 ret = io_req_defer_prep(req, sqe);
5018 if (ret < 0)
5019 return ret;
5020 }
Jens Axboe2d283902019-12-04 11:08:05 -07005021
Jens Axboede0617e2019-04-06 21:51:27 -06005022 spin_lock_irq(&ctx->completion_lock);
Bob Liu9d858b22019-11-13 18:06:25 +08005023 if (!req_need_defer(req) && list_empty(&ctx->defer_list)) {
Jens Axboede0617e2019-04-06 21:51:27 -06005024 spin_unlock_irq(&ctx->completion_lock);
Jens Axboede0617e2019-04-06 21:51:27 -06005025 return 0;
5026 }
5027
Jens Axboe915967f2019-11-21 09:01:20 -07005028 trace_io_uring_defer(ctx, req, req->user_data);
Jens Axboede0617e2019-04-06 21:51:27 -06005029 list_add_tail(&req->list, &ctx->defer_list);
5030 spin_unlock_irq(&ctx->completion_lock);
5031 return -EIOCBQUEUED;
5032}
5033
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005034static void io_cleanup_req(struct io_kiocb *req)
5035{
5036 struct io_async_ctx *io = req->io;
5037
5038 switch (req->opcode) {
5039 case IORING_OP_READV:
5040 case IORING_OP_READ_FIXED:
5041 case IORING_OP_READ:
Jens Axboebcda7ba2020-02-23 16:42:51 -07005042 if (req->flags & REQ_F_BUFFER_SELECTED)
5043 kfree((void *)(unsigned long)req->rw.addr);
5044 /* fallthrough */
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005045 case IORING_OP_WRITEV:
5046 case IORING_OP_WRITE_FIXED:
5047 case IORING_OP_WRITE:
5048 if (io->rw.iov != io->rw.fast_iov)
5049 kfree(io->rw.iov);
5050 break;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005051 case IORING_OP_RECVMSG:
Jens Axboe52de1fe2020-02-27 10:15:42 -07005052 if (req->flags & REQ_F_BUFFER_SELECTED)
5053 kfree(req->sr_msg.kbuf);
5054 /* fallthrough */
5055 case IORING_OP_SENDMSG:
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005056 if (io->msg.iov != io->msg.fast_iov)
5057 kfree(io->msg.iov);
5058 break;
Jens Axboebcda7ba2020-02-23 16:42:51 -07005059 case IORING_OP_RECV:
5060 if (req->flags & REQ_F_BUFFER_SELECTED)
5061 kfree(req->sr_msg.kbuf);
5062 break;
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03005063 case IORING_OP_OPENAT:
5064 case IORING_OP_OPENAT2:
5065 case IORING_OP_STATX:
5066 putname(req->open.filename);
5067 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005068 case IORING_OP_SPLICE:
5069 io_put_file(req, req->splice.file_in,
5070 (req->splice.flags & SPLICE_F_FD_IN_FIXED));
5071 break;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005072 }
5073
5074 req->flags &= ~REQ_F_NEED_CLEANUP;
5075}
5076
Jens Axboe3529d8c2019-12-19 18:24:38 -07005077static int io_issue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Pavel Begunkov014db002020-03-03 21:33:12 +03005078 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005079{
Jackie Liua197f662019-11-08 08:09:12 -07005080 struct io_ring_ctx *ctx = req->ctx;
Jens Axboed625c6e2019-12-17 19:53:05 -07005081 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005082
Jens Axboed625c6e2019-12-17 19:53:05 -07005083 switch (req->opcode) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07005084 case IORING_OP_NOP:
Jens Axboe78e19bb2019-11-06 15:21:34 -07005085 ret = io_nop(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005086 break;
5087 case IORING_OP_READV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005088 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07005089 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005090 if (sqe) {
5091 ret = io_read_prep(req, sqe, force_nonblock);
5092 if (ret < 0)
5093 break;
5094 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005095 ret = io_read(req, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005096 break;
5097 case IORING_OP_WRITEV:
Jens Axboeedafcce2019-01-09 09:16:05 -07005098 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07005099 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005100 if (sqe) {
5101 ret = io_write_prep(req, sqe, force_nonblock);
5102 if (ret < 0)
5103 break;
5104 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005105 ret = io_write(req, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005106 break;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07005107 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005108 if (sqe) {
5109 ret = io_prep_fsync(req, sqe);
5110 if (ret < 0)
5111 break;
5112 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005113 ret = io_fsync(req, force_nonblock);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07005114 break;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005115 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005116 if (sqe) {
5117 ret = io_poll_add_prep(req, sqe);
5118 if (ret)
5119 break;
5120 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005121 ret = io_poll_add(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005122 break;
5123 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005124 if (sqe) {
5125 ret = io_poll_remove_prep(req, sqe);
5126 if (ret < 0)
5127 break;
5128 }
Jens Axboefc4df992019-12-10 14:38:45 -07005129 ret = io_poll_remove(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005130 break;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06005131 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005132 if (sqe) {
5133 ret = io_prep_sfr(req, sqe);
5134 if (ret < 0)
5135 break;
5136 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005137 ret = io_sync_file_range(req, force_nonblock);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06005138 break;
Jens Axboe0fa03c62019-04-19 13:34:07 -06005139 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005140 case IORING_OP_SEND:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005141 if (sqe) {
5142 ret = io_sendmsg_prep(req, sqe);
5143 if (ret < 0)
5144 break;
5145 }
Jens Axboefddafac2020-01-04 20:19:44 -07005146 if (req->opcode == IORING_OP_SENDMSG)
Pavel Begunkov014db002020-03-03 21:33:12 +03005147 ret = io_sendmsg(req, force_nonblock);
Jens Axboefddafac2020-01-04 20:19:44 -07005148 else
Pavel Begunkov014db002020-03-03 21:33:12 +03005149 ret = io_send(req, force_nonblock);
Jens Axboe0fa03c62019-04-19 13:34:07 -06005150 break;
Jens Axboeaa1fa282019-04-19 13:38:09 -06005151 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005152 case IORING_OP_RECV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005153 if (sqe) {
5154 ret = io_recvmsg_prep(req, sqe);
5155 if (ret)
5156 break;
5157 }
Jens Axboefddafac2020-01-04 20:19:44 -07005158 if (req->opcode == IORING_OP_RECVMSG)
Pavel Begunkov014db002020-03-03 21:33:12 +03005159 ret = io_recvmsg(req, force_nonblock);
Jens Axboefddafac2020-01-04 20:19:44 -07005160 else
Pavel Begunkov014db002020-03-03 21:33:12 +03005161 ret = io_recv(req, force_nonblock);
Jens Axboeaa1fa282019-04-19 13:38:09 -06005162 break;
Jens Axboe5262f562019-09-17 12:26:57 -06005163 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005164 if (sqe) {
5165 ret = io_timeout_prep(req, sqe, false);
5166 if (ret)
5167 break;
5168 }
Jens Axboefc4df992019-12-10 14:38:45 -07005169 ret = io_timeout(req);
Jens Axboe5262f562019-09-17 12:26:57 -06005170 break;
Jens Axboe11365042019-10-16 09:08:32 -06005171 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005172 if (sqe) {
5173 ret = io_timeout_remove_prep(req, sqe);
5174 if (ret)
5175 break;
5176 }
Jens Axboefc4df992019-12-10 14:38:45 -07005177 ret = io_timeout_remove(req);
Jens Axboe11365042019-10-16 09:08:32 -06005178 break;
Jens Axboe17f2fe32019-10-17 14:42:58 -06005179 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005180 if (sqe) {
5181 ret = io_accept_prep(req, sqe);
5182 if (ret)
5183 break;
5184 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005185 ret = io_accept(req, force_nonblock);
Jens Axboe17f2fe32019-10-17 14:42:58 -06005186 break;
Jens Axboef8e85cf2019-11-23 14:24:24 -07005187 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005188 if (sqe) {
5189 ret = io_connect_prep(req, sqe);
5190 if (ret)
5191 break;
5192 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005193 ret = io_connect(req, force_nonblock);
Jens Axboef8e85cf2019-11-23 14:24:24 -07005194 break;
Jens Axboe62755e32019-10-28 21:49:21 -06005195 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005196 if (sqe) {
5197 ret = io_async_cancel_prep(req, sqe);
5198 if (ret)
5199 break;
5200 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005201 ret = io_async_cancel(req);
Jens Axboe62755e32019-10-28 21:49:21 -06005202 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07005203 case IORING_OP_FALLOCATE:
5204 if (sqe) {
5205 ret = io_fallocate_prep(req, sqe);
5206 if (ret)
5207 break;
5208 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005209 ret = io_fallocate(req, force_nonblock);
Jens Axboed63d1b52019-12-10 10:38:56 -07005210 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07005211 case IORING_OP_OPENAT:
5212 if (sqe) {
5213 ret = io_openat_prep(req, sqe);
5214 if (ret)
5215 break;
5216 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005217 ret = io_openat(req, force_nonblock);
Jens Axboe15b71ab2019-12-11 11:20:36 -07005218 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07005219 case IORING_OP_CLOSE:
5220 if (sqe) {
5221 ret = io_close_prep(req, sqe);
5222 if (ret)
5223 break;
5224 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005225 ret = io_close(req, force_nonblock);
Jens Axboeb5dba592019-12-11 14:02:38 -07005226 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005227 case IORING_OP_FILES_UPDATE:
5228 if (sqe) {
5229 ret = io_files_update_prep(req, sqe);
5230 if (ret)
5231 break;
5232 }
5233 ret = io_files_update(req, force_nonblock);
5234 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07005235 case IORING_OP_STATX:
5236 if (sqe) {
5237 ret = io_statx_prep(req, sqe);
5238 if (ret)
5239 break;
5240 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005241 ret = io_statx(req, force_nonblock);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07005242 break;
Jens Axboe4840e412019-12-25 22:03:45 -07005243 case IORING_OP_FADVISE:
5244 if (sqe) {
5245 ret = io_fadvise_prep(req, sqe);
5246 if (ret)
5247 break;
5248 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005249 ret = io_fadvise(req, force_nonblock);
Jens Axboe4840e412019-12-25 22:03:45 -07005250 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07005251 case IORING_OP_MADVISE:
5252 if (sqe) {
5253 ret = io_madvise_prep(req, sqe);
5254 if (ret)
5255 break;
5256 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005257 ret = io_madvise(req, force_nonblock);
Jens Axboec1ca7572019-12-25 22:18:28 -07005258 break;
Jens Axboecebdb982020-01-08 17:59:24 -07005259 case IORING_OP_OPENAT2:
5260 if (sqe) {
5261 ret = io_openat2_prep(req, sqe);
5262 if (ret)
5263 break;
5264 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005265 ret = io_openat2(req, force_nonblock);
Jens Axboecebdb982020-01-08 17:59:24 -07005266 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07005267 case IORING_OP_EPOLL_CTL:
5268 if (sqe) {
5269 ret = io_epoll_ctl_prep(req, sqe);
5270 if (ret)
5271 break;
5272 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005273 ret = io_epoll_ctl(req, force_nonblock);
Jens Axboe3e4827b2020-01-08 15:18:09 -07005274 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005275 case IORING_OP_SPLICE:
5276 if (sqe) {
5277 ret = io_splice_prep(req, sqe);
5278 if (ret < 0)
5279 break;
5280 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005281 ret = io_splice(req, force_nonblock);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005282 break;
Jens Axboeddf0322d2020-02-23 16:41:33 -07005283 case IORING_OP_PROVIDE_BUFFERS:
5284 if (sqe) {
5285 ret = io_provide_buffers_prep(req, sqe);
5286 if (ret)
5287 break;
5288 }
5289 ret = io_provide_buffers(req, force_nonblock);
5290 break;
Jens Axboe067524e2020-03-02 16:32:28 -07005291 case IORING_OP_REMOVE_BUFFERS:
5292 if (sqe) {
5293 ret = io_remove_buffers_prep(req, sqe);
5294 if (ret)
5295 break;
5296 }
5297 ret = io_remove_buffers(req, force_nonblock);
Jens Axboe31b51512019-01-18 22:56:34 -07005298 break;
5299 default:
5300 ret = -EINVAL;
Jens Axboeedafcce2019-01-09 09:16:05 -07005301 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005302 }
5303
Jens Axboe31b51512019-01-18 22:56:34 -07005304 if (ret)
5305 return ret;
5306
5307 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboe11ba8202020-01-15 21:51:17 -07005308 const bool in_async = io_wq_current_is_worker();
5309
Jens Axboe9e645e112019-05-10 16:07:28 -06005310 if (req->result == -EAGAIN)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005311 return -EAGAIN;
5312
Jens Axboe11ba8202020-01-15 21:51:17 -07005313 /* workqueue context doesn't hold uring_lock, grab it now */
5314 if (in_async)
5315 mutex_lock(&ctx->uring_lock);
5316
Jens Axboe2b188cc2019-01-07 10:46:33 -07005317 io_iopoll_req_issued(req);
Jens Axboe11ba8202020-01-15 21:51:17 -07005318
5319 if (in_async)
5320 mutex_unlock(&ctx->uring_lock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005321 }
5322
5323 return 0;
5324}
5325
Jens Axboe561fb042019-10-24 07:25:42 -06005326static void io_wq_submit_work(struct io_wq_work **workptr)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005327{
Jens Axboe561fb042019-10-24 07:25:42 -06005328 struct io_wq_work *work = *workptr;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005329 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboe561fb042019-10-24 07:25:42 -06005330 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005331
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07005332 /* if NO_CANCEL is set, we must still run the work */
5333 if ((work->flags & (IO_WQ_WORK_CANCEL|IO_WQ_WORK_NO_CANCEL)) ==
5334 IO_WQ_WORK_CANCEL) {
Jens Axboe561fb042019-10-24 07:25:42 -06005335 ret = -ECANCELED;
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07005336 }
Jens Axboe31b51512019-01-18 22:56:34 -07005337
Jens Axboe561fb042019-10-24 07:25:42 -06005338 if (!ret) {
Jens Axboe561fb042019-10-24 07:25:42 -06005339 do {
Pavel Begunkov014db002020-03-03 21:33:12 +03005340 ret = io_issue_sqe(req, NULL, false);
Jens Axboe561fb042019-10-24 07:25:42 -06005341 /*
5342 * We can get EAGAIN for polled IO even though we're
5343 * forcing a sync submission from here, since we can't
5344 * wait for request slots on the block side.
5345 */
5346 if (ret != -EAGAIN)
5347 break;
5348 cond_resched();
5349 } while (1);
5350 }
Jens Axboe31b51512019-01-18 22:56:34 -07005351
Jens Axboe561fb042019-10-24 07:25:42 -06005352 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005353 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07005354 io_cqring_add_event(req, ret);
Jens Axboe817869d2019-04-30 14:44:05 -06005355 io_put_req(req);
Jens Axboeedafcce2019-01-09 09:16:05 -07005356 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07005357
Pavel Begunkove9fd9392020-03-04 16:14:12 +03005358 io_steal_work(req, workptr);
Jens Axboe31b51512019-01-18 22:56:34 -07005359}
Jens Axboe2b188cc2019-01-07 10:46:33 -07005360
Jens Axboe65e19f52019-10-26 07:20:21 -06005361static inline struct file *io_file_from_index(struct io_ring_ctx *ctx,
5362 int index)
Jens Axboe09bb8392019-03-13 12:39:28 -06005363{
Jens Axboe65e19f52019-10-26 07:20:21 -06005364 struct fixed_file_table *table;
5365
Jens Axboe05f3fb32019-12-09 11:22:50 -07005366 table = &ctx->file_data->table[index >> IORING_FILE_TABLE_SHIFT];
5367 return table->files[index & IORING_FILE_TABLE_MASK];;
Jens Axboe65e19f52019-10-26 07:20:21 -06005368}
5369
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005370static int io_file_get(struct io_submit_state *state, struct io_kiocb *req,
5371 int fd, struct file **out_file, bool fixed)
5372{
5373 struct io_ring_ctx *ctx = req->ctx;
5374 struct file *file;
5375
5376 if (fixed) {
5377 if (unlikely(!ctx->file_data ||
5378 (unsigned) fd >= ctx->nr_user_files))
5379 return -EBADF;
5380 fd = array_index_nospec(fd, ctx->nr_user_files);
5381 file = io_file_from_index(ctx, fd);
5382 if (!file)
5383 return -EBADF;
Xiaoguang Wang05589552020-03-31 14:05:18 +08005384 req->fixed_file_refs = ctx->file_data->cur_refs;
5385 percpu_ref_get(req->fixed_file_refs);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005386 } else {
5387 trace_io_uring_file_get(ctx, fd);
5388 file = __io_file_get(state, fd);
5389 if (unlikely(!file))
5390 return -EBADF;
5391 }
5392
5393 *out_file = file;
5394 return 0;
5395}
5396
Jens Axboe3529d8c2019-12-19 18:24:38 -07005397static int io_req_set_file(struct io_submit_state *state, struct io_kiocb *req,
Jens Axboe63ff8222020-05-07 14:56:15 -06005398 int fd)
Jens Axboe09bb8392019-03-13 12:39:28 -06005399{
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005400 bool fixed;
Jens Axboe09bb8392019-03-13 12:39:28 -06005401
Jens Axboe63ff8222020-05-07 14:56:15 -06005402 fixed = (req->flags & REQ_F_FIXED_FILE) != 0;
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005403 if (unlikely(!fixed && req->needs_fixed_file))
5404 return -EBADF;
Jens Axboe09bb8392019-03-13 12:39:28 -06005405
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005406 return io_file_get(state, req, fd, &req->file, fixed);
Jens Axboe09bb8392019-03-13 12:39:28 -06005407}
5408
Jackie Liua197f662019-11-08 08:09:12 -07005409static int io_grab_files(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005410{
Jens Axboefcb323c2019-10-24 12:39:47 -06005411 int ret = -EBADF;
Jackie Liua197f662019-11-08 08:09:12 -07005412 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06005413
Jens Axboe5b0bbee2020-04-27 10:41:22 -06005414 if (req->work.files || (req->flags & REQ_F_NO_FILE_TABLE))
Jens Axboef86cd202020-01-29 13:46:44 -07005415 return 0;
Pavel Begunkovb14cca02020-01-17 04:45:59 +03005416 if (!ctx->ring_file)
Jens Axboeb5dba592019-12-11 14:02:38 -07005417 return -EBADF;
5418
Jens Axboefcb323c2019-10-24 12:39:47 -06005419 rcu_read_lock();
5420 spin_lock_irq(&ctx->inflight_lock);
5421 /*
5422 * We use the f_ops->flush() handler to ensure that we can flush
5423 * out work accessing these files if the fd is closed. Check if
5424 * the fd has changed since we started down this path, and disallow
5425 * this operation if it has.
5426 */
Pavel Begunkovb14cca02020-01-17 04:45:59 +03005427 if (fcheck(ctx->ring_fd) == ctx->ring_file) {
Jens Axboefcb323c2019-10-24 12:39:47 -06005428 list_add(&req->inflight_entry, &ctx->inflight_list);
5429 req->flags |= REQ_F_INFLIGHT;
5430 req->work.files = current->files;
5431 ret = 0;
5432 }
5433 spin_unlock_irq(&ctx->inflight_lock);
5434 rcu_read_unlock();
5435
5436 return ret;
5437}
5438
Jens Axboe2665abf2019-11-05 12:40:47 -07005439static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer)
5440{
Jens Axboead8a48a2019-11-15 08:49:11 -07005441 struct io_timeout_data *data = container_of(timer,
5442 struct io_timeout_data, timer);
5443 struct io_kiocb *req = data->req;
Jens Axboe2665abf2019-11-05 12:40:47 -07005444 struct io_ring_ctx *ctx = req->ctx;
5445 struct io_kiocb *prev = NULL;
5446 unsigned long flags;
Jens Axboe2665abf2019-11-05 12:40:47 -07005447
5448 spin_lock_irqsave(&ctx->completion_lock, flags);
5449
5450 /*
5451 * We don't expect the list to be empty, that will only happen if we
5452 * race with the completion of the linked work.
5453 */
Pavel Begunkov44932332019-12-05 16:16:35 +03005454 if (!list_empty(&req->link_list)) {
5455 prev = list_entry(req->link_list.prev, struct io_kiocb,
5456 link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07005457 if (refcount_inc_not_zero(&prev->refs)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03005458 list_del_init(&req->link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07005459 prev->flags &= ~REQ_F_LINK_TIMEOUT;
5460 } else
Jens Axboe76a46e02019-11-10 23:34:16 -07005461 prev = NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07005462 }
5463
5464 spin_unlock_irqrestore(&ctx->completion_lock, flags);
5465
5466 if (prev) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005467 req_set_fail_links(prev);
Pavel Begunkov014db002020-03-03 21:33:12 +03005468 io_async_find_and_cancel(ctx, req, prev->user_data, -ETIME);
Jens Axboe76a46e02019-11-10 23:34:16 -07005469 io_put_req(prev);
Jens Axboe47f46762019-11-09 17:43:02 -07005470 } else {
5471 io_cqring_add_event(req, -ETIME);
5472 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07005473 }
Jens Axboe2665abf2019-11-05 12:40:47 -07005474 return HRTIMER_NORESTART;
5475}
5476
Jens Axboead8a48a2019-11-15 08:49:11 -07005477static void io_queue_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07005478{
Jens Axboe76a46e02019-11-10 23:34:16 -07005479 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07005480
Jens Axboe76a46e02019-11-10 23:34:16 -07005481 /*
5482 * If the list is now empty, then our linked request finished before
5483 * we got a chance to setup the timer
5484 */
5485 spin_lock_irq(&ctx->completion_lock);
Pavel Begunkov44932332019-12-05 16:16:35 +03005486 if (!list_empty(&req->link_list)) {
Jens Axboe2d283902019-12-04 11:08:05 -07005487 struct io_timeout_data *data = &req->io->timeout;
Jens Axboe94ae5e72019-11-14 19:39:52 -07005488
Jens Axboead8a48a2019-11-15 08:49:11 -07005489 data->timer.function = io_link_timeout_fn;
5490 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts),
5491 data->mode);
Jens Axboe2665abf2019-11-05 12:40:47 -07005492 }
Jens Axboe76a46e02019-11-10 23:34:16 -07005493 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe2665abf2019-11-05 12:40:47 -07005494
Jens Axboe2665abf2019-11-05 12:40:47 -07005495 /* drop submission reference */
Jens Axboe76a46e02019-11-10 23:34:16 -07005496 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07005497}
5498
Jens Axboead8a48a2019-11-15 08:49:11 -07005499static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07005500{
5501 struct io_kiocb *nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005502
Pavel Begunkovdea3b492020-04-12 02:05:04 +03005503 if (!(req->flags & REQ_F_LINK_HEAD))
Jens Axboe2665abf2019-11-05 12:40:47 -07005504 return NULL;
Jens Axboed7718a92020-02-14 22:23:12 -07005505 /* for polled retry, if flag is set, we already went through here */
5506 if (req->flags & REQ_F_POLLED)
5507 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07005508
Pavel Begunkov44932332019-12-05 16:16:35 +03005509 nxt = list_first_entry_or_null(&req->link_list, struct io_kiocb,
5510 link_list);
Jens Axboed625c6e2019-12-17 19:53:05 -07005511 if (!nxt || nxt->opcode != IORING_OP_LINK_TIMEOUT)
Jens Axboe76a46e02019-11-10 23:34:16 -07005512 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07005513
Jens Axboe76a46e02019-11-10 23:34:16 -07005514 req->flags |= REQ_F_LINK_TIMEOUT;
Jens Axboe76a46e02019-11-10 23:34:16 -07005515 return nxt;
Jens Axboe2665abf2019-11-05 12:40:47 -07005516}
5517
Jens Axboe3529d8c2019-12-19 18:24:38 -07005518static void __io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005519{
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005520 struct io_kiocb *linked_timeout;
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005521 struct io_kiocb *nxt;
Jens Axboe193155c2020-02-22 23:22:19 -07005522 const struct cred *old_creds = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005523 int ret;
5524
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005525again:
5526 linked_timeout = io_prep_linked_timeout(req);
5527
Jens Axboe193155c2020-02-22 23:22:19 -07005528 if (req->work.creds && req->work.creds != current_cred()) {
5529 if (old_creds)
5530 revert_creds(old_creds);
5531 if (old_creds == req->work.creds)
5532 old_creds = NULL; /* restored original creds */
5533 else
5534 old_creds = override_creds(req->work.creds);
5535 }
5536
Pavel Begunkov014db002020-03-03 21:33:12 +03005537 ret = io_issue_sqe(req, sqe, true);
Jens Axboe491381ce2019-10-17 09:20:46 -06005538
5539 /*
5540 * We async punt it if the file wasn't marked NOWAIT, or if the file
5541 * doesn't support non-blocking read/write attempts
5542 */
5543 if (ret == -EAGAIN && (!(req->flags & REQ_F_NOWAIT) ||
5544 (req->flags & REQ_F_MUST_PUNT))) {
Jens Axboed7718a92020-02-14 22:23:12 -07005545 if (io_arm_poll_handler(req)) {
5546 if (linked_timeout)
5547 io_queue_linked_timeout(linked_timeout);
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005548 goto exit;
Jens Axboed7718a92020-02-14 22:23:12 -07005549 }
Pavel Begunkov86a761f2020-01-22 23:09:36 +03005550punt:
Jens Axboef86cd202020-01-29 13:46:44 -07005551 if (io_op_defs[req->opcode].file_table) {
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03005552 ret = io_grab_files(req);
5553 if (ret)
5554 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005555 }
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03005556
5557 /*
5558 * Queued up for async execution, worker will release
5559 * submit reference when the iocb is actually submitted.
5560 */
5561 io_queue_async_work(req);
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005562 goto exit;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005563 }
Jens Axboee65ef562019-03-12 10:16:44 -06005564
Jens Axboefcb323c2019-10-24 12:39:47 -06005565err:
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005566 nxt = NULL;
Jens Axboee65ef562019-03-12 10:16:44 -06005567 /* drop submission reference */
Jens Axboe2a44f462020-02-25 13:25:41 -07005568 io_put_req_find_next(req, &nxt);
Jens Axboee65ef562019-03-12 10:16:44 -06005569
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03005570 if (linked_timeout) {
Jens Axboe76a46e02019-11-10 23:34:16 -07005571 if (!ret)
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03005572 io_queue_linked_timeout(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07005573 else
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03005574 io_put_req(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07005575 }
5576
Jens Axboee65ef562019-03-12 10:16:44 -06005577 /* and drop final reference, if we failed */
Jens Axboe9e645e112019-05-10 16:07:28 -06005578 if (ret) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07005579 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005580 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06005581 io_put_req(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06005582 }
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005583 if (nxt) {
5584 req = nxt;
Pavel Begunkov86a761f2020-01-22 23:09:36 +03005585
5586 if (req->flags & REQ_F_FORCE_ASYNC)
5587 goto punt;
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005588 goto again;
5589 }
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005590exit:
Jens Axboe193155c2020-02-22 23:22:19 -07005591 if (old_creds)
5592 revert_creds(old_creds);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005593}
5594
Jens Axboe3529d8c2019-12-19 18:24:38 -07005595static void io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jackie Liu4fe2c962019-09-09 20:50:40 +08005596{
5597 int ret;
5598
Jens Axboe3529d8c2019-12-19 18:24:38 -07005599 ret = io_req_defer(req, sqe);
Jackie Liu4fe2c962019-09-09 20:50:40 +08005600 if (ret) {
5601 if (ret != -EIOCBQUEUED) {
Pavel Begunkov11185912020-01-22 23:09:35 +03005602fail_req:
Jens Axboe78e19bb2019-11-06 15:21:34 -07005603 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005604 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07005605 io_double_put_req(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08005606 }
Pavel Begunkov25508782019-12-30 21:24:47 +03005607 } else if (req->flags & REQ_F_FORCE_ASYNC) {
Pavel Begunkovbd2ab182020-05-17 14:02:12 +03005608 if (!req->io) {
5609 ret = -EAGAIN;
5610 if (io_alloc_async_ctx(req))
5611 goto fail_req;
5612 ret = io_req_defer_prep(req, sqe);
5613 if (unlikely(ret < 0))
5614 goto fail_req;
5615 }
5616
Jens Axboece35a472019-12-17 08:04:44 -07005617 /*
5618 * Never try inline submit of IOSQE_ASYNC is set, go straight
5619 * to async execution.
5620 */
5621 req->work.flags |= IO_WQ_WORK_CONCURRENT;
5622 io_queue_async_work(req);
5623 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07005624 __io_queue_sqe(req, sqe);
Jens Axboece35a472019-12-17 08:04:44 -07005625 }
Jackie Liu4fe2c962019-09-09 20:50:40 +08005626}
5627
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005628static inline void io_queue_link_head(struct io_kiocb *req)
Jackie Liu4fe2c962019-09-09 20:50:40 +08005629{
Jens Axboe94ae5e72019-11-14 19:39:52 -07005630 if (unlikely(req->flags & REQ_F_FAIL_LINK)) {
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005631 io_cqring_add_event(req, -ECANCELED);
5632 io_double_put_req(req);
5633 } else
Jens Axboe3529d8c2019-12-19 18:24:38 -07005634 io_queue_sqe(req, NULL);
Jackie Liu4fe2c962019-09-09 20:50:40 +08005635}
5636
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03005637static int io_submit_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboe3529d8c2019-12-19 18:24:38 -07005638 struct io_submit_state *state, struct io_kiocb **link)
Jens Axboe9e645e112019-05-10 16:07:28 -06005639{
Jackie Liua197f662019-11-08 08:09:12 -07005640 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005641 int ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06005642
Jens Axboe9e645e112019-05-10 16:07:28 -06005643 /*
5644 * If we already have a head request, queue this one for async
5645 * submittal once the head completes. If we don't have a head but
5646 * IOSQE_IO_LINK is set in the sqe, start a new head. This one will be
5647 * submitted sync once the chain is complete. If none of those
5648 * conditions are true (normal request), then just queue it.
5649 */
5650 if (*link) {
Pavel Begunkov9d763772019-12-17 02:22:07 +03005651 struct io_kiocb *head = *link;
Jens Axboe9e645e112019-05-10 16:07:28 -06005652
Pavel Begunkov8cdf2192020-01-25 00:40:24 +03005653 /*
5654 * Taking sequential execution of a link, draining both sides
5655 * of the link also fullfils IOSQE_IO_DRAIN semantics for all
5656 * requests in the link. So, it drains the head and the
5657 * next after the link request. The last one is done via
5658 * drain_next flag to persist the effect across calls.
5659 */
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005660 if (req->flags & REQ_F_IO_DRAIN) {
Pavel Begunkov711be032020-01-17 03:57:59 +03005661 head->flags |= REQ_F_IO_DRAIN;
5662 ctx->drain_next = 1;
5663 }
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03005664 if (io_alloc_async_ctx(req))
5665 return -EAGAIN;
Jens Axboe9e645e112019-05-10 16:07:28 -06005666
Jens Axboe3529d8c2019-12-19 18:24:38 -07005667 ret = io_req_defer_prep(req, sqe);
Jens Axboe2d283902019-12-04 11:08:05 -07005668 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005669 /* fail even hard links since we don't submit */
Pavel Begunkov9d763772019-12-17 02:22:07 +03005670 head->flags |= REQ_F_FAIL_LINK;
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03005671 return ret;
Jens Axboe2d283902019-12-04 11:08:05 -07005672 }
Pavel Begunkov9d763772019-12-17 02:22:07 +03005673 trace_io_uring_link(ctx, req, head);
5674 list_add_tail(&req->link_list, &head->link_list);
Jens Axboe9e645e112019-05-10 16:07:28 -06005675
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005676 /* last request of a link, enqueue the link */
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005677 if (!(req->flags & (REQ_F_LINK | REQ_F_HARDLINK))) {
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005678 io_queue_link_head(head);
5679 *link = NULL;
5680 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005681 } else {
Pavel Begunkov711be032020-01-17 03:57:59 +03005682 if (unlikely(ctx->drain_next)) {
5683 req->flags |= REQ_F_IO_DRAIN;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005684 ctx->drain_next = 0;
Pavel Begunkov711be032020-01-17 03:57:59 +03005685 }
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005686 if (req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) {
Pavel Begunkovdea3b492020-04-12 02:05:04 +03005687 req->flags |= REQ_F_LINK_HEAD;
Pavel Begunkov711be032020-01-17 03:57:59 +03005688 INIT_LIST_HEAD(&req->link_list);
Pavel Begunkovf1d96a82020-03-13 22:29:14 +03005689
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03005690 if (io_alloc_async_ctx(req))
5691 return -EAGAIN;
5692
Pavel Begunkov711be032020-01-17 03:57:59 +03005693 ret = io_req_defer_prep(req, sqe);
5694 if (ret)
5695 req->flags |= REQ_F_FAIL_LINK;
5696 *link = req;
5697 } else {
5698 io_queue_sqe(req, sqe);
5699 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005700 }
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03005701
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03005702 return 0;
Jens Axboe9e645e112019-05-10 16:07:28 -06005703}
5704
Jens Axboe9a56a232019-01-09 09:06:50 -07005705/*
5706 * Batched submission is done, ensure local IO is flushed out.
5707 */
5708static void io_submit_state_end(struct io_submit_state *state)
5709{
5710 blk_finish_plug(&state->plug);
Jens Axboe3d6770f2019-04-13 11:50:54 -06005711 io_file_put(state);
Jens Axboe2579f912019-01-09 09:10:43 -07005712 if (state->free_reqs)
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03005713 kmem_cache_free_bulk(req_cachep, state->free_reqs, state->reqs);
Jens Axboe9a56a232019-01-09 09:06:50 -07005714}
5715
5716/*
5717 * Start submission side cache.
5718 */
5719static void io_submit_state_start(struct io_submit_state *state,
Jackie Liu22efde52019-12-02 17:14:52 +08005720 unsigned int max_ios)
Jens Axboe9a56a232019-01-09 09:06:50 -07005721{
5722 blk_start_plug(&state->plug);
Jens Axboe2579f912019-01-09 09:10:43 -07005723 state->free_reqs = 0;
Jens Axboe9a56a232019-01-09 09:06:50 -07005724 state->file = NULL;
5725 state->ios_left = max_ios;
5726}
5727
Jens Axboe2b188cc2019-01-07 10:46:33 -07005728static void io_commit_sqring(struct io_ring_ctx *ctx)
5729{
Hristo Venev75b28af2019-08-26 17:23:46 +00005730 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005731
Pavel Begunkovcaf582c2019-12-30 21:24:46 +03005732 /*
5733 * Ensure any loads from the SQEs are done at this point,
5734 * since once we write the new head, the application could
5735 * write new data to them.
5736 */
5737 smp_store_release(&rings->sq.head, ctx->cached_sq_head);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005738}
5739
5740/*
Jens Axboe3529d8c2019-12-19 18:24:38 -07005741 * Fetch an sqe, if one is available. Note that sqe_ptr will point to memory
Jens Axboe2b188cc2019-01-07 10:46:33 -07005742 * that is mapped by userspace. This means that care needs to be taken to
5743 * ensure that reads are stable, as we cannot rely on userspace always
5744 * being a good citizen. If members of the sqe are validated and then later
5745 * used, it's important that those reads are done through READ_ONCE() to
5746 * prevent a re-load down the line.
5747 */
Pavel Begunkov709b3022020-04-08 08:58:43 +03005748static const struct io_uring_sqe *io_get_sqe(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005749{
Hristo Venev75b28af2019-08-26 17:23:46 +00005750 u32 *sq_array = ctx->sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005751 unsigned head;
5752
5753 /*
5754 * The cached sq head (or cq tail) serves two purposes:
5755 *
5756 * 1) allows us to batch the cost of updating the user visible
5757 * head updates.
5758 * 2) allows the kernel side to track the head on its own, even
5759 * though the application is the one updating it.
5760 */
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005761 head = READ_ONCE(sq_array[ctx->cached_sq_head & ctx->sq_mask]);
Pavel Begunkov709b3022020-04-08 08:58:43 +03005762 if (likely(head < ctx->sq_entries))
5763 return &ctx->sq_sqes[head];
Jens Axboe2b188cc2019-01-07 10:46:33 -07005764
5765 /* drop invalid entries */
Jens Axboe498ccd92019-10-25 10:04:25 -06005766 ctx->cached_sq_dropped++;
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005767 WRITE_ONCE(ctx->rings->sq_dropped, ctx->cached_sq_dropped);
Pavel Begunkov709b3022020-04-08 08:58:43 +03005768 return NULL;
5769}
5770
5771static inline void io_consume_sqe(struct io_ring_ctx *ctx)
5772{
5773 ctx->cached_sq_head++;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005774}
5775
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005776#define SQE_VALID_FLAGS (IOSQE_FIXED_FILE|IOSQE_IO_DRAIN|IOSQE_IO_LINK| \
5777 IOSQE_IO_HARDLINK | IOSQE_ASYNC | \
5778 IOSQE_BUFFER_SELECT)
5779
5780static int io_init_req(struct io_ring_ctx *ctx, struct io_kiocb *req,
5781 const struct io_uring_sqe *sqe,
5782 struct io_submit_state *state, bool async)
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03005783{
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005784 unsigned int sqe_flags;
Jens Axboe63ff8222020-05-07 14:56:15 -06005785 int id;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005786
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03005787 /*
5788 * All io need record the previous position, if LINK vs DARIN,
5789 * it can be used to mark the position of the first IO in the
5790 * link list.
5791 */
Pavel Begunkov31af27c2020-04-15 00:39:50 +03005792 req->sequence = ctx->cached_sq_head - ctx->cached_sq_dropped;
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03005793 req->opcode = READ_ONCE(sqe->opcode);
5794 req->user_data = READ_ONCE(sqe->user_data);
5795 req->io = NULL;
5796 req->file = NULL;
5797 req->ctx = ctx;
5798 req->flags = 0;
5799 /* one is dropped after submission, the other at completion */
5800 refcount_set(&req->refs, 2);
5801 req->task = NULL;
5802 req->result = 0;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005803 req->needs_fixed_file = async;
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03005804 INIT_IO_WORK(&req->work, io_wq_submit_work);
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005805
5806 if (unlikely(req->opcode >= IORING_OP_LAST))
5807 return -EINVAL;
5808
5809 if (io_op_defs[req->opcode].needs_mm && !current->mm) {
5810 if (unlikely(!mmget_not_zero(ctx->sqo_mm)))
5811 return -EFAULT;
5812 use_mm(ctx->sqo_mm);
5813 }
5814
5815 sqe_flags = READ_ONCE(sqe->flags);
5816 /* enforce forwards compatibility on users */
5817 if (unlikely(sqe_flags & ~SQE_VALID_FLAGS))
5818 return -EINVAL;
5819
5820 if ((sqe_flags & IOSQE_BUFFER_SELECT) &&
5821 !io_op_defs[req->opcode].buffer_select)
5822 return -EOPNOTSUPP;
5823
5824 id = READ_ONCE(sqe->personality);
5825 if (id) {
5826 req->work.creds = idr_find(&ctx->personality_idr, id);
5827 if (unlikely(!req->work.creds))
5828 return -EINVAL;
5829 get_cred(req->work.creds);
5830 }
5831
5832 /* same numerical values with corresponding REQ_F_*, safe to copy */
5833 req->flags |= sqe_flags & (IOSQE_IO_DRAIN | IOSQE_IO_HARDLINK |
5834 IOSQE_ASYNC | IOSQE_FIXED_FILE |
5835 IOSQE_BUFFER_SELECT | IOSQE_IO_LINK);
5836
Jens Axboe63ff8222020-05-07 14:56:15 -06005837 if (!io_op_defs[req->opcode].needs_file)
5838 return 0;
5839
5840 return io_req_set_file(state, req, READ_ONCE(sqe->fd));
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03005841}
5842
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005843static int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr,
Pavel Begunkovbf9c2f12020-04-12 02:05:02 +03005844 struct file *ring_file, int ring_fd, bool async)
Jens Axboe6c271ce2019-01-10 11:22:30 -07005845{
5846 struct io_submit_state state, *statep = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06005847 struct io_kiocb *link = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06005848 int i, submitted = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005849
Jens Axboec4a2ed72019-11-21 21:01:26 -07005850 /* if we have a backlog and couldn't flush it all, return BUSY */
Jens Axboead3eb2c2019-12-18 17:12:20 -07005851 if (test_bit(0, &ctx->sq_check_overflow)) {
5852 if (!list_empty(&ctx->cq_overflow_list) &&
5853 !io_cqring_overflow_flush(ctx, false))
5854 return -EBUSY;
5855 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07005856
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005857 /* make sure SQ entry isn't read before tail */
5858 nr = min3(nr, ctx->sq_entries, io_sqring_entries(ctx));
Pavel Begunkov9ef4f122019-12-30 21:24:44 +03005859
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03005860 if (!percpu_ref_tryget_many(&ctx->refs, nr))
5861 return -EAGAIN;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005862
5863 if (nr > IO_PLUG_THRESHOLD) {
Jackie Liu22efde52019-12-02 17:14:52 +08005864 io_submit_state_start(&state, nr);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005865 statep = &state;
5866 }
5867
Pavel Begunkovb14cca02020-01-17 04:45:59 +03005868 ctx->ring_fd = ring_fd;
5869 ctx->ring_file = ring_file;
5870
Jens Axboe6c271ce2019-01-10 11:22:30 -07005871 for (i = 0; i < nr; i++) {
Jens Axboe3529d8c2019-12-19 18:24:38 -07005872 const struct io_uring_sqe *sqe;
Pavel Begunkov196be952019-11-07 01:41:06 +03005873 struct io_kiocb *req;
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005874 int err;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005875
Pavel Begunkovb1e50e52020-04-08 08:58:44 +03005876 sqe = io_get_sqe(ctx);
5877 if (unlikely(!sqe)) {
5878 io_consume_sqe(ctx);
5879 break;
5880 }
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03005881 req = io_alloc_req(ctx, statep);
Pavel Begunkov196be952019-11-07 01:41:06 +03005882 if (unlikely(!req)) {
5883 if (!submitted)
5884 submitted = -EAGAIN;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005885 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06005886 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005887
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005888 err = io_init_req(ctx, req, sqe, statep, async);
Pavel Begunkov709b3022020-04-08 08:58:43 +03005889 io_consume_sqe(ctx);
Jens Axboed3656342019-12-18 09:50:26 -07005890 /* will complete beyond this point, count as submitted */
5891 submitted++;
5892
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005893 if (unlikely(err)) {
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005894fail_req:
5895 io_cqring_add_event(req, err);
Jens Axboed3656342019-12-18 09:50:26 -07005896 io_double_put_req(req);
5897 break;
5898 }
5899
Jens Axboe354420f2020-01-08 18:55:15 -07005900 trace_io_uring_submit_sqe(ctx, req->opcode, req->user_data,
5901 true, async);
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03005902 err = io_submit_sqe(req, sqe, statep, &link);
5903 if (err)
5904 goto fail_req;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005905 }
5906
Pavel Begunkov9466f432020-01-25 22:34:01 +03005907 if (unlikely(submitted != nr)) {
5908 int ref_used = (submitted == -EAGAIN) ? 0 : submitted;
5909
5910 percpu_ref_put_many(&ctx->refs, nr - ref_used);
5911 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005912 if (link)
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005913 io_queue_link_head(link);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005914 if (statep)
5915 io_submit_state_end(&state);
5916
Pavel Begunkovae9428c2019-11-06 00:22:14 +03005917 /* Commit SQ ring head once we've consumed and submitted all SQEs */
5918 io_commit_sqring(ctx);
5919
Jens Axboe6c271ce2019-01-10 11:22:30 -07005920 return submitted;
5921}
5922
Pavel Begunkovbf9c2f12020-04-12 02:05:02 +03005923static inline void io_sq_thread_drop_mm(struct io_ring_ctx *ctx)
5924{
5925 struct mm_struct *mm = current->mm;
5926
5927 if (mm) {
5928 unuse_mm(mm);
5929 mmput(mm);
5930 }
5931}
5932
Jens Axboe6c271ce2019-01-10 11:22:30 -07005933static int io_sq_thread(void *data)
5934{
Jens Axboe6c271ce2019-01-10 11:22:30 -07005935 struct io_ring_ctx *ctx = data;
Jens Axboe181e4482019-11-25 08:52:30 -07005936 const struct cred *old_cred;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005937 mm_segment_t old_fs;
5938 DEFINE_WAIT(wait);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005939 unsigned long timeout;
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005940 int ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005941
Jens Axboe206aefd2019-11-07 18:27:42 -07005942 complete(&ctx->completions[1]);
Jackie Liua4c0b3d2019-07-08 13:41:12 +08005943
Jens Axboe6c271ce2019-01-10 11:22:30 -07005944 old_fs = get_fs();
5945 set_fs(USER_DS);
Jens Axboe181e4482019-11-25 08:52:30 -07005946 old_cred = override_creds(ctx->creds);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005947
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005948 timeout = jiffies + ctx->sq_thread_idle;
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02005949 while (!kthread_should_park()) {
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005950 unsigned int to_submit;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005951
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005952 if (!list_empty(&ctx->poll_list)) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07005953 unsigned nr_events = 0;
5954
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005955 mutex_lock(&ctx->uring_lock);
5956 if (!list_empty(&ctx->poll_list))
5957 io_iopoll_getevents(ctx, &nr_events, 0);
5958 else
Jens Axboe6c271ce2019-01-10 11:22:30 -07005959 timeout = jiffies + ctx->sq_thread_idle;
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005960 mutex_unlock(&ctx->uring_lock);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005961 }
5962
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005963 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07005964
5965 /*
5966 * If submit got -EBUSY, flag us as needing the application
5967 * to enter the kernel to reap and flush events.
5968 */
5969 if (!to_submit || ret == -EBUSY) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07005970 /*
Stefano Garzarella7143b5a2020-02-21 16:42:16 +01005971 * Drop cur_mm before scheduling, we can't hold it for
5972 * long periods (or over schedule()). Do this before
5973 * adding ourselves to the waitqueue, as the unuse/drop
5974 * may sleep.
5975 */
Pavel Begunkovbf9c2f12020-04-12 02:05:02 +03005976 io_sq_thread_drop_mm(ctx);
Stefano Garzarella7143b5a2020-02-21 16:42:16 +01005977
5978 /*
Jens Axboe6c271ce2019-01-10 11:22:30 -07005979 * We're polling. If we're within the defined idle
5980 * period, then let us spin without work before going
Jens Axboec1edbf52019-11-10 16:56:04 -07005981 * to sleep. The exception is if we got EBUSY doing
5982 * more IO, we should wait for the application to
5983 * reap events and wake us up.
Jens Axboe6c271ce2019-01-10 11:22:30 -07005984 */
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005985 if (!list_empty(&ctx->poll_list) ||
Jens Axboedf069d82020-02-04 16:48:34 -07005986 (!time_after(jiffies, timeout) && ret != -EBUSY &&
5987 !percpu_ref_is_dying(&ctx->refs))) {
Jens Axboeb41e9852020-02-17 09:52:41 -07005988 if (current->task_works)
5989 task_work_run();
Jens Axboe9831a902019-09-19 09:48:55 -06005990 cond_resched();
Jens Axboe6c271ce2019-01-10 11:22:30 -07005991 continue;
5992 }
5993
Jens Axboe6c271ce2019-01-10 11:22:30 -07005994 prepare_to_wait(&ctx->sqo_wait, &wait,
5995 TASK_INTERRUPTIBLE);
5996
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005997 /*
5998 * While doing polled IO, before going to sleep, we need
5999 * to check if there are new reqs added to poll_list, it
6000 * is because reqs may have been punted to io worker and
6001 * will be added to poll_list later, hence check the
6002 * poll_list again.
6003 */
6004 if ((ctx->flags & IORING_SETUP_IOPOLL) &&
6005 !list_empty_careful(&ctx->poll_list)) {
6006 finish_wait(&ctx->sqo_wait, &wait);
6007 continue;
6008 }
6009
Jens Axboe6c271ce2019-01-10 11:22:30 -07006010 /* Tell userspace we may need a wakeup call */
Hristo Venev75b28af2019-08-26 17:23:46 +00006011 ctx->rings->sq_flags |= IORING_SQ_NEED_WAKEUP;
Stefan Bühler0d7bae62019-04-19 11:57:45 +02006012 /* make sure to read SQ tail after writing flags */
6013 smp_mb();
Jens Axboe6c271ce2019-01-10 11:22:30 -07006014
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03006015 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07006016 if (!to_submit || ret == -EBUSY) {
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02006017 if (kthread_should_park()) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07006018 finish_wait(&ctx->sqo_wait, &wait);
6019 break;
6020 }
Jens Axboeb41e9852020-02-17 09:52:41 -07006021 if (current->task_works) {
6022 task_work_run();
Hillf Danton10bea962020-04-01 17:19:33 +08006023 finish_wait(&ctx->sqo_wait, &wait);
Jens Axboeb41e9852020-02-17 09:52:41 -07006024 continue;
6025 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07006026 if (signal_pending(current))
6027 flush_signals(current);
6028 schedule();
6029 finish_wait(&ctx->sqo_wait, &wait);
6030
Hristo Venev75b28af2019-08-26 17:23:46 +00006031 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006032 continue;
6033 }
6034 finish_wait(&ctx->sqo_wait, &wait);
6035
Hristo Venev75b28af2019-08-26 17:23:46 +00006036 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006037 }
6038
Jens Axboe8a4955f2019-12-09 14:52:35 -07006039 mutex_lock(&ctx->uring_lock);
Pavel Begunkovbf9c2f12020-04-12 02:05:02 +03006040 ret = io_submit_sqes(ctx, to_submit, NULL, -1, true);
Jens Axboe8a4955f2019-12-09 14:52:35 -07006041 mutex_unlock(&ctx->uring_lock);
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006042 timeout = jiffies + ctx->sq_thread_idle;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006043 }
6044
Jens Axboeb41e9852020-02-17 09:52:41 -07006045 if (current->task_works)
6046 task_work_run();
6047
Jens Axboe6c271ce2019-01-10 11:22:30 -07006048 set_fs(old_fs);
Pavel Begunkovbf9c2f12020-04-12 02:05:02 +03006049 io_sq_thread_drop_mm(ctx);
Jens Axboe181e4482019-11-25 08:52:30 -07006050 revert_creds(old_cred);
Jens Axboe06058632019-04-13 09:26:03 -06006051
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02006052 kthread_parkme();
Jens Axboe06058632019-04-13 09:26:03 -06006053
Jens Axboe6c271ce2019-01-10 11:22:30 -07006054 return 0;
6055}
6056
Jens Axboebda52162019-09-24 13:47:15 -06006057struct io_wait_queue {
6058 struct wait_queue_entry wq;
6059 struct io_ring_ctx *ctx;
6060 unsigned to_wait;
6061 unsigned nr_timeouts;
6062};
6063
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006064static inline bool io_should_wake(struct io_wait_queue *iowq, bool noflush)
Jens Axboebda52162019-09-24 13:47:15 -06006065{
6066 struct io_ring_ctx *ctx = iowq->ctx;
6067
6068 /*
Brian Gianforcarod195a662019-12-13 03:09:50 -08006069 * Wake up if we have enough events, or if a timeout occurred since we
Jens Axboebda52162019-09-24 13:47:15 -06006070 * started waiting. For timeouts, we always want to return to userspace,
6071 * regardless of event count.
6072 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006073 return io_cqring_events(ctx, noflush) >= iowq->to_wait ||
Jens Axboebda52162019-09-24 13:47:15 -06006074 atomic_read(&ctx->cq_timeouts) != iowq->nr_timeouts;
6075}
6076
6077static int io_wake_function(struct wait_queue_entry *curr, unsigned int mode,
6078 int wake_flags, void *key)
6079{
6080 struct io_wait_queue *iowq = container_of(curr, struct io_wait_queue,
6081 wq);
6082
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006083 /* use noflush == true, as we can't safely rely on locking context */
6084 if (!io_should_wake(iowq, true))
Jens Axboebda52162019-09-24 13:47:15 -06006085 return -1;
6086
6087 return autoremove_wake_function(curr, mode, wake_flags, key);
6088}
6089
Jens Axboe2b188cc2019-01-07 10:46:33 -07006090/*
6091 * Wait until events become available, if we don't already have some. The
6092 * application must reap them itself, as they reside on the shared cq ring.
6093 */
6094static int io_cqring_wait(struct io_ring_ctx *ctx, int min_events,
6095 const sigset_t __user *sig, size_t sigsz)
6096{
Jens Axboebda52162019-09-24 13:47:15 -06006097 struct io_wait_queue iowq = {
6098 .wq = {
6099 .private = current,
6100 .func = io_wake_function,
6101 .entry = LIST_HEAD_INIT(iowq.wq.entry),
6102 },
6103 .ctx = ctx,
6104 .to_wait = min_events,
6105 };
Hristo Venev75b28af2019-08-26 17:23:46 +00006106 struct io_rings *rings = ctx->rings;
Jackie Liue9ffa5c2019-10-29 11:16:42 +08006107 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006108
Jens Axboeb41e9852020-02-17 09:52:41 -07006109 do {
6110 if (io_cqring_events(ctx, false) >= min_events)
6111 return 0;
6112 if (!current->task_works)
6113 break;
6114 task_work_run();
6115 } while (1);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006116
6117 if (sig) {
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006118#ifdef CONFIG_COMPAT
6119 if (in_compat_syscall())
6120 ret = set_compat_user_sigmask((const compat_sigset_t __user *)sig,
Oleg Nesterovb7724342019-07-16 16:29:53 -07006121 sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006122 else
6123#endif
Oleg Nesterovb7724342019-07-16 16:29:53 -07006124 ret = set_user_sigmask(sig, sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006125
Jens Axboe2b188cc2019-01-07 10:46:33 -07006126 if (ret)
6127 return ret;
6128 }
6129
Jens Axboebda52162019-09-24 13:47:15 -06006130 iowq.nr_timeouts = atomic_read(&ctx->cq_timeouts);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02006131 trace_io_uring_cqring_wait(ctx, min_events);
Jens Axboebda52162019-09-24 13:47:15 -06006132 do {
6133 prepare_to_wait_exclusive(&ctx->wait, &iowq.wq,
6134 TASK_INTERRUPTIBLE);
Jens Axboeb41e9852020-02-17 09:52:41 -07006135 if (current->task_works)
6136 task_work_run();
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006137 if (io_should_wake(&iowq, false))
Jens Axboebda52162019-09-24 13:47:15 -06006138 break;
6139 schedule();
6140 if (signal_pending(current)) {
Jackie Liue9ffa5c2019-10-29 11:16:42 +08006141 ret = -EINTR;
Jens Axboebda52162019-09-24 13:47:15 -06006142 break;
6143 }
6144 } while (1);
6145 finish_wait(&ctx->wait, &iowq.wq);
6146
Jackie Liue9ffa5c2019-10-29 11:16:42 +08006147 restore_saved_sigmask_unless(ret == -EINTR);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006148
Hristo Venev75b28af2019-08-26 17:23:46 +00006149 return READ_ONCE(rings->cq.head) == READ_ONCE(rings->cq.tail) ? ret : 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006150}
6151
Jens Axboe6b063142019-01-10 22:13:58 -07006152static void __io_sqe_files_unregister(struct io_ring_ctx *ctx)
6153{
6154#if defined(CONFIG_UNIX)
6155 if (ctx->ring_sock) {
6156 struct sock *sock = ctx->ring_sock->sk;
6157 struct sk_buff *skb;
6158
6159 while ((skb = skb_dequeue(&sock->sk_receive_queue)) != NULL)
6160 kfree_skb(skb);
6161 }
6162#else
6163 int i;
6164
Jens Axboe65e19f52019-10-26 07:20:21 -06006165 for (i = 0; i < ctx->nr_user_files; i++) {
6166 struct file *file;
6167
6168 file = io_file_from_index(ctx, i);
6169 if (file)
6170 fput(file);
6171 }
Jens Axboe6b063142019-01-10 22:13:58 -07006172#endif
6173}
6174
Jens Axboe05f3fb32019-12-09 11:22:50 -07006175static void io_file_ref_kill(struct percpu_ref *ref)
6176{
6177 struct fixed_file_data *data;
6178
6179 data = container_of(ref, struct fixed_file_data, refs);
6180 complete(&data->done);
6181}
6182
Jens Axboe6b063142019-01-10 22:13:58 -07006183static int io_sqe_files_unregister(struct io_ring_ctx *ctx)
6184{
Jens Axboe05f3fb32019-12-09 11:22:50 -07006185 struct fixed_file_data *data = ctx->file_data;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006186 struct fixed_file_ref_node *ref_node = NULL;
Jens Axboe65e19f52019-10-26 07:20:21 -06006187 unsigned nr_tables, i;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006188 unsigned long flags;
Jens Axboe65e19f52019-10-26 07:20:21 -06006189
Jens Axboe05f3fb32019-12-09 11:22:50 -07006190 if (!data)
Jens Axboe6b063142019-01-10 22:13:58 -07006191 return -ENXIO;
6192
Xiaoguang Wang05589552020-03-31 14:05:18 +08006193 spin_lock_irqsave(&data->lock, flags);
6194 if (!list_empty(&data->ref_list))
6195 ref_node = list_first_entry(&data->ref_list,
6196 struct fixed_file_ref_node, node);
6197 spin_unlock_irqrestore(&data->lock, flags);
6198 if (ref_node)
6199 percpu_ref_kill(&ref_node->refs);
6200
6201 percpu_ref_kill(&data->refs);
6202
6203 /* wait for all refs nodes to complete */
Jens Axboe2faf8522020-02-04 19:54:55 -07006204 wait_for_completion(&data->done);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006205
Jens Axboe6b063142019-01-10 22:13:58 -07006206 __io_sqe_files_unregister(ctx);
Jens Axboe65e19f52019-10-26 07:20:21 -06006207 nr_tables = DIV_ROUND_UP(ctx->nr_user_files, IORING_MAX_FILES_TABLE);
6208 for (i = 0; i < nr_tables; i++)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006209 kfree(data->table[i].files);
6210 kfree(data->table);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006211 percpu_ref_exit(&data->refs);
6212 kfree(data);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006213 ctx->file_data = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07006214 ctx->nr_user_files = 0;
6215 return 0;
6216}
6217
Jens Axboe6c271ce2019-01-10 11:22:30 -07006218static void io_sq_thread_stop(struct io_ring_ctx *ctx)
6219{
6220 if (ctx->sqo_thread) {
Jens Axboe206aefd2019-11-07 18:27:42 -07006221 wait_for_completion(&ctx->completions[1]);
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02006222 /*
6223 * The park is a bit of a work-around, without it we get
6224 * warning spews on shutdown with SQPOLL set and affinity
6225 * set to a single CPU.
6226 */
Jens Axboe06058632019-04-13 09:26:03 -06006227 kthread_park(ctx->sqo_thread);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006228 kthread_stop(ctx->sqo_thread);
6229 ctx->sqo_thread = NULL;
6230 }
6231}
6232
Jens Axboe6b063142019-01-10 22:13:58 -07006233static void io_finish_async(struct io_ring_ctx *ctx)
6234{
Jens Axboe6c271ce2019-01-10 11:22:30 -07006235 io_sq_thread_stop(ctx);
6236
Jens Axboe561fb042019-10-24 07:25:42 -06006237 if (ctx->io_wq) {
6238 io_wq_destroy(ctx->io_wq);
6239 ctx->io_wq = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07006240 }
6241}
6242
6243#if defined(CONFIG_UNIX)
Jens Axboe6b063142019-01-10 22:13:58 -07006244/*
6245 * Ensure the UNIX gc is aware of our file set, so we are certain that
6246 * the io_uring can be safely unregistered on process exit, even if we have
6247 * loops in the file referencing.
6248 */
6249static int __io_sqe_files_scm(struct io_ring_ctx *ctx, int nr, int offset)
6250{
6251 struct sock *sk = ctx->ring_sock->sk;
6252 struct scm_fp_list *fpl;
6253 struct sk_buff *skb;
Jens Axboe08a45172019-10-03 08:11:03 -06006254 int i, nr_files;
Jens Axboe6b063142019-01-10 22:13:58 -07006255
Jens Axboe6b063142019-01-10 22:13:58 -07006256 fpl = kzalloc(sizeof(*fpl), GFP_KERNEL);
6257 if (!fpl)
6258 return -ENOMEM;
6259
6260 skb = alloc_skb(0, GFP_KERNEL);
6261 if (!skb) {
6262 kfree(fpl);
6263 return -ENOMEM;
6264 }
6265
6266 skb->sk = sk;
Jens Axboe6b063142019-01-10 22:13:58 -07006267
Jens Axboe08a45172019-10-03 08:11:03 -06006268 nr_files = 0;
Jens Axboe6b063142019-01-10 22:13:58 -07006269 fpl->user = get_uid(ctx->user);
6270 for (i = 0; i < nr; i++) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006271 struct file *file = io_file_from_index(ctx, i + offset);
6272
6273 if (!file)
Jens Axboe08a45172019-10-03 08:11:03 -06006274 continue;
Jens Axboe65e19f52019-10-26 07:20:21 -06006275 fpl->fp[nr_files] = get_file(file);
Jens Axboe08a45172019-10-03 08:11:03 -06006276 unix_inflight(fpl->user, fpl->fp[nr_files]);
6277 nr_files++;
Jens Axboe6b063142019-01-10 22:13:58 -07006278 }
6279
Jens Axboe08a45172019-10-03 08:11:03 -06006280 if (nr_files) {
6281 fpl->max = SCM_MAX_FD;
6282 fpl->count = nr_files;
6283 UNIXCB(skb).fp = fpl;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006284 skb->destructor = unix_destruct_scm;
Jens Axboe08a45172019-10-03 08:11:03 -06006285 refcount_add(skb->truesize, &sk->sk_wmem_alloc);
6286 skb_queue_head(&sk->sk_receive_queue, skb);
Jens Axboe6b063142019-01-10 22:13:58 -07006287
Jens Axboe08a45172019-10-03 08:11:03 -06006288 for (i = 0; i < nr_files; i++)
6289 fput(fpl->fp[i]);
6290 } else {
6291 kfree_skb(skb);
6292 kfree(fpl);
6293 }
Jens Axboe6b063142019-01-10 22:13:58 -07006294
6295 return 0;
6296}
6297
6298/*
6299 * If UNIX sockets are enabled, fd passing can cause a reference cycle which
6300 * causes regular reference counting to break down. We rely on the UNIX
6301 * garbage collection to take care of this problem for us.
6302 */
6303static int io_sqe_files_scm(struct io_ring_ctx *ctx)
6304{
6305 unsigned left, total;
6306 int ret = 0;
6307
6308 total = 0;
6309 left = ctx->nr_user_files;
6310 while (left) {
6311 unsigned this_files = min_t(unsigned, left, SCM_MAX_FD);
Jens Axboe6b063142019-01-10 22:13:58 -07006312
6313 ret = __io_sqe_files_scm(ctx, this_files, total);
6314 if (ret)
6315 break;
6316 left -= this_files;
6317 total += this_files;
6318 }
6319
6320 if (!ret)
6321 return 0;
6322
6323 while (total < ctx->nr_user_files) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006324 struct file *file = io_file_from_index(ctx, total);
6325
6326 if (file)
6327 fput(file);
Jens Axboe6b063142019-01-10 22:13:58 -07006328 total++;
6329 }
6330
6331 return ret;
6332}
6333#else
6334static int io_sqe_files_scm(struct io_ring_ctx *ctx)
6335{
6336 return 0;
6337}
6338#endif
6339
Jens Axboe65e19f52019-10-26 07:20:21 -06006340static int io_sqe_alloc_file_tables(struct io_ring_ctx *ctx, unsigned nr_tables,
6341 unsigned nr_files)
6342{
6343 int i;
6344
6345 for (i = 0; i < nr_tables; i++) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006346 struct fixed_file_table *table = &ctx->file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06006347 unsigned this_files;
6348
6349 this_files = min(nr_files, IORING_MAX_FILES_TABLE);
6350 table->files = kcalloc(this_files, sizeof(struct file *),
6351 GFP_KERNEL);
6352 if (!table->files)
6353 break;
6354 nr_files -= this_files;
6355 }
6356
6357 if (i == nr_tables)
6358 return 0;
6359
6360 for (i = 0; i < nr_tables; i++) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006361 struct fixed_file_table *table = &ctx->file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06006362 kfree(table->files);
6363 }
6364 return 1;
6365}
6366
Jens Axboe05f3fb32019-12-09 11:22:50 -07006367static void io_ring_file_put(struct io_ring_ctx *ctx, struct file *file)
Jens Axboec3a31e62019-10-03 13:59:56 -06006368{
6369#if defined(CONFIG_UNIX)
Jens Axboec3a31e62019-10-03 13:59:56 -06006370 struct sock *sock = ctx->ring_sock->sk;
6371 struct sk_buff_head list, *head = &sock->sk_receive_queue;
6372 struct sk_buff *skb;
6373 int i;
6374
6375 __skb_queue_head_init(&list);
6376
6377 /*
6378 * Find the skb that holds this file in its SCM_RIGHTS. When found,
6379 * remove this entry and rearrange the file array.
6380 */
6381 skb = skb_dequeue(head);
6382 while (skb) {
6383 struct scm_fp_list *fp;
6384
6385 fp = UNIXCB(skb).fp;
6386 for (i = 0; i < fp->count; i++) {
6387 int left;
6388
6389 if (fp->fp[i] != file)
6390 continue;
6391
6392 unix_notinflight(fp->user, fp->fp[i]);
6393 left = fp->count - 1 - i;
6394 if (left) {
6395 memmove(&fp->fp[i], &fp->fp[i + 1],
6396 left * sizeof(struct file *));
6397 }
6398 fp->count--;
6399 if (!fp->count) {
6400 kfree_skb(skb);
6401 skb = NULL;
6402 } else {
6403 __skb_queue_tail(&list, skb);
6404 }
6405 fput(file);
6406 file = NULL;
6407 break;
6408 }
6409
6410 if (!file)
6411 break;
6412
6413 __skb_queue_tail(&list, skb);
6414
6415 skb = skb_dequeue(head);
6416 }
6417
6418 if (skb_peek(&list)) {
6419 spin_lock_irq(&head->lock);
6420 while ((skb = __skb_dequeue(&list)) != NULL)
6421 __skb_queue_tail(head, skb);
6422 spin_unlock_irq(&head->lock);
6423 }
6424#else
Jens Axboe05f3fb32019-12-09 11:22:50 -07006425 fput(file);
Jens Axboec3a31e62019-10-03 13:59:56 -06006426#endif
6427}
6428
Jens Axboe05f3fb32019-12-09 11:22:50 -07006429struct io_file_put {
Xiaoguang Wang05589552020-03-31 14:05:18 +08006430 struct list_head list;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006431 struct file *file;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006432};
6433
Xiaoguang Wang05589552020-03-31 14:05:18 +08006434static void io_file_put_work(struct work_struct *work)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006435{
Xiaoguang Wang05589552020-03-31 14:05:18 +08006436 struct fixed_file_ref_node *ref_node;
6437 struct fixed_file_data *file_data;
6438 struct io_ring_ctx *ctx;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006439 struct io_file_put *pfile, *tmp;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006440 unsigned long flags;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006441
Xiaoguang Wang05589552020-03-31 14:05:18 +08006442 ref_node = container_of(work, struct fixed_file_ref_node, work);
6443 file_data = ref_node->file_data;
6444 ctx = file_data->ctx;
6445
6446 list_for_each_entry_safe(pfile, tmp, &ref_node->file_list, list) {
6447 list_del_init(&pfile->list);
6448 io_ring_file_put(ctx, pfile->file);
6449 kfree(pfile);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006450 }
6451
Xiaoguang Wang05589552020-03-31 14:05:18 +08006452 spin_lock_irqsave(&file_data->lock, flags);
6453 list_del_init(&ref_node->node);
6454 spin_unlock_irqrestore(&file_data->lock, flags);
Jens Axboe2faf8522020-02-04 19:54:55 -07006455
Xiaoguang Wang05589552020-03-31 14:05:18 +08006456 percpu_ref_exit(&ref_node->refs);
6457 kfree(ref_node);
6458 percpu_ref_put(&file_data->refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006459}
6460
6461static void io_file_data_ref_zero(struct percpu_ref *ref)
6462{
Xiaoguang Wang05589552020-03-31 14:05:18 +08006463 struct fixed_file_ref_node *ref_node;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006464
Xiaoguang Wang05589552020-03-31 14:05:18 +08006465 ref_node = container_of(ref, struct fixed_file_ref_node, refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006466
Xiaoguang Wang05589552020-03-31 14:05:18 +08006467 queue_work(system_wq, &ref_node->work);
6468}
6469
6470static struct fixed_file_ref_node *alloc_fixed_file_ref_node(
6471 struct io_ring_ctx *ctx)
6472{
6473 struct fixed_file_ref_node *ref_node;
6474
6475 ref_node = kzalloc(sizeof(*ref_node), GFP_KERNEL);
6476 if (!ref_node)
6477 return ERR_PTR(-ENOMEM);
6478
6479 if (percpu_ref_init(&ref_node->refs, io_file_data_ref_zero,
6480 0, GFP_KERNEL)) {
6481 kfree(ref_node);
6482 return ERR_PTR(-ENOMEM);
6483 }
6484 INIT_LIST_HEAD(&ref_node->node);
6485 INIT_LIST_HEAD(&ref_node->file_list);
6486 INIT_WORK(&ref_node->work, io_file_put_work);
6487 ref_node->file_data = ctx->file_data;
6488 return ref_node;
6489
6490}
6491
6492static void destroy_fixed_file_ref_node(struct fixed_file_ref_node *ref_node)
6493{
6494 percpu_ref_exit(&ref_node->refs);
6495 kfree(ref_node);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006496}
6497
6498static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
6499 unsigned nr_args)
6500{
6501 __s32 __user *fds = (__s32 __user *) arg;
6502 unsigned nr_tables;
6503 struct file *file;
6504 int fd, ret = 0;
6505 unsigned i;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006506 struct fixed_file_ref_node *ref_node;
6507 unsigned long flags;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006508
6509 if (ctx->file_data)
6510 return -EBUSY;
6511 if (!nr_args)
6512 return -EINVAL;
6513 if (nr_args > IORING_MAX_FIXED_FILES)
6514 return -EMFILE;
6515
6516 ctx->file_data = kzalloc(sizeof(*ctx->file_data), GFP_KERNEL);
6517 if (!ctx->file_data)
6518 return -ENOMEM;
6519 ctx->file_data->ctx = ctx;
6520 init_completion(&ctx->file_data->done);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006521 INIT_LIST_HEAD(&ctx->file_data->ref_list);
Xiaoguang Wangf7fe9342020-04-07 20:02:31 +08006522 spin_lock_init(&ctx->file_data->lock);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006523
6524 nr_tables = DIV_ROUND_UP(nr_args, IORING_MAX_FILES_TABLE);
6525 ctx->file_data->table = kcalloc(nr_tables,
6526 sizeof(struct fixed_file_table),
6527 GFP_KERNEL);
6528 if (!ctx->file_data->table) {
6529 kfree(ctx->file_data);
6530 ctx->file_data = NULL;
6531 return -ENOMEM;
6532 }
6533
Xiaoguang Wang05589552020-03-31 14:05:18 +08006534 if (percpu_ref_init(&ctx->file_data->refs, io_file_ref_kill,
Jens Axboe05f3fb32019-12-09 11:22:50 -07006535 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL)) {
6536 kfree(ctx->file_data->table);
6537 kfree(ctx->file_data);
6538 ctx->file_data = NULL;
6539 return -ENOMEM;
6540 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07006541
6542 if (io_sqe_alloc_file_tables(ctx, nr_tables, nr_args)) {
6543 percpu_ref_exit(&ctx->file_data->refs);
6544 kfree(ctx->file_data->table);
6545 kfree(ctx->file_data);
6546 ctx->file_data = NULL;
6547 return -ENOMEM;
6548 }
6549
6550 for (i = 0; i < nr_args; i++, ctx->nr_user_files++) {
6551 struct fixed_file_table *table;
6552 unsigned index;
6553
6554 ret = -EFAULT;
6555 if (copy_from_user(&fd, &fds[i], sizeof(fd)))
6556 break;
6557 /* allow sparse sets */
6558 if (fd == -1) {
6559 ret = 0;
6560 continue;
6561 }
6562
6563 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
6564 index = i & IORING_FILE_TABLE_MASK;
6565 file = fget(fd);
6566
6567 ret = -EBADF;
6568 if (!file)
6569 break;
6570
6571 /*
6572 * Don't allow io_uring instances to be registered. If UNIX
6573 * isn't enabled, then this causes a reference cycle and this
6574 * instance can never get freed. If UNIX is enabled we'll
6575 * handle it just fine, but there's still no point in allowing
6576 * a ring fd as it doesn't support regular read/write anyway.
6577 */
6578 if (file->f_op == &io_uring_fops) {
6579 fput(file);
6580 break;
6581 }
6582 ret = 0;
6583 table->files[index] = file;
6584 }
6585
6586 if (ret) {
6587 for (i = 0; i < ctx->nr_user_files; i++) {
6588 file = io_file_from_index(ctx, i);
6589 if (file)
6590 fput(file);
6591 }
6592 for (i = 0; i < nr_tables; i++)
6593 kfree(ctx->file_data->table[i].files);
6594
6595 kfree(ctx->file_data->table);
6596 kfree(ctx->file_data);
6597 ctx->file_data = NULL;
6598 ctx->nr_user_files = 0;
6599 return ret;
6600 }
6601
6602 ret = io_sqe_files_scm(ctx);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006603 if (ret) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006604 io_sqe_files_unregister(ctx);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006605 return ret;
6606 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07006607
Xiaoguang Wang05589552020-03-31 14:05:18 +08006608 ref_node = alloc_fixed_file_ref_node(ctx);
6609 if (IS_ERR(ref_node)) {
6610 io_sqe_files_unregister(ctx);
6611 return PTR_ERR(ref_node);
6612 }
6613
6614 ctx->file_data->cur_refs = &ref_node->refs;
6615 spin_lock_irqsave(&ctx->file_data->lock, flags);
6616 list_add(&ref_node->node, &ctx->file_data->ref_list);
6617 spin_unlock_irqrestore(&ctx->file_data->lock, flags);
6618 percpu_ref_get(&ctx->file_data->refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006619 return ret;
6620}
6621
Jens Axboec3a31e62019-10-03 13:59:56 -06006622static int io_sqe_file_register(struct io_ring_ctx *ctx, struct file *file,
6623 int index)
6624{
6625#if defined(CONFIG_UNIX)
6626 struct sock *sock = ctx->ring_sock->sk;
6627 struct sk_buff_head *head = &sock->sk_receive_queue;
6628 struct sk_buff *skb;
6629
6630 /*
6631 * See if we can merge this file into an existing skb SCM_RIGHTS
6632 * file set. If there's no room, fall back to allocating a new skb
6633 * and filling it in.
6634 */
6635 spin_lock_irq(&head->lock);
6636 skb = skb_peek(head);
6637 if (skb) {
6638 struct scm_fp_list *fpl = UNIXCB(skb).fp;
6639
6640 if (fpl->count < SCM_MAX_FD) {
6641 __skb_unlink(skb, head);
6642 spin_unlock_irq(&head->lock);
6643 fpl->fp[fpl->count] = get_file(file);
6644 unix_inflight(fpl->user, fpl->fp[fpl->count]);
6645 fpl->count++;
6646 spin_lock_irq(&head->lock);
6647 __skb_queue_head(head, skb);
6648 } else {
6649 skb = NULL;
6650 }
6651 }
6652 spin_unlock_irq(&head->lock);
6653
6654 if (skb) {
6655 fput(file);
6656 return 0;
6657 }
6658
6659 return __io_sqe_files_scm(ctx, 1, index);
6660#else
6661 return 0;
6662#endif
6663}
6664
Hillf Dantona5318d32020-03-23 17:47:15 +08006665static int io_queue_file_removal(struct fixed_file_data *data,
Xiaoguang Wang05589552020-03-31 14:05:18 +08006666 struct file *file)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006667{
Hillf Dantona5318d32020-03-23 17:47:15 +08006668 struct io_file_put *pfile;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006669 struct percpu_ref *refs = data->cur_refs;
6670 struct fixed_file_ref_node *ref_node;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006671
Jens Axboe05f3fb32019-12-09 11:22:50 -07006672 pfile = kzalloc(sizeof(*pfile), GFP_KERNEL);
Hillf Dantona5318d32020-03-23 17:47:15 +08006673 if (!pfile)
6674 return -ENOMEM;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006675
Xiaoguang Wang05589552020-03-31 14:05:18 +08006676 ref_node = container_of(refs, struct fixed_file_ref_node, refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006677 pfile->file = file;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006678 list_add(&pfile->list, &ref_node->file_list);
6679
Hillf Dantona5318d32020-03-23 17:47:15 +08006680 return 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006681}
6682
6683static int __io_sqe_files_update(struct io_ring_ctx *ctx,
6684 struct io_uring_files_update *up,
6685 unsigned nr_args)
6686{
6687 struct fixed_file_data *data = ctx->file_data;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006688 struct fixed_file_ref_node *ref_node;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006689 struct file *file;
Jens Axboec3a31e62019-10-03 13:59:56 -06006690 __s32 __user *fds;
6691 int fd, i, err;
6692 __u32 done;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006693 unsigned long flags;
6694 bool needs_switch = false;
Jens Axboec3a31e62019-10-03 13:59:56 -06006695
Jens Axboe05f3fb32019-12-09 11:22:50 -07006696 if (check_add_overflow(up->offset, nr_args, &done))
Jens Axboec3a31e62019-10-03 13:59:56 -06006697 return -EOVERFLOW;
6698 if (done > ctx->nr_user_files)
6699 return -EINVAL;
6700
Xiaoguang Wang05589552020-03-31 14:05:18 +08006701 ref_node = alloc_fixed_file_ref_node(ctx);
6702 if (IS_ERR(ref_node))
6703 return PTR_ERR(ref_node);
6704
Jens Axboec3a31e62019-10-03 13:59:56 -06006705 done = 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006706 fds = u64_to_user_ptr(up->fds);
Jens Axboec3a31e62019-10-03 13:59:56 -06006707 while (nr_args) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006708 struct fixed_file_table *table;
6709 unsigned index;
6710
Jens Axboec3a31e62019-10-03 13:59:56 -06006711 err = 0;
6712 if (copy_from_user(&fd, &fds[done], sizeof(fd))) {
6713 err = -EFAULT;
6714 break;
6715 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07006716 i = array_index_nospec(up->offset, ctx->nr_user_files);
6717 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
Jens Axboe65e19f52019-10-26 07:20:21 -06006718 index = i & IORING_FILE_TABLE_MASK;
6719 if (table->files[index]) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006720 file = io_file_from_index(ctx, index);
Hillf Dantona5318d32020-03-23 17:47:15 +08006721 err = io_queue_file_removal(data, file);
6722 if (err)
6723 break;
Jens Axboe65e19f52019-10-26 07:20:21 -06006724 table->files[index] = NULL;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006725 needs_switch = true;
Jens Axboec3a31e62019-10-03 13:59:56 -06006726 }
6727 if (fd != -1) {
Jens Axboec3a31e62019-10-03 13:59:56 -06006728 file = fget(fd);
6729 if (!file) {
6730 err = -EBADF;
6731 break;
6732 }
6733 /*
6734 * Don't allow io_uring instances to be registered. If
6735 * UNIX isn't enabled, then this causes a reference
6736 * cycle and this instance can never get freed. If UNIX
6737 * is enabled we'll handle it just fine, but there's
6738 * still no point in allowing a ring fd as it doesn't
6739 * support regular read/write anyway.
6740 */
6741 if (file->f_op == &io_uring_fops) {
6742 fput(file);
6743 err = -EBADF;
6744 break;
6745 }
Jens Axboe65e19f52019-10-26 07:20:21 -06006746 table->files[index] = file;
Jens Axboec3a31e62019-10-03 13:59:56 -06006747 err = io_sqe_file_register(ctx, file, i);
6748 if (err)
6749 break;
6750 }
6751 nr_args--;
6752 done++;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006753 up->offset++;
6754 }
6755
Xiaoguang Wang05589552020-03-31 14:05:18 +08006756 if (needs_switch) {
6757 percpu_ref_kill(data->cur_refs);
6758 spin_lock_irqsave(&data->lock, flags);
6759 list_add(&ref_node->node, &data->ref_list);
6760 data->cur_refs = &ref_node->refs;
6761 spin_unlock_irqrestore(&data->lock, flags);
6762 percpu_ref_get(&ctx->file_data->refs);
6763 } else
6764 destroy_fixed_file_ref_node(ref_node);
Jens Axboec3a31e62019-10-03 13:59:56 -06006765
6766 return done ? done : err;
6767}
Xiaoguang Wang05589552020-03-31 14:05:18 +08006768
Jens Axboe05f3fb32019-12-09 11:22:50 -07006769static int io_sqe_files_update(struct io_ring_ctx *ctx, void __user *arg,
6770 unsigned nr_args)
6771{
6772 struct io_uring_files_update up;
6773
6774 if (!ctx->file_data)
6775 return -ENXIO;
6776 if (!nr_args)
6777 return -EINVAL;
6778 if (copy_from_user(&up, arg, sizeof(up)))
6779 return -EFAULT;
6780 if (up.resv)
6781 return -EINVAL;
6782
6783 return __io_sqe_files_update(ctx, &up, nr_args);
6784}
Jens Axboec3a31e62019-10-03 13:59:56 -06006785
Pavel Begunkove9fd9392020-03-04 16:14:12 +03006786static void io_free_work(struct io_wq_work *work)
Jens Axboe7d723062019-11-12 22:31:31 -07006787{
6788 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
6789
Pavel Begunkove9fd9392020-03-04 16:14:12 +03006790 /* Consider that io_steal_work() relies on this ref */
Jens Axboe7d723062019-11-12 22:31:31 -07006791 io_put_req(req);
6792}
6793
Pavel Begunkov24369c22020-01-28 03:15:48 +03006794static int io_init_wq_offload(struct io_ring_ctx *ctx,
6795 struct io_uring_params *p)
6796{
6797 struct io_wq_data data;
6798 struct fd f;
6799 struct io_ring_ctx *ctx_attach;
6800 unsigned int concurrency;
6801 int ret = 0;
6802
6803 data.user = ctx->user;
Pavel Begunkove9fd9392020-03-04 16:14:12 +03006804 data.free_work = io_free_work;
Pavel Begunkov24369c22020-01-28 03:15:48 +03006805
6806 if (!(p->flags & IORING_SETUP_ATTACH_WQ)) {
6807 /* Do QD, or 4 * CPUS, whatever is smallest */
6808 concurrency = min(ctx->sq_entries, 4 * num_online_cpus());
6809
6810 ctx->io_wq = io_wq_create(concurrency, &data);
6811 if (IS_ERR(ctx->io_wq)) {
6812 ret = PTR_ERR(ctx->io_wq);
6813 ctx->io_wq = NULL;
6814 }
6815 return ret;
6816 }
6817
6818 f = fdget(p->wq_fd);
6819 if (!f.file)
6820 return -EBADF;
6821
6822 if (f.file->f_op != &io_uring_fops) {
6823 ret = -EINVAL;
6824 goto out_fput;
6825 }
6826
6827 ctx_attach = f.file->private_data;
6828 /* @io_wq is protected by holding the fd */
6829 if (!io_wq_get(ctx_attach->io_wq, &data)) {
6830 ret = -EINVAL;
6831 goto out_fput;
6832 }
6833
6834 ctx->io_wq = ctx_attach->io_wq;
6835out_fput:
6836 fdput(f);
6837 return ret;
6838}
6839
Jens Axboe6c271ce2019-01-10 11:22:30 -07006840static int io_sq_offload_start(struct io_ring_ctx *ctx,
6841 struct io_uring_params *p)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006842{
6843 int ret;
6844
6845 mmgrab(current->mm);
6846 ctx->sqo_mm = current->mm;
6847
Jens Axboe6c271ce2019-01-10 11:22:30 -07006848 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboe3ec482d2019-04-08 10:51:01 -06006849 ret = -EPERM;
6850 if (!capable(CAP_SYS_ADMIN))
6851 goto err;
6852
Jens Axboe917257d2019-04-13 09:28:55 -06006853 ctx->sq_thread_idle = msecs_to_jiffies(p->sq_thread_idle);
6854 if (!ctx->sq_thread_idle)
6855 ctx->sq_thread_idle = HZ;
6856
Jens Axboe6c271ce2019-01-10 11:22:30 -07006857 if (p->flags & IORING_SETUP_SQ_AFF) {
Jens Axboe44a9bd12019-05-14 20:00:30 -06006858 int cpu = p->sq_thread_cpu;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006859
Jens Axboe917257d2019-04-13 09:28:55 -06006860 ret = -EINVAL;
Jens Axboe44a9bd12019-05-14 20:00:30 -06006861 if (cpu >= nr_cpu_ids)
6862 goto err;
Shenghui Wang7889f442019-05-07 16:03:19 +08006863 if (!cpu_online(cpu))
Jens Axboe917257d2019-04-13 09:28:55 -06006864 goto err;
6865
Jens Axboe6c271ce2019-01-10 11:22:30 -07006866 ctx->sqo_thread = kthread_create_on_cpu(io_sq_thread,
6867 ctx, cpu,
6868 "io_uring-sq");
6869 } else {
6870 ctx->sqo_thread = kthread_create(io_sq_thread, ctx,
6871 "io_uring-sq");
6872 }
6873 if (IS_ERR(ctx->sqo_thread)) {
6874 ret = PTR_ERR(ctx->sqo_thread);
6875 ctx->sqo_thread = NULL;
6876 goto err;
6877 }
6878 wake_up_process(ctx->sqo_thread);
6879 } else if (p->flags & IORING_SETUP_SQ_AFF) {
6880 /* Can't have SQ_AFF without SQPOLL */
6881 ret = -EINVAL;
6882 goto err;
6883 }
6884
Pavel Begunkov24369c22020-01-28 03:15:48 +03006885 ret = io_init_wq_offload(ctx, p);
6886 if (ret)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006887 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006888
6889 return 0;
6890err:
Jens Axboe54a91f32019-09-10 09:15:04 -06006891 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006892 mmdrop(ctx->sqo_mm);
6893 ctx->sqo_mm = NULL;
6894 return ret;
6895}
6896
6897static void io_unaccount_mem(struct user_struct *user, unsigned long nr_pages)
6898{
6899 atomic_long_sub(nr_pages, &user->locked_vm);
6900}
6901
6902static int io_account_mem(struct user_struct *user, unsigned long nr_pages)
6903{
6904 unsigned long page_limit, cur_pages, new_pages;
6905
6906 /* Don't allow more pages than we can safely lock */
6907 page_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
6908
6909 do {
6910 cur_pages = atomic_long_read(&user->locked_vm);
6911 new_pages = cur_pages + nr_pages;
6912 if (new_pages > page_limit)
6913 return -ENOMEM;
6914 } while (atomic_long_cmpxchg(&user->locked_vm, cur_pages,
6915 new_pages) != cur_pages);
6916
6917 return 0;
6918}
6919
6920static void io_mem_free(void *ptr)
6921{
Mark Rutland52e04ef2019-04-30 17:30:21 +01006922 struct page *page;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006923
Mark Rutland52e04ef2019-04-30 17:30:21 +01006924 if (!ptr)
6925 return;
6926
6927 page = virt_to_head_page(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006928 if (put_page_testzero(page))
6929 free_compound_page(page);
6930}
6931
6932static void *io_mem_alloc(size_t size)
6933{
6934 gfp_t gfp_flags = GFP_KERNEL | __GFP_ZERO | __GFP_NOWARN | __GFP_COMP |
6935 __GFP_NORETRY;
6936
6937 return (void *) __get_free_pages(gfp_flags, get_order(size));
6938}
6939
Hristo Venev75b28af2019-08-26 17:23:46 +00006940static unsigned long rings_size(unsigned sq_entries, unsigned cq_entries,
6941 size_t *sq_offset)
6942{
6943 struct io_rings *rings;
6944 size_t off, sq_array_size;
6945
6946 off = struct_size(rings, cqes, cq_entries);
6947 if (off == SIZE_MAX)
6948 return SIZE_MAX;
6949
6950#ifdef CONFIG_SMP
6951 off = ALIGN(off, SMP_CACHE_BYTES);
6952 if (off == 0)
6953 return SIZE_MAX;
6954#endif
6955
6956 sq_array_size = array_size(sizeof(u32), sq_entries);
6957 if (sq_array_size == SIZE_MAX)
6958 return SIZE_MAX;
6959
6960 if (check_add_overflow(off, sq_array_size, &off))
6961 return SIZE_MAX;
6962
6963 if (sq_offset)
6964 *sq_offset = off;
6965
6966 return off;
6967}
6968
Jens Axboe2b188cc2019-01-07 10:46:33 -07006969static unsigned long ring_pages(unsigned sq_entries, unsigned cq_entries)
6970{
Hristo Venev75b28af2019-08-26 17:23:46 +00006971 size_t pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006972
Hristo Venev75b28af2019-08-26 17:23:46 +00006973 pages = (size_t)1 << get_order(
6974 rings_size(sq_entries, cq_entries, NULL));
6975 pages += (size_t)1 << get_order(
6976 array_size(sizeof(struct io_uring_sqe), sq_entries));
Jens Axboe2b188cc2019-01-07 10:46:33 -07006977
Hristo Venev75b28af2019-08-26 17:23:46 +00006978 return pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006979}
6980
Jens Axboeedafcce2019-01-09 09:16:05 -07006981static int io_sqe_buffer_unregister(struct io_ring_ctx *ctx)
6982{
6983 int i, j;
6984
6985 if (!ctx->user_bufs)
6986 return -ENXIO;
6987
6988 for (i = 0; i < ctx->nr_user_bufs; i++) {
6989 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
6990
6991 for (j = 0; j < imu->nr_bvecs; j++)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08006992 unpin_user_page(imu->bvec[j].bv_page);
Jens Axboeedafcce2019-01-09 09:16:05 -07006993
6994 if (ctx->account_mem)
6995 io_unaccount_mem(ctx->user, imu->nr_bvecs);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006996 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07006997 imu->nr_bvecs = 0;
6998 }
6999
7000 kfree(ctx->user_bufs);
7001 ctx->user_bufs = NULL;
7002 ctx->nr_user_bufs = 0;
7003 return 0;
7004}
7005
7006static int io_copy_iov(struct io_ring_ctx *ctx, struct iovec *dst,
7007 void __user *arg, unsigned index)
7008{
7009 struct iovec __user *src;
7010
7011#ifdef CONFIG_COMPAT
7012 if (ctx->compat) {
7013 struct compat_iovec __user *ciovs;
7014 struct compat_iovec ciov;
7015
7016 ciovs = (struct compat_iovec __user *) arg;
7017 if (copy_from_user(&ciov, &ciovs[index], sizeof(ciov)))
7018 return -EFAULT;
7019
Jens Axboed55e5f52019-12-11 16:12:15 -07007020 dst->iov_base = u64_to_user_ptr((u64)ciov.iov_base);
Jens Axboeedafcce2019-01-09 09:16:05 -07007021 dst->iov_len = ciov.iov_len;
7022 return 0;
7023 }
7024#endif
7025 src = (struct iovec __user *) arg;
7026 if (copy_from_user(dst, &src[index], sizeof(*dst)))
7027 return -EFAULT;
7028 return 0;
7029}
7030
7031static int io_sqe_buffer_register(struct io_ring_ctx *ctx, void __user *arg,
7032 unsigned nr_args)
7033{
7034 struct vm_area_struct **vmas = NULL;
7035 struct page **pages = NULL;
7036 int i, j, got_pages = 0;
7037 int ret = -EINVAL;
7038
7039 if (ctx->user_bufs)
7040 return -EBUSY;
7041 if (!nr_args || nr_args > UIO_MAXIOV)
7042 return -EINVAL;
7043
7044 ctx->user_bufs = kcalloc(nr_args, sizeof(struct io_mapped_ubuf),
7045 GFP_KERNEL);
7046 if (!ctx->user_bufs)
7047 return -ENOMEM;
7048
7049 for (i = 0; i < nr_args; i++) {
7050 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
7051 unsigned long off, start, end, ubuf;
7052 int pret, nr_pages;
7053 struct iovec iov;
7054 size_t size;
7055
7056 ret = io_copy_iov(ctx, &iov, arg, i);
7057 if (ret)
Pavel Begunkova2786822019-05-26 12:35:47 +03007058 goto err;
Jens Axboeedafcce2019-01-09 09:16:05 -07007059
7060 /*
7061 * Don't impose further limits on the size and buffer
7062 * constraints here, we'll -EINVAL later when IO is
7063 * submitted if they are wrong.
7064 */
7065 ret = -EFAULT;
7066 if (!iov.iov_base || !iov.iov_len)
7067 goto err;
7068
7069 /* arbitrary limit, but we need something */
7070 if (iov.iov_len > SZ_1G)
7071 goto err;
7072
7073 ubuf = (unsigned long) iov.iov_base;
7074 end = (ubuf + iov.iov_len + PAGE_SIZE - 1) >> PAGE_SHIFT;
7075 start = ubuf >> PAGE_SHIFT;
7076 nr_pages = end - start;
7077
7078 if (ctx->account_mem) {
7079 ret = io_account_mem(ctx->user, nr_pages);
7080 if (ret)
7081 goto err;
7082 }
7083
7084 ret = 0;
7085 if (!pages || nr_pages > got_pages) {
7086 kfree(vmas);
7087 kfree(pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007088 pages = kvmalloc_array(nr_pages, sizeof(struct page *),
Jens Axboeedafcce2019-01-09 09:16:05 -07007089 GFP_KERNEL);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007090 vmas = kvmalloc_array(nr_pages,
Jens Axboeedafcce2019-01-09 09:16:05 -07007091 sizeof(struct vm_area_struct *),
7092 GFP_KERNEL);
7093 if (!pages || !vmas) {
7094 ret = -ENOMEM;
7095 if (ctx->account_mem)
7096 io_unaccount_mem(ctx->user, nr_pages);
7097 goto err;
7098 }
7099 got_pages = nr_pages;
7100 }
7101
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007102 imu->bvec = kvmalloc_array(nr_pages, sizeof(struct bio_vec),
Jens Axboeedafcce2019-01-09 09:16:05 -07007103 GFP_KERNEL);
7104 ret = -ENOMEM;
7105 if (!imu->bvec) {
7106 if (ctx->account_mem)
7107 io_unaccount_mem(ctx->user, nr_pages);
7108 goto err;
7109 }
7110
7111 ret = 0;
7112 down_read(&current->mm->mmap_sem);
John Hubbard2113b052020-01-30 22:13:13 -08007113 pret = pin_user_pages(ubuf, nr_pages,
Ira Weiny932f4a62019-05-13 17:17:03 -07007114 FOLL_WRITE | FOLL_LONGTERM,
7115 pages, vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007116 if (pret == nr_pages) {
7117 /* don't support file backed memory */
7118 for (j = 0; j < nr_pages; j++) {
7119 struct vm_area_struct *vma = vmas[j];
7120
7121 if (vma->vm_file &&
7122 !is_file_hugepages(vma->vm_file)) {
7123 ret = -EOPNOTSUPP;
7124 break;
7125 }
7126 }
7127 } else {
7128 ret = pret < 0 ? pret : -EFAULT;
7129 }
7130 up_read(&current->mm->mmap_sem);
7131 if (ret) {
7132 /*
7133 * if we did partial map, or found file backed vmas,
7134 * release any pages we did get
7135 */
John Hubbard27c4d3a2019-08-04 19:32:06 -07007136 if (pret > 0)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08007137 unpin_user_pages(pages, pret);
Jens Axboeedafcce2019-01-09 09:16:05 -07007138 if (ctx->account_mem)
7139 io_unaccount_mem(ctx->user, nr_pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007140 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07007141 goto err;
7142 }
7143
7144 off = ubuf & ~PAGE_MASK;
7145 size = iov.iov_len;
7146 for (j = 0; j < nr_pages; j++) {
7147 size_t vec_len;
7148
7149 vec_len = min_t(size_t, size, PAGE_SIZE - off);
7150 imu->bvec[j].bv_page = pages[j];
7151 imu->bvec[j].bv_len = vec_len;
7152 imu->bvec[j].bv_offset = off;
7153 off = 0;
7154 size -= vec_len;
7155 }
7156 /* store original address for later verification */
7157 imu->ubuf = ubuf;
7158 imu->len = iov.iov_len;
7159 imu->nr_bvecs = nr_pages;
7160
7161 ctx->nr_user_bufs++;
7162 }
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007163 kvfree(pages);
7164 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007165 return 0;
7166err:
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007167 kvfree(pages);
7168 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007169 io_sqe_buffer_unregister(ctx);
7170 return ret;
7171}
7172
Jens Axboe9b402842019-04-11 11:45:41 -06007173static int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg)
7174{
7175 __s32 __user *fds = arg;
7176 int fd;
7177
7178 if (ctx->cq_ev_fd)
7179 return -EBUSY;
7180
7181 if (copy_from_user(&fd, fds, sizeof(*fds)))
7182 return -EFAULT;
7183
7184 ctx->cq_ev_fd = eventfd_ctx_fdget(fd);
7185 if (IS_ERR(ctx->cq_ev_fd)) {
7186 int ret = PTR_ERR(ctx->cq_ev_fd);
7187 ctx->cq_ev_fd = NULL;
7188 return ret;
7189 }
7190
7191 return 0;
7192}
7193
7194static int io_eventfd_unregister(struct io_ring_ctx *ctx)
7195{
7196 if (ctx->cq_ev_fd) {
7197 eventfd_ctx_put(ctx->cq_ev_fd);
7198 ctx->cq_ev_fd = NULL;
7199 return 0;
7200 }
7201
7202 return -ENXIO;
7203}
7204
Jens Axboe5a2e7452020-02-23 16:23:11 -07007205static int __io_destroy_buffers(int id, void *p, void *data)
7206{
7207 struct io_ring_ctx *ctx = data;
7208 struct io_buffer *buf = p;
7209
Jens Axboe067524e2020-03-02 16:32:28 -07007210 __io_remove_buffers(ctx, buf, id, -1U);
Jens Axboe5a2e7452020-02-23 16:23:11 -07007211 return 0;
7212}
7213
7214static void io_destroy_buffers(struct io_ring_ctx *ctx)
7215{
7216 idr_for_each(&ctx->io_buffer_idr, __io_destroy_buffers, ctx);
7217 idr_destroy(&ctx->io_buffer_idr);
7218}
7219
Jens Axboe2b188cc2019-01-07 10:46:33 -07007220static void io_ring_ctx_free(struct io_ring_ctx *ctx)
7221{
Jens Axboe6b063142019-01-10 22:13:58 -07007222 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007223 if (ctx->sqo_mm)
7224 mmdrop(ctx->sqo_mm);
Jens Axboedef596e2019-01-09 08:59:42 -07007225
7226 io_iopoll_reap_events(ctx);
Jens Axboeedafcce2019-01-09 09:16:05 -07007227 io_sqe_buffer_unregister(ctx);
Jens Axboe6b063142019-01-10 22:13:58 -07007228 io_sqe_files_unregister(ctx);
Jens Axboe9b402842019-04-11 11:45:41 -06007229 io_eventfd_unregister(ctx);
Jens Axboe5a2e7452020-02-23 16:23:11 -07007230 io_destroy_buffers(ctx);
Jens Axboe41726c92020-02-23 13:11:42 -07007231 idr_destroy(&ctx->personality_idr);
Jens Axboedef596e2019-01-09 08:59:42 -07007232
Jens Axboe2b188cc2019-01-07 10:46:33 -07007233#if defined(CONFIG_UNIX)
Eric Biggers355e8d22019-06-12 14:58:43 -07007234 if (ctx->ring_sock) {
7235 ctx->ring_sock->file = NULL; /* so that iput() is called */
Jens Axboe2b188cc2019-01-07 10:46:33 -07007236 sock_release(ctx->ring_sock);
Eric Biggers355e8d22019-06-12 14:58:43 -07007237 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007238#endif
7239
Hristo Venev75b28af2019-08-26 17:23:46 +00007240 io_mem_free(ctx->rings);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007241 io_mem_free(ctx->sq_sqes);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007242
7243 percpu_ref_exit(&ctx->refs);
7244 if (ctx->account_mem)
7245 io_unaccount_mem(ctx->user,
7246 ring_pages(ctx->sq_entries, ctx->cq_entries));
7247 free_uid(ctx->user);
Jens Axboe181e4482019-11-25 08:52:30 -07007248 put_cred(ctx->creds);
Jens Axboe206aefd2019-11-07 18:27:42 -07007249 kfree(ctx->completions);
Jens Axboe78076bb2019-12-04 19:56:40 -07007250 kfree(ctx->cancel_hash);
Jens Axboe0ddf92e2019-11-08 08:52:53 -07007251 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007252 kfree(ctx);
7253}
7254
7255static __poll_t io_uring_poll(struct file *file, poll_table *wait)
7256{
7257 struct io_ring_ctx *ctx = file->private_data;
7258 __poll_t mask = 0;
7259
7260 poll_wait(file, &ctx->cq_wait, wait);
Stefan Bühler4f7067c2019-04-24 23:54:17 +02007261 /*
7262 * synchronizes with barrier from wq_has_sleeper call in
7263 * io_commit_cqring
7264 */
Jens Axboe2b188cc2019-01-07 10:46:33 -07007265 smp_rmb();
Hristo Venev75b28af2019-08-26 17:23:46 +00007266 if (READ_ONCE(ctx->rings->sq.tail) - ctx->cached_sq_head !=
7267 ctx->rings->sq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007268 mask |= EPOLLOUT | EPOLLWRNORM;
Stefano Garzarella63e5d812020-02-07 13:18:28 +01007269 if (io_cqring_events(ctx, false))
Jens Axboe2b188cc2019-01-07 10:46:33 -07007270 mask |= EPOLLIN | EPOLLRDNORM;
7271
7272 return mask;
7273}
7274
7275static int io_uring_fasync(int fd, struct file *file, int on)
7276{
7277 struct io_ring_ctx *ctx = file->private_data;
7278
7279 return fasync_helper(fd, file, on, &ctx->cq_fasync);
7280}
7281
Jens Axboe071698e2020-01-28 10:04:42 -07007282static int io_remove_personalities(int id, void *p, void *data)
7283{
7284 struct io_ring_ctx *ctx = data;
7285 const struct cred *cred;
7286
7287 cred = idr_remove(&ctx->personality_idr, id);
7288 if (cred)
7289 put_cred(cred);
7290 return 0;
7291}
7292
Jens Axboe85faa7b2020-04-09 18:14:00 -06007293static void io_ring_exit_work(struct work_struct *work)
7294{
7295 struct io_ring_ctx *ctx;
7296
7297 ctx = container_of(work, struct io_ring_ctx, exit_work);
7298 if (ctx->rings)
7299 io_cqring_overflow_flush(ctx, true);
7300
7301 wait_for_completion(&ctx->completions[0]);
7302 io_ring_ctx_free(ctx);
7303}
7304
Jens Axboe2b188cc2019-01-07 10:46:33 -07007305static void io_ring_ctx_wait_and_kill(struct io_ring_ctx *ctx)
7306{
7307 mutex_lock(&ctx->uring_lock);
7308 percpu_ref_kill(&ctx->refs);
7309 mutex_unlock(&ctx->uring_lock);
7310
Jens Axboedf069d82020-02-04 16:48:34 -07007311 /*
7312 * Wait for sq thread to idle, if we have one. It won't spin on new
7313 * work after we've killed the ctx ref above. This is important to do
7314 * before we cancel existing commands, as the thread could otherwise
7315 * be queueing new work post that. If that's work we need to cancel,
7316 * it could cause shutdown to hang.
7317 */
7318 while (ctx->sqo_thread && !wq_has_sleeper(&ctx->sqo_wait))
Xiaoguang Wang3fd44c82020-05-01 08:52:56 +08007319 cond_resched();
Jens Axboedf069d82020-02-04 16:48:34 -07007320
Jens Axboe5262f562019-09-17 12:26:57 -06007321 io_kill_timeouts(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07007322 io_poll_remove_all(ctx);
Jens Axboe561fb042019-10-24 07:25:42 -06007323
7324 if (ctx->io_wq)
7325 io_wq_cancel_all(ctx->io_wq);
7326
Jens Axboedef596e2019-01-09 08:59:42 -07007327 io_iopoll_reap_events(ctx);
Jens Axboe15dff282019-11-13 09:09:23 -07007328 /* if we failed setting up the ctx, we might not have any rings */
7329 if (ctx->rings)
7330 io_cqring_overflow_flush(ctx, true);
Jens Axboe071698e2020-01-28 10:04:42 -07007331 idr_for_each(&ctx->personality_idr, io_remove_personalities, ctx);
Jens Axboe85faa7b2020-04-09 18:14:00 -06007332 INIT_WORK(&ctx->exit_work, io_ring_exit_work);
7333 queue_work(system_wq, &ctx->exit_work);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007334}
7335
7336static int io_uring_release(struct inode *inode, struct file *file)
7337{
7338 struct io_ring_ctx *ctx = file->private_data;
7339
7340 file->private_data = NULL;
7341 io_ring_ctx_wait_and_kill(ctx);
7342 return 0;
7343}
7344
Jens Axboefcb323c2019-10-24 12:39:47 -06007345static void io_uring_cancel_files(struct io_ring_ctx *ctx,
7346 struct files_struct *files)
7347{
Jens Axboefcb323c2019-10-24 12:39:47 -06007348 while (!list_empty_careful(&ctx->inflight_list)) {
Xiaoguang Wangd8f1b972020-04-26 15:54:43 +08007349 struct io_kiocb *cancel_req = NULL, *req;
7350 DEFINE_WAIT(wait);
Jens Axboefcb323c2019-10-24 12:39:47 -06007351
7352 spin_lock_irq(&ctx->inflight_lock);
7353 list_for_each_entry(req, &ctx->inflight_list, inflight_entry) {
Jens Axboe768134d2019-11-10 20:30:53 -07007354 if (req->work.files != files)
7355 continue;
7356 /* req is being completed, ignore */
7357 if (!refcount_inc_not_zero(&req->refs))
7358 continue;
7359 cancel_req = req;
7360 break;
Jens Axboefcb323c2019-10-24 12:39:47 -06007361 }
Jens Axboe768134d2019-11-10 20:30:53 -07007362 if (cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06007363 prepare_to_wait(&ctx->inflight_wait, &wait,
Jens Axboe768134d2019-11-10 20:30:53 -07007364 TASK_UNINTERRUPTIBLE);
Jens Axboefcb323c2019-10-24 12:39:47 -06007365 spin_unlock_irq(&ctx->inflight_lock);
7366
Jens Axboe768134d2019-11-10 20:30:53 -07007367 /* We need to keep going until we don't find a matching req */
7368 if (!cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06007369 break;
Bob Liu2f6d9b92019-11-13 18:06:24 +08007370
Jens Axboe2ca10252020-02-13 17:17:35 -07007371 if (cancel_req->flags & REQ_F_OVERFLOW) {
7372 spin_lock_irq(&ctx->completion_lock);
7373 list_del(&cancel_req->list);
7374 cancel_req->flags &= ~REQ_F_OVERFLOW;
7375 if (list_empty(&ctx->cq_overflow_list)) {
7376 clear_bit(0, &ctx->sq_check_overflow);
7377 clear_bit(0, &ctx->cq_check_overflow);
7378 }
7379 spin_unlock_irq(&ctx->completion_lock);
7380
7381 WRITE_ONCE(ctx->rings->cq_overflow,
7382 atomic_inc_return(&ctx->cached_cq_overflow));
7383
7384 /*
7385 * Put inflight ref and overflow ref. If that's
7386 * all we had, then we're done with this request.
7387 */
7388 if (refcount_sub_and_test(2, &cancel_req->refs)) {
7389 io_put_req(cancel_req);
Xiaoguang Wangd8f1b972020-04-26 15:54:43 +08007390 finish_wait(&ctx->inflight_wait, &wait);
Jens Axboe2ca10252020-02-13 17:17:35 -07007391 continue;
7392 }
7393 }
7394
Bob Liu2f6d9b92019-11-13 18:06:24 +08007395 io_wq_cancel_work(ctx->io_wq, &cancel_req->work);
7396 io_put_req(cancel_req);
Jens Axboefcb323c2019-10-24 12:39:47 -06007397 schedule();
Xiaoguang Wangd8f1b972020-04-26 15:54:43 +08007398 finish_wait(&ctx->inflight_wait, &wait);
Jens Axboefcb323c2019-10-24 12:39:47 -06007399 }
7400}
7401
7402static int io_uring_flush(struct file *file, void *data)
7403{
7404 struct io_ring_ctx *ctx = file->private_data;
7405
7406 io_uring_cancel_files(ctx, data);
Jens Axboe6ab23142020-02-08 20:23:59 -07007407
7408 /*
7409 * If the task is going away, cancel work it may have pending
7410 */
7411 if (fatal_signal_pending(current) || (current->flags & PF_EXITING))
7412 io_wq_cancel_pid(ctx->io_wq, task_pid_vnr(current));
7413
Jens Axboefcb323c2019-10-24 12:39:47 -06007414 return 0;
7415}
7416
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007417static void *io_uring_validate_mmap_request(struct file *file,
7418 loff_t pgoff, size_t sz)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007419{
Jens Axboe2b188cc2019-01-07 10:46:33 -07007420 struct io_ring_ctx *ctx = file->private_data;
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007421 loff_t offset = pgoff << PAGE_SHIFT;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007422 struct page *page;
7423 void *ptr;
7424
7425 switch (offset) {
7426 case IORING_OFF_SQ_RING:
Hristo Venev75b28af2019-08-26 17:23:46 +00007427 case IORING_OFF_CQ_RING:
7428 ptr = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007429 break;
7430 case IORING_OFF_SQES:
7431 ptr = ctx->sq_sqes;
7432 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007433 default:
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007434 return ERR_PTR(-EINVAL);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007435 }
7436
7437 page = virt_to_head_page(ptr);
Matthew Wilcox (Oracle)a50b8542019-09-23 15:34:25 -07007438 if (sz > page_size(page))
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007439 return ERR_PTR(-EINVAL);
7440
7441 return ptr;
7442}
7443
7444#ifdef CONFIG_MMU
7445
7446static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
7447{
7448 size_t sz = vma->vm_end - vma->vm_start;
7449 unsigned long pfn;
7450 void *ptr;
7451
7452 ptr = io_uring_validate_mmap_request(file, vma->vm_pgoff, sz);
7453 if (IS_ERR(ptr))
7454 return PTR_ERR(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007455
7456 pfn = virt_to_phys(ptr) >> PAGE_SHIFT;
7457 return remap_pfn_range(vma, vma->vm_start, pfn, sz, vma->vm_page_prot);
7458}
7459
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007460#else /* !CONFIG_MMU */
7461
7462static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
7463{
7464 return vma->vm_flags & (VM_SHARED | VM_MAYSHARE) ? 0 : -EINVAL;
7465}
7466
7467static unsigned int io_uring_nommu_mmap_capabilities(struct file *file)
7468{
7469 return NOMMU_MAP_DIRECT | NOMMU_MAP_READ | NOMMU_MAP_WRITE;
7470}
7471
7472static unsigned long io_uring_nommu_get_unmapped_area(struct file *file,
7473 unsigned long addr, unsigned long len,
7474 unsigned long pgoff, unsigned long flags)
7475{
7476 void *ptr;
7477
7478 ptr = io_uring_validate_mmap_request(file, pgoff, len);
7479 if (IS_ERR(ptr))
7480 return PTR_ERR(ptr);
7481
7482 return (unsigned long) ptr;
7483}
7484
7485#endif /* !CONFIG_MMU */
7486
Jens Axboe2b188cc2019-01-07 10:46:33 -07007487SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
7488 u32, min_complete, u32, flags, const sigset_t __user *, sig,
7489 size_t, sigsz)
7490{
7491 struct io_ring_ctx *ctx;
7492 long ret = -EBADF;
7493 int submitted = 0;
7494 struct fd f;
7495
Jens Axboeb41e9852020-02-17 09:52:41 -07007496 if (current->task_works)
7497 task_work_run();
7498
Jens Axboe6c271ce2019-01-10 11:22:30 -07007499 if (flags & ~(IORING_ENTER_GETEVENTS | IORING_ENTER_SQ_WAKEUP))
Jens Axboe2b188cc2019-01-07 10:46:33 -07007500 return -EINVAL;
7501
7502 f = fdget(fd);
7503 if (!f.file)
7504 return -EBADF;
7505
7506 ret = -EOPNOTSUPP;
7507 if (f.file->f_op != &io_uring_fops)
7508 goto out_fput;
7509
7510 ret = -ENXIO;
7511 ctx = f.file->private_data;
7512 if (!percpu_ref_tryget(&ctx->refs))
7513 goto out_fput;
7514
Jens Axboe6c271ce2019-01-10 11:22:30 -07007515 /*
7516 * For SQ polling, the thread will do all submissions and completions.
7517 * Just return the requested submit count, and wake the thread if
7518 * we were asked to.
7519 */
Jens Axboeb2a9ead2019-09-12 14:19:16 -06007520 ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007521 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboec1edbf52019-11-10 16:56:04 -07007522 if (!list_empty_careful(&ctx->cq_overflow_list))
7523 io_cqring_overflow_flush(ctx, false);
Jens Axboe6c271ce2019-01-10 11:22:30 -07007524 if (flags & IORING_ENTER_SQ_WAKEUP)
7525 wake_up(&ctx->sqo_wait);
7526 submitted = to_submit;
Jens Axboeb2a9ead2019-09-12 14:19:16 -06007527 } else if (to_submit) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07007528 mutex_lock(&ctx->uring_lock);
Pavel Begunkovbf9c2f12020-04-12 02:05:02 +03007529 submitted = io_submit_sqes(ctx, to_submit, f.file, fd, false);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007530 mutex_unlock(&ctx->uring_lock);
Pavel Begunkov7c504e652019-12-18 19:53:45 +03007531
7532 if (submitted != to_submit)
7533 goto out;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007534 }
7535 if (flags & IORING_ENTER_GETEVENTS) {
Jens Axboedef596e2019-01-09 08:59:42 -07007536 unsigned nr_events = 0;
7537
Jens Axboe2b188cc2019-01-07 10:46:33 -07007538 min_complete = min(min_complete, ctx->cq_entries);
7539
Xiaoguang Wang32b22442020-03-11 09:26:09 +08007540 /*
7541 * When SETUP_IOPOLL and SETUP_SQPOLL are both enabled, user
7542 * space applications don't need to do io completion events
7543 * polling again, they can rely on io_sq_thread to do polling
7544 * work, which can reduce cpu usage and uring_lock contention.
7545 */
7546 if (ctx->flags & IORING_SETUP_IOPOLL &&
7547 !(ctx->flags & IORING_SETUP_SQPOLL)) {
Jens Axboedef596e2019-01-09 08:59:42 -07007548 ret = io_iopoll_check(ctx, &nr_events, min_complete);
Jens Axboedef596e2019-01-09 08:59:42 -07007549 } else {
7550 ret = io_cqring_wait(ctx, min_complete, sig, sigsz);
7551 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007552 }
7553
Pavel Begunkov7c504e652019-12-18 19:53:45 +03007554out:
Pavel Begunkov6805b322019-10-08 02:18:42 +03007555 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007556out_fput:
7557 fdput(f);
7558 return submitted ? submitted : ret;
7559}
7560
Tobias Klauserbebdb652020-02-26 18:38:32 +01007561#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -07007562static int io_uring_show_cred(int id, void *p, void *data)
7563{
7564 const struct cred *cred = p;
7565 struct seq_file *m = data;
7566 struct user_namespace *uns = seq_user_ns(m);
7567 struct group_info *gi;
7568 kernel_cap_t cap;
7569 unsigned __capi;
7570 int g;
7571
7572 seq_printf(m, "%5d\n", id);
7573 seq_put_decimal_ull(m, "\tUid:\t", from_kuid_munged(uns, cred->uid));
7574 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->euid));
7575 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->suid));
7576 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->fsuid));
7577 seq_put_decimal_ull(m, "\n\tGid:\t", from_kgid_munged(uns, cred->gid));
7578 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->egid));
7579 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->sgid));
7580 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->fsgid));
7581 seq_puts(m, "\n\tGroups:\t");
7582 gi = cred->group_info;
7583 for (g = 0; g < gi->ngroups; g++) {
7584 seq_put_decimal_ull(m, g ? " " : "",
7585 from_kgid_munged(uns, gi->gid[g]));
7586 }
7587 seq_puts(m, "\n\tCapEff:\t");
7588 cap = cred->cap_effective;
7589 CAP_FOR_EACH_U32(__capi)
7590 seq_put_hex_ll(m, NULL, cap.cap[CAP_LAST_U32 - __capi], 8);
7591 seq_putc(m, '\n');
7592 return 0;
7593}
7594
7595static void __io_uring_show_fdinfo(struct io_ring_ctx *ctx, struct seq_file *m)
7596{
7597 int i;
7598
7599 mutex_lock(&ctx->uring_lock);
7600 seq_printf(m, "UserFiles:\t%u\n", ctx->nr_user_files);
7601 for (i = 0; i < ctx->nr_user_files; i++) {
7602 struct fixed_file_table *table;
7603 struct file *f;
7604
7605 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
7606 f = table->files[i & IORING_FILE_TABLE_MASK];
7607 if (f)
7608 seq_printf(m, "%5u: %s\n", i, file_dentry(f)->d_iname);
7609 else
7610 seq_printf(m, "%5u: <none>\n", i);
7611 }
7612 seq_printf(m, "UserBufs:\t%u\n", ctx->nr_user_bufs);
7613 for (i = 0; i < ctx->nr_user_bufs; i++) {
7614 struct io_mapped_ubuf *buf = &ctx->user_bufs[i];
7615
7616 seq_printf(m, "%5u: 0x%llx/%u\n", i, buf->ubuf,
7617 (unsigned int) buf->len);
7618 }
7619 if (!idr_is_empty(&ctx->personality_idr)) {
7620 seq_printf(m, "Personalities:\n");
7621 idr_for_each(&ctx->personality_idr, io_uring_show_cred, m);
7622 }
Jens Axboed7718a92020-02-14 22:23:12 -07007623 seq_printf(m, "PollList:\n");
7624 spin_lock_irq(&ctx->completion_lock);
7625 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
7626 struct hlist_head *list = &ctx->cancel_hash[i];
7627 struct io_kiocb *req;
7628
7629 hlist_for_each_entry(req, list, hash_node)
7630 seq_printf(m, " op=%d, task_works=%d\n", req->opcode,
7631 req->task->task_works != NULL);
7632 }
7633 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe87ce9552020-01-30 08:25:34 -07007634 mutex_unlock(&ctx->uring_lock);
7635}
7636
7637static void io_uring_show_fdinfo(struct seq_file *m, struct file *f)
7638{
7639 struct io_ring_ctx *ctx = f->private_data;
7640
7641 if (percpu_ref_tryget(&ctx->refs)) {
7642 __io_uring_show_fdinfo(ctx, m);
7643 percpu_ref_put(&ctx->refs);
7644 }
7645}
Tobias Klauserbebdb652020-02-26 18:38:32 +01007646#endif
Jens Axboe87ce9552020-01-30 08:25:34 -07007647
Jens Axboe2b188cc2019-01-07 10:46:33 -07007648static const struct file_operations io_uring_fops = {
7649 .release = io_uring_release,
Jens Axboefcb323c2019-10-24 12:39:47 -06007650 .flush = io_uring_flush,
Jens Axboe2b188cc2019-01-07 10:46:33 -07007651 .mmap = io_uring_mmap,
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007652#ifndef CONFIG_MMU
7653 .get_unmapped_area = io_uring_nommu_get_unmapped_area,
7654 .mmap_capabilities = io_uring_nommu_mmap_capabilities,
7655#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07007656 .poll = io_uring_poll,
7657 .fasync = io_uring_fasync,
Tobias Klauserbebdb652020-02-26 18:38:32 +01007658#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -07007659 .show_fdinfo = io_uring_show_fdinfo,
Tobias Klauserbebdb652020-02-26 18:38:32 +01007660#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07007661};
7662
7663static int io_allocate_scq_urings(struct io_ring_ctx *ctx,
7664 struct io_uring_params *p)
7665{
Hristo Venev75b28af2019-08-26 17:23:46 +00007666 struct io_rings *rings;
7667 size_t size, sq_array_offset;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007668
Hristo Venev75b28af2019-08-26 17:23:46 +00007669 size = rings_size(p->sq_entries, p->cq_entries, &sq_array_offset);
7670 if (size == SIZE_MAX)
7671 return -EOVERFLOW;
7672
7673 rings = io_mem_alloc(size);
7674 if (!rings)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007675 return -ENOMEM;
7676
Hristo Venev75b28af2019-08-26 17:23:46 +00007677 ctx->rings = rings;
7678 ctx->sq_array = (u32 *)((char *)rings + sq_array_offset);
7679 rings->sq_ring_mask = p->sq_entries - 1;
7680 rings->cq_ring_mask = p->cq_entries - 1;
7681 rings->sq_ring_entries = p->sq_entries;
7682 rings->cq_ring_entries = p->cq_entries;
7683 ctx->sq_mask = rings->sq_ring_mask;
7684 ctx->cq_mask = rings->cq_ring_mask;
7685 ctx->sq_entries = rings->sq_ring_entries;
7686 ctx->cq_entries = rings->cq_ring_entries;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007687
7688 size = array_size(sizeof(struct io_uring_sqe), p->sq_entries);
Jens Axboeeb065d32019-11-20 09:26:29 -07007689 if (size == SIZE_MAX) {
7690 io_mem_free(ctx->rings);
7691 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007692 return -EOVERFLOW;
Jens Axboeeb065d32019-11-20 09:26:29 -07007693 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007694
7695 ctx->sq_sqes = io_mem_alloc(size);
Jens Axboeeb065d32019-11-20 09:26:29 -07007696 if (!ctx->sq_sqes) {
7697 io_mem_free(ctx->rings);
7698 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007699 return -ENOMEM;
Jens Axboeeb065d32019-11-20 09:26:29 -07007700 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007701
Jens Axboe2b188cc2019-01-07 10:46:33 -07007702 return 0;
7703}
7704
7705/*
7706 * Allocate an anonymous fd, this is what constitutes the application
7707 * visible backing of an io_uring instance. The application mmaps this
7708 * fd to gain access to the SQ/CQ ring details. If UNIX sockets are enabled,
7709 * we have to tie this fd to a socket for file garbage collection purposes.
7710 */
7711static int io_uring_get_fd(struct io_ring_ctx *ctx)
7712{
7713 struct file *file;
7714 int ret;
7715
7716#if defined(CONFIG_UNIX)
7717 ret = sock_create_kern(&init_net, PF_UNIX, SOCK_RAW, IPPROTO_IP,
7718 &ctx->ring_sock);
7719 if (ret)
7720 return ret;
7721#endif
7722
7723 ret = get_unused_fd_flags(O_RDWR | O_CLOEXEC);
7724 if (ret < 0)
7725 goto err;
7726
7727 file = anon_inode_getfile("[io_uring]", &io_uring_fops, ctx,
7728 O_RDWR | O_CLOEXEC);
7729 if (IS_ERR(file)) {
7730 put_unused_fd(ret);
7731 ret = PTR_ERR(file);
7732 goto err;
7733 }
7734
7735#if defined(CONFIG_UNIX)
7736 ctx->ring_sock->file = file;
7737#endif
7738 fd_install(ret, file);
7739 return ret;
7740err:
7741#if defined(CONFIG_UNIX)
7742 sock_release(ctx->ring_sock);
7743 ctx->ring_sock = NULL;
7744#endif
7745 return ret;
7746}
7747
Xiaoguang Wang7f136572020-05-05 16:28:53 +08007748static int io_uring_create(unsigned entries, struct io_uring_params *p,
7749 struct io_uring_params __user *params)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007750{
7751 struct user_struct *user = NULL;
7752 struct io_ring_ctx *ctx;
7753 bool account_mem;
7754 int ret;
7755
Jens Axboe8110c1a2019-12-28 15:39:54 -07007756 if (!entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007757 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07007758 if (entries > IORING_MAX_ENTRIES) {
7759 if (!(p->flags & IORING_SETUP_CLAMP))
7760 return -EINVAL;
7761 entries = IORING_MAX_ENTRIES;
7762 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007763
7764 /*
7765 * Use twice as many entries for the CQ ring. It's possible for the
7766 * application to drive a higher depth than the size of the SQ ring,
7767 * since the sqes are only used at submission time. This allows for
Jens Axboe33a107f2019-10-04 12:10:03 -06007768 * some flexibility in overcommitting a bit. If the application has
7769 * set IORING_SETUP_CQSIZE, it will have passed in the desired number
7770 * of CQ ring entries manually.
Jens Axboe2b188cc2019-01-07 10:46:33 -07007771 */
7772 p->sq_entries = roundup_pow_of_two(entries);
Jens Axboe33a107f2019-10-04 12:10:03 -06007773 if (p->flags & IORING_SETUP_CQSIZE) {
7774 /*
7775 * If IORING_SETUP_CQSIZE is set, we do the same roundup
7776 * to a power-of-two, if it isn't already. We do NOT impose
7777 * any cq vs sq ring sizing.
7778 */
Jens Axboe8110c1a2019-12-28 15:39:54 -07007779 if (p->cq_entries < p->sq_entries)
Jens Axboe33a107f2019-10-04 12:10:03 -06007780 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07007781 if (p->cq_entries > IORING_MAX_CQ_ENTRIES) {
7782 if (!(p->flags & IORING_SETUP_CLAMP))
7783 return -EINVAL;
7784 p->cq_entries = IORING_MAX_CQ_ENTRIES;
7785 }
Jens Axboe33a107f2019-10-04 12:10:03 -06007786 p->cq_entries = roundup_pow_of_two(p->cq_entries);
7787 } else {
7788 p->cq_entries = 2 * p->sq_entries;
7789 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007790
7791 user = get_uid(current_user());
7792 account_mem = !capable(CAP_IPC_LOCK);
7793
7794 if (account_mem) {
7795 ret = io_account_mem(user,
7796 ring_pages(p->sq_entries, p->cq_entries));
7797 if (ret) {
7798 free_uid(user);
7799 return ret;
7800 }
7801 }
7802
7803 ctx = io_ring_ctx_alloc(p);
7804 if (!ctx) {
7805 if (account_mem)
7806 io_unaccount_mem(user, ring_pages(p->sq_entries,
7807 p->cq_entries));
7808 free_uid(user);
7809 return -ENOMEM;
7810 }
7811 ctx->compat = in_compat_syscall();
7812 ctx->account_mem = account_mem;
7813 ctx->user = user;
Jens Axboe0b8c0ec2019-12-02 08:50:00 -07007814 ctx->creds = get_current_cred();
Jens Axboe2b188cc2019-01-07 10:46:33 -07007815
7816 ret = io_allocate_scq_urings(ctx, p);
7817 if (ret)
7818 goto err;
7819
Jens Axboe6c271ce2019-01-10 11:22:30 -07007820 ret = io_sq_offload_start(ctx, p);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007821 if (ret)
7822 goto err;
7823
Jens Axboe2b188cc2019-01-07 10:46:33 -07007824 memset(&p->sq_off, 0, sizeof(p->sq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00007825 p->sq_off.head = offsetof(struct io_rings, sq.head);
7826 p->sq_off.tail = offsetof(struct io_rings, sq.tail);
7827 p->sq_off.ring_mask = offsetof(struct io_rings, sq_ring_mask);
7828 p->sq_off.ring_entries = offsetof(struct io_rings, sq_ring_entries);
7829 p->sq_off.flags = offsetof(struct io_rings, sq_flags);
7830 p->sq_off.dropped = offsetof(struct io_rings, sq_dropped);
7831 p->sq_off.array = (char *)ctx->sq_array - (char *)ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007832
7833 memset(&p->cq_off, 0, sizeof(p->cq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00007834 p->cq_off.head = offsetof(struct io_rings, cq.head);
7835 p->cq_off.tail = offsetof(struct io_rings, cq.tail);
7836 p->cq_off.ring_mask = offsetof(struct io_rings, cq_ring_mask);
7837 p->cq_off.ring_entries = offsetof(struct io_rings, cq_ring_entries);
7838 p->cq_off.overflow = offsetof(struct io_rings, cq_overflow);
7839 p->cq_off.cqes = offsetof(struct io_rings, cqes);
Jens Axboeac90f242019-09-06 10:26:21 -06007840
Xiaoguang Wang7f136572020-05-05 16:28:53 +08007841 p->features = IORING_FEAT_SINGLE_MMAP | IORING_FEAT_NODROP |
7842 IORING_FEAT_SUBMIT_STABLE | IORING_FEAT_RW_CUR_POS |
7843 IORING_FEAT_CUR_PERSONALITY | IORING_FEAT_FAST_POLL;
7844
7845 if (copy_to_user(params, p, sizeof(*p))) {
7846 ret = -EFAULT;
7847 goto err;
7848 }
Jens Axboe044c1ab2019-10-28 09:15:33 -06007849 /*
7850 * Install ring fd as the very last thing, so we don't risk someone
7851 * having closed it before we finish setup
7852 */
7853 ret = io_uring_get_fd(ctx);
7854 if (ret < 0)
7855 goto err;
7856
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02007857 trace_io_uring_create(ret, ctx, p->sq_entries, p->cq_entries, p->flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007858 return ret;
7859err:
7860 io_ring_ctx_wait_and_kill(ctx);
7861 return ret;
7862}
7863
7864/*
7865 * Sets up an aio uring context, and returns the fd. Applications asks for a
7866 * ring size, we return the actual sq/cq ring sizes (among other things) in the
7867 * params structure passed in.
7868 */
7869static long io_uring_setup(u32 entries, struct io_uring_params __user *params)
7870{
7871 struct io_uring_params p;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007872 int i;
7873
7874 if (copy_from_user(&p, params, sizeof(p)))
7875 return -EFAULT;
7876 for (i = 0; i < ARRAY_SIZE(p.resv); i++) {
7877 if (p.resv[i])
7878 return -EINVAL;
7879 }
7880
Jens Axboe6c271ce2019-01-10 11:22:30 -07007881 if (p.flags & ~(IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL |
Jens Axboe8110c1a2019-12-28 15:39:54 -07007882 IORING_SETUP_SQ_AFF | IORING_SETUP_CQSIZE |
Pavel Begunkov24369c22020-01-28 03:15:48 +03007883 IORING_SETUP_CLAMP | IORING_SETUP_ATTACH_WQ))
Jens Axboe2b188cc2019-01-07 10:46:33 -07007884 return -EINVAL;
7885
Xiaoguang Wang7f136572020-05-05 16:28:53 +08007886 return io_uring_create(entries, &p, params);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007887}
7888
7889SYSCALL_DEFINE2(io_uring_setup, u32, entries,
7890 struct io_uring_params __user *, params)
7891{
7892 return io_uring_setup(entries, params);
7893}
7894
Jens Axboe66f4af92020-01-16 15:36:52 -07007895static int io_probe(struct io_ring_ctx *ctx, void __user *arg, unsigned nr_args)
7896{
7897 struct io_uring_probe *p;
7898 size_t size;
7899 int i, ret;
7900
7901 size = struct_size(p, ops, nr_args);
7902 if (size == SIZE_MAX)
7903 return -EOVERFLOW;
7904 p = kzalloc(size, GFP_KERNEL);
7905 if (!p)
7906 return -ENOMEM;
7907
7908 ret = -EFAULT;
7909 if (copy_from_user(p, arg, size))
7910 goto out;
7911 ret = -EINVAL;
7912 if (memchr_inv(p, 0, size))
7913 goto out;
7914
7915 p->last_op = IORING_OP_LAST - 1;
7916 if (nr_args > IORING_OP_LAST)
7917 nr_args = IORING_OP_LAST;
7918
7919 for (i = 0; i < nr_args; i++) {
7920 p->ops[i].op = i;
7921 if (!io_op_defs[i].not_supported)
7922 p->ops[i].flags = IO_URING_OP_SUPPORTED;
7923 }
7924 p->ops_len = i;
7925
7926 ret = 0;
7927 if (copy_to_user(arg, p, size))
7928 ret = -EFAULT;
7929out:
7930 kfree(p);
7931 return ret;
7932}
7933
Jens Axboe071698e2020-01-28 10:04:42 -07007934static int io_register_personality(struct io_ring_ctx *ctx)
7935{
7936 const struct cred *creds = get_current_cred();
7937 int id;
7938
7939 id = idr_alloc_cyclic(&ctx->personality_idr, (void *) creds, 1,
7940 USHRT_MAX, GFP_KERNEL);
7941 if (id < 0)
7942 put_cred(creds);
7943 return id;
7944}
7945
7946static int io_unregister_personality(struct io_ring_ctx *ctx, unsigned id)
7947{
7948 const struct cred *old_creds;
7949
7950 old_creds = idr_remove(&ctx->personality_idr, id);
7951 if (old_creds) {
7952 put_cred(old_creds);
7953 return 0;
7954 }
7955
7956 return -EINVAL;
7957}
7958
7959static bool io_register_op_must_quiesce(int op)
7960{
7961 switch (op) {
7962 case IORING_UNREGISTER_FILES:
7963 case IORING_REGISTER_FILES_UPDATE:
7964 case IORING_REGISTER_PROBE:
7965 case IORING_REGISTER_PERSONALITY:
7966 case IORING_UNREGISTER_PERSONALITY:
7967 return false;
7968 default:
7969 return true;
7970 }
7971}
7972
Jens Axboeedafcce2019-01-09 09:16:05 -07007973static int __io_uring_register(struct io_ring_ctx *ctx, unsigned opcode,
7974 void __user *arg, unsigned nr_args)
Jens Axboeb19062a2019-04-15 10:49:38 -06007975 __releases(ctx->uring_lock)
7976 __acquires(ctx->uring_lock)
Jens Axboeedafcce2019-01-09 09:16:05 -07007977{
7978 int ret;
7979
Jens Axboe35fa71a2019-04-22 10:23:23 -06007980 /*
7981 * We're inside the ring mutex, if the ref is already dying, then
7982 * someone else killed the ctx or is already going through
7983 * io_uring_register().
7984 */
7985 if (percpu_ref_is_dying(&ctx->refs))
7986 return -ENXIO;
7987
Jens Axboe071698e2020-01-28 10:04:42 -07007988 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07007989 percpu_ref_kill(&ctx->refs);
Jens Axboeb19062a2019-04-15 10:49:38 -06007990
Jens Axboe05f3fb32019-12-09 11:22:50 -07007991 /*
7992 * Drop uring mutex before waiting for references to exit. If
7993 * another thread is currently inside io_uring_enter() it might
7994 * need to grab the uring_lock to make progress. If we hold it
7995 * here across the drain wait, then we can deadlock. It's safe
7996 * to drop the mutex here, since no new references will come in
7997 * after we've killed the percpu ref.
7998 */
7999 mutex_unlock(&ctx->uring_lock);
Jens Axboec1503682020-01-08 08:26:07 -07008000 ret = wait_for_completion_interruptible(&ctx->completions[0]);
Jens Axboe05f3fb32019-12-09 11:22:50 -07008001 mutex_lock(&ctx->uring_lock);
Jens Axboec1503682020-01-08 08:26:07 -07008002 if (ret) {
8003 percpu_ref_resurrect(&ctx->refs);
8004 ret = -EINTR;
8005 goto out;
8006 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07008007 }
Jens Axboeedafcce2019-01-09 09:16:05 -07008008
8009 switch (opcode) {
8010 case IORING_REGISTER_BUFFERS:
8011 ret = io_sqe_buffer_register(ctx, arg, nr_args);
8012 break;
8013 case IORING_UNREGISTER_BUFFERS:
8014 ret = -EINVAL;
8015 if (arg || nr_args)
8016 break;
8017 ret = io_sqe_buffer_unregister(ctx);
8018 break;
Jens Axboe6b063142019-01-10 22:13:58 -07008019 case IORING_REGISTER_FILES:
8020 ret = io_sqe_files_register(ctx, arg, nr_args);
8021 break;
8022 case IORING_UNREGISTER_FILES:
8023 ret = -EINVAL;
8024 if (arg || nr_args)
8025 break;
8026 ret = io_sqe_files_unregister(ctx);
8027 break;
Jens Axboec3a31e62019-10-03 13:59:56 -06008028 case IORING_REGISTER_FILES_UPDATE:
8029 ret = io_sqe_files_update(ctx, arg, nr_args);
8030 break;
Jens Axboe9b402842019-04-11 11:45:41 -06008031 case IORING_REGISTER_EVENTFD:
Jens Axboef2842ab2020-01-08 11:04:00 -07008032 case IORING_REGISTER_EVENTFD_ASYNC:
Jens Axboe9b402842019-04-11 11:45:41 -06008033 ret = -EINVAL;
8034 if (nr_args != 1)
8035 break;
8036 ret = io_eventfd_register(ctx, arg);
Jens Axboef2842ab2020-01-08 11:04:00 -07008037 if (ret)
8038 break;
8039 if (opcode == IORING_REGISTER_EVENTFD_ASYNC)
8040 ctx->eventfd_async = 1;
8041 else
8042 ctx->eventfd_async = 0;
Jens Axboe9b402842019-04-11 11:45:41 -06008043 break;
8044 case IORING_UNREGISTER_EVENTFD:
8045 ret = -EINVAL;
8046 if (arg || nr_args)
8047 break;
8048 ret = io_eventfd_unregister(ctx);
8049 break;
Jens Axboe66f4af92020-01-16 15:36:52 -07008050 case IORING_REGISTER_PROBE:
8051 ret = -EINVAL;
8052 if (!arg || nr_args > 256)
8053 break;
8054 ret = io_probe(ctx, arg, nr_args);
8055 break;
Jens Axboe071698e2020-01-28 10:04:42 -07008056 case IORING_REGISTER_PERSONALITY:
8057 ret = -EINVAL;
8058 if (arg || nr_args)
8059 break;
8060 ret = io_register_personality(ctx);
8061 break;
8062 case IORING_UNREGISTER_PERSONALITY:
8063 ret = -EINVAL;
8064 if (arg)
8065 break;
8066 ret = io_unregister_personality(ctx, nr_args);
8067 break;
Jens Axboeedafcce2019-01-09 09:16:05 -07008068 default:
8069 ret = -EINVAL;
8070 break;
8071 }
8072
Jens Axboe071698e2020-01-28 10:04:42 -07008073 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07008074 /* bring the ctx back to life */
Jens Axboe05f3fb32019-12-09 11:22:50 -07008075 percpu_ref_reinit(&ctx->refs);
Jens Axboec1503682020-01-08 08:26:07 -07008076out:
8077 reinit_completion(&ctx->completions[0]);
Jens Axboe05f3fb32019-12-09 11:22:50 -07008078 }
Jens Axboeedafcce2019-01-09 09:16:05 -07008079 return ret;
8080}
8081
8082SYSCALL_DEFINE4(io_uring_register, unsigned int, fd, unsigned int, opcode,
8083 void __user *, arg, unsigned int, nr_args)
8084{
8085 struct io_ring_ctx *ctx;
8086 long ret = -EBADF;
8087 struct fd f;
8088
8089 f = fdget(fd);
8090 if (!f.file)
8091 return -EBADF;
8092
8093 ret = -EOPNOTSUPP;
8094 if (f.file->f_op != &io_uring_fops)
8095 goto out_fput;
8096
8097 ctx = f.file->private_data;
8098
8099 mutex_lock(&ctx->uring_lock);
8100 ret = __io_uring_register(ctx, opcode, arg, nr_args);
8101 mutex_unlock(&ctx->uring_lock);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02008102 trace_io_uring_register(ctx, opcode, ctx->nr_user_files, ctx->nr_user_bufs,
8103 ctx->cq_ev_fd != NULL, ret);
Jens Axboeedafcce2019-01-09 09:16:05 -07008104out_fput:
8105 fdput(f);
8106 return ret;
8107}
8108
Jens Axboe2b188cc2019-01-07 10:46:33 -07008109static int __init io_uring_init(void)
8110{
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008111#define __BUILD_BUG_VERIFY_ELEMENT(stype, eoffset, etype, ename) do { \
8112 BUILD_BUG_ON(offsetof(stype, ename) != eoffset); \
8113 BUILD_BUG_ON(sizeof(etype) != sizeof_field(stype, ename)); \
8114} while (0)
8115
8116#define BUILD_BUG_SQE_ELEM(eoffset, etype, ename) \
8117 __BUILD_BUG_VERIFY_ELEMENT(struct io_uring_sqe, eoffset, etype, ename)
8118 BUILD_BUG_ON(sizeof(struct io_uring_sqe) != 64);
8119 BUILD_BUG_SQE_ELEM(0, __u8, opcode);
8120 BUILD_BUG_SQE_ELEM(1, __u8, flags);
8121 BUILD_BUG_SQE_ELEM(2, __u16, ioprio);
8122 BUILD_BUG_SQE_ELEM(4, __s32, fd);
8123 BUILD_BUG_SQE_ELEM(8, __u64, off);
8124 BUILD_BUG_SQE_ELEM(8, __u64, addr2);
8125 BUILD_BUG_SQE_ELEM(16, __u64, addr);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03008126 BUILD_BUG_SQE_ELEM(16, __u64, splice_off_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008127 BUILD_BUG_SQE_ELEM(24, __u32, len);
8128 BUILD_BUG_SQE_ELEM(28, __kernel_rwf_t, rw_flags);
8129 BUILD_BUG_SQE_ELEM(28, /* compat */ int, rw_flags);
8130 BUILD_BUG_SQE_ELEM(28, /* compat */ __u32, rw_flags);
8131 BUILD_BUG_SQE_ELEM(28, __u32, fsync_flags);
8132 BUILD_BUG_SQE_ELEM(28, __u16, poll_events);
8133 BUILD_BUG_SQE_ELEM(28, __u32, sync_range_flags);
8134 BUILD_BUG_SQE_ELEM(28, __u32, msg_flags);
8135 BUILD_BUG_SQE_ELEM(28, __u32, timeout_flags);
8136 BUILD_BUG_SQE_ELEM(28, __u32, accept_flags);
8137 BUILD_BUG_SQE_ELEM(28, __u32, cancel_flags);
8138 BUILD_BUG_SQE_ELEM(28, __u32, open_flags);
8139 BUILD_BUG_SQE_ELEM(28, __u32, statx_flags);
8140 BUILD_BUG_SQE_ELEM(28, __u32, fadvise_advice);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03008141 BUILD_BUG_SQE_ELEM(28, __u32, splice_flags);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008142 BUILD_BUG_SQE_ELEM(32, __u64, user_data);
8143 BUILD_BUG_SQE_ELEM(40, __u16, buf_index);
8144 BUILD_BUG_SQE_ELEM(42, __u16, personality);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03008145 BUILD_BUG_SQE_ELEM(44, __s32, splice_fd_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008146
Jens Axboed3656342019-12-18 09:50:26 -07008147 BUILD_BUG_ON(ARRAY_SIZE(io_op_defs) != IORING_OP_LAST);
Jens Axboe84557872020-03-03 15:28:17 -07008148 BUILD_BUG_ON(__REQ_F_LAST_BIT >= 8 * sizeof(int));
Jens Axboe2b188cc2019-01-07 10:46:33 -07008149 req_cachep = KMEM_CACHE(io_kiocb, SLAB_HWCACHE_ALIGN | SLAB_PANIC);
8150 return 0;
8151};
8152__initcall(io_uring_init);