blob: c3a8bac163741921f68d9eb76f6af495d82cf0f8 [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 Hellwig2c14fa82018-03-20 16:34:36 +01008 * 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>
Badari Pulavarty027445c2006-09-30 23:28:46 -070022#include <linux/uio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Ingo Molnar174cd4b2017-02-02 19:15:33 +010024#include <linux/sched/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/fs.h>
26#include <linux/file.h>
27#include <linux/mm.h>
28#include <linux/mman.h>
Michael S. Tsirkin3d2d8272009-09-21 17:03:51 -070029#include <linux/mmu_context.h>
Kent Overstreete1bdd5f2013-04-26 10:58:39 +100030#include <linux/percpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/slab.h>
32#include <linux/timer.h>
33#include <linux/aio.h>
34#include <linux/highmem.h>
35#include <linux/workqueue.h>
36#include <linux/security.h>
Davide Libenzi9c3060b2007-05-10 22:23:21 -070037#include <linux/eventfd.h>
Jeff Moyercfb1e332009-10-02 18:57:36 -040038#include <linux/blkdev.h>
Jeff Moyer9d85cba72010-05-26 14:44:26 -070039#include <linux/compat.h>
Gu Zheng36bc08c2013-07-16 17:56:16 +080040#include <linux/migrate.h>
41#include <linux/ramfs.h>
Kent Overstreet723be6e2013-05-28 15:14:48 -070042#include <linux/percpu-refcount.h>
Benjamin LaHaise71ad7492013-09-17 10:18:25 -040043#include <linux/mount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45#include <asm/kmap_types.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080046#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Al Viro68d70d02013-06-19 15:26:04 +040048#include "internal.h"
49
Christoph Hellwigf3a27522018-03-30 11:19:25 +020050#define KIOCB_KEY 0
51
Kent Overstreet4e179bc2013-05-07 16:18:33 -070052#define AIO_RING_MAGIC 0xa10a10a1
53#define AIO_RING_COMPAT_FEATURES 1
54#define AIO_RING_INCOMPAT_FEATURES 0
55struct aio_ring {
56 unsigned id; /* kernel internal index number */
57 unsigned nr; /* number of io_events */
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -040058 unsigned head; /* Written to by userland or under ring_lock
59 * mutex by aio_read_events_ring(). */
Kent Overstreet4e179bc2013-05-07 16:18:33 -070060 unsigned tail;
61
62 unsigned magic;
63 unsigned compat_features;
64 unsigned incompat_features;
65 unsigned header_length; /* size of aio_ring */
66
67
68 struct io_event io_events[0];
69}; /* 128 bytes + ring size */
70
71#define AIO_RING_PAGES 8
Kent Overstreet4e179bc2013-05-07 16:18:33 -070072
Benjamin LaHaisedb446a02013-07-30 12:54:40 -040073struct kioctx_table {
Tejun Heod0264c02018-03-14 12:10:17 -070074 struct rcu_head rcu;
75 unsigned nr;
76 struct kioctx __rcu *table[];
Benjamin LaHaisedb446a02013-07-30 12:54:40 -040077};
78
Kent Overstreete1bdd5f2013-04-26 10:58:39 +100079struct kioctx_cpu {
80 unsigned reqs_available;
81};
82
Jens Axboedc48e562015-04-15 11:17:23 -060083struct ctx_rq_wait {
84 struct completion comp;
85 atomic_t count;
86};
87
Kent Overstreet4e179bc2013-05-07 16:18:33 -070088struct kioctx {
Kent Overstreet723be6e2013-05-28 15:14:48 -070089 struct percpu_ref users;
Kent Overstreet36f55882013-05-07 16:18:41 -070090 atomic_t dead;
Kent Overstreet4e179bc2013-05-07 16:18:33 -070091
Kent Overstreete34ecee2013-10-10 19:31:47 -070092 struct percpu_ref reqs;
93
Kent Overstreet4e179bc2013-05-07 16:18:33 -070094 unsigned long user_id;
Kent Overstreet4e179bc2013-05-07 16:18:33 -070095
Kent Overstreete1bdd5f2013-04-26 10:58:39 +100096 struct __percpu kioctx_cpu *cpu;
97
98 /*
99 * For percpu reqs_available, number of slots we move to/from global
100 * counter at a time:
101 */
102 unsigned req_batch;
Kent Overstreet3e845ce2013-05-07 16:18:51 -0700103 /*
104 * This is what userspace passed to io_setup(), it's not used for
105 * anything but counting against the global max_reqs quota.
106 *
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700107 * The real limit is nr_events - 1, which will be larger (see
Kent Overstreet3e845ce2013-05-07 16:18:51 -0700108 * aio_setup_ring())
109 */
Kent Overstreet4e179bc2013-05-07 16:18:33 -0700110 unsigned max_reqs;
111
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700112 /* Size of ringbuffer, in units of struct io_event */
113 unsigned nr_events;
Kent Overstreet4e179bc2013-05-07 16:18:33 -0700114
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700115 unsigned long mmap_base;
116 unsigned long mmap_size;
117
118 struct page **ring_pages;
119 long nr_pages;
120
Tejun Heof7298632018-03-14 12:45:15 -0700121 struct rcu_work free_rwork; /* see free_ioctx() */
Kent Overstreet4e23bca2013-05-07 16:18:56 -0700122
Anatol Pomozove02ba722014-04-15 11:31:33 -0700123 /*
124 * signals when all in-flight requests are done
125 */
Jens Axboedc48e562015-04-15 11:17:23 -0600126 struct ctx_rq_wait *rq_wait;
Anatol Pomozove02ba722014-04-15 11:31:33 -0700127
Kent Overstreet4e23bca2013-05-07 16:18:56 -0700128 struct {
Kent Overstreet34e83fc2013-04-26 10:58:39 +1000129 /*
130 * This counts the number of available slots in the ringbuffer,
131 * so we avoid overflowing it: it's decremented (if positive)
132 * when allocating a kiocb and incremented when the resulting
133 * io_event is pulled off the ringbuffer.
Kent Overstreete1bdd5f2013-04-26 10:58:39 +1000134 *
135 * We batch accesses to it with a percpu version.
Kent Overstreet34e83fc2013-04-26 10:58:39 +1000136 */
137 atomic_t reqs_available;
Kent Overstreet4e23bca2013-05-07 16:18:56 -0700138 } ____cacheline_aligned_in_smp;
139
140 struct {
141 spinlock_t ctx_lock;
142 struct list_head active_reqs; /* used for cancellation */
143 } ____cacheline_aligned_in_smp;
144
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700145 struct {
146 struct mutex ring_lock;
Kent Overstreet4e23bca2013-05-07 16:18:56 -0700147 wait_queue_head_t wait;
148 } ____cacheline_aligned_in_smp;
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700149
150 struct {
151 unsigned tail;
Benjamin LaHaised856f322014-08-24 13:14:05 -0400152 unsigned completed_events;
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700153 spinlock_t completion_lock;
Kent Overstreet4e23bca2013-05-07 16:18:56 -0700154 } ____cacheline_aligned_in_smp;
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700155
156 struct page *internal_pages[AIO_RING_PAGES];
Gu Zheng36bc08c2013-07-16 17:56:16 +0800157 struct file *aio_ring_file;
Benjamin LaHaisedb446a02013-07-30 12:54:40 -0400158
159 unsigned id;
Kent Overstreet4e179bc2013-05-07 16:18:33 -0700160};
161
Christoph Hellwiga3c0d432018-03-27 19:18:57 +0200162struct fsync_iocb {
163 struct work_struct work;
164 struct file *file;
165 bool datasync;
166};
167
Christoph Hellwig2c14fa82018-03-20 16:34:36 +0100168struct poll_iocb {
169 struct file *file;
170 __poll_t events;
171 struct wait_queue_head *head;
172
173 union {
174 struct wait_queue_entry wait;
175 struct work_struct work;
176 };
177};
178
Christoph Hellwig04b2fa92015-02-02 14:49:06 +0100179struct aio_kiocb {
Christoph Hellwig54843f82018-05-02 19:57:21 +0200180 union {
181 struct kiocb rw;
Christoph Hellwiga3c0d432018-03-27 19:18:57 +0200182 struct fsync_iocb fsync;
Christoph Hellwig2c14fa82018-03-20 16:34:36 +0100183 struct poll_iocb poll;
Christoph Hellwig54843f82018-05-02 19:57:21 +0200184 };
Christoph Hellwig04b2fa92015-02-02 14:49:06 +0100185
186 struct kioctx *ki_ctx;
187 kiocb_cancel_fn *ki_cancel;
188
189 struct iocb __user *ki_user_iocb; /* user's aiocb */
190 __u64 ki_user_data; /* user's data for completion */
191
192 struct list_head ki_list; /* the aio core uses this
193 * for cancellation */
194
195 /*
196 * If the aio_resfd field of the userspace iocb is not zero,
197 * this is the underlying eventfd context to deliver events to.
198 */
199 struct eventfd_ctx *ki_eventfd;
200};
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202/*------ sysctl variables----*/
Zach Brownd55b5fd2005-11-07 00:59:31 -0800203static DEFINE_SPINLOCK(aio_nr_lock);
204unsigned long aio_nr; /* current system wide number of aio requests */
205unsigned long aio_max_nr = 0x10000; /* system wide maximum number of aio requests */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206/*----end sysctl variables---*/
207
Christoph Lametere18b8902006-12-06 20:33:20 -0800208static struct kmem_cache *kiocb_cachep;
209static struct kmem_cache *kioctx_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Benjamin LaHaise71ad7492013-09-17 10:18:25 -0400211static struct vfsmount *aio_mnt;
212
213static const struct file_operations aio_ring_fops;
214static const struct address_space_operations aio_ctx_aops;
215
216static struct file *aio_private_file(struct kioctx *ctx, loff_t nr_pages)
217{
Benjamin LaHaise71ad7492013-09-17 10:18:25 -0400218 struct file *file;
Benjamin LaHaise71ad7492013-09-17 10:18:25 -0400219 struct inode *inode = alloc_anon_inode(aio_mnt->mnt_sb);
Dan Carpenter7f626562013-11-13 10:49:40 +0300220 if (IS_ERR(inode))
221 return ERR_CAST(inode);
Benjamin LaHaise71ad7492013-09-17 10:18:25 -0400222
223 inode->i_mapping->a_ops = &aio_ctx_aops;
224 inode->i_mapping->private_data = ctx;
225 inode->i_size = PAGE_SIZE * nr_pages;
226
Al Virod93aa9d2018-06-09 09:40:05 -0400227 file = alloc_file_pseudo(inode, aio_mnt, "[aio]",
228 O_RDWR, &aio_ring_fops);
Al Viroc9c554f2018-07-11 14:19:04 -0400229 if (IS_ERR(file))
Al Virod93aa9d2018-06-09 09:40:05 -0400230 iput(inode);
Benjamin LaHaise71ad7492013-09-17 10:18:25 -0400231 return file;
232}
233
234static struct dentry *aio_mount(struct file_system_type *fs_type,
235 int flags, const char *dev_name, void *data)
236{
Al Virod93aa9d2018-06-09 09:40:05 -0400237 struct dentry *root = mount_pseudo(fs_type, "aio:", NULL, NULL,
Jann Horn22f6b4d2016-09-16 00:31:22 +0200238 AIO_RING_MAGIC);
239
240 if (!IS_ERR(root))
241 root->d_sb->s_iflags |= SB_I_NOEXEC;
242 return root;
Benjamin LaHaise71ad7492013-09-17 10:18:25 -0400243}
244
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245/* aio_setup
246 * Creates the slab caches used by the aio routines, panic on
247 * failure as this is done early during the boot sequence.
248 */
249static int __init aio_setup(void)
250{
Benjamin LaHaise71ad7492013-09-17 10:18:25 -0400251 static struct file_system_type aio_fs = {
252 .name = "aio",
253 .mount = aio_mount,
254 .kill_sb = kill_anon_super,
255 };
256 aio_mnt = kern_mount(&aio_fs);
257 if (IS_ERR(aio_mnt))
258 panic("Failed to create aio fs mount.");
259
Christoph Hellwig04b2fa92015-02-02 14:49:06 +0100260 kiocb_cachep = KMEM_CACHE(aio_kiocb, SLAB_HWCACHE_ALIGN|SLAB_PANIC);
Christoph Lameter0a31bd52007-05-06 14:49:57 -0700261 kioctx_cachep = KMEM_CACHE(kioctx,SLAB_HWCACHE_ALIGN|SLAB_PANIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 return 0;
263}
H Hartley Sweeten385773e2009-09-22 16:43:53 -0700264__initcall(aio_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Benjamin LaHaise5e9ae2e2013-09-26 20:34:51 -0400266static void put_aio_ring_file(struct kioctx *ctx)
267{
268 struct file *aio_ring_file = ctx->aio_ring_file;
Rasmus Villemoesde04e762016-09-15 00:25:03 +0200269 struct address_space *i_mapping;
270
Benjamin LaHaise5e9ae2e2013-09-26 20:34:51 -0400271 if (aio_ring_file) {
Al Viro45063092016-12-04 18:24:56 -0500272 truncate_setsize(file_inode(aio_ring_file), 0);
Benjamin LaHaise5e9ae2e2013-09-26 20:34:51 -0400273
274 /* Prevent further access to the kioctx from migratepages */
Al Viro45063092016-12-04 18:24:56 -0500275 i_mapping = aio_ring_file->f_mapping;
Rasmus Villemoesde04e762016-09-15 00:25:03 +0200276 spin_lock(&i_mapping->private_lock);
277 i_mapping->private_data = NULL;
Benjamin LaHaise5e9ae2e2013-09-26 20:34:51 -0400278 ctx->aio_ring_file = NULL;
Rasmus Villemoesde04e762016-09-15 00:25:03 +0200279 spin_unlock(&i_mapping->private_lock);
Benjamin LaHaise5e9ae2e2013-09-26 20:34:51 -0400280
281 fput(aio_ring_file);
282 }
283}
284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285static void aio_free_ring(struct kioctx *ctx)
286{
Gu Zheng36bc08c2013-07-16 17:56:16 +0800287 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -0400289 /* Disconnect the kiotx from the ring file. This prevents future
290 * accesses to the kioctx from page migration.
291 */
292 put_aio_ring_file(ctx);
293
Gu Zheng36bc08c2013-07-16 17:56:16 +0800294 for (i = 0; i < ctx->nr_pages; i++) {
Benjamin LaHaise8e321fe2013-12-21 17:56:08 -0500295 struct page *page;
Gu Zheng36bc08c2013-07-16 17:56:16 +0800296 pr_debug("pid(%d) [%d] page->count=%d\n", current->pid, i,
297 page_count(ctx->ring_pages[i]));
Benjamin LaHaise8e321fe2013-12-21 17:56:08 -0500298 page = ctx->ring_pages[i];
299 if (!page)
300 continue;
301 ctx->ring_pages[i] = NULL;
302 put_page(page);
Gu Zheng36bc08c2013-07-16 17:56:16 +0800303 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
Sasha Levinddb8c452013-11-19 17:33:03 -0500305 if (ctx->ring_pages && ctx->ring_pages != ctx->internal_pages) {
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700306 kfree(ctx->ring_pages);
Sasha Levinddb8c452013-11-19 17:33:03 -0500307 ctx->ring_pages = NULL;
308 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309}
310
Oleg Nesterov5477e702015-09-04 15:48:04 -0700311static int aio_ring_mremap(struct vm_area_struct *vma)
Gu Zheng36bc08c2013-07-16 17:56:16 +0800312{
Oleg Nesterov5477e702015-09-04 15:48:04 -0700313 struct file *file = vma->vm_file;
Pavel Emelyanove4a0d3e2014-09-18 19:56:17 +0400314 struct mm_struct *mm = vma->vm_mm;
315 struct kioctx_table *table;
Al Virob2edffd2015-04-06 17:48:54 -0400316 int i, res = -EINVAL;
Pavel Emelyanove4a0d3e2014-09-18 19:56:17 +0400317
318 spin_lock(&mm->ioctx_lock);
319 rcu_read_lock();
320 table = rcu_dereference(mm->ioctx_table);
321 for (i = 0; i < table->nr; i++) {
322 struct kioctx *ctx;
323
Tejun Heod0264c02018-03-14 12:10:17 -0700324 ctx = rcu_dereference(table->table[i]);
Pavel Emelyanove4a0d3e2014-09-18 19:56:17 +0400325 if (ctx && ctx->aio_ring_file == file) {
Al Virob2edffd2015-04-06 17:48:54 -0400326 if (!atomic_read(&ctx->dead)) {
327 ctx->user_id = ctx->mmap_base = vma->vm_start;
328 res = 0;
329 }
Pavel Emelyanove4a0d3e2014-09-18 19:56:17 +0400330 break;
331 }
332 }
333
334 rcu_read_unlock();
335 spin_unlock(&mm->ioctx_lock);
Al Virob2edffd2015-04-06 17:48:54 -0400336 return res;
Pavel Emelyanove4a0d3e2014-09-18 19:56:17 +0400337}
338
Oleg Nesterov5477e702015-09-04 15:48:04 -0700339static const struct vm_operations_struct aio_ring_vm_ops = {
340 .mremap = aio_ring_mremap,
341#if IS_ENABLED(CONFIG_MMU)
342 .fault = filemap_fault,
343 .map_pages = filemap_map_pages,
344 .page_mkwrite = filemap_page_mkwrite,
345#endif
346};
347
348static int aio_ring_mmap(struct file *file, struct vm_area_struct *vma)
349{
350 vma->vm_flags |= VM_DONTEXPAND;
351 vma->vm_ops = &aio_ring_vm_ops;
352 return 0;
353}
354
Gu Zheng36bc08c2013-07-16 17:56:16 +0800355static const struct file_operations aio_ring_fops = {
356 .mmap = aio_ring_mmap,
357};
358
Benjamin LaHaise0c453552013-07-17 09:34:24 -0400359#if IS_ENABLED(CONFIG_MIGRATION)
Gu Zheng36bc08c2013-07-16 17:56:16 +0800360static int aio_migratepage(struct address_space *mapping, struct page *new,
361 struct page *old, enum migrate_mode mode)
362{
Benjamin LaHaise5e9ae2e2013-09-26 20:34:51 -0400363 struct kioctx *ctx;
Gu Zheng36bc08c2013-07-16 17:56:16 +0800364 unsigned long flags;
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -0400365 pgoff_t idx;
Gu Zheng36bc08c2013-07-16 17:56:16 +0800366 int rc;
367
Jérôme Glisse2916ecc2017-09-08 16:12:06 -0700368 /*
369 * We cannot support the _NO_COPY case here, because copy needs to
370 * happen under the ctx->completion_lock. That does not work with the
371 * migration workflow of MIGRATE_SYNC_NO_COPY.
372 */
373 if (mode == MIGRATE_SYNC_NO_COPY)
374 return -EINVAL;
375
Benjamin LaHaise8e321fe2013-12-21 17:56:08 -0500376 rc = 0;
377
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -0400378 /* mapping->private_lock here protects against the kioctx teardown. */
Benjamin LaHaise8e321fe2013-12-21 17:56:08 -0500379 spin_lock(&mapping->private_lock);
380 ctx = mapping->private_data;
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -0400381 if (!ctx) {
382 rc = -EINVAL;
383 goto out;
384 }
385
386 /* The ring_lock mutex. The prevents aio_read_events() from writing
387 * to the ring's head, and prevents page migration from mucking in
388 * a partially initialized kiotx.
389 */
390 if (!mutex_trylock(&ctx->ring_lock)) {
391 rc = -EAGAIN;
392 goto out;
393 }
394
395 idx = old->index;
396 if (idx < (pgoff_t)ctx->nr_pages) {
397 /* Make sure the old page hasn't already been changed */
398 if (ctx->ring_pages[idx] != old)
399 rc = -EAGAIN;
Benjamin LaHaise8e321fe2013-12-21 17:56:08 -0500400 } else
401 rc = -EINVAL;
Benjamin LaHaise8e321fe2013-12-21 17:56:08 -0500402
403 if (rc != 0)
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -0400404 goto out_unlock;
Benjamin LaHaise8e321fe2013-12-21 17:56:08 -0500405
Gu Zheng36bc08c2013-07-16 17:56:16 +0800406 /* Writeback must be complete */
407 BUG_ON(PageWriteback(old));
Benjamin LaHaise8e321fe2013-12-21 17:56:08 -0500408 get_page(new);
Gu Zheng36bc08c2013-07-16 17:56:16 +0800409
Benjamin LaHaise8e321fe2013-12-21 17:56:08 -0500410 rc = migrate_page_move_mapping(mapping, new, old, NULL, mode, 1);
Gu Zheng36bc08c2013-07-16 17:56:16 +0800411 if (rc != MIGRATEPAGE_SUCCESS) {
Benjamin LaHaise8e321fe2013-12-21 17:56:08 -0500412 put_page(new);
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -0400413 goto out_unlock;
Gu Zheng36bc08c2013-07-16 17:56:16 +0800414 }
415
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -0400416 /* Take completion_lock to prevent other writes to the ring buffer
417 * while the old page is copied to the new. This prevents new
418 * events from being lost.
Benjamin LaHaise5e9ae2e2013-09-26 20:34:51 -0400419 */
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -0400420 spin_lock_irqsave(&ctx->completion_lock, flags);
421 migrate_page_copy(new, old);
422 BUG_ON(ctx->ring_pages[idx] != old);
423 ctx->ring_pages[idx] = new;
424 spin_unlock_irqrestore(&ctx->completion_lock, flags);
425
426 /* The old page is no longer accessible. */
427 put_page(old);
428
429out_unlock:
430 mutex_unlock(&ctx->ring_lock);
431out:
Benjamin LaHaise5e9ae2e2013-09-26 20:34:51 -0400432 spin_unlock(&mapping->private_lock);
Gu Zheng36bc08c2013-07-16 17:56:16 +0800433 return rc;
434}
Benjamin LaHaise0c453552013-07-17 09:34:24 -0400435#endif
Gu Zheng36bc08c2013-07-16 17:56:16 +0800436
437static const struct address_space_operations aio_ctx_aops = {
Gu Zheng835f2522014-11-06 17:46:21 +0800438 .set_page_dirty = __set_page_dirty_no_writeback,
Benjamin LaHaise0c453552013-07-17 09:34:24 -0400439#if IS_ENABLED(CONFIG_MIGRATION)
Gu Zheng36bc08c2013-07-16 17:56:16 +0800440 .migratepage = aio_migratepage,
Benjamin LaHaise0c453552013-07-17 09:34:24 -0400441#endif
Gu Zheng36bc08c2013-07-16 17:56:16 +0800442};
443
Mauricio Faria de Oliveira2a8a9862017-07-05 10:53:16 -0300444static int aio_setup_ring(struct kioctx *ctx, unsigned int nr_events)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445{
446 struct aio_ring *ring;
Zach Brown41003a72013-05-07 16:18:25 -0700447 struct mm_struct *mm = current->mm;
Linus Torvalds3dc9acb2013-12-20 05:11:12 +0900448 unsigned long size, unused;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 int nr_pages;
Gu Zheng36bc08c2013-07-16 17:56:16 +0800450 int i;
451 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
453 /* Compensate for the ring buffer's head/tail overlap entry */
454 nr_events += 2; /* 1 is required, 2 for good luck */
455
456 size = sizeof(struct aio_ring);
457 size += sizeof(struct io_event) * nr_events;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
Gu Zheng36bc08c2013-07-16 17:56:16 +0800459 nr_pages = PFN_UP(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 if (nr_pages < 0)
461 return -EINVAL;
462
Benjamin LaHaise71ad7492013-09-17 10:18:25 -0400463 file = aio_private_file(ctx, nr_pages);
Gu Zheng36bc08c2013-07-16 17:56:16 +0800464 if (IS_ERR(file)) {
465 ctx->aio_ring_file = NULL;
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -0400466 return -ENOMEM;
Gu Zheng36bc08c2013-07-16 17:56:16 +0800467 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
Gu Zheng36bc08c2013-07-16 17:56:16 +0800469 ctx->aio_ring_file = file;
470 nr_events = (PAGE_SIZE * nr_pages - sizeof(struct aio_ring))
471 / sizeof(struct io_event);
472
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700473 ctx->ring_pages = ctx->internal_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 if (nr_pages > AIO_RING_PAGES) {
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700475 ctx->ring_pages = kcalloc(nr_pages, sizeof(struct page *),
476 GFP_KERNEL);
Gu Zhengd1b94322013-12-04 18:19:06 +0800477 if (!ctx->ring_pages) {
478 put_aio_ring_file(ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 return -ENOMEM;
Gu Zhengd1b94322013-12-04 18:19:06 +0800480 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 }
482
Linus Torvalds3dc9acb2013-12-20 05:11:12 +0900483 for (i = 0; i < nr_pages; i++) {
484 struct page *page;
Al Viro45063092016-12-04 18:24:56 -0500485 page = find_or_create_page(file->f_mapping,
Linus Torvalds3dc9acb2013-12-20 05:11:12 +0900486 i, GFP_HIGHUSER | __GFP_ZERO);
487 if (!page)
488 break;
489 pr_debug("pid(%d) page[%d]->count=%d\n",
490 current->pid, i, page_count(page));
491 SetPageUptodate(page);
Linus Torvalds3dc9acb2013-12-20 05:11:12 +0900492 unlock_page(page);
493
494 ctx->ring_pages[i] = page;
495 }
496 ctx->nr_pages = i;
497
498 if (unlikely(i != nr_pages)) {
499 aio_free_ring(ctx);
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -0400500 return -ENOMEM;
Linus Torvalds3dc9acb2013-12-20 05:11:12 +0900501 }
502
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700503 ctx->mmap_size = nr_pages * PAGE_SIZE;
504 pr_debug("attempting mmap of %lu bytes\n", ctx->mmap_size);
Gu Zheng36bc08c2013-07-16 17:56:16 +0800505
Michal Hocko013373e2016-05-23 16:25:59 -0700506 if (down_write_killable(&mm->mmap_sem)) {
507 ctx->mmap_size = 0;
508 aio_free_ring(ctx);
509 return -EINTR;
510 }
511
Gu Zheng36bc08c2013-07-16 17:56:16 +0800512 ctx->mmap_base = do_mmap_pgoff(ctx->aio_ring_file, 0, ctx->mmap_size,
513 PROT_READ | PROT_WRITE,
Mike Rapoport897ab3e2017-02-24 14:58:22 -0800514 MAP_SHARED, 0, &unused, NULL);
Linus Torvalds3dc9acb2013-12-20 05:11:12 +0900515 up_write(&mm->mmap_sem);
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700516 if (IS_ERR((void *)ctx->mmap_base)) {
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700517 ctx->mmap_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 aio_free_ring(ctx);
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -0400519 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 }
521
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700522 pr_debug("mmap address: 0x%08lx\n", ctx->mmap_base);
Benjamin LaHaised6c355c2013-09-09 11:57:59 -0400523
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700524 ctx->user_id = ctx->mmap_base;
525 ctx->nr_events = nr_events; /* trusted copy */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700527 ring = kmap_atomic(ctx->ring_pages[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 ring->nr = nr_events; /* user copy */
Benjamin LaHaisedb446a02013-07-30 12:54:40 -0400529 ring->id = ~0U;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 ring->head = ring->tail = 0;
531 ring->magic = AIO_RING_MAGIC;
532 ring->compat_features = AIO_RING_COMPAT_FEATURES;
533 ring->incompat_features = AIO_RING_INCOMPAT_FEATURES;
534 ring->header_length = sizeof(struct aio_ring);
Cong Wange8e3c3d2011-11-25 23:14:27 +0800535 kunmap_atomic(ring);
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700536 flush_dcache_page(ctx->ring_pages[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
538 return 0;
539}
540
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541#define AIO_EVENTS_PER_PAGE (PAGE_SIZE / sizeof(struct io_event))
542#define AIO_EVENTS_FIRST_PAGE ((PAGE_SIZE - sizeof(struct aio_ring)) / sizeof(struct io_event))
543#define AIO_EVENTS_OFFSET (AIO_EVENTS_PER_PAGE - AIO_EVENTS_FIRST_PAGE)
544
Christoph Hellwig04b2fa92015-02-02 14:49:06 +0100545void kiocb_set_cancel_fn(struct kiocb *iocb, kiocb_cancel_fn *cancel)
Kent Overstreet0460fef2013-05-07 16:18:49 -0700546{
Christoph Hellwig54843f82018-05-02 19:57:21 +0200547 struct aio_kiocb *req = container_of(iocb, struct aio_kiocb, rw);
Kent Overstreet0460fef2013-05-07 16:18:49 -0700548 struct kioctx *ctx = req->ki_ctx;
549 unsigned long flags;
550
Christoph Hellwig75321b52018-04-09 14:57:56 +0200551 if (WARN_ON_ONCE(!list_empty(&req->ki_list)))
552 return;
553
Kent Overstreet0460fef2013-05-07 16:18:49 -0700554 spin_lock_irqsave(&ctx->ctx_lock, flags);
Christoph Hellwig75321b52018-04-09 14:57:56 +0200555 list_add_tail(&req->ki_list, &ctx->active_reqs);
Kent Overstreet0460fef2013-05-07 16:18:49 -0700556 req->ki_cancel = cancel;
Kent Overstreet0460fef2013-05-07 16:18:49 -0700557 spin_unlock_irqrestore(&ctx->ctx_lock, flags);
558}
559EXPORT_SYMBOL(kiocb_set_cancel_fn);
560
Tejun Heoa6d7cff2018-03-14 12:10:17 -0700561/*
562 * free_ioctx() should be RCU delayed to synchronize against the RCU
563 * protected lookup_ioctx() and also needs process context to call
Tejun Heof7298632018-03-14 12:45:15 -0700564 * aio_free_ring(). Use rcu_work.
Tejun Heoa6d7cff2018-03-14 12:10:17 -0700565 */
Kent Overstreete34ecee2013-10-10 19:31:47 -0700566static void free_ioctx(struct work_struct *work)
Kent Overstreet36f55882013-05-07 16:18:41 -0700567{
Tejun Heof7298632018-03-14 12:45:15 -0700568 struct kioctx *ctx = container_of(to_rcu_work(work), struct kioctx,
569 free_rwork);
Kent Overstreete34ecee2013-10-10 19:31:47 -0700570 pr_debug("freeing %p\n", ctx);
571
572 aio_free_ring(ctx);
Kent Overstreete1bdd5f2013-04-26 10:58:39 +1000573 free_percpu(ctx->cpu);
Tejun Heo9a1049d2014-06-28 08:10:14 -0400574 percpu_ref_exit(&ctx->reqs);
575 percpu_ref_exit(&ctx->users);
Kent Overstreet36f55882013-05-07 16:18:41 -0700576 kmem_cache_free(kioctx_cachep, ctx);
577}
578
Kent Overstreete34ecee2013-10-10 19:31:47 -0700579static void free_ioctx_reqs(struct percpu_ref *ref)
580{
581 struct kioctx *ctx = container_of(ref, struct kioctx, reqs);
582
Anatol Pomozove02ba722014-04-15 11:31:33 -0700583 /* At this point we know that there are no any in-flight requests */
Jens Axboedc48e562015-04-15 11:17:23 -0600584 if (ctx->rq_wait && atomic_dec_and_test(&ctx->rq_wait->count))
585 complete(&ctx->rq_wait->comp);
Anatol Pomozove02ba722014-04-15 11:31:33 -0700586
Tejun Heoa6d7cff2018-03-14 12:10:17 -0700587 /* Synchronize against RCU protected table->table[] dereferences */
Tejun Heof7298632018-03-14 12:45:15 -0700588 INIT_RCU_WORK(&ctx->free_rwork, free_ioctx);
589 queue_rcu_work(system_wq, &ctx->free_rwork);
Kent Overstreete34ecee2013-10-10 19:31:47 -0700590}
591
Kent Overstreet36f55882013-05-07 16:18:41 -0700592/*
593 * When this function runs, the kioctx has been removed from the "hash table"
594 * and ctx->users has dropped to 0, so we know no more kiocbs can be submitted -
595 * now it's safe to cancel any that need to be.
596 */
Kent Overstreete34ecee2013-10-10 19:31:47 -0700597static void free_ioctx_users(struct percpu_ref *ref)
Kent Overstreet36f55882013-05-07 16:18:41 -0700598{
Kent Overstreete34ecee2013-10-10 19:31:47 -0700599 struct kioctx *ctx = container_of(ref, struct kioctx, users);
Christoph Hellwig04b2fa92015-02-02 14:49:06 +0100600 struct aio_kiocb *req;
Kent Overstreet36f55882013-05-07 16:18:41 -0700601
602 spin_lock_irq(&ctx->ctx_lock);
603
604 while (!list_empty(&ctx->active_reqs)) {
605 req = list_first_entry(&ctx->active_reqs,
Christoph Hellwig04b2fa92015-02-02 14:49:06 +0100606 struct aio_kiocb, ki_list);
Christoph Hellwig888933f2018-05-23 14:11:02 +0200607 req->ki_cancel(&req->rw);
Al Viro4faa99962018-05-23 22:53:22 -0400608 list_del_init(&req->ki_list);
Kent Overstreet36f55882013-05-07 16:18:41 -0700609 }
610
611 spin_unlock_irq(&ctx->ctx_lock);
612
Kent Overstreete34ecee2013-10-10 19:31:47 -0700613 percpu_ref_kill(&ctx->reqs);
614 percpu_ref_put(&ctx->reqs);
Kent Overstreet36f55882013-05-07 16:18:41 -0700615}
616
Benjamin LaHaisedb446a02013-07-30 12:54:40 -0400617static int ioctx_add_table(struct kioctx *ctx, struct mm_struct *mm)
618{
619 unsigned i, new_nr;
620 struct kioctx_table *table, *old;
621 struct aio_ring *ring;
622
623 spin_lock(&mm->ioctx_lock);
Oleg Nesterov855ef0d2014-04-30 16:16:36 +0200624 table = rcu_dereference_raw(mm->ioctx_table);
Benjamin LaHaisedb446a02013-07-30 12:54:40 -0400625
626 while (1) {
627 if (table)
628 for (i = 0; i < table->nr; i++)
Tejun Heod0264c02018-03-14 12:10:17 -0700629 if (!rcu_access_pointer(table->table[i])) {
Benjamin LaHaisedb446a02013-07-30 12:54:40 -0400630 ctx->id = i;
Tejun Heod0264c02018-03-14 12:10:17 -0700631 rcu_assign_pointer(table->table[i], ctx);
Benjamin LaHaisedb446a02013-07-30 12:54:40 -0400632 spin_unlock(&mm->ioctx_lock);
633
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -0400634 /* While kioctx setup is in progress,
635 * we are protected from page migration
636 * changes ring_pages by ->ring_lock.
637 */
Benjamin LaHaisedb446a02013-07-30 12:54:40 -0400638 ring = kmap_atomic(ctx->ring_pages[0]);
639 ring->id = ctx->id;
640 kunmap_atomic(ring);
641 return 0;
642 }
643
644 new_nr = (table ? table->nr : 1) * 4;
Benjamin LaHaisedb446a02013-07-30 12:54:40 -0400645 spin_unlock(&mm->ioctx_lock);
646
647 table = kzalloc(sizeof(*table) + sizeof(struct kioctx *) *
648 new_nr, GFP_KERNEL);
649 if (!table)
650 return -ENOMEM;
651
652 table->nr = new_nr;
653
654 spin_lock(&mm->ioctx_lock);
Oleg Nesterov855ef0d2014-04-30 16:16:36 +0200655 old = rcu_dereference_raw(mm->ioctx_table);
Benjamin LaHaisedb446a02013-07-30 12:54:40 -0400656
657 if (!old) {
658 rcu_assign_pointer(mm->ioctx_table, table);
659 } else if (table->nr > old->nr) {
660 memcpy(table->table, old->table,
661 old->nr * sizeof(struct kioctx *));
662
663 rcu_assign_pointer(mm->ioctx_table, table);
664 kfree_rcu(old, rcu);
665 } else {
666 kfree(table);
667 table = old;
668 }
669 }
670}
671
Kent Overstreete34ecee2013-10-10 19:31:47 -0700672static void aio_nr_sub(unsigned nr)
673{
674 spin_lock(&aio_nr_lock);
675 if (WARN_ON(aio_nr - nr > aio_nr))
676 aio_nr = 0;
677 else
678 aio_nr -= nr;
679 spin_unlock(&aio_nr_lock);
680}
681
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682/* ioctx_alloc
683 * Allocates and initializes an ioctx. Returns an ERR_PTR if it failed.
684 */
685static struct kioctx *ioctx_alloc(unsigned nr_events)
686{
Zach Brown41003a72013-05-07 16:18:25 -0700687 struct mm_struct *mm = current->mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 struct kioctx *ctx;
Al Viroe23754f2012-03-06 14:33:22 -0500689 int err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Kent Overstreete1bdd5f2013-04-26 10:58:39 +1000691 /*
Mauricio Faria de Oliveira2a8a9862017-07-05 10:53:16 -0300692 * Store the original nr_events -- what userspace passed to io_setup(),
693 * for counting against the global limit -- before it changes.
694 */
695 unsigned int max_reqs = nr_events;
696
697 /*
Kent Overstreete1bdd5f2013-04-26 10:58:39 +1000698 * We keep track of the number of available ringbuffer slots, to prevent
699 * overflow (reqs_available), and we also use percpu counters for this.
700 *
701 * So since up to half the slots might be on other cpu's percpu counters
702 * and unavailable, double nr_events so userspace sees what they
703 * expected: additionally, we move req_batch slots to/from percpu
704 * counters at a time, so make sure that isn't 0:
705 */
706 nr_events = max(nr_events, num_possible_cpus() * 4);
707 nr_events *= 2;
708
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 /* Prevent overflows */
Al Viro08397ac2015-03-31 11:43:52 -0400710 if (nr_events > (0x10000000U / sizeof(struct io_event))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 pr_debug("ENOMEM: nr_events too high\n");
712 return ERR_PTR(-EINVAL);
713 }
714
Mauricio Faria de Oliveira2a8a9862017-07-05 10:53:16 -0300715 if (!nr_events || (unsigned long)max_reqs > aio_max_nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 return ERR_PTR(-EAGAIN);
717
Robert P. J. Dayc3762222007-02-10 01:45:03 -0800718 ctx = kmem_cache_zalloc(kioctx_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 if (!ctx)
720 return ERR_PTR(-ENOMEM);
721
Mauricio Faria de Oliveira2a8a9862017-07-05 10:53:16 -0300722 ctx->max_reqs = max_reqs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -0400724 spin_lock_init(&ctx->ctx_lock);
725 spin_lock_init(&ctx->completion_lock);
726 mutex_init(&ctx->ring_lock);
727 /* Protect against page migration throughout kiotx setup by keeping
728 * the ring_lock mutex held until setup is complete. */
729 mutex_lock(&ctx->ring_lock);
730 init_waitqueue_head(&ctx->wait);
731
732 INIT_LIST_HEAD(&ctx->active_reqs);
733
Tejun Heo2aad2a82014-09-24 13:31:50 -0400734 if (percpu_ref_init(&ctx->users, free_ioctx_users, 0, GFP_KERNEL))
Kent Overstreete34ecee2013-10-10 19:31:47 -0700735 goto err;
736
Tejun Heo2aad2a82014-09-24 13:31:50 -0400737 if (percpu_ref_init(&ctx->reqs, free_ioctx_reqs, 0, GFP_KERNEL))
Kent Overstreete34ecee2013-10-10 19:31:47 -0700738 goto err;
Kent Overstreet723be6e2013-05-28 15:14:48 -0700739
Kent Overstreete1bdd5f2013-04-26 10:58:39 +1000740 ctx->cpu = alloc_percpu(struct kioctx_cpu);
741 if (!ctx->cpu)
Kent Overstreete34ecee2013-10-10 19:31:47 -0700742 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Mauricio Faria de Oliveira2a8a9862017-07-05 10:53:16 -0300744 err = aio_setup_ring(ctx, nr_events);
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -0400745 if (err < 0)
Kent Overstreete34ecee2013-10-10 19:31:47 -0700746 goto err;
Kent Overstreete1bdd5f2013-04-26 10:58:39 +1000747
Kent Overstreet34e83fc2013-04-26 10:58:39 +1000748 atomic_set(&ctx->reqs_available, ctx->nr_events - 1);
Kent Overstreete1bdd5f2013-04-26 10:58:39 +1000749 ctx->req_batch = (ctx->nr_events - 1) / (num_possible_cpus() * 4);
Benjamin LaHaise6878ea72013-07-31 10:34:18 -0400750 if (ctx->req_batch < 1)
751 ctx->req_batch = 1;
Kent Overstreet34e83fc2013-04-26 10:58:39 +1000752
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 /* limit the number of system wide aios */
Al Viro9fa1cb32012-03-10 23:14:05 -0500754 spin_lock(&aio_nr_lock);
Mauricio Faria de Oliveira2a8a9862017-07-05 10:53:16 -0300755 if (aio_nr + ctx->max_reqs > aio_max_nr ||
756 aio_nr + ctx->max_reqs < aio_nr) {
Al Viro9fa1cb32012-03-10 23:14:05 -0500757 spin_unlock(&aio_nr_lock);
Kent Overstreete34ecee2013-10-10 19:31:47 -0700758 err = -EAGAIN;
Gu Zhengd1b94322013-12-04 18:19:06 +0800759 goto err_ctx;
Al Viro2dd542b2012-03-10 23:10:35 -0500760 }
761 aio_nr += ctx->max_reqs;
Al Viro9fa1cb32012-03-10 23:14:05 -0500762 spin_unlock(&aio_nr_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
Benjamin LaHaise18816862013-12-21 15:49:28 -0500764 percpu_ref_get(&ctx->users); /* io_setup() will drop this ref */
765 percpu_ref_get(&ctx->reqs); /* free_ioctx_users() will drop this */
Kent Overstreet723be6e2013-05-28 15:14:48 -0700766
Benjamin LaHaiseda903822013-08-05 13:21:43 -0400767 err = ioctx_add_table(ctx, mm);
768 if (err)
Kent Overstreete34ecee2013-10-10 19:31:47 -0700769 goto err_cleanup;
Benjamin LaHaiseda903822013-08-05 13:21:43 -0400770
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -0400771 /* Release the ring_lock mutex now that all setup is complete. */
772 mutex_unlock(&ctx->ring_lock);
773
Kent Overstreetcaf41672013-05-07 16:18:35 -0700774 pr_debug("allocated ioctx %p[%ld]: mm=%p mask=0x%x\n",
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700775 ctx, ctx->user_id, mm, ctx->nr_events);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 return ctx;
777
Kent Overstreete34ecee2013-10-10 19:31:47 -0700778err_cleanup:
779 aio_nr_sub(ctx->max_reqs);
Gu Zhengd1b94322013-12-04 18:19:06 +0800780err_ctx:
Al Virodeeb8522015-04-06 17:57:44 -0400781 atomic_set(&ctx->dead, 1);
782 if (ctx->mmap_size)
783 vm_munmap(ctx->mmap_base, ctx->mmap_size);
Gu Zhengd1b94322013-12-04 18:19:06 +0800784 aio_free_ring(ctx);
Kent Overstreete34ecee2013-10-10 19:31:47 -0700785err:
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -0400786 mutex_unlock(&ctx->ring_lock);
Kent Overstreete1bdd5f2013-04-26 10:58:39 +1000787 free_percpu(ctx->cpu);
Tejun Heo9a1049d2014-06-28 08:10:14 -0400788 percpu_ref_exit(&ctx->reqs);
789 percpu_ref_exit(&ctx->users);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 kmem_cache_free(kioctx_cachep, ctx);
Kent Overstreetcaf41672013-05-07 16:18:35 -0700791 pr_debug("error allocating ioctx %d\n", err);
Al Viroe23754f2012-03-06 14:33:22 -0500792 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793}
794
Kent Overstreet36f55882013-05-07 16:18:41 -0700795/* kill_ioctx
796 * Cancels all outstanding aio requests on an aio context. Used
797 * when the processes owning a context have all exited to encourage
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 * the rapid destruction of the kioctx.
799 */
Benjamin LaHaisefb2d4482014-04-29 12:45:17 -0400800static int kill_ioctx(struct mm_struct *mm, struct kioctx *ctx,
Jens Axboedc48e562015-04-15 11:17:23 -0600801 struct ctx_rq_wait *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802{
Benjamin LaHaisefa88b6f2014-04-29 12:55:48 -0400803 struct kioctx_table *table;
Benjamin LaHaisedb446a02013-07-30 12:54:40 -0400804
Benjamin LaHaisefa88b6f2014-04-29 12:55:48 -0400805 spin_lock(&mm->ioctx_lock);
Al Virob2edffd2015-04-06 17:48:54 -0400806 if (atomic_xchg(&ctx->dead, 1)) {
807 spin_unlock(&mm->ioctx_lock);
808 return -EINVAL;
809 }
810
Oleg Nesterov855ef0d2014-04-30 16:16:36 +0200811 table = rcu_dereference_raw(mm->ioctx_table);
Tejun Heod0264c02018-03-14 12:10:17 -0700812 WARN_ON(ctx != rcu_access_pointer(table->table[ctx->id]));
813 RCU_INIT_POINTER(table->table[ctx->id], NULL);
Benjamin LaHaisefa88b6f2014-04-29 12:55:48 -0400814 spin_unlock(&mm->ioctx_lock);
Kent Overstreet4fcc7122013-06-12 14:04:59 -0700815
Tejun Heoa6d7cff2018-03-14 12:10:17 -0700816 /* free_ioctx_reqs() will do the necessary RCU synchronization */
Benjamin LaHaisefa88b6f2014-04-29 12:55:48 -0400817 wake_up_all(&ctx->wait);
Kent Overstreet4fcc7122013-06-12 14:04:59 -0700818
Benjamin LaHaisefa88b6f2014-04-29 12:55:48 -0400819 /*
820 * It'd be more correct to do this in free_ioctx(), after all
821 * the outstanding kiocbs have finished - but by then io_destroy
822 * has already returned, so io_setup() could potentially return
823 * -EAGAIN with no ioctxs actually in use (as far as userspace
824 * could tell).
825 */
826 aio_nr_sub(ctx->max_reqs);
Benjamin LaHaisefb2d4482014-04-29 12:45:17 -0400827
Benjamin LaHaisefa88b6f2014-04-29 12:55:48 -0400828 if (ctx->mmap_size)
829 vm_munmap(ctx->mmap_base, ctx->mmap_size);
830
Jens Axboedc48e562015-04-15 11:17:23 -0600831 ctx->rq_wait = wait;
Benjamin LaHaisefa88b6f2014-04-29 12:55:48 -0400832 percpu_ref_kill(&ctx->users);
833 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834}
835
Kent Overstreet36f55882013-05-07 16:18:41 -0700836/*
837 * exit_aio: called when the last user of mm goes away. At this point, there is
838 * no way for any new requests to be submited or any of the io_* syscalls to be
839 * called on the context.
840 *
841 * There may be outstanding kiocbs, but free_ioctx() will explicitly wait on
842 * them.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 */
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -0800844void exit_aio(struct mm_struct *mm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845{
Oleg Nesterov4b70ac52014-04-30 19:02:48 +0200846 struct kioctx_table *table = rcu_dereference_raw(mm->ioctx_table);
Jens Axboedc48e562015-04-15 11:17:23 -0600847 struct ctx_rq_wait wait;
848 int i, skipped;
Jens Axboeabf137d2008-12-09 08:11:22 +0100849
Oleg Nesterov4b70ac52014-04-30 19:02:48 +0200850 if (!table)
851 return;
Benjamin LaHaisedb446a02013-07-30 12:54:40 -0400852
Jens Axboedc48e562015-04-15 11:17:23 -0600853 atomic_set(&wait.count, table->nr);
854 init_completion(&wait.comp);
855
856 skipped = 0;
Oleg Nesterov4b70ac52014-04-30 19:02:48 +0200857 for (i = 0; i < table->nr; ++i) {
Tejun Heod0264c02018-03-14 12:10:17 -0700858 struct kioctx *ctx =
859 rcu_dereference_protected(table->table[i], true);
Benjamin LaHaisedb446a02013-07-30 12:54:40 -0400860
Jens Axboedc48e562015-04-15 11:17:23 -0600861 if (!ctx) {
862 skipped++;
Oleg Nesterov4b70ac52014-04-30 19:02:48 +0200863 continue;
Jens Axboedc48e562015-04-15 11:17:23 -0600864 }
865
Al Viro936af152012-04-20 21:49:41 -0400866 /*
Oleg Nesterov4b70ac52014-04-30 19:02:48 +0200867 * We don't need to bother with munmap() here - exit_mmap(mm)
868 * is coming and it'll unmap everything. And we simply can't,
869 * this is not necessarily our ->mm.
870 * Since kill_ioctx() uses non-zero ->mmap_size as indicator
871 * that it needs to unmap the area, just set it to 0.
Al Viro936af152012-04-20 21:49:41 -0400872 */
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700873 ctx->mmap_size = 0;
Jens Axboedc48e562015-04-15 11:17:23 -0600874 kill_ioctx(mm, ctx, &wait);
875 }
Kent Overstreet36f55882013-05-07 16:18:41 -0700876
Jens Axboedc48e562015-04-15 11:17:23 -0600877 if (!atomic_sub_and_test(skipped, &wait.count)) {
Gu Zheng6098b452014-09-03 17:45:44 +0800878 /* Wait until all IO for the context are done. */
Jens Axboedc48e562015-04-15 11:17:23 -0600879 wait_for_completion(&wait.comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 }
Oleg Nesterov4b70ac52014-04-30 19:02:48 +0200881
882 RCU_INIT_POINTER(mm->ioctx_table, NULL);
883 kfree(table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884}
885
Kent Overstreete1bdd5f2013-04-26 10:58:39 +1000886static void put_reqs_available(struct kioctx *ctx, unsigned nr)
887{
888 struct kioctx_cpu *kcpu;
Benjamin LaHaise263782c2014-07-14 12:49:26 -0400889 unsigned long flags;
Kent Overstreete1bdd5f2013-04-26 10:58:39 +1000890
Benjamin LaHaise263782c2014-07-14 12:49:26 -0400891 local_irq_save(flags);
Benjamin LaHaisebe6fb452014-07-22 09:56:56 -0400892 kcpu = this_cpu_ptr(ctx->cpu);
Kent Overstreete1bdd5f2013-04-26 10:58:39 +1000893 kcpu->reqs_available += nr;
Benjamin LaHaise263782c2014-07-14 12:49:26 -0400894
Kent Overstreete1bdd5f2013-04-26 10:58:39 +1000895 while (kcpu->reqs_available >= ctx->req_batch * 2) {
896 kcpu->reqs_available -= ctx->req_batch;
897 atomic_add(ctx->req_batch, &ctx->reqs_available);
898 }
899
Benjamin LaHaise263782c2014-07-14 12:49:26 -0400900 local_irq_restore(flags);
Kent Overstreete1bdd5f2013-04-26 10:58:39 +1000901}
902
903static bool get_reqs_available(struct kioctx *ctx)
904{
905 struct kioctx_cpu *kcpu;
906 bool ret = false;
Benjamin LaHaise263782c2014-07-14 12:49:26 -0400907 unsigned long flags;
Kent Overstreete1bdd5f2013-04-26 10:58:39 +1000908
Benjamin LaHaise263782c2014-07-14 12:49:26 -0400909 local_irq_save(flags);
Benjamin LaHaisebe6fb452014-07-22 09:56:56 -0400910 kcpu = this_cpu_ptr(ctx->cpu);
Kent Overstreete1bdd5f2013-04-26 10:58:39 +1000911 if (!kcpu->reqs_available) {
912 int old, avail = atomic_read(&ctx->reqs_available);
913
914 do {
915 if (avail < ctx->req_batch)
916 goto out;
917
918 old = avail;
919 avail = atomic_cmpxchg(&ctx->reqs_available,
920 avail, avail - ctx->req_batch);
921 } while (avail != old);
922
923 kcpu->reqs_available += ctx->req_batch;
924 }
925
926 ret = true;
927 kcpu->reqs_available--;
928out:
Benjamin LaHaise263782c2014-07-14 12:49:26 -0400929 local_irq_restore(flags);
Kent Overstreete1bdd5f2013-04-26 10:58:39 +1000930 return ret;
931}
932
Benjamin LaHaised856f322014-08-24 13:14:05 -0400933/* refill_reqs_available
934 * Updates the reqs_available reference counts used for tracking the
935 * number of free slots in the completion ring. This can be called
936 * from aio_complete() (to optimistically update reqs_available) or
937 * from aio_get_req() (the we're out of events case). It must be
938 * called holding ctx->completion_lock.
939 */
940static void refill_reqs_available(struct kioctx *ctx, unsigned head,
941 unsigned tail)
942{
943 unsigned events_in_ring, completed;
944
945 /* Clamp head since userland can write to it. */
946 head %= ctx->nr_events;
947 if (head <= tail)
948 events_in_ring = tail - head;
949 else
950 events_in_ring = ctx->nr_events - (head - tail);
951
952 completed = ctx->completed_events;
953 if (events_in_ring < completed)
954 completed -= events_in_ring;
955 else
956 completed = 0;
957
958 if (!completed)
959 return;
960
961 ctx->completed_events -= completed;
962 put_reqs_available(ctx, completed);
963}
964
965/* user_refill_reqs_available
966 * Called to refill reqs_available when aio_get_req() encounters an
967 * out of space in the completion ring.
968 */
969static void user_refill_reqs_available(struct kioctx *ctx)
970{
971 spin_lock_irq(&ctx->completion_lock);
972 if (ctx->completed_events) {
973 struct aio_ring *ring;
974 unsigned head;
975
976 /* Access of ring->head may race with aio_read_events_ring()
977 * here, but that's okay since whether we read the old version
978 * or the new version, and either will be valid. The important
979 * part is that head cannot pass tail since we prevent
980 * aio_complete() from updating tail by holding
981 * ctx->completion_lock. Even if head is invalid, the check
982 * against ctx->completed_events below will make sure we do the
983 * safe/right thing.
984 */
985 ring = kmap_atomic(ctx->ring_pages[0]);
986 head = ring->head;
987 kunmap_atomic(ring);
988
989 refill_reqs_available(ctx, head, ctx->tail);
990 }
991
992 spin_unlock_irq(&ctx->completion_lock);
993}
994
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995/* aio_get_req
Kent Overstreet57282d82013-05-13 13:42:52 -0700996 * Allocate a slot for an aio request.
997 * Returns NULL if no requests are free.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 */
Christoph Hellwig04b2fa92015-02-02 14:49:06 +0100999static inline struct aio_kiocb *aio_get_req(struct kioctx *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000{
Christoph Hellwig04b2fa92015-02-02 14:49:06 +01001001 struct aio_kiocb *req;
Kent Overstreeta1c8eae2013-05-07 16:18:53 -07001002
Benjamin LaHaised856f322014-08-24 13:14:05 -04001003 if (!get_reqs_available(ctx)) {
1004 user_refill_reqs_available(ctx);
1005 if (!get_reqs_available(ctx))
1006 return NULL;
1007 }
Kent Overstreeta1c8eae2013-05-07 16:18:53 -07001008
Kent Overstreet0460fef2013-05-07 16:18:49 -07001009 req = kmem_cache_alloc(kiocb_cachep, GFP_KERNEL|__GFP_ZERO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 if (unlikely(!req))
Kent Overstreeta1c8eae2013-05-07 16:18:53 -07001011 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
Kent Overstreete34ecee2013-10-10 19:31:47 -07001013 percpu_ref_get(&ctx->reqs);
Christoph Hellwig75321b52018-04-09 14:57:56 +02001014 INIT_LIST_HEAD(&req->ki_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 req->ki_ctx = ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 return req;
Kent Overstreeta1c8eae2013-05-07 16:18:53 -07001017out_put:
Kent Overstreete1bdd5f2013-04-26 10:58:39 +10001018 put_reqs_available(ctx, 1);
Kent Overstreeta1c8eae2013-05-07 16:18:53 -07001019 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020}
1021
Adrian Bunkd5470b52008-04-29 00:58:57 -07001022static struct kioctx *lookup_ioctx(unsigned long ctx_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023{
Benjamin LaHaisedb446a02013-07-30 12:54:40 -04001024 struct aio_ring __user *ring = (void __user *)ctx_id;
Jens Axboeabf137d2008-12-09 08:11:22 +01001025 struct mm_struct *mm = current->mm;
Jeff Moyer65c24492009-03-18 17:04:21 -07001026 struct kioctx *ctx, *ret = NULL;
Benjamin LaHaisedb446a02013-07-30 12:54:40 -04001027 struct kioctx_table *table;
1028 unsigned id;
1029
1030 if (get_user(id, &ring->id))
1031 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
Jens Axboeabf137d2008-12-09 08:11:22 +01001033 rcu_read_lock();
Benjamin LaHaisedb446a02013-07-30 12:54:40 -04001034 table = rcu_dereference(mm->ioctx_table);
Jens Axboeabf137d2008-12-09 08:11:22 +01001035
Benjamin LaHaisedb446a02013-07-30 12:54:40 -04001036 if (!table || id >= table->nr)
1037 goto out;
1038
Tejun Heod0264c02018-03-14 12:10:17 -07001039 ctx = rcu_dereference(table->table[id]);
Benjamin LaHaisef30d7042013-08-07 18:23:48 -04001040 if (ctx && ctx->user_id == ctx_id) {
Al Virobaf10562018-05-20 16:46:23 -04001041 if (percpu_ref_tryget_live(&ctx->users))
1042 ret = ctx;
Jens Axboeabf137d2008-12-09 08:11:22 +01001043 }
Benjamin LaHaisedb446a02013-07-30 12:54:40 -04001044out:
Jens Axboeabf137d2008-12-09 08:11:22 +01001045 rcu_read_unlock();
Jeff Moyer65c24492009-03-18 17:04:21 -07001046 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047}
1048
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049/* aio_complete
1050 * Called when the io request on the given iocb is complete.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 */
Christoph Hellwig54843f82018-05-02 19:57:21 +02001052static void aio_complete(struct aio_kiocb *iocb, long res, long res2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053{
1054 struct kioctx *ctx = iocb->ki_ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 struct aio_ring *ring;
Kent Overstreet21b40202013-05-07 16:18:47 -07001056 struct io_event *ev_page, *event;
Benjamin LaHaised856f322014-08-24 13:14:05 -04001057 unsigned tail, pos, head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 /*
Kent Overstreet0460fef2013-05-07 16:18:49 -07001061 * Add a completion event to the ring buffer. Must be done holding
Tang Chen4b30f072013-07-03 15:09:16 -07001062 * ctx->completion_lock to prevent other code from messing with the tail
Kent Overstreet0460fef2013-05-07 16:18:49 -07001063 * pointer since we might be called from irq context.
1064 */
1065 spin_lock_irqsave(&ctx->completion_lock, flags);
1066
Kent Overstreet58c85dc2013-05-07 16:18:55 -07001067 tail = ctx->tail;
Kent Overstreet21b40202013-05-07 16:18:47 -07001068 pos = tail + AIO_EVENTS_OFFSET;
1069
Kent Overstreet58c85dc2013-05-07 16:18:55 -07001070 if (++tail >= ctx->nr_events)
Ken Chen4bf69b22005-05-01 08:59:15 -07001071 tail = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
Kent Overstreet58c85dc2013-05-07 16:18:55 -07001073 ev_page = kmap_atomic(ctx->ring_pages[pos / AIO_EVENTS_PER_PAGE]);
Kent Overstreet21b40202013-05-07 16:18:47 -07001074 event = ev_page + pos % AIO_EVENTS_PER_PAGE;
1075
Christoph Hellwig04b2fa92015-02-02 14:49:06 +01001076 event->obj = (u64)(unsigned long)iocb->ki_user_iocb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 event->data = iocb->ki_user_data;
1078 event->res = res;
1079 event->res2 = res2;
1080
Kent Overstreet21b40202013-05-07 16:18:47 -07001081 kunmap_atomic(ev_page);
Kent Overstreet58c85dc2013-05-07 16:18:55 -07001082 flush_dcache_page(ctx->ring_pages[pos / AIO_EVENTS_PER_PAGE]);
Kent Overstreet21b40202013-05-07 16:18:47 -07001083
1084 pr_debug("%p[%u]: %p: %p %Lx %lx %lx\n",
Christoph Hellwig04b2fa92015-02-02 14:49:06 +01001085 ctx, tail, iocb, iocb->ki_user_iocb, iocb->ki_user_data,
Kent Overstreetcaf41672013-05-07 16:18:35 -07001086 res, res2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087
1088 /* after flagging the request as done, we
1089 * must never even look at it again
1090 */
1091 smp_wmb(); /* make event visible before updating tail */
1092
Kent Overstreet58c85dc2013-05-07 16:18:55 -07001093 ctx->tail = tail;
Kent Overstreet21b40202013-05-07 16:18:47 -07001094
Kent Overstreet58c85dc2013-05-07 16:18:55 -07001095 ring = kmap_atomic(ctx->ring_pages[0]);
Benjamin LaHaised856f322014-08-24 13:14:05 -04001096 head = ring->head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 ring->tail = tail;
Cong Wange8e3c3d2011-11-25 23:14:27 +08001098 kunmap_atomic(ring);
Kent Overstreet58c85dc2013-05-07 16:18:55 -07001099 flush_dcache_page(ctx->ring_pages[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100
Benjamin LaHaised856f322014-08-24 13:14:05 -04001101 ctx->completed_events++;
1102 if (ctx->completed_events > 1)
1103 refill_reqs_available(ctx, head, tail);
Kent Overstreet0460fef2013-05-07 16:18:49 -07001104 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1105
Kent Overstreet21b40202013-05-07 16:18:47 -07001106 pr_debug("added to ring %p at [%u]\n", iocb, tail);
Davide Libenzi8d1c98b2008-04-10 21:29:19 -07001107
1108 /*
1109 * Check if the user asked us to deliver the result through an
1110 * eventfd. The eventfd_signal() function is safe to be called
1111 * from IRQ context.
1112 */
Christoph Hellwig54843f82018-05-02 19:57:21 +02001113 if (iocb->ki_eventfd) {
Davide Libenzi8d1c98b2008-04-10 21:29:19 -07001114 eventfd_signal(iocb->ki_eventfd, 1);
Christoph Hellwig54843f82018-05-02 19:57:21 +02001115 eventfd_ctx_put(iocb->ki_eventfd);
1116 }
Davide Libenzi8d1c98b2008-04-10 21:29:19 -07001117
Christoph Hellwig54843f82018-05-02 19:57:21 +02001118 kmem_cache_free(kiocb_cachep, iocb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119
Quentin Barnes6cb2a212008-03-19 17:00:39 -07001120 /*
1121 * We have to order our ring_info tail store above and test
1122 * of the wait list below outside the wait lock. This is
1123 * like in wake_up_bit() where clearing a bit has to be
1124 * ordered with the unlocked test.
1125 */
1126 smp_mb();
1127
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 if (waitqueue_active(&ctx->wait))
1129 wake_up(&ctx->wait);
1130
Kent Overstreete34ecee2013-10-10 19:31:47 -07001131 percpu_ref_put(&ctx->reqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132}
1133
Gu Zheng2be4e7d2014-07-23 18:03:53 +08001134/* aio_read_events_ring
Kent Overstreeta31ad382013-05-07 16:18:45 -07001135 * Pull an event off of the ioctx's event ring. Returns the number of
1136 * events fetched
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 */
Kent Overstreeta31ad382013-05-07 16:18:45 -07001138static long aio_read_events_ring(struct kioctx *ctx,
1139 struct io_event __user *event, long nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 struct aio_ring *ring;
Kent Overstreet5ffac122013-05-09 15:36:07 -07001142 unsigned head, tail, pos;
Kent Overstreeta31ad382013-05-07 16:18:45 -07001143 long ret = 0;
1144 int copy_ret;
1145
Dave Chinner9c9ce762015-02-03 19:29:05 -05001146 /*
1147 * The mutex can block and wake us up and that will cause
1148 * wait_event_interruptible_hrtimeout() to schedule without sleeping
1149 * and repeat. This should be rare enough that it doesn't cause
1150 * peformance issues. See the comment in read_events() for more detail.
1151 */
1152 sched_annotate_sleep();
Kent Overstreet58c85dc2013-05-07 16:18:55 -07001153 mutex_lock(&ctx->ring_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -04001155 /* Access to ->ring_pages here is protected by ctx->ring_lock. */
Kent Overstreet58c85dc2013-05-07 16:18:55 -07001156 ring = kmap_atomic(ctx->ring_pages[0]);
Kent Overstreeta31ad382013-05-07 16:18:45 -07001157 head = ring->head;
Kent Overstreet5ffac122013-05-09 15:36:07 -07001158 tail = ring->tail;
Kent Overstreeta31ad382013-05-07 16:18:45 -07001159 kunmap_atomic(ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
Jeff Moyer2ff396be2014-09-02 13:17:00 -04001161 /*
1162 * Ensure that once we've read the current tail pointer, that
1163 * we also see the events that were stored up to the tail.
1164 */
1165 smp_rmb();
1166
Kent Overstreet5ffac122013-05-09 15:36:07 -07001167 pr_debug("h%u t%u m%u\n", head, tail, ctx->nr_events);
Kent Overstreeta31ad382013-05-07 16:18:45 -07001168
Kent Overstreet5ffac122013-05-09 15:36:07 -07001169 if (head == tail)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 goto out;
1171
Benjamin LaHaiseedfbbf32014-06-24 13:32:51 -04001172 head %= ctx->nr_events;
1173 tail %= ctx->nr_events;
1174
Kent Overstreeta31ad382013-05-07 16:18:45 -07001175 while (ret < nr) {
1176 long avail;
1177 struct io_event *ev;
1178 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179
Kent Overstreet5ffac122013-05-09 15:36:07 -07001180 avail = (head <= tail ? tail : ctx->nr_events) - head;
1181 if (head == tail)
Kent Overstreeta31ad382013-05-07 16:18:45 -07001182 break;
1183
Kent Overstreeta31ad382013-05-07 16:18:45 -07001184 pos = head + AIO_EVENTS_OFFSET;
Kent Overstreet58c85dc2013-05-07 16:18:55 -07001185 page = ctx->ring_pages[pos / AIO_EVENTS_PER_PAGE];
Kent Overstreeta31ad382013-05-07 16:18:45 -07001186 pos %= AIO_EVENTS_PER_PAGE;
1187
Al Virod2988bd42018-05-26 19:13:10 -04001188 avail = min(avail, nr - ret);
1189 avail = min_t(long, avail, AIO_EVENTS_PER_PAGE - pos);
1190
Kent Overstreeta31ad382013-05-07 16:18:45 -07001191 ev = kmap(page);
1192 copy_ret = copy_to_user(event + ret, ev + pos,
1193 sizeof(*ev) * avail);
1194 kunmap(page);
1195
1196 if (unlikely(copy_ret)) {
1197 ret = -EFAULT;
1198 goto out;
1199 }
1200
1201 ret += avail;
1202 head += avail;
Kent Overstreet58c85dc2013-05-07 16:18:55 -07001203 head %= ctx->nr_events;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
Kent Overstreet58c85dc2013-05-07 16:18:55 -07001206 ring = kmap_atomic(ctx->ring_pages[0]);
Kent Overstreeta31ad382013-05-07 16:18:45 -07001207 ring->head = head;
Zhao Hongjiang91d80a82013-04-26 11:03:53 +08001208 kunmap_atomic(ring);
Kent Overstreet58c85dc2013-05-07 16:18:55 -07001209 flush_dcache_page(ctx->ring_pages[0]);
Kent Overstreeta31ad382013-05-07 16:18:45 -07001210
Kent Overstreet5ffac122013-05-09 15:36:07 -07001211 pr_debug("%li h%u t%u\n", ret, head, tail);
Kent Overstreeta31ad382013-05-07 16:18:45 -07001212out:
Kent Overstreet58c85dc2013-05-07 16:18:55 -07001213 mutex_unlock(&ctx->ring_lock);
Kent Overstreeta31ad382013-05-07 16:18:45 -07001214
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 return ret;
1216}
1217
Kent Overstreeta31ad382013-05-07 16:18:45 -07001218static bool aio_read_events(struct kioctx *ctx, long min_nr, long nr,
1219 struct io_event __user *event, long *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220{
Kent Overstreeta31ad382013-05-07 16:18:45 -07001221 long ret = aio_read_events_ring(ctx, event + *i, nr - *i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
Kent Overstreeta31ad382013-05-07 16:18:45 -07001223 if (ret > 0)
1224 *i += ret;
1225
1226 if (unlikely(atomic_read(&ctx->dead)))
1227 ret = -EINVAL;
1228
1229 if (!*i)
1230 *i = ret;
1231
1232 return ret < 0 || *i >= min_nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233}
1234
Kent Overstreeta31ad382013-05-07 16:18:45 -07001235static long read_events(struct kioctx *ctx, long min_nr, long nr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 struct io_event __user *event,
Deepa Dinamanifa2e62a2017-08-04 21:12:32 -07001237 ktime_t until)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238{
Kent Overstreeta31ad382013-05-07 16:18:45 -07001239 long ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
Kent Overstreeta31ad382013-05-07 16:18:45 -07001241 /*
1242 * Note that aio_read_events() is being called as the conditional - i.e.
1243 * we're calling it after prepare_to_wait() has set task state to
1244 * TASK_INTERRUPTIBLE.
1245 *
1246 * But aio_read_events() can block, and if it blocks it's going to flip
1247 * the task state back to TASK_RUNNING.
1248 *
1249 * This should be ok, provided it doesn't flip the state back to
1250 * TASK_RUNNING and return 0 too much - that causes us to spin. That
1251 * will only happen if the mutex_lock() call blocks, and we then find
1252 * the ringbuffer empty. So in practice we should be ok, but it's
1253 * something to be aware of when touching this code.
1254 */
Thomas Gleixner2456e852016-12-25 11:38:40 +01001255 if (until == 0)
Fam Zheng5f785de2014-11-06 20:44:36 +08001256 aio_read_events(ctx, min_nr, nr, event, &ret);
1257 else
1258 wait_event_interruptible_hrtimeout(ctx->wait,
1259 aio_read_events(ctx, min_nr, nr, event, &ret),
1260 until);
Kent Overstreeta31ad382013-05-07 16:18:45 -07001261 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262}
1263
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264/* sys_io_setup:
1265 * Create an aio_context capable of receiving at least nr_events.
1266 * ctxp must not point to an aio_context that already exists, and
1267 * must be initialized to 0 prior to the call. On successful
1268 * creation of the aio_context, *ctxp is filled in with the resulting
1269 * handle. May fail with -EINVAL if *ctxp is not initialized,
1270 * if the specified nr_events exceeds internal limits. May fail
1271 * with -EAGAIN if the specified nr_events exceeds the user's limit
1272 * of available events. May fail with -ENOMEM if insufficient kernel
1273 * resources are available. May fail with -EFAULT if an invalid
1274 * pointer is passed for ctxp. Will fail with -ENOSYS if not
1275 * implemented.
1276 */
Heiko Carstens002c8972009-01-14 14:14:18 +01001277SYSCALL_DEFINE2(io_setup, unsigned, nr_events, aio_context_t __user *, ctxp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278{
1279 struct kioctx *ioctx = NULL;
1280 unsigned long ctx;
1281 long ret;
1282
1283 ret = get_user(ctx, ctxp);
1284 if (unlikely(ret))
1285 goto out;
1286
1287 ret = -EINVAL;
Zach Brownd55b5fd2005-11-07 00:59:31 -08001288 if (unlikely(ctx || nr_events == 0)) {
Kinglong Meeacd88d42015-02-04 21:15:59 +08001289 pr_debug("EINVAL: ctx %lu nr_events %u\n",
Zach Brownd55b5fd2005-11-07 00:59:31 -08001290 ctx, nr_events);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 goto out;
1292 }
1293
1294 ioctx = ioctx_alloc(nr_events);
1295 ret = PTR_ERR(ioctx);
1296 if (!IS_ERR(ioctx)) {
1297 ret = put_user(ioctx->user_id, ctxp);
Al Viroa2e18592012-03-20 16:27:57 -04001298 if (ret)
Anatol Pomozove02ba722014-04-15 11:31:33 -07001299 kill_ioctx(current->mm, ioctx, NULL);
Kent Overstreet723be6e2013-05-28 15:14:48 -07001300 percpu_ref_put(&ioctx->users);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 }
1302
1303out:
1304 return ret;
1305}
1306
Al Viroc00d2c72016-12-20 07:04:57 -05001307#ifdef CONFIG_COMPAT
1308COMPAT_SYSCALL_DEFINE2(io_setup, unsigned, nr_events, u32 __user *, ctx32p)
1309{
1310 struct kioctx *ioctx = NULL;
1311 unsigned long ctx;
1312 long ret;
1313
1314 ret = get_user(ctx, ctx32p);
1315 if (unlikely(ret))
1316 goto out;
1317
1318 ret = -EINVAL;
1319 if (unlikely(ctx || nr_events == 0)) {
1320 pr_debug("EINVAL: ctx %lu nr_events %u\n",
1321 ctx, nr_events);
1322 goto out;
1323 }
1324
1325 ioctx = ioctx_alloc(nr_events);
1326 ret = PTR_ERR(ioctx);
1327 if (!IS_ERR(ioctx)) {
1328 /* truncating is ok because it's a user address */
1329 ret = put_user((u32)ioctx->user_id, ctx32p);
1330 if (ret)
1331 kill_ioctx(current->mm, ioctx, NULL);
1332 percpu_ref_put(&ioctx->users);
1333 }
1334
1335out:
1336 return ret;
1337}
1338#endif
1339
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340/* sys_io_destroy:
1341 * Destroy the aio_context specified. May cancel any outstanding
1342 * AIOs and block on completion. Will fail with -ENOSYS if not
Satoru Takeuchi642b5122010-08-05 11:23:11 -07001343 * implemented. May fail with -EINVAL if the context pointed to
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 * is invalid.
1345 */
Heiko Carstens002c8972009-01-14 14:14:18 +01001346SYSCALL_DEFINE1(io_destroy, aio_context_t, ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347{
1348 struct kioctx *ioctx = lookup_ioctx(ctx);
1349 if (likely(NULL != ioctx)) {
Jens Axboedc48e562015-04-15 11:17:23 -06001350 struct ctx_rq_wait wait;
Benjamin LaHaisefb2d4482014-04-29 12:45:17 -04001351 int ret;
Anatol Pomozove02ba722014-04-15 11:31:33 -07001352
Jens Axboedc48e562015-04-15 11:17:23 -06001353 init_completion(&wait.comp);
1354 atomic_set(&wait.count, 1);
1355
Anatol Pomozove02ba722014-04-15 11:31:33 -07001356 /* Pass requests_done to kill_ioctx() where it can be set
1357 * in a thread-safe way. If we try to set it here then we have
1358 * a race condition if two io_destroy() called simultaneously.
1359 */
Jens Axboedc48e562015-04-15 11:17:23 -06001360 ret = kill_ioctx(current->mm, ioctx, &wait);
Kent Overstreet723be6e2013-05-28 15:14:48 -07001361 percpu_ref_put(&ioctx->users);
Anatol Pomozove02ba722014-04-15 11:31:33 -07001362
1363 /* Wait until all IO for the context are done. Otherwise kernel
1364 * keep using user-space buffers even if user thinks the context
1365 * is destroyed.
1366 */
Benjamin LaHaisefb2d4482014-04-29 12:45:17 -04001367 if (!ret)
Jens Axboedc48e562015-04-15 11:17:23 -06001368 wait_for_completion(&wait.comp);
Anatol Pomozove02ba722014-04-15 11:31:33 -07001369
Benjamin LaHaisefb2d4482014-04-29 12:45:17 -04001370 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 }
Kinglong Meeacd88d42015-02-04 21:15:59 +08001372 pr_debug("EINVAL: invalid context id\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 return -EINVAL;
1374}
1375
Al Viro3c96c7f2018-05-28 13:37:43 -04001376static void aio_remove_iocb(struct aio_kiocb *iocb)
1377{
1378 struct kioctx *ctx = iocb->ki_ctx;
1379 unsigned long flags;
1380
1381 spin_lock_irqsave(&ctx->ctx_lock, flags);
1382 list_del(&iocb->ki_list);
1383 spin_unlock_irqrestore(&ctx->ctx_lock, flags);
1384}
1385
Christoph Hellwig54843f82018-05-02 19:57:21 +02001386static void aio_complete_rw(struct kiocb *kiocb, long res, long res2)
1387{
1388 struct aio_kiocb *iocb = container_of(kiocb, struct aio_kiocb, rw);
1389
Al Viro3c96c7f2018-05-28 13:37:43 -04001390 if (!list_empty_careful(&iocb->ki_list))
1391 aio_remove_iocb(iocb);
1392
Christoph Hellwig54843f82018-05-02 19:57:21 +02001393 if (kiocb->ki_flags & IOCB_WRITE) {
1394 struct inode *inode = file_inode(kiocb->ki_filp);
1395
1396 /*
1397 * Tell lockdep we inherited freeze protection from submission
1398 * thread.
1399 */
1400 if (S_ISREG(inode->i_mode))
1401 __sb_writers_acquired(inode->i_sb, SB_FREEZE_WRITE);
1402 file_end_write(kiocb->ki_filp);
1403 }
1404
1405 fput(kiocb->ki_filp);
1406 aio_complete(iocb, res, res2);
1407}
1408
1409static int aio_prep_rw(struct kiocb *req, struct iocb *iocb)
1410{
1411 int ret;
1412
1413 req->ki_filp = fget(iocb->aio_fildes);
1414 if (unlikely(!req->ki_filp))
1415 return -EBADF;
1416 req->ki_complete = aio_complete_rw;
1417 req->ki_pos = iocb->aio_offset;
1418 req->ki_flags = iocb_flags(req->ki_filp);
1419 if (iocb->aio_flags & IOCB_FLAG_RESFD)
1420 req->ki_flags |= IOCB_EVENTFD;
Adam Manzanaresfc287242018-05-22 10:52:18 -07001421 req->ki_hint = ki_hint_validate(file_write_hint(req->ki_filp));
Adam Manzanaresd9a08a92018-05-22 10:52:19 -07001422 if (iocb->aio_flags & IOCB_FLAG_IOPRIO) {
1423 /*
1424 * If the IOCB_FLAG_IOPRIO flag of aio_flags is set, then
1425 * aio_reqprio is interpreted as an I/O scheduling
1426 * class and priority.
1427 */
1428 ret = ioprio_check_cap(iocb->aio_reqprio);
1429 if (ret) {
Adam Manzanares9a6d9a62018-06-04 10:59:57 -07001430 pr_debug("aio ioprio check cap error: %d\n", ret);
1431 return ret;
Adam Manzanaresd9a08a92018-05-22 10:52:19 -07001432 }
1433
1434 req->ki_ioprio = iocb->aio_reqprio;
1435 } else
1436 req->ki_ioprio = IOPRIO_PRIO_VALUE(IOPRIO_CLASS_NONE, 0);
1437
Christoph Hellwig54843f82018-05-02 19:57:21 +02001438 ret = kiocb_set_rw_flags(req, iocb->aio_rw_flags);
1439 if (unlikely(ret))
1440 fput(req->ki_filp);
1441 return ret;
1442}
1443
Christoph Hellwig89319d312016-10-30 11:42:03 -05001444static int aio_setup_rw(int rw, struct iocb *iocb, struct iovec **iovec,
1445 bool vectored, bool compat, struct iov_iter *iter)
Badari Pulavartyeed4e512006-09-30 23:28:49 -07001446{
Christoph Hellwig89319d312016-10-30 11:42:03 -05001447 void __user *buf = (void __user *)(uintptr_t)iocb->aio_buf;
1448 size_t len = iocb->aio_nbytes;
1449
1450 if (!vectored) {
1451 ssize_t ret = import_single_range(rw, buf, len, *iovec, iter);
1452 *iovec = NULL;
1453 return ret;
1454 }
Jeff Moyer9d85cba72010-05-26 14:44:26 -07001455#ifdef CONFIG_COMPAT
1456 if (compat)
Christoph Hellwig89319d312016-10-30 11:42:03 -05001457 return compat_import_iovec(rw, buf, len, UIO_FASTIOV, iovec,
1458 iter);
Jeff Moyer9d85cba72010-05-26 14:44:26 -07001459#endif
Christoph Hellwig89319d312016-10-30 11:42:03 -05001460 return import_iovec(rw, buf, len, UIO_FASTIOV, iovec, iter);
Badari Pulavartyeed4e512006-09-30 23:28:49 -07001461}
1462
Al Viro9061d142018-05-26 19:11:40 -04001463static inline void aio_rw_done(struct kiocb *req, ssize_t ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464{
Christoph Hellwig89319d312016-10-30 11:42:03 -05001465 switch (ret) {
1466 case -EIOCBQUEUED:
Al Viro9061d142018-05-26 19:11:40 -04001467 break;
Christoph Hellwig89319d312016-10-30 11:42:03 -05001468 case -ERESTARTSYS:
1469 case -ERESTARTNOINTR:
1470 case -ERESTARTNOHAND:
1471 case -ERESTART_RESTARTBLOCK:
Kent Overstreet41ef4eb2013-05-07 16:19:11 -07001472 /*
1473 * There's no easy way to restart the syscall since other AIO's
1474 * may be already running. Just fail this IO with EINTR.
1475 */
Christoph Hellwig89319d312016-10-30 11:42:03 -05001476 ret = -EINTR;
1477 /*FALLTHRU*/
1478 default:
Christoph Hellwig54843f82018-05-02 19:57:21 +02001479 aio_complete_rw(req, ret, 0);
Kent Overstreet41ef4eb2013-05-07 16:19:11 -07001480 }
Christoph Hellwig89319d312016-10-30 11:42:03 -05001481}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
Christoph Hellwig89319d312016-10-30 11:42:03 -05001483static ssize_t aio_read(struct kiocb *req, struct iocb *iocb, bool vectored,
1484 bool compat)
1485{
Christoph Hellwig89319d312016-10-30 11:42:03 -05001486 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
1487 struct iov_iter iter;
Christoph Hellwig54843f82018-05-02 19:57:21 +02001488 struct file *file;
Christoph Hellwig89319d312016-10-30 11:42:03 -05001489 ssize_t ret;
1490
Christoph Hellwig54843f82018-05-02 19:57:21 +02001491 ret = aio_prep_rw(req, iocb);
1492 if (ret)
1493 return ret;
1494 file = req->ki_filp;
1495
1496 ret = -EBADF;
Christoph Hellwig89319d312016-10-30 11:42:03 -05001497 if (unlikely(!(file->f_mode & FMODE_READ)))
Christoph Hellwig54843f82018-05-02 19:57:21 +02001498 goto out_fput;
1499 ret = -EINVAL;
Christoph Hellwig89319d312016-10-30 11:42:03 -05001500 if (unlikely(!file->f_op->read_iter))
Christoph Hellwig54843f82018-05-02 19:57:21 +02001501 goto out_fput;
Christoph Hellwig89319d312016-10-30 11:42:03 -05001502
1503 ret = aio_setup_rw(READ, iocb, &iovec, vectored, compat, &iter);
1504 if (ret)
Christoph Hellwig54843f82018-05-02 19:57:21 +02001505 goto out_fput;
Christoph Hellwig89319d312016-10-30 11:42:03 -05001506 ret = rw_verify_area(READ, file, &req->ki_pos, iov_iter_count(&iter));
1507 if (!ret)
Al Viro9061d142018-05-26 19:11:40 -04001508 aio_rw_done(req, call_read_iter(file, req, &iter));
Christoph Hellwig89319d312016-10-30 11:42:03 -05001509 kfree(iovec);
Christoph Hellwig54843f82018-05-02 19:57:21 +02001510out_fput:
Al Viro9061d142018-05-26 19:11:40 -04001511 if (unlikely(ret))
Christoph Hellwig54843f82018-05-02 19:57:21 +02001512 fput(file);
Christoph Hellwig89319d312016-10-30 11:42:03 -05001513 return ret;
1514}
1515
1516static ssize_t aio_write(struct kiocb *req, struct iocb *iocb, bool vectored,
1517 bool compat)
1518{
Christoph Hellwig89319d312016-10-30 11:42:03 -05001519 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
1520 struct iov_iter iter;
Christoph Hellwig54843f82018-05-02 19:57:21 +02001521 struct file *file;
Christoph Hellwig89319d312016-10-30 11:42:03 -05001522 ssize_t ret;
1523
Christoph Hellwig54843f82018-05-02 19:57:21 +02001524 ret = aio_prep_rw(req, iocb);
1525 if (ret)
1526 return ret;
1527 file = req->ki_filp;
1528
1529 ret = -EBADF;
Christoph Hellwig89319d312016-10-30 11:42:03 -05001530 if (unlikely(!(file->f_mode & FMODE_WRITE)))
Christoph Hellwig54843f82018-05-02 19:57:21 +02001531 goto out_fput;
1532 ret = -EINVAL;
Christoph Hellwig89319d312016-10-30 11:42:03 -05001533 if (unlikely(!file->f_op->write_iter))
Christoph Hellwig54843f82018-05-02 19:57:21 +02001534 goto out_fput;
Christoph Hellwig89319d312016-10-30 11:42:03 -05001535
1536 ret = aio_setup_rw(WRITE, iocb, &iovec, vectored, compat, &iter);
1537 if (ret)
Christoph Hellwig54843f82018-05-02 19:57:21 +02001538 goto out_fput;
Christoph Hellwig89319d312016-10-30 11:42:03 -05001539 ret = rw_verify_area(WRITE, file, &req->ki_pos, iov_iter_count(&iter));
1540 if (!ret) {
Jan Kara70fe2f42016-10-30 11:42:04 -05001541 /*
Christoph Hellwig92ce4722018-04-06 09:28:17 +02001542 * Open-code file_start_write here to grab freeze protection,
Christoph Hellwig54843f82018-05-02 19:57:21 +02001543 * which will be released by another thread in
1544 * aio_complete_rw(). Fool lockdep by telling it the lock got
1545 * released so that it doesn't complain about the held lock when
1546 * we return to userspace.
Jan Kara70fe2f42016-10-30 11:42:04 -05001547 */
Christoph Hellwig92ce4722018-04-06 09:28:17 +02001548 if (S_ISREG(file_inode(file)->i_mode)) {
1549 __sb_start_write(file_inode(file)->i_sb, SB_FREEZE_WRITE, true);
Shaohua Lia12f1ae2016-12-13 12:09:56 -08001550 __sb_writers_release(file_inode(file)->i_sb, SB_FREEZE_WRITE);
Christoph Hellwig92ce4722018-04-06 09:28:17 +02001551 }
1552 req->ki_flags |= IOCB_WRITE;
Al Viro9061d142018-05-26 19:11:40 -04001553 aio_rw_done(req, call_write_iter(file, req, &iter));
Christoph Hellwig89319d312016-10-30 11:42:03 -05001554 }
1555 kfree(iovec);
Christoph Hellwig54843f82018-05-02 19:57:21 +02001556out_fput:
Al Viro9061d142018-05-26 19:11:40 -04001557 if (unlikely(ret))
Christoph Hellwig54843f82018-05-02 19:57:21 +02001558 fput(file);
Christoph Hellwig89319d312016-10-30 11:42:03 -05001559 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560}
1561
Christoph Hellwiga3c0d432018-03-27 19:18:57 +02001562static void aio_fsync_work(struct work_struct *work)
1563{
1564 struct fsync_iocb *req = container_of(work, struct fsync_iocb, work);
1565 int ret;
1566
1567 ret = vfs_fsync(req->file, req->datasync);
1568 fput(req->file);
1569 aio_complete(container_of(req, struct aio_kiocb, fsync), ret, 0);
1570}
1571
1572static int aio_fsync(struct fsync_iocb *req, struct iocb *iocb, bool datasync)
1573{
1574 if (unlikely(iocb->aio_buf || iocb->aio_offset || iocb->aio_nbytes ||
1575 iocb->aio_rw_flags))
1576 return -EINVAL;
Christoph Hellwiga3c0d432018-03-27 19:18:57 +02001577 req->file = fget(iocb->aio_fildes);
1578 if (unlikely(!req->file))
1579 return -EBADF;
1580 if (unlikely(!req->file->f_op->fsync)) {
1581 fput(req->file);
1582 return -EINVAL;
1583 }
1584
1585 req->datasync = datasync;
1586 INIT_WORK(&req->work, aio_fsync_work);
1587 schedule_work(&req->work);
Al Viro9061d142018-05-26 19:11:40 -04001588 return 0;
Christoph Hellwiga3c0d432018-03-27 19:18:57 +02001589}
1590
Christoph Hellwig2c14fa82018-03-20 16:34:36 +01001591/* need to use list_del_init so we can check if item was present */
1592static inline bool __aio_poll_remove(struct poll_iocb *req)
1593{
1594 if (list_empty(&req->wait.entry))
1595 return false;
1596 list_del_init(&req->wait.entry);
1597 return true;
1598}
1599
Al Viro3c96c7f2018-05-28 13:37:43 -04001600static inline void __aio_poll_complete(struct aio_kiocb *iocb, __poll_t mask)
Christoph Hellwig2c14fa82018-03-20 16:34:36 +01001601{
Al Viro3c96c7f2018-05-28 13:37:43 -04001602 fput(iocb->poll.file);
Christoph Hellwig2c14fa82018-03-20 16:34:36 +01001603 aio_complete(iocb, mangle_poll(mask), 0);
Christoph Hellwig2c14fa82018-03-20 16:34:36 +01001604}
1605
1606static void aio_poll_work(struct work_struct *work)
1607{
Al Viro3c96c7f2018-05-28 13:37:43 -04001608 struct aio_kiocb *iocb = container_of(work, struct aio_kiocb, poll.work);
Christoph Hellwig2c14fa82018-03-20 16:34:36 +01001609
Al Viro3c96c7f2018-05-28 13:37:43 -04001610 if (!list_empty_careful(&iocb->ki_list))
1611 aio_remove_iocb(iocb);
1612 __aio_poll_complete(iocb, iocb->poll.events);
Christoph Hellwig2c14fa82018-03-20 16:34:36 +01001613}
1614
1615static int aio_poll_cancel(struct kiocb *iocb)
1616{
1617 struct aio_kiocb *aiocb = container_of(iocb, struct aio_kiocb, rw);
1618 struct poll_iocb *req = &aiocb->poll;
1619 struct wait_queue_head *head = req->head;
1620 bool found = false;
1621
1622 spin_lock(&head->lock);
1623 found = __aio_poll_remove(req);
1624 spin_unlock(&head->lock);
1625
1626 if (found) {
1627 req->events = 0;
1628 INIT_WORK(&req->work, aio_poll_work);
1629 schedule_work(&req->work);
1630 }
1631 return 0;
1632}
1633
1634static int aio_poll_wake(struct wait_queue_entry *wait, unsigned mode, int sync,
1635 void *key)
1636{
1637 struct poll_iocb *req = container_of(wait, struct poll_iocb, wait);
Christoph Hellwig1962da02018-05-20 19:19:30 +02001638 struct aio_kiocb *iocb = container_of(req, struct aio_kiocb, poll);
Christoph Hellwig2c14fa82018-03-20 16:34:36 +01001639 struct file *file = req->file;
1640 __poll_t mask = key_to_poll(key);
1641
1642 assert_spin_locked(&req->head->lock);
1643
1644 /* for instances that support it check for an event match first: */
1645 if (mask && !(mask & req->events))
1646 return 0;
1647
Christoph Hellwig2739b802018-06-11 08:50:10 +02001648 mask = file->f_op->poll_mask(file, req->events) & req->events;
Christoph Hellwig2c14fa82018-03-20 16:34:36 +01001649 if (!mask)
1650 return 0;
1651
1652 __aio_poll_remove(req);
1653
Christoph Hellwig1962da02018-05-20 19:19:30 +02001654 /*
1655 * Try completing without a context switch if we can acquire ctx_lock
1656 * without spinning. Otherwise we need to defer to a workqueue to
1657 * avoid a deadlock due to the lock order.
1658 */
1659 if (spin_trylock(&iocb->ki_ctx->ctx_lock)) {
1660 list_del_init(&iocb->ki_list);
1661 spin_unlock(&iocb->ki_ctx->ctx_lock);
1662
Al Viro3c96c7f2018-05-28 13:37:43 -04001663 __aio_poll_complete(iocb, mask);
Christoph Hellwig1962da02018-05-20 19:19:30 +02001664 } else {
1665 req->events = mask;
1666 INIT_WORK(&req->work, aio_poll_work);
1667 schedule_work(&req->work);
1668 }
1669
Christoph Hellwig2c14fa82018-03-20 16:34:36 +01001670 return 1;
1671}
1672
1673static ssize_t aio_poll(struct aio_kiocb *aiocb, struct iocb *iocb)
1674{
1675 struct kioctx *ctx = aiocb->ki_ctx;
1676 struct poll_iocb *req = &aiocb->poll;
1677 __poll_t mask;
1678
1679 /* reject any unknown events outside the normal event mask. */
1680 if ((u16)iocb->aio_buf != iocb->aio_buf)
1681 return -EINVAL;
1682 /* reject fields that are not defined for poll */
1683 if (iocb->aio_offset || iocb->aio_nbytes || iocb->aio_rw_flags)
1684 return -EINVAL;
1685
1686 req->events = demangle_poll(iocb->aio_buf) | EPOLLERR | EPOLLHUP;
1687 req->file = fget(iocb->aio_fildes);
1688 if (unlikely(!req->file))
1689 return -EBADF;
1690 if (!file_has_poll_mask(req->file))
1691 goto out_fail;
1692
1693 req->head = req->file->f_op->get_poll_head(req->file, req->events);
1694 if (!req->head)
1695 goto out_fail;
1696 if (IS_ERR(req->head)) {
1697 mask = EPOLLERR;
1698 goto done;
1699 }
1700
1701 init_waitqueue_func_entry(&req->wait, aio_poll_wake);
1702 aiocb->ki_cancel = aio_poll_cancel;
1703
1704 spin_lock_irq(&ctx->ctx_lock);
1705 spin_lock(&req->head->lock);
Christoph Hellwig2739b802018-06-11 08:50:10 +02001706 mask = req->file->f_op->poll_mask(req->file, req->events) & req->events;
Christoph Hellwig2c14fa82018-03-20 16:34:36 +01001707 if (!mask) {
1708 __add_wait_queue(req->head, &req->wait);
1709 list_add_tail(&aiocb->ki_list, &ctx->active_reqs);
1710 }
1711 spin_unlock(&req->head->lock);
1712 spin_unlock_irq(&ctx->ctx_lock);
1713done:
1714 if (mask)
Al Viro3c96c7f2018-05-28 13:37:43 -04001715 __aio_poll_complete(aiocb, mask);
Al Viro9061d142018-05-26 19:11:40 -04001716 return 0;
Christoph Hellwig2c14fa82018-03-20 16:34:36 +01001717out_fail:
1718 fput(req->file);
1719 return -EINVAL; /* same as no support for IOCB_CMD_POLL */
1720}
1721
Adrian Bunkd5470b52008-04-29 00:58:57 -07001722static int io_submit_one(struct kioctx *ctx, struct iocb __user *user_iocb,
Al Viro95af8492018-05-26 19:43:16 -04001723 bool compat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724{
Christoph Hellwig04b2fa92015-02-02 14:49:06 +01001725 struct aio_kiocb *req;
Al Viro95af8492018-05-26 19:43:16 -04001726 struct iocb iocb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 ssize_t ret;
1728
Al Viro95af8492018-05-26 19:43:16 -04001729 if (unlikely(copy_from_user(&iocb, user_iocb, sizeof(iocb))))
1730 return -EFAULT;
1731
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 /* enforce forwards compatibility on users */
Al Viro95af8492018-05-26 19:43:16 -04001733 if (unlikely(iocb.aio_reserved2)) {
Kent Overstreetcaf41672013-05-07 16:18:35 -07001734 pr_debug("EINVAL: reserve field set\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 return -EINVAL;
1736 }
1737
1738 /* prevent overflows */
1739 if (unlikely(
Al Viro95af8492018-05-26 19:43:16 -04001740 (iocb.aio_buf != (unsigned long)iocb.aio_buf) ||
1741 (iocb.aio_nbytes != (size_t)iocb.aio_nbytes) ||
1742 ((ssize_t)iocb.aio_nbytes < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 )) {
Kinglong Meeacd88d42015-02-04 21:15:59 +08001744 pr_debug("EINVAL: overflow check\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 return -EINVAL;
1746 }
1747
Kent Overstreet41ef4eb2013-05-07 16:19:11 -07001748 req = aio_get_req(ctx);
Kent Overstreet1d98ebf2013-05-07 16:18:37 -07001749 if (unlikely(!req))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 return -EAGAIN;
Kent Overstreet1d98ebf2013-05-07 16:18:37 -07001751
Al Viro95af8492018-05-26 19:43:16 -04001752 if (iocb.aio_flags & IOCB_FLAG_RESFD) {
Davide Libenzi9c3060b2007-05-10 22:23:21 -07001753 /*
1754 * If the IOCB_FLAG_RESFD flag of aio_flags is set, get an
1755 * instance of the file* now. The file descriptor must be
1756 * an eventfd() fd, and will be signaled for each completed
1757 * event using the eventfd_signal() function.
1758 */
Al Viro95af8492018-05-26 19:43:16 -04001759 req->ki_eventfd = eventfd_ctx_fdget((int) iocb.aio_resfd);
Hirofumi Nakagawa801678c2008-04-29 01:03:09 -07001760 if (IS_ERR(req->ki_eventfd)) {
Davide Libenzi9c3060b2007-05-10 22:23:21 -07001761 ret = PTR_ERR(req->ki_eventfd);
Davide Libenzi87c3a862009-03-18 17:04:19 -07001762 req->ki_eventfd = NULL;
Davide Libenzi9c3060b2007-05-10 22:23:21 -07001763 goto out_put_req;
1764 }
Goldwyn Rodrigues9830f4b2017-06-20 07:05:42 -05001765 }
1766
Kent Overstreet8a660892013-05-07 16:19:10 -07001767 ret = put_user(KIOCB_KEY, &user_iocb->aio_key);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 if (unlikely(ret)) {
Kent Overstreetcaf41672013-05-07 16:18:35 -07001769 pr_debug("EFAULT: aio_key\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 goto out_put_req;
1771 }
1772
Christoph Hellwig04b2fa92015-02-02 14:49:06 +01001773 req->ki_user_iocb = user_iocb;
Al Viro95af8492018-05-26 19:43:16 -04001774 req->ki_user_data = iocb.aio_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775
Al Viro95af8492018-05-26 19:43:16 -04001776 switch (iocb.aio_lio_opcode) {
Christoph Hellwig89319d312016-10-30 11:42:03 -05001777 case IOCB_CMD_PREAD:
Al Viro95af8492018-05-26 19:43:16 -04001778 ret = aio_read(&req->rw, &iocb, false, compat);
Christoph Hellwig89319d312016-10-30 11:42:03 -05001779 break;
1780 case IOCB_CMD_PWRITE:
Al Viro95af8492018-05-26 19:43:16 -04001781 ret = aio_write(&req->rw, &iocb, false, compat);
Christoph Hellwig89319d312016-10-30 11:42:03 -05001782 break;
1783 case IOCB_CMD_PREADV:
Al Viro95af8492018-05-26 19:43:16 -04001784 ret = aio_read(&req->rw, &iocb, true, compat);
Christoph Hellwig89319d312016-10-30 11:42:03 -05001785 break;
1786 case IOCB_CMD_PWRITEV:
Al Viro95af8492018-05-26 19:43:16 -04001787 ret = aio_write(&req->rw, &iocb, true, compat);
Christoph Hellwig89319d312016-10-30 11:42:03 -05001788 break;
Christoph Hellwiga3c0d432018-03-27 19:18:57 +02001789 case IOCB_CMD_FSYNC:
Al Viro95af8492018-05-26 19:43:16 -04001790 ret = aio_fsync(&req->fsync, &iocb, false);
Christoph Hellwiga3c0d432018-03-27 19:18:57 +02001791 break;
1792 case IOCB_CMD_FDSYNC:
Al Viro95af8492018-05-26 19:43:16 -04001793 ret = aio_fsync(&req->fsync, &iocb, true);
Christoph Hellwigac060cb2018-05-28 07:19:49 +02001794 break;
Christoph Hellwig2c14fa82018-03-20 16:34:36 +01001795 case IOCB_CMD_POLL:
Al Viro95af8492018-05-26 19:43:16 -04001796 ret = aio_poll(req, &iocb);
Christoph Hellwiga3c0d432018-03-27 19:18:57 +02001797 break;
Christoph Hellwig89319d312016-10-30 11:42:03 -05001798 default:
Al Viro95af8492018-05-26 19:43:16 -04001799 pr_debug("invalid aio operation %d\n", iocb.aio_lio_opcode);
Christoph Hellwig89319d312016-10-30 11:42:03 -05001800 ret = -EINVAL;
1801 break;
1802 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803
Christoph Hellwig92ce4722018-04-06 09:28:17 +02001804 /*
Al Viro9061d142018-05-26 19:11:40 -04001805 * If ret is 0, we'd either done aio_complete() ourselves or have
1806 * arranged for that to be done asynchronously. Anything non-zero
1807 * means that we need to destroy req ourselves.
Christoph Hellwig92ce4722018-04-06 09:28:17 +02001808 */
Al Viro9061d142018-05-26 19:11:40 -04001809 if (ret)
Christoph Hellwig89319d312016-10-30 11:42:03 -05001810 goto out_put_req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812out_put_req:
Kent Overstreete1bdd5f2013-04-26 10:58:39 +10001813 put_reqs_available(ctx, 1);
Kent Overstreete34ecee2013-10-10 19:31:47 -07001814 percpu_ref_put(&ctx->reqs);
Christoph Hellwig54843f82018-05-02 19:57:21 +02001815 if (req->ki_eventfd)
1816 eventfd_ctx_put(req->ki_eventfd);
1817 kmem_cache_free(kiocb_cachep, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 return ret;
1819}
1820
Jeff Moyer9d85cba72010-05-26 14:44:26 -07001821/* sys_io_submit:
1822 * Queue the nr iocbs pointed to by iocbpp for processing. Returns
1823 * the number of iocbs queued. May return -EINVAL if the aio_context
1824 * specified by ctx_id is invalid, if nr is < 0, if the iocb at
1825 * *iocbpp[0] is not properly initialized, if the operation specified
1826 * is invalid for the file descriptor in the iocb. May fail with
1827 * -EFAULT if any of the data structures point to invalid data. May
1828 * fail with -EBADF if the file descriptor specified in the first
1829 * iocb is invalid. May fail with -EAGAIN if insufficient resources
1830 * are available to queue any iocbs. Will return 0 if nr is 0. Will
1831 * fail with -ENOSYS if not implemented.
1832 */
1833SYSCALL_DEFINE3(io_submit, aio_context_t, ctx_id, long, nr,
1834 struct iocb __user * __user *, iocbpp)
1835{
Al Viro67ba0492018-05-26 20:10:07 -04001836 struct kioctx *ctx;
1837 long ret = 0;
1838 int i = 0;
1839 struct blk_plug plug;
1840
1841 if (unlikely(nr < 0))
1842 return -EINVAL;
1843
Al Viro67ba0492018-05-26 20:10:07 -04001844 ctx = lookup_ioctx(ctx_id);
1845 if (unlikely(!ctx)) {
1846 pr_debug("EINVAL: invalid context id\n");
1847 return -EINVAL;
1848 }
1849
Al Viro1da92772018-05-26 20:10:07 -04001850 if (nr > ctx->nr_events)
1851 nr = ctx->nr_events;
1852
Al Viro67ba0492018-05-26 20:10:07 -04001853 blk_start_plug(&plug);
1854 for (i = 0; i < nr; i++) {
1855 struct iocb __user *user_iocb;
1856
1857 if (unlikely(get_user(user_iocb, iocbpp + i))) {
1858 ret = -EFAULT;
1859 break;
1860 }
1861
1862 ret = io_submit_one(ctx, user_iocb, false);
1863 if (ret)
1864 break;
1865 }
1866 blk_finish_plug(&plug);
1867
1868 percpu_ref_put(&ctx->users);
1869 return i ? i : ret;
Jeff Moyer9d85cba72010-05-26 14:44:26 -07001870}
1871
Al Viroc00d2c72016-12-20 07:04:57 -05001872#ifdef CONFIG_COMPAT
Al Viroc00d2c72016-12-20 07:04:57 -05001873COMPAT_SYSCALL_DEFINE3(io_submit, compat_aio_context_t, ctx_id,
Al Viro67ba0492018-05-26 20:10:07 -04001874 int, nr, compat_uptr_t __user *, iocbpp)
Al Viroc00d2c72016-12-20 07:04:57 -05001875{
Al Viro67ba0492018-05-26 20:10:07 -04001876 struct kioctx *ctx;
1877 long ret = 0;
1878 int i = 0;
1879 struct blk_plug plug;
Al Viroc00d2c72016-12-20 07:04:57 -05001880
1881 if (unlikely(nr < 0))
1882 return -EINVAL;
1883
Al Viro67ba0492018-05-26 20:10:07 -04001884 ctx = lookup_ioctx(ctx_id);
1885 if (unlikely(!ctx)) {
1886 pr_debug("EINVAL: invalid context id\n");
1887 return -EINVAL;
1888 }
1889
Al Viro1da92772018-05-26 20:10:07 -04001890 if (nr > ctx->nr_events)
1891 nr = ctx->nr_events;
1892
Al Viro67ba0492018-05-26 20:10:07 -04001893 blk_start_plug(&plug);
1894 for (i = 0; i < nr; i++) {
1895 compat_uptr_t user_iocb;
1896
1897 if (unlikely(get_user(user_iocb, iocbpp + i))) {
1898 ret = -EFAULT;
1899 break;
1900 }
1901
1902 ret = io_submit_one(ctx, compat_ptr(user_iocb), true);
1903 if (ret)
1904 break;
1905 }
1906 blk_finish_plug(&plug);
1907
1908 percpu_ref_put(&ctx->users);
1909 return i ? i : ret;
Al Viroc00d2c72016-12-20 07:04:57 -05001910}
1911#endif
1912
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913/* lookup_kiocb
1914 * Finds a given iocb for cancellation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 */
Christoph Hellwig04b2fa92015-02-02 14:49:06 +01001916static struct aio_kiocb *
Christoph Hellwigf3a27522018-03-30 11:19:25 +02001917lookup_kiocb(struct kioctx *ctx, struct iocb __user *iocb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918{
Christoph Hellwig04b2fa92015-02-02 14:49:06 +01001919 struct aio_kiocb *kiocb;
Zach Brownd00689a2005-11-13 16:07:34 -08001920
1921 assert_spin_locked(&ctx->ctx_lock);
1922
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 /* TODO: use a hash or array, this sucks. */
Christoph Hellwig04b2fa92015-02-02 14:49:06 +01001924 list_for_each_entry(kiocb, &ctx->active_reqs, ki_list) {
1925 if (kiocb->ki_user_iocb == iocb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 return kiocb;
1927 }
1928 return NULL;
1929}
1930
1931/* sys_io_cancel:
1932 * Attempts to cancel an iocb previously passed to io_submit. If
1933 * the operation is successfully cancelled, the resulting event is
1934 * copied into the memory pointed to by result without being placed
1935 * into the completion queue and 0 is returned. May fail with
1936 * -EFAULT if any of the data structures pointed to are invalid.
1937 * May fail with -EINVAL if aio_context specified by ctx_id is
1938 * invalid. May fail with -EAGAIN if the iocb specified was not
1939 * cancelled. Will fail with -ENOSYS if not implemented.
1940 */
Heiko Carstens002c8972009-01-14 14:14:18 +01001941SYSCALL_DEFINE3(io_cancel, aio_context_t, ctx_id, struct iocb __user *, iocb,
1942 struct io_event __user *, result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 struct kioctx *ctx;
Christoph Hellwig04b2fa92015-02-02 14:49:06 +01001945 struct aio_kiocb *kiocb;
Christoph Hellwig888933f2018-05-23 14:11:02 +02001946 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 u32 key;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948
Christoph Hellwigf3a27522018-03-30 11:19:25 +02001949 if (unlikely(get_user(key, &iocb->aio_key)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 return -EFAULT;
Christoph Hellwigf3a27522018-03-30 11:19:25 +02001951 if (unlikely(key != KIOCB_KEY))
1952 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953
1954 ctx = lookup_ioctx(ctx_id);
1955 if (unlikely(!ctx))
1956 return -EINVAL;
1957
1958 spin_lock_irq(&ctx->ctx_lock);
Christoph Hellwigf3a27522018-03-30 11:19:25 +02001959 kiocb = lookup_kiocb(ctx, iocb);
Christoph Hellwig888933f2018-05-23 14:11:02 +02001960 if (kiocb) {
1961 ret = kiocb->ki_cancel(&kiocb->rw);
1962 list_del_init(&kiocb->ki_list);
1963 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 spin_unlock_irq(&ctx->ctx_lock);
1965
Kent Overstreet906b9732013-05-07 16:18:31 -07001966 if (!ret) {
Kent Overstreetbec68faa2013-05-13 14:45:08 -07001967 /*
1968 * The result argument is no longer used - the io_event is
1969 * always delivered via the ring buffer. -EINPROGRESS indicates
1970 * cancellation is progress:
Kent Overstreet906b9732013-05-07 16:18:31 -07001971 */
Kent Overstreetbec68faa2013-05-13 14:45:08 -07001972 ret = -EINPROGRESS;
Kent Overstreet906b9732013-05-07 16:18:31 -07001973 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974
Kent Overstreet723be6e2013-05-28 15:14:48 -07001975 percpu_ref_put(&ctx->users);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976
1977 return ret;
1978}
1979
Deepa Dinamanifa2e62a2017-08-04 21:12:32 -07001980static long do_io_getevents(aio_context_t ctx_id,
1981 long min_nr,
1982 long nr,
1983 struct io_event __user *events,
1984 struct timespec64 *ts)
1985{
1986 ktime_t until = ts ? timespec64_to_ktime(*ts) : KTIME_MAX;
1987 struct kioctx *ioctx = lookup_ioctx(ctx_id);
1988 long ret = -EINVAL;
1989
1990 if (likely(ioctx)) {
1991 if (likely(min_nr <= nr && min_nr >= 0))
1992 ret = read_events(ioctx, min_nr, nr, events, until);
1993 percpu_ref_put(&ioctx->users);
1994 }
1995
1996 return ret;
1997}
1998
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999/* io_getevents:
2000 * Attempts to read at least min_nr events and up to nr events from
Satoru Takeuchi642b5122010-08-05 11:23:11 -07002001 * the completion queue for the aio_context specified by ctx_id. If
2002 * it succeeds, the number of read events is returned. May fail with
2003 * -EINVAL if ctx_id is invalid, if min_nr is out of range, if nr is
2004 * out of range, if timeout is out of range. May fail with -EFAULT
2005 * if any of the memory specified is invalid. May return 0 or
2006 * < min_nr if the timeout specified by timeout has elapsed
2007 * before sufficient events are available, where timeout == NULL
2008 * specifies an infinite timeout. Note that the timeout pointed to by
Jeff Moyer69008072013-05-24 15:55:24 -07002009 * timeout is relative. Will fail with -ENOSYS if not implemented.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 */
Heiko Carstens002c8972009-01-14 14:14:18 +01002011SYSCALL_DEFINE5(io_getevents, aio_context_t, ctx_id,
2012 long, min_nr,
2013 long, nr,
2014 struct io_event __user *, events,
2015 struct timespec __user *, timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016{
Deepa Dinamanifa2e62a2017-08-04 21:12:32 -07002017 struct timespec64 ts;
Christoph Hellwig7a074e92018-05-02 19:51:00 +02002018 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019
Christoph Hellwig7a074e92018-05-02 19:51:00 +02002020 if (timeout && unlikely(get_timespec64(&ts, timeout)))
2021 return -EFAULT;
2022
2023 ret = do_io_getevents(ctx_id, min_nr, nr, events, timeout ? &ts : NULL);
2024 if (!ret && signal_pending(current))
2025 ret = -EINTR;
2026 return ret;
2027}
2028
2029SYSCALL_DEFINE6(io_pgetevents,
2030 aio_context_t, ctx_id,
2031 long, min_nr,
2032 long, nr,
2033 struct io_event __user *, events,
2034 struct timespec __user *, timeout,
2035 const struct __aio_sigset __user *, usig)
2036{
2037 struct __aio_sigset ksig = { NULL, };
2038 sigset_t ksigmask, sigsaved;
2039 struct timespec64 ts;
2040 int ret;
2041
2042 if (timeout && unlikely(get_timespec64(&ts, timeout)))
2043 return -EFAULT;
2044
2045 if (usig && copy_from_user(&ksig, usig, sizeof(ksig)))
2046 return -EFAULT;
2047
2048 if (ksig.sigmask) {
2049 if (ksig.sigsetsize != sizeof(sigset_t))
2050 return -EINVAL;
2051 if (copy_from_user(&ksigmask, ksig.sigmask, sizeof(ksigmask)))
Deepa Dinamanifa2e62a2017-08-04 21:12:32 -07002052 return -EFAULT;
Christoph Hellwig7a074e92018-05-02 19:51:00 +02002053 sigdelsetmask(&ksigmask, sigmask(SIGKILL) | sigmask(SIGSTOP));
2054 sigprocmask(SIG_SETMASK, &ksigmask, &sigsaved);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 }
Deepa Dinamanifa2e62a2017-08-04 21:12:32 -07002056
Christoph Hellwig7a074e92018-05-02 19:51:00 +02002057 ret = do_io_getevents(ctx_id, min_nr, nr, events, timeout ? &ts : NULL);
2058 if (signal_pending(current)) {
2059 if (ksig.sigmask) {
2060 current->saved_sigmask = sigsaved;
2061 set_restore_sigmask();
2062 }
2063
2064 if (!ret)
2065 ret = -ERESTARTNOHAND;
2066 } else {
2067 if (ksig.sigmask)
2068 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
2069 }
2070
2071 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072}
Al Viroc00d2c72016-12-20 07:04:57 -05002073
2074#ifdef CONFIG_COMPAT
2075COMPAT_SYSCALL_DEFINE5(io_getevents, compat_aio_context_t, ctx_id,
2076 compat_long_t, min_nr,
2077 compat_long_t, nr,
2078 struct io_event __user *, events,
2079 struct compat_timespec __user *, timeout)
2080{
Deepa Dinamanifa2e62a2017-08-04 21:12:32 -07002081 struct timespec64 t;
Christoph Hellwig7a074e92018-05-02 19:51:00 +02002082 int ret;
Al Viroc00d2c72016-12-20 07:04:57 -05002083
Christoph Hellwig7a074e92018-05-02 19:51:00 +02002084 if (timeout && compat_get_timespec64(&t, timeout))
2085 return -EFAULT;
2086
2087 ret = do_io_getevents(ctx_id, min_nr, nr, events, timeout ? &t : NULL);
2088 if (!ret && signal_pending(current))
2089 ret = -EINTR;
2090 return ret;
2091}
2092
2093
2094struct __compat_aio_sigset {
2095 compat_sigset_t __user *sigmask;
2096 compat_size_t sigsetsize;
2097};
2098
2099COMPAT_SYSCALL_DEFINE6(io_pgetevents,
2100 compat_aio_context_t, ctx_id,
2101 compat_long_t, min_nr,
2102 compat_long_t, nr,
2103 struct io_event __user *, events,
2104 struct compat_timespec __user *, timeout,
2105 const struct __compat_aio_sigset __user *, usig)
2106{
2107 struct __compat_aio_sigset ksig = { NULL, };
2108 sigset_t ksigmask, sigsaved;
2109 struct timespec64 t;
2110 int ret;
2111
2112 if (timeout && compat_get_timespec64(&t, timeout))
2113 return -EFAULT;
2114
2115 if (usig && copy_from_user(&ksig, usig, sizeof(ksig)))
2116 return -EFAULT;
2117
2118 if (ksig.sigmask) {
2119 if (ksig.sigsetsize != sizeof(compat_sigset_t))
2120 return -EINVAL;
2121 if (get_compat_sigset(&ksigmask, ksig.sigmask))
Al Viroc00d2c72016-12-20 07:04:57 -05002122 return -EFAULT;
Christoph Hellwig7a074e92018-05-02 19:51:00 +02002123 sigdelsetmask(&ksigmask, sigmask(SIGKILL) | sigmask(SIGSTOP));
2124 sigprocmask(SIG_SETMASK, &ksigmask, &sigsaved);
Al Viroc00d2c72016-12-20 07:04:57 -05002125 }
Deepa Dinamanifa2e62a2017-08-04 21:12:32 -07002126
Christoph Hellwig7a074e92018-05-02 19:51:00 +02002127 ret = do_io_getevents(ctx_id, min_nr, nr, events, timeout ? &t : NULL);
2128 if (signal_pending(current)) {
2129 if (ksig.sigmask) {
2130 current->saved_sigmask = sigsaved;
2131 set_restore_sigmask();
2132 }
2133 if (!ret)
2134 ret = -ERESTARTNOHAND;
2135 } else {
2136 if (ksig.sigmask)
2137 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
2138 }
2139
2140 return ret;
Al Viroc00d2c72016-12-20 07:04:57 -05002141}
2142#endif