blob: 9325ac618cf088642fd9d23750b122ac5cb8710d [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;
Pavel Begunkovcc42e0a2019-11-25 23:14:38 +0300360 u32 seq_offset;
Jens Axboead8a48a2019-11-15 08:49:11 -0700361};
362
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700363struct io_accept {
364 struct file *file;
365 struct sockaddr __user *addr;
366 int __user *addr_len;
367 int flags;
Jens Axboe09952e32020-03-19 20:16:56 -0600368 unsigned long nofile;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700369};
370
371struct io_sync {
372 struct file *file;
373 loff_t len;
374 loff_t off;
375 int flags;
Jens Axboed63d1b52019-12-10 10:38:56 -0700376 int mode;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700377};
378
Jens Axboefbf23842019-12-17 18:45:56 -0700379struct io_cancel {
380 struct file *file;
381 u64 addr;
382};
383
Jens Axboeb29472e2019-12-17 18:50:29 -0700384struct io_timeout {
385 struct file *file;
386 u64 addr;
387 int flags;
Jens Axboe26a61672019-12-20 09:02:01 -0700388 unsigned count;
Jens Axboeb29472e2019-12-17 18:50:29 -0700389};
390
Jens Axboe9adbd452019-12-20 08:45:55 -0700391struct io_rw {
392 /* NOTE: kiocb has the file as the first member, so don't do it here */
393 struct kiocb kiocb;
394 u64 addr;
395 u64 len;
396};
397
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700398struct io_connect {
399 struct file *file;
400 struct sockaddr __user *addr;
401 int addr_len;
402};
403
Jens Axboee47293f2019-12-20 08:58:21 -0700404struct io_sr_msg {
405 struct file *file;
Jens Axboefddafac2020-01-04 20:19:44 -0700406 union {
407 struct user_msghdr __user *msg;
408 void __user *buf;
409 };
Jens Axboee47293f2019-12-20 08:58:21 -0700410 int msg_flags;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700411 int bgid;
Jens Axboefddafac2020-01-04 20:19:44 -0700412 size_t len;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700413 struct io_buffer *kbuf;
Jens Axboee47293f2019-12-20 08:58:21 -0700414};
415
Jens Axboe15b71ab2019-12-11 11:20:36 -0700416struct io_open {
417 struct file *file;
418 int dfd;
Jens Axboeeddc7ef2019-12-13 21:18:10 -0700419 union {
Jens Axboeeddc7ef2019-12-13 21:18:10 -0700420 unsigned mask;
421 };
Jens Axboe15b71ab2019-12-11 11:20:36 -0700422 struct filename *filename;
Jens Axboeeddc7ef2019-12-13 21:18:10 -0700423 struct statx __user *buffer;
Jens Axboec12cedf2020-01-08 17:41:21 -0700424 struct open_how how;
Jens Axboe4022e7a2020-03-19 19:23:18 -0600425 unsigned long nofile;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700426};
427
Jens Axboe05f3fb32019-12-09 11:22:50 -0700428struct io_files_update {
429 struct file *file;
430 u64 arg;
431 u32 nr_args;
432 u32 offset;
433};
434
Jens Axboe4840e412019-12-25 22:03:45 -0700435struct io_fadvise {
436 struct file *file;
437 u64 offset;
438 u32 len;
439 u32 advice;
440};
441
Jens Axboec1ca7572019-12-25 22:18:28 -0700442struct io_madvise {
443 struct file *file;
444 u64 addr;
445 u32 len;
446 u32 advice;
447};
448
Jens Axboe3e4827b2020-01-08 15:18:09 -0700449struct io_epoll {
450 struct file *file;
451 int epfd;
452 int op;
453 int fd;
454 struct epoll_event event;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700455};
456
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300457struct io_splice {
458 struct file *file_out;
459 struct file *file_in;
460 loff_t off_out;
461 loff_t off_in;
462 u64 len;
463 unsigned int flags;
464};
465
Jens Axboeddf0322d2020-02-23 16:41:33 -0700466struct io_provide_buf {
467 struct file *file;
468 __u64 addr;
469 __s32 len;
470 __u32 bgid;
471 __u16 nbufs;
472 __u16 bid;
473};
474
Jens Axboef499a022019-12-02 16:28:46 -0700475struct io_async_connect {
476 struct sockaddr_storage address;
477};
478
Jens Axboe03b12302019-12-02 18:50:25 -0700479struct io_async_msghdr {
480 struct iovec fast_iov[UIO_FASTIOV];
481 struct iovec *iov;
482 struct sockaddr __user *uaddr;
483 struct msghdr msg;
Jens Axboeb5379162020-02-09 11:29:15 -0700484 struct sockaddr_storage addr;
Jens Axboe03b12302019-12-02 18:50:25 -0700485};
486
Jens Axboef67676d2019-12-02 11:03:47 -0700487struct io_async_rw {
488 struct iovec fast_iov[UIO_FASTIOV];
489 struct iovec *iov;
490 ssize_t nr_segs;
491 ssize_t size;
492};
493
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700494struct io_async_ctx {
Jens Axboef67676d2019-12-02 11:03:47 -0700495 union {
496 struct io_async_rw rw;
Jens Axboe03b12302019-12-02 18:50:25 -0700497 struct io_async_msghdr msg;
Jens Axboef499a022019-12-02 16:28:46 -0700498 struct io_async_connect connect;
Jens Axboe2d283902019-12-04 11:08:05 -0700499 struct io_timeout_data timeout;
Jens Axboef67676d2019-12-02 11:03:47 -0700500 };
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700501};
502
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300503enum {
504 REQ_F_FIXED_FILE_BIT = IOSQE_FIXED_FILE_BIT,
505 REQ_F_IO_DRAIN_BIT = IOSQE_IO_DRAIN_BIT,
506 REQ_F_LINK_BIT = IOSQE_IO_LINK_BIT,
507 REQ_F_HARDLINK_BIT = IOSQE_IO_HARDLINK_BIT,
508 REQ_F_FORCE_ASYNC_BIT = IOSQE_ASYNC_BIT,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700509 REQ_F_BUFFER_SELECT_BIT = IOSQE_BUFFER_SELECT_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300510
Pavel Begunkovdea3b492020-04-12 02:05:04 +0300511 REQ_F_LINK_HEAD_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300512 REQ_F_LINK_NEXT_BIT,
513 REQ_F_FAIL_LINK_BIT,
514 REQ_F_INFLIGHT_BIT,
515 REQ_F_CUR_POS_BIT,
516 REQ_F_NOWAIT_BIT,
517 REQ_F_IOPOLL_COMPLETED_BIT,
518 REQ_F_LINK_TIMEOUT_BIT,
519 REQ_F_TIMEOUT_BIT,
520 REQ_F_ISREG_BIT,
521 REQ_F_MUST_PUNT_BIT,
522 REQ_F_TIMEOUT_NOSEQ_BIT,
523 REQ_F_COMP_LOCKED_BIT,
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300524 REQ_F_NEED_CLEANUP_BIT,
Jens Axboe2ca10252020-02-13 17:17:35 -0700525 REQ_F_OVERFLOW_BIT,
Jens Axboed7718a92020-02-14 22:23:12 -0700526 REQ_F_POLLED_BIT,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700527 REQ_F_BUFFER_SELECTED_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 Axboed7718a92020-02-14 22:23:12 -0700581};
582
583struct async_poll {
584 struct io_poll_iocb poll;
585 struct io_wq_work work;
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300586};
587
Jens Axboe09bb8392019-03-13 12:39:28 -0600588/*
589 * NOTE! Each of the iocb union members has the file pointer
590 * as the first entry in their struct definition. So you can
591 * access the file pointer through any of the sub-structs,
592 * or directly as just 'ki_filp' in this struct.
593 */
Jens Axboe2b188cc2019-01-07 10:46:33 -0700594struct io_kiocb {
Jens Axboe221c5eb2019-01-17 09:41:58 -0700595 union {
Jens Axboe09bb8392019-03-13 12:39:28 -0600596 struct file *file;
Jens Axboe9adbd452019-12-20 08:45:55 -0700597 struct io_rw rw;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700598 struct io_poll_iocb poll;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700599 struct io_accept accept;
600 struct io_sync sync;
Jens Axboefbf23842019-12-17 18:45:56 -0700601 struct io_cancel cancel;
Jens Axboeb29472e2019-12-17 18:50:29 -0700602 struct io_timeout timeout;
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700603 struct io_connect connect;
Jens Axboee47293f2019-12-20 08:58:21 -0700604 struct io_sr_msg sr_msg;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700605 struct io_open open;
Jens Axboeb5dba592019-12-11 14:02:38 -0700606 struct io_close close;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700607 struct io_files_update files_update;
Jens Axboe4840e412019-12-25 22:03:45 -0700608 struct io_fadvise fadvise;
Jens Axboec1ca7572019-12-25 22:18:28 -0700609 struct io_madvise madvise;
Jens Axboe3e4827b2020-01-08 15:18:09 -0700610 struct io_epoll epoll;
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300611 struct io_splice splice;
Jens Axboeddf0322d2020-02-23 16:41:33 -0700612 struct io_provide_buf pbuf;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700613 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700614
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700615 struct io_async_ctx *io;
Pavel Begunkovc398ecb2020-04-09 08:17:59 +0300616 int cflags;
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +0300617 bool needs_fixed_file;
Jens Axboed625c6e2019-12-17 19:53:05 -0700618 u8 opcode;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700619
620 struct io_ring_ctx *ctx;
Jens Axboed7718a92020-02-14 22:23:12 -0700621 struct list_head list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700622 unsigned int flags;
Jens Axboec16361c2019-01-17 08:39:48 -0700623 refcount_t refs;
Jens Axboe3537b6a2020-04-03 11:19:06 -0600624 struct task_struct *task;
625 unsigned long fsize;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700626 u64 user_data;
Jens Axboe9e645e112019-05-10 16:07:28 -0600627 u32 result;
Jens Axboede0617e2019-04-06 21:51:27 -0600628 u32 sequence;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700629
Jens Axboed7718a92020-02-14 22:23:12 -0700630 struct list_head link_list;
631
Jens Axboefcb323c2019-10-24 12:39:47 -0600632 struct list_head inflight_entry;
633
Xiaoguang Wang05589552020-03-31 14:05:18 +0800634 struct percpu_ref *fixed_file_refs;
635
Jens Axboeb41e9852020-02-17 09:52:41 -0700636 union {
637 /*
638 * Only commands that never go async can use the below fields,
Jens Axboed7718a92020-02-14 22:23:12 -0700639 * obviously. Right now only IORING_OP_POLL_ADD uses them, and
640 * async armed poll handlers for regular commands. The latter
641 * restore the work, if needed.
Jens Axboeb41e9852020-02-17 09:52:41 -0700642 */
643 struct {
Jens Axboeb41e9852020-02-17 09:52:41 -0700644 struct callback_head task_work;
Jens Axboed7718a92020-02-14 22:23:12 -0700645 struct hlist_node hash_node;
646 struct async_poll *apoll;
Jens Axboeb41e9852020-02-17 09:52:41 -0700647 };
648 struct io_wq_work work;
649 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700650};
651
652#define IO_PLUG_THRESHOLD 2
Jens Axboedef596e2019-01-09 08:59:42 -0700653#define IO_IOPOLL_BATCH 8
Jens Axboe2b188cc2019-01-07 10:46:33 -0700654
Jens Axboe9a56a232019-01-09 09:06:50 -0700655struct io_submit_state {
656 struct blk_plug plug;
657
658 /*
Jens Axboe2579f912019-01-09 09:10:43 -0700659 * io_kiocb alloc cache
660 */
661 void *reqs[IO_IOPOLL_BATCH];
Pavel Begunkov6c8a3132020-02-01 03:58:00 +0300662 unsigned int free_reqs;
Jens Axboe2579f912019-01-09 09:10:43 -0700663
664 /*
Jens Axboe9a56a232019-01-09 09:06:50 -0700665 * File reference cache
666 */
667 struct file *file;
668 unsigned int fd;
669 unsigned int has_refs;
670 unsigned int used_refs;
671 unsigned int ios_left;
672};
673
Jens Axboed3656342019-12-18 09:50:26 -0700674struct io_op_def {
675 /* needs req->io allocated for deferral/async */
676 unsigned async_ctx : 1;
677 /* needs current->mm setup, does mm access */
678 unsigned needs_mm : 1;
679 /* needs req->file assigned */
680 unsigned needs_file : 1;
681 /* needs req->file assigned IFF fd is >= 0 */
682 unsigned fd_non_neg : 1;
683 /* 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 Axboed3656342019-12-18 09:50:26 -0700785 .needs_file = 1,
786 .fd_non_neg = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700787 .file_table = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700788 .needs_fs = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700789 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300790 [IORING_OP_CLOSE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700791 .needs_file = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700792 .file_table = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700793 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300794 [IORING_OP_FILES_UPDATE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700795 .needs_mm = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700796 .file_table = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700797 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300798 [IORING_OP_STATX] = {
Jens Axboed3656342019-12-18 09:50:26 -0700799 .needs_mm = 1,
800 .needs_file = 1,
801 .fd_non_neg = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700802 .needs_fs = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700803 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300804 [IORING_OP_READ] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -0700805 .needs_mm = 1,
806 .needs_file = 1,
807 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700808 .pollin = 1,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700809 .buffer_select = 1,
Jens Axboe3a6820f2019-12-22 15:19:35 -0700810 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300811 [IORING_OP_WRITE] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -0700812 .needs_mm = 1,
813 .needs_file = 1,
814 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700815 .pollout = 1,
Jens Axboe3a6820f2019-12-22 15:19:35 -0700816 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300817 [IORING_OP_FADVISE] = {
Jens Axboe4840e412019-12-25 22:03:45 -0700818 .needs_file = 1,
819 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300820 [IORING_OP_MADVISE] = {
Jens Axboec1ca7572019-12-25 22:18:28 -0700821 .needs_mm = 1,
822 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300823 [IORING_OP_SEND] = {
Jens Axboefddafac2020-01-04 20:19:44 -0700824 .needs_mm = 1,
825 .needs_file = 1,
826 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700827 .pollout = 1,
Jens Axboefddafac2020-01-04 20:19:44 -0700828 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300829 [IORING_OP_RECV] = {
Jens Axboefddafac2020-01-04 20:19:44 -0700830 .needs_mm = 1,
831 .needs_file = 1,
832 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700833 .pollin = 1,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700834 .buffer_select = 1,
Jens Axboefddafac2020-01-04 20:19:44 -0700835 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300836 [IORING_OP_OPENAT2] = {
Jens Axboecebdb982020-01-08 17:59:24 -0700837 .needs_file = 1,
838 .fd_non_neg = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700839 .file_table = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700840 .needs_fs = 1,
Jens Axboecebdb982020-01-08 17:59:24 -0700841 },
Jens Axboe3e4827b2020-01-08 15:18:09 -0700842 [IORING_OP_EPOLL_CTL] = {
843 .unbound_nonreg_file = 1,
844 .file_table = 1,
845 },
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300846 [IORING_OP_SPLICE] = {
847 .needs_file = 1,
848 .hash_reg_file = 1,
849 .unbound_nonreg_file = 1,
Jens Axboeddf0322d2020-02-23 16:41:33 -0700850 },
851 [IORING_OP_PROVIDE_BUFFERS] = {},
Jens Axboe067524e2020-03-02 16:32:28 -0700852 [IORING_OP_REMOVE_BUFFERS] = {},
Jens Axboed3656342019-12-18 09:50:26 -0700853};
854
Jens Axboe561fb042019-10-24 07:25:42 -0600855static void io_wq_submit_work(struct io_wq_work **workptr);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700856static void io_cqring_fill_event(struct io_kiocb *req, long res);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800857static void io_put_req(struct io_kiocb *req);
Jens Axboe978db572019-11-14 22:39:04 -0700858static void __io_double_put_req(struct io_kiocb *req);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700859static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req);
860static void io_queue_linked_timeout(struct io_kiocb *req);
Jens Axboe05f3fb32019-12-09 11:22:50 -0700861static int __io_sqe_files_update(struct io_ring_ctx *ctx,
862 struct io_uring_files_update *ip,
863 unsigned nr_args);
Jens Axboef86cd202020-01-29 13:46:44 -0700864static int io_grab_files(struct io_kiocb *req);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300865static void io_cleanup_req(struct io_kiocb *req);
Jens Axboeb41e9852020-02-17 09:52:41 -0700866static int io_file_get(struct io_submit_state *state, struct io_kiocb *req,
867 int fd, struct file **out_file, bool fixed);
868static void __io_queue_sqe(struct io_kiocb *req,
869 const struct io_uring_sqe *sqe);
Jens Axboede0617e2019-04-06 21:51:27 -0600870
Jens Axboe2b188cc2019-01-07 10:46:33 -0700871static struct kmem_cache *req_cachep;
872
873static const struct file_operations io_uring_fops;
874
875struct sock *io_uring_get_socket(struct file *file)
876{
877#if defined(CONFIG_UNIX)
878 if (file->f_op == &io_uring_fops) {
879 struct io_ring_ctx *ctx = file->private_data;
880
881 return ctx->ring_sock->sk;
882 }
883#endif
884 return NULL;
885}
886EXPORT_SYMBOL(io_uring_get_socket);
887
888static void io_ring_ctx_ref_free(struct percpu_ref *ref)
889{
890 struct io_ring_ctx *ctx = container_of(ref, struct io_ring_ctx, refs);
891
Jens Axboe206aefd2019-11-07 18:27:42 -0700892 complete(&ctx->completions[0]);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700893}
894
895static struct io_ring_ctx *io_ring_ctx_alloc(struct io_uring_params *p)
896{
897 struct io_ring_ctx *ctx;
Jens Axboe78076bb2019-12-04 19:56:40 -0700898 int hash_bits;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700899
900 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
901 if (!ctx)
902 return NULL;
903
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700904 ctx->fallback_req = kmem_cache_alloc(req_cachep, GFP_KERNEL);
905 if (!ctx->fallback_req)
906 goto err;
907
Jens Axboe206aefd2019-11-07 18:27:42 -0700908 ctx->completions = kmalloc(2 * sizeof(struct completion), GFP_KERNEL);
909 if (!ctx->completions)
910 goto err;
911
Jens Axboe78076bb2019-12-04 19:56:40 -0700912 /*
913 * Use 5 bits less than the max cq entries, that should give us around
914 * 32 entries per hash list if totally full and uniformly spread.
915 */
916 hash_bits = ilog2(p->cq_entries);
917 hash_bits -= 5;
918 if (hash_bits <= 0)
919 hash_bits = 1;
920 ctx->cancel_hash_bits = hash_bits;
921 ctx->cancel_hash = kmalloc((1U << hash_bits) * sizeof(struct hlist_head),
922 GFP_KERNEL);
923 if (!ctx->cancel_hash)
924 goto err;
925 __hash_init(ctx->cancel_hash, 1U << hash_bits);
926
Roman Gushchin21482892019-05-07 10:01:48 -0700927 if (percpu_ref_init(&ctx->refs, io_ring_ctx_ref_free,
Jens Axboe206aefd2019-11-07 18:27:42 -0700928 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL))
929 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700930
931 ctx->flags = p->flags;
932 init_waitqueue_head(&ctx->cq_wait);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700933 INIT_LIST_HEAD(&ctx->cq_overflow_list);
Jens Axboe206aefd2019-11-07 18:27:42 -0700934 init_completion(&ctx->completions[0]);
935 init_completion(&ctx->completions[1]);
Jens Axboe5a2e7452020-02-23 16:23:11 -0700936 idr_init(&ctx->io_buffer_idr);
Jens Axboe071698e2020-01-28 10:04:42 -0700937 idr_init(&ctx->personality_idr);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700938 mutex_init(&ctx->uring_lock);
939 init_waitqueue_head(&ctx->wait);
940 spin_lock_init(&ctx->completion_lock);
Jens Axboedef596e2019-01-09 08:59:42 -0700941 INIT_LIST_HEAD(&ctx->poll_list);
Jens Axboede0617e2019-04-06 21:51:27 -0600942 INIT_LIST_HEAD(&ctx->defer_list);
Jens Axboe5262f562019-09-17 12:26:57 -0600943 INIT_LIST_HEAD(&ctx->timeout_list);
Jens Axboefcb323c2019-10-24 12:39:47 -0600944 init_waitqueue_head(&ctx->inflight_wait);
945 spin_lock_init(&ctx->inflight_lock);
946 INIT_LIST_HEAD(&ctx->inflight_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700947 return ctx;
Jens Axboe206aefd2019-11-07 18:27:42 -0700948err:
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700949 if (ctx->fallback_req)
950 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe206aefd2019-11-07 18:27:42 -0700951 kfree(ctx->completions);
Jens Axboe78076bb2019-12-04 19:56:40 -0700952 kfree(ctx->cancel_hash);
Jens Axboe206aefd2019-11-07 18:27:42 -0700953 kfree(ctx);
954 return NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700955}
956
Bob Liu9d858b22019-11-13 18:06:25 +0800957static inline bool __req_need_defer(struct io_kiocb *req)
Jens Axboede0617e2019-04-06 21:51:27 -0600958{
Jackie Liua197f662019-11-08 08:09:12 -0700959 struct io_ring_ctx *ctx = req->ctx;
960
Jens Axboe498ccd92019-10-25 10:04:25 -0600961 return req->sequence != ctx->cached_cq_tail + ctx->cached_sq_dropped
962 + atomic_read(&ctx->cached_cq_overflow);
Jens Axboede0617e2019-04-06 21:51:27 -0600963}
964
Bob Liu9d858b22019-11-13 18:06:25 +0800965static inline bool req_need_defer(struct io_kiocb *req)
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600966{
Pavel Begunkov87987892020-01-18 01:22:30 +0300967 if (unlikely(req->flags & REQ_F_IO_DRAIN))
Bob Liu9d858b22019-11-13 18:06:25 +0800968 return __req_need_defer(req);
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600969
Bob Liu9d858b22019-11-13 18:06:25 +0800970 return false;
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600971}
972
973static struct io_kiocb *io_get_deferred_req(struct io_ring_ctx *ctx)
Jens Axboede0617e2019-04-06 21:51:27 -0600974{
975 struct io_kiocb *req;
976
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600977 req = list_first_entry_or_null(&ctx->defer_list, struct io_kiocb, list);
Bob Liu9d858b22019-11-13 18:06:25 +0800978 if (req && !req_need_defer(req)) {
Jens Axboede0617e2019-04-06 21:51:27 -0600979 list_del_init(&req->list);
980 return req;
981 }
982
983 return NULL;
984}
985
Jens Axboe5262f562019-09-17 12:26:57 -0600986static struct io_kiocb *io_get_timeout_req(struct io_ring_ctx *ctx)
987{
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600988 struct io_kiocb *req;
989
990 req = list_first_entry_or_null(&ctx->timeout_list, struct io_kiocb, list);
Jens Axboe93bd25b2019-11-11 23:34:31 -0700991 if (req) {
992 if (req->flags & REQ_F_TIMEOUT_NOSEQ)
993 return NULL;
Linus Torvaldsfb4b3d32019-11-25 10:40:27 -0800994 if (!__req_need_defer(req)) {
Jens Axboe93bd25b2019-11-11 23:34:31 -0700995 list_del_init(&req->list);
996 return req;
997 }
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600998 }
999
1000 return NULL;
Jens Axboe5262f562019-09-17 12:26:57 -06001001}
1002
Jens Axboede0617e2019-04-06 21:51:27 -06001003static void __io_commit_cqring(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001004{
Hristo Venev75b28af2019-08-26 17:23:46 +00001005 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001006
Pavel Begunkov07910152020-01-17 03:52:46 +03001007 /* order cqe stores with ring update */
1008 smp_store_release(&rings->cq.tail, ctx->cached_cq_tail);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001009
Pavel Begunkov07910152020-01-17 03:52:46 +03001010 if (wq_has_sleeper(&ctx->cq_wait)) {
1011 wake_up_interruptible(&ctx->cq_wait);
1012 kill_fasync(&ctx->cq_fasync, SIGIO, POLL_IN);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001013 }
1014}
1015
Jens Axboecccf0ee2020-01-27 16:34:48 -07001016static inline void io_req_work_grab_env(struct io_kiocb *req,
1017 const struct io_op_def *def)
Jens Axboe18d9be12019-09-10 09:13:05 -06001018{
Jens Axboecccf0ee2020-01-27 16:34:48 -07001019 if (!req->work.mm && def->needs_mm) {
1020 mmgrab(current->mm);
1021 req->work.mm = current->mm;
1022 }
1023 if (!req->work.creds)
1024 req->work.creds = get_current_cred();
Jens Axboeff002b32020-02-07 16:05:21 -07001025 if (!req->work.fs && def->needs_fs) {
1026 spin_lock(&current->fs->lock);
1027 if (!current->fs->in_exec) {
1028 req->work.fs = current->fs;
1029 req->work.fs->users++;
1030 } else {
1031 req->work.flags |= IO_WQ_WORK_CANCEL;
1032 }
1033 spin_unlock(&current->fs->lock);
1034 }
Jens Axboe6ab23142020-02-08 20:23:59 -07001035 if (!req->work.task_pid)
1036 req->work.task_pid = task_pid_vnr(current);
Jens Axboecccf0ee2020-01-27 16:34:48 -07001037}
1038
1039static inline void io_req_work_drop_env(struct io_kiocb *req)
1040{
1041 if (req->work.mm) {
1042 mmdrop(req->work.mm);
1043 req->work.mm = NULL;
1044 }
1045 if (req->work.creds) {
1046 put_cred(req->work.creds);
1047 req->work.creds = NULL;
1048 }
Jens Axboeff002b32020-02-07 16:05:21 -07001049 if (req->work.fs) {
1050 struct fs_struct *fs = req->work.fs;
1051
1052 spin_lock(&req->work.fs->lock);
1053 if (--fs->users)
1054 fs = NULL;
1055 spin_unlock(&req->work.fs->lock);
1056 if (fs)
1057 free_fs_struct(fs);
1058 }
Jens Axboe561fb042019-10-24 07:25:42 -06001059}
1060
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001061static inline void io_prep_async_work(struct io_kiocb *req,
Jens Axboe94ae5e72019-11-14 19:39:52 -07001062 struct io_kiocb **link)
Jens Axboe561fb042019-10-24 07:25:42 -06001063{
Jens Axboed3656342019-12-18 09:50:26 -07001064 const struct io_op_def *def = &io_op_defs[req->opcode];
Jens Axboe54a91f32019-09-10 09:15:04 -06001065
Jens Axboed3656342019-12-18 09:50:26 -07001066 if (req->flags & REQ_F_ISREG) {
1067 if (def->hash_reg_file)
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001068 io_wq_hash_work(&req->work, file_inode(req->file));
Jens Axboed3656342019-12-18 09:50:26 -07001069 } else {
1070 if (def->unbound_nonreg_file)
Jens Axboe3529d8c2019-12-19 18:24:38 -07001071 req->work.flags |= IO_WQ_WORK_UNBOUND;
Jens Axboe54a91f32019-09-10 09:15:04 -06001072 }
Jens Axboecccf0ee2020-01-27 16:34:48 -07001073
1074 io_req_work_grab_env(req, def);
Jens Axboe54a91f32019-09-10 09:15:04 -06001075
Jens Axboe94ae5e72019-11-14 19:39:52 -07001076 *link = io_prep_linked_timeout(req);
Jens Axboe561fb042019-10-24 07:25:42 -06001077}
1078
Jackie Liua197f662019-11-08 08:09:12 -07001079static inline void io_queue_async_work(struct io_kiocb *req)
Jens Axboe561fb042019-10-24 07:25:42 -06001080{
Jackie Liua197f662019-11-08 08:09:12 -07001081 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001082 struct io_kiocb *link;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001083
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001084 io_prep_async_work(req, &link);
Jens Axboe561fb042019-10-24 07:25:42 -06001085
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001086 trace_io_uring_queue_async_work(ctx, io_wq_is_hashed(&req->work), req,
1087 &req->work, req->flags);
1088 io_wq_enqueue(ctx->io_wq, &req->work);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001089
1090 if (link)
1091 io_queue_linked_timeout(link);
Jens Axboe18d9be12019-09-10 09:13:05 -06001092}
1093
Jens Axboe5262f562019-09-17 12:26:57 -06001094static void io_kill_timeout(struct io_kiocb *req)
1095{
1096 int ret;
1097
Jens Axboe2d283902019-12-04 11:08:05 -07001098 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe5262f562019-09-17 12:26:57 -06001099 if (ret != -1) {
1100 atomic_inc(&req->ctx->cq_timeouts);
Jens Axboe842f9612019-10-29 12:34:10 -06001101 list_del_init(&req->list);
Pavel Begunkovf0e20b82020-03-07 01:15:22 +03001102 req->flags |= REQ_F_COMP_LOCKED;
Jens Axboe78e19bb2019-11-06 15:21:34 -07001103 io_cqring_fill_event(req, 0);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001104 io_put_req(req);
Jens Axboe5262f562019-09-17 12:26:57 -06001105 }
1106}
1107
1108static void io_kill_timeouts(struct io_ring_ctx *ctx)
1109{
1110 struct io_kiocb *req, *tmp;
1111
1112 spin_lock_irq(&ctx->completion_lock);
1113 list_for_each_entry_safe(req, tmp, &ctx->timeout_list, list)
1114 io_kill_timeout(req);
1115 spin_unlock_irq(&ctx->completion_lock);
1116}
1117
Jens Axboede0617e2019-04-06 21:51:27 -06001118static void io_commit_cqring(struct io_ring_ctx *ctx)
1119{
1120 struct io_kiocb *req;
1121
Jens Axboe5262f562019-09-17 12:26:57 -06001122 while ((req = io_get_timeout_req(ctx)) != NULL)
1123 io_kill_timeout(req);
1124
Jens Axboede0617e2019-04-06 21:51:27 -06001125 __io_commit_cqring(ctx);
1126
Pavel Begunkov87987892020-01-18 01:22:30 +03001127 while ((req = io_get_deferred_req(ctx)) != NULL)
Jackie Liua197f662019-11-08 08:09:12 -07001128 io_queue_async_work(req);
Jens Axboede0617e2019-04-06 21:51:27 -06001129}
1130
Jens Axboe2b188cc2019-01-07 10:46:33 -07001131static struct io_uring_cqe *io_get_cqring(struct io_ring_ctx *ctx)
1132{
Hristo Venev75b28af2019-08-26 17:23:46 +00001133 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001134 unsigned tail;
1135
1136 tail = ctx->cached_cq_tail;
Stefan Bühler115e12e2019-04-24 23:54:18 +02001137 /*
1138 * writes to the cq entry need to come after reading head; the
1139 * control dependency is enough as we're using WRITE_ONCE to
1140 * fill the cq entry
1141 */
Hristo Venev75b28af2019-08-26 17:23:46 +00001142 if (tail - READ_ONCE(rings->cq.head) == rings->cq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001143 return NULL;
1144
1145 ctx->cached_cq_tail++;
Hristo Venev75b28af2019-08-26 17:23:46 +00001146 return &rings->cqes[tail & ctx->cq_mask];
Jens Axboe2b188cc2019-01-07 10:46:33 -07001147}
1148
Jens Axboef2842ab2020-01-08 11:04:00 -07001149static inline bool io_should_trigger_evfd(struct io_ring_ctx *ctx)
1150{
Jens Axboef0b493e2020-02-01 21:30:11 -07001151 if (!ctx->cq_ev_fd)
1152 return false;
Jens Axboef2842ab2020-01-08 11:04:00 -07001153 if (!ctx->eventfd_async)
1154 return true;
Jens Axboeb41e9852020-02-17 09:52:41 -07001155 return io_wq_current_is_worker();
Jens Axboef2842ab2020-01-08 11:04:00 -07001156}
1157
Jens Axboeb41e9852020-02-17 09:52:41 -07001158static void io_cqring_ev_posted(struct io_ring_ctx *ctx)
Jens Axboe8c838782019-03-12 15:48:16 -06001159{
1160 if (waitqueue_active(&ctx->wait))
1161 wake_up(&ctx->wait);
1162 if (waitqueue_active(&ctx->sqo_wait))
1163 wake_up(&ctx->sqo_wait);
Jens Axboeb41e9852020-02-17 09:52:41 -07001164 if (io_should_trigger_evfd(ctx))
Jens Axboe9b402842019-04-11 11:45:41 -06001165 eventfd_signal(ctx->cq_ev_fd, 1);
Jens Axboe8c838782019-03-12 15:48:16 -06001166}
1167
Jens Axboec4a2ed72019-11-21 21:01:26 -07001168/* Returns true if there are no backlogged entries after the flush */
1169static bool io_cqring_overflow_flush(struct io_ring_ctx *ctx, bool force)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001170{
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001171 struct io_rings *rings = ctx->rings;
1172 struct io_uring_cqe *cqe;
1173 struct io_kiocb *req;
1174 unsigned long flags;
1175 LIST_HEAD(list);
1176
1177 if (!force) {
1178 if (list_empty_careful(&ctx->cq_overflow_list))
Jens Axboec4a2ed72019-11-21 21:01:26 -07001179 return true;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001180 if ((ctx->cached_cq_tail - READ_ONCE(rings->cq.head) ==
1181 rings->cq_ring_entries))
Jens Axboec4a2ed72019-11-21 21:01:26 -07001182 return false;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001183 }
1184
1185 spin_lock_irqsave(&ctx->completion_lock, flags);
1186
1187 /* if force is set, the ring is going away. always drop after that */
1188 if (force)
Jens Axboe69b3e542020-01-08 11:01:46 -07001189 ctx->cq_overflow_flushed = 1;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001190
Jens Axboec4a2ed72019-11-21 21:01:26 -07001191 cqe = NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001192 while (!list_empty(&ctx->cq_overflow_list)) {
1193 cqe = io_get_cqring(ctx);
1194 if (!cqe && !force)
1195 break;
1196
1197 req = list_first_entry(&ctx->cq_overflow_list, struct io_kiocb,
1198 list);
1199 list_move(&req->list, &list);
Jens Axboe2ca10252020-02-13 17:17:35 -07001200 req->flags &= ~REQ_F_OVERFLOW;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001201 if (cqe) {
1202 WRITE_ONCE(cqe->user_data, req->user_data);
1203 WRITE_ONCE(cqe->res, req->result);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001204 WRITE_ONCE(cqe->flags, req->cflags);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001205 } else {
1206 WRITE_ONCE(ctx->rings->cq_overflow,
1207 atomic_inc_return(&ctx->cached_cq_overflow));
1208 }
1209 }
1210
1211 io_commit_cqring(ctx);
Jens Axboead3eb2c2019-12-18 17:12:20 -07001212 if (cqe) {
1213 clear_bit(0, &ctx->sq_check_overflow);
1214 clear_bit(0, &ctx->cq_check_overflow);
1215 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001216 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1217 io_cqring_ev_posted(ctx);
1218
1219 while (!list_empty(&list)) {
1220 req = list_first_entry(&list, struct io_kiocb, list);
1221 list_del(&req->list);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001222 io_put_req(req);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001223 }
Jens Axboec4a2ed72019-11-21 21:01:26 -07001224
1225 return cqe != NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001226}
1227
Jens Axboebcda7ba2020-02-23 16:42:51 -07001228static void __io_cqring_fill_event(struct io_kiocb *req, long res, long cflags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001229{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001230 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001231 struct io_uring_cqe *cqe;
1232
Jens Axboe78e19bb2019-11-06 15:21:34 -07001233 trace_io_uring_complete(ctx, req->user_data, res);
Jens Axboe51c3ff62019-11-03 06:52:50 -07001234
Jens Axboe2b188cc2019-01-07 10:46:33 -07001235 /*
1236 * If we can't get a cq entry, userspace overflowed the
1237 * submission (by quite a lot). Increment the overflow count in
1238 * the ring.
1239 */
1240 cqe = io_get_cqring(ctx);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001241 if (likely(cqe)) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001242 WRITE_ONCE(cqe->user_data, req->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001243 WRITE_ONCE(cqe->res, res);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001244 WRITE_ONCE(cqe->flags, cflags);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001245 } else if (ctx->cq_overflow_flushed) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07001246 WRITE_ONCE(ctx->rings->cq_overflow,
1247 atomic_inc_return(&ctx->cached_cq_overflow));
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001248 } else {
Jens Axboead3eb2c2019-12-18 17:12:20 -07001249 if (list_empty(&ctx->cq_overflow_list)) {
1250 set_bit(0, &ctx->sq_check_overflow);
1251 set_bit(0, &ctx->cq_check_overflow);
1252 }
Jens Axboe2ca10252020-02-13 17:17:35 -07001253 req->flags |= REQ_F_OVERFLOW;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001254 refcount_inc(&req->refs);
1255 req->result = res;
Jens Axboebcda7ba2020-02-23 16:42:51 -07001256 req->cflags = cflags;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001257 list_add_tail(&req->list, &ctx->cq_overflow_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001258 }
1259}
1260
Jens Axboebcda7ba2020-02-23 16:42:51 -07001261static void io_cqring_fill_event(struct io_kiocb *req, long res)
1262{
1263 __io_cqring_fill_event(req, res, 0);
1264}
1265
1266static void __io_cqring_add_event(struct io_kiocb *req, long res, long cflags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001267{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001268 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001269 unsigned long flags;
1270
1271 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001272 __io_cqring_fill_event(req, res, cflags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001273 io_commit_cqring(ctx);
1274 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1275
Jens Axboe8c838782019-03-12 15:48:16 -06001276 io_cqring_ev_posted(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001277}
1278
Jens Axboebcda7ba2020-02-23 16:42:51 -07001279static void io_cqring_add_event(struct io_kiocb *req, long res)
1280{
1281 __io_cqring_add_event(req, res, 0);
1282}
1283
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001284static inline bool io_is_fallback_req(struct io_kiocb *req)
1285{
1286 return req == (struct io_kiocb *)
1287 ((unsigned long) req->ctx->fallback_req & ~1UL);
1288}
1289
1290static struct io_kiocb *io_get_fallback_req(struct io_ring_ctx *ctx)
1291{
1292 struct io_kiocb *req;
1293
1294 req = ctx->fallback_req;
1295 if (!test_and_set_bit_lock(0, (unsigned long *) ctx->fallback_req))
1296 return req;
1297
1298 return NULL;
1299}
1300
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03001301static struct io_kiocb *io_alloc_req(struct io_ring_ctx *ctx,
1302 struct io_submit_state *state)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001303{
Jens Axboefd6fab22019-03-14 16:30:06 -06001304 gfp_t gfp = GFP_KERNEL | __GFP_NOWARN;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001305 struct io_kiocb *req;
1306
Jens Axboe2579f912019-01-09 09:10:43 -07001307 if (!state) {
Jens Axboefd6fab22019-03-14 16:30:06 -06001308 req = kmem_cache_alloc(req_cachep, gfp);
Jens Axboe2579f912019-01-09 09:10:43 -07001309 if (unlikely(!req))
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001310 goto fallback;
Jens Axboe2579f912019-01-09 09:10:43 -07001311 } else if (!state->free_reqs) {
1312 size_t sz;
1313 int ret;
1314
1315 sz = min_t(size_t, state->ios_left, ARRAY_SIZE(state->reqs));
Jens Axboefd6fab22019-03-14 16:30:06 -06001316 ret = kmem_cache_alloc_bulk(req_cachep, gfp, sz, state->reqs);
1317
1318 /*
1319 * Bulk alloc is all-or-nothing. If we fail to get a batch,
1320 * retry single alloc to be on the safe side.
1321 */
1322 if (unlikely(ret <= 0)) {
1323 state->reqs[0] = kmem_cache_alloc(req_cachep, gfp);
1324 if (!state->reqs[0])
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001325 goto fallback;
Jens Axboefd6fab22019-03-14 16:30:06 -06001326 ret = 1;
1327 }
Jens Axboe2579f912019-01-09 09:10:43 -07001328 state->free_reqs = ret - 1;
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03001329 req = state->reqs[ret - 1];
Jens Axboe2579f912019-01-09 09:10:43 -07001330 } else {
Jens Axboe2579f912019-01-09 09:10:43 -07001331 state->free_reqs--;
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03001332 req = state->reqs[state->free_reqs];
Jens Axboe2b188cc2019-01-07 10:46:33 -07001333 }
1334
Jens Axboe2579f912019-01-09 09:10:43 -07001335 return req;
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001336fallback:
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03001337 return io_get_fallback_req(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001338}
1339
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001340static inline void io_put_file(struct io_kiocb *req, struct file *file,
1341 bool fixed)
1342{
1343 if (fixed)
Xiaoguang Wang05589552020-03-31 14:05:18 +08001344 percpu_ref_put(req->fixed_file_refs);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001345 else
1346 fput(file);
1347}
1348
Jens Axboec6ca97b302019-12-28 12:11:08 -07001349static void __io_req_aux_free(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001350{
Pavel Begunkov929a3af2020-02-19 00:19:09 +03001351 if (req->flags & REQ_F_NEED_CLEANUP)
1352 io_cleanup_req(req);
1353
YueHaibing96fd84d2020-01-07 22:22:44 +08001354 kfree(req->io);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001355 if (req->file)
1356 io_put_file(req, req->file, (req->flags & REQ_F_FIXED_FILE));
Jens Axboe3537b6a2020-04-03 11:19:06 -06001357 if (req->task)
1358 put_task_struct(req->task);
Jens Axboecccf0ee2020-01-27 16:34:48 -07001359
1360 io_req_work_drop_env(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001361}
1362
1363static void __io_free_req(struct io_kiocb *req)
1364{
Jens Axboec6ca97b302019-12-28 12:11:08 -07001365 __io_req_aux_free(req);
Jens Axboefcb323c2019-10-24 12:39:47 -06001366
Jens Axboefcb323c2019-10-24 12:39:47 -06001367 if (req->flags & REQ_F_INFLIGHT) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001368 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06001369 unsigned long flags;
1370
1371 spin_lock_irqsave(&ctx->inflight_lock, flags);
1372 list_del(&req->inflight_entry);
1373 if (waitqueue_active(&ctx->inflight_wait))
1374 wake_up(&ctx->inflight_wait);
1375 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
1376 }
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03001377
1378 percpu_ref_put(&req->ctx->refs);
Pavel Begunkovb1e50e52020-04-08 08:58:44 +03001379 if (likely(!io_is_fallback_req(req)))
1380 kmem_cache_free(req_cachep, req);
1381 else
1382 clear_bit_unlock(0, (unsigned long *) req->ctx->fallback_req);
Jens Axboee65ef562019-03-12 10:16:44 -06001383}
1384
Jens Axboec6ca97b302019-12-28 12:11:08 -07001385struct req_batch {
1386 void *reqs[IO_IOPOLL_BATCH];
1387 int to_free;
1388 int need_iter;
1389};
1390
1391static void io_free_req_many(struct io_ring_ctx *ctx, struct req_batch *rb)
1392{
1393 if (!rb->to_free)
1394 return;
1395 if (rb->need_iter) {
1396 int i, inflight = 0;
1397 unsigned long flags;
1398
1399 for (i = 0; i < rb->to_free; i++) {
1400 struct io_kiocb *req = rb->reqs[i];
1401
Jens Axboe10fef4b2020-01-09 07:52:28 -07001402 if (req->flags & REQ_F_FIXED_FILE) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001403 req->file = NULL;
Xiaoguang Wang05589552020-03-31 14:05:18 +08001404 percpu_ref_put(req->fixed_file_refs);
Jens Axboe10fef4b2020-01-09 07:52:28 -07001405 }
Jens Axboec6ca97b302019-12-28 12:11:08 -07001406 if (req->flags & REQ_F_INFLIGHT)
1407 inflight++;
Jens Axboec6ca97b302019-12-28 12:11:08 -07001408 __io_req_aux_free(req);
1409 }
1410 if (!inflight)
1411 goto do_free;
1412
1413 spin_lock_irqsave(&ctx->inflight_lock, flags);
1414 for (i = 0; i < rb->to_free; i++) {
1415 struct io_kiocb *req = rb->reqs[i];
1416
Jens Axboe10fef4b2020-01-09 07:52:28 -07001417 if (req->flags & REQ_F_INFLIGHT) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001418 list_del(&req->inflight_entry);
1419 if (!--inflight)
1420 break;
1421 }
1422 }
1423 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
1424
1425 if (waitqueue_active(&ctx->inflight_wait))
1426 wake_up(&ctx->inflight_wait);
1427 }
1428do_free:
1429 kmem_cache_free_bulk(req_cachep, rb->to_free, rb->reqs);
1430 percpu_ref_put_many(&ctx->refs, rb->to_free);
Jens Axboec6ca97b302019-12-28 12:11:08 -07001431 rb->to_free = rb->need_iter = 0;
Jens Axboee65ef562019-03-12 10:16:44 -06001432}
1433
Jackie Liua197f662019-11-08 08:09:12 -07001434static bool io_link_cancel_timeout(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -06001435{
Jackie Liua197f662019-11-08 08:09:12 -07001436 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001437 int ret;
1438
Jens Axboe2d283902019-12-04 11:08:05 -07001439 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe2665abf2019-11-05 12:40:47 -07001440 if (ret != -1) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001441 io_cqring_fill_event(req, -ECANCELED);
Jens Axboe2665abf2019-11-05 12:40:47 -07001442 io_commit_cqring(ctx);
Pavel Begunkovdea3b492020-04-12 02:05:04 +03001443 req->flags &= ~REQ_F_LINK_HEAD;
Jackie Liuec9c02a2019-11-08 23:50:36 +08001444 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07001445 return true;
1446 }
1447
1448 return false;
1449}
1450
Jens Axboeba816ad2019-09-28 11:36:45 -06001451static void io_req_link_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboe9e645e112019-05-10 16:07:28 -06001452{
Jens Axboe2665abf2019-11-05 12:40:47 -07001453 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001454 bool wake_ev = false;
Jens Axboe9e645e112019-05-10 16:07:28 -06001455
Jens Axboe4d7dd462019-11-20 13:03:52 -07001456 /* Already got next link */
1457 if (req->flags & REQ_F_LINK_NEXT)
1458 return;
1459
Jens Axboe9e645e112019-05-10 16:07:28 -06001460 /*
1461 * The list should never be empty when we are called here. But could
1462 * potentially happen if the chain is messed up, check to be on the
1463 * safe side.
1464 */
Pavel Begunkov44932332019-12-05 16:16:35 +03001465 while (!list_empty(&req->link_list)) {
1466 struct io_kiocb *nxt = list_first_entry(&req->link_list,
1467 struct io_kiocb, link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001468
Pavel Begunkov44932332019-12-05 16:16:35 +03001469 if (unlikely((req->flags & REQ_F_LINK_TIMEOUT) &&
1470 (nxt->flags & REQ_F_TIMEOUT))) {
1471 list_del_init(&nxt->link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001472 wake_ev |= io_link_cancel_timeout(nxt);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001473 req->flags &= ~REQ_F_LINK_TIMEOUT;
1474 continue;
1475 }
Jens Axboe9e645e112019-05-10 16:07:28 -06001476
Pavel Begunkov44932332019-12-05 16:16:35 +03001477 list_del_init(&req->link_list);
1478 if (!list_empty(&nxt->link_list))
Pavel Begunkovdea3b492020-04-12 02:05:04 +03001479 nxt->flags |= REQ_F_LINK_HEAD;
Pavel Begunkovb18fdf72019-11-21 23:21:02 +03001480 *nxtptr = nxt;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001481 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06001482 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001483
Jens Axboe4d7dd462019-11-20 13:03:52 -07001484 req->flags |= REQ_F_LINK_NEXT;
Jens Axboe2665abf2019-11-05 12:40:47 -07001485 if (wake_ev)
1486 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001487}
1488
1489/*
Pavel Begunkovdea3b492020-04-12 02:05:04 +03001490 * Called if REQ_F_LINK_HEAD is set, and we fail the head request
Jens Axboe9e645e112019-05-10 16:07:28 -06001491 */
1492static void io_fail_links(struct io_kiocb *req)
1493{
Jens Axboe2665abf2019-11-05 12:40:47 -07001494 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001495 unsigned long flags;
1496
1497 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboe9e645e112019-05-10 16:07:28 -06001498
1499 while (!list_empty(&req->link_list)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03001500 struct io_kiocb *link = list_first_entry(&req->link_list,
1501 struct io_kiocb, link_list);
Jens Axboe9e645e112019-05-10 16:07:28 -06001502
Pavel Begunkov44932332019-12-05 16:16:35 +03001503 list_del_init(&link->link_list);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02001504 trace_io_uring_fail_link(req, link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001505
1506 if ((req->flags & REQ_F_LINK_TIMEOUT) &&
Jens Axboed625c6e2019-12-17 19:53:05 -07001507 link->opcode == IORING_OP_LINK_TIMEOUT) {
Jackie Liua197f662019-11-08 08:09:12 -07001508 io_link_cancel_timeout(link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001509 } else {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001510 io_cqring_fill_event(link, -ECANCELED);
Jens Axboe978db572019-11-14 22:39:04 -07001511 __io_double_put_req(link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001512 }
Jens Axboe5d960722019-11-19 15:31:28 -07001513 req->flags &= ~REQ_F_LINK_TIMEOUT;
Jens Axboe9e645e112019-05-10 16:07:28 -06001514 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001515
1516 io_commit_cqring(ctx);
1517 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1518 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001519}
1520
Jens Axboe4d7dd462019-11-20 13:03:52 -07001521static void io_req_find_next(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboe9e645e112019-05-10 16:07:28 -06001522{
Pavel Begunkovdea3b492020-04-12 02:05:04 +03001523 if (likely(!(req->flags & REQ_F_LINK_HEAD)))
Jens Axboe2665abf2019-11-05 12:40:47 -07001524 return;
Jens Axboe2665abf2019-11-05 12:40:47 -07001525
Jens Axboe9e645e112019-05-10 16:07:28 -06001526 /*
1527 * If LINK is set, we have dependent requests in this chain. If we
1528 * didn't fail this request, queue the first one up, moving any other
1529 * dependencies to the next request. In case of failure, fail the rest
1530 * of the chain.
1531 */
Jens Axboe2665abf2019-11-05 12:40:47 -07001532 if (req->flags & REQ_F_FAIL_LINK) {
1533 io_fail_links(req);
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001534 } else if ((req->flags & (REQ_F_LINK_TIMEOUT | REQ_F_COMP_LOCKED)) ==
1535 REQ_F_LINK_TIMEOUT) {
Jens Axboe2665abf2019-11-05 12:40:47 -07001536 struct io_ring_ctx *ctx = req->ctx;
1537 unsigned long flags;
1538
1539 /*
1540 * If this is a timeout link, we could be racing with the
1541 * timeout timer. Grab the completion lock for this case to
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001542 * protect against that.
Jens Axboe2665abf2019-11-05 12:40:47 -07001543 */
1544 spin_lock_irqsave(&ctx->completion_lock, flags);
1545 io_req_link_next(req, nxt);
1546 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1547 } else {
1548 io_req_link_next(req, nxt);
Jens Axboe9e645e112019-05-10 16:07:28 -06001549 }
Jens Axboe4d7dd462019-11-20 13:03:52 -07001550}
Jens Axboe9e645e112019-05-10 16:07:28 -06001551
Jackie Liuc69f8db2019-11-09 11:00:08 +08001552static void io_free_req(struct io_kiocb *req)
1553{
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001554 struct io_kiocb *nxt = NULL;
1555
1556 io_req_find_next(req, &nxt);
Pavel Begunkov70cf9f32019-11-21 23:21:00 +03001557 __io_free_req(req);
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001558
1559 if (nxt)
1560 io_queue_async_work(nxt);
Jackie Liuc69f8db2019-11-09 11:00:08 +08001561}
1562
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001563static void io_link_work_cb(struct io_wq_work **workptr)
1564{
Pavel Begunkov18a542f2020-03-23 00:23:29 +03001565 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
1566 struct io_kiocb *link;
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001567
Pavel Begunkov18a542f2020-03-23 00:23:29 +03001568 link = list_first_entry(&req->link_list, struct io_kiocb, link_list);
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001569 io_queue_linked_timeout(link);
1570 io_wq_submit_work(workptr);
1571}
1572
1573static void io_wq_assign_next(struct io_wq_work **workptr, struct io_kiocb *nxt)
1574{
1575 struct io_kiocb *link;
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001576 const struct io_op_def *def = &io_op_defs[nxt->opcode];
1577
1578 if ((nxt->flags & REQ_F_ISREG) && def->hash_reg_file)
1579 io_wq_hash_work(&nxt->work, file_inode(nxt->file));
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001580
1581 *workptr = &nxt->work;
1582 link = io_prep_linked_timeout(nxt);
Pavel Begunkov18a542f2020-03-23 00:23:29 +03001583 if (link)
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001584 nxt->work.func = io_link_work_cb;
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001585}
1586
Jens Axboeba816ad2019-09-28 11:36:45 -06001587/*
1588 * Drop reference to request, return next in chain (if there is one) if this
1589 * was the last reference to this request.
1590 */
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001591__attribute__((nonnull))
Jackie Liuec9c02a2019-11-08 23:50:36 +08001592static void io_put_req_find_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboee65ef562019-03-12 10:16:44 -06001593{
Jens Axboe2a44f462020-02-25 13:25:41 -07001594 if (refcount_dec_and_test(&req->refs)) {
1595 io_req_find_next(req, nxtptr);
Jens Axboe4d7dd462019-11-20 13:03:52 -07001596 __io_free_req(req);
Jens Axboe2a44f462020-02-25 13:25:41 -07001597 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001598}
1599
Jens Axboe2b188cc2019-01-07 10:46:33 -07001600static void io_put_req(struct io_kiocb *req)
1601{
Jens Axboedef596e2019-01-09 08:59:42 -07001602 if (refcount_dec_and_test(&req->refs))
1603 io_free_req(req);
1604}
1605
Pavel Begunkove9fd9392020-03-04 16:14:12 +03001606static void io_steal_work(struct io_kiocb *req,
1607 struct io_wq_work **workptr)
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001608{
1609 /*
1610 * It's in an io-wq worker, so there always should be at least
1611 * one reference, which will be dropped in io_put_work() just
1612 * after the current handler returns.
1613 *
1614 * It also means, that if the counter dropped to 1, then there is
1615 * no asynchronous users left, so it's safe to steal the next work.
1616 */
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001617 if (refcount_read(&req->refs) == 1) {
1618 struct io_kiocb *nxt = NULL;
1619
1620 io_req_find_next(req, &nxt);
1621 if (nxt)
1622 io_wq_assign_next(workptr, nxt);
1623 }
1624}
1625
Jens Axboe978db572019-11-14 22:39:04 -07001626/*
1627 * Must only be used if we don't need to care about links, usually from
1628 * within the completion handling itself.
1629 */
1630static void __io_double_put_req(struct io_kiocb *req)
Jens Axboea3a0e432019-08-20 11:03:11 -06001631{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001632 /* drop both submit and complete references */
1633 if (refcount_sub_and_test(2, &req->refs))
1634 __io_free_req(req);
1635}
1636
Jens Axboe978db572019-11-14 22:39:04 -07001637static void io_double_put_req(struct io_kiocb *req)
1638{
1639 /* drop both submit and complete references */
1640 if (refcount_sub_and_test(2, &req->refs))
1641 io_free_req(req);
1642}
1643
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001644static unsigned io_cqring_events(struct io_ring_ctx *ctx, bool noflush)
Jens Axboea3a0e432019-08-20 11:03:11 -06001645{
Jens Axboe84f97dc2019-11-06 11:27:53 -07001646 struct io_rings *rings = ctx->rings;
1647
Jens Axboead3eb2c2019-12-18 17:12:20 -07001648 if (test_bit(0, &ctx->cq_check_overflow)) {
1649 /*
1650 * noflush == true is from the waitqueue handler, just ensure
1651 * we wake up the task, and the next invocation will flush the
1652 * entries. We cannot safely to it from here.
1653 */
1654 if (noflush && !list_empty(&ctx->cq_overflow_list))
1655 return -1U;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001656
Jens Axboead3eb2c2019-12-18 17:12:20 -07001657 io_cqring_overflow_flush(ctx, false);
1658 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001659
Jens Axboea3a0e432019-08-20 11:03:11 -06001660 /* See comment at the top of this file */
1661 smp_rmb();
Jens Axboead3eb2c2019-12-18 17:12:20 -07001662 return ctx->cached_cq_tail - READ_ONCE(rings->cq.head);
Jens Axboea3a0e432019-08-20 11:03:11 -06001663}
1664
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03001665static inline unsigned int io_sqring_entries(struct io_ring_ctx *ctx)
1666{
1667 struct io_rings *rings = ctx->rings;
1668
1669 /* make sure SQ entry isn't read before tail */
1670 return smp_load_acquire(&rings->sq.tail) - ctx->cached_sq_head;
1671}
1672
Jens Axboe8237e042019-12-28 10:48:22 -07001673static inline bool io_req_multi_free(struct req_batch *rb, struct io_kiocb *req)
Jens Axboee94f1412019-12-19 12:06:02 -07001674{
Pavel Begunkovdea3b492020-04-12 02:05:04 +03001675 if ((req->flags & REQ_F_LINK_HEAD) || io_is_fallback_req(req))
Jens Axboec6ca97b302019-12-28 12:11:08 -07001676 return false;
Jens Axboee94f1412019-12-19 12:06:02 -07001677
Jens Axboec6ca97b302019-12-28 12:11:08 -07001678 if (!(req->flags & REQ_F_FIXED_FILE) || req->io)
1679 rb->need_iter++;
1680
1681 rb->reqs[rb->to_free++] = req;
1682 if (unlikely(rb->to_free == ARRAY_SIZE(rb->reqs)))
1683 io_free_req_many(req->ctx, rb);
1684 return true;
Jens Axboee94f1412019-12-19 12:06:02 -07001685}
1686
Jens Axboebcda7ba2020-02-23 16:42:51 -07001687static int io_put_kbuf(struct io_kiocb *req)
1688{
Jens Axboe4d954c22020-02-27 07:31:19 -07001689 struct io_buffer *kbuf;
Jens Axboebcda7ba2020-02-23 16:42:51 -07001690 int cflags;
1691
Jens Axboe4d954c22020-02-27 07:31:19 -07001692 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
Jens Axboebcda7ba2020-02-23 16:42:51 -07001693 cflags = kbuf->bid << IORING_CQE_BUFFER_SHIFT;
1694 cflags |= IORING_CQE_F_BUFFER;
1695 req->rw.addr = 0;
1696 kfree(kbuf);
1697 return cflags;
1698}
1699
Jens Axboedef596e2019-01-09 08:59:42 -07001700/*
1701 * Find and free completed poll iocbs
1702 */
1703static void io_iopoll_complete(struct io_ring_ctx *ctx, unsigned int *nr_events,
1704 struct list_head *done)
1705{
Jens Axboe8237e042019-12-28 10:48:22 -07001706 struct req_batch rb;
Jens Axboedef596e2019-01-09 08:59:42 -07001707 struct io_kiocb *req;
Jens Axboedef596e2019-01-09 08:59:42 -07001708
Jens Axboec6ca97b302019-12-28 12:11:08 -07001709 rb.to_free = rb.need_iter = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001710 while (!list_empty(done)) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07001711 int cflags = 0;
1712
Jens Axboedef596e2019-01-09 08:59:42 -07001713 req = list_first_entry(done, struct io_kiocb, list);
1714 list_del(&req->list);
1715
Jens Axboebcda7ba2020-02-23 16:42:51 -07001716 if (req->flags & REQ_F_BUFFER_SELECTED)
1717 cflags = io_put_kbuf(req);
1718
1719 __io_cqring_fill_event(req, req->result, cflags);
Jens Axboedef596e2019-01-09 08:59:42 -07001720 (*nr_events)++;
1721
Jens Axboe8237e042019-12-28 10:48:22 -07001722 if (refcount_dec_and_test(&req->refs) &&
1723 !io_req_multi_free(&rb, req))
1724 io_free_req(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001725 }
Jens Axboedef596e2019-01-09 08:59:42 -07001726
Jens Axboe09bb8392019-03-13 12:39:28 -06001727 io_commit_cqring(ctx);
Xiaoguang Wang32b22442020-03-11 09:26:09 +08001728 if (ctx->flags & IORING_SETUP_SQPOLL)
1729 io_cqring_ev_posted(ctx);
Jens Axboe8237e042019-12-28 10:48:22 -07001730 io_free_req_many(ctx, &rb);
Jens Axboedef596e2019-01-09 08:59:42 -07001731}
1732
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001733static void io_iopoll_queue(struct list_head *again)
1734{
1735 struct io_kiocb *req;
1736
1737 do {
1738 req = list_first_entry(again, struct io_kiocb, list);
1739 list_del(&req->list);
1740 refcount_inc(&req->refs);
1741 io_queue_async_work(req);
1742 } while (!list_empty(again));
1743}
1744
Jens Axboedef596e2019-01-09 08:59:42 -07001745static int io_do_iopoll(struct io_ring_ctx *ctx, unsigned int *nr_events,
1746 long min)
1747{
1748 struct io_kiocb *req, *tmp;
1749 LIST_HEAD(done);
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001750 LIST_HEAD(again);
Jens Axboedef596e2019-01-09 08:59:42 -07001751 bool spin;
1752 int ret;
1753
1754 /*
1755 * Only spin for completions if we don't have multiple devices hanging
1756 * off our complete list, and we're under the requested amount.
1757 */
1758 spin = !ctx->poll_multi_file && *nr_events < min;
1759
1760 ret = 0;
1761 list_for_each_entry_safe(req, tmp, &ctx->poll_list, list) {
Jens Axboe9adbd452019-12-20 08:45:55 -07001762 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboedef596e2019-01-09 08:59:42 -07001763
1764 /*
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001765 * Move completed and retryable entries to our local lists.
1766 * If we find a request that requires polling, break out
1767 * and complete those lists first, if we have entries there.
Jens Axboedef596e2019-01-09 08:59:42 -07001768 */
1769 if (req->flags & REQ_F_IOPOLL_COMPLETED) {
1770 list_move_tail(&req->list, &done);
1771 continue;
1772 }
1773 if (!list_empty(&done))
1774 break;
1775
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001776 if (req->result == -EAGAIN) {
1777 list_move_tail(&req->list, &again);
1778 continue;
1779 }
1780 if (!list_empty(&again))
1781 break;
1782
Jens Axboedef596e2019-01-09 08:59:42 -07001783 ret = kiocb->ki_filp->f_op->iopoll(kiocb, spin);
1784 if (ret < 0)
1785 break;
1786
1787 if (ret && spin)
1788 spin = false;
1789 ret = 0;
1790 }
1791
1792 if (!list_empty(&done))
1793 io_iopoll_complete(ctx, nr_events, &done);
1794
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001795 if (!list_empty(&again))
1796 io_iopoll_queue(&again);
1797
Jens Axboedef596e2019-01-09 08:59:42 -07001798 return ret;
1799}
1800
1801/*
Brian Gianforcarod195a662019-12-13 03:09:50 -08001802 * Poll for a minimum of 'min' events. Note that if min == 0 we consider that a
Jens Axboedef596e2019-01-09 08:59:42 -07001803 * non-spinning poll check - we'll still enter the driver poll loop, but only
1804 * as a non-spinning completion check.
1805 */
1806static int io_iopoll_getevents(struct io_ring_ctx *ctx, unsigned int *nr_events,
1807 long min)
1808{
Jens Axboe08f54392019-08-21 22:19:11 -06001809 while (!list_empty(&ctx->poll_list) && !need_resched()) {
Jens Axboedef596e2019-01-09 08:59:42 -07001810 int ret;
1811
1812 ret = io_do_iopoll(ctx, nr_events, min);
1813 if (ret < 0)
1814 return ret;
1815 if (!min || *nr_events >= min)
1816 return 0;
1817 }
1818
1819 return 1;
1820}
1821
1822/*
1823 * We can't just wait for polled events to come to us, we have to actively
1824 * find and complete them.
1825 */
1826static void io_iopoll_reap_events(struct io_ring_ctx *ctx)
1827{
1828 if (!(ctx->flags & IORING_SETUP_IOPOLL))
1829 return;
1830
1831 mutex_lock(&ctx->uring_lock);
1832 while (!list_empty(&ctx->poll_list)) {
1833 unsigned int nr_events = 0;
1834
1835 io_iopoll_getevents(ctx, &nr_events, 1);
Jens Axboe08f54392019-08-21 22:19:11 -06001836
1837 /*
1838 * Ensure we allow local-to-the-cpu processing to take place,
1839 * in this case we need to ensure that we reap all events.
1840 */
1841 cond_resched();
Jens Axboedef596e2019-01-09 08:59:42 -07001842 }
1843 mutex_unlock(&ctx->uring_lock);
1844}
1845
Xiaoguang Wangc7849be2020-02-22 14:46:05 +08001846static int io_iopoll_check(struct io_ring_ctx *ctx, unsigned *nr_events,
1847 long min)
Jens Axboedef596e2019-01-09 08:59:42 -07001848{
Jens Axboe2b2ed972019-10-25 10:06:15 -06001849 int iters = 0, ret = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001850
Xiaoguang Wangc7849be2020-02-22 14:46:05 +08001851 /*
1852 * We disallow the app entering submit/complete with polling, but we
1853 * still need to lock the ring to prevent racing with polled issue
1854 * that got punted to a workqueue.
1855 */
1856 mutex_lock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07001857 do {
1858 int tmin = 0;
1859
Jens Axboe500f9fb2019-08-19 12:15:59 -06001860 /*
Jens Axboea3a0e432019-08-20 11:03:11 -06001861 * Don't enter poll loop if we already have events pending.
1862 * If we do, we can potentially be spinning for commands that
1863 * already triggered a CQE (eg in error).
1864 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001865 if (io_cqring_events(ctx, false))
Jens Axboea3a0e432019-08-20 11:03:11 -06001866 break;
1867
1868 /*
Jens Axboe500f9fb2019-08-19 12:15:59 -06001869 * If a submit got punted to a workqueue, we can have the
1870 * application entering polling for a command before it gets
1871 * issued. That app will hold the uring_lock for the duration
1872 * of the poll right here, so we need to take a breather every
1873 * now and then to ensure that the issue has a chance to add
1874 * the poll to the issued list. Otherwise we can spin here
1875 * forever, while the workqueue is stuck trying to acquire the
1876 * very same mutex.
1877 */
1878 if (!(++iters & 7)) {
1879 mutex_unlock(&ctx->uring_lock);
1880 mutex_lock(&ctx->uring_lock);
1881 }
1882
Jens Axboedef596e2019-01-09 08:59:42 -07001883 if (*nr_events < min)
1884 tmin = min - *nr_events;
1885
1886 ret = io_iopoll_getevents(ctx, nr_events, tmin);
1887 if (ret <= 0)
1888 break;
1889 ret = 0;
1890 } while (min && !*nr_events && !need_resched());
1891
Jens Axboe500f9fb2019-08-19 12:15:59 -06001892 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07001893 return ret;
1894}
1895
Jens Axboe491381ce2019-10-17 09:20:46 -06001896static void kiocb_end_write(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001897{
Jens Axboe491381ce2019-10-17 09:20:46 -06001898 /*
1899 * Tell lockdep we inherited freeze protection from submission
1900 * thread.
1901 */
1902 if (req->flags & REQ_F_ISREG) {
1903 struct inode *inode = file_inode(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001904
Jens Axboe491381ce2019-10-17 09:20:46 -06001905 __sb_writers_acquired(inode->i_sb, SB_FREEZE_WRITE);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001906 }
Jens Axboe491381ce2019-10-17 09:20:46 -06001907 file_end_write(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001908}
1909
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001910static inline void req_set_fail_links(struct io_kiocb *req)
1911{
1912 if ((req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) == REQ_F_LINK)
1913 req->flags |= REQ_F_FAIL_LINK;
1914}
1915
Jens Axboeba816ad2019-09-28 11:36:45 -06001916static void io_complete_rw_common(struct kiocb *kiocb, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001917{
Jens Axboe9adbd452019-12-20 08:45:55 -07001918 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001919 int cflags = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001920
Jens Axboe491381ce2019-10-17 09:20:46 -06001921 if (kiocb->ki_flags & IOCB_WRITE)
1922 kiocb_end_write(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001923
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001924 if (res != req->result)
1925 req_set_fail_links(req);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001926 if (req->flags & REQ_F_BUFFER_SELECTED)
1927 cflags = io_put_kbuf(req);
1928 __io_cqring_add_event(req, res, cflags);
Jens Axboeba816ad2019-09-28 11:36:45 -06001929}
1930
1931static void io_complete_rw(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 Axboeba816ad2019-09-28 11:36:45 -06001934
1935 io_complete_rw_common(kiocb, res);
Jens Axboee65ef562019-03-12 10:16:44 -06001936 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001937}
1938
Jens Axboedef596e2019-01-09 08:59:42 -07001939static void io_complete_rw_iopoll(struct kiocb *kiocb, long res, long res2)
1940{
Jens Axboe9adbd452019-12-20 08:45:55 -07001941 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboedef596e2019-01-09 08:59:42 -07001942
Jens Axboe491381ce2019-10-17 09:20:46 -06001943 if (kiocb->ki_flags & IOCB_WRITE)
1944 kiocb_end_write(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001945
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001946 if (res != req->result)
1947 req_set_fail_links(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06001948 req->result = res;
Jens Axboedef596e2019-01-09 08:59:42 -07001949 if (res != -EAGAIN)
1950 req->flags |= REQ_F_IOPOLL_COMPLETED;
1951}
1952
1953/*
1954 * After the iocb has been issued, it's safe to be found on the poll list.
1955 * Adding the kiocb to the list AFTER submission ensures that we don't
1956 * find it from a io_iopoll_getevents() thread before the issuer is done
1957 * accessing the kiocb cookie.
1958 */
1959static void io_iopoll_req_issued(struct io_kiocb *req)
1960{
1961 struct io_ring_ctx *ctx = req->ctx;
1962
1963 /*
1964 * Track whether we have multiple files in our lists. This will impact
1965 * how we do polling eventually, not spinning if we're on potentially
1966 * different devices.
1967 */
1968 if (list_empty(&ctx->poll_list)) {
1969 ctx->poll_multi_file = false;
1970 } else if (!ctx->poll_multi_file) {
1971 struct io_kiocb *list_req;
1972
1973 list_req = list_first_entry(&ctx->poll_list, struct io_kiocb,
1974 list);
Jens Axboe9adbd452019-12-20 08:45:55 -07001975 if (list_req->file != req->file)
Jens Axboedef596e2019-01-09 08:59:42 -07001976 ctx->poll_multi_file = true;
1977 }
1978
1979 /*
1980 * For fast devices, IO may have already completed. If it has, add
1981 * it to the front so we find it first.
1982 */
1983 if (req->flags & REQ_F_IOPOLL_COMPLETED)
1984 list_add(&req->list, &ctx->poll_list);
1985 else
1986 list_add_tail(&req->list, &ctx->poll_list);
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08001987
1988 if ((ctx->flags & IORING_SETUP_SQPOLL) &&
1989 wq_has_sleeper(&ctx->sqo_wait))
1990 wake_up(&ctx->sqo_wait);
Jens Axboedef596e2019-01-09 08:59:42 -07001991}
1992
Jens Axboe3d6770f2019-04-13 11:50:54 -06001993static void io_file_put(struct io_submit_state *state)
Jens Axboe9a56a232019-01-09 09:06:50 -07001994{
Jens Axboe3d6770f2019-04-13 11:50:54 -06001995 if (state->file) {
Jens Axboe9a56a232019-01-09 09:06:50 -07001996 int diff = state->has_refs - state->used_refs;
1997
1998 if (diff)
1999 fput_many(state->file, diff);
2000 state->file = NULL;
2001 }
2002}
2003
2004/*
2005 * Get as many references to a file as we have IOs left in this submission,
2006 * assuming most submissions are for one file, or at least that each file
2007 * has more than one submission.
2008 */
Pavel Begunkov8da11c12020-02-24 11:32:44 +03002009static struct file *__io_file_get(struct io_submit_state *state, int fd)
Jens Axboe9a56a232019-01-09 09:06:50 -07002010{
2011 if (!state)
2012 return fget(fd);
2013
2014 if (state->file) {
2015 if (state->fd == fd) {
2016 state->used_refs++;
2017 state->ios_left--;
2018 return state->file;
2019 }
Jens Axboe3d6770f2019-04-13 11:50:54 -06002020 io_file_put(state);
Jens Axboe9a56a232019-01-09 09:06:50 -07002021 }
2022 state->file = fget_many(fd, state->ios_left);
2023 if (!state->file)
2024 return NULL;
2025
2026 state->fd = fd;
2027 state->has_refs = state->ios_left;
2028 state->used_refs = 1;
2029 state->ios_left--;
2030 return state->file;
2031}
2032
Jens Axboe2b188cc2019-01-07 10:46:33 -07002033/*
2034 * If we tracked the file through the SCM inflight mechanism, we could support
2035 * any file. For now, just ensure that anything potentially problematic is done
2036 * inline.
2037 */
2038static bool io_file_supports_async(struct file *file)
2039{
2040 umode_t mode = file_inode(file)->i_mode;
2041
Jens Axboe10d59342019-12-09 20:16:22 -07002042 if (S_ISBLK(mode) || S_ISCHR(mode) || S_ISSOCK(mode))
Jens Axboe2b188cc2019-01-07 10:46:33 -07002043 return true;
2044 if (S_ISREG(mode) && file->f_op != &io_uring_fops)
2045 return true;
2046
2047 return false;
2048}
2049
Jens Axboe3529d8c2019-12-19 18:24:38 -07002050static int io_prep_rw(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2051 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002052{
Jens Axboedef596e2019-01-09 08:59:42 -07002053 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9adbd452019-12-20 08:45:55 -07002054 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe09bb8392019-03-13 12:39:28 -06002055 unsigned ioprio;
2056 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002057
Jens Axboe491381ce2019-10-17 09:20:46 -06002058 if (S_ISREG(file_inode(req->file)->i_mode))
2059 req->flags |= REQ_F_ISREG;
2060
Jens Axboe2b188cc2019-01-07 10:46:33 -07002061 kiocb->ki_pos = READ_ONCE(sqe->off);
Jens Axboeba042912019-12-25 16:33:42 -07002062 if (kiocb->ki_pos == -1 && !(req->file->f_mode & FMODE_STREAM)) {
2063 req->flags |= REQ_F_CUR_POS;
2064 kiocb->ki_pos = req->file->f_pos;
2065 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002066 kiocb->ki_hint = ki_hint_validate(file_write_hint(kiocb->ki_filp));
Pavel Begunkov3e577dc2020-02-01 03:58:42 +03002067 kiocb->ki_flags = iocb_flags(kiocb->ki_filp);
2068 ret = kiocb_set_rw_flags(kiocb, READ_ONCE(sqe->rw_flags));
2069 if (unlikely(ret))
2070 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002071
2072 ioprio = READ_ONCE(sqe->ioprio);
2073 if (ioprio) {
2074 ret = ioprio_check_cap(ioprio);
2075 if (ret)
Jens Axboe09bb8392019-03-13 12:39:28 -06002076 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002077
2078 kiocb->ki_ioprio = ioprio;
2079 } else
2080 kiocb->ki_ioprio = get_current_ioprio();
2081
Stefan Bühler8449eed2019-04-27 20:34:19 +02002082 /* don't allow async punt if RWF_NOWAIT was requested */
Jens Axboe491381ce2019-10-17 09:20:46 -06002083 if ((kiocb->ki_flags & IOCB_NOWAIT) ||
2084 (req->file->f_flags & O_NONBLOCK))
Stefan Bühler8449eed2019-04-27 20:34:19 +02002085 req->flags |= REQ_F_NOWAIT;
2086
2087 if (force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002088 kiocb->ki_flags |= IOCB_NOWAIT;
Stefan Bühler8449eed2019-04-27 20:34:19 +02002089
Jens Axboedef596e2019-01-09 08:59:42 -07002090 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07002091 if (!(kiocb->ki_flags & IOCB_DIRECT) ||
2092 !kiocb->ki_filp->f_op->iopoll)
Jens Axboe09bb8392019-03-13 12:39:28 -06002093 return -EOPNOTSUPP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002094
Jens Axboedef596e2019-01-09 08:59:42 -07002095 kiocb->ki_flags |= IOCB_HIPRI;
2096 kiocb->ki_complete = io_complete_rw_iopoll;
Jens Axboe6873e0b2019-10-30 13:53:09 -06002097 req->result = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07002098 } else {
Jens Axboe09bb8392019-03-13 12:39:28 -06002099 if (kiocb->ki_flags & IOCB_HIPRI)
2100 return -EINVAL;
Jens Axboedef596e2019-01-09 08:59:42 -07002101 kiocb->ki_complete = io_complete_rw;
2102 }
Jens Axboe9adbd452019-12-20 08:45:55 -07002103
Jens Axboe3529d8c2019-12-19 18:24:38 -07002104 req->rw.addr = READ_ONCE(sqe->addr);
2105 req->rw.len = READ_ONCE(sqe->len);
Jens Axboebcda7ba2020-02-23 16:42:51 -07002106 /* we own ->private, reuse it for the buffer index / buffer ID */
Jens Axboe9adbd452019-12-20 08:45:55 -07002107 req->rw.kiocb.private = (void *) (unsigned long)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002108 READ_ONCE(sqe->buf_index);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002109 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002110}
2111
2112static inline void io_rw_done(struct kiocb *kiocb, ssize_t ret)
2113{
2114 switch (ret) {
2115 case -EIOCBQUEUED:
2116 break;
2117 case -ERESTARTSYS:
2118 case -ERESTARTNOINTR:
2119 case -ERESTARTNOHAND:
2120 case -ERESTART_RESTARTBLOCK:
2121 /*
2122 * We can't just restart the syscall, since previously
2123 * submitted sqes may already be in progress. Just fail this
2124 * IO with EINTR.
2125 */
2126 ret = -EINTR;
2127 /* fall through */
2128 default:
2129 kiocb->ki_complete(kiocb, ret, 0);
2130 }
2131}
2132
Pavel Begunkov014db002020-03-03 21:33:12 +03002133static void kiocb_done(struct kiocb *kiocb, ssize_t ret)
Jens Axboeba816ad2019-09-28 11:36:45 -06002134{
Jens Axboeba042912019-12-25 16:33:42 -07002135 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
2136
2137 if (req->flags & REQ_F_CUR_POS)
2138 req->file->f_pos = kiocb->ki_pos;
Pavel Begunkovbcaec082020-02-24 11:30:18 +03002139 if (ret >= 0 && kiocb->ki_complete == io_complete_rw)
Pavel Begunkov014db002020-03-03 21:33:12 +03002140 io_complete_rw(kiocb, ret, 0);
Jens Axboeba816ad2019-09-28 11:36:45 -06002141 else
2142 io_rw_done(kiocb, ret);
2143}
2144
Jens Axboe9adbd452019-12-20 08:45:55 -07002145static ssize_t io_import_fixed(struct io_kiocb *req, int rw,
Pavel Begunkov7d009162019-11-25 23:14:40 +03002146 struct iov_iter *iter)
Jens Axboeedafcce2019-01-09 09:16:05 -07002147{
Jens Axboe9adbd452019-12-20 08:45:55 -07002148 struct io_ring_ctx *ctx = req->ctx;
2149 size_t len = req->rw.len;
Jens Axboeedafcce2019-01-09 09:16:05 -07002150 struct io_mapped_ubuf *imu;
2151 unsigned index, buf_index;
2152 size_t offset;
2153 u64 buf_addr;
2154
2155 /* attempt to use fixed buffers without having provided iovecs */
2156 if (unlikely(!ctx->user_bufs))
2157 return -EFAULT;
2158
Jens Axboe9adbd452019-12-20 08:45:55 -07002159 buf_index = (unsigned long) req->rw.kiocb.private;
Jens Axboeedafcce2019-01-09 09:16:05 -07002160 if (unlikely(buf_index >= ctx->nr_user_bufs))
2161 return -EFAULT;
2162
2163 index = array_index_nospec(buf_index, ctx->nr_user_bufs);
2164 imu = &ctx->user_bufs[index];
Jens Axboe9adbd452019-12-20 08:45:55 -07002165 buf_addr = req->rw.addr;
Jens Axboeedafcce2019-01-09 09:16:05 -07002166
2167 /* overflow */
2168 if (buf_addr + len < buf_addr)
2169 return -EFAULT;
2170 /* not inside the mapped region */
2171 if (buf_addr < imu->ubuf || buf_addr + len > imu->ubuf + imu->len)
2172 return -EFAULT;
2173
2174 /*
2175 * May not be a start of buffer, set size appropriately
2176 * and advance us to the beginning.
2177 */
2178 offset = buf_addr - imu->ubuf;
2179 iov_iter_bvec(iter, rw, imu->bvec, imu->nr_bvecs, offset + len);
Jens Axboebd11b3a2019-07-20 08:37:31 -06002180
2181 if (offset) {
2182 /*
2183 * Don't use iov_iter_advance() here, as it's really slow for
2184 * using the latter parts of a big fixed buffer - it iterates
2185 * over each segment manually. We can cheat a bit here, because
2186 * we know that:
2187 *
2188 * 1) it's a BVEC iter, we set it up
2189 * 2) all bvecs are PAGE_SIZE in size, except potentially the
2190 * first and last bvec
2191 *
2192 * So just find our index, and adjust the iterator afterwards.
2193 * If the offset is within the first bvec (or the whole first
2194 * bvec, just use iov_iter_advance(). This makes it easier
2195 * since we can just skip the first segment, which may not
2196 * be PAGE_SIZE aligned.
2197 */
2198 const struct bio_vec *bvec = imu->bvec;
2199
2200 if (offset <= bvec->bv_len) {
2201 iov_iter_advance(iter, offset);
2202 } else {
2203 unsigned long seg_skip;
2204
2205 /* skip first vec */
2206 offset -= bvec->bv_len;
2207 seg_skip = 1 + (offset >> PAGE_SHIFT);
2208
2209 iter->bvec = bvec + seg_skip;
2210 iter->nr_segs -= seg_skip;
Aleix Roca Nonell99c79f62019-08-15 14:03:22 +02002211 iter->count -= bvec->bv_len + offset;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002212 iter->iov_offset = offset & ~PAGE_MASK;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002213 }
2214 }
2215
Jens Axboe5e559562019-11-13 16:12:46 -07002216 return len;
Jens Axboeedafcce2019-01-09 09:16:05 -07002217}
2218
Jens Axboebcda7ba2020-02-23 16:42:51 -07002219static void io_ring_submit_unlock(struct io_ring_ctx *ctx, bool needs_lock)
2220{
2221 if (needs_lock)
2222 mutex_unlock(&ctx->uring_lock);
2223}
2224
2225static void io_ring_submit_lock(struct io_ring_ctx *ctx, bool needs_lock)
2226{
2227 /*
2228 * "Normal" inline submissions always hold the uring_lock, since we
2229 * grab it from the system call. Same is true for the SQPOLL offload.
2230 * The only exception is when we've detached the request and issue it
2231 * from an async worker thread, grab the lock for that case.
2232 */
2233 if (needs_lock)
2234 mutex_lock(&ctx->uring_lock);
2235}
2236
2237static struct io_buffer *io_buffer_select(struct io_kiocb *req, size_t *len,
2238 int bgid, struct io_buffer *kbuf,
2239 bool needs_lock)
2240{
2241 struct io_buffer *head;
2242
2243 if (req->flags & REQ_F_BUFFER_SELECTED)
2244 return kbuf;
2245
2246 io_ring_submit_lock(req->ctx, needs_lock);
2247
2248 lockdep_assert_held(&req->ctx->uring_lock);
2249
2250 head = idr_find(&req->ctx->io_buffer_idr, bgid);
2251 if (head) {
2252 if (!list_empty(&head->list)) {
2253 kbuf = list_last_entry(&head->list, struct io_buffer,
2254 list);
2255 list_del(&kbuf->list);
2256 } else {
2257 kbuf = head;
2258 idr_remove(&req->ctx->io_buffer_idr, bgid);
2259 }
2260 if (*len > kbuf->len)
2261 *len = kbuf->len;
2262 } else {
2263 kbuf = ERR_PTR(-ENOBUFS);
2264 }
2265
2266 io_ring_submit_unlock(req->ctx, needs_lock);
2267
2268 return kbuf;
2269}
2270
Jens Axboe4d954c22020-02-27 07:31:19 -07002271static void __user *io_rw_buffer_select(struct io_kiocb *req, size_t *len,
2272 bool needs_lock)
2273{
2274 struct io_buffer *kbuf;
2275 int bgid;
2276
2277 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
2278 bgid = (int) (unsigned long) req->rw.kiocb.private;
2279 kbuf = io_buffer_select(req, len, bgid, kbuf, needs_lock);
2280 if (IS_ERR(kbuf))
2281 return kbuf;
2282 req->rw.addr = (u64) (unsigned long) kbuf;
2283 req->flags |= REQ_F_BUFFER_SELECTED;
2284 return u64_to_user_ptr(kbuf->addr);
2285}
2286
2287#ifdef CONFIG_COMPAT
2288static ssize_t io_compat_import(struct io_kiocb *req, struct iovec *iov,
2289 bool needs_lock)
2290{
2291 struct compat_iovec __user *uiov;
2292 compat_ssize_t clen;
2293 void __user *buf;
2294 ssize_t len;
2295
2296 uiov = u64_to_user_ptr(req->rw.addr);
2297 if (!access_ok(uiov, sizeof(*uiov)))
2298 return -EFAULT;
2299 if (__get_user(clen, &uiov->iov_len))
2300 return -EFAULT;
2301 if (clen < 0)
2302 return -EINVAL;
2303
2304 len = clen;
2305 buf = io_rw_buffer_select(req, &len, needs_lock);
2306 if (IS_ERR(buf))
2307 return PTR_ERR(buf);
2308 iov[0].iov_base = buf;
2309 iov[0].iov_len = (compat_size_t) len;
2310 return 0;
2311}
2312#endif
2313
2314static ssize_t __io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
2315 bool needs_lock)
2316{
2317 struct iovec __user *uiov = u64_to_user_ptr(req->rw.addr);
2318 void __user *buf;
2319 ssize_t len;
2320
2321 if (copy_from_user(iov, uiov, sizeof(*uiov)))
2322 return -EFAULT;
2323
2324 len = iov[0].iov_len;
2325 if (len < 0)
2326 return -EINVAL;
2327 buf = io_rw_buffer_select(req, &len, needs_lock);
2328 if (IS_ERR(buf))
2329 return PTR_ERR(buf);
2330 iov[0].iov_base = buf;
2331 iov[0].iov_len = len;
2332 return 0;
2333}
2334
2335static ssize_t io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
2336 bool needs_lock)
2337{
2338 if (req->flags & REQ_F_BUFFER_SELECTED)
2339 return 0;
2340 if (!req->rw.len)
2341 return 0;
2342 else if (req->rw.len > 1)
2343 return -EINVAL;
2344
2345#ifdef CONFIG_COMPAT
2346 if (req->ctx->compat)
2347 return io_compat_import(req, iov, needs_lock);
2348#endif
2349
2350 return __io_iov_buffer_select(req, iov, needs_lock);
2351}
2352
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002353static ssize_t io_import_iovec(int rw, struct io_kiocb *req,
Jens Axboebcda7ba2020-02-23 16:42:51 -07002354 struct iovec **iovec, struct iov_iter *iter,
2355 bool needs_lock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002356{
Jens Axboe9adbd452019-12-20 08:45:55 -07002357 void __user *buf = u64_to_user_ptr(req->rw.addr);
2358 size_t sqe_len = req->rw.len;
Jens Axboe4d954c22020-02-27 07:31:19 -07002359 ssize_t ret;
Jens Axboeedafcce2019-01-09 09:16:05 -07002360 u8 opcode;
2361
Jens Axboed625c6e2019-12-17 19:53:05 -07002362 opcode = req->opcode;
Pavel Begunkov7d009162019-11-25 23:14:40 +03002363 if (opcode == IORING_OP_READ_FIXED || opcode == IORING_OP_WRITE_FIXED) {
Jens Axboeedafcce2019-01-09 09:16:05 -07002364 *iovec = NULL;
Jens Axboe9adbd452019-12-20 08:45:55 -07002365 return io_import_fixed(req, rw, iter);
Jens Axboeedafcce2019-01-09 09:16:05 -07002366 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002367
Jens Axboebcda7ba2020-02-23 16:42:51 -07002368 /* buffer index only valid with fixed read/write, or buffer select */
2369 if (req->rw.kiocb.private && !(req->flags & REQ_F_BUFFER_SELECT))
Jens Axboe9adbd452019-12-20 08:45:55 -07002370 return -EINVAL;
2371
Jens Axboe3a6820f2019-12-22 15:19:35 -07002372 if (opcode == IORING_OP_READ || opcode == IORING_OP_WRITE) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07002373 if (req->flags & REQ_F_BUFFER_SELECT) {
Jens Axboe4d954c22020-02-27 07:31:19 -07002374 buf = io_rw_buffer_select(req, &sqe_len, needs_lock);
2375 if (IS_ERR(buf)) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07002376 *iovec = NULL;
Jens Axboe4d954c22020-02-27 07:31:19 -07002377 return PTR_ERR(buf);
Jens Axboebcda7ba2020-02-23 16:42:51 -07002378 }
Jens Axboe3f9d6442020-03-11 12:27:04 -06002379 req->rw.len = sqe_len;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002380 }
2381
Jens Axboe3a6820f2019-12-22 15:19:35 -07002382 ret = import_single_range(rw, buf, sqe_len, *iovec, iter);
2383 *iovec = NULL;
Jens Axboe3a901592020-02-25 17:48:55 -07002384 return ret < 0 ? ret : sqe_len;
Jens Axboe3a6820f2019-12-22 15:19:35 -07002385 }
2386
Jens Axboef67676d2019-12-02 11:03:47 -07002387 if (req->io) {
2388 struct io_async_rw *iorw = &req->io->rw;
2389
2390 *iovec = iorw->iov;
2391 iov_iter_init(iter, rw, *iovec, iorw->nr_segs, iorw->size);
2392 if (iorw->iov == iorw->fast_iov)
2393 *iovec = NULL;
2394 return iorw->size;
2395 }
2396
Jens Axboe4d954c22020-02-27 07:31:19 -07002397 if (req->flags & REQ_F_BUFFER_SELECT) {
2398 ret = io_iov_buffer_select(req, *iovec, needs_lock);
Jens Axboe3f9d6442020-03-11 12:27:04 -06002399 if (!ret) {
2400 ret = (*iovec)->iov_len;
2401 iov_iter_init(iter, rw, *iovec, 1, ret);
2402 }
Jens Axboe4d954c22020-02-27 07:31:19 -07002403 *iovec = NULL;
2404 return ret;
2405 }
2406
Jens Axboe2b188cc2019-01-07 10:46:33 -07002407#ifdef CONFIG_COMPAT
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002408 if (req->ctx->compat)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002409 return compat_import_iovec(rw, buf, sqe_len, UIO_FASTIOV,
2410 iovec, iter);
2411#endif
2412
2413 return import_iovec(rw, buf, sqe_len, UIO_FASTIOV, iovec, iter);
2414}
2415
Jens Axboe32960612019-09-23 11:05:34 -06002416/*
2417 * For files that don't have ->read_iter() and ->write_iter(), handle them
2418 * by looping over ->read() or ->write() manually.
2419 */
2420static ssize_t loop_rw_iter(int rw, struct file *file, struct kiocb *kiocb,
2421 struct iov_iter *iter)
2422{
2423 ssize_t ret = 0;
2424
2425 /*
2426 * Don't support polled IO through this interface, and we can't
2427 * support non-blocking either. For the latter, this just causes
2428 * the kiocb to be handled from an async context.
2429 */
2430 if (kiocb->ki_flags & IOCB_HIPRI)
2431 return -EOPNOTSUPP;
2432 if (kiocb->ki_flags & IOCB_NOWAIT)
2433 return -EAGAIN;
2434
2435 while (iov_iter_count(iter)) {
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002436 struct iovec iovec;
Jens Axboe32960612019-09-23 11:05:34 -06002437 ssize_t nr;
2438
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002439 if (!iov_iter_is_bvec(iter)) {
2440 iovec = iov_iter_iovec(iter);
2441 } else {
2442 /* fixed buffers import bvec */
2443 iovec.iov_base = kmap(iter->bvec->bv_page)
2444 + iter->iov_offset;
2445 iovec.iov_len = min(iter->count,
2446 iter->bvec->bv_len - iter->iov_offset);
2447 }
2448
Jens Axboe32960612019-09-23 11:05:34 -06002449 if (rw == READ) {
2450 nr = file->f_op->read(file, iovec.iov_base,
2451 iovec.iov_len, &kiocb->ki_pos);
2452 } else {
2453 nr = file->f_op->write(file, iovec.iov_base,
2454 iovec.iov_len, &kiocb->ki_pos);
2455 }
2456
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002457 if (iov_iter_is_bvec(iter))
2458 kunmap(iter->bvec->bv_page);
2459
Jens Axboe32960612019-09-23 11:05:34 -06002460 if (nr < 0) {
2461 if (!ret)
2462 ret = nr;
2463 break;
2464 }
2465 ret += nr;
2466 if (nr != iovec.iov_len)
2467 break;
2468 iov_iter_advance(iter, nr);
2469 }
2470
2471 return ret;
2472}
2473
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002474static void io_req_map_rw(struct io_kiocb *req, ssize_t io_size,
Jens Axboef67676d2019-12-02 11:03:47 -07002475 struct iovec *iovec, struct iovec *fast_iov,
2476 struct iov_iter *iter)
2477{
2478 req->io->rw.nr_segs = iter->nr_segs;
2479 req->io->rw.size = io_size;
2480 req->io->rw.iov = iovec;
2481 if (!req->io->rw.iov) {
2482 req->io->rw.iov = req->io->rw.fast_iov;
Xiaoguang Wang45097da2020-04-08 22:29:58 +08002483 if (req->io->rw.iov != fast_iov)
2484 memcpy(req->io->rw.iov, fast_iov,
2485 sizeof(struct iovec) * iter->nr_segs);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002486 } else {
2487 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboef67676d2019-12-02 11:03:47 -07002488 }
2489}
2490
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08002491static inline int __io_alloc_async_ctx(struct io_kiocb *req)
2492{
2493 req->io = kmalloc(sizeof(*req->io), GFP_KERNEL);
2494 return req->io == NULL;
2495}
2496
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002497static int io_alloc_async_ctx(struct io_kiocb *req)
Jens Axboef67676d2019-12-02 11:03:47 -07002498{
Jens Axboed3656342019-12-18 09:50:26 -07002499 if (!io_op_defs[req->opcode].async_ctx)
2500 return 0;
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08002501
2502 return __io_alloc_async_ctx(req);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002503}
2504
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002505static int io_setup_async_rw(struct io_kiocb *req, ssize_t io_size,
2506 struct iovec *iovec, struct iovec *fast_iov,
2507 struct iov_iter *iter)
2508{
Jens Axboe980ad262020-01-24 23:08:54 -07002509 if (!io_op_defs[req->opcode].async_ctx)
Jens Axboe74566df2020-01-13 19:23:24 -07002510 return 0;
Jens Axboe5d204bc2020-01-31 12:06:52 -07002511 if (!req->io) {
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08002512 if (__io_alloc_async_ctx(req))
Jens Axboe5d204bc2020-01-31 12:06:52 -07002513 return -ENOMEM;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002514
Jens Axboe5d204bc2020-01-31 12:06:52 -07002515 io_req_map_rw(req, io_size, iovec, fast_iov, iter);
2516 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002517 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002518}
2519
Jens Axboe3529d8c2019-12-19 18:24:38 -07002520static int io_read_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2521 bool force_nonblock)
Jens Axboef67676d2019-12-02 11:03:47 -07002522{
Jens Axboe3529d8c2019-12-19 18:24:38 -07002523 struct io_async_ctx *io;
2524 struct iov_iter iter;
Jens Axboef67676d2019-12-02 11:03:47 -07002525 ssize_t ret;
2526
Jens Axboe3529d8c2019-12-19 18:24:38 -07002527 ret = io_prep_rw(req, sqe, force_nonblock);
2528 if (ret)
2529 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07002530
Jens Axboe3529d8c2019-12-19 18:24:38 -07002531 if (unlikely(!(req->file->f_mode & FMODE_READ)))
2532 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07002533
Pavel Begunkov5f798be2020-02-08 13:28:02 +03002534 /* either don't need iovec imported or already have it */
2535 if (!req->io || req->flags & REQ_F_NEED_CLEANUP)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002536 return 0;
2537
2538 io = req->io;
2539 io->rw.iov = io->rw.fast_iov;
2540 req->io = NULL;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002541 ret = io_import_iovec(READ, req, &io->rw.iov, &iter, !force_nonblock);
Jens Axboe3529d8c2019-12-19 18:24:38 -07002542 req->io = io;
2543 if (ret < 0)
2544 return ret;
2545
2546 io_req_map_rw(req, ret, io->rw.iov, io->rw.fast_iov, &iter);
2547 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002548}
2549
Pavel Begunkov014db002020-03-03 21:33:12 +03002550static int io_read(struct io_kiocb *req, bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002551{
2552 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07002553 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002554 struct iov_iter iter;
Jens Axboe31b51512019-01-18 22:56:34 -07002555 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07002556 ssize_t io_size, ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002557
Jens Axboebcda7ba2020-02-23 16:42:51 -07002558 ret = io_import_iovec(READ, req, &iovec, &iter, !force_nonblock);
Jens Axboe06b76d42019-12-19 14:44:26 -07002559 if (ret < 0)
2560 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002561
Jens Axboefd6c2e42019-12-18 12:19:41 -07002562 /* Ensure we clear previously set non-block flag */
2563 if (!force_nonblock)
Jens Axboe29de5f62020-02-20 09:56:08 -07002564 kiocb->ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07002565
Bijan Mottahedeh797f3f52020-01-15 18:37:45 -08002566 req->result = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002567 io_size = ret;
Pavel Begunkovdea3b492020-04-12 02:05:04 +03002568 if (req->flags & REQ_F_LINK_HEAD)
Jens Axboef67676d2019-12-02 11:03:47 -07002569 req->result = io_size;
2570
2571 /*
2572 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
2573 * we know to async punt it even if it was opened O_NONBLOCK
2574 */
Jens Axboe29de5f62020-02-20 09:56:08 -07002575 if (force_nonblock && !io_file_supports_async(req->file))
Jens Axboef67676d2019-12-02 11:03:47 -07002576 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06002577
Jens Axboe31b51512019-01-18 22:56:34 -07002578 iov_count = iov_iter_count(&iter);
Jens Axboe9adbd452019-12-20 08:45:55 -07002579 ret = rw_verify_area(READ, req->file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002580 if (!ret) {
2581 ssize_t ret2;
2582
Jens Axboe9adbd452019-12-20 08:45:55 -07002583 if (req->file->f_op->read_iter)
2584 ret2 = call_read_iter(req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002585 else
Jens Axboe9adbd452019-12-20 08:45:55 -07002586 ret2 = loop_rw_iter(READ, req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002587
Jens Axboe9d93a3f2019-05-15 13:53:07 -06002588 /* Catch -EAGAIN return for forced non-blocking submission */
Jens Axboef67676d2019-12-02 11:03:47 -07002589 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkov014db002020-03-03 21:33:12 +03002590 kiocb_done(kiocb, ret2);
Jens Axboef67676d2019-12-02 11:03:47 -07002591 } else {
2592copy_iov:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002593 ret = io_setup_async_rw(req, io_size, iovec,
Jens Axboef67676d2019-12-02 11:03:47 -07002594 inline_vecs, &iter);
2595 if (ret)
2596 goto out_free;
Jens Axboe29de5f62020-02-20 09:56:08 -07002597 /* any defer here is final, must blocking retry */
2598 if (!(req->flags & REQ_F_NOWAIT))
2599 req->flags |= REQ_F_MUST_PUNT;
Jens Axboef67676d2019-12-02 11:03:47 -07002600 return -EAGAIN;
2601 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002602 }
Jens Axboef67676d2019-12-02 11:03:47 -07002603out_free:
Pavel Begunkov1e950812020-02-06 19:51:16 +03002604 kfree(iovec);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002605 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002606 return ret;
2607}
2608
Jens Axboe3529d8c2019-12-19 18:24:38 -07002609static int io_write_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2610 bool force_nonblock)
Jens Axboef67676d2019-12-02 11:03:47 -07002611{
Jens Axboe3529d8c2019-12-19 18:24:38 -07002612 struct io_async_ctx *io;
2613 struct iov_iter iter;
Jens Axboef67676d2019-12-02 11:03:47 -07002614 ssize_t ret;
2615
Jens Axboe3529d8c2019-12-19 18:24:38 -07002616 ret = io_prep_rw(req, sqe, force_nonblock);
2617 if (ret)
2618 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07002619
Jens Axboe3529d8c2019-12-19 18:24:38 -07002620 if (unlikely(!(req->file->f_mode & FMODE_WRITE)))
2621 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07002622
Jens Axboe4ed734b2020-03-20 11:23:41 -06002623 req->fsize = rlimit(RLIMIT_FSIZE);
2624
Pavel Begunkov5f798be2020-02-08 13:28:02 +03002625 /* either don't need iovec imported or already have it */
2626 if (!req->io || req->flags & REQ_F_NEED_CLEANUP)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002627 return 0;
2628
2629 io = req->io;
2630 io->rw.iov = io->rw.fast_iov;
2631 req->io = NULL;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002632 ret = io_import_iovec(WRITE, req, &io->rw.iov, &iter, !force_nonblock);
Jens Axboe3529d8c2019-12-19 18:24:38 -07002633 req->io = io;
2634 if (ret < 0)
2635 return ret;
2636
2637 io_req_map_rw(req, ret, io->rw.iov, io->rw.fast_iov, &iter);
2638 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002639}
2640
Pavel Begunkov014db002020-03-03 21:33:12 +03002641static int io_write(struct io_kiocb *req, bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002642{
2643 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07002644 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002645 struct iov_iter iter;
Jens Axboe31b51512019-01-18 22:56:34 -07002646 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07002647 ssize_t ret, io_size;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002648
Jens Axboebcda7ba2020-02-23 16:42:51 -07002649 ret = io_import_iovec(WRITE, req, &iovec, &iter, !force_nonblock);
Jens Axboe06b76d42019-12-19 14:44:26 -07002650 if (ret < 0)
2651 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002652
Jens Axboefd6c2e42019-12-18 12:19:41 -07002653 /* Ensure we clear previously set non-block flag */
2654 if (!force_nonblock)
Jens Axboe9adbd452019-12-20 08:45:55 -07002655 req->rw.kiocb.ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07002656
Bijan Mottahedeh797f3f52020-01-15 18:37:45 -08002657 req->result = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002658 io_size = ret;
Pavel Begunkovdea3b492020-04-12 02:05:04 +03002659 if (req->flags & REQ_F_LINK_HEAD)
Jens Axboef67676d2019-12-02 11:03:47 -07002660 req->result = io_size;
2661
2662 /*
2663 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
2664 * we know to async punt it even if it was opened O_NONBLOCK
2665 */
Jens Axboe29de5f62020-02-20 09:56:08 -07002666 if (force_nonblock && !io_file_supports_async(req->file))
Jens Axboef67676d2019-12-02 11:03:47 -07002667 goto copy_iov;
Jens Axboef67676d2019-12-02 11:03:47 -07002668
Jens Axboe10d59342019-12-09 20:16:22 -07002669 /* file path doesn't support NOWAIT for non-direct_IO */
2670 if (force_nonblock && !(kiocb->ki_flags & IOCB_DIRECT) &&
2671 (req->flags & REQ_F_ISREG))
Jens Axboef67676d2019-12-02 11:03:47 -07002672 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06002673
Jens Axboe31b51512019-01-18 22:56:34 -07002674 iov_count = iov_iter_count(&iter);
Jens Axboe9adbd452019-12-20 08:45:55 -07002675 ret = rw_verify_area(WRITE, req->file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002676 if (!ret) {
Roman Penyaev9bf79332019-03-25 20:09:24 +01002677 ssize_t ret2;
2678
Jens Axboe2b188cc2019-01-07 10:46:33 -07002679 /*
2680 * Open-code file_start_write here to grab freeze protection,
2681 * which will be released by another thread in
2682 * io_complete_rw(). Fool lockdep by telling it the lock got
2683 * released so that it doesn't complain about the held lock when
2684 * we return to userspace.
2685 */
Jens Axboe491381ce2019-10-17 09:20:46 -06002686 if (req->flags & REQ_F_ISREG) {
Jens Axboe9adbd452019-12-20 08:45:55 -07002687 __sb_start_write(file_inode(req->file)->i_sb,
Jens Axboe2b188cc2019-01-07 10:46:33 -07002688 SB_FREEZE_WRITE, true);
Jens Axboe9adbd452019-12-20 08:45:55 -07002689 __sb_writers_release(file_inode(req->file)->i_sb,
Jens Axboe2b188cc2019-01-07 10:46:33 -07002690 SB_FREEZE_WRITE);
2691 }
2692 kiocb->ki_flags |= IOCB_WRITE;
Roman Penyaev9bf79332019-03-25 20:09:24 +01002693
Jens Axboe4ed734b2020-03-20 11:23:41 -06002694 if (!force_nonblock)
2695 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = req->fsize;
2696
Jens Axboe9adbd452019-12-20 08:45:55 -07002697 if (req->file->f_op->write_iter)
2698 ret2 = call_write_iter(req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002699 else
Jens Axboe9adbd452019-12-20 08:45:55 -07002700 ret2 = loop_rw_iter(WRITE, req->file, kiocb, &iter);
Jens Axboe4ed734b2020-03-20 11:23:41 -06002701
2702 if (!force_nonblock)
2703 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = RLIM_INFINITY;
2704
Jens Axboefaac9962020-02-07 15:45:22 -07002705 /*
Chucheng Luobff60352020-03-25 11:31:38 +08002706 * Raw bdev writes will return -EOPNOTSUPP for IOCB_NOWAIT. Just
Jens Axboefaac9962020-02-07 15:45:22 -07002707 * retry them without IOCB_NOWAIT.
2708 */
2709 if (ret2 == -EOPNOTSUPP && (kiocb->ki_flags & IOCB_NOWAIT))
2710 ret2 = -EAGAIN;
Jens Axboef67676d2019-12-02 11:03:47 -07002711 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkov014db002020-03-03 21:33:12 +03002712 kiocb_done(kiocb, ret2);
Jens Axboef67676d2019-12-02 11:03:47 -07002713 } else {
2714copy_iov:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002715 ret = io_setup_async_rw(req, io_size, iovec,
Jens Axboef67676d2019-12-02 11:03:47 -07002716 inline_vecs, &iter);
2717 if (ret)
2718 goto out_free;
Jens Axboe29de5f62020-02-20 09:56:08 -07002719 /* any defer here is final, must blocking retry */
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
2760static bool io_splice_punt(struct file *file)
2761{
2762 if (get_pipe_info(file))
2763 return false;
2764 if (!io_file_supports_async(file))
2765 return true;
Jens Axboe88357582020-04-12 21:12:49 -06002766 return !(file->f_flags & O_NONBLOCK);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002767}
2768
Pavel Begunkov014db002020-03-03 21:33:12 +03002769static int io_splice(struct io_kiocb *req, bool force_nonblock)
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002770{
2771 struct io_splice *sp = &req->splice;
2772 struct file *in = sp->file_in;
2773 struct file *out = sp->file_out;
2774 unsigned int flags = sp->flags & ~SPLICE_F_FD_IN_FIXED;
2775 loff_t *poff_in, *poff_out;
2776 long ret;
2777
2778 if (force_nonblock) {
2779 if (io_splice_punt(in) || io_splice_punt(out))
2780 return -EAGAIN;
2781 flags |= SPLICE_F_NONBLOCK;
2782 }
2783
2784 poff_in = (sp->off_in == -1) ? NULL : &sp->off_in;
2785 poff_out = (sp->off_out == -1) ? NULL : &sp->off_out;
2786 ret = do_splice(in, poff_in, out, poff_out, sp->len, flags);
2787 if (force_nonblock && ret == -EAGAIN)
2788 return -EAGAIN;
2789
2790 io_put_file(req, in, (sp->flags & SPLICE_F_FD_IN_FIXED));
2791 req->flags &= ~REQ_F_NEED_CLEANUP;
2792
2793 io_cqring_add_event(req, ret);
2794 if (ret != sp->len)
2795 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03002796 io_put_req(req);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002797 return 0;
2798}
2799
Jens Axboe2b188cc2019-01-07 10:46:33 -07002800/*
2801 * IORING_OP_NOP just posts a completion event, nothing else.
2802 */
Jens Axboe78e19bb2019-11-06 15:21:34 -07002803static int io_nop(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002804{
2805 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002806
Jens Axboedef596e2019-01-09 08:59:42 -07002807 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
2808 return -EINVAL;
2809
Jens Axboe78e19bb2019-11-06 15:21:34 -07002810 io_cqring_add_event(req, 0);
Jens Axboee65ef562019-03-12 10:16:44 -06002811 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002812 return 0;
2813}
2814
Jens Axboe3529d8c2019-12-19 18:24:38 -07002815static int io_prep_fsync(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002816{
Jens Axboe6b063142019-01-10 22:13:58 -07002817 struct io_ring_ctx *ctx = req->ctx;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002818
Jens Axboe09bb8392019-03-13 12:39:28 -06002819 if (!req->file)
2820 return -EBADF;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002821
Jens Axboe6b063142019-01-10 22:13:58 -07002822 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboedef596e2019-01-09 08:59:42 -07002823 return -EINVAL;
Jens Axboeedafcce2019-01-09 09:16:05 -07002824 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002825 return -EINVAL;
2826
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002827 req->sync.flags = READ_ONCE(sqe->fsync_flags);
2828 if (unlikely(req->sync.flags & ~IORING_FSYNC_DATASYNC))
2829 return -EINVAL;
2830
2831 req->sync.off = READ_ONCE(sqe->off);
2832 req->sync.len = READ_ONCE(sqe->len);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002833 return 0;
2834}
2835
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002836static bool io_req_cancelled(struct io_kiocb *req)
2837{
2838 if (req->work.flags & IO_WQ_WORK_CANCEL) {
2839 req_set_fail_links(req);
2840 io_cqring_add_event(req, -ECANCELED);
2841 io_put_req(req);
2842 return true;
2843 }
2844
2845 return false;
2846}
2847
Pavel Begunkov014db002020-03-03 21:33:12 +03002848static void __io_fsync(struct io_kiocb *req)
Jens Axboe78912932020-01-14 22:09:06 -07002849{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002850 loff_t end = req->sync.off + req->sync.len;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002851 int ret;
2852
Jens Axboe9adbd452019-12-20 08:45:55 -07002853 ret = vfs_fsync_range(req->file, req->sync.off,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002854 end > 0 ? end : LLONG_MAX,
2855 req->sync.flags & IORING_FSYNC_DATASYNC);
2856 if (ret < 0)
2857 req_set_fail_links(req);
2858 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03002859 io_put_req(req);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002860}
2861
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002862static void io_fsync_finish(struct io_wq_work **workptr)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002863{
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002864 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002865
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002866 if (io_req_cancelled(req))
2867 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03002868 __io_fsync(req);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03002869 io_steal_work(req, workptr);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002870}
2871
Pavel Begunkov014db002020-03-03 21:33:12 +03002872static int io_fsync(struct io_kiocb *req, bool force_nonblock)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002873{
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002874 /* fsync always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002875 if (force_nonblock) {
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002876 req->work.func = io_fsync_finish;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002877 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002878 }
Pavel Begunkov014db002020-03-03 21:33:12 +03002879 __io_fsync(req);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002880 return 0;
2881}
2882
Pavel Begunkov014db002020-03-03 21:33:12 +03002883static void __io_fallocate(struct io_kiocb *req)
Jens Axboed63d1b52019-12-10 10:38:56 -07002884{
Jens Axboed63d1b52019-12-10 10:38:56 -07002885 int ret;
2886
Jens Axboe4ed734b2020-03-20 11:23:41 -06002887 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = req->fsize;
Jens Axboed63d1b52019-12-10 10:38:56 -07002888 ret = vfs_fallocate(req->file, req->sync.mode, req->sync.off,
2889 req->sync.len);
Jens Axboe4ed734b2020-03-20 11:23:41 -06002890 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = RLIM_INFINITY;
Jens Axboed63d1b52019-12-10 10:38:56 -07002891 if (ret < 0)
2892 req_set_fail_links(req);
2893 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03002894 io_put_req(req);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002895}
2896
Jens Axboe2b188cc2019-01-07 10:46:33 -07002897static void io_fallocate_finish(struct io_wq_work **workptr)
2898{
2899 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Jens Axboed63d1b52019-12-10 10:38:56 -07002900
2901 if (io_req_cancelled(req))
2902 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03002903 __io_fallocate(req);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03002904 io_steal_work(req, workptr);
Jens Axboed63d1b52019-12-10 10:38:56 -07002905}
2906
2907static int io_fallocate_prep(struct io_kiocb *req,
2908 const struct io_uring_sqe *sqe)
2909{
2910 if (sqe->ioprio || sqe->buf_index || sqe->rw_flags)
2911 return -EINVAL;
2912
2913 req->sync.off = READ_ONCE(sqe->off);
2914 req->sync.len = READ_ONCE(sqe->addr);
2915 req->sync.mode = READ_ONCE(sqe->len);
Jens Axboe4ed734b2020-03-20 11:23:41 -06002916 req->fsize = rlimit(RLIMIT_FSIZE);
Jens Axboed63d1b52019-12-10 10:38:56 -07002917 return 0;
2918}
2919
Pavel Begunkov014db002020-03-03 21:33:12 +03002920static int io_fallocate(struct io_kiocb *req, bool force_nonblock)
Jens Axboed63d1b52019-12-10 10:38:56 -07002921{
Jens Axboed63d1b52019-12-10 10:38:56 -07002922 /* fallocate always requiring blocking context */
2923 if (force_nonblock) {
Jens Axboed63d1b52019-12-10 10:38:56 -07002924 req->work.func = io_fallocate_finish;
2925 return -EAGAIN;
2926 }
2927
Pavel Begunkov014db002020-03-03 21:33:12 +03002928 __io_fallocate(req);
Jens Axboed63d1b52019-12-10 10:38:56 -07002929 return 0;
2930}
2931
Jens Axboe15b71ab2019-12-11 11:20:36 -07002932static int io_openat_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2933{
Jens Axboef8748882020-01-08 17:47:02 -07002934 const char __user *fname;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002935 int ret;
2936
2937 if (sqe->ioprio || sqe->buf_index)
2938 return -EINVAL;
Pavel Begunkov9c280f92020-04-08 08:58:46 +03002939 if (req->flags & REQ_F_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07002940 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03002941 if (req->flags & REQ_F_NEED_CLEANUP)
2942 return 0;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002943
2944 req->open.dfd = READ_ONCE(sqe->fd);
Jens Axboec12cedf2020-01-08 17:41:21 -07002945 req->open.how.mode = READ_ONCE(sqe->len);
Jens Axboef8748882020-01-08 17:47:02 -07002946 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboec12cedf2020-01-08 17:41:21 -07002947 req->open.how.flags = READ_ONCE(sqe->open_flags);
Jens Axboe08a1d26eb2020-04-08 09:20:54 -06002948 if (force_o_largefile())
2949 req->open.how.flags |= O_LARGEFILE;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002950
Jens Axboef8748882020-01-08 17:47:02 -07002951 req->open.filename = getname(fname);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002952 if (IS_ERR(req->open.filename)) {
2953 ret = PTR_ERR(req->open.filename);
2954 req->open.filename = NULL;
2955 return ret;
2956 }
2957
Jens Axboe4022e7a2020-03-19 19:23:18 -06002958 req->open.nofile = rlimit(RLIMIT_NOFILE);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03002959 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002960 return 0;
2961}
2962
Jens Axboecebdb982020-01-08 17:59:24 -07002963static int io_openat2_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2964{
2965 struct open_how __user *how;
2966 const char __user *fname;
2967 size_t len;
2968 int ret;
2969
2970 if (sqe->ioprio || sqe->buf_index)
2971 return -EINVAL;
Pavel Begunkov9c280f92020-04-08 08:58:46 +03002972 if (req->flags & REQ_F_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07002973 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03002974 if (req->flags & REQ_F_NEED_CLEANUP)
2975 return 0;
Jens Axboecebdb982020-01-08 17:59:24 -07002976
2977 req->open.dfd = READ_ONCE(sqe->fd);
2978 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
2979 how = u64_to_user_ptr(READ_ONCE(sqe->addr2));
2980 len = READ_ONCE(sqe->len);
2981
2982 if (len < OPEN_HOW_SIZE_VER0)
2983 return -EINVAL;
2984
2985 ret = copy_struct_from_user(&req->open.how, sizeof(req->open.how), how,
2986 len);
2987 if (ret)
2988 return ret;
2989
2990 if (!(req->open.how.flags & O_PATH) && force_o_largefile())
2991 req->open.how.flags |= O_LARGEFILE;
2992
2993 req->open.filename = getname(fname);
2994 if (IS_ERR(req->open.filename)) {
2995 ret = PTR_ERR(req->open.filename);
2996 req->open.filename = NULL;
2997 return ret;
2998 }
2999
Jens Axboe4022e7a2020-03-19 19:23:18 -06003000 req->open.nofile = rlimit(RLIMIT_NOFILE);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003001 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboecebdb982020-01-08 17:59:24 -07003002 return 0;
3003}
3004
Pavel Begunkov014db002020-03-03 21:33:12 +03003005static int io_openat2(struct io_kiocb *req, bool force_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07003006{
3007 struct open_flags op;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003008 struct file *file;
3009 int ret;
3010
Jens Axboef86cd202020-01-29 13:46:44 -07003011 if (force_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07003012 return -EAGAIN;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003013
Jens Axboecebdb982020-01-08 17:59:24 -07003014 ret = build_open_flags(&req->open.how, &op);
Jens Axboe15b71ab2019-12-11 11:20:36 -07003015 if (ret)
3016 goto err;
3017
Jens Axboe4022e7a2020-03-19 19:23:18 -06003018 ret = __get_unused_fd_flags(req->open.how.flags, req->open.nofile);
Jens Axboe15b71ab2019-12-11 11:20:36 -07003019 if (ret < 0)
3020 goto err;
3021
3022 file = do_filp_open(req->open.dfd, req->open.filename, &op);
3023 if (IS_ERR(file)) {
3024 put_unused_fd(ret);
3025 ret = PTR_ERR(file);
3026 } else {
3027 fsnotify_open(file);
3028 fd_install(ret, file);
3029 }
3030err:
3031 putname(req->open.filename);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003032 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003033 if (ret < 0)
3034 req_set_fail_links(req);
3035 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003036 io_put_req(req);
Jens Axboe15b71ab2019-12-11 11:20:36 -07003037 return 0;
3038}
3039
Pavel Begunkov014db002020-03-03 21:33:12 +03003040static int io_openat(struct io_kiocb *req, bool force_nonblock)
Jens Axboecebdb982020-01-08 17:59:24 -07003041{
3042 req->open.how = build_open_how(req->open.how.flags, req->open.how.mode);
Pavel Begunkov014db002020-03-03 21:33:12 +03003043 return io_openat2(req, force_nonblock);
Jens Axboecebdb982020-01-08 17:59:24 -07003044}
3045
Jens Axboe067524e2020-03-02 16:32:28 -07003046static int io_remove_buffers_prep(struct io_kiocb *req,
3047 const struct io_uring_sqe *sqe)
3048{
3049 struct io_provide_buf *p = &req->pbuf;
3050 u64 tmp;
3051
3052 if (sqe->ioprio || sqe->rw_flags || sqe->addr || sqe->len || sqe->off)
3053 return -EINVAL;
3054
3055 tmp = READ_ONCE(sqe->fd);
3056 if (!tmp || tmp > USHRT_MAX)
3057 return -EINVAL;
3058
3059 memset(p, 0, sizeof(*p));
3060 p->nbufs = tmp;
3061 p->bgid = READ_ONCE(sqe->buf_group);
3062 return 0;
3063}
3064
3065static int __io_remove_buffers(struct io_ring_ctx *ctx, struct io_buffer *buf,
3066 int bgid, unsigned nbufs)
3067{
3068 unsigned i = 0;
3069
3070 /* shouldn't happen */
3071 if (!nbufs)
3072 return 0;
3073
3074 /* the head kbuf is the list itself */
3075 while (!list_empty(&buf->list)) {
3076 struct io_buffer *nxt;
3077
3078 nxt = list_first_entry(&buf->list, struct io_buffer, list);
3079 list_del(&nxt->list);
3080 kfree(nxt);
3081 if (++i == nbufs)
3082 return i;
3083 }
3084 i++;
3085 kfree(buf);
3086 idr_remove(&ctx->io_buffer_idr, bgid);
3087
3088 return i;
3089}
3090
3091static int io_remove_buffers(struct io_kiocb *req, bool force_nonblock)
3092{
3093 struct io_provide_buf *p = &req->pbuf;
3094 struct io_ring_ctx *ctx = req->ctx;
3095 struct io_buffer *head;
3096 int ret = 0;
3097
3098 io_ring_submit_lock(ctx, !force_nonblock);
3099
3100 lockdep_assert_held(&ctx->uring_lock);
3101
3102 ret = -ENOENT;
3103 head = idr_find(&ctx->io_buffer_idr, p->bgid);
3104 if (head)
3105 ret = __io_remove_buffers(ctx, head, p->bgid, p->nbufs);
3106
3107 io_ring_submit_lock(ctx, !force_nonblock);
3108 if (ret < 0)
3109 req_set_fail_links(req);
3110 io_cqring_add_event(req, ret);
3111 io_put_req(req);
3112 return 0;
3113}
3114
Jens Axboeddf0322d2020-02-23 16:41:33 -07003115static int io_provide_buffers_prep(struct io_kiocb *req,
3116 const struct io_uring_sqe *sqe)
3117{
3118 struct io_provide_buf *p = &req->pbuf;
3119 u64 tmp;
3120
3121 if (sqe->ioprio || sqe->rw_flags)
3122 return -EINVAL;
3123
3124 tmp = READ_ONCE(sqe->fd);
3125 if (!tmp || tmp > USHRT_MAX)
3126 return -E2BIG;
3127 p->nbufs = tmp;
3128 p->addr = READ_ONCE(sqe->addr);
3129 p->len = READ_ONCE(sqe->len);
3130
3131 if (!access_ok(u64_to_user_ptr(p->addr), p->len))
3132 return -EFAULT;
3133
3134 p->bgid = READ_ONCE(sqe->buf_group);
3135 tmp = READ_ONCE(sqe->off);
3136 if (tmp > USHRT_MAX)
3137 return -E2BIG;
3138 p->bid = tmp;
3139 return 0;
3140}
3141
3142static int io_add_buffers(struct io_provide_buf *pbuf, struct io_buffer **head)
3143{
3144 struct io_buffer *buf;
3145 u64 addr = pbuf->addr;
3146 int i, bid = pbuf->bid;
3147
3148 for (i = 0; i < pbuf->nbufs; i++) {
3149 buf = kmalloc(sizeof(*buf), GFP_KERNEL);
3150 if (!buf)
3151 break;
3152
3153 buf->addr = addr;
3154 buf->len = pbuf->len;
3155 buf->bid = bid;
3156 addr += pbuf->len;
3157 bid++;
3158 if (!*head) {
3159 INIT_LIST_HEAD(&buf->list);
3160 *head = buf;
3161 } else {
3162 list_add_tail(&buf->list, &(*head)->list);
3163 }
3164 }
3165
3166 return i ? i : -ENOMEM;
3167}
3168
Jens Axboeddf0322d2020-02-23 16:41:33 -07003169static int io_provide_buffers(struct io_kiocb *req, bool force_nonblock)
3170{
3171 struct io_provide_buf *p = &req->pbuf;
3172 struct io_ring_ctx *ctx = req->ctx;
3173 struct io_buffer *head, *list;
3174 int ret = 0;
3175
3176 io_ring_submit_lock(ctx, !force_nonblock);
3177
3178 lockdep_assert_held(&ctx->uring_lock);
3179
3180 list = head = idr_find(&ctx->io_buffer_idr, p->bgid);
3181
3182 ret = io_add_buffers(p, &head);
3183 if (ret < 0)
3184 goto out;
3185
3186 if (!list) {
3187 ret = idr_alloc(&ctx->io_buffer_idr, head, p->bgid, p->bgid + 1,
3188 GFP_KERNEL);
3189 if (ret < 0) {
Jens Axboe067524e2020-03-02 16:32:28 -07003190 __io_remove_buffers(ctx, head, p->bgid, -1U);
Jens Axboeddf0322d2020-02-23 16:41:33 -07003191 goto out;
3192 }
3193 }
3194out:
3195 io_ring_submit_unlock(ctx, !force_nonblock);
3196 if (ret < 0)
3197 req_set_fail_links(req);
3198 io_cqring_add_event(req, ret);
3199 io_put_req(req);
3200 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003201}
3202
Jens Axboe3e4827b2020-01-08 15:18:09 -07003203static int io_epoll_ctl_prep(struct io_kiocb *req,
3204 const struct io_uring_sqe *sqe)
3205{
3206#if defined(CONFIG_EPOLL)
3207 if (sqe->ioprio || sqe->buf_index)
3208 return -EINVAL;
3209
3210 req->epoll.epfd = READ_ONCE(sqe->fd);
3211 req->epoll.op = READ_ONCE(sqe->len);
3212 req->epoll.fd = READ_ONCE(sqe->off);
3213
3214 if (ep_op_has_event(req->epoll.op)) {
3215 struct epoll_event __user *ev;
3216
3217 ev = u64_to_user_ptr(READ_ONCE(sqe->addr));
3218 if (copy_from_user(&req->epoll.event, ev, sizeof(*ev)))
3219 return -EFAULT;
3220 }
3221
3222 return 0;
3223#else
3224 return -EOPNOTSUPP;
3225#endif
3226}
3227
Pavel Begunkov014db002020-03-03 21:33:12 +03003228static int io_epoll_ctl(struct io_kiocb *req, bool force_nonblock)
Jens Axboe3e4827b2020-01-08 15:18:09 -07003229{
3230#if defined(CONFIG_EPOLL)
3231 struct io_epoll *ie = &req->epoll;
3232 int ret;
3233
3234 ret = do_epoll_ctl(ie->epfd, ie->op, ie->fd, &ie->event, force_nonblock);
3235 if (force_nonblock && ret == -EAGAIN)
3236 return -EAGAIN;
3237
3238 if (ret < 0)
3239 req_set_fail_links(req);
3240 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003241 io_put_req(req);
Jens Axboe3e4827b2020-01-08 15:18:09 -07003242 return 0;
3243#else
3244 return -EOPNOTSUPP;
3245#endif
3246}
3247
Jens Axboec1ca7572019-12-25 22:18:28 -07003248static int io_madvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3249{
3250#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
3251 if (sqe->ioprio || sqe->buf_index || sqe->off)
3252 return -EINVAL;
3253
3254 req->madvise.addr = READ_ONCE(sqe->addr);
3255 req->madvise.len = READ_ONCE(sqe->len);
3256 req->madvise.advice = READ_ONCE(sqe->fadvise_advice);
3257 return 0;
3258#else
3259 return -EOPNOTSUPP;
3260#endif
3261}
3262
Pavel Begunkov014db002020-03-03 21:33:12 +03003263static int io_madvise(struct io_kiocb *req, bool force_nonblock)
Jens Axboec1ca7572019-12-25 22:18:28 -07003264{
3265#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
3266 struct io_madvise *ma = &req->madvise;
3267 int ret;
3268
3269 if (force_nonblock)
3270 return -EAGAIN;
3271
3272 ret = do_madvise(ma->addr, ma->len, ma->advice);
3273 if (ret < 0)
3274 req_set_fail_links(req);
3275 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003276 io_put_req(req);
Jens Axboec1ca7572019-12-25 22:18:28 -07003277 return 0;
3278#else
3279 return -EOPNOTSUPP;
3280#endif
3281}
3282
Jens Axboe4840e412019-12-25 22:03:45 -07003283static int io_fadvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3284{
3285 if (sqe->ioprio || sqe->buf_index || sqe->addr)
3286 return -EINVAL;
3287
3288 req->fadvise.offset = READ_ONCE(sqe->off);
3289 req->fadvise.len = READ_ONCE(sqe->len);
3290 req->fadvise.advice = READ_ONCE(sqe->fadvise_advice);
3291 return 0;
3292}
3293
Pavel Begunkov014db002020-03-03 21:33:12 +03003294static int io_fadvise(struct io_kiocb *req, bool force_nonblock)
Jens Axboe4840e412019-12-25 22:03:45 -07003295{
3296 struct io_fadvise *fa = &req->fadvise;
3297 int ret;
3298
Jens Axboe3e694262020-02-01 09:22:49 -07003299 if (force_nonblock) {
3300 switch (fa->advice) {
3301 case POSIX_FADV_NORMAL:
3302 case POSIX_FADV_RANDOM:
3303 case POSIX_FADV_SEQUENTIAL:
3304 break;
3305 default:
3306 return -EAGAIN;
3307 }
3308 }
Jens Axboe4840e412019-12-25 22:03:45 -07003309
3310 ret = vfs_fadvise(req->file, fa->offset, fa->len, fa->advice);
3311 if (ret < 0)
3312 req_set_fail_links(req);
3313 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003314 io_put_req(req);
Jens Axboe4840e412019-12-25 22:03:45 -07003315 return 0;
3316}
3317
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003318static int io_statx_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3319{
Jens Axboef8748882020-01-08 17:47:02 -07003320 const char __user *fname;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003321 unsigned lookup_flags;
3322 int ret;
3323
3324 if (sqe->ioprio || sqe->buf_index)
3325 return -EINVAL;
Pavel Begunkov9c280f92020-04-08 08:58:46 +03003326 if (req->flags & REQ_F_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07003327 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03003328 if (req->flags & REQ_F_NEED_CLEANUP)
3329 return 0;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003330
3331 req->open.dfd = READ_ONCE(sqe->fd);
3332 req->open.mask = READ_ONCE(sqe->len);
Jens Axboef8748882020-01-08 17:47:02 -07003333 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003334 req->open.buffer = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboec12cedf2020-01-08 17:41:21 -07003335 req->open.how.flags = READ_ONCE(sqe->statx_flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003336
Jens Axboec12cedf2020-01-08 17:41:21 -07003337 if (vfs_stat_set_lookup_flags(&lookup_flags, req->open.how.flags))
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003338 return -EINVAL;
3339
Jens Axboef8748882020-01-08 17:47:02 -07003340 req->open.filename = getname_flags(fname, lookup_flags, NULL);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003341 if (IS_ERR(req->open.filename)) {
3342 ret = PTR_ERR(req->open.filename);
3343 req->open.filename = NULL;
3344 return ret;
3345 }
3346
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003347 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003348 return 0;
3349}
3350
Pavel Begunkov014db002020-03-03 21:33:12 +03003351static int io_statx(struct io_kiocb *req, bool force_nonblock)
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003352{
3353 struct io_open *ctx = &req->open;
3354 unsigned lookup_flags;
3355 struct path path;
3356 struct kstat stat;
3357 int ret;
3358
3359 if (force_nonblock)
3360 return -EAGAIN;
3361
Jens Axboec12cedf2020-01-08 17:41:21 -07003362 if (vfs_stat_set_lookup_flags(&lookup_flags, ctx->how.flags))
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003363 return -EINVAL;
3364
3365retry:
3366 /* filename_lookup() drops it, keep a reference */
3367 ctx->filename->refcnt++;
3368
3369 ret = filename_lookup(ctx->dfd, ctx->filename, lookup_flags, &path,
3370 NULL);
3371 if (ret)
3372 goto err;
3373
Jens Axboec12cedf2020-01-08 17:41:21 -07003374 ret = vfs_getattr(&path, &stat, ctx->mask, ctx->how.flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003375 path_put(&path);
3376 if (retry_estale(ret, lookup_flags)) {
3377 lookup_flags |= LOOKUP_REVAL;
3378 goto retry;
3379 }
3380 if (!ret)
3381 ret = cp_statx(&stat, ctx->buffer);
3382err:
3383 putname(ctx->filename);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003384 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003385 if (ret < 0)
3386 req_set_fail_links(req);
3387 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003388 io_put_req(req);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003389 return 0;
3390}
3391
Jens Axboeb5dba592019-12-11 14:02:38 -07003392static int io_close_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3393{
3394 /*
3395 * If we queue this for async, it must not be cancellable. That would
3396 * leave the 'file' in an undeterminate state.
3397 */
3398 req->work.flags |= IO_WQ_WORK_NO_CANCEL;
3399
3400 if (sqe->ioprio || sqe->off || sqe->addr || sqe->len ||
3401 sqe->rw_flags || sqe->buf_index)
3402 return -EINVAL;
Pavel Begunkov9c280f92020-04-08 08:58:46 +03003403 if (req->flags & REQ_F_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07003404 return -EBADF;
Jens Axboeb5dba592019-12-11 14:02:38 -07003405
3406 req->close.fd = READ_ONCE(sqe->fd);
3407 if (req->file->f_op == &io_uring_fops ||
Pavel Begunkovb14cca02020-01-17 04:45:59 +03003408 req->close.fd == req->ctx->ring_fd)
Jens Axboeb5dba592019-12-11 14:02:38 -07003409 return -EBADF;
3410
3411 return 0;
3412}
3413
Pavel Begunkova93b3332020-02-08 14:04:34 +03003414/* only called when __close_fd_get_file() is done */
Pavel Begunkov014db002020-03-03 21:33:12 +03003415static void __io_close_finish(struct io_kiocb *req)
Pavel Begunkova93b3332020-02-08 14:04:34 +03003416{
3417 int ret;
3418
3419 ret = filp_close(req->close.put_file, req->work.files);
3420 if (ret < 0)
3421 req_set_fail_links(req);
3422 io_cqring_add_event(req, ret);
3423 fput(req->close.put_file);
Pavel Begunkov014db002020-03-03 21:33:12 +03003424 io_put_req(req);
Pavel Begunkova93b3332020-02-08 14:04:34 +03003425}
3426
Jens Axboeb5dba592019-12-11 14:02:38 -07003427static void io_close_finish(struct io_wq_work **workptr)
3428{
3429 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Jens Axboeb5dba592019-12-11 14:02:38 -07003430
Pavel Begunkov7fbeb952020-02-16 01:01:18 +03003431 /* not cancellable, don't do io_req_cancelled() */
Pavel Begunkov014db002020-03-03 21:33:12 +03003432 __io_close_finish(req);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03003433 io_steal_work(req, workptr);
Jens Axboeb5dba592019-12-11 14:02:38 -07003434}
3435
Pavel Begunkov014db002020-03-03 21:33:12 +03003436static int io_close(struct io_kiocb *req, bool force_nonblock)
Jens Axboeb5dba592019-12-11 14:02:38 -07003437{
3438 int ret;
3439
3440 req->close.put_file = NULL;
3441 ret = __close_fd_get_file(req->close.fd, &req->close.put_file);
3442 if (ret < 0)
3443 return ret;
3444
3445 /* if the file has a flush method, be safe and punt to async */
Pavel Begunkova2100672020-03-02 23:45:16 +03003446 if (req->close.put_file->f_op->flush && force_nonblock) {
Pavel Begunkov594506f2020-03-03 21:33:11 +03003447 /* submission ref will be dropped, take it for async */
3448 refcount_inc(&req->refs);
3449
Pavel Begunkova2100672020-03-02 23:45:16 +03003450 req->work.func = io_close_finish;
3451 /*
3452 * Do manual async queue here to avoid grabbing files - we don't
3453 * need the files, and it'll cause io_close_finish() to close
3454 * the file again and cause a double CQE entry for this request
3455 */
3456 io_queue_async_work(req);
3457 return 0;
3458 }
Jens Axboeb5dba592019-12-11 14:02:38 -07003459
3460 /*
3461 * No ->flush(), safely close from here and just punt the
3462 * fput() to async context.
3463 */
Pavel Begunkov014db002020-03-03 21:33:12 +03003464 __io_close_finish(req);
Jens Axboe1a417f42020-01-31 17:16:48 -07003465 return 0;
Jens Axboeb5dba592019-12-11 14:02:38 -07003466}
3467
Jens Axboe3529d8c2019-12-19 18:24:38 -07003468static int io_prep_sfr(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003469{
3470 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003471
3472 if (!req->file)
3473 return -EBADF;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003474
3475 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
3476 return -EINVAL;
3477 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
3478 return -EINVAL;
3479
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003480 req->sync.off = READ_ONCE(sqe->off);
3481 req->sync.len = READ_ONCE(sqe->len);
3482 req->sync.flags = READ_ONCE(sqe->sync_range_flags);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003483 return 0;
3484}
3485
Pavel Begunkov014db002020-03-03 21:33:12 +03003486static void __io_sync_file_range(struct io_kiocb *req)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003487{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003488 int ret;
3489
Jens Axboe9adbd452019-12-20 08:45:55 -07003490 ret = sync_file_range(req->file, req->sync.off, req->sync.len,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003491 req->sync.flags);
3492 if (ret < 0)
3493 req_set_fail_links(req);
3494 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003495 io_put_req(req);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03003496}
3497
3498
3499static void io_sync_file_range_finish(struct io_wq_work **workptr)
3500{
3501 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03003502
3503 if (io_req_cancelled(req))
3504 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03003505 __io_sync_file_range(req);
Pavel Begunkov594506f2020-03-03 21:33:11 +03003506 io_put_req(req); /* put submission ref */
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003507}
3508
Pavel Begunkov014db002020-03-03 21:33:12 +03003509static int io_sync_file_range(struct io_kiocb *req, bool force_nonblock)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003510{
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003511 /* sync_file_range always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003512 if (force_nonblock) {
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003513 req->work.func = io_sync_file_range_finish;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003514 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003515 }
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003516
Pavel Begunkov014db002020-03-03 21:33:12 +03003517 __io_sync_file_range(req);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003518 return 0;
3519}
3520
YueHaibing469956e2020-03-04 15:53:52 +08003521#if defined(CONFIG_NET)
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003522static int io_setup_async_msg(struct io_kiocb *req,
3523 struct io_async_msghdr *kmsg)
3524{
3525 if (req->io)
3526 return -EAGAIN;
3527 if (io_alloc_async_ctx(req)) {
3528 if (kmsg->iov != kmsg->fast_iov)
3529 kfree(kmsg->iov);
3530 return -ENOMEM;
3531 }
3532 req->flags |= REQ_F_NEED_CLEANUP;
3533 memcpy(&req->io->msg, kmsg, sizeof(*kmsg));
3534 return -EAGAIN;
3535}
3536
Jens Axboe3529d8c2019-12-19 18:24:38 -07003537static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboeaa1fa282019-04-19 13:38:09 -06003538{
Jens Axboee47293f2019-12-20 08:58:21 -07003539 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003540 struct io_async_ctx *io = req->io;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003541 int ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003542
Jens Axboee47293f2019-12-20 08:58:21 -07003543 sr->msg_flags = READ_ONCE(sqe->msg_flags);
3544 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboefddafac2020-01-04 20:19:44 -07003545 sr->len = READ_ONCE(sqe->len);
Jens Axboe3529d8c2019-12-19 18:24:38 -07003546
Jens Axboed8768362020-02-27 14:17:49 -07003547#ifdef CONFIG_COMPAT
3548 if (req->ctx->compat)
3549 sr->msg_flags |= MSG_CMSG_COMPAT;
3550#endif
3551
Jens Axboefddafac2020-01-04 20:19:44 -07003552 if (!io || req->opcode == IORING_OP_SEND)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003553 return 0;
Pavel Begunkov5f798be2020-02-08 13:28:02 +03003554 /* iovec is already imported */
3555 if (req->flags & REQ_F_NEED_CLEANUP)
3556 return 0;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003557
Jens Axboed9688562019-12-09 19:35:20 -07003558 io->msg.iov = io->msg.fast_iov;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003559 ret = sendmsg_copy_msghdr(&io->msg.msg, sr->msg, sr->msg_flags,
Jens Axboee47293f2019-12-20 08:58:21 -07003560 &io->msg.iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003561 if (!ret)
3562 req->flags |= REQ_F_NEED_CLEANUP;
3563 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003564}
3565
Pavel Begunkov014db002020-03-03 21:33:12 +03003566static int io_sendmsg(struct io_kiocb *req, bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07003567{
Jens Axboe0b416c32019-12-15 10:57:46 -07003568 struct io_async_msghdr *kmsg = NULL;
Jens Axboe03b12302019-12-02 18:50:25 -07003569 struct socket *sock;
3570 int ret;
3571
3572 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3573 return -EINVAL;
3574
3575 sock = sock_from_file(req->file, &ret);
3576 if (sock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003577 struct io_async_ctx io;
Jens Axboe03b12302019-12-02 18:50:25 -07003578 unsigned flags;
3579
Jens Axboe03b12302019-12-02 18:50:25 -07003580 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07003581 kmsg = &req->io->msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003582 kmsg->msg.msg_name = &req->io->msg.addr;
Jens Axboe0b416c32019-12-15 10:57:46 -07003583 /* if iov is set, it's allocated already */
3584 if (!kmsg->iov)
3585 kmsg->iov = kmsg->fast_iov;
3586 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07003587 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07003588 struct io_sr_msg *sr = &req->sr_msg;
3589
Jens Axboe0b416c32019-12-15 10:57:46 -07003590 kmsg = &io.msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003591 kmsg->msg.msg_name = &io.msg.addr;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003592
3593 io.msg.iov = io.msg.fast_iov;
3594 ret = sendmsg_copy_msghdr(&io.msg.msg, sr->msg,
3595 sr->msg_flags, &io.msg.iov);
Jens Axboe03b12302019-12-02 18:50:25 -07003596 if (ret)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003597 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003598 }
3599
Jens Axboee47293f2019-12-20 08:58:21 -07003600 flags = req->sr_msg.msg_flags;
3601 if (flags & MSG_DONTWAIT)
3602 req->flags |= REQ_F_NOWAIT;
3603 else if (force_nonblock)
3604 flags |= MSG_DONTWAIT;
3605
Jens Axboe0b416c32019-12-15 10:57:46 -07003606 ret = __sys_sendmsg_sock(sock, &kmsg->msg, flags);
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003607 if (force_nonblock && ret == -EAGAIN)
3608 return io_setup_async_msg(req, kmsg);
Jens Axboe03b12302019-12-02 18:50:25 -07003609 if (ret == -ERESTARTSYS)
3610 ret = -EINTR;
3611 }
3612
Pavel Begunkov1e950812020-02-06 19:51:16 +03003613 if (kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07003614 kfree(kmsg->iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003615 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe03b12302019-12-02 18:50:25 -07003616 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003617 if (ret < 0)
3618 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003619 io_put_req(req);
Jens Axboe03b12302019-12-02 18:50:25 -07003620 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07003621}
3622
Pavel Begunkov014db002020-03-03 21:33:12 +03003623static int io_send(struct io_kiocb *req, bool force_nonblock)
Jens Axboefddafac2020-01-04 20:19:44 -07003624{
Jens Axboefddafac2020-01-04 20:19:44 -07003625 struct socket *sock;
3626 int ret;
3627
3628 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3629 return -EINVAL;
3630
3631 sock = sock_from_file(req->file, &ret);
3632 if (sock) {
3633 struct io_sr_msg *sr = &req->sr_msg;
3634 struct msghdr msg;
3635 struct iovec iov;
3636 unsigned flags;
3637
3638 ret = import_single_range(WRITE, sr->buf, sr->len, &iov,
3639 &msg.msg_iter);
3640 if (ret)
3641 return ret;
3642
3643 msg.msg_name = NULL;
3644 msg.msg_control = NULL;
3645 msg.msg_controllen = 0;
3646 msg.msg_namelen = 0;
3647
3648 flags = req->sr_msg.msg_flags;
3649 if (flags & MSG_DONTWAIT)
3650 req->flags |= REQ_F_NOWAIT;
3651 else if (force_nonblock)
3652 flags |= MSG_DONTWAIT;
3653
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003654 msg.msg_flags = flags;
3655 ret = sock_sendmsg(sock, &msg);
Jens Axboefddafac2020-01-04 20:19:44 -07003656 if (force_nonblock && ret == -EAGAIN)
3657 return -EAGAIN;
3658 if (ret == -ERESTARTSYS)
3659 ret = -EINTR;
3660 }
3661
3662 io_cqring_add_event(req, ret);
3663 if (ret < 0)
3664 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003665 io_put_req(req);
Jens Axboefddafac2020-01-04 20:19:44 -07003666 return 0;
Jens Axboefddafac2020-01-04 20:19:44 -07003667}
3668
Jens Axboe52de1fe2020-02-27 10:15:42 -07003669static int __io_recvmsg_copy_hdr(struct io_kiocb *req, struct io_async_ctx *io)
3670{
3671 struct io_sr_msg *sr = &req->sr_msg;
3672 struct iovec __user *uiov;
3673 size_t iov_len;
3674 int ret;
3675
3676 ret = __copy_msghdr_from_user(&io->msg.msg, sr->msg, &io->msg.uaddr,
3677 &uiov, &iov_len);
3678 if (ret)
3679 return ret;
3680
3681 if (req->flags & REQ_F_BUFFER_SELECT) {
3682 if (iov_len > 1)
3683 return -EINVAL;
3684 if (copy_from_user(io->msg.iov, uiov, sizeof(*uiov)))
3685 return -EFAULT;
3686 sr->len = io->msg.iov[0].iov_len;
3687 iov_iter_init(&io->msg.msg.msg_iter, READ, io->msg.iov, 1,
3688 sr->len);
3689 io->msg.iov = NULL;
3690 } else {
3691 ret = import_iovec(READ, uiov, iov_len, UIO_FASTIOV,
3692 &io->msg.iov, &io->msg.msg.msg_iter);
3693 if (ret > 0)
3694 ret = 0;
3695 }
3696
3697 return ret;
3698}
3699
3700#ifdef CONFIG_COMPAT
3701static int __io_compat_recvmsg_copy_hdr(struct io_kiocb *req,
3702 struct io_async_ctx *io)
3703{
3704 struct compat_msghdr __user *msg_compat;
3705 struct io_sr_msg *sr = &req->sr_msg;
3706 struct compat_iovec __user *uiov;
3707 compat_uptr_t ptr;
3708 compat_size_t len;
3709 int ret;
3710
3711 msg_compat = (struct compat_msghdr __user *) sr->msg;
3712 ret = __get_compat_msghdr(&io->msg.msg, msg_compat, &io->msg.uaddr,
3713 &ptr, &len);
3714 if (ret)
3715 return ret;
3716
3717 uiov = compat_ptr(ptr);
3718 if (req->flags & REQ_F_BUFFER_SELECT) {
3719 compat_ssize_t clen;
3720
3721 if (len > 1)
3722 return -EINVAL;
3723 if (!access_ok(uiov, sizeof(*uiov)))
3724 return -EFAULT;
3725 if (__get_user(clen, &uiov->iov_len))
3726 return -EFAULT;
3727 if (clen < 0)
3728 return -EINVAL;
3729 sr->len = io->msg.iov[0].iov_len;
3730 io->msg.iov = NULL;
3731 } else {
3732 ret = compat_import_iovec(READ, uiov, len, UIO_FASTIOV,
3733 &io->msg.iov,
3734 &io->msg.msg.msg_iter);
3735 if (ret < 0)
3736 return ret;
3737 }
3738
3739 return 0;
3740}
Jens Axboe03b12302019-12-02 18:50:25 -07003741#endif
Jens Axboe52de1fe2020-02-27 10:15:42 -07003742
3743static int io_recvmsg_copy_hdr(struct io_kiocb *req, struct io_async_ctx *io)
3744{
3745 io->msg.iov = io->msg.fast_iov;
3746
3747#ifdef CONFIG_COMPAT
3748 if (req->ctx->compat)
3749 return __io_compat_recvmsg_copy_hdr(req, io);
3750#endif
3751
3752 return __io_recvmsg_copy_hdr(req, io);
3753}
3754
Jens Axboebcda7ba2020-02-23 16:42:51 -07003755static struct io_buffer *io_recv_buffer_select(struct io_kiocb *req,
3756 int *cflags, bool needs_lock)
3757{
3758 struct io_sr_msg *sr = &req->sr_msg;
3759 struct io_buffer *kbuf;
3760
3761 if (!(req->flags & REQ_F_BUFFER_SELECT))
3762 return NULL;
3763
3764 kbuf = io_buffer_select(req, &sr->len, sr->bgid, sr->kbuf, needs_lock);
3765 if (IS_ERR(kbuf))
3766 return kbuf;
3767
3768 sr->kbuf = kbuf;
3769 req->flags |= REQ_F_BUFFER_SELECTED;
3770
3771 *cflags = kbuf->bid << IORING_CQE_BUFFER_SHIFT;
3772 *cflags |= IORING_CQE_F_BUFFER;
3773 return kbuf;
Jens Axboe03b12302019-12-02 18:50:25 -07003774}
3775
Jens Axboe3529d8c2019-12-19 18:24:38 -07003776static int io_recvmsg_prep(struct io_kiocb *req,
3777 const struct io_uring_sqe *sqe)
Jens Axboe03b12302019-12-02 18:50:25 -07003778{
Jens Axboee47293f2019-12-20 08:58:21 -07003779 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003780 struct io_async_ctx *io = req->io;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003781 int ret;
Jens Axboe06b76d42019-12-19 14:44:26 -07003782
Jens Axboe3529d8c2019-12-19 18:24:38 -07003783 sr->msg_flags = READ_ONCE(sqe->msg_flags);
3784 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003785 sr->len = READ_ONCE(sqe->len);
Jens Axboebcda7ba2020-02-23 16:42:51 -07003786 sr->bgid = READ_ONCE(sqe->buf_group);
Jens Axboe3529d8c2019-12-19 18:24:38 -07003787
Jens Axboed8768362020-02-27 14:17:49 -07003788#ifdef CONFIG_COMPAT
3789 if (req->ctx->compat)
3790 sr->msg_flags |= MSG_CMSG_COMPAT;
3791#endif
3792
Jens Axboefddafac2020-01-04 20:19:44 -07003793 if (!io || req->opcode == IORING_OP_RECV)
Jens Axboe06b76d42019-12-19 14:44:26 -07003794 return 0;
Pavel Begunkov5f798be2020-02-08 13:28:02 +03003795 /* iovec is already imported */
3796 if (req->flags & REQ_F_NEED_CLEANUP)
3797 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07003798
Jens Axboe52de1fe2020-02-27 10:15:42 -07003799 ret = io_recvmsg_copy_hdr(req, io);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003800 if (!ret)
3801 req->flags |= REQ_F_NEED_CLEANUP;
3802 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003803}
3804
Pavel Begunkov014db002020-03-03 21:33:12 +03003805static int io_recvmsg(struct io_kiocb *req, bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07003806{
Jens Axboe0b416c32019-12-15 10:57:46 -07003807 struct io_async_msghdr *kmsg = NULL;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003808 struct socket *sock;
Jens Axboe52de1fe2020-02-27 10:15:42 -07003809 int ret, cflags = 0;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003810
3811 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3812 return -EINVAL;
3813
3814 sock = sock_from_file(req->file, &ret);
3815 if (sock) {
Jens Axboe52de1fe2020-02-27 10:15:42 -07003816 struct io_buffer *kbuf;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003817 struct io_async_ctx io;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003818 unsigned flags;
3819
Jens Axboe03b12302019-12-02 18:50:25 -07003820 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07003821 kmsg = &req->io->msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003822 kmsg->msg.msg_name = &req->io->msg.addr;
Jens Axboe0b416c32019-12-15 10:57:46 -07003823 /* if iov is set, it's allocated already */
3824 if (!kmsg->iov)
3825 kmsg->iov = kmsg->fast_iov;
3826 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07003827 } else {
Jens Axboe0b416c32019-12-15 10:57:46 -07003828 kmsg = &io.msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003829 kmsg->msg.msg_name = &io.msg.addr;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003830
Jens Axboe52de1fe2020-02-27 10:15:42 -07003831 ret = io_recvmsg_copy_hdr(req, &io);
Jens Axboe03b12302019-12-02 18:50:25 -07003832 if (ret)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003833 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003834 }
Jens Axboe0fa03c62019-04-19 13:34:07 -06003835
Jens Axboe52de1fe2020-02-27 10:15:42 -07003836 kbuf = io_recv_buffer_select(req, &cflags, !force_nonblock);
3837 if (IS_ERR(kbuf)) {
3838 return PTR_ERR(kbuf);
3839 } else if (kbuf) {
3840 kmsg->fast_iov[0].iov_base = u64_to_user_ptr(kbuf->addr);
3841 iov_iter_init(&kmsg->msg.msg_iter, READ, kmsg->iov,
3842 1, req->sr_msg.len);
3843 }
3844
Jens Axboee47293f2019-12-20 08:58:21 -07003845 flags = req->sr_msg.msg_flags;
3846 if (flags & MSG_DONTWAIT)
3847 req->flags |= REQ_F_NOWAIT;
3848 else if (force_nonblock)
3849 flags |= MSG_DONTWAIT;
3850
3851 ret = __sys_recvmsg_sock(sock, &kmsg->msg, req->sr_msg.msg,
3852 kmsg->uaddr, flags);
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003853 if (force_nonblock && ret == -EAGAIN)
3854 return io_setup_async_msg(req, kmsg);
Jens Axboe441cdbd2019-12-02 18:49:10 -07003855 if (ret == -ERESTARTSYS)
3856 ret = -EINTR;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003857 }
3858
Pavel Begunkov1e950812020-02-06 19:51:16 +03003859 if (kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07003860 kfree(kmsg->iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003861 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe52de1fe2020-02-27 10:15:42 -07003862 __io_cqring_add_event(req, ret, cflags);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003863 if (ret < 0)
3864 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003865 io_put_req(req);
Jens Axboe0fa03c62019-04-19 13:34:07 -06003866 return 0;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003867}
3868
Pavel Begunkov014db002020-03-03 21:33:12 +03003869static int io_recv(struct io_kiocb *req, bool force_nonblock)
Jens Axboefddafac2020-01-04 20:19:44 -07003870{
Jens Axboebcda7ba2020-02-23 16:42:51 -07003871 struct io_buffer *kbuf = NULL;
Jens Axboefddafac2020-01-04 20:19:44 -07003872 struct socket *sock;
Jens Axboebcda7ba2020-02-23 16:42:51 -07003873 int ret, cflags = 0;
Jens Axboefddafac2020-01-04 20:19:44 -07003874
3875 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3876 return -EINVAL;
3877
3878 sock = sock_from_file(req->file, &ret);
3879 if (sock) {
3880 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboebcda7ba2020-02-23 16:42:51 -07003881 void __user *buf = sr->buf;
Jens Axboefddafac2020-01-04 20:19:44 -07003882 struct msghdr msg;
3883 struct iovec iov;
3884 unsigned flags;
3885
Jens Axboebcda7ba2020-02-23 16:42:51 -07003886 kbuf = io_recv_buffer_select(req, &cflags, !force_nonblock);
3887 if (IS_ERR(kbuf))
3888 return PTR_ERR(kbuf);
3889 else if (kbuf)
3890 buf = u64_to_user_ptr(kbuf->addr);
Jens Axboefddafac2020-01-04 20:19:44 -07003891
Jens Axboebcda7ba2020-02-23 16:42:51 -07003892 ret = import_single_range(READ, buf, sr->len, &iov,
3893 &msg.msg_iter);
3894 if (ret) {
3895 kfree(kbuf);
3896 return ret;
3897 }
3898
3899 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboefddafac2020-01-04 20:19:44 -07003900 msg.msg_name = NULL;
3901 msg.msg_control = NULL;
3902 msg.msg_controllen = 0;
3903 msg.msg_namelen = 0;
3904 msg.msg_iocb = NULL;
3905 msg.msg_flags = 0;
3906
3907 flags = req->sr_msg.msg_flags;
3908 if (flags & MSG_DONTWAIT)
3909 req->flags |= REQ_F_NOWAIT;
3910 else if (force_nonblock)
3911 flags |= MSG_DONTWAIT;
3912
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003913 ret = sock_recvmsg(sock, &msg, flags);
Jens Axboefddafac2020-01-04 20:19:44 -07003914 if (force_nonblock && ret == -EAGAIN)
3915 return -EAGAIN;
3916 if (ret == -ERESTARTSYS)
3917 ret = -EINTR;
3918 }
3919
Jens Axboebcda7ba2020-02-23 16:42:51 -07003920 kfree(kbuf);
3921 req->flags &= ~REQ_F_NEED_CLEANUP;
3922 __io_cqring_add_event(req, ret, cflags);
Jens Axboefddafac2020-01-04 20:19:44 -07003923 if (ret < 0)
3924 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003925 io_put_req(req);
Jens Axboefddafac2020-01-04 20:19:44 -07003926 return 0;
Jens Axboefddafac2020-01-04 20:19:44 -07003927}
3928
Jens Axboe3529d8c2019-12-19 18:24:38 -07003929static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003930{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003931 struct io_accept *accept = &req->accept;
3932
Jens Axboe17f2fe32019-10-17 14:42:58 -06003933 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3934 return -EINVAL;
Hrvoje Zeba8042d6c2019-11-25 14:40:22 -05003935 if (sqe->ioprio || sqe->len || sqe->buf_index)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003936 return -EINVAL;
3937
Jens Axboed55e5f52019-12-11 16:12:15 -07003938 accept->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
3939 accept->addr_len = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003940 accept->flags = READ_ONCE(sqe->accept_flags);
Jens Axboe09952e32020-03-19 20:16:56 -06003941 accept->nofile = rlimit(RLIMIT_NOFILE);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003942 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003943}
Jens Axboe17f2fe32019-10-17 14:42:58 -06003944
Pavel Begunkov014db002020-03-03 21:33:12 +03003945static int __io_accept(struct io_kiocb *req, bool force_nonblock)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003946{
3947 struct io_accept *accept = &req->accept;
3948 unsigned file_flags;
3949 int ret;
3950
3951 file_flags = force_nonblock ? O_NONBLOCK : 0;
3952 ret = __sys_accept4_file(req->file, file_flags, accept->addr,
Jens Axboe09952e32020-03-19 20:16:56 -06003953 accept->addr_len, accept->flags,
3954 accept->nofile);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003955 if (ret == -EAGAIN && force_nonblock)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003956 return -EAGAIN;
Jens Axboe8e3cca12019-11-09 19:52:33 -07003957 if (ret == -ERESTARTSYS)
3958 ret = -EINTR;
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003959 if (ret < 0)
3960 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07003961 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003962 io_put_req(req);
Jens Axboe17f2fe32019-10-17 14:42:58 -06003963 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003964}
3965
3966static void io_accept_finish(struct io_wq_work **workptr)
3967{
3968 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003969
3970 if (io_req_cancelled(req))
3971 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03003972 __io_accept(req, false);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03003973 io_steal_work(req, workptr);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003974}
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003975
Pavel Begunkov014db002020-03-03 21:33:12 +03003976static int io_accept(struct io_kiocb *req, bool force_nonblock)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003977{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003978 int ret;
3979
Pavel Begunkov014db002020-03-03 21:33:12 +03003980 ret = __io_accept(req, force_nonblock);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003981 if (ret == -EAGAIN && force_nonblock) {
3982 req->work.func = io_accept_finish;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003983 return -EAGAIN;
3984 }
3985 return 0;
Jens Axboe17f2fe32019-10-17 14:42:58 -06003986}
3987
Jens Axboe3529d8c2019-12-19 18:24:38 -07003988static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef499a022019-12-02 16:28:46 -07003989{
Jens Axboe3529d8c2019-12-19 18:24:38 -07003990 struct io_connect *conn = &req->connect;
3991 struct io_async_ctx *io = req->io;
Jens Axboef499a022019-12-02 16:28:46 -07003992
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003993 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3994 return -EINVAL;
3995 if (sqe->ioprio || sqe->len || sqe->buf_index || sqe->rw_flags)
3996 return -EINVAL;
3997
Jens Axboe3529d8c2019-12-19 18:24:38 -07003998 conn->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
3999 conn->addr_len = READ_ONCE(sqe->addr2);
4000
4001 if (!io)
4002 return 0;
4003
4004 return move_addr_to_kernel(conn->addr, conn->addr_len,
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004005 &io->connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07004006}
4007
Pavel Begunkov014db002020-03-03 21:33:12 +03004008static int io_connect(struct io_kiocb *req, bool force_nonblock)
Jens Axboef8e85cf2019-11-23 14:24:24 -07004009{
Jens Axboef499a022019-12-02 16:28:46 -07004010 struct io_async_ctx __io, *io;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004011 unsigned file_flags;
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004012 int ret;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004013
Jens Axboef499a022019-12-02 16:28:46 -07004014 if (req->io) {
4015 io = req->io;
4016 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07004017 ret = move_addr_to_kernel(req->connect.addr,
4018 req->connect.addr_len,
4019 &__io.connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07004020 if (ret)
4021 goto out;
4022 io = &__io;
4023 }
4024
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004025 file_flags = force_nonblock ? O_NONBLOCK : 0;
4026
4027 ret = __sys_connect_file(req->file, &io->connect.address,
4028 req->connect.addr_len, file_flags);
Jens Axboe87f80d62019-12-03 11:23:54 -07004029 if ((ret == -EAGAIN || ret == -EINPROGRESS) && force_nonblock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004030 if (req->io)
4031 return -EAGAIN;
4032 if (io_alloc_async_ctx(req)) {
Jens Axboef499a022019-12-02 16:28:46 -07004033 ret = -ENOMEM;
4034 goto out;
4035 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004036 memcpy(&req->io->connect, &__io.connect, sizeof(__io.connect));
Jens Axboef8e85cf2019-11-23 14:24:24 -07004037 return -EAGAIN;
Jens Axboef499a022019-12-02 16:28:46 -07004038 }
Jens Axboef8e85cf2019-11-23 14:24:24 -07004039 if (ret == -ERESTARTSYS)
4040 ret = -EINTR;
Jens Axboef499a022019-12-02 16:28:46 -07004041out:
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004042 if (ret < 0)
4043 req_set_fail_links(req);
Jens Axboef8e85cf2019-11-23 14:24:24 -07004044 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03004045 io_put_req(req);
Jens Axboef8e85cf2019-11-23 14:24:24 -07004046 return 0;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004047}
YueHaibing469956e2020-03-04 15:53:52 +08004048#else /* !CONFIG_NET */
4049static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4050{
Jens Axboef8e85cf2019-11-23 14:24:24 -07004051 return -EOPNOTSUPP;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004052}
4053
YueHaibing469956e2020-03-04 15:53:52 +08004054static int io_sendmsg(struct io_kiocb *req, bool force_nonblock)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004055{
YueHaibing469956e2020-03-04 15:53:52 +08004056 return -EOPNOTSUPP;
4057}
4058
4059static int io_send(struct io_kiocb *req, bool force_nonblock)
4060{
4061 return -EOPNOTSUPP;
4062}
4063
4064static int io_recvmsg_prep(struct io_kiocb *req,
4065 const struct io_uring_sqe *sqe)
4066{
4067 return -EOPNOTSUPP;
4068}
4069
4070static int io_recvmsg(struct io_kiocb *req, bool force_nonblock)
4071{
4072 return -EOPNOTSUPP;
4073}
4074
4075static int io_recv(struct io_kiocb *req, bool force_nonblock)
4076{
4077 return -EOPNOTSUPP;
4078}
4079
4080static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4081{
4082 return -EOPNOTSUPP;
4083}
4084
4085static int io_accept(struct io_kiocb *req, bool force_nonblock)
4086{
4087 return -EOPNOTSUPP;
4088}
4089
4090static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4091{
4092 return -EOPNOTSUPP;
4093}
4094
4095static int io_connect(struct io_kiocb *req, bool force_nonblock)
4096{
4097 return -EOPNOTSUPP;
4098}
4099#endif /* CONFIG_NET */
Jens Axboe2b188cc2019-01-07 10:46:33 -07004100
Jens Axboed7718a92020-02-14 22:23:12 -07004101struct io_poll_table {
4102 struct poll_table_struct pt;
4103 struct io_kiocb *req;
4104 int error;
4105};
4106
4107static void __io_queue_proc(struct io_poll_iocb *poll, struct io_poll_table *pt,
4108 struct wait_queue_head *head)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004109{
Jens Axboed7718a92020-02-14 22:23:12 -07004110 if (unlikely(poll->head)) {
4111 pt->error = -EINVAL;
4112 return;
4113 }
4114
4115 pt->error = 0;
4116 poll->head = head;
4117 add_wait_queue(head, &poll->wait);
4118}
4119
4120static void io_async_queue_proc(struct file *file, struct wait_queue_head *head,
4121 struct poll_table_struct *p)
4122{
4123 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
4124
4125 __io_queue_proc(&pt->req->apoll->poll, pt, head);
4126}
4127
4128static int __io_async_wake(struct io_kiocb *req, struct io_poll_iocb *poll,
4129 __poll_t mask, task_work_func_t func)
4130{
4131 struct task_struct *tsk;
Jens Axboeaa96bf82020-04-03 11:26:26 -06004132 int ret;
Jens Axboed7718a92020-02-14 22:23:12 -07004133
4134 /* for instances that support it check for an event match first: */
4135 if (mask && !(mask & poll->events))
4136 return 0;
4137
4138 trace_io_uring_task_add(req->ctx, req->opcode, req->user_data, mask);
4139
4140 list_del_init(&poll->wait.entry);
4141
4142 tsk = req->task;
4143 req->result = mask;
4144 init_task_work(&req->task_work, func);
4145 /*
Jens Axboeaa96bf82020-04-03 11:26:26 -06004146 * If this fails, then the task is exiting. Punt to one of the io-wq
4147 * threads to ensure the work gets run, we can't always rely on exit
4148 * cancelation taking care of this.
Jens Axboed7718a92020-02-14 22:23:12 -07004149 */
Jens Axboeaa96bf82020-04-03 11:26:26 -06004150 ret = task_work_add(tsk, &req->task_work, true);
4151 if (unlikely(ret)) {
4152 tsk = io_wq_get_task(req->ctx->io_wq);
4153 task_work_add(tsk, &req->task_work, true);
4154 }
Jens Axboed7718a92020-02-14 22:23:12 -07004155 wake_up_process(tsk);
4156 return 1;
4157}
4158
Jens Axboe74ce6ce2020-04-13 11:09:12 -06004159static bool io_poll_rewait(struct io_kiocb *req, struct io_poll_iocb *poll)
4160 __acquires(&req->ctx->completion_lock)
4161{
4162 struct io_ring_ctx *ctx = req->ctx;
4163
4164 if (!req->result && !READ_ONCE(poll->canceled)) {
4165 struct poll_table_struct pt = { ._key = poll->events };
4166
4167 req->result = vfs_poll(req->file, &pt) & poll->events;
4168 }
4169
4170 spin_lock_irq(&ctx->completion_lock);
4171 if (!req->result && !READ_ONCE(poll->canceled)) {
4172 add_wait_queue(poll->head, &poll->wait);
4173 return true;
4174 }
4175
4176 return false;
4177}
4178
Jens Axboed7718a92020-02-14 22:23:12 -07004179static void io_async_task_func(struct callback_head *cb)
4180{
4181 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
4182 struct async_poll *apoll = req->apoll;
4183 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2bae0472020-04-13 11:16:34 -06004184 bool canceled;
Jens Axboed7718a92020-02-14 22:23:12 -07004185
4186 trace_io_uring_task_run(req->ctx, req->opcode, req->user_data);
4187
Jens Axboe74ce6ce2020-04-13 11:09:12 -06004188 if (io_poll_rewait(req, &apoll->poll)) {
Jens Axboed7718a92020-02-14 22:23:12 -07004189 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe74ce6ce2020-04-13 11:09:12 -06004190 return;
Jens Axboed7718a92020-02-14 22:23:12 -07004191 }
4192
Jens Axboe74ce6ce2020-04-13 11:09:12 -06004193 if (hash_hashed(&req->hash_node))
4194 hash_del(&req->hash_node);
4195
Jens Axboe2bae0472020-04-13 11:16:34 -06004196 canceled = READ_ONCE(apoll->poll.canceled);
4197 if (canceled) {
4198 io_cqring_fill_event(req, -ECANCELED);
4199 io_commit_cqring(ctx);
4200 }
4201
Jens Axboe74ce6ce2020-04-13 11:09:12 -06004202 spin_unlock_irq(&ctx->completion_lock);
4203
Jens Axboe2bae0472020-04-13 11:16:34 -06004204 if (canceled) {
4205 kfree(apoll);
4206 io_cqring_ev_posted(ctx);
4207 req_set_fail_links(req);
4208 io_put_req(req);
4209 return;
4210 }
4211
Jens Axboed7718a92020-02-14 22:23:12 -07004212 /* restore ->work in case we need to retry again */
4213 memcpy(&req->work, &apoll->work, sizeof(req->work));
4214
4215 __set_current_state(TASK_RUNNING);
4216 mutex_lock(&ctx->uring_lock);
4217 __io_queue_sqe(req, NULL);
4218 mutex_unlock(&ctx->uring_lock);
4219
4220 kfree(apoll);
4221}
4222
4223static int io_async_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
4224 void *key)
4225{
4226 struct io_kiocb *req = wait->private;
4227 struct io_poll_iocb *poll = &req->apoll->poll;
4228
4229 trace_io_uring_poll_wake(req->ctx, req->opcode, req->user_data,
4230 key_to_poll(key));
4231
4232 return __io_async_wake(req, poll, key_to_poll(key), io_async_task_func);
4233}
4234
4235static void io_poll_req_insert(struct io_kiocb *req)
4236{
4237 struct io_ring_ctx *ctx = req->ctx;
4238 struct hlist_head *list;
4239
4240 list = &ctx->cancel_hash[hash_long(req->user_data, ctx->cancel_hash_bits)];
4241 hlist_add_head(&req->hash_node, list);
4242}
4243
4244static __poll_t __io_arm_poll_handler(struct io_kiocb *req,
4245 struct io_poll_iocb *poll,
4246 struct io_poll_table *ipt, __poll_t mask,
4247 wait_queue_func_t wake_func)
4248 __acquires(&ctx->completion_lock)
4249{
4250 struct io_ring_ctx *ctx = req->ctx;
4251 bool cancel = false;
4252
4253 poll->file = req->file;
4254 poll->head = NULL;
4255 poll->done = poll->canceled = false;
4256 poll->events = mask;
4257
4258 ipt->pt._key = mask;
4259 ipt->req = req;
4260 ipt->error = -EINVAL;
4261
4262 INIT_LIST_HEAD(&poll->wait.entry);
4263 init_waitqueue_func_entry(&poll->wait, wake_func);
4264 poll->wait.private = req;
4265
4266 mask = vfs_poll(req->file, &ipt->pt) & poll->events;
4267
4268 spin_lock_irq(&ctx->completion_lock);
4269 if (likely(poll->head)) {
4270 spin_lock(&poll->head->lock);
4271 if (unlikely(list_empty(&poll->wait.entry))) {
4272 if (ipt->error)
4273 cancel = true;
4274 ipt->error = 0;
4275 mask = 0;
4276 }
4277 if (mask || ipt->error)
4278 list_del_init(&poll->wait.entry);
4279 else if (cancel)
4280 WRITE_ONCE(poll->canceled, true);
4281 else if (!poll->done) /* actually waiting for an event */
4282 io_poll_req_insert(req);
4283 spin_unlock(&poll->head->lock);
4284 }
4285
4286 return mask;
4287}
4288
4289static bool io_arm_poll_handler(struct io_kiocb *req)
4290{
4291 const struct io_op_def *def = &io_op_defs[req->opcode];
4292 struct io_ring_ctx *ctx = req->ctx;
4293 struct async_poll *apoll;
4294 struct io_poll_table ipt;
4295 __poll_t mask, ret;
4296
4297 if (!req->file || !file_can_poll(req->file))
4298 return false;
4299 if (req->flags & (REQ_F_MUST_PUNT | REQ_F_POLLED))
4300 return false;
4301 if (!def->pollin && !def->pollout)
4302 return false;
4303
4304 apoll = kmalloc(sizeof(*apoll), GFP_ATOMIC);
4305 if (unlikely(!apoll))
4306 return false;
4307
4308 req->flags |= REQ_F_POLLED;
4309 memcpy(&apoll->work, &req->work, sizeof(req->work));
4310
Jens Axboe3537b6a2020-04-03 11:19:06 -06004311 get_task_struct(current);
Jens Axboed7718a92020-02-14 22:23:12 -07004312 req->task = current;
4313 req->apoll = apoll;
4314 INIT_HLIST_NODE(&req->hash_node);
4315
Nathan Chancellor8755d972020-03-02 16:01:19 -07004316 mask = 0;
Jens Axboed7718a92020-02-14 22:23:12 -07004317 if (def->pollin)
Nathan Chancellor8755d972020-03-02 16:01:19 -07004318 mask |= POLLIN | POLLRDNORM;
Jens Axboed7718a92020-02-14 22:23:12 -07004319 if (def->pollout)
4320 mask |= POLLOUT | POLLWRNORM;
4321 mask |= POLLERR | POLLPRI;
4322
4323 ipt.pt._qproc = io_async_queue_proc;
4324
4325 ret = __io_arm_poll_handler(req, &apoll->poll, &ipt, mask,
4326 io_async_wake);
4327 if (ret) {
4328 ipt.error = 0;
4329 apoll->poll.done = true;
4330 spin_unlock_irq(&ctx->completion_lock);
4331 memcpy(&req->work, &apoll->work, sizeof(req->work));
4332 kfree(apoll);
4333 return false;
4334 }
4335 spin_unlock_irq(&ctx->completion_lock);
4336 trace_io_uring_poll_arm(ctx, req->opcode, req->user_data, mask,
4337 apoll->poll.events);
4338 return true;
4339}
4340
4341static bool __io_poll_remove_one(struct io_kiocb *req,
4342 struct io_poll_iocb *poll)
4343{
Jens Axboeb41e9852020-02-17 09:52:41 -07004344 bool do_complete = false;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004345
4346 spin_lock(&poll->head->lock);
4347 WRITE_ONCE(poll->canceled, true);
Jens Axboe392edb42019-12-09 17:52:20 -07004348 if (!list_empty(&poll->wait.entry)) {
4349 list_del_init(&poll->wait.entry);
Jens Axboeb41e9852020-02-17 09:52:41 -07004350 do_complete = true;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004351 }
4352 spin_unlock(&poll->head->lock);
Jens Axboed7718a92020-02-14 22:23:12 -07004353 return do_complete;
4354}
4355
4356static bool io_poll_remove_one(struct io_kiocb *req)
4357{
Xiaoguang Wangb1f573b2020-04-12 14:50:54 +08004358 struct async_poll *apoll = NULL;
Jens Axboed7718a92020-02-14 22:23:12 -07004359 bool do_complete;
4360
4361 if (req->opcode == IORING_OP_POLL_ADD) {
4362 do_complete = __io_poll_remove_one(req, &req->poll);
4363 } else {
Xiaoguang Wangb1f573b2020-04-12 14:50:54 +08004364 apoll = req->apoll;
Jens Axboed7718a92020-02-14 22:23:12 -07004365 /* non-poll requests have submit ref still */
4366 do_complete = __io_poll_remove_one(req, &req->apoll->poll);
4367 if (do_complete)
4368 io_put_req(req);
4369 }
4370
Jens Axboe78076bb2019-12-04 19:56:40 -07004371 hash_del(&req->hash_node);
Jens Axboed7718a92020-02-14 22:23:12 -07004372
Xiaoguang Wangb1f573b2020-04-12 14:50:54 +08004373 if (apoll) {
4374 /*
4375 * restore ->work because we need to call io_req_work_drop_env.
4376 */
4377 memcpy(&req->work, &apoll->work, sizeof(req->work));
4378 kfree(apoll);
4379 }
4380
Jens Axboeb41e9852020-02-17 09:52:41 -07004381 if (do_complete) {
4382 io_cqring_fill_event(req, -ECANCELED);
4383 io_commit_cqring(req->ctx);
4384 req->flags |= REQ_F_COMP_LOCKED;
4385 io_put_req(req);
4386 }
4387
4388 return do_complete;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004389}
4390
4391static void io_poll_remove_all(struct io_ring_ctx *ctx)
4392{
Jens Axboe78076bb2019-12-04 19:56:40 -07004393 struct hlist_node *tmp;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004394 struct io_kiocb *req;
Jens Axboe8e2e1fa2020-04-13 17:05:14 -06004395 int posted = 0, i;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004396
4397 spin_lock_irq(&ctx->completion_lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07004398 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
4399 struct hlist_head *list;
4400
4401 list = &ctx->cancel_hash[i];
4402 hlist_for_each_entry_safe(req, tmp, list, hash_node)
Jens Axboe8e2e1fa2020-04-13 17:05:14 -06004403 posted += io_poll_remove_one(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004404 }
4405 spin_unlock_irq(&ctx->completion_lock);
Jens Axboeb41e9852020-02-17 09:52:41 -07004406
Jens Axboe8e2e1fa2020-04-13 17:05:14 -06004407 if (posted)
4408 io_cqring_ev_posted(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004409}
4410
Jens Axboe47f46762019-11-09 17:43:02 -07004411static int io_poll_cancel(struct io_ring_ctx *ctx, __u64 sqe_addr)
4412{
Jens Axboe78076bb2019-12-04 19:56:40 -07004413 struct hlist_head *list;
Jens Axboe47f46762019-11-09 17:43:02 -07004414 struct io_kiocb *req;
4415
Jens Axboe78076bb2019-12-04 19:56:40 -07004416 list = &ctx->cancel_hash[hash_long(sqe_addr, ctx->cancel_hash_bits)];
4417 hlist_for_each_entry(req, list, hash_node) {
Jens Axboeb41e9852020-02-17 09:52:41 -07004418 if (sqe_addr != req->user_data)
4419 continue;
4420 if (io_poll_remove_one(req))
Jens Axboeeac406c2019-11-14 12:09:58 -07004421 return 0;
Jens Axboeb41e9852020-02-17 09:52:41 -07004422 return -EALREADY;
Jens Axboe47f46762019-11-09 17:43:02 -07004423 }
4424
4425 return -ENOENT;
4426}
4427
Jens Axboe3529d8c2019-12-19 18:24:38 -07004428static int io_poll_remove_prep(struct io_kiocb *req,
4429 const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004430{
Jens Axboe221c5eb2019-01-17 09:41:58 -07004431 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4432 return -EINVAL;
4433 if (sqe->ioprio || sqe->off || sqe->len || sqe->buf_index ||
4434 sqe->poll_events)
4435 return -EINVAL;
4436
Jens Axboe0969e782019-12-17 18:40:57 -07004437 req->poll.addr = READ_ONCE(sqe->addr);
Jens Axboe0969e782019-12-17 18:40:57 -07004438 return 0;
4439}
4440
4441/*
4442 * Find a running poll command that matches one specified in sqe->addr,
4443 * and remove it if found.
4444 */
4445static int io_poll_remove(struct io_kiocb *req)
4446{
4447 struct io_ring_ctx *ctx = req->ctx;
4448 u64 addr;
4449 int ret;
4450
Jens Axboe0969e782019-12-17 18:40:57 -07004451 addr = req->poll.addr;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004452 spin_lock_irq(&ctx->completion_lock);
Jens Axboe0969e782019-12-17 18:40:57 -07004453 ret = io_poll_cancel(ctx, addr);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004454 spin_unlock_irq(&ctx->completion_lock);
4455
Jens Axboe78e19bb2019-11-06 15:21:34 -07004456 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004457 if (ret < 0)
4458 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06004459 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004460 return 0;
4461}
4462
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004463static void io_poll_complete(struct io_kiocb *req, __poll_t mask, int error)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004464{
Jackie Liua197f662019-11-08 08:09:12 -07004465 struct io_ring_ctx *ctx = req->ctx;
4466
Jens Axboe8c838782019-03-12 15:48:16 -06004467 req->poll.done = true;
Pavel Begunkovb0a20342020-02-28 10:36:35 +03004468 io_cqring_fill_event(req, error ? error : mangle_poll(mask));
Jens Axboe8c838782019-03-12 15:48:16 -06004469 io_commit_cqring(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004470}
4471
Jens Axboeb41e9852020-02-17 09:52:41 -07004472static void io_poll_task_handler(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004473{
Jens Axboe221c5eb2019-01-17 09:41:58 -07004474 struct io_ring_ctx *ctx = req->ctx;
Jens Axboea6ba6322020-04-03 11:10:14 -06004475 struct io_poll_iocb *poll = &req->poll;
4476
Jens Axboe74ce6ce2020-04-13 11:09:12 -06004477 if (io_poll_rewait(req, poll)) {
Jens Axboea6ba6322020-04-03 11:10:14 -06004478 spin_unlock_irq(&ctx->completion_lock);
4479 return;
4480 }
Jens Axboe74ce6ce2020-04-13 11:09:12 -06004481
Jens Axboe78076bb2019-12-04 19:56:40 -07004482 hash_del(&req->hash_node);
Jens Axboeb41e9852020-02-17 09:52:41 -07004483 io_poll_complete(req, req->result, 0);
4484 req->flags |= REQ_F_COMP_LOCKED;
4485 io_put_req_find_next(req, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004486 spin_unlock_irq(&ctx->completion_lock);
4487
Jens Axboe8c838782019-03-12 15:48:16 -06004488 io_cqring_ev_posted(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004489}
4490
Jens Axboeb41e9852020-02-17 09:52:41 -07004491static void io_poll_task_func(struct callback_head *cb)
Jens Axboee94f1412019-12-19 12:06:02 -07004492{
Jens Axboeb41e9852020-02-17 09:52:41 -07004493 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
4494 struct io_kiocb *nxt = NULL;
Jens Axboee94f1412019-12-19 12:06:02 -07004495
Jens Axboeb41e9852020-02-17 09:52:41 -07004496 io_poll_task_handler(req, &nxt);
Jens Axboed7718a92020-02-14 22:23:12 -07004497 if (nxt) {
4498 struct io_ring_ctx *ctx = nxt->ctx;
Jens Axboee94f1412019-12-19 12:06:02 -07004499
Jens Axboed7718a92020-02-14 22:23:12 -07004500 mutex_lock(&ctx->uring_lock);
Jens Axboeb41e9852020-02-17 09:52:41 -07004501 __io_queue_sqe(nxt, NULL);
Jens Axboed7718a92020-02-14 22:23:12 -07004502 mutex_unlock(&ctx->uring_lock);
Jens Axboee94f1412019-12-19 12:06:02 -07004503 }
Jens Axboef0b493e2020-02-01 21:30:11 -07004504}
4505
Jens Axboe221c5eb2019-01-17 09:41:58 -07004506static int io_poll_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
4507 void *key)
4508{
Jens Axboec2f2eb72020-02-10 09:07:05 -07004509 struct io_kiocb *req = wait->private;
4510 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004511
Jens Axboed7718a92020-02-14 22:23:12 -07004512 return __io_async_wake(req, poll, key_to_poll(key), io_poll_task_func);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004513}
4514
Jens Axboe221c5eb2019-01-17 09:41:58 -07004515static void io_poll_queue_proc(struct file *file, struct wait_queue_head *head,
4516 struct poll_table_struct *p)
4517{
4518 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
4519
Jens Axboed7718a92020-02-14 22:23:12 -07004520 __io_queue_proc(&pt->req->poll, pt, head);
Jens Axboeeac406c2019-11-14 12:09:58 -07004521}
4522
Jens Axboe3529d8c2019-12-19 18:24:38 -07004523static int io_poll_add_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004524{
4525 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004526 u16 events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004527
4528 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4529 return -EINVAL;
4530 if (sqe->addr || sqe->ioprio || sqe->off || sqe->len || sqe->buf_index)
4531 return -EINVAL;
Jens Axboe09bb8392019-03-13 12:39:28 -06004532 if (!poll->file)
4533 return -EBADF;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004534
Jens Axboe221c5eb2019-01-17 09:41:58 -07004535 events = READ_ONCE(sqe->poll_events);
4536 poll->events = demangle_poll(events) | EPOLLERR | EPOLLHUP;
Jens Axboeb41e9852020-02-17 09:52:41 -07004537
Jens Axboe3537b6a2020-04-03 11:19:06 -06004538 get_task_struct(current);
Jens Axboeb41e9852020-02-17 09:52:41 -07004539 req->task = current;
Jens Axboe0969e782019-12-17 18:40:57 -07004540 return 0;
4541}
4542
Pavel Begunkov014db002020-03-03 21:33:12 +03004543static int io_poll_add(struct io_kiocb *req)
Jens Axboe0969e782019-12-17 18:40:57 -07004544{
4545 struct io_poll_iocb *poll = &req->poll;
4546 struct io_ring_ctx *ctx = req->ctx;
4547 struct io_poll_table ipt;
Jens Axboe0969e782019-12-17 18:40:57 -07004548 __poll_t mask;
Jens Axboe0969e782019-12-17 18:40:57 -07004549
Jens Axboe78076bb2019-12-04 19:56:40 -07004550 INIT_HLIST_NODE(&req->hash_node);
Jens Axboe36703242019-07-25 10:20:18 -06004551 INIT_LIST_HEAD(&req->list);
Jens Axboed7718a92020-02-14 22:23:12 -07004552 ipt.pt._qproc = io_poll_queue_proc;
Jens Axboe36703242019-07-25 10:20:18 -06004553
Jens Axboed7718a92020-02-14 22:23:12 -07004554 mask = __io_arm_poll_handler(req, &req->poll, &ipt, poll->events,
4555 io_poll_wake);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004556
Jens Axboe8c838782019-03-12 15:48:16 -06004557 if (mask) { /* no async, we'd stolen it */
Jens Axboe8c838782019-03-12 15:48:16 -06004558 ipt.error = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004559 io_poll_complete(req, mask, 0);
Jens Axboe8c838782019-03-12 15:48:16 -06004560 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07004561 spin_unlock_irq(&ctx->completion_lock);
4562
Jens Axboe8c838782019-03-12 15:48:16 -06004563 if (mask) {
4564 io_cqring_ev_posted(ctx);
Pavel Begunkov014db002020-03-03 21:33:12 +03004565 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004566 }
Jens Axboe8c838782019-03-12 15:48:16 -06004567 return ipt.error;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004568}
4569
Jens Axboe5262f562019-09-17 12:26:57 -06004570static enum hrtimer_restart io_timeout_fn(struct hrtimer *timer)
4571{
Jens Axboead8a48a2019-11-15 08:49:11 -07004572 struct io_timeout_data *data = container_of(timer,
4573 struct io_timeout_data, timer);
4574 struct io_kiocb *req = data->req;
4575 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5262f562019-09-17 12:26:57 -06004576 unsigned long flags;
4577
Jens Axboe5262f562019-09-17 12:26:57 -06004578 atomic_inc(&ctx->cq_timeouts);
4579
4580 spin_lock_irqsave(&ctx->completion_lock, flags);
zhangyi (F)ef036812019-10-23 15:10:08 +08004581 /*
Jens Axboe11365042019-10-16 09:08:32 -06004582 * We could be racing with timeout deletion. If the list is empty,
4583 * then timeout lookup already found it and will be handling it.
zhangyi (F)ef036812019-10-23 15:10:08 +08004584 */
Jens Axboe842f9612019-10-29 12:34:10 -06004585 if (!list_empty(&req->list)) {
Jens Axboe11365042019-10-16 09:08:32 -06004586 struct io_kiocb *prev;
Jens Axboe5262f562019-09-17 12:26:57 -06004587
Jens Axboe11365042019-10-16 09:08:32 -06004588 /*
4589 * Adjust the reqs sequence before the current one because it
Brian Gianforcarod195a662019-12-13 03:09:50 -08004590 * will consume a slot in the cq_ring and the cq_tail
Jens Axboe11365042019-10-16 09:08:32 -06004591 * pointer will be increased, otherwise other timeout reqs may
4592 * return in advance without waiting for enough wait_nr.
4593 */
4594 prev = req;
4595 list_for_each_entry_continue_reverse(prev, &ctx->timeout_list, list)
4596 prev->sequence++;
Jens Axboe11365042019-10-16 09:08:32 -06004597 list_del_init(&req->list);
Jens Axboe11365042019-10-16 09:08:32 -06004598 }
Jens Axboe842f9612019-10-29 12:34:10 -06004599
Jens Axboe78e19bb2019-11-06 15:21:34 -07004600 io_cqring_fill_event(req, -ETIME);
Jens Axboe5262f562019-09-17 12:26:57 -06004601 io_commit_cqring(ctx);
4602 spin_unlock_irqrestore(&ctx->completion_lock, flags);
4603
4604 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004605 req_set_fail_links(req);
Jens Axboe5262f562019-09-17 12:26:57 -06004606 io_put_req(req);
4607 return HRTIMER_NORESTART;
4608}
4609
Jens Axboe47f46762019-11-09 17:43:02 -07004610static int io_timeout_cancel(struct io_ring_ctx *ctx, __u64 user_data)
4611{
4612 struct io_kiocb *req;
4613 int ret = -ENOENT;
4614
4615 list_for_each_entry(req, &ctx->timeout_list, list) {
4616 if (user_data == req->user_data) {
4617 list_del_init(&req->list);
4618 ret = 0;
4619 break;
4620 }
4621 }
4622
4623 if (ret == -ENOENT)
4624 return ret;
4625
Jens Axboe2d283902019-12-04 11:08:05 -07004626 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe47f46762019-11-09 17:43:02 -07004627 if (ret == -1)
4628 return -EALREADY;
4629
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004630 req_set_fail_links(req);
Jens Axboe47f46762019-11-09 17:43:02 -07004631 io_cqring_fill_event(req, -ECANCELED);
4632 io_put_req(req);
4633 return 0;
4634}
4635
Jens Axboe3529d8c2019-12-19 18:24:38 -07004636static int io_timeout_remove_prep(struct io_kiocb *req,
4637 const struct io_uring_sqe *sqe)
Jens Axboeb29472e2019-12-17 18:50:29 -07004638{
Jens Axboeb29472e2019-12-17 18:50:29 -07004639 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4640 return -EINVAL;
4641 if (sqe->flags || sqe->ioprio || sqe->buf_index || sqe->len)
4642 return -EINVAL;
4643
4644 req->timeout.addr = READ_ONCE(sqe->addr);
4645 req->timeout.flags = READ_ONCE(sqe->timeout_flags);
4646 if (req->timeout.flags)
4647 return -EINVAL;
4648
Jens Axboeb29472e2019-12-17 18:50:29 -07004649 return 0;
4650}
4651
Jens Axboe11365042019-10-16 09:08:32 -06004652/*
4653 * Remove or update an existing timeout command
4654 */
Jens Axboefc4df992019-12-10 14:38:45 -07004655static int io_timeout_remove(struct io_kiocb *req)
Jens Axboe11365042019-10-16 09:08:32 -06004656{
4657 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe47f46762019-11-09 17:43:02 -07004658 int ret;
Jens Axboe11365042019-10-16 09:08:32 -06004659
Jens Axboe11365042019-10-16 09:08:32 -06004660 spin_lock_irq(&ctx->completion_lock);
Jens Axboeb29472e2019-12-17 18:50:29 -07004661 ret = io_timeout_cancel(ctx, req->timeout.addr);
Jens Axboe11365042019-10-16 09:08:32 -06004662
Jens Axboe47f46762019-11-09 17:43:02 -07004663 io_cqring_fill_event(req, ret);
Jens Axboe11365042019-10-16 09:08:32 -06004664 io_commit_cqring(ctx);
4665 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06004666 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004667 if (ret < 0)
4668 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08004669 io_put_req(req);
Jens Axboe11365042019-10-16 09:08:32 -06004670 return 0;
Jens Axboe5262f562019-09-17 12:26:57 -06004671}
4672
Jens Axboe3529d8c2019-12-19 18:24:38 -07004673static int io_timeout_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboe2d283902019-12-04 11:08:05 -07004674 bool is_timeout_link)
Jens Axboe5262f562019-09-17 12:26:57 -06004675{
Jens Axboead8a48a2019-11-15 08:49:11 -07004676 struct io_timeout_data *data;
Jens Axboea41525a2019-10-15 16:48:15 -06004677 unsigned flags;
Jens Axboe5262f562019-09-17 12:26:57 -06004678
Jens Axboead8a48a2019-11-15 08:49:11 -07004679 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe5262f562019-09-17 12:26:57 -06004680 return -EINVAL;
Jens Axboead8a48a2019-11-15 08:49:11 -07004681 if (sqe->ioprio || sqe->buf_index || sqe->len != 1)
Jens Axboea41525a2019-10-15 16:48:15 -06004682 return -EINVAL;
Jens Axboe2d283902019-12-04 11:08:05 -07004683 if (sqe->off && is_timeout_link)
4684 return -EINVAL;
Jens Axboea41525a2019-10-15 16:48:15 -06004685 flags = READ_ONCE(sqe->timeout_flags);
4686 if (flags & ~IORING_TIMEOUT_ABS)
Jens Axboe5262f562019-09-17 12:26:57 -06004687 return -EINVAL;
Arnd Bergmannbdf20072019-10-01 09:53:29 -06004688
Jens Axboe26a61672019-12-20 09:02:01 -07004689 req->timeout.count = READ_ONCE(sqe->off);
4690
Jens Axboe3529d8c2019-12-19 18:24:38 -07004691 if (!req->io && io_alloc_async_ctx(req))
Jens Axboe26a61672019-12-20 09:02:01 -07004692 return -ENOMEM;
4693
4694 data = &req->io->timeout;
Jens Axboead8a48a2019-11-15 08:49:11 -07004695 data->req = req;
Jens Axboead8a48a2019-11-15 08:49:11 -07004696 req->flags |= REQ_F_TIMEOUT;
4697
4698 if (get_timespec64(&data->ts, u64_to_user_ptr(sqe->addr)))
Jens Axboe5262f562019-09-17 12:26:57 -06004699 return -EFAULT;
4700
Jens Axboe11365042019-10-16 09:08:32 -06004701 if (flags & IORING_TIMEOUT_ABS)
Jens Axboead8a48a2019-11-15 08:49:11 -07004702 data->mode = HRTIMER_MODE_ABS;
Jens Axboe11365042019-10-16 09:08:32 -06004703 else
Jens Axboead8a48a2019-11-15 08:49:11 -07004704 data->mode = HRTIMER_MODE_REL;
Jens Axboe11365042019-10-16 09:08:32 -06004705
Jens Axboead8a48a2019-11-15 08:49:11 -07004706 hrtimer_init(&data->timer, CLOCK_MONOTONIC, data->mode);
4707 return 0;
4708}
4709
Jens Axboefc4df992019-12-10 14:38:45 -07004710static int io_timeout(struct io_kiocb *req)
Jens Axboead8a48a2019-11-15 08:49:11 -07004711{
4712 unsigned count;
4713 struct io_ring_ctx *ctx = req->ctx;
4714 struct io_timeout_data *data;
4715 struct list_head *entry;
4716 unsigned span = 0;
Pavel Begunkov22cad152020-04-15 00:39:48 +03004717 u32 seq = req->sequence;
Jens Axboead8a48a2019-11-15 08:49:11 -07004718
Jens Axboe2d283902019-12-04 11:08:05 -07004719 data = &req->io->timeout;
Jens Axboe93bd25b2019-11-11 23:34:31 -07004720
Jens Axboe5262f562019-09-17 12:26:57 -06004721 /*
4722 * sqe->off holds how many events that need to occur for this
Jens Axboe93bd25b2019-11-11 23:34:31 -07004723 * timeout event to be satisfied. If it isn't set, then this is
4724 * a pure timeout request, sequence isn't used.
Jens Axboe5262f562019-09-17 12:26:57 -06004725 */
Jens Axboe26a61672019-12-20 09:02:01 -07004726 count = req->timeout.count;
Jens Axboe93bd25b2019-11-11 23:34:31 -07004727 if (!count) {
4728 req->flags |= REQ_F_TIMEOUT_NOSEQ;
4729 spin_lock_irq(&ctx->completion_lock);
4730 entry = ctx->timeout_list.prev;
4731 goto add;
4732 }
Jens Axboe5262f562019-09-17 12:26:57 -06004733
Pavel Begunkov22cad152020-04-15 00:39:48 +03004734 req->sequence = seq + count;
Jens Axboe2d283902019-12-04 11:08:05 -07004735 data->seq_offset = count;
Jens Axboe5262f562019-09-17 12:26:57 -06004736
4737 /*
4738 * Insertion sort, ensuring the first entry in the list is always
4739 * the one we need first.
4740 */
Jens Axboe5262f562019-09-17 12:26:57 -06004741 spin_lock_irq(&ctx->completion_lock);
4742 list_for_each_prev(entry, &ctx->timeout_list) {
4743 struct io_kiocb *nxt = list_entry(entry, struct io_kiocb, list);
Pavel Begunkov22cad152020-04-15 00:39:48 +03004744 unsigned nxt_seq;
yangerkun5da0fb12019-10-15 21:59:29 +08004745 long long tmp, tmp_nxt;
Jens Axboe2d283902019-12-04 11:08:05 -07004746 u32 nxt_offset = nxt->io->timeout.seq_offset;
Jens Axboe5262f562019-09-17 12:26:57 -06004747
Jens Axboe93bd25b2019-11-11 23:34:31 -07004748 if (nxt->flags & REQ_F_TIMEOUT_NOSEQ)
4749 continue;
4750
yangerkun5da0fb12019-10-15 21:59:29 +08004751 /*
Pavel Begunkov22cad152020-04-15 00:39:48 +03004752 * Since seq + count can overflow, use type long
yangerkun5da0fb12019-10-15 21:59:29 +08004753 * long to store it.
4754 */
Pavel Begunkov22cad152020-04-15 00:39:48 +03004755 tmp = (long long)seq + count;
4756 nxt_seq = nxt->sequence - nxt_offset;
4757 tmp_nxt = (long long)nxt_seq + nxt_offset;
yangerkun5da0fb12019-10-15 21:59:29 +08004758
4759 /*
4760 * cached_sq_head may overflow, and it will never overflow twice
4761 * once there is some timeout req still be valid.
4762 */
Pavel Begunkov22cad152020-04-15 00:39:48 +03004763 if (seq < nxt_seq)
yangerkun8b07a652019-10-17 12:12:35 +08004764 tmp += UINT_MAX;
yangerkun5da0fb12019-10-15 21:59:29 +08004765
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004766 if (tmp > tmp_nxt)
Jens Axboe5262f562019-09-17 12:26:57 -06004767 break;
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004768
4769 /*
4770 * Sequence of reqs after the insert one and itself should
4771 * be adjusted because each timeout req consumes a slot.
4772 */
4773 span++;
4774 nxt->sequence++;
Jens Axboe5262f562019-09-17 12:26:57 -06004775 }
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004776 req->sequence -= span;
Jens Axboe93bd25b2019-11-11 23:34:31 -07004777add:
Jens Axboe5262f562019-09-17 12:26:57 -06004778 list_add(&req->list, entry);
Jens Axboead8a48a2019-11-15 08:49:11 -07004779 data->timer.function = io_timeout_fn;
4780 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts), data->mode);
Jens Axboe842f9612019-10-29 12:34:10 -06004781 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06004782 return 0;
4783}
4784
Jens Axboe62755e32019-10-28 21:49:21 -06004785static bool io_cancel_cb(struct io_wq_work *work, void *data)
Jens Axboede0617e2019-04-06 21:51:27 -06004786{
Jens Axboe62755e32019-10-28 21:49:21 -06004787 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboede0617e2019-04-06 21:51:27 -06004788
Jens Axboe62755e32019-10-28 21:49:21 -06004789 return req->user_data == (unsigned long) data;
4790}
4791
Jens Axboee977d6d2019-11-05 12:39:45 -07004792static int io_async_cancel_one(struct io_ring_ctx *ctx, void *sqe_addr)
Jens Axboe62755e32019-10-28 21:49:21 -06004793{
Jens Axboe62755e32019-10-28 21:49:21 -06004794 enum io_wq_cancel cancel_ret;
Jens Axboe62755e32019-10-28 21:49:21 -06004795 int ret = 0;
4796
Jens Axboe62755e32019-10-28 21:49:21 -06004797 cancel_ret = io_wq_cancel_cb(ctx->io_wq, io_cancel_cb, sqe_addr);
4798 switch (cancel_ret) {
4799 case IO_WQ_CANCEL_OK:
4800 ret = 0;
4801 break;
4802 case IO_WQ_CANCEL_RUNNING:
4803 ret = -EALREADY;
4804 break;
4805 case IO_WQ_CANCEL_NOTFOUND:
4806 ret = -ENOENT;
4807 break;
4808 }
4809
Jens Axboee977d6d2019-11-05 12:39:45 -07004810 return ret;
4811}
4812
Jens Axboe47f46762019-11-09 17:43:02 -07004813static void io_async_find_and_cancel(struct io_ring_ctx *ctx,
4814 struct io_kiocb *req, __u64 sqe_addr,
Pavel Begunkov014db002020-03-03 21:33:12 +03004815 int success_ret)
Jens Axboe47f46762019-11-09 17:43:02 -07004816{
4817 unsigned long flags;
4818 int ret;
4819
4820 ret = io_async_cancel_one(ctx, (void *) (unsigned long) sqe_addr);
4821 if (ret != -ENOENT) {
4822 spin_lock_irqsave(&ctx->completion_lock, flags);
4823 goto done;
4824 }
4825
4826 spin_lock_irqsave(&ctx->completion_lock, flags);
4827 ret = io_timeout_cancel(ctx, sqe_addr);
4828 if (ret != -ENOENT)
4829 goto done;
4830 ret = io_poll_cancel(ctx, sqe_addr);
4831done:
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004832 if (!ret)
4833 ret = success_ret;
Jens Axboe47f46762019-11-09 17:43:02 -07004834 io_cqring_fill_event(req, ret);
4835 io_commit_cqring(ctx);
4836 spin_unlock_irqrestore(&ctx->completion_lock, flags);
4837 io_cqring_ev_posted(ctx);
4838
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004839 if (ret < 0)
4840 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03004841 io_put_req(req);
Jens Axboe47f46762019-11-09 17:43:02 -07004842}
4843
Jens Axboe3529d8c2019-12-19 18:24:38 -07004844static int io_async_cancel_prep(struct io_kiocb *req,
4845 const struct io_uring_sqe *sqe)
Jens Axboee977d6d2019-11-05 12:39:45 -07004846{
Jens Axboefbf23842019-12-17 18:45:56 -07004847 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboee977d6d2019-11-05 12:39:45 -07004848 return -EINVAL;
4849 if (sqe->flags || sqe->ioprio || sqe->off || sqe->len ||
4850 sqe->cancel_flags)
4851 return -EINVAL;
4852
Jens Axboefbf23842019-12-17 18:45:56 -07004853 req->cancel.addr = READ_ONCE(sqe->addr);
4854 return 0;
4855}
4856
Pavel Begunkov014db002020-03-03 21:33:12 +03004857static int io_async_cancel(struct io_kiocb *req)
Jens Axboefbf23842019-12-17 18:45:56 -07004858{
4859 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefbf23842019-12-17 18:45:56 -07004860
Pavel Begunkov014db002020-03-03 21:33:12 +03004861 io_async_find_and_cancel(ctx, req, req->cancel.addr, 0);
Jens Axboe62755e32019-10-28 21:49:21 -06004862 return 0;
4863}
4864
Jens Axboe05f3fb32019-12-09 11:22:50 -07004865static int io_files_update_prep(struct io_kiocb *req,
4866 const struct io_uring_sqe *sqe)
4867{
4868 if (sqe->flags || sqe->ioprio || sqe->rw_flags)
4869 return -EINVAL;
4870
4871 req->files_update.offset = READ_ONCE(sqe->off);
4872 req->files_update.nr_args = READ_ONCE(sqe->len);
4873 if (!req->files_update.nr_args)
4874 return -EINVAL;
4875 req->files_update.arg = READ_ONCE(sqe->addr);
4876 return 0;
4877}
4878
4879static int io_files_update(struct io_kiocb *req, bool force_nonblock)
4880{
4881 struct io_ring_ctx *ctx = req->ctx;
4882 struct io_uring_files_update up;
4883 int ret;
4884
Jens Axboef86cd202020-01-29 13:46:44 -07004885 if (force_nonblock)
Jens Axboe05f3fb32019-12-09 11:22:50 -07004886 return -EAGAIN;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004887
4888 up.offset = req->files_update.offset;
4889 up.fds = req->files_update.arg;
4890
4891 mutex_lock(&ctx->uring_lock);
4892 ret = __io_sqe_files_update(ctx, &up, req->files_update.nr_args);
4893 mutex_unlock(&ctx->uring_lock);
4894
4895 if (ret < 0)
4896 req_set_fail_links(req);
4897 io_cqring_add_event(req, ret);
4898 io_put_req(req);
4899 return 0;
4900}
4901
Jens Axboe3529d8c2019-12-19 18:24:38 -07004902static int io_req_defer_prep(struct io_kiocb *req,
4903 const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07004904{
Jens Axboee7815732019-12-17 19:45:06 -07004905 ssize_t ret = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07004906
Pavel Begunkovf1d96a82020-03-13 22:29:14 +03004907 if (!sqe)
4908 return 0;
4909
Jens Axboef86cd202020-01-29 13:46:44 -07004910 if (io_op_defs[req->opcode].file_table) {
4911 ret = io_grab_files(req);
4912 if (unlikely(ret))
4913 return ret;
4914 }
4915
Jens Axboecccf0ee2020-01-27 16:34:48 -07004916 io_req_work_grab_env(req, &io_op_defs[req->opcode]);
4917
Jens Axboed625c6e2019-12-17 19:53:05 -07004918 switch (req->opcode) {
Jens Axboee7815732019-12-17 19:45:06 -07004919 case IORING_OP_NOP:
4920 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004921 case IORING_OP_READV:
4922 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004923 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004924 ret = io_read_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07004925 break;
4926 case IORING_OP_WRITEV:
4927 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004928 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004929 ret = io_write_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07004930 break;
Jens Axboe0969e782019-12-17 18:40:57 -07004931 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004932 ret = io_poll_add_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07004933 break;
4934 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004935 ret = io_poll_remove_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07004936 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004937 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004938 ret = io_prep_fsync(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004939 break;
4940 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004941 ret = io_prep_sfr(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004942 break;
Jens Axboe03b12302019-12-02 18:50:25 -07004943 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004944 case IORING_OP_SEND:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004945 ret = io_sendmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07004946 break;
4947 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004948 case IORING_OP_RECV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004949 ret = io_recvmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07004950 break;
Jens Axboef499a022019-12-02 16:28:46 -07004951 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004952 ret = io_connect_prep(req, sqe);
Jens Axboef499a022019-12-02 16:28:46 -07004953 break;
Jens Axboe2d283902019-12-04 11:08:05 -07004954 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004955 ret = io_timeout_prep(req, sqe, false);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004956 break;
Jens Axboeb29472e2019-12-17 18:50:29 -07004957 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004958 ret = io_timeout_remove_prep(req, sqe);
Jens Axboeb29472e2019-12-17 18:50:29 -07004959 break;
Jens Axboefbf23842019-12-17 18:45:56 -07004960 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004961 ret = io_async_cancel_prep(req, sqe);
Jens Axboefbf23842019-12-17 18:45:56 -07004962 break;
Jens Axboe2d283902019-12-04 11:08:05 -07004963 case IORING_OP_LINK_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004964 ret = io_timeout_prep(req, sqe, true);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004965 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004966 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004967 ret = io_accept_prep(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004968 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07004969 case IORING_OP_FALLOCATE:
4970 ret = io_fallocate_prep(req, sqe);
4971 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004972 case IORING_OP_OPENAT:
4973 ret = io_openat_prep(req, sqe);
4974 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07004975 case IORING_OP_CLOSE:
4976 ret = io_close_prep(req, sqe);
4977 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004978 case IORING_OP_FILES_UPDATE:
4979 ret = io_files_update_prep(req, sqe);
4980 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004981 case IORING_OP_STATX:
4982 ret = io_statx_prep(req, sqe);
4983 break;
Jens Axboe4840e412019-12-25 22:03:45 -07004984 case IORING_OP_FADVISE:
4985 ret = io_fadvise_prep(req, sqe);
4986 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07004987 case IORING_OP_MADVISE:
4988 ret = io_madvise_prep(req, sqe);
4989 break;
Jens Axboecebdb982020-01-08 17:59:24 -07004990 case IORING_OP_OPENAT2:
4991 ret = io_openat2_prep(req, sqe);
4992 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07004993 case IORING_OP_EPOLL_CTL:
4994 ret = io_epoll_ctl_prep(req, sqe);
4995 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03004996 case IORING_OP_SPLICE:
4997 ret = io_splice_prep(req, sqe);
4998 break;
Jens Axboeddf0322d2020-02-23 16:41:33 -07004999 case IORING_OP_PROVIDE_BUFFERS:
5000 ret = io_provide_buffers_prep(req, sqe);
5001 break;
Jens Axboe067524e2020-03-02 16:32:28 -07005002 case IORING_OP_REMOVE_BUFFERS:
5003 ret = io_remove_buffers_prep(req, sqe);
5004 break;
Jens Axboef67676d2019-12-02 11:03:47 -07005005 default:
Jens Axboee7815732019-12-17 19:45:06 -07005006 printk_once(KERN_WARNING "io_uring: unhandled opcode %d\n",
5007 req->opcode);
5008 ret = -EINVAL;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07005009 break;
Jens Axboef67676d2019-12-02 11:03:47 -07005010 }
5011
Jens Axboeb7bb4f72019-12-15 22:13:43 -07005012 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07005013}
5014
Jens Axboe3529d8c2019-12-19 18:24:38 -07005015static int io_req_defer(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboede0617e2019-04-06 21:51:27 -06005016{
Jackie Liua197f662019-11-08 08:09:12 -07005017 struct io_ring_ctx *ctx = req->ctx;
Jens Axboef67676d2019-12-02 11:03:47 -07005018 int ret;
Jens Axboede0617e2019-04-06 21:51:27 -06005019
Bob Liu9d858b22019-11-13 18:06:25 +08005020 /* Still need defer if there is pending req in defer list. */
5021 if (!req_need_defer(req) && list_empty(&ctx->defer_list))
Jens Axboede0617e2019-04-06 21:51:27 -06005022 return 0;
5023
Jens Axboe3529d8c2019-12-19 18:24:38 -07005024 if (!req->io && io_alloc_async_ctx(req))
Jens Axboede0617e2019-04-06 21:51:27 -06005025 return -EAGAIN;
5026
Jens Axboe3529d8c2019-12-19 18:24:38 -07005027 ret = io_req_defer_prep(req, sqe);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07005028 if (ret < 0)
Jens Axboe2d283902019-12-04 11:08:05 -07005029 return ret;
Jens Axboe2d283902019-12-04 11:08:05 -07005030
Jens Axboede0617e2019-04-06 21:51:27 -06005031 spin_lock_irq(&ctx->completion_lock);
Bob Liu9d858b22019-11-13 18:06:25 +08005032 if (!req_need_defer(req) && list_empty(&ctx->defer_list)) {
Jens Axboede0617e2019-04-06 21:51:27 -06005033 spin_unlock_irq(&ctx->completion_lock);
Jens Axboede0617e2019-04-06 21:51:27 -06005034 return 0;
5035 }
5036
Jens Axboe915967f2019-11-21 09:01:20 -07005037 trace_io_uring_defer(ctx, req, req->user_data);
Jens Axboede0617e2019-04-06 21:51:27 -06005038 list_add_tail(&req->list, &ctx->defer_list);
5039 spin_unlock_irq(&ctx->completion_lock);
5040 return -EIOCBQUEUED;
5041}
5042
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005043static void io_cleanup_req(struct io_kiocb *req)
5044{
5045 struct io_async_ctx *io = req->io;
5046
5047 switch (req->opcode) {
5048 case IORING_OP_READV:
5049 case IORING_OP_READ_FIXED:
5050 case IORING_OP_READ:
Jens Axboebcda7ba2020-02-23 16:42:51 -07005051 if (req->flags & REQ_F_BUFFER_SELECTED)
5052 kfree((void *)(unsigned long)req->rw.addr);
5053 /* fallthrough */
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005054 case IORING_OP_WRITEV:
5055 case IORING_OP_WRITE_FIXED:
5056 case IORING_OP_WRITE:
5057 if (io->rw.iov != io->rw.fast_iov)
5058 kfree(io->rw.iov);
5059 break;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005060 case IORING_OP_RECVMSG:
Jens Axboe52de1fe2020-02-27 10:15:42 -07005061 if (req->flags & REQ_F_BUFFER_SELECTED)
5062 kfree(req->sr_msg.kbuf);
5063 /* fallthrough */
5064 case IORING_OP_SENDMSG:
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005065 if (io->msg.iov != io->msg.fast_iov)
5066 kfree(io->msg.iov);
5067 break;
Jens Axboebcda7ba2020-02-23 16:42:51 -07005068 case IORING_OP_RECV:
5069 if (req->flags & REQ_F_BUFFER_SELECTED)
5070 kfree(req->sr_msg.kbuf);
5071 break;
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03005072 case IORING_OP_OPENAT:
5073 case IORING_OP_OPENAT2:
5074 case IORING_OP_STATX:
5075 putname(req->open.filename);
5076 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005077 case IORING_OP_SPLICE:
5078 io_put_file(req, req->splice.file_in,
5079 (req->splice.flags & SPLICE_F_FD_IN_FIXED));
5080 break;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005081 }
5082
5083 req->flags &= ~REQ_F_NEED_CLEANUP;
5084}
5085
Jens Axboe3529d8c2019-12-19 18:24:38 -07005086static int io_issue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Pavel Begunkov014db002020-03-03 21:33:12 +03005087 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005088{
Jackie Liua197f662019-11-08 08:09:12 -07005089 struct io_ring_ctx *ctx = req->ctx;
Jens Axboed625c6e2019-12-17 19:53:05 -07005090 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005091
Jens Axboed625c6e2019-12-17 19:53:05 -07005092 switch (req->opcode) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07005093 case IORING_OP_NOP:
Jens Axboe78e19bb2019-11-06 15:21:34 -07005094 ret = io_nop(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005095 break;
5096 case IORING_OP_READV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005097 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07005098 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005099 if (sqe) {
5100 ret = io_read_prep(req, sqe, force_nonblock);
5101 if (ret < 0)
5102 break;
5103 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005104 ret = io_read(req, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005105 break;
5106 case IORING_OP_WRITEV:
Jens Axboeedafcce2019-01-09 09:16:05 -07005107 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07005108 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005109 if (sqe) {
5110 ret = io_write_prep(req, sqe, force_nonblock);
5111 if (ret < 0)
5112 break;
5113 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005114 ret = io_write(req, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005115 break;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07005116 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005117 if (sqe) {
5118 ret = io_prep_fsync(req, sqe);
5119 if (ret < 0)
5120 break;
5121 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005122 ret = io_fsync(req, force_nonblock);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07005123 break;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005124 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005125 if (sqe) {
5126 ret = io_poll_add_prep(req, sqe);
5127 if (ret)
5128 break;
5129 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005130 ret = io_poll_add(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005131 break;
5132 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005133 if (sqe) {
5134 ret = io_poll_remove_prep(req, sqe);
5135 if (ret < 0)
5136 break;
5137 }
Jens Axboefc4df992019-12-10 14:38:45 -07005138 ret = io_poll_remove(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005139 break;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06005140 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005141 if (sqe) {
5142 ret = io_prep_sfr(req, sqe);
5143 if (ret < 0)
5144 break;
5145 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005146 ret = io_sync_file_range(req, force_nonblock);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06005147 break;
Jens Axboe0fa03c62019-04-19 13:34:07 -06005148 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005149 case IORING_OP_SEND:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005150 if (sqe) {
5151 ret = io_sendmsg_prep(req, sqe);
5152 if (ret < 0)
5153 break;
5154 }
Jens Axboefddafac2020-01-04 20:19:44 -07005155 if (req->opcode == IORING_OP_SENDMSG)
Pavel Begunkov014db002020-03-03 21:33:12 +03005156 ret = io_sendmsg(req, force_nonblock);
Jens Axboefddafac2020-01-04 20:19:44 -07005157 else
Pavel Begunkov014db002020-03-03 21:33:12 +03005158 ret = io_send(req, force_nonblock);
Jens Axboe0fa03c62019-04-19 13:34:07 -06005159 break;
Jens Axboeaa1fa282019-04-19 13:38:09 -06005160 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005161 case IORING_OP_RECV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005162 if (sqe) {
5163 ret = io_recvmsg_prep(req, sqe);
5164 if (ret)
5165 break;
5166 }
Jens Axboefddafac2020-01-04 20:19:44 -07005167 if (req->opcode == IORING_OP_RECVMSG)
Pavel Begunkov014db002020-03-03 21:33:12 +03005168 ret = io_recvmsg(req, force_nonblock);
Jens Axboefddafac2020-01-04 20:19:44 -07005169 else
Pavel Begunkov014db002020-03-03 21:33:12 +03005170 ret = io_recv(req, force_nonblock);
Jens Axboeaa1fa282019-04-19 13:38:09 -06005171 break;
Jens Axboe5262f562019-09-17 12:26:57 -06005172 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005173 if (sqe) {
5174 ret = io_timeout_prep(req, sqe, false);
5175 if (ret)
5176 break;
5177 }
Jens Axboefc4df992019-12-10 14:38:45 -07005178 ret = io_timeout(req);
Jens Axboe5262f562019-09-17 12:26:57 -06005179 break;
Jens Axboe11365042019-10-16 09:08:32 -06005180 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005181 if (sqe) {
5182 ret = io_timeout_remove_prep(req, sqe);
5183 if (ret)
5184 break;
5185 }
Jens Axboefc4df992019-12-10 14:38:45 -07005186 ret = io_timeout_remove(req);
Jens Axboe11365042019-10-16 09:08:32 -06005187 break;
Jens Axboe17f2fe32019-10-17 14:42:58 -06005188 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005189 if (sqe) {
5190 ret = io_accept_prep(req, sqe);
5191 if (ret)
5192 break;
5193 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005194 ret = io_accept(req, force_nonblock);
Jens Axboe17f2fe32019-10-17 14:42:58 -06005195 break;
Jens Axboef8e85cf2019-11-23 14:24:24 -07005196 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005197 if (sqe) {
5198 ret = io_connect_prep(req, sqe);
5199 if (ret)
5200 break;
5201 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005202 ret = io_connect(req, force_nonblock);
Jens Axboef8e85cf2019-11-23 14:24:24 -07005203 break;
Jens Axboe62755e32019-10-28 21:49:21 -06005204 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005205 if (sqe) {
5206 ret = io_async_cancel_prep(req, sqe);
5207 if (ret)
5208 break;
5209 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005210 ret = io_async_cancel(req);
Jens Axboe62755e32019-10-28 21:49:21 -06005211 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07005212 case IORING_OP_FALLOCATE:
5213 if (sqe) {
5214 ret = io_fallocate_prep(req, sqe);
5215 if (ret)
5216 break;
5217 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005218 ret = io_fallocate(req, force_nonblock);
Jens Axboed63d1b52019-12-10 10:38:56 -07005219 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07005220 case IORING_OP_OPENAT:
5221 if (sqe) {
5222 ret = io_openat_prep(req, sqe);
5223 if (ret)
5224 break;
5225 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005226 ret = io_openat(req, force_nonblock);
Jens Axboe15b71ab2019-12-11 11:20:36 -07005227 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07005228 case IORING_OP_CLOSE:
5229 if (sqe) {
5230 ret = io_close_prep(req, sqe);
5231 if (ret)
5232 break;
5233 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005234 ret = io_close(req, force_nonblock);
Jens Axboeb5dba592019-12-11 14:02:38 -07005235 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005236 case IORING_OP_FILES_UPDATE:
5237 if (sqe) {
5238 ret = io_files_update_prep(req, sqe);
5239 if (ret)
5240 break;
5241 }
5242 ret = io_files_update(req, force_nonblock);
5243 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07005244 case IORING_OP_STATX:
5245 if (sqe) {
5246 ret = io_statx_prep(req, sqe);
5247 if (ret)
5248 break;
5249 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005250 ret = io_statx(req, force_nonblock);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07005251 break;
Jens Axboe4840e412019-12-25 22:03:45 -07005252 case IORING_OP_FADVISE:
5253 if (sqe) {
5254 ret = io_fadvise_prep(req, sqe);
5255 if (ret)
5256 break;
5257 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005258 ret = io_fadvise(req, force_nonblock);
Jens Axboe4840e412019-12-25 22:03:45 -07005259 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07005260 case IORING_OP_MADVISE:
5261 if (sqe) {
5262 ret = io_madvise_prep(req, sqe);
5263 if (ret)
5264 break;
5265 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005266 ret = io_madvise(req, force_nonblock);
Jens Axboec1ca7572019-12-25 22:18:28 -07005267 break;
Jens Axboecebdb982020-01-08 17:59:24 -07005268 case IORING_OP_OPENAT2:
5269 if (sqe) {
5270 ret = io_openat2_prep(req, sqe);
5271 if (ret)
5272 break;
5273 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005274 ret = io_openat2(req, force_nonblock);
Jens Axboecebdb982020-01-08 17:59:24 -07005275 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07005276 case IORING_OP_EPOLL_CTL:
5277 if (sqe) {
5278 ret = io_epoll_ctl_prep(req, sqe);
5279 if (ret)
5280 break;
5281 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005282 ret = io_epoll_ctl(req, force_nonblock);
Jens Axboe3e4827b2020-01-08 15:18:09 -07005283 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005284 case IORING_OP_SPLICE:
5285 if (sqe) {
5286 ret = io_splice_prep(req, sqe);
5287 if (ret < 0)
5288 break;
5289 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005290 ret = io_splice(req, force_nonblock);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005291 break;
Jens Axboeddf0322d2020-02-23 16:41:33 -07005292 case IORING_OP_PROVIDE_BUFFERS:
5293 if (sqe) {
5294 ret = io_provide_buffers_prep(req, sqe);
5295 if (ret)
5296 break;
5297 }
5298 ret = io_provide_buffers(req, force_nonblock);
5299 break;
Jens Axboe067524e2020-03-02 16:32:28 -07005300 case IORING_OP_REMOVE_BUFFERS:
5301 if (sqe) {
5302 ret = io_remove_buffers_prep(req, sqe);
5303 if (ret)
5304 break;
5305 }
5306 ret = io_remove_buffers(req, force_nonblock);
Jens Axboe31b51512019-01-18 22:56:34 -07005307 break;
5308 default:
5309 ret = -EINVAL;
Jens Axboeedafcce2019-01-09 09:16:05 -07005310 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005311 }
5312
Jens Axboe31b51512019-01-18 22:56:34 -07005313 if (ret)
5314 return ret;
5315
5316 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboe11ba8202020-01-15 21:51:17 -07005317 const bool in_async = io_wq_current_is_worker();
5318
Jens Axboe9e645e112019-05-10 16:07:28 -06005319 if (req->result == -EAGAIN)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005320 return -EAGAIN;
5321
Jens Axboe11ba8202020-01-15 21:51:17 -07005322 /* workqueue context doesn't hold uring_lock, grab it now */
5323 if (in_async)
5324 mutex_lock(&ctx->uring_lock);
5325
Jens Axboe2b188cc2019-01-07 10:46:33 -07005326 io_iopoll_req_issued(req);
Jens Axboe11ba8202020-01-15 21:51:17 -07005327
5328 if (in_async)
5329 mutex_unlock(&ctx->uring_lock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005330 }
5331
5332 return 0;
5333}
5334
Jens Axboe561fb042019-10-24 07:25:42 -06005335static void io_wq_submit_work(struct io_wq_work **workptr)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005336{
Jens Axboe561fb042019-10-24 07:25:42 -06005337 struct io_wq_work *work = *workptr;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005338 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboe561fb042019-10-24 07:25:42 -06005339 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005340
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07005341 /* if NO_CANCEL is set, we must still run the work */
5342 if ((work->flags & (IO_WQ_WORK_CANCEL|IO_WQ_WORK_NO_CANCEL)) ==
5343 IO_WQ_WORK_CANCEL) {
Jens Axboe561fb042019-10-24 07:25:42 -06005344 ret = -ECANCELED;
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07005345 }
Jens Axboe31b51512019-01-18 22:56:34 -07005346
Jens Axboe561fb042019-10-24 07:25:42 -06005347 if (!ret) {
Jens Axboe561fb042019-10-24 07:25:42 -06005348 do {
Pavel Begunkov014db002020-03-03 21:33:12 +03005349 ret = io_issue_sqe(req, NULL, false);
Jens Axboe561fb042019-10-24 07:25:42 -06005350 /*
5351 * We can get EAGAIN for polled IO even though we're
5352 * forcing a sync submission from here, since we can't
5353 * wait for request slots on the block side.
5354 */
5355 if (ret != -EAGAIN)
5356 break;
5357 cond_resched();
5358 } while (1);
5359 }
Jens Axboe31b51512019-01-18 22:56:34 -07005360
Jens Axboe561fb042019-10-24 07:25:42 -06005361 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005362 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07005363 io_cqring_add_event(req, ret);
Jens Axboe817869d2019-04-30 14:44:05 -06005364 io_put_req(req);
Jens Axboeedafcce2019-01-09 09:16:05 -07005365 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07005366
Pavel Begunkove9fd9392020-03-04 16:14:12 +03005367 io_steal_work(req, workptr);
Jens Axboe31b51512019-01-18 22:56:34 -07005368}
Jens Axboe2b188cc2019-01-07 10:46:33 -07005369
Jens Axboe15b71ab2019-12-11 11:20:36 -07005370static int io_req_needs_file(struct io_kiocb *req, int fd)
Jens Axboe9e3aa612019-12-11 15:55:43 -07005371{
Jens Axboed3656342019-12-18 09:50:26 -07005372 if (!io_op_defs[req->opcode].needs_file)
Jens Axboe9e3aa612019-12-11 15:55:43 -07005373 return 0;
Jens Axboe0b5faf62020-02-06 21:42:51 -07005374 if ((fd == -1 || fd == AT_FDCWD) && io_op_defs[req->opcode].fd_non_neg)
Jens Axboed3656342019-12-18 09:50:26 -07005375 return 0;
5376 return 1;
Jens Axboe09bb8392019-03-13 12:39:28 -06005377}
5378
Jens Axboe65e19f52019-10-26 07:20:21 -06005379static inline struct file *io_file_from_index(struct io_ring_ctx *ctx,
5380 int index)
Jens Axboe09bb8392019-03-13 12:39:28 -06005381{
Jens Axboe65e19f52019-10-26 07:20:21 -06005382 struct fixed_file_table *table;
5383
Jens Axboe05f3fb32019-12-09 11:22:50 -07005384 table = &ctx->file_data->table[index >> IORING_FILE_TABLE_SHIFT];
5385 return table->files[index & IORING_FILE_TABLE_MASK];;
Jens Axboe65e19f52019-10-26 07:20:21 -06005386}
5387
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005388static int io_file_get(struct io_submit_state *state, struct io_kiocb *req,
5389 int fd, struct file **out_file, bool fixed)
5390{
5391 struct io_ring_ctx *ctx = req->ctx;
5392 struct file *file;
5393
5394 if (fixed) {
5395 if (unlikely(!ctx->file_data ||
5396 (unsigned) fd >= ctx->nr_user_files))
5397 return -EBADF;
5398 fd = array_index_nospec(fd, ctx->nr_user_files);
5399 file = io_file_from_index(ctx, fd);
5400 if (!file)
5401 return -EBADF;
Xiaoguang Wang05589552020-03-31 14:05:18 +08005402 req->fixed_file_refs = ctx->file_data->cur_refs;
5403 percpu_ref_get(req->fixed_file_refs);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005404 } else {
5405 trace_io_uring_file_get(ctx, fd);
5406 file = __io_file_get(state, fd);
5407 if (unlikely(!file))
5408 return -EBADF;
5409 }
5410
5411 *out_file = file;
5412 return 0;
5413}
5414
Jens Axboe3529d8c2019-12-19 18:24:38 -07005415static int io_req_set_file(struct io_submit_state *state, struct io_kiocb *req,
Pavel Begunkov9c280f92020-04-08 08:58:46 +03005416 int fd, unsigned int flags)
Jens Axboe09bb8392019-03-13 12:39:28 -06005417{
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005418 bool fixed;
Jens Axboe09bb8392019-03-13 12:39:28 -06005419
Jens Axboed3656342019-12-18 09:50:26 -07005420 if (!io_req_needs_file(req, fd))
5421 return 0;
Jens Axboe09bb8392019-03-13 12:39:28 -06005422
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005423 fixed = (flags & IOSQE_FIXED_FILE);
5424 if (unlikely(!fixed && req->needs_fixed_file))
5425 return -EBADF;
Jens Axboe09bb8392019-03-13 12:39:28 -06005426
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005427 return io_file_get(state, req, fd, &req->file, fixed);
Jens Axboe09bb8392019-03-13 12:39:28 -06005428}
5429
Jackie Liua197f662019-11-08 08:09:12 -07005430static int io_grab_files(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005431{
Jens Axboefcb323c2019-10-24 12:39:47 -06005432 int ret = -EBADF;
Jackie Liua197f662019-11-08 08:09:12 -07005433 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06005434
Jens Axboef86cd202020-01-29 13:46:44 -07005435 if (req->work.files)
5436 return 0;
Pavel Begunkovb14cca02020-01-17 04:45:59 +03005437 if (!ctx->ring_file)
Jens Axboeb5dba592019-12-11 14:02:38 -07005438 return -EBADF;
5439
Jens Axboefcb323c2019-10-24 12:39:47 -06005440 rcu_read_lock();
5441 spin_lock_irq(&ctx->inflight_lock);
5442 /*
5443 * We use the f_ops->flush() handler to ensure that we can flush
5444 * out work accessing these files if the fd is closed. Check if
5445 * the fd has changed since we started down this path, and disallow
5446 * this operation if it has.
5447 */
Pavel Begunkovb14cca02020-01-17 04:45:59 +03005448 if (fcheck(ctx->ring_fd) == ctx->ring_file) {
Jens Axboefcb323c2019-10-24 12:39:47 -06005449 list_add(&req->inflight_entry, &ctx->inflight_list);
5450 req->flags |= REQ_F_INFLIGHT;
5451 req->work.files = current->files;
5452 ret = 0;
5453 }
5454 spin_unlock_irq(&ctx->inflight_lock);
5455 rcu_read_unlock();
5456
5457 return ret;
5458}
5459
Jens Axboe2665abf2019-11-05 12:40:47 -07005460static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer)
5461{
Jens Axboead8a48a2019-11-15 08:49:11 -07005462 struct io_timeout_data *data = container_of(timer,
5463 struct io_timeout_data, timer);
5464 struct io_kiocb *req = data->req;
Jens Axboe2665abf2019-11-05 12:40:47 -07005465 struct io_ring_ctx *ctx = req->ctx;
5466 struct io_kiocb *prev = NULL;
5467 unsigned long flags;
Jens Axboe2665abf2019-11-05 12:40:47 -07005468
5469 spin_lock_irqsave(&ctx->completion_lock, flags);
5470
5471 /*
5472 * We don't expect the list to be empty, that will only happen if we
5473 * race with the completion of the linked work.
5474 */
Pavel Begunkov44932332019-12-05 16:16:35 +03005475 if (!list_empty(&req->link_list)) {
5476 prev = list_entry(req->link_list.prev, struct io_kiocb,
5477 link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07005478 if (refcount_inc_not_zero(&prev->refs)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03005479 list_del_init(&req->link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07005480 prev->flags &= ~REQ_F_LINK_TIMEOUT;
5481 } else
Jens Axboe76a46e02019-11-10 23:34:16 -07005482 prev = NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07005483 }
5484
5485 spin_unlock_irqrestore(&ctx->completion_lock, flags);
5486
5487 if (prev) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005488 req_set_fail_links(prev);
Pavel Begunkov014db002020-03-03 21:33:12 +03005489 io_async_find_and_cancel(ctx, req, prev->user_data, -ETIME);
Jens Axboe76a46e02019-11-10 23:34:16 -07005490 io_put_req(prev);
Jens Axboe47f46762019-11-09 17:43:02 -07005491 } else {
5492 io_cqring_add_event(req, -ETIME);
5493 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07005494 }
Jens Axboe2665abf2019-11-05 12:40:47 -07005495 return HRTIMER_NORESTART;
5496}
5497
Jens Axboead8a48a2019-11-15 08:49:11 -07005498static void io_queue_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07005499{
Jens Axboe76a46e02019-11-10 23:34:16 -07005500 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07005501
Jens Axboe76a46e02019-11-10 23:34:16 -07005502 /*
5503 * If the list is now empty, then our linked request finished before
5504 * we got a chance to setup the timer
5505 */
5506 spin_lock_irq(&ctx->completion_lock);
Pavel Begunkov44932332019-12-05 16:16:35 +03005507 if (!list_empty(&req->link_list)) {
Jens Axboe2d283902019-12-04 11:08:05 -07005508 struct io_timeout_data *data = &req->io->timeout;
Jens Axboe94ae5e72019-11-14 19:39:52 -07005509
Jens Axboead8a48a2019-11-15 08:49:11 -07005510 data->timer.function = io_link_timeout_fn;
5511 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts),
5512 data->mode);
Jens Axboe2665abf2019-11-05 12:40:47 -07005513 }
Jens Axboe76a46e02019-11-10 23:34:16 -07005514 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe2665abf2019-11-05 12:40:47 -07005515
Jens Axboe2665abf2019-11-05 12:40:47 -07005516 /* drop submission reference */
Jens Axboe76a46e02019-11-10 23:34:16 -07005517 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07005518}
5519
Jens Axboead8a48a2019-11-15 08:49:11 -07005520static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07005521{
5522 struct io_kiocb *nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005523
Pavel Begunkovdea3b492020-04-12 02:05:04 +03005524 if (!(req->flags & REQ_F_LINK_HEAD))
Jens Axboe2665abf2019-11-05 12:40:47 -07005525 return NULL;
Jens Axboed7718a92020-02-14 22:23:12 -07005526 /* for polled retry, if flag is set, we already went through here */
5527 if (req->flags & REQ_F_POLLED)
5528 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07005529
Pavel Begunkov44932332019-12-05 16:16:35 +03005530 nxt = list_first_entry_or_null(&req->link_list, struct io_kiocb,
5531 link_list);
Jens Axboed625c6e2019-12-17 19:53:05 -07005532 if (!nxt || nxt->opcode != IORING_OP_LINK_TIMEOUT)
Jens Axboe76a46e02019-11-10 23:34:16 -07005533 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07005534
Jens Axboe76a46e02019-11-10 23:34:16 -07005535 req->flags |= REQ_F_LINK_TIMEOUT;
Jens Axboe76a46e02019-11-10 23:34:16 -07005536 return nxt;
Jens Axboe2665abf2019-11-05 12:40:47 -07005537}
5538
Jens Axboe3529d8c2019-12-19 18:24:38 -07005539static void __io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005540{
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005541 struct io_kiocb *linked_timeout;
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005542 struct io_kiocb *nxt;
Jens Axboe193155c2020-02-22 23:22:19 -07005543 const struct cred *old_creds = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005544 int ret;
5545
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005546again:
5547 linked_timeout = io_prep_linked_timeout(req);
5548
Jens Axboe193155c2020-02-22 23:22:19 -07005549 if (req->work.creds && req->work.creds != current_cred()) {
5550 if (old_creds)
5551 revert_creds(old_creds);
5552 if (old_creds == req->work.creds)
5553 old_creds = NULL; /* restored original creds */
5554 else
5555 old_creds = override_creds(req->work.creds);
5556 }
5557
Pavel Begunkov014db002020-03-03 21:33:12 +03005558 ret = io_issue_sqe(req, sqe, true);
Jens Axboe491381ce2019-10-17 09:20:46 -06005559
5560 /*
5561 * We async punt it if the file wasn't marked NOWAIT, or if the file
5562 * doesn't support non-blocking read/write attempts
5563 */
5564 if (ret == -EAGAIN && (!(req->flags & REQ_F_NOWAIT) ||
5565 (req->flags & REQ_F_MUST_PUNT))) {
Jens Axboed7718a92020-02-14 22:23:12 -07005566 if (io_arm_poll_handler(req)) {
5567 if (linked_timeout)
5568 io_queue_linked_timeout(linked_timeout);
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005569 goto exit;
Jens Axboed7718a92020-02-14 22:23:12 -07005570 }
Pavel Begunkov86a761f2020-01-22 23:09:36 +03005571punt:
Jens Axboef86cd202020-01-29 13:46:44 -07005572 if (io_op_defs[req->opcode].file_table) {
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03005573 ret = io_grab_files(req);
5574 if (ret)
5575 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005576 }
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03005577
5578 /*
5579 * Queued up for async execution, worker will release
5580 * submit reference when the iocb is actually submitted.
5581 */
5582 io_queue_async_work(req);
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005583 goto exit;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005584 }
Jens Axboee65ef562019-03-12 10:16:44 -06005585
Jens Axboefcb323c2019-10-24 12:39:47 -06005586err:
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005587 nxt = NULL;
Jens Axboee65ef562019-03-12 10:16:44 -06005588 /* drop submission reference */
Jens Axboe2a44f462020-02-25 13:25:41 -07005589 io_put_req_find_next(req, &nxt);
Jens Axboee65ef562019-03-12 10:16:44 -06005590
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03005591 if (linked_timeout) {
Jens Axboe76a46e02019-11-10 23:34:16 -07005592 if (!ret)
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03005593 io_queue_linked_timeout(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07005594 else
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03005595 io_put_req(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07005596 }
5597
Jens Axboee65ef562019-03-12 10:16:44 -06005598 /* and drop final reference, if we failed */
Jens Axboe9e645e112019-05-10 16:07:28 -06005599 if (ret) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07005600 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005601 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06005602 io_put_req(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06005603 }
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005604 if (nxt) {
5605 req = nxt;
Pavel Begunkov86a761f2020-01-22 23:09:36 +03005606
5607 if (req->flags & REQ_F_FORCE_ASYNC)
5608 goto punt;
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005609 goto again;
5610 }
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005611exit:
Jens Axboe193155c2020-02-22 23:22:19 -07005612 if (old_creds)
5613 revert_creds(old_creds);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005614}
5615
Jens Axboe3529d8c2019-12-19 18:24:38 -07005616static void io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jackie Liu4fe2c962019-09-09 20:50:40 +08005617{
5618 int ret;
5619
Jens Axboe3529d8c2019-12-19 18:24:38 -07005620 ret = io_req_defer(req, sqe);
Jackie Liu4fe2c962019-09-09 20:50:40 +08005621 if (ret) {
5622 if (ret != -EIOCBQUEUED) {
Pavel Begunkov11185912020-01-22 23:09:35 +03005623fail_req:
Jens Axboe78e19bb2019-11-06 15:21:34 -07005624 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005625 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07005626 io_double_put_req(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08005627 }
Pavel Begunkov25508782019-12-30 21:24:47 +03005628 } else if (req->flags & REQ_F_FORCE_ASYNC) {
Pavel Begunkov11185912020-01-22 23:09:35 +03005629 ret = io_req_defer_prep(req, sqe);
5630 if (unlikely(ret < 0))
5631 goto fail_req;
Jens Axboece35a472019-12-17 08:04:44 -07005632 /*
5633 * Never try inline submit of IOSQE_ASYNC is set, go straight
5634 * to async execution.
5635 */
5636 req->work.flags |= IO_WQ_WORK_CONCURRENT;
5637 io_queue_async_work(req);
5638 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07005639 __io_queue_sqe(req, sqe);
Jens Axboece35a472019-12-17 08:04:44 -07005640 }
Jackie Liu4fe2c962019-09-09 20:50:40 +08005641}
5642
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005643static inline void io_queue_link_head(struct io_kiocb *req)
Jackie Liu4fe2c962019-09-09 20:50:40 +08005644{
Jens Axboe94ae5e72019-11-14 19:39:52 -07005645 if (unlikely(req->flags & REQ_F_FAIL_LINK)) {
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005646 io_cqring_add_event(req, -ECANCELED);
5647 io_double_put_req(req);
5648 } else
Jens Axboe3529d8c2019-12-19 18:24:38 -07005649 io_queue_sqe(req, NULL);
Jackie Liu4fe2c962019-09-09 20:50:40 +08005650}
5651
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03005652static int io_submit_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboe3529d8c2019-12-19 18:24:38 -07005653 struct io_submit_state *state, struct io_kiocb **link)
Jens Axboe9e645e112019-05-10 16:07:28 -06005654{
Jackie Liua197f662019-11-08 08:09:12 -07005655 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005656 int ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06005657
Jens Axboe9e645e112019-05-10 16:07:28 -06005658 /*
5659 * If we already have a head request, queue this one for async
5660 * submittal once the head completes. If we don't have a head but
5661 * IOSQE_IO_LINK is set in the sqe, start a new head. This one will be
5662 * submitted sync once the chain is complete. If none of those
5663 * conditions are true (normal request), then just queue it.
5664 */
5665 if (*link) {
Pavel Begunkov9d763772019-12-17 02:22:07 +03005666 struct io_kiocb *head = *link;
Jens Axboe9e645e112019-05-10 16:07:28 -06005667
Pavel Begunkov8cdf2192020-01-25 00:40:24 +03005668 /*
5669 * Taking sequential execution of a link, draining both sides
5670 * of the link also fullfils IOSQE_IO_DRAIN semantics for all
5671 * requests in the link. So, it drains the head and the
5672 * next after the link request. The last one is done via
5673 * drain_next flag to persist the effect across calls.
5674 */
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005675 if (req->flags & REQ_F_IO_DRAIN) {
Pavel Begunkov711be032020-01-17 03:57:59 +03005676 head->flags |= REQ_F_IO_DRAIN;
5677 ctx->drain_next = 1;
5678 }
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03005679 if (io_alloc_async_ctx(req))
5680 return -EAGAIN;
Jens Axboe9e645e112019-05-10 16:07:28 -06005681
Jens Axboe3529d8c2019-12-19 18:24:38 -07005682 ret = io_req_defer_prep(req, sqe);
Jens Axboe2d283902019-12-04 11:08:05 -07005683 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005684 /* fail even hard links since we don't submit */
Pavel Begunkov9d763772019-12-17 02:22:07 +03005685 head->flags |= REQ_F_FAIL_LINK;
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03005686 return ret;
Jens Axboe2d283902019-12-04 11:08:05 -07005687 }
Pavel Begunkov9d763772019-12-17 02:22:07 +03005688 trace_io_uring_link(ctx, req, head);
5689 list_add_tail(&req->link_list, &head->link_list);
Jens Axboe9e645e112019-05-10 16:07:28 -06005690
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005691 /* last request of a link, enqueue the link */
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005692 if (!(req->flags & (REQ_F_LINK | REQ_F_HARDLINK))) {
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005693 io_queue_link_head(head);
5694 *link = NULL;
5695 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005696 } else {
Pavel Begunkov711be032020-01-17 03:57:59 +03005697 if (unlikely(ctx->drain_next)) {
5698 req->flags |= REQ_F_IO_DRAIN;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005699 ctx->drain_next = 0;
Pavel Begunkov711be032020-01-17 03:57:59 +03005700 }
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005701 if (req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) {
Pavel Begunkovdea3b492020-04-12 02:05:04 +03005702 req->flags |= REQ_F_LINK_HEAD;
Pavel Begunkov711be032020-01-17 03:57:59 +03005703 INIT_LIST_HEAD(&req->link_list);
Pavel Begunkovf1d96a82020-03-13 22:29:14 +03005704
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03005705 if (io_alloc_async_ctx(req))
5706 return -EAGAIN;
5707
Pavel Begunkov711be032020-01-17 03:57:59 +03005708 ret = io_req_defer_prep(req, sqe);
5709 if (ret)
5710 req->flags |= REQ_F_FAIL_LINK;
5711 *link = req;
5712 } else {
5713 io_queue_sqe(req, sqe);
5714 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005715 }
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03005716
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03005717 return 0;
Jens Axboe9e645e112019-05-10 16:07:28 -06005718}
5719
Jens Axboe9a56a232019-01-09 09:06:50 -07005720/*
5721 * Batched submission is done, ensure local IO is flushed out.
5722 */
5723static void io_submit_state_end(struct io_submit_state *state)
5724{
5725 blk_finish_plug(&state->plug);
Jens Axboe3d6770f2019-04-13 11:50:54 -06005726 io_file_put(state);
Jens Axboe2579f912019-01-09 09:10:43 -07005727 if (state->free_reqs)
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03005728 kmem_cache_free_bulk(req_cachep, state->free_reqs, state->reqs);
Jens Axboe9a56a232019-01-09 09:06:50 -07005729}
5730
5731/*
5732 * Start submission side cache.
5733 */
5734static void io_submit_state_start(struct io_submit_state *state,
Jackie Liu22efde52019-12-02 17:14:52 +08005735 unsigned int max_ios)
Jens Axboe9a56a232019-01-09 09:06:50 -07005736{
5737 blk_start_plug(&state->plug);
Jens Axboe2579f912019-01-09 09:10:43 -07005738 state->free_reqs = 0;
Jens Axboe9a56a232019-01-09 09:06:50 -07005739 state->file = NULL;
5740 state->ios_left = max_ios;
5741}
5742
Jens Axboe2b188cc2019-01-07 10:46:33 -07005743static void io_commit_sqring(struct io_ring_ctx *ctx)
5744{
Hristo Venev75b28af2019-08-26 17:23:46 +00005745 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005746
Pavel Begunkovcaf582c2019-12-30 21:24:46 +03005747 /*
5748 * Ensure any loads from the SQEs are done at this point,
5749 * since once we write the new head, the application could
5750 * write new data to them.
5751 */
5752 smp_store_release(&rings->sq.head, ctx->cached_sq_head);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005753}
5754
5755/*
Jens Axboe3529d8c2019-12-19 18:24:38 -07005756 * Fetch an sqe, if one is available. Note that sqe_ptr will point to memory
Jens Axboe2b188cc2019-01-07 10:46:33 -07005757 * that is mapped by userspace. This means that care needs to be taken to
5758 * ensure that reads are stable, as we cannot rely on userspace always
5759 * being a good citizen. If members of the sqe are validated and then later
5760 * used, it's important that those reads are done through READ_ONCE() to
5761 * prevent a re-load down the line.
5762 */
Pavel Begunkov709b3022020-04-08 08:58:43 +03005763static const struct io_uring_sqe *io_get_sqe(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005764{
Hristo Venev75b28af2019-08-26 17:23:46 +00005765 u32 *sq_array = ctx->sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005766 unsigned head;
5767
5768 /*
5769 * The cached sq head (or cq tail) serves two purposes:
5770 *
5771 * 1) allows us to batch the cost of updating the user visible
5772 * head updates.
5773 * 2) allows the kernel side to track the head on its own, even
5774 * though the application is the one updating it.
5775 */
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005776 head = READ_ONCE(sq_array[ctx->cached_sq_head & ctx->sq_mask]);
Pavel Begunkov709b3022020-04-08 08:58:43 +03005777 if (likely(head < ctx->sq_entries))
5778 return &ctx->sq_sqes[head];
Jens Axboe2b188cc2019-01-07 10:46:33 -07005779
5780 /* drop invalid entries */
Jens Axboe498ccd92019-10-25 10:04:25 -06005781 ctx->cached_sq_dropped++;
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005782 WRITE_ONCE(ctx->rings->sq_dropped, ctx->cached_sq_dropped);
Pavel Begunkov709b3022020-04-08 08:58:43 +03005783 return NULL;
5784}
5785
5786static inline void io_consume_sqe(struct io_ring_ctx *ctx)
5787{
5788 ctx->cached_sq_head++;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005789}
5790
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005791#define SQE_VALID_FLAGS (IOSQE_FIXED_FILE|IOSQE_IO_DRAIN|IOSQE_IO_LINK| \
5792 IOSQE_IO_HARDLINK | IOSQE_ASYNC | \
5793 IOSQE_BUFFER_SELECT)
5794
5795static int io_init_req(struct io_ring_ctx *ctx, struct io_kiocb *req,
5796 const struct io_uring_sqe *sqe,
5797 struct io_submit_state *state, bool async)
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03005798{
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005799 unsigned int sqe_flags;
5800 int id, fd;
5801
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03005802 /*
5803 * All io need record the previous position, if LINK vs DARIN,
5804 * it can be used to mark the position of the first IO in the
5805 * link list.
5806 */
5807 req->sequence = ctx->cached_sq_head;
5808 req->opcode = READ_ONCE(sqe->opcode);
5809 req->user_data = READ_ONCE(sqe->user_data);
5810 req->io = NULL;
5811 req->file = NULL;
5812 req->ctx = ctx;
5813 req->flags = 0;
5814 /* one is dropped after submission, the other at completion */
5815 refcount_set(&req->refs, 2);
5816 req->task = NULL;
5817 req->result = 0;
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005818 req->needs_fixed_file = async;
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03005819 INIT_IO_WORK(&req->work, io_wq_submit_work);
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005820
5821 if (unlikely(req->opcode >= IORING_OP_LAST))
5822 return -EINVAL;
5823
5824 if (io_op_defs[req->opcode].needs_mm && !current->mm) {
5825 if (unlikely(!mmget_not_zero(ctx->sqo_mm)))
5826 return -EFAULT;
5827 use_mm(ctx->sqo_mm);
5828 }
5829
5830 sqe_flags = READ_ONCE(sqe->flags);
5831 /* enforce forwards compatibility on users */
5832 if (unlikely(sqe_flags & ~SQE_VALID_FLAGS))
5833 return -EINVAL;
5834
5835 if ((sqe_flags & IOSQE_BUFFER_SELECT) &&
5836 !io_op_defs[req->opcode].buffer_select)
5837 return -EOPNOTSUPP;
5838
5839 id = READ_ONCE(sqe->personality);
5840 if (id) {
5841 req->work.creds = idr_find(&ctx->personality_idr, id);
5842 if (unlikely(!req->work.creds))
5843 return -EINVAL;
5844 get_cred(req->work.creds);
5845 }
5846
5847 /* same numerical values with corresponding REQ_F_*, safe to copy */
5848 req->flags |= sqe_flags & (IOSQE_IO_DRAIN | IOSQE_IO_HARDLINK |
5849 IOSQE_ASYNC | IOSQE_FIXED_FILE |
5850 IOSQE_BUFFER_SELECT | IOSQE_IO_LINK);
5851
5852 fd = READ_ONCE(sqe->fd);
5853 return io_req_set_file(state, req, fd, sqe_flags);
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03005854}
5855
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005856static int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr,
Pavel Begunkovbf9c2f12020-04-12 02:05:02 +03005857 struct file *ring_file, int ring_fd, bool async)
Jens Axboe6c271ce2019-01-10 11:22:30 -07005858{
5859 struct io_submit_state state, *statep = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06005860 struct io_kiocb *link = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06005861 int i, submitted = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005862
Jens Axboec4a2ed72019-11-21 21:01:26 -07005863 /* if we have a backlog and couldn't flush it all, return BUSY */
Jens Axboead3eb2c2019-12-18 17:12:20 -07005864 if (test_bit(0, &ctx->sq_check_overflow)) {
5865 if (!list_empty(&ctx->cq_overflow_list) &&
5866 !io_cqring_overflow_flush(ctx, false))
5867 return -EBUSY;
5868 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07005869
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005870 /* make sure SQ entry isn't read before tail */
5871 nr = min3(nr, ctx->sq_entries, io_sqring_entries(ctx));
Pavel Begunkov9ef4f122019-12-30 21:24:44 +03005872
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03005873 if (!percpu_ref_tryget_many(&ctx->refs, nr))
5874 return -EAGAIN;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005875
5876 if (nr > IO_PLUG_THRESHOLD) {
Jackie Liu22efde52019-12-02 17:14:52 +08005877 io_submit_state_start(&state, nr);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005878 statep = &state;
5879 }
5880
Pavel Begunkovb14cca02020-01-17 04:45:59 +03005881 ctx->ring_fd = ring_fd;
5882 ctx->ring_file = ring_file;
5883
Jens Axboe6c271ce2019-01-10 11:22:30 -07005884 for (i = 0; i < nr; i++) {
Jens Axboe3529d8c2019-12-19 18:24:38 -07005885 const struct io_uring_sqe *sqe;
Pavel Begunkov196be952019-11-07 01:41:06 +03005886 struct io_kiocb *req;
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005887 int err;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005888
Pavel Begunkovb1e50e52020-04-08 08:58:44 +03005889 sqe = io_get_sqe(ctx);
5890 if (unlikely(!sqe)) {
5891 io_consume_sqe(ctx);
5892 break;
5893 }
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03005894 req = io_alloc_req(ctx, statep);
Pavel Begunkov196be952019-11-07 01:41:06 +03005895 if (unlikely(!req)) {
5896 if (!submitted)
5897 submitted = -EAGAIN;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005898 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06005899 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005900
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005901 err = io_init_req(ctx, req, sqe, statep, async);
Pavel Begunkov709b3022020-04-08 08:58:43 +03005902 io_consume_sqe(ctx);
Jens Axboed3656342019-12-18 09:50:26 -07005903 /* will complete beyond this point, count as submitted */
5904 submitted++;
5905
Pavel Begunkovef4ff582020-04-12 02:05:05 +03005906 if (unlikely(err)) {
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005907fail_req:
5908 io_cqring_add_event(req, err);
Jens Axboed3656342019-12-18 09:50:26 -07005909 io_double_put_req(req);
5910 break;
5911 }
5912
Jens Axboe354420f2020-01-08 18:55:15 -07005913 trace_io_uring_submit_sqe(ctx, req->opcode, req->user_data,
5914 true, async);
Pavel Begunkov1d4240c2020-04-12 02:05:03 +03005915 err = io_submit_sqe(req, sqe, statep, &link);
5916 if (err)
5917 goto fail_req;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005918 }
5919
Pavel Begunkov9466f432020-01-25 22:34:01 +03005920 if (unlikely(submitted != nr)) {
5921 int ref_used = (submitted == -EAGAIN) ? 0 : submitted;
5922
5923 percpu_ref_put_many(&ctx->refs, nr - ref_used);
5924 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005925 if (link)
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005926 io_queue_link_head(link);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005927 if (statep)
5928 io_submit_state_end(&state);
5929
Pavel Begunkovae9428c2019-11-06 00:22:14 +03005930 /* Commit SQ ring head once we've consumed and submitted all SQEs */
5931 io_commit_sqring(ctx);
5932
Jens Axboe6c271ce2019-01-10 11:22:30 -07005933 return submitted;
5934}
5935
Pavel Begunkovbf9c2f12020-04-12 02:05:02 +03005936static inline void io_sq_thread_drop_mm(struct io_ring_ctx *ctx)
5937{
5938 struct mm_struct *mm = current->mm;
5939
5940 if (mm) {
5941 unuse_mm(mm);
5942 mmput(mm);
5943 }
5944}
5945
Jens Axboe6c271ce2019-01-10 11:22:30 -07005946static int io_sq_thread(void *data)
5947{
Jens Axboe6c271ce2019-01-10 11:22:30 -07005948 struct io_ring_ctx *ctx = data;
Jens Axboe181e4482019-11-25 08:52:30 -07005949 const struct cred *old_cred;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005950 mm_segment_t old_fs;
5951 DEFINE_WAIT(wait);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005952 unsigned long timeout;
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005953 int ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005954
Jens Axboe206aefd2019-11-07 18:27:42 -07005955 complete(&ctx->completions[1]);
Jackie Liua4c0b3d2019-07-08 13:41:12 +08005956
Jens Axboe6c271ce2019-01-10 11:22:30 -07005957 old_fs = get_fs();
5958 set_fs(USER_DS);
Jens Axboe181e4482019-11-25 08:52:30 -07005959 old_cred = override_creds(ctx->creds);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005960
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005961 timeout = jiffies + ctx->sq_thread_idle;
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02005962 while (!kthread_should_park()) {
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005963 unsigned int to_submit;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005964
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005965 if (!list_empty(&ctx->poll_list)) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07005966 unsigned nr_events = 0;
5967
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005968 mutex_lock(&ctx->uring_lock);
5969 if (!list_empty(&ctx->poll_list))
5970 io_iopoll_getevents(ctx, &nr_events, 0);
5971 else
Jens Axboe6c271ce2019-01-10 11:22:30 -07005972 timeout = jiffies + ctx->sq_thread_idle;
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005973 mutex_unlock(&ctx->uring_lock);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005974 }
5975
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005976 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07005977
5978 /*
5979 * If submit got -EBUSY, flag us as needing the application
5980 * to enter the kernel to reap and flush events.
5981 */
5982 if (!to_submit || ret == -EBUSY) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07005983 /*
Stefano Garzarella7143b5a2020-02-21 16:42:16 +01005984 * Drop cur_mm before scheduling, we can't hold it for
5985 * long periods (or over schedule()). Do this before
5986 * adding ourselves to the waitqueue, as the unuse/drop
5987 * may sleep.
5988 */
Pavel Begunkovbf9c2f12020-04-12 02:05:02 +03005989 io_sq_thread_drop_mm(ctx);
Stefano Garzarella7143b5a2020-02-21 16:42:16 +01005990
5991 /*
Jens Axboe6c271ce2019-01-10 11:22:30 -07005992 * We're polling. If we're within the defined idle
5993 * period, then let us spin without work before going
Jens Axboec1edbf52019-11-10 16:56:04 -07005994 * to sleep. The exception is if we got EBUSY doing
5995 * more IO, we should wait for the application to
5996 * reap events and wake us up.
Jens Axboe6c271ce2019-01-10 11:22:30 -07005997 */
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005998 if (!list_empty(&ctx->poll_list) ||
Jens Axboedf069d82020-02-04 16:48:34 -07005999 (!time_after(jiffies, timeout) && ret != -EBUSY &&
6000 !percpu_ref_is_dying(&ctx->refs))) {
Jens Axboeb41e9852020-02-17 09:52:41 -07006001 if (current->task_works)
6002 task_work_run();
Jens Axboe9831a902019-09-19 09:48:55 -06006003 cond_resched();
Jens Axboe6c271ce2019-01-10 11:22:30 -07006004 continue;
6005 }
6006
Jens Axboe6c271ce2019-01-10 11:22:30 -07006007 prepare_to_wait(&ctx->sqo_wait, &wait,
6008 TASK_INTERRUPTIBLE);
6009
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006010 /*
6011 * While doing polled IO, before going to sleep, we need
6012 * to check if there are new reqs added to poll_list, it
6013 * is because reqs may have been punted to io worker and
6014 * will be added to poll_list later, hence check the
6015 * poll_list again.
6016 */
6017 if ((ctx->flags & IORING_SETUP_IOPOLL) &&
6018 !list_empty_careful(&ctx->poll_list)) {
6019 finish_wait(&ctx->sqo_wait, &wait);
6020 continue;
6021 }
6022
Jens Axboe6c271ce2019-01-10 11:22:30 -07006023 /* Tell userspace we may need a wakeup call */
Hristo Venev75b28af2019-08-26 17:23:46 +00006024 ctx->rings->sq_flags |= IORING_SQ_NEED_WAKEUP;
Stefan Bühler0d7bae62019-04-19 11:57:45 +02006025 /* make sure to read SQ tail after writing flags */
6026 smp_mb();
Jens Axboe6c271ce2019-01-10 11:22:30 -07006027
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03006028 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07006029 if (!to_submit || ret == -EBUSY) {
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02006030 if (kthread_should_park()) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07006031 finish_wait(&ctx->sqo_wait, &wait);
6032 break;
6033 }
Jens Axboeb41e9852020-02-17 09:52:41 -07006034 if (current->task_works) {
6035 task_work_run();
Hillf Danton10bea962020-04-01 17:19:33 +08006036 finish_wait(&ctx->sqo_wait, &wait);
Jens Axboeb41e9852020-02-17 09:52:41 -07006037 continue;
6038 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07006039 if (signal_pending(current))
6040 flush_signals(current);
6041 schedule();
6042 finish_wait(&ctx->sqo_wait, &wait);
6043
Hristo Venev75b28af2019-08-26 17:23:46 +00006044 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006045 continue;
6046 }
6047 finish_wait(&ctx->sqo_wait, &wait);
6048
Hristo Venev75b28af2019-08-26 17:23:46 +00006049 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006050 }
6051
Jens Axboe8a4955f2019-12-09 14:52:35 -07006052 mutex_lock(&ctx->uring_lock);
Pavel Begunkovbf9c2f12020-04-12 02:05:02 +03006053 ret = io_submit_sqes(ctx, to_submit, NULL, -1, true);
Jens Axboe8a4955f2019-12-09 14:52:35 -07006054 mutex_unlock(&ctx->uring_lock);
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006055 timeout = jiffies + ctx->sq_thread_idle;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006056 }
6057
Jens Axboeb41e9852020-02-17 09:52:41 -07006058 if (current->task_works)
6059 task_work_run();
6060
Jens Axboe6c271ce2019-01-10 11:22:30 -07006061 set_fs(old_fs);
Pavel Begunkovbf9c2f12020-04-12 02:05:02 +03006062 io_sq_thread_drop_mm(ctx);
Jens Axboe181e4482019-11-25 08:52:30 -07006063 revert_creds(old_cred);
Jens Axboe06058632019-04-13 09:26:03 -06006064
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02006065 kthread_parkme();
Jens Axboe06058632019-04-13 09:26:03 -06006066
Jens Axboe6c271ce2019-01-10 11:22:30 -07006067 return 0;
6068}
6069
Jens Axboebda52162019-09-24 13:47:15 -06006070struct io_wait_queue {
6071 struct wait_queue_entry wq;
6072 struct io_ring_ctx *ctx;
6073 unsigned to_wait;
6074 unsigned nr_timeouts;
6075};
6076
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006077static inline bool io_should_wake(struct io_wait_queue *iowq, bool noflush)
Jens Axboebda52162019-09-24 13:47:15 -06006078{
6079 struct io_ring_ctx *ctx = iowq->ctx;
6080
6081 /*
Brian Gianforcarod195a662019-12-13 03:09:50 -08006082 * Wake up if we have enough events, or if a timeout occurred since we
Jens Axboebda52162019-09-24 13:47:15 -06006083 * started waiting. For timeouts, we always want to return to userspace,
6084 * regardless of event count.
6085 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006086 return io_cqring_events(ctx, noflush) >= iowq->to_wait ||
Jens Axboebda52162019-09-24 13:47:15 -06006087 atomic_read(&ctx->cq_timeouts) != iowq->nr_timeouts;
6088}
6089
6090static int io_wake_function(struct wait_queue_entry *curr, unsigned int mode,
6091 int wake_flags, void *key)
6092{
6093 struct io_wait_queue *iowq = container_of(curr, struct io_wait_queue,
6094 wq);
6095
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006096 /* use noflush == true, as we can't safely rely on locking context */
6097 if (!io_should_wake(iowq, true))
Jens Axboebda52162019-09-24 13:47:15 -06006098 return -1;
6099
6100 return autoremove_wake_function(curr, mode, wake_flags, key);
6101}
6102
Jens Axboe2b188cc2019-01-07 10:46:33 -07006103/*
6104 * Wait until events become available, if we don't already have some. The
6105 * application must reap them itself, as they reside on the shared cq ring.
6106 */
6107static int io_cqring_wait(struct io_ring_ctx *ctx, int min_events,
6108 const sigset_t __user *sig, size_t sigsz)
6109{
Jens Axboebda52162019-09-24 13:47:15 -06006110 struct io_wait_queue iowq = {
6111 .wq = {
6112 .private = current,
6113 .func = io_wake_function,
6114 .entry = LIST_HEAD_INIT(iowq.wq.entry),
6115 },
6116 .ctx = ctx,
6117 .to_wait = min_events,
6118 };
Hristo Venev75b28af2019-08-26 17:23:46 +00006119 struct io_rings *rings = ctx->rings;
Jackie Liue9ffa5c2019-10-29 11:16:42 +08006120 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006121
Jens Axboeb41e9852020-02-17 09:52:41 -07006122 do {
6123 if (io_cqring_events(ctx, false) >= min_events)
6124 return 0;
6125 if (!current->task_works)
6126 break;
6127 task_work_run();
6128 } while (1);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006129
6130 if (sig) {
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006131#ifdef CONFIG_COMPAT
6132 if (in_compat_syscall())
6133 ret = set_compat_user_sigmask((const compat_sigset_t __user *)sig,
Oleg Nesterovb7724342019-07-16 16:29:53 -07006134 sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006135 else
6136#endif
Oleg Nesterovb7724342019-07-16 16:29:53 -07006137 ret = set_user_sigmask(sig, sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006138
Jens Axboe2b188cc2019-01-07 10:46:33 -07006139 if (ret)
6140 return ret;
6141 }
6142
Jens Axboebda52162019-09-24 13:47:15 -06006143 iowq.nr_timeouts = atomic_read(&ctx->cq_timeouts);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02006144 trace_io_uring_cqring_wait(ctx, min_events);
Jens Axboebda52162019-09-24 13:47:15 -06006145 do {
6146 prepare_to_wait_exclusive(&ctx->wait, &iowq.wq,
6147 TASK_INTERRUPTIBLE);
Jens Axboeb41e9852020-02-17 09:52:41 -07006148 if (current->task_works)
6149 task_work_run();
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006150 if (io_should_wake(&iowq, false))
Jens Axboebda52162019-09-24 13:47:15 -06006151 break;
6152 schedule();
6153 if (signal_pending(current)) {
Jackie Liue9ffa5c2019-10-29 11:16:42 +08006154 ret = -EINTR;
Jens Axboebda52162019-09-24 13:47:15 -06006155 break;
6156 }
6157 } while (1);
6158 finish_wait(&ctx->wait, &iowq.wq);
6159
Jackie Liue9ffa5c2019-10-29 11:16:42 +08006160 restore_saved_sigmask_unless(ret == -EINTR);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006161
Hristo Venev75b28af2019-08-26 17:23:46 +00006162 return READ_ONCE(rings->cq.head) == READ_ONCE(rings->cq.tail) ? ret : 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006163}
6164
Jens Axboe6b063142019-01-10 22:13:58 -07006165static void __io_sqe_files_unregister(struct io_ring_ctx *ctx)
6166{
6167#if defined(CONFIG_UNIX)
6168 if (ctx->ring_sock) {
6169 struct sock *sock = ctx->ring_sock->sk;
6170 struct sk_buff *skb;
6171
6172 while ((skb = skb_dequeue(&sock->sk_receive_queue)) != NULL)
6173 kfree_skb(skb);
6174 }
6175#else
6176 int i;
6177
Jens Axboe65e19f52019-10-26 07:20:21 -06006178 for (i = 0; i < ctx->nr_user_files; i++) {
6179 struct file *file;
6180
6181 file = io_file_from_index(ctx, i);
6182 if (file)
6183 fput(file);
6184 }
Jens Axboe6b063142019-01-10 22:13:58 -07006185#endif
6186}
6187
Jens Axboe05f3fb32019-12-09 11:22:50 -07006188static void io_file_ref_kill(struct percpu_ref *ref)
6189{
6190 struct fixed_file_data *data;
6191
6192 data = container_of(ref, struct fixed_file_data, refs);
6193 complete(&data->done);
6194}
6195
Jens Axboe6b063142019-01-10 22:13:58 -07006196static int io_sqe_files_unregister(struct io_ring_ctx *ctx)
6197{
Jens Axboe05f3fb32019-12-09 11:22:50 -07006198 struct fixed_file_data *data = ctx->file_data;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006199 struct fixed_file_ref_node *ref_node = NULL;
Jens Axboe65e19f52019-10-26 07:20:21 -06006200 unsigned nr_tables, i;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006201 unsigned long flags;
Jens Axboe65e19f52019-10-26 07:20:21 -06006202
Jens Axboe05f3fb32019-12-09 11:22:50 -07006203 if (!data)
Jens Axboe6b063142019-01-10 22:13:58 -07006204 return -ENXIO;
6205
Xiaoguang Wang05589552020-03-31 14:05:18 +08006206 spin_lock_irqsave(&data->lock, flags);
6207 if (!list_empty(&data->ref_list))
6208 ref_node = list_first_entry(&data->ref_list,
6209 struct fixed_file_ref_node, node);
6210 spin_unlock_irqrestore(&data->lock, flags);
6211 if (ref_node)
6212 percpu_ref_kill(&ref_node->refs);
6213
6214 percpu_ref_kill(&data->refs);
6215
6216 /* wait for all refs nodes to complete */
Jens Axboe2faf8522020-02-04 19:54:55 -07006217 wait_for_completion(&data->done);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006218
Jens Axboe6b063142019-01-10 22:13:58 -07006219 __io_sqe_files_unregister(ctx);
Jens Axboe65e19f52019-10-26 07:20:21 -06006220 nr_tables = DIV_ROUND_UP(ctx->nr_user_files, IORING_MAX_FILES_TABLE);
6221 for (i = 0; i < nr_tables; i++)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006222 kfree(data->table[i].files);
6223 kfree(data->table);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006224 percpu_ref_exit(&data->refs);
6225 kfree(data);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006226 ctx->file_data = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07006227 ctx->nr_user_files = 0;
6228 return 0;
6229}
6230
Jens Axboe6c271ce2019-01-10 11:22:30 -07006231static void io_sq_thread_stop(struct io_ring_ctx *ctx)
6232{
6233 if (ctx->sqo_thread) {
Jens Axboe206aefd2019-11-07 18:27:42 -07006234 wait_for_completion(&ctx->completions[1]);
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02006235 /*
6236 * The park is a bit of a work-around, without it we get
6237 * warning spews on shutdown with SQPOLL set and affinity
6238 * set to a single CPU.
6239 */
Jens Axboe06058632019-04-13 09:26:03 -06006240 kthread_park(ctx->sqo_thread);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006241 kthread_stop(ctx->sqo_thread);
6242 ctx->sqo_thread = NULL;
6243 }
6244}
6245
Jens Axboe6b063142019-01-10 22:13:58 -07006246static void io_finish_async(struct io_ring_ctx *ctx)
6247{
Jens Axboe6c271ce2019-01-10 11:22:30 -07006248 io_sq_thread_stop(ctx);
6249
Jens Axboe561fb042019-10-24 07:25:42 -06006250 if (ctx->io_wq) {
6251 io_wq_destroy(ctx->io_wq);
6252 ctx->io_wq = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07006253 }
6254}
6255
6256#if defined(CONFIG_UNIX)
Jens Axboe6b063142019-01-10 22:13:58 -07006257/*
6258 * Ensure the UNIX gc is aware of our file set, so we are certain that
6259 * the io_uring can be safely unregistered on process exit, even if we have
6260 * loops in the file referencing.
6261 */
6262static int __io_sqe_files_scm(struct io_ring_ctx *ctx, int nr, int offset)
6263{
6264 struct sock *sk = ctx->ring_sock->sk;
6265 struct scm_fp_list *fpl;
6266 struct sk_buff *skb;
Jens Axboe08a45172019-10-03 08:11:03 -06006267 int i, nr_files;
Jens Axboe6b063142019-01-10 22:13:58 -07006268
Jens Axboe6b063142019-01-10 22:13:58 -07006269 fpl = kzalloc(sizeof(*fpl), GFP_KERNEL);
6270 if (!fpl)
6271 return -ENOMEM;
6272
6273 skb = alloc_skb(0, GFP_KERNEL);
6274 if (!skb) {
6275 kfree(fpl);
6276 return -ENOMEM;
6277 }
6278
6279 skb->sk = sk;
Jens Axboe6b063142019-01-10 22:13:58 -07006280
Jens Axboe08a45172019-10-03 08:11:03 -06006281 nr_files = 0;
Jens Axboe6b063142019-01-10 22:13:58 -07006282 fpl->user = get_uid(ctx->user);
6283 for (i = 0; i < nr; i++) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006284 struct file *file = io_file_from_index(ctx, i + offset);
6285
6286 if (!file)
Jens Axboe08a45172019-10-03 08:11:03 -06006287 continue;
Jens Axboe65e19f52019-10-26 07:20:21 -06006288 fpl->fp[nr_files] = get_file(file);
Jens Axboe08a45172019-10-03 08:11:03 -06006289 unix_inflight(fpl->user, fpl->fp[nr_files]);
6290 nr_files++;
Jens Axboe6b063142019-01-10 22:13:58 -07006291 }
6292
Jens Axboe08a45172019-10-03 08:11:03 -06006293 if (nr_files) {
6294 fpl->max = SCM_MAX_FD;
6295 fpl->count = nr_files;
6296 UNIXCB(skb).fp = fpl;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006297 skb->destructor = unix_destruct_scm;
Jens Axboe08a45172019-10-03 08:11:03 -06006298 refcount_add(skb->truesize, &sk->sk_wmem_alloc);
6299 skb_queue_head(&sk->sk_receive_queue, skb);
Jens Axboe6b063142019-01-10 22:13:58 -07006300
Jens Axboe08a45172019-10-03 08:11:03 -06006301 for (i = 0; i < nr_files; i++)
6302 fput(fpl->fp[i]);
6303 } else {
6304 kfree_skb(skb);
6305 kfree(fpl);
6306 }
Jens Axboe6b063142019-01-10 22:13:58 -07006307
6308 return 0;
6309}
6310
6311/*
6312 * If UNIX sockets are enabled, fd passing can cause a reference cycle which
6313 * causes regular reference counting to break down. We rely on the UNIX
6314 * garbage collection to take care of this problem for us.
6315 */
6316static int io_sqe_files_scm(struct io_ring_ctx *ctx)
6317{
6318 unsigned left, total;
6319 int ret = 0;
6320
6321 total = 0;
6322 left = ctx->nr_user_files;
6323 while (left) {
6324 unsigned this_files = min_t(unsigned, left, SCM_MAX_FD);
Jens Axboe6b063142019-01-10 22:13:58 -07006325
6326 ret = __io_sqe_files_scm(ctx, this_files, total);
6327 if (ret)
6328 break;
6329 left -= this_files;
6330 total += this_files;
6331 }
6332
6333 if (!ret)
6334 return 0;
6335
6336 while (total < ctx->nr_user_files) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006337 struct file *file = io_file_from_index(ctx, total);
6338
6339 if (file)
6340 fput(file);
Jens Axboe6b063142019-01-10 22:13:58 -07006341 total++;
6342 }
6343
6344 return ret;
6345}
6346#else
6347static int io_sqe_files_scm(struct io_ring_ctx *ctx)
6348{
6349 return 0;
6350}
6351#endif
6352
Jens Axboe65e19f52019-10-26 07:20:21 -06006353static int io_sqe_alloc_file_tables(struct io_ring_ctx *ctx, unsigned nr_tables,
6354 unsigned nr_files)
6355{
6356 int i;
6357
6358 for (i = 0; i < nr_tables; i++) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006359 struct fixed_file_table *table = &ctx->file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06006360 unsigned this_files;
6361
6362 this_files = min(nr_files, IORING_MAX_FILES_TABLE);
6363 table->files = kcalloc(this_files, sizeof(struct file *),
6364 GFP_KERNEL);
6365 if (!table->files)
6366 break;
6367 nr_files -= this_files;
6368 }
6369
6370 if (i == nr_tables)
6371 return 0;
6372
6373 for (i = 0; i < nr_tables; i++) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006374 struct fixed_file_table *table = &ctx->file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06006375 kfree(table->files);
6376 }
6377 return 1;
6378}
6379
Jens Axboe05f3fb32019-12-09 11:22:50 -07006380static void io_ring_file_put(struct io_ring_ctx *ctx, struct file *file)
Jens Axboec3a31e62019-10-03 13:59:56 -06006381{
6382#if defined(CONFIG_UNIX)
Jens Axboec3a31e62019-10-03 13:59:56 -06006383 struct sock *sock = ctx->ring_sock->sk;
6384 struct sk_buff_head list, *head = &sock->sk_receive_queue;
6385 struct sk_buff *skb;
6386 int i;
6387
6388 __skb_queue_head_init(&list);
6389
6390 /*
6391 * Find the skb that holds this file in its SCM_RIGHTS. When found,
6392 * remove this entry and rearrange the file array.
6393 */
6394 skb = skb_dequeue(head);
6395 while (skb) {
6396 struct scm_fp_list *fp;
6397
6398 fp = UNIXCB(skb).fp;
6399 for (i = 0; i < fp->count; i++) {
6400 int left;
6401
6402 if (fp->fp[i] != file)
6403 continue;
6404
6405 unix_notinflight(fp->user, fp->fp[i]);
6406 left = fp->count - 1 - i;
6407 if (left) {
6408 memmove(&fp->fp[i], &fp->fp[i + 1],
6409 left * sizeof(struct file *));
6410 }
6411 fp->count--;
6412 if (!fp->count) {
6413 kfree_skb(skb);
6414 skb = NULL;
6415 } else {
6416 __skb_queue_tail(&list, skb);
6417 }
6418 fput(file);
6419 file = NULL;
6420 break;
6421 }
6422
6423 if (!file)
6424 break;
6425
6426 __skb_queue_tail(&list, skb);
6427
6428 skb = skb_dequeue(head);
6429 }
6430
6431 if (skb_peek(&list)) {
6432 spin_lock_irq(&head->lock);
6433 while ((skb = __skb_dequeue(&list)) != NULL)
6434 __skb_queue_tail(head, skb);
6435 spin_unlock_irq(&head->lock);
6436 }
6437#else
Jens Axboe05f3fb32019-12-09 11:22:50 -07006438 fput(file);
Jens Axboec3a31e62019-10-03 13:59:56 -06006439#endif
6440}
6441
Jens Axboe05f3fb32019-12-09 11:22:50 -07006442struct io_file_put {
Xiaoguang Wang05589552020-03-31 14:05:18 +08006443 struct list_head list;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006444 struct file *file;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006445};
6446
Xiaoguang Wang05589552020-03-31 14:05:18 +08006447static void io_file_put_work(struct work_struct *work)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006448{
Xiaoguang Wang05589552020-03-31 14:05:18 +08006449 struct fixed_file_ref_node *ref_node;
6450 struct fixed_file_data *file_data;
6451 struct io_ring_ctx *ctx;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006452 struct io_file_put *pfile, *tmp;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006453 unsigned long flags;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006454
Xiaoguang Wang05589552020-03-31 14:05:18 +08006455 ref_node = container_of(work, struct fixed_file_ref_node, work);
6456 file_data = ref_node->file_data;
6457 ctx = file_data->ctx;
6458
6459 list_for_each_entry_safe(pfile, tmp, &ref_node->file_list, list) {
6460 list_del_init(&pfile->list);
6461 io_ring_file_put(ctx, pfile->file);
6462 kfree(pfile);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006463 }
6464
Xiaoguang Wang05589552020-03-31 14:05:18 +08006465 spin_lock_irqsave(&file_data->lock, flags);
6466 list_del_init(&ref_node->node);
6467 spin_unlock_irqrestore(&file_data->lock, flags);
Jens Axboe2faf8522020-02-04 19:54:55 -07006468
Xiaoguang Wang05589552020-03-31 14:05:18 +08006469 percpu_ref_exit(&ref_node->refs);
6470 kfree(ref_node);
6471 percpu_ref_put(&file_data->refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006472}
6473
6474static void io_file_data_ref_zero(struct percpu_ref *ref)
6475{
Xiaoguang Wang05589552020-03-31 14:05:18 +08006476 struct fixed_file_ref_node *ref_node;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006477
Xiaoguang Wang05589552020-03-31 14:05:18 +08006478 ref_node = container_of(ref, struct fixed_file_ref_node, refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006479
Xiaoguang Wang05589552020-03-31 14:05:18 +08006480 queue_work(system_wq, &ref_node->work);
6481}
6482
6483static struct fixed_file_ref_node *alloc_fixed_file_ref_node(
6484 struct io_ring_ctx *ctx)
6485{
6486 struct fixed_file_ref_node *ref_node;
6487
6488 ref_node = kzalloc(sizeof(*ref_node), GFP_KERNEL);
6489 if (!ref_node)
6490 return ERR_PTR(-ENOMEM);
6491
6492 if (percpu_ref_init(&ref_node->refs, io_file_data_ref_zero,
6493 0, GFP_KERNEL)) {
6494 kfree(ref_node);
6495 return ERR_PTR(-ENOMEM);
6496 }
6497 INIT_LIST_HEAD(&ref_node->node);
6498 INIT_LIST_HEAD(&ref_node->file_list);
6499 INIT_WORK(&ref_node->work, io_file_put_work);
6500 ref_node->file_data = ctx->file_data;
6501 return ref_node;
6502
6503}
6504
6505static void destroy_fixed_file_ref_node(struct fixed_file_ref_node *ref_node)
6506{
6507 percpu_ref_exit(&ref_node->refs);
6508 kfree(ref_node);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006509}
6510
6511static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
6512 unsigned nr_args)
6513{
6514 __s32 __user *fds = (__s32 __user *) arg;
6515 unsigned nr_tables;
6516 struct file *file;
6517 int fd, ret = 0;
6518 unsigned i;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006519 struct fixed_file_ref_node *ref_node;
6520 unsigned long flags;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006521
6522 if (ctx->file_data)
6523 return -EBUSY;
6524 if (!nr_args)
6525 return -EINVAL;
6526 if (nr_args > IORING_MAX_FIXED_FILES)
6527 return -EMFILE;
6528
6529 ctx->file_data = kzalloc(sizeof(*ctx->file_data), GFP_KERNEL);
6530 if (!ctx->file_data)
6531 return -ENOMEM;
6532 ctx->file_data->ctx = ctx;
6533 init_completion(&ctx->file_data->done);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006534 INIT_LIST_HEAD(&ctx->file_data->ref_list);
Xiaoguang Wangf7fe9342020-04-07 20:02:31 +08006535 spin_lock_init(&ctx->file_data->lock);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006536
6537 nr_tables = DIV_ROUND_UP(nr_args, IORING_MAX_FILES_TABLE);
6538 ctx->file_data->table = kcalloc(nr_tables,
6539 sizeof(struct fixed_file_table),
6540 GFP_KERNEL);
6541 if (!ctx->file_data->table) {
6542 kfree(ctx->file_data);
6543 ctx->file_data = NULL;
6544 return -ENOMEM;
6545 }
6546
Xiaoguang Wang05589552020-03-31 14:05:18 +08006547 if (percpu_ref_init(&ctx->file_data->refs, io_file_ref_kill,
Jens Axboe05f3fb32019-12-09 11:22:50 -07006548 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL)) {
6549 kfree(ctx->file_data->table);
6550 kfree(ctx->file_data);
6551 ctx->file_data = NULL;
6552 return -ENOMEM;
6553 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07006554
6555 if (io_sqe_alloc_file_tables(ctx, nr_tables, nr_args)) {
6556 percpu_ref_exit(&ctx->file_data->refs);
6557 kfree(ctx->file_data->table);
6558 kfree(ctx->file_data);
6559 ctx->file_data = NULL;
6560 return -ENOMEM;
6561 }
6562
6563 for (i = 0; i < nr_args; i++, ctx->nr_user_files++) {
6564 struct fixed_file_table *table;
6565 unsigned index;
6566
6567 ret = -EFAULT;
6568 if (copy_from_user(&fd, &fds[i], sizeof(fd)))
6569 break;
6570 /* allow sparse sets */
6571 if (fd == -1) {
6572 ret = 0;
6573 continue;
6574 }
6575
6576 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
6577 index = i & IORING_FILE_TABLE_MASK;
6578 file = fget(fd);
6579
6580 ret = -EBADF;
6581 if (!file)
6582 break;
6583
6584 /*
6585 * Don't allow io_uring instances to be registered. If UNIX
6586 * isn't enabled, then this causes a reference cycle and this
6587 * instance can never get freed. If UNIX is enabled we'll
6588 * handle it just fine, but there's still no point in allowing
6589 * a ring fd as it doesn't support regular read/write anyway.
6590 */
6591 if (file->f_op == &io_uring_fops) {
6592 fput(file);
6593 break;
6594 }
6595 ret = 0;
6596 table->files[index] = file;
6597 }
6598
6599 if (ret) {
6600 for (i = 0; i < ctx->nr_user_files; i++) {
6601 file = io_file_from_index(ctx, i);
6602 if (file)
6603 fput(file);
6604 }
6605 for (i = 0; i < nr_tables; i++)
6606 kfree(ctx->file_data->table[i].files);
6607
6608 kfree(ctx->file_data->table);
6609 kfree(ctx->file_data);
6610 ctx->file_data = NULL;
6611 ctx->nr_user_files = 0;
6612 return ret;
6613 }
6614
6615 ret = io_sqe_files_scm(ctx);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006616 if (ret) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006617 io_sqe_files_unregister(ctx);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006618 return ret;
6619 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07006620
Xiaoguang Wang05589552020-03-31 14:05:18 +08006621 ref_node = alloc_fixed_file_ref_node(ctx);
6622 if (IS_ERR(ref_node)) {
6623 io_sqe_files_unregister(ctx);
6624 return PTR_ERR(ref_node);
6625 }
6626
6627 ctx->file_data->cur_refs = &ref_node->refs;
6628 spin_lock_irqsave(&ctx->file_data->lock, flags);
6629 list_add(&ref_node->node, &ctx->file_data->ref_list);
6630 spin_unlock_irqrestore(&ctx->file_data->lock, flags);
6631 percpu_ref_get(&ctx->file_data->refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006632 return ret;
6633}
6634
Jens Axboec3a31e62019-10-03 13:59:56 -06006635static int io_sqe_file_register(struct io_ring_ctx *ctx, struct file *file,
6636 int index)
6637{
6638#if defined(CONFIG_UNIX)
6639 struct sock *sock = ctx->ring_sock->sk;
6640 struct sk_buff_head *head = &sock->sk_receive_queue;
6641 struct sk_buff *skb;
6642
6643 /*
6644 * See if we can merge this file into an existing skb SCM_RIGHTS
6645 * file set. If there's no room, fall back to allocating a new skb
6646 * and filling it in.
6647 */
6648 spin_lock_irq(&head->lock);
6649 skb = skb_peek(head);
6650 if (skb) {
6651 struct scm_fp_list *fpl = UNIXCB(skb).fp;
6652
6653 if (fpl->count < SCM_MAX_FD) {
6654 __skb_unlink(skb, head);
6655 spin_unlock_irq(&head->lock);
6656 fpl->fp[fpl->count] = get_file(file);
6657 unix_inflight(fpl->user, fpl->fp[fpl->count]);
6658 fpl->count++;
6659 spin_lock_irq(&head->lock);
6660 __skb_queue_head(head, skb);
6661 } else {
6662 skb = NULL;
6663 }
6664 }
6665 spin_unlock_irq(&head->lock);
6666
6667 if (skb) {
6668 fput(file);
6669 return 0;
6670 }
6671
6672 return __io_sqe_files_scm(ctx, 1, index);
6673#else
6674 return 0;
6675#endif
6676}
6677
Hillf Dantona5318d32020-03-23 17:47:15 +08006678static int io_queue_file_removal(struct fixed_file_data *data,
Xiaoguang Wang05589552020-03-31 14:05:18 +08006679 struct file *file)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006680{
Hillf Dantona5318d32020-03-23 17:47:15 +08006681 struct io_file_put *pfile;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006682 struct percpu_ref *refs = data->cur_refs;
6683 struct fixed_file_ref_node *ref_node;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006684
Jens Axboe05f3fb32019-12-09 11:22:50 -07006685 pfile = kzalloc(sizeof(*pfile), GFP_KERNEL);
Hillf Dantona5318d32020-03-23 17:47:15 +08006686 if (!pfile)
6687 return -ENOMEM;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006688
Xiaoguang Wang05589552020-03-31 14:05:18 +08006689 ref_node = container_of(refs, struct fixed_file_ref_node, refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006690 pfile->file = file;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006691 list_add(&pfile->list, &ref_node->file_list);
6692
Hillf Dantona5318d32020-03-23 17:47:15 +08006693 return 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006694}
6695
6696static int __io_sqe_files_update(struct io_ring_ctx *ctx,
6697 struct io_uring_files_update *up,
6698 unsigned nr_args)
6699{
6700 struct fixed_file_data *data = ctx->file_data;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006701 struct fixed_file_ref_node *ref_node;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006702 struct file *file;
Jens Axboec3a31e62019-10-03 13:59:56 -06006703 __s32 __user *fds;
6704 int fd, i, err;
6705 __u32 done;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006706 unsigned long flags;
6707 bool needs_switch = false;
Jens Axboec3a31e62019-10-03 13:59:56 -06006708
Jens Axboe05f3fb32019-12-09 11:22:50 -07006709 if (check_add_overflow(up->offset, nr_args, &done))
Jens Axboec3a31e62019-10-03 13:59:56 -06006710 return -EOVERFLOW;
6711 if (done > ctx->nr_user_files)
6712 return -EINVAL;
6713
Xiaoguang Wang05589552020-03-31 14:05:18 +08006714 ref_node = alloc_fixed_file_ref_node(ctx);
6715 if (IS_ERR(ref_node))
6716 return PTR_ERR(ref_node);
6717
Jens Axboec3a31e62019-10-03 13:59:56 -06006718 done = 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006719 fds = u64_to_user_ptr(up->fds);
Jens Axboec3a31e62019-10-03 13:59:56 -06006720 while (nr_args) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006721 struct fixed_file_table *table;
6722 unsigned index;
6723
Jens Axboec3a31e62019-10-03 13:59:56 -06006724 err = 0;
6725 if (copy_from_user(&fd, &fds[done], sizeof(fd))) {
6726 err = -EFAULT;
6727 break;
6728 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07006729 i = array_index_nospec(up->offset, ctx->nr_user_files);
6730 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
Jens Axboe65e19f52019-10-26 07:20:21 -06006731 index = i & IORING_FILE_TABLE_MASK;
6732 if (table->files[index]) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006733 file = io_file_from_index(ctx, index);
Hillf Dantona5318d32020-03-23 17:47:15 +08006734 err = io_queue_file_removal(data, file);
6735 if (err)
6736 break;
Jens Axboe65e19f52019-10-26 07:20:21 -06006737 table->files[index] = NULL;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006738 needs_switch = true;
Jens Axboec3a31e62019-10-03 13:59:56 -06006739 }
6740 if (fd != -1) {
Jens Axboec3a31e62019-10-03 13:59:56 -06006741 file = fget(fd);
6742 if (!file) {
6743 err = -EBADF;
6744 break;
6745 }
6746 /*
6747 * Don't allow io_uring instances to be registered. If
6748 * UNIX isn't enabled, then this causes a reference
6749 * cycle and this instance can never get freed. If UNIX
6750 * is enabled we'll handle it just fine, but there's
6751 * still no point in allowing a ring fd as it doesn't
6752 * support regular read/write anyway.
6753 */
6754 if (file->f_op == &io_uring_fops) {
6755 fput(file);
6756 err = -EBADF;
6757 break;
6758 }
Jens Axboe65e19f52019-10-26 07:20:21 -06006759 table->files[index] = file;
Jens Axboec3a31e62019-10-03 13:59:56 -06006760 err = io_sqe_file_register(ctx, file, i);
6761 if (err)
6762 break;
6763 }
6764 nr_args--;
6765 done++;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006766 up->offset++;
6767 }
6768
Xiaoguang Wang05589552020-03-31 14:05:18 +08006769 if (needs_switch) {
6770 percpu_ref_kill(data->cur_refs);
6771 spin_lock_irqsave(&data->lock, flags);
6772 list_add(&ref_node->node, &data->ref_list);
6773 data->cur_refs = &ref_node->refs;
6774 spin_unlock_irqrestore(&data->lock, flags);
6775 percpu_ref_get(&ctx->file_data->refs);
6776 } else
6777 destroy_fixed_file_ref_node(ref_node);
Jens Axboec3a31e62019-10-03 13:59:56 -06006778
6779 return done ? done : err;
6780}
Xiaoguang Wang05589552020-03-31 14:05:18 +08006781
Jens Axboe05f3fb32019-12-09 11:22:50 -07006782static int io_sqe_files_update(struct io_ring_ctx *ctx, void __user *arg,
6783 unsigned nr_args)
6784{
6785 struct io_uring_files_update up;
6786
6787 if (!ctx->file_data)
6788 return -ENXIO;
6789 if (!nr_args)
6790 return -EINVAL;
6791 if (copy_from_user(&up, arg, sizeof(up)))
6792 return -EFAULT;
6793 if (up.resv)
6794 return -EINVAL;
6795
6796 return __io_sqe_files_update(ctx, &up, nr_args);
6797}
Jens Axboec3a31e62019-10-03 13:59:56 -06006798
Pavel Begunkove9fd9392020-03-04 16:14:12 +03006799static void io_free_work(struct io_wq_work *work)
Jens Axboe7d723062019-11-12 22:31:31 -07006800{
6801 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
6802
Pavel Begunkove9fd9392020-03-04 16:14:12 +03006803 /* Consider that io_steal_work() relies on this ref */
Jens Axboe7d723062019-11-12 22:31:31 -07006804 io_put_req(req);
6805}
6806
Pavel Begunkov24369c22020-01-28 03:15:48 +03006807static int io_init_wq_offload(struct io_ring_ctx *ctx,
6808 struct io_uring_params *p)
6809{
6810 struct io_wq_data data;
6811 struct fd f;
6812 struct io_ring_ctx *ctx_attach;
6813 unsigned int concurrency;
6814 int ret = 0;
6815
6816 data.user = ctx->user;
Pavel Begunkove9fd9392020-03-04 16:14:12 +03006817 data.free_work = io_free_work;
Pavel Begunkov24369c22020-01-28 03:15:48 +03006818
6819 if (!(p->flags & IORING_SETUP_ATTACH_WQ)) {
6820 /* Do QD, or 4 * CPUS, whatever is smallest */
6821 concurrency = min(ctx->sq_entries, 4 * num_online_cpus());
6822
6823 ctx->io_wq = io_wq_create(concurrency, &data);
6824 if (IS_ERR(ctx->io_wq)) {
6825 ret = PTR_ERR(ctx->io_wq);
6826 ctx->io_wq = NULL;
6827 }
6828 return ret;
6829 }
6830
6831 f = fdget(p->wq_fd);
6832 if (!f.file)
6833 return -EBADF;
6834
6835 if (f.file->f_op != &io_uring_fops) {
6836 ret = -EINVAL;
6837 goto out_fput;
6838 }
6839
6840 ctx_attach = f.file->private_data;
6841 /* @io_wq is protected by holding the fd */
6842 if (!io_wq_get(ctx_attach->io_wq, &data)) {
6843 ret = -EINVAL;
6844 goto out_fput;
6845 }
6846
6847 ctx->io_wq = ctx_attach->io_wq;
6848out_fput:
6849 fdput(f);
6850 return ret;
6851}
6852
Jens Axboe6c271ce2019-01-10 11:22:30 -07006853static int io_sq_offload_start(struct io_ring_ctx *ctx,
6854 struct io_uring_params *p)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006855{
6856 int ret;
6857
Jens Axboe6c271ce2019-01-10 11:22:30 -07006858 init_waitqueue_head(&ctx->sqo_wait);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006859 mmgrab(current->mm);
6860 ctx->sqo_mm = current->mm;
6861
Jens Axboe6c271ce2019-01-10 11:22:30 -07006862 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboe3ec482d2019-04-08 10:51:01 -06006863 ret = -EPERM;
6864 if (!capable(CAP_SYS_ADMIN))
6865 goto err;
6866
Jens Axboe917257d2019-04-13 09:28:55 -06006867 ctx->sq_thread_idle = msecs_to_jiffies(p->sq_thread_idle);
6868 if (!ctx->sq_thread_idle)
6869 ctx->sq_thread_idle = HZ;
6870
Jens Axboe6c271ce2019-01-10 11:22:30 -07006871 if (p->flags & IORING_SETUP_SQ_AFF) {
Jens Axboe44a9bd12019-05-14 20:00:30 -06006872 int cpu = p->sq_thread_cpu;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006873
Jens Axboe917257d2019-04-13 09:28:55 -06006874 ret = -EINVAL;
Jens Axboe44a9bd12019-05-14 20:00:30 -06006875 if (cpu >= nr_cpu_ids)
6876 goto err;
Shenghui Wang7889f442019-05-07 16:03:19 +08006877 if (!cpu_online(cpu))
Jens Axboe917257d2019-04-13 09:28:55 -06006878 goto err;
6879
Jens Axboe6c271ce2019-01-10 11:22:30 -07006880 ctx->sqo_thread = kthread_create_on_cpu(io_sq_thread,
6881 ctx, cpu,
6882 "io_uring-sq");
6883 } else {
6884 ctx->sqo_thread = kthread_create(io_sq_thread, ctx,
6885 "io_uring-sq");
6886 }
6887 if (IS_ERR(ctx->sqo_thread)) {
6888 ret = PTR_ERR(ctx->sqo_thread);
6889 ctx->sqo_thread = NULL;
6890 goto err;
6891 }
6892 wake_up_process(ctx->sqo_thread);
6893 } else if (p->flags & IORING_SETUP_SQ_AFF) {
6894 /* Can't have SQ_AFF without SQPOLL */
6895 ret = -EINVAL;
6896 goto err;
6897 }
6898
Pavel Begunkov24369c22020-01-28 03:15:48 +03006899 ret = io_init_wq_offload(ctx, p);
6900 if (ret)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006901 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006902
6903 return 0;
6904err:
Jens Axboe54a91f32019-09-10 09:15:04 -06006905 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006906 mmdrop(ctx->sqo_mm);
6907 ctx->sqo_mm = NULL;
6908 return ret;
6909}
6910
6911static void io_unaccount_mem(struct user_struct *user, unsigned long nr_pages)
6912{
6913 atomic_long_sub(nr_pages, &user->locked_vm);
6914}
6915
6916static int io_account_mem(struct user_struct *user, unsigned long nr_pages)
6917{
6918 unsigned long page_limit, cur_pages, new_pages;
6919
6920 /* Don't allow more pages than we can safely lock */
6921 page_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
6922
6923 do {
6924 cur_pages = atomic_long_read(&user->locked_vm);
6925 new_pages = cur_pages + nr_pages;
6926 if (new_pages > page_limit)
6927 return -ENOMEM;
6928 } while (atomic_long_cmpxchg(&user->locked_vm, cur_pages,
6929 new_pages) != cur_pages);
6930
6931 return 0;
6932}
6933
6934static void io_mem_free(void *ptr)
6935{
Mark Rutland52e04ef2019-04-30 17:30:21 +01006936 struct page *page;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006937
Mark Rutland52e04ef2019-04-30 17:30:21 +01006938 if (!ptr)
6939 return;
6940
6941 page = virt_to_head_page(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006942 if (put_page_testzero(page))
6943 free_compound_page(page);
6944}
6945
6946static void *io_mem_alloc(size_t size)
6947{
6948 gfp_t gfp_flags = GFP_KERNEL | __GFP_ZERO | __GFP_NOWARN | __GFP_COMP |
6949 __GFP_NORETRY;
6950
6951 return (void *) __get_free_pages(gfp_flags, get_order(size));
6952}
6953
Hristo Venev75b28af2019-08-26 17:23:46 +00006954static unsigned long rings_size(unsigned sq_entries, unsigned cq_entries,
6955 size_t *sq_offset)
6956{
6957 struct io_rings *rings;
6958 size_t off, sq_array_size;
6959
6960 off = struct_size(rings, cqes, cq_entries);
6961 if (off == SIZE_MAX)
6962 return SIZE_MAX;
6963
6964#ifdef CONFIG_SMP
6965 off = ALIGN(off, SMP_CACHE_BYTES);
6966 if (off == 0)
6967 return SIZE_MAX;
6968#endif
6969
6970 sq_array_size = array_size(sizeof(u32), sq_entries);
6971 if (sq_array_size == SIZE_MAX)
6972 return SIZE_MAX;
6973
6974 if (check_add_overflow(off, sq_array_size, &off))
6975 return SIZE_MAX;
6976
6977 if (sq_offset)
6978 *sq_offset = off;
6979
6980 return off;
6981}
6982
Jens Axboe2b188cc2019-01-07 10:46:33 -07006983static unsigned long ring_pages(unsigned sq_entries, unsigned cq_entries)
6984{
Hristo Venev75b28af2019-08-26 17:23:46 +00006985 size_t pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006986
Hristo Venev75b28af2019-08-26 17:23:46 +00006987 pages = (size_t)1 << get_order(
6988 rings_size(sq_entries, cq_entries, NULL));
6989 pages += (size_t)1 << get_order(
6990 array_size(sizeof(struct io_uring_sqe), sq_entries));
Jens Axboe2b188cc2019-01-07 10:46:33 -07006991
Hristo Venev75b28af2019-08-26 17:23:46 +00006992 return pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006993}
6994
Jens Axboeedafcce2019-01-09 09:16:05 -07006995static int io_sqe_buffer_unregister(struct io_ring_ctx *ctx)
6996{
6997 int i, j;
6998
6999 if (!ctx->user_bufs)
7000 return -ENXIO;
7001
7002 for (i = 0; i < ctx->nr_user_bufs; i++) {
7003 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
7004
7005 for (j = 0; j < imu->nr_bvecs; j++)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08007006 unpin_user_page(imu->bvec[j].bv_page);
Jens Axboeedafcce2019-01-09 09:16:05 -07007007
7008 if (ctx->account_mem)
7009 io_unaccount_mem(ctx->user, imu->nr_bvecs);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007010 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07007011 imu->nr_bvecs = 0;
7012 }
7013
7014 kfree(ctx->user_bufs);
7015 ctx->user_bufs = NULL;
7016 ctx->nr_user_bufs = 0;
7017 return 0;
7018}
7019
7020static int io_copy_iov(struct io_ring_ctx *ctx, struct iovec *dst,
7021 void __user *arg, unsigned index)
7022{
7023 struct iovec __user *src;
7024
7025#ifdef CONFIG_COMPAT
7026 if (ctx->compat) {
7027 struct compat_iovec __user *ciovs;
7028 struct compat_iovec ciov;
7029
7030 ciovs = (struct compat_iovec __user *) arg;
7031 if (copy_from_user(&ciov, &ciovs[index], sizeof(ciov)))
7032 return -EFAULT;
7033
Jens Axboed55e5f52019-12-11 16:12:15 -07007034 dst->iov_base = u64_to_user_ptr((u64)ciov.iov_base);
Jens Axboeedafcce2019-01-09 09:16:05 -07007035 dst->iov_len = ciov.iov_len;
7036 return 0;
7037 }
7038#endif
7039 src = (struct iovec __user *) arg;
7040 if (copy_from_user(dst, &src[index], sizeof(*dst)))
7041 return -EFAULT;
7042 return 0;
7043}
7044
7045static int io_sqe_buffer_register(struct io_ring_ctx *ctx, void __user *arg,
7046 unsigned nr_args)
7047{
7048 struct vm_area_struct **vmas = NULL;
7049 struct page **pages = NULL;
7050 int i, j, got_pages = 0;
7051 int ret = -EINVAL;
7052
7053 if (ctx->user_bufs)
7054 return -EBUSY;
7055 if (!nr_args || nr_args > UIO_MAXIOV)
7056 return -EINVAL;
7057
7058 ctx->user_bufs = kcalloc(nr_args, sizeof(struct io_mapped_ubuf),
7059 GFP_KERNEL);
7060 if (!ctx->user_bufs)
7061 return -ENOMEM;
7062
7063 for (i = 0; i < nr_args; i++) {
7064 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
7065 unsigned long off, start, end, ubuf;
7066 int pret, nr_pages;
7067 struct iovec iov;
7068 size_t size;
7069
7070 ret = io_copy_iov(ctx, &iov, arg, i);
7071 if (ret)
Pavel Begunkova2786822019-05-26 12:35:47 +03007072 goto err;
Jens Axboeedafcce2019-01-09 09:16:05 -07007073
7074 /*
7075 * Don't impose further limits on the size and buffer
7076 * constraints here, we'll -EINVAL later when IO is
7077 * submitted if they are wrong.
7078 */
7079 ret = -EFAULT;
7080 if (!iov.iov_base || !iov.iov_len)
7081 goto err;
7082
7083 /* arbitrary limit, but we need something */
7084 if (iov.iov_len > SZ_1G)
7085 goto err;
7086
7087 ubuf = (unsigned long) iov.iov_base;
7088 end = (ubuf + iov.iov_len + PAGE_SIZE - 1) >> PAGE_SHIFT;
7089 start = ubuf >> PAGE_SHIFT;
7090 nr_pages = end - start;
7091
7092 if (ctx->account_mem) {
7093 ret = io_account_mem(ctx->user, nr_pages);
7094 if (ret)
7095 goto err;
7096 }
7097
7098 ret = 0;
7099 if (!pages || nr_pages > got_pages) {
7100 kfree(vmas);
7101 kfree(pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007102 pages = kvmalloc_array(nr_pages, sizeof(struct page *),
Jens Axboeedafcce2019-01-09 09:16:05 -07007103 GFP_KERNEL);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007104 vmas = kvmalloc_array(nr_pages,
Jens Axboeedafcce2019-01-09 09:16:05 -07007105 sizeof(struct vm_area_struct *),
7106 GFP_KERNEL);
7107 if (!pages || !vmas) {
7108 ret = -ENOMEM;
7109 if (ctx->account_mem)
7110 io_unaccount_mem(ctx->user, nr_pages);
7111 goto err;
7112 }
7113 got_pages = nr_pages;
7114 }
7115
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007116 imu->bvec = kvmalloc_array(nr_pages, sizeof(struct bio_vec),
Jens Axboeedafcce2019-01-09 09:16:05 -07007117 GFP_KERNEL);
7118 ret = -ENOMEM;
7119 if (!imu->bvec) {
7120 if (ctx->account_mem)
7121 io_unaccount_mem(ctx->user, nr_pages);
7122 goto err;
7123 }
7124
7125 ret = 0;
7126 down_read(&current->mm->mmap_sem);
John Hubbard2113b052020-01-30 22:13:13 -08007127 pret = pin_user_pages(ubuf, nr_pages,
Ira Weiny932f4a62019-05-13 17:17:03 -07007128 FOLL_WRITE | FOLL_LONGTERM,
7129 pages, vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007130 if (pret == nr_pages) {
7131 /* don't support file backed memory */
7132 for (j = 0; j < nr_pages; j++) {
7133 struct vm_area_struct *vma = vmas[j];
7134
7135 if (vma->vm_file &&
7136 !is_file_hugepages(vma->vm_file)) {
7137 ret = -EOPNOTSUPP;
7138 break;
7139 }
7140 }
7141 } else {
7142 ret = pret < 0 ? pret : -EFAULT;
7143 }
7144 up_read(&current->mm->mmap_sem);
7145 if (ret) {
7146 /*
7147 * if we did partial map, or found file backed vmas,
7148 * release any pages we did get
7149 */
John Hubbard27c4d3a2019-08-04 19:32:06 -07007150 if (pret > 0)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08007151 unpin_user_pages(pages, pret);
Jens Axboeedafcce2019-01-09 09:16:05 -07007152 if (ctx->account_mem)
7153 io_unaccount_mem(ctx->user, nr_pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007154 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07007155 goto err;
7156 }
7157
7158 off = ubuf & ~PAGE_MASK;
7159 size = iov.iov_len;
7160 for (j = 0; j < nr_pages; j++) {
7161 size_t vec_len;
7162
7163 vec_len = min_t(size_t, size, PAGE_SIZE - off);
7164 imu->bvec[j].bv_page = pages[j];
7165 imu->bvec[j].bv_len = vec_len;
7166 imu->bvec[j].bv_offset = off;
7167 off = 0;
7168 size -= vec_len;
7169 }
7170 /* store original address for later verification */
7171 imu->ubuf = ubuf;
7172 imu->len = iov.iov_len;
7173 imu->nr_bvecs = nr_pages;
7174
7175 ctx->nr_user_bufs++;
7176 }
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007177 kvfree(pages);
7178 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007179 return 0;
7180err:
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007181 kvfree(pages);
7182 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007183 io_sqe_buffer_unregister(ctx);
7184 return ret;
7185}
7186
Jens Axboe9b402842019-04-11 11:45:41 -06007187static int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg)
7188{
7189 __s32 __user *fds = arg;
7190 int fd;
7191
7192 if (ctx->cq_ev_fd)
7193 return -EBUSY;
7194
7195 if (copy_from_user(&fd, fds, sizeof(*fds)))
7196 return -EFAULT;
7197
7198 ctx->cq_ev_fd = eventfd_ctx_fdget(fd);
7199 if (IS_ERR(ctx->cq_ev_fd)) {
7200 int ret = PTR_ERR(ctx->cq_ev_fd);
7201 ctx->cq_ev_fd = NULL;
7202 return ret;
7203 }
7204
7205 return 0;
7206}
7207
7208static int io_eventfd_unregister(struct io_ring_ctx *ctx)
7209{
7210 if (ctx->cq_ev_fd) {
7211 eventfd_ctx_put(ctx->cq_ev_fd);
7212 ctx->cq_ev_fd = NULL;
7213 return 0;
7214 }
7215
7216 return -ENXIO;
7217}
7218
Jens Axboe5a2e7452020-02-23 16:23:11 -07007219static int __io_destroy_buffers(int id, void *p, void *data)
7220{
7221 struct io_ring_ctx *ctx = data;
7222 struct io_buffer *buf = p;
7223
Jens Axboe067524e2020-03-02 16:32:28 -07007224 __io_remove_buffers(ctx, buf, id, -1U);
Jens Axboe5a2e7452020-02-23 16:23:11 -07007225 return 0;
7226}
7227
7228static void io_destroy_buffers(struct io_ring_ctx *ctx)
7229{
7230 idr_for_each(&ctx->io_buffer_idr, __io_destroy_buffers, ctx);
7231 idr_destroy(&ctx->io_buffer_idr);
7232}
7233
Jens Axboe2b188cc2019-01-07 10:46:33 -07007234static void io_ring_ctx_free(struct io_ring_ctx *ctx)
7235{
Jens Axboe6b063142019-01-10 22:13:58 -07007236 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007237 if (ctx->sqo_mm)
7238 mmdrop(ctx->sqo_mm);
Jens Axboedef596e2019-01-09 08:59:42 -07007239
7240 io_iopoll_reap_events(ctx);
Jens Axboeedafcce2019-01-09 09:16:05 -07007241 io_sqe_buffer_unregister(ctx);
Jens Axboe6b063142019-01-10 22:13:58 -07007242 io_sqe_files_unregister(ctx);
Jens Axboe9b402842019-04-11 11:45:41 -06007243 io_eventfd_unregister(ctx);
Jens Axboe5a2e7452020-02-23 16:23:11 -07007244 io_destroy_buffers(ctx);
Jens Axboe41726c92020-02-23 13:11:42 -07007245 idr_destroy(&ctx->personality_idr);
Jens Axboedef596e2019-01-09 08:59:42 -07007246
Jens Axboe2b188cc2019-01-07 10:46:33 -07007247#if defined(CONFIG_UNIX)
Eric Biggers355e8d22019-06-12 14:58:43 -07007248 if (ctx->ring_sock) {
7249 ctx->ring_sock->file = NULL; /* so that iput() is called */
Jens Axboe2b188cc2019-01-07 10:46:33 -07007250 sock_release(ctx->ring_sock);
Eric Biggers355e8d22019-06-12 14:58:43 -07007251 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007252#endif
7253
Hristo Venev75b28af2019-08-26 17:23:46 +00007254 io_mem_free(ctx->rings);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007255 io_mem_free(ctx->sq_sqes);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007256
7257 percpu_ref_exit(&ctx->refs);
7258 if (ctx->account_mem)
7259 io_unaccount_mem(ctx->user,
7260 ring_pages(ctx->sq_entries, ctx->cq_entries));
7261 free_uid(ctx->user);
Jens Axboe181e4482019-11-25 08:52:30 -07007262 put_cred(ctx->creds);
Jens Axboe206aefd2019-11-07 18:27:42 -07007263 kfree(ctx->completions);
Jens Axboe78076bb2019-12-04 19:56:40 -07007264 kfree(ctx->cancel_hash);
Jens Axboe0ddf92e2019-11-08 08:52:53 -07007265 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007266 kfree(ctx);
7267}
7268
7269static __poll_t io_uring_poll(struct file *file, poll_table *wait)
7270{
7271 struct io_ring_ctx *ctx = file->private_data;
7272 __poll_t mask = 0;
7273
7274 poll_wait(file, &ctx->cq_wait, wait);
Stefan Bühler4f7067c2019-04-24 23:54:17 +02007275 /*
7276 * synchronizes with barrier from wq_has_sleeper call in
7277 * io_commit_cqring
7278 */
Jens Axboe2b188cc2019-01-07 10:46:33 -07007279 smp_rmb();
Hristo Venev75b28af2019-08-26 17:23:46 +00007280 if (READ_ONCE(ctx->rings->sq.tail) - ctx->cached_sq_head !=
7281 ctx->rings->sq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007282 mask |= EPOLLOUT | EPOLLWRNORM;
Stefano Garzarella63e5d812020-02-07 13:18:28 +01007283 if (io_cqring_events(ctx, false))
Jens Axboe2b188cc2019-01-07 10:46:33 -07007284 mask |= EPOLLIN | EPOLLRDNORM;
7285
7286 return mask;
7287}
7288
7289static int io_uring_fasync(int fd, struct file *file, int on)
7290{
7291 struct io_ring_ctx *ctx = file->private_data;
7292
7293 return fasync_helper(fd, file, on, &ctx->cq_fasync);
7294}
7295
Jens Axboe071698e2020-01-28 10:04:42 -07007296static int io_remove_personalities(int id, void *p, void *data)
7297{
7298 struct io_ring_ctx *ctx = data;
7299 const struct cred *cred;
7300
7301 cred = idr_remove(&ctx->personality_idr, id);
7302 if (cred)
7303 put_cred(cred);
7304 return 0;
7305}
7306
Jens Axboe85faa7b2020-04-09 18:14:00 -06007307static void io_ring_exit_work(struct work_struct *work)
7308{
7309 struct io_ring_ctx *ctx;
7310
7311 ctx = container_of(work, struct io_ring_ctx, exit_work);
7312 if (ctx->rings)
7313 io_cqring_overflow_flush(ctx, true);
7314
7315 wait_for_completion(&ctx->completions[0]);
7316 io_ring_ctx_free(ctx);
7317}
7318
Jens Axboe2b188cc2019-01-07 10:46:33 -07007319static void io_ring_ctx_wait_and_kill(struct io_ring_ctx *ctx)
7320{
7321 mutex_lock(&ctx->uring_lock);
7322 percpu_ref_kill(&ctx->refs);
7323 mutex_unlock(&ctx->uring_lock);
7324
Jens Axboedf069d82020-02-04 16:48:34 -07007325 /*
7326 * Wait for sq thread to idle, if we have one. It won't spin on new
7327 * work after we've killed the ctx ref above. This is important to do
7328 * before we cancel existing commands, as the thread could otherwise
7329 * be queueing new work post that. If that's work we need to cancel,
7330 * it could cause shutdown to hang.
7331 */
7332 while (ctx->sqo_thread && !wq_has_sleeper(&ctx->sqo_wait))
7333 cpu_relax();
7334
Jens Axboe5262f562019-09-17 12:26:57 -06007335 io_kill_timeouts(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07007336 io_poll_remove_all(ctx);
Jens Axboe561fb042019-10-24 07:25:42 -06007337
7338 if (ctx->io_wq)
7339 io_wq_cancel_all(ctx->io_wq);
7340
Jens Axboedef596e2019-01-09 08:59:42 -07007341 io_iopoll_reap_events(ctx);
Jens Axboe15dff282019-11-13 09:09:23 -07007342 /* if we failed setting up the ctx, we might not have any rings */
7343 if (ctx->rings)
7344 io_cqring_overflow_flush(ctx, true);
Jens Axboe071698e2020-01-28 10:04:42 -07007345 idr_for_each(&ctx->personality_idr, io_remove_personalities, ctx);
Jens Axboe85faa7b2020-04-09 18:14:00 -06007346 INIT_WORK(&ctx->exit_work, io_ring_exit_work);
7347 queue_work(system_wq, &ctx->exit_work);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007348}
7349
7350static int io_uring_release(struct inode *inode, struct file *file)
7351{
7352 struct io_ring_ctx *ctx = file->private_data;
7353
7354 file->private_data = NULL;
7355 io_ring_ctx_wait_and_kill(ctx);
7356 return 0;
7357}
7358
Jens Axboefcb323c2019-10-24 12:39:47 -06007359static void io_uring_cancel_files(struct io_ring_ctx *ctx,
7360 struct files_struct *files)
7361{
7362 struct io_kiocb *req;
7363 DEFINE_WAIT(wait);
7364
7365 while (!list_empty_careful(&ctx->inflight_list)) {
Jens Axboe768134d2019-11-10 20:30:53 -07007366 struct io_kiocb *cancel_req = NULL;
Jens Axboefcb323c2019-10-24 12:39:47 -06007367
7368 spin_lock_irq(&ctx->inflight_lock);
7369 list_for_each_entry(req, &ctx->inflight_list, inflight_entry) {
Jens Axboe768134d2019-11-10 20:30:53 -07007370 if (req->work.files != files)
7371 continue;
7372 /* req is being completed, ignore */
7373 if (!refcount_inc_not_zero(&req->refs))
7374 continue;
7375 cancel_req = req;
7376 break;
Jens Axboefcb323c2019-10-24 12:39:47 -06007377 }
Jens Axboe768134d2019-11-10 20:30:53 -07007378 if (cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06007379 prepare_to_wait(&ctx->inflight_wait, &wait,
Jens Axboe768134d2019-11-10 20:30:53 -07007380 TASK_UNINTERRUPTIBLE);
Jens Axboefcb323c2019-10-24 12:39:47 -06007381 spin_unlock_irq(&ctx->inflight_lock);
7382
Jens Axboe768134d2019-11-10 20:30:53 -07007383 /* We need to keep going until we don't find a matching req */
7384 if (!cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06007385 break;
Bob Liu2f6d9b92019-11-13 18:06:24 +08007386
Jens Axboe2ca10252020-02-13 17:17:35 -07007387 if (cancel_req->flags & REQ_F_OVERFLOW) {
7388 spin_lock_irq(&ctx->completion_lock);
7389 list_del(&cancel_req->list);
7390 cancel_req->flags &= ~REQ_F_OVERFLOW;
7391 if (list_empty(&ctx->cq_overflow_list)) {
7392 clear_bit(0, &ctx->sq_check_overflow);
7393 clear_bit(0, &ctx->cq_check_overflow);
7394 }
7395 spin_unlock_irq(&ctx->completion_lock);
7396
7397 WRITE_ONCE(ctx->rings->cq_overflow,
7398 atomic_inc_return(&ctx->cached_cq_overflow));
7399
7400 /*
7401 * Put inflight ref and overflow ref. If that's
7402 * all we had, then we're done with this request.
7403 */
7404 if (refcount_sub_and_test(2, &cancel_req->refs)) {
7405 io_put_req(cancel_req);
7406 continue;
7407 }
7408 }
7409
Bob Liu2f6d9b92019-11-13 18:06:24 +08007410 io_wq_cancel_work(ctx->io_wq, &cancel_req->work);
7411 io_put_req(cancel_req);
Jens Axboefcb323c2019-10-24 12:39:47 -06007412 schedule();
7413 }
Jens Axboe768134d2019-11-10 20:30:53 -07007414 finish_wait(&ctx->inflight_wait, &wait);
Jens Axboefcb323c2019-10-24 12:39:47 -06007415}
7416
7417static int io_uring_flush(struct file *file, void *data)
7418{
7419 struct io_ring_ctx *ctx = file->private_data;
7420
7421 io_uring_cancel_files(ctx, data);
Jens Axboe6ab23142020-02-08 20:23:59 -07007422
7423 /*
7424 * If the task is going away, cancel work it may have pending
7425 */
7426 if (fatal_signal_pending(current) || (current->flags & PF_EXITING))
7427 io_wq_cancel_pid(ctx->io_wq, task_pid_vnr(current));
7428
Jens Axboefcb323c2019-10-24 12:39:47 -06007429 return 0;
7430}
7431
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007432static void *io_uring_validate_mmap_request(struct file *file,
7433 loff_t pgoff, size_t sz)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007434{
Jens Axboe2b188cc2019-01-07 10:46:33 -07007435 struct io_ring_ctx *ctx = file->private_data;
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007436 loff_t offset = pgoff << PAGE_SHIFT;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007437 struct page *page;
7438 void *ptr;
7439
7440 switch (offset) {
7441 case IORING_OFF_SQ_RING:
Hristo Venev75b28af2019-08-26 17:23:46 +00007442 case IORING_OFF_CQ_RING:
7443 ptr = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007444 break;
7445 case IORING_OFF_SQES:
7446 ptr = ctx->sq_sqes;
7447 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007448 default:
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007449 return ERR_PTR(-EINVAL);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007450 }
7451
7452 page = virt_to_head_page(ptr);
Matthew Wilcox (Oracle)a50b8542019-09-23 15:34:25 -07007453 if (sz > page_size(page))
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007454 return ERR_PTR(-EINVAL);
7455
7456 return ptr;
7457}
7458
7459#ifdef CONFIG_MMU
7460
7461static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
7462{
7463 size_t sz = vma->vm_end - vma->vm_start;
7464 unsigned long pfn;
7465 void *ptr;
7466
7467 ptr = io_uring_validate_mmap_request(file, vma->vm_pgoff, sz);
7468 if (IS_ERR(ptr))
7469 return PTR_ERR(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007470
7471 pfn = virt_to_phys(ptr) >> PAGE_SHIFT;
7472 return remap_pfn_range(vma, vma->vm_start, pfn, sz, vma->vm_page_prot);
7473}
7474
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007475#else /* !CONFIG_MMU */
7476
7477static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
7478{
7479 return vma->vm_flags & (VM_SHARED | VM_MAYSHARE) ? 0 : -EINVAL;
7480}
7481
7482static unsigned int io_uring_nommu_mmap_capabilities(struct file *file)
7483{
7484 return NOMMU_MAP_DIRECT | NOMMU_MAP_READ | NOMMU_MAP_WRITE;
7485}
7486
7487static unsigned long io_uring_nommu_get_unmapped_area(struct file *file,
7488 unsigned long addr, unsigned long len,
7489 unsigned long pgoff, unsigned long flags)
7490{
7491 void *ptr;
7492
7493 ptr = io_uring_validate_mmap_request(file, pgoff, len);
7494 if (IS_ERR(ptr))
7495 return PTR_ERR(ptr);
7496
7497 return (unsigned long) ptr;
7498}
7499
7500#endif /* !CONFIG_MMU */
7501
Jens Axboe2b188cc2019-01-07 10:46:33 -07007502SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
7503 u32, min_complete, u32, flags, const sigset_t __user *, sig,
7504 size_t, sigsz)
7505{
7506 struct io_ring_ctx *ctx;
7507 long ret = -EBADF;
7508 int submitted = 0;
7509 struct fd f;
7510
Jens Axboeb41e9852020-02-17 09:52:41 -07007511 if (current->task_works)
7512 task_work_run();
7513
Jens Axboe6c271ce2019-01-10 11:22:30 -07007514 if (flags & ~(IORING_ENTER_GETEVENTS | IORING_ENTER_SQ_WAKEUP))
Jens Axboe2b188cc2019-01-07 10:46:33 -07007515 return -EINVAL;
7516
7517 f = fdget(fd);
7518 if (!f.file)
7519 return -EBADF;
7520
7521 ret = -EOPNOTSUPP;
7522 if (f.file->f_op != &io_uring_fops)
7523 goto out_fput;
7524
7525 ret = -ENXIO;
7526 ctx = f.file->private_data;
7527 if (!percpu_ref_tryget(&ctx->refs))
7528 goto out_fput;
7529
Jens Axboe6c271ce2019-01-10 11:22:30 -07007530 /*
7531 * For SQ polling, the thread will do all submissions and completions.
7532 * Just return the requested submit count, and wake the thread if
7533 * we were asked to.
7534 */
Jens Axboeb2a9ead2019-09-12 14:19:16 -06007535 ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007536 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboec1edbf52019-11-10 16:56:04 -07007537 if (!list_empty_careful(&ctx->cq_overflow_list))
7538 io_cqring_overflow_flush(ctx, false);
Jens Axboe6c271ce2019-01-10 11:22:30 -07007539 if (flags & IORING_ENTER_SQ_WAKEUP)
7540 wake_up(&ctx->sqo_wait);
7541 submitted = to_submit;
Jens Axboeb2a9ead2019-09-12 14:19:16 -06007542 } else if (to_submit) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07007543 mutex_lock(&ctx->uring_lock);
Pavel Begunkovbf9c2f12020-04-12 02:05:02 +03007544 submitted = io_submit_sqes(ctx, to_submit, f.file, fd, false);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007545 mutex_unlock(&ctx->uring_lock);
Pavel Begunkov7c504e652019-12-18 19:53:45 +03007546
7547 if (submitted != to_submit)
7548 goto out;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007549 }
7550 if (flags & IORING_ENTER_GETEVENTS) {
Jens Axboedef596e2019-01-09 08:59:42 -07007551 unsigned nr_events = 0;
7552
Jens Axboe2b188cc2019-01-07 10:46:33 -07007553 min_complete = min(min_complete, ctx->cq_entries);
7554
Xiaoguang Wang32b22442020-03-11 09:26:09 +08007555 /*
7556 * When SETUP_IOPOLL and SETUP_SQPOLL are both enabled, user
7557 * space applications don't need to do io completion events
7558 * polling again, they can rely on io_sq_thread to do polling
7559 * work, which can reduce cpu usage and uring_lock contention.
7560 */
7561 if (ctx->flags & IORING_SETUP_IOPOLL &&
7562 !(ctx->flags & IORING_SETUP_SQPOLL)) {
Jens Axboedef596e2019-01-09 08:59:42 -07007563 ret = io_iopoll_check(ctx, &nr_events, min_complete);
Jens Axboedef596e2019-01-09 08:59:42 -07007564 } else {
7565 ret = io_cqring_wait(ctx, min_complete, sig, sigsz);
7566 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007567 }
7568
Pavel Begunkov7c504e652019-12-18 19:53:45 +03007569out:
Pavel Begunkov6805b322019-10-08 02:18:42 +03007570 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007571out_fput:
7572 fdput(f);
7573 return submitted ? submitted : ret;
7574}
7575
Tobias Klauserbebdb652020-02-26 18:38:32 +01007576#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -07007577static int io_uring_show_cred(int id, void *p, void *data)
7578{
7579 const struct cred *cred = p;
7580 struct seq_file *m = data;
7581 struct user_namespace *uns = seq_user_ns(m);
7582 struct group_info *gi;
7583 kernel_cap_t cap;
7584 unsigned __capi;
7585 int g;
7586
7587 seq_printf(m, "%5d\n", id);
7588 seq_put_decimal_ull(m, "\tUid:\t", from_kuid_munged(uns, cred->uid));
7589 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->euid));
7590 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->suid));
7591 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->fsuid));
7592 seq_put_decimal_ull(m, "\n\tGid:\t", from_kgid_munged(uns, cred->gid));
7593 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->egid));
7594 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->sgid));
7595 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->fsgid));
7596 seq_puts(m, "\n\tGroups:\t");
7597 gi = cred->group_info;
7598 for (g = 0; g < gi->ngroups; g++) {
7599 seq_put_decimal_ull(m, g ? " " : "",
7600 from_kgid_munged(uns, gi->gid[g]));
7601 }
7602 seq_puts(m, "\n\tCapEff:\t");
7603 cap = cred->cap_effective;
7604 CAP_FOR_EACH_U32(__capi)
7605 seq_put_hex_ll(m, NULL, cap.cap[CAP_LAST_U32 - __capi], 8);
7606 seq_putc(m, '\n');
7607 return 0;
7608}
7609
7610static void __io_uring_show_fdinfo(struct io_ring_ctx *ctx, struct seq_file *m)
7611{
7612 int i;
7613
7614 mutex_lock(&ctx->uring_lock);
7615 seq_printf(m, "UserFiles:\t%u\n", ctx->nr_user_files);
7616 for (i = 0; i < ctx->nr_user_files; i++) {
7617 struct fixed_file_table *table;
7618 struct file *f;
7619
7620 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
7621 f = table->files[i & IORING_FILE_TABLE_MASK];
7622 if (f)
7623 seq_printf(m, "%5u: %s\n", i, file_dentry(f)->d_iname);
7624 else
7625 seq_printf(m, "%5u: <none>\n", i);
7626 }
7627 seq_printf(m, "UserBufs:\t%u\n", ctx->nr_user_bufs);
7628 for (i = 0; i < ctx->nr_user_bufs; i++) {
7629 struct io_mapped_ubuf *buf = &ctx->user_bufs[i];
7630
7631 seq_printf(m, "%5u: 0x%llx/%u\n", i, buf->ubuf,
7632 (unsigned int) buf->len);
7633 }
7634 if (!idr_is_empty(&ctx->personality_idr)) {
7635 seq_printf(m, "Personalities:\n");
7636 idr_for_each(&ctx->personality_idr, io_uring_show_cred, m);
7637 }
Jens Axboed7718a92020-02-14 22:23:12 -07007638 seq_printf(m, "PollList:\n");
7639 spin_lock_irq(&ctx->completion_lock);
7640 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
7641 struct hlist_head *list = &ctx->cancel_hash[i];
7642 struct io_kiocb *req;
7643
7644 hlist_for_each_entry(req, list, hash_node)
7645 seq_printf(m, " op=%d, task_works=%d\n", req->opcode,
7646 req->task->task_works != NULL);
7647 }
7648 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe87ce9552020-01-30 08:25:34 -07007649 mutex_unlock(&ctx->uring_lock);
7650}
7651
7652static void io_uring_show_fdinfo(struct seq_file *m, struct file *f)
7653{
7654 struct io_ring_ctx *ctx = f->private_data;
7655
7656 if (percpu_ref_tryget(&ctx->refs)) {
7657 __io_uring_show_fdinfo(ctx, m);
7658 percpu_ref_put(&ctx->refs);
7659 }
7660}
Tobias Klauserbebdb652020-02-26 18:38:32 +01007661#endif
Jens Axboe87ce9552020-01-30 08:25:34 -07007662
Jens Axboe2b188cc2019-01-07 10:46:33 -07007663static const struct file_operations io_uring_fops = {
7664 .release = io_uring_release,
Jens Axboefcb323c2019-10-24 12:39:47 -06007665 .flush = io_uring_flush,
Jens Axboe2b188cc2019-01-07 10:46:33 -07007666 .mmap = io_uring_mmap,
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007667#ifndef CONFIG_MMU
7668 .get_unmapped_area = io_uring_nommu_get_unmapped_area,
7669 .mmap_capabilities = io_uring_nommu_mmap_capabilities,
7670#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07007671 .poll = io_uring_poll,
7672 .fasync = io_uring_fasync,
Tobias Klauserbebdb652020-02-26 18:38:32 +01007673#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -07007674 .show_fdinfo = io_uring_show_fdinfo,
Tobias Klauserbebdb652020-02-26 18:38:32 +01007675#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07007676};
7677
7678static int io_allocate_scq_urings(struct io_ring_ctx *ctx,
7679 struct io_uring_params *p)
7680{
Hristo Venev75b28af2019-08-26 17:23:46 +00007681 struct io_rings *rings;
7682 size_t size, sq_array_offset;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007683
Hristo Venev75b28af2019-08-26 17:23:46 +00007684 size = rings_size(p->sq_entries, p->cq_entries, &sq_array_offset);
7685 if (size == SIZE_MAX)
7686 return -EOVERFLOW;
7687
7688 rings = io_mem_alloc(size);
7689 if (!rings)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007690 return -ENOMEM;
7691
Hristo Venev75b28af2019-08-26 17:23:46 +00007692 ctx->rings = rings;
7693 ctx->sq_array = (u32 *)((char *)rings + sq_array_offset);
7694 rings->sq_ring_mask = p->sq_entries - 1;
7695 rings->cq_ring_mask = p->cq_entries - 1;
7696 rings->sq_ring_entries = p->sq_entries;
7697 rings->cq_ring_entries = p->cq_entries;
7698 ctx->sq_mask = rings->sq_ring_mask;
7699 ctx->cq_mask = rings->cq_ring_mask;
7700 ctx->sq_entries = rings->sq_ring_entries;
7701 ctx->cq_entries = rings->cq_ring_entries;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007702
7703 size = array_size(sizeof(struct io_uring_sqe), p->sq_entries);
Jens Axboeeb065d32019-11-20 09:26:29 -07007704 if (size == SIZE_MAX) {
7705 io_mem_free(ctx->rings);
7706 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007707 return -EOVERFLOW;
Jens Axboeeb065d32019-11-20 09:26:29 -07007708 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007709
7710 ctx->sq_sqes = io_mem_alloc(size);
Jens Axboeeb065d32019-11-20 09:26:29 -07007711 if (!ctx->sq_sqes) {
7712 io_mem_free(ctx->rings);
7713 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007714 return -ENOMEM;
Jens Axboeeb065d32019-11-20 09:26:29 -07007715 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007716
Jens Axboe2b188cc2019-01-07 10:46:33 -07007717 return 0;
7718}
7719
7720/*
7721 * Allocate an anonymous fd, this is what constitutes the application
7722 * visible backing of an io_uring instance. The application mmaps this
7723 * fd to gain access to the SQ/CQ ring details. If UNIX sockets are enabled,
7724 * we have to tie this fd to a socket for file garbage collection purposes.
7725 */
7726static int io_uring_get_fd(struct io_ring_ctx *ctx)
7727{
7728 struct file *file;
7729 int ret;
7730
7731#if defined(CONFIG_UNIX)
7732 ret = sock_create_kern(&init_net, PF_UNIX, SOCK_RAW, IPPROTO_IP,
7733 &ctx->ring_sock);
7734 if (ret)
7735 return ret;
7736#endif
7737
7738 ret = get_unused_fd_flags(O_RDWR | O_CLOEXEC);
7739 if (ret < 0)
7740 goto err;
7741
7742 file = anon_inode_getfile("[io_uring]", &io_uring_fops, ctx,
7743 O_RDWR | O_CLOEXEC);
7744 if (IS_ERR(file)) {
7745 put_unused_fd(ret);
7746 ret = PTR_ERR(file);
7747 goto err;
7748 }
7749
7750#if defined(CONFIG_UNIX)
7751 ctx->ring_sock->file = file;
7752#endif
7753 fd_install(ret, file);
7754 return ret;
7755err:
7756#if defined(CONFIG_UNIX)
7757 sock_release(ctx->ring_sock);
7758 ctx->ring_sock = NULL;
7759#endif
7760 return ret;
7761}
7762
7763static int io_uring_create(unsigned entries, struct io_uring_params *p)
7764{
7765 struct user_struct *user = NULL;
7766 struct io_ring_ctx *ctx;
7767 bool account_mem;
7768 int ret;
7769
Jens Axboe8110c1a2019-12-28 15:39:54 -07007770 if (!entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007771 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07007772 if (entries > IORING_MAX_ENTRIES) {
7773 if (!(p->flags & IORING_SETUP_CLAMP))
7774 return -EINVAL;
7775 entries = IORING_MAX_ENTRIES;
7776 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007777
7778 /*
7779 * Use twice as many entries for the CQ ring. It's possible for the
7780 * application to drive a higher depth than the size of the SQ ring,
7781 * since the sqes are only used at submission time. This allows for
Jens Axboe33a107f2019-10-04 12:10:03 -06007782 * some flexibility in overcommitting a bit. If the application has
7783 * set IORING_SETUP_CQSIZE, it will have passed in the desired number
7784 * of CQ ring entries manually.
Jens Axboe2b188cc2019-01-07 10:46:33 -07007785 */
7786 p->sq_entries = roundup_pow_of_two(entries);
Jens Axboe33a107f2019-10-04 12:10:03 -06007787 if (p->flags & IORING_SETUP_CQSIZE) {
7788 /*
7789 * If IORING_SETUP_CQSIZE is set, we do the same roundup
7790 * to a power-of-two, if it isn't already. We do NOT impose
7791 * any cq vs sq ring sizing.
7792 */
Jens Axboe8110c1a2019-12-28 15:39:54 -07007793 if (p->cq_entries < p->sq_entries)
Jens Axboe33a107f2019-10-04 12:10:03 -06007794 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07007795 if (p->cq_entries > IORING_MAX_CQ_ENTRIES) {
7796 if (!(p->flags & IORING_SETUP_CLAMP))
7797 return -EINVAL;
7798 p->cq_entries = IORING_MAX_CQ_ENTRIES;
7799 }
Jens Axboe33a107f2019-10-04 12:10:03 -06007800 p->cq_entries = roundup_pow_of_two(p->cq_entries);
7801 } else {
7802 p->cq_entries = 2 * p->sq_entries;
7803 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007804
7805 user = get_uid(current_user());
7806 account_mem = !capable(CAP_IPC_LOCK);
7807
7808 if (account_mem) {
7809 ret = io_account_mem(user,
7810 ring_pages(p->sq_entries, p->cq_entries));
7811 if (ret) {
7812 free_uid(user);
7813 return ret;
7814 }
7815 }
7816
7817 ctx = io_ring_ctx_alloc(p);
7818 if (!ctx) {
7819 if (account_mem)
7820 io_unaccount_mem(user, ring_pages(p->sq_entries,
7821 p->cq_entries));
7822 free_uid(user);
7823 return -ENOMEM;
7824 }
7825 ctx->compat = in_compat_syscall();
7826 ctx->account_mem = account_mem;
7827 ctx->user = user;
Jens Axboe0b8c0ec2019-12-02 08:50:00 -07007828 ctx->creds = get_current_cred();
Jens Axboe2b188cc2019-01-07 10:46:33 -07007829
7830 ret = io_allocate_scq_urings(ctx, p);
7831 if (ret)
7832 goto err;
7833
Jens Axboe6c271ce2019-01-10 11:22:30 -07007834 ret = io_sq_offload_start(ctx, p);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007835 if (ret)
7836 goto err;
7837
Jens Axboe2b188cc2019-01-07 10:46:33 -07007838 memset(&p->sq_off, 0, sizeof(p->sq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00007839 p->sq_off.head = offsetof(struct io_rings, sq.head);
7840 p->sq_off.tail = offsetof(struct io_rings, sq.tail);
7841 p->sq_off.ring_mask = offsetof(struct io_rings, sq_ring_mask);
7842 p->sq_off.ring_entries = offsetof(struct io_rings, sq_ring_entries);
7843 p->sq_off.flags = offsetof(struct io_rings, sq_flags);
7844 p->sq_off.dropped = offsetof(struct io_rings, sq_dropped);
7845 p->sq_off.array = (char *)ctx->sq_array - (char *)ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007846
7847 memset(&p->cq_off, 0, sizeof(p->cq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00007848 p->cq_off.head = offsetof(struct io_rings, cq.head);
7849 p->cq_off.tail = offsetof(struct io_rings, cq.tail);
7850 p->cq_off.ring_mask = offsetof(struct io_rings, cq_ring_mask);
7851 p->cq_off.ring_entries = offsetof(struct io_rings, cq_ring_entries);
7852 p->cq_off.overflow = offsetof(struct io_rings, cq_overflow);
7853 p->cq_off.cqes = offsetof(struct io_rings, cqes);
Jens Axboeac90f242019-09-06 10:26:21 -06007854
Jens Axboe044c1ab2019-10-28 09:15:33 -06007855 /*
7856 * Install ring fd as the very last thing, so we don't risk someone
7857 * having closed it before we finish setup
7858 */
7859 ret = io_uring_get_fd(ctx);
7860 if (ret < 0)
7861 goto err;
7862
Jens Axboeda8c9692019-12-02 18:51:26 -07007863 p->features = IORING_FEAT_SINGLE_MMAP | IORING_FEAT_NODROP |
Jens Axboecccf0ee2020-01-27 16:34:48 -07007864 IORING_FEAT_SUBMIT_STABLE | IORING_FEAT_RW_CUR_POS |
Jens Axboed7718a92020-02-14 22:23:12 -07007865 IORING_FEAT_CUR_PERSONALITY | IORING_FEAT_FAST_POLL;
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02007866 trace_io_uring_create(ret, ctx, p->sq_entries, p->cq_entries, p->flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007867 return ret;
7868err:
7869 io_ring_ctx_wait_and_kill(ctx);
7870 return ret;
7871}
7872
7873/*
7874 * Sets up an aio uring context, and returns the fd. Applications asks for a
7875 * ring size, we return the actual sq/cq ring sizes (among other things) in the
7876 * params structure passed in.
7877 */
7878static long io_uring_setup(u32 entries, struct io_uring_params __user *params)
7879{
7880 struct io_uring_params p;
7881 long ret;
7882 int i;
7883
7884 if (copy_from_user(&p, params, sizeof(p)))
7885 return -EFAULT;
7886 for (i = 0; i < ARRAY_SIZE(p.resv); i++) {
7887 if (p.resv[i])
7888 return -EINVAL;
7889 }
7890
Jens Axboe6c271ce2019-01-10 11:22:30 -07007891 if (p.flags & ~(IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL |
Jens Axboe8110c1a2019-12-28 15:39:54 -07007892 IORING_SETUP_SQ_AFF | IORING_SETUP_CQSIZE |
Pavel Begunkov24369c22020-01-28 03:15:48 +03007893 IORING_SETUP_CLAMP | IORING_SETUP_ATTACH_WQ))
Jens Axboe2b188cc2019-01-07 10:46:33 -07007894 return -EINVAL;
7895
7896 ret = io_uring_create(entries, &p);
7897 if (ret < 0)
7898 return ret;
7899
7900 if (copy_to_user(params, &p, sizeof(p)))
7901 return -EFAULT;
7902
7903 return ret;
7904}
7905
7906SYSCALL_DEFINE2(io_uring_setup, u32, entries,
7907 struct io_uring_params __user *, params)
7908{
7909 return io_uring_setup(entries, params);
7910}
7911
Jens Axboe66f4af92020-01-16 15:36:52 -07007912static int io_probe(struct io_ring_ctx *ctx, void __user *arg, unsigned nr_args)
7913{
7914 struct io_uring_probe *p;
7915 size_t size;
7916 int i, ret;
7917
7918 size = struct_size(p, ops, nr_args);
7919 if (size == SIZE_MAX)
7920 return -EOVERFLOW;
7921 p = kzalloc(size, GFP_KERNEL);
7922 if (!p)
7923 return -ENOMEM;
7924
7925 ret = -EFAULT;
7926 if (copy_from_user(p, arg, size))
7927 goto out;
7928 ret = -EINVAL;
7929 if (memchr_inv(p, 0, size))
7930 goto out;
7931
7932 p->last_op = IORING_OP_LAST - 1;
7933 if (nr_args > IORING_OP_LAST)
7934 nr_args = IORING_OP_LAST;
7935
7936 for (i = 0; i < nr_args; i++) {
7937 p->ops[i].op = i;
7938 if (!io_op_defs[i].not_supported)
7939 p->ops[i].flags = IO_URING_OP_SUPPORTED;
7940 }
7941 p->ops_len = i;
7942
7943 ret = 0;
7944 if (copy_to_user(arg, p, size))
7945 ret = -EFAULT;
7946out:
7947 kfree(p);
7948 return ret;
7949}
7950
Jens Axboe071698e2020-01-28 10:04:42 -07007951static int io_register_personality(struct io_ring_ctx *ctx)
7952{
7953 const struct cred *creds = get_current_cred();
7954 int id;
7955
7956 id = idr_alloc_cyclic(&ctx->personality_idr, (void *) creds, 1,
7957 USHRT_MAX, GFP_KERNEL);
7958 if (id < 0)
7959 put_cred(creds);
7960 return id;
7961}
7962
7963static int io_unregister_personality(struct io_ring_ctx *ctx, unsigned id)
7964{
7965 const struct cred *old_creds;
7966
7967 old_creds = idr_remove(&ctx->personality_idr, id);
7968 if (old_creds) {
7969 put_cred(old_creds);
7970 return 0;
7971 }
7972
7973 return -EINVAL;
7974}
7975
7976static bool io_register_op_must_quiesce(int op)
7977{
7978 switch (op) {
7979 case IORING_UNREGISTER_FILES:
7980 case IORING_REGISTER_FILES_UPDATE:
7981 case IORING_REGISTER_PROBE:
7982 case IORING_REGISTER_PERSONALITY:
7983 case IORING_UNREGISTER_PERSONALITY:
7984 return false;
7985 default:
7986 return true;
7987 }
7988}
7989
Jens Axboeedafcce2019-01-09 09:16:05 -07007990static int __io_uring_register(struct io_ring_ctx *ctx, unsigned opcode,
7991 void __user *arg, unsigned nr_args)
Jens Axboeb19062a2019-04-15 10:49:38 -06007992 __releases(ctx->uring_lock)
7993 __acquires(ctx->uring_lock)
Jens Axboeedafcce2019-01-09 09:16:05 -07007994{
7995 int ret;
7996
Jens Axboe35fa71a2019-04-22 10:23:23 -06007997 /*
7998 * We're inside the ring mutex, if the ref is already dying, then
7999 * someone else killed the ctx or is already going through
8000 * io_uring_register().
8001 */
8002 if (percpu_ref_is_dying(&ctx->refs))
8003 return -ENXIO;
8004
Jens Axboe071698e2020-01-28 10:04:42 -07008005 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07008006 percpu_ref_kill(&ctx->refs);
Jens Axboeb19062a2019-04-15 10:49:38 -06008007
Jens Axboe05f3fb32019-12-09 11:22:50 -07008008 /*
8009 * Drop uring mutex before waiting for references to exit. If
8010 * another thread is currently inside io_uring_enter() it might
8011 * need to grab the uring_lock to make progress. If we hold it
8012 * here across the drain wait, then we can deadlock. It's safe
8013 * to drop the mutex here, since no new references will come in
8014 * after we've killed the percpu ref.
8015 */
8016 mutex_unlock(&ctx->uring_lock);
Jens Axboec1503682020-01-08 08:26:07 -07008017 ret = wait_for_completion_interruptible(&ctx->completions[0]);
Jens Axboe05f3fb32019-12-09 11:22:50 -07008018 mutex_lock(&ctx->uring_lock);
Jens Axboec1503682020-01-08 08:26:07 -07008019 if (ret) {
8020 percpu_ref_resurrect(&ctx->refs);
8021 ret = -EINTR;
8022 goto out;
8023 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07008024 }
Jens Axboeedafcce2019-01-09 09:16:05 -07008025
8026 switch (opcode) {
8027 case IORING_REGISTER_BUFFERS:
8028 ret = io_sqe_buffer_register(ctx, arg, nr_args);
8029 break;
8030 case IORING_UNREGISTER_BUFFERS:
8031 ret = -EINVAL;
8032 if (arg || nr_args)
8033 break;
8034 ret = io_sqe_buffer_unregister(ctx);
8035 break;
Jens Axboe6b063142019-01-10 22:13:58 -07008036 case IORING_REGISTER_FILES:
8037 ret = io_sqe_files_register(ctx, arg, nr_args);
8038 break;
8039 case IORING_UNREGISTER_FILES:
8040 ret = -EINVAL;
8041 if (arg || nr_args)
8042 break;
8043 ret = io_sqe_files_unregister(ctx);
8044 break;
Jens Axboec3a31e62019-10-03 13:59:56 -06008045 case IORING_REGISTER_FILES_UPDATE:
8046 ret = io_sqe_files_update(ctx, arg, nr_args);
8047 break;
Jens Axboe9b402842019-04-11 11:45:41 -06008048 case IORING_REGISTER_EVENTFD:
Jens Axboef2842ab2020-01-08 11:04:00 -07008049 case IORING_REGISTER_EVENTFD_ASYNC:
Jens Axboe9b402842019-04-11 11:45:41 -06008050 ret = -EINVAL;
8051 if (nr_args != 1)
8052 break;
8053 ret = io_eventfd_register(ctx, arg);
Jens Axboef2842ab2020-01-08 11:04:00 -07008054 if (ret)
8055 break;
8056 if (opcode == IORING_REGISTER_EVENTFD_ASYNC)
8057 ctx->eventfd_async = 1;
8058 else
8059 ctx->eventfd_async = 0;
Jens Axboe9b402842019-04-11 11:45:41 -06008060 break;
8061 case IORING_UNREGISTER_EVENTFD:
8062 ret = -EINVAL;
8063 if (arg || nr_args)
8064 break;
8065 ret = io_eventfd_unregister(ctx);
8066 break;
Jens Axboe66f4af92020-01-16 15:36:52 -07008067 case IORING_REGISTER_PROBE:
8068 ret = -EINVAL;
8069 if (!arg || nr_args > 256)
8070 break;
8071 ret = io_probe(ctx, arg, nr_args);
8072 break;
Jens Axboe071698e2020-01-28 10:04:42 -07008073 case IORING_REGISTER_PERSONALITY:
8074 ret = -EINVAL;
8075 if (arg || nr_args)
8076 break;
8077 ret = io_register_personality(ctx);
8078 break;
8079 case IORING_UNREGISTER_PERSONALITY:
8080 ret = -EINVAL;
8081 if (arg)
8082 break;
8083 ret = io_unregister_personality(ctx, nr_args);
8084 break;
Jens Axboeedafcce2019-01-09 09:16:05 -07008085 default:
8086 ret = -EINVAL;
8087 break;
8088 }
8089
Jens Axboe071698e2020-01-28 10:04:42 -07008090 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07008091 /* bring the ctx back to life */
Jens Axboe05f3fb32019-12-09 11:22:50 -07008092 percpu_ref_reinit(&ctx->refs);
Jens Axboec1503682020-01-08 08:26:07 -07008093out:
8094 reinit_completion(&ctx->completions[0]);
Jens Axboe05f3fb32019-12-09 11:22:50 -07008095 }
Jens Axboeedafcce2019-01-09 09:16:05 -07008096 return ret;
8097}
8098
8099SYSCALL_DEFINE4(io_uring_register, unsigned int, fd, unsigned int, opcode,
8100 void __user *, arg, unsigned int, nr_args)
8101{
8102 struct io_ring_ctx *ctx;
8103 long ret = -EBADF;
8104 struct fd f;
8105
8106 f = fdget(fd);
8107 if (!f.file)
8108 return -EBADF;
8109
8110 ret = -EOPNOTSUPP;
8111 if (f.file->f_op != &io_uring_fops)
8112 goto out_fput;
8113
8114 ctx = f.file->private_data;
8115
8116 mutex_lock(&ctx->uring_lock);
8117 ret = __io_uring_register(ctx, opcode, arg, nr_args);
8118 mutex_unlock(&ctx->uring_lock);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02008119 trace_io_uring_register(ctx, opcode, ctx->nr_user_files, ctx->nr_user_bufs,
8120 ctx->cq_ev_fd != NULL, ret);
Jens Axboeedafcce2019-01-09 09:16:05 -07008121out_fput:
8122 fdput(f);
8123 return ret;
8124}
8125
Jens Axboe2b188cc2019-01-07 10:46:33 -07008126static int __init io_uring_init(void)
8127{
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008128#define __BUILD_BUG_VERIFY_ELEMENT(stype, eoffset, etype, ename) do { \
8129 BUILD_BUG_ON(offsetof(stype, ename) != eoffset); \
8130 BUILD_BUG_ON(sizeof(etype) != sizeof_field(stype, ename)); \
8131} while (0)
8132
8133#define BUILD_BUG_SQE_ELEM(eoffset, etype, ename) \
8134 __BUILD_BUG_VERIFY_ELEMENT(struct io_uring_sqe, eoffset, etype, ename)
8135 BUILD_BUG_ON(sizeof(struct io_uring_sqe) != 64);
8136 BUILD_BUG_SQE_ELEM(0, __u8, opcode);
8137 BUILD_BUG_SQE_ELEM(1, __u8, flags);
8138 BUILD_BUG_SQE_ELEM(2, __u16, ioprio);
8139 BUILD_BUG_SQE_ELEM(4, __s32, fd);
8140 BUILD_BUG_SQE_ELEM(8, __u64, off);
8141 BUILD_BUG_SQE_ELEM(8, __u64, addr2);
8142 BUILD_BUG_SQE_ELEM(16, __u64, addr);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03008143 BUILD_BUG_SQE_ELEM(16, __u64, splice_off_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008144 BUILD_BUG_SQE_ELEM(24, __u32, len);
8145 BUILD_BUG_SQE_ELEM(28, __kernel_rwf_t, rw_flags);
8146 BUILD_BUG_SQE_ELEM(28, /* compat */ int, rw_flags);
8147 BUILD_BUG_SQE_ELEM(28, /* compat */ __u32, rw_flags);
8148 BUILD_BUG_SQE_ELEM(28, __u32, fsync_flags);
8149 BUILD_BUG_SQE_ELEM(28, __u16, poll_events);
8150 BUILD_BUG_SQE_ELEM(28, __u32, sync_range_flags);
8151 BUILD_BUG_SQE_ELEM(28, __u32, msg_flags);
8152 BUILD_BUG_SQE_ELEM(28, __u32, timeout_flags);
8153 BUILD_BUG_SQE_ELEM(28, __u32, accept_flags);
8154 BUILD_BUG_SQE_ELEM(28, __u32, cancel_flags);
8155 BUILD_BUG_SQE_ELEM(28, __u32, open_flags);
8156 BUILD_BUG_SQE_ELEM(28, __u32, statx_flags);
8157 BUILD_BUG_SQE_ELEM(28, __u32, fadvise_advice);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03008158 BUILD_BUG_SQE_ELEM(28, __u32, splice_flags);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008159 BUILD_BUG_SQE_ELEM(32, __u64, user_data);
8160 BUILD_BUG_SQE_ELEM(40, __u16, buf_index);
8161 BUILD_BUG_SQE_ELEM(42, __u16, personality);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03008162 BUILD_BUG_SQE_ELEM(44, __s32, splice_fd_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008163
Jens Axboed3656342019-12-18 09:50:26 -07008164 BUILD_BUG_ON(ARRAY_SIZE(io_op_defs) != IORING_OP_LAST);
Jens Axboe84557872020-03-03 15:28:17 -07008165 BUILD_BUG_ON(__REQ_F_LAST_BIT >= 8 * sizeof(int));
Jens Axboe2b188cc2019-01-07 10:46:33 -07008166 req_cachep = KMEM_CACHE(io_kiocb, SLAB_HWCACHE_ALIGN | SLAB_PANIC);
8167 return 0;
8168};
8169__initcall(io_uring_init);