blob: b5fbf2061868ce9ed84b2415df8c37d988907629 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * An async IO implementation for Linux
3 * Written by Benjamin LaHaise <bcrl@kvack.org>
4 *
5 * Implements an efficient asynchronous io interface.
6 *
7 * Copyright 2000, 2001, 2002 Red Hat, Inc. All Rights Reserved.
Christoph Hellwigbfe40372018-07-16 09:08:20 +02008 * Copyright 2018 Christoph Hellwig.
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
10 * See ../COPYING for licensing terms.
11 */
Kent Overstreetcaf41672013-05-07 16:18:35 -070012#define pr_fmt(fmt) "%s: " fmt, __func__
13
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/kernel.h>
15#include <linux/init.h>
16#include <linux/errno.h>
17#include <linux/time.h>
18#include <linux/aio_abi.h>
Paul Gortmaker630d9c42011-11-16 23:57:37 -050019#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/syscalls.h>
Jens Axboeb9d128f2009-10-29 13:59:26 +010021#include <linux/backing-dev.h>
Christoph Hellwig9018ccc2018-07-24 11:36:37 +020022#include <linux/refcount.h>
Badari Pulavarty027445c2006-09-30 23:28:46 -070023#include <linux/uio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Ingo Molnar174cd4b2017-02-02 19:15:33 +010025#include <linux/sched/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/fs.h>
27#include <linux/file.h>
28#include <linux/mm.h>
29#include <linux/mman.h>
Michael S. Tsirkin3d2d8272009-09-21 17:03:51 -070030#include <linux/mmu_context.h>
Kent Overstreete1bdd5f2013-04-26 10:58:39 +100031#include <linux/percpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/slab.h>
33#include <linux/timer.h>
34#include <linux/aio.h>
35#include <linux/highmem.h>
36#include <linux/workqueue.h>
37#include <linux/security.h>
Davide Libenzi9c3060b2007-05-10 22:23:21 -070038#include <linux/eventfd.h>
Jeff Moyercfb1e332009-10-02 18:57:36 -040039#include <linux/blkdev.h>
Jeff Moyer9d85cba2010-05-26 14:44:26 -070040#include <linux/compat.h>
Gu Zheng36bc08c2013-07-16 17:56:16 +080041#include <linux/migrate.h>
42#include <linux/ramfs.h>
Kent Overstreet723be6e2013-05-28 15:14:48 -070043#include <linux/percpu-refcount.h>
Benjamin LaHaise71ad7492013-09-17 10:18:25 -040044#include <linux/mount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46#include <asm/kmap_types.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080047#include <linux/uaccess.h>
Jeff Moyera6136922018-12-11 12:37:49 -050048#include <linux/nospec.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Al Viro68d70d02013-06-19 15:26:04 +040050#include "internal.h"
51
Christoph Hellwigf3a27522018-03-30 11:19:25 +020052#define KIOCB_KEY 0
53
Kent Overstreet4e179bc2013-05-07 16:18:33 -070054#define AIO_RING_MAGIC 0xa10a10a1
55#define AIO_RING_COMPAT_FEATURES 1
56#define AIO_RING_INCOMPAT_FEATURES 0
57struct aio_ring {
58 unsigned id; /* kernel internal index number */
59 unsigned nr; /* number of io_events */
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -040060 unsigned head; /* Written to by userland or under ring_lock
61 * mutex by aio_read_events_ring(). */
Kent Overstreet4e179bc2013-05-07 16:18:33 -070062 unsigned tail;
63
64 unsigned magic;
65 unsigned compat_features;
66 unsigned incompat_features;
67 unsigned header_length; /* size of aio_ring */
68
69
70 struct io_event io_events[0];
71}; /* 128 bytes + ring size */
72
73#define AIO_RING_PAGES 8
Kent Overstreet4e179bc2013-05-07 16:18:33 -070074
Benjamin LaHaisedb446a02013-07-30 12:54:40 -040075struct kioctx_table {
Tejun Heod0264c02018-03-14 12:10:17 -070076 struct rcu_head rcu;
77 unsigned nr;
78 struct kioctx __rcu *table[];
Benjamin LaHaisedb446a02013-07-30 12:54:40 -040079};
80
Kent Overstreete1bdd5f2013-04-26 10:58:39 +100081struct kioctx_cpu {
82 unsigned reqs_available;
83};
84
Jens Axboedc48e562015-04-15 11:17:23 -060085struct ctx_rq_wait {
86 struct completion comp;
87 atomic_t count;
88};
89
Kent Overstreet4e179bc2013-05-07 16:18:33 -070090struct kioctx {
Kent Overstreet723be6e2013-05-28 15:14:48 -070091 struct percpu_ref users;
Kent Overstreet36f55882013-05-07 16:18:41 -070092 atomic_t dead;
Kent Overstreet4e179bc2013-05-07 16:18:33 -070093
Kent Overstreete34ecee2013-10-10 19:31:47 -070094 struct percpu_ref reqs;
95
Kent Overstreet4e179bc2013-05-07 16:18:33 -070096 unsigned long user_id;
Kent Overstreet4e179bc2013-05-07 16:18:33 -070097
Kent Overstreete1bdd5f2013-04-26 10:58:39 +100098 struct __percpu kioctx_cpu *cpu;
99
100 /*
101 * For percpu reqs_available, number of slots we move to/from global
102 * counter at a time:
103 */
104 unsigned req_batch;
Kent Overstreet3e845ce2013-05-07 16:18:51 -0700105 /*
106 * This is what userspace passed to io_setup(), it's not used for
107 * anything but counting against the global max_reqs quota.
108 *
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700109 * The real limit is nr_events - 1, which will be larger (see
Kent Overstreet3e845ce2013-05-07 16:18:51 -0700110 * aio_setup_ring())
111 */
Kent Overstreet4e179bc2013-05-07 16:18:33 -0700112 unsigned max_reqs;
113
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700114 /* Size of ringbuffer, in units of struct io_event */
115 unsigned nr_events;
Kent Overstreet4e179bc2013-05-07 16:18:33 -0700116
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700117 unsigned long mmap_base;
118 unsigned long mmap_size;
119
120 struct page **ring_pages;
121 long nr_pages;
122
Tejun Heof7298632018-03-14 12:45:15 -0700123 struct rcu_work free_rwork; /* see free_ioctx() */
Kent Overstreet4e23bca2013-05-07 16:18:56 -0700124
Anatol Pomozove02ba722014-04-15 11:31:33 -0700125 /*
126 * signals when all in-flight requests are done
127 */
Jens Axboedc48e562015-04-15 11:17:23 -0600128 struct ctx_rq_wait *rq_wait;
Anatol Pomozove02ba722014-04-15 11:31:33 -0700129
Kent Overstreet4e23bca2013-05-07 16:18:56 -0700130 struct {
Kent Overstreet34e83fc2013-04-26 10:58:39 +1000131 /*
132 * This counts the number of available slots in the ringbuffer,
133 * so we avoid overflowing it: it's decremented (if positive)
134 * when allocating a kiocb and incremented when the resulting
135 * io_event is pulled off the ringbuffer.
Kent Overstreete1bdd5f2013-04-26 10:58:39 +1000136 *
137 * We batch accesses to it with a percpu version.
Kent Overstreet34e83fc2013-04-26 10:58:39 +1000138 */
139 atomic_t reqs_available;
Kent Overstreet4e23bca2013-05-07 16:18:56 -0700140 } ____cacheline_aligned_in_smp;
141
142 struct {
143 spinlock_t ctx_lock;
144 struct list_head active_reqs; /* used for cancellation */
145 } ____cacheline_aligned_in_smp;
146
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700147 struct {
148 struct mutex ring_lock;
Kent Overstreet4e23bca2013-05-07 16:18:56 -0700149 wait_queue_head_t wait;
150 } ____cacheline_aligned_in_smp;
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700151
152 struct {
153 unsigned tail;
Benjamin LaHaised856f322014-08-24 13:14:05 -0400154 unsigned completed_events;
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700155 spinlock_t completion_lock;
Kent Overstreet4e23bca2013-05-07 16:18:56 -0700156 } ____cacheline_aligned_in_smp;
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700157
158 struct page *internal_pages[AIO_RING_PAGES];
Gu Zheng36bc08c2013-07-16 17:56:16 +0800159 struct file *aio_ring_file;
Benjamin LaHaisedb446a02013-07-30 12:54:40 -0400160
161 unsigned id;
Kent Overstreet4e179bc2013-05-07 16:18:33 -0700162};
163
Linus Torvaldsd6b26152019-03-03 14:23:33 -0800164/*
165 * First field must be the file pointer in all the
166 * iocb unions! See also 'struct kiocb' in <linux/fs.h>
167 */
Christoph Hellwiga3c0d432018-03-27 19:18:57 +0200168struct fsync_iocb {
Christoph Hellwiga3c0d432018-03-27 19:18:57 +0200169 struct file *file;
Linus Torvaldsd6b26152019-03-03 14:23:33 -0800170 struct work_struct work;
Christoph Hellwiga3c0d432018-03-27 19:18:57 +0200171 bool datasync;
172};
173
Christoph Hellwigbfe40372018-07-16 09:08:20 +0200174struct poll_iocb {
175 struct file *file;
176 struct wait_queue_head *head;
177 __poll_t events;
Al Viroe9e47772019-03-07 21:45:41 -0500178 bool done;
Christoph Hellwigbfe40372018-07-16 09:08:20 +0200179 bool cancelled;
180 struct wait_queue_entry wait;
181 struct work_struct work;
182};
183
Linus Torvaldsd6b26152019-03-03 14:23:33 -0800184/*
185 * NOTE! Each of the iocb union members has the file pointer
186 * as the first entry in their struct definition. So you can
187 * access the file pointer through any of the sub-structs,
188 * or directly as just 'ki_filp' in this struct.
189 */
Christoph Hellwig04b2fa92015-02-02 14:49:06 +0100190struct aio_kiocb {
Christoph Hellwig54843f82018-05-02 19:57:21 +0200191 union {
Linus Torvaldsd6b26152019-03-03 14:23:33 -0800192 struct file *ki_filp;
Christoph Hellwig54843f82018-05-02 19:57:21 +0200193 struct kiocb rw;
Christoph Hellwiga3c0d432018-03-27 19:18:57 +0200194 struct fsync_iocb fsync;
Christoph Hellwigbfe40372018-07-16 09:08:20 +0200195 struct poll_iocb poll;
Christoph Hellwig54843f82018-05-02 19:57:21 +0200196 };
Christoph Hellwig04b2fa92015-02-02 14:49:06 +0100197
198 struct kioctx *ki_ctx;
199 kiocb_cancel_fn *ki_cancel;
200
Al Viroc20202c512019-03-07 19:43:45 -0500201 struct io_event ki_res;
Christoph Hellwig04b2fa92015-02-02 14:49:06 +0100202
203 struct list_head ki_list; /* the aio core uses this
204 * for cancellation */
Christoph Hellwig9018ccc2018-07-24 11:36:37 +0200205 refcount_t ki_refcnt;
Christoph Hellwig04b2fa92015-02-02 14:49:06 +0100206
207 /*
208 * If the aio_resfd field of the userspace iocb is not zero,
209 * this is the underlying eventfd context to deliver events to.
210 */
211 struct eventfd_ctx *ki_eventfd;
212};
213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214/*------ sysctl variables----*/
Zach Brownd55b5fd2005-11-07 00:59:31 -0800215static DEFINE_SPINLOCK(aio_nr_lock);
216unsigned long aio_nr; /* current system wide number of aio requests */
217unsigned long aio_max_nr = 0x10000; /* system wide maximum number of aio requests */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218/*----end sysctl variables---*/
219
Christoph Lametere18b8902006-12-06 20:33:20 -0800220static struct kmem_cache *kiocb_cachep;
221static struct kmem_cache *kioctx_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Benjamin LaHaise71ad7492013-09-17 10:18:25 -0400223static struct vfsmount *aio_mnt;
224
225static const struct file_operations aio_ring_fops;
226static const struct address_space_operations aio_ctx_aops;
227
228static struct file *aio_private_file(struct kioctx *ctx, loff_t nr_pages)
229{
Benjamin LaHaise71ad7492013-09-17 10:18:25 -0400230 struct file *file;
Benjamin LaHaise71ad7492013-09-17 10:18:25 -0400231 struct inode *inode = alloc_anon_inode(aio_mnt->mnt_sb);
Dan Carpenter7f626562013-11-13 10:49:40 +0300232 if (IS_ERR(inode))
233 return ERR_CAST(inode);
Benjamin LaHaise71ad7492013-09-17 10:18:25 -0400234
235 inode->i_mapping->a_ops = &aio_ctx_aops;
236 inode->i_mapping->private_data = ctx;
237 inode->i_size = PAGE_SIZE * nr_pages;
238
Al Virod93aa9d2018-06-09 09:40:05 -0400239 file = alloc_file_pseudo(inode, aio_mnt, "[aio]",
240 O_RDWR, &aio_ring_fops);
Al Viroc9c554f2018-07-11 14:19:04 -0400241 if (IS_ERR(file))
Benjamin LaHaise71ad7492013-09-17 10:18:25 -0400242 iput(inode);
Benjamin LaHaise71ad7492013-09-17 10:18:25 -0400243 return file;
244}
245
246static struct dentry *aio_mount(struct file_system_type *fs_type,
247 int flags, const char *dev_name, void *data)
248{
Al Virod93aa9d2018-06-09 09:40:05 -0400249 struct dentry *root = mount_pseudo(fs_type, "aio:", NULL, NULL,
Jann Horn22f6b4d2016-09-16 00:31:22 +0200250 AIO_RING_MAGIC);
251
252 if (!IS_ERR(root))
253 root->d_sb->s_iflags |= SB_I_NOEXEC;
254 return root;
Benjamin LaHaise71ad7492013-09-17 10:18:25 -0400255}
256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257/* aio_setup
258 * Creates the slab caches used by the aio routines, panic on
259 * failure as this is done early during the boot sequence.
260 */
261static int __init aio_setup(void)
262{
Benjamin LaHaise71ad7492013-09-17 10:18:25 -0400263 static struct file_system_type aio_fs = {
264 .name = "aio",
265 .mount = aio_mount,
266 .kill_sb = kill_anon_super,
267 };
268 aio_mnt = kern_mount(&aio_fs);
269 if (IS_ERR(aio_mnt))
270 panic("Failed to create aio fs mount.");
271
Christoph Hellwig04b2fa92015-02-02 14:49:06 +0100272 kiocb_cachep = KMEM_CACHE(aio_kiocb, SLAB_HWCACHE_ALIGN|SLAB_PANIC);
Christoph Lameter0a31bd52007-05-06 14:49:57 -0700273 kioctx_cachep = KMEM_CACHE(kioctx,SLAB_HWCACHE_ALIGN|SLAB_PANIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 return 0;
275}
H Hartley Sweeten385773e2009-09-22 16:43:53 -0700276__initcall(aio_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Benjamin LaHaise5e9ae2e2013-09-26 20:34:51 -0400278static void put_aio_ring_file(struct kioctx *ctx)
279{
280 struct file *aio_ring_file = ctx->aio_ring_file;
Rasmus Villemoesde04e762016-09-15 00:25:03 +0200281 struct address_space *i_mapping;
282
Benjamin LaHaise5e9ae2e2013-09-26 20:34:51 -0400283 if (aio_ring_file) {
Al Viro45063092016-12-04 18:24:56 -0500284 truncate_setsize(file_inode(aio_ring_file), 0);
Benjamin LaHaise5e9ae2e2013-09-26 20:34:51 -0400285
286 /* Prevent further access to the kioctx from migratepages */
Al Viro45063092016-12-04 18:24:56 -0500287 i_mapping = aio_ring_file->f_mapping;
Rasmus Villemoesde04e762016-09-15 00:25:03 +0200288 spin_lock(&i_mapping->private_lock);
289 i_mapping->private_data = NULL;
Benjamin LaHaise5e9ae2e2013-09-26 20:34:51 -0400290 ctx->aio_ring_file = NULL;
Rasmus Villemoesde04e762016-09-15 00:25:03 +0200291 spin_unlock(&i_mapping->private_lock);
Benjamin LaHaise5e9ae2e2013-09-26 20:34:51 -0400292
293 fput(aio_ring_file);
294 }
295}
296
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297static void aio_free_ring(struct kioctx *ctx)
298{
Gu Zheng36bc08c2013-07-16 17:56:16 +0800299 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -0400301 /* Disconnect the kiotx from the ring file. This prevents future
302 * accesses to the kioctx from page migration.
303 */
304 put_aio_ring_file(ctx);
305
Gu Zheng36bc08c2013-07-16 17:56:16 +0800306 for (i = 0; i < ctx->nr_pages; i++) {
Benjamin LaHaise8e321fe2013-12-21 17:56:08 -0500307 struct page *page;
Gu Zheng36bc08c2013-07-16 17:56:16 +0800308 pr_debug("pid(%d) [%d] page->count=%d\n", current->pid, i,
309 page_count(ctx->ring_pages[i]));
Benjamin LaHaise8e321fe2013-12-21 17:56:08 -0500310 page = ctx->ring_pages[i];
311 if (!page)
312 continue;
313 ctx->ring_pages[i] = NULL;
314 put_page(page);
Gu Zheng36bc08c2013-07-16 17:56:16 +0800315 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
Sasha Levinddb8c452013-11-19 17:33:03 -0500317 if (ctx->ring_pages && ctx->ring_pages != ctx->internal_pages) {
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700318 kfree(ctx->ring_pages);
Sasha Levinddb8c452013-11-19 17:33:03 -0500319 ctx->ring_pages = NULL;
320 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321}
322
Oleg Nesterov5477e702015-09-04 15:48:04 -0700323static int aio_ring_mremap(struct vm_area_struct *vma)
Gu Zheng36bc08c2013-07-16 17:56:16 +0800324{
Oleg Nesterov5477e702015-09-04 15:48:04 -0700325 struct file *file = vma->vm_file;
Pavel Emelyanove4a0d3e2014-09-18 19:56:17 +0400326 struct mm_struct *mm = vma->vm_mm;
327 struct kioctx_table *table;
Al Virob2edffd2015-04-06 17:48:54 -0400328 int i, res = -EINVAL;
Pavel Emelyanove4a0d3e2014-09-18 19:56:17 +0400329
330 spin_lock(&mm->ioctx_lock);
331 rcu_read_lock();
332 table = rcu_dereference(mm->ioctx_table);
333 for (i = 0; i < table->nr; i++) {
334 struct kioctx *ctx;
335
Tejun Heod0264c02018-03-14 12:10:17 -0700336 ctx = rcu_dereference(table->table[i]);
Pavel Emelyanove4a0d3e2014-09-18 19:56:17 +0400337 if (ctx && ctx->aio_ring_file == file) {
Al Virob2edffd2015-04-06 17:48:54 -0400338 if (!atomic_read(&ctx->dead)) {
339 ctx->user_id = ctx->mmap_base = vma->vm_start;
340 res = 0;
341 }
Pavel Emelyanove4a0d3e2014-09-18 19:56:17 +0400342 break;
343 }
344 }
345
346 rcu_read_unlock();
347 spin_unlock(&mm->ioctx_lock);
Al Virob2edffd2015-04-06 17:48:54 -0400348 return res;
Pavel Emelyanove4a0d3e2014-09-18 19:56:17 +0400349}
350
Oleg Nesterov5477e702015-09-04 15:48:04 -0700351static const struct vm_operations_struct aio_ring_vm_ops = {
352 .mremap = aio_ring_mremap,
353#if IS_ENABLED(CONFIG_MMU)
354 .fault = filemap_fault,
355 .map_pages = filemap_map_pages,
356 .page_mkwrite = filemap_page_mkwrite,
357#endif
358};
359
360static int aio_ring_mmap(struct file *file, struct vm_area_struct *vma)
361{
362 vma->vm_flags |= VM_DONTEXPAND;
363 vma->vm_ops = &aio_ring_vm_ops;
364 return 0;
365}
366
Gu Zheng36bc08c2013-07-16 17:56:16 +0800367static const struct file_operations aio_ring_fops = {
368 .mmap = aio_ring_mmap,
369};
370
Benjamin LaHaise0c453552013-07-17 09:34:24 -0400371#if IS_ENABLED(CONFIG_MIGRATION)
Gu Zheng36bc08c2013-07-16 17:56:16 +0800372static int aio_migratepage(struct address_space *mapping, struct page *new,
373 struct page *old, enum migrate_mode mode)
374{
Benjamin LaHaise5e9ae2e2013-09-26 20:34:51 -0400375 struct kioctx *ctx;
Gu Zheng36bc08c2013-07-16 17:56:16 +0800376 unsigned long flags;
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -0400377 pgoff_t idx;
Gu Zheng36bc08c2013-07-16 17:56:16 +0800378 int rc;
379
Jérôme Glisse2916ecc2017-09-08 16:12:06 -0700380 /*
381 * We cannot support the _NO_COPY case here, because copy needs to
382 * happen under the ctx->completion_lock. That does not work with the
383 * migration workflow of MIGRATE_SYNC_NO_COPY.
384 */
385 if (mode == MIGRATE_SYNC_NO_COPY)
386 return -EINVAL;
387
Benjamin LaHaise8e321fe2013-12-21 17:56:08 -0500388 rc = 0;
389
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -0400390 /* mapping->private_lock here protects against the kioctx teardown. */
Benjamin LaHaise8e321fe2013-12-21 17:56:08 -0500391 spin_lock(&mapping->private_lock);
392 ctx = mapping->private_data;
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -0400393 if (!ctx) {
394 rc = -EINVAL;
395 goto out;
396 }
397
398 /* The ring_lock mutex. The prevents aio_read_events() from writing
399 * to the ring's head, and prevents page migration from mucking in
400 * a partially initialized kiotx.
401 */
402 if (!mutex_trylock(&ctx->ring_lock)) {
403 rc = -EAGAIN;
404 goto out;
405 }
406
407 idx = old->index;
408 if (idx < (pgoff_t)ctx->nr_pages) {
409 /* Make sure the old page hasn't already been changed */
410 if (ctx->ring_pages[idx] != old)
411 rc = -EAGAIN;
Benjamin LaHaise8e321fe2013-12-21 17:56:08 -0500412 } else
413 rc = -EINVAL;
Benjamin LaHaise8e321fe2013-12-21 17:56:08 -0500414
415 if (rc != 0)
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -0400416 goto out_unlock;
Benjamin LaHaise8e321fe2013-12-21 17:56:08 -0500417
Gu Zheng36bc08c2013-07-16 17:56:16 +0800418 /* Writeback must be complete */
419 BUG_ON(PageWriteback(old));
Benjamin LaHaise8e321fe2013-12-21 17:56:08 -0500420 get_page(new);
Gu Zheng36bc08c2013-07-16 17:56:16 +0800421
Benjamin LaHaise8e321fe2013-12-21 17:56:08 -0500422 rc = migrate_page_move_mapping(mapping, new, old, NULL, mode, 1);
Gu Zheng36bc08c2013-07-16 17:56:16 +0800423 if (rc != MIGRATEPAGE_SUCCESS) {
Benjamin LaHaise8e321fe2013-12-21 17:56:08 -0500424 put_page(new);
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -0400425 goto out_unlock;
Gu Zheng36bc08c2013-07-16 17:56:16 +0800426 }
427
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -0400428 /* Take completion_lock to prevent other writes to the ring buffer
429 * while the old page is copied to the new. This prevents new
430 * events from being lost.
Benjamin LaHaise5e9ae2e2013-09-26 20:34:51 -0400431 */
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -0400432 spin_lock_irqsave(&ctx->completion_lock, flags);
433 migrate_page_copy(new, old);
434 BUG_ON(ctx->ring_pages[idx] != old);
435 ctx->ring_pages[idx] = new;
436 spin_unlock_irqrestore(&ctx->completion_lock, flags);
437
438 /* The old page is no longer accessible. */
439 put_page(old);
440
441out_unlock:
442 mutex_unlock(&ctx->ring_lock);
443out:
Benjamin LaHaise5e9ae2e2013-09-26 20:34:51 -0400444 spin_unlock(&mapping->private_lock);
Gu Zheng36bc08c2013-07-16 17:56:16 +0800445 return rc;
446}
Benjamin LaHaise0c453552013-07-17 09:34:24 -0400447#endif
Gu Zheng36bc08c2013-07-16 17:56:16 +0800448
449static const struct address_space_operations aio_ctx_aops = {
Gu Zheng835f2522014-11-06 17:46:21 +0800450 .set_page_dirty = __set_page_dirty_no_writeback,
Benjamin LaHaise0c453552013-07-17 09:34:24 -0400451#if IS_ENABLED(CONFIG_MIGRATION)
Gu Zheng36bc08c2013-07-16 17:56:16 +0800452 .migratepage = aio_migratepage,
Benjamin LaHaise0c453552013-07-17 09:34:24 -0400453#endif
Gu Zheng36bc08c2013-07-16 17:56:16 +0800454};
455
Mauricio Faria de Oliveira2a8a9862017-07-05 10:53:16 -0300456static int aio_setup_ring(struct kioctx *ctx, unsigned int nr_events)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457{
458 struct aio_ring *ring;
Zach Brown41003a72013-05-07 16:18:25 -0700459 struct mm_struct *mm = current->mm;
Linus Torvalds3dc9acb2013-12-20 05:11:12 +0900460 unsigned long size, unused;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 int nr_pages;
Gu Zheng36bc08c2013-07-16 17:56:16 +0800462 int i;
463 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
465 /* Compensate for the ring buffer's head/tail overlap entry */
466 nr_events += 2; /* 1 is required, 2 for good luck */
467
468 size = sizeof(struct aio_ring);
469 size += sizeof(struct io_event) * nr_events;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
Gu Zheng36bc08c2013-07-16 17:56:16 +0800471 nr_pages = PFN_UP(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 if (nr_pages < 0)
473 return -EINVAL;
474
Benjamin LaHaise71ad7492013-09-17 10:18:25 -0400475 file = aio_private_file(ctx, nr_pages);
Gu Zheng36bc08c2013-07-16 17:56:16 +0800476 if (IS_ERR(file)) {
477 ctx->aio_ring_file = NULL;
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -0400478 return -ENOMEM;
Gu Zheng36bc08c2013-07-16 17:56:16 +0800479 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Gu Zheng36bc08c2013-07-16 17:56:16 +0800481 ctx->aio_ring_file = file;
482 nr_events = (PAGE_SIZE * nr_pages - sizeof(struct aio_ring))
483 / sizeof(struct io_event);
484
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700485 ctx->ring_pages = ctx->internal_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 if (nr_pages > AIO_RING_PAGES) {
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700487 ctx->ring_pages = kcalloc(nr_pages, sizeof(struct page *),
488 GFP_KERNEL);
Gu Zhengd1b94322013-12-04 18:19:06 +0800489 if (!ctx->ring_pages) {
490 put_aio_ring_file(ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 return -ENOMEM;
Gu Zhengd1b94322013-12-04 18:19:06 +0800492 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 }
494
Linus Torvalds3dc9acb2013-12-20 05:11:12 +0900495 for (i = 0; i < nr_pages; i++) {
496 struct page *page;
Al Viro45063092016-12-04 18:24:56 -0500497 page = find_or_create_page(file->f_mapping,
Linus Torvalds3dc9acb2013-12-20 05:11:12 +0900498 i, GFP_HIGHUSER | __GFP_ZERO);
499 if (!page)
500 break;
501 pr_debug("pid(%d) page[%d]->count=%d\n",
502 current->pid, i, page_count(page));
503 SetPageUptodate(page);
Linus Torvalds3dc9acb2013-12-20 05:11:12 +0900504 unlock_page(page);
505
506 ctx->ring_pages[i] = page;
507 }
508 ctx->nr_pages = i;
509
510 if (unlikely(i != nr_pages)) {
511 aio_free_ring(ctx);
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -0400512 return -ENOMEM;
Linus Torvalds3dc9acb2013-12-20 05:11:12 +0900513 }
514
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700515 ctx->mmap_size = nr_pages * PAGE_SIZE;
516 pr_debug("attempting mmap of %lu bytes\n", ctx->mmap_size);
Gu Zheng36bc08c2013-07-16 17:56:16 +0800517
Michal Hocko013373e2016-05-23 16:25:59 -0700518 if (down_write_killable(&mm->mmap_sem)) {
519 ctx->mmap_size = 0;
520 aio_free_ring(ctx);
521 return -EINTR;
522 }
523
Gu Zheng36bc08c2013-07-16 17:56:16 +0800524 ctx->mmap_base = do_mmap_pgoff(ctx->aio_ring_file, 0, ctx->mmap_size,
525 PROT_READ | PROT_WRITE,
Mike Rapoport897ab3e2017-02-24 14:58:22 -0800526 MAP_SHARED, 0, &unused, NULL);
Linus Torvalds3dc9acb2013-12-20 05:11:12 +0900527 up_write(&mm->mmap_sem);
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700528 if (IS_ERR((void *)ctx->mmap_base)) {
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700529 ctx->mmap_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 aio_free_ring(ctx);
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -0400531 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 }
533
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700534 pr_debug("mmap address: 0x%08lx\n", ctx->mmap_base);
Benjamin LaHaised6c355c2013-09-09 11:57:59 -0400535
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700536 ctx->user_id = ctx->mmap_base;
537 ctx->nr_events = nr_events; /* trusted copy */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700539 ring = kmap_atomic(ctx->ring_pages[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 ring->nr = nr_events; /* user copy */
Benjamin LaHaisedb446a02013-07-30 12:54:40 -0400541 ring->id = ~0U;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 ring->head = ring->tail = 0;
543 ring->magic = AIO_RING_MAGIC;
544 ring->compat_features = AIO_RING_COMPAT_FEATURES;
545 ring->incompat_features = AIO_RING_INCOMPAT_FEATURES;
546 ring->header_length = sizeof(struct aio_ring);
Cong Wange8e3c3d2011-11-25 23:14:27 +0800547 kunmap_atomic(ring);
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700548 flush_dcache_page(ctx->ring_pages[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
550 return 0;
551}
552
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553#define AIO_EVENTS_PER_PAGE (PAGE_SIZE / sizeof(struct io_event))
554#define AIO_EVENTS_FIRST_PAGE ((PAGE_SIZE - sizeof(struct aio_ring)) / sizeof(struct io_event))
555#define AIO_EVENTS_OFFSET (AIO_EVENTS_PER_PAGE - AIO_EVENTS_FIRST_PAGE)
556
Christoph Hellwig04b2fa92015-02-02 14:49:06 +0100557void kiocb_set_cancel_fn(struct kiocb *iocb, kiocb_cancel_fn *cancel)
Kent Overstreet0460fef2013-05-07 16:18:49 -0700558{
Christoph Hellwig54843f82018-05-02 19:57:21 +0200559 struct aio_kiocb *req = container_of(iocb, struct aio_kiocb, rw);
Kent Overstreet0460fef2013-05-07 16:18:49 -0700560 struct kioctx *ctx = req->ki_ctx;
561 unsigned long flags;
562
Christoph Hellwig75321b52018-04-09 14:57:56 +0200563 if (WARN_ON_ONCE(!list_empty(&req->ki_list)))
564 return;
565
Kent Overstreet0460fef2013-05-07 16:18:49 -0700566 spin_lock_irqsave(&ctx->ctx_lock, flags);
Christoph Hellwig75321b52018-04-09 14:57:56 +0200567 list_add_tail(&req->ki_list, &ctx->active_reqs);
Kent Overstreet0460fef2013-05-07 16:18:49 -0700568 req->ki_cancel = cancel;
Kent Overstreet0460fef2013-05-07 16:18:49 -0700569 spin_unlock_irqrestore(&ctx->ctx_lock, flags);
570}
571EXPORT_SYMBOL(kiocb_set_cancel_fn);
572
Tejun Heoa6d7cff2018-03-14 12:10:17 -0700573/*
574 * free_ioctx() should be RCU delayed to synchronize against the RCU
575 * protected lookup_ioctx() and also needs process context to call
Tejun Heof7298632018-03-14 12:45:15 -0700576 * aio_free_ring(). Use rcu_work.
Tejun Heoa6d7cff2018-03-14 12:10:17 -0700577 */
Kent Overstreete34ecee2013-10-10 19:31:47 -0700578static void free_ioctx(struct work_struct *work)
Kent Overstreet36f55882013-05-07 16:18:41 -0700579{
Tejun Heof7298632018-03-14 12:45:15 -0700580 struct kioctx *ctx = container_of(to_rcu_work(work), struct kioctx,
581 free_rwork);
Kent Overstreete34ecee2013-10-10 19:31:47 -0700582 pr_debug("freeing %p\n", ctx);
583
584 aio_free_ring(ctx);
Kent Overstreete1bdd5f2013-04-26 10:58:39 +1000585 free_percpu(ctx->cpu);
Tejun Heo9a1049d2014-06-28 08:10:14 -0400586 percpu_ref_exit(&ctx->reqs);
587 percpu_ref_exit(&ctx->users);
Kent Overstreet36f55882013-05-07 16:18:41 -0700588 kmem_cache_free(kioctx_cachep, ctx);
589}
590
Kent Overstreete34ecee2013-10-10 19:31:47 -0700591static void free_ioctx_reqs(struct percpu_ref *ref)
592{
593 struct kioctx *ctx = container_of(ref, struct kioctx, reqs);
594
Anatol Pomozove02ba722014-04-15 11:31:33 -0700595 /* At this point we know that there are no any in-flight requests */
Jens Axboedc48e562015-04-15 11:17:23 -0600596 if (ctx->rq_wait && atomic_dec_and_test(&ctx->rq_wait->count))
597 complete(&ctx->rq_wait->comp);
Anatol Pomozove02ba722014-04-15 11:31:33 -0700598
Tejun Heoa6d7cff2018-03-14 12:10:17 -0700599 /* Synchronize against RCU protected table->table[] dereferences */
Tejun Heof7298632018-03-14 12:45:15 -0700600 INIT_RCU_WORK(&ctx->free_rwork, free_ioctx);
601 queue_rcu_work(system_wq, &ctx->free_rwork);
Kent Overstreete34ecee2013-10-10 19:31:47 -0700602}
603
Kent Overstreet36f55882013-05-07 16:18:41 -0700604/*
605 * When this function runs, the kioctx has been removed from the "hash table"
606 * and ctx->users has dropped to 0, so we know no more kiocbs can be submitted -
607 * now it's safe to cancel any that need to be.
608 */
Kent Overstreete34ecee2013-10-10 19:31:47 -0700609static void free_ioctx_users(struct percpu_ref *ref)
Kent Overstreet36f55882013-05-07 16:18:41 -0700610{
Kent Overstreete34ecee2013-10-10 19:31:47 -0700611 struct kioctx *ctx = container_of(ref, struct kioctx, users);
Christoph Hellwig04b2fa92015-02-02 14:49:06 +0100612 struct aio_kiocb *req;
Kent Overstreet36f55882013-05-07 16:18:41 -0700613
614 spin_lock_irq(&ctx->ctx_lock);
615
616 while (!list_empty(&ctx->active_reqs)) {
617 req = list_first_entry(&ctx->active_reqs,
Christoph Hellwig04b2fa92015-02-02 14:49:06 +0100618 struct aio_kiocb, ki_list);
Christoph Hellwig888933f2018-05-23 14:11:02 +0200619 req->ki_cancel(&req->rw);
Al Viro4faa99962018-05-23 22:53:22 -0400620 list_del_init(&req->ki_list);
Kent Overstreet36f55882013-05-07 16:18:41 -0700621 }
622
623 spin_unlock_irq(&ctx->ctx_lock);
624
Kent Overstreete34ecee2013-10-10 19:31:47 -0700625 percpu_ref_kill(&ctx->reqs);
626 percpu_ref_put(&ctx->reqs);
Kent Overstreet36f55882013-05-07 16:18:41 -0700627}
628
Benjamin LaHaisedb446a02013-07-30 12:54:40 -0400629static int ioctx_add_table(struct kioctx *ctx, struct mm_struct *mm)
630{
631 unsigned i, new_nr;
632 struct kioctx_table *table, *old;
633 struct aio_ring *ring;
634
635 spin_lock(&mm->ioctx_lock);
Oleg Nesterov855ef0d2014-04-30 16:16:36 +0200636 table = rcu_dereference_raw(mm->ioctx_table);
Benjamin LaHaisedb446a02013-07-30 12:54:40 -0400637
638 while (1) {
639 if (table)
640 for (i = 0; i < table->nr; i++)
Tejun Heod0264c02018-03-14 12:10:17 -0700641 if (!rcu_access_pointer(table->table[i])) {
Benjamin LaHaisedb446a02013-07-30 12:54:40 -0400642 ctx->id = i;
Tejun Heod0264c02018-03-14 12:10:17 -0700643 rcu_assign_pointer(table->table[i], ctx);
Benjamin LaHaisedb446a02013-07-30 12:54:40 -0400644 spin_unlock(&mm->ioctx_lock);
645
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -0400646 /* While kioctx setup is in progress,
647 * we are protected from page migration
648 * changes ring_pages by ->ring_lock.
649 */
Benjamin LaHaisedb446a02013-07-30 12:54:40 -0400650 ring = kmap_atomic(ctx->ring_pages[0]);
651 ring->id = ctx->id;
652 kunmap_atomic(ring);
653 return 0;
654 }
655
656 new_nr = (table ? table->nr : 1) * 4;
Benjamin LaHaisedb446a02013-07-30 12:54:40 -0400657 spin_unlock(&mm->ioctx_lock);
658
659 table = kzalloc(sizeof(*table) + sizeof(struct kioctx *) *
660 new_nr, GFP_KERNEL);
661 if (!table)
662 return -ENOMEM;
663
664 table->nr = new_nr;
665
666 spin_lock(&mm->ioctx_lock);
Oleg Nesterov855ef0d2014-04-30 16:16:36 +0200667 old = rcu_dereference_raw(mm->ioctx_table);
Benjamin LaHaisedb446a02013-07-30 12:54:40 -0400668
669 if (!old) {
670 rcu_assign_pointer(mm->ioctx_table, table);
671 } else if (table->nr > old->nr) {
672 memcpy(table->table, old->table,
673 old->nr * sizeof(struct kioctx *));
674
675 rcu_assign_pointer(mm->ioctx_table, table);
676 kfree_rcu(old, rcu);
677 } else {
678 kfree(table);
679 table = old;
680 }
681 }
682}
683
Kent Overstreete34ecee2013-10-10 19:31:47 -0700684static void aio_nr_sub(unsigned nr)
685{
686 spin_lock(&aio_nr_lock);
687 if (WARN_ON(aio_nr - nr > aio_nr))
688 aio_nr = 0;
689 else
690 aio_nr -= nr;
691 spin_unlock(&aio_nr_lock);
692}
693
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694/* ioctx_alloc
695 * Allocates and initializes an ioctx. Returns an ERR_PTR if it failed.
696 */
697static struct kioctx *ioctx_alloc(unsigned nr_events)
698{
Zach Brown41003a72013-05-07 16:18:25 -0700699 struct mm_struct *mm = current->mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 struct kioctx *ctx;
Al Viroe23754f2012-03-06 14:33:22 -0500701 int err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
Kent Overstreete1bdd5f2013-04-26 10:58:39 +1000703 /*
Mauricio Faria de Oliveira2a8a9862017-07-05 10:53:16 -0300704 * Store the original nr_events -- what userspace passed to io_setup(),
705 * for counting against the global limit -- before it changes.
706 */
707 unsigned int max_reqs = nr_events;
708
709 /*
Kent Overstreete1bdd5f2013-04-26 10:58:39 +1000710 * We keep track of the number of available ringbuffer slots, to prevent
711 * overflow (reqs_available), and we also use percpu counters for this.
712 *
713 * So since up to half the slots might be on other cpu's percpu counters
714 * and unavailable, double nr_events so userspace sees what they
715 * expected: additionally, we move req_batch slots to/from percpu
716 * counters at a time, so make sure that isn't 0:
717 */
718 nr_events = max(nr_events, num_possible_cpus() * 4);
719 nr_events *= 2;
720
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 /* Prevent overflows */
Al Viro08397ac2015-03-31 11:43:52 -0400722 if (nr_events > (0x10000000U / sizeof(struct io_event))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 pr_debug("ENOMEM: nr_events too high\n");
724 return ERR_PTR(-EINVAL);
725 }
726
Mauricio Faria de Oliveira2a8a9862017-07-05 10:53:16 -0300727 if (!nr_events || (unsigned long)max_reqs > aio_max_nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 return ERR_PTR(-EAGAIN);
729
Robert P. J. Dayc3762222007-02-10 01:45:03 -0800730 ctx = kmem_cache_zalloc(kioctx_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 if (!ctx)
732 return ERR_PTR(-ENOMEM);
733
Mauricio Faria de Oliveira2a8a9862017-07-05 10:53:16 -0300734 ctx->max_reqs = max_reqs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -0400736 spin_lock_init(&ctx->ctx_lock);
737 spin_lock_init(&ctx->completion_lock);
738 mutex_init(&ctx->ring_lock);
739 /* Protect against page migration throughout kiotx setup by keeping
740 * the ring_lock mutex held until setup is complete. */
741 mutex_lock(&ctx->ring_lock);
742 init_waitqueue_head(&ctx->wait);
743
744 INIT_LIST_HEAD(&ctx->active_reqs);
745
Tejun Heo2aad2a82014-09-24 13:31:50 -0400746 if (percpu_ref_init(&ctx->users, free_ioctx_users, 0, GFP_KERNEL))
Kent Overstreete34ecee2013-10-10 19:31:47 -0700747 goto err;
748
Tejun Heo2aad2a82014-09-24 13:31:50 -0400749 if (percpu_ref_init(&ctx->reqs, free_ioctx_reqs, 0, GFP_KERNEL))
Kent Overstreete34ecee2013-10-10 19:31:47 -0700750 goto err;
Kent Overstreet723be6e2013-05-28 15:14:48 -0700751
Kent Overstreete1bdd5f2013-04-26 10:58:39 +1000752 ctx->cpu = alloc_percpu(struct kioctx_cpu);
753 if (!ctx->cpu)
Kent Overstreete34ecee2013-10-10 19:31:47 -0700754 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Mauricio Faria de Oliveira2a8a9862017-07-05 10:53:16 -0300756 err = aio_setup_ring(ctx, nr_events);
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -0400757 if (err < 0)
Kent Overstreete34ecee2013-10-10 19:31:47 -0700758 goto err;
Kent Overstreete1bdd5f2013-04-26 10:58:39 +1000759
Kent Overstreet34e83fc2013-04-26 10:58:39 +1000760 atomic_set(&ctx->reqs_available, ctx->nr_events - 1);
Kent Overstreete1bdd5f2013-04-26 10:58:39 +1000761 ctx->req_batch = (ctx->nr_events - 1) / (num_possible_cpus() * 4);
Benjamin LaHaise6878ea72013-07-31 10:34:18 -0400762 if (ctx->req_batch < 1)
763 ctx->req_batch = 1;
Kent Overstreet34e83fc2013-04-26 10:58:39 +1000764
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 /* limit the number of system wide aios */
Al Viro9fa1cb32012-03-10 23:14:05 -0500766 spin_lock(&aio_nr_lock);
Mauricio Faria de Oliveira2a8a9862017-07-05 10:53:16 -0300767 if (aio_nr + ctx->max_reqs > aio_max_nr ||
768 aio_nr + ctx->max_reqs < aio_nr) {
Al Viro9fa1cb32012-03-10 23:14:05 -0500769 spin_unlock(&aio_nr_lock);
Kent Overstreete34ecee2013-10-10 19:31:47 -0700770 err = -EAGAIN;
Gu Zhengd1b94322013-12-04 18:19:06 +0800771 goto err_ctx;
Al Viro2dd542b2012-03-10 23:10:35 -0500772 }
773 aio_nr += ctx->max_reqs;
Al Viro9fa1cb32012-03-10 23:14:05 -0500774 spin_unlock(&aio_nr_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
Benjamin LaHaise18816862013-12-21 15:49:28 -0500776 percpu_ref_get(&ctx->users); /* io_setup() will drop this ref */
777 percpu_ref_get(&ctx->reqs); /* free_ioctx_users() will drop this */
Kent Overstreet723be6e2013-05-28 15:14:48 -0700778
Benjamin LaHaiseda903822013-08-05 13:21:43 -0400779 err = ioctx_add_table(ctx, mm);
780 if (err)
Kent Overstreete34ecee2013-10-10 19:31:47 -0700781 goto err_cleanup;
Benjamin LaHaiseda903822013-08-05 13:21:43 -0400782
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -0400783 /* Release the ring_lock mutex now that all setup is complete. */
784 mutex_unlock(&ctx->ring_lock);
785
Kent Overstreetcaf41672013-05-07 16:18:35 -0700786 pr_debug("allocated ioctx %p[%ld]: mm=%p mask=0x%x\n",
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700787 ctx, ctx->user_id, mm, ctx->nr_events);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 return ctx;
789
Kent Overstreete34ecee2013-10-10 19:31:47 -0700790err_cleanup:
791 aio_nr_sub(ctx->max_reqs);
Gu Zhengd1b94322013-12-04 18:19:06 +0800792err_ctx:
Al Virodeeb8522015-04-06 17:57:44 -0400793 atomic_set(&ctx->dead, 1);
794 if (ctx->mmap_size)
795 vm_munmap(ctx->mmap_base, ctx->mmap_size);
Gu Zhengd1b94322013-12-04 18:19:06 +0800796 aio_free_ring(ctx);
Kent Overstreete34ecee2013-10-10 19:31:47 -0700797err:
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -0400798 mutex_unlock(&ctx->ring_lock);
Kent Overstreete1bdd5f2013-04-26 10:58:39 +1000799 free_percpu(ctx->cpu);
Tejun Heo9a1049d2014-06-28 08:10:14 -0400800 percpu_ref_exit(&ctx->reqs);
801 percpu_ref_exit(&ctx->users);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 kmem_cache_free(kioctx_cachep, ctx);
Kent Overstreetcaf41672013-05-07 16:18:35 -0700803 pr_debug("error allocating ioctx %d\n", err);
Al Viroe23754f2012-03-06 14:33:22 -0500804 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805}
806
Kent Overstreet36f55882013-05-07 16:18:41 -0700807/* kill_ioctx
808 * Cancels all outstanding aio requests on an aio context. Used
809 * when the processes owning a context have all exited to encourage
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 * the rapid destruction of the kioctx.
811 */
Benjamin LaHaisefb2d4482014-04-29 12:45:17 -0400812static int kill_ioctx(struct mm_struct *mm, struct kioctx *ctx,
Jens Axboedc48e562015-04-15 11:17:23 -0600813 struct ctx_rq_wait *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814{
Benjamin LaHaisefa88b6f2014-04-29 12:55:48 -0400815 struct kioctx_table *table;
Benjamin LaHaisedb446a02013-07-30 12:54:40 -0400816
Benjamin LaHaisefa88b6f2014-04-29 12:55:48 -0400817 spin_lock(&mm->ioctx_lock);
Al Virob2edffd2015-04-06 17:48:54 -0400818 if (atomic_xchg(&ctx->dead, 1)) {
819 spin_unlock(&mm->ioctx_lock);
820 return -EINVAL;
821 }
822
Oleg Nesterov855ef0d2014-04-30 16:16:36 +0200823 table = rcu_dereference_raw(mm->ioctx_table);
Tejun Heod0264c02018-03-14 12:10:17 -0700824 WARN_ON(ctx != rcu_access_pointer(table->table[ctx->id]));
825 RCU_INIT_POINTER(table->table[ctx->id], NULL);
Benjamin LaHaisefa88b6f2014-04-29 12:55:48 -0400826 spin_unlock(&mm->ioctx_lock);
Kent Overstreet4fcc7122013-06-12 14:04:59 -0700827
Tejun Heoa6d7cff2018-03-14 12:10:17 -0700828 /* free_ioctx_reqs() will do the necessary RCU synchronization */
Benjamin LaHaisefa88b6f2014-04-29 12:55:48 -0400829 wake_up_all(&ctx->wait);
Kent Overstreet4fcc7122013-06-12 14:04:59 -0700830
Benjamin LaHaisefa88b6f2014-04-29 12:55:48 -0400831 /*
832 * It'd be more correct to do this in free_ioctx(), after all
833 * the outstanding kiocbs have finished - but by then io_destroy
834 * has already returned, so io_setup() could potentially return
835 * -EAGAIN with no ioctxs actually in use (as far as userspace
836 * could tell).
837 */
838 aio_nr_sub(ctx->max_reqs);
Benjamin LaHaisefb2d4482014-04-29 12:45:17 -0400839
Benjamin LaHaisefa88b6f2014-04-29 12:55:48 -0400840 if (ctx->mmap_size)
841 vm_munmap(ctx->mmap_base, ctx->mmap_size);
842
Jens Axboedc48e562015-04-15 11:17:23 -0600843 ctx->rq_wait = wait;
Benjamin LaHaisefa88b6f2014-04-29 12:55:48 -0400844 percpu_ref_kill(&ctx->users);
845 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846}
847
Kent Overstreet36f55882013-05-07 16:18:41 -0700848/*
849 * exit_aio: called when the last user of mm goes away. At this point, there is
850 * no way for any new requests to be submited or any of the io_* syscalls to be
851 * called on the context.
852 *
853 * There may be outstanding kiocbs, but free_ioctx() will explicitly wait on
854 * them.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 */
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -0800856void exit_aio(struct mm_struct *mm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857{
Oleg Nesterov4b70ac52014-04-30 19:02:48 +0200858 struct kioctx_table *table = rcu_dereference_raw(mm->ioctx_table);
Jens Axboedc48e562015-04-15 11:17:23 -0600859 struct ctx_rq_wait wait;
860 int i, skipped;
Jens Axboeabf137d2008-12-09 08:11:22 +0100861
Oleg Nesterov4b70ac52014-04-30 19:02:48 +0200862 if (!table)
863 return;
Benjamin LaHaisedb446a02013-07-30 12:54:40 -0400864
Jens Axboedc48e562015-04-15 11:17:23 -0600865 atomic_set(&wait.count, table->nr);
866 init_completion(&wait.comp);
867
868 skipped = 0;
Oleg Nesterov4b70ac52014-04-30 19:02:48 +0200869 for (i = 0; i < table->nr; ++i) {
Tejun Heod0264c02018-03-14 12:10:17 -0700870 struct kioctx *ctx =
871 rcu_dereference_protected(table->table[i], true);
Benjamin LaHaisedb446a02013-07-30 12:54:40 -0400872
Jens Axboedc48e562015-04-15 11:17:23 -0600873 if (!ctx) {
874 skipped++;
Oleg Nesterov4b70ac52014-04-30 19:02:48 +0200875 continue;
Jens Axboedc48e562015-04-15 11:17:23 -0600876 }
877
Al Viro936af152012-04-20 21:49:41 -0400878 /*
Oleg Nesterov4b70ac52014-04-30 19:02:48 +0200879 * We don't need to bother with munmap() here - exit_mmap(mm)
880 * is coming and it'll unmap everything. And we simply can't,
881 * this is not necessarily our ->mm.
882 * Since kill_ioctx() uses non-zero ->mmap_size as indicator
883 * that it needs to unmap the area, just set it to 0.
Al Viro936af152012-04-20 21:49:41 -0400884 */
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700885 ctx->mmap_size = 0;
Jens Axboedc48e562015-04-15 11:17:23 -0600886 kill_ioctx(mm, ctx, &wait);
887 }
Kent Overstreet36f55882013-05-07 16:18:41 -0700888
Jens Axboedc48e562015-04-15 11:17:23 -0600889 if (!atomic_sub_and_test(skipped, &wait.count)) {
Gu Zheng6098b452014-09-03 17:45:44 +0800890 /* Wait until all IO for the context are done. */
Jens Axboedc48e562015-04-15 11:17:23 -0600891 wait_for_completion(&wait.comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 }
Oleg Nesterov4b70ac52014-04-30 19:02:48 +0200893
894 RCU_INIT_POINTER(mm->ioctx_table, NULL);
895 kfree(table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896}
897
Kent Overstreete1bdd5f2013-04-26 10:58:39 +1000898static void put_reqs_available(struct kioctx *ctx, unsigned nr)
899{
900 struct kioctx_cpu *kcpu;
Benjamin LaHaise263782c2014-07-14 12:49:26 -0400901 unsigned long flags;
Kent Overstreete1bdd5f2013-04-26 10:58:39 +1000902
Benjamin LaHaise263782c2014-07-14 12:49:26 -0400903 local_irq_save(flags);
Benjamin LaHaisebe6fb452014-07-22 09:56:56 -0400904 kcpu = this_cpu_ptr(ctx->cpu);
Kent Overstreete1bdd5f2013-04-26 10:58:39 +1000905 kcpu->reqs_available += nr;
Benjamin LaHaise263782c2014-07-14 12:49:26 -0400906
Kent Overstreete1bdd5f2013-04-26 10:58:39 +1000907 while (kcpu->reqs_available >= ctx->req_batch * 2) {
908 kcpu->reqs_available -= ctx->req_batch;
909 atomic_add(ctx->req_batch, &ctx->reqs_available);
910 }
911
Benjamin LaHaise263782c2014-07-14 12:49:26 -0400912 local_irq_restore(flags);
Kent Overstreete1bdd5f2013-04-26 10:58:39 +1000913}
914
Christoph Hellwig730198c2018-11-19 15:57:42 -0700915static bool __get_reqs_available(struct kioctx *ctx)
Kent Overstreete1bdd5f2013-04-26 10:58:39 +1000916{
917 struct kioctx_cpu *kcpu;
918 bool ret = false;
Benjamin LaHaise263782c2014-07-14 12:49:26 -0400919 unsigned long flags;
Kent Overstreete1bdd5f2013-04-26 10:58:39 +1000920
Benjamin LaHaise263782c2014-07-14 12:49:26 -0400921 local_irq_save(flags);
Benjamin LaHaisebe6fb452014-07-22 09:56:56 -0400922 kcpu = this_cpu_ptr(ctx->cpu);
Kent Overstreete1bdd5f2013-04-26 10:58:39 +1000923 if (!kcpu->reqs_available) {
924 int old, avail = atomic_read(&ctx->reqs_available);
925
926 do {
927 if (avail < ctx->req_batch)
928 goto out;
929
930 old = avail;
931 avail = atomic_cmpxchg(&ctx->reqs_available,
932 avail, avail - ctx->req_batch);
933 } while (avail != old);
934
935 kcpu->reqs_available += ctx->req_batch;
936 }
937
938 ret = true;
939 kcpu->reqs_available--;
940out:
Benjamin LaHaise263782c2014-07-14 12:49:26 -0400941 local_irq_restore(flags);
Kent Overstreete1bdd5f2013-04-26 10:58:39 +1000942 return ret;
943}
944
Benjamin LaHaised856f322014-08-24 13:14:05 -0400945/* refill_reqs_available
946 * Updates the reqs_available reference counts used for tracking the
947 * number of free slots in the completion ring. This can be called
948 * from aio_complete() (to optimistically update reqs_available) or
949 * from aio_get_req() (the we're out of events case). It must be
950 * called holding ctx->completion_lock.
951 */
952static void refill_reqs_available(struct kioctx *ctx, unsigned head,
953 unsigned tail)
954{
955 unsigned events_in_ring, completed;
956
957 /* Clamp head since userland can write to it. */
958 head %= ctx->nr_events;
959 if (head <= tail)
960 events_in_ring = tail - head;
961 else
962 events_in_ring = ctx->nr_events - (head - tail);
963
964 completed = ctx->completed_events;
965 if (events_in_ring < completed)
966 completed -= events_in_ring;
967 else
968 completed = 0;
969
970 if (!completed)
971 return;
972
973 ctx->completed_events -= completed;
974 put_reqs_available(ctx, completed);
975}
976
977/* user_refill_reqs_available
978 * Called to refill reqs_available when aio_get_req() encounters an
979 * out of space in the completion ring.
980 */
981static void user_refill_reqs_available(struct kioctx *ctx)
982{
983 spin_lock_irq(&ctx->completion_lock);
984 if (ctx->completed_events) {
985 struct aio_ring *ring;
986 unsigned head;
987
988 /* Access of ring->head may race with aio_read_events_ring()
989 * here, but that's okay since whether we read the old version
990 * or the new version, and either will be valid. The important
991 * part is that head cannot pass tail since we prevent
992 * aio_complete() from updating tail by holding
993 * ctx->completion_lock. Even if head is invalid, the check
994 * against ctx->completed_events below will make sure we do the
995 * safe/right thing.
996 */
997 ring = kmap_atomic(ctx->ring_pages[0]);
998 head = ring->head;
999 kunmap_atomic(ring);
1000
1001 refill_reqs_available(ctx, head, ctx->tail);
1002 }
1003
1004 spin_unlock_irq(&ctx->completion_lock);
1005}
1006
Christoph Hellwig730198c2018-11-19 15:57:42 -07001007static bool get_reqs_available(struct kioctx *ctx)
1008{
1009 if (__get_reqs_available(ctx))
1010 return true;
1011 user_refill_reqs_available(ctx);
1012 return __get_reqs_available(ctx);
1013}
1014
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015/* aio_get_req
Kent Overstreet57282d82013-05-13 13:42:52 -07001016 * Allocate a slot for an aio request.
1017 * Returns NULL if no requests are free.
Linus Torvaldsc7f25252019-03-06 20:22:54 -05001018 *
1019 * The refcount is initialized to 2 - one for the async op completion,
1020 * one for the synchronous code that does this.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 */
Christoph Hellwig04b2fa92015-02-02 14:49:06 +01001022static inline struct aio_kiocb *aio_get_req(struct kioctx *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023{
Christoph Hellwig04b2fa92015-02-02 14:49:06 +01001024 struct aio_kiocb *req;
Kent Overstreeta1c8eae2013-05-07 16:18:53 -07001025
Jens Axboeef529ee2018-12-04 09:44:49 -07001026 req = kmem_cache_alloc(kiocb_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 if (unlikely(!req))
Christoph Hellwig730198c2018-11-19 15:57:42 -07001028 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
Kent Overstreete34ecee2013-10-10 19:31:47 -07001030 percpu_ref_get(&ctx->reqs);
Jens Axboeef529ee2018-12-04 09:44:49 -07001031 req->ki_ctx = ctx;
Christoph Hellwig75321b52018-04-09 14:57:56 +02001032 INIT_LIST_HEAD(&req->ki_list);
Linus Torvaldsc7f25252019-03-06 20:22:54 -05001033 refcount_set(&req->ki_refcnt, 2);
Jens Axboeef529ee2018-12-04 09:44:49 -07001034 req->ki_eventfd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 return req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036}
1037
Adrian Bunkd5470b52008-04-29 00:58:57 -07001038static struct kioctx *lookup_ioctx(unsigned long ctx_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039{
Benjamin LaHaisedb446a02013-07-30 12:54:40 -04001040 struct aio_ring __user *ring = (void __user *)ctx_id;
Jens Axboeabf137d2008-12-09 08:11:22 +01001041 struct mm_struct *mm = current->mm;
Jeff Moyer65c24492009-03-18 17:04:21 -07001042 struct kioctx *ctx, *ret = NULL;
Benjamin LaHaisedb446a02013-07-30 12:54:40 -04001043 struct kioctx_table *table;
1044 unsigned id;
1045
1046 if (get_user(id, &ring->id))
1047 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
Jens Axboeabf137d2008-12-09 08:11:22 +01001049 rcu_read_lock();
Benjamin LaHaisedb446a02013-07-30 12:54:40 -04001050 table = rcu_dereference(mm->ioctx_table);
Jens Axboeabf137d2008-12-09 08:11:22 +01001051
Benjamin LaHaisedb446a02013-07-30 12:54:40 -04001052 if (!table || id >= table->nr)
1053 goto out;
1054
Jeff Moyera6136922018-12-11 12:37:49 -05001055 id = array_index_nospec(id, table->nr);
Tejun Heod0264c02018-03-14 12:10:17 -07001056 ctx = rcu_dereference(table->table[id]);
Benjamin LaHaisef30d7042013-08-07 18:23:48 -04001057 if (ctx && ctx->user_id == ctx_id) {
Al Virobaf10562018-05-20 16:46:23 -04001058 if (percpu_ref_tryget_live(&ctx->users))
1059 ret = ctx;
Jens Axboeabf137d2008-12-09 08:11:22 +01001060 }
Benjamin LaHaisedb446a02013-07-30 12:54:40 -04001061out:
Jens Axboeabf137d2008-12-09 08:11:22 +01001062 rcu_read_unlock();
Jeff Moyer65c24492009-03-18 17:04:21 -07001063 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064}
1065
Linus Torvaldsc7f25252019-03-06 20:22:54 -05001066static inline void iocb_destroy(struct aio_kiocb *iocb)
1067{
1068 if (iocb->ki_filp)
1069 fput(iocb->ki_filp);
1070 percpu_ref_put(&iocb->ki_ctx->reqs);
1071 kmem_cache_free(kiocb_cachep, iocb);
1072}
1073
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074/* aio_complete
1075 * Called when the io request on the given iocb is complete.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 */
Al Viroaab66df2019-03-07 19:49:55 -05001077static void aio_complete(struct aio_kiocb *iocb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078{
1079 struct kioctx *ctx = iocb->ki_ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 struct aio_ring *ring;
Kent Overstreet21b40202013-05-07 16:18:47 -07001081 struct io_event *ev_page, *event;
Benjamin LaHaised856f322014-08-24 13:14:05 -04001082 unsigned tail, pos, head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 /*
Kent Overstreet0460fef2013-05-07 16:18:49 -07001086 * Add a completion event to the ring buffer. Must be done holding
Tang Chen4b30f072013-07-03 15:09:16 -07001087 * ctx->completion_lock to prevent other code from messing with the tail
Kent Overstreet0460fef2013-05-07 16:18:49 -07001088 * pointer since we might be called from irq context.
1089 */
1090 spin_lock_irqsave(&ctx->completion_lock, flags);
1091
Kent Overstreet58c85dc2013-05-07 16:18:55 -07001092 tail = ctx->tail;
Kent Overstreet21b40202013-05-07 16:18:47 -07001093 pos = tail + AIO_EVENTS_OFFSET;
1094
Kent Overstreet58c85dc2013-05-07 16:18:55 -07001095 if (++tail >= ctx->nr_events)
Ken Chen4bf69b22005-05-01 08:59:15 -07001096 tail = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
Kent Overstreet58c85dc2013-05-07 16:18:55 -07001098 ev_page = kmap_atomic(ctx->ring_pages[pos / AIO_EVENTS_PER_PAGE]);
Kent Overstreet21b40202013-05-07 16:18:47 -07001099 event = ev_page + pos % AIO_EVENTS_PER_PAGE;
1100
Al Viroc20202c512019-03-07 19:43:45 -05001101 *event = iocb->ki_res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102
Kent Overstreet21b40202013-05-07 16:18:47 -07001103 kunmap_atomic(ev_page);
Kent Overstreet58c85dc2013-05-07 16:18:55 -07001104 flush_dcache_page(ctx->ring_pages[pos / AIO_EVENTS_PER_PAGE]);
Kent Overstreet21b40202013-05-07 16:18:47 -07001105
Al Viroc20202c512019-03-07 19:43:45 -05001106 pr_debug("%p[%u]: %p: %p %Lx %Lx %Lx\n", ctx, tail, iocb,
1107 (void __user *)(unsigned long)iocb->ki_res.obj,
1108 iocb->ki_res.data, iocb->ki_res.res, iocb->ki_res.res2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
1110 /* after flagging the request as done, we
1111 * must never even look at it again
1112 */
1113 smp_wmb(); /* make event visible before updating tail */
1114
Kent Overstreet58c85dc2013-05-07 16:18:55 -07001115 ctx->tail = tail;
Kent Overstreet21b40202013-05-07 16:18:47 -07001116
Kent Overstreet58c85dc2013-05-07 16:18:55 -07001117 ring = kmap_atomic(ctx->ring_pages[0]);
Benjamin LaHaised856f322014-08-24 13:14:05 -04001118 head = ring->head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 ring->tail = tail;
Cong Wange8e3c3d2011-11-25 23:14:27 +08001120 kunmap_atomic(ring);
Kent Overstreet58c85dc2013-05-07 16:18:55 -07001121 flush_dcache_page(ctx->ring_pages[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
Benjamin LaHaised856f322014-08-24 13:14:05 -04001123 ctx->completed_events++;
1124 if (ctx->completed_events > 1)
1125 refill_reqs_available(ctx, head, tail);
Kent Overstreet0460fef2013-05-07 16:18:49 -07001126 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1127
Kent Overstreet21b40202013-05-07 16:18:47 -07001128 pr_debug("added to ring %p at [%u]\n", iocb, tail);
Davide Libenzi8d1c98b2008-04-10 21:29:19 -07001129
1130 /*
1131 * Check if the user asked us to deliver the result through an
1132 * eventfd. The eventfd_signal() function is safe to be called
1133 * from IRQ context.
1134 */
Christoph Hellwig54843f82018-05-02 19:57:21 +02001135 if (iocb->ki_eventfd) {
Davide Libenzi8d1c98b2008-04-10 21:29:19 -07001136 eventfd_signal(iocb->ki_eventfd, 1);
Christoph Hellwig54843f82018-05-02 19:57:21 +02001137 eventfd_ctx_put(iocb->ki_eventfd);
1138 }
Davide Libenzi8d1c98b2008-04-10 21:29:19 -07001139
Quentin Barnes6cb2a212008-03-19 17:00:39 -07001140 /*
1141 * We have to order our ring_info tail store above and test
1142 * of the wait list below outside the wait lock. This is
1143 * like in wake_up_bit() where clearing a bit has to be
1144 * ordered with the unlocked test.
1145 */
1146 smp_mb();
1147
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 if (waitqueue_active(&ctx->wait))
1149 wake_up(&ctx->wait);
Al Viroaab66df2019-03-07 19:49:55 -05001150}
1151
1152static inline void iocb_put(struct aio_kiocb *iocb)
1153{
1154 if (refcount_dec_and_test(&iocb->ki_refcnt)) {
1155 aio_complete(iocb);
1156 iocb_destroy(iocb);
1157 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158}
1159
Gu Zheng2be4e7d2014-07-23 18:03:53 +08001160/* aio_read_events_ring
Kent Overstreeta31ad382013-05-07 16:18:45 -07001161 * Pull an event off of the ioctx's event ring. Returns the number of
1162 * events fetched
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 */
Kent Overstreeta31ad382013-05-07 16:18:45 -07001164static long aio_read_events_ring(struct kioctx *ctx,
1165 struct io_event __user *event, long nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 struct aio_ring *ring;
Kent Overstreet5ffac122013-05-09 15:36:07 -07001168 unsigned head, tail, pos;
Kent Overstreeta31ad382013-05-07 16:18:45 -07001169 long ret = 0;
1170 int copy_ret;
1171
Dave Chinner9c9ce762015-02-03 19:29:05 -05001172 /*
1173 * The mutex can block and wake us up and that will cause
1174 * wait_event_interruptible_hrtimeout() to schedule without sleeping
1175 * and repeat. This should be rare enough that it doesn't cause
1176 * peformance issues. See the comment in read_events() for more detail.
1177 */
1178 sched_annotate_sleep();
Kent Overstreet58c85dc2013-05-07 16:18:55 -07001179 mutex_lock(&ctx->ring_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -04001181 /* Access to ->ring_pages here is protected by ctx->ring_lock. */
Kent Overstreet58c85dc2013-05-07 16:18:55 -07001182 ring = kmap_atomic(ctx->ring_pages[0]);
Kent Overstreeta31ad382013-05-07 16:18:45 -07001183 head = ring->head;
Kent Overstreet5ffac122013-05-09 15:36:07 -07001184 tail = ring->tail;
Kent Overstreeta31ad382013-05-07 16:18:45 -07001185 kunmap_atomic(ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
Jeff Moyer2ff396be2014-09-02 13:17:00 -04001187 /*
1188 * Ensure that once we've read the current tail pointer, that
1189 * we also see the events that were stored up to the tail.
1190 */
1191 smp_rmb();
1192
Kent Overstreet5ffac122013-05-09 15:36:07 -07001193 pr_debug("h%u t%u m%u\n", head, tail, ctx->nr_events);
Kent Overstreeta31ad382013-05-07 16:18:45 -07001194
Kent Overstreet5ffac122013-05-09 15:36:07 -07001195 if (head == tail)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 goto out;
1197
Benjamin LaHaiseedfbbf32014-06-24 13:32:51 -04001198 head %= ctx->nr_events;
1199 tail %= ctx->nr_events;
1200
Kent Overstreeta31ad382013-05-07 16:18:45 -07001201 while (ret < nr) {
1202 long avail;
1203 struct io_event *ev;
1204 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
Kent Overstreet5ffac122013-05-09 15:36:07 -07001206 avail = (head <= tail ? tail : ctx->nr_events) - head;
1207 if (head == tail)
Kent Overstreeta31ad382013-05-07 16:18:45 -07001208 break;
1209
Kent Overstreeta31ad382013-05-07 16:18:45 -07001210 pos = head + AIO_EVENTS_OFFSET;
Kent Overstreet58c85dc2013-05-07 16:18:55 -07001211 page = ctx->ring_pages[pos / AIO_EVENTS_PER_PAGE];
Kent Overstreeta31ad382013-05-07 16:18:45 -07001212 pos %= AIO_EVENTS_PER_PAGE;
1213
Al Virod2988bd42018-05-26 19:13:10 -04001214 avail = min(avail, nr - ret);
1215 avail = min_t(long, avail, AIO_EVENTS_PER_PAGE - pos);
1216
Kent Overstreeta31ad382013-05-07 16:18:45 -07001217 ev = kmap(page);
1218 copy_ret = copy_to_user(event + ret, ev + pos,
1219 sizeof(*ev) * avail);
1220 kunmap(page);
1221
1222 if (unlikely(copy_ret)) {
1223 ret = -EFAULT;
1224 goto out;
1225 }
1226
1227 ret += avail;
1228 head += avail;
Kent Overstreet58c85dc2013-05-07 16:18:55 -07001229 head %= ctx->nr_events;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231
Kent Overstreet58c85dc2013-05-07 16:18:55 -07001232 ring = kmap_atomic(ctx->ring_pages[0]);
Kent Overstreeta31ad382013-05-07 16:18:45 -07001233 ring->head = head;
Zhao Hongjiang91d80a82013-04-26 11:03:53 +08001234 kunmap_atomic(ring);
Kent Overstreet58c85dc2013-05-07 16:18:55 -07001235 flush_dcache_page(ctx->ring_pages[0]);
Kent Overstreeta31ad382013-05-07 16:18:45 -07001236
Kent Overstreet5ffac122013-05-09 15:36:07 -07001237 pr_debug("%li h%u t%u\n", ret, head, tail);
Kent Overstreeta31ad382013-05-07 16:18:45 -07001238out:
Kent Overstreet58c85dc2013-05-07 16:18:55 -07001239 mutex_unlock(&ctx->ring_lock);
Kent Overstreeta31ad382013-05-07 16:18:45 -07001240
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 return ret;
1242}
1243
Kent Overstreeta31ad382013-05-07 16:18:45 -07001244static bool aio_read_events(struct kioctx *ctx, long min_nr, long nr,
1245 struct io_event __user *event, long *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246{
Kent Overstreeta31ad382013-05-07 16:18:45 -07001247 long ret = aio_read_events_ring(ctx, event + *i, nr - *i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248
Kent Overstreeta31ad382013-05-07 16:18:45 -07001249 if (ret > 0)
1250 *i += ret;
1251
1252 if (unlikely(atomic_read(&ctx->dead)))
1253 ret = -EINVAL;
1254
1255 if (!*i)
1256 *i = ret;
1257
1258 return ret < 0 || *i >= min_nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259}
1260
Kent Overstreeta31ad382013-05-07 16:18:45 -07001261static long read_events(struct kioctx *ctx, long min_nr, long nr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 struct io_event __user *event,
Deepa Dinamanifa2e62a2017-08-04 21:12:32 -07001263 ktime_t until)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264{
Kent Overstreeta31ad382013-05-07 16:18:45 -07001265 long ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
Kent Overstreeta31ad382013-05-07 16:18:45 -07001267 /*
1268 * Note that aio_read_events() is being called as the conditional - i.e.
1269 * we're calling it after prepare_to_wait() has set task state to
1270 * TASK_INTERRUPTIBLE.
1271 *
1272 * But aio_read_events() can block, and if it blocks it's going to flip
1273 * the task state back to TASK_RUNNING.
1274 *
1275 * This should be ok, provided it doesn't flip the state back to
1276 * TASK_RUNNING and return 0 too much - that causes us to spin. That
1277 * will only happen if the mutex_lock() call blocks, and we then find
1278 * the ringbuffer empty. So in practice we should be ok, but it's
1279 * something to be aware of when touching this code.
1280 */
Thomas Gleixner2456e852016-12-25 11:38:40 +01001281 if (until == 0)
Fam Zheng5f785de2014-11-06 20:44:36 +08001282 aio_read_events(ctx, min_nr, nr, event, &ret);
1283 else
1284 wait_event_interruptible_hrtimeout(ctx->wait,
1285 aio_read_events(ctx, min_nr, nr, event, &ret),
1286 until);
Kent Overstreeta31ad382013-05-07 16:18:45 -07001287 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288}
1289
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290/* sys_io_setup:
1291 * Create an aio_context capable of receiving at least nr_events.
1292 * ctxp must not point to an aio_context that already exists, and
1293 * must be initialized to 0 prior to the call. On successful
1294 * creation of the aio_context, *ctxp is filled in with the resulting
1295 * handle. May fail with -EINVAL if *ctxp is not initialized,
1296 * if the specified nr_events exceeds internal limits. May fail
1297 * with -EAGAIN if the specified nr_events exceeds the user's limit
1298 * of available events. May fail with -ENOMEM if insufficient kernel
1299 * resources are available. May fail with -EFAULT if an invalid
1300 * pointer is passed for ctxp. Will fail with -ENOSYS if not
1301 * implemented.
1302 */
Heiko Carstens002c8972009-01-14 14:14:18 +01001303SYSCALL_DEFINE2(io_setup, unsigned, nr_events, aio_context_t __user *, ctxp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304{
1305 struct kioctx *ioctx = NULL;
1306 unsigned long ctx;
1307 long ret;
1308
1309 ret = get_user(ctx, ctxp);
1310 if (unlikely(ret))
1311 goto out;
1312
1313 ret = -EINVAL;
Zach Brownd55b5fd2005-11-07 00:59:31 -08001314 if (unlikely(ctx || nr_events == 0)) {
Kinglong Meeacd88d42015-02-04 21:15:59 +08001315 pr_debug("EINVAL: ctx %lu nr_events %u\n",
Zach Brownd55b5fd2005-11-07 00:59:31 -08001316 ctx, nr_events);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 goto out;
1318 }
1319
1320 ioctx = ioctx_alloc(nr_events);
1321 ret = PTR_ERR(ioctx);
1322 if (!IS_ERR(ioctx)) {
1323 ret = put_user(ioctx->user_id, ctxp);
Al Viroa2e18592012-03-20 16:27:57 -04001324 if (ret)
Anatol Pomozove02ba722014-04-15 11:31:33 -07001325 kill_ioctx(current->mm, ioctx, NULL);
Kent Overstreet723be6e2013-05-28 15:14:48 -07001326 percpu_ref_put(&ioctx->users);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 }
1328
1329out:
1330 return ret;
1331}
1332
Al Viroc00d2c72016-12-20 07:04:57 -05001333#ifdef CONFIG_COMPAT
1334COMPAT_SYSCALL_DEFINE2(io_setup, unsigned, nr_events, u32 __user *, ctx32p)
1335{
1336 struct kioctx *ioctx = NULL;
1337 unsigned long ctx;
1338 long ret;
1339
1340 ret = get_user(ctx, ctx32p);
1341 if (unlikely(ret))
1342 goto out;
1343
1344 ret = -EINVAL;
1345 if (unlikely(ctx || nr_events == 0)) {
1346 pr_debug("EINVAL: ctx %lu nr_events %u\n",
1347 ctx, nr_events);
1348 goto out;
1349 }
1350
1351 ioctx = ioctx_alloc(nr_events);
1352 ret = PTR_ERR(ioctx);
1353 if (!IS_ERR(ioctx)) {
1354 /* truncating is ok because it's a user address */
1355 ret = put_user((u32)ioctx->user_id, ctx32p);
1356 if (ret)
1357 kill_ioctx(current->mm, ioctx, NULL);
1358 percpu_ref_put(&ioctx->users);
1359 }
1360
1361out:
1362 return ret;
1363}
1364#endif
1365
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366/* sys_io_destroy:
1367 * Destroy the aio_context specified. May cancel any outstanding
1368 * AIOs and block on completion. Will fail with -ENOSYS if not
Satoru Takeuchi642b5122010-08-05 11:23:11 -07001369 * implemented. May fail with -EINVAL if the context pointed to
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 * is invalid.
1371 */
Heiko Carstens002c8972009-01-14 14:14:18 +01001372SYSCALL_DEFINE1(io_destroy, aio_context_t, ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373{
1374 struct kioctx *ioctx = lookup_ioctx(ctx);
1375 if (likely(NULL != ioctx)) {
Jens Axboedc48e562015-04-15 11:17:23 -06001376 struct ctx_rq_wait wait;
Benjamin LaHaisefb2d4482014-04-29 12:45:17 -04001377 int ret;
Anatol Pomozove02ba722014-04-15 11:31:33 -07001378
Jens Axboedc48e562015-04-15 11:17:23 -06001379 init_completion(&wait.comp);
1380 atomic_set(&wait.count, 1);
1381
Anatol Pomozove02ba722014-04-15 11:31:33 -07001382 /* Pass requests_done to kill_ioctx() where it can be set
1383 * in a thread-safe way. If we try to set it here then we have
1384 * a race condition if two io_destroy() called simultaneously.
1385 */
Jens Axboedc48e562015-04-15 11:17:23 -06001386 ret = kill_ioctx(current->mm, ioctx, &wait);
Kent Overstreet723be6e2013-05-28 15:14:48 -07001387 percpu_ref_put(&ioctx->users);
Anatol Pomozove02ba722014-04-15 11:31:33 -07001388
1389 /* Wait until all IO for the context are done. Otherwise kernel
1390 * keep using user-space buffers even if user thinks the context
1391 * is destroyed.
1392 */
Benjamin LaHaisefb2d4482014-04-29 12:45:17 -04001393 if (!ret)
Jens Axboedc48e562015-04-15 11:17:23 -06001394 wait_for_completion(&wait.comp);
Anatol Pomozove02ba722014-04-15 11:31:33 -07001395
Benjamin LaHaisefb2d4482014-04-29 12:45:17 -04001396 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 }
Kinglong Meeacd88d42015-02-04 21:15:59 +08001398 pr_debug("EINVAL: invalid context id\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 return -EINVAL;
1400}
1401
Al Viro3c96c7f2018-05-28 13:37:43 -04001402static void aio_remove_iocb(struct aio_kiocb *iocb)
1403{
1404 struct kioctx *ctx = iocb->ki_ctx;
1405 unsigned long flags;
1406
1407 spin_lock_irqsave(&ctx->ctx_lock, flags);
1408 list_del(&iocb->ki_list);
1409 spin_unlock_irqrestore(&ctx->ctx_lock, flags);
1410}
1411
Christoph Hellwig54843f82018-05-02 19:57:21 +02001412static void aio_complete_rw(struct kiocb *kiocb, long res, long res2)
1413{
1414 struct aio_kiocb *iocb = container_of(kiocb, struct aio_kiocb, rw);
1415
Al Viro3c96c7f2018-05-28 13:37:43 -04001416 if (!list_empty_careful(&iocb->ki_list))
1417 aio_remove_iocb(iocb);
1418
Christoph Hellwig54843f82018-05-02 19:57:21 +02001419 if (kiocb->ki_flags & IOCB_WRITE) {
1420 struct inode *inode = file_inode(kiocb->ki_filp);
1421
1422 /*
1423 * Tell lockdep we inherited freeze protection from submission
1424 * thread.
1425 */
1426 if (S_ISREG(inode->i_mode))
1427 __sb_writers_acquired(inode->i_sb, SB_FREEZE_WRITE);
1428 file_end_write(kiocb->ki_filp);
1429 }
1430
Al Viroaab66df2019-03-07 19:49:55 -05001431 iocb->ki_res.res = res;
1432 iocb->ki_res.res2 = res2;
1433 iocb_put(iocb);
Christoph Hellwig54843f82018-05-02 19:57:21 +02001434}
1435
Jens Axboed384f8b2018-11-24 14:46:14 -07001436static int aio_prep_rw(struct kiocb *req, const struct iocb *iocb)
Christoph Hellwig54843f82018-05-02 19:57:21 +02001437{
1438 int ret;
1439
Christoph Hellwig54843f82018-05-02 19:57:21 +02001440 req->ki_complete = aio_complete_rw;
Mike Marshall2afa01c2019-02-05 14:13:35 -05001441 req->private = NULL;
Christoph Hellwig54843f82018-05-02 19:57:21 +02001442 req->ki_pos = iocb->aio_offset;
1443 req->ki_flags = iocb_flags(req->ki_filp);
1444 if (iocb->aio_flags & IOCB_FLAG_RESFD)
1445 req->ki_flags |= IOCB_EVENTFD;
Adam Manzanaresfc287242018-05-22 10:52:18 -07001446 req->ki_hint = ki_hint_validate(file_write_hint(req->ki_filp));
Adam Manzanaresd9a08a92018-05-22 10:52:19 -07001447 if (iocb->aio_flags & IOCB_FLAG_IOPRIO) {
1448 /*
1449 * If the IOCB_FLAG_IOPRIO flag of aio_flags is set, then
1450 * aio_reqprio is interpreted as an I/O scheduling
1451 * class and priority.
1452 */
1453 ret = ioprio_check_cap(iocb->aio_reqprio);
1454 if (ret) {
Adam Manzanares9a6d9a62018-06-04 10:59:57 -07001455 pr_debug("aio ioprio check cap error: %d\n", ret);
Linus Torvaldsd6b26152019-03-03 14:23:33 -08001456 return ret;
Adam Manzanaresd9a08a92018-05-22 10:52:19 -07001457 }
1458
1459 req->ki_ioprio = iocb->aio_reqprio;
1460 } else
1461 req->ki_ioprio = IOPRIO_PRIO_VALUE(IOPRIO_CLASS_NONE, 0);
1462
Christoph Hellwig54843f82018-05-02 19:57:21 +02001463 ret = kiocb_set_rw_flags(req, iocb->aio_rw_flags);
1464 if (unlikely(ret))
Linus Torvaldsd6b26152019-03-03 14:23:33 -08001465 return ret;
Christoph Hellwig9101cbe2018-11-22 16:44:07 +01001466
1467 req->ki_flags &= ~IOCB_HIPRI; /* no one is going to poll for this I/O */
1468 return 0;
Christoph Hellwig54843f82018-05-02 19:57:21 +02001469}
1470
Jens Axboed384f8b2018-11-24 14:46:14 -07001471static int aio_setup_rw(int rw, const struct iocb *iocb, struct iovec **iovec,
Christoph Hellwig89319d312016-10-30 11:42:03 -05001472 bool vectored, bool compat, struct iov_iter *iter)
Badari Pulavartyeed4e512006-09-30 23:28:49 -07001473{
Christoph Hellwig89319d312016-10-30 11:42:03 -05001474 void __user *buf = (void __user *)(uintptr_t)iocb->aio_buf;
1475 size_t len = iocb->aio_nbytes;
1476
1477 if (!vectored) {
1478 ssize_t ret = import_single_range(rw, buf, len, *iovec, iter);
1479 *iovec = NULL;
1480 return ret;
1481 }
Jeff Moyer9d85cba2010-05-26 14:44:26 -07001482#ifdef CONFIG_COMPAT
1483 if (compat)
Christoph Hellwig89319d312016-10-30 11:42:03 -05001484 return compat_import_iovec(rw, buf, len, UIO_FASTIOV, iovec,
1485 iter);
Jeff Moyer9d85cba2010-05-26 14:44:26 -07001486#endif
Christoph Hellwig89319d312016-10-30 11:42:03 -05001487 return import_iovec(rw, buf, len, UIO_FASTIOV, iovec, iter);
Badari Pulavartyeed4e512006-09-30 23:28:49 -07001488}
1489
Al Viro9061d142018-05-26 19:11:40 -04001490static inline void aio_rw_done(struct kiocb *req, ssize_t ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491{
Christoph Hellwig89319d312016-10-30 11:42:03 -05001492 switch (ret) {
1493 case -EIOCBQUEUED:
Al Viro9061d142018-05-26 19:11:40 -04001494 break;
Christoph Hellwig89319d312016-10-30 11:42:03 -05001495 case -ERESTARTSYS:
1496 case -ERESTARTNOINTR:
1497 case -ERESTARTNOHAND:
1498 case -ERESTART_RESTARTBLOCK:
Kent Overstreet41ef4eb2013-05-07 16:19:11 -07001499 /*
1500 * There's no easy way to restart the syscall since other AIO's
1501 * may be already running. Just fail this IO with EINTR.
1502 */
Christoph Hellwig89319d312016-10-30 11:42:03 -05001503 ret = -EINTR;
1504 /*FALLTHRU*/
1505 default:
Jens Axboeb3373252018-11-06 14:27:13 -07001506 req->ki_complete(req, ret, 0);
Kent Overstreet41ef4eb2013-05-07 16:19:11 -07001507 }
Christoph Hellwig89319d312016-10-30 11:42:03 -05001508}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
Jens Axboed384f8b2018-11-24 14:46:14 -07001510static ssize_t aio_read(struct kiocb *req, const struct iocb *iocb,
1511 bool vectored, bool compat)
Christoph Hellwig89319d312016-10-30 11:42:03 -05001512{
Christoph Hellwig89319d312016-10-30 11:42:03 -05001513 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
1514 struct iov_iter iter;
Christoph Hellwig54843f82018-05-02 19:57:21 +02001515 struct file *file;
Christoph Hellwig89319d312016-10-30 11:42:03 -05001516 ssize_t ret;
1517
Christoph Hellwig54843f82018-05-02 19:57:21 +02001518 ret = aio_prep_rw(req, iocb);
1519 if (ret)
1520 return ret;
1521 file = req->ki_filp;
Christoph Hellwig89319d312016-10-30 11:42:03 -05001522 if (unlikely(!(file->f_mode & FMODE_READ)))
Linus Torvaldsd6b26152019-03-03 14:23:33 -08001523 return -EBADF;
Christoph Hellwig54843f82018-05-02 19:57:21 +02001524 ret = -EINVAL;
Christoph Hellwig89319d312016-10-30 11:42:03 -05001525 if (unlikely(!file->f_op->read_iter))
Linus Torvaldsd6b26152019-03-03 14:23:33 -08001526 return -EINVAL;
Christoph Hellwig89319d312016-10-30 11:42:03 -05001527
1528 ret = aio_setup_rw(READ, iocb, &iovec, vectored, compat, &iter);
1529 if (ret)
Linus Torvaldsd6b26152019-03-03 14:23:33 -08001530 return ret;
Christoph Hellwig89319d312016-10-30 11:42:03 -05001531 ret = rw_verify_area(READ, file, &req->ki_pos, iov_iter_count(&iter));
1532 if (!ret)
Al Viro9061d142018-05-26 19:11:40 -04001533 aio_rw_done(req, call_read_iter(file, req, &iter));
Christoph Hellwig89319d312016-10-30 11:42:03 -05001534 kfree(iovec);
1535 return ret;
1536}
1537
Jens Axboed384f8b2018-11-24 14:46:14 -07001538static ssize_t aio_write(struct kiocb *req, const struct iocb *iocb,
1539 bool vectored, bool compat)
Christoph Hellwig89319d312016-10-30 11:42:03 -05001540{
Christoph Hellwig89319d312016-10-30 11:42:03 -05001541 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
1542 struct iov_iter iter;
Christoph Hellwig54843f82018-05-02 19:57:21 +02001543 struct file *file;
Christoph Hellwig89319d312016-10-30 11:42:03 -05001544 ssize_t ret;
1545
Christoph Hellwig54843f82018-05-02 19:57:21 +02001546 ret = aio_prep_rw(req, iocb);
1547 if (ret)
1548 return ret;
1549 file = req->ki_filp;
1550
Christoph Hellwig89319d312016-10-30 11:42:03 -05001551 if (unlikely(!(file->f_mode & FMODE_WRITE)))
Linus Torvaldsd6b26152019-03-03 14:23:33 -08001552 return -EBADF;
Christoph Hellwig89319d312016-10-30 11:42:03 -05001553 if (unlikely(!file->f_op->write_iter))
Linus Torvaldsd6b26152019-03-03 14:23:33 -08001554 return -EINVAL;
Christoph Hellwig89319d312016-10-30 11:42:03 -05001555
1556 ret = aio_setup_rw(WRITE, iocb, &iovec, vectored, compat, &iter);
1557 if (ret)
Linus Torvaldsd6b26152019-03-03 14:23:33 -08001558 return ret;
Christoph Hellwig89319d312016-10-30 11:42:03 -05001559 ret = rw_verify_area(WRITE, file, &req->ki_pos, iov_iter_count(&iter));
1560 if (!ret) {
Jan Kara70fe2f42016-10-30 11:42:04 -05001561 /*
Christoph Hellwig92ce4722018-04-06 09:28:17 +02001562 * Open-code file_start_write here to grab freeze protection,
Christoph Hellwig54843f82018-05-02 19:57:21 +02001563 * which will be released by another thread in
1564 * aio_complete_rw(). Fool lockdep by telling it the lock got
1565 * released so that it doesn't complain about the held lock when
1566 * we return to userspace.
Jan Kara70fe2f42016-10-30 11:42:04 -05001567 */
Christoph Hellwig92ce4722018-04-06 09:28:17 +02001568 if (S_ISREG(file_inode(file)->i_mode)) {
1569 __sb_start_write(file_inode(file)->i_sb, SB_FREEZE_WRITE, true);
Shaohua Lia12f1ae2016-12-13 12:09:56 -08001570 __sb_writers_release(file_inode(file)->i_sb, SB_FREEZE_WRITE);
Christoph Hellwig92ce4722018-04-06 09:28:17 +02001571 }
1572 req->ki_flags |= IOCB_WRITE;
Al Viro9061d142018-05-26 19:11:40 -04001573 aio_rw_done(req, call_write_iter(file, req, &iter));
Christoph Hellwig89319d312016-10-30 11:42:03 -05001574 }
1575 kfree(iovec);
1576 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577}
1578
Christoph Hellwiga3c0d432018-03-27 19:18:57 +02001579static void aio_fsync_work(struct work_struct *work)
1580{
Al Viroaab66df2019-03-07 19:49:55 -05001581 struct aio_kiocb *iocb = container_of(work, struct aio_kiocb, fsync.work);
Christoph Hellwiga3c0d432018-03-27 19:18:57 +02001582
Al Viroaab66df2019-03-07 19:49:55 -05001583 iocb->ki_res.res = vfs_fsync(iocb->fsync.file, iocb->fsync.datasync);
1584 iocb_put(iocb);
Christoph Hellwiga3c0d432018-03-27 19:18:57 +02001585}
1586
Jens Axboed384f8b2018-11-24 14:46:14 -07001587static int aio_fsync(struct fsync_iocb *req, const struct iocb *iocb,
1588 bool datasync)
Christoph Hellwiga3c0d432018-03-27 19:18:57 +02001589{
1590 if (unlikely(iocb->aio_buf || iocb->aio_offset || iocb->aio_nbytes ||
1591 iocb->aio_rw_flags))
1592 return -EINVAL;
Linus Torvaldsa11e1d42018-06-28 09:43:44 -07001593
Linus Torvaldsd6b26152019-03-03 14:23:33 -08001594 if (unlikely(!req->file->f_op->fsync))
Christoph Hellwiga3c0d432018-03-27 19:18:57 +02001595 return -EINVAL;
Christoph Hellwiga3c0d432018-03-27 19:18:57 +02001596
1597 req->datasync = datasync;
1598 INIT_WORK(&req->work, aio_fsync_work);
1599 schedule_work(&req->work);
Al Viro9061d142018-05-26 19:11:40 -04001600 return 0;
Christoph Hellwiga3c0d432018-03-27 19:18:57 +02001601}
1602
Jens Axboed062d982020-02-03 10:33:42 -07001603static void aio_poll_put_work(struct work_struct *work)
1604{
1605 struct poll_iocb *req = container_of(work, struct poll_iocb, work);
1606 struct aio_kiocb *iocb = container_of(req, struct aio_kiocb, poll);
1607
1608 iocb_put(iocb);
1609}
1610
Christoph Hellwigbfe40372018-07-16 09:08:20 +02001611static void aio_poll_complete_work(struct work_struct *work)
1612{
1613 struct poll_iocb *req = container_of(work, struct poll_iocb, work);
1614 struct aio_kiocb *iocb = container_of(req, struct aio_kiocb, poll);
1615 struct poll_table_struct pt = { ._key = req->events };
1616 struct kioctx *ctx = iocb->ki_ctx;
1617 __poll_t mask = 0;
1618
1619 if (!READ_ONCE(req->cancelled))
1620 mask = vfs_poll(req->file, &pt) & req->events;
1621
1622 /*
1623 * Note that ->ki_cancel callers also delete iocb from active_reqs after
1624 * calling ->ki_cancel. We need the ctx_lock roundtrip here to
1625 * synchronize with them. In the cancellation case the list_del_init
1626 * itself is not actually needed, but harmless so we keep it in to
1627 * avoid further branches in the fast path.
1628 */
1629 spin_lock_irq(&ctx->ctx_lock);
1630 if (!mask && !READ_ONCE(req->cancelled)) {
1631 add_wait_queue(req->head, &req->wait);
1632 spin_unlock_irq(&ctx->ctx_lock);
1633 return;
1634 }
1635 list_del_init(&iocb->ki_list);
Al Viroe9e47772019-03-07 21:45:41 -05001636 iocb->ki_res.res = mangle_poll(mask);
1637 req->done = true;
Christoph Hellwigbfe40372018-07-16 09:08:20 +02001638 spin_unlock_irq(&ctx->ctx_lock);
1639
Al Viroe9e47772019-03-07 21:45:41 -05001640 iocb_put(iocb);
Christoph Hellwigbfe40372018-07-16 09:08:20 +02001641}
1642
1643/* assumes we are called with irqs disabled */
1644static int aio_poll_cancel(struct kiocb *iocb)
1645{
1646 struct aio_kiocb *aiocb = container_of(iocb, struct aio_kiocb, rw);
1647 struct poll_iocb *req = &aiocb->poll;
1648
1649 spin_lock(&req->head->lock);
1650 WRITE_ONCE(req->cancelled, true);
1651 if (!list_empty(&req->wait.entry)) {
1652 list_del_init(&req->wait.entry);
1653 schedule_work(&aiocb->poll.work);
1654 }
1655 spin_unlock(&req->head->lock);
1656
1657 return 0;
1658}
1659
1660static int aio_poll_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
1661 void *key)
1662{
1663 struct poll_iocb *req = container_of(wait, struct poll_iocb, wait);
Christoph Hellwige8693bc2018-07-16 12:25:17 +02001664 struct aio_kiocb *iocb = container_of(req, struct aio_kiocb, poll);
Christoph Hellwigbfe40372018-07-16 09:08:20 +02001665 __poll_t mask = key_to_poll(key);
Bart Van Asschef5e66cd2019-02-08 16:59:49 -08001666 unsigned long flags;
Christoph Hellwigbfe40372018-07-16 09:08:20 +02001667
Christoph Hellwigbfe40372018-07-16 09:08:20 +02001668 /* for instances that support it check for an event match first: */
Al Viroe9e47772019-03-07 21:45:41 -05001669 if (mask && !(mask & req->events))
1670 return 0;
Christoph Hellwige8693bc2018-07-16 12:25:17 +02001671
Al Viroe9e47772019-03-07 21:45:41 -05001672 list_del_init(&req->wait.entry);
1673
1674 if (mask && spin_trylock_irqsave(&iocb->ki_ctx->ctx_lock, flags)) {
Jens Axboed062d982020-02-03 10:33:42 -07001675 struct kioctx *ctx = iocb->ki_ctx;
1676
Bart Van Asschef5e66cd2019-02-08 16:59:49 -08001677 /*
1678 * Try to complete the iocb inline if we can. Use
1679 * irqsave/irqrestore because not all filesystems (e.g. fuse)
1680 * call this function with IRQs disabled and because IRQs
1681 * have to be disabled before ctx_lock is obtained.
1682 */
Al Viroe9e47772019-03-07 21:45:41 -05001683 list_del(&iocb->ki_list);
1684 iocb->ki_res.res = mangle_poll(mask);
1685 req->done = true;
Jens Axboed062d982020-02-03 10:33:42 -07001686 if (iocb->ki_eventfd && eventfd_signal_count()) {
1687 iocb = NULL;
1688 INIT_WORK(&req->work, aio_poll_put_work);
1689 schedule_work(&req->work);
1690 }
1691 spin_unlock_irqrestore(&ctx->ctx_lock, flags);
1692 if (iocb)
1693 iocb_put(iocb);
Al Viroe9e47772019-03-07 21:45:41 -05001694 } else {
1695 schedule_work(&req->work);
Christoph Hellwige8693bc2018-07-16 12:25:17 +02001696 }
Christoph Hellwigbfe40372018-07-16 09:08:20 +02001697 return 1;
1698}
1699
1700struct aio_poll_table {
1701 struct poll_table_struct pt;
1702 struct aio_kiocb *iocb;
1703 int error;
1704};
1705
1706static void
1707aio_poll_queue_proc(struct file *file, struct wait_queue_head *head,
1708 struct poll_table_struct *p)
1709{
1710 struct aio_poll_table *pt = container_of(p, struct aio_poll_table, pt);
1711
1712 /* multiple wait queues per file are not supported */
1713 if (unlikely(pt->iocb->poll.head)) {
1714 pt->error = -EINVAL;
1715 return;
1716 }
1717
1718 pt->error = 0;
1719 pt->iocb->poll.head = head;
1720 add_wait_queue(head, &pt->iocb->poll.wait);
1721}
1722
Jens Axboed384f8b2018-11-24 14:46:14 -07001723static ssize_t aio_poll(struct aio_kiocb *aiocb, const struct iocb *iocb)
Christoph Hellwigbfe40372018-07-16 09:08:20 +02001724{
1725 struct kioctx *ctx = aiocb->ki_ctx;
1726 struct poll_iocb *req = &aiocb->poll;
1727 struct aio_poll_table apt;
Al Viroe9e47772019-03-07 21:45:41 -05001728 bool cancel = false;
Christoph Hellwigbfe40372018-07-16 09:08:20 +02001729 __poll_t mask;
1730
1731 /* reject any unknown events outside the normal event mask. */
1732 if ((u16)iocb->aio_buf != iocb->aio_buf)
1733 return -EINVAL;
1734 /* reject fields that are not defined for poll */
1735 if (iocb->aio_offset || iocb->aio_nbytes || iocb->aio_rw_flags)
1736 return -EINVAL;
1737
1738 INIT_WORK(&req->work, aio_poll_complete_work);
1739 req->events = demangle_poll(iocb->aio_buf) | EPOLLERR | EPOLLHUP;
Christoph Hellwigbfe40372018-07-16 09:08:20 +02001740
Jens Axboeef529ee2018-12-04 09:44:49 -07001741 req->head = NULL;
Al Viroe9e47772019-03-07 21:45:41 -05001742 req->done = false;
Jens Axboeef529ee2018-12-04 09:44:49 -07001743 req->cancelled = false;
1744
Christoph Hellwigbfe40372018-07-16 09:08:20 +02001745 apt.pt._qproc = aio_poll_queue_proc;
1746 apt.pt._key = req->events;
1747 apt.iocb = aiocb;
1748 apt.error = -EINVAL; /* same as no support for IOCB_CMD_POLL */
1749
1750 /* initialized the list so that we can do list_empty checks */
1751 INIT_LIST_HEAD(&req->wait.entry);
1752 init_waitqueue_func_entry(&req->wait, aio_poll_wake);
1753
Christoph Hellwigbfe40372018-07-16 09:08:20 +02001754 mask = vfs_poll(req->file, &apt.pt) & req->events;
Christoph Hellwigbfe40372018-07-16 09:08:20 +02001755 spin_lock_irq(&ctx->ctx_lock);
Al Viroe9e47772019-03-07 21:45:41 -05001756 if (likely(req->head)) {
1757 spin_lock(&req->head->lock);
1758 if (unlikely(list_empty(&req->wait.entry))) {
1759 if (apt.error)
1760 cancel = true;
1761 apt.error = 0;
1762 mask = 0;
1763 }
1764 if (mask || apt.error) {
1765 list_del_init(&req->wait.entry);
1766 } else if (cancel) {
1767 WRITE_ONCE(req->cancelled, true);
1768 } else if (!req->done) { /* actually waiting for an event */
1769 list_add_tail(&aiocb->ki_list, &ctx->active_reqs);
1770 aiocb->ki_cancel = aio_poll_cancel;
1771 }
1772 spin_unlock(&req->head->lock);
Christoph Hellwigbfe40372018-07-16 09:08:20 +02001773 }
Al Viroe9e47772019-03-07 21:45:41 -05001774 if (mask) { /* no async, we'd stolen it */
1775 aiocb->ki_res.res = mangle_poll(mask);
1776 apt.error = 0;
1777 }
Christoph Hellwigbfe40372018-07-16 09:08:20 +02001778 spin_unlock_irq(&ctx->ctx_lock);
Christoph Hellwigbfe40372018-07-16 09:08:20 +02001779 if (mask)
Al Viroe9e47772019-03-07 21:45:41 -05001780 iocb_put(aiocb);
1781 return apt.error;
Christoph Hellwigbfe40372018-07-16 09:08:20 +02001782}
1783
Jens Axboed384f8b2018-11-24 14:46:14 -07001784static int __io_submit_one(struct kioctx *ctx, const struct iocb *iocb,
1785 struct iocb __user *user_iocb, bool compat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786{
Christoph Hellwig04b2fa92015-02-02 14:49:06 +01001787 struct aio_kiocb *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 ssize_t ret;
1789
1790 /* enforce forwards compatibility on users */
Jens Axboed384f8b2018-11-24 14:46:14 -07001791 if (unlikely(iocb->aio_reserved2)) {
Kent Overstreetcaf41672013-05-07 16:18:35 -07001792 pr_debug("EINVAL: reserve field set\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 return -EINVAL;
1794 }
1795
1796 /* prevent overflows */
1797 if (unlikely(
Jens Axboed384f8b2018-11-24 14:46:14 -07001798 (iocb->aio_buf != (unsigned long)iocb->aio_buf) ||
1799 (iocb->aio_nbytes != (size_t)iocb->aio_nbytes) ||
1800 ((ssize_t)iocb->aio_nbytes < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 )) {
Kinglong Meeacd88d42015-02-04 21:15:59 +08001802 pr_debug("EINVAL: overflow check\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 return -EINVAL;
1804 }
1805
Christoph Hellwig730198c2018-11-19 15:57:42 -07001806 if (!get_reqs_available(ctx))
1807 return -EAGAIN;
1808
1809 ret = -EAGAIN;
Kent Overstreet41ef4eb2013-05-07 16:19:11 -07001810 req = aio_get_req(ctx);
Kent Overstreet1d98ebf2013-05-07 16:18:37 -07001811 if (unlikely(!req))
Christoph Hellwig730198c2018-11-19 15:57:42 -07001812 goto out_put_reqs_available;
Kent Overstreet1d98ebf2013-05-07 16:18:37 -07001813
Linus Torvaldsd6b26152019-03-03 14:23:33 -08001814 req->ki_filp = fget(iocb->aio_fildes);
1815 ret = -EBADF;
1816 if (unlikely(!req->ki_filp))
1817 goto out_put_req;
1818
Jens Axboed384f8b2018-11-24 14:46:14 -07001819 if (iocb->aio_flags & IOCB_FLAG_RESFD) {
Davide Libenzi9c3060b2007-05-10 22:23:21 -07001820 /*
1821 * If the IOCB_FLAG_RESFD flag of aio_flags is set, get an
1822 * instance of the file* now. The file descriptor must be
1823 * an eventfd() fd, and will be signaled for each completed
1824 * event using the eventfd_signal() function.
1825 */
Jens Axboed384f8b2018-11-24 14:46:14 -07001826 req->ki_eventfd = eventfd_ctx_fdget((int) iocb->aio_resfd);
Hirofumi Nakagawa801678c2008-04-29 01:03:09 -07001827 if (IS_ERR(req->ki_eventfd)) {
Davide Libenzi9c3060b2007-05-10 22:23:21 -07001828 ret = PTR_ERR(req->ki_eventfd);
Davide Libenzi87c3a862009-03-18 17:04:19 -07001829 req->ki_eventfd = NULL;
Davide Libenzi9c3060b2007-05-10 22:23:21 -07001830 goto out_put_req;
1831 }
Goldwyn Rodrigues9830f4b2017-06-20 07:05:42 -05001832 }
1833
Kent Overstreet8a660892013-05-07 16:19:10 -07001834 ret = put_user(KIOCB_KEY, &user_iocb->aio_key);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 if (unlikely(ret)) {
Kent Overstreetcaf41672013-05-07 16:18:35 -07001836 pr_debug("EFAULT: aio_key\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 goto out_put_req;
1838 }
1839
Al Viroc20202c512019-03-07 19:43:45 -05001840 req->ki_res.obj = (u64)(unsigned long)user_iocb;
1841 req->ki_res.data = iocb->aio_data;
1842 req->ki_res.res = 0;
1843 req->ki_res.res2 = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844
Jens Axboed384f8b2018-11-24 14:46:14 -07001845 switch (iocb->aio_lio_opcode) {
Christoph Hellwig89319d312016-10-30 11:42:03 -05001846 case IOCB_CMD_PREAD:
Jens Axboed384f8b2018-11-24 14:46:14 -07001847 ret = aio_read(&req->rw, iocb, false, compat);
Christoph Hellwig89319d312016-10-30 11:42:03 -05001848 break;
1849 case IOCB_CMD_PWRITE:
Jens Axboed384f8b2018-11-24 14:46:14 -07001850 ret = aio_write(&req->rw, iocb, false, compat);
Christoph Hellwig89319d312016-10-30 11:42:03 -05001851 break;
1852 case IOCB_CMD_PREADV:
Jens Axboed384f8b2018-11-24 14:46:14 -07001853 ret = aio_read(&req->rw, iocb, true, compat);
Christoph Hellwig89319d312016-10-30 11:42:03 -05001854 break;
1855 case IOCB_CMD_PWRITEV:
Jens Axboed384f8b2018-11-24 14:46:14 -07001856 ret = aio_write(&req->rw, iocb, true, compat);
Christoph Hellwig89319d312016-10-30 11:42:03 -05001857 break;
Christoph Hellwiga3c0d432018-03-27 19:18:57 +02001858 case IOCB_CMD_FSYNC:
Jens Axboed384f8b2018-11-24 14:46:14 -07001859 ret = aio_fsync(&req->fsync, iocb, false);
Christoph Hellwiga3c0d432018-03-27 19:18:57 +02001860 break;
1861 case IOCB_CMD_FDSYNC:
Jens Axboed384f8b2018-11-24 14:46:14 -07001862 ret = aio_fsync(&req->fsync, iocb, true);
Christoph Hellwigac060cb2018-05-28 07:19:49 +02001863 break;
Christoph Hellwigbfe40372018-07-16 09:08:20 +02001864 case IOCB_CMD_POLL:
Jens Axboed384f8b2018-11-24 14:46:14 -07001865 ret = aio_poll(req, iocb);
Christoph Hellwigbfe40372018-07-16 09:08:20 +02001866 break;
Christoph Hellwig89319d312016-10-30 11:42:03 -05001867 default:
Jens Axboed384f8b2018-11-24 14:46:14 -07001868 pr_debug("invalid aio operation %d\n", iocb->aio_lio_opcode);
Christoph Hellwig89319d312016-10-30 11:42:03 -05001869 ret = -EINVAL;
1870 break;
1871 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872
Linus Torvaldsc7f25252019-03-06 20:22:54 -05001873 /* Done with the synchronous reference */
1874 iocb_put(req);
1875
Christoph Hellwig92ce4722018-04-06 09:28:17 +02001876 /*
Al Viro9061d142018-05-26 19:11:40 -04001877 * If ret is 0, we'd either done aio_complete() ourselves or have
1878 * arranged for that to be done asynchronously. Anything non-zero
1879 * means that we need to destroy req ourselves.
Christoph Hellwig92ce4722018-04-06 09:28:17 +02001880 */
Linus Torvaldsc7f25252019-03-06 20:22:54 -05001881 if (!ret)
1882 return 0;
1883
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884out_put_req:
Christoph Hellwig54843f82018-05-02 19:57:21 +02001885 if (req->ki_eventfd)
1886 eventfd_ctx_put(req->ki_eventfd);
Linus Torvaldsc7f25252019-03-06 20:22:54 -05001887 iocb_destroy(req);
Christoph Hellwig730198c2018-11-19 15:57:42 -07001888out_put_reqs_available:
1889 put_reqs_available(ctx, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 return ret;
1891}
1892
Jens Axboed384f8b2018-11-24 14:46:14 -07001893static int io_submit_one(struct kioctx *ctx, struct iocb __user *user_iocb,
1894 bool compat)
1895{
1896 struct iocb iocb;
1897
1898 if (unlikely(copy_from_user(&iocb, user_iocb, sizeof(iocb))))
1899 return -EFAULT;
1900
1901 return __io_submit_one(ctx, &iocb, user_iocb, compat);
1902}
1903
Jeff Moyer9d85cba2010-05-26 14:44:26 -07001904/* sys_io_submit:
1905 * Queue the nr iocbs pointed to by iocbpp for processing. Returns
1906 * the number of iocbs queued. May return -EINVAL if the aio_context
1907 * specified by ctx_id is invalid, if nr is < 0, if the iocb at
1908 * *iocbpp[0] is not properly initialized, if the operation specified
1909 * is invalid for the file descriptor in the iocb. May fail with
1910 * -EFAULT if any of the data structures point to invalid data. May
1911 * fail with -EBADF if the file descriptor specified in the first
1912 * iocb is invalid. May fail with -EAGAIN if insufficient resources
1913 * are available to queue any iocbs. Will return 0 if nr is 0. Will
1914 * fail with -ENOSYS if not implemented.
1915 */
1916SYSCALL_DEFINE3(io_submit, aio_context_t, ctx_id, long, nr,
1917 struct iocb __user * __user *, iocbpp)
1918{
Al Viro67ba0492018-05-26 20:10:07 -04001919 struct kioctx *ctx;
1920 long ret = 0;
1921 int i = 0;
1922 struct blk_plug plug;
1923
1924 if (unlikely(nr < 0))
1925 return -EINVAL;
1926
Al Viro67ba0492018-05-26 20:10:07 -04001927 ctx = lookup_ioctx(ctx_id);
1928 if (unlikely(!ctx)) {
1929 pr_debug("EINVAL: invalid context id\n");
1930 return -EINVAL;
1931 }
1932
Al Viro1da92772018-05-26 20:10:07 -04001933 if (nr > ctx->nr_events)
1934 nr = ctx->nr_events;
1935
Al Viro67ba0492018-05-26 20:10:07 -04001936 blk_start_plug(&plug);
1937 for (i = 0; i < nr; i++) {
1938 struct iocb __user *user_iocb;
1939
1940 if (unlikely(get_user(user_iocb, iocbpp + i))) {
1941 ret = -EFAULT;
1942 break;
1943 }
1944
1945 ret = io_submit_one(ctx, user_iocb, false);
1946 if (ret)
1947 break;
1948 }
1949 blk_finish_plug(&plug);
1950
1951 percpu_ref_put(&ctx->users);
1952 return i ? i : ret;
Jeff Moyer9d85cba2010-05-26 14:44:26 -07001953}
1954
Al Viroc00d2c72016-12-20 07:04:57 -05001955#ifdef CONFIG_COMPAT
Al Viroc00d2c72016-12-20 07:04:57 -05001956COMPAT_SYSCALL_DEFINE3(io_submit, compat_aio_context_t, ctx_id,
Al Viro67ba0492018-05-26 20:10:07 -04001957 int, nr, compat_uptr_t __user *, iocbpp)
Al Viroc00d2c72016-12-20 07:04:57 -05001958{
Al Viro67ba0492018-05-26 20:10:07 -04001959 struct kioctx *ctx;
1960 long ret = 0;
1961 int i = 0;
1962 struct blk_plug plug;
Al Viroc00d2c72016-12-20 07:04:57 -05001963
1964 if (unlikely(nr < 0))
1965 return -EINVAL;
1966
Al Viro67ba0492018-05-26 20:10:07 -04001967 ctx = lookup_ioctx(ctx_id);
1968 if (unlikely(!ctx)) {
1969 pr_debug("EINVAL: invalid context id\n");
1970 return -EINVAL;
1971 }
1972
Al Viro1da92772018-05-26 20:10:07 -04001973 if (nr > ctx->nr_events)
1974 nr = ctx->nr_events;
1975
Al Viro67ba0492018-05-26 20:10:07 -04001976 blk_start_plug(&plug);
1977 for (i = 0; i < nr; i++) {
1978 compat_uptr_t user_iocb;
1979
1980 if (unlikely(get_user(user_iocb, iocbpp + i))) {
1981 ret = -EFAULT;
1982 break;
1983 }
1984
1985 ret = io_submit_one(ctx, compat_ptr(user_iocb), true);
1986 if (ret)
1987 break;
1988 }
1989 blk_finish_plug(&plug);
1990
1991 percpu_ref_put(&ctx->users);
1992 return i ? i : ret;
Al Viroc00d2c72016-12-20 07:04:57 -05001993}
1994#endif
1995
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996/* sys_io_cancel:
1997 * Attempts to cancel an iocb previously passed to io_submit. If
1998 * the operation is successfully cancelled, the resulting event is
1999 * copied into the memory pointed to by result without being placed
2000 * into the completion queue and 0 is returned. May fail with
2001 * -EFAULT if any of the data structures pointed to are invalid.
2002 * May fail with -EINVAL if aio_context specified by ctx_id is
2003 * invalid. May fail with -EAGAIN if the iocb specified was not
2004 * cancelled. Will fail with -ENOSYS if not implemented.
2005 */
Heiko Carstens002c8972009-01-14 14:14:18 +01002006SYSCALL_DEFINE3(io_cancel, aio_context_t, ctx_id, struct iocb __user *, iocb,
2007 struct io_event __user *, result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 struct kioctx *ctx;
Christoph Hellwig04b2fa92015-02-02 14:49:06 +01002010 struct aio_kiocb *kiocb;
Christoph Hellwig888933f2018-05-23 14:11:02 +02002011 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 u32 key;
Al Viroc20202c512019-03-07 19:43:45 -05002013 u64 obj = (u64)(unsigned long)iocb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014
Christoph Hellwigf3a27522018-03-30 11:19:25 +02002015 if (unlikely(get_user(key, &iocb->aio_key)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 return -EFAULT;
Christoph Hellwigf3a27522018-03-30 11:19:25 +02002017 if (unlikely(key != KIOCB_KEY))
2018 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019
2020 ctx = lookup_ioctx(ctx_id);
2021 if (unlikely(!ctx))
2022 return -EINVAL;
2023
2024 spin_lock_irq(&ctx->ctx_lock);
Al Viro592ea632019-03-11 19:00:36 -04002025 /* TODO: use a hash or array, this sucks. */
2026 list_for_each_entry(kiocb, &ctx->active_reqs, ki_list) {
Al Viroc20202c512019-03-07 19:43:45 -05002027 if (kiocb->ki_res.obj == obj) {
Al Viro592ea632019-03-11 19:00:36 -04002028 ret = kiocb->ki_cancel(&kiocb->rw);
2029 list_del_init(&kiocb->ki_list);
2030 break;
2031 }
Christoph Hellwig888933f2018-05-23 14:11:02 +02002032 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 spin_unlock_irq(&ctx->ctx_lock);
2034
Kent Overstreet906b9732013-05-07 16:18:31 -07002035 if (!ret) {
Kent Overstreetbec68faa2013-05-13 14:45:08 -07002036 /*
2037 * The result argument is no longer used - the io_event is
2038 * always delivered via the ring buffer. -EINPROGRESS indicates
2039 * cancellation is progress:
Kent Overstreet906b9732013-05-07 16:18:31 -07002040 */
Kent Overstreetbec68faa2013-05-13 14:45:08 -07002041 ret = -EINPROGRESS;
Kent Overstreet906b9732013-05-07 16:18:31 -07002042 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043
Kent Overstreet723be6e2013-05-28 15:14:48 -07002044 percpu_ref_put(&ctx->users);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045
2046 return ret;
2047}
2048
Deepa Dinamanifa2e62a2017-08-04 21:12:32 -07002049static long do_io_getevents(aio_context_t ctx_id,
2050 long min_nr,
2051 long nr,
2052 struct io_event __user *events,
2053 struct timespec64 *ts)
2054{
2055 ktime_t until = ts ? timespec64_to_ktime(*ts) : KTIME_MAX;
2056 struct kioctx *ioctx = lookup_ioctx(ctx_id);
2057 long ret = -EINVAL;
2058
2059 if (likely(ioctx)) {
2060 if (likely(min_nr <= nr && min_nr >= 0))
2061 ret = read_events(ioctx, min_nr, nr, events, until);
2062 percpu_ref_put(&ioctx->users);
2063 }
2064
2065 return ret;
2066}
2067
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068/* io_getevents:
2069 * Attempts to read at least min_nr events and up to nr events from
Satoru Takeuchi642b5122010-08-05 11:23:11 -07002070 * the completion queue for the aio_context specified by ctx_id. If
2071 * it succeeds, the number of read events is returned. May fail with
2072 * -EINVAL if ctx_id is invalid, if min_nr is out of range, if nr is
2073 * out of range, if timeout is out of range. May fail with -EFAULT
2074 * if any of the memory specified is invalid. May return 0 or
2075 * < min_nr if the timeout specified by timeout has elapsed
2076 * before sufficient events are available, where timeout == NULL
2077 * specifies an infinite timeout. Note that the timeout pointed to by
Jeff Moyer69008072013-05-24 15:55:24 -07002078 * timeout is relative. Will fail with -ENOSYS if not implemented.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 */
Heiko Carstens002c8972009-01-14 14:14:18 +01002080SYSCALL_DEFINE5(io_getevents, aio_context_t, ctx_id,
2081 long, min_nr,
2082 long, nr,
2083 struct io_event __user *, events,
2084 struct timespec __user *, timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085{
Deepa Dinamanifa2e62a2017-08-04 21:12:32 -07002086 struct timespec64 ts;
Christoph Hellwig7a074e92018-05-02 19:51:00 +02002087 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088
Christoph Hellwig7a074e92018-05-02 19:51:00 +02002089 if (timeout && unlikely(get_timespec64(&ts, timeout)))
2090 return -EFAULT;
2091
2092 ret = do_io_getevents(ctx_id, min_nr, nr, events, timeout ? &ts : NULL);
2093 if (!ret && signal_pending(current))
2094 ret = -EINTR;
2095 return ret;
2096}
2097
Christoph Hellwig9ba546c2018-07-11 15:48:46 +02002098struct __aio_sigset {
2099 const sigset_t __user *sigmask;
2100 size_t sigsetsize;
2101};
2102
Christoph Hellwig7a074e92018-05-02 19:51:00 +02002103SYSCALL_DEFINE6(io_pgetevents,
2104 aio_context_t, ctx_id,
2105 long, min_nr,
2106 long, nr,
2107 struct io_event __user *, events,
2108 struct timespec __user *, timeout,
2109 const struct __aio_sigset __user *, usig)
2110{
2111 struct __aio_sigset ksig = { NULL, };
2112 sigset_t ksigmask, sigsaved;
2113 struct timespec64 ts;
2114 int ret;
2115
2116 if (timeout && unlikely(get_timespec64(&ts, timeout)))
2117 return -EFAULT;
2118
2119 if (usig && copy_from_user(&ksig, usig, sizeof(ksig)))
2120 return -EFAULT;
2121
2122 if (ksig.sigmask) {
2123 if (ksig.sigsetsize != sizeof(sigset_t))
2124 return -EINVAL;
2125 if (copy_from_user(&ksigmask, ksig.sigmask, sizeof(ksigmask)))
Deepa Dinamanifa2e62a2017-08-04 21:12:32 -07002126 return -EFAULT;
Christoph Hellwig7a074e92018-05-02 19:51:00 +02002127 sigdelsetmask(&ksigmask, sigmask(SIGKILL) | sigmask(SIGSTOP));
2128 sigprocmask(SIG_SETMASK, &ksigmask, &sigsaved);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129 }
Deepa Dinamanifa2e62a2017-08-04 21:12:32 -07002130
Christoph Hellwig7a074e92018-05-02 19:51:00 +02002131 ret = do_io_getevents(ctx_id, min_nr, nr, events, timeout ? &ts : NULL);
2132 if (signal_pending(current)) {
2133 if (ksig.sigmask) {
2134 current->saved_sigmask = sigsaved;
2135 set_restore_sigmask();
2136 }
2137
2138 if (!ret)
2139 ret = -ERESTARTNOHAND;
2140 } else {
2141 if (ksig.sigmask)
2142 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
2143 }
2144
2145 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146}
Al Viroc00d2c72016-12-20 07:04:57 -05002147
2148#ifdef CONFIG_COMPAT
2149COMPAT_SYSCALL_DEFINE5(io_getevents, compat_aio_context_t, ctx_id,
2150 compat_long_t, min_nr,
2151 compat_long_t, nr,
2152 struct io_event __user *, events,
2153 struct compat_timespec __user *, timeout)
2154{
Deepa Dinamanifa2e62a2017-08-04 21:12:32 -07002155 struct timespec64 t;
Christoph Hellwig7a074e92018-05-02 19:51:00 +02002156 int ret;
Al Viroc00d2c72016-12-20 07:04:57 -05002157
Christoph Hellwig7a074e92018-05-02 19:51:00 +02002158 if (timeout && compat_get_timespec64(&t, timeout))
2159 return -EFAULT;
2160
2161 ret = do_io_getevents(ctx_id, min_nr, nr, events, timeout ? &t : NULL);
2162 if (!ret && signal_pending(current))
2163 ret = -EINTR;
2164 return ret;
2165}
2166
2167
2168struct __compat_aio_sigset {
2169 compat_sigset_t __user *sigmask;
2170 compat_size_t sigsetsize;
2171};
2172
2173COMPAT_SYSCALL_DEFINE6(io_pgetevents,
2174 compat_aio_context_t, ctx_id,
2175 compat_long_t, min_nr,
2176 compat_long_t, nr,
2177 struct io_event __user *, events,
2178 struct compat_timespec __user *, timeout,
2179 const struct __compat_aio_sigset __user *, usig)
2180{
2181 struct __compat_aio_sigset ksig = { NULL, };
2182 sigset_t ksigmask, sigsaved;
2183 struct timespec64 t;
2184 int ret;
2185
2186 if (timeout && compat_get_timespec64(&t, timeout))
2187 return -EFAULT;
2188
2189 if (usig && copy_from_user(&ksig, usig, sizeof(ksig)))
2190 return -EFAULT;
2191
2192 if (ksig.sigmask) {
2193 if (ksig.sigsetsize != sizeof(compat_sigset_t))
2194 return -EINVAL;
2195 if (get_compat_sigset(&ksigmask, ksig.sigmask))
Al Viroc00d2c72016-12-20 07:04:57 -05002196 return -EFAULT;
Christoph Hellwig7a074e92018-05-02 19:51:00 +02002197 sigdelsetmask(&ksigmask, sigmask(SIGKILL) | sigmask(SIGSTOP));
2198 sigprocmask(SIG_SETMASK, &ksigmask, &sigsaved);
Al Viroc00d2c72016-12-20 07:04:57 -05002199 }
Deepa Dinamanifa2e62a2017-08-04 21:12:32 -07002200
Christoph Hellwig7a074e92018-05-02 19:51:00 +02002201 ret = do_io_getevents(ctx_id, min_nr, nr, events, timeout ? &t : NULL);
2202 if (signal_pending(current)) {
2203 if (ksig.sigmask) {
2204 current->saved_sigmask = sigsaved;
2205 set_restore_sigmask();
2206 }
2207 if (!ret)
2208 ret = -ERESTARTNOHAND;
2209 } else {
2210 if (ksig.sigmask)
2211 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
2212 }
2213
2214 return ret;
Al Viroc00d2c72016-12-20 07:04:57 -05002215}
2216#endif