blob: 5190bfb6a6657e6ead1ab2c7da97ad1dbfcc1e0e [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
511 REQ_F_LINK_NEXT_BIT,
512 REQ_F_FAIL_LINK_BIT,
513 REQ_F_INFLIGHT_BIT,
514 REQ_F_CUR_POS_BIT,
515 REQ_F_NOWAIT_BIT,
516 REQ_F_IOPOLL_COMPLETED_BIT,
517 REQ_F_LINK_TIMEOUT_BIT,
518 REQ_F_TIMEOUT_BIT,
519 REQ_F_ISREG_BIT,
520 REQ_F_MUST_PUNT_BIT,
521 REQ_F_TIMEOUT_NOSEQ_BIT,
522 REQ_F_COMP_LOCKED_BIT,
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300523 REQ_F_NEED_CLEANUP_BIT,
Jens Axboe2ca10252020-02-13 17:17:35 -0700524 REQ_F_OVERFLOW_BIT,
Jens Axboed7718a92020-02-14 22:23:12 -0700525 REQ_F_POLLED_BIT,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700526 REQ_F_BUFFER_SELECTED_BIT,
Jens Axboe84557872020-03-03 15:28:17 -0700527
528 /* not a real bit, just to check we're not overflowing the space */
529 __REQ_F_LAST_BIT,
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300530};
531
532enum {
533 /* ctx owns file */
534 REQ_F_FIXED_FILE = BIT(REQ_F_FIXED_FILE_BIT),
535 /* drain existing IO first */
536 REQ_F_IO_DRAIN = BIT(REQ_F_IO_DRAIN_BIT),
537 /* linked sqes */
538 REQ_F_LINK = BIT(REQ_F_LINK_BIT),
539 /* doesn't sever on completion < 0 */
540 REQ_F_HARDLINK = BIT(REQ_F_HARDLINK_BIT),
541 /* IOSQE_ASYNC */
542 REQ_F_FORCE_ASYNC = BIT(REQ_F_FORCE_ASYNC_BIT),
Jens Axboebcda7ba2020-02-23 16:42:51 -0700543 /* IOSQE_BUFFER_SELECT */
544 REQ_F_BUFFER_SELECT = BIT(REQ_F_BUFFER_SELECT_BIT),
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300545
546 /* already grabbed next link */
547 REQ_F_LINK_NEXT = BIT(REQ_F_LINK_NEXT_BIT),
548 /* fail rest of links */
549 REQ_F_FAIL_LINK = BIT(REQ_F_FAIL_LINK_BIT),
550 /* on inflight list */
551 REQ_F_INFLIGHT = BIT(REQ_F_INFLIGHT_BIT),
552 /* read/write uses file position */
553 REQ_F_CUR_POS = BIT(REQ_F_CUR_POS_BIT),
554 /* must not punt to workers */
555 REQ_F_NOWAIT = BIT(REQ_F_NOWAIT_BIT),
556 /* polled IO has completed */
557 REQ_F_IOPOLL_COMPLETED = BIT(REQ_F_IOPOLL_COMPLETED_BIT),
558 /* has linked timeout */
559 REQ_F_LINK_TIMEOUT = BIT(REQ_F_LINK_TIMEOUT_BIT),
560 /* timeout request */
561 REQ_F_TIMEOUT = BIT(REQ_F_TIMEOUT_BIT),
562 /* regular file */
563 REQ_F_ISREG = BIT(REQ_F_ISREG_BIT),
564 /* must be punted even for NONBLOCK */
565 REQ_F_MUST_PUNT = BIT(REQ_F_MUST_PUNT_BIT),
566 /* no timeout sequence */
567 REQ_F_TIMEOUT_NOSEQ = BIT(REQ_F_TIMEOUT_NOSEQ_BIT),
568 /* completion under lock */
569 REQ_F_COMP_LOCKED = BIT(REQ_F_COMP_LOCKED_BIT),
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300570 /* needs cleanup */
571 REQ_F_NEED_CLEANUP = BIT(REQ_F_NEED_CLEANUP_BIT),
Jens Axboe2ca10252020-02-13 17:17:35 -0700572 /* in overflow list */
573 REQ_F_OVERFLOW = BIT(REQ_F_OVERFLOW_BIT),
Jens Axboed7718a92020-02-14 22:23:12 -0700574 /* already went through poll handler */
575 REQ_F_POLLED = BIT(REQ_F_POLLED_BIT),
Jens Axboebcda7ba2020-02-23 16:42:51 -0700576 /* buffer already selected */
577 REQ_F_BUFFER_SELECTED = BIT(REQ_F_BUFFER_SELECTED_BIT),
Jens Axboed7718a92020-02-14 22:23:12 -0700578};
579
580struct async_poll {
581 struct io_poll_iocb poll;
582 struct io_wq_work work;
Pavel Begunkov6b47ee62020-01-18 20:22:41 +0300583};
584
Jens Axboe09bb8392019-03-13 12:39:28 -0600585/*
586 * NOTE! Each of the iocb union members has the file pointer
587 * as the first entry in their struct definition. So you can
588 * access the file pointer through any of the sub-structs,
589 * or directly as just 'ki_filp' in this struct.
590 */
Jens Axboe2b188cc2019-01-07 10:46:33 -0700591struct io_kiocb {
Jens Axboe221c5eb2019-01-17 09:41:58 -0700592 union {
Jens Axboe09bb8392019-03-13 12:39:28 -0600593 struct file *file;
Jens Axboe9adbd452019-12-20 08:45:55 -0700594 struct io_rw rw;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700595 struct io_poll_iocb poll;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -0700596 struct io_accept accept;
597 struct io_sync sync;
Jens Axboefbf23842019-12-17 18:45:56 -0700598 struct io_cancel cancel;
Jens Axboeb29472e2019-12-17 18:50:29 -0700599 struct io_timeout timeout;
Jens Axboe3fbb51c2019-12-20 08:51:52 -0700600 struct io_connect connect;
Jens Axboee47293f2019-12-20 08:58:21 -0700601 struct io_sr_msg sr_msg;
Jens Axboe15b71ab2019-12-11 11:20:36 -0700602 struct io_open open;
Jens Axboeb5dba592019-12-11 14:02:38 -0700603 struct io_close close;
Jens Axboe05f3fb32019-12-09 11:22:50 -0700604 struct io_files_update files_update;
Jens Axboe4840e412019-12-25 22:03:45 -0700605 struct io_fadvise fadvise;
Jens Axboec1ca7572019-12-25 22:18:28 -0700606 struct io_madvise madvise;
Jens Axboe3e4827b2020-01-08 15:18:09 -0700607 struct io_epoll epoll;
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300608 struct io_splice splice;
Jens Axboeddf0322d2020-02-23 16:41:33 -0700609 struct io_provide_buf pbuf;
Jens Axboe221c5eb2019-01-17 09:41:58 -0700610 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700611
Jens Axboe1a6b74f2019-12-02 10:33:15 -0700612 struct io_async_ctx *io;
Pavel Begunkovc398ecb2020-04-09 08:17:59 +0300613 int cflags;
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +0300614 bool needs_fixed_file;
Jens Axboed625c6e2019-12-17 19:53:05 -0700615 u8 opcode;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700616
617 struct io_ring_ctx *ctx;
Jens Axboed7718a92020-02-14 22:23:12 -0700618 struct list_head list;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700619 unsigned int flags;
Jens Axboec16361c2019-01-17 08:39:48 -0700620 refcount_t refs;
Jens Axboe3537b6a2020-04-03 11:19:06 -0600621 struct task_struct *task;
622 unsigned long fsize;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700623 u64 user_data;
Jens Axboe9e645e112019-05-10 16:07:28 -0600624 u32 result;
Jens Axboede0617e2019-04-06 21:51:27 -0600625 u32 sequence;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700626
Jens Axboed7718a92020-02-14 22:23:12 -0700627 struct list_head link_list;
628
Jens Axboefcb323c2019-10-24 12:39:47 -0600629 struct list_head inflight_entry;
630
Xiaoguang Wang05589552020-03-31 14:05:18 +0800631 struct percpu_ref *fixed_file_refs;
632
Jens Axboeb41e9852020-02-17 09:52:41 -0700633 union {
634 /*
635 * Only commands that never go async can use the below fields,
Jens Axboed7718a92020-02-14 22:23:12 -0700636 * obviously. Right now only IORING_OP_POLL_ADD uses them, and
637 * async armed poll handlers for regular commands. The latter
638 * restore the work, if needed.
Jens Axboeb41e9852020-02-17 09:52:41 -0700639 */
640 struct {
Jens Axboeb41e9852020-02-17 09:52:41 -0700641 struct callback_head task_work;
Jens Axboed7718a92020-02-14 22:23:12 -0700642 struct hlist_node hash_node;
643 struct async_poll *apoll;
Jens Axboeb41e9852020-02-17 09:52:41 -0700644 };
645 struct io_wq_work work;
646 };
Jens Axboe2b188cc2019-01-07 10:46:33 -0700647};
648
649#define IO_PLUG_THRESHOLD 2
Jens Axboedef596e2019-01-09 08:59:42 -0700650#define IO_IOPOLL_BATCH 8
Jens Axboe2b188cc2019-01-07 10:46:33 -0700651
Jens Axboe9a56a232019-01-09 09:06:50 -0700652struct io_submit_state {
653 struct blk_plug plug;
654
655 /*
Jens Axboe2579f912019-01-09 09:10:43 -0700656 * io_kiocb alloc cache
657 */
658 void *reqs[IO_IOPOLL_BATCH];
Pavel Begunkov6c8a3132020-02-01 03:58:00 +0300659 unsigned int free_reqs;
Jens Axboe2579f912019-01-09 09:10:43 -0700660
661 /*
Jens Axboe9a56a232019-01-09 09:06:50 -0700662 * File reference cache
663 */
664 struct file *file;
665 unsigned int fd;
666 unsigned int has_refs;
667 unsigned int used_refs;
668 unsigned int ios_left;
669};
670
Jens Axboed3656342019-12-18 09:50:26 -0700671struct io_op_def {
672 /* needs req->io allocated for deferral/async */
673 unsigned async_ctx : 1;
674 /* needs current->mm setup, does mm access */
675 unsigned needs_mm : 1;
676 /* needs req->file assigned */
677 unsigned needs_file : 1;
678 /* needs req->file assigned IFF fd is >= 0 */
679 unsigned fd_non_neg : 1;
680 /* hash wq insertion if file is a regular file */
681 unsigned hash_reg_file : 1;
682 /* unbound wq insertion if file is a non-regular file */
683 unsigned unbound_nonreg_file : 1;
Jens Axboe66f4af92020-01-16 15:36:52 -0700684 /* opcode is not supported by this kernel */
685 unsigned not_supported : 1;
Jens Axboef86cd202020-01-29 13:46:44 -0700686 /* needs file table */
687 unsigned file_table : 1;
Jens Axboeff002b32020-02-07 16:05:21 -0700688 /* needs ->fs */
689 unsigned needs_fs : 1;
Jens Axboe8a727582020-02-20 09:59:44 -0700690 /* set if opcode supports polled "wait" */
691 unsigned pollin : 1;
692 unsigned pollout : 1;
Jens Axboebcda7ba2020-02-23 16:42:51 -0700693 /* op supports buffer selection */
694 unsigned buffer_select : 1;
Jens Axboed3656342019-12-18 09:50:26 -0700695};
696
697static const struct io_op_def io_op_defs[] = {
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300698 [IORING_OP_NOP] = {},
699 [IORING_OP_READV] = {
Jens Axboed3656342019-12-18 09:50:26 -0700700 .async_ctx = 1,
701 .needs_mm = 1,
702 .needs_file = 1,
703 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700704 .pollin = 1,
Jens Axboe4d954c22020-02-27 07:31:19 -0700705 .buffer_select = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700706 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300707 [IORING_OP_WRITEV] = {
Jens Axboed3656342019-12-18 09:50:26 -0700708 .async_ctx = 1,
709 .needs_mm = 1,
710 .needs_file = 1,
711 .hash_reg_file = 1,
712 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700713 .pollout = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700714 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300715 [IORING_OP_FSYNC] = {
Jens Axboed3656342019-12-18 09:50:26 -0700716 .needs_file = 1,
717 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300718 [IORING_OP_READ_FIXED] = {
Jens Axboed3656342019-12-18 09:50:26 -0700719 .needs_file = 1,
720 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700721 .pollin = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700722 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300723 [IORING_OP_WRITE_FIXED] = {
Jens Axboed3656342019-12-18 09:50:26 -0700724 .needs_file = 1,
725 .hash_reg_file = 1,
726 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700727 .pollout = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700728 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300729 [IORING_OP_POLL_ADD] = {
Jens Axboed3656342019-12-18 09:50:26 -0700730 .needs_file = 1,
731 .unbound_nonreg_file = 1,
732 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300733 [IORING_OP_POLL_REMOVE] = {},
734 [IORING_OP_SYNC_FILE_RANGE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700735 .needs_file = 1,
736 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300737 [IORING_OP_SENDMSG] = {
Jens Axboed3656342019-12-18 09:50:26 -0700738 .async_ctx = 1,
739 .needs_mm = 1,
740 .needs_file = 1,
741 .unbound_nonreg_file = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700742 .needs_fs = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700743 .pollout = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700744 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300745 [IORING_OP_RECVMSG] = {
Jens Axboed3656342019-12-18 09:50:26 -0700746 .async_ctx = 1,
747 .needs_mm = 1,
748 .needs_file = 1,
749 .unbound_nonreg_file = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700750 .needs_fs = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700751 .pollin = 1,
Jens Axboe52de1fe2020-02-27 10:15:42 -0700752 .buffer_select = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700753 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300754 [IORING_OP_TIMEOUT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700755 .async_ctx = 1,
756 .needs_mm = 1,
757 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300758 [IORING_OP_TIMEOUT_REMOVE] = {},
759 [IORING_OP_ACCEPT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700760 .needs_mm = 1,
761 .needs_file = 1,
762 .unbound_nonreg_file = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700763 .file_table = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700764 .pollin = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700765 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300766 [IORING_OP_ASYNC_CANCEL] = {},
767 [IORING_OP_LINK_TIMEOUT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700768 .async_ctx = 1,
769 .needs_mm = 1,
770 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300771 [IORING_OP_CONNECT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700772 .async_ctx = 1,
773 .needs_mm = 1,
774 .needs_file = 1,
775 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700776 .pollout = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700777 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300778 [IORING_OP_FALLOCATE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700779 .needs_file = 1,
780 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300781 [IORING_OP_OPENAT] = {
Jens Axboed3656342019-12-18 09:50:26 -0700782 .needs_file = 1,
783 .fd_non_neg = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700784 .file_table = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700785 .needs_fs = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700786 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300787 [IORING_OP_CLOSE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700788 .needs_file = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700789 .file_table = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700790 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300791 [IORING_OP_FILES_UPDATE] = {
Jens Axboed3656342019-12-18 09:50:26 -0700792 .needs_mm = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700793 .file_table = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700794 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300795 [IORING_OP_STATX] = {
Jens Axboed3656342019-12-18 09:50:26 -0700796 .needs_mm = 1,
797 .needs_file = 1,
798 .fd_non_neg = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700799 .needs_fs = 1,
Jens Axboed3656342019-12-18 09:50:26 -0700800 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300801 [IORING_OP_READ] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -0700802 .needs_mm = 1,
803 .needs_file = 1,
804 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700805 .pollin = 1,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700806 .buffer_select = 1,
Jens Axboe3a6820f2019-12-22 15:19:35 -0700807 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300808 [IORING_OP_WRITE] = {
Jens Axboe3a6820f2019-12-22 15:19:35 -0700809 .needs_mm = 1,
810 .needs_file = 1,
811 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700812 .pollout = 1,
Jens Axboe3a6820f2019-12-22 15:19:35 -0700813 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300814 [IORING_OP_FADVISE] = {
Jens Axboe4840e412019-12-25 22:03:45 -0700815 .needs_file = 1,
816 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300817 [IORING_OP_MADVISE] = {
Jens Axboec1ca7572019-12-25 22:18:28 -0700818 .needs_mm = 1,
819 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300820 [IORING_OP_SEND] = {
Jens Axboefddafac2020-01-04 20:19:44 -0700821 .needs_mm = 1,
822 .needs_file = 1,
823 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700824 .pollout = 1,
Jens Axboefddafac2020-01-04 20:19:44 -0700825 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300826 [IORING_OP_RECV] = {
Jens Axboefddafac2020-01-04 20:19:44 -0700827 .needs_mm = 1,
828 .needs_file = 1,
829 .unbound_nonreg_file = 1,
Jens Axboe8a727582020-02-20 09:59:44 -0700830 .pollin = 1,
Jens Axboebcda7ba2020-02-23 16:42:51 -0700831 .buffer_select = 1,
Jens Axboefddafac2020-01-04 20:19:44 -0700832 },
Pavel Begunkov0463b6c2020-01-18 21:35:38 +0300833 [IORING_OP_OPENAT2] = {
Jens Axboecebdb982020-01-08 17:59:24 -0700834 .needs_file = 1,
835 .fd_non_neg = 1,
Jens Axboef86cd202020-01-29 13:46:44 -0700836 .file_table = 1,
Jens Axboeff002b32020-02-07 16:05:21 -0700837 .needs_fs = 1,
Jens Axboecebdb982020-01-08 17:59:24 -0700838 },
Jens Axboe3e4827b2020-01-08 15:18:09 -0700839 [IORING_OP_EPOLL_CTL] = {
840 .unbound_nonreg_file = 1,
841 .file_table = 1,
842 },
Pavel Begunkov7d67af22020-02-24 11:32:45 +0300843 [IORING_OP_SPLICE] = {
844 .needs_file = 1,
845 .hash_reg_file = 1,
846 .unbound_nonreg_file = 1,
Jens Axboeddf0322d2020-02-23 16:41:33 -0700847 },
848 [IORING_OP_PROVIDE_BUFFERS] = {},
Jens Axboe067524e2020-03-02 16:32:28 -0700849 [IORING_OP_REMOVE_BUFFERS] = {},
Jens Axboed3656342019-12-18 09:50:26 -0700850};
851
Jens Axboe561fb042019-10-24 07:25:42 -0600852static void io_wq_submit_work(struct io_wq_work **workptr);
Jens Axboe78e19bb2019-11-06 15:21:34 -0700853static void io_cqring_fill_event(struct io_kiocb *req, long res);
Jackie Liuec9c02a2019-11-08 23:50:36 +0800854static void io_put_req(struct io_kiocb *req);
Jens Axboe978db572019-11-14 22:39:04 -0700855static void __io_double_put_req(struct io_kiocb *req);
Jens Axboe94ae5e72019-11-14 19:39:52 -0700856static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req);
857static void io_queue_linked_timeout(struct io_kiocb *req);
Jens Axboe05f3fb32019-12-09 11:22:50 -0700858static int __io_sqe_files_update(struct io_ring_ctx *ctx,
859 struct io_uring_files_update *ip,
860 unsigned nr_args);
Jens Axboef86cd202020-01-29 13:46:44 -0700861static int io_grab_files(struct io_kiocb *req);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +0300862static void io_cleanup_req(struct io_kiocb *req);
Jens Axboeb41e9852020-02-17 09:52:41 -0700863static int io_file_get(struct io_submit_state *state, struct io_kiocb *req,
864 int fd, struct file **out_file, bool fixed);
865static void __io_queue_sqe(struct io_kiocb *req,
866 const struct io_uring_sqe *sqe);
Jens Axboede0617e2019-04-06 21:51:27 -0600867
Jens Axboe2b188cc2019-01-07 10:46:33 -0700868static struct kmem_cache *req_cachep;
869
870static const struct file_operations io_uring_fops;
871
872struct sock *io_uring_get_socket(struct file *file)
873{
874#if defined(CONFIG_UNIX)
875 if (file->f_op == &io_uring_fops) {
876 struct io_ring_ctx *ctx = file->private_data;
877
878 return ctx->ring_sock->sk;
879 }
880#endif
881 return NULL;
882}
883EXPORT_SYMBOL(io_uring_get_socket);
884
885static void io_ring_ctx_ref_free(struct percpu_ref *ref)
886{
887 struct io_ring_ctx *ctx = container_of(ref, struct io_ring_ctx, refs);
888
Jens Axboe206aefd2019-11-07 18:27:42 -0700889 complete(&ctx->completions[0]);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700890}
891
892static struct io_ring_ctx *io_ring_ctx_alloc(struct io_uring_params *p)
893{
894 struct io_ring_ctx *ctx;
Jens Axboe78076bb2019-12-04 19:56:40 -0700895 int hash_bits;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700896
897 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
898 if (!ctx)
899 return NULL;
900
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700901 ctx->fallback_req = kmem_cache_alloc(req_cachep, GFP_KERNEL);
902 if (!ctx->fallback_req)
903 goto err;
904
Jens Axboe206aefd2019-11-07 18:27:42 -0700905 ctx->completions = kmalloc(2 * sizeof(struct completion), GFP_KERNEL);
906 if (!ctx->completions)
907 goto err;
908
Jens Axboe78076bb2019-12-04 19:56:40 -0700909 /*
910 * Use 5 bits less than the max cq entries, that should give us around
911 * 32 entries per hash list if totally full and uniformly spread.
912 */
913 hash_bits = ilog2(p->cq_entries);
914 hash_bits -= 5;
915 if (hash_bits <= 0)
916 hash_bits = 1;
917 ctx->cancel_hash_bits = hash_bits;
918 ctx->cancel_hash = kmalloc((1U << hash_bits) * sizeof(struct hlist_head),
919 GFP_KERNEL);
920 if (!ctx->cancel_hash)
921 goto err;
922 __hash_init(ctx->cancel_hash, 1U << hash_bits);
923
Roman Gushchin21482892019-05-07 10:01:48 -0700924 if (percpu_ref_init(&ctx->refs, io_ring_ctx_ref_free,
Jens Axboe206aefd2019-11-07 18:27:42 -0700925 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL))
926 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700927
928 ctx->flags = p->flags;
929 init_waitqueue_head(&ctx->cq_wait);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -0700930 INIT_LIST_HEAD(&ctx->cq_overflow_list);
Jens Axboe206aefd2019-11-07 18:27:42 -0700931 init_completion(&ctx->completions[0]);
932 init_completion(&ctx->completions[1]);
Jens Axboe5a2e7452020-02-23 16:23:11 -0700933 idr_init(&ctx->io_buffer_idr);
Jens Axboe071698e2020-01-28 10:04:42 -0700934 idr_init(&ctx->personality_idr);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700935 mutex_init(&ctx->uring_lock);
936 init_waitqueue_head(&ctx->wait);
937 spin_lock_init(&ctx->completion_lock);
Jens Axboedef596e2019-01-09 08:59:42 -0700938 INIT_LIST_HEAD(&ctx->poll_list);
Jens Axboede0617e2019-04-06 21:51:27 -0600939 INIT_LIST_HEAD(&ctx->defer_list);
Jens Axboe5262f562019-09-17 12:26:57 -0600940 INIT_LIST_HEAD(&ctx->timeout_list);
Jens Axboefcb323c2019-10-24 12:39:47 -0600941 init_waitqueue_head(&ctx->inflight_wait);
942 spin_lock_init(&ctx->inflight_lock);
943 INIT_LIST_HEAD(&ctx->inflight_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -0700944 return ctx;
Jens Axboe206aefd2019-11-07 18:27:42 -0700945err:
Jens Axboe0ddf92e2019-11-08 08:52:53 -0700946 if (ctx->fallback_req)
947 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe206aefd2019-11-07 18:27:42 -0700948 kfree(ctx->completions);
Jens Axboe78076bb2019-12-04 19:56:40 -0700949 kfree(ctx->cancel_hash);
Jens Axboe206aefd2019-11-07 18:27:42 -0700950 kfree(ctx);
951 return NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -0700952}
953
Bob Liu9d858b22019-11-13 18:06:25 +0800954static inline bool __req_need_defer(struct io_kiocb *req)
Jens Axboede0617e2019-04-06 21:51:27 -0600955{
Jackie Liua197f662019-11-08 08:09:12 -0700956 struct io_ring_ctx *ctx = req->ctx;
957
Jens Axboe498ccd92019-10-25 10:04:25 -0600958 return req->sequence != ctx->cached_cq_tail + ctx->cached_sq_dropped
959 + atomic_read(&ctx->cached_cq_overflow);
Jens Axboede0617e2019-04-06 21:51:27 -0600960}
961
Bob Liu9d858b22019-11-13 18:06:25 +0800962static inline bool req_need_defer(struct io_kiocb *req)
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600963{
Pavel Begunkov87987892020-01-18 01:22:30 +0300964 if (unlikely(req->flags & REQ_F_IO_DRAIN))
Bob Liu9d858b22019-11-13 18:06:25 +0800965 return __req_need_defer(req);
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600966
Bob Liu9d858b22019-11-13 18:06:25 +0800967 return false;
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600968}
969
970static struct io_kiocb *io_get_deferred_req(struct io_ring_ctx *ctx)
Jens Axboede0617e2019-04-06 21:51:27 -0600971{
972 struct io_kiocb *req;
973
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600974 req = list_first_entry_or_null(&ctx->defer_list, struct io_kiocb, list);
Bob Liu9d858b22019-11-13 18:06:25 +0800975 if (req && !req_need_defer(req)) {
Jens Axboede0617e2019-04-06 21:51:27 -0600976 list_del_init(&req->list);
977 return req;
978 }
979
980 return NULL;
981}
982
Jens Axboe5262f562019-09-17 12:26:57 -0600983static struct io_kiocb *io_get_timeout_req(struct io_ring_ctx *ctx)
984{
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600985 struct io_kiocb *req;
986
987 req = list_first_entry_or_null(&ctx->timeout_list, struct io_kiocb, list);
Jens Axboe93bd25b2019-11-11 23:34:31 -0700988 if (req) {
989 if (req->flags & REQ_F_TIMEOUT_NOSEQ)
990 return NULL;
Linus Torvaldsfb4b3d32019-11-25 10:40:27 -0800991 if (!__req_need_defer(req)) {
Jens Axboe93bd25b2019-11-11 23:34:31 -0700992 list_del_init(&req->list);
993 return req;
994 }
Jens Axboe7adf4ea2019-10-10 21:42:58 -0600995 }
996
997 return NULL;
Jens Axboe5262f562019-09-17 12:26:57 -0600998}
999
Jens Axboede0617e2019-04-06 21:51:27 -06001000static void __io_commit_cqring(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001001{
Hristo Venev75b28af2019-08-26 17:23:46 +00001002 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001003
Pavel Begunkov07910152020-01-17 03:52:46 +03001004 /* order cqe stores with ring update */
1005 smp_store_release(&rings->cq.tail, ctx->cached_cq_tail);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001006
Pavel Begunkov07910152020-01-17 03:52:46 +03001007 if (wq_has_sleeper(&ctx->cq_wait)) {
1008 wake_up_interruptible(&ctx->cq_wait);
1009 kill_fasync(&ctx->cq_fasync, SIGIO, POLL_IN);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001010 }
1011}
1012
Jens Axboecccf0ee2020-01-27 16:34:48 -07001013static inline void io_req_work_grab_env(struct io_kiocb *req,
1014 const struct io_op_def *def)
Jens Axboe18d9be12019-09-10 09:13:05 -06001015{
Jens Axboecccf0ee2020-01-27 16:34:48 -07001016 if (!req->work.mm && def->needs_mm) {
1017 mmgrab(current->mm);
1018 req->work.mm = current->mm;
1019 }
1020 if (!req->work.creds)
1021 req->work.creds = get_current_cred();
Jens Axboeff002b32020-02-07 16:05:21 -07001022 if (!req->work.fs && def->needs_fs) {
1023 spin_lock(&current->fs->lock);
1024 if (!current->fs->in_exec) {
1025 req->work.fs = current->fs;
1026 req->work.fs->users++;
1027 } else {
1028 req->work.flags |= IO_WQ_WORK_CANCEL;
1029 }
1030 spin_unlock(&current->fs->lock);
1031 }
Jens Axboe6ab23142020-02-08 20:23:59 -07001032 if (!req->work.task_pid)
1033 req->work.task_pid = task_pid_vnr(current);
Jens Axboecccf0ee2020-01-27 16:34:48 -07001034}
1035
1036static inline void io_req_work_drop_env(struct io_kiocb *req)
1037{
1038 if (req->work.mm) {
1039 mmdrop(req->work.mm);
1040 req->work.mm = NULL;
1041 }
1042 if (req->work.creds) {
1043 put_cred(req->work.creds);
1044 req->work.creds = NULL;
1045 }
Jens Axboeff002b32020-02-07 16:05:21 -07001046 if (req->work.fs) {
1047 struct fs_struct *fs = req->work.fs;
1048
1049 spin_lock(&req->work.fs->lock);
1050 if (--fs->users)
1051 fs = NULL;
1052 spin_unlock(&req->work.fs->lock);
1053 if (fs)
1054 free_fs_struct(fs);
1055 }
Jens Axboe561fb042019-10-24 07:25:42 -06001056}
1057
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001058static inline void io_prep_async_work(struct io_kiocb *req,
Jens Axboe94ae5e72019-11-14 19:39:52 -07001059 struct io_kiocb **link)
Jens Axboe561fb042019-10-24 07:25:42 -06001060{
Jens Axboed3656342019-12-18 09:50:26 -07001061 const struct io_op_def *def = &io_op_defs[req->opcode];
Jens Axboe54a91f32019-09-10 09:15:04 -06001062
Jens Axboed3656342019-12-18 09:50:26 -07001063 if (req->flags & REQ_F_ISREG) {
1064 if (def->hash_reg_file)
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001065 io_wq_hash_work(&req->work, file_inode(req->file));
Jens Axboed3656342019-12-18 09:50:26 -07001066 } else {
1067 if (def->unbound_nonreg_file)
Jens Axboe3529d8c2019-12-19 18:24:38 -07001068 req->work.flags |= IO_WQ_WORK_UNBOUND;
Jens Axboe54a91f32019-09-10 09:15:04 -06001069 }
Jens Axboecccf0ee2020-01-27 16:34:48 -07001070
1071 io_req_work_grab_env(req, def);
Jens Axboe54a91f32019-09-10 09:15:04 -06001072
Jens Axboe94ae5e72019-11-14 19:39:52 -07001073 *link = io_prep_linked_timeout(req);
Jens Axboe561fb042019-10-24 07:25:42 -06001074}
1075
Jackie Liua197f662019-11-08 08:09:12 -07001076static inline void io_queue_async_work(struct io_kiocb *req)
Jens Axboe561fb042019-10-24 07:25:42 -06001077{
Jackie Liua197f662019-11-08 08:09:12 -07001078 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001079 struct io_kiocb *link;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001080
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001081 io_prep_async_work(req, &link);
Jens Axboe561fb042019-10-24 07:25:42 -06001082
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001083 trace_io_uring_queue_async_work(ctx, io_wq_is_hashed(&req->work), req,
1084 &req->work, req->flags);
1085 io_wq_enqueue(ctx->io_wq, &req->work);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001086
1087 if (link)
1088 io_queue_linked_timeout(link);
Jens Axboe18d9be12019-09-10 09:13:05 -06001089}
1090
Jens Axboe5262f562019-09-17 12:26:57 -06001091static void io_kill_timeout(struct io_kiocb *req)
1092{
1093 int ret;
1094
Jens Axboe2d283902019-12-04 11:08:05 -07001095 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe5262f562019-09-17 12:26:57 -06001096 if (ret != -1) {
1097 atomic_inc(&req->ctx->cq_timeouts);
Jens Axboe842f9612019-10-29 12:34:10 -06001098 list_del_init(&req->list);
Pavel Begunkovf0e20b82020-03-07 01:15:22 +03001099 req->flags |= REQ_F_COMP_LOCKED;
Jens Axboe78e19bb2019-11-06 15:21:34 -07001100 io_cqring_fill_event(req, 0);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001101 io_put_req(req);
Jens Axboe5262f562019-09-17 12:26:57 -06001102 }
1103}
1104
1105static void io_kill_timeouts(struct io_ring_ctx *ctx)
1106{
1107 struct io_kiocb *req, *tmp;
1108
1109 spin_lock_irq(&ctx->completion_lock);
1110 list_for_each_entry_safe(req, tmp, &ctx->timeout_list, list)
1111 io_kill_timeout(req);
1112 spin_unlock_irq(&ctx->completion_lock);
1113}
1114
Jens Axboede0617e2019-04-06 21:51:27 -06001115static void io_commit_cqring(struct io_ring_ctx *ctx)
1116{
1117 struct io_kiocb *req;
1118
Jens Axboe5262f562019-09-17 12:26:57 -06001119 while ((req = io_get_timeout_req(ctx)) != NULL)
1120 io_kill_timeout(req);
1121
Jens Axboede0617e2019-04-06 21:51:27 -06001122 __io_commit_cqring(ctx);
1123
Pavel Begunkov87987892020-01-18 01:22:30 +03001124 while ((req = io_get_deferred_req(ctx)) != NULL)
Jackie Liua197f662019-11-08 08:09:12 -07001125 io_queue_async_work(req);
Jens Axboede0617e2019-04-06 21:51:27 -06001126}
1127
Jens Axboe2b188cc2019-01-07 10:46:33 -07001128static struct io_uring_cqe *io_get_cqring(struct io_ring_ctx *ctx)
1129{
Hristo Venev75b28af2019-08-26 17:23:46 +00001130 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001131 unsigned tail;
1132
1133 tail = ctx->cached_cq_tail;
Stefan Bühler115e12e2019-04-24 23:54:18 +02001134 /*
1135 * writes to the cq entry need to come after reading head; the
1136 * control dependency is enough as we're using WRITE_ONCE to
1137 * fill the cq entry
1138 */
Hristo Venev75b28af2019-08-26 17:23:46 +00001139 if (tail - READ_ONCE(rings->cq.head) == rings->cq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001140 return NULL;
1141
1142 ctx->cached_cq_tail++;
Hristo Venev75b28af2019-08-26 17:23:46 +00001143 return &rings->cqes[tail & ctx->cq_mask];
Jens Axboe2b188cc2019-01-07 10:46:33 -07001144}
1145
Jens Axboef2842ab2020-01-08 11:04:00 -07001146static inline bool io_should_trigger_evfd(struct io_ring_ctx *ctx)
1147{
Jens Axboef0b493e2020-02-01 21:30:11 -07001148 if (!ctx->cq_ev_fd)
1149 return false;
Jens Axboef2842ab2020-01-08 11:04:00 -07001150 if (!ctx->eventfd_async)
1151 return true;
Jens Axboeb41e9852020-02-17 09:52:41 -07001152 return io_wq_current_is_worker();
Jens Axboef2842ab2020-01-08 11:04:00 -07001153}
1154
Jens Axboeb41e9852020-02-17 09:52:41 -07001155static void io_cqring_ev_posted(struct io_ring_ctx *ctx)
Jens Axboe8c838782019-03-12 15:48:16 -06001156{
1157 if (waitqueue_active(&ctx->wait))
1158 wake_up(&ctx->wait);
1159 if (waitqueue_active(&ctx->sqo_wait))
1160 wake_up(&ctx->sqo_wait);
Jens Axboeb41e9852020-02-17 09:52:41 -07001161 if (io_should_trigger_evfd(ctx))
Jens Axboe9b402842019-04-11 11:45:41 -06001162 eventfd_signal(ctx->cq_ev_fd, 1);
Jens Axboe8c838782019-03-12 15:48:16 -06001163}
1164
Jens Axboec4a2ed72019-11-21 21:01:26 -07001165/* Returns true if there are no backlogged entries after the flush */
1166static bool io_cqring_overflow_flush(struct io_ring_ctx *ctx, bool force)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001167{
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001168 struct io_rings *rings = ctx->rings;
1169 struct io_uring_cqe *cqe;
1170 struct io_kiocb *req;
1171 unsigned long flags;
1172 LIST_HEAD(list);
1173
1174 if (!force) {
1175 if (list_empty_careful(&ctx->cq_overflow_list))
Jens Axboec4a2ed72019-11-21 21:01:26 -07001176 return true;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001177 if ((ctx->cached_cq_tail - READ_ONCE(rings->cq.head) ==
1178 rings->cq_ring_entries))
Jens Axboec4a2ed72019-11-21 21:01:26 -07001179 return false;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001180 }
1181
1182 spin_lock_irqsave(&ctx->completion_lock, flags);
1183
1184 /* if force is set, the ring is going away. always drop after that */
1185 if (force)
Jens Axboe69b3e542020-01-08 11:01:46 -07001186 ctx->cq_overflow_flushed = 1;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001187
Jens Axboec4a2ed72019-11-21 21:01:26 -07001188 cqe = NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001189 while (!list_empty(&ctx->cq_overflow_list)) {
1190 cqe = io_get_cqring(ctx);
1191 if (!cqe && !force)
1192 break;
1193
1194 req = list_first_entry(&ctx->cq_overflow_list, struct io_kiocb,
1195 list);
1196 list_move(&req->list, &list);
Jens Axboe2ca10252020-02-13 17:17:35 -07001197 req->flags &= ~REQ_F_OVERFLOW;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001198 if (cqe) {
1199 WRITE_ONCE(cqe->user_data, req->user_data);
1200 WRITE_ONCE(cqe->res, req->result);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001201 WRITE_ONCE(cqe->flags, req->cflags);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001202 } else {
1203 WRITE_ONCE(ctx->rings->cq_overflow,
1204 atomic_inc_return(&ctx->cached_cq_overflow));
1205 }
1206 }
1207
1208 io_commit_cqring(ctx);
Jens Axboead3eb2c2019-12-18 17:12:20 -07001209 if (cqe) {
1210 clear_bit(0, &ctx->sq_check_overflow);
1211 clear_bit(0, &ctx->cq_check_overflow);
1212 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001213 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1214 io_cqring_ev_posted(ctx);
1215
1216 while (!list_empty(&list)) {
1217 req = list_first_entry(&list, struct io_kiocb, list);
1218 list_del(&req->list);
Jackie Liuec9c02a2019-11-08 23:50:36 +08001219 io_put_req(req);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001220 }
Jens Axboec4a2ed72019-11-21 21:01:26 -07001221
1222 return cqe != NULL;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001223}
1224
Jens Axboebcda7ba2020-02-23 16:42:51 -07001225static void __io_cqring_fill_event(struct io_kiocb *req, long res, long cflags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001226{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001227 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001228 struct io_uring_cqe *cqe;
1229
Jens Axboe78e19bb2019-11-06 15:21:34 -07001230 trace_io_uring_complete(ctx, req->user_data, res);
Jens Axboe51c3ff62019-11-03 06:52:50 -07001231
Jens Axboe2b188cc2019-01-07 10:46:33 -07001232 /*
1233 * If we can't get a cq entry, userspace overflowed the
1234 * submission (by quite a lot). Increment the overflow count in
1235 * the ring.
1236 */
1237 cqe = io_get_cqring(ctx);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001238 if (likely(cqe)) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001239 WRITE_ONCE(cqe->user_data, req->user_data);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001240 WRITE_ONCE(cqe->res, res);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001241 WRITE_ONCE(cqe->flags, cflags);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001242 } else if (ctx->cq_overflow_flushed) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07001243 WRITE_ONCE(ctx->rings->cq_overflow,
1244 atomic_inc_return(&ctx->cached_cq_overflow));
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001245 } else {
Jens Axboead3eb2c2019-12-18 17:12:20 -07001246 if (list_empty(&ctx->cq_overflow_list)) {
1247 set_bit(0, &ctx->sq_check_overflow);
1248 set_bit(0, &ctx->cq_check_overflow);
1249 }
Jens Axboe2ca10252020-02-13 17:17:35 -07001250 req->flags |= REQ_F_OVERFLOW;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001251 refcount_inc(&req->refs);
1252 req->result = res;
Jens Axboebcda7ba2020-02-23 16:42:51 -07001253 req->cflags = cflags;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001254 list_add_tail(&req->list, &ctx->cq_overflow_list);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001255 }
1256}
1257
Jens Axboebcda7ba2020-02-23 16:42:51 -07001258static void io_cqring_fill_event(struct io_kiocb *req, long res)
1259{
1260 __io_cqring_fill_event(req, res, 0);
1261}
1262
1263static void __io_cqring_add_event(struct io_kiocb *req, long res, long cflags)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001264{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001265 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001266 unsigned long flags;
1267
1268 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001269 __io_cqring_fill_event(req, res, cflags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001270 io_commit_cqring(ctx);
1271 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1272
Jens Axboe8c838782019-03-12 15:48:16 -06001273 io_cqring_ev_posted(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001274}
1275
Jens Axboebcda7ba2020-02-23 16:42:51 -07001276static void io_cqring_add_event(struct io_kiocb *req, long res)
1277{
1278 __io_cqring_add_event(req, res, 0);
1279}
1280
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001281static inline bool io_is_fallback_req(struct io_kiocb *req)
1282{
1283 return req == (struct io_kiocb *)
1284 ((unsigned long) req->ctx->fallback_req & ~1UL);
1285}
1286
1287static struct io_kiocb *io_get_fallback_req(struct io_ring_ctx *ctx)
1288{
1289 struct io_kiocb *req;
1290
1291 req = ctx->fallback_req;
1292 if (!test_and_set_bit_lock(0, (unsigned long *) ctx->fallback_req))
1293 return req;
1294
1295 return NULL;
1296}
1297
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03001298static struct io_kiocb *io_alloc_req(struct io_ring_ctx *ctx,
1299 struct io_submit_state *state)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001300{
Jens Axboefd6fab22019-03-14 16:30:06 -06001301 gfp_t gfp = GFP_KERNEL | __GFP_NOWARN;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001302 struct io_kiocb *req;
1303
Jens Axboe2579f912019-01-09 09:10:43 -07001304 if (!state) {
Jens Axboefd6fab22019-03-14 16:30:06 -06001305 req = kmem_cache_alloc(req_cachep, gfp);
Jens Axboe2579f912019-01-09 09:10:43 -07001306 if (unlikely(!req))
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001307 goto fallback;
Jens Axboe2579f912019-01-09 09:10:43 -07001308 } else if (!state->free_reqs) {
1309 size_t sz;
1310 int ret;
1311
1312 sz = min_t(size_t, state->ios_left, ARRAY_SIZE(state->reqs));
Jens Axboefd6fab22019-03-14 16:30:06 -06001313 ret = kmem_cache_alloc_bulk(req_cachep, gfp, sz, state->reqs);
1314
1315 /*
1316 * Bulk alloc is all-or-nothing. If we fail to get a batch,
1317 * retry single alloc to be on the safe side.
1318 */
1319 if (unlikely(ret <= 0)) {
1320 state->reqs[0] = kmem_cache_alloc(req_cachep, gfp);
1321 if (!state->reqs[0])
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001322 goto fallback;
Jens Axboefd6fab22019-03-14 16:30:06 -06001323 ret = 1;
1324 }
Jens Axboe2579f912019-01-09 09:10:43 -07001325 state->free_reqs = ret - 1;
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03001326 req = state->reqs[ret - 1];
Jens Axboe2579f912019-01-09 09:10:43 -07001327 } else {
Jens Axboe2579f912019-01-09 09:10:43 -07001328 state->free_reqs--;
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03001329 req = state->reqs[state->free_reqs];
Jens Axboe2b188cc2019-01-07 10:46:33 -07001330 }
1331
Jens Axboe2579f912019-01-09 09:10:43 -07001332 return req;
Jens Axboe0ddf92e2019-11-08 08:52:53 -07001333fallback:
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03001334 return io_get_fallback_req(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001335}
1336
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001337static inline void io_put_file(struct io_kiocb *req, struct file *file,
1338 bool fixed)
1339{
1340 if (fixed)
Xiaoguang Wang05589552020-03-31 14:05:18 +08001341 percpu_ref_put(req->fixed_file_refs);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001342 else
1343 fput(file);
1344}
1345
Jens Axboec6ca97b302019-12-28 12:11:08 -07001346static void __io_req_aux_free(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001347{
Pavel Begunkov929a3af2020-02-19 00:19:09 +03001348 if (req->flags & REQ_F_NEED_CLEANUP)
1349 io_cleanup_req(req);
1350
YueHaibing96fd84d2020-01-07 22:22:44 +08001351 kfree(req->io);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03001352 if (req->file)
1353 io_put_file(req, req->file, (req->flags & REQ_F_FIXED_FILE));
Jens Axboe3537b6a2020-04-03 11:19:06 -06001354 if (req->task)
1355 put_task_struct(req->task);
Jens Axboecccf0ee2020-01-27 16:34:48 -07001356
1357 io_req_work_drop_env(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001358}
1359
1360static void __io_free_req(struct io_kiocb *req)
1361{
Jens Axboec6ca97b302019-12-28 12:11:08 -07001362 __io_req_aux_free(req);
Jens Axboefcb323c2019-10-24 12:39:47 -06001363
Jens Axboefcb323c2019-10-24 12:39:47 -06001364 if (req->flags & REQ_F_INFLIGHT) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001365 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06001366 unsigned long flags;
1367
1368 spin_lock_irqsave(&ctx->inflight_lock, flags);
1369 list_del(&req->inflight_entry);
1370 if (waitqueue_active(&ctx->inflight_wait))
1371 wake_up(&ctx->inflight_wait);
1372 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
1373 }
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03001374
1375 percpu_ref_put(&req->ctx->refs);
Pavel Begunkovb1e50e52020-04-08 08:58:44 +03001376 if (likely(!io_is_fallback_req(req)))
1377 kmem_cache_free(req_cachep, req);
1378 else
1379 clear_bit_unlock(0, (unsigned long *) req->ctx->fallback_req);
Jens Axboee65ef562019-03-12 10:16:44 -06001380}
1381
Jens Axboec6ca97b302019-12-28 12:11:08 -07001382struct req_batch {
1383 void *reqs[IO_IOPOLL_BATCH];
1384 int to_free;
1385 int need_iter;
1386};
1387
1388static void io_free_req_many(struct io_ring_ctx *ctx, struct req_batch *rb)
1389{
1390 if (!rb->to_free)
1391 return;
1392 if (rb->need_iter) {
1393 int i, inflight = 0;
1394 unsigned long flags;
1395
1396 for (i = 0; i < rb->to_free; i++) {
1397 struct io_kiocb *req = rb->reqs[i];
1398
Jens Axboe10fef4b2020-01-09 07:52:28 -07001399 if (req->flags & REQ_F_FIXED_FILE) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001400 req->file = NULL;
Xiaoguang Wang05589552020-03-31 14:05:18 +08001401 percpu_ref_put(req->fixed_file_refs);
Jens Axboe10fef4b2020-01-09 07:52:28 -07001402 }
Jens Axboec6ca97b302019-12-28 12:11:08 -07001403 if (req->flags & REQ_F_INFLIGHT)
1404 inflight++;
Jens Axboec6ca97b302019-12-28 12:11:08 -07001405 __io_req_aux_free(req);
1406 }
1407 if (!inflight)
1408 goto do_free;
1409
1410 spin_lock_irqsave(&ctx->inflight_lock, flags);
1411 for (i = 0; i < rb->to_free; i++) {
1412 struct io_kiocb *req = rb->reqs[i];
1413
Jens Axboe10fef4b2020-01-09 07:52:28 -07001414 if (req->flags & REQ_F_INFLIGHT) {
Jens Axboec6ca97b302019-12-28 12:11:08 -07001415 list_del(&req->inflight_entry);
1416 if (!--inflight)
1417 break;
1418 }
1419 }
1420 spin_unlock_irqrestore(&ctx->inflight_lock, flags);
1421
1422 if (waitqueue_active(&ctx->inflight_wait))
1423 wake_up(&ctx->inflight_wait);
1424 }
1425do_free:
1426 kmem_cache_free_bulk(req_cachep, rb->to_free, rb->reqs);
1427 percpu_ref_put_many(&ctx->refs, rb->to_free);
Jens Axboec6ca97b302019-12-28 12:11:08 -07001428 rb->to_free = rb->need_iter = 0;
Jens Axboee65ef562019-03-12 10:16:44 -06001429}
1430
Jackie Liua197f662019-11-08 08:09:12 -07001431static bool io_link_cancel_timeout(struct io_kiocb *req)
Jens Axboe9e645e112019-05-10 16:07:28 -06001432{
Jackie Liua197f662019-11-08 08:09:12 -07001433 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001434 int ret;
1435
Jens Axboe2d283902019-12-04 11:08:05 -07001436 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe2665abf2019-11-05 12:40:47 -07001437 if (ret != -1) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001438 io_cqring_fill_event(req, -ECANCELED);
Jens Axboe2665abf2019-11-05 12:40:47 -07001439 io_commit_cqring(ctx);
1440 req->flags &= ~REQ_F_LINK;
Jackie Liuec9c02a2019-11-08 23:50:36 +08001441 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07001442 return true;
1443 }
1444
1445 return false;
1446}
1447
Jens Axboeba816ad2019-09-28 11:36:45 -06001448static void io_req_link_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboe9e645e112019-05-10 16:07:28 -06001449{
Jens Axboe2665abf2019-11-05 12:40:47 -07001450 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001451 bool wake_ev = false;
Jens Axboe9e645e112019-05-10 16:07:28 -06001452
Jens Axboe4d7dd462019-11-20 13:03:52 -07001453 /* Already got next link */
1454 if (req->flags & REQ_F_LINK_NEXT)
1455 return;
1456
Jens Axboe9e645e112019-05-10 16:07:28 -06001457 /*
1458 * The list should never be empty when we are called here. But could
1459 * potentially happen if the chain is messed up, check to be on the
1460 * safe side.
1461 */
Pavel Begunkov44932332019-12-05 16:16:35 +03001462 while (!list_empty(&req->link_list)) {
1463 struct io_kiocb *nxt = list_first_entry(&req->link_list,
1464 struct io_kiocb, link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001465
Pavel Begunkov44932332019-12-05 16:16:35 +03001466 if (unlikely((req->flags & REQ_F_LINK_TIMEOUT) &&
1467 (nxt->flags & REQ_F_TIMEOUT))) {
1468 list_del_init(&nxt->link_list);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001469 wake_ev |= io_link_cancel_timeout(nxt);
Jens Axboe94ae5e72019-11-14 19:39:52 -07001470 req->flags &= ~REQ_F_LINK_TIMEOUT;
1471 continue;
1472 }
Jens Axboe9e645e112019-05-10 16:07:28 -06001473
Pavel Begunkov44932332019-12-05 16:16:35 +03001474 list_del_init(&req->link_list);
1475 if (!list_empty(&nxt->link_list))
1476 nxt->flags |= REQ_F_LINK;
Pavel Begunkovb18fdf72019-11-21 23:21:02 +03001477 *nxtptr = nxt;
Jens Axboe94ae5e72019-11-14 19:39:52 -07001478 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06001479 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001480
Jens Axboe4d7dd462019-11-20 13:03:52 -07001481 req->flags |= REQ_F_LINK_NEXT;
Jens Axboe2665abf2019-11-05 12:40:47 -07001482 if (wake_ev)
1483 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001484}
1485
1486/*
1487 * Called if REQ_F_LINK is set, and we fail the head request
1488 */
1489static void io_fail_links(struct io_kiocb *req)
1490{
Jens Axboe2665abf2019-11-05 12:40:47 -07001491 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07001492 unsigned long flags;
1493
1494 spin_lock_irqsave(&ctx->completion_lock, flags);
Jens Axboe9e645e112019-05-10 16:07:28 -06001495
1496 while (!list_empty(&req->link_list)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03001497 struct io_kiocb *link = list_first_entry(&req->link_list,
1498 struct io_kiocb, link_list);
Jens Axboe9e645e112019-05-10 16:07:28 -06001499
Pavel Begunkov44932332019-12-05 16:16:35 +03001500 list_del_init(&link->link_list);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02001501 trace_io_uring_fail_link(req, link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001502
1503 if ((req->flags & REQ_F_LINK_TIMEOUT) &&
Jens Axboed625c6e2019-12-17 19:53:05 -07001504 link->opcode == IORING_OP_LINK_TIMEOUT) {
Jackie Liua197f662019-11-08 08:09:12 -07001505 io_link_cancel_timeout(link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001506 } else {
Jens Axboe78e19bb2019-11-06 15:21:34 -07001507 io_cqring_fill_event(link, -ECANCELED);
Jens Axboe978db572019-11-14 22:39:04 -07001508 __io_double_put_req(link);
Jens Axboe2665abf2019-11-05 12:40:47 -07001509 }
Jens Axboe5d960722019-11-19 15:31:28 -07001510 req->flags &= ~REQ_F_LINK_TIMEOUT;
Jens Axboe9e645e112019-05-10 16:07:28 -06001511 }
Jens Axboe2665abf2019-11-05 12:40:47 -07001512
1513 io_commit_cqring(ctx);
1514 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1515 io_cqring_ev_posted(ctx);
Jens Axboe9e645e112019-05-10 16:07:28 -06001516}
1517
Jens Axboe4d7dd462019-11-20 13:03:52 -07001518static void io_req_find_next(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboe9e645e112019-05-10 16:07:28 -06001519{
Jens Axboe4d7dd462019-11-20 13:03:52 -07001520 if (likely(!(req->flags & REQ_F_LINK)))
Jens Axboe2665abf2019-11-05 12:40:47 -07001521 return;
Jens Axboe2665abf2019-11-05 12:40:47 -07001522
Jens Axboe9e645e112019-05-10 16:07:28 -06001523 /*
1524 * If LINK is set, we have dependent requests in this chain. If we
1525 * didn't fail this request, queue the first one up, moving any other
1526 * dependencies to the next request. In case of failure, fail the rest
1527 * of the chain.
1528 */
Jens Axboe2665abf2019-11-05 12:40:47 -07001529 if (req->flags & REQ_F_FAIL_LINK) {
1530 io_fail_links(req);
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001531 } else if ((req->flags & (REQ_F_LINK_TIMEOUT | REQ_F_COMP_LOCKED)) ==
1532 REQ_F_LINK_TIMEOUT) {
Jens Axboe2665abf2019-11-05 12:40:47 -07001533 struct io_ring_ctx *ctx = req->ctx;
1534 unsigned long flags;
1535
1536 /*
1537 * If this is a timeout link, we could be racing with the
1538 * timeout timer. Grab the completion lock for this case to
Jens Axboe7c9e7f02019-11-12 08:15:53 -07001539 * protect against that.
Jens Axboe2665abf2019-11-05 12:40:47 -07001540 */
1541 spin_lock_irqsave(&ctx->completion_lock, flags);
1542 io_req_link_next(req, nxt);
1543 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1544 } else {
1545 io_req_link_next(req, nxt);
Jens Axboe9e645e112019-05-10 16:07:28 -06001546 }
Jens Axboe4d7dd462019-11-20 13:03:52 -07001547}
Jens Axboe9e645e112019-05-10 16:07:28 -06001548
Jackie Liuc69f8db2019-11-09 11:00:08 +08001549static void io_free_req(struct io_kiocb *req)
1550{
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001551 struct io_kiocb *nxt = NULL;
1552
1553 io_req_find_next(req, &nxt);
Pavel Begunkov70cf9f32019-11-21 23:21:00 +03001554 __io_free_req(req);
Pavel Begunkov944e58b2019-11-21 23:21:01 +03001555
1556 if (nxt)
1557 io_queue_async_work(nxt);
Jackie Liuc69f8db2019-11-09 11:00:08 +08001558}
1559
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001560static void io_link_work_cb(struct io_wq_work **workptr)
1561{
Pavel Begunkov18a542f2020-03-23 00:23:29 +03001562 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
1563 struct io_kiocb *link;
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001564
Pavel Begunkov18a542f2020-03-23 00:23:29 +03001565 link = list_first_entry(&req->link_list, struct io_kiocb, link_list);
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001566 io_queue_linked_timeout(link);
1567 io_wq_submit_work(workptr);
1568}
1569
1570static void io_wq_assign_next(struct io_wq_work **workptr, struct io_kiocb *nxt)
1571{
1572 struct io_kiocb *link;
Pavel Begunkov8766dd52020-03-14 00:31:04 +03001573 const struct io_op_def *def = &io_op_defs[nxt->opcode];
1574
1575 if ((nxt->flags & REQ_F_ISREG) && def->hash_reg_file)
1576 io_wq_hash_work(&nxt->work, file_inode(nxt->file));
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001577
1578 *workptr = &nxt->work;
1579 link = io_prep_linked_timeout(nxt);
Pavel Begunkov18a542f2020-03-23 00:23:29 +03001580 if (link)
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001581 nxt->work.func = io_link_work_cb;
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001582}
1583
Jens Axboeba816ad2019-09-28 11:36:45 -06001584/*
1585 * Drop reference to request, return next in chain (if there is one) if this
1586 * was the last reference to this request.
1587 */
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03001588__attribute__((nonnull))
Jackie Liuec9c02a2019-11-08 23:50:36 +08001589static void io_put_req_find_next(struct io_kiocb *req, struct io_kiocb **nxtptr)
Jens Axboee65ef562019-03-12 10:16:44 -06001590{
Jens Axboe2a44f462020-02-25 13:25:41 -07001591 if (refcount_dec_and_test(&req->refs)) {
1592 io_req_find_next(req, nxtptr);
Jens Axboe4d7dd462019-11-20 13:03:52 -07001593 __io_free_req(req);
Jens Axboe2a44f462020-02-25 13:25:41 -07001594 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07001595}
1596
Jens Axboe2b188cc2019-01-07 10:46:33 -07001597static void io_put_req(struct io_kiocb *req)
1598{
Jens Axboedef596e2019-01-09 08:59:42 -07001599 if (refcount_dec_and_test(&req->refs))
1600 io_free_req(req);
1601}
1602
Pavel Begunkove9fd9392020-03-04 16:14:12 +03001603static void io_steal_work(struct io_kiocb *req,
1604 struct io_wq_work **workptr)
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001605{
1606 /*
1607 * It's in an io-wq worker, so there always should be at least
1608 * one reference, which will be dropped in io_put_work() just
1609 * after the current handler returns.
1610 *
1611 * It also means, that if the counter dropped to 1, then there is
1612 * no asynchronous users left, so it's safe to steal the next work.
1613 */
Pavel Begunkov7a743e22020-03-03 21:33:13 +03001614 if (refcount_read(&req->refs) == 1) {
1615 struct io_kiocb *nxt = NULL;
1616
1617 io_req_find_next(req, &nxt);
1618 if (nxt)
1619 io_wq_assign_next(workptr, nxt);
1620 }
1621}
1622
Jens Axboe978db572019-11-14 22:39:04 -07001623/*
1624 * Must only be used if we don't need to care about links, usually from
1625 * within the completion handling itself.
1626 */
1627static void __io_double_put_req(struct io_kiocb *req)
Jens Axboea3a0e432019-08-20 11:03:11 -06001628{
Jens Axboe78e19bb2019-11-06 15:21:34 -07001629 /* drop both submit and complete references */
1630 if (refcount_sub_and_test(2, &req->refs))
1631 __io_free_req(req);
1632}
1633
Jens Axboe978db572019-11-14 22:39:04 -07001634static void io_double_put_req(struct io_kiocb *req)
1635{
1636 /* drop both submit and complete references */
1637 if (refcount_sub_and_test(2, &req->refs))
1638 io_free_req(req);
1639}
1640
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001641static unsigned io_cqring_events(struct io_ring_ctx *ctx, bool noflush)
Jens Axboea3a0e432019-08-20 11:03:11 -06001642{
Jens Axboe84f97dc2019-11-06 11:27:53 -07001643 struct io_rings *rings = ctx->rings;
1644
Jens Axboead3eb2c2019-12-18 17:12:20 -07001645 if (test_bit(0, &ctx->cq_check_overflow)) {
1646 /*
1647 * noflush == true is from the waitqueue handler, just ensure
1648 * we wake up the task, and the next invocation will flush the
1649 * entries. We cannot safely to it from here.
1650 */
1651 if (noflush && !list_empty(&ctx->cq_overflow_list))
1652 return -1U;
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001653
Jens Axboead3eb2c2019-12-18 17:12:20 -07001654 io_cqring_overflow_flush(ctx, false);
1655 }
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001656
Jens Axboea3a0e432019-08-20 11:03:11 -06001657 /* See comment at the top of this file */
1658 smp_rmb();
Jens Axboead3eb2c2019-12-18 17:12:20 -07001659 return ctx->cached_cq_tail - READ_ONCE(rings->cq.head);
Jens Axboea3a0e432019-08-20 11:03:11 -06001660}
1661
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03001662static inline unsigned int io_sqring_entries(struct io_ring_ctx *ctx)
1663{
1664 struct io_rings *rings = ctx->rings;
1665
1666 /* make sure SQ entry isn't read before tail */
1667 return smp_load_acquire(&rings->sq.tail) - ctx->cached_sq_head;
1668}
1669
Jens Axboe8237e042019-12-28 10:48:22 -07001670static inline bool io_req_multi_free(struct req_batch *rb, struct io_kiocb *req)
Jens Axboee94f1412019-12-19 12:06:02 -07001671{
Jens Axboec6ca97b302019-12-28 12:11:08 -07001672 if ((req->flags & REQ_F_LINK) || io_is_fallback_req(req))
1673 return false;
Jens Axboee94f1412019-12-19 12:06:02 -07001674
Jens Axboec6ca97b302019-12-28 12:11:08 -07001675 if (!(req->flags & REQ_F_FIXED_FILE) || req->io)
1676 rb->need_iter++;
1677
1678 rb->reqs[rb->to_free++] = req;
1679 if (unlikely(rb->to_free == ARRAY_SIZE(rb->reqs)))
1680 io_free_req_many(req->ctx, rb);
1681 return true;
Jens Axboee94f1412019-12-19 12:06:02 -07001682}
1683
Jens Axboebcda7ba2020-02-23 16:42:51 -07001684static int io_put_kbuf(struct io_kiocb *req)
1685{
Jens Axboe4d954c22020-02-27 07:31:19 -07001686 struct io_buffer *kbuf;
Jens Axboebcda7ba2020-02-23 16:42:51 -07001687 int cflags;
1688
Jens Axboe4d954c22020-02-27 07:31:19 -07001689 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
Jens Axboebcda7ba2020-02-23 16:42:51 -07001690 cflags = kbuf->bid << IORING_CQE_BUFFER_SHIFT;
1691 cflags |= IORING_CQE_F_BUFFER;
1692 req->rw.addr = 0;
1693 kfree(kbuf);
1694 return cflags;
1695}
1696
Jens Axboedef596e2019-01-09 08:59:42 -07001697/*
1698 * Find and free completed poll iocbs
1699 */
1700static void io_iopoll_complete(struct io_ring_ctx *ctx, unsigned int *nr_events,
1701 struct list_head *done)
1702{
Jens Axboe8237e042019-12-28 10:48:22 -07001703 struct req_batch rb;
Jens Axboedef596e2019-01-09 08:59:42 -07001704 struct io_kiocb *req;
Jens Axboedef596e2019-01-09 08:59:42 -07001705
Jens Axboec6ca97b302019-12-28 12:11:08 -07001706 rb.to_free = rb.need_iter = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001707 while (!list_empty(done)) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07001708 int cflags = 0;
1709
Jens Axboedef596e2019-01-09 08:59:42 -07001710 req = list_first_entry(done, struct io_kiocb, list);
1711 list_del(&req->list);
1712
Jens Axboebcda7ba2020-02-23 16:42:51 -07001713 if (req->flags & REQ_F_BUFFER_SELECTED)
1714 cflags = io_put_kbuf(req);
1715
1716 __io_cqring_fill_event(req, req->result, cflags);
Jens Axboedef596e2019-01-09 08:59:42 -07001717 (*nr_events)++;
1718
Jens Axboe8237e042019-12-28 10:48:22 -07001719 if (refcount_dec_and_test(&req->refs) &&
1720 !io_req_multi_free(&rb, req))
1721 io_free_req(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001722 }
Jens Axboedef596e2019-01-09 08:59:42 -07001723
Jens Axboe09bb8392019-03-13 12:39:28 -06001724 io_commit_cqring(ctx);
Xiaoguang Wang32b22442020-03-11 09:26:09 +08001725 if (ctx->flags & IORING_SETUP_SQPOLL)
1726 io_cqring_ev_posted(ctx);
Jens Axboe8237e042019-12-28 10:48:22 -07001727 io_free_req_many(ctx, &rb);
Jens Axboedef596e2019-01-09 08:59:42 -07001728}
1729
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001730static void io_iopoll_queue(struct list_head *again)
1731{
1732 struct io_kiocb *req;
1733
1734 do {
1735 req = list_first_entry(again, struct io_kiocb, list);
1736 list_del(&req->list);
1737 refcount_inc(&req->refs);
1738 io_queue_async_work(req);
1739 } while (!list_empty(again));
1740}
1741
Jens Axboedef596e2019-01-09 08:59:42 -07001742static int io_do_iopoll(struct io_ring_ctx *ctx, unsigned int *nr_events,
1743 long min)
1744{
1745 struct io_kiocb *req, *tmp;
1746 LIST_HEAD(done);
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001747 LIST_HEAD(again);
Jens Axboedef596e2019-01-09 08:59:42 -07001748 bool spin;
1749 int ret;
1750
1751 /*
1752 * Only spin for completions if we don't have multiple devices hanging
1753 * off our complete list, and we're under the requested amount.
1754 */
1755 spin = !ctx->poll_multi_file && *nr_events < min;
1756
1757 ret = 0;
1758 list_for_each_entry_safe(req, tmp, &ctx->poll_list, list) {
Jens Axboe9adbd452019-12-20 08:45:55 -07001759 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboedef596e2019-01-09 08:59:42 -07001760
1761 /*
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001762 * Move completed and retryable entries to our local lists.
1763 * If we find a request that requires polling, break out
1764 * and complete those lists first, if we have entries there.
Jens Axboedef596e2019-01-09 08:59:42 -07001765 */
1766 if (req->flags & REQ_F_IOPOLL_COMPLETED) {
1767 list_move_tail(&req->list, &done);
1768 continue;
1769 }
1770 if (!list_empty(&done))
1771 break;
1772
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001773 if (req->result == -EAGAIN) {
1774 list_move_tail(&req->list, &again);
1775 continue;
1776 }
1777 if (!list_empty(&again))
1778 break;
1779
Jens Axboedef596e2019-01-09 08:59:42 -07001780 ret = kiocb->ki_filp->f_op->iopoll(kiocb, spin);
1781 if (ret < 0)
1782 break;
1783
1784 if (ret && spin)
1785 spin = false;
1786 ret = 0;
1787 }
1788
1789 if (!list_empty(&done))
1790 io_iopoll_complete(ctx, nr_events, &done);
1791
Bijan Mottahedeh581f9812020-04-03 13:51:33 -07001792 if (!list_empty(&again))
1793 io_iopoll_queue(&again);
1794
Jens Axboedef596e2019-01-09 08:59:42 -07001795 return ret;
1796}
1797
1798/*
Brian Gianforcarod195a662019-12-13 03:09:50 -08001799 * Poll for a minimum of 'min' events. Note that if min == 0 we consider that a
Jens Axboedef596e2019-01-09 08:59:42 -07001800 * non-spinning poll check - we'll still enter the driver poll loop, but only
1801 * as a non-spinning completion check.
1802 */
1803static int io_iopoll_getevents(struct io_ring_ctx *ctx, unsigned int *nr_events,
1804 long min)
1805{
Jens Axboe08f54392019-08-21 22:19:11 -06001806 while (!list_empty(&ctx->poll_list) && !need_resched()) {
Jens Axboedef596e2019-01-09 08:59:42 -07001807 int ret;
1808
1809 ret = io_do_iopoll(ctx, nr_events, min);
1810 if (ret < 0)
1811 return ret;
1812 if (!min || *nr_events >= min)
1813 return 0;
1814 }
1815
1816 return 1;
1817}
1818
1819/*
1820 * We can't just wait for polled events to come to us, we have to actively
1821 * find and complete them.
1822 */
1823static void io_iopoll_reap_events(struct io_ring_ctx *ctx)
1824{
1825 if (!(ctx->flags & IORING_SETUP_IOPOLL))
1826 return;
1827
1828 mutex_lock(&ctx->uring_lock);
1829 while (!list_empty(&ctx->poll_list)) {
1830 unsigned int nr_events = 0;
1831
1832 io_iopoll_getevents(ctx, &nr_events, 1);
Jens Axboe08f54392019-08-21 22:19:11 -06001833
1834 /*
1835 * Ensure we allow local-to-the-cpu processing to take place,
1836 * in this case we need to ensure that we reap all events.
1837 */
1838 cond_resched();
Jens Axboedef596e2019-01-09 08:59:42 -07001839 }
1840 mutex_unlock(&ctx->uring_lock);
1841}
1842
Xiaoguang Wangc7849be2020-02-22 14:46:05 +08001843static int io_iopoll_check(struct io_ring_ctx *ctx, unsigned *nr_events,
1844 long min)
Jens Axboedef596e2019-01-09 08:59:42 -07001845{
Jens Axboe2b2ed972019-10-25 10:06:15 -06001846 int iters = 0, ret = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07001847
Xiaoguang Wangc7849be2020-02-22 14:46:05 +08001848 /*
1849 * We disallow the app entering submit/complete with polling, but we
1850 * still need to lock the ring to prevent racing with polled issue
1851 * that got punted to a workqueue.
1852 */
1853 mutex_lock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07001854 do {
1855 int tmin = 0;
1856
Jens Axboe500f9fb2019-08-19 12:15:59 -06001857 /*
Jens Axboea3a0e432019-08-20 11:03:11 -06001858 * Don't enter poll loop if we already have events pending.
1859 * If we do, we can potentially be spinning for commands that
1860 * already triggered a CQE (eg in error).
1861 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07001862 if (io_cqring_events(ctx, false))
Jens Axboea3a0e432019-08-20 11:03:11 -06001863 break;
1864
1865 /*
Jens Axboe500f9fb2019-08-19 12:15:59 -06001866 * If a submit got punted to a workqueue, we can have the
1867 * application entering polling for a command before it gets
1868 * issued. That app will hold the uring_lock for the duration
1869 * of the poll right here, so we need to take a breather every
1870 * now and then to ensure that the issue has a chance to add
1871 * the poll to the issued list. Otherwise we can spin here
1872 * forever, while the workqueue is stuck trying to acquire the
1873 * very same mutex.
1874 */
1875 if (!(++iters & 7)) {
1876 mutex_unlock(&ctx->uring_lock);
1877 mutex_lock(&ctx->uring_lock);
1878 }
1879
Jens Axboedef596e2019-01-09 08:59:42 -07001880 if (*nr_events < min)
1881 tmin = min - *nr_events;
1882
1883 ret = io_iopoll_getevents(ctx, nr_events, tmin);
1884 if (ret <= 0)
1885 break;
1886 ret = 0;
1887 } while (min && !*nr_events && !need_resched());
1888
Jens Axboe500f9fb2019-08-19 12:15:59 -06001889 mutex_unlock(&ctx->uring_lock);
Jens Axboedef596e2019-01-09 08:59:42 -07001890 return ret;
1891}
1892
Jens Axboe491381ce2019-10-17 09:20:46 -06001893static void kiocb_end_write(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001894{
Jens Axboe491381ce2019-10-17 09:20:46 -06001895 /*
1896 * Tell lockdep we inherited freeze protection from submission
1897 * thread.
1898 */
1899 if (req->flags & REQ_F_ISREG) {
1900 struct inode *inode = file_inode(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001901
Jens Axboe491381ce2019-10-17 09:20:46 -06001902 __sb_writers_acquired(inode->i_sb, SB_FREEZE_WRITE);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001903 }
Jens Axboe491381ce2019-10-17 09:20:46 -06001904 file_end_write(req->file);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001905}
1906
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001907static inline void req_set_fail_links(struct io_kiocb *req)
1908{
1909 if ((req->flags & (REQ_F_LINK | REQ_F_HARDLINK)) == REQ_F_LINK)
1910 req->flags |= REQ_F_FAIL_LINK;
1911}
1912
Jens Axboeba816ad2019-09-28 11:36:45 -06001913static void io_complete_rw_common(struct kiocb *kiocb, long res)
Jens Axboe2b188cc2019-01-07 10:46:33 -07001914{
Jens Axboe9adbd452019-12-20 08:45:55 -07001915 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001916 int cflags = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07001917
Jens Axboe491381ce2019-10-17 09:20:46 -06001918 if (kiocb->ki_flags & IOCB_WRITE)
1919 kiocb_end_write(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001920
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001921 if (res != req->result)
1922 req_set_fail_links(req);
Jens Axboebcda7ba2020-02-23 16:42:51 -07001923 if (req->flags & REQ_F_BUFFER_SELECTED)
1924 cflags = io_put_kbuf(req);
1925 __io_cqring_add_event(req, res, cflags);
Jens Axboeba816ad2019-09-28 11:36:45 -06001926}
1927
1928static void io_complete_rw(struct kiocb *kiocb, long res, long res2)
1929{
Jens Axboe9adbd452019-12-20 08:45:55 -07001930 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboeba816ad2019-09-28 11:36:45 -06001931
1932 io_complete_rw_common(kiocb, res);
Jens Axboee65ef562019-03-12 10:16:44 -06001933 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07001934}
1935
Jens Axboedef596e2019-01-09 08:59:42 -07001936static void io_complete_rw_iopoll(struct kiocb *kiocb, long res, long res2)
1937{
Jens Axboe9adbd452019-12-20 08:45:55 -07001938 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
Jens Axboedef596e2019-01-09 08:59:42 -07001939
Jens Axboe491381ce2019-10-17 09:20:46 -06001940 if (kiocb->ki_flags & IOCB_WRITE)
1941 kiocb_end_write(req);
Jens Axboedef596e2019-01-09 08:59:42 -07001942
Jens Axboe4e88d6e2019-12-07 20:59:47 -07001943 if (res != req->result)
1944 req_set_fail_links(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06001945 req->result = res;
Jens Axboedef596e2019-01-09 08:59:42 -07001946 if (res != -EAGAIN)
1947 req->flags |= REQ_F_IOPOLL_COMPLETED;
1948}
1949
1950/*
1951 * After the iocb has been issued, it's safe to be found on the poll list.
1952 * Adding the kiocb to the list AFTER submission ensures that we don't
1953 * find it from a io_iopoll_getevents() thread before the issuer is done
1954 * accessing the kiocb cookie.
1955 */
1956static void io_iopoll_req_issued(struct io_kiocb *req)
1957{
1958 struct io_ring_ctx *ctx = req->ctx;
1959
1960 /*
1961 * Track whether we have multiple files in our lists. This will impact
1962 * how we do polling eventually, not spinning if we're on potentially
1963 * different devices.
1964 */
1965 if (list_empty(&ctx->poll_list)) {
1966 ctx->poll_multi_file = false;
1967 } else if (!ctx->poll_multi_file) {
1968 struct io_kiocb *list_req;
1969
1970 list_req = list_first_entry(&ctx->poll_list, struct io_kiocb,
1971 list);
Jens Axboe9adbd452019-12-20 08:45:55 -07001972 if (list_req->file != req->file)
Jens Axboedef596e2019-01-09 08:59:42 -07001973 ctx->poll_multi_file = true;
1974 }
1975
1976 /*
1977 * For fast devices, IO may have already completed. If it has, add
1978 * it to the front so we find it first.
1979 */
1980 if (req->flags & REQ_F_IOPOLL_COMPLETED)
1981 list_add(&req->list, &ctx->poll_list);
1982 else
1983 list_add_tail(&req->list, &ctx->poll_list);
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08001984
1985 if ((ctx->flags & IORING_SETUP_SQPOLL) &&
1986 wq_has_sleeper(&ctx->sqo_wait))
1987 wake_up(&ctx->sqo_wait);
Jens Axboedef596e2019-01-09 08:59:42 -07001988}
1989
Jens Axboe3d6770f2019-04-13 11:50:54 -06001990static void io_file_put(struct io_submit_state *state)
Jens Axboe9a56a232019-01-09 09:06:50 -07001991{
Jens Axboe3d6770f2019-04-13 11:50:54 -06001992 if (state->file) {
Jens Axboe9a56a232019-01-09 09:06:50 -07001993 int diff = state->has_refs - state->used_refs;
1994
1995 if (diff)
1996 fput_many(state->file, diff);
1997 state->file = NULL;
1998 }
1999}
2000
2001/*
2002 * Get as many references to a file as we have IOs left in this submission,
2003 * assuming most submissions are for one file, or at least that each file
2004 * has more than one submission.
2005 */
Pavel Begunkov8da11c12020-02-24 11:32:44 +03002006static struct file *__io_file_get(struct io_submit_state *state, int fd)
Jens Axboe9a56a232019-01-09 09:06:50 -07002007{
2008 if (!state)
2009 return fget(fd);
2010
2011 if (state->file) {
2012 if (state->fd == fd) {
2013 state->used_refs++;
2014 state->ios_left--;
2015 return state->file;
2016 }
Jens Axboe3d6770f2019-04-13 11:50:54 -06002017 io_file_put(state);
Jens Axboe9a56a232019-01-09 09:06:50 -07002018 }
2019 state->file = fget_many(fd, state->ios_left);
2020 if (!state->file)
2021 return NULL;
2022
2023 state->fd = fd;
2024 state->has_refs = state->ios_left;
2025 state->used_refs = 1;
2026 state->ios_left--;
2027 return state->file;
2028}
2029
Jens Axboe2b188cc2019-01-07 10:46:33 -07002030/*
2031 * If we tracked the file through the SCM inflight mechanism, we could support
2032 * any file. For now, just ensure that anything potentially problematic is done
2033 * inline.
2034 */
2035static bool io_file_supports_async(struct file *file)
2036{
2037 umode_t mode = file_inode(file)->i_mode;
2038
Jens Axboe10d59342019-12-09 20:16:22 -07002039 if (S_ISBLK(mode) || S_ISCHR(mode) || S_ISSOCK(mode))
Jens Axboe2b188cc2019-01-07 10:46:33 -07002040 return true;
2041 if (S_ISREG(mode) && file->f_op != &io_uring_fops)
2042 return true;
2043
2044 return false;
2045}
2046
Jens Axboe3529d8c2019-12-19 18:24:38 -07002047static int io_prep_rw(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2048 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002049{
Jens Axboedef596e2019-01-09 08:59:42 -07002050 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe9adbd452019-12-20 08:45:55 -07002051 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe09bb8392019-03-13 12:39:28 -06002052 unsigned ioprio;
2053 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002054
Jens Axboe491381ce2019-10-17 09:20:46 -06002055 if (S_ISREG(file_inode(req->file)->i_mode))
2056 req->flags |= REQ_F_ISREG;
2057
Jens Axboe2b188cc2019-01-07 10:46:33 -07002058 kiocb->ki_pos = READ_ONCE(sqe->off);
Jens Axboeba042912019-12-25 16:33:42 -07002059 if (kiocb->ki_pos == -1 && !(req->file->f_mode & FMODE_STREAM)) {
2060 req->flags |= REQ_F_CUR_POS;
2061 kiocb->ki_pos = req->file->f_pos;
2062 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002063 kiocb->ki_hint = ki_hint_validate(file_write_hint(kiocb->ki_filp));
Pavel Begunkov3e577dc2020-02-01 03:58:42 +03002064 kiocb->ki_flags = iocb_flags(kiocb->ki_filp);
2065 ret = kiocb_set_rw_flags(kiocb, READ_ONCE(sqe->rw_flags));
2066 if (unlikely(ret))
2067 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002068
2069 ioprio = READ_ONCE(sqe->ioprio);
2070 if (ioprio) {
2071 ret = ioprio_check_cap(ioprio);
2072 if (ret)
Jens Axboe09bb8392019-03-13 12:39:28 -06002073 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002074
2075 kiocb->ki_ioprio = ioprio;
2076 } else
2077 kiocb->ki_ioprio = get_current_ioprio();
2078
Stefan Bühler8449eed2019-04-27 20:34:19 +02002079 /* don't allow async punt if RWF_NOWAIT was requested */
Jens Axboe491381ce2019-10-17 09:20:46 -06002080 if ((kiocb->ki_flags & IOCB_NOWAIT) ||
2081 (req->file->f_flags & O_NONBLOCK))
Stefan Bühler8449eed2019-04-27 20:34:19 +02002082 req->flags |= REQ_F_NOWAIT;
2083
2084 if (force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002085 kiocb->ki_flags |= IOCB_NOWAIT;
Stefan Bühler8449eed2019-04-27 20:34:19 +02002086
Jens Axboedef596e2019-01-09 08:59:42 -07002087 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboedef596e2019-01-09 08:59:42 -07002088 if (!(kiocb->ki_flags & IOCB_DIRECT) ||
2089 !kiocb->ki_filp->f_op->iopoll)
Jens Axboe09bb8392019-03-13 12:39:28 -06002090 return -EOPNOTSUPP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002091
Jens Axboedef596e2019-01-09 08:59:42 -07002092 kiocb->ki_flags |= IOCB_HIPRI;
2093 kiocb->ki_complete = io_complete_rw_iopoll;
Jens Axboe6873e0b2019-10-30 13:53:09 -06002094 req->result = 0;
Jens Axboedef596e2019-01-09 08:59:42 -07002095 } else {
Jens Axboe09bb8392019-03-13 12:39:28 -06002096 if (kiocb->ki_flags & IOCB_HIPRI)
2097 return -EINVAL;
Jens Axboedef596e2019-01-09 08:59:42 -07002098 kiocb->ki_complete = io_complete_rw;
2099 }
Jens Axboe9adbd452019-12-20 08:45:55 -07002100
Jens Axboe3529d8c2019-12-19 18:24:38 -07002101 req->rw.addr = READ_ONCE(sqe->addr);
2102 req->rw.len = READ_ONCE(sqe->len);
Jens Axboebcda7ba2020-02-23 16:42:51 -07002103 /* we own ->private, reuse it for the buffer index / buffer ID */
Jens Axboe9adbd452019-12-20 08:45:55 -07002104 req->rw.kiocb.private = (void *) (unsigned long)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002105 READ_ONCE(sqe->buf_index);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002106 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002107}
2108
2109static inline void io_rw_done(struct kiocb *kiocb, ssize_t ret)
2110{
2111 switch (ret) {
2112 case -EIOCBQUEUED:
2113 break;
2114 case -ERESTARTSYS:
2115 case -ERESTARTNOINTR:
2116 case -ERESTARTNOHAND:
2117 case -ERESTART_RESTARTBLOCK:
2118 /*
2119 * We can't just restart the syscall, since previously
2120 * submitted sqes may already be in progress. Just fail this
2121 * IO with EINTR.
2122 */
2123 ret = -EINTR;
2124 /* fall through */
2125 default:
2126 kiocb->ki_complete(kiocb, ret, 0);
2127 }
2128}
2129
Pavel Begunkov014db002020-03-03 21:33:12 +03002130static void kiocb_done(struct kiocb *kiocb, ssize_t ret)
Jens Axboeba816ad2019-09-28 11:36:45 -06002131{
Jens Axboeba042912019-12-25 16:33:42 -07002132 struct io_kiocb *req = container_of(kiocb, struct io_kiocb, rw.kiocb);
2133
2134 if (req->flags & REQ_F_CUR_POS)
2135 req->file->f_pos = kiocb->ki_pos;
Pavel Begunkovbcaec082020-02-24 11:30:18 +03002136 if (ret >= 0 && kiocb->ki_complete == io_complete_rw)
Pavel Begunkov014db002020-03-03 21:33:12 +03002137 io_complete_rw(kiocb, ret, 0);
Jens Axboeba816ad2019-09-28 11:36:45 -06002138 else
2139 io_rw_done(kiocb, ret);
2140}
2141
Jens Axboe9adbd452019-12-20 08:45:55 -07002142static ssize_t io_import_fixed(struct io_kiocb *req, int rw,
Pavel Begunkov7d009162019-11-25 23:14:40 +03002143 struct iov_iter *iter)
Jens Axboeedafcce2019-01-09 09:16:05 -07002144{
Jens Axboe9adbd452019-12-20 08:45:55 -07002145 struct io_ring_ctx *ctx = req->ctx;
2146 size_t len = req->rw.len;
Jens Axboeedafcce2019-01-09 09:16:05 -07002147 struct io_mapped_ubuf *imu;
2148 unsigned index, buf_index;
2149 size_t offset;
2150 u64 buf_addr;
2151
2152 /* attempt to use fixed buffers without having provided iovecs */
2153 if (unlikely(!ctx->user_bufs))
2154 return -EFAULT;
2155
Jens Axboe9adbd452019-12-20 08:45:55 -07002156 buf_index = (unsigned long) req->rw.kiocb.private;
Jens Axboeedafcce2019-01-09 09:16:05 -07002157 if (unlikely(buf_index >= ctx->nr_user_bufs))
2158 return -EFAULT;
2159
2160 index = array_index_nospec(buf_index, ctx->nr_user_bufs);
2161 imu = &ctx->user_bufs[index];
Jens Axboe9adbd452019-12-20 08:45:55 -07002162 buf_addr = req->rw.addr;
Jens Axboeedafcce2019-01-09 09:16:05 -07002163
2164 /* overflow */
2165 if (buf_addr + len < buf_addr)
2166 return -EFAULT;
2167 /* not inside the mapped region */
2168 if (buf_addr < imu->ubuf || buf_addr + len > imu->ubuf + imu->len)
2169 return -EFAULT;
2170
2171 /*
2172 * May not be a start of buffer, set size appropriately
2173 * and advance us to the beginning.
2174 */
2175 offset = buf_addr - imu->ubuf;
2176 iov_iter_bvec(iter, rw, imu->bvec, imu->nr_bvecs, offset + len);
Jens Axboebd11b3a2019-07-20 08:37:31 -06002177
2178 if (offset) {
2179 /*
2180 * Don't use iov_iter_advance() here, as it's really slow for
2181 * using the latter parts of a big fixed buffer - it iterates
2182 * over each segment manually. We can cheat a bit here, because
2183 * we know that:
2184 *
2185 * 1) it's a BVEC iter, we set it up
2186 * 2) all bvecs are PAGE_SIZE in size, except potentially the
2187 * first and last bvec
2188 *
2189 * So just find our index, and adjust the iterator afterwards.
2190 * If the offset is within the first bvec (or the whole first
2191 * bvec, just use iov_iter_advance(). This makes it easier
2192 * since we can just skip the first segment, which may not
2193 * be PAGE_SIZE aligned.
2194 */
2195 const struct bio_vec *bvec = imu->bvec;
2196
2197 if (offset <= bvec->bv_len) {
2198 iov_iter_advance(iter, offset);
2199 } else {
2200 unsigned long seg_skip;
2201
2202 /* skip first vec */
2203 offset -= bvec->bv_len;
2204 seg_skip = 1 + (offset >> PAGE_SHIFT);
2205
2206 iter->bvec = bvec + seg_skip;
2207 iter->nr_segs -= seg_skip;
Aleix Roca Nonell99c79f62019-08-15 14:03:22 +02002208 iter->count -= bvec->bv_len + offset;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002209 iter->iov_offset = offset & ~PAGE_MASK;
Jens Axboebd11b3a2019-07-20 08:37:31 -06002210 }
2211 }
2212
Jens Axboe5e559562019-11-13 16:12:46 -07002213 return len;
Jens Axboeedafcce2019-01-09 09:16:05 -07002214}
2215
Jens Axboebcda7ba2020-02-23 16:42:51 -07002216static void io_ring_submit_unlock(struct io_ring_ctx *ctx, bool needs_lock)
2217{
2218 if (needs_lock)
2219 mutex_unlock(&ctx->uring_lock);
2220}
2221
2222static void io_ring_submit_lock(struct io_ring_ctx *ctx, bool needs_lock)
2223{
2224 /*
2225 * "Normal" inline submissions always hold the uring_lock, since we
2226 * grab it from the system call. Same is true for the SQPOLL offload.
2227 * The only exception is when we've detached the request and issue it
2228 * from an async worker thread, grab the lock for that case.
2229 */
2230 if (needs_lock)
2231 mutex_lock(&ctx->uring_lock);
2232}
2233
2234static struct io_buffer *io_buffer_select(struct io_kiocb *req, size_t *len,
2235 int bgid, struct io_buffer *kbuf,
2236 bool needs_lock)
2237{
2238 struct io_buffer *head;
2239
2240 if (req->flags & REQ_F_BUFFER_SELECTED)
2241 return kbuf;
2242
2243 io_ring_submit_lock(req->ctx, needs_lock);
2244
2245 lockdep_assert_held(&req->ctx->uring_lock);
2246
2247 head = idr_find(&req->ctx->io_buffer_idr, bgid);
2248 if (head) {
2249 if (!list_empty(&head->list)) {
2250 kbuf = list_last_entry(&head->list, struct io_buffer,
2251 list);
2252 list_del(&kbuf->list);
2253 } else {
2254 kbuf = head;
2255 idr_remove(&req->ctx->io_buffer_idr, bgid);
2256 }
2257 if (*len > kbuf->len)
2258 *len = kbuf->len;
2259 } else {
2260 kbuf = ERR_PTR(-ENOBUFS);
2261 }
2262
2263 io_ring_submit_unlock(req->ctx, needs_lock);
2264
2265 return kbuf;
2266}
2267
Jens Axboe4d954c22020-02-27 07:31:19 -07002268static void __user *io_rw_buffer_select(struct io_kiocb *req, size_t *len,
2269 bool needs_lock)
2270{
2271 struct io_buffer *kbuf;
2272 int bgid;
2273
2274 kbuf = (struct io_buffer *) (unsigned long) req->rw.addr;
2275 bgid = (int) (unsigned long) req->rw.kiocb.private;
2276 kbuf = io_buffer_select(req, len, bgid, kbuf, needs_lock);
2277 if (IS_ERR(kbuf))
2278 return kbuf;
2279 req->rw.addr = (u64) (unsigned long) kbuf;
2280 req->flags |= REQ_F_BUFFER_SELECTED;
2281 return u64_to_user_ptr(kbuf->addr);
2282}
2283
2284#ifdef CONFIG_COMPAT
2285static ssize_t io_compat_import(struct io_kiocb *req, struct iovec *iov,
2286 bool needs_lock)
2287{
2288 struct compat_iovec __user *uiov;
2289 compat_ssize_t clen;
2290 void __user *buf;
2291 ssize_t len;
2292
2293 uiov = u64_to_user_ptr(req->rw.addr);
2294 if (!access_ok(uiov, sizeof(*uiov)))
2295 return -EFAULT;
2296 if (__get_user(clen, &uiov->iov_len))
2297 return -EFAULT;
2298 if (clen < 0)
2299 return -EINVAL;
2300
2301 len = clen;
2302 buf = io_rw_buffer_select(req, &len, needs_lock);
2303 if (IS_ERR(buf))
2304 return PTR_ERR(buf);
2305 iov[0].iov_base = buf;
2306 iov[0].iov_len = (compat_size_t) len;
2307 return 0;
2308}
2309#endif
2310
2311static ssize_t __io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
2312 bool needs_lock)
2313{
2314 struct iovec __user *uiov = u64_to_user_ptr(req->rw.addr);
2315 void __user *buf;
2316 ssize_t len;
2317
2318 if (copy_from_user(iov, uiov, sizeof(*uiov)))
2319 return -EFAULT;
2320
2321 len = iov[0].iov_len;
2322 if (len < 0)
2323 return -EINVAL;
2324 buf = io_rw_buffer_select(req, &len, needs_lock);
2325 if (IS_ERR(buf))
2326 return PTR_ERR(buf);
2327 iov[0].iov_base = buf;
2328 iov[0].iov_len = len;
2329 return 0;
2330}
2331
2332static ssize_t io_iov_buffer_select(struct io_kiocb *req, struct iovec *iov,
2333 bool needs_lock)
2334{
2335 if (req->flags & REQ_F_BUFFER_SELECTED)
2336 return 0;
2337 if (!req->rw.len)
2338 return 0;
2339 else if (req->rw.len > 1)
2340 return -EINVAL;
2341
2342#ifdef CONFIG_COMPAT
2343 if (req->ctx->compat)
2344 return io_compat_import(req, iov, needs_lock);
2345#endif
2346
2347 return __io_iov_buffer_select(req, iov, needs_lock);
2348}
2349
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002350static ssize_t io_import_iovec(int rw, struct io_kiocb *req,
Jens Axboebcda7ba2020-02-23 16:42:51 -07002351 struct iovec **iovec, struct iov_iter *iter,
2352 bool needs_lock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002353{
Jens Axboe9adbd452019-12-20 08:45:55 -07002354 void __user *buf = u64_to_user_ptr(req->rw.addr);
2355 size_t sqe_len = req->rw.len;
Jens Axboe4d954c22020-02-27 07:31:19 -07002356 ssize_t ret;
Jens Axboeedafcce2019-01-09 09:16:05 -07002357 u8 opcode;
2358
Jens Axboed625c6e2019-12-17 19:53:05 -07002359 opcode = req->opcode;
Pavel Begunkov7d009162019-11-25 23:14:40 +03002360 if (opcode == IORING_OP_READ_FIXED || opcode == IORING_OP_WRITE_FIXED) {
Jens Axboeedafcce2019-01-09 09:16:05 -07002361 *iovec = NULL;
Jens Axboe9adbd452019-12-20 08:45:55 -07002362 return io_import_fixed(req, rw, iter);
Jens Axboeedafcce2019-01-09 09:16:05 -07002363 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002364
Jens Axboebcda7ba2020-02-23 16:42:51 -07002365 /* buffer index only valid with fixed read/write, or buffer select */
2366 if (req->rw.kiocb.private && !(req->flags & REQ_F_BUFFER_SELECT))
Jens Axboe9adbd452019-12-20 08:45:55 -07002367 return -EINVAL;
2368
Jens Axboe3a6820f2019-12-22 15:19:35 -07002369 if (opcode == IORING_OP_READ || opcode == IORING_OP_WRITE) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07002370 if (req->flags & REQ_F_BUFFER_SELECT) {
Jens Axboe4d954c22020-02-27 07:31:19 -07002371 buf = io_rw_buffer_select(req, &sqe_len, needs_lock);
2372 if (IS_ERR(buf)) {
Jens Axboebcda7ba2020-02-23 16:42:51 -07002373 *iovec = NULL;
Jens Axboe4d954c22020-02-27 07:31:19 -07002374 return PTR_ERR(buf);
Jens Axboebcda7ba2020-02-23 16:42:51 -07002375 }
Jens Axboe3f9d6442020-03-11 12:27:04 -06002376 req->rw.len = sqe_len;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002377 }
2378
Jens Axboe3a6820f2019-12-22 15:19:35 -07002379 ret = import_single_range(rw, buf, sqe_len, *iovec, iter);
2380 *iovec = NULL;
Jens Axboe3a901592020-02-25 17:48:55 -07002381 return ret < 0 ? ret : sqe_len;
Jens Axboe3a6820f2019-12-22 15:19:35 -07002382 }
2383
Jens Axboef67676d2019-12-02 11:03:47 -07002384 if (req->io) {
2385 struct io_async_rw *iorw = &req->io->rw;
2386
2387 *iovec = iorw->iov;
2388 iov_iter_init(iter, rw, *iovec, iorw->nr_segs, iorw->size);
2389 if (iorw->iov == iorw->fast_iov)
2390 *iovec = NULL;
2391 return iorw->size;
2392 }
2393
Jens Axboe4d954c22020-02-27 07:31:19 -07002394 if (req->flags & REQ_F_BUFFER_SELECT) {
2395 ret = io_iov_buffer_select(req, *iovec, needs_lock);
Jens Axboe3f9d6442020-03-11 12:27:04 -06002396 if (!ret) {
2397 ret = (*iovec)->iov_len;
2398 iov_iter_init(iter, rw, *iovec, 1, ret);
2399 }
Jens Axboe4d954c22020-02-27 07:31:19 -07002400 *iovec = NULL;
2401 return ret;
2402 }
2403
Jens Axboe2b188cc2019-01-07 10:46:33 -07002404#ifdef CONFIG_COMPAT
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03002405 if (req->ctx->compat)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002406 return compat_import_iovec(rw, buf, sqe_len, UIO_FASTIOV,
2407 iovec, iter);
2408#endif
2409
2410 return import_iovec(rw, buf, sqe_len, UIO_FASTIOV, iovec, iter);
2411}
2412
Jens Axboe32960612019-09-23 11:05:34 -06002413/*
2414 * For files that don't have ->read_iter() and ->write_iter(), handle them
2415 * by looping over ->read() or ->write() manually.
2416 */
2417static ssize_t loop_rw_iter(int rw, struct file *file, struct kiocb *kiocb,
2418 struct iov_iter *iter)
2419{
2420 ssize_t ret = 0;
2421
2422 /*
2423 * Don't support polled IO through this interface, and we can't
2424 * support non-blocking either. For the latter, this just causes
2425 * the kiocb to be handled from an async context.
2426 */
2427 if (kiocb->ki_flags & IOCB_HIPRI)
2428 return -EOPNOTSUPP;
2429 if (kiocb->ki_flags & IOCB_NOWAIT)
2430 return -EAGAIN;
2431
2432 while (iov_iter_count(iter)) {
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002433 struct iovec iovec;
Jens Axboe32960612019-09-23 11:05:34 -06002434 ssize_t nr;
2435
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002436 if (!iov_iter_is_bvec(iter)) {
2437 iovec = iov_iter_iovec(iter);
2438 } else {
2439 /* fixed buffers import bvec */
2440 iovec.iov_base = kmap(iter->bvec->bv_page)
2441 + iter->iov_offset;
2442 iovec.iov_len = min(iter->count,
2443 iter->bvec->bv_len - iter->iov_offset);
2444 }
2445
Jens Axboe32960612019-09-23 11:05:34 -06002446 if (rw == READ) {
2447 nr = file->f_op->read(file, iovec.iov_base,
2448 iovec.iov_len, &kiocb->ki_pos);
2449 } else {
2450 nr = file->f_op->write(file, iovec.iov_base,
2451 iovec.iov_len, &kiocb->ki_pos);
2452 }
2453
Pavel Begunkov311ae9e2019-11-24 11:58:24 +03002454 if (iov_iter_is_bvec(iter))
2455 kunmap(iter->bvec->bv_page);
2456
Jens Axboe32960612019-09-23 11:05:34 -06002457 if (nr < 0) {
2458 if (!ret)
2459 ret = nr;
2460 break;
2461 }
2462 ret += nr;
2463 if (nr != iovec.iov_len)
2464 break;
2465 iov_iter_advance(iter, nr);
2466 }
2467
2468 return ret;
2469}
2470
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002471static void io_req_map_rw(struct io_kiocb *req, ssize_t io_size,
Jens Axboef67676d2019-12-02 11:03:47 -07002472 struct iovec *iovec, struct iovec *fast_iov,
2473 struct iov_iter *iter)
2474{
2475 req->io->rw.nr_segs = iter->nr_segs;
2476 req->io->rw.size = io_size;
2477 req->io->rw.iov = iovec;
2478 if (!req->io->rw.iov) {
2479 req->io->rw.iov = req->io->rw.fast_iov;
Xiaoguang Wang45097da2020-04-08 22:29:58 +08002480 if (req->io->rw.iov != fast_iov)
2481 memcpy(req->io->rw.iov, fast_iov,
2482 sizeof(struct iovec) * iter->nr_segs);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002483 } else {
2484 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboef67676d2019-12-02 11:03:47 -07002485 }
2486}
2487
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08002488static inline int __io_alloc_async_ctx(struct io_kiocb *req)
2489{
2490 req->io = kmalloc(sizeof(*req->io), GFP_KERNEL);
2491 return req->io == NULL;
2492}
2493
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002494static int io_alloc_async_ctx(struct io_kiocb *req)
Jens Axboef67676d2019-12-02 11:03:47 -07002495{
Jens Axboed3656342019-12-18 09:50:26 -07002496 if (!io_op_defs[req->opcode].async_ctx)
2497 return 0;
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08002498
2499 return __io_alloc_async_ctx(req);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002500}
2501
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002502static int io_setup_async_rw(struct io_kiocb *req, ssize_t io_size,
2503 struct iovec *iovec, struct iovec *fast_iov,
2504 struct iov_iter *iter)
2505{
Jens Axboe980ad262020-01-24 23:08:54 -07002506 if (!io_op_defs[req->opcode].async_ctx)
Jens Axboe74566df2020-01-13 19:23:24 -07002507 return 0;
Jens Axboe5d204bc2020-01-31 12:06:52 -07002508 if (!req->io) {
Xiaoguang Wang3d9932a2020-03-27 15:36:52 +08002509 if (__io_alloc_async_ctx(req))
Jens Axboe5d204bc2020-01-31 12:06:52 -07002510 return -ENOMEM;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002511
Jens Axboe5d204bc2020-01-31 12:06:52 -07002512 io_req_map_rw(req, io_size, iovec, fast_iov, iter);
2513 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002514 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002515}
2516
Jens Axboe3529d8c2019-12-19 18:24:38 -07002517static int io_read_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2518 bool force_nonblock)
Jens Axboef67676d2019-12-02 11:03:47 -07002519{
Jens Axboe3529d8c2019-12-19 18:24:38 -07002520 struct io_async_ctx *io;
2521 struct iov_iter iter;
Jens Axboef67676d2019-12-02 11:03:47 -07002522 ssize_t ret;
2523
Jens Axboe3529d8c2019-12-19 18:24:38 -07002524 ret = io_prep_rw(req, sqe, force_nonblock);
2525 if (ret)
2526 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07002527
Jens Axboe3529d8c2019-12-19 18:24:38 -07002528 if (unlikely(!(req->file->f_mode & FMODE_READ)))
2529 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07002530
Pavel Begunkov5f798be2020-02-08 13:28:02 +03002531 /* either don't need iovec imported or already have it */
2532 if (!req->io || req->flags & REQ_F_NEED_CLEANUP)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002533 return 0;
2534
2535 io = req->io;
2536 io->rw.iov = io->rw.fast_iov;
2537 req->io = NULL;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002538 ret = io_import_iovec(READ, req, &io->rw.iov, &iter, !force_nonblock);
Jens Axboe3529d8c2019-12-19 18:24:38 -07002539 req->io = io;
2540 if (ret < 0)
2541 return ret;
2542
2543 io_req_map_rw(req, ret, io->rw.iov, io->rw.fast_iov, &iter);
2544 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002545}
2546
Pavel Begunkov014db002020-03-03 21:33:12 +03002547static int io_read(struct io_kiocb *req, bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002548{
2549 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07002550 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002551 struct iov_iter iter;
Jens Axboe31b51512019-01-18 22:56:34 -07002552 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07002553 ssize_t io_size, ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002554
Jens Axboebcda7ba2020-02-23 16:42:51 -07002555 ret = io_import_iovec(READ, req, &iovec, &iter, !force_nonblock);
Jens Axboe06b76d42019-12-19 14:44:26 -07002556 if (ret < 0)
2557 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002558
Jens Axboefd6c2e42019-12-18 12:19:41 -07002559 /* Ensure we clear previously set non-block flag */
2560 if (!force_nonblock)
Jens Axboe29de5f62020-02-20 09:56:08 -07002561 kiocb->ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07002562
Bijan Mottahedeh797f3f52020-01-15 18:37:45 -08002563 req->result = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002564 io_size = ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06002565 if (req->flags & REQ_F_LINK)
Jens Axboef67676d2019-12-02 11:03:47 -07002566 req->result = io_size;
2567
2568 /*
2569 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
2570 * we know to async punt it even if it was opened O_NONBLOCK
2571 */
Jens Axboe29de5f62020-02-20 09:56:08 -07002572 if (force_nonblock && !io_file_supports_async(req->file))
Jens Axboef67676d2019-12-02 11:03:47 -07002573 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06002574
Jens Axboe31b51512019-01-18 22:56:34 -07002575 iov_count = iov_iter_count(&iter);
Jens Axboe9adbd452019-12-20 08:45:55 -07002576 ret = rw_verify_area(READ, req->file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002577 if (!ret) {
2578 ssize_t ret2;
2579
Jens Axboe9adbd452019-12-20 08:45:55 -07002580 if (req->file->f_op->read_iter)
2581 ret2 = call_read_iter(req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002582 else
Jens Axboe9adbd452019-12-20 08:45:55 -07002583 ret2 = loop_rw_iter(READ, req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002584
Jens Axboe9d93a3f2019-05-15 13:53:07 -06002585 /* Catch -EAGAIN return for forced non-blocking submission */
Jens Axboef67676d2019-12-02 11:03:47 -07002586 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkov014db002020-03-03 21:33:12 +03002587 kiocb_done(kiocb, ret2);
Jens Axboef67676d2019-12-02 11:03:47 -07002588 } else {
2589copy_iov:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002590 ret = io_setup_async_rw(req, io_size, iovec,
Jens Axboef67676d2019-12-02 11:03:47 -07002591 inline_vecs, &iter);
2592 if (ret)
2593 goto out_free;
Jens Axboe29de5f62020-02-20 09:56:08 -07002594 /* any defer here is final, must blocking retry */
2595 if (!(req->flags & REQ_F_NOWAIT))
2596 req->flags |= REQ_F_MUST_PUNT;
Jens Axboef67676d2019-12-02 11:03:47 -07002597 return -EAGAIN;
2598 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002599 }
Jens Axboef67676d2019-12-02 11:03:47 -07002600out_free:
Pavel Begunkov1e950812020-02-06 19:51:16 +03002601 kfree(iovec);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002602 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002603 return ret;
2604}
2605
Jens Axboe3529d8c2019-12-19 18:24:38 -07002606static int io_write_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
2607 bool force_nonblock)
Jens Axboef67676d2019-12-02 11:03:47 -07002608{
Jens Axboe3529d8c2019-12-19 18:24:38 -07002609 struct io_async_ctx *io;
2610 struct iov_iter iter;
Jens Axboef67676d2019-12-02 11:03:47 -07002611 ssize_t ret;
2612
Jens Axboe3529d8c2019-12-19 18:24:38 -07002613 ret = io_prep_rw(req, sqe, force_nonblock);
2614 if (ret)
2615 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07002616
Jens Axboe3529d8c2019-12-19 18:24:38 -07002617 if (unlikely(!(req->file->f_mode & FMODE_WRITE)))
2618 return -EBADF;
Jens Axboef67676d2019-12-02 11:03:47 -07002619
Jens Axboe4ed734b2020-03-20 11:23:41 -06002620 req->fsize = rlimit(RLIMIT_FSIZE);
2621
Pavel Begunkov5f798be2020-02-08 13:28:02 +03002622 /* either don't need iovec imported or already have it */
2623 if (!req->io || req->flags & REQ_F_NEED_CLEANUP)
Jens Axboe3529d8c2019-12-19 18:24:38 -07002624 return 0;
2625
2626 io = req->io;
2627 io->rw.iov = io->rw.fast_iov;
2628 req->io = NULL;
Jens Axboebcda7ba2020-02-23 16:42:51 -07002629 ret = io_import_iovec(WRITE, req, &io->rw.iov, &iter, !force_nonblock);
Jens Axboe3529d8c2019-12-19 18:24:38 -07002630 req->io = io;
2631 if (ret < 0)
2632 return ret;
2633
2634 io_req_map_rw(req, ret, io->rw.iov, io->rw.fast_iov, &iter);
2635 return 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002636}
2637
Pavel Begunkov014db002020-03-03 21:33:12 +03002638static int io_write(struct io_kiocb *req, bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002639{
2640 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
Jens Axboe9adbd452019-12-20 08:45:55 -07002641 struct kiocb *kiocb = &req->rw.kiocb;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002642 struct iov_iter iter;
Jens Axboe31b51512019-01-18 22:56:34 -07002643 size_t iov_count;
Jens Axboef67676d2019-12-02 11:03:47 -07002644 ssize_t ret, io_size;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002645
Jens Axboebcda7ba2020-02-23 16:42:51 -07002646 ret = io_import_iovec(WRITE, req, &iovec, &iter, !force_nonblock);
Jens Axboe06b76d42019-12-19 14:44:26 -07002647 if (ret < 0)
2648 return ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002649
Jens Axboefd6c2e42019-12-18 12:19:41 -07002650 /* Ensure we clear previously set non-block flag */
2651 if (!force_nonblock)
Jens Axboe9adbd452019-12-20 08:45:55 -07002652 req->rw.kiocb.ki_flags &= ~IOCB_NOWAIT;
Jens Axboefd6c2e42019-12-18 12:19:41 -07002653
Bijan Mottahedeh797f3f52020-01-15 18:37:45 -08002654 req->result = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07002655 io_size = ret;
Jens Axboe9e645e112019-05-10 16:07:28 -06002656 if (req->flags & REQ_F_LINK)
Jens Axboef67676d2019-12-02 11:03:47 -07002657 req->result = io_size;
2658
2659 /*
2660 * If the file doesn't support async, mark it as REQ_F_MUST_PUNT so
2661 * we know to async punt it even if it was opened O_NONBLOCK
2662 */
Jens Axboe29de5f62020-02-20 09:56:08 -07002663 if (force_nonblock && !io_file_supports_async(req->file))
Jens Axboef67676d2019-12-02 11:03:47 -07002664 goto copy_iov;
Jens Axboef67676d2019-12-02 11:03:47 -07002665
Jens Axboe10d59342019-12-09 20:16:22 -07002666 /* file path doesn't support NOWAIT for non-direct_IO */
2667 if (force_nonblock && !(kiocb->ki_flags & IOCB_DIRECT) &&
2668 (req->flags & REQ_F_ISREG))
Jens Axboef67676d2019-12-02 11:03:47 -07002669 goto copy_iov;
Jens Axboe9e645e112019-05-10 16:07:28 -06002670
Jens Axboe31b51512019-01-18 22:56:34 -07002671 iov_count = iov_iter_count(&iter);
Jens Axboe9adbd452019-12-20 08:45:55 -07002672 ret = rw_verify_area(WRITE, req->file, &kiocb->ki_pos, iov_count);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002673 if (!ret) {
Roman Penyaev9bf79332019-03-25 20:09:24 +01002674 ssize_t ret2;
2675
Jens Axboe2b188cc2019-01-07 10:46:33 -07002676 /*
2677 * Open-code file_start_write here to grab freeze protection,
2678 * which will be released by another thread in
2679 * io_complete_rw(). Fool lockdep by telling it the lock got
2680 * released so that it doesn't complain about the held lock when
2681 * we return to userspace.
2682 */
Jens Axboe491381ce2019-10-17 09:20:46 -06002683 if (req->flags & REQ_F_ISREG) {
Jens Axboe9adbd452019-12-20 08:45:55 -07002684 __sb_start_write(file_inode(req->file)->i_sb,
Jens Axboe2b188cc2019-01-07 10:46:33 -07002685 SB_FREEZE_WRITE, true);
Jens Axboe9adbd452019-12-20 08:45:55 -07002686 __sb_writers_release(file_inode(req->file)->i_sb,
Jens Axboe2b188cc2019-01-07 10:46:33 -07002687 SB_FREEZE_WRITE);
2688 }
2689 kiocb->ki_flags |= IOCB_WRITE;
Roman Penyaev9bf79332019-03-25 20:09:24 +01002690
Jens Axboe4ed734b2020-03-20 11:23:41 -06002691 if (!force_nonblock)
2692 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = req->fsize;
2693
Jens Axboe9adbd452019-12-20 08:45:55 -07002694 if (req->file->f_op->write_iter)
2695 ret2 = call_write_iter(req->file, kiocb, &iter);
Jens Axboe32960612019-09-23 11:05:34 -06002696 else
Jens Axboe9adbd452019-12-20 08:45:55 -07002697 ret2 = loop_rw_iter(WRITE, req->file, kiocb, &iter);
Jens Axboe4ed734b2020-03-20 11:23:41 -06002698
2699 if (!force_nonblock)
2700 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = RLIM_INFINITY;
2701
Jens Axboefaac9962020-02-07 15:45:22 -07002702 /*
Chucheng Luobff60352020-03-25 11:31:38 +08002703 * Raw bdev writes will return -EOPNOTSUPP for IOCB_NOWAIT. Just
Jens Axboefaac9962020-02-07 15:45:22 -07002704 * retry them without IOCB_NOWAIT.
2705 */
2706 if (ret2 == -EOPNOTSUPP && (kiocb->ki_flags & IOCB_NOWAIT))
2707 ret2 = -EAGAIN;
Jens Axboef67676d2019-12-02 11:03:47 -07002708 if (!force_nonblock || ret2 != -EAGAIN) {
Pavel Begunkov014db002020-03-03 21:33:12 +03002709 kiocb_done(kiocb, ret2);
Jens Axboef67676d2019-12-02 11:03:47 -07002710 } else {
2711copy_iov:
Jens Axboeb7bb4f72019-12-15 22:13:43 -07002712 ret = io_setup_async_rw(req, io_size, iovec,
Jens Axboef67676d2019-12-02 11:03:47 -07002713 inline_vecs, &iter);
2714 if (ret)
2715 goto out_free;
Jens Axboe29de5f62020-02-20 09:56:08 -07002716 /* any defer here is final, must blocking retry */
2717 req->flags |= REQ_F_MUST_PUNT;
Jens Axboef67676d2019-12-02 11:03:47 -07002718 return -EAGAIN;
2719 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07002720 }
Jens Axboe31b51512019-01-18 22:56:34 -07002721out_free:
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03002722 req->flags &= ~REQ_F_NEED_CLEANUP;
Pavel Begunkov1e950812020-02-06 19:51:16 +03002723 kfree(iovec);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002724 return ret;
2725}
2726
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002727static int io_splice_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2728{
2729 struct io_splice* sp = &req->splice;
2730 unsigned int valid_flags = SPLICE_F_FD_IN_FIXED | SPLICE_F_ALL;
2731 int ret;
2732
2733 if (req->flags & REQ_F_NEED_CLEANUP)
2734 return 0;
2735
2736 sp->file_in = NULL;
2737 sp->off_in = READ_ONCE(sqe->splice_off_in);
2738 sp->off_out = READ_ONCE(sqe->off);
2739 sp->len = READ_ONCE(sqe->len);
2740 sp->flags = READ_ONCE(sqe->splice_flags);
2741
2742 if (unlikely(sp->flags & ~valid_flags))
2743 return -EINVAL;
2744
2745 ret = io_file_get(NULL, req, READ_ONCE(sqe->splice_fd_in), &sp->file_in,
2746 (sp->flags & SPLICE_F_FD_IN_FIXED));
2747 if (ret)
2748 return ret;
2749 req->flags |= REQ_F_NEED_CLEANUP;
2750
2751 if (!S_ISREG(file_inode(sp->file_in)->i_mode))
2752 req->work.flags |= IO_WQ_WORK_UNBOUND;
2753
2754 return 0;
2755}
2756
2757static bool io_splice_punt(struct file *file)
2758{
2759 if (get_pipe_info(file))
2760 return false;
2761 if (!io_file_supports_async(file))
2762 return true;
2763 return !(file->f_mode & O_NONBLOCK);
2764}
2765
Pavel Begunkov014db002020-03-03 21:33:12 +03002766static int io_splice(struct io_kiocb *req, bool force_nonblock)
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002767{
2768 struct io_splice *sp = &req->splice;
2769 struct file *in = sp->file_in;
2770 struct file *out = sp->file_out;
2771 unsigned int flags = sp->flags & ~SPLICE_F_FD_IN_FIXED;
2772 loff_t *poff_in, *poff_out;
2773 long ret;
2774
2775 if (force_nonblock) {
2776 if (io_splice_punt(in) || io_splice_punt(out))
2777 return -EAGAIN;
2778 flags |= SPLICE_F_NONBLOCK;
2779 }
2780
2781 poff_in = (sp->off_in == -1) ? NULL : &sp->off_in;
2782 poff_out = (sp->off_out == -1) ? NULL : &sp->off_out;
2783 ret = do_splice(in, poff_in, out, poff_out, sp->len, flags);
2784 if (force_nonblock && ret == -EAGAIN)
2785 return -EAGAIN;
2786
2787 io_put_file(req, in, (sp->flags & SPLICE_F_FD_IN_FIXED));
2788 req->flags &= ~REQ_F_NEED_CLEANUP;
2789
2790 io_cqring_add_event(req, ret);
2791 if (ret != sp->len)
2792 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03002793 io_put_req(req);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03002794 return 0;
2795}
2796
Jens Axboe2b188cc2019-01-07 10:46:33 -07002797/*
2798 * IORING_OP_NOP just posts a completion event, nothing else.
2799 */
Jens Axboe78e19bb2019-11-06 15:21:34 -07002800static int io_nop(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07002801{
2802 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2b188cc2019-01-07 10:46:33 -07002803
Jens Axboedef596e2019-01-09 08:59:42 -07002804 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
2805 return -EINVAL;
2806
Jens Axboe78e19bb2019-11-06 15:21:34 -07002807 io_cqring_add_event(req, 0);
Jens Axboee65ef562019-03-12 10:16:44 -06002808 io_put_req(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07002809 return 0;
2810}
2811
Jens Axboe3529d8c2019-12-19 18:24:38 -07002812static int io_prep_fsync(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002813{
Jens Axboe6b063142019-01-10 22:13:58 -07002814 struct io_ring_ctx *ctx = req->ctx;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002815
Jens Axboe09bb8392019-03-13 12:39:28 -06002816 if (!req->file)
2817 return -EBADF;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002818
Jens Axboe6b063142019-01-10 22:13:58 -07002819 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboedef596e2019-01-09 08:59:42 -07002820 return -EINVAL;
Jens Axboeedafcce2019-01-09 09:16:05 -07002821 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002822 return -EINVAL;
2823
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002824 req->sync.flags = READ_ONCE(sqe->fsync_flags);
2825 if (unlikely(req->sync.flags & ~IORING_FSYNC_DATASYNC))
2826 return -EINVAL;
2827
2828 req->sync.off = READ_ONCE(sqe->off);
2829 req->sync.len = READ_ONCE(sqe->len);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002830 return 0;
2831}
2832
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002833static bool io_req_cancelled(struct io_kiocb *req)
2834{
2835 if (req->work.flags & IO_WQ_WORK_CANCEL) {
2836 req_set_fail_links(req);
2837 io_cqring_add_event(req, -ECANCELED);
2838 io_put_req(req);
2839 return true;
2840 }
2841
2842 return false;
2843}
2844
Pavel Begunkov014db002020-03-03 21:33:12 +03002845static void __io_fsync(struct io_kiocb *req)
Jens Axboe78912932020-01-14 22:09:06 -07002846{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002847 loff_t end = req->sync.off + req->sync.len;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002848 int ret;
2849
Jens Axboe9adbd452019-12-20 08:45:55 -07002850 ret = vfs_fsync_range(req->file, req->sync.off,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002851 end > 0 ? end : LLONG_MAX,
2852 req->sync.flags & IORING_FSYNC_DATASYNC);
2853 if (ret < 0)
2854 req_set_fail_links(req);
2855 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03002856 io_put_req(req);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002857}
2858
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002859static void io_fsync_finish(struct io_wq_work **workptr)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002860{
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002861 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002862
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002863 if (io_req_cancelled(req))
2864 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03002865 __io_fsync(req);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03002866 io_steal_work(req, workptr);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002867}
2868
Pavel Begunkov014db002020-03-03 21:33:12 +03002869static int io_fsync(struct io_kiocb *req, bool force_nonblock)
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002870{
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002871 /* fsync always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002872 if (force_nonblock) {
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002873 req->work.func = io_fsync_finish;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002874 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07002875 }
Pavel Begunkov014db002020-03-03 21:33:12 +03002876 __io_fsync(req);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07002877 return 0;
2878}
2879
Pavel Begunkov014db002020-03-03 21:33:12 +03002880static void __io_fallocate(struct io_kiocb *req)
Jens Axboed63d1b52019-12-10 10:38:56 -07002881{
Jens Axboed63d1b52019-12-10 10:38:56 -07002882 int ret;
2883
Jens Axboe4ed734b2020-03-20 11:23:41 -06002884 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = req->fsize;
Jens Axboed63d1b52019-12-10 10:38:56 -07002885 ret = vfs_fallocate(req->file, req->sync.mode, req->sync.off,
2886 req->sync.len);
Jens Axboe4ed734b2020-03-20 11:23:41 -06002887 current->signal->rlim[RLIMIT_FSIZE].rlim_cur = RLIM_INFINITY;
Jens Axboed63d1b52019-12-10 10:38:56 -07002888 if (ret < 0)
2889 req_set_fail_links(req);
2890 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03002891 io_put_req(req);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03002892}
2893
Jens Axboe2b188cc2019-01-07 10:46:33 -07002894static void io_fallocate_finish(struct io_wq_work **workptr)
2895{
2896 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Jens Axboed63d1b52019-12-10 10:38:56 -07002897
2898 if (io_req_cancelled(req))
2899 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03002900 __io_fallocate(req);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03002901 io_steal_work(req, workptr);
Jens Axboed63d1b52019-12-10 10:38:56 -07002902}
2903
2904static int io_fallocate_prep(struct io_kiocb *req,
2905 const struct io_uring_sqe *sqe)
2906{
2907 if (sqe->ioprio || sqe->buf_index || sqe->rw_flags)
2908 return -EINVAL;
2909
2910 req->sync.off = READ_ONCE(sqe->off);
2911 req->sync.len = READ_ONCE(sqe->addr);
2912 req->sync.mode = READ_ONCE(sqe->len);
Jens Axboe4ed734b2020-03-20 11:23:41 -06002913 req->fsize = rlimit(RLIMIT_FSIZE);
Jens Axboed63d1b52019-12-10 10:38:56 -07002914 return 0;
2915}
2916
Pavel Begunkov014db002020-03-03 21:33:12 +03002917static int io_fallocate(struct io_kiocb *req, bool force_nonblock)
Jens Axboed63d1b52019-12-10 10:38:56 -07002918{
Jens Axboed63d1b52019-12-10 10:38:56 -07002919 /* fallocate always requiring blocking context */
2920 if (force_nonblock) {
Jens Axboed63d1b52019-12-10 10:38:56 -07002921 req->work.func = io_fallocate_finish;
2922 return -EAGAIN;
2923 }
2924
Pavel Begunkov014db002020-03-03 21:33:12 +03002925 __io_fallocate(req);
Jens Axboed63d1b52019-12-10 10:38:56 -07002926 return 0;
2927}
2928
Jens Axboe15b71ab2019-12-11 11:20:36 -07002929static int io_openat_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2930{
Jens Axboef8748882020-01-08 17:47:02 -07002931 const char __user *fname;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002932 int ret;
2933
2934 if (sqe->ioprio || sqe->buf_index)
2935 return -EINVAL;
Pavel Begunkov9c280f92020-04-08 08:58:46 +03002936 if (req->flags & REQ_F_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07002937 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03002938 if (req->flags & REQ_F_NEED_CLEANUP)
2939 return 0;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002940
2941 req->open.dfd = READ_ONCE(sqe->fd);
Jens Axboec12cedf2020-01-08 17:41:21 -07002942 req->open.how.mode = READ_ONCE(sqe->len);
Jens Axboef8748882020-01-08 17:47:02 -07002943 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboec12cedf2020-01-08 17:41:21 -07002944 req->open.how.flags = READ_ONCE(sqe->open_flags);
Jens Axboe08a1d26eb2020-04-08 09:20:54 -06002945 if (force_o_largefile())
2946 req->open.how.flags |= O_LARGEFILE;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002947
Jens Axboef8748882020-01-08 17:47:02 -07002948 req->open.filename = getname(fname);
Jens Axboe15b71ab2019-12-11 11:20:36 -07002949 if (IS_ERR(req->open.filename)) {
2950 ret = PTR_ERR(req->open.filename);
2951 req->open.filename = NULL;
2952 return ret;
2953 }
2954
Jens Axboe4022e7a2020-03-19 19:23:18 -06002955 req->open.nofile = rlimit(RLIMIT_NOFILE);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03002956 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07002957 return 0;
2958}
2959
Jens Axboecebdb982020-01-08 17:59:24 -07002960static int io_openat2_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
2961{
2962 struct open_how __user *how;
2963 const char __user *fname;
2964 size_t len;
2965 int ret;
2966
2967 if (sqe->ioprio || sqe->buf_index)
2968 return -EINVAL;
Pavel Begunkov9c280f92020-04-08 08:58:46 +03002969 if (req->flags & REQ_F_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07002970 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03002971 if (req->flags & REQ_F_NEED_CLEANUP)
2972 return 0;
Jens Axboecebdb982020-01-08 17:59:24 -07002973
2974 req->open.dfd = READ_ONCE(sqe->fd);
2975 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
2976 how = u64_to_user_ptr(READ_ONCE(sqe->addr2));
2977 len = READ_ONCE(sqe->len);
2978
2979 if (len < OPEN_HOW_SIZE_VER0)
2980 return -EINVAL;
2981
2982 ret = copy_struct_from_user(&req->open.how, sizeof(req->open.how), how,
2983 len);
2984 if (ret)
2985 return ret;
2986
2987 if (!(req->open.how.flags & O_PATH) && force_o_largefile())
2988 req->open.how.flags |= O_LARGEFILE;
2989
2990 req->open.filename = getname(fname);
2991 if (IS_ERR(req->open.filename)) {
2992 ret = PTR_ERR(req->open.filename);
2993 req->open.filename = NULL;
2994 return ret;
2995 }
2996
Jens Axboe4022e7a2020-03-19 19:23:18 -06002997 req->open.nofile = rlimit(RLIMIT_NOFILE);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03002998 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboecebdb982020-01-08 17:59:24 -07002999 return 0;
3000}
3001
Pavel Begunkov014db002020-03-03 21:33:12 +03003002static int io_openat2(struct io_kiocb *req, bool force_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07003003{
3004 struct open_flags op;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003005 struct file *file;
3006 int ret;
3007
Jens Axboef86cd202020-01-29 13:46:44 -07003008 if (force_nonblock)
Jens Axboe15b71ab2019-12-11 11:20:36 -07003009 return -EAGAIN;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003010
Jens Axboecebdb982020-01-08 17:59:24 -07003011 ret = build_open_flags(&req->open.how, &op);
Jens Axboe15b71ab2019-12-11 11:20:36 -07003012 if (ret)
3013 goto err;
3014
Jens Axboe4022e7a2020-03-19 19:23:18 -06003015 ret = __get_unused_fd_flags(req->open.how.flags, req->open.nofile);
Jens Axboe15b71ab2019-12-11 11:20:36 -07003016 if (ret < 0)
3017 goto err;
3018
3019 file = do_filp_open(req->open.dfd, req->open.filename, &op);
3020 if (IS_ERR(file)) {
3021 put_unused_fd(ret);
3022 ret = PTR_ERR(file);
3023 } else {
3024 fsnotify_open(file);
3025 fd_install(ret, file);
3026 }
3027err:
3028 putname(req->open.filename);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003029 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe15b71ab2019-12-11 11:20:36 -07003030 if (ret < 0)
3031 req_set_fail_links(req);
3032 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003033 io_put_req(req);
Jens Axboe15b71ab2019-12-11 11:20:36 -07003034 return 0;
3035}
3036
Pavel Begunkov014db002020-03-03 21:33:12 +03003037static int io_openat(struct io_kiocb *req, bool force_nonblock)
Jens Axboecebdb982020-01-08 17:59:24 -07003038{
3039 req->open.how = build_open_how(req->open.how.flags, req->open.how.mode);
Pavel Begunkov014db002020-03-03 21:33:12 +03003040 return io_openat2(req, force_nonblock);
Jens Axboecebdb982020-01-08 17:59:24 -07003041}
3042
Jens Axboe067524e2020-03-02 16:32:28 -07003043static int io_remove_buffers_prep(struct io_kiocb *req,
3044 const struct io_uring_sqe *sqe)
3045{
3046 struct io_provide_buf *p = &req->pbuf;
3047 u64 tmp;
3048
3049 if (sqe->ioprio || sqe->rw_flags || sqe->addr || sqe->len || sqe->off)
3050 return -EINVAL;
3051
3052 tmp = READ_ONCE(sqe->fd);
3053 if (!tmp || tmp > USHRT_MAX)
3054 return -EINVAL;
3055
3056 memset(p, 0, sizeof(*p));
3057 p->nbufs = tmp;
3058 p->bgid = READ_ONCE(sqe->buf_group);
3059 return 0;
3060}
3061
3062static int __io_remove_buffers(struct io_ring_ctx *ctx, struct io_buffer *buf,
3063 int bgid, unsigned nbufs)
3064{
3065 unsigned i = 0;
3066
3067 /* shouldn't happen */
3068 if (!nbufs)
3069 return 0;
3070
3071 /* the head kbuf is the list itself */
3072 while (!list_empty(&buf->list)) {
3073 struct io_buffer *nxt;
3074
3075 nxt = list_first_entry(&buf->list, struct io_buffer, list);
3076 list_del(&nxt->list);
3077 kfree(nxt);
3078 if (++i == nbufs)
3079 return i;
3080 }
3081 i++;
3082 kfree(buf);
3083 idr_remove(&ctx->io_buffer_idr, bgid);
3084
3085 return i;
3086}
3087
3088static int io_remove_buffers(struct io_kiocb *req, bool force_nonblock)
3089{
3090 struct io_provide_buf *p = &req->pbuf;
3091 struct io_ring_ctx *ctx = req->ctx;
3092 struct io_buffer *head;
3093 int ret = 0;
3094
3095 io_ring_submit_lock(ctx, !force_nonblock);
3096
3097 lockdep_assert_held(&ctx->uring_lock);
3098
3099 ret = -ENOENT;
3100 head = idr_find(&ctx->io_buffer_idr, p->bgid);
3101 if (head)
3102 ret = __io_remove_buffers(ctx, head, p->bgid, p->nbufs);
3103
3104 io_ring_submit_lock(ctx, !force_nonblock);
3105 if (ret < 0)
3106 req_set_fail_links(req);
3107 io_cqring_add_event(req, ret);
3108 io_put_req(req);
3109 return 0;
3110}
3111
Jens Axboeddf0322d2020-02-23 16:41:33 -07003112static int io_provide_buffers_prep(struct io_kiocb *req,
3113 const struct io_uring_sqe *sqe)
3114{
3115 struct io_provide_buf *p = &req->pbuf;
3116 u64 tmp;
3117
3118 if (sqe->ioprio || sqe->rw_flags)
3119 return -EINVAL;
3120
3121 tmp = READ_ONCE(sqe->fd);
3122 if (!tmp || tmp > USHRT_MAX)
3123 return -E2BIG;
3124 p->nbufs = tmp;
3125 p->addr = READ_ONCE(sqe->addr);
3126 p->len = READ_ONCE(sqe->len);
3127
3128 if (!access_ok(u64_to_user_ptr(p->addr), p->len))
3129 return -EFAULT;
3130
3131 p->bgid = READ_ONCE(sqe->buf_group);
3132 tmp = READ_ONCE(sqe->off);
3133 if (tmp > USHRT_MAX)
3134 return -E2BIG;
3135 p->bid = tmp;
3136 return 0;
3137}
3138
3139static int io_add_buffers(struct io_provide_buf *pbuf, struct io_buffer **head)
3140{
3141 struct io_buffer *buf;
3142 u64 addr = pbuf->addr;
3143 int i, bid = pbuf->bid;
3144
3145 for (i = 0; i < pbuf->nbufs; i++) {
3146 buf = kmalloc(sizeof(*buf), GFP_KERNEL);
3147 if (!buf)
3148 break;
3149
3150 buf->addr = addr;
3151 buf->len = pbuf->len;
3152 buf->bid = bid;
3153 addr += pbuf->len;
3154 bid++;
3155 if (!*head) {
3156 INIT_LIST_HEAD(&buf->list);
3157 *head = buf;
3158 } else {
3159 list_add_tail(&buf->list, &(*head)->list);
3160 }
3161 }
3162
3163 return i ? i : -ENOMEM;
3164}
3165
Jens Axboeddf0322d2020-02-23 16:41:33 -07003166static int io_provide_buffers(struct io_kiocb *req, bool force_nonblock)
3167{
3168 struct io_provide_buf *p = &req->pbuf;
3169 struct io_ring_ctx *ctx = req->ctx;
3170 struct io_buffer *head, *list;
3171 int ret = 0;
3172
3173 io_ring_submit_lock(ctx, !force_nonblock);
3174
3175 lockdep_assert_held(&ctx->uring_lock);
3176
3177 list = head = idr_find(&ctx->io_buffer_idr, p->bgid);
3178
3179 ret = io_add_buffers(p, &head);
3180 if (ret < 0)
3181 goto out;
3182
3183 if (!list) {
3184 ret = idr_alloc(&ctx->io_buffer_idr, head, p->bgid, p->bgid + 1,
3185 GFP_KERNEL);
3186 if (ret < 0) {
Jens Axboe067524e2020-03-02 16:32:28 -07003187 __io_remove_buffers(ctx, head, p->bgid, -1U);
Jens Axboeddf0322d2020-02-23 16:41:33 -07003188 goto out;
3189 }
3190 }
3191out:
3192 io_ring_submit_unlock(ctx, !force_nonblock);
3193 if (ret < 0)
3194 req_set_fail_links(req);
3195 io_cqring_add_event(req, ret);
3196 io_put_req(req);
3197 return 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07003198}
3199
Jens Axboe3e4827b2020-01-08 15:18:09 -07003200static int io_epoll_ctl_prep(struct io_kiocb *req,
3201 const struct io_uring_sqe *sqe)
3202{
3203#if defined(CONFIG_EPOLL)
3204 if (sqe->ioprio || sqe->buf_index)
3205 return -EINVAL;
3206
3207 req->epoll.epfd = READ_ONCE(sqe->fd);
3208 req->epoll.op = READ_ONCE(sqe->len);
3209 req->epoll.fd = READ_ONCE(sqe->off);
3210
3211 if (ep_op_has_event(req->epoll.op)) {
3212 struct epoll_event __user *ev;
3213
3214 ev = u64_to_user_ptr(READ_ONCE(sqe->addr));
3215 if (copy_from_user(&req->epoll.event, ev, sizeof(*ev)))
3216 return -EFAULT;
3217 }
3218
3219 return 0;
3220#else
3221 return -EOPNOTSUPP;
3222#endif
3223}
3224
Pavel Begunkov014db002020-03-03 21:33:12 +03003225static int io_epoll_ctl(struct io_kiocb *req, bool force_nonblock)
Jens Axboe3e4827b2020-01-08 15:18:09 -07003226{
3227#if defined(CONFIG_EPOLL)
3228 struct io_epoll *ie = &req->epoll;
3229 int ret;
3230
3231 ret = do_epoll_ctl(ie->epfd, ie->op, ie->fd, &ie->event, force_nonblock);
3232 if (force_nonblock && ret == -EAGAIN)
3233 return -EAGAIN;
3234
3235 if (ret < 0)
3236 req_set_fail_links(req);
3237 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003238 io_put_req(req);
Jens Axboe3e4827b2020-01-08 15:18:09 -07003239 return 0;
3240#else
3241 return -EOPNOTSUPP;
3242#endif
3243}
3244
Jens Axboec1ca7572019-12-25 22:18:28 -07003245static int io_madvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3246{
3247#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
3248 if (sqe->ioprio || sqe->buf_index || sqe->off)
3249 return -EINVAL;
3250
3251 req->madvise.addr = READ_ONCE(sqe->addr);
3252 req->madvise.len = READ_ONCE(sqe->len);
3253 req->madvise.advice = READ_ONCE(sqe->fadvise_advice);
3254 return 0;
3255#else
3256 return -EOPNOTSUPP;
3257#endif
3258}
3259
Pavel Begunkov014db002020-03-03 21:33:12 +03003260static int io_madvise(struct io_kiocb *req, bool force_nonblock)
Jens Axboec1ca7572019-12-25 22:18:28 -07003261{
3262#if defined(CONFIG_ADVISE_SYSCALLS) && defined(CONFIG_MMU)
3263 struct io_madvise *ma = &req->madvise;
3264 int ret;
3265
3266 if (force_nonblock)
3267 return -EAGAIN;
3268
3269 ret = do_madvise(ma->addr, ma->len, ma->advice);
3270 if (ret < 0)
3271 req_set_fail_links(req);
3272 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003273 io_put_req(req);
Jens Axboec1ca7572019-12-25 22:18:28 -07003274 return 0;
3275#else
3276 return -EOPNOTSUPP;
3277#endif
3278}
3279
Jens Axboe4840e412019-12-25 22:03:45 -07003280static int io_fadvise_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3281{
3282 if (sqe->ioprio || sqe->buf_index || sqe->addr)
3283 return -EINVAL;
3284
3285 req->fadvise.offset = READ_ONCE(sqe->off);
3286 req->fadvise.len = READ_ONCE(sqe->len);
3287 req->fadvise.advice = READ_ONCE(sqe->fadvise_advice);
3288 return 0;
3289}
3290
Pavel Begunkov014db002020-03-03 21:33:12 +03003291static int io_fadvise(struct io_kiocb *req, bool force_nonblock)
Jens Axboe4840e412019-12-25 22:03:45 -07003292{
3293 struct io_fadvise *fa = &req->fadvise;
3294 int ret;
3295
Jens Axboe3e694262020-02-01 09:22:49 -07003296 if (force_nonblock) {
3297 switch (fa->advice) {
3298 case POSIX_FADV_NORMAL:
3299 case POSIX_FADV_RANDOM:
3300 case POSIX_FADV_SEQUENTIAL:
3301 break;
3302 default:
3303 return -EAGAIN;
3304 }
3305 }
Jens Axboe4840e412019-12-25 22:03:45 -07003306
3307 ret = vfs_fadvise(req->file, fa->offset, fa->len, fa->advice);
3308 if (ret < 0)
3309 req_set_fail_links(req);
3310 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003311 io_put_req(req);
Jens Axboe4840e412019-12-25 22:03:45 -07003312 return 0;
3313}
3314
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003315static int io_statx_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3316{
Jens Axboef8748882020-01-08 17:47:02 -07003317 const char __user *fname;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003318 unsigned lookup_flags;
3319 int ret;
3320
3321 if (sqe->ioprio || sqe->buf_index)
3322 return -EINVAL;
Pavel Begunkov9c280f92020-04-08 08:58:46 +03003323 if (req->flags & REQ_F_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07003324 return -EBADF;
Pavel Begunkov0bdbdd02020-02-08 13:28:03 +03003325 if (req->flags & REQ_F_NEED_CLEANUP)
3326 return 0;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003327
3328 req->open.dfd = READ_ONCE(sqe->fd);
3329 req->open.mask = READ_ONCE(sqe->len);
Jens Axboef8748882020-01-08 17:47:02 -07003330 fname = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003331 req->open.buffer = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboec12cedf2020-01-08 17:41:21 -07003332 req->open.how.flags = READ_ONCE(sqe->statx_flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003333
Jens Axboec12cedf2020-01-08 17:41:21 -07003334 if (vfs_stat_set_lookup_flags(&lookup_flags, req->open.how.flags))
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003335 return -EINVAL;
3336
Jens Axboef8748882020-01-08 17:47:02 -07003337 req->open.filename = getname_flags(fname, lookup_flags, NULL);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003338 if (IS_ERR(req->open.filename)) {
3339 ret = PTR_ERR(req->open.filename);
3340 req->open.filename = NULL;
3341 return ret;
3342 }
3343
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003344 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003345 return 0;
3346}
3347
Pavel Begunkov014db002020-03-03 21:33:12 +03003348static int io_statx(struct io_kiocb *req, bool force_nonblock)
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003349{
3350 struct io_open *ctx = &req->open;
3351 unsigned lookup_flags;
3352 struct path path;
3353 struct kstat stat;
3354 int ret;
3355
3356 if (force_nonblock)
3357 return -EAGAIN;
3358
Jens Axboec12cedf2020-01-08 17:41:21 -07003359 if (vfs_stat_set_lookup_flags(&lookup_flags, ctx->how.flags))
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003360 return -EINVAL;
3361
3362retry:
3363 /* filename_lookup() drops it, keep a reference */
3364 ctx->filename->refcnt++;
3365
3366 ret = filename_lookup(ctx->dfd, ctx->filename, lookup_flags, &path,
3367 NULL);
3368 if (ret)
3369 goto err;
3370
Jens Axboec12cedf2020-01-08 17:41:21 -07003371 ret = vfs_getattr(&path, &stat, ctx->mask, ctx->how.flags);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003372 path_put(&path);
3373 if (retry_estale(ret, lookup_flags)) {
3374 lookup_flags |= LOOKUP_REVAL;
3375 goto retry;
3376 }
3377 if (!ret)
3378 ret = cp_statx(&stat, ctx->buffer);
3379err:
3380 putname(ctx->filename);
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03003381 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003382 if (ret < 0)
3383 req_set_fail_links(req);
3384 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003385 io_put_req(req);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07003386 return 0;
3387}
3388
Jens Axboeb5dba592019-12-11 14:02:38 -07003389static int io_close_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
3390{
3391 /*
3392 * If we queue this for async, it must not be cancellable. That would
3393 * leave the 'file' in an undeterminate state.
3394 */
3395 req->work.flags |= IO_WQ_WORK_NO_CANCEL;
3396
3397 if (sqe->ioprio || sqe->off || sqe->addr || sqe->len ||
3398 sqe->rw_flags || sqe->buf_index)
3399 return -EINVAL;
Pavel Begunkov9c280f92020-04-08 08:58:46 +03003400 if (req->flags & REQ_F_FIXED_FILE)
Jens Axboecf3040c2020-02-06 21:31:40 -07003401 return -EBADF;
Jens Axboeb5dba592019-12-11 14:02:38 -07003402
3403 req->close.fd = READ_ONCE(sqe->fd);
3404 if (req->file->f_op == &io_uring_fops ||
Pavel Begunkovb14cca02020-01-17 04:45:59 +03003405 req->close.fd == req->ctx->ring_fd)
Jens Axboeb5dba592019-12-11 14:02:38 -07003406 return -EBADF;
3407
3408 return 0;
3409}
3410
Pavel Begunkova93b3332020-02-08 14:04:34 +03003411/* only called when __close_fd_get_file() is done */
Pavel Begunkov014db002020-03-03 21:33:12 +03003412static void __io_close_finish(struct io_kiocb *req)
Pavel Begunkova93b3332020-02-08 14:04:34 +03003413{
3414 int ret;
3415
3416 ret = filp_close(req->close.put_file, req->work.files);
3417 if (ret < 0)
3418 req_set_fail_links(req);
3419 io_cqring_add_event(req, ret);
3420 fput(req->close.put_file);
Pavel Begunkov014db002020-03-03 21:33:12 +03003421 io_put_req(req);
Pavel Begunkova93b3332020-02-08 14:04:34 +03003422}
3423
Jens Axboeb5dba592019-12-11 14:02:38 -07003424static void io_close_finish(struct io_wq_work **workptr)
3425{
3426 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Jens Axboeb5dba592019-12-11 14:02:38 -07003427
Pavel Begunkov7fbeb952020-02-16 01:01:18 +03003428 /* not cancellable, don't do io_req_cancelled() */
Pavel Begunkov014db002020-03-03 21:33:12 +03003429 __io_close_finish(req);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03003430 io_steal_work(req, workptr);
Jens Axboeb5dba592019-12-11 14:02:38 -07003431}
3432
Pavel Begunkov014db002020-03-03 21:33:12 +03003433static int io_close(struct io_kiocb *req, bool force_nonblock)
Jens Axboeb5dba592019-12-11 14:02:38 -07003434{
3435 int ret;
3436
3437 req->close.put_file = NULL;
3438 ret = __close_fd_get_file(req->close.fd, &req->close.put_file);
3439 if (ret < 0)
3440 return ret;
3441
3442 /* if the file has a flush method, be safe and punt to async */
Pavel Begunkova2100672020-03-02 23:45:16 +03003443 if (req->close.put_file->f_op->flush && force_nonblock) {
Pavel Begunkov594506f2020-03-03 21:33:11 +03003444 /* submission ref will be dropped, take it for async */
3445 refcount_inc(&req->refs);
3446
Pavel Begunkova2100672020-03-02 23:45:16 +03003447 req->work.func = io_close_finish;
3448 /*
3449 * Do manual async queue here to avoid grabbing files - we don't
3450 * need the files, and it'll cause io_close_finish() to close
3451 * the file again and cause a double CQE entry for this request
3452 */
3453 io_queue_async_work(req);
3454 return 0;
3455 }
Jens Axboeb5dba592019-12-11 14:02:38 -07003456
3457 /*
3458 * No ->flush(), safely close from here and just punt the
3459 * fput() to async context.
3460 */
Pavel Begunkov014db002020-03-03 21:33:12 +03003461 __io_close_finish(req);
Jens Axboe1a417f42020-01-31 17:16:48 -07003462 return 0;
Jens Axboeb5dba592019-12-11 14:02:38 -07003463}
3464
Jens Axboe3529d8c2019-12-19 18:24:38 -07003465static int io_prep_sfr(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003466{
3467 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003468
3469 if (!req->file)
3470 return -EBADF;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003471
3472 if (unlikely(ctx->flags & IORING_SETUP_IOPOLL))
3473 return -EINVAL;
3474 if (unlikely(sqe->addr || sqe->ioprio || sqe->buf_index))
3475 return -EINVAL;
3476
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003477 req->sync.off = READ_ONCE(sqe->off);
3478 req->sync.len = READ_ONCE(sqe->len);
3479 req->sync.flags = READ_ONCE(sqe->sync_range_flags);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003480 return 0;
3481}
3482
Pavel Begunkov014db002020-03-03 21:33:12 +03003483static void __io_sync_file_range(struct io_kiocb *req)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003484{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003485 int ret;
3486
Jens Axboe9adbd452019-12-20 08:45:55 -07003487 ret = sync_file_range(req->file, req->sync.off, req->sync.len,
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003488 req->sync.flags);
3489 if (ret < 0)
3490 req_set_fail_links(req);
3491 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003492 io_put_req(req);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03003493}
3494
3495
3496static void io_sync_file_range_finish(struct io_wq_work **workptr)
3497{
3498 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Pavel Begunkov5ea62162020-02-24 11:30:16 +03003499
3500 if (io_req_cancelled(req))
3501 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03003502 __io_sync_file_range(req);
Pavel Begunkov594506f2020-03-03 21:33:11 +03003503 io_put_req(req); /* put submission ref */
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003504}
3505
Pavel Begunkov014db002020-03-03 21:33:12 +03003506static int io_sync_file_range(struct io_kiocb *req, bool force_nonblock)
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003507{
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003508 /* sync_file_range always requires a blocking context */
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003509 if (force_nonblock) {
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003510 req->work.func = io_sync_file_range_finish;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003511 return -EAGAIN;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003512 }
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003513
Pavel Begunkov014db002020-03-03 21:33:12 +03003514 __io_sync_file_range(req);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06003515 return 0;
3516}
3517
YueHaibing469956e2020-03-04 15:53:52 +08003518#if defined(CONFIG_NET)
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003519static int io_setup_async_msg(struct io_kiocb *req,
3520 struct io_async_msghdr *kmsg)
3521{
3522 if (req->io)
3523 return -EAGAIN;
3524 if (io_alloc_async_ctx(req)) {
3525 if (kmsg->iov != kmsg->fast_iov)
3526 kfree(kmsg->iov);
3527 return -ENOMEM;
3528 }
3529 req->flags |= REQ_F_NEED_CLEANUP;
3530 memcpy(&req->io->msg, kmsg, sizeof(*kmsg));
3531 return -EAGAIN;
3532}
3533
Jens Axboe3529d8c2019-12-19 18:24:38 -07003534static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboeaa1fa282019-04-19 13:38:09 -06003535{
Jens Axboee47293f2019-12-20 08:58:21 -07003536 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003537 struct io_async_ctx *io = req->io;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003538 int ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003539
Jens Axboee47293f2019-12-20 08:58:21 -07003540 sr->msg_flags = READ_ONCE(sqe->msg_flags);
3541 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboefddafac2020-01-04 20:19:44 -07003542 sr->len = READ_ONCE(sqe->len);
Jens Axboe3529d8c2019-12-19 18:24:38 -07003543
Jens Axboed8768362020-02-27 14:17:49 -07003544#ifdef CONFIG_COMPAT
3545 if (req->ctx->compat)
3546 sr->msg_flags |= MSG_CMSG_COMPAT;
3547#endif
3548
Jens Axboefddafac2020-01-04 20:19:44 -07003549 if (!io || req->opcode == IORING_OP_SEND)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003550 return 0;
Pavel Begunkov5f798be2020-02-08 13:28:02 +03003551 /* iovec is already imported */
3552 if (req->flags & REQ_F_NEED_CLEANUP)
3553 return 0;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003554
Jens Axboed9688562019-12-09 19:35:20 -07003555 io->msg.iov = io->msg.fast_iov;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003556 ret = sendmsg_copy_msghdr(&io->msg.msg, sr->msg, sr->msg_flags,
Jens Axboee47293f2019-12-20 08:58:21 -07003557 &io->msg.iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003558 if (!ret)
3559 req->flags |= REQ_F_NEED_CLEANUP;
3560 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003561}
3562
Pavel Begunkov014db002020-03-03 21:33:12 +03003563static int io_sendmsg(struct io_kiocb *req, bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07003564{
Jens Axboe0b416c32019-12-15 10:57:46 -07003565 struct io_async_msghdr *kmsg = NULL;
Jens Axboe03b12302019-12-02 18:50:25 -07003566 struct socket *sock;
3567 int ret;
3568
3569 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3570 return -EINVAL;
3571
3572 sock = sock_from_file(req->file, &ret);
3573 if (sock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003574 struct io_async_ctx io;
Jens Axboe03b12302019-12-02 18:50:25 -07003575 unsigned flags;
3576
Jens Axboe03b12302019-12-02 18:50:25 -07003577 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07003578 kmsg = &req->io->msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003579 kmsg->msg.msg_name = &req->io->msg.addr;
Jens Axboe0b416c32019-12-15 10:57:46 -07003580 /* if iov is set, it's allocated already */
3581 if (!kmsg->iov)
3582 kmsg->iov = kmsg->fast_iov;
3583 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07003584 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07003585 struct io_sr_msg *sr = &req->sr_msg;
3586
Jens Axboe0b416c32019-12-15 10:57:46 -07003587 kmsg = &io.msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003588 kmsg->msg.msg_name = &io.msg.addr;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003589
3590 io.msg.iov = io.msg.fast_iov;
3591 ret = sendmsg_copy_msghdr(&io.msg.msg, sr->msg,
3592 sr->msg_flags, &io.msg.iov);
Jens Axboe03b12302019-12-02 18:50:25 -07003593 if (ret)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003594 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003595 }
3596
Jens Axboee47293f2019-12-20 08:58:21 -07003597 flags = req->sr_msg.msg_flags;
3598 if (flags & MSG_DONTWAIT)
3599 req->flags |= REQ_F_NOWAIT;
3600 else if (force_nonblock)
3601 flags |= MSG_DONTWAIT;
3602
Jens Axboe0b416c32019-12-15 10:57:46 -07003603 ret = __sys_sendmsg_sock(sock, &kmsg->msg, flags);
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003604 if (force_nonblock && ret == -EAGAIN)
3605 return io_setup_async_msg(req, kmsg);
Jens Axboe03b12302019-12-02 18:50:25 -07003606 if (ret == -ERESTARTSYS)
3607 ret = -EINTR;
3608 }
3609
Pavel Begunkov1e950812020-02-06 19:51:16 +03003610 if (kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07003611 kfree(kmsg->iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003612 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe03b12302019-12-02 18:50:25 -07003613 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003614 if (ret < 0)
3615 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003616 io_put_req(req);
Jens Axboe03b12302019-12-02 18:50:25 -07003617 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07003618}
3619
Pavel Begunkov014db002020-03-03 21:33:12 +03003620static int io_send(struct io_kiocb *req, bool force_nonblock)
Jens Axboefddafac2020-01-04 20:19:44 -07003621{
Jens Axboefddafac2020-01-04 20:19:44 -07003622 struct socket *sock;
3623 int ret;
3624
3625 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3626 return -EINVAL;
3627
3628 sock = sock_from_file(req->file, &ret);
3629 if (sock) {
3630 struct io_sr_msg *sr = &req->sr_msg;
3631 struct msghdr msg;
3632 struct iovec iov;
3633 unsigned flags;
3634
3635 ret = import_single_range(WRITE, sr->buf, sr->len, &iov,
3636 &msg.msg_iter);
3637 if (ret)
3638 return ret;
3639
3640 msg.msg_name = NULL;
3641 msg.msg_control = NULL;
3642 msg.msg_controllen = 0;
3643 msg.msg_namelen = 0;
3644
3645 flags = req->sr_msg.msg_flags;
3646 if (flags & MSG_DONTWAIT)
3647 req->flags |= REQ_F_NOWAIT;
3648 else if (force_nonblock)
3649 flags |= MSG_DONTWAIT;
3650
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003651 msg.msg_flags = flags;
3652 ret = sock_sendmsg(sock, &msg);
Jens Axboefddafac2020-01-04 20:19:44 -07003653 if (force_nonblock && ret == -EAGAIN)
3654 return -EAGAIN;
3655 if (ret == -ERESTARTSYS)
3656 ret = -EINTR;
3657 }
3658
3659 io_cqring_add_event(req, ret);
3660 if (ret < 0)
3661 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003662 io_put_req(req);
Jens Axboefddafac2020-01-04 20:19:44 -07003663 return 0;
Jens Axboefddafac2020-01-04 20:19:44 -07003664}
3665
Jens Axboe52de1fe2020-02-27 10:15:42 -07003666static int __io_recvmsg_copy_hdr(struct io_kiocb *req, struct io_async_ctx *io)
3667{
3668 struct io_sr_msg *sr = &req->sr_msg;
3669 struct iovec __user *uiov;
3670 size_t iov_len;
3671 int ret;
3672
3673 ret = __copy_msghdr_from_user(&io->msg.msg, sr->msg, &io->msg.uaddr,
3674 &uiov, &iov_len);
3675 if (ret)
3676 return ret;
3677
3678 if (req->flags & REQ_F_BUFFER_SELECT) {
3679 if (iov_len > 1)
3680 return -EINVAL;
3681 if (copy_from_user(io->msg.iov, uiov, sizeof(*uiov)))
3682 return -EFAULT;
3683 sr->len = io->msg.iov[0].iov_len;
3684 iov_iter_init(&io->msg.msg.msg_iter, READ, io->msg.iov, 1,
3685 sr->len);
3686 io->msg.iov = NULL;
3687 } else {
3688 ret = import_iovec(READ, uiov, iov_len, UIO_FASTIOV,
3689 &io->msg.iov, &io->msg.msg.msg_iter);
3690 if (ret > 0)
3691 ret = 0;
3692 }
3693
3694 return ret;
3695}
3696
3697#ifdef CONFIG_COMPAT
3698static int __io_compat_recvmsg_copy_hdr(struct io_kiocb *req,
3699 struct io_async_ctx *io)
3700{
3701 struct compat_msghdr __user *msg_compat;
3702 struct io_sr_msg *sr = &req->sr_msg;
3703 struct compat_iovec __user *uiov;
3704 compat_uptr_t ptr;
3705 compat_size_t len;
3706 int ret;
3707
3708 msg_compat = (struct compat_msghdr __user *) sr->msg;
3709 ret = __get_compat_msghdr(&io->msg.msg, msg_compat, &io->msg.uaddr,
3710 &ptr, &len);
3711 if (ret)
3712 return ret;
3713
3714 uiov = compat_ptr(ptr);
3715 if (req->flags & REQ_F_BUFFER_SELECT) {
3716 compat_ssize_t clen;
3717
3718 if (len > 1)
3719 return -EINVAL;
3720 if (!access_ok(uiov, sizeof(*uiov)))
3721 return -EFAULT;
3722 if (__get_user(clen, &uiov->iov_len))
3723 return -EFAULT;
3724 if (clen < 0)
3725 return -EINVAL;
3726 sr->len = io->msg.iov[0].iov_len;
3727 io->msg.iov = NULL;
3728 } else {
3729 ret = compat_import_iovec(READ, uiov, len, UIO_FASTIOV,
3730 &io->msg.iov,
3731 &io->msg.msg.msg_iter);
3732 if (ret < 0)
3733 return ret;
3734 }
3735
3736 return 0;
3737}
Jens Axboe03b12302019-12-02 18:50:25 -07003738#endif
Jens Axboe52de1fe2020-02-27 10:15:42 -07003739
3740static int io_recvmsg_copy_hdr(struct io_kiocb *req, struct io_async_ctx *io)
3741{
3742 io->msg.iov = io->msg.fast_iov;
3743
3744#ifdef CONFIG_COMPAT
3745 if (req->ctx->compat)
3746 return __io_compat_recvmsg_copy_hdr(req, io);
3747#endif
3748
3749 return __io_recvmsg_copy_hdr(req, io);
3750}
3751
Jens Axboebcda7ba2020-02-23 16:42:51 -07003752static struct io_buffer *io_recv_buffer_select(struct io_kiocb *req,
3753 int *cflags, bool needs_lock)
3754{
3755 struct io_sr_msg *sr = &req->sr_msg;
3756 struct io_buffer *kbuf;
3757
3758 if (!(req->flags & REQ_F_BUFFER_SELECT))
3759 return NULL;
3760
3761 kbuf = io_buffer_select(req, &sr->len, sr->bgid, sr->kbuf, needs_lock);
3762 if (IS_ERR(kbuf))
3763 return kbuf;
3764
3765 sr->kbuf = kbuf;
3766 req->flags |= REQ_F_BUFFER_SELECTED;
3767
3768 *cflags = kbuf->bid << IORING_CQE_BUFFER_SHIFT;
3769 *cflags |= IORING_CQE_F_BUFFER;
3770 return kbuf;
Jens Axboe03b12302019-12-02 18:50:25 -07003771}
3772
Jens Axboe3529d8c2019-12-19 18:24:38 -07003773static int io_recvmsg_prep(struct io_kiocb *req,
3774 const struct io_uring_sqe *sqe)
Jens Axboe03b12302019-12-02 18:50:25 -07003775{
Jens Axboee47293f2019-12-20 08:58:21 -07003776 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003777 struct io_async_ctx *io = req->io;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003778 int ret;
Jens Axboe06b76d42019-12-19 14:44:26 -07003779
Jens Axboe3529d8c2019-12-19 18:24:38 -07003780 sr->msg_flags = READ_ONCE(sqe->msg_flags);
3781 sr->msg = u64_to_user_ptr(READ_ONCE(sqe->addr));
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003782 sr->len = READ_ONCE(sqe->len);
Jens Axboebcda7ba2020-02-23 16:42:51 -07003783 sr->bgid = READ_ONCE(sqe->buf_group);
Jens Axboe3529d8c2019-12-19 18:24:38 -07003784
Jens Axboed8768362020-02-27 14:17:49 -07003785#ifdef CONFIG_COMPAT
3786 if (req->ctx->compat)
3787 sr->msg_flags |= MSG_CMSG_COMPAT;
3788#endif
3789
Jens Axboefddafac2020-01-04 20:19:44 -07003790 if (!io || req->opcode == IORING_OP_RECV)
Jens Axboe06b76d42019-12-19 14:44:26 -07003791 return 0;
Pavel Begunkov5f798be2020-02-08 13:28:02 +03003792 /* iovec is already imported */
3793 if (req->flags & REQ_F_NEED_CLEANUP)
3794 return 0;
Jens Axboe03b12302019-12-02 18:50:25 -07003795
Jens Axboe52de1fe2020-02-27 10:15:42 -07003796 ret = io_recvmsg_copy_hdr(req, io);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003797 if (!ret)
3798 req->flags |= REQ_F_NEED_CLEANUP;
3799 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003800}
3801
Pavel Begunkov014db002020-03-03 21:33:12 +03003802static int io_recvmsg(struct io_kiocb *req, bool force_nonblock)
Jens Axboe03b12302019-12-02 18:50:25 -07003803{
Jens Axboe0b416c32019-12-15 10:57:46 -07003804 struct io_async_msghdr *kmsg = NULL;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003805 struct socket *sock;
Jens Axboe52de1fe2020-02-27 10:15:42 -07003806 int ret, cflags = 0;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003807
3808 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3809 return -EINVAL;
3810
3811 sock = sock_from_file(req->file, &ret);
3812 if (sock) {
Jens Axboe52de1fe2020-02-27 10:15:42 -07003813 struct io_buffer *kbuf;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07003814 struct io_async_ctx io;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003815 unsigned flags;
3816
Jens Axboe03b12302019-12-02 18:50:25 -07003817 if (req->io) {
Jens Axboe0b416c32019-12-15 10:57:46 -07003818 kmsg = &req->io->msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003819 kmsg->msg.msg_name = &req->io->msg.addr;
Jens Axboe0b416c32019-12-15 10:57:46 -07003820 /* if iov is set, it's allocated already */
3821 if (!kmsg->iov)
3822 kmsg->iov = kmsg->fast_iov;
3823 kmsg->msg.msg_iter.iov = kmsg->iov;
Jens Axboe03b12302019-12-02 18:50:25 -07003824 } else {
Jens Axboe0b416c32019-12-15 10:57:46 -07003825 kmsg = &io.msg;
Jens Axboeb5379162020-02-09 11:29:15 -07003826 kmsg->msg.msg_name = &io.msg.addr;
Jens Axboe3529d8c2019-12-19 18:24:38 -07003827
Jens Axboe52de1fe2020-02-27 10:15:42 -07003828 ret = io_recvmsg_copy_hdr(req, &io);
Jens Axboe03b12302019-12-02 18:50:25 -07003829 if (ret)
Jens Axboe3529d8c2019-12-19 18:24:38 -07003830 return ret;
Jens Axboe03b12302019-12-02 18:50:25 -07003831 }
Jens Axboe0fa03c62019-04-19 13:34:07 -06003832
Jens Axboe52de1fe2020-02-27 10:15:42 -07003833 kbuf = io_recv_buffer_select(req, &cflags, !force_nonblock);
3834 if (IS_ERR(kbuf)) {
3835 return PTR_ERR(kbuf);
3836 } else if (kbuf) {
3837 kmsg->fast_iov[0].iov_base = u64_to_user_ptr(kbuf->addr);
3838 iov_iter_init(&kmsg->msg.msg_iter, READ, kmsg->iov,
3839 1, req->sr_msg.len);
3840 }
3841
Jens Axboee47293f2019-12-20 08:58:21 -07003842 flags = req->sr_msg.msg_flags;
3843 if (flags & MSG_DONTWAIT)
3844 req->flags |= REQ_F_NOWAIT;
3845 else if (force_nonblock)
3846 flags |= MSG_DONTWAIT;
3847
3848 ret = __sys_recvmsg_sock(sock, &kmsg->msg, req->sr_msg.msg,
3849 kmsg->uaddr, flags);
Pavel Begunkov02d27d82020-02-28 10:36:36 +03003850 if (force_nonblock && ret == -EAGAIN)
3851 return io_setup_async_msg(req, kmsg);
Jens Axboe441cdbd2019-12-02 18:49:10 -07003852 if (ret == -ERESTARTSYS)
3853 ret = -EINTR;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003854 }
3855
Pavel Begunkov1e950812020-02-06 19:51:16 +03003856 if (kmsg && kmsg->iov != kmsg->fast_iov)
Jens Axboe0b416c32019-12-15 10:57:46 -07003857 kfree(kmsg->iov);
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03003858 req->flags &= ~REQ_F_NEED_CLEANUP;
Jens Axboe52de1fe2020-02-27 10:15:42 -07003859 __io_cqring_add_event(req, ret, cflags);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003860 if (ret < 0)
3861 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003862 io_put_req(req);
Jens Axboe0fa03c62019-04-19 13:34:07 -06003863 return 0;
Jens Axboe0fa03c62019-04-19 13:34:07 -06003864}
3865
Pavel Begunkov014db002020-03-03 21:33:12 +03003866static int io_recv(struct io_kiocb *req, bool force_nonblock)
Jens Axboefddafac2020-01-04 20:19:44 -07003867{
Jens Axboebcda7ba2020-02-23 16:42:51 -07003868 struct io_buffer *kbuf = NULL;
Jens Axboefddafac2020-01-04 20:19:44 -07003869 struct socket *sock;
Jens Axboebcda7ba2020-02-23 16:42:51 -07003870 int ret, cflags = 0;
Jens Axboefddafac2020-01-04 20:19:44 -07003871
3872 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
3873 return -EINVAL;
3874
3875 sock = sock_from_file(req->file, &ret);
3876 if (sock) {
3877 struct io_sr_msg *sr = &req->sr_msg;
Jens Axboebcda7ba2020-02-23 16:42:51 -07003878 void __user *buf = sr->buf;
Jens Axboefddafac2020-01-04 20:19:44 -07003879 struct msghdr msg;
3880 struct iovec iov;
3881 unsigned flags;
3882
Jens Axboebcda7ba2020-02-23 16:42:51 -07003883 kbuf = io_recv_buffer_select(req, &cflags, !force_nonblock);
3884 if (IS_ERR(kbuf))
3885 return PTR_ERR(kbuf);
3886 else if (kbuf)
3887 buf = u64_to_user_ptr(kbuf->addr);
Jens Axboefddafac2020-01-04 20:19:44 -07003888
Jens Axboebcda7ba2020-02-23 16:42:51 -07003889 ret = import_single_range(READ, buf, sr->len, &iov,
3890 &msg.msg_iter);
3891 if (ret) {
3892 kfree(kbuf);
3893 return ret;
3894 }
3895
3896 req->flags |= REQ_F_NEED_CLEANUP;
Jens Axboefddafac2020-01-04 20:19:44 -07003897 msg.msg_name = NULL;
3898 msg.msg_control = NULL;
3899 msg.msg_controllen = 0;
3900 msg.msg_namelen = 0;
3901 msg.msg_iocb = NULL;
3902 msg.msg_flags = 0;
3903
3904 flags = req->sr_msg.msg_flags;
3905 if (flags & MSG_DONTWAIT)
3906 req->flags |= REQ_F_NOWAIT;
3907 else if (force_nonblock)
3908 flags |= MSG_DONTWAIT;
3909
Jens Axboe0b7b21e2020-01-31 08:34:59 -07003910 ret = sock_recvmsg(sock, &msg, flags);
Jens Axboefddafac2020-01-04 20:19:44 -07003911 if (force_nonblock && ret == -EAGAIN)
3912 return -EAGAIN;
3913 if (ret == -ERESTARTSYS)
3914 ret = -EINTR;
3915 }
3916
Jens Axboebcda7ba2020-02-23 16:42:51 -07003917 kfree(kbuf);
3918 req->flags &= ~REQ_F_NEED_CLEANUP;
3919 __io_cqring_add_event(req, ret, cflags);
Jens Axboefddafac2020-01-04 20:19:44 -07003920 if (ret < 0)
3921 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03003922 io_put_req(req);
Jens Axboefddafac2020-01-04 20:19:44 -07003923 return 0;
Jens Axboefddafac2020-01-04 20:19:44 -07003924}
3925
Jens Axboe3529d8c2019-12-19 18:24:38 -07003926static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003927{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003928 struct io_accept *accept = &req->accept;
3929
Jens Axboe17f2fe32019-10-17 14:42:58 -06003930 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3931 return -EINVAL;
Hrvoje Zeba8042d6c2019-11-25 14:40:22 -05003932 if (sqe->ioprio || sqe->len || sqe->buf_index)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003933 return -EINVAL;
3934
Jens Axboed55e5f52019-12-11 16:12:15 -07003935 accept->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
3936 accept->addr_len = u64_to_user_ptr(READ_ONCE(sqe->addr2));
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003937 accept->flags = READ_ONCE(sqe->accept_flags);
Jens Axboe09952e32020-03-19 20:16:56 -06003938 accept->nofile = rlimit(RLIMIT_NOFILE);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003939 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003940}
Jens Axboe17f2fe32019-10-17 14:42:58 -06003941
Pavel Begunkov014db002020-03-03 21:33:12 +03003942static int __io_accept(struct io_kiocb *req, bool force_nonblock)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003943{
3944 struct io_accept *accept = &req->accept;
3945 unsigned file_flags;
3946 int ret;
3947
3948 file_flags = force_nonblock ? O_NONBLOCK : 0;
3949 ret = __sys_accept4_file(req->file, file_flags, accept->addr,
Jens Axboe09952e32020-03-19 20:16:56 -06003950 accept->addr_len, accept->flags,
3951 accept->nofile);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003952 if (ret == -EAGAIN && force_nonblock)
Jens Axboe17f2fe32019-10-17 14:42:58 -06003953 return -EAGAIN;
Jens Axboe8e3cca12019-11-09 19:52:33 -07003954 if (ret == -ERESTARTSYS)
3955 ret = -EINTR;
Jens Axboe4e88d6e2019-12-07 20:59:47 -07003956 if (ret < 0)
3957 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07003958 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03003959 io_put_req(req);
Jens Axboe17f2fe32019-10-17 14:42:58 -06003960 return 0;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003961}
3962
3963static void io_accept_finish(struct io_wq_work **workptr)
3964{
3965 struct io_kiocb *req = container_of(*workptr, struct io_kiocb, work);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003966
3967 if (io_req_cancelled(req))
3968 return;
Pavel Begunkov014db002020-03-03 21:33:12 +03003969 __io_accept(req, false);
Pavel Begunkove9fd9392020-03-04 16:14:12 +03003970 io_steal_work(req, workptr);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003971}
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003972
Pavel Begunkov014db002020-03-03 21:33:12 +03003973static int io_accept(struct io_kiocb *req, bool force_nonblock)
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003974{
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003975 int ret;
3976
Pavel Begunkov014db002020-03-03 21:33:12 +03003977 ret = __io_accept(req, force_nonblock);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003978 if (ret == -EAGAIN && force_nonblock) {
3979 req->work.func = io_accept_finish;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07003980 return -EAGAIN;
3981 }
3982 return 0;
Jens Axboe17f2fe32019-10-17 14:42:58 -06003983}
3984
Jens Axboe3529d8c2019-12-19 18:24:38 -07003985static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboef499a022019-12-02 16:28:46 -07003986{
Jens Axboe3529d8c2019-12-19 18:24:38 -07003987 struct io_connect *conn = &req->connect;
3988 struct io_async_ctx *io = req->io;
Jens Axboef499a022019-12-02 16:28:46 -07003989
Jens Axboe3fbb51c2019-12-20 08:51:52 -07003990 if (unlikely(req->ctx->flags & (IORING_SETUP_IOPOLL|IORING_SETUP_SQPOLL)))
3991 return -EINVAL;
3992 if (sqe->ioprio || sqe->len || sqe->buf_index || sqe->rw_flags)
3993 return -EINVAL;
3994
Jens Axboe3529d8c2019-12-19 18:24:38 -07003995 conn->addr = u64_to_user_ptr(READ_ONCE(sqe->addr));
3996 conn->addr_len = READ_ONCE(sqe->addr2);
3997
3998 if (!io)
3999 return 0;
4000
4001 return move_addr_to_kernel(conn->addr, conn->addr_len,
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004002 &io->connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07004003}
4004
Pavel Begunkov014db002020-03-03 21:33:12 +03004005static int io_connect(struct io_kiocb *req, bool force_nonblock)
Jens Axboef8e85cf2019-11-23 14:24:24 -07004006{
Jens Axboef499a022019-12-02 16:28:46 -07004007 struct io_async_ctx __io, *io;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004008 unsigned file_flags;
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004009 int ret;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004010
Jens Axboef499a022019-12-02 16:28:46 -07004011 if (req->io) {
4012 io = req->io;
4013 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07004014 ret = move_addr_to_kernel(req->connect.addr,
4015 req->connect.addr_len,
4016 &__io.connect.address);
Jens Axboef499a022019-12-02 16:28:46 -07004017 if (ret)
4018 goto out;
4019 io = &__io;
4020 }
4021
Jens Axboe3fbb51c2019-12-20 08:51:52 -07004022 file_flags = force_nonblock ? O_NONBLOCK : 0;
4023
4024 ret = __sys_connect_file(req->file, &io->connect.address,
4025 req->connect.addr_len, file_flags);
Jens Axboe87f80d62019-12-03 11:23:54 -07004026 if ((ret == -EAGAIN || ret == -EINPROGRESS) && force_nonblock) {
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004027 if (req->io)
4028 return -EAGAIN;
4029 if (io_alloc_async_ctx(req)) {
Jens Axboef499a022019-12-02 16:28:46 -07004030 ret = -ENOMEM;
4031 goto out;
4032 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004033 memcpy(&req->io->connect, &__io.connect, sizeof(__io.connect));
Jens Axboef8e85cf2019-11-23 14:24:24 -07004034 return -EAGAIN;
Jens Axboef499a022019-12-02 16:28:46 -07004035 }
Jens Axboef8e85cf2019-11-23 14:24:24 -07004036 if (ret == -ERESTARTSYS)
4037 ret = -EINTR;
Jens Axboef499a022019-12-02 16:28:46 -07004038out:
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004039 if (ret < 0)
4040 req_set_fail_links(req);
Jens Axboef8e85cf2019-11-23 14:24:24 -07004041 io_cqring_add_event(req, ret);
Pavel Begunkov014db002020-03-03 21:33:12 +03004042 io_put_req(req);
Jens Axboef8e85cf2019-11-23 14:24:24 -07004043 return 0;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004044}
YueHaibing469956e2020-03-04 15:53:52 +08004045#else /* !CONFIG_NET */
4046static int io_sendmsg_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4047{
Jens Axboef8e85cf2019-11-23 14:24:24 -07004048 return -EOPNOTSUPP;
Jens Axboef8e85cf2019-11-23 14:24:24 -07004049}
4050
YueHaibing469956e2020-03-04 15:53:52 +08004051static int io_sendmsg(struct io_kiocb *req, bool force_nonblock)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004052{
YueHaibing469956e2020-03-04 15:53:52 +08004053 return -EOPNOTSUPP;
4054}
4055
4056static int io_send(struct io_kiocb *req, bool force_nonblock)
4057{
4058 return -EOPNOTSUPP;
4059}
4060
4061static int io_recvmsg_prep(struct io_kiocb *req,
4062 const struct io_uring_sqe *sqe)
4063{
4064 return -EOPNOTSUPP;
4065}
4066
4067static int io_recvmsg(struct io_kiocb *req, bool force_nonblock)
4068{
4069 return -EOPNOTSUPP;
4070}
4071
4072static int io_recv(struct io_kiocb *req, bool force_nonblock)
4073{
4074 return -EOPNOTSUPP;
4075}
4076
4077static int io_accept_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4078{
4079 return -EOPNOTSUPP;
4080}
4081
4082static int io_accept(struct io_kiocb *req, bool force_nonblock)
4083{
4084 return -EOPNOTSUPP;
4085}
4086
4087static int io_connect_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
4088{
4089 return -EOPNOTSUPP;
4090}
4091
4092static int io_connect(struct io_kiocb *req, bool force_nonblock)
4093{
4094 return -EOPNOTSUPP;
4095}
4096#endif /* CONFIG_NET */
Jens Axboe2b188cc2019-01-07 10:46:33 -07004097
Jens Axboed7718a92020-02-14 22:23:12 -07004098struct io_poll_table {
4099 struct poll_table_struct pt;
4100 struct io_kiocb *req;
4101 int error;
4102};
4103
4104static void __io_queue_proc(struct io_poll_iocb *poll, struct io_poll_table *pt,
4105 struct wait_queue_head *head)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004106{
Jens Axboed7718a92020-02-14 22:23:12 -07004107 if (unlikely(poll->head)) {
4108 pt->error = -EINVAL;
4109 return;
4110 }
4111
4112 pt->error = 0;
4113 poll->head = head;
4114 add_wait_queue(head, &poll->wait);
4115}
4116
4117static void io_async_queue_proc(struct file *file, struct wait_queue_head *head,
4118 struct poll_table_struct *p)
4119{
4120 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
4121
4122 __io_queue_proc(&pt->req->apoll->poll, pt, head);
4123}
4124
4125static int __io_async_wake(struct io_kiocb *req, struct io_poll_iocb *poll,
4126 __poll_t mask, task_work_func_t func)
4127{
4128 struct task_struct *tsk;
Jens Axboeaa96bf82020-04-03 11:26:26 -06004129 int ret;
Jens Axboed7718a92020-02-14 22:23:12 -07004130
4131 /* for instances that support it check for an event match first: */
4132 if (mask && !(mask & poll->events))
4133 return 0;
4134
4135 trace_io_uring_task_add(req->ctx, req->opcode, req->user_data, mask);
4136
4137 list_del_init(&poll->wait.entry);
4138
4139 tsk = req->task;
4140 req->result = mask;
4141 init_task_work(&req->task_work, func);
4142 /*
Jens Axboeaa96bf82020-04-03 11:26:26 -06004143 * If this fails, then the task is exiting. Punt to one of the io-wq
4144 * threads to ensure the work gets run, we can't always rely on exit
4145 * cancelation taking care of this.
Jens Axboed7718a92020-02-14 22:23:12 -07004146 */
Jens Axboeaa96bf82020-04-03 11:26:26 -06004147 ret = task_work_add(tsk, &req->task_work, true);
4148 if (unlikely(ret)) {
4149 tsk = io_wq_get_task(req->ctx->io_wq);
4150 task_work_add(tsk, &req->task_work, true);
4151 }
Jens Axboed7718a92020-02-14 22:23:12 -07004152 wake_up_process(tsk);
4153 return 1;
4154}
4155
4156static void io_async_task_func(struct callback_head *cb)
4157{
4158 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
4159 struct async_poll *apoll = req->apoll;
4160 struct io_ring_ctx *ctx = req->ctx;
4161
4162 trace_io_uring_task_run(req->ctx, req->opcode, req->user_data);
4163
4164 WARN_ON_ONCE(!list_empty(&req->apoll->poll.wait.entry));
4165
4166 if (hash_hashed(&req->hash_node)) {
4167 spin_lock_irq(&ctx->completion_lock);
4168 hash_del(&req->hash_node);
4169 spin_unlock_irq(&ctx->completion_lock);
4170 }
4171
4172 /* restore ->work in case we need to retry again */
4173 memcpy(&req->work, &apoll->work, sizeof(req->work));
4174
4175 __set_current_state(TASK_RUNNING);
4176 mutex_lock(&ctx->uring_lock);
4177 __io_queue_sqe(req, NULL);
4178 mutex_unlock(&ctx->uring_lock);
4179
4180 kfree(apoll);
4181}
4182
4183static int io_async_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
4184 void *key)
4185{
4186 struct io_kiocb *req = wait->private;
4187 struct io_poll_iocb *poll = &req->apoll->poll;
4188
4189 trace_io_uring_poll_wake(req->ctx, req->opcode, req->user_data,
4190 key_to_poll(key));
4191
4192 return __io_async_wake(req, poll, key_to_poll(key), io_async_task_func);
4193}
4194
4195static void io_poll_req_insert(struct io_kiocb *req)
4196{
4197 struct io_ring_ctx *ctx = req->ctx;
4198 struct hlist_head *list;
4199
4200 list = &ctx->cancel_hash[hash_long(req->user_data, ctx->cancel_hash_bits)];
4201 hlist_add_head(&req->hash_node, list);
4202}
4203
4204static __poll_t __io_arm_poll_handler(struct io_kiocb *req,
4205 struct io_poll_iocb *poll,
4206 struct io_poll_table *ipt, __poll_t mask,
4207 wait_queue_func_t wake_func)
4208 __acquires(&ctx->completion_lock)
4209{
4210 struct io_ring_ctx *ctx = req->ctx;
4211 bool cancel = false;
4212
4213 poll->file = req->file;
4214 poll->head = NULL;
4215 poll->done = poll->canceled = false;
4216 poll->events = mask;
4217
4218 ipt->pt._key = mask;
4219 ipt->req = req;
4220 ipt->error = -EINVAL;
4221
4222 INIT_LIST_HEAD(&poll->wait.entry);
4223 init_waitqueue_func_entry(&poll->wait, wake_func);
4224 poll->wait.private = req;
4225
4226 mask = vfs_poll(req->file, &ipt->pt) & poll->events;
4227
4228 spin_lock_irq(&ctx->completion_lock);
4229 if (likely(poll->head)) {
4230 spin_lock(&poll->head->lock);
4231 if (unlikely(list_empty(&poll->wait.entry))) {
4232 if (ipt->error)
4233 cancel = true;
4234 ipt->error = 0;
4235 mask = 0;
4236 }
4237 if (mask || ipt->error)
4238 list_del_init(&poll->wait.entry);
4239 else if (cancel)
4240 WRITE_ONCE(poll->canceled, true);
4241 else if (!poll->done) /* actually waiting for an event */
4242 io_poll_req_insert(req);
4243 spin_unlock(&poll->head->lock);
4244 }
4245
4246 return mask;
4247}
4248
4249static bool io_arm_poll_handler(struct io_kiocb *req)
4250{
4251 const struct io_op_def *def = &io_op_defs[req->opcode];
4252 struct io_ring_ctx *ctx = req->ctx;
4253 struct async_poll *apoll;
4254 struct io_poll_table ipt;
4255 __poll_t mask, ret;
4256
4257 if (!req->file || !file_can_poll(req->file))
4258 return false;
4259 if (req->flags & (REQ_F_MUST_PUNT | REQ_F_POLLED))
4260 return false;
4261 if (!def->pollin && !def->pollout)
4262 return false;
4263
4264 apoll = kmalloc(sizeof(*apoll), GFP_ATOMIC);
4265 if (unlikely(!apoll))
4266 return false;
4267
4268 req->flags |= REQ_F_POLLED;
4269 memcpy(&apoll->work, &req->work, sizeof(req->work));
4270
Jens Axboe3537b6a2020-04-03 11:19:06 -06004271 get_task_struct(current);
Jens Axboed7718a92020-02-14 22:23:12 -07004272 req->task = current;
4273 req->apoll = apoll;
4274 INIT_HLIST_NODE(&req->hash_node);
4275
Nathan Chancellor8755d972020-03-02 16:01:19 -07004276 mask = 0;
Jens Axboed7718a92020-02-14 22:23:12 -07004277 if (def->pollin)
Nathan Chancellor8755d972020-03-02 16:01:19 -07004278 mask |= POLLIN | POLLRDNORM;
Jens Axboed7718a92020-02-14 22:23:12 -07004279 if (def->pollout)
4280 mask |= POLLOUT | POLLWRNORM;
4281 mask |= POLLERR | POLLPRI;
4282
4283 ipt.pt._qproc = io_async_queue_proc;
4284
4285 ret = __io_arm_poll_handler(req, &apoll->poll, &ipt, mask,
4286 io_async_wake);
4287 if (ret) {
4288 ipt.error = 0;
4289 apoll->poll.done = true;
4290 spin_unlock_irq(&ctx->completion_lock);
4291 memcpy(&req->work, &apoll->work, sizeof(req->work));
4292 kfree(apoll);
4293 return false;
4294 }
4295 spin_unlock_irq(&ctx->completion_lock);
4296 trace_io_uring_poll_arm(ctx, req->opcode, req->user_data, mask,
4297 apoll->poll.events);
4298 return true;
4299}
4300
4301static bool __io_poll_remove_one(struct io_kiocb *req,
4302 struct io_poll_iocb *poll)
4303{
Jens Axboeb41e9852020-02-17 09:52:41 -07004304 bool do_complete = false;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004305
4306 spin_lock(&poll->head->lock);
4307 WRITE_ONCE(poll->canceled, true);
Jens Axboe392edb42019-12-09 17:52:20 -07004308 if (!list_empty(&poll->wait.entry)) {
4309 list_del_init(&poll->wait.entry);
Jens Axboeb41e9852020-02-17 09:52:41 -07004310 do_complete = true;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004311 }
4312 spin_unlock(&poll->head->lock);
Jens Axboed7718a92020-02-14 22:23:12 -07004313 return do_complete;
4314}
4315
4316static bool io_poll_remove_one(struct io_kiocb *req)
4317{
4318 bool do_complete;
4319
4320 if (req->opcode == IORING_OP_POLL_ADD) {
4321 do_complete = __io_poll_remove_one(req, &req->poll);
4322 } else {
4323 /* non-poll requests have submit ref still */
4324 do_complete = __io_poll_remove_one(req, &req->apoll->poll);
4325 if (do_complete)
4326 io_put_req(req);
4327 }
4328
Jens Axboe78076bb2019-12-04 19:56:40 -07004329 hash_del(&req->hash_node);
Jens Axboed7718a92020-02-14 22:23:12 -07004330
Jens Axboeb41e9852020-02-17 09:52:41 -07004331 if (do_complete) {
4332 io_cqring_fill_event(req, -ECANCELED);
4333 io_commit_cqring(req->ctx);
4334 req->flags |= REQ_F_COMP_LOCKED;
4335 io_put_req(req);
4336 }
4337
4338 return do_complete;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004339}
4340
4341static void io_poll_remove_all(struct io_ring_ctx *ctx)
4342{
Jens Axboe78076bb2019-12-04 19:56:40 -07004343 struct hlist_node *tmp;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004344 struct io_kiocb *req;
Jens Axboe78076bb2019-12-04 19:56:40 -07004345 int i;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004346
4347 spin_lock_irq(&ctx->completion_lock);
Jens Axboe78076bb2019-12-04 19:56:40 -07004348 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
4349 struct hlist_head *list;
4350
4351 list = &ctx->cancel_hash[i];
4352 hlist_for_each_entry_safe(req, tmp, list, hash_node)
4353 io_poll_remove_one(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004354 }
4355 spin_unlock_irq(&ctx->completion_lock);
Jens Axboeb41e9852020-02-17 09:52:41 -07004356
4357 io_cqring_ev_posted(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004358}
4359
Jens Axboe47f46762019-11-09 17:43:02 -07004360static int io_poll_cancel(struct io_ring_ctx *ctx, __u64 sqe_addr)
4361{
Jens Axboe78076bb2019-12-04 19:56:40 -07004362 struct hlist_head *list;
Jens Axboe47f46762019-11-09 17:43:02 -07004363 struct io_kiocb *req;
4364
Jens Axboe78076bb2019-12-04 19:56:40 -07004365 list = &ctx->cancel_hash[hash_long(sqe_addr, ctx->cancel_hash_bits)];
4366 hlist_for_each_entry(req, list, hash_node) {
Jens Axboeb41e9852020-02-17 09:52:41 -07004367 if (sqe_addr != req->user_data)
4368 continue;
4369 if (io_poll_remove_one(req))
Jens Axboeeac406c2019-11-14 12:09:58 -07004370 return 0;
Jens Axboeb41e9852020-02-17 09:52:41 -07004371 return -EALREADY;
Jens Axboe47f46762019-11-09 17:43:02 -07004372 }
4373
4374 return -ENOENT;
4375}
4376
Jens Axboe3529d8c2019-12-19 18:24:38 -07004377static int io_poll_remove_prep(struct io_kiocb *req,
4378 const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004379{
Jens Axboe221c5eb2019-01-17 09:41:58 -07004380 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4381 return -EINVAL;
4382 if (sqe->ioprio || sqe->off || sqe->len || sqe->buf_index ||
4383 sqe->poll_events)
4384 return -EINVAL;
4385
Jens Axboe0969e782019-12-17 18:40:57 -07004386 req->poll.addr = READ_ONCE(sqe->addr);
Jens Axboe0969e782019-12-17 18:40:57 -07004387 return 0;
4388}
4389
4390/*
4391 * Find a running poll command that matches one specified in sqe->addr,
4392 * and remove it if found.
4393 */
4394static int io_poll_remove(struct io_kiocb *req)
4395{
4396 struct io_ring_ctx *ctx = req->ctx;
4397 u64 addr;
4398 int ret;
4399
Jens Axboe0969e782019-12-17 18:40:57 -07004400 addr = req->poll.addr;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004401 spin_lock_irq(&ctx->completion_lock);
Jens Axboe0969e782019-12-17 18:40:57 -07004402 ret = io_poll_cancel(ctx, addr);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004403 spin_unlock_irq(&ctx->completion_lock);
4404
Jens Axboe78e19bb2019-11-06 15:21:34 -07004405 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004406 if (ret < 0)
4407 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06004408 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004409 return 0;
4410}
4411
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004412static void io_poll_complete(struct io_kiocb *req, __poll_t mask, int error)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004413{
Jackie Liua197f662019-11-08 08:09:12 -07004414 struct io_ring_ctx *ctx = req->ctx;
4415
Jens Axboe8c838782019-03-12 15:48:16 -06004416 req->poll.done = true;
Pavel Begunkovb0a20342020-02-28 10:36:35 +03004417 io_cqring_fill_event(req, error ? error : mangle_poll(mask));
Jens Axboe8c838782019-03-12 15:48:16 -06004418 io_commit_cqring(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004419}
4420
Jens Axboeb41e9852020-02-17 09:52:41 -07004421static void io_poll_task_handler(struct io_kiocb *req, struct io_kiocb **nxt)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004422{
Jens Axboe221c5eb2019-01-17 09:41:58 -07004423 struct io_ring_ctx *ctx = req->ctx;
Jens Axboea6ba6322020-04-03 11:10:14 -06004424 struct io_poll_iocb *poll = &req->poll;
4425
4426 if (!req->result && !READ_ONCE(poll->canceled)) {
4427 struct poll_table_struct pt = { ._key = poll->events };
4428
4429 req->result = vfs_poll(req->file, &pt) & poll->events;
4430 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07004431
Jens Axboe221c5eb2019-01-17 09:41:58 -07004432 spin_lock_irq(&ctx->completion_lock);
Jens Axboea6ba6322020-04-03 11:10:14 -06004433 if (!req->result && !READ_ONCE(poll->canceled)) {
4434 add_wait_queue(poll->head, &poll->wait);
4435 spin_unlock_irq(&ctx->completion_lock);
4436 return;
4437 }
Jens Axboe78076bb2019-12-04 19:56:40 -07004438 hash_del(&req->hash_node);
Jens Axboeb41e9852020-02-17 09:52:41 -07004439 io_poll_complete(req, req->result, 0);
4440 req->flags |= REQ_F_COMP_LOCKED;
4441 io_put_req_find_next(req, nxt);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004442 spin_unlock_irq(&ctx->completion_lock);
4443
Jens Axboe8c838782019-03-12 15:48:16 -06004444 io_cqring_ev_posted(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004445}
4446
Jens Axboeb41e9852020-02-17 09:52:41 -07004447static void io_poll_task_func(struct callback_head *cb)
Jens Axboee94f1412019-12-19 12:06:02 -07004448{
Jens Axboeb41e9852020-02-17 09:52:41 -07004449 struct io_kiocb *req = container_of(cb, struct io_kiocb, task_work);
4450 struct io_kiocb *nxt = NULL;
Jens Axboee94f1412019-12-19 12:06:02 -07004451
Jens Axboeb41e9852020-02-17 09:52:41 -07004452 io_poll_task_handler(req, &nxt);
Jens Axboed7718a92020-02-14 22:23:12 -07004453 if (nxt) {
4454 struct io_ring_ctx *ctx = nxt->ctx;
Jens Axboee94f1412019-12-19 12:06:02 -07004455
Jens Axboed7718a92020-02-14 22:23:12 -07004456 mutex_lock(&ctx->uring_lock);
Jens Axboeb41e9852020-02-17 09:52:41 -07004457 __io_queue_sqe(nxt, NULL);
Jens Axboed7718a92020-02-14 22:23:12 -07004458 mutex_unlock(&ctx->uring_lock);
Jens Axboee94f1412019-12-19 12:06:02 -07004459 }
Jens Axboef0b493e2020-02-01 21:30:11 -07004460}
4461
Jens Axboe221c5eb2019-01-17 09:41:58 -07004462static int io_poll_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
4463 void *key)
4464{
Jens Axboec2f2eb72020-02-10 09:07:05 -07004465 struct io_kiocb *req = wait->private;
4466 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004467
Jens Axboed7718a92020-02-14 22:23:12 -07004468 return __io_async_wake(req, poll, key_to_poll(key), io_poll_task_func);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004469}
4470
Jens Axboe221c5eb2019-01-17 09:41:58 -07004471static void io_poll_queue_proc(struct file *file, struct wait_queue_head *head,
4472 struct poll_table_struct *p)
4473{
4474 struct io_poll_table *pt = container_of(p, struct io_poll_table, pt);
4475
Jens Axboed7718a92020-02-14 22:23:12 -07004476 __io_queue_proc(&pt->req->poll, pt, head);
Jens Axboeeac406c2019-11-14 12:09:58 -07004477}
4478
Jens Axboe3529d8c2019-12-19 18:24:38 -07004479static int io_poll_add_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe221c5eb2019-01-17 09:41:58 -07004480{
4481 struct io_poll_iocb *poll = &req->poll;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004482 u16 events;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004483
4484 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4485 return -EINVAL;
4486 if (sqe->addr || sqe->ioprio || sqe->off || sqe->len || sqe->buf_index)
4487 return -EINVAL;
Jens Axboe09bb8392019-03-13 12:39:28 -06004488 if (!poll->file)
4489 return -EBADF;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004490
Jens Axboe221c5eb2019-01-17 09:41:58 -07004491 events = READ_ONCE(sqe->poll_events);
4492 poll->events = demangle_poll(events) | EPOLLERR | EPOLLHUP;
Jens Axboeb41e9852020-02-17 09:52:41 -07004493
Jens Axboe3537b6a2020-04-03 11:19:06 -06004494 get_task_struct(current);
Jens Axboeb41e9852020-02-17 09:52:41 -07004495 req->task = current;
Jens Axboe0969e782019-12-17 18:40:57 -07004496 return 0;
4497}
4498
Pavel Begunkov014db002020-03-03 21:33:12 +03004499static int io_poll_add(struct io_kiocb *req)
Jens Axboe0969e782019-12-17 18:40:57 -07004500{
4501 struct io_poll_iocb *poll = &req->poll;
4502 struct io_ring_ctx *ctx = req->ctx;
4503 struct io_poll_table ipt;
Jens Axboe0969e782019-12-17 18:40:57 -07004504 __poll_t mask;
Jens Axboe0969e782019-12-17 18:40:57 -07004505
Jens Axboe78076bb2019-12-04 19:56:40 -07004506 INIT_HLIST_NODE(&req->hash_node);
Jens Axboe36703242019-07-25 10:20:18 -06004507 INIT_LIST_HEAD(&req->list);
Jens Axboed7718a92020-02-14 22:23:12 -07004508 ipt.pt._qproc = io_poll_queue_proc;
Jens Axboe36703242019-07-25 10:20:18 -06004509
Jens Axboed7718a92020-02-14 22:23:12 -07004510 mask = __io_arm_poll_handler(req, &req->poll, &ipt, poll->events,
4511 io_poll_wake);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004512
Jens Axboe8c838782019-03-12 15:48:16 -06004513 if (mask) { /* no async, we'd stolen it */
Jens Axboe8c838782019-03-12 15:48:16 -06004514 ipt.error = 0;
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004515 io_poll_complete(req, mask, 0);
Jens Axboe8c838782019-03-12 15:48:16 -06004516 }
Jens Axboe221c5eb2019-01-17 09:41:58 -07004517 spin_unlock_irq(&ctx->completion_lock);
4518
Jens Axboe8c838782019-03-12 15:48:16 -06004519 if (mask) {
4520 io_cqring_ev_posted(ctx);
Pavel Begunkov014db002020-03-03 21:33:12 +03004521 io_put_req(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07004522 }
Jens Axboe8c838782019-03-12 15:48:16 -06004523 return ipt.error;
Jens Axboe221c5eb2019-01-17 09:41:58 -07004524}
4525
Jens Axboe5262f562019-09-17 12:26:57 -06004526static enum hrtimer_restart io_timeout_fn(struct hrtimer *timer)
4527{
Jens Axboead8a48a2019-11-15 08:49:11 -07004528 struct io_timeout_data *data = container_of(timer,
4529 struct io_timeout_data, timer);
4530 struct io_kiocb *req = data->req;
4531 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe5262f562019-09-17 12:26:57 -06004532 unsigned long flags;
4533
Jens Axboe5262f562019-09-17 12:26:57 -06004534 atomic_inc(&ctx->cq_timeouts);
4535
4536 spin_lock_irqsave(&ctx->completion_lock, flags);
zhangyi (F)ef036812019-10-23 15:10:08 +08004537 /*
Jens Axboe11365042019-10-16 09:08:32 -06004538 * We could be racing with timeout deletion. If the list is empty,
4539 * then timeout lookup already found it and will be handling it.
zhangyi (F)ef036812019-10-23 15:10:08 +08004540 */
Jens Axboe842f9612019-10-29 12:34:10 -06004541 if (!list_empty(&req->list)) {
Jens Axboe11365042019-10-16 09:08:32 -06004542 struct io_kiocb *prev;
Jens Axboe5262f562019-09-17 12:26:57 -06004543
Jens Axboe11365042019-10-16 09:08:32 -06004544 /*
4545 * Adjust the reqs sequence before the current one because it
Brian Gianforcarod195a662019-12-13 03:09:50 -08004546 * will consume a slot in the cq_ring and the cq_tail
Jens Axboe11365042019-10-16 09:08:32 -06004547 * pointer will be increased, otherwise other timeout reqs may
4548 * return in advance without waiting for enough wait_nr.
4549 */
4550 prev = req;
4551 list_for_each_entry_continue_reverse(prev, &ctx->timeout_list, list)
4552 prev->sequence++;
Jens Axboe11365042019-10-16 09:08:32 -06004553 list_del_init(&req->list);
Jens Axboe11365042019-10-16 09:08:32 -06004554 }
Jens Axboe842f9612019-10-29 12:34:10 -06004555
Jens Axboe78e19bb2019-11-06 15:21:34 -07004556 io_cqring_fill_event(req, -ETIME);
Jens Axboe5262f562019-09-17 12:26:57 -06004557 io_commit_cqring(ctx);
4558 spin_unlock_irqrestore(&ctx->completion_lock, flags);
4559
4560 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004561 req_set_fail_links(req);
Jens Axboe5262f562019-09-17 12:26:57 -06004562 io_put_req(req);
4563 return HRTIMER_NORESTART;
4564}
4565
Jens Axboe47f46762019-11-09 17:43:02 -07004566static int io_timeout_cancel(struct io_ring_ctx *ctx, __u64 user_data)
4567{
4568 struct io_kiocb *req;
4569 int ret = -ENOENT;
4570
4571 list_for_each_entry(req, &ctx->timeout_list, list) {
4572 if (user_data == req->user_data) {
4573 list_del_init(&req->list);
4574 ret = 0;
4575 break;
4576 }
4577 }
4578
4579 if (ret == -ENOENT)
4580 return ret;
4581
Jens Axboe2d283902019-12-04 11:08:05 -07004582 ret = hrtimer_try_to_cancel(&req->io->timeout.timer);
Jens Axboe47f46762019-11-09 17:43:02 -07004583 if (ret == -1)
4584 return -EALREADY;
4585
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004586 req_set_fail_links(req);
Jens Axboe47f46762019-11-09 17:43:02 -07004587 io_cqring_fill_event(req, -ECANCELED);
4588 io_put_req(req);
4589 return 0;
4590}
4591
Jens Axboe3529d8c2019-12-19 18:24:38 -07004592static int io_timeout_remove_prep(struct io_kiocb *req,
4593 const struct io_uring_sqe *sqe)
Jens Axboeb29472e2019-12-17 18:50:29 -07004594{
Jens Axboeb29472e2019-12-17 18:50:29 -07004595 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
4596 return -EINVAL;
4597 if (sqe->flags || sqe->ioprio || sqe->buf_index || sqe->len)
4598 return -EINVAL;
4599
4600 req->timeout.addr = READ_ONCE(sqe->addr);
4601 req->timeout.flags = READ_ONCE(sqe->timeout_flags);
4602 if (req->timeout.flags)
4603 return -EINVAL;
4604
Jens Axboeb29472e2019-12-17 18:50:29 -07004605 return 0;
4606}
4607
Jens Axboe11365042019-10-16 09:08:32 -06004608/*
4609 * Remove or update an existing timeout command
4610 */
Jens Axboefc4df992019-12-10 14:38:45 -07004611static int io_timeout_remove(struct io_kiocb *req)
Jens Axboe11365042019-10-16 09:08:32 -06004612{
4613 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe47f46762019-11-09 17:43:02 -07004614 int ret;
Jens Axboe11365042019-10-16 09:08:32 -06004615
Jens Axboe11365042019-10-16 09:08:32 -06004616 spin_lock_irq(&ctx->completion_lock);
Jens Axboeb29472e2019-12-17 18:50:29 -07004617 ret = io_timeout_cancel(ctx, req->timeout.addr);
Jens Axboe11365042019-10-16 09:08:32 -06004618
Jens Axboe47f46762019-11-09 17:43:02 -07004619 io_cqring_fill_event(req, ret);
Jens Axboe11365042019-10-16 09:08:32 -06004620 io_commit_cqring(ctx);
4621 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06004622 io_cqring_ev_posted(ctx);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004623 if (ret < 0)
4624 req_set_fail_links(req);
Jackie Liuec9c02a2019-11-08 23:50:36 +08004625 io_put_req(req);
Jens Axboe11365042019-10-16 09:08:32 -06004626 return 0;
Jens Axboe5262f562019-09-17 12:26:57 -06004627}
4628
Jens Axboe3529d8c2019-12-19 18:24:38 -07004629static int io_timeout_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Jens Axboe2d283902019-12-04 11:08:05 -07004630 bool is_timeout_link)
Jens Axboe5262f562019-09-17 12:26:57 -06004631{
Jens Axboead8a48a2019-11-15 08:49:11 -07004632 struct io_timeout_data *data;
Jens Axboea41525a2019-10-15 16:48:15 -06004633 unsigned flags;
Jens Axboe5262f562019-09-17 12:26:57 -06004634
Jens Axboead8a48a2019-11-15 08:49:11 -07004635 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboe5262f562019-09-17 12:26:57 -06004636 return -EINVAL;
Jens Axboead8a48a2019-11-15 08:49:11 -07004637 if (sqe->ioprio || sqe->buf_index || sqe->len != 1)
Jens Axboea41525a2019-10-15 16:48:15 -06004638 return -EINVAL;
Jens Axboe2d283902019-12-04 11:08:05 -07004639 if (sqe->off && is_timeout_link)
4640 return -EINVAL;
Jens Axboea41525a2019-10-15 16:48:15 -06004641 flags = READ_ONCE(sqe->timeout_flags);
4642 if (flags & ~IORING_TIMEOUT_ABS)
Jens Axboe5262f562019-09-17 12:26:57 -06004643 return -EINVAL;
Arnd Bergmannbdf20072019-10-01 09:53:29 -06004644
Jens Axboe26a61672019-12-20 09:02:01 -07004645 req->timeout.count = READ_ONCE(sqe->off);
4646
Jens Axboe3529d8c2019-12-19 18:24:38 -07004647 if (!req->io && io_alloc_async_ctx(req))
Jens Axboe26a61672019-12-20 09:02:01 -07004648 return -ENOMEM;
4649
4650 data = &req->io->timeout;
Jens Axboead8a48a2019-11-15 08:49:11 -07004651 data->req = req;
Jens Axboead8a48a2019-11-15 08:49:11 -07004652 req->flags |= REQ_F_TIMEOUT;
4653
4654 if (get_timespec64(&data->ts, u64_to_user_ptr(sqe->addr)))
Jens Axboe5262f562019-09-17 12:26:57 -06004655 return -EFAULT;
4656
Jens Axboe11365042019-10-16 09:08:32 -06004657 if (flags & IORING_TIMEOUT_ABS)
Jens Axboead8a48a2019-11-15 08:49:11 -07004658 data->mode = HRTIMER_MODE_ABS;
Jens Axboe11365042019-10-16 09:08:32 -06004659 else
Jens Axboead8a48a2019-11-15 08:49:11 -07004660 data->mode = HRTIMER_MODE_REL;
Jens Axboe11365042019-10-16 09:08:32 -06004661
Jens Axboead8a48a2019-11-15 08:49:11 -07004662 hrtimer_init(&data->timer, CLOCK_MONOTONIC, data->mode);
4663 return 0;
4664}
4665
Jens Axboefc4df992019-12-10 14:38:45 -07004666static int io_timeout(struct io_kiocb *req)
Jens Axboead8a48a2019-11-15 08:49:11 -07004667{
4668 unsigned count;
4669 struct io_ring_ctx *ctx = req->ctx;
4670 struct io_timeout_data *data;
4671 struct list_head *entry;
4672 unsigned span = 0;
Jens Axboead8a48a2019-11-15 08:49:11 -07004673
Jens Axboe2d283902019-12-04 11:08:05 -07004674 data = &req->io->timeout;
Jens Axboe93bd25b2019-11-11 23:34:31 -07004675
Jens Axboe5262f562019-09-17 12:26:57 -06004676 /*
4677 * sqe->off holds how many events that need to occur for this
Jens Axboe93bd25b2019-11-11 23:34:31 -07004678 * timeout event to be satisfied. If it isn't set, then this is
4679 * a pure timeout request, sequence isn't used.
Jens Axboe5262f562019-09-17 12:26:57 -06004680 */
Jens Axboe26a61672019-12-20 09:02:01 -07004681 count = req->timeout.count;
Jens Axboe93bd25b2019-11-11 23:34:31 -07004682 if (!count) {
4683 req->flags |= REQ_F_TIMEOUT_NOSEQ;
4684 spin_lock_irq(&ctx->completion_lock);
4685 entry = ctx->timeout_list.prev;
4686 goto add;
4687 }
Jens Axboe5262f562019-09-17 12:26:57 -06004688
4689 req->sequence = ctx->cached_sq_head + count - 1;
Jens Axboe2d283902019-12-04 11:08:05 -07004690 data->seq_offset = count;
Jens Axboe5262f562019-09-17 12:26:57 -06004691
4692 /*
4693 * Insertion sort, ensuring the first entry in the list is always
4694 * the one we need first.
4695 */
Jens Axboe5262f562019-09-17 12:26:57 -06004696 spin_lock_irq(&ctx->completion_lock);
4697 list_for_each_prev(entry, &ctx->timeout_list) {
4698 struct io_kiocb *nxt = list_entry(entry, struct io_kiocb, list);
yangerkun5da0fb12019-10-15 21:59:29 +08004699 unsigned nxt_sq_head;
4700 long long tmp, tmp_nxt;
Jens Axboe2d283902019-12-04 11:08:05 -07004701 u32 nxt_offset = nxt->io->timeout.seq_offset;
Jens Axboe5262f562019-09-17 12:26:57 -06004702
Jens Axboe93bd25b2019-11-11 23:34:31 -07004703 if (nxt->flags & REQ_F_TIMEOUT_NOSEQ)
4704 continue;
4705
yangerkun5da0fb12019-10-15 21:59:29 +08004706 /*
4707 * Since cached_sq_head + count - 1 can overflow, use type long
4708 * long to store it.
4709 */
4710 tmp = (long long)ctx->cached_sq_head + count - 1;
Pavel Begunkovcc42e0a2019-11-25 23:14:38 +03004711 nxt_sq_head = nxt->sequence - nxt_offset + 1;
4712 tmp_nxt = (long long)nxt_sq_head + nxt_offset - 1;
yangerkun5da0fb12019-10-15 21:59:29 +08004713
4714 /*
4715 * cached_sq_head may overflow, and it will never overflow twice
4716 * once there is some timeout req still be valid.
4717 */
4718 if (ctx->cached_sq_head < nxt_sq_head)
yangerkun8b07a652019-10-17 12:12:35 +08004719 tmp += UINT_MAX;
yangerkun5da0fb12019-10-15 21:59:29 +08004720
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004721 if (tmp > tmp_nxt)
Jens Axboe5262f562019-09-17 12:26:57 -06004722 break;
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004723
4724 /*
4725 * Sequence of reqs after the insert one and itself should
4726 * be adjusted because each timeout req consumes a slot.
4727 */
4728 span++;
4729 nxt->sequence++;
Jens Axboe5262f562019-09-17 12:26:57 -06004730 }
zhangyi (F)a1f58ba2019-10-23 15:10:09 +08004731 req->sequence -= span;
Jens Axboe93bd25b2019-11-11 23:34:31 -07004732add:
Jens Axboe5262f562019-09-17 12:26:57 -06004733 list_add(&req->list, entry);
Jens Axboead8a48a2019-11-15 08:49:11 -07004734 data->timer.function = io_timeout_fn;
4735 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts), data->mode);
Jens Axboe842f9612019-10-29 12:34:10 -06004736 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe5262f562019-09-17 12:26:57 -06004737 return 0;
4738}
4739
Jens Axboe62755e32019-10-28 21:49:21 -06004740static bool io_cancel_cb(struct io_wq_work *work, void *data)
Jens Axboede0617e2019-04-06 21:51:27 -06004741{
Jens Axboe62755e32019-10-28 21:49:21 -06004742 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboede0617e2019-04-06 21:51:27 -06004743
Jens Axboe62755e32019-10-28 21:49:21 -06004744 return req->user_data == (unsigned long) data;
4745}
4746
Jens Axboee977d6d2019-11-05 12:39:45 -07004747static int io_async_cancel_one(struct io_ring_ctx *ctx, void *sqe_addr)
Jens Axboe62755e32019-10-28 21:49:21 -06004748{
Jens Axboe62755e32019-10-28 21:49:21 -06004749 enum io_wq_cancel cancel_ret;
Jens Axboe62755e32019-10-28 21:49:21 -06004750 int ret = 0;
4751
Jens Axboe62755e32019-10-28 21:49:21 -06004752 cancel_ret = io_wq_cancel_cb(ctx->io_wq, io_cancel_cb, sqe_addr);
4753 switch (cancel_ret) {
4754 case IO_WQ_CANCEL_OK:
4755 ret = 0;
4756 break;
4757 case IO_WQ_CANCEL_RUNNING:
4758 ret = -EALREADY;
4759 break;
4760 case IO_WQ_CANCEL_NOTFOUND:
4761 ret = -ENOENT;
4762 break;
4763 }
4764
Jens Axboee977d6d2019-11-05 12:39:45 -07004765 return ret;
4766}
4767
Jens Axboe47f46762019-11-09 17:43:02 -07004768static void io_async_find_and_cancel(struct io_ring_ctx *ctx,
4769 struct io_kiocb *req, __u64 sqe_addr,
Pavel Begunkov014db002020-03-03 21:33:12 +03004770 int success_ret)
Jens Axboe47f46762019-11-09 17:43:02 -07004771{
4772 unsigned long flags;
4773 int ret;
4774
4775 ret = io_async_cancel_one(ctx, (void *) (unsigned long) sqe_addr);
4776 if (ret != -ENOENT) {
4777 spin_lock_irqsave(&ctx->completion_lock, flags);
4778 goto done;
4779 }
4780
4781 spin_lock_irqsave(&ctx->completion_lock, flags);
4782 ret = io_timeout_cancel(ctx, sqe_addr);
4783 if (ret != -ENOENT)
4784 goto done;
4785 ret = io_poll_cancel(ctx, sqe_addr);
4786done:
Jens Axboeb0dd8a42019-11-18 12:14:54 -07004787 if (!ret)
4788 ret = success_ret;
Jens Axboe47f46762019-11-09 17:43:02 -07004789 io_cqring_fill_event(req, ret);
4790 io_commit_cqring(ctx);
4791 spin_unlock_irqrestore(&ctx->completion_lock, flags);
4792 io_cqring_ev_posted(ctx);
4793
Jens Axboe4e88d6e2019-12-07 20:59:47 -07004794 if (ret < 0)
4795 req_set_fail_links(req);
Pavel Begunkov014db002020-03-03 21:33:12 +03004796 io_put_req(req);
Jens Axboe47f46762019-11-09 17:43:02 -07004797}
4798
Jens Axboe3529d8c2019-12-19 18:24:38 -07004799static int io_async_cancel_prep(struct io_kiocb *req,
4800 const struct io_uring_sqe *sqe)
Jens Axboee977d6d2019-11-05 12:39:45 -07004801{
Jens Axboefbf23842019-12-17 18:45:56 -07004802 if (unlikely(req->ctx->flags & IORING_SETUP_IOPOLL))
Jens Axboee977d6d2019-11-05 12:39:45 -07004803 return -EINVAL;
4804 if (sqe->flags || sqe->ioprio || sqe->off || sqe->len ||
4805 sqe->cancel_flags)
4806 return -EINVAL;
4807
Jens Axboefbf23842019-12-17 18:45:56 -07004808 req->cancel.addr = READ_ONCE(sqe->addr);
4809 return 0;
4810}
4811
Pavel Begunkov014db002020-03-03 21:33:12 +03004812static int io_async_cancel(struct io_kiocb *req)
Jens Axboefbf23842019-12-17 18:45:56 -07004813{
4814 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefbf23842019-12-17 18:45:56 -07004815
Pavel Begunkov014db002020-03-03 21:33:12 +03004816 io_async_find_and_cancel(ctx, req, req->cancel.addr, 0);
Jens Axboe62755e32019-10-28 21:49:21 -06004817 return 0;
4818}
4819
Jens Axboe05f3fb32019-12-09 11:22:50 -07004820static int io_files_update_prep(struct io_kiocb *req,
4821 const struct io_uring_sqe *sqe)
4822{
4823 if (sqe->flags || sqe->ioprio || sqe->rw_flags)
4824 return -EINVAL;
4825
4826 req->files_update.offset = READ_ONCE(sqe->off);
4827 req->files_update.nr_args = READ_ONCE(sqe->len);
4828 if (!req->files_update.nr_args)
4829 return -EINVAL;
4830 req->files_update.arg = READ_ONCE(sqe->addr);
4831 return 0;
4832}
4833
4834static int io_files_update(struct io_kiocb *req, bool force_nonblock)
4835{
4836 struct io_ring_ctx *ctx = req->ctx;
4837 struct io_uring_files_update up;
4838 int ret;
4839
Jens Axboef86cd202020-01-29 13:46:44 -07004840 if (force_nonblock)
Jens Axboe05f3fb32019-12-09 11:22:50 -07004841 return -EAGAIN;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004842
4843 up.offset = req->files_update.offset;
4844 up.fds = req->files_update.arg;
4845
4846 mutex_lock(&ctx->uring_lock);
4847 ret = __io_sqe_files_update(ctx, &up, req->files_update.nr_args);
4848 mutex_unlock(&ctx->uring_lock);
4849
4850 if (ret < 0)
4851 req_set_fail_links(req);
4852 io_cqring_add_event(req, ret);
4853 io_put_req(req);
4854 return 0;
4855}
4856
Jens Axboe3529d8c2019-12-19 18:24:38 -07004857static int io_req_defer_prep(struct io_kiocb *req,
4858 const struct io_uring_sqe *sqe)
Jens Axboef67676d2019-12-02 11:03:47 -07004859{
Jens Axboee7815732019-12-17 19:45:06 -07004860 ssize_t ret = 0;
Jens Axboef67676d2019-12-02 11:03:47 -07004861
Pavel Begunkovf1d96a82020-03-13 22:29:14 +03004862 if (!sqe)
4863 return 0;
4864
Jens Axboef86cd202020-01-29 13:46:44 -07004865 if (io_op_defs[req->opcode].file_table) {
4866 ret = io_grab_files(req);
4867 if (unlikely(ret))
4868 return ret;
4869 }
4870
Jens Axboecccf0ee2020-01-27 16:34:48 -07004871 io_req_work_grab_env(req, &io_op_defs[req->opcode]);
4872
Jens Axboed625c6e2019-12-17 19:53:05 -07004873 switch (req->opcode) {
Jens Axboee7815732019-12-17 19:45:06 -07004874 case IORING_OP_NOP:
4875 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004876 case IORING_OP_READV:
4877 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004878 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004879 ret = io_read_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07004880 break;
4881 case IORING_OP_WRITEV:
4882 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07004883 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004884 ret = io_write_prep(req, sqe, true);
Jens Axboef67676d2019-12-02 11:03:47 -07004885 break;
Jens Axboe0969e782019-12-17 18:40:57 -07004886 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004887 ret = io_poll_add_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07004888 break;
4889 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004890 ret = io_poll_remove_prep(req, sqe);
Jens Axboe0969e782019-12-17 18:40:57 -07004891 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004892 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004893 ret = io_prep_fsync(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004894 break;
4895 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004896 ret = io_prep_sfr(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004897 break;
Jens Axboe03b12302019-12-02 18:50:25 -07004898 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004899 case IORING_OP_SEND:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004900 ret = io_sendmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07004901 break;
4902 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07004903 case IORING_OP_RECV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004904 ret = io_recvmsg_prep(req, sqe);
Jens Axboe03b12302019-12-02 18:50:25 -07004905 break;
Jens Axboef499a022019-12-02 16:28:46 -07004906 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004907 ret = io_connect_prep(req, sqe);
Jens Axboef499a022019-12-02 16:28:46 -07004908 break;
Jens Axboe2d283902019-12-04 11:08:05 -07004909 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004910 ret = io_timeout_prep(req, sqe, false);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004911 break;
Jens Axboeb29472e2019-12-17 18:50:29 -07004912 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004913 ret = io_timeout_remove_prep(req, sqe);
Jens Axboeb29472e2019-12-17 18:50:29 -07004914 break;
Jens Axboefbf23842019-12-17 18:45:56 -07004915 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004916 ret = io_async_cancel_prep(req, sqe);
Jens Axboefbf23842019-12-17 18:45:56 -07004917 break;
Jens Axboe2d283902019-12-04 11:08:05 -07004918 case IORING_OP_LINK_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004919 ret = io_timeout_prep(req, sqe, true);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004920 break;
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004921 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07004922 ret = io_accept_prep(req, sqe);
Jens Axboe8ed8d3c2019-12-16 11:55:28 -07004923 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07004924 case IORING_OP_FALLOCATE:
4925 ret = io_fallocate_prep(req, sqe);
4926 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07004927 case IORING_OP_OPENAT:
4928 ret = io_openat_prep(req, sqe);
4929 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07004930 case IORING_OP_CLOSE:
4931 ret = io_close_prep(req, sqe);
4932 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07004933 case IORING_OP_FILES_UPDATE:
4934 ret = io_files_update_prep(req, sqe);
4935 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07004936 case IORING_OP_STATX:
4937 ret = io_statx_prep(req, sqe);
4938 break;
Jens Axboe4840e412019-12-25 22:03:45 -07004939 case IORING_OP_FADVISE:
4940 ret = io_fadvise_prep(req, sqe);
4941 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07004942 case IORING_OP_MADVISE:
4943 ret = io_madvise_prep(req, sqe);
4944 break;
Jens Axboecebdb982020-01-08 17:59:24 -07004945 case IORING_OP_OPENAT2:
4946 ret = io_openat2_prep(req, sqe);
4947 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07004948 case IORING_OP_EPOLL_CTL:
4949 ret = io_epoll_ctl_prep(req, sqe);
4950 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03004951 case IORING_OP_SPLICE:
4952 ret = io_splice_prep(req, sqe);
4953 break;
Jens Axboeddf0322d2020-02-23 16:41:33 -07004954 case IORING_OP_PROVIDE_BUFFERS:
4955 ret = io_provide_buffers_prep(req, sqe);
4956 break;
Jens Axboe067524e2020-03-02 16:32:28 -07004957 case IORING_OP_REMOVE_BUFFERS:
4958 ret = io_remove_buffers_prep(req, sqe);
4959 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004960 default:
Jens Axboee7815732019-12-17 19:45:06 -07004961 printk_once(KERN_WARNING "io_uring: unhandled opcode %d\n",
4962 req->opcode);
4963 ret = -EINVAL;
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004964 break;
Jens Axboef67676d2019-12-02 11:03:47 -07004965 }
4966
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004967 return ret;
Jens Axboef67676d2019-12-02 11:03:47 -07004968}
4969
Jens Axboe3529d8c2019-12-19 18:24:38 -07004970static int io_req_defer(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboede0617e2019-04-06 21:51:27 -06004971{
Jackie Liua197f662019-11-08 08:09:12 -07004972 struct io_ring_ctx *ctx = req->ctx;
Jens Axboef67676d2019-12-02 11:03:47 -07004973 int ret;
Jens Axboede0617e2019-04-06 21:51:27 -06004974
Bob Liu9d858b22019-11-13 18:06:25 +08004975 /* Still need defer if there is pending req in defer list. */
4976 if (!req_need_defer(req) && list_empty(&ctx->defer_list))
Jens Axboede0617e2019-04-06 21:51:27 -06004977 return 0;
4978
Jens Axboe3529d8c2019-12-19 18:24:38 -07004979 if (!req->io && io_alloc_async_ctx(req))
Jens Axboede0617e2019-04-06 21:51:27 -06004980 return -EAGAIN;
4981
Jens Axboe3529d8c2019-12-19 18:24:38 -07004982 ret = io_req_defer_prep(req, sqe);
Jens Axboeb7bb4f72019-12-15 22:13:43 -07004983 if (ret < 0)
Jens Axboe2d283902019-12-04 11:08:05 -07004984 return ret;
Jens Axboe2d283902019-12-04 11:08:05 -07004985
Jens Axboede0617e2019-04-06 21:51:27 -06004986 spin_lock_irq(&ctx->completion_lock);
Bob Liu9d858b22019-11-13 18:06:25 +08004987 if (!req_need_defer(req) && list_empty(&ctx->defer_list)) {
Jens Axboede0617e2019-04-06 21:51:27 -06004988 spin_unlock_irq(&ctx->completion_lock);
Jens Axboede0617e2019-04-06 21:51:27 -06004989 return 0;
4990 }
4991
Jens Axboe915967f2019-11-21 09:01:20 -07004992 trace_io_uring_defer(ctx, req, req->user_data);
Jens Axboede0617e2019-04-06 21:51:27 -06004993 list_add_tail(&req->list, &ctx->defer_list);
4994 spin_unlock_irq(&ctx->completion_lock);
4995 return -EIOCBQUEUED;
4996}
4997
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03004998static void io_cleanup_req(struct io_kiocb *req)
4999{
5000 struct io_async_ctx *io = req->io;
5001
5002 switch (req->opcode) {
5003 case IORING_OP_READV:
5004 case IORING_OP_READ_FIXED:
5005 case IORING_OP_READ:
Jens Axboebcda7ba2020-02-23 16:42:51 -07005006 if (req->flags & REQ_F_BUFFER_SELECTED)
5007 kfree((void *)(unsigned long)req->rw.addr);
5008 /* fallthrough */
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005009 case IORING_OP_WRITEV:
5010 case IORING_OP_WRITE_FIXED:
5011 case IORING_OP_WRITE:
5012 if (io->rw.iov != io->rw.fast_iov)
5013 kfree(io->rw.iov);
5014 break;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005015 case IORING_OP_RECVMSG:
Jens Axboe52de1fe2020-02-27 10:15:42 -07005016 if (req->flags & REQ_F_BUFFER_SELECTED)
5017 kfree(req->sr_msg.kbuf);
5018 /* fallthrough */
5019 case IORING_OP_SENDMSG:
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005020 if (io->msg.iov != io->msg.fast_iov)
5021 kfree(io->msg.iov);
5022 break;
Jens Axboebcda7ba2020-02-23 16:42:51 -07005023 case IORING_OP_RECV:
5024 if (req->flags & REQ_F_BUFFER_SELECTED)
5025 kfree(req->sr_msg.kbuf);
5026 break;
Pavel Begunkov8fef80b2020-02-07 23:59:53 +03005027 case IORING_OP_OPENAT:
5028 case IORING_OP_OPENAT2:
5029 case IORING_OP_STATX:
5030 putname(req->open.filename);
5031 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005032 case IORING_OP_SPLICE:
5033 io_put_file(req, req->splice.file_in,
5034 (req->splice.flags & SPLICE_F_FD_IN_FIXED));
5035 break;
Pavel Begunkov99bc4c32020-02-07 22:04:45 +03005036 }
5037
5038 req->flags &= ~REQ_F_NEED_CLEANUP;
5039}
5040
Jens Axboe3529d8c2019-12-19 18:24:38 -07005041static int io_issue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
Pavel Begunkov014db002020-03-03 21:33:12 +03005042 bool force_nonblock)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005043{
Jackie Liua197f662019-11-08 08:09:12 -07005044 struct io_ring_ctx *ctx = req->ctx;
Jens Axboed625c6e2019-12-17 19:53:05 -07005045 int ret;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005046
Jens Axboed625c6e2019-12-17 19:53:05 -07005047 switch (req->opcode) {
Jens Axboe2b188cc2019-01-07 10:46:33 -07005048 case IORING_OP_NOP:
Jens Axboe78e19bb2019-11-06 15:21:34 -07005049 ret = io_nop(req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005050 break;
5051 case IORING_OP_READV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005052 case IORING_OP_READ_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07005053 case IORING_OP_READ:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005054 if (sqe) {
5055 ret = io_read_prep(req, sqe, force_nonblock);
5056 if (ret < 0)
5057 break;
5058 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005059 ret = io_read(req, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005060 break;
5061 case IORING_OP_WRITEV:
Jens Axboeedafcce2019-01-09 09:16:05 -07005062 case IORING_OP_WRITE_FIXED:
Jens Axboe3a6820f2019-12-22 15:19:35 -07005063 case IORING_OP_WRITE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005064 if (sqe) {
5065 ret = io_write_prep(req, sqe, force_nonblock);
5066 if (ret < 0)
5067 break;
5068 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005069 ret = io_write(req, force_nonblock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005070 break;
Christoph Hellwigc992fe22019-01-11 09:43:02 -07005071 case IORING_OP_FSYNC:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005072 if (sqe) {
5073 ret = io_prep_fsync(req, sqe);
5074 if (ret < 0)
5075 break;
5076 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005077 ret = io_fsync(req, force_nonblock);
Christoph Hellwigc992fe22019-01-11 09:43:02 -07005078 break;
Jens Axboe221c5eb2019-01-17 09:41:58 -07005079 case IORING_OP_POLL_ADD:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005080 if (sqe) {
5081 ret = io_poll_add_prep(req, sqe);
5082 if (ret)
5083 break;
5084 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005085 ret = io_poll_add(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005086 break;
5087 case IORING_OP_POLL_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005088 if (sqe) {
5089 ret = io_poll_remove_prep(req, sqe);
5090 if (ret < 0)
5091 break;
5092 }
Jens Axboefc4df992019-12-10 14:38:45 -07005093 ret = io_poll_remove(req);
Jens Axboe221c5eb2019-01-17 09:41:58 -07005094 break;
Jens Axboe5d17b4a2019-04-09 14:56:44 -06005095 case IORING_OP_SYNC_FILE_RANGE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005096 if (sqe) {
5097 ret = io_prep_sfr(req, sqe);
5098 if (ret < 0)
5099 break;
5100 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005101 ret = io_sync_file_range(req, force_nonblock);
Jens Axboe5d17b4a2019-04-09 14:56:44 -06005102 break;
Jens Axboe0fa03c62019-04-19 13:34:07 -06005103 case IORING_OP_SENDMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005104 case IORING_OP_SEND:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005105 if (sqe) {
5106 ret = io_sendmsg_prep(req, sqe);
5107 if (ret < 0)
5108 break;
5109 }
Jens Axboefddafac2020-01-04 20:19:44 -07005110 if (req->opcode == IORING_OP_SENDMSG)
Pavel Begunkov014db002020-03-03 21:33:12 +03005111 ret = io_sendmsg(req, force_nonblock);
Jens Axboefddafac2020-01-04 20:19:44 -07005112 else
Pavel Begunkov014db002020-03-03 21:33:12 +03005113 ret = io_send(req, force_nonblock);
Jens Axboe0fa03c62019-04-19 13:34:07 -06005114 break;
Jens Axboeaa1fa282019-04-19 13:38:09 -06005115 case IORING_OP_RECVMSG:
Jens Axboefddafac2020-01-04 20:19:44 -07005116 case IORING_OP_RECV:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005117 if (sqe) {
5118 ret = io_recvmsg_prep(req, sqe);
5119 if (ret)
5120 break;
5121 }
Jens Axboefddafac2020-01-04 20:19:44 -07005122 if (req->opcode == IORING_OP_RECVMSG)
Pavel Begunkov014db002020-03-03 21:33:12 +03005123 ret = io_recvmsg(req, force_nonblock);
Jens Axboefddafac2020-01-04 20:19:44 -07005124 else
Pavel Begunkov014db002020-03-03 21:33:12 +03005125 ret = io_recv(req, force_nonblock);
Jens Axboeaa1fa282019-04-19 13:38:09 -06005126 break;
Jens Axboe5262f562019-09-17 12:26:57 -06005127 case IORING_OP_TIMEOUT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005128 if (sqe) {
5129 ret = io_timeout_prep(req, sqe, false);
5130 if (ret)
5131 break;
5132 }
Jens Axboefc4df992019-12-10 14:38:45 -07005133 ret = io_timeout(req);
Jens Axboe5262f562019-09-17 12:26:57 -06005134 break;
Jens Axboe11365042019-10-16 09:08:32 -06005135 case IORING_OP_TIMEOUT_REMOVE:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005136 if (sqe) {
5137 ret = io_timeout_remove_prep(req, sqe);
5138 if (ret)
5139 break;
5140 }
Jens Axboefc4df992019-12-10 14:38:45 -07005141 ret = io_timeout_remove(req);
Jens Axboe11365042019-10-16 09:08:32 -06005142 break;
Jens Axboe17f2fe32019-10-17 14:42:58 -06005143 case IORING_OP_ACCEPT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005144 if (sqe) {
5145 ret = io_accept_prep(req, sqe);
5146 if (ret)
5147 break;
5148 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005149 ret = io_accept(req, force_nonblock);
Jens Axboe17f2fe32019-10-17 14:42:58 -06005150 break;
Jens Axboef8e85cf2019-11-23 14:24:24 -07005151 case IORING_OP_CONNECT:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005152 if (sqe) {
5153 ret = io_connect_prep(req, sqe);
5154 if (ret)
5155 break;
5156 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005157 ret = io_connect(req, force_nonblock);
Jens Axboef8e85cf2019-11-23 14:24:24 -07005158 break;
Jens Axboe62755e32019-10-28 21:49:21 -06005159 case IORING_OP_ASYNC_CANCEL:
Jens Axboe3529d8c2019-12-19 18:24:38 -07005160 if (sqe) {
5161 ret = io_async_cancel_prep(req, sqe);
5162 if (ret)
5163 break;
5164 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005165 ret = io_async_cancel(req);
Jens Axboe62755e32019-10-28 21:49:21 -06005166 break;
Jens Axboed63d1b52019-12-10 10:38:56 -07005167 case IORING_OP_FALLOCATE:
5168 if (sqe) {
5169 ret = io_fallocate_prep(req, sqe);
5170 if (ret)
5171 break;
5172 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005173 ret = io_fallocate(req, force_nonblock);
Jens Axboed63d1b52019-12-10 10:38:56 -07005174 break;
Jens Axboe15b71ab2019-12-11 11:20:36 -07005175 case IORING_OP_OPENAT:
5176 if (sqe) {
5177 ret = io_openat_prep(req, sqe);
5178 if (ret)
5179 break;
5180 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005181 ret = io_openat(req, force_nonblock);
Jens Axboe15b71ab2019-12-11 11:20:36 -07005182 break;
Jens Axboeb5dba592019-12-11 14:02:38 -07005183 case IORING_OP_CLOSE:
5184 if (sqe) {
5185 ret = io_close_prep(req, sqe);
5186 if (ret)
5187 break;
5188 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005189 ret = io_close(req, force_nonblock);
Jens Axboeb5dba592019-12-11 14:02:38 -07005190 break;
Jens Axboe05f3fb32019-12-09 11:22:50 -07005191 case IORING_OP_FILES_UPDATE:
5192 if (sqe) {
5193 ret = io_files_update_prep(req, sqe);
5194 if (ret)
5195 break;
5196 }
5197 ret = io_files_update(req, force_nonblock);
5198 break;
Jens Axboeeddc7ef2019-12-13 21:18:10 -07005199 case IORING_OP_STATX:
5200 if (sqe) {
5201 ret = io_statx_prep(req, sqe);
5202 if (ret)
5203 break;
5204 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005205 ret = io_statx(req, force_nonblock);
Jens Axboeeddc7ef2019-12-13 21:18:10 -07005206 break;
Jens Axboe4840e412019-12-25 22:03:45 -07005207 case IORING_OP_FADVISE:
5208 if (sqe) {
5209 ret = io_fadvise_prep(req, sqe);
5210 if (ret)
5211 break;
5212 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005213 ret = io_fadvise(req, force_nonblock);
Jens Axboe4840e412019-12-25 22:03:45 -07005214 break;
Jens Axboec1ca7572019-12-25 22:18:28 -07005215 case IORING_OP_MADVISE:
5216 if (sqe) {
5217 ret = io_madvise_prep(req, sqe);
5218 if (ret)
5219 break;
5220 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005221 ret = io_madvise(req, force_nonblock);
Jens Axboec1ca7572019-12-25 22:18:28 -07005222 break;
Jens Axboecebdb982020-01-08 17:59:24 -07005223 case IORING_OP_OPENAT2:
5224 if (sqe) {
5225 ret = io_openat2_prep(req, sqe);
5226 if (ret)
5227 break;
5228 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005229 ret = io_openat2(req, force_nonblock);
Jens Axboecebdb982020-01-08 17:59:24 -07005230 break;
Jens Axboe3e4827b2020-01-08 15:18:09 -07005231 case IORING_OP_EPOLL_CTL:
5232 if (sqe) {
5233 ret = io_epoll_ctl_prep(req, sqe);
5234 if (ret)
5235 break;
5236 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005237 ret = io_epoll_ctl(req, force_nonblock);
Jens Axboe3e4827b2020-01-08 15:18:09 -07005238 break;
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005239 case IORING_OP_SPLICE:
5240 if (sqe) {
5241 ret = io_splice_prep(req, sqe);
5242 if (ret < 0)
5243 break;
5244 }
Pavel Begunkov014db002020-03-03 21:33:12 +03005245 ret = io_splice(req, force_nonblock);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03005246 break;
Jens Axboeddf0322d2020-02-23 16:41:33 -07005247 case IORING_OP_PROVIDE_BUFFERS:
5248 if (sqe) {
5249 ret = io_provide_buffers_prep(req, sqe);
5250 if (ret)
5251 break;
5252 }
5253 ret = io_provide_buffers(req, force_nonblock);
5254 break;
Jens Axboe067524e2020-03-02 16:32:28 -07005255 case IORING_OP_REMOVE_BUFFERS:
5256 if (sqe) {
5257 ret = io_remove_buffers_prep(req, sqe);
5258 if (ret)
5259 break;
5260 }
5261 ret = io_remove_buffers(req, force_nonblock);
Jens Axboe31b51512019-01-18 22:56:34 -07005262 break;
5263 default:
5264 ret = -EINVAL;
Jens Axboeedafcce2019-01-09 09:16:05 -07005265 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005266 }
5267
Jens Axboe31b51512019-01-18 22:56:34 -07005268 if (ret)
5269 return ret;
5270
5271 if (ctx->flags & IORING_SETUP_IOPOLL) {
Jens Axboe11ba8202020-01-15 21:51:17 -07005272 const bool in_async = io_wq_current_is_worker();
5273
Jens Axboe9e645e112019-05-10 16:07:28 -06005274 if (req->result == -EAGAIN)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005275 return -EAGAIN;
5276
Jens Axboe11ba8202020-01-15 21:51:17 -07005277 /* workqueue context doesn't hold uring_lock, grab it now */
5278 if (in_async)
5279 mutex_lock(&ctx->uring_lock);
5280
Jens Axboe2b188cc2019-01-07 10:46:33 -07005281 io_iopoll_req_issued(req);
Jens Axboe11ba8202020-01-15 21:51:17 -07005282
5283 if (in_async)
5284 mutex_unlock(&ctx->uring_lock);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005285 }
5286
5287 return 0;
5288}
5289
Jens Axboe561fb042019-10-24 07:25:42 -06005290static void io_wq_submit_work(struct io_wq_work **workptr)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005291{
Jens Axboe561fb042019-10-24 07:25:42 -06005292 struct io_wq_work *work = *workptr;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005293 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
Jens Axboe561fb042019-10-24 07:25:42 -06005294 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005295
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07005296 /* if NO_CANCEL is set, we must still run the work */
5297 if ((work->flags & (IO_WQ_WORK_CANCEL|IO_WQ_WORK_NO_CANCEL)) ==
5298 IO_WQ_WORK_CANCEL) {
Jens Axboe561fb042019-10-24 07:25:42 -06005299 ret = -ECANCELED;
Jens Axboe0c9d5cc2019-12-11 19:29:43 -07005300 }
Jens Axboe31b51512019-01-18 22:56:34 -07005301
Jens Axboe561fb042019-10-24 07:25:42 -06005302 if (!ret) {
Jens Axboe561fb042019-10-24 07:25:42 -06005303 do {
Pavel Begunkov014db002020-03-03 21:33:12 +03005304 ret = io_issue_sqe(req, NULL, false);
Jens Axboe561fb042019-10-24 07:25:42 -06005305 /*
5306 * We can get EAGAIN for polled IO even though we're
5307 * forcing a sync submission from here, since we can't
5308 * wait for request slots on the block side.
5309 */
5310 if (ret != -EAGAIN)
5311 break;
5312 cond_resched();
5313 } while (1);
5314 }
Jens Axboe31b51512019-01-18 22:56:34 -07005315
Jens Axboe561fb042019-10-24 07:25:42 -06005316 if (ret) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005317 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07005318 io_cqring_add_event(req, ret);
Jens Axboe817869d2019-04-30 14:44:05 -06005319 io_put_req(req);
Jens Axboeedafcce2019-01-09 09:16:05 -07005320 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07005321
Pavel Begunkove9fd9392020-03-04 16:14:12 +03005322 io_steal_work(req, workptr);
Jens Axboe31b51512019-01-18 22:56:34 -07005323}
Jens Axboe2b188cc2019-01-07 10:46:33 -07005324
Jens Axboe15b71ab2019-12-11 11:20:36 -07005325static int io_req_needs_file(struct io_kiocb *req, int fd)
Jens Axboe9e3aa612019-12-11 15:55:43 -07005326{
Jens Axboed3656342019-12-18 09:50:26 -07005327 if (!io_op_defs[req->opcode].needs_file)
Jens Axboe9e3aa612019-12-11 15:55:43 -07005328 return 0;
Jens Axboe0b5faf62020-02-06 21:42:51 -07005329 if ((fd == -1 || fd == AT_FDCWD) && io_op_defs[req->opcode].fd_non_neg)
Jens Axboed3656342019-12-18 09:50:26 -07005330 return 0;
5331 return 1;
Jens Axboe09bb8392019-03-13 12:39:28 -06005332}
5333
Jens Axboe65e19f52019-10-26 07:20:21 -06005334static inline struct file *io_file_from_index(struct io_ring_ctx *ctx,
5335 int index)
Jens Axboe09bb8392019-03-13 12:39:28 -06005336{
Jens Axboe65e19f52019-10-26 07:20:21 -06005337 struct fixed_file_table *table;
5338
Jens Axboe05f3fb32019-12-09 11:22:50 -07005339 table = &ctx->file_data->table[index >> IORING_FILE_TABLE_SHIFT];
5340 return table->files[index & IORING_FILE_TABLE_MASK];;
Jens Axboe65e19f52019-10-26 07:20:21 -06005341}
5342
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005343static int io_file_get(struct io_submit_state *state, struct io_kiocb *req,
5344 int fd, struct file **out_file, bool fixed)
5345{
5346 struct io_ring_ctx *ctx = req->ctx;
5347 struct file *file;
5348
5349 if (fixed) {
5350 if (unlikely(!ctx->file_data ||
5351 (unsigned) fd >= ctx->nr_user_files))
5352 return -EBADF;
5353 fd = array_index_nospec(fd, ctx->nr_user_files);
5354 file = io_file_from_index(ctx, fd);
5355 if (!file)
5356 return -EBADF;
Xiaoguang Wang05589552020-03-31 14:05:18 +08005357 req->fixed_file_refs = ctx->file_data->cur_refs;
5358 percpu_ref_get(req->fixed_file_refs);
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005359 } else {
5360 trace_io_uring_file_get(ctx, fd);
5361 file = __io_file_get(state, fd);
5362 if (unlikely(!file))
5363 return -EBADF;
5364 }
5365
5366 *out_file = file;
5367 return 0;
5368}
5369
Jens Axboe3529d8c2019-12-19 18:24:38 -07005370static int io_req_set_file(struct io_submit_state *state, struct io_kiocb *req,
Pavel Begunkov9c280f92020-04-08 08:58:46 +03005371 int fd, unsigned int flags)
Jens Axboe09bb8392019-03-13 12:39:28 -06005372{
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005373 bool fixed;
Jens Axboe09bb8392019-03-13 12:39:28 -06005374
Jens Axboed3656342019-12-18 09:50:26 -07005375 if (!io_req_needs_file(req, fd))
5376 return 0;
Jens Axboe09bb8392019-03-13 12:39:28 -06005377
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005378 fixed = (flags & IOSQE_FIXED_FILE);
5379 if (unlikely(!fixed && req->needs_fixed_file))
5380 return -EBADF;
Jens Axboe09bb8392019-03-13 12:39:28 -06005381
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005382 return io_file_get(state, req, fd, &req->file, fixed);
Jens Axboe09bb8392019-03-13 12:39:28 -06005383}
5384
Jackie Liua197f662019-11-08 08:09:12 -07005385static int io_grab_files(struct io_kiocb *req)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005386{
Jens Axboefcb323c2019-10-24 12:39:47 -06005387 int ret = -EBADF;
Jackie Liua197f662019-11-08 08:09:12 -07005388 struct io_ring_ctx *ctx = req->ctx;
Jens Axboefcb323c2019-10-24 12:39:47 -06005389
Jens Axboef86cd202020-01-29 13:46:44 -07005390 if (req->work.files)
5391 return 0;
Pavel Begunkovb14cca02020-01-17 04:45:59 +03005392 if (!ctx->ring_file)
Jens Axboeb5dba592019-12-11 14:02:38 -07005393 return -EBADF;
5394
Jens Axboefcb323c2019-10-24 12:39:47 -06005395 rcu_read_lock();
5396 spin_lock_irq(&ctx->inflight_lock);
5397 /*
5398 * We use the f_ops->flush() handler to ensure that we can flush
5399 * out work accessing these files if the fd is closed. Check if
5400 * the fd has changed since we started down this path, and disallow
5401 * this operation if it has.
5402 */
Pavel Begunkovb14cca02020-01-17 04:45:59 +03005403 if (fcheck(ctx->ring_fd) == ctx->ring_file) {
Jens Axboefcb323c2019-10-24 12:39:47 -06005404 list_add(&req->inflight_entry, &ctx->inflight_list);
5405 req->flags |= REQ_F_INFLIGHT;
5406 req->work.files = current->files;
5407 ret = 0;
5408 }
5409 spin_unlock_irq(&ctx->inflight_lock);
5410 rcu_read_unlock();
5411
5412 return ret;
5413}
5414
Jens Axboe2665abf2019-11-05 12:40:47 -07005415static enum hrtimer_restart io_link_timeout_fn(struct hrtimer *timer)
5416{
Jens Axboead8a48a2019-11-15 08:49:11 -07005417 struct io_timeout_data *data = container_of(timer,
5418 struct io_timeout_data, timer);
5419 struct io_kiocb *req = data->req;
Jens Axboe2665abf2019-11-05 12:40:47 -07005420 struct io_ring_ctx *ctx = req->ctx;
5421 struct io_kiocb *prev = NULL;
5422 unsigned long flags;
Jens Axboe2665abf2019-11-05 12:40:47 -07005423
5424 spin_lock_irqsave(&ctx->completion_lock, flags);
5425
5426 /*
5427 * We don't expect the list to be empty, that will only happen if we
5428 * race with the completion of the linked work.
5429 */
Pavel Begunkov44932332019-12-05 16:16:35 +03005430 if (!list_empty(&req->link_list)) {
5431 prev = list_entry(req->link_list.prev, struct io_kiocb,
5432 link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07005433 if (refcount_inc_not_zero(&prev->refs)) {
Pavel Begunkov44932332019-12-05 16:16:35 +03005434 list_del_init(&req->link_list);
Jens Axboe5d960722019-11-19 15:31:28 -07005435 prev->flags &= ~REQ_F_LINK_TIMEOUT;
5436 } else
Jens Axboe76a46e02019-11-10 23:34:16 -07005437 prev = NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07005438 }
5439
5440 spin_unlock_irqrestore(&ctx->completion_lock, flags);
5441
5442 if (prev) {
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005443 req_set_fail_links(prev);
Pavel Begunkov014db002020-03-03 21:33:12 +03005444 io_async_find_and_cancel(ctx, req, prev->user_data, -ETIME);
Jens Axboe76a46e02019-11-10 23:34:16 -07005445 io_put_req(prev);
Jens Axboe47f46762019-11-09 17:43:02 -07005446 } else {
5447 io_cqring_add_event(req, -ETIME);
5448 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07005449 }
Jens Axboe2665abf2019-11-05 12:40:47 -07005450 return HRTIMER_NORESTART;
5451}
5452
Jens Axboead8a48a2019-11-15 08:49:11 -07005453static void io_queue_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07005454{
Jens Axboe76a46e02019-11-10 23:34:16 -07005455 struct io_ring_ctx *ctx = req->ctx;
Jens Axboe2665abf2019-11-05 12:40:47 -07005456
Jens Axboe76a46e02019-11-10 23:34:16 -07005457 /*
5458 * If the list is now empty, then our linked request finished before
5459 * we got a chance to setup the timer
5460 */
5461 spin_lock_irq(&ctx->completion_lock);
Pavel Begunkov44932332019-12-05 16:16:35 +03005462 if (!list_empty(&req->link_list)) {
Jens Axboe2d283902019-12-04 11:08:05 -07005463 struct io_timeout_data *data = &req->io->timeout;
Jens Axboe94ae5e72019-11-14 19:39:52 -07005464
Jens Axboead8a48a2019-11-15 08:49:11 -07005465 data->timer.function = io_link_timeout_fn;
5466 hrtimer_start(&data->timer, timespec64_to_ktime(data->ts),
5467 data->mode);
Jens Axboe2665abf2019-11-05 12:40:47 -07005468 }
Jens Axboe76a46e02019-11-10 23:34:16 -07005469 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe2665abf2019-11-05 12:40:47 -07005470
Jens Axboe2665abf2019-11-05 12:40:47 -07005471 /* drop submission reference */
Jens Axboe76a46e02019-11-10 23:34:16 -07005472 io_put_req(req);
Jens Axboe2665abf2019-11-05 12:40:47 -07005473}
5474
Jens Axboead8a48a2019-11-15 08:49:11 -07005475static struct io_kiocb *io_prep_linked_timeout(struct io_kiocb *req)
Jens Axboe2665abf2019-11-05 12:40:47 -07005476{
5477 struct io_kiocb *nxt;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005478
Jens Axboe2665abf2019-11-05 12:40:47 -07005479 if (!(req->flags & REQ_F_LINK))
5480 return NULL;
Jens Axboed7718a92020-02-14 22:23:12 -07005481 /* for polled retry, if flag is set, we already went through here */
5482 if (req->flags & REQ_F_POLLED)
5483 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07005484
Pavel Begunkov44932332019-12-05 16:16:35 +03005485 nxt = list_first_entry_or_null(&req->link_list, struct io_kiocb,
5486 link_list);
Jens Axboed625c6e2019-12-17 19:53:05 -07005487 if (!nxt || nxt->opcode != IORING_OP_LINK_TIMEOUT)
Jens Axboe76a46e02019-11-10 23:34:16 -07005488 return NULL;
Jens Axboe2665abf2019-11-05 12:40:47 -07005489
Jens Axboe76a46e02019-11-10 23:34:16 -07005490 req->flags |= REQ_F_LINK_TIMEOUT;
Jens Axboe76a46e02019-11-10 23:34:16 -07005491 return nxt;
Jens Axboe2665abf2019-11-05 12:40:47 -07005492}
5493
Jens Axboe3529d8c2019-12-19 18:24:38 -07005494static void __io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005495{
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005496 struct io_kiocb *linked_timeout;
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005497 struct io_kiocb *nxt;
Jens Axboe193155c2020-02-22 23:22:19 -07005498 const struct cred *old_creds = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005499 int ret;
5500
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005501again:
5502 linked_timeout = io_prep_linked_timeout(req);
5503
Jens Axboe193155c2020-02-22 23:22:19 -07005504 if (req->work.creds && req->work.creds != current_cred()) {
5505 if (old_creds)
5506 revert_creds(old_creds);
5507 if (old_creds == req->work.creds)
5508 old_creds = NULL; /* restored original creds */
5509 else
5510 old_creds = override_creds(req->work.creds);
5511 }
5512
Pavel Begunkov014db002020-03-03 21:33:12 +03005513 ret = io_issue_sqe(req, sqe, true);
Jens Axboe491381ce2019-10-17 09:20:46 -06005514
5515 /*
5516 * We async punt it if the file wasn't marked NOWAIT, or if the file
5517 * doesn't support non-blocking read/write attempts
5518 */
5519 if (ret == -EAGAIN && (!(req->flags & REQ_F_NOWAIT) ||
5520 (req->flags & REQ_F_MUST_PUNT))) {
Jens Axboed7718a92020-02-14 22:23:12 -07005521 if (io_arm_poll_handler(req)) {
5522 if (linked_timeout)
5523 io_queue_linked_timeout(linked_timeout);
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005524 goto exit;
Jens Axboed7718a92020-02-14 22:23:12 -07005525 }
Pavel Begunkov86a761f2020-01-22 23:09:36 +03005526punt:
Jens Axboef86cd202020-01-29 13:46:44 -07005527 if (io_op_defs[req->opcode].file_table) {
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03005528 ret = io_grab_files(req);
5529 if (ret)
5530 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005531 }
Pavel Begunkovbbad27b2019-11-19 23:32:47 +03005532
5533 /*
5534 * Queued up for async execution, worker will release
5535 * submit reference when the iocb is actually submitted.
5536 */
5537 io_queue_async_work(req);
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005538 goto exit;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005539 }
Jens Axboee65ef562019-03-12 10:16:44 -06005540
Jens Axboefcb323c2019-10-24 12:39:47 -06005541err:
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005542 nxt = NULL;
Jens Axboee65ef562019-03-12 10:16:44 -06005543 /* drop submission reference */
Jens Axboe2a44f462020-02-25 13:25:41 -07005544 io_put_req_find_next(req, &nxt);
Jens Axboee65ef562019-03-12 10:16:44 -06005545
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03005546 if (linked_timeout) {
Jens Axboe76a46e02019-11-10 23:34:16 -07005547 if (!ret)
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03005548 io_queue_linked_timeout(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07005549 else
Pavel Begunkovf9bd67f2019-11-21 23:21:03 +03005550 io_put_req(linked_timeout);
Jens Axboe76a46e02019-11-10 23:34:16 -07005551 }
5552
Jens Axboee65ef562019-03-12 10:16:44 -06005553 /* and drop final reference, if we failed */
Jens Axboe9e645e112019-05-10 16:07:28 -06005554 if (ret) {
Jens Axboe78e19bb2019-11-06 15:21:34 -07005555 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005556 req_set_fail_links(req);
Jens Axboee65ef562019-03-12 10:16:44 -06005557 io_put_req(req);
Jens Axboe9e645e112019-05-10 16:07:28 -06005558 }
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005559 if (nxt) {
5560 req = nxt;
Pavel Begunkov86a761f2020-01-22 23:09:36 +03005561
5562 if (req->flags & REQ_F_FORCE_ASYNC)
5563 goto punt;
Jens Axboe4a0a7a12019-12-09 20:01:01 -07005564 goto again;
5565 }
Pavel Begunkov4bc44942020-02-29 22:48:24 +03005566exit:
Jens Axboe193155c2020-02-22 23:22:19 -07005567 if (old_creds)
5568 revert_creds(old_creds);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005569}
5570
Jens Axboe3529d8c2019-12-19 18:24:38 -07005571static void io_queue_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe)
Jackie Liu4fe2c962019-09-09 20:50:40 +08005572{
5573 int ret;
5574
Jens Axboe3529d8c2019-12-19 18:24:38 -07005575 ret = io_req_defer(req, sqe);
Jackie Liu4fe2c962019-09-09 20:50:40 +08005576 if (ret) {
5577 if (ret != -EIOCBQUEUED) {
Pavel Begunkov11185912020-01-22 23:09:35 +03005578fail_req:
Jens Axboe78e19bb2019-11-06 15:21:34 -07005579 io_cqring_add_event(req, ret);
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005580 req_set_fail_links(req);
Jens Axboe78e19bb2019-11-06 15:21:34 -07005581 io_double_put_req(req);
Jackie Liu4fe2c962019-09-09 20:50:40 +08005582 }
Pavel Begunkov25508782019-12-30 21:24:47 +03005583 } else if (req->flags & REQ_F_FORCE_ASYNC) {
Pavel Begunkov11185912020-01-22 23:09:35 +03005584 ret = io_req_defer_prep(req, sqe);
5585 if (unlikely(ret < 0))
5586 goto fail_req;
Jens Axboece35a472019-12-17 08:04:44 -07005587 /*
5588 * Never try inline submit of IOSQE_ASYNC is set, go straight
5589 * to async execution.
5590 */
5591 req->work.flags |= IO_WQ_WORK_CONCURRENT;
5592 io_queue_async_work(req);
5593 } else {
Jens Axboe3529d8c2019-12-19 18:24:38 -07005594 __io_queue_sqe(req, sqe);
Jens Axboece35a472019-12-17 08:04:44 -07005595 }
Jackie Liu4fe2c962019-09-09 20:50:40 +08005596}
5597
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005598static inline void io_queue_link_head(struct io_kiocb *req)
Jackie Liu4fe2c962019-09-09 20:50:40 +08005599{
Jens Axboe94ae5e72019-11-14 19:39:52 -07005600 if (unlikely(req->flags & REQ_F_FAIL_LINK)) {
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005601 io_cqring_add_event(req, -ECANCELED);
5602 io_double_put_req(req);
5603 } else
Jens Axboe3529d8c2019-12-19 18:24:38 -07005604 io_queue_sqe(req, NULL);
Jackie Liu4fe2c962019-09-09 20:50:40 +08005605}
5606
Jens Axboe4e88d6e2019-12-07 20:59:47 -07005607#define SQE_VALID_FLAGS (IOSQE_FIXED_FILE|IOSQE_IO_DRAIN|IOSQE_IO_LINK| \
Jens Axboebcda7ba2020-02-23 16:42:51 -07005608 IOSQE_IO_HARDLINK | IOSQE_ASYNC | \
5609 IOSQE_BUFFER_SELECT)
Jens Axboe9e645e112019-05-10 16:07:28 -06005610
Jens Axboe3529d8c2019-12-19 18:24:38 -07005611static bool io_submit_sqe(struct io_kiocb *req, const struct io_uring_sqe *sqe,
5612 struct io_submit_state *state, struct io_kiocb **link)
Jens Axboe9e645e112019-05-10 16:07:28 -06005613{
Jackie Liua197f662019-11-08 08:09:12 -07005614 struct io_ring_ctx *ctx = req->ctx;
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005615 unsigned int sqe_flags;
Pavel Begunkov9c280f92020-04-08 08:58:46 +03005616 int ret, id, fd;
Jens Axboe9e645e112019-05-10 16:07:28 -06005617
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005618 sqe_flags = READ_ONCE(sqe->flags);
Jens Axboe9e645e112019-05-10 16:07:28 -06005619
5620 /* enforce forwards compatibility on users */
Pavel Begunkov32fe5252019-12-17 22:26:58 +03005621 if (unlikely(sqe_flags & ~SQE_VALID_FLAGS)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06005622 ret = -EINVAL;
Pavel Begunkov196be952019-11-07 01:41:06 +03005623 goto err_req;
Jens Axboe9e645e112019-05-10 16:07:28 -06005624 }
5625
Jens Axboebcda7ba2020-02-23 16:42:51 -07005626 if ((sqe_flags & IOSQE_BUFFER_SELECT) &&
5627 !io_op_defs[req->opcode].buffer_select) {
5628 ret = -EOPNOTSUPP;
5629 goto err_req;
5630 }
5631
Jens Axboe75c6a032020-01-28 10:15:23 -07005632 id = READ_ONCE(sqe->personality);
5633 if (id) {
Jens Axboe193155c2020-02-22 23:22:19 -07005634 req->work.creds = idr_find(&ctx->personality_idr, id);
5635 if (unlikely(!req->work.creds)) {
Jens Axboe75c6a032020-01-28 10:15:23 -07005636 ret = -EINVAL;
5637 goto err_req;
5638 }
Jens Axboe193155c2020-02-22 23:22:19 -07005639 get_cred(req->work.creds);
Jens Axboe75c6a032020-01-28 10:15:23 -07005640 }
5641
Pavel Begunkov6b47ee62020-01-18 20:22:41 +03005642 /* same numerical values with corresponding REQ_F_*, safe to copy */
Pavel Begunkov8da11c12020-02-24 11:32:44 +03005643 req->flags |= sqe_flags & (IOSQE_IO_DRAIN | IOSQE_IO_HARDLINK |
Jens Axboebcda7ba2020-02-23 16:42:51 -07005644 IOSQE_ASYNC | IOSQE_FIXED_FILE |
5645 IOSQE_BUFFER_SELECT);
Jens Axboe9e645e112019-05-10 16:07:28 -06005646
Pavel Begunkov9c280f92020-04-08 08:58:46 +03005647 fd = READ_ONCE(sqe->fd);
5648 ret = io_req_set_file(state, req, fd, sqe_flags);
Jens Axboe9e645e112019-05-10 16:07:28 -06005649 if (unlikely(ret)) {
5650err_req:
Jens Axboe78e19bb2019-11-06 15:21:34 -07005651 io_cqring_add_event(req, ret);
5652 io_double_put_req(req);
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03005653 return false;
Jens Axboe9e645e112019-05-10 16:07:28 -06005654 }
5655
Jens Axboe9e645e112019-05-10 16:07:28 -06005656 /*
5657 * If we already have a head request, queue this one for async
5658 * submittal once the head completes. If we don't have a head but
5659 * IOSQE_IO_LINK is set in the sqe, start a new head. This one will be
5660 * submitted sync once the chain is complete. If none of those
5661 * conditions are true (normal request), then just queue it.
5662 */
5663 if (*link) {
Pavel Begunkov9d763772019-12-17 02:22:07 +03005664 struct io_kiocb *head = *link;
Jens Axboe9e645e112019-05-10 16:07:28 -06005665
Pavel Begunkov8cdf2192020-01-25 00:40:24 +03005666 /*
5667 * Taking sequential execution of a link, draining both sides
5668 * of the link also fullfils IOSQE_IO_DRAIN semantics for all
5669 * requests in the link. So, it drains the head and the
5670 * next after the link request. The last one is done via
5671 * drain_next flag to persist the effect across calls.
5672 */
Pavel Begunkov711be032020-01-17 03:57:59 +03005673 if (sqe_flags & IOSQE_IO_DRAIN) {
5674 head->flags |= REQ_F_IO_DRAIN;
5675 ctx->drain_next = 1;
5676 }
Jens Axboeb7bb4f72019-12-15 22:13:43 -07005677 if (io_alloc_async_ctx(req)) {
Jens Axboe9e645e112019-05-10 16:07:28 -06005678 ret = -EAGAIN;
5679 goto err_req;
5680 }
5681
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;
Jens Axboef67676d2019-12-02 11:03:47 -07005686 goto err_req;
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 */
5692 if (!(sqe_flags & (IOSQE_IO_LINK|IOSQE_IO_HARDLINK))) {
5693 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;
5699 req->ctx->drain_next = 0;
5700 }
5701 if (sqe_flags & (IOSQE_IO_LINK|IOSQE_IO_HARDLINK)) {
5702 req->flags |= REQ_F_LINK;
Pavel Begunkov711be032020-01-17 03:57:59 +03005703 INIT_LIST_HEAD(&req->link_list);
Pavel Begunkovf1d96a82020-03-13 22:29:14 +03005704
5705 if (io_alloc_async_ctx(req)) {
5706 ret = -EAGAIN;
5707 goto err_req;
5708 }
Pavel Begunkov711be032020-01-17 03:57:59 +03005709 ret = io_req_defer_prep(req, sqe);
5710 if (ret)
5711 req->flags |= REQ_F_FAIL_LINK;
5712 *link = req;
5713 } else {
5714 io_queue_sqe(req, sqe);
5715 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005716 }
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03005717
5718 return true;
Jens Axboe9e645e112019-05-10 16:07:28 -06005719}
5720
Jens Axboe9a56a232019-01-09 09:06:50 -07005721/*
5722 * Batched submission is done, ensure local IO is flushed out.
5723 */
5724static void io_submit_state_end(struct io_submit_state *state)
5725{
5726 blk_finish_plug(&state->plug);
Jens Axboe3d6770f2019-04-13 11:50:54 -06005727 io_file_put(state);
Jens Axboe2579f912019-01-09 09:10:43 -07005728 if (state->free_reqs)
Pavel Begunkov6c8a3132020-02-01 03:58:00 +03005729 kmem_cache_free_bulk(req_cachep, state->free_reqs, state->reqs);
Jens Axboe9a56a232019-01-09 09:06:50 -07005730}
5731
5732/*
5733 * Start submission side cache.
5734 */
5735static void io_submit_state_start(struct io_submit_state *state,
Jackie Liu22efde52019-12-02 17:14:52 +08005736 unsigned int max_ios)
Jens Axboe9a56a232019-01-09 09:06:50 -07005737{
5738 blk_start_plug(&state->plug);
Jens Axboe2579f912019-01-09 09:10:43 -07005739 state->free_reqs = 0;
Jens Axboe9a56a232019-01-09 09:06:50 -07005740 state->file = NULL;
5741 state->ios_left = max_ios;
5742}
5743
Jens Axboe2b188cc2019-01-07 10:46:33 -07005744static void io_commit_sqring(struct io_ring_ctx *ctx)
5745{
Hristo Venev75b28af2019-08-26 17:23:46 +00005746 struct io_rings *rings = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005747
Pavel Begunkovcaf582c2019-12-30 21:24:46 +03005748 /*
5749 * Ensure any loads from the SQEs are done at this point,
5750 * since once we write the new head, the application could
5751 * write new data to them.
5752 */
5753 smp_store_release(&rings->sq.head, ctx->cached_sq_head);
Jens Axboe2b188cc2019-01-07 10:46:33 -07005754}
5755
5756/*
Jens Axboe3529d8c2019-12-19 18:24:38 -07005757 * Fetch an sqe, if one is available. Note that sqe_ptr will point to memory
Jens Axboe2b188cc2019-01-07 10:46:33 -07005758 * that is mapped by userspace. This means that care needs to be taken to
5759 * ensure that reads are stable, as we cannot rely on userspace always
5760 * being a good citizen. If members of the sqe are validated and then later
5761 * used, it's important that those reads are done through READ_ONCE() to
5762 * prevent a re-load down the line.
5763 */
Pavel Begunkov709b3022020-04-08 08:58:43 +03005764static const struct io_uring_sqe *io_get_sqe(struct io_ring_ctx *ctx)
Jens Axboe2b188cc2019-01-07 10:46:33 -07005765{
Hristo Venev75b28af2019-08-26 17:23:46 +00005766 u32 *sq_array = ctx->sq_array;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005767 unsigned head;
5768
5769 /*
5770 * The cached sq head (or cq tail) serves two purposes:
5771 *
5772 * 1) allows us to batch the cost of updating the user visible
5773 * head updates.
5774 * 2) allows the kernel side to track the head on its own, even
5775 * though the application is the one updating it.
5776 */
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005777 head = READ_ONCE(sq_array[ctx->cached_sq_head & ctx->sq_mask]);
Pavel Begunkov709b3022020-04-08 08:58:43 +03005778 if (likely(head < ctx->sq_entries))
5779 return &ctx->sq_sqes[head];
Jens Axboe2b188cc2019-01-07 10:46:33 -07005780
5781 /* drop invalid entries */
Jens Axboe498ccd92019-10-25 10:04:25 -06005782 ctx->cached_sq_dropped++;
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005783 WRITE_ONCE(ctx->rings->sq_dropped, ctx->cached_sq_dropped);
Pavel Begunkov709b3022020-04-08 08:58:43 +03005784 return NULL;
5785}
5786
5787static inline void io_consume_sqe(struct io_ring_ctx *ctx)
5788{
5789 ctx->cached_sq_head++;
Jens Axboe2b188cc2019-01-07 10:46:33 -07005790}
5791
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03005792static void io_init_req(struct io_ring_ctx *ctx, struct io_kiocb *req,
5793 const struct io_uring_sqe *sqe)
5794{
5795 /*
5796 * All io need record the previous position, if LINK vs DARIN,
5797 * it can be used to mark the position of the first IO in the
5798 * link list.
5799 */
5800 req->sequence = ctx->cached_sq_head;
5801 req->opcode = READ_ONCE(sqe->opcode);
5802 req->user_data = READ_ONCE(sqe->user_data);
5803 req->io = NULL;
5804 req->file = NULL;
5805 req->ctx = ctx;
5806 req->flags = 0;
5807 /* one is dropped after submission, the other at completion */
5808 refcount_set(&req->refs, 2);
5809 req->task = NULL;
5810 req->result = 0;
5811 INIT_IO_WORK(&req->work, io_wq_submit_work);
5812}
5813
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005814static int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr,
Pavel Begunkovae9428c2019-11-06 00:22:14 +03005815 struct file *ring_file, int ring_fd,
5816 struct mm_struct **mm, bool async)
Jens Axboe6c271ce2019-01-10 11:22:30 -07005817{
5818 struct io_submit_state state, *statep = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06005819 struct io_kiocb *link = NULL;
Jens Axboe9e645e112019-05-10 16:07:28 -06005820 int i, submitted = 0;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005821 bool mm_fault = false;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005822
Jens Axboec4a2ed72019-11-21 21:01:26 -07005823 /* if we have a backlog and couldn't flush it all, return BUSY */
Jens Axboead3eb2c2019-12-18 17:12:20 -07005824 if (test_bit(0, &ctx->sq_check_overflow)) {
5825 if (!list_empty(&ctx->cq_overflow_list) &&
5826 !io_cqring_overflow_flush(ctx, false))
5827 return -EBUSY;
5828 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07005829
Pavel Begunkovee7d46d2019-12-30 21:24:45 +03005830 /* make sure SQ entry isn't read before tail */
5831 nr = min3(nr, ctx->sq_entries, io_sqring_entries(ctx));
Pavel Begunkov9ef4f122019-12-30 21:24:44 +03005832
Pavel Begunkov2b85edf2019-12-28 14:13:03 +03005833 if (!percpu_ref_tryget_many(&ctx->refs, nr))
5834 return -EAGAIN;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005835
5836 if (nr > IO_PLUG_THRESHOLD) {
Jackie Liu22efde52019-12-02 17:14:52 +08005837 io_submit_state_start(&state, nr);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005838 statep = &state;
5839 }
5840
Pavel Begunkovb14cca02020-01-17 04:45:59 +03005841 ctx->ring_fd = ring_fd;
5842 ctx->ring_file = ring_file;
5843
Jens Axboe6c271ce2019-01-10 11:22:30 -07005844 for (i = 0; i < nr; i++) {
Jens Axboe3529d8c2019-12-19 18:24:38 -07005845 const struct io_uring_sqe *sqe;
Pavel Begunkov196be952019-11-07 01:41:06 +03005846 struct io_kiocb *req;
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005847 int err;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005848
Pavel Begunkovb1e50e52020-04-08 08:58:44 +03005849 sqe = io_get_sqe(ctx);
5850 if (unlikely(!sqe)) {
5851 io_consume_sqe(ctx);
5852 break;
5853 }
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03005854 req = io_alloc_req(ctx, statep);
Pavel Begunkov196be952019-11-07 01:41:06 +03005855 if (unlikely(!req)) {
5856 if (!submitted)
5857 submitted = -EAGAIN;
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005858 break;
Jens Axboe9e645e112019-05-10 16:07:28 -06005859 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005860
Pavel Begunkov0553b8b2020-04-08 08:58:45 +03005861 io_init_req(ctx, req, sqe);
Pavel Begunkov709b3022020-04-08 08:58:43 +03005862 io_consume_sqe(ctx);
Jens Axboed3656342019-12-18 09:50:26 -07005863 /* will complete beyond this point, count as submitted */
5864 submitted++;
5865
5866 if (unlikely(req->opcode >= IORING_OP_LAST)) {
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005867 err = -EINVAL;
5868fail_req:
5869 io_cqring_add_event(req, err);
Jens Axboed3656342019-12-18 09:50:26 -07005870 io_double_put_req(req);
5871 break;
5872 }
5873
5874 if (io_op_defs[req->opcode].needs_mm && !*mm) {
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005875 mm_fault = mm_fault || !mmget_not_zero(ctx->sqo_mm);
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005876 if (unlikely(mm_fault)) {
5877 err = -EFAULT;
5878 goto fail_req;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005879 }
Pavel Begunkov1cb1edb2020-02-06 21:16:09 +03005880 use_mm(ctx->sqo_mm);
5881 *mm = ctx->sqo_mm;
Pavel Begunkov95a1b3ff2019-10-27 23:15:41 +03005882 }
5883
Pavel Begunkovcf6fd4b2019-11-25 23:14:39 +03005884 req->needs_fixed_file = async;
Jens Axboe354420f2020-01-08 18:55:15 -07005885 trace_io_uring_submit_sqe(ctx, req->opcode, req->user_data,
5886 true, async);
Jens Axboe3529d8c2019-12-19 18:24:38 -07005887 if (!io_submit_sqe(req, sqe, statep, &link))
Pavel Begunkov2e6e1fd2019-12-05 16:15:45 +03005888 break;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005889 }
5890
Pavel Begunkov9466f432020-01-25 22:34:01 +03005891 if (unlikely(submitted != nr)) {
5892 int ref_used = (submitted == -EAGAIN) ? 0 : submitted;
5893
5894 percpu_ref_put_many(&ctx->refs, nr - ref_used);
5895 }
Jens Axboe9e645e112019-05-10 16:07:28 -06005896 if (link)
Pavel Begunkov1b4a51b2019-11-21 11:54:28 +03005897 io_queue_link_head(link);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005898 if (statep)
5899 io_submit_state_end(&state);
5900
Pavel Begunkovae9428c2019-11-06 00:22:14 +03005901 /* Commit SQ ring head once we've consumed and submitted all SQEs */
5902 io_commit_sqring(ctx);
5903
Jens Axboe6c271ce2019-01-10 11:22:30 -07005904 return submitted;
5905}
5906
5907static int io_sq_thread(void *data)
5908{
Jens Axboe6c271ce2019-01-10 11:22:30 -07005909 struct io_ring_ctx *ctx = data;
5910 struct mm_struct *cur_mm = NULL;
Jens Axboe181e4482019-11-25 08:52:30 -07005911 const struct cred *old_cred;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005912 mm_segment_t old_fs;
5913 DEFINE_WAIT(wait);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005914 unsigned long timeout;
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005915 int ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005916
Jens Axboe206aefd2019-11-07 18:27:42 -07005917 complete(&ctx->completions[1]);
Jackie Liua4c0b3d2019-07-08 13:41:12 +08005918
Jens Axboe6c271ce2019-01-10 11:22:30 -07005919 old_fs = get_fs();
5920 set_fs(USER_DS);
Jens Axboe181e4482019-11-25 08:52:30 -07005921 old_cred = override_creds(ctx->creds);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005922
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005923 timeout = jiffies + ctx->sq_thread_idle;
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02005924 while (!kthread_should_park()) {
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005925 unsigned int to_submit;
Jens Axboe6c271ce2019-01-10 11:22:30 -07005926
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005927 if (!list_empty(&ctx->poll_list)) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07005928 unsigned nr_events = 0;
5929
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005930 mutex_lock(&ctx->uring_lock);
5931 if (!list_empty(&ctx->poll_list))
5932 io_iopoll_getevents(ctx, &nr_events, 0);
5933 else
Jens Axboe6c271ce2019-01-10 11:22:30 -07005934 timeout = jiffies + ctx->sq_thread_idle;
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005935 mutex_unlock(&ctx->uring_lock);
Jens Axboe6c271ce2019-01-10 11:22:30 -07005936 }
5937
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005938 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07005939
5940 /*
5941 * If submit got -EBUSY, flag us as needing the application
5942 * to enter the kernel to reap and flush events.
5943 */
5944 if (!to_submit || ret == -EBUSY) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07005945 /*
Stefano Garzarella7143b5a2020-02-21 16:42:16 +01005946 * Drop cur_mm before scheduling, we can't hold it for
5947 * long periods (or over schedule()). Do this before
5948 * adding ourselves to the waitqueue, as the unuse/drop
5949 * may sleep.
5950 */
5951 if (cur_mm) {
5952 unuse_mm(cur_mm);
5953 mmput(cur_mm);
5954 cur_mm = NULL;
5955 }
5956
5957 /*
Jens Axboe6c271ce2019-01-10 11:22:30 -07005958 * We're polling. If we're within the defined idle
5959 * period, then let us spin without work before going
Jens Axboec1edbf52019-11-10 16:56:04 -07005960 * to sleep. The exception is if we got EBUSY doing
5961 * more IO, we should wait for the application to
5962 * reap events and wake us up.
Jens Axboe6c271ce2019-01-10 11:22:30 -07005963 */
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005964 if (!list_empty(&ctx->poll_list) ||
Jens Axboedf069d82020-02-04 16:48:34 -07005965 (!time_after(jiffies, timeout) && ret != -EBUSY &&
5966 !percpu_ref_is_dying(&ctx->refs))) {
Jens Axboeb41e9852020-02-17 09:52:41 -07005967 if (current->task_works)
5968 task_work_run();
Jens Axboe9831a902019-09-19 09:48:55 -06005969 cond_resched();
Jens Axboe6c271ce2019-01-10 11:22:30 -07005970 continue;
5971 }
5972
Jens Axboe6c271ce2019-01-10 11:22:30 -07005973 prepare_to_wait(&ctx->sqo_wait, &wait,
5974 TASK_INTERRUPTIBLE);
5975
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08005976 /*
5977 * While doing polled IO, before going to sleep, we need
5978 * to check if there are new reqs added to poll_list, it
5979 * is because reqs may have been punted to io worker and
5980 * will be added to poll_list later, hence check the
5981 * poll_list again.
5982 */
5983 if ((ctx->flags & IORING_SETUP_IOPOLL) &&
5984 !list_empty_careful(&ctx->poll_list)) {
5985 finish_wait(&ctx->sqo_wait, &wait);
5986 continue;
5987 }
5988
Jens Axboe6c271ce2019-01-10 11:22:30 -07005989 /* Tell userspace we may need a wakeup call */
Hristo Venev75b28af2019-08-26 17:23:46 +00005990 ctx->rings->sq_flags |= IORING_SQ_NEED_WAKEUP;
Stefan Bühler0d7bae62019-04-19 11:57:45 +02005991 /* make sure to read SQ tail after writing flags */
5992 smp_mb();
Jens Axboe6c271ce2019-01-10 11:22:30 -07005993
Pavel Begunkovfb5ccc92019-10-25 12:31:30 +03005994 to_submit = io_sqring_entries(ctx);
Jens Axboec1edbf52019-11-10 16:56:04 -07005995 if (!to_submit || ret == -EBUSY) {
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02005996 if (kthread_should_park()) {
Jens Axboe6c271ce2019-01-10 11:22:30 -07005997 finish_wait(&ctx->sqo_wait, &wait);
5998 break;
5999 }
Jens Axboeb41e9852020-02-17 09:52:41 -07006000 if (current->task_works) {
6001 task_work_run();
Hillf Danton10bea962020-04-01 17:19:33 +08006002 finish_wait(&ctx->sqo_wait, &wait);
Jens Axboeb41e9852020-02-17 09:52:41 -07006003 continue;
6004 }
Jens Axboe6c271ce2019-01-10 11:22:30 -07006005 if (signal_pending(current))
6006 flush_signals(current);
6007 schedule();
6008 finish_wait(&ctx->sqo_wait, &wait);
6009
Hristo Venev75b28af2019-08-26 17:23:46 +00006010 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006011 continue;
6012 }
6013 finish_wait(&ctx->sqo_wait, &wait);
6014
Hristo Venev75b28af2019-08-26 17:23:46 +00006015 ctx->rings->sq_flags &= ~IORING_SQ_NEED_WAKEUP;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006016 }
6017
Jens Axboe8a4955f2019-12-09 14:52:35 -07006018 mutex_lock(&ctx->uring_lock);
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006019 ret = io_submit_sqes(ctx, to_submit, NULL, -1, &cur_mm, true);
Jens Axboe8a4955f2019-12-09 14:52:35 -07006020 mutex_unlock(&ctx->uring_lock);
Xiaoguang Wangbdcd3ea2020-02-25 22:12:08 +08006021 timeout = jiffies + ctx->sq_thread_idle;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006022 }
6023
Jens Axboeb41e9852020-02-17 09:52:41 -07006024 if (current->task_works)
6025 task_work_run();
6026
Jens Axboe6c271ce2019-01-10 11:22:30 -07006027 set_fs(old_fs);
6028 if (cur_mm) {
6029 unuse_mm(cur_mm);
6030 mmput(cur_mm);
6031 }
Jens Axboe181e4482019-11-25 08:52:30 -07006032 revert_creds(old_cred);
Jens Axboe06058632019-04-13 09:26:03 -06006033
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02006034 kthread_parkme();
Jens Axboe06058632019-04-13 09:26:03 -06006035
Jens Axboe6c271ce2019-01-10 11:22:30 -07006036 return 0;
6037}
6038
Jens Axboebda52162019-09-24 13:47:15 -06006039struct io_wait_queue {
6040 struct wait_queue_entry wq;
6041 struct io_ring_ctx *ctx;
6042 unsigned to_wait;
6043 unsigned nr_timeouts;
6044};
6045
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006046static inline bool io_should_wake(struct io_wait_queue *iowq, bool noflush)
Jens Axboebda52162019-09-24 13:47:15 -06006047{
6048 struct io_ring_ctx *ctx = iowq->ctx;
6049
6050 /*
Brian Gianforcarod195a662019-12-13 03:09:50 -08006051 * Wake up if we have enough events, or if a timeout occurred since we
Jens Axboebda52162019-09-24 13:47:15 -06006052 * started waiting. For timeouts, we always want to return to userspace,
6053 * regardless of event count.
6054 */
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006055 return io_cqring_events(ctx, noflush) >= iowq->to_wait ||
Jens Axboebda52162019-09-24 13:47:15 -06006056 atomic_read(&ctx->cq_timeouts) != iowq->nr_timeouts;
6057}
6058
6059static int io_wake_function(struct wait_queue_entry *curr, unsigned int mode,
6060 int wake_flags, void *key)
6061{
6062 struct io_wait_queue *iowq = container_of(curr, struct io_wait_queue,
6063 wq);
6064
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006065 /* use noflush == true, as we can't safely rely on locking context */
6066 if (!io_should_wake(iowq, true))
Jens Axboebda52162019-09-24 13:47:15 -06006067 return -1;
6068
6069 return autoremove_wake_function(curr, mode, wake_flags, key);
6070}
6071
Jens Axboe2b188cc2019-01-07 10:46:33 -07006072/*
6073 * Wait until events become available, if we don't already have some. The
6074 * application must reap them itself, as they reside on the shared cq ring.
6075 */
6076static int io_cqring_wait(struct io_ring_ctx *ctx, int min_events,
6077 const sigset_t __user *sig, size_t sigsz)
6078{
Jens Axboebda52162019-09-24 13:47:15 -06006079 struct io_wait_queue iowq = {
6080 .wq = {
6081 .private = current,
6082 .func = io_wake_function,
6083 .entry = LIST_HEAD_INIT(iowq.wq.entry),
6084 },
6085 .ctx = ctx,
6086 .to_wait = min_events,
6087 };
Hristo Venev75b28af2019-08-26 17:23:46 +00006088 struct io_rings *rings = ctx->rings;
Jackie Liue9ffa5c2019-10-29 11:16:42 +08006089 int ret = 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006090
Jens Axboeb41e9852020-02-17 09:52:41 -07006091 do {
6092 if (io_cqring_events(ctx, false) >= min_events)
6093 return 0;
6094 if (!current->task_works)
6095 break;
6096 task_work_run();
6097 } while (1);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006098
6099 if (sig) {
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006100#ifdef CONFIG_COMPAT
6101 if (in_compat_syscall())
6102 ret = set_compat_user_sigmask((const compat_sigset_t __user *)sig,
Oleg Nesterovb7724342019-07-16 16:29:53 -07006103 sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006104 else
6105#endif
Oleg Nesterovb7724342019-07-16 16:29:53 -07006106 ret = set_user_sigmask(sig, sigsz);
Arnd Bergmann9e75ad52019-03-25 15:34:53 +01006107
Jens Axboe2b188cc2019-01-07 10:46:33 -07006108 if (ret)
6109 return ret;
6110 }
6111
Jens Axboebda52162019-09-24 13:47:15 -06006112 iowq.nr_timeouts = atomic_read(&ctx->cq_timeouts);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02006113 trace_io_uring_cqring_wait(ctx, min_events);
Jens Axboebda52162019-09-24 13:47:15 -06006114 do {
6115 prepare_to_wait_exclusive(&ctx->wait, &iowq.wq,
6116 TASK_INTERRUPTIBLE);
Jens Axboeb41e9852020-02-17 09:52:41 -07006117 if (current->task_works)
6118 task_work_run();
Jens Axboe1d7bb1d2019-11-06 11:31:17 -07006119 if (io_should_wake(&iowq, false))
Jens Axboebda52162019-09-24 13:47:15 -06006120 break;
6121 schedule();
6122 if (signal_pending(current)) {
Jackie Liue9ffa5c2019-10-29 11:16:42 +08006123 ret = -EINTR;
Jens Axboebda52162019-09-24 13:47:15 -06006124 break;
6125 }
6126 } while (1);
6127 finish_wait(&ctx->wait, &iowq.wq);
6128
Jackie Liue9ffa5c2019-10-29 11:16:42 +08006129 restore_saved_sigmask_unless(ret == -EINTR);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006130
Hristo Venev75b28af2019-08-26 17:23:46 +00006131 return READ_ONCE(rings->cq.head) == READ_ONCE(rings->cq.tail) ? ret : 0;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006132}
6133
Jens Axboe6b063142019-01-10 22:13:58 -07006134static void __io_sqe_files_unregister(struct io_ring_ctx *ctx)
6135{
6136#if defined(CONFIG_UNIX)
6137 if (ctx->ring_sock) {
6138 struct sock *sock = ctx->ring_sock->sk;
6139 struct sk_buff *skb;
6140
6141 while ((skb = skb_dequeue(&sock->sk_receive_queue)) != NULL)
6142 kfree_skb(skb);
6143 }
6144#else
6145 int i;
6146
Jens Axboe65e19f52019-10-26 07:20:21 -06006147 for (i = 0; i < ctx->nr_user_files; i++) {
6148 struct file *file;
6149
6150 file = io_file_from_index(ctx, i);
6151 if (file)
6152 fput(file);
6153 }
Jens Axboe6b063142019-01-10 22:13:58 -07006154#endif
6155}
6156
Jens Axboe05f3fb32019-12-09 11:22:50 -07006157static void io_file_ref_kill(struct percpu_ref *ref)
6158{
6159 struct fixed_file_data *data;
6160
6161 data = container_of(ref, struct fixed_file_data, refs);
6162 complete(&data->done);
6163}
6164
Jens Axboe6b063142019-01-10 22:13:58 -07006165static int io_sqe_files_unregister(struct io_ring_ctx *ctx)
6166{
Jens Axboe05f3fb32019-12-09 11:22:50 -07006167 struct fixed_file_data *data = ctx->file_data;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006168 struct fixed_file_ref_node *ref_node = NULL;
Jens Axboe65e19f52019-10-26 07:20:21 -06006169 unsigned nr_tables, i;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006170 unsigned long flags;
Jens Axboe65e19f52019-10-26 07:20:21 -06006171
Jens Axboe05f3fb32019-12-09 11:22:50 -07006172 if (!data)
Jens Axboe6b063142019-01-10 22:13:58 -07006173 return -ENXIO;
6174
Xiaoguang Wang05589552020-03-31 14:05:18 +08006175 spin_lock_irqsave(&data->lock, flags);
6176 if (!list_empty(&data->ref_list))
6177 ref_node = list_first_entry(&data->ref_list,
6178 struct fixed_file_ref_node, node);
6179 spin_unlock_irqrestore(&data->lock, flags);
6180 if (ref_node)
6181 percpu_ref_kill(&ref_node->refs);
6182
6183 percpu_ref_kill(&data->refs);
6184
6185 /* wait for all refs nodes to complete */
Jens Axboe2faf8522020-02-04 19:54:55 -07006186 wait_for_completion(&data->done);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006187
Jens Axboe6b063142019-01-10 22:13:58 -07006188 __io_sqe_files_unregister(ctx);
Jens Axboe65e19f52019-10-26 07:20:21 -06006189 nr_tables = DIV_ROUND_UP(ctx->nr_user_files, IORING_MAX_FILES_TABLE);
6190 for (i = 0; i < nr_tables; i++)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006191 kfree(data->table[i].files);
6192 kfree(data->table);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006193 percpu_ref_exit(&data->refs);
6194 kfree(data);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006195 ctx->file_data = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07006196 ctx->nr_user_files = 0;
6197 return 0;
6198}
6199
Jens Axboe6c271ce2019-01-10 11:22:30 -07006200static void io_sq_thread_stop(struct io_ring_ctx *ctx)
6201{
6202 if (ctx->sqo_thread) {
Jens Axboe206aefd2019-11-07 18:27:42 -07006203 wait_for_completion(&ctx->completions[1]);
Roman Penyaev2bbcd6d2019-05-16 10:53:57 +02006204 /*
6205 * The park is a bit of a work-around, without it we get
6206 * warning spews on shutdown with SQPOLL set and affinity
6207 * set to a single CPU.
6208 */
Jens Axboe06058632019-04-13 09:26:03 -06006209 kthread_park(ctx->sqo_thread);
Jens Axboe6c271ce2019-01-10 11:22:30 -07006210 kthread_stop(ctx->sqo_thread);
6211 ctx->sqo_thread = NULL;
6212 }
6213}
6214
Jens Axboe6b063142019-01-10 22:13:58 -07006215static void io_finish_async(struct io_ring_ctx *ctx)
6216{
Jens Axboe6c271ce2019-01-10 11:22:30 -07006217 io_sq_thread_stop(ctx);
6218
Jens Axboe561fb042019-10-24 07:25:42 -06006219 if (ctx->io_wq) {
6220 io_wq_destroy(ctx->io_wq);
6221 ctx->io_wq = NULL;
Jens Axboe6b063142019-01-10 22:13:58 -07006222 }
6223}
6224
6225#if defined(CONFIG_UNIX)
Jens Axboe6b063142019-01-10 22:13:58 -07006226/*
6227 * Ensure the UNIX gc is aware of our file set, so we are certain that
6228 * the io_uring can be safely unregistered on process exit, even if we have
6229 * loops in the file referencing.
6230 */
6231static int __io_sqe_files_scm(struct io_ring_ctx *ctx, int nr, int offset)
6232{
6233 struct sock *sk = ctx->ring_sock->sk;
6234 struct scm_fp_list *fpl;
6235 struct sk_buff *skb;
Jens Axboe08a45172019-10-03 08:11:03 -06006236 int i, nr_files;
Jens Axboe6b063142019-01-10 22:13:58 -07006237
Jens Axboe6b063142019-01-10 22:13:58 -07006238 fpl = kzalloc(sizeof(*fpl), GFP_KERNEL);
6239 if (!fpl)
6240 return -ENOMEM;
6241
6242 skb = alloc_skb(0, GFP_KERNEL);
6243 if (!skb) {
6244 kfree(fpl);
6245 return -ENOMEM;
6246 }
6247
6248 skb->sk = sk;
Jens Axboe6b063142019-01-10 22:13:58 -07006249
Jens Axboe08a45172019-10-03 08:11:03 -06006250 nr_files = 0;
Jens Axboe6b063142019-01-10 22:13:58 -07006251 fpl->user = get_uid(ctx->user);
6252 for (i = 0; i < nr; i++) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006253 struct file *file = io_file_from_index(ctx, i + offset);
6254
6255 if (!file)
Jens Axboe08a45172019-10-03 08:11:03 -06006256 continue;
Jens Axboe65e19f52019-10-26 07:20:21 -06006257 fpl->fp[nr_files] = get_file(file);
Jens Axboe08a45172019-10-03 08:11:03 -06006258 unix_inflight(fpl->user, fpl->fp[nr_files]);
6259 nr_files++;
Jens Axboe6b063142019-01-10 22:13:58 -07006260 }
6261
Jens Axboe08a45172019-10-03 08:11:03 -06006262 if (nr_files) {
6263 fpl->max = SCM_MAX_FD;
6264 fpl->count = nr_files;
6265 UNIXCB(skb).fp = fpl;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006266 skb->destructor = unix_destruct_scm;
Jens Axboe08a45172019-10-03 08:11:03 -06006267 refcount_add(skb->truesize, &sk->sk_wmem_alloc);
6268 skb_queue_head(&sk->sk_receive_queue, skb);
Jens Axboe6b063142019-01-10 22:13:58 -07006269
Jens Axboe08a45172019-10-03 08:11:03 -06006270 for (i = 0; i < nr_files; i++)
6271 fput(fpl->fp[i]);
6272 } else {
6273 kfree_skb(skb);
6274 kfree(fpl);
6275 }
Jens Axboe6b063142019-01-10 22:13:58 -07006276
6277 return 0;
6278}
6279
6280/*
6281 * If UNIX sockets are enabled, fd passing can cause a reference cycle which
6282 * causes regular reference counting to break down. We rely on the UNIX
6283 * garbage collection to take care of this problem for us.
6284 */
6285static int io_sqe_files_scm(struct io_ring_ctx *ctx)
6286{
6287 unsigned left, total;
6288 int ret = 0;
6289
6290 total = 0;
6291 left = ctx->nr_user_files;
6292 while (left) {
6293 unsigned this_files = min_t(unsigned, left, SCM_MAX_FD);
Jens Axboe6b063142019-01-10 22:13:58 -07006294
6295 ret = __io_sqe_files_scm(ctx, this_files, total);
6296 if (ret)
6297 break;
6298 left -= this_files;
6299 total += this_files;
6300 }
6301
6302 if (!ret)
6303 return 0;
6304
6305 while (total < ctx->nr_user_files) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006306 struct file *file = io_file_from_index(ctx, total);
6307
6308 if (file)
6309 fput(file);
Jens Axboe6b063142019-01-10 22:13:58 -07006310 total++;
6311 }
6312
6313 return ret;
6314}
6315#else
6316static int io_sqe_files_scm(struct io_ring_ctx *ctx)
6317{
6318 return 0;
6319}
6320#endif
6321
Jens Axboe65e19f52019-10-26 07:20:21 -06006322static int io_sqe_alloc_file_tables(struct io_ring_ctx *ctx, unsigned nr_tables,
6323 unsigned nr_files)
6324{
6325 int i;
6326
6327 for (i = 0; i < nr_tables; i++) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006328 struct fixed_file_table *table = &ctx->file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06006329 unsigned this_files;
6330
6331 this_files = min(nr_files, IORING_MAX_FILES_TABLE);
6332 table->files = kcalloc(this_files, sizeof(struct file *),
6333 GFP_KERNEL);
6334 if (!table->files)
6335 break;
6336 nr_files -= this_files;
6337 }
6338
6339 if (i == nr_tables)
6340 return 0;
6341
6342 for (i = 0; i < nr_tables; i++) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006343 struct fixed_file_table *table = &ctx->file_data->table[i];
Jens Axboe65e19f52019-10-26 07:20:21 -06006344 kfree(table->files);
6345 }
6346 return 1;
6347}
6348
Jens Axboe05f3fb32019-12-09 11:22:50 -07006349static void io_ring_file_put(struct io_ring_ctx *ctx, struct file *file)
Jens Axboec3a31e62019-10-03 13:59:56 -06006350{
6351#if defined(CONFIG_UNIX)
Jens Axboec3a31e62019-10-03 13:59:56 -06006352 struct sock *sock = ctx->ring_sock->sk;
6353 struct sk_buff_head list, *head = &sock->sk_receive_queue;
6354 struct sk_buff *skb;
6355 int i;
6356
6357 __skb_queue_head_init(&list);
6358
6359 /*
6360 * Find the skb that holds this file in its SCM_RIGHTS. When found,
6361 * remove this entry and rearrange the file array.
6362 */
6363 skb = skb_dequeue(head);
6364 while (skb) {
6365 struct scm_fp_list *fp;
6366
6367 fp = UNIXCB(skb).fp;
6368 for (i = 0; i < fp->count; i++) {
6369 int left;
6370
6371 if (fp->fp[i] != file)
6372 continue;
6373
6374 unix_notinflight(fp->user, fp->fp[i]);
6375 left = fp->count - 1 - i;
6376 if (left) {
6377 memmove(&fp->fp[i], &fp->fp[i + 1],
6378 left * sizeof(struct file *));
6379 }
6380 fp->count--;
6381 if (!fp->count) {
6382 kfree_skb(skb);
6383 skb = NULL;
6384 } else {
6385 __skb_queue_tail(&list, skb);
6386 }
6387 fput(file);
6388 file = NULL;
6389 break;
6390 }
6391
6392 if (!file)
6393 break;
6394
6395 __skb_queue_tail(&list, skb);
6396
6397 skb = skb_dequeue(head);
6398 }
6399
6400 if (skb_peek(&list)) {
6401 spin_lock_irq(&head->lock);
6402 while ((skb = __skb_dequeue(&list)) != NULL)
6403 __skb_queue_tail(head, skb);
6404 spin_unlock_irq(&head->lock);
6405 }
6406#else
Jens Axboe05f3fb32019-12-09 11:22:50 -07006407 fput(file);
Jens Axboec3a31e62019-10-03 13:59:56 -06006408#endif
6409}
6410
Jens Axboe05f3fb32019-12-09 11:22:50 -07006411struct io_file_put {
Xiaoguang Wang05589552020-03-31 14:05:18 +08006412 struct list_head list;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006413 struct file *file;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006414};
6415
Xiaoguang Wang05589552020-03-31 14:05:18 +08006416static void io_file_put_work(struct work_struct *work)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006417{
Xiaoguang Wang05589552020-03-31 14:05:18 +08006418 struct fixed_file_ref_node *ref_node;
6419 struct fixed_file_data *file_data;
6420 struct io_ring_ctx *ctx;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006421 struct io_file_put *pfile, *tmp;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006422 unsigned long flags;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006423
Xiaoguang Wang05589552020-03-31 14:05:18 +08006424 ref_node = container_of(work, struct fixed_file_ref_node, work);
6425 file_data = ref_node->file_data;
6426 ctx = file_data->ctx;
6427
6428 list_for_each_entry_safe(pfile, tmp, &ref_node->file_list, list) {
6429 list_del_init(&pfile->list);
6430 io_ring_file_put(ctx, pfile->file);
6431 kfree(pfile);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006432 }
6433
Xiaoguang Wang05589552020-03-31 14:05:18 +08006434 spin_lock_irqsave(&file_data->lock, flags);
6435 list_del_init(&ref_node->node);
6436 spin_unlock_irqrestore(&file_data->lock, flags);
Jens Axboe2faf8522020-02-04 19:54:55 -07006437
Xiaoguang Wang05589552020-03-31 14:05:18 +08006438 percpu_ref_exit(&ref_node->refs);
6439 kfree(ref_node);
6440 percpu_ref_put(&file_data->refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006441}
6442
6443static void io_file_data_ref_zero(struct percpu_ref *ref)
6444{
Xiaoguang Wang05589552020-03-31 14:05:18 +08006445 struct fixed_file_ref_node *ref_node;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006446
Xiaoguang Wang05589552020-03-31 14:05:18 +08006447 ref_node = container_of(ref, struct fixed_file_ref_node, refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006448
Xiaoguang Wang05589552020-03-31 14:05:18 +08006449 queue_work(system_wq, &ref_node->work);
6450}
6451
6452static struct fixed_file_ref_node *alloc_fixed_file_ref_node(
6453 struct io_ring_ctx *ctx)
6454{
6455 struct fixed_file_ref_node *ref_node;
6456
6457 ref_node = kzalloc(sizeof(*ref_node), GFP_KERNEL);
6458 if (!ref_node)
6459 return ERR_PTR(-ENOMEM);
6460
6461 if (percpu_ref_init(&ref_node->refs, io_file_data_ref_zero,
6462 0, GFP_KERNEL)) {
6463 kfree(ref_node);
6464 return ERR_PTR(-ENOMEM);
6465 }
6466 INIT_LIST_HEAD(&ref_node->node);
6467 INIT_LIST_HEAD(&ref_node->file_list);
6468 INIT_WORK(&ref_node->work, io_file_put_work);
6469 ref_node->file_data = ctx->file_data;
6470 return ref_node;
6471
6472}
6473
6474static void destroy_fixed_file_ref_node(struct fixed_file_ref_node *ref_node)
6475{
6476 percpu_ref_exit(&ref_node->refs);
6477 kfree(ref_node);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006478}
6479
6480static int io_sqe_files_register(struct io_ring_ctx *ctx, void __user *arg,
6481 unsigned nr_args)
6482{
6483 __s32 __user *fds = (__s32 __user *) arg;
6484 unsigned nr_tables;
6485 struct file *file;
6486 int fd, ret = 0;
6487 unsigned i;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006488 struct fixed_file_ref_node *ref_node;
6489 unsigned long flags;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006490
6491 if (ctx->file_data)
6492 return -EBUSY;
6493 if (!nr_args)
6494 return -EINVAL;
6495 if (nr_args > IORING_MAX_FIXED_FILES)
6496 return -EMFILE;
6497
6498 ctx->file_data = kzalloc(sizeof(*ctx->file_data), GFP_KERNEL);
6499 if (!ctx->file_data)
6500 return -ENOMEM;
6501 ctx->file_data->ctx = ctx;
6502 init_completion(&ctx->file_data->done);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006503 INIT_LIST_HEAD(&ctx->file_data->ref_list);
Xiaoguang Wangf7fe9342020-04-07 20:02:31 +08006504 spin_lock_init(&ctx->file_data->lock);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006505
6506 nr_tables = DIV_ROUND_UP(nr_args, IORING_MAX_FILES_TABLE);
6507 ctx->file_data->table = kcalloc(nr_tables,
6508 sizeof(struct fixed_file_table),
6509 GFP_KERNEL);
6510 if (!ctx->file_data->table) {
6511 kfree(ctx->file_data);
6512 ctx->file_data = NULL;
6513 return -ENOMEM;
6514 }
6515
Xiaoguang Wang05589552020-03-31 14:05:18 +08006516 if (percpu_ref_init(&ctx->file_data->refs, io_file_ref_kill,
Jens Axboe05f3fb32019-12-09 11:22:50 -07006517 PERCPU_REF_ALLOW_REINIT, GFP_KERNEL)) {
6518 kfree(ctx->file_data->table);
6519 kfree(ctx->file_data);
6520 ctx->file_data = NULL;
6521 return -ENOMEM;
6522 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07006523
6524 if (io_sqe_alloc_file_tables(ctx, nr_tables, nr_args)) {
6525 percpu_ref_exit(&ctx->file_data->refs);
6526 kfree(ctx->file_data->table);
6527 kfree(ctx->file_data);
6528 ctx->file_data = NULL;
6529 return -ENOMEM;
6530 }
6531
6532 for (i = 0; i < nr_args; i++, ctx->nr_user_files++) {
6533 struct fixed_file_table *table;
6534 unsigned index;
6535
6536 ret = -EFAULT;
6537 if (copy_from_user(&fd, &fds[i], sizeof(fd)))
6538 break;
6539 /* allow sparse sets */
6540 if (fd == -1) {
6541 ret = 0;
6542 continue;
6543 }
6544
6545 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
6546 index = i & IORING_FILE_TABLE_MASK;
6547 file = fget(fd);
6548
6549 ret = -EBADF;
6550 if (!file)
6551 break;
6552
6553 /*
6554 * Don't allow io_uring instances to be registered. If UNIX
6555 * isn't enabled, then this causes a reference cycle and this
6556 * instance can never get freed. If UNIX is enabled we'll
6557 * handle it just fine, but there's still no point in allowing
6558 * a ring fd as it doesn't support regular read/write anyway.
6559 */
6560 if (file->f_op == &io_uring_fops) {
6561 fput(file);
6562 break;
6563 }
6564 ret = 0;
6565 table->files[index] = file;
6566 }
6567
6568 if (ret) {
6569 for (i = 0; i < ctx->nr_user_files; i++) {
6570 file = io_file_from_index(ctx, i);
6571 if (file)
6572 fput(file);
6573 }
6574 for (i = 0; i < nr_tables; i++)
6575 kfree(ctx->file_data->table[i].files);
6576
6577 kfree(ctx->file_data->table);
6578 kfree(ctx->file_data);
6579 ctx->file_data = NULL;
6580 ctx->nr_user_files = 0;
6581 return ret;
6582 }
6583
6584 ret = io_sqe_files_scm(ctx);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006585 if (ret) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006586 io_sqe_files_unregister(ctx);
Xiaoguang Wang05589552020-03-31 14:05:18 +08006587 return ret;
6588 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07006589
Xiaoguang Wang05589552020-03-31 14:05:18 +08006590 ref_node = alloc_fixed_file_ref_node(ctx);
6591 if (IS_ERR(ref_node)) {
6592 io_sqe_files_unregister(ctx);
6593 return PTR_ERR(ref_node);
6594 }
6595
6596 ctx->file_data->cur_refs = &ref_node->refs;
6597 spin_lock_irqsave(&ctx->file_data->lock, flags);
6598 list_add(&ref_node->node, &ctx->file_data->ref_list);
6599 spin_unlock_irqrestore(&ctx->file_data->lock, flags);
6600 percpu_ref_get(&ctx->file_data->refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006601 return ret;
6602}
6603
Jens Axboec3a31e62019-10-03 13:59:56 -06006604static int io_sqe_file_register(struct io_ring_ctx *ctx, struct file *file,
6605 int index)
6606{
6607#if defined(CONFIG_UNIX)
6608 struct sock *sock = ctx->ring_sock->sk;
6609 struct sk_buff_head *head = &sock->sk_receive_queue;
6610 struct sk_buff *skb;
6611
6612 /*
6613 * See if we can merge this file into an existing skb SCM_RIGHTS
6614 * file set. If there's no room, fall back to allocating a new skb
6615 * and filling it in.
6616 */
6617 spin_lock_irq(&head->lock);
6618 skb = skb_peek(head);
6619 if (skb) {
6620 struct scm_fp_list *fpl = UNIXCB(skb).fp;
6621
6622 if (fpl->count < SCM_MAX_FD) {
6623 __skb_unlink(skb, head);
6624 spin_unlock_irq(&head->lock);
6625 fpl->fp[fpl->count] = get_file(file);
6626 unix_inflight(fpl->user, fpl->fp[fpl->count]);
6627 fpl->count++;
6628 spin_lock_irq(&head->lock);
6629 __skb_queue_head(head, skb);
6630 } else {
6631 skb = NULL;
6632 }
6633 }
6634 spin_unlock_irq(&head->lock);
6635
6636 if (skb) {
6637 fput(file);
6638 return 0;
6639 }
6640
6641 return __io_sqe_files_scm(ctx, 1, index);
6642#else
6643 return 0;
6644#endif
6645}
6646
Hillf Dantona5318d32020-03-23 17:47:15 +08006647static int io_queue_file_removal(struct fixed_file_data *data,
Xiaoguang Wang05589552020-03-31 14:05:18 +08006648 struct file *file)
Jens Axboe05f3fb32019-12-09 11:22:50 -07006649{
Hillf Dantona5318d32020-03-23 17:47:15 +08006650 struct io_file_put *pfile;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006651 struct percpu_ref *refs = data->cur_refs;
6652 struct fixed_file_ref_node *ref_node;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006653
Jens Axboe05f3fb32019-12-09 11:22:50 -07006654 pfile = kzalloc(sizeof(*pfile), GFP_KERNEL);
Hillf Dantona5318d32020-03-23 17:47:15 +08006655 if (!pfile)
6656 return -ENOMEM;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006657
Xiaoguang Wang05589552020-03-31 14:05:18 +08006658 ref_node = container_of(refs, struct fixed_file_ref_node, refs);
Jens Axboe05f3fb32019-12-09 11:22:50 -07006659 pfile->file = file;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006660 list_add(&pfile->list, &ref_node->file_list);
6661
Hillf Dantona5318d32020-03-23 17:47:15 +08006662 return 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006663}
6664
6665static int __io_sqe_files_update(struct io_ring_ctx *ctx,
6666 struct io_uring_files_update *up,
6667 unsigned nr_args)
6668{
6669 struct fixed_file_data *data = ctx->file_data;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006670 struct fixed_file_ref_node *ref_node;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006671 struct file *file;
Jens Axboec3a31e62019-10-03 13:59:56 -06006672 __s32 __user *fds;
6673 int fd, i, err;
6674 __u32 done;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006675 unsigned long flags;
6676 bool needs_switch = false;
Jens Axboec3a31e62019-10-03 13:59:56 -06006677
Jens Axboe05f3fb32019-12-09 11:22:50 -07006678 if (check_add_overflow(up->offset, nr_args, &done))
Jens Axboec3a31e62019-10-03 13:59:56 -06006679 return -EOVERFLOW;
6680 if (done > ctx->nr_user_files)
6681 return -EINVAL;
6682
Xiaoguang Wang05589552020-03-31 14:05:18 +08006683 ref_node = alloc_fixed_file_ref_node(ctx);
6684 if (IS_ERR(ref_node))
6685 return PTR_ERR(ref_node);
6686
Jens Axboec3a31e62019-10-03 13:59:56 -06006687 done = 0;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006688 fds = u64_to_user_ptr(up->fds);
Jens Axboec3a31e62019-10-03 13:59:56 -06006689 while (nr_args) {
Jens Axboe65e19f52019-10-26 07:20:21 -06006690 struct fixed_file_table *table;
6691 unsigned index;
6692
Jens Axboec3a31e62019-10-03 13:59:56 -06006693 err = 0;
6694 if (copy_from_user(&fd, &fds[done], sizeof(fd))) {
6695 err = -EFAULT;
6696 break;
6697 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07006698 i = array_index_nospec(up->offset, ctx->nr_user_files);
6699 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
Jens Axboe65e19f52019-10-26 07:20:21 -06006700 index = i & IORING_FILE_TABLE_MASK;
6701 if (table->files[index]) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07006702 file = io_file_from_index(ctx, index);
Hillf Dantona5318d32020-03-23 17:47:15 +08006703 err = io_queue_file_removal(data, file);
6704 if (err)
6705 break;
Jens Axboe65e19f52019-10-26 07:20:21 -06006706 table->files[index] = NULL;
Xiaoguang Wang05589552020-03-31 14:05:18 +08006707 needs_switch = true;
Jens Axboec3a31e62019-10-03 13:59:56 -06006708 }
6709 if (fd != -1) {
Jens Axboec3a31e62019-10-03 13:59:56 -06006710 file = fget(fd);
6711 if (!file) {
6712 err = -EBADF;
6713 break;
6714 }
6715 /*
6716 * Don't allow io_uring instances to be registered. If
6717 * UNIX isn't enabled, then this causes a reference
6718 * cycle and this instance can never get freed. If UNIX
6719 * is enabled we'll handle it just fine, but there's
6720 * still no point in allowing a ring fd as it doesn't
6721 * support regular read/write anyway.
6722 */
6723 if (file->f_op == &io_uring_fops) {
6724 fput(file);
6725 err = -EBADF;
6726 break;
6727 }
Jens Axboe65e19f52019-10-26 07:20:21 -06006728 table->files[index] = file;
Jens Axboec3a31e62019-10-03 13:59:56 -06006729 err = io_sqe_file_register(ctx, file, i);
6730 if (err)
6731 break;
6732 }
6733 nr_args--;
6734 done++;
Jens Axboe05f3fb32019-12-09 11:22:50 -07006735 up->offset++;
6736 }
6737
Xiaoguang Wang05589552020-03-31 14:05:18 +08006738 if (needs_switch) {
6739 percpu_ref_kill(data->cur_refs);
6740 spin_lock_irqsave(&data->lock, flags);
6741 list_add(&ref_node->node, &data->ref_list);
6742 data->cur_refs = &ref_node->refs;
6743 spin_unlock_irqrestore(&data->lock, flags);
6744 percpu_ref_get(&ctx->file_data->refs);
6745 } else
6746 destroy_fixed_file_ref_node(ref_node);
Jens Axboec3a31e62019-10-03 13:59:56 -06006747
6748 return done ? done : err;
6749}
Xiaoguang Wang05589552020-03-31 14:05:18 +08006750
Jens Axboe05f3fb32019-12-09 11:22:50 -07006751static int io_sqe_files_update(struct io_ring_ctx *ctx, void __user *arg,
6752 unsigned nr_args)
6753{
6754 struct io_uring_files_update up;
6755
6756 if (!ctx->file_data)
6757 return -ENXIO;
6758 if (!nr_args)
6759 return -EINVAL;
6760 if (copy_from_user(&up, arg, sizeof(up)))
6761 return -EFAULT;
6762 if (up.resv)
6763 return -EINVAL;
6764
6765 return __io_sqe_files_update(ctx, &up, nr_args);
6766}
Jens Axboec3a31e62019-10-03 13:59:56 -06006767
Pavel Begunkove9fd9392020-03-04 16:14:12 +03006768static void io_free_work(struct io_wq_work *work)
Jens Axboe7d723062019-11-12 22:31:31 -07006769{
6770 struct io_kiocb *req = container_of(work, struct io_kiocb, work);
6771
Pavel Begunkove9fd9392020-03-04 16:14:12 +03006772 /* Consider that io_steal_work() relies on this ref */
Jens Axboe7d723062019-11-12 22:31:31 -07006773 io_put_req(req);
6774}
6775
Pavel Begunkov24369c22020-01-28 03:15:48 +03006776static int io_init_wq_offload(struct io_ring_ctx *ctx,
6777 struct io_uring_params *p)
6778{
6779 struct io_wq_data data;
6780 struct fd f;
6781 struct io_ring_ctx *ctx_attach;
6782 unsigned int concurrency;
6783 int ret = 0;
6784
6785 data.user = ctx->user;
Pavel Begunkove9fd9392020-03-04 16:14:12 +03006786 data.free_work = io_free_work;
Pavel Begunkov24369c22020-01-28 03:15:48 +03006787
6788 if (!(p->flags & IORING_SETUP_ATTACH_WQ)) {
6789 /* Do QD, or 4 * CPUS, whatever is smallest */
6790 concurrency = min(ctx->sq_entries, 4 * num_online_cpus());
6791
6792 ctx->io_wq = io_wq_create(concurrency, &data);
6793 if (IS_ERR(ctx->io_wq)) {
6794 ret = PTR_ERR(ctx->io_wq);
6795 ctx->io_wq = NULL;
6796 }
6797 return ret;
6798 }
6799
6800 f = fdget(p->wq_fd);
6801 if (!f.file)
6802 return -EBADF;
6803
6804 if (f.file->f_op != &io_uring_fops) {
6805 ret = -EINVAL;
6806 goto out_fput;
6807 }
6808
6809 ctx_attach = f.file->private_data;
6810 /* @io_wq is protected by holding the fd */
6811 if (!io_wq_get(ctx_attach->io_wq, &data)) {
6812 ret = -EINVAL;
6813 goto out_fput;
6814 }
6815
6816 ctx->io_wq = ctx_attach->io_wq;
6817out_fput:
6818 fdput(f);
6819 return ret;
6820}
6821
Jens Axboe6c271ce2019-01-10 11:22:30 -07006822static int io_sq_offload_start(struct io_ring_ctx *ctx,
6823 struct io_uring_params *p)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006824{
6825 int ret;
6826
Jens Axboe6c271ce2019-01-10 11:22:30 -07006827 init_waitqueue_head(&ctx->sqo_wait);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006828 mmgrab(current->mm);
6829 ctx->sqo_mm = current->mm;
6830
Jens Axboe6c271ce2019-01-10 11:22:30 -07006831 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboe3ec482d2019-04-08 10:51:01 -06006832 ret = -EPERM;
6833 if (!capable(CAP_SYS_ADMIN))
6834 goto err;
6835
Jens Axboe917257d2019-04-13 09:28:55 -06006836 ctx->sq_thread_idle = msecs_to_jiffies(p->sq_thread_idle);
6837 if (!ctx->sq_thread_idle)
6838 ctx->sq_thread_idle = HZ;
6839
Jens Axboe6c271ce2019-01-10 11:22:30 -07006840 if (p->flags & IORING_SETUP_SQ_AFF) {
Jens Axboe44a9bd12019-05-14 20:00:30 -06006841 int cpu = p->sq_thread_cpu;
Jens Axboe6c271ce2019-01-10 11:22:30 -07006842
Jens Axboe917257d2019-04-13 09:28:55 -06006843 ret = -EINVAL;
Jens Axboe44a9bd12019-05-14 20:00:30 -06006844 if (cpu >= nr_cpu_ids)
6845 goto err;
Shenghui Wang7889f442019-05-07 16:03:19 +08006846 if (!cpu_online(cpu))
Jens Axboe917257d2019-04-13 09:28:55 -06006847 goto err;
6848
Jens Axboe6c271ce2019-01-10 11:22:30 -07006849 ctx->sqo_thread = kthread_create_on_cpu(io_sq_thread,
6850 ctx, cpu,
6851 "io_uring-sq");
6852 } else {
6853 ctx->sqo_thread = kthread_create(io_sq_thread, ctx,
6854 "io_uring-sq");
6855 }
6856 if (IS_ERR(ctx->sqo_thread)) {
6857 ret = PTR_ERR(ctx->sqo_thread);
6858 ctx->sqo_thread = NULL;
6859 goto err;
6860 }
6861 wake_up_process(ctx->sqo_thread);
6862 } else if (p->flags & IORING_SETUP_SQ_AFF) {
6863 /* Can't have SQ_AFF without SQPOLL */
6864 ret = -EINVAL;
6865 goto err;
6866 }
6867
Pavel Begunkov24369c22020-01-28 03:15:48 +03006868 ret = io_init_wq_offload(ctx, p);
6869 if (ret)
Jens Axboe2b188cc2019-01-07 10:46:33 -07006870 goto err;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006871
6872 return 0;
6873err:
Jens Axboe54a91f32019-09-10 09:15:04 -06006874 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006875 mmdrop(ctx->sqo_mm);
6876 ctx->sqo_mm = NULL;
6877 return ret;
6878}
6879
6880static void io_unaccount_mem(struct user_struct *user, unsigned long nr_pages)
6881{
6882 atomic_long_sub(nr_pages, &user->locked_vm);
6883}
6884
6885static int io_account_mem(struct user_struct *user, unsigned long nr_pages)
6886{
6887 unsigned long page_limit, cur_pages, new_pages;
6888
6889 /* Don't allow more pages than we can safely lock */
6890 page_limit = rlimit(RLIMIT_MEMLOCK) >> PAGE_SHIFT;
6891
6892 do {
6893 cur_pages = atomic_long_read(&user->locked_vm);
6894 new_pages = cur_pages + nr_pages;
6895 if (new_pages > page_limit)
6896 return -ENOMEM;
6897 } while (atomic_long_cmpxchg(&user->locked_vm, cur_pages,
6898 new_pages) != cur_pages);
6899
6900 return 0;
6901}
6902
6903static void io_mem_free(void *ptr)
6904{
Mark Rutland52e04ef2019-04-30 17:30:21 +01006905 struct page *page;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006906
Mark Rutland52e04ef2019-04-30 17:30:21 +01006907 if (!ptr)
6908 return;
6909
6910 page = virt_to_head_page(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07006911 if (put_page_testzero(page))
6912 free_compound_page(page);
6913}
6914
6915static void *io_mem_alloc(size_t size)
6916{
6917 gfp_t gfp_flags = GFP_KERNEL | __GFP_ZERO | __GFP_NOWARN | __GFP_COMP |
6918 __GFP_NORETRY;
6919
6920 return (void *) __get_free_pages(gfp_flags, get_order(size));
6921}
6922
Hristo Venev75b28af2019-08-26 17:23:46 +00006923static unsigned long rings_size(unsigned sq_entries, unsigned cq_entries,
6924 size_t *sq_offset)
6925{
6926 struct io_rings *rings;
6927 size_t off, sq_array_size;
6928
6929 off = struct_size(rings, cqes, cq_entries);
6930 if (off == SIZE_MAX)
6931 return SIZE_MAX;
6932
6933#ifdef CONFIG_SMP
6934 off = ALIGN(off, SMP_CACHE_BYTES);
6935 if (off == 0)
6936 return SIZE_MAX;
6937#endif
6938
6939 sq_array_size = array_size(sizeof(u32), sq_entries);
6940 if (sq_array_size == SIZE_MAX)
6941 return SIZE_MAX;
6942
6943 if (check_add_overflow(off, sq_array_size, &off))
6944 return SIZE_MAX;
6945
6946 if (sq_offset)
6947 *sq_offset = off;
6948
6949 return off;
6950}
6951
Jens Axboe2b188cc2019-01-07 10:46:33 -07006952static unsigned long ring_pages(unsigned sq_entries, unsigned cq_entries)
6953{
Hristo Venev75b28af2019-08-26 17:23:46 +00006954 size_t pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006955
Hristo Venev75b28af2019-08-26 17:23:46 +00006956 pages = (size_t)1 << get_order(
6957 rings_size(sq_entries, cq_entries, NULL));
6958 pages += (size_t)1 << get_order(
6959 array_size(sizeof(struct io_uring_sqe), sq_entries));
Jens Axboe2b188cc2019-01-07 10:46:33 -07006960
Hristo Venev75b28af2019-08-26 17:23:46 +00006961 return pages;
Jens Axboe2b188cc2019-01-07 10:46:33 -07006962}
6963
Jens Axboeedafcce2019-01-09 09:16:05 -07006964static int io_sqe_buffer_unregister(struct io_ring_ctx *ctx)
6965{
6966 int i, j;
6967
6968 if (!ctx->user_bufs)
6969 return -ENXIO;
6970
6971 for (i = 0; i < ctx->nr_user_bufs; i++) {
6972 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
6973
6974 for (j = 0; j < imu->nr_bvecs; j++)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08006975 unpin_user_page(imu->bvec[j].bv_page);
Jens Axboeedafcce2019-01-09 09:16:05 -07006976
6977 if (ctx->account_mem)
6978 io_unaccount_mem(ctx->user, imu->nr_bvecs);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01006979 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07006980 imu->nr_bvecs = 0;
6981 }
6982
6983 kfree(ctx->user_bufs);
6984 ctx->user_bufs = NULL;
6985 ctx->nr_user_bufs = 0;
6986 return 0;
6987}
6988
6989static int io_copy_iov(struct io_ring_ctx *ctx, struct iovec *dst,
6990 void __user *arg, unsigned index)
6991{
6992 struct iovec __user *src;
6993
6994#ifdef CONFIG_COMPAT
6995 if (ctx->compat) {
6996 struct compat_iovec __user *ciovs;
6997 struct compat_iovec ciov;
6998
6999 ciovs = (struct compat_iovec __user *) arg;
7000 if (copy_from_user(&ciov, &ciovs[index], sizeof(ciov)))
7001 return -EFAULT;
7002
Jens Axboed55e5f52019-12-11 16:12:15 -07007003 dst->iov_base = u64_to_user_ptr((u64)ciov.iov_base);
Jens Axboeedafcce2019-01-09 09:16:05 -07007004 dst->iov_len = ciov.iov_len;
7005 return 0;
7006 }
7007#endif
7008 src = (struct iovec __user *) arg;
7009 if (copy_from_user(dst, &src[index], sizeof(*dst)))
7010 return -EFAULT;
7011 return 0;
7012}
7013
7014static int io_sqe_buffer_register(struct io_ring_ctx *ctx, void __user *arg,
7015 unsigned nr_args)
7016{
7017 struct vm_area_struct **vmas = NULL;
7018 struct page **pages = NULL;
7019 int i, j, got_pages = 0;
7020 int ret = -EINVAL;
7021
7022 if (ctx->user_bufs)
7023 return -EBUSY;
7024 if (!nr_args || nr_args > UIO_MAXIOV)
7025 return -EINVAL;
7026
7027 ctx->user_bufs = kcalloc(nr_args, sizeof(struct io_mapped_ubuf),
7028 GFP_KERNEL);
7029 if (!ctx->user_bufs)
7030 return -ENOMEM;
7031
7032 for (i = 0; i < nr_args; i++) {
7033 struct io_mapped_ubuf *imu = &ctx->user_bufs[i];
7034 unsigned long off, start, end, ubuf;
7035 int pret, nr_pages;
7036 struct iovec iov;
7037 size_t size;
7038
7039 ret = io_copy_iov(ctx, &iov, arg, i);
7040 if (ret)
Pavel Begunkova2786822019-05-26 12:35:47 +03007041 goto err;
Jens Axboeedafcce2019-01-09 09:16:05 -07007042
7043 /*
7044 * Don't impose further limits on the size and buffer
7045 * constraints here, we'll -EINVAL later when IO is
7046 * submitted if they are wrong.
7047 */
7048 ret = -EFAULT;
7049 if (!iov.iov_base || !iov.iov_len)
7050 goto err;
7051
7052 /* arbitrary limit, but we need something */
7053 if (iov.iov_len > SZ_1G)
7054 goto err;
7055
7056 ubuf = (unsigned long) iov.iov_base;
7057 end = (ubuf + iov.iov_len + PAGE_SIZE - 1) >> PAGE_SHIFT;
7058 start = ubuf >> PAGE_SHIFT;
7059 nr_pages = end - start;
7060
7061 if (ctx->account_mem) {
7062 ret = io_account_mem(ctx->user, nr_pages);
7063 if (ret)
7064 goto err;
7065 }
7066
7067 ret = 0;
7068 if (!pages || nr_pages > got_pages) {
7069 kfree(vmas);
7070 kfree(pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007071 pages = kvmalloc_array(nr_pages, sizeof(struct page *),
Jens Axboeedafcce2019-01-09 09:16:05 -07007072 GFP_KERNEL);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007073 vmas = kvmalloc_array(nr_pages,
Jens Axboeedafcce2019-01-09 09:16:05 -07007074 sizeof(struct vm_area_struct *),
7075 GFP_KERNEL);
7076 if (!pages || !vmas) {
7077 ret = -ENOMEM;
7078 if (ctx->account_mem)
7079 io_unaccount_mem(ctx->user, nr_pages);
7080 goto err;
7081 }
7082 got_pages = nr_pages;
7083 }
7084
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007085 imu->bvec = kvmalloc_array(nr_pages, sizeof(struct bio_vec),
Jens Axboeedafcce2019-01-09 09:16:05 -07007086 GFP_KERNEL);
7087 ret = -ENOMEM;
7088 if (!imu->bvec) {
7089 if (ctx->account_mem)
7090 io_unaccount_mem(ctx->user, nr_pages);
7091 goto err;
7092 }
7093
7094 ret = 0;
7095 down_read(&current->mm->mmap_sem);
John Hubbard2113b052020-01-30 22:13:13 -08007096 pret = pin_user_pages(ubuf, nr_pages,
Ira Weiny932f4a62019-05-13 17:17:03 -07007097 FOLL_WRITE | FOLL_LONGTERM,
7098 pages, vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007099 if (pret == nr_pages) {
7100 /* don't support file backed memory */
7101 for (j = 0; j < nr_pages; j++) {
7102 struct vm_area_struct *vma = vmas[j];
7103
7104 if (vma->vm_file &&
7105 !is_file_hugepages(vma->vm_file)) {
7106 ret = -EOPNOTSUPP;
7107 break;
7108 }
7109 }
7110 } else {
7111 ret = pret < 0 ? pret : -EFAULT;
7112 }
7113 up_read(&current->mm->mmap_sem);
7114 if (ret) {
7115 /*
7116 * if we did partial map, or found file backed vmas,
7117 * release any pages we did get
7118 */
John Hubbard27c4d3a2019-08-04 19:32:06 -07007119 if (pret > 0)
John Hubbardf1f6a7d2020-01-30 22:13:35 -08007120 unpin_user_pages(pages, pret);
Jens Axboeedafcce2019-01-09 09:16:05 -07007121 if (ctx->account_mem)
7122 io_unaccount_mem(ctx->user, nr_pages);
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007123 kvfree(imu->bvec);
Jens Axboeedafcce2019-01-09 09:16:05 -07007124 goto err;
7125 }
7126
7127 off = ubuf & ~PAGE_MASK;
7128 size = iov.iov_len;
7129 for (j = 0; j < nr_pages; j++) {
7130 size_t vec_len;
7131
7132 vec_len = min_t(size_t, size, PAGE_SIZE - off);
7133 imu->bvec[j].bv_page = pages[j];
7134 imu->bvec[j].bv_len = vec_len;
7135 imu->bvec[j].bv_offset = off;
7136 off = 0;
7137 size -= vec_len;
7138 }
7139 /* store original address for later verification */
7140 imu->ubuf = ubuf;
7141 imu->len = iov.iov_len;
7142 imu->nr_bvecs = nr_pages;
7143
7144 ctx->nr_user_bufs++;
7145 }
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007146 kvfree(pages);
7147 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007148 return 0;
7149err:
Mark Rutlandd4ef6472019-05-01 16:59:16 +01007150 kvfree(pages);
7151 kvfree(vmas);
Jens Axboeedafcce2019-01-09 09:16:05 -07007152 io_sqe_buffer_unregister(ctx);
7153 return ret;
7154}
7155
Jens Axboe9b402842019-04-11 11:45:41 -06007156static int io_eventfd_register(struct io_ring_ctx *ctx, void __user *arg)
7157{
7158 __s32 __user *fds = arg;
7159 int fd;
7160
7161 if (ctx->cq_ev_fd)
7162 return -EBUSY;
7163
7164 if (copy_from_user(&fd, fds, sizeof(*fds)))
7165 return -EFAULT;
7166
7167 ctx->cq_ev_fd = eventfd_ctx_fdget(fd);
7168 if (IS_ERR(ctx->cq_ev_fd)) {
7169 int ret = PTR_ERR(ctx->cq_ev_fd);
7170 ctx->cq_ev_fd = NULL;
7171 return ret;
7172 }
7173
7174 return 0;
7175}
7176
7177static int io_eventfd_unregister(struct io_ring_ctx *ctx)
7178{
7179 if (ctx->cq_ev_fd) {
7180 eventfd_ctx_put(ctx->cq_ev_fd);
7181 ctx->cq_ev_fd = NULL;
7182 return 0;
7183 }
7184
7185 return -ENXIO;
7186}
7187
Jens Axboe5a2e7452020-02-23 16:23:11 -07007188static int __io_destroy_buffers(int id, void *p, void *data)
7189{
7190 struct io_ring_ctx *ctx = data;
7191 struct io_buffer *buf = p;
7192
Jens Axboe067524e2020-03-02 16:32:28 -07007193 __io_remove_buffers(ctx, buf, id, -1U);
Jens Axboe5a2e7452020-02-23 16:23:11 -07007194 return 0;
7195}
7196
7197static void io_destroy_buffers(struct io_ring_ctx *ctx)
7198{
7199 idr_for_each(&ctx->io_buffer_idr, __io_destroy_buffers, ctx);
7200 idr_destroy(&ctx->io_buffer_idr);
7201}
7202
Jens Axboe2b188cc2019-01-07 10:46:33 -07007203static void io_ring_ctx_free(struct io_ring_ctx *ctx)
7204{
Jens Axboe6b063142019-01-10 22:13:58 -07007205 io_finish_async(ctx);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007206 if (ctx->sqo_mm)
7207 mmdrop(ctx->sqo_mm);
Jens Axboedef596e2019-01-09 08:59:42 -07007208
7209 io_iopoll_reap_events(ctx);
Jens Axboeedafcce2019-01-09 09:16:05 -07007210 io_sqe_buffer_unregister(ctx);
Jens Axboe6b063142019-01-10 22:13:58 -07007211 io_sqe_files_unregister(ctx);
Jens Axboe9b402842019-04-11 11:45:41 -06007212 io_eventfd_unregister(ctx);
Jens Axboe5a2e7452020-02-23 16:23:11 -07007213 io_destroy_buffers(ctx);
Jens Axboe41726c92020-02-23 13:11:42 -07007214 idr_destroy(&ctx->personality_idr);
Jens Axboedef596e2019-01-09 08:59:42 -07007215
Jens Axboe2b188cc2019-01-07 10:46:33 -07007216#if defined(CONFIG_UNIX)
Eric Biggers355e8d22019-06-12 14:58:43 -07007217 if (ctx->ring_sock) {
7218 ctx->ring_sock->file = NULL; /* so that iput() is called */
Jens Axboe2b188cc2019-01-07 10:46:33 -07007219 sock_release(ctx->ring_sock);
Eric Biggers355e8d22019-06-12 14:58:43 -07007220 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007221#endif
7222
Hristo Venev75b28af2019-08-26 17:23:46 +00007223 io_mem_free(ctx->rings);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007224 io_mem_free(ctx->sq_sqes);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007225
7226 percpu_ref_exit(&ctx->refs);
7227 if (ctx->account_mem)
7228 io_unaccount_mem(ctx->user,
7229 ring_pages(ctx->sq_entries, ctx->cq_entries));
7230 free_uid(ctx->user);
Jens Axboe181e4482019-11-25 08:52:30 -07007231 put_cred(ctx->creds);
Jens Axboe206aefd2019-11-07 18:27:42 -07007232 kfree(ctx->completions);
Jens Axboe78076bb2019-12-04 19:56:40 -07007233 kfree(ctx->cancel_hash);
Jens Axboe0ddf92e2019-11-08 08:52:53 -07007234 kmem_cache_free(req_cachep, ctx->fallback_req);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007235 kfree(ctx);
7236}
7237
7238static __poll_t io_uring_poll(struct file *file, poll_table *wait)
7239{
7240 struct io_ring_ctx *ctx = file->private_data;
7241 __poll_t mask = 0;
7242
7243 poll_wait(file, &ctx->cq_wait, wait);
Stefan Bühler4f7067c2019-04-24 23:54:17 +02007244 /*
7245 * synchronizes with barrier from wq_has_sleeper call in
7246 * io_commit_cqring
7247 */
Jens Axboe2b188cc2019-01-07 10:46:33 -07007248 smp_rmb();
Hristo Venev75b28af2019-08-26 17:23:46 +00007249 if (READ_ONCE(ctx->rings->sq.tail) - ctx->cached_sq_head !=
7250 ctx->rings->sq_ring_entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007251 mask |= EPOLLOUT | EPOLLWRNORM;
Stefano Garzarella63e5d812020-02-07 13:18:28 +01007252 if (io_cqring_events(ctx, false))
Jens Axboe2b188cc2019-01-07 10:46:33 -07007253 mask |= EPOLLIN | EPOLLRDNORM;
7254
7255 return mask;
7256}
7257
7258static int io_uring_fasync(int fd, struct file *file, int on)
7259{
7260 struct io_ring_ctx *ctx = file->private_data;
7261
7262 return fasync_helper(fd, file, on, &ctx->cq_fasync);
7263}
7264
Jens Axboe071698e2020-01-28 10:04:42 -07007265static int io_remove_personalities(int id, void *p, void *data)
7266{
7267 struct io_ring_ctx *ctx = data;
7268 const struct cred *cred;
7269
7270 cred = idr_remove(&ctx->personality_idr, id);
7271 if (cred)
7272 put_cred(cred);
7273 return 0;
7274}
7275
Jens Axboe85faa7b2020-04-09 18:14:00 -06007276static void io_ring_exit_work(struct work_struct *work)
7277{
7278 struct io_ring_ctx *ctx;
7279
7280 ctx = container_of(work, struct io_ring_ctx, exit_work);
7281 if (ctx->rings)
7282 io_cqring_overflow_flush(ctx, true);
7283
7284 wait_for_completion(&ctx->completions[0]);
7285 io_ring_ctx_free(ctx);
7286}
7287
Jens Axboe2b188cc2019-01-07 10:46:33 -07007288static void io_ring_ctx_wait_and_kill(struct io_ring_ctx *ctx)
7289{
7290 mutex_lock(&ctx->uring_lock);
7291 percpu_ref_kill(&ctx->refs);
7292 mutex_unlock(&ctx->uring_lock);
7293
Jens Axboedf069d82020-02-04 16:48:34 -07007294 /*
7295 * Wait for sq thread to idle, if we have one. It won't spin on new
7296 * work after we've killed the ctx ref above. This is important to do
7297 * before we cancel existing commands, as the thread could otherwise
7298 * be queueing new work post that. If that's work we need to cancel,
7299 * it could cause shutdown to hang.
7300 */
7301 while (ctx->sqo_thread && !wq_has_sleeper(&ctx->sqo_wait))
7302 cpu_relax();
7303
Jens Axboe5262f562019-09-17 12:26:57 -06007304 io_kill_timeouts(ctx);
Jens Axboe221c5eb2019-01-17 09:41:58 -07007305 io_poll_remove_all(ctx);
Jens Axboe561fb042019-10-24 07:25:42 -06007306
7307 if (ctx->io_wq)
7308 io_wq_cancel_all(ctx->io_wq);
7309
Jens Axboedef596e2019-01-09 08:59:42 -07007310 io_iopoll_reap_events(ctx);
Jens Axboe15dff282019-11-13 09:09:23 -07007311 /* if we failed setting up the ctx, we might not have any rings */
7312 if (ctx->rings)
7313 io_cqring_overflow_flush(ctx, true);
Jens Axboe071698e2020-01-28 10:04:42 -07007314 idr_for_each(&ctx->personality_idr, io_remove_personalities, ctx);
Jens Axboe85faa7b2020-04-09 18:14:00 -06007315 INIT_WORK(&ctx->exit_work, io_ring_exit_work);
7316 queue_work(system_wq, &ctx->exit_work);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007317}
7318
7319static int io_uring_release(struct inode *inode, struct file *file)
7320{
7321 struct io_ring_ctx *ctx = file->private_data;
7322
7323 file->private_data = NULL;
7324 io_ring_ctx_wait_and_kill(ctx);
7325 return 0;
7326}
7327
Jens Axboefcb323c2019-10-24 12:39:47 -06007328static void io_uring_cancel_files(struct io_ring_ctx *ctx,
7329 struct files_struct *files)
7330{
7331 struct io_kiocb *req;
7332 DEFINE_WAIT(wait);
7333
7334 while (!list_empty_careful(&ctx->inflight_list)) {
Jens Axboe768134d2019-11-10 20:30:53 -07007335 struct io_kiocb *cancel_req = NULL;
Jens Axboefcb323c2019-10-24 12:39:47 -06007336
7337 spin_lock_irq(&ctx->inflight_lock);
7338 list_for_each_entry(req, &ctx->inflight_list, inflight_entry) {
Jens Axboe768134d2019-11-10 20:30:53 -07007339 if (req->work.files != files)
7340 continue;
7341 /* req is being completed, ignore */
7342 if (!refcount_inc_not_zero(&req->refs))
7343 continue;
7344 cancel_req = req;
7345 break;
Jens Axboefcb323c2019-10-24 12:39:47 -06007346 }
Jens Axboe768134d2019-11-10 20:30:53 -07007347 if (cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06007348 prepare_to_wait(&ctx->inflight_wait, &wait,
Jens Axboe768134d2019-11-10 20:30:53 -07007349 TASK_UNINTERRUPTIBLE);
Jens Axboefcb323c2019-10-24 12:39:47 -06007350 spin_unlock_irq(&ctx->inflight_lock);
7351
Jens Axboe768134d2019-11-10 20:30:53 -07007352 /* We need to keep going until we don't find a matching req */
7353 if (!cancel_req)
Jens Axboefcb323c2019-10-24 12:39:47 -06007354 break;
Bob Liu2f6d9b92019-11-13 18:06:24 +08007355
Jens Axboe2ca10252020-02-13 17:17:35 -07007356 if (cancel_req->flags & REQ_F_OVERFLOW) {
7357 spin_lock_irq(&ctx->completion_lock);
7358 list_del(&cancel_req->list);
7359 cancel_req->flags &= ~REQ_F_OVERFLOW;
7360 if (list_empty(&ctx->cq_overflow_list)) {
7361 clear_bit(0, &ctx->sq_check_overflow);
7362 clear_bit(0, &ctx->cq_check_overflow);
7363 }
7364 spin_unlock_irq(&ctx->completion_lock);
7365
7366 WRITE_ONCE(ctx->rings->cq_overflow,
7367 atomic_inc_return(&ctx->cached_cq_overflow));
7368
7369 /*
7370 * Put inflight ref and overflow ref. If that's
7371 * all we had, then we're done with this request.
7372 */
7373 if (refcount_sub_and_test(2, &cancel_req->refs)) {
7374 io_put_req(cancel_req);
7375 continue;
7376 }
7377 }
7378
Bob Liu2f6d9b92019-11-13 18:06:24 +08007379 io_wq_cancel_work(ctx->io_wq, &cancel_req->work);
7380 io_put_req(cancel_req);
Jens Axboefcb323c2019-10-24 12:39:47 -06007381 schedule();
7382 }
Jens Axboe768134d2019-11-10 20:30:53 -07007383 finish_wait(&ctx->inflight_wait, &wait);
Jens Axboefcb323c2019-10-24 12:39:47 -06007384}
7385
7386static int io_uring_flush(struct file *file, void *data)
7387{
7388 struct io_ring_ctx *ctx = file->private_data;
7389
7390 io_uring_cancel_files(ctx, data);
Jens Axboe6ab23142020-02-08 20:23:59 -07007391
7392 /*
7393 * If the task is going away, cancel work it may have pending
7394 */
7395 if (fatal_signal_pending(current) || (current->flags & PF_EXITING))
7396 io_wq_cancel_pid(ctx->io_wq, task_pid_vnr(current));
7397
Jens Axboefcb323c2019-10-24 12:39:47 -06007398 return 0;
7399}
7400
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007401static void *io_uring_validate_mmap_request(struct file *file,
7402 loff_t pgoff, size_t sz)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007403{
Jens Axboe2b188cc2019-01-07 10:46:33 -07007404 struct io_ring_ctx *ctx = file->private_data;
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007405 loff_t offset = pgoff << PAGE_SHIFT;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007406 struct page *page;
7407 void *ptr;
7408
7409 switch (offset) {
7410 case IORING_OFF_SQ_RING:
Hristo Venev75b28af2019-08-26 17:23:46 +00007411 case IORING_OFF_CQ_RING:
7412 ptr = ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007413 break;
7414 case IORING_OFF_SQES:
7415 ptr = ctx->sq_sqes;
7416 break;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007417 default:
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007418 return ERR_PTR(-EINVAL);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007419 }
7420
7421 page = virt_to_head_page(ptr);
Matthew Wilcox (Oracle)a50b8542019-09-23 15:34:25 -07007422 if (sz > page_size(page))
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007423 return ERR_PTR(-EINVAL);
7424
7425 return ptr;
7426}
7427
7428#ifdef CONFIG_MMU
7429
7430static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
7431{
7432 size_t sz = vma->vm_end - vma->vm_start;
7433 unsigned long pfn;
7434 void *ptr;
7435
7436 ptr = io_uring_validate_mmap_request(file, vma->vm_pgoff, sz);
7437 if (IS_ERR(ptr))
7438 return PTR_ERR(ptr);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007439
7440 pfn = virt_to_phys(ptr) >> PAGE_SHIFT;
7441 return remap_pfn_range(vma, vma->vm_start, pfn, sz, vma->vm_page_prot);
7442}
7443
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007444#else /* !CONFIG_MMU */
7445
7446static int io_uring_mmap(struct file *file, struct vm_area_struct *vma)
7447{
7448 return vma->vm_flags & (VM_SHARED | VM_MAYSHARE) ? 0 : -EINVAL;
7449}
7450
7451static unsigned int io_uring_nommu_mmap_capabilities(struct file *file)
7452{
7453 return NOMMU_MAP_DIRECT | NOMMU_MAP_READ | NOMMU_MAP_WRITE;
7454}
7455
7456static unsigned long io_uring_nommu_get_unmapped_area(struct file *file,
7457 unsigned long addr, unsigned long len,
7458 unsigned long pgoff, unsigned long flags)
7459{
7460 void *ptr;
7461
7462 ptr = io_uring_validate_mmap_request(file, pgoff, len);
7463 if (IS_ERR(ptr))
7464 return PTR_ERR(ptr);
7465
7466 return (unsigned long) ptr;
7467}
7468
7469#endif /* !CONFIG_MMU */
7470
Jens Axboe2b188cc2019-01-07 10:46:33 -07007471SYSCALL_DEFINE6(io_uring_enter, unsigned int, fd, u32, to_submit,
7472 u32, min_complete, u32, flags, const sigset_t __user *, sig,
7473 size_t, sigsz)
7474{
7475 struct io_ring_ctx *ctx;
7476 long ret = -EBADF;
7477 int submitted = 0;
7478 struct fd f;
7479
Jens Axboeb41e9852020-02-17 09:52:41 -07007480 if (current->task_works)
7481 task_work_run();
7482
Jens Axboe6c271ce2019-01-10 11:22:30 -07007483 if (flags & ~(IORING_ENTER_GETEVENTS | IORING_ENTER_SQ_WAKEUP))
Jens Axboe2b188cc2019-01-07 10:46:33 -07007484 return -EINVAL;
7485
7486 f = fdget(fd);
7487 if (!f.file)
7488 return -EBADF;
7489
7490 ret = -EOPNOTSUPP;
7491 if (f.file->f_op != &io_uring_fops)
7492 goto out_fput;
7493
7494 ret = -ENXIO;
7495 ctx = f.file->private_data;
7496 if (!percpu_ref_tryget(&ctx->refs))
7497 goto out_fput;
7498
Jens Axboe6c271ce2019-01-10 11:22:30 -07007499 /*
7500 * For SQ polling, the thread will do all submissions and completions.
7501 * Just return the requested submit count, and wake the thread if
7502 * we were asked to.
7503 */
Jens Axboeb2a9ead2019-09-12 14:19:16 -06007504 ret = 0;
Jens Axboe6c271ce2019-01-10 11:22:30 -07007505 if (ctx->flags & IORING_SETUP_SQPOLL) {
Jens Axboec1edbf52019-11-10 16:56:04 -07007506 if (!list_empty_careful(&ctx->cq_overflow_list))
7507 io_cqring_overflow_flush(ctx, false);
Jens Axboe6c271ce2019-01-10 11:22:30 -07007508 if (flags & IORING_ENTER_SQ_WAKEUP)
7509 wake_up(&ctx->sqo_wait);
7510 submitted = to_submit;
Jens Axboeb2a9ead2019-09-12 14:19:16 -06007511 } else if (to_submit) {
Pavel Begunkovae9428c2019-11-06 00:22:14 +03007512 struct mm_struct *cur_mm;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007513
7514 mutex_lock(&ctx->uring_lock);
Pavel Begunkovae9428c2019-11-06 00:22:14 +03007515 /* already have mm, so io_submit_sqes() won't try to grab it */
7516 cur_mm = ctx->sqo_mm;
7517 submitted = io_submit_sqes(ctx, to_submit, f.file, fd,
7518 &cur_mm, false);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007519 mutex_unlock(&ctx->uring_lock);
Pavel Begunkov7c504e652019-12-18 19:53:45 +03007520
7521 if (submitted != to_submit)
7522 goto out;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007523 }
7524 if (flags & IORING_ENTER_GETEVENTS) {
Jens Axboedef596e2019-01-09 08:59:42 -07007525 unsigned nr_events = 0;
7526
Jens Axboe2b188cc2019-01-07 10:46:33 -07007527 min_complete = min(min_complete, ctx->cq_entries);
7528
Xiaoguang Wang32b22442020-03-11 09:26:09 +08007529 /*
7530 * When SETUP_IOPOLL and SETUP_SQPOLL are both enabled, user
7531 * space applications don't need to do io completion events
7532 * polling again, they can rely on io_sq_thread to do polling
7533 * work, which can reduce cpu usage and uring_lock contention.
7534 */
7535 if (ctx->flags & IORING_SETUP_IOPOLL &&
7536 !(ctx->flags & IORING_SETUP_SQPOLL)) {
Jens Axboedef596e2019-01-09 08:59:42 -07007537 ret = io_iopoll_check(ctx, &nr_events, min_complete);
Jens Axboedef596e2019-01-09 08:59:42 -07007538 } else {
7539 ret = io_cqring_wait(ctx, min_complete, sig, sigsz);
7540 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007541 }
7542
Pavel Begunkov7c504e652019-12-18 19:53:45 +03007543out:
Pavel Begunkov6805b322019-10-08 02:18:42 +03007544 percpu_ref_put(&ctx->refs);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007545out_fput:
7546 fdput(f);
7547 return submitted ? submitted : ret;
7548}
7549
Tobias Klauserbebdb652020-02-26 18:38:32 +01007550#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -07007551static int io_uring_show_cred(int id, void *p, void *data)
7552{
7553 const struct cred *cred = p;
7554 struct seq_file *m = data;
7555 struct user_namespace *uns = seq_user_ns(m);
7556 struct group_info *gi;
7557 kernel_cap_t cap;
7558 unsigned __capi;
7559 int g;
7560
7561 seq_printf(m, "%5d\n", id);
7562 seq_put_decimal_ull(m, "\tUid:\t", from_kuid_munged(uns, cred->uid));
7563 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->euid));
7564 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->suid));
7565 seq_put_decimal_ull(m, "\t\t", from_kuid_munged(uns, cred->fsuid));
7566 seq_put_decimal_ull(m, "\n\tGid:\t", from_kgid_munged(uns, cred->gid));
7567 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->egid));
7568 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->sgid));
7569 seq_put_decimal_ull(m, "\t\t", from_kgid_munged(uns, cred->fsgid));
7570 seq_puts(m, "\n\tGroups:\t");
7571 gi = cred->group_info;
7572 for (g = 0; g < gi->ngroups; g++) {
7573 seq_put_decimal_ull(m, g ? " " : "",
7574 from_kgid_munged(uns, gi->gid[g]));
7575 }
7576 seq_puts(m, "\n\tCapEff:\t");
7577 cap = cred->cap_effective;
7578 CAP_FOR_EACH_U32(__capi)
7579 seq_put_hex_ll(m, NULL, cap.cap[CAP_LAST_U32 - __capi], 8);
7580 seq_putc(m, '\n');
7581 return 0;
7582}
7583
7584static void __io_uring_show_fdinfo(struct io_ring_ctx *ctx, struct seq_file *m)
7585{
7586 int i;
7587
7588 mutex_lock(&ctx->uring_lock);
7589 seq_printf(m, "UserFiles:\t%u\n", ctx->nr_user_files);
7590 for (i = 0; i < ctx->nr_user_files; i++) {
7591 struct fixed_file_table *table;
7592 struct file *f;
7593
7594 table = &ctx->file_data->table[i >> IORING_FILE_TABLE_SHIFT];
7595 f = table->files[i & IORING_FILE_TABLE_MASK];
7596 if (f)
7597 seq_printf(m, "%5u: %s\n", i, file_dentry(f)->d_iname);
7598 else
7599 seq_printf(m, "%5u: <none>\n", i);
7600 }
7601 seq_printf(m, "UserBufs:\t%u\n", ctx->nr_user_bufs);
7602 for (i = 0; i < ctx->nr_user_bufs; i++) {
7603 struct io_mapped_ubuf *buf = &ctx->user_bufs[i];
7604
7605 seq_printf(m, "%5u: 0x%llx/%u\n", i, buf->ubuf,
7606 (unsigned int) buf->len);
7607 }
7608 if (!idr_is_empty(&ctx->personality_idr)) {
7609 seq_printf(m, "Personalities:\n");
7610 idr_for_each(&ctx->personality_idr, io_uring_show_cred, m);
7611 }
Jens Axboed7718a92020-02-14 22:23:12 -07007612 seq_printf(m, "PollList:\n");
7613 spin_lock_irq(&ctx->completion_lock);
7614 for (i = 0; i < (1U << ctx->cancel_hash_bits); i++) {
7615 struct hlist_head *list = &ctx->cancel_hash[i];
7616 struct io_kiocb *req;
7617
7618 hlist_for_each_entry(req, list, hash_node)
7619 seq_printf(m, " op=%d, task_works=%d\n", req->opcode,
7620 req->task->task_works != NULL);
7621 }
7622 spin_unlock_irq(&ctx->completion_lock);
Jens Axboe87ce9552020-01-30 08:25:34 -07007623 mutex_unlock(&ctx->uring_lock);
7624}
7625
7626static void io_uring_show_fdinfo(struct seq_file *m, struct file *f)
7627{
7628 struct io_ring_ctx *ctx = f->private_data;
7629
7630 if (percpu_ref_tryget(&ctx->refs)) {
7631 __io_uring_show_fdinfo(ctx, m);
7632 percpu_ref_put(&ctx->refs);
7633 }
7634}
Tobias Klauserbebdb652020-02-26 18:38:32 +01007635#endif
Jens Axboe87ce9552020-01-30 08:25:34 -07007636
Jens Axboe2b188cc2019-01-07 10:46:33 -07007637static const struct file_operations io_uring_fops = {
7638 .release = io_uring_release,
Jens Axboefcb323c2019-10-24 12:39:47 -06007639 .flush = io_uring_flush,
Jens Axboe2b188cc2019-01-07 10:46:33 -07007640 .mmap = io_uring_mmap,
Roman Penyaev6c5c2402019-11-28 12:53:22 +01007641#ifndef CONFIG_MMU
7642 .get_unmapped_area = io_uring_nommu_get_unmapped_area,
7643 .mmap_capabilities = io_uring_nommu_mmap_capabilities,
7644#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07007645 .poll = io_uring_poll,
7646 .fasync = io_uring_fasync,
Tobias Klauserbebdb652020-02-26 18:38:32 +01007647#ifdef CONFIG_PROC_FS
Jens Axboe87ce9552020-01-30 08:25:34 -07007648 .show_fdinfo = io_uring_show_fdinfo,
Tobias Klauserbebdb652020-02-26 18:38:32 +01007649#endif
Jens Axboe2b188cc2019-01-07 10:46:33 -07007650};
7651
7652static int io_allocate_scq_urings(struct io_ring_ctx *ctx,
7653 struct io_uring_params *p)
7654{
Hristo Venev75b28af2019-08-26 17:23:46 +00007655 struct io_rings *rings;
7656 size_t size, sq_array_offset;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007657
Hristo Venev75b28af2019-08-26 17:23:46 +00007658 size = rings_size(p->sq_entries, p->cq_entries, &sq_array_offset);
7659 if (size == SIZE_MAX)
7660 return -EOVERFLOW;
7661
7662 rings = io_mem_alloc(size);
7663 if (!rings)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007664 return -ENOMEM;
7665
Hristo Venev75b28af2019-08-26 17:23:46 +00007666 ctx->rings = rings;
7667 ctx->sq_array = (u32 *)((char *)rings + sq_array_offset);
7668 rings->sq_ring_mask = p->sq_entries - 1;
7669 rings->cq_ring_mask = p->cq_entries - 1;
7670 rings->sq_ring_entries = p->sq_entries;
7671 rings->cq_ring_entries = p->cq_entries;
7672 ctx->sq_mask = rings->sq_ring_mask;
7673 ctx->cq_mask = rings->cq_ring_mask;
7674 ctx->sq_entries = rings->sq_ring_entries;
7675 ctx->cq_entries = rings->cq_ring_entries;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007676
7677 size = array_size(sizeof(struct io_uring_sqe), p->sq_entries);
Jens Axboeeb065d32019-11-20 09:26:29 -07007678 if (size == SIZE_MAX) {
7679 io_mem_free(ctx->rings);
7680 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007681 return -EOVERFLOW;
Jens Axboeeb065d32019-11-20 09:26:29 -07007682 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007683
7684 ctx->sq_sqes = io_mem_alloc(size);
Jens Axboeeb065d32019-11-20 09:26:29 -07007685 if (!ctx->sq_sqes) {
7686 io_mem_free(ctx->rings);
7687 ctx->rings = NULL;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007688 return -ENOMEM;
Jens Axboeeb065d32019-11-20 09:26:29 -07007689 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007690
Jens Axboe2b188cc2019-01-07 10:46:33 -07007691 return 0;
7692}
7693
7694/*
7695 * Allocate an anonymous fd, this is what constitutes the application
7696 * visible backing of an io_uring instance. The application mmaps this
7697 * fd to gain access to the SQ/CQ ring details. If UNIX sockets are enabled,
7698 * we have to tie this fd to a socket for file garbage collection purposes.
7699 */
7700static int io_uring_get_fd(struct io_ring_ctx *ctx)
7701{
7702 struct file *file;
7703 int ret;
7704
7705#if defined(CONFIG_UNIX)
7706 ret = sock_create_kern(&init_net, PF_UNIX, SOCK_RAW, IPPROTO_IP,
7707 &ctx->ring_sock);
7708 if (ret)
7709 return ret;
7710#endif
7711
7712 ret = get_unused_fd_flags(O_RDWR | O_CLOEXEC);
7713 if (ret < 0)
7714 goto err;
7715
7716 file = anon_inode_getfile("[io_uring]", &io_uring_fops, ctx,
7717 O_RDWR | O_CLOEXEC);
7718 if (IS_ERR(file)) {
7719 put_unused_fd(ret);
7720 ret = PTR_ERR(file);
7721 goto err;
7722 }
7723
7724#if defined(CONFIG_UNIX)
7725 ctx->ring_sock->file = file;
7726#endif
7727 fd_install(ret, file);
7728 return ret;
7729err:
7730#if defined(CONFIG_UNIX)
7731 sock_release(ctx->ring_sock);
7732 ctx->ring_sock = NULL;
7733#endif
7734 return ret;
7735}
7736
7737static int io_uring_create(unsigned entries, struct io_uring_params *p)
7738{
7739 struct user_struct *user = NULL;
7740 struct io_ring_ctx *ctx;
7741 bool account_mem;
7742 int ret;
7743
Jens Axboe8110c1a2019-12-28 15:39:54 -07007744 if (!entries)
Jens Axboe2b188cc2019-01-07 10:46:33 -07007745 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07007746 if (entries > IORING_MAX_ENTRIES) {
7747 if (!(p->flags & IORING_SETUP_CLAMP))
7748 return -EINVAL;
7749 entries = IORING_MAX_ENTRIES;
7750 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007751
7752 /*
7753 * Use twice as many entries for the CQ ring. It's possible for the
7754 * application to drive a higher depth than the size of the SQ ring,
7755 * since the sqes are only used at submission time. This allows for
Jens Axboe33a107f2019-10-04 12:10:03 -06007756 * some flexibility in overcommitting a bit. If the application has
7757 * set IORING_SETUP_CQSIZE, it will have passed in the desired number
7758 * of CQ ring entries manually.
Jens Axboe2b188cc2019-01-07 10:46:33 -07007759 */
7760 p->sq_entries = roundup_pow_of_two(entries);
Jens Axboe33a107f2019-10-04 12:10:03 -06007761 if (p->flags & IORING_SETUP_CQSIZE) {
7762 /*
7763 * If IORING_SETUP_CQSIZE is set, we do the same roundup
7764 * to a power-of-two, if it isn't already. We do NOT impose
7765 * any cq vs sq ring sizing.
7766 */
Jens Axboe8110c1a2019-12-28 15:39:54 -07007767 if (p->cq_entries < p->sq_entries)
Jens Axboe33a107f2019-10-04 12:10:03 -06007768 return -EINVAL;
Jens Axboe8110c1a2019-12-28 15:39:54 -07007769 if (p->cq_entries > IORING_MAX_CQ_ENTRIES) {
7770 if (!(p->flags & IORING_SETUP_CLAMP))
7771 return -EINVAL;
7772 p->cq_entries = IORING_MAX_CQ_ENTRIES;
7773 }
Jens Axboe33a107f2019-10-04 12:10:03 -06007774 p->cq_entries = roundup_pow_of_two(p->cq_entries);
7775 } else {
7776 p->cq_entries = 2 * p->sq_entries;
7777 }
Jens Axboe2b188cc2019-01-07 10:46:33 -07007778
7779 user = get_uid(current_user());
7780 account_mem = !capable(CAP_IPC_LOCK);
7781
7782 if (account_mem) {
7783 ret = io_account_mem(user,
7784 ring_pages(p->sq_entries, p->cq_entries));
7785 if (ret) {
7786 free_uid(user);
7787 return ret;
7788 }
7789 }
7790
7791 ctx = io_ring_ctx_alloc(p);
7792 if (!ctx) {
7793 if (account_mem)
7794 io_unaccount_mem(user, ring_pages(p->sq_entries,
7795 p->cq_entries));
7796 free_uid(user);
7797 return -ENOMEM;
7798 }
7799 ctx->compat = in_compat_syscall();
7800 ctx->account_mem = account_mem;
7801 ctx->user = user;
Jens Axboe0b8c0ec2019-12-02 08:50:00 -07007802 ctx->creds = get_current_cred();
Jens Axboe2b188cc2019-01-07 10:46:33 -07007803
7804 ret = io_allocate_scq_urings(ctx, p);
7805 if (ret)
7806 goto err;
7807
Jens Axboe6c271ce2019-01-10 11:22:30 -07007808 ret = io_sq_offload_start(ctx, p);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007809 if (ret)
7810 goto err;
7811
Jens Axboe2b188cc2019-01-07 10:46:33 -07007812 memset(&p->sq_off, 0, sizeof(p->sq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00007813 p->sq_off.head = offsetof(struct io_rings, sq.head);
7814 p->sq_off.tail = offsetof(struct io_rings, sq.tail);
7815 p->sq_off.ring_mask = offsetof(struct io_rings, sq_ring_mask);
7816 p->sq_off.ring_entries = offsetof(struct io_rings, sq_ring_entries);
7817 p->sq_off.flags = offsetof(struct io_rings, sq_flags);
7818 p->sq_off.dropped = offsetof(struct io_rings, sq_dropped);
7819 p->sq_off.array = (char *)ctx->sq_array - (char *)ctx->rings;
Jens Axboe2b188cc2019-01-07 10:46:33 -07007820
7821 memset(&p->cq_off, 0, sizeof(p->cq_off));
Hristo Venev75b28af2019-08-26 17:23:46 +00007822 p->cq_off.head = offsetof(struct io_rings, cq.head);
7823 p->cq_off.tail = offsetof(struct io_rings, cq.tail);
7824 p->cq_off.ring_mask = offsetof(struct io_rings, cq_ring_mask);
7825 p->cq_off.ring_entries = offsetof(struct io_rings, cq_ring_entries);
7826 p->cq_off.overflow = offsetof(struct io_rings, cq_overflow);
7827 p->cq_off.cqes = offsetof(struct io_rings, cqes);
Jens Axboeac90f242019-09-06 10:26:21 -06007828
Jens Axboe044c1ab2019-10-28 09:15:33 -06007829 /*
7830 * Install ring fd as the very last thing, so we don't risk someone
7831 * having closed it before we finish setup
7832 */
7833 ret = io_uring_get_fd(ctx);
7834 if (ret < 0)
7835 goto err;
7836
Jens Axboeda8c9692019-12-02 18:51:26 -07007837 p->features = IORING_FEAT_SINGLE_MMAP | IORING_FEAT_NODROP |
Jens Axboecccf0ee2020-01-27 16:34:48 -07007838 IORING_FEAT_SUBMIT_STABLE | IORING_FEAT_RW_CUR_POS |
Jens Axboed7718a92020-02-14 22:23:12 -07007839 IORING_FEAT_CUR_PERSONALITY | IORING_FEAT_FAST_POLL;
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02007840 trace_io_uring_create(ret, ctx, p->sq_entries, p->cq_entries, p->flags);
Jens Axboe2b188cc2019-01-07 10:46:33 -07007841 return ret;
7842err:
7843 io_ring_ctx_wait_and_kill(ctx);
7844 return ret;
7845}
7846
7847/*
7848 * Sets up an aio uring context, and returns the fd. Applications asks for a
7849 * ring size, we return the actual sq/cq ring sizes (among other things) in the
7850 * params structure passed in.
7851 */
7852static long io_uring_setup(u32 entries, struct io_uring_params __user *params)
7853{
7854 struct io_uring_params p;
7855 long ret;
7856 int i;
7857
7858 if (copy_from_user(&p, params, sizeof(p)))
7859 return -EFAULT;
7860 for (i = 0; i < ARRAY_SIZE(p.resv); i++) {
7861 if (p.resv[i])
7862 return -EINVAL;
7863 }
7864
Jens Axboe6c271ce2019-01-10 11:22:30 -07007865 if (p.flags & ~(IORING_SETUP_IOPOLL | IORING_SETUP_SQPOLL |
Jens Axboe8110c1a2019-12-28 15:39:54 -07007866 IORING_SETUP_SQ_AFF | IORING_SETUP_CQSIZE |
Pavel Begunkov24369c22020-01-28 03:15:48 +03007867 IORING_SETUP_CLAMP | IORING_SETUP_ATTACH_WQ))
Jens Axboe2b188cc2019-01-07 10:46:33 -07007868 return -EINVAL;
7869
7870 ret = io_uring_create(entries, &p);
7871 if (ret < 0)
7872 return ret;
7873
7874 if (copy_to_user(params, &p, sizeof(p)))
7875 return -EFAULT;
7876
7877 return ret;
7878}
7879
7880SYSCALL_DEFINE2(io_uring_setup, u32, entries,
7881 struct io_uring_params __user *, params)
7882{
7883 return io_uring_setup(entries, params);
7884}
7885
Jens Axboe66f4af92020-01-16 15:36:52 -07007886static int io_probe(struct io_ring_ctx *ctx, void __user *arg, unsigned nr_args)
7887{
7888 struct io_uring_probe *p;
7889 size_t size;
7890 int i, ret;
7891
7892 size = struct_size(p, ops, nr_args);
7893 if (size == SIZE_MAX)
7894 return -EOVERFLOW;
7895 p = kzalloc(size, GFP_KERNEL);
7896 if (!p)
7897 return -ENOMEM;
7898
7899 ret = -EFAULT;
7900 if (copy_from_user(p, arg, size))
7901 goto out;
7902 ret = -EINVAL;
7903 if (memchr_inv(p, 0, size))
7904 goto out;
7905
7906 p->last_op = IORING_OP_LAST - 1;
7907 if (nr_args > IORING_OP_LAST)
7908 nr_args = IORING_OP_LAST;
7909
7910 for (i = 0; i < nr_args; i++) {
7911 p->ops[i].op = i;
7912 if (!io_op_defs[i].not_supported)
7913 p->ops[i].flags = IO_URING_OP_SUPPORTED;
7914 }
7915 p->ops_len = i;
7916
7917 ret = 0;
7918 if (copy_to_user(arg, p, size))
7919 ret = -EFAULT;
7920out:
7921 kfree(p);
7922 return ret;
7923}
7924
Jens Axboe071698e2020-01-28 10:04:42 -07007925static int io_register_personality(struct io_ring_ctx *ctx)
7926{
7927 const struct cred *creds = get_current_cred();
7928 int id;
7929
7930 id = idr_alloc_cyclic(&ctx->personality_idr, (void *) creds, 1,
7931 USHRT_MAX, GFP_KERNEL);
7932 if (id < 0)
7933 put_cred(creds);
7934 return id;
7935}
7936
7937static int io_unregister_personality(struct io_ring_ctx *ctx, unsigned id)
7938{
7939 const struct cred *old_creds;
7940
7941 old_creds = idr_remove(&ctx->personality_idr, id);
7942 if (old_creds) {
7943 put_cred(old_creds);
7944 return 0;
7945 }
7946
7947 return -EINVAL;
7948}
7949
7950static bool io_register_op_must_quiesce(int op)
7951{
7952 switch (op) {
7953 case IORING_UNREGISTER_FILES:
7954 case IORING_REGISTER_FILES_UPDATE:
7955 case IORING_REGISTER_PROBE:
7956 case IORING_REGISTER_PERSONALITY:
7957 case IORING_UNREGISTER_PERSONALITY:
7958 return false;
7959 default:
7960 return true;
7961 }
7962}
7963
Jens Axboeedafcce2019-01-09 09:16:05 -07007964static int __io_uring_register(struct io_ring_ctx *ctx, unsigned opcode,
7965 void __user *arg, unsigned nr_args)
Jens Axboeb19062a2019-04-15 10:49:38 -06007966 __releases(ctx->uring_lock)
7967 __acquires(ctx->uring_lock)
Jens Axboeedafcce2019-01-09 09:16:05 -07007968{
7969 int ret;
7970
Jens Axboe35fa71a2019-04-22 10:23:23 -06007971 /*
7972 * We're inside the ring mutex, if the ref is already dying, then
7973 * someone else killed the ctx or is already going through
7974 * io_uring_register().
7975 */
7976 if (percpu_ref_is_dying(&ctx->refs))
7977 return -ENXIO;
7978
Jens Axboe071698e2020-01-28 10:04:42 -07007979 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07007980 percpu_ref_kill(&ctx->refs);
Jens Axboeb19062a2019-04-15 10:49:38 -06007981
Jens Axboe05f3fb32019-12-09 11:22:50 -07007982 /*
7983 * Drop uring mutex before waiting for references to exit. If
7984 * another thread is currently inside io_uring_enter() it might
7985 * need to grab the uring_lock to make progress. If we hold it
7986 * here across the drain wait, then we can deadlock. It's safe
7987 * to drop the mutex here, since no new references will come in
7988 * after we've killed the percpu ref.
7989 */
7990 mutex_unlock(&ctx->uring_lock);
Jens Axboec1503682020-01-08 08:26:07 -07007991 ret = wait_for_completion_interruptible(&ctx->completions[0]);
Jens Axboe05f3fb32019-12-09 11:22:50 -07007992 mutex_lock(&ctx->uring_lock);
Jens Axboec1503682020-01-08 08:26:07 -07007993 if (ret) {
7994 percpu_ref_resurrect(&ctx->refs);
7995 ret = -EINTR;
7996 goto out;
7997 }
Jens Axboe05f3fb32019-12-09 11:22:50 -07007998 }
Jens Axboeedafcce2019-01-09 09:16:05 -07007999
8000 switch (opcode) {
8001 case IORING_REGISTER_BUFFERS:
8002 ret = io_sqe_buffer_register(ctx, arg, nr_args);
8003 break;
8004 case IORING_UNREGISTER_BUFFERS:
8005 ret = -EINVAL;
8006 if (arg || nr_args)
8007 break;
8008 ret = io_sqe_buffer_unregister(ctx);
8009 break;
Jens Axboe6b063142019-01-10 22:13:58 -07008010 case IORING_REGISTER_FILES:
8011 ret = io_sqe_files_register(ctx, arg, nr_args);
8012 break;
8013 case IORING_UNREGISTER_FILES:
8014 ret = -EINVAL;
8015 if (arg || nr_args)
8016 break;
8017 ret = io_sqe_files_unregister(ctx);
8018 break;
Jens Axboec3a31e62019-10-03 13:59:56 -06008019 case IORING_REGISTER_FILES_UPDATE:
8020 ret = io_sqe_files_update(ctx, arg, nr_args);
8021 break;
Jens Axboe9b402842019-04-11 11:45:41 -06008022 case IORING_REGISTER_EVENTFD:
Jens Axboef2842ab2020-01-08 11:04:00 -07008023 case IORING_REGISTER_EVENTFD_ASYNC:
Jens Axboe9b402842019-04-11 11:45:41 -06008024 ret = -EINVAL;
8025 if (nr_args != 1)
8026 break;
8027 ret = io_eventfd_register(ctx, arg);
Jens Axboef2842ab2020-01-08 11:04:00 -07008028 if (ret)
8029 break;
8030 if (opcode == IORING_REGISTER_EVENTFD_ASYNC)
8031 ctx->eventfd_async = 1;
8032 else
8033 ctx->eventfd_async = 0;
Jens Axboe9b402842019-04-11 11:45:41 -06008034 break;
8035 case IORING_UNREGISTER_EVENTFD:
8036 ret = -EINVAL;
8037 if (arg || nr_args)
8038 break;
8039 ret = io_eventfd_unregister(ctx);
8040 break;
Jens Axboe66f4af92020-01-16 15:36:52 -07008041 case IORING_REGISTER_PROBE:
8042 ret = -EINVAL;
8043 if (!arg || nr_args > 256)
8044 break;
8045 ret = io_probe(ctx, arg, nr_args);
8046 break;
Jens Axboe071698e2020-01-28 10:04:42 -07008047 case IORING_REGISTER_PERSONALITY:
8048 ret = -EINVAL;
8049 if (arg || nr_args)
8050 break;
8051 ret = io_register_personality(ctx);
8052 break;
8053 case IORING_UNREGISTER_PERSONALITY:
8054 ret = -EINVAL;
8055 if (arg)
8056 break;
8057 ret = io_unregister_personality(ctx, nr_args);
8058 break;
Jens Axboeedafcce2019-01-09 09:16:05 -07008059 default:
8060 ret = -EINVAL;
8061 break;
8062 }
8063
Jens Axboe071698e2020-01-28 10:04:42 -07008064 if (io_register_op_must_quiesce(opcode)) {
Jens Axboe05f3fb32019-12-09 11:22:50 -07008065 /* bring the ctx back to life */
Jens Axboe05f3fb32019-12-09 11:22:50 -07008066 percpu_ref_reinit(&ctx->refs);
Jens Axboec1503682020-01-08 08:26:07 -07008067out:
8068 reinit_completion(&ctx->completions[0]);
Jens Axboe05f3fb32019-12-09 11:22:50 -07008069 }
Jens Axboeedafcce2019-01-09 09:16:05 -07008070 return ret;
8071}
8072
8073SYSCALL_DEFINE4(io_uring_register, unsigned int, fd, unsigned int, opcode,
8074 void __user *, arg, unsigned int, nr_args)
8075{
8076 struct io_ring_ctx *ctx;
8077 long ret = -EBADF;
8078 struct fd f;
8079
8080 f = fdget(fd);
8081 if (!f.file)
8082 return -EBADF;
8083
8084 ret = -EOPNOTSUPP;
8085 if (f.file->f_op != &io_uring_fops)
8086 goto out_fput;
8087
8088 ctx = f.file->private_data;
8089
8090 mutex_lock(&ctx->uring_lock);
8091 ret = __io_uring_register(ctx, opcode, arg, nr_args);
8092 mutex_unlock(&ctx->uring_lock);
Dmitrii Dolgovc826bd72019-10-15 19:02:01 +02008093 trace_io_uring_register(ctx, opcode, ctx->nr_user_files, ctx->nr_user_bufs,
8094 ctx->cq_ev_fd != NULL, ret);
Jens Axboeedafcce2019-01-09 09:16:05 -07008095out_fput:
8096 fdput(f);
8097 return ret;
8098}
8099
Jens Axboe2b188cc2019-01-07 10:46:33 -07008100static int __init io_uring_init(void)
8101{
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008102#define __BUILD_BUG_VERIFY_ELEMENT(stype, eoffset, etype, ename) do { \
8103 BUILD_BUG_ON(offsetof(stype, ename) != eoffset); \
8104 BUILD_BUG_ON(sizeof(etype) != sizeof_field(stype, ename)); \
8105} while (0)
8106
8107#define BUILD_BUG_SQE_ELEM(eoffset, etype, ename) \
8108 __BUILD_BUG_VERIFY_ELEMENT(struct io_uring_sqe, eoffset, etype, ename)
8109 BUILD_BUG_ON(sizeof(struct io_uring_sqe) != 64);
8110 BUILD_BUG_SQE_ELEM(0, __u8, opcode);
8111 BUILD_BUG_SQE_ELEM(1, __u8, flags);
8112 BUILD_BUG_SQE_ELEM(2, __u16, ioprio);
8113 BUILD_BUG_SQE_ELEM(4, __s32, fd);
8114 BUILD_BUG_SQE_ELEM(8, __u64, off);
8115 BUILD_BUG_SQE_ELEM(8, __u64, addr2);
8116 BUILD_BUG_SQE_ELEM(16, __u64, addr);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03008117 BUILD_BUG_SQE_ELEM(16, __u64, splice_off_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008118 BUILD_BUG_SQE_ELEM(24, __u32, len);
8119 BUILD_BUG_SQE_ELEM(28, __kernel_rwf_t, rw_flags);
8120 BUILD_BUG_SQE_ELEM(28, /* compat */ int, rw_flags);
8121 BUILD_BUG_SQE_ELEM(28, /* compat */ __u32, rw_flags);
8122 BUILD_BUG_SQE_ELEM(28, __u32, fsync_flags);
8123 BUILD_BUG_SQE_ELEM(28, __u16, poll_events);
8124 BUILD_BUG_SQE_ELEM(28, __u32, sync_range_flags);
8125 BUILD_BUG_SQE_ELEM(28, __u32, msg_flags);
8126 BUILD_BUG_SQE_ELEM(28, __u32, timeout_flags);
8127 BUILD_BUG_SQE_ELEM(28, __u32, accept_flags);
8128 BUILD_BUG_SQE_ELEM(28, __u32, cancel_flags);
8129 BUILD_BUG_SQE_ELEM(28, __u32, open_flags);
8130 BUILD_BUG_SQE_ELEM(28, __u32, statx_flags);
8131 BUILD_BUG_SQE_ELEM(28, __u32, fadvise_advice);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03008132 BUILD_BUG_SQE_ELEM(28, __u32, splice_flags);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008133 BUILD_BUG_SQE_ELEM(32, __u64, user_data);
8134 BUILD_BUG_SQE_ELEM(40, __u16, buf_index);
8135 BUILD_BUG_SQE_ELEM(42, __u16, personality);
Pavel Begunkov7d67af22020-02-24 11:32:45 +03008136 BUILD_BUG_SQE_ELEM(44, __s32, splice_fd_in);
Stefan Metzmacherd7f62e82020-01-29 14:39:41 +01008137
Jens Axboed3656342019-12-18 09:50:26 -07008138 BUILD_BUG_ON(ARRAY_SIZE(io_op_defs) != IORING_OP_LAST);
Jens Axboe84557872020-03-03 15:28:17 -07008139 BUILD_BUG_ON(__REQ_F_LAST_BIT >= 8 * sizeof(int));
Jens Axboe2b188cc2019-01-07 10:46:33 -07008140 req_cachep = KMEM_CACHE(io_kiocb, SLAB_HWCACHE_ALIGN | SLAB_PANIC);
8141 return 0;
8142};
8143__initcall(io_uring_init);