blob: fe2018ada32cf3fa4bfc543a5278c42e8e10471e [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.
8 *
9 * See ../COPYING for licensing terms.
10 */
Kent Overstreetcaf41672013-05-07 16:18:35 -070011#define pr_fmt(fmt) "%s: " fmt, __func__
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/kernel.h>
14#include <linux/init.h>
15#include <linux/errno.h>
16#include <linux/time.h>
17#include <linux/aio_abi.h>
Paul Gortmaker630d9c42011-11-16 23:57:37 -050018#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/syscalls.h>
Jens Axboeb9d128f2009-10-29 13:59:26 +010020#include <linux/backing-dev.h>
Christoph Hellwig9018ccc2018-07-24 11:36:37 +020021#include <linux/refcount.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 Hellwig04b2fa92015-02-02 14:49:06 +0100168struct aio_kiocb {
Christoph Hellwig54843f82018-05-02 19:57:21 +0200169 union {
170 struct kiocb rw;
Christoph Hellwiga3c0d432018-03-27 19:18:57 +0200171 struct fsync_iocb fsync;
Christoph Hellwig54843f82018-05-02 19:57:21 +0200172 };
Christoph Hellwig04b2fa92015-02-02 14:49:06 +0100173
174 struct kioctx *ki_ctx;
175 kiocb_cancel_fn *ki_cancel;
176
177 struct iocb __user *ki_user_iocb; /* user's aiocb */
178 __u64 ki_user_data; /* user's data for completion */
179
180 struct list_head ki_list; /* the aio core uses this
181 * for cancellation */
Christoph Hellwig9018ccc2018-07-24 11:36:37 +0200182 refcount_t ki_refcnt;
Christoph Hellwig04b2fa92015-02-02 14:49:06 +0100183
184 /*
185 * If the aio_resfd field of the userspace iocb is not zero,
186 * this is the underlying eventfd context to deliver events to.
187 */
188 struct eventfd_ctx *ki_eventfd;
189};
190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191/*------ sysctl variables----*/
Zach Brownd55b5fd2005-11-07 00:59:31 -0800192static DEFINE_SPINLOCK(aio_nr_lock);
193unsigned long aio_nr; /* current system wide number of aio requests */
194unsigned long aio_max_nr = 0x10000; /* system wide maximum number of aio requests */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195/*----end sysctl variables---*/
196
Christoph Lametere18b8902006-12-06 20:33:20 -0800197static struct kmem_cache *kiocb_cachep;
198static struct kmem_cache *kioctx_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
Benjamin LaHaise71ad7492013-09-17 10:18:25 -0400200static struct vfsmount *aio_mnt;
201
202static const struct file_operations aio_ring_fops;
203static const struct address_space_operations aio_ctx_aops;
204
205static struct file *aio_private_file(struct kioctx *ctx, loff_t nr_pages)
206{
207 struct qstr this = QSTR_INIT("[aio]", 5);
208 struct file *file;
209 struct path path;
210 struct inode *inode = alloc_anon_inode(aio_mnt->mnt_sb);
Dan Carpenter7f626562013-11-13 10:49:40 +0300211 if (IS_ERR(inode))
212 return ERR_CAST(inode);
Benjamin LaHaise71ad7492013-09-17 10:18:25 -0400213
214 inode->i_mapping->a_ops = &aio_ctx_aops;
215 inode->i_mapping->private_data = ctx;
216 inode->i_size = PAGE_SIZE * nr_pages;
217
218 path.dentry = d_alloc_pseudo(aio_mnt->mnt_sb, &this);
219 if (!path.dentry) {
220 iput(inode);
221 return ERR_PTR(-ENOMEM);
222 }
223 path.mnt = mntget(aio_mnt);
224
225 d_instantiate(path.dentry, inode);
226 file = alloc_file(&path, FMODE_READ | FMODE_WRITE, &aio_ring_fops);
227 if (IS_ERR(file)) {
228 path_put(&path);
229 return file;
230 }
231
232 file->f_flags = O_RDWR;
Benjamin LaHaise71ad7492013-09-17 10:18:25 -0400233 return file;
234}
235
236static struct dentry *aio_mount(struct file_system_type *fs_type,
237 int flags, const char *dev_name, void *data)
238{
239 static const struct dentry_operations ops = {
240 .d_dname = simple_dname,
241 };
Jann Horn22f6b4d2016-09-16 00:31:22 +0200242 struct dentry *root = mount_pseudo(fs_type, "aio:", NULL, &ops,
243 AIO_RING_MAGIC);
244
245 if (!IS_ERR(root))
246 root->d_sb->s_iflags |= SB_I_NOEXEC;
247 return root;
Benjamin LaHaise71ad7492013-09-17 10:18:25 -0400248}
249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250/* aio_setup
251 * Creates the slab caches used by the aio routines, panic on
252 * failure as this is done early during the boot sequence.
253 */
254static int __init aio_setup(void)
255{
Benjamin LaHaise71ad7492013-09-17 10:18:25 -0400256 static struct file_system_type aio_fs = {
257 .name = "aio",
258 .mount = aio_mount,
259 .kill_sb = kill_anon_super,
260 };
261 aio_mnt = kern_mount(&aio_fs);
262 if (IS_ERR(aio_mnt))
263 panic("Failed to create aio fs mount.");
264
Christoph Hellwig04b2fa92015-02-02 14:49:06 +0100265 kiocb_cachep = KMEM_CACHE(aio_kiocb, SLAB_HWCACHE_ALIGN|SLAB_PANIC);
Christoph Lameter0a31bd52007-05-06 14:49:57 -0700266 kioctx_cachep = KMEM_CACHE(kioctx,SLAB_HWCACHE_ALIGN|SLAB_PANIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 return 0;
268}
H Hartley Sweeten385773e2009-09-22 16:43:53 -0700269__initcall(aio_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
Benjamin LaHaise5e9ae2e2013-09-26 20:34:51 -0400271static void put_aio_ring_file(struct kioctx *ctx)
272{
273 struct file *aio_ring_file = ctx->aio_ring_file;
Rasmus Villemoesde04e762016-09-15 00:25:03 +0200274 struct address_space *i_mapping;
275
Benjamin LaHaise5e9ae2e2013-09-26 20:34:51 -0400276 if (aio_ring_file) {
Al Viro45063092016-12-04 18:24:56 -0500277 truncate_setsize(file_inode(aio_ring_file), 0);
Benjamin LaHaise5e9ae2e2013-09-26 20:34:51 -0400278
279 /* Prevent further access to the kioctx from migratepages */
Al Viro45063092016-12-04 18:24:56 -0500280 i_mapping = aio_ring_file->f_mapping;
Rasmus Villemoesde04e762016-09-15 00:25:03 +0200281 spin_lock(&i_mapping->private_lock);
282 i_mapping->private_data = NULL;
Benjamin LaHaise5e9ae2e2013-09-26 20:34:51 -0400283 ctx->aio_ring_file = NULL;
Rasmus Villemoesde04e762016-09-15 00:25:03 +0200284 spin_unlock(&i_mapping->private_lock);
Benjamin LaHaise5e9ae2e2013-09-26 20:34:51 -0400285
286 fput(aio_ring_file);
287 }
288}
289
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290static void aio_free_ring(struct kioctx *ctx)
291{
Gu Zheng36bc08c2013-07-16 17:56:16 +0800292 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -0400294 /* Disconnect the kiotx from the ring file. This prevents future
295 * accesses to the kioctx from page migration.
296 */
297 put_aio_ring_file(ctx);
298
Gu Zheng36bc08c2013-07-16 17:56:16 +0800299 for (i = 0; i < ctx->nr_pages; i++) {
Benjamin LaHaise8e321fe2013-12-21 17:56:08 -0500300 struct page *page;
Gu Zheng36bc08c2013-07-16 17:56:16 +0800301 pr_debug("pid(%d) [%d] page->count=%d\n", current->pid, i,
302 page_count(ctx->ring_pages[i]));
Benjamin LaHaise8e321fe2013-12-21 17:56:08 -0500303 page = ctx->ring_pages[i];
304 if (!page)
305 continue;
306 ctx->ring_pages[i] = NULL;
307 put_page(page);
Gu Zheng36bc08c2013-07-16 17:56:16 +0800308 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Sasha Levinddb8c452013-11-19 17:33:03 -0500310 if (ctx->ring_pages && ctx->ring_pages != ctx->internal_pages) {
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700311 kfree(ctx->ring_pages);
Sasha Levinddb8c452013-11-19 17:33:03 -0500312 ctx->ring_pages = NULL;
313 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314}
315
Oleg Nesterov5477e702015-09-04 15:48:04 -0700316static int aio_ring_mremap(struct vm_area_struct *vma)
Gu Zheng36bc08c2013-07-16 17:56:16 +0800317{
Oleg Nesterov5477e702015-09-04 15:48:04 -0700318 struct file *file = vma->vm_file;
Pavel Emelyanove4a0d3e2014-09-18 19:56:17 +0400319 struct mm_struct *mm = vma->vm_mm;
320 struct kioctx_table *table;
Al Virob2edffd2015-04-06 17:48:54 -0400321 int i, res = -EINVAL;
Pavel Emelyanove4a0d3e2014-09-18 19:56:17 +0400322
323 spin_lock(&mm->ioctx_lock);
324 rcu_read_lock();
325 table = rcu_dereference(mm->ioctx_table);
326 for (i = 0; i < table->nr; i++) {
327 struct kioctx *ctx;
328
Tejun Heod0264c02018-03-14 12:10:17 -0700329 ctx = rcu_dereference(table->table[i]);
Pavel Emelyanove4a0d3e2014-09-18 19:56:17 +0400330 if (ctx && ctx->aio_ring_file == file) {
Al Virob2edffd2015-04-06 17:48:54 -0400331 if (!atomic_read(&ctx->dead)) {
332 ctx->user_id = ctx->mmap_base = vma->vm_start;
333 res = 0;
334 }
Pavel Emelyanove4a0d3e2014-09-18 19:56:17 +0400335 break;
336 }
337 }
338
339 rcu_read_unlock();
340 spin_unlock(&mm->ioctx_lock);
Al Virob2edffd2015-04-06 17:48:54 -0400341 return res;
Pavel Emelyanove4a0d3e2014-09-18 19:56:17 +0400342}
343
Oleg Nesterov5477e702015-09-04 15:48:04 -0700344static const struct vm_operations_struct aio_ring_vm_ops = {
345 .mremap = aio_ring_mremap,
346#if IS_ENABLED(CONFIG_MMU)
347 .fault = filemap_fault,
348 .map_pages = filemap_map_pages,
349 .page_mkwrite = filemap_page_mkwrite,
350#endif
351};
352
353static int aio_ring_mmap(struct file *file, struct vm_area_struct *vma)
354{
355 vma->vm_flags |= VM_DONTEXPAND;
356 vma->vm_ops = &aio_ring_vm_ops;
357 return 0;
358}
359
Gu Zheng36bc08c2013-07-16 17:56:16 +0800360static const struct file_operations aio_ring_fops = {
361 .mmap = aio_ring_mmap,
362};
363
Benjamin LaHaise0c453552013-07-17 09:34:24 -0400364#if IS_ENABLED(CONFIG_MIGRATION)
Gu Zheng36bc08c2013-07-16 17:56:16 +0800365static int aio_migratepage(struct address_space *mapping, struct page *new,
366 struct page *old, enum migrate_mode mode)
367{
Benjamin LaHaise5e9ae2e2013-09-26 20:34:51 -0400368 struct kioctx *ctx;
Gu Zheng36bc08c2013-07-16 17:56:16 +0800369 unsigned long flags;
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -0400370 pgoff_t idx;
Gu Zheng36bc08c2013-07-16 17:56:16 +0800371 int rc;
372
Jérôme Glisse2916ecc2017-09-08 16:12:06 -0700373 /*
374 * We cannot support the _NO_COPY case here, because copy needs to
375 * happen under the ctx->completion_lock. That does not work with the
376 * migration workflow of MIGRATE_SYNC_NO_COPY.
377 */
378 if (mode == MIGRATE_SYNC_NO_COPY)
379 return -EINVAL;
380
Benjamin LaHaise8e321fe2013-12-21 17:56:08 -0500381 rc = 0;
382
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -0400383 /* mapping->private_lock here protects against the kioctx teardown. */
Benjamin LaHaise8e321fe2013-12-21 17:56:08 -0500384 spin_lock(&mapping->private_lock);
385 ctx = mapping->private_data;
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -0400386 if (!ctx) {
387 rc = -EINVAL;
388 goto out;
389 }
390
391 /* The ring_lock mutex. The prevents aio_read_events() from writing
392 * to the ring's head, and prevents page migration from mucking in
393 * a partially initialized kiotx.
394 */
395 if (!mutex_trylock(&ctx->ring_lock)) {
396 rc = -EAGAIN;
397 goto out;
398 }
399
400 idx = old->index;
401 if (idx < (pgoff_t)ctx->nr_pages) {
402 /* Make sure the old page hasn't already been changed */
403 if (ctx->ring_pages[idx] != old)
404 rc = -EAGAIN;
Benjamin LaHaise8e321fe2013-12-21 17:56:08 -0500405 } else
406 rc = -EINVAL;
Benjamin LaHaise8e321fe2013-12-21 17:56:08 -0500407
408 if (rc != 0)
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -0400409 goto out_unlock;
Benjamin LaHaise8e321fe2013-12-21 17:56:08 -0500410
Gu Zheng36bc08c2013-07-16 17:56:16 +0800411 /* Writeback must be complete */
412 BUG_ON(PageWriteback(old));
Benjamin LaHaise8e321fe2013-12-21 17:56:08 -0500413 get_page(new);
Gu Zheng36bc08c2013-07-16 17:56:16 +0800414
Benjamin LaHaise8e321fe2013-12-21 17:56:08 -0500415 rc = migrate_page_move_mapping(mapping, new, old, NULL, mode, 1);
Gu Zheng36bc08c2013-07-16 17:56:16 +0800416 if (rc != MIGRATEPAGE_SUCCESS) {
Benjamin LaHaise8e321fe2013-12-21 17:56:08 -0500417 put_page(new);
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -0400418 goto out_unlock;
Gu Zheng36bc08c2013-07-16 17:56:16 +0800419 }
420
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -0400421 /* Take completion_lock to prevent other writes to the ring buffer
422 * while the old page is copied to the new. This prevents new
423 * events from being lost.
Benjamin LaHaise5e9ae2e2013-09-26 20:34:51 -0400424 */
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -0400425 spin_lock_irqsave(&ctx->completion_lock, flags);
426 migrate_page_copy(new, old);
427 BUG_ON(ctx->ring_pages[idx] != old);
428 ctx->ring_pages[idx] = new;
429 spin_unlock_irqrestore(&ctx->completion_lock, flags);
430
431 /* The old page is no longer accessible. */
432 put_page(old);
433
434out_unlock:
435 mutex_unlock(&ctx->ring_lock);
436out:
Benjamin LaHaise5e9ae2e2013-09-26 20:34:51 -0400437 spin_unlock(&mapping->private_lock);
Gu Zheng36bc08c2013-07-16 17:56:16 +0800438 return rc;
439}
Benjamin LaHaise0c453552013-07-17 09:34:24 -0400440#endif
Gu Zheng36bc08c2013-07-16 17:56:16 +0800441
442static const struct address_space_operations aio_ctx_aops = {
Gu Zheng835f2522014-11-06 17:46:21 +0800443 .set_page_dirty = __set_page_dirty_no_writeback,
Benjamin LaHaise0c453552013-07-17 09:34:24 -0400444#if IS_ENABLED(CONFIG_MIGRATION)
Gu Zheng36bc08c2013-07-16 17:56:16 +0800445 .migratepage = aio_migratepage,
Benjamin LaHaise0c453552013-07-17 09:34:24 -0400446#endif
Gu Zheng36bc08c2013-07-16 17:56:16 +0800447};
448
Mauricio Faria de Oliveira2a8a9862017-07-05 10:53:16 -0300449static int aio_setup_ring(struct kioctx *ctx, unsigned int nr_events)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450{
451 struct aio_ring *ring;
Zach Brown41003a72013-05-07 16:18:25 -0700452 struct mm_struct *mm = current->mm;
Linus Torvalds3dc9acb2013-12-20 05:11:12 +0900453 unsigned long size, unused;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 int nr_pages;
Gu Zheng36bc08c2013-07-16 17:56:16 +0800455 int i;
456 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
458 /* Compensate for the ring buffer's head/tail overlap entry */
459 nr_events += 2; /* 1 is required, 2 for good luck */
460
461 size = sizeof(struct aio_ring);
462 size += sizeof(struct io_event) * nr_events;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Gu Zheng36bc08c2013-07-16 17:56:16 +0800464 nr_pages = PFN_UP(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 if (nr_pages < 0)
466 return -EINVAL;
467
Benjamin LaHaise71ad7492013-09-17 10:18:25 -0400468 file = aio_private_file(ctx, nr_pages);
Gu Zheng36bc08c2013-07-16 17:56:16 +0800469 if (IS_ERR(file)) {
470 ctx->aio_ring_file = NULL;
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -0400471 return -ENOMEM;
Gu Zheng36bc08c2013-07-16 17:56:16 +0800472 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473
Gu Zheng36bc08c2013-07-16 17:56:16 +0800474 ctx->aio_ring_file = file;
475 nr_events = (PAGE_SIZE * nr_pages - sizeof(struct aio_ring))
476 / sizeof(struct io_event);
477
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700478 ctx->ring_pages = ctx->internal_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 if (nr_pages > AIO_RING_PAGES) {
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700480 ctx->ring_pages = kcalloc(nr_pages, sizeof(struct page *),
481 GFP_KERNEL);
Gu Zhengd1b94322013-12-04 18:19:06 +0800482 if (!ctx->ring_pages) {
483 put_aio_ring_file(ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 return -ENOMEM;
Gu Zhengd1b94322013-12-04 18:19:06 +0800485 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 }
487
Linus Torvalds3dc9acb2013-12-20 05:11:12 +0900488 for (i = 0; i < nr_pages; i++) {
489 struct page *page;
Al Viro45063092016-12-04 18:24:56 -0500490 page = find_or_create_page(file->f_mapping,
Linus Torvalds3dc9acb2013-12-20 05:11:12 +0900491 i, GFP_HIGHUSER | __GFP_ZERO);
492 if (!page)
493 break;
494 pr_debug("pid(%d) page[%d]->count=%d\n",
495 current->pid, i, page_count(page));
496 SetPageUptodate(page);
Linus Torvalds3dc9acb2013-12-20 05:11:12 +0900497 unlock_page(page);
498
499 ctx->ring_pages[i] = page;
500 }
501 ctx->nr_pages = i;
502
503 if (unlikely(i != nr_pages)) {
504 aio_free_ring(ctx);
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -0400505 return -ENOMEM;
Linus Torvalds3dc9acb2013-12-20 05:11:12 +0900506 }
507
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700508 ctx->mmap_size = nr_pages * PAGE_SIZE;
509 pr_debug("attempting mmap of %lu bytes\n", ctx->mmap_size);
Gu Zheng36bc08c2013-07-16 17:56:16 +0800510
Michal Hocko013373e2016-05-23 16:25:59 -0700511 if (down_write_killable(&mm->mmap_sem)) {
512 ctx->mmap_size = 0;
513 aio_free_ring(ctx);
514 return -EINTR;
515 }
516
Gu Zheng36bc08c2013-07-16 17:56:16 +0800517 ctx->mmap_base = do_mmap_pgoff(ctx->aio_ring_file, 0, ctx->mmap_size,
518 PROT_READ | PROT_WRITE,
Mike Rapoport897ab3e2017-02-24 14:58:22 -0800519 MAP_SHARED, 0, &unused, NULL);
Linus Torvalds3dc9acb2013-12-20 05:11:12 +0900520 up_write(&mm->mmap_sem);
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700521 if (IS_ERR((void *)ctx->mmap_base)) {
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700522 ctx->mmap_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 aio_free_ring(ctx);
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -0400524 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 }
526
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700527 pr_debug("mmap address: 0x%08lx\n", ctx->mmap_base);
Benjamin LaHaised6c355c2013-09-09 11:57:59 -0400528
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700529 ctx->user_id = ctx->mmap_base;
530 ctx->nr_events = nr_events; /* trusted copy */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700532 ring = kmap_atomic(ctx->ring_pages[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 ring->nr = nr_events; /* user copy */
Benjamin LaHaisedb446a02013-07-30 12:54:40 -0400534 ring->id = ~0U;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 ring->head = ring->tail = 0;
536 ring->magic = AIO_RING_MAGIC;
537 ring->compat_features = AIO_RING_COMPAT_FEATURES;
538 ring->incompat_features = AIO_RING_INCOMPAT_FEATURES;
539 ring->header_length = sizeof(struct aio_ring);
Cong Wange8e3c3d2011-11-25 23:14:27 +0800540 kunmap_atomic(ring);
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700541 flush_dcache_page(ctx->ring_pages[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
543 return 0;
544}
545
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546#define AIO_EVENTS_PER_PAGE (PAGE_SIZE / sizeof(struct io_event))
547#define AIO_EVENTS_FIRST_PAGE ((PAGE_SIZE - sizeof(struct aio_ring)) / sizeof(struct io_event))
548#define AIO_EVENTS_OFFSET (AIO_EVENTS_PER_PAGE - AIO_EVENTS_FIRST_PAGE)
549
Christoph Hellwig04b2fa92015-02-02 14:49:06 +0100550void kiocb_set_cancel_fn(struct kiocb *iocb, kiocb_cancel_fn *cancel)
Kent Overstreet0460fef2013-05-07 16:18:49 -0700551{
Christoph Hellwig54843f82018-05-02 19:57:21 +0200552 struct aio_kiocb *req = container_of(iocb, struct aio_kiocb, rw);
Kent Overstreet0460fef2013-05-07 16:18:49 -0700553 struct kioctx *ctx = req->ki_ctx;
554 unsigned long flags;
555
Christoph Hellwig75321b52018-04-09 14:57:56 +0200556 if (WARN_ON_ONCE(!list_empty(&req->ki_list)))
557 return;
558
Kent Overstreet0460fef2013-05-07 16:18:49 -0700559 spin_lock_irqsave(&ctx->ctx_lock, flags);
Christoph Hellwig75321b52018-04-09 14:57:56 +0200560 list_add_tail(&req->ki_list, &ctx->active_reqs);
Kent Overstreet0460fef2013-05-07 16:18:49 -0700561 req->ki_cancel = cancel;
Kent Overstreet0460fef2013-05-07 16:18:49 -0700562 spin_unlock_irqrestore(&ctx->ctx_lock, flags);
563}
564EXPORT_SYMBOL(kiocb_set_cancel_fn);
565
Tejun Heoa6d7cff2018-03-14 12:10:17 -0700566/*
567 * free_ioctx() should be RCU delayed to synchronize against the RCU
568 * protected lookup_ioctx() and also needs process context to call
Tejun Heof7298632018-03-14 12:45:15 -0700569 * aio_free_ring(). Use rcu_work.
Tejun Heoa6d7cff2018-03-14 12:10:17 -0700570 */
Kent Overstreete34ecee2013-10-10 19:31:47 -0700571static void free_ioctx(struct work_struct *work)
Kent Overstreet36f55882013-05-07 16:18:41 -0700572{
Tejun Heof7298632018-03-14 12:45:15 -0700573 struct kioctx *ctx = container_of(to_rcu_work(work), struct kioctx,
574 free_rwork);
Kent Overstreete34ecee2013-10-10 19:31:47 -0700575 pr_debug("freeing %p\n", ctx);
576
577 aio_free_ring(ctx);
Kent Overstreete1bdd5f2013-04-26 10:58:39 +1000578 free_percpu(ctx->cpu);
Tejun Heo9a1049d2014-06-28 08:10:14 -0400579 percpu_ref_exit(&ctx->reqs);
580 percpu_ref_exit(&ctx->users);
Kent Overstreet36f55882013-05-07 16:18:41 -0700581 kmem_cache_free(kioctx_cachep, ctx);
582}
583
Kent Overstreete34ecee2013-10-10 19:31:47 -0700584static void free_ioctx_reqs(struct percpu_ref *ref)
585{
586 struct kioctx *ctx = container_of(ref, struct kioctx, reqs);
587
Anatol Pomozove02ba722014-04-15 11:31:33 -0700588 /* At this point we know that there are no any in-flight requests */
Jens Axboedc48e562015-04-15 11:17:23 -0600589 if (ctx->rq_wait && atomic_dec_and_test(&ctx->rq_wait->count))
590 complete(&ctx->rq_wait->comp);
Anatol Pomozove02ba722014-04-15 11:31:33 -0700591
Tejun Heoa6d7cff2018-03-14 12:10:17 -0700592 /* Synchronize against RCU protected table->table[] dereferences */
Tejun Heof7298632018-03-14 12:45:15 -0700593 INIT_RCU_WORK(&ctx->free_rwork, free_ioctx);
594 queue_rcu_work(system_wq, &ctx->free_rwork);
Kent Overstreete34ecee2013-10-10 19:31:47 -0700595}
596
Kent Overstreet36f55882013-05-07 16:18:41 -0700597/*
598 * When this function runs, the kioctx has been removed from the "hash table"
599 * and ctx->users has dropped to 0, so we know no more kiocbs can be submitted -
600 * now it's safe to cancel any that need to be.
601 */
Kent Overstreete34ecee2013-10-10 19:31:47 -0700602static void free_ioctx_users(struct percpu_ref *ref)
Kent Overstreet36f55882013-05-07 16:18:41 -0700603{
Kent Overstreete34ecee2013-10-10 19:31:47 -0700604 struct kioctx *ctx = container_of(ref, struct kioctx, users);
Christoph Hellwig04b2fa92015-02-02 14:49:06 +0100605 struct aio_kiocb *req;
Kent Overstreet36f55882013-05-07 16:18:41 -0700606
607 spin_lock_irq(&ctx->ctx_lock);
608
609 while (!list_empty(&ctx->active_reqs)) {
610 req = list_first_entry(&ctx->active_reqs,
Christoph Hellwig04b2fa92015-02-02 14:49:06 +0100611 struct aio_kiocb, ki_list);
Christoph Hellwig888933f2018-05-23 14:11:02 +0200612 req->ki_cancel(&req->rw);
Al Viro4faa99962018-05-23 22:53:22 -0400613 list_del_init(&req->ki_list);
Kent Overstreet36f55882013-05-07 16:18:41 -0700614 }
615
616 spin_unlock_irq(&ctx->ctx_lock);
617
Kent Overstreete34ecee2013-10-10 19:31:47 -0700618 percpu_ref_kill(&ctx->reqs);
619 percpu_ref_put(&ctx->reqs);
Kent Overstreet36f55882013-05-07 16:18:41 -0700620}
621
Benjamin LaHaisedb446a02013-07-30 12:54:40 -0400622static int ioctx_add_table(struct kioctx *ctx, struct mm_struct *mm)
623{
624 unsigned i, new_nr;
625 struct kioctx_table *table, *old;
626 struct aio_ring *ring;
627
628 spin_lock(&mm->ioctx_lock);
Oleg Nesterov855ef0d2014-04-30 16:16:36 +0200629 table = rcu_dereference_raw(mm->ioctx_table);
Benjamin LaHaisedb446a02013-07-30 12:54:40 -0400630
631 while (1) {
632 if (table)
633 for (i = 0; i < table->nr; i++)
Tejun Heod0264c02018-03-14 12:10:17 -0700634 if (!rcu_access_pointer(table->table[i])) {
Benjamin LaHaisedb446a02013-07-30 12:54:40 -0400635 ctx->id = i;
Tejun Heod0264c02018-03-14 12:10:17 -0700636 rcu_assign_pointer(table->table[i], ctx);
Benjamin LaHaisedb446a02013-07-30 12:54:40 -0400637 spin_unlock(&mm->ioctx_lock);
638
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -0400639 /* While kioctx setup is in progress,
640 * we are protected from page migration
641 * changes ring_pages by ->ring_lock.
642 */
Benjamin LaHaisedb446a02013-07-30 12:54:40 -0400643 ring = kmap_atomic(ctx->ring_pages[0]);
644 ring->id = ctx->id;
645 kunmap_atomic(ring);
646 return 0;
647 }
648
649 new_nr = (table ? table->nr : 1) * 4;
Benjamin LaHaisedb446a02013-07-30 12:54:40 -0400650 spin_unlock(&mm->ioctx_lock);
651
652 table = kzalloc(sizeof(*table) + sizeof(struct kioctx *) *
653 new_nr, GFP_KERNEL);
654 if (!table)
655 return -ENOMEM;
656
657 table->nr = new_nr;
658
659 spin_lock(&mm->ioctx_lock);
Oleg Nesterov855ef0d2014-04-30 16:16:36 +0200660 old = rcu_dereference_raw(mm->ioctx_table);
Benjamin LaHaisedb446a02013-07-30 12:54:40 -0400661
662 if (!old) {
663 rcu_assign_pointer(mm->ioctx_table, table);
664 } else if (table->nr > old->nr) {
665 memcpy(table->table, old->table,
666 old->nr * sizeof(struct kioctx *));
667
668 rcu_assign_pointer(mm->ioctx_table, table);
669 kfree_rcu(old, rcu);
670 } else {
671 kfree(table);
672 table = old;
673 }
674 }
675}
676
Kent Overstreete34ecee2013-10-10 19:31:47 -0700677static void aio_nr_sub(unsigned nr)
678{
679 spin_lock(&aio_nr_lock);
680 if (WARN_ON(aio_nr - nr > aio_nr))
681 aio_nr = 0;
682 else
683 aio_nr -= nr;
684 spin_unlock(&aio_nr_lock);
685}
686
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687/* ioctx_alloc
688 * Allocates and initializes an ioctx. Returns an ERR_PTR if it failed.
689 */
690static struct kioctx *ioctx_alloc(unsigned nr_events)
691{
Zach Brown41003a72013-05-07 16:18:25 -0700692 struct mm_struct *mm = current->mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 struct kioctx *ctx;
Al Viroe23754f2012-03-06 14:33:22 -0500694 int err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Kent Overstreete1bdd5f2013-04-26 10:58:39 +1000696 /*
Mauricio Faria de Oliveira2a8a9862017-07-05 10:53:16 -0300697 * Store the original nr_events -- what userspace passed to io_setup(),
698 * for counting against the global limit -- before it changes.
699 */
700 unsigned int max_reqs = nr_events;
701
702 /*
Kent Overstreete1bdd5f2013-04-26 10:58:39 +1000703 * We keep track of the number of available ringbuffer slots, to prevent
704 * overflow (reqs_available), and we also use percpu counters for this.
705 *
706 * So since up to half the slots might be on other cpu's percpu counters
707 * and unavailable, double nr_events so userspace sees what they
708 * expected: additionally, we move req_batch slots to/from percpu
709 * counters at a time, so make sure that isn't 0:
710 */
711 nr_events = max(nr_events, num_possible_cpus() * 4);
712 nr_events *= 2;
713
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 /* Prevent overflows */
Al Viro08397ac2015-03-31 11:43:52 -0400715 if (nr_events > (0x10000000U / sizeof(struct io_event))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 pr_debug("ENOMEM: nr_events too high\n");
717 return ERR_PTR(-EINVAL);
718 }
719
Mauricio Faria de Oliveira2a8a9862017-07-05 10:53:16 -0300720 if (!nr_events || (unsigned long)max_reqs > aio_max_nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 return ERR_PTR(-EAGAIN);
722
Robert P. J. Dayc3762222007-02-10 01:45:03 -0800723 ctx = kmem_cache_zalloc(kioctx_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 if (!ctx)
725 return ERR_PTR(-ENOMEM);
726
Mauricio Faria de Oliveira2a8a9862017-07-05 10:53:16 -0300727 ctx->max_reqs = max_reqs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -0400729 spin_lock_init(&ctx->ctx_lock);
730 spin_lock_init(&ctx->completion_lock);
731 mutex_init(&ctx->ring_lock);
732 /* Protect against page migration throughout kiotx setup by keeping
733 * the ring_lock mutex held until setup is complete. */
734 mutex_lock(&ctx->ring_lock);
735 init_waitqueue_head(&ctx->wait);
736
737 INIT_LIST_HEAD(&ctx->active_reqs);
738
Tejun Heo2aad2a82014-09-24 13:31:50 -0400739 if (percpu_ref_init(&ctx->users, free_ioctx_users, 0, GFP_KERNEL))
Kent Overstreete34ecee2013-10-10 19:31:47 -0700740 goto err;
741
Tejun Heo2aad2a82014-09-24 13:31:50 -0400742 if (percpu_ref_init(&ctx->reqs, free_ioctx_reqs, 0, GFP_KERNEL))
Kent Overstreete34ecee2013-10-10 19:31:47 -0700743 goto err;
Kent Overstreet723be6e2013-05-28 15:14:48 -0700744
Kent Overstreete1bdd5f2013-04-26 10:58:39 +1000745 ctx->cpu = alloc_percpu(struct kioctx_cpu);
746 if (!ctx->cpu)
Kent Overstreete34ecee2013-10-10 19:31:47 -0700747 goto err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Mauricio Faria de Oliveira2a8a9862017-07-05 10:53:16 -0300749 err = aio_setup_ring(ctx, nr_events);
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -0400750 if (err < 0)
Kent Overstreete34ecee2013-10-10 19:31:47 -0700751 goto err;
Kent Overstreete1bdd5f2013-04-26 10:58:39 +1000752
Kent Overstreet34e83fc2013-04-26 10:58:39 +1000753 atomic_set(&ctx->reqs_available, ctx->nr_events - 1);
Kent Overstreete1bdd5f2013-04-26 10:58:39 +1000754 ctx->req_batch = (ctx->nr_events - 1) / (num_possible_cpus() * 4);
Benjamin LaHaise6878ea72013-07-31 10:34:18 -0400755 if (ctx->req_batch < 1)
756 ctx->req_batch = 1;
Kent Overstreet34e83fc2013-04-26 10:58:39 +1000757
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 /* limit the number of system wide aios */
Al Viro9fa1cb32012-03-10 23:14:05 -0500759 spin_lock(&aio_nr_lock);
Mauricio Faria de Oliveira2a8a9862017-07-05 10:53:16 -0300760 if (aio_nr + ctx->max_reqs > aio_max_nr ||
761 aio_nr + ctx->max_reqs < aio_nr) {
Al Viro9fa1cb32012-03-10 23:14:05 -0500762 spin_unlock(&aio_nr_lock);
Kent Overstreete34ecee2013-10-10 19:31:47 -0700763 err = -EAGAIN;
Gu Zhengd1b94322013-12-04 18:19:06 +0800764 goto err_ctx;
Al Viro2dd542b2012-03-10 23:10:35 -0500765 }
766 aio_nr += ctx->max_reqs;
Al Viro9fa1cb32012-03-10 23:14:05 -0500767 spin_unlock(&aio_nr_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
Benjamin LaHaise18816862013-12-21 15:49:28 -0500769 percpu_ref_get(&ctx->users); /* io_setup() will drop this ref */
770 percpu_ref_get(&ctx->reqs); /* free_ioctx_users() will drop this */
Kent Overstreet723be6e2013-05-28 15:14:48 -0700771
Benjamin LaHaiseda903822013-08-05 13:21:43 -0400772 err = ioctx_add_table(ctx, mm);
773 if (err)
Kent Overstreete34ecee2013-10-10 19:31:47 -0700774 goto err_cleanup;
Benjamin LaHaiseda903822013-08-05 13:21:43 -0400775
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -0400776 /* Release the ring_lock mutex now that all setup is complete. */
777 mutex_unlock(&ctx->ring_lock);
778
Kent Overstreetcaf41672013-05-07 16:18:35 -0700779 pr_debug("allocated ioctx %p[%ld]: mm=%p mask=0x%x\n",
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700780 ctx, ctx->user_id, mm, ctx->nr_events);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 return ctx;
782
Kent Overstreete34ecee2013-10-10 19:31:47 -0700783err_cleanup:
784 aio_nr_sub(ctx->max_reqs);
Gu Zhengd1b94322013-12-04 18:19:06 +0800785err_ctx:
Al Virodeeb8522015-04-06 17:57:44 -0400786 atomic_set(&ctx->dead, 1);
787 if (ctx->mmap_size)
788 vm_munmap(ctx->mmap_base, ctx->mmap_size);
Gu Zhengd1b94322013-12-04 18:19:06 +0800789 aio_free_ring(ctx);
Kent Overstreete34ecee2013-10-10 19:31:47 -0700790err:
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -0400791 mutex_unlock(&ctx->ring_lock);
Kent Overstreete1bdd5f2013-04-26 10:58:39 +1000792 free_percpu(ctx->cpu);
Tejun Heo9a1049d2014-06-28 08:10:14 -0400793 percpu_ref_exit(&ctx->reqs);
794 percpu_ref_exit(&ctx->users);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 kmem_cache_free(kioctx_cachep, ctx);
Kent Overstreetcaf41672013-05-07 16:18:35 -0700796 pr_debug("error allocating ioctx %d\n", err);
Al Viroe23754f2012-03-06 14:33:22 -0500797 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798}
799
Kent Overstreet36f55882013-05-07 16:18:41 -0700800/* kill_ioctx
801 * Cancels all outstanding aio requests on an aio context. Used
802 * when the processes owning a context have all exited to encourage
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 * the rapid destruction of the kioctx.
804 */
Benjamin LaHaisefb2d4482014-04-29 12:45:17 -0400805static int kill_ioctx(struct mm_struct *mm, struct kioctx *ctx,
Jens Axboedc48e562015-04-15 11:17:23 -0600806 struct ctx_rq_wait *wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807{
Benjamin LaHaisefa88b6f2014-04-29 12:55:48 -0400808 struct kioctx_table *table;
Benjamin LaHaisedb446a02013-07-30 12:54:40 -0400809
Benjamin LaHaisefa88b6f2014-04-29 12:55:48 -0400810 spin_lock(&mm->ioctx_lock);
Al Virob2edffd2015-04-06 17:48:54 -0400811 if (atomic_xchg(&ctx->dead, 1)) {
812 spin_unlock(&mm->ioctx_lock);
813 return -EINVAL;
814 }
815
Oleg Nesterov855ef0d2014-04-30 16:16:36 +0200816 table = rcu_dereference_raw(mm->ioctx_table);
Tejun Heod0264c02018-03-14 12:10:17 -0700817 WARN_ON(ctx != rcu_access_pointer(table->table[ctx->id]));
818 RCU_INIT_POINTER(table->table[ctx->id], NULL);
Benjamin LaHaisefa88b6f2014-04-29 12:55:48 -0400819 spin_unlock(&mm->ioctx_lock);
Kent Overstreet4fcc7122013-06-12 14:04:59 -0700820
Tejun Heoa6d7cff2018-03-14 12:10:17 -0700821 /* free_ioctx_reqs() will do the necessary RCU synchronization */
Benjamin LaHaisefa88b6f2014-04-29 12:55:48 -0400822 wake_up_all(&ctx->wait);
Kent Overstreet4fcc7122013-06-12 14:04:59 -0700823
Benjamin LaHaisefa88b6f2014-04-29 12:55:48 -0400824 /*
825 * It'd be more correct to do this in free_ioctx(), after all
826 * the outstanding kiocbs have finished - but by then io_destroy
827 * has already returned, so io_setup() could potentially return
828 * -EAGAIN with no ioctxs actually in use (as far as userspace
829 * could tell).
830 */
831 aio_nr_sub(ctx->max_reqs);
Benjamin LaHaisefb2d4482014-04-29 12:45:17 -0400832
Benjamin LaHaisefa88b6f2014-04-29 12:55:48 -0400833 if (ctx->mmap_size)
834 vm_munmap(ctx->mmap_base, ctx->mmap_size);
835
Jens Axboedc48e562015-04-15 11:17:23 -0600836 ctx->rq_wait = wait;
Benjamin LaHaisefa88b6f2014-04-29 12:55:48 -0400837 percpu_ref_kill(&ctx->users);
838 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839}
840
Kent Overstreet36f55882013-05-07 16:18:41 -0700841/*
842 * exit_aio: called when the last user of mm goes away. At this point, there is
843 * no way for any new requests to be submited or any of the io_* syscalls to be
844 * called on the context.
845 *
846 * There may be outstanding kiocbs, but free_ioctx() will explicitly wait on
847 * them.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 */
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -0800849void exit_aio(struct mm_struct *mm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850{
Oleg Nesterov4b70ac52014-04-30 19:02:48 +0200851 struct kioctx_table *table = rcu_dereference_raw(mm->ioctx_table);
Jens Axboedc48e562015-04-15 11:17:23 -0600852 struct ctx_rq_wait wait;
853 int i, skipped;
Jens Axboeabf137d2008-12-09 08:11:22 +0100854
Oleg Nesterov4b70ac52014-04-30 19:02:48 +0200855 if (!table)
856 return;
Benjamin LaHaisedb446a02013-07-30 12:54:40 -0400857
Jens Axboedc48e562015-04-15 11:17:23 -0600858 atomic_set(&wait.count, table->nr);
859 init_completion(&wait.comp);
860
861 skipped = 0;
Oleg Nesterov4b70ac52014-04-30 19:02:48 +0200862 for (i = 0; i < table->nr; ++i) {
Tejun Heod0264c02018-03-14 12:10:17 -0700863 struct kioctx *ctx =
864 rcu_dereference_protected(table->table[i], true);
Benjamin LaHaisedb446a02013-07-30 12:54:40 -0400865
Jens Axboedc48e562015-04-15 11:17:23 -0600866 if (!ctx) {
867 skipped++;
Oleg Nesterov4b70ac52014-04-30 19:02:48 +0200868 continue;
Jens Axboedc48e562015-04-15 11:17:23 -0600869 }
870
Al Viro936af152012-04-20 21:49:41 -0400871 /*
Oleg Nesterov4b70ac52014-04-30 19:02:48 +0200872 * We don't need to bother with munmap() here - exit_mmap(mm)
873 * is coming and it'll unmap everything. And we simply can't,
874 * this is not necessarily our ->mm.
875 * Since kill_ioctx() uses non-zero ->mmap_size as indicator
876 * that it needs to unmap the area, just set it to 0.
Al Viro936af152012-04-20 21:49:41 -0400877 */
Kent Overstreet58c85dc2013-05-07 16:18:55 -0700878 ctx->mmap_size = 0;
Jens Axboedc48e562015-04-15 11:17:23 -0600879 kill_ioctx(mm, ctx, &wait);
880 }
Kent Overstreet36f55882013-05-07 16:18:41 -0700881
Jens Axboedc48e562015-04-15 11:17:23 -0600882 if (!atomic_sub_and_test(skipped, &wait.count)) {
Gu Zheng6098b452014-09-03 17:45:44 +0800883 /* Wait until all IO for the context are done. */
Jens Axboedc48e562015-04-15 11:17:23 -0600884 wait_for_completion(&wait.comp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 }
Oleg Nesterov4b70ac52014-04-30 19:02:48 +0200886
887 RCU_INIT_POINTER(mm->ioctx_table, NULL);
888 kfree(table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889}
890
Kent Overstreete1bdd5f2013-04-26 10:58:39 +1000891static void put_reqs_available(struct kioctx *ctx, unsigned nr)
892{
893 struct kioctx_cpu *kcpu;
Benjamin LaHaise263782c2014-07-14 12:49:26 -0400894 unsigned long flags;
Kent Overstreete1bdd5f2013-04-26 10:58:39 +1000895
Benjamin LaHaise263782c2014-07-14 12:49:26 -0400896 local_irq_save(flags);
Benjamin LaHaisebe6fb452014-07-22 09:56:56 -0400897 kcpu = this_cpu_ptr(ctx->cpu);
Kent Overstreete1bdd5f2013-04-26 10:58:39 +1000898 kcpu->reqs_available += nr;
Benjamin LaHaise263782c2014-07-14 12:49:26 -0400899
Kent Overstreete1bdd5f2013-04-26 10:58:39 +1000900 while (kcpu->reqs_available >= ctx->req_batch * 2) {
901 kcpu->reqs_available -= ctx->req_batch;
902 atomic_add(ctx->req_batch, &ctx->reqs_available);
903 }
904
Benjamin LaHaise263782c2014-07-14 12:49:26 -0400905 local_irq_restore(flags);
Kent Overstreete1bdd5f2013-04-26 10:58:39 +1000906}
907
908static bool get_reqs_available(struct kioctx *ctx)
909{
910 struct kioctx_cpu *kcpu;
911 bool ret = false;
Benjamin LaHaise263782c2014-07-14 12:49:26 -0400912 unsigned long flags;
Kent Overstreete1bdd5f2013-04-26 10:58:39 +1000913
Benjamin LaHaise263782c2014-07-14 12:49:26 -0400914 local_irq_save(flags);
Benjamin LaHaisebe6fb452014-07-22 09:56:56 -0400915 kcpu = this_cpu_ptr(ctx->cpu);
Kent Overstreete1bdd5f2013-04-26 10:58:39 +1000916 if (!kcpu->reqs_available) {
917 int old, avail = atomic_read(&ctx->reqs_available);
918
919 do {
920 if (avail < ctx->req_batch)
921 goto out;
922
923 old = avail;
924 avail = atomic_cmpxchg(&ctx->reqs_available,
925 avail, avail - ctx->req_batch);
926 } while (avail != old);
927
928 kcpu->reqs_available += ctx->req_batch;
929 }
930
931 ret = true;
932 kcpu->reqs_available--;
933out:
Benjamin LaHaise263782c2014-07-14 12:49:26 -0400934 local_irq_restore(flags);
Kent Overstreete1bdd5f2013-04-26 10:58:39 +1000935 return ret;
936}
937
Benjamin LaHaised856f322014-08-24 13:14:05 -0400938/* refill_reqs_available
939 * Updates the reqs_available reference counts used for tracking the
940 * number of free slots in the completion ring. This can be called
941 * from aio_complete() (to optimistically update reqs_available) or
942 * from aio_get_req() (the we're out of events case). It must be
943 * called holding ctx->completion_lock.
944 */
945static void refill_reqs_available(struct kioctx *ctx, unsigned head,
946 unsigned tail)
947{
948 unsigned events_in_ring, completed;
949
950 /* Clamp head since userland can write to it. */
951 head %= ctx->nr_events;
952 if (head <= tail)
953 events_in_ring = tail - head;
954 else
955 events_in_ring = ctx->nr_events - (head - tail);
956
957 completed = ctx->completed_events;
958 if (events_in_ring < completed)
959 completed -= events_in_ring;
960 else
961 completed = 0;
962
963 if (!completed)
964 return;
965
966 ctx->completed_events -= completed;
967 put_reqs_available(ctx, completed);
968}
969
970/* user_refill_reqs_available
971 * Called to refill reqs_available when aio_get_req() encounters an
972 * out of space in the completion ring.
973 */
974static void user_refill_reqs_available(struct kioctx *ctx)
975{
976 spin_lock_irq(&ctx->completion_lock);
977 if (ctx->completed_events) {
978 struct aio_ring *ring;
979 unsigned head;
980
981 /* Access of ring->head may race with aio_read_events_ring()
982 * here, but that's okay since whether we read the old version
983 * or the new version, and either will be valid. The important
984 * part is that head cannot pass tail since we prevent
985 * aio_complete() from updating tail by holding
986 * ctx->completion_lock. Even if head is invalid, the check
987 * against ctx->completed_events below will make sure we do the
988 * safe/right thing.
989 */
990 ring = kmap_atomic(ctx->ring_pages[0]);
991 head = ring->head;
992 kunmap_atomic(ring);
993
994 refill_reqs_available(ctx, head, ctx->tail);
995 }
996
997 spin_unlock_irq(&ctx->completion_lock);
998}
999
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000/* aio_get_req
Kent Overstreet57282d82013-05-13 13:42:52 -07001001 * Allocate a slot for an aio request.
1002 * Returns NULL if no requests are free.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 */
Christoph Hellwig04b2fa92015-02-02 14:49:06 +01001004static inline struct aio_kiocb *aio_get_req(struct kioctx *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005{
Christoph Hellwig04b2fa92015-02-02 14:49:06 +01001006 struct aio_kiocb *req;
Kent Overstreeta1c8eae2013-05-07 16:18:53 -07001007
Benjamin LaHaised856f322014-08-24 13:14:05 -04001008 if (!get_reqs_available(ctx)) {
1009 user_refill_reqs_available(ctx);
1010 if (!get_reqs_available(ctx))
1011 return NULL;
1012 }
Kent Overstreeta1c8eae2013-05-07 16:18:53 -07001013
Kent Overstreet0460fef2013-05-07 16:18:49 -07001014 req = kmem_cache_alloc(kiocb_cachep, GFP_KERNEL|__GFP_ZERO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 if (unlikely(!req))
Kent Overstreeta1c8eae2013-05-07 16:18:53 -07001016 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
Kent Overstreete34ecee2013-10-10 19:31:47 -07001018 percpu_ref_get(&ctx->reqs);
Christoph Hellwig75321b52018-04-09 14:57:56 +02001019 INIT_LIST_HEAD(&req->ki_list);
Christoph Hellwig9018ccc2018-07-24 11:36:37 +02001020 refcount_set(&req->ki_refcnt, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 req->ki_ctx = ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 return req;
Kent Overstreeta1c8eae2013-05-07 16:18:53 -07001023out_put:
Kent Overstreete1bdd5f2013-04-26 10:58:39 +10001024 put_reqs_available(ctx, 1);
Kent Overstreeta1c8eae2013-05-07 16:18:53 -07001025 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026}
1027
Adrian Bunkd5470b52008-04-29 00:58:57 -07001028static struct kioctx *lookup_ioctx(unsigned long ctx_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029{
Benjamin LaHaisedb446a02013-07-30 12:54:40 -04001030 struct aio_ring __user *ring = (void __user *)ctx_id;
Jens Axboeabf137d2008-12-09 08:11:22 +01001031 struct mm_struct *mm = current->mm;
Jeff Moyer65c24492009-03-18 17:04:21 -07001032 struct kioctx *ctx, *ret = NULL;
Benjamin LaHaisedb446a02013-07-30 12:54:40 -04001033 struct kioctx_table *table;
1034 unsigned id;
1035
1036 if (get_user(id, &ring->id))
1037 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
Jens Axboeabf137d2008-12-09 08:11:22 +01001039 rcu_read_lock();
Benjamin LaHaisedb446a02013-07-30 12:54:40 -04001040 table = rcu_dereference(mm->ioctx_table);
Jens Axboeabf137d2008-12-09 08:11:22 +01001041
Benjamin LaHaisedb446a02013-07-30 12:54:40 -04001042 if (!table || id >= table->nr)
1043 goto out;
1044
Tejun Heod0264c02018-03-14 12:10:17 -07001045 ctx = rcu_dereference(table->table[id]);
Benjamin LaHaisef30d7042013-08-07 18:23:48 -04001046 if (ctx && ctx->user_id == ctx_id) {
Al Virobaf10562018-05-20 16:46:23 -04001047 if (percpu_ref_tryget_live(&ctx->users))
1048 ret = ctx;
Jens Axboeabf137d2008-12-09 08:11:22 +01001049 }
Benjamin LaHaisedb446a02013-07-30 12:54:40 -04001050out:
Jens Axboeabf137d2008-12-09 08:11:22 +01001051 rcu_read_unlock();
Jeff Moyer65c24492009-03-18 17:04:21 -07001052 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053}
1054
Christoph Hellwig9018ccc2018-07-24 11:36:37 +02001055static inline void iocb_put(struct aio_kiocb *iocb)
1056{
1057 if (refcount_read(&iocb->ki_refcnt) == 0 ||
1058 refcount_dec_and_test(&iocb->ki_refcnt)) {
1059 percpu_ref_put(&iocb->ki_ctx->reqs);
1060 kmem_cache_free(kiocb_cachep, iocb);
1061 }
1062}
1063
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064/* aio_complete
1065 * Called when the io request on the given iocb is complete.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 */
Christoph Hellwig54843f82018-05-02 19:57:21 +02001067static void aio_complete(struct aio_kiocb *iocb, long res, long res2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068{
1069 struct kioctx *ctx = iocb->ki_ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 struct aio_ring *ring;
Kent Overstreet21b40202013-05-07 16:18:47 -07001071 struct io_event *ev_page, *event;
Benjamin LaHaised856f322014-08-24 13:14:05 -04001072 unsigned tail, pos, head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 /*
Kent Overstreet0460fef2013-05-07 16:18:49 -07001076 * Add a completion event to the ring buffer. Must be done holding
Tang Chen4b30f072013-07-03 15:09:16 -07001077 * ctx->completion_lock to prevent other code from messing with the tail
Kent Overstreet0460fef2013-05-07 16:18:49 -07001078 * pointer since we might be called from irq context.
1079 */
1080 spin_lock_irqsave(&ctx->completion_lock, flags);
1081
Kent Overstreet58c85dc2013-05-07 16:18:55 -07001082 tail = ctx->tail;
Kent Overstreet21b40202013-05-07 16:18:47 -07001083 pos = tail + AIO_EVENTS_OFFSET;
1084
Kent Overstreet58c85dc2013-05-07 16:18:55 -07001085 if (++tail >= ctx->nr_events)
Ken Chen4bf69b22005-05-01 08:59:15 -07001086 tail = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087
Kent Overstreet58c85dc2013-05-07 16:18:55 -07001088 ev_page = kmap_atomic(ctx->ring_pages[pos / AIO_EVENTS_PER_PAGE]);
Kent Overstreet21b40202013-05-07 16:18:47 -07001089 event = ev_page + pos % AIO_EVENTS_PER_PAGE;
1090
Christoph Hellwig04b2fa92015-02-02 14:49:06 +01001091 event->obj = (u64)(unsigned long)iocb->ki_user_iocb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 event->data = iocb->ki_user_data;
1093 event->res = res;
1094 event->res2 = res2;
1095
Kent Overstreet21b40202013-05-07 16:18:47 -07001096 kunmap_atomic(ev_page);
Kent Overstreet58c85dc2013-05-07 16:18:55 -07001097 flush_dcache_page(ctx->ring_pages[pos / AIO_EVENTS_PER_PAGE]);
Kent Overstreet21b40202013-05-07 16:18:47 -07001098
1099 pr_debug("%p[%u]: %p: %p %Lx %lx %lx\n",
Christoph Hellwig04b2fa92015-02-02 14:49:06 +01001100 ctx, tail, iocb, iocb->ki_user_iocb, iocb->ki_user_data,
Kent Overstreetcaf41672013-05-07 16:18:35 -07001101 res, res2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102
1103 /* after flagging the request as done, we
1104 * must never even look at it again
1105 */
1106 smp_wmb(); /* make event visible before updating tail */
1107
Kent Overstreet58c85dc2013-05-07 16:18:55 -07001108 ctx->tail = tail;
Kent Overstreet21b40202013-05-07 16:18:47 -07001109
Kent Overstreet58c85dc2013-05-07 16:18:55 -07001110 ring = kmap_atomic(ctx->ring_pages[0]);
Benjamin LaHaised856f322014-08-24 13:14:05 -04001111 head = ring->head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 ring->tail = tail;
Cong Wange8e3c3d2011-11-25 23:14:27 +08001113 kunmap_atomic(ring);
Kent Overstreet58c85dc2013-05-07 16:18:55 -07001114 flush_dcache_page(ctx->ring_pages[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
Benjamin LaHaised856f322014-08-24 13:14:05 -04001116 ctx->completed_events++;
1117 if (ctx->completed_events > 1)
1118 refill_reqs_available(ctx, head, tail);
Kent Overstreet0460fef2013-05-07 16:18:49 -07001119 spin_unlock_irqrestore(&ctx->completion_lock, flags);
1120
Kent Overstreet21b40202013-05-07 16:18:47 -07001121 pr_debug("added to ring %p at [%u]\n", iocb, tail);
Davide Libenzi8d1c98b2008-04-10 21:29:19 -07001122
1123 /*
1124 * Check if the user asked us to deliver the result through an
1125 * eventfd. The eventfd_signal() function is safe to be called
1126 * from IRQ context.
1127 */
Christoph Hellwig54843f82018-05-02 19:57:21 +02001128 if (iocb->ki_eventfd) {
Davide Libenzi8d1c98b2008-04-10 21:29:19 -07001129 eventfd_signal(iocb->ki_eventfd, 1);
Christoph Hellwig54843f82018-05-02 19:57:21 +02001130 eventfd_ctx_put(iocb->ki_eventfd);
1131 }
Davide Libenzi8d1c98b2008-04-10 21:29:19 -07001132
Quentin Barnes6cb2a212008-03-19 17:00:39 -07001133 /*
1134 * We have to order our ring_info tail store above and test
1135 * of the wait list below outside the wait lock. This is
1136 * like in wake_up_bit() where clearing a bit has to be
1137 * ordered with the unlocked test.
1138 */
1139 smp_mb();
1140
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 if (waitqueue_active(&ctx->wait))
1142 wake_up(&ctx->wait);
Christoph Hellwig9018ccc2018-07-24 11:36:37 +02001143 iocb_put(iocb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144}
1145
Gu Zheng2be4e7d2014-07-23 18:03:53 +08001146/* aio_read_events_ring
Kent Overstreeta31ad382013-05-07 16:18:45 -07001147 * Pull an event off of the ioctx's event ring. Returns the number of
1148 * events fetched
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 */
Kent Overstreeta31ad382013-05-07 16:18:45 -07001150static long aio_read_events_ring(struct kioctx *ctx,
1151 struct io_event __user *event, long nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 struct aio_ring *ring;
Kent Overstreet5ffac122013-05-09 15:36:07 -07001154 unsigned head, tail, pos;
Kent Overstreeta31ad382013-05-07 16:18:45 -07001155 long ret = 0;
1156 int copy_ret;
1157
Dave Chinner9c9ce762015-02-03 19:29:05 -05001158 /*
1159 * The mutex can block and wake us up and that will cause
1160 * wait_event_interruptible_hrtimeout() to schedule without sleeping
1161 * and repeat. This should be rare enough that it doesn't cause
1162 * peformance issues. See the comment in read_events() for more detail.
1163 */
1164 sched_annotate_sleep();
Kent Overstreet58c85dc2013-05-07 16:18:55 -07001165 mutex_lock(&ctx->ring_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166
Benjamin LaHaisefa8a53c2014-03-28 10:14:45 -04001167 /* Access to ->ring_pages here is protected by ctx->ring_lock. */
Kent Overstreet58c85dc2013-05-07 16:18:55 -07001168 ring = kmap_atomic(ctx->ring_pages[0]);
Kent Overstreeta31ad382013-05-07 16:18:45 -07001169 head = ring->head;
Kent Overstreet5ffac122013-05-09 15:36:07 -07001170 tail = ring->tail;
Kent Overstreeta31ad382013-05-07 16:18:45 -07001171 kunmap_atomic(ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172
Jeff Moyer2ff396be2014-09-02 13:17:00 -04001173 /*
1174 * Ensure that once we've read the current tail pointer, that
1175 * we also see the events that were stored up to the tail.
1176 */
1177 smp_rmb();
1178
Kent Overstreet5ffac122013-05-09 15:36:07 -07001179 pr_debug("h%u t%u m%u\n", head, tail, ctx->nr_events);
Kent Overstreeta31ad382013-05-07 16:18:45 -07001180
Kent Overstreet5ffac122013-05-09 15:36:07 -07001181 if (head == tail)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 goto out;
1183
Benjamin LaHaiseedfbbf32014-06-24 13:32:51 -04001184 head %= ctx->nr_events;
1185 tail %= ctx->nr_events;
1186
Kent Overstreeta31ad382013-05-07 16:18:45 -07001187 while (ret < nr) {
1188 long avail;
1189 struct io_event *ev;
1190 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
Kent Overstreet5ffac122013-05-09 15:36:07 -07001192 avail = (head <= tail ? tail : ctx->nr_events) - head;
1193 if (head == tail)
Kent Overstreeta31ad382013-05-07 16:18:45 -07001194 break;
1195
Kent Overstreeta31ad382013-05-07 16:18:45 -07001196 pos = head + AIO_EVENTS_OFFSET;
Kent Overstreet58c85dc2013-05-07 16:18:55 -07001197 page = ctx->ring_pages[pos / AIO_EVENTS_PER_PAGE];
Kent Overstreeta31ad382013-05-07 16:18:45 -07001198 pos %= AIO_EVENTS_PER_PAGE;
1199
Al Virod2988bd42018-05-26 19:13:10 -04001200 avail = min(avail, nr - ret);
1201 avail = min_t(long, avail, AIO_EVENTS_PER_PAGE - pos);
1202
Kent Overstreeta31ad382013-05-07 16:18:45 -07001203 ev = kmap(page);
1204 copy_ret = copy_to_user(event + ret, ev + pos,
1205 sizeof(*ev) * avail);
1206 kunmap(page);
1207
1208 if (unlikely(copy_ret)) {
1209 ret = -EFAULT;
1210 goto out;
1211 }
1212
1213 ret += avail;
1214 head += avail;
Kent Overstreet58c85dc2013-05-07 16:18:55 -07001215 head %= ctx->nr_events;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
Kent Overstreet58c85dc2013-05-07 16:18:55 -07001218 ring = kmap_atomic(ctx->ring_pages[0]);
Kent Overstreeta31ad382013-05-07 16:18:45 -07001219 ring->head = head;
Zhao Hongjiang91d80a82013-04-26 11:03:53 +08001220 kunmap_atomic(ring);
Kent Overstreet58c85dc2013-05-07 16:18:55 -07001221 flush_dcache_page(ctx->ring_pages[0]);
Kent Overstreeta31ad382013-05-07 16:18:45 -07001222
Kent Overstreet5ffac122013-05-09 15:36:07 -07001223 pr_debug("%li h%u t%u\n", ret, head, tail);
Kent Overstreeta31ad382013-05-07 16:18:45 -07001224out:
Kent Overstreet58c85dc2013-05-07 16:18:55 -07001225 mutex_unlock(&ctx->ring_lock);
Kent Overstreeta31ad382013-05-07 16:18:45 -07001226
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 return ret;
1228}
1229
Kent Overstreeta31ad382013-05-07 16:18:45 -07001230static bool aio_read_events(struct kioctx *ctx, long min_nr, long nr,
1231 struct io_event __user *event, long *i)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232{
Kent Overstreeta31ad382013-05-07 16:18:45 -07001233 long ret = aio_read_events_ring(ctx, event + *i, nr - *i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234
Kent Overstreeta31ad382013-05-07 16:18:45 -07001235 if (ret > 0)
1236 *i += ret;
1237
1238 if (unlikely(atomic_read(&ctx->dead)))
1239 ret = -EINVAL;
1240
1241 if (!*i)
1242 *i = ret;
1243
1244 return ret < 0 || *i >= min_nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245}
1246
Kent Overstreeta31ad382013-05-07 16:18:45 -07001247static long read_events(struct kioctx *ctx, long min_nr, long nr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 struct io_event __user *event,
Deepa Dinamanifa2e62a2017-08-04 21:12:32 -07001249 ktime_t until)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250{
Kent Overstreeta31ad382013-05-07 16:18:45 -07001251 long ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
Kent Overstreeta31ad382013-05-07 16:18:45 -07001253 /*
1254 * Note that aio_read_events() is being called as the conditional - i.e.
1255 * we're calling it after prepare_to_wait() has set task state to
1256 * TASK_INTERRUPTIBLE.
1257 *
1258 * But aio_read_events() can block, and if it blocks it's going to flip
1259 * the task state back to TASK_RUNNING.
1260 *
1261 * This should be ok, provided it doesn't flip the state back to
1262 * TASK_RUNNING and return 0 too much - that causes us to spin. That
1263 * will only happen if the mutex_lock() call blocks, and we then find
1264 * the ringbuffer empty. So in practice we should be ok, but it's
1265 * something to be aware of when touching this code.
1266 */
Thomas Gleixner2456e852016-12-25 11:38:40 +01001267 if (until == 0)
Fam Zheng5f785de2014-11-06 20:44:36 +08001268 aio_read_events(ctx, min_nr, nr, event, &ret);
1269 else
1270 wait_event_interruptible_hrtimeout(ctx->wait,
1271 aio_read_events(ctx, min_nr, nr, event, &ret),
1272 until);
Kent Overstreeta31ad382013-05-07 16:18:45 -07001273 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274}
1275
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276/* sys_io_setup:
1277 * Create an aio_context capable of receiving at least nr_events.
1278 * ctxp must not point to an aio_context that already exists, and
1279 * must be initialized to 0 prior to the call. On successful
1280 * creation of the aio_context, *ctxp is filled in with the resulting
1281 * handle. May fail with -EINVAL if *ctxp is not initialized,
1282 * if the specified nr_events exceeds internal limits. May fail
1283 * with -EAGAIN if the specified nr_events exceeds the user's limit
1284 * of available events. May fail with -ENOMEM if insufficient kernel
1285 * resources are available. May fail with -EFAULT if an invalid
1286 * pointer is passed for ctxp. Will fail with -ENOSYS if not
1287 * implemented.
1288 */
Heiko Carstens002c8972009-01-14 14:14:18 +01001289SYSCALL_DEFINE2(io_setup, unsigned, nr_events, aio_context_t __user *, ctxp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290{
1291 struct kioctx *ioctx = NULL;
1292 unsigned long ctx;
1293 long ret;
1294
1295 ret = get_user(ctx, ctxp);
1296 if (unlikely(ret))
1297 goto out;
1298
1299 ret = -EINVAL;
Zach Brownd55b5fd2005-11-07 00:59:31 -08001300 if (unlikely(ctx || nr_events == 0)) {
Kinglong Meeacd88d42015-02-04 21:15:59 +08001301 pr_debug("EINVAL: ctx %lu nr_events %u\n",
Zach Brownd55b5fd2005-11-07 00:59:31 -08001302 ctx, nr_events);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 goto out;
1304 }
1305
1306 ioctx = ioctx_alloc(nr_events);
1307 ret = PTR_ERR(ioctx);
1308 if (!IS_ERR(ioctx)) {
1309 ret = put_user(ioctx->user_id, ctxp);
Al Viroa2e18592012-03-20 16:27:57 -04001310 if (ret)
Anatol Pomozove02ba722014-04-15 11:31:33 -07001311 kill_ioctx(current->mm, ioctx, NULL);
Kent Overstreet723be6e2013-05-28 15:14:48 -07001312 percpu_ref_put(&ioctx->users);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 }
1314
1315out:
1316 return ret;
1317}
1318
Al Viroc00d2c72016-12-20 07:04:57 -05001319#ifdef CONFIG_COMPAT
1320COMPAT_SYSCALL_DEFINE2(io_setup, unsigned, nr_events, u32 __user *, ctx32p)
1321{
1322 struct kioctx *ioctx = NULL;
1323 unsigned long ctx;
1324 long ret;
1325
1326 ret = get_user(ctx, ctx32p);
1327 if (unlikely(ret))
1328 goto out;
1329
1330 ret = -EINVAL;
1331 if (unlikely(ctx || nr_events == 0)) {
1332 pr_debug("EINVAL: ctx %lu nr_events %u\n",
1333 ctx, nr_events);
1334 goto out;
1335 }
1336
1337 ioctx = ioctx_alloc(nr_events);
1338 ret = PTR_ERR(ioctx);
1339 if (!IS_ERR(ioctx)) {
1340 /* truncating is ok because it's a user address */
1341 ret = put_user((u32)ioctx->user_id, ctx32p);
1342 if (ret)
1343 kill_ioctx(current->mm, ioctx, NULL);
1344 percpu_ref_put(&ioctx->users);
1345 }
1346
1347out:
1348 return ret;
1349}
1350#endif
1351
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352/* sys_io_destroy:
1353 * Destroy the aio_context specified. May cancel any outstanding
1354 * AIOs and block on completion. Will fail with -ENOSYS if not
Satoru Takeuchi642b5122010-08-05 11:23:11 -07001355 * implemented. May fail with -EINVAL if the context pointed to
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 * is invalid.
1357 */
Heiko Carstens002c8972009-01-14 14:14:18 +01001358SYSCALL_DEFINE1(io_destroy, aio_context_t, ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359{
1360 struct kioctx *ioctx = lookup_ioctx(ctx);
1361 if (likely(NULL != ioctx)) {
Jens Axboedc48e562015-04-15 11:17:23 -06001362 struct ctx_rq_wait wait;
Benjamin LaHaisefb2d4482014-04-29 12:45:17 -04001363 int ret;
Anatol Pomozove02ba722014-04-15 11:31:33 -07001364
Jens Axboedc48e562015-04-15 11:17:23 -06001365 init_completion(&wait.comp);
1366 atomic_set(&wait.count, 1);
1367
Anatol Pomozove02ba722014-04-15 11:31:33 -07001368 /* Pass requests_done to kill_ioctx() where it can be set
1369 * in a thread-safe way. If we try to set it here then we have
1370 * a race condition if two io_destroy() called simultaneously.
1371 */
Jens Axboedc48e562015-04-15 11:17:23 -06001372 ret = kill_ioctx(current->mm, ioctx, &wait);
Kent Overstreet723be6e2013-05-28 15:14:48 -07001373 percpu_ref_put(&ioctx->users);
Anatol Pomozove02ba722014-04-15 11:31:33 -07001374
1375 /* Wait until all IO for the context are done. Otherwise kernel
1376 * keep using user-space buffers even if user thinks the context
1377 * is destroyed.
1378 */
Benjamin LaHaisefb2d4482014-04-29 12:45:17 -04001379 if (!ret)
Jens Axboedc48e562015-04-15 11:17:23 -06001380 wait_for_completion(&wait.comp);
Anatol Pomozove02ba722014-04-15 11:31:33 -07001381
Benjamin LaHaisefb2d4482014-04-29 12:45:17 -04001382 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 }
Kinglong Meeacd88d42015-02-04 21:15:59 +08001384 pr_debug("EINVAL: invalid context id\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 return -EINVAL;
1386}
1387
Al Viro3c96c7f2018-05-28 13:37:43 -04001388static void aio_remove_iocb(struct aio_kiocb *iocb)
1389{
1390 struct kioctx *ctx = iocb->ki_ctx;
1391 unsigned long flags;
1392
1393 spin_lock_irqsave(&ctx->ctx_lock, flags);
1394 list_del(&iocb->ki_list);
1395 spin_unlock_irqrestore(&ctx->ctx_lock, flags);
1396}
1397
Christoph Hellwig54843f82018-05-02 19:57:21 +02001398static void aio_complete_rw(struct kiocb *kiocb, long res, long res2)
1399{
1400 struct aio_kiocb *iocb = container_of(kiocb, struct aio_kiocb, rw);
1401
Al Viro3c96c7f2018-05-28 13:37:43 -04001402 if (!list_empty_careful(&iocb->ki_list))
1403 aio_remove_iocb(iocb);
1404
Christoph Hellwig54843f82018-05-02 19:57:21 +02001405 if (kiocb->ki_flags & IOCB_WRITE) {
1406 struct inode *inode = file_inode(kiocb->ki_filp);
1407
1408 /*
1409 * Tell lockdep we inherited freeze protection from submission
1410 * thread.
1411 */
1412 if (S_ISREG(inode->i_mode))
1413 __sb_writers_acquired(inode->i_sb, SB_FREEZE_WRITE);
1414 file_end_write(kiocb->ki_filp);
1415 }
1416
1417 fput(kiocb->ki_filp);
1418 aio_complete(iocb, res, res2);
1419}
1420
1421static int aio_prep_rw(struct kiocb *req, struct iocb *iocb)
1422{
1423 int ret;
1424
1425 req->ki_filp = fget(iocb->aio_fildes);
1426 if (unlikely(!req->ki_filp))
1427 return -EBADF;
1428 req->ki_complete = aio_complete_rw;
1429 req->ki_pos = iocb->aio_offset;
1430 req->ki_flags = iocb_flags(req->ki_filp);
1431 if (iocb->aio_flags & IOCB_FLAG_RESFD)
1432 req->ki_flags |= IOCB_EVENTFD;
Adam Manzanaresfc287242018-05-22 10:52:18 -07001433 req->ki_hint = ki_hint_validate(file_write_hint(req->ki_filp));
Adam Manzanaresd9a08a92018-05-22 10:52:19 -07001434 if (iocb->aio_flags & IOCB_FLAG_IOPRIO) {
1435 /*
1436 * If the IOCB_FLAG_IOPRIO flag of aio_flags is set, then
1437 * aio_reqprio is interpreted as an I/O scheduling
1438 * class and priority.
1439 */
1440 ret = ioprio_check_cap(iocb->aio_reqprio);
1441 if (ret) {
Adam Manzanares9a6d9a62018-06-04 10:59:57 -07001442 pr_debug("aio ioprio check cap error: %d\n", ret);
1443 return ret;
Adam Manzanaresd9a08a92018-05-22 10:52:19 -07001444 }
1445
1446 req->ki_ioprio = iocb->aio_reqprio;
1447 } else
1448 req->ki_ioprio = IOPRIO_PRIO_VALUE(IOPRIO_CLASS_NONE, 0);
1449
Christoph Hellwig54843f82018-05-02 19:57:21 +02001450 ret = kiocb_set_rw_flags(req, iocb->aio_rw_flags);
1451 if (unlikely(ret))
1452 fput(req->ki_filp);
1453 return ret;
1454}
1455
Christoph Hellwig89319d312016-10-30 11:42:03 -05001456static int aio_setup_rw(int rw, struct iocb *iocb, struct iovec **iovec,
1457 bool vectored, bool compat, struct iov_iter *iter)
Badari Pulavartyeed4e512006-09-30 23:28:49 -07001458{
Christoph Hellwig89319d312016-10-30 11:42:03 -05001459 void __user *buf = (void __user *)(uintptr_t)iocb->aio_buf;
1460 size_t len = iocb->aio_nbytes;
1461
1462 if (!vectored) {
1463 ssize_t ret = import_single_range(rw, buf, len, *iovec, iter);
1464 *iovec = NULL;
1465 return ret;
1466 }
Jeff Moyer9d85cba72010-05-26 14:44:26 -07001467#ifdef CONFIG_COMPAT
1468 if (compat)
Christoph Hellwig89319d312016-10-30 11:42:03 -05001469 return compat_import_iovec(rw, buf, len, UIO_FASTIOV, iovec,
1470 iter);
Jeff Moyer9d85cba72010-05-26 14:44:26 -07001471#endif
Christoph Hellwig89319d312016-10-30 11:42:03 -05001472 return import_iovec(rw, buf, len, UIO_FASTIOV, iovec, iter);
Badari Pulavartyeed4e512006-09-30 23:28:49 -07001473}
1474
Al Viro9061d142018-05-26 19:11:40 -04001475static inline void aio_rw_done(struct kiocb *req, ssize_t ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476{
Christoph Hellwig89319d312016-10-30 11:42:03 -05001477 switch (ret) {
1478 case -EIOCBQUEUED:
Al Viro9061d142018-05-26 19:11:40 -04001479 break;
Christoph Hellwig89319d312016-10-30 11:42:03 -05001480 case -ERESTARTSYS:
1481 case -ERESTARTNOINTR:
1482 case -ERESTARTNOHAND:
1483 case -ERESTART_RESTARTBLOCK:
Kent Overstreet41ef4eb2013-05-07 16:19:11 -07001484 /*
1485 * There's no easy way to restart the syscall since other AIO's
1486 * may be already running. Just fail this IO with EINTR.
1487 */
Christoph Hellwig89319d312016-10-30 11:42:03 -05001488 ret = -EINTR;
1489 /*FALLTHRU*/
1490 default:
Christoph Hellwig54843f82018-05-02 19:57:21 +02001491 aio_complete_rw(req, ret, 0);
Kent Overstreet41ef4eb2013-05-07 16:19:11 -07001492 }
Christoph Hellwig89319d312016-10-30 11:42:03 -05001493}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
Christoph Hellwig89319d312016-10-30 11:42:03 -05001495static ssize_t aio_read(struct kiocb *req, struct iocb *iocb, bool vectored,
1496 bool compat)
1497{
Christoph Hellwig89319d312016-10-30 11:42:03 -05001498 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
1499 struct iov_iter iter;
Christoph Hellwig54843f82018-05-02 19:57:21 +02001500 struct file *file;
Christoph Hellwig89319d312016-10-30 11:42:03 -05001501 ssize_t ret;
1502
Christoph Hellwig54843f82018-05-02 19:57:21 +02001503 ret = aio_prep_rw(req, iocb);
1504 if (ret)
1505 return ret;
1506 file = req->ki_filp;
1507
1508 ret = -EBADF;
Christoph Hellwig89319d312016-10-30 11:42:03 -05001509 if (unlikely(!(file->f_mode & FMODE_READ)))
Christoph Hellwig54843f82018-05-02 19:57:21 +02001510 goto out_fput;
1511 ret = -EINVAL;
Christoph Hellwig89319d312016-10-30 11:42:03 -05001512 if (unlikely(!file->f_op->read_iter))
Christoph Hellwig54843f82018-05-02 19:57:21 +02001513 goto out_fput;
Christoph Hellwig89319d312016-10-30 11:42:03 -05001514
1515 ret = aio_setup_rw(READ, iocb, &iovec, vectored, compat, &iter);
1516 if (ret)
Christoph Hellwig54843f82018-05-02 19:57:21 +02001517 goto out_fput;
Christoph Hellwig89319d312016-10-30 11:42:03 -05001518 ret = rw_verify_area(READ, file, &req->ki_pos, iov_iter_count(&iter));
1519 if (!ret)
Al Viro9061d142018-05-26 19:11:40 -04001520 aio_rw_done(req, call_read_iter(file, req, &iter));
Christoph Hellwig89319d312016-10-30 11:42:03 -05001521 kfree(iovec);
Christoph Hellwig54843f82018-05-02 19:57:21 +02001522out_fput:
Al Viro9061d142018-05-26 19:11:40 -04001523 if (unlikely(ret))
Christoph Hellwig54843f82018-05-02 19:57:21 +02001524 fput(file);
Christoph Hellwig89319d312016-10-30 11:42:03 -05001525 return ret;
1526}
1527
1528static ssize_t aio_write(struct kiocb *req, struct iocb *iocb, bool vectored,
1529 bool compat)
1530{
Christoph Hellwig89319d312016-10-30 11:42:03 -05001531 struct iovec inline_vecs[UIO_FASTIOV], *iovec = inline_vecs;
1532 struct iov_iter iter;
Christoph Hellwig54843f82018-05-02 19:57:21 +02001533 struct file *file;
Christoph Hellwig89319d312016-10-30 11:42:03 -05001534 ssize_t ret;
1535
Christoph Hellwig54843f82018-05-02 19:57:21 +02001536 ret = aio_prep_rw(req, iocb);
1537 if (ret)
1538 return ret;
1539 file = req->ki_filp;
1540
1541 ret = -EBADF;
Christoph Hellwig89319d312016-10-30 11:42:03 -05001542 if (unlikely(!(file->f_mode & FMODE_WRITE)))
Christoph Hellwig54843f82018-05-02 19:57:21 +02001543 goto out_fput;
1544 ret = -EINVAL;
Christoph Hellwig89319d312016-10-30 11:42:03 -05001545 if (unlikely(!file->f_op->write_iter))
Christoph Hellwig54843f82018-05-02 19:57:21 +02001546 goto out_fput;
Christoph Hellwig89319d312016-10-30 11:42:03 -05001547
1548 ret = aio_setup_rw(WRITE, iocb, &iovec, vectored, compat, &iter);
1549 if (ret)
Christoph Hellwig54843f82018-05-02 19:57:21 +02001550 goto out_fput;
Christoph Hellwig89319d312016-10-30 11:42:03 -05001551 ret = rw_verify_area(WRITE, file, &req->ki_pos, iov_iter_count(&iter));
1552 if (!ret) {
Jan Kara70fe2f42016-10-30 11:42:04 -05001553 /*
Christoph Hellwig92ce4722018-04-06 09:28:17 +02001554 * Open-code file_start_write here to grab freeze protection,
Christoph Hellwig54843f82018-05-02 19:57:21 +02001555 * which will be released by another thread in
1556 * aio_complete_rw(). Fool lockdep by telling it the lock got
1557 * released so that it doesn't complain about the held lock when
1558 * we return to userspace.
Jan Kara70fe2f42016-10-30 11:42:04 -05001559 */
Christoph Hellwig92ce4722018-04-06 09:28:17 +02001560 if (S_ISREG(file_inode(file)->i_mode)) {
1561 __sb_start_write(file_inode(file)->i_sb, SB_FREEZE_WRITE, true);
Shaohua Lia12f1ae2016-12-13 12:09:56 -08001562 __sb_writers_release(file_inode(file)->i_sb, SB_FREEZE_WRITE);
Christoph Hellwig92ce4722018-04-06 09:28:17 +02001563 }
1564 req->ki_flags |= IOCB_WRITE;
Al Viro9061d142018-05-26 19:11:40 -04001565 aio_rw_done(req, call_write_iter(file, req, &iter));
Christoph Hellwig89319d312016-10-30 11:42:03 -05001566 }
1567 kfree(iovec);
Christoph Hellwig54843f82018-05-02 19:57:21 +02001568out_fput:
Al Viro9061d142018-05-26 19:11:40 -04001569 if (unlikely(ret))
Christoph Hellwig54843f82018-05-02 19:57:21 +02001570 fput(file);
Christoph Hellwig89319d312016-10-30 11:42:03 -05001571 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572}
1573
Christoph Hellwiga3c0d432018-03-27 19:18:57 +02001574static void aio_fsync_work(struct work_struct *work)
1575{
1576 struct fsync_iocb *req = container_of(work, struct fsync_iocb, work);
1577 int ret;
1578
1579 ret = vfs_fsync(req->file, req->datasync);
1580 fput(req->file);
1581 aio_complete(container_of(req, struct aio_kiocb, fsync), ret, 0);
1582}
1583
1584static int aio_fsync(struct fsync_iocb *req, struct iocb *iocb, bool datasync)
1585{
1586 if (unlikely(iocb->aio_buf || iocb->aio_offset || iocb->aio_nbytes ||
1587 iocb->aio_rw_flags))
1588 return -EINVAL;
Linus Torvaldsa11e1d42018-06-28 09:43:44 -07001589
Christoph Hellwiga3c0d432018-03-27 19:18:57 +02001590 req->file = fget(iocb->aio_fildes);
1591 if (unlikely(!req->file))
1592 return -EBADF;
1593 if (unlikely(!req->file->f_op->fsync)) {
1594 fput(req->file);
1595 return -EINVAL;
1596 }
1597
1598 req->datasync = datasync;
1599 INIT_WORK(&req->work, aio_fsync_work);
1600 schedule_work(&req->work);
Al Viro9061d142018-05-26 19:11:40 -04001601 return 0;
Christoph Hellwiga3c0d432018-03-27 19:18:57 +02001602}
1603
Adrian Bunkd5470b52008-04-29 00:58:57 -07001604static int io_submit_one(struct kioctx *ctx, struct iocb __user *user_iocb,
Al Viro95af8492018-05-26 19:43:16 -04001605 bool compat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606{
Christoph Hellwig04b2fa92015-02-02 14:49:06 +01001607 struct aio_kiocb *req;
Al Viro95af8492018-05-26 19:43:16 -04001608 struct iocb iocb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 ssize_t ret;
1610
Al Viro95af8492018-05-26 19:43:16 -04001611 if (unlikely(copy_from_user(&iocb, user_iocb, sizeof(iocb))))
1612 return -EFAULT;
1613
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 /* enforce forwards compatibility on users */
Al Viro95af8492018-05-26 19:43:16 -04001615 if (unlikely(iocb.aio_reserved2)) {
Kent Overstreetcaf41672013-05-07 16:18:35 -07001616 pr_debug("EINVAL: reserve field set\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 return -EINVAL;
1618 }
1619
1620 /* prevent overflows */
1621 if (unlikely(
Al Viro95af8492018-05-26 19:43:16 -04001622 (iocb.aio_buf != (unsigned long)iocb.aio_buf) ||
1623 (iocb.aio_nbytes != (size_t)iocb.aio_nbytes) ||
1624 ((ssize_t)iocb.aio_nbytes < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 )) {
Kinglong Meeacd88d42015-02-04 21:15:59 +08001626 pr_debug("EINVAL: overflow check\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 return -EINVAL;
1628 }
1629
Kent Overstreet41ef4eb2013-05-07 16:19:11 -07001630 req = aio_get_req(ctx);
Kent Overstreet1d98ebf2013-05-07 16:18:37 -07001631 if (unlikely(!req))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 return -EAGAIN;
Kent Overstreet1d98ebf2013-05-07 16:18:37 -07001633
Al Viro95af8492018-05-26 19:43:16 -04001634 if (iocb.aio_flags & IOCB_FLAG_RESFD) {
Davide Libenzi9c3060b2007-05-10 22:23:21 -07001635 /*
1636 * If the IOCB_FLAG_RESFD flag of aio_flags is set, get an
1637 * instance of the file* now. The file descriptor must be
1638 * an eventfd() fd, and will be signaled for each completed
1639 * event using the eventfd_signal() function.
1640 */
Al Viro95af8492018-05-26 19:43:16 -04001641 req->ki_eventfd = eventfd_ctx_fdget((int) iocb.aio_resfd);
Hirofumi Nakagawa801678c2008-04-29 01:03:09 -07001642 if (IS_ERR(req->ki_eventfd)) {
Davide Libenzi9c3060b2007-05-10 22:23:21 -07001643 ret = PTR_ERR(req->ki_eventfd);
Davide Libenzi87c3a862009-03-18 17:04:19 -07001644 req->ki_eventfd = NULL;
Davide Libenzi9c3060b2007-05-10 22:23:21 -07001645 goto out_put_req;
1646 }
Goldwyn Rodrigues9830f4b2017-06-20 07:05:42 -05001647 }
1648
Kent Overstreet8a660892013-05-07 16:19:10 -07001649 ret = put_user(KIOCB_KEY, &user_iocb->aio_key);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 if (unlikely(ret)) {
Kent Overstreetcaf41672013-05-07 16:18:35 -07001651 pr_debug("EFAULT: aio_key\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 goto out_put_req;
1653 }
1654
Christoph Hellwig04b2fa92015-02-02 14:49:06 +01001655 req->ki_user_iocb = user_iocb;
Al Viro95af8492018-05-26 19:43:16 -04001656 req->ki_user_data = iocb.aio_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
Al Viro95af8492018-05-26 19:43:16 -04001658 switch (iocb.aio_lio_opcode) {
Christoph Hellwig89319d312016-10-30 11:42:03 -05001659 case IOCB_CMD_PREAD:
Al Viro95af8492018-05-26 19:43:16 -04001660 ret = aio_read(&req->rw, &iocb, false, compat);
Christoph Hellwig89319d312016-10-30 11:42:03 -05001661 break;
1662 case IOCB_CMD_PWRITE:
Al Viro95af8492018-05-26 19:43:16 -04001663 ret = aio_write(&req->rw, &iocb, false, compat);
Christoph Hellwig89319d312016-10-30 11:42:03 -05001664 break;
1665 case IOCB_CMD_PREADV:
Al Viro95af8492018-05-26 19:43:16 -04001666 ret = aio_read(&req->rw, &iocb, true, compat);
Christoph Hellwig89319d312016-10-30 11:42:03 -05001667 break;
1668 case IOCB_CMD_PWRITEV:
Al Viro95af8492018-05-26 19:43:16 -04001669 ret = aio_write(&req->rw, &iocb, true, compat);
Christoph Hellwig89319d312016-10-30 11:42:03 -05001670 break;
Christoph Hellwiga3c0d432018-03-27 19:18:57 +02001671 case IOCB_CMD_FSYNC:
Al Viro95af8492018-05-26 19:43:16 -04001672 ret = aio_fsync(&req->fsync, &iocb, false);
Christoph Hellwiga3c0d432018-03-27 19:18:57 +02001673 break;
1674 case IOCB_CMD_FDSYNC:
Al Viro95af8492018-05-26 19:43:16 -04001675 ret = aio_fsync(&req->fsync, &iocb, true);
Christoph Hellwigac060cb2018-05-28 07:19:49 +02001676 break;
Christoph Hellwig89319d312016-10-30 11:42:03 -05001677 default:
Al Viro95af8492018-05-26 19:43:16 -04001678 pr_debug("invalid aio operation %d\n", iocb.aio_lio_opcode);
Christoph Hellwig89319d312016-10-30 11:42:03 -05001679 ret = -EINVAL;
1680 break;
1681 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682
Christoph Hellwig92ce4722018-04-06 09:28:17 +02001683 /*
Al Viro9061d142018-05-26 19:11:40 -04001684 * If ret is 0, we'd either done aio_complete() ourselves or have
1685 * arranged for that to be done asynchronously. Anything non-zero
1686 * means that we need to destroy req ourselves.
Christoph Hellwig92ce4722018-04-06 09:28:17 +02001687 */
Al Viro9061d142018-05-26 19:11:40 -04001688 if (ret)
Christoph Hellwig89319d312016-10-30 11:42:03 -05001689 goto out_put_req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691out_put_req:
Kent Overstreete1bdd5f2013-04-26 10:58:39 +10001692 put_reqs_available(ctx, 1);
Kent Overstreete34ecee2013-10-10 19:31:47 -07001693 percpu_ref_put(&ctx->reqs);
Christoph Hellwig54843f82018-05-02 19:57:21 +02001694 if (req->ki_eventfd)
1695 eventfd_ctx_put(req->ki_eventfd);
1696 kmem_cache_free(kiocb_cachep, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 return ret;
1698}
1699
Jeff Moyer9d85cba72010-05-26 14:44:26 -07001700/* sys_io_submit:
1701 * Queue the nr iocbs pointed to by iocbpp for processing. Returns
1702 * the number of iocbs queued. May return -EINVAL if the aio_context
1703 * specified by ctx_id is invalid, if nr is < 0, if the iocb at
1704 * *iocbpp[0] is not properly initialized, if the operation specified
1705 * is invalid for the file descriptor in the iocb. May fail with
1706 * -EFAULT if any of the data structures point to invalid data. May
1707 * fail with -EBADF if the file descriptor specified in the first
1708 * iocb is invalid. May fail with -EAGAIN if insufficient resources
1709 * are available to queue any iocbs. Will return 0 if nr is 0. Will
1710 * fail with -ENOSYS if not implemented.
1711 */
1712SYSCALL_DEFINE3(io_submit, aio_context_t, ctx_id, long, nr,
1713 struct iocb __user * __user *, iocbpp)
1714{
Al Viro67ba0492018-05-26 20:10:07 -04001715 struct kioctx *ctx;
1716 long ret = 0;
1717 int i = 0;
1718 struct blk_plug plug;
1719
1720 if (unlikely(nr < 0))
1721 return -EINVAL;
1722
Al Viro67ba0492018-05-26 20:10:07 -04001723 ctx = lookup_ioctx(ctx_id);
1724 if (unlikely(!ctx)) {
1725 pr_debug("EINVAL: invalid context id\n");
1726 return -EINVAL;
1727 }
1728
Al Viro1da92772018-05-26 20:10:07 -04001729 if (nr > ctx->nr_events)
1730 nr = ctx->nr_events;
1731
Al Viro67ba0492018-05-26 20:10:07 -04001732 blk_start_plug(&plug);
1733 for (i = 0; i < nr; i++) {
1734 struct iocb __user *user_iocb;
1735
1736 if (unlikely(get_user(user_iocb, iocbpp + i))) {
1737 ret = -EFAULT;
1738 break;
1739 }
1740
1741 ret = io_submit_one(ctx, user_iocb, false);
1742 if (ret)
1743 break;
1744 }
1745 blk_finish_plug(&plug);
1746
1747 percpu_ref_put(&ctx->users);
1748 return i ? i : ret;
Jeff Moyer9d85cba72010-05-26 14:44:26 -07001749}
1750
Al Viroc00d2c72016-12-20 07:04:57 -05001751#ifdef CONFIG_COMPAT
Al Viroc00d2c72016-12-20 07:04:57 -05001752COMPAT_SYSCALL_DEFINE3(io_submit, compat_aio_context_t, ctx_id,
Al Viro67ba0492018-05-26 20:10:07 -04001753 int, nr, compat_uptr_t __user *, iocbpp)
Al Viroc00d2c72016-12-20 07:04:57 -05001754{
Al Viro67ba0492018-05-26 20:10:07 -04001755 struct kioctx *ctx;
1756 long ret = 0;
1757 int i = 0;
1758 struct blk_plug plug;
Al Viroc00d2c72016-12-20 07:04:57 -05001759
1760 if (unlikely(nr < 0))
1761 return -EINVAL;
1762
Al Viro67ba0492018-05-26 20:10:07 -04001763 ctx = lookup_ioctx(ctx_id);
1764 if (unlikely(!ctx)) {
1765 pr_debug("EINVAL: invalid context id\n");
1766 return -EINVAL;
1767 }
1768
Al Viro1da92772018-05-26 20:10:07 -04001769 if (nr > ctx->nr_events)
1770 nr = ctx->nr_events;
1771
Al Viro67ba0492018-05-26 20:10:07 -04001772 blk_start_plug(&plug);
1773 for (i = 0; i < nr; i++) {
1774 compat_uptr_t user_iocb;
1775
1776 if (unlikely(get_user(user_iocb, iocbpp + i))) {
1777 ret = -EFAULT;
1778 break;
1779 }
1780
1781 ret = io_submit_one(ctx, compat_ptr(user_iocb), true);
1782 if (ret)
1783 break;
1784 }
1785 blk_finish_plug(&plug);
1786
1787 percpu_ref_put(&ctx->users);
1788 return i ? i : ret;
Al Viroc00d2c72016-12-20 07:04:57 -05001789}
1790#endif
1791
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792/* lookup_kiocb
1793 * Finds a given iocb for cancellation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 */
Christoph Hellwig04b2fa92015-02-02 14:49:06 +01001795static struct aio_kiocb *
Christoph Hellwigf3a27522018-03-30 11:19:25 +02001796lookup_kiocb(struct kioctx *ctx, struct iocb __user *iocb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797{
Christoph Hellwig04b2fa92015-02-02 14:49:06 +01001798 struct aio_kiocb *kiocb;
Zach Brownd00689a2005-11-13 16:07:34 -08001799
1800 assert_spin_locked(&ctx->ctx_lock);
1801
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 /* TODO: use a hash or array, this sucks. */
Christoph Hellwig04b2fa92015-02-02 14:49:06 +01001803 list_for_each_entry(kiocb, &ctx->active_reqs, ki_list) {
1804 if (kiocb->ki_user_iocb == iocb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 return kiocb;
1806 }
1807 return NULL;
1808}
1809
1810/* sys_io_cancel:
1811 * Attempts to cancel an iocb previously passed to io_submit. If
1812 * the operation is successfully cancelled, the resulting event is
1813 * copied into the memory pointed to by result without being placed
1814 * into the completion queue and 0 is returned. May fail with
1815 * -EFAULT if any of the data structures pointed to are invalid.
1816 * May fail with -EINVAL if aio_context specified by ctx_id is
1817 * invalid. May fail with -EAGAIN if the iocb specified was not
1818 * cancelled. Will fail with -ENOSYS if not implemented.
1819 */
Heiko Carstens002c8972009-01-14 14:14:18 +01001820SYSCALL_DEFINE3(io_cancel, aio_context_t, ctx_id, struct iocb __user *, iocb,
1821 struct io_event __user *, result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 struct kioctx *ctx;
Christoph Hellwig04b2fa92015-02-02 14:49:06 +01001824 struct aio_kiocb *kiocb;
Christoph Hellwig888933f2018-05-23 14:11:02 +02001825 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 u32 key;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827
Christoph Hellwigf3a27522018-03-30 11:19:25 +02001828 if (unlikely(get_user(key, &iocb->aio_key)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 return -EFAULT;
Christoph Hellwigf3a27522018-03-30 11:19:25 +02001830 if (unlikely(key != KIOCB_KEY))
1831 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832
1833 ctx = lookup_ioctx(ctx_id);
1834 if (unlikely(!ctx))
1835 return -EINVAL;
1836
1837 spin_lock_irq(&ctx->ctx_lock);
Christoph Hellwigf3a27522018-03-30 11:19:25 +02001838 kiocb = lookup_kiocb(ctx, iocb);
Christoph Hellwig888933f2018-05-23 14:11:02 +02001839 if (kiocb) {
1840 ret = kiocb->ki_cancel(&kiocb->rw);
1841 list_del_init(&kiocb->ki_list);
1842 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 spin_unlock_irq(&ctx->ctx_lock);
1844
Kent Overstreet906b9732013-05-07 16:18:31 -07001845 if (!ret) {
Kent Overstreetbec68faa2013-05-13 14:45:08 -07001846 /*
1847 * The result argument is no longer used - the io_event is
1848 * always delivered via the ring buffer. -EINPROGRESS indicates
1849 * cancellation is progress:
Kent Overstreet906b9732013-05-07 16:18:31 -07001850 */
Kent Overstreetbec68faa2013-05-13 14:45:08 -07001851 ret = -EINPROGRESS;
Kent Overstreet906b9732013-05-07 16:18:31 -07001852 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853
Kent Overstreet723be6e2013-05-28 15:14:48 -07001854 percpu_ref_put(&ctx->users);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855
1856 return ret;
1857}
1858
Deepa Dinamanifa2e62a2017-08-04 21:12:32 -07001859static long do_io_getevents(aio_context_t ctx_id,
1860 long min_nr,
1861 long nr,
1862 struct io_event __user *events,
1863 struct timespec64 *ts)
1864{
1865 ktime_t until = ts ? timespec64_to_ktime(*ts) : KTIME_MAX;
1866 struct kioctx *ioctx = lookup_ioctx(ctx_id);
1867 long ret = -EINVAL;
1868
1869 if (likely(ioctx)) {
1870 if (likely(min_nr <= nr && min_nr >= 0))
1871 ret = read_events(ioctx, min_nr, nr, events, until);
1872 percpu_ref_put(&ioctx->users);
1873 }
1874
1875 return ret;
1876}
1877
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878/* io_getevents:
1879 * Attempts to read at least min_nr events and up to nr events from
Satoru Takeuchi642b5122010-08-05 11:23:11 -07001880 * the completion queue for the aio_context specified by ctx_id. If
1881 * it succeeds, the number of read events is returned. May fail with
1882 * -EINVAL if ctx_id is invalid, if min_nr is out of range, if nr is
1883 * out of range, if timeout is out of range. May fail with -EFAULT
1884 * if any of the memory specified is invalid. May return 0 or
1885 * < min_nr if the timeout specified by timeout has elapsed
1886 * before sufficient events are available, where timeout == NULL
1887 * specifies an infinite timeout. Note that the timeout pointed to by
Jeff Moyer69008072013-05-24 15:55:24 -07001888 * timeout is relative. Will fail with -ENOSYS if not implemented.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 */
Heiko Carstens002c8972009-01-14 14:14:18 +01001890SYSCALL_DEFINE5(io_getevents, aio_context_t, ctx_id,
1891 long, min_nr,
1892 long, nr,
1893 struct io_event __user *, events,
1894 struct timespec __user *, timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895{
Deepa Dinamanifa2e62a2017-08-04 21:12:32 -07001896 struct timespec64 ts;
Christoph Hellwig7a074e92018-05-02 19:51:00 +02001897 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898
Christoph Hellwig7a074e92018-05-02 19:51:00 +02001899 if (timeout && unlikely(get_timespec64(&ts, timeout)))
1900 return -EFAULT;
1901
1902 ret = do_io_getevents(ctx_id, min_nr, nr, events, timeout ? &ts : NULL);
1903 if (!ret && signal_pending(current))
1904 ret = -EINTR;
1905 return ret;
1906}
1907
Christoph Hellwig9ba546c2018-07-11 15:48:46 +02001908struct __aio_sigset {
1909 const sigset_t __user *sigmask;
1910 size_t sigsetsize;
1911};
1912
Christoph Hellwig7a074e92018-05-02 19:51:00 +02001913SYSCALL_DEFINE6(io_pgetevents,
1914 aio_context_t, ctx_id,
1915 long, min_nr,
1916 long, nr,
1917 struct io_event __user *, events,
1918 struct timespec __user *, timeout,
1919 const struct __aio_sigset __user *, usig)
1920{
1921 struct __aio_sigset ksig = { NULL, };
1922 sigset_t ksigmask, sigsaved;
1923 struct timespec64 ts;
1924 int ret;
1925
1926 if (timeout && unlikely(get_timespec64(&ts, timeout)))
1927 return -EFAULT;
1928
1929 if (usig && copy_from_user(&ksig, usig, sizeof(ksig)))
1930 return -EFAULT;
1931
1932 if (ksig.sigmask) {
1933 if (ksig.sigsetsize != sizeof(sigset_t))
1934 return -EINVAL;
1935 if (copy_from_user(&ksigmask, ksig.sigmask, sizeof(ksigmask)))
Deepa Dinamanifa2e62a2017-08-04 21:12:32 -07001936 return -EFAULT;
Christoph Hellwig7a074e92018-05-02 19:51:00 +02001937 sigdelsetmask(&ksigmask, sigmask(SIGKILL) | sigmask(SIGSTOP));
1938 sigprocmask(SIG_SETMASK, &ksigmask, &sigsaved);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 }
Deepa Dinamanifa2e62a2017-08-04 21:12:32 -07001940
Christoph Hellwig7a074e92018-05-02 19:51:00 +02001941 ret = do_io_getevents(ctx_id, min_nr, nr, events, timeout ? &ts : NULL);
1942 if (signal_pending(current)) {
1943 if (ksig.sigmask) {
1944 current->saved_sigmask = sigsaved;
1945 set_restore_sigmask();
1946 }
1947
1948 if (!ret)
1949 ret = -ERESTARTNOHAND;
1950 } else {
1951 if (ksig.sigmask)
1952 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
1953 }
1954
1955 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956}
Al Viroc00d2c72016-12-20 07:04:57 -05001957
1958#ifdef CONFIG_COMPAT
1959COMPAT_SYSCALL_DEFINE5(io_getevents, compat_aio_context_t, ctx_id,
1960 compat_long_t, min_nr,
1961 compat_long_t, nr,
1962 struct io_event __user *, events,
1963 struct compat_timespec __user *, timeout)
1964{
Deepa Dinamanifa2e62a2017-08-04 21:12:32 -07001965 struct timespec64 t;
Christoph Hellwig7a074e92018-05-02 19:51:00 +02001966 int ret;
Al Viroc00d2c72016-12-20 07:04:57 -05001967
Christoph Hellwig7a074e92018-05-02 19:51:00 +02001968 if (timeout && compat_get_timespec64(&t, timeout))
1969 return -EFAULT;
1970
1971 ret = do_io_getevents(ctx_id, min_nr, nr, events, timeout ? &t : NULL);
1972 if (!ret && signal_pending(current))
1973 ret = -EINTR;
1974 return ret;
1975}
1976
1977
1978struct __compat_aio_sigset {
1979 compat_sigset_t __user *sigmask;
1980 compat_size_t sigsetsize;
1981};
1982
1983COMPAT_SYSCALL_DEFINE6(io_pgetevents,
1984 compat_aio_context_t, ctx_id,
1985 compat_long_t, min_nr,
1986 compat_long_t, nr,
1987 struct io_event __user *, events,
1988 struct compat_timespec __user *, timeout,
1989 const struct __compat_aio_sigset __user *, usig)
1990{
1991 struct __compat_aio_sigset ksig = { NULL, };
1992 sigset_t ksigmask, sigsaved;
1993 struct timespec64 t;
1994 int ret;
1995
1996 if (timeout && compat_get_timespec64(&t, timeout))
1997 return -EFAULT;
1998
1999 if (usig && copy_from_user(&ksig, usig, sizeof(ksig)))
2000 return -EFAULT;
2001
2002 if (ksig.sigmask) {
2003 if (ksig.sigsetsize != sizeof(compat_sigset_t))
2004 return -EINVAL;
2005 if (get_compat_sigset(&ksigmask, ksig.sigmask))
Al Viroc00d2c72016-12-20 07:04:57 -05002006 return -EFAULT;
Christoph Hellwig7a074e92018-05-02 19:51:00 +02002007 sigdelsetmask(&ksigmask, sigmask(SIGKILL) | sigmask(SIGSTOP));
2008 sigprocmask(SIG_SETMASK, &ksigmask, &sigsaved);
Al Viroc00d2c72016-12-20 07:04:57 -05002009 }
Deepa Dinamanifa2e62a2017-08-04 21:12:32 -07002010
Christoph Hellwig7a074e92018-05-02 19:51:00 +02002011 ret = do_io_getevents(ctx_id, min_nr, nr, events, timeout ? &t : NULL);
2012 if (signal_pending(current)) {
2013 if (ksig.sigmask) {
2014 current->saved_sigmask = sigsaved;
2015 set_restore_sigmask();
2016 }
2017 if (!ret)
2018 ret = -ERESTARTNOHAND;
2019 } else {
2020 if (ksig.sigmask)
2021 sigprocmask(SIG_SETMASK, &sigsaved, NULL);
2022 }
2023
2024 return ret;
Al Viroc00d2c72016-12-20 07:04:57 -05002025}
2026#endif