blob: ffa8b8d2cb8eeb88f5877ad663f5315e9440f872 [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>
Badari Pulavarty027445c2006-09-30 23:28:46 -070021#include <linux/uio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/sched.h>
24#include <linux/fs.h>
25#include <linux/file.h>
26#include <linux/mm.h>
27#include <linux/mman.h>
Michael S. Tsirkin3d2d8272009-09-21 17:03:51 -070028#include <linux/mmu_context.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/slab.h>
30#include <linux/timer.h>
31#include <linux/aio.h>
32#include <linux/highmem.h>
33#include <linux/workqueue.h>
34#include <linux/security.h>
Davide Libenzi9c3060b2007-05-10 22:23:21 -070035#include <linux/eventfd.h>
Jeff Moyercfb1e332009-10-02 18:57:36 -040036#include <linux/blkdev.h>
Jeff Moyer9d85cba2010-05-26 14:44:26 -070037#include <linux/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39#include <asm/kmap_types.h>
40#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Kent Overstreet4e179bc2013-05-07 16:18:33 -070042#define AIO_RING_MAGIC 0xa10a10a1
43#define AIO_RING_COMPAT_FEATURES 1
44#define AIO_RING_INCOMPAT_FEATURES 0
45struct aio_ring {
46 unsigned id; /* kernel internal index number */
47 unsigned nr; /* number of io_events */
48 unsigned head;
49 unsigned tail;
50
51 unsigned magic;
52 unsigned compat_features;
53 unsigned incompat_features;
54 unsigned header_length; /* size of aio_ring */
55
56
57 struct io_event io_events[0];
58}; /* 128 bytes + ring size */
59
60#define AIO_RING_PAGES 8
61struct aio_ring_info {
62 unsigned long mmap_base;
63 unsigned long mmap_size;
64
65 struct page **ring_pages;
66 spinlock_t ring_lock;
67 long nr_pages;
68
69 unsigned nr, tail;
70
71 struct page *internal_pages[AIO_RING_PAGES];
72};
73
74static inline unsigned aio_ring_avail(struct aio_ring_info *info,
75 struct aio_ring *ring)
76{
77 return (ring->head + info->nr - 1 - ring->tail) % info->nr;
78}
79
80struct kioctx {
81 atomic_t users;
82 int dead;
83
84 /* This needs improving */
85 unsigned long user_id;
86 struct hlist_node list;
87
88 wait_queue_head_t wait;
89
90 spinlock_t ctx_lock;
91
92 int reqs_active;
93 struct list_head active_reqs; /* used for cancellation */
94
95 /* sys_io_setup currently limits this to an unsigned int */
96 unsigned max_reqs;
97
98 struct aio_ring_info ring_info;
99
100 struct rcu_head rcu_head;
101};
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103/*------ sysctl variables----*/
Zach Brownd55b5fd2005-11-07 00:59:31 -0800104static DEFINE_SPINLOCK(aio_nr_lock);
105unsigned long aio_nr; /* current system wide number of aio requests */
106unsigned long aio_max_nr = 0x10000; /* system wide maximum number of aio requests */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107/*----end sysctl variables---*/
108
Christoph Lametere18b8902006-12-06 20:33:20 -0800109static struct kmem_cache *kiocb_cachep;
110static struct kmem_cache *kioctx_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112/* aio_setup
113 * Creates the slab caches used by the aio routines, panic on
114 * failure as this is done early during the boot sequence.
115 */
116static int __init aio_setup(void)
117{
Christoph Lameter0a31bd52007-05-06 14:49:57 -0700118 kiocb_cachep = KMEM_CACHE(kiocb, SLAB_HWCACHE_ALIGN|SLAB_PANIC);
119 kioctx_cachep = KMEM_CACHE(kioctx,SLAB_HWCACHE_ALIGN|SLAB_PANIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Kent Overstreetcaf41672013-05-07 16:18:35 -0700121 pr_debug("sizeof(struct page) = %zu\n", sizeof(struct page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
123 return 0;
124}
H Hartley Sweeten385773e2009-09-22 16:43:53 -0700125__initcall(aio_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127static void aio_free_ring(struct kioctx *ctx)
128{
129 struct aio_ring_info *info = &ctx->ring_info;
130 long i;
131
132 for (i=0; i<info->nr_pages; i++)
133 put_page(info->ring_pages[i]);
134
Al Viro936af152012-04-20 21:49:41 -0400135 if (info->mmap_size) {
Al Virobfce2812012-04-20 21:57:04 -0400136 vm_munmap(info->mmap_base, info->mmap_size);
Al Viro936af152012-04-20 21:49:41 -0400137 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
139 if (info->ring_pages && info->ring_pages != info->internal_pages)
140 kfree(info->ring_pages);
141 info->ring_pages = NULL;
142 info->nr = 0;
143}
144
145static int aio_setup_ring(struct kioctx *ctx)
146{
147 struct aio_ring *ring;
148 struct aio_ring_info *info = &ctx->ring_info;
149 unsigned nr_events = ctx->max_reqs;
Zach Brown41003a72013-05-07 16:18:25 -0700150 struct mm_struct *mm = current->mm;
Michel Lespinasse41badc12013-02-22 16:32:47 -0800151 unsigned long size, populate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 int nr_pages;
153
154 /* Compensate for the ring buffer's head/tail overlap entry */
155 nr_events += 2; /* 1 is required, 2 for good luck */
156
157 size = sizeof(struct aio_ring);
158 size += sizeof(struct io_event) * nr_events;
159 nr_pages = (size + PAGE_SIZE-1) >> PAGE_SHIFT;
160
161 if (nr_pages < 0)
162 return -EINVAL;
163
164 nr_events = (PAGE_SIZE * nr_pages - sizeof(struct aio_ring)) / sizeof(struct io_event);
165
166 info->nr = 0;
167 info->ring_pages = info->internal_pages;
168 if (nr_pages > AIO_RING_PAGES) {
Oliver Neukum11b0b5a2006-03-25 03:08:13 -0800169 info->ring_pages = kcalloc(nr_pages, sizeof(struct page *), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 if (!info->ring_pages)
171 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 }
173
174 info->mmap_size = nr_pages * PAGE_SIZE;
Kent Overstreetcaf41672013-05-07 16:18:35 -0700175 pr_debug("attempting mmap of %lu bytes\n", info->mmap_size);
Zach Brown41003a72013-05-07 16:18:25 -0700176 down_write(&mm->mmap_sem);
Al Viroe3fc6292012-05-30 20:08:42 -0400177 info->mmap_base = do_mmap_pgoff(NULL, 0, info->mmap_size,
178 PROT_READ|PROT_WRITE,
Michel Lespinassebebeb3d2013-02-22 16:32:37 -0800179 MAP_ANONYMOUS|MAP_PRIVATE, 0,
180 &populate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 if (IS_ERR((void *)info->mmap_base)) {
Zach Brown41003a72013-05-07 16:18:25 -0700182 up_write(&mm->mmap_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 info->mmap_size = 0;
184 aio_free_ring(ctx);
185 return -EAGAIN;
186 }
187
Kent Overstreetcaf41672013-05-07 16:18:35 -0700188 pr_debug("mmap address: 0x%08lx\n", info->mmap_base);
Zach Brown41003a72013-05-07 16:18:25 -0700189 info->nr_pages = get_user_pages(current, mm, info->mmap_base, nr_pages,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 1, 0, info->ring_pages, NULL);
Zach Brown41003a72013-05-07 16:18:25 -0700191 up_write(&mm->mmap_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
193 if (unlikely(info->nr_pages != nr_pages)) {
194 aio_free_ring(ctx);
195 return -EAGAIN;
196 }
Michel Lespinassebebeb3d2013-02-22 16:32:37 -0800197 if (populate)
Michel Lespinasse41badc12013-02-22 16:32:47 -0800198 mm_populate(info->mmap_base, populate);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200 ctx->user_id = info->mmap_base;
201
202 info->nr = nr_events; /* trusted copy */
203
Cong Wange8e3c3d2011-11-25 23:14:27 +0800204 ring = kmap_atomic(info->ring_pages[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 ring->nr = nr_events; /* user copy */
206 ring->id = ctx->user_id;
207 ring->head = ring->tail = 0;
208 ring->magic = AIO_RING_MAGIC;
209 ring->compat_features = AIO_RING_COMPAT_FEATURES;
210 ring->incompat_features = AIO_RING_INCOMPAT_FEATURES;
211 ring->header_length = sizeof(struct aio_ring);
Cong Wange8e3c3d2011-11-25 23:14:27 +0800212 kunmap_atomic(ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
214 return 0;
215}
216
217
218/* aio_ring_event: returns a pointer to the event at the given index from
Cong Wange8e3c3d2011-11-25 23:14:27 +0800219 * kmap_atomic(). Release the pointer with put_aio_ring_event();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 */
221#define AIO_EVENTS_PER_PAGE (PAGE_SIZE / sizeof(struct io_event))
222#define AIO_EVENTS_FIRST_PAGE ((PAGE_SIZE - sizeof(struct aio_ring)) / sizeof(struct io_event))
223#define AIO_EVENTS_OFFSET (AIO_EVENTS_PER_PAGE - AIO_EVENTS_FIRST_PAGE)
224
Cong Wange8e3c3d2011-11-25 23:14:27 +0800225#define aio_ring_event(info, nr) ({ \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 unsigned pos = (nr) + AIO_EVENTS_OFFSET; \
227 struct io_event *__event; \
228 __event = kmap_atomic( \
Cong Wange8e3c3d2011-11-25 23:14:27 +0800229 (info)->ring_pages[pos / AIO_EVENTS_PER_PAGE]); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 __event += pos % AIO_EVENTS_PER_PAGE; \
231 __event; \
232})
233
Cong Wange8e3c3d2011-11-25 23:14:27 +0800234#define put_aio_ring_event(event) do { \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 struct io_event *__event = (event); \
236 (void)__event; \
Cong Wange8e3c3d2011-11-25 23:14:27 +0800237 kunmap_atomic((void *)((unsigned long)__event & PAGE_MASK)); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238} while(0)
239
Jens Axboeabf137d2008-12-09 08:11:22 +0100240static void ctx_rcu_free(struct rcu_head *head)
Adrian Bunkd5470b52008-04-29 00:58:57 -0700241{
Jens Axboeabf137d2008-12-09 08:11:22 +0100242 struct kioctx *ctx = container_of(head, struct kioctx, rcu_head);
Adrian Bunkd5470b52008-04-29 00:58:57 -0700243 kmem_cache_free(kioctx_cachep, ctx);
Adrian Bunkd5470b52008-04-29 00:58:57 -0700244}
245
Jens Axboeabf137d2008-12-09 08:11:22 +0100246/* __put_ioctx
247 * Called when the last user of an aio context has gone away,
248 * and the struct needs to be freed.
249 */
250static void __put_ioctx(struct kioctx *ctx)
251{
Al Viro2dd542b2012-03-10 23:10:35 -0500252 unsigned nr_events = ctx->max_reqs;
Jens Axboeabf137d2008-12-09 08:11:22 +0100253 BUG_ON(ctx->reqs_active);
254
Jens Axboeabf137d2008-12-09 08:11:22 +0100255 aio_free_ring(ctx);
Al Viro2dd542b2012-03-10 23:10:35 -0500256 if (nr_events) {
257 spin_lock(&aio_nr_lock);
258 BUG_ON(aio_nr - nr_events > aio_nr);
259 aio_nr -= nr_events;
260 spin_unlock(&aio_nr_lock);
261 }
Kent Overstreetcaf41672013-05-07 16:18:35 -0700262 pr_debug("freeing %p\n", ctx);
Jens Axboeabf137d2008-12-09 08:11:22 +0100263 call_rcu(&ctx->rcu_head, ctx_rcu_free);
264}
265
Nick Piggin3bd9a5d2011-02-25 14:44:26 -0800266static inline int try_get_ioctx(struct kioctx *kioctx)
267{
268 return atomic_inc_not_zero(&kioctx->users);
269}
270
271static inline void put_ioctx(struct kioctx *kioctx)
272{
273 BUG_ON(atomic_read(&kioctx->users) <= 0);
274 if (unlikely(atomic_dec_and_test(&kioctx->users)))
275 __put_ioctx(kioctx);
276}
Adrian Bunkd5470b52008-04-29 00:58:57 -0700277
Kent Overstreet906b9732013-05-07 16:18:31 -0700278static int kiocb_cancel(struct kioctx *ctx, struct kiocb *kiocb,
279 struct io_event *res)
280{
281 int (*cancel)(struct kiocb *, struct io_event *);
282 int ret = -EINVAL;
283
284 cancel = kiocb->ki_cancel;
285 kiocbSetCancelled(kiocb);
286 if (cancel) {
287 kiocb->ki_users++;
288 spin_unlock_irq(&ctx->ctx_lock);
289
290 memset(res, 0, sizeof(*res));
291 res->obj = (u64)(unsigned long)kiocb->ki_obj.user;
292 res->data = kiocb->ki_user_data;
293 ret = cancel(kiocb, res);
294
295 spin_lock_irq(&ctx->ctx_lock);
296 }
297
298 return ret;
299}
300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301/* ioctx_alloc
302 * Allocates and initializes an ioctx. Returns an ERR_PTR if it failed.
303 */
304static struct kioctx *ioctx_alloc(unsigned nr_events)
305{
Zach Brown41003a72013-05-07 16:18:25 -0700306 struct mm_struct *mm = current->mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 struct kioctx *ctx;
Al Viroe23754f2012-03-06 14:33:22 -0500308 int err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
310 /* Prevent overflows */
311 if ((nr_events > (0x10000000U / sizeof(struct io_event))) ||
312 (nr_events > (0x10000000U / sizeof(struct kiocb)))) {
313 pr_debug("ENOMEM: nr_events too high\n");
314 return ERR_PTR(-EINVAL);
315 }
316
Al Viro2dd542b2012-03-10 23:10:35 -0500317 if (!nr_events || (unsigned long)nr_events > aio_max_nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 return ERR_PTR(-EAGAIN);
319
Robert P. J. Dayc3762222007-02-10 01:45:03 -0800320 ctx = kmem_cache_zalloc(kioctx_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 if (!ctx)
322 return ERR_PTR(-ENOMEM);
323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 ctx->max_reqs = nr_events;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Al Viro86b62a22012-03-07 05:16:35 +0000326 atomic_set(&ctx->users, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 spin_lock_init(&ctx->ctx_lock);
328 spin_lock_init(&ctx->ring_info.ring_lock);
329 init_waitqueue_head(&ctx->wait);
330
331 INIT_LIST_HEAD(&ctx->active_reqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
333 if (aio_setup_ring(ctx) < 0)
334 goto out_freectx;
335
336 /* limit the number of system wide aios */
Al Viro9fa1cb32012-03-10 23:14:05 -0500337 spin_lock(&aio_nr_lock);
Al Viro2dd542b2012-03-10 23:10:35 -0500338 if (aio_nr + nr_events > aio_max_nr ||
339 aio_nr + nr_events < aio_nr) {
Al Viro9fa1cb32012-03-10 23:14:05 -0500340 spin_unlock(&aio_nr_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 goto out_cleanup;
Al Viro2dd542b2012-03-10 23:10:35 -0500342 }
343 aio_nr += ctx->max_reqs;
Al Viro9fa1cb32012-03-10 23:14:05 -0500344 spin_unlock(&aio_nr_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
Jeff Moyer39fa0032008-04-29 01:03:48 -0700346 /* now link into global list. */
Jens Axboeabf137d2008-12-09 08:11:22 +0100347 spin_lock(&mm->ioctx_lock);
348 hlist_add_head_rcu(&ctx->list, &mm->ioctx_list);
349 spin_unlock(&mm->ioctx_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Kent Overstreetcaf41672013-05-07 16:18:35 -0700351 pr_debug("allocated ioctx %p[%ld]: mm=%p mask=0x%x\n",
Zach Brown41003a72013-05-07 16:18:25 -0700352 ctx, ctx->user_id, mm, ctx->ring_info.nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 return ctx;
354
355out_cleanup:
Al Viroe23754f2012-03-06 14:33:22 -0500356 err = -EAGAIN;
357 aio_free_ring(ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358out_freectx:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 kmem_cache_free(kioctx_cachep, ctx);
Kent Overstreetcaf41672013-05-07 16:18:35 -0700360 pr_debug("error allocating ioctx %d\n", err);
Al Viroe23754f2012-03-06 14:33:22 -0500361 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362}
363
Al Viro06af1212012-03-20 16:26:24 -0400364/* kill_ctx
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 * Cancels all outstanding aio requests on an aio context. Used
366 * when the processes owning a context have all exited to encourage
367 * the rapid destruction of the kioctx.
368 */
Al Viro06af1212012-03-20 16:26:24 -0400369static void kill_ctx(struct kioctx *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370{
Al Viro06af1212012-03-20 16:26:24 -0400371 struct task_struct *tsk = current;
372 DECLARE_WAITQUEUE(wait, tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 struct io_event res;
Kent Overstreet906b9732013-05-07 16:18:31 -0700374 struct kiocb *req;
Al Viro06af1212012-03-20 16:26:24 -0400375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 spin_lock_irq(&ctx->ctx_lock);
377 ctx->dead = 1;
378 while (!list_empty(&ctx->active_reqs)) {
Kent Overstreet906b9732013-05-07 16:18:31 -0700379 req = list_first_entry(&ctx->active_reqs,
380 struct kiocb, ki_list);
381
382 list_del_init(&req->ki_list);
383 kiocb_cancel(ctx, req, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 if (!ctx->reqs_active)
Ken Chendee11c22007-02-03 01:13:45 -0800387 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
389 add_wait_queue(&ctx->wait, &wait);
390 set_task_state(tsk, TASK_UNINTERRUPTIBLE);
391 while (ctx->reqs_active) {
Ken Chendee11c22007-02-03 01:13:45 -0800392 spin_unlock_irq(&ctx->ctx_lock);
Jeff Moyer41d10da2007-10-16 23:27:20 -0700393 io_schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 set_task_state(tsk, TASK_UNINTERRUPTIBLE);
Ken Chendee11c22007-02-03 01:13:45 -0800395 spin_lock_irq(&ctx->ctx_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 }
397 __set_task_state(tsk, TASK_RUNNING);
398 remove_wait_queue(&ctx->wait, &wait);
Ken Chendee11c22007-02-03 01:13:45 -0800399
400out:
401 spin_unlock_irq(&ctx->ctx_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402}
403
404/* wait_on_sync_kiocb:
405 * Waits on the given sync kiocb to complete.
406 */
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -0800407ssize_t wait_on_sync_kiocb(struct kiocb *iocb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408{
409 while (iocb->ki_users) {
410 set_current_state(TASK_UNINTERRUPTIBLE);
411 if (!iocb->ki_users)
412 break;
Jeff Moyer41d10da2007-10-16 23:27:20 -0700413 io_schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 }
415 __set_current_state(TASK_RUNNING);
416 return iocb->ki_user_data;
417}
H Hartley Sweeten385773e2009-09-22 16:43:53 -0700418EXPORT_SYMBOL(wait_on_sync_kiocb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
420/* exit_aio: called when the last user of mm goes away. At this point,
421 * there is no way for any new requests to be submited or any of the
422 * io_* syscalls to be called on the context. However, there may be
423 * outstanding requests which hold references to the context; as they
424 * go away, they will call put_ioctx and release any pinned memory
425 * associated with the request (held via struct page * references).
426 */
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -0800427void exit_aio(struct mm_struct *mm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{
Jens Axboeabf137d2008-12-09 08:11:22 +0100429 struct kioctx *ctx;
430
431 while (!hlist_empty(&mm->ioctx_list)) {
432 ctx = hlist_entry(mm->ioctx_list.first, struct kioctx, list);
433 hlist_del_rcu(&ctx->list);
434
Al Viro06af1212012-03-20 16:26:24 -0400435 kill_ctx(ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
437 if (1 != atomic_read(&ctx->users))
438 printk(KERN_DEBUG
439 "exit_aio:ioctx still alive: %d %d %d\n",
440 atomic_read(&ctx->users), ctx->dead,
441 ctx->reqs_active);
Al Viro936af152012-04-20 21:49:41 -0400442 /*
443 * We don't need to bother with munmap() here -
444 * exit_mmap(mm) is coming and it'll unmap everything.
445 * Since aio_free_ring() uses non-zero ->mmap_size
446 * as indicator that it needs to unmap the area,
447 * just set it to 0; aio_free_ring() is the only
448 * place that uses ->mmap_size, so it's safe.
Al Viro936af152012-04-20 21:49:41 -0400449 */
450 ctx->ring_info.mmap_size = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 put_ioctx(ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 }
453}
454
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455/* aio_get_req
456 * Allocate a slot for an aio request. Increments the users count
457 * of the kioctx so that the kioctx stays around until all requests are
458 * complete. Returns NULL if no requests are free.
459 *
460 * Returns with kiocb->users set to 2. The io submit code path holds
461 * an extra reference while submitting the i/o.
462 * This prevents races between the aio code path referencing the
463 * req (after submitting it) and aio_complete() freeing the req.
464 */
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -0800465static struct kiocb *__aio_get_req(struct kioctx *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466{
467 struct kiocb *req = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
469 req = kmem_cache_alloc(kiocb_cachep, GFP_KERNEL);
470 if (unlikely(!req))
471 return NULL;
472
Zach Brown4faa5282005-10-17 16:43:33 -0700473 req->ki_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 req->ki_users = 2;
475 req->ki_key = 0;
476 req->ki_ctx = ctx;
477 req->ki_cancel = NULL;
478 req->ki_retry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 req->ki_dtor = NULL;
480 req->private = NULL;
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700481 req->ki_iovec = NULL;
Davide Libenzi87c3a862009-03-18 17:04:19 -0700482 req->ki_eventfd = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 return req;
485}
486
Jeff Moyer080d6762011-11-02 13:40:10 -0700487/*
488 * struct kiocb's are allocated in batches to reduce the number of
489 * times the ctx lock is acquired and released.
490 */
491#define KIOCB_BATCH_SIZE 32L
492struct kiocb_batch {
493 struct list_head head;
494 long count; /* number of requests left to allocate */
495};
496
497static void kiocb_batch_init(struct kiocb_batch *batch, long total)
498{
499 INIT_LIST_HEAD(&batch->head);
500 batch->count = total;
501}
502
Gleb Natapov69e47472012-01-08 17:07:28 +0200503static void kiocb_batch_free(struct kioctx *ctx, struct kiocb_batch *batch)
Jeff Moyer080d6762011-11-02 13:40:10 -0700504{
505 struct kiocb *req, *n;
506
Gleb Natapov69e47472012-01-08 17:07:28 +0200507 if (list_empty(&batch->head))
508 return;
509
510 spin_lock_irq(&ctx->ctx_lock);
Jeff Moyer080d6762011-11-02 13:40:10 -0700511 list_for_each_entry_safe(req, n, &batch->head, ki_batch) {
512 list_del(&req->ki_batch);
Gleb Natapov69e47472012-01-08 17:07:28 +0200513 list_del(&req->ki_list);
Jeff Moyer080d6762011-11-02 13:40:10 -0700514 kmem_cache_free(kiocb_cachep, req);
Gleb Natapov69e47472012-01-08 17:07:28 +0200515 ctx->reqs_active--;
Jeff Moyer080d6762011-11-02 13:40:10 -0700516 }
Jeff Moyer880641b2012-03-05 14:59:12 -0800517 if (unlikely(!ctx->reqs_active && ctx->dead))
518 wake_up_all(&ctx->wait);
Gleb Natapov69e47472012-01-08 17:07:28 +0200519 spin_unlock_irq(&ctx->ctx_lock);
Jeff Moyer080d6762011-11-02 13:40:10 -0700520}
521
522/*
523 * Allocate a batch of kiocbs. This avoids taking and dropping the
524 * context lock a lot during setup.
525 */
526static int kiocb_batch_refill(struct kioctx *ctx, struct kiocb_batch *batch)
527{
528 unsigned short allocated, to_alloc;
529 long avail;
Jeff Moyer080d6762011-11-02 13:40:10 -0700530 struct kiocb *req, *n;
531 struct aio_ring *ring;
532
533 to_alloc = min(batch->count, KIOCB_BATCH_SIZE);
534 for (allocated = 0; allocated < to_alloc; allocated++) {
535 req = __aio_get_req(ctx);
536 if (!req)
537 /* allocation failed, go with what we've got */
538 break;
539 list_add(&req->ki_batch, &batch->head);
540 }
541
542 if (allocated == 0)
543 goto out;
544
Jeff Moyer080d6762011-11-02 13:40:10 -0700545 spin_lock_irq(&ctx->ctx_lock);
546 ring = kmap_atomic(ctx->ring_info.ring_pages[0]);
547
548 avail = aio_ring_avail(&ctx->ring_info, ring) - ctx->reqs_active;
549 BUG_ON(avail < 0);
Jeff Moyer080d6762011-11-02 13:40:10 -0700550 if (avail < allocated) {
551 /* Trim back the number of requests. */
552 list_for_each_entry_safe(req, n, &batch->head, ki_batch) {
553 list_del(&req->ki_batch);
554 kmem_cache_free(kiocb_cachep, req);
555 if (--allocated <= avail)
556 break;
557 }
558 }
559
560 batch->count -= allocated;
561 list_for_each_entry(req, &batch->head, ki_batch) {
562 list_add(&req->ki_list, &ctx->active_reqs);
563 ctx->reqs_active++;
564 }
565
566 kunmap_atomic(ring);
567 spin_unlock_irq(&ctx->ctx_lock);
568
569out:
570 return allocated;
571}
572
573static inline struct kiocb *aio_get_req(struct kioctx *ctx,
574 struct kiocb_batch *batch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575{
576 struct kiocb *req;
Jeff Moyer080d6762011-11-02 13:40:10 -0700577
578 if (list_empty(&batch->head))
579 if (kiocb_batch_refill(ctx, batch) == 0)
580 return NULL;
581 req = list_first_entry(&batch->head, struct kiocb, ki_batch);
582 list_del(&req->ki_batch);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 return req;
584}
585
586static inline void really_put_req(struct kioctx *ctx, struct kiocb *req)
587{
Zach Brownd00689a2005-11-13 16:07:34 -0800588 assert_spin_locked(&ctx->ctx_lock);
589
Kent Overstreet1d98ebf2013-05-07 16:18:37 -0700590 if (req->ki_filp)
591 fput(req->ki_filp);
Davide Libenzi13389012009-06-30 11:41:11 -0700592 if (req->ki_eventfd != NULL)
593 eventfd_ctx_put(req->ki_eventfd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 if (req->ki_dtor)
595 req->ki_dtor(req);
Badari Pulavartyeed4e512006-09-30 23:28:49 -0700596 if (req->ki_iovec != &req->ki_inline_vec)
597 kfree(req->ki_iovec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 kmem_cache_free(kiocb_cachep, req);
599 ctx->reqs_active--;
600
601 if (unlikely(!ctx->reqs_active && ctx->dead))
Roland Dreiere91f90b2011-03-22 16:35:10 -0700602 wake_up_all(&ctx->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603}
604
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605/* __aio_put_req
606 * Returns true if this put was the last user of the request.
607 */
Kent Overstreet2d684492013-05-07 16:18:29 -0700608static void __aio_put_req(struct kioctx *ctx, struct kiocb *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609{
Zach Brownd00689a2005-11-13 16:07:34 -0800610 assert_spin_locked(&ctx->ctx_lock);
611
Davide Libenzi87c3a862009-03-18 17:04:19 -0700612 req->ki_users--;
Eric Sesterhenn93e06b42006-11-30 05:29:23 +0100613 BUG_ON(req->ki_users < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 if (likely(req->ki_users))
Kent Overstreet2d684492013-05-07 16:18:29 -0700615 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 list_del(&req->ki_list); /* remove from active_reqs */
617 req->ki_cancel = NULL;
618 req->ki_retry = NULL;
619
Al Viro3ffa3c02012-06-24 10:00:10 +0400620 really_put_req(ctx, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621}
622
623/* aio_put_req
624 * Returns true if this put was the last user of the kiocb,
625 * false if the request is still in use.
626 */
Kent Overstreet2d684492013-05-07 16:18:29 -0700627void aio_put_req(struct kiocb *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628{
629 struct kioctx *ctx = req->ki_ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 spin_lock_irq(&ctx->ctx_lock);
Kent Overstreet2d684492013-05-07 16:18:29 -0700631 __aio_put_req(ctx, req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 spin_unlock_irq(&ctx->ctx_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633}
H Hartley Sweeten385773e2009-09-22 16:43:53 -0700634EXPORT_SYMBOL(aio_put_req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Adrian Bunkd5470b52008-04-29 00:58:57 -0700636static struct kioctx *lookup_ioctx(unsigned long ctx_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637{
Jens Axboeabf137d2008-12-09 08:11:22 +0100638 struct mm_struct *mm = current->mm;
Jeff Moyer65c24492009-03-18 17:04:21 -0700639 struct kioctx *ctx, *ret = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Jens Axboeabf137d2008-12-09 08:11:22 +0100641 rcu_read_lock();
642
Sasha Levinb67bfe02013-02-27 17:06:00 -0800643 hlist_for_each_entry_rcu(ctx, &mm->ioctx_list, list) {
Nick Piggin3bd9a5d2011-02-25 14:44:26 -0800644 /*
645 * RCU protects us against accessing freed memory but
646 * we have to be careful not to get a reference when the
647 * reference count already dropped to 0 (ctx->dead test
648 * is unreliable because of races).
649 */
650 if (ctx->user_id == ctx_id && !ctx->dead && try_get_ioctx(ctx)){
Jeff Moyer65c24492009-03-18 17:04:21 -0700651 ret = ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 break;
653 }
Jens Axboeabf137d2008-12-09 08:11:22 +0100654 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Jens Axboeabf137d2008-12-09 08:11:22 +0100656 rcu_read_unlock();
Jeff Moyer65c24492009-03-18 17:04:21 -0700657 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658}
659
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660/* aio_complete
661 * Called when the io request on the given iocb is complete.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 */
Kent Overstreet2d684492013-05-07 16:18:29 -0700663void aio_complete(struct kiocb *iocb, long res, long res2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664{
665 struct kioctx *ctx = iocb->ki_ctx;
666 struct aio_ring_info *info;
667 struct aio_ring *ring;
668 struct io_event *event;
669 unsigned long flags;
670 unsigned long tail;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
Zach Brown20dcae32005-11-13 16:07:33 -0800672 /*
673 * Special case handling for sync iocbs:
674 * - events go directly into the iocb for fast handling
675 * - the sync task with the iocb in its stack holds the single iocb
676 * ref, no other paths have a way to get another ref
677 * - the sync task helpfully left a reference to itself in the iocb
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 */
679 if (is_sync_kiocb(iocb)) {
Zach Brown20dcae32005-11-13 16:07:33 -0800680 BUG_ON(iocb->ki_users != 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 iocb->ki_user_data = res;
Zach Brown20dcae32005-11-13 16:07:33 -0800682 iocb->ki_users = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 wake_up_process(iocb->ki_obj.tsk);
Kent Overstreet2d684492013-05-07 16:18:29 -0700684 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 }
686
687 info = &ctx->ring_info;
688
689 /* add a completion event to the ring buffer.
690 * must be done holding ctx->ctx_lock to prevent
691 * other code from messing with the tail
692 * pointer since we might be called from irq
693 * context.
694 */
695 spin_lock_irqsave(&ctx->ctx_lock, flags);
696
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 /*
698 * cancelled requests don't get events, userland was given one
699 * when the event got cancelled.
700 */
701 if (kiocbIsCancelled(iocb))
702 goto put_rq;
703
Cong Wange8e3c3d2011-11-25 23:14:27 +0800704 ring = kmap_atomic(info->ring_pages[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
706 tail = info->tail;
Cong Wange8e3c3d2011-11-25 23:14:27 +0800707 event = aio_ring_event(info, tail);
Ken Chen4bf69b22005-05-01 08:59:15 -0700708 if (++tail >= info->nr)
709 tail = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
711 event->obj = (u64)(unsigned long)iocb->ki_obj.user;
712 event->data = iocb->ki_user_data;
713 event->res = res;
714 event->res2 = res2;
715
Kent Overstreetcaf41672013-05-07 16:18:35 -0700716 pr_debug("%p[%lu]: %p: %p %Lx %lx %lx\n",
717 ctx, tail, iocb, iocb->ki_obj.user, iocb->ki_user_data,
718 res, res2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
720 /* after flagging the request as done, we
721 * must never even look at it again
722 */
723 smp_wmb(); /* make event visible before updating tail */
724
725 info->tail = tail;
726 ring->tail = tail;
727
Cong Wange8e3c3d2011-11-25 23:14:27 +0800728 put_aio_ring_event(event);
729 kunmap_atomic(ring);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
731 pr_debug("added to ring %p at [%lu]\n", iocb, tail);
Davide Libenzi8d1c98b2008-04-10 21:29:19 -0700732
733 /*
734 * Check if the user asked us to deliver the result through an
735 * eventfd. The eventfd_signal() function is safe to be called
736 * from IRQ context.
737 */
Davide Libenzi87c3a862009-03-18 17:04:19 -0700738 if (iocb->ki_eventfd != NULL)
Davide Libenzi8d1c98b2008-04-10 21:29:19 -0700739 eventfd_signal(iocb->ki_eventfd, 1);
740
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741put_rq:
742 /* everything turned out well, dispose of the aiocb. */
Kent Overstreet2d684492013-05-07 16:18:29 -0700743 __aio_put_req(ctx, iocb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
Quentin Barnes6cb2a212008-03-19 17:00:39 -0700745 /*
746 * We have to order our ring_info tail store above and test
747 * of the wait list below outside the wait lock. This is
748 * like in wake_up_bit() where clearing a bit has to be
749 * ordered with the unlocked test.
750 */
751 smp_mb();
752
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 if (waitqueue_active(&ctx->wait))
754 wake_up(&ctx->wait);
755
Ken Chendee11c22007-02-03 01:13:45 -0800756 spin_unlock_irqrestore(&ctx->ctx_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757}
H Hartley Sweeten385773e2009-09-22 16:43:53 -0700758EXPORT_SYMBOL(aio_complete);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
760/* aio_read_evt
761 * Pull an event off of the ioctx's event ring. Returns the number of
762 * events fetched (0 or 1 ;-)
763 * FIXME: make this use cmpxchg.
764 * TODO: make the ringbuffer user mmap()able (requires FIXME).
765 */
766static int aio_read_evt(struct kioctx *ioctx, struct io_event *ent)
767{
768 struct aio_ring_info *info = &ioctx->ring_info;
769 struct aio_ring *ring;
770 unsigned long head;
771 int ret = 0;
772
Cong Wange8e3c3d2011-11-25 23:14:27 +0800773 ring = kmap_atomic(info->ring_pages[0]);
Kent Overstreetcaf41672013-05-07 16:18:35 -0700774 pr_debug("h%u t%u m%u\n", ring->head, ring->tail, ring->nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
776 if (ring->head == ring->tail)
777 goto out;
778
779 spin_lock(&info->ring_lock);
780
781 head = ring->head % info->nr;
782 if (head != ring->tail) {
Cong Wange8e3c3d2011-11-25 23:14:27 +0800783 struct io_event *evp = aio_ring_event(info, head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 *ent = *evp;
785 head = (head + 1) % info->nr;
786 smp_mb(); /* finish reading the event before updatng the head */
787 ring->head = head;
788 ret = 1;
Cong Wange8e3c3d2011-11-25 23:14:27 +0800789 put_aio_ring_event(evp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 }
791 spin_unlock(&info->ring_lock);
792
793out:
Zhao Hongjiang91d80a82013-04-26 11:03:53 +0800794 kunmap_atomic(ring);
Kent Overstreetcaf41672013-05-07 16:18:35 -0700795 pr_debug("%d h%u t%u\n", ret, ring->head, ring->tail);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 return ret;
797}
798
799struct aio_timeout {
800 struct timer_list timer;
801 int timed_out;
802 struct task_struct *p;
803};
804
805static void timeout_func(unsigned long data)
806{
807 struct aio_timeout *to = (struct aio_timeout *)data;
808
809 to->timed_out = 1;
810 wake_up_process(to->p);
811}
812
813static inline void init_timeout(struct aio_timeout *to)
814{
Thomas Gleixnerc6f3a972008-04-30 00:55:03 -0700815 setup_timer_on_stack(&to->timer, timeout_func, (unsigned long) to);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 to->timed_out = 0;
817 to->p = current;
818}
819
820static inline void set_timeout(long start_jiffies, struct aio_timeout *to,
821 const struct timespec *ts)
822{
823 to->timer.expires = start_jiffies + timespec_to_jiffies(ts);
824 if (time_after(to->timer.expires, jiffies))
825 add_timer(&to->timer);
826 else
827 to->timed_out = 1;
828}
829
830static inline void clear_timeout(struct aio_timeout *to)
831{
832 del_singleshot_timer_sync(&to->timer);
833}
834
835static int read_events(struct kioctx *ctx,
836 long min_nr, long nr,
837 struct io_event __user *event,
838 struct timespec __user *timeout)
839{
840 long start_jiffies = jiffies;
841 struct task_struct *tsk = current;
842 DECLARE_WAITQUEUE(wait, tsk);
843 int ret;
844 int i = 0;
845 struct io_event ent;
846 struct aio_timeout to;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
848 /* needed to zero any padding within an entry (there shouldn't be
849 * any, but C is fun!
850 */
851 memset(&ent, 0, sizeof(ent));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 ret = 0;
853 while (likely(i < nr)) {
854 ret = aio_read_evt(ctx, &ent);
855 if (unlikely(ret <= 0))
856 break;
857
Kent Overstreetcaf41672013-05-07 16:18:35 -0700858 pr_debug("%Lx %Lx %Lx %Lx\n",
859 ent.data, ent.obj, ent.res, ent.res2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
861 /* Could we split the check in two? */
862 ret = -EFAULT;
863 if (unlikely(copy_to_user(event, &ent, sizeof(ent)))) {
Kent Overstreetcaf41672013-05-07 16:18:35 -0700864 pr_debug("lost an event due to EFAULT.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 break;
866 }
867 ret = 0;
868
869 /* Good, event copied to userland, update counts. */
870 event ++;
871 i ++;
872 }
873
874 if (min_nr <= i)
875 return i;
876 if (ret)
877 return ret;
878
879 /* End fast path */
880
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 init_timeout(&to);
882 if (timeout) {
883 struct timespec ts;
884 ret = -EFAULT;
885 if (unlikely(copy_from_user(&ts, timeout, sizeof(ts))))
886 goto out;
887
888 set_timeout(start_jiffies, &to, &ts);
889 }
890
891 while (likely(i < nr)) {
892 add_wait_queue_exclusive(&ctx->wait, &wait);
893 do {
894 set_task_state(tsk, TASK_INTERRUPTIBLE);
895 ret = aio_read_evt(ctx, &ent);
896 if (ret)
897 break;
898 if (min_nr <= i)
899 break;
Jeff Moyere92adcb2008-04-28 02:12:04 -0700900 if (unlikely(ctx->dead)) {
901 ret = -EINVAL;
902 break;
903 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 if (to.timed_out) /* Only check after read evt */
905 break;
Jeff Moyere00ba3d2007-12-04 23:45:02 -0800906 /* Try to only show up in io wait if there are ops
907 * in flight */
908 if (ctx->reqs_active)
909 io_schedule();
910 else
911 schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 if (signal_pending(tsk)) {
913 ret = -EINTR;
914 break;
915 }
916 /*ret = aio_read_evt(ctx, &ent);*/
917 } while (1) ;
918
919 set_task_state(tsk, TASK_RUNNING);
920 remove_wait_queue(&ctx->wait, &wait);
921
922 if (unlikely(ret <= 0))
923 break;
924
925 ret = -EFAULT;
926 if (unlikely(copy_to_user(event, &ent, sizeof(ent)))) {
Kent Overstreetcaf41672013-05-07 16:18:35 -0700927 pr_debug("lost an event due to EFAULT.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 break;
929 }
930
931 /* Good, event copied to userland, update counts. */
932 event ++;
933 i ++;
934 }
935
936 if (timeout)
937 clear_timeout(&to);
938out:
Thomas Gleixnerc6f3a972008-04-30 00:55:03 -0700939 destroy_timer_on_stack(&to.timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 return i ? i : ret;
941}
942
943/* Take an ioctx and remove it from the list of ioctx's. Protects
944 * against races with itself via ->dead.
945 */
946static void io_destroy(struct kioctx *ioctx)
947{
948 struct mm_struct *mm = current->mm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 int was_dead;
950
951 /* delete the entry from the list is someone else hasn't already */
Jens Axboeabf137d2008-12-09 08:11:22 +0100952 spin_lock(&mm->ioctx_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 was_dead = ioctx->dead;
954 ioctx->dead = 1;
Jens Axboeabf137d2008-12-09 08:11:22 +0100955 hlist_del_rcu(&ioctx->list);
956 spin_unlock(&mm->ioctx_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
Kent Overstreetcaf41672013-05-07 16:18:35 -0700958 pr_debug("(%p)\n", ioctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 if (likely(!was_dead))
960 put_ioctx(ioctx); /* twice for the list */
961
Al Viro06af1212012-03-20 16:26:24 -0400962 kill_ctx(ioctx);
Jeff Moyere92adcb2008-04-28 02:12:04 -0700963
964 /*
965 * Wake up any waiters. The setting of ctx->dead must be seen
966 * by other CPUs at this point. Right now, we rely on the
967 * locking done by the above calls to ensure this consistency.
968 */
Roland Dreiere91f90b2011-03-22 16:35:10 -0700969 wake_up_all(&ioctx->wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970}
971
972/* sys_io_setup:
973 * Create an aio_context capable of receiving at least nr_events.
974 * ctxp must not point to an aio_context that already exists, and
975 * must be initialized to 0 prior to the call. On successful
976 * creation of the aio_context, *ctxp is filled in with the resulting
977 * handle. May fail with -EINVAL if *ctxp is not initialized,
978 * if the specified nr_events exceeds internal limits. May fail
979 * with -EAGAIN if the specified nr_events exceeds the user's limit
980 * of available events. May fail with -ENOMEM if insufficient kernel
981 * resources are available. May fail with -EFAULT if an invalid
982 * pointer is passed for ctxp. Will fail with -ENOSYS if not
983 * implemented.
984 */
Heiko Carstens002c8972009-01-14 14:14:18 +0100985SYSCALL_DEFINE2(io_setup, unsigned, nr_events, aio_context_t __user *, ctxp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986{
987 struct kioctx *ioctx = NULL;
988 unsigned long ctx;
989 long ret;
990
991 ret = get_user(ctx, ctxp);
992 if (unlikely(ret))
993 goto out;
994
995 ret = -EINVAL;
Zach Brownd55b5fd2005-11-07 00:59:31 -0800996 if (unlikely(ctx || nr_events == 0)) {
997 pr_debug("EINVAL: io_setup: ctx %lu nr_events %u\n",
998 ctx, nr_events);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 goto out;
1000 }
1001
1002 ioctx = ioctx_alloc(nr_events);
1003 ret = PTR_ERR(ioctx);
1004 if (!IS_ERR(ioctx)) {
1005 ret = put_user(ioctx->user_id, ctxp);
Al Viroa2e18592012-03-20 16:27:57 -04001006 if (ret)
1007 io_destroy(ioctx);
1008 put_ioctx(ioctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 }
1010
1011out:
1012 return ret;
1013}
1014
1015/* sys_io_destroy:
1016 * Destroy the aio_context specified. May cancel any outstanding
1017 * AIOs and block on completion. Will fail with -ENOSYS if not
Satoru Takeuchi642b5122010-08-05 11:23:11 -07001018 * implemented. May fail with -EINVAL if the context pointed to
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 * is invalid.
1020 */
Heiko Carstens002c8972009-01-14 14:14:18 +01001021SYSCALL_DEFINE1(io_destroy, aio_context_t, ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022{
1023 struct kioctx *ioctx = lookup_ioctx(ctx);
1024 if (likely(NULL != ioctx)) {
1025 io_destroy(ioctx);
Al Viroa2e18592012-03-20 16:27:57 -04001026 put_ioctx(ioctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 return 0;
1028 }
1029 pr_debug("EINVAL: io_destroy: invalid context id\n");
1030 return -EINVAL;
1031}
1032
Badari Pulavartyeed4e512006-09-30 23:28:49 -07001033static void aio_advance_iovec(struct kiocb *iocb, ssize_t ret)
1034{
1035 struct iovec *iov = &iocb->ki_iovec[iocb->ki_cur_seg];
1036
1037 BUG_ON(ret <= 0);
1038
1039 while (iocb->ki_cur_seg < iocb->ki_nr_segs && ret > 0) {
1040 ssize_t this = min((ssize_t)iov->iov_len, ret);
1041 iov->iov_base += this;
1042 iov->iov_len -= this;
1043 iocb->ki_left -= this;
1044 ret -= this;
1045 if (iov->iov_len == 0) {
1046 iocb->ki_cur_seg++;
1047 iov++;
1048 }
1049 }
1050
1051 /* the caller should not have done more io than what fit in
1052 * the remaining iovecs */
1053 BUG_ON(ret > 0 && iocb->ki_left == 0);
1054}
1055
1056static ssize_t aio_rw_vect_retry(struct kiocb *iocb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057{
1058 struct file *file = iocb->ki_filp;
1059 struct address_space *mapping = file->f_mapping;
1060 struct inode *inode = mapping->host;
Badari Pulavartyeed4e512006-09-30 23:28:49 -07001061 ssize_t (*rw_op)(struct kiocb *, const struct iovec *,
1062 unsigned long, loff_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 ssize_t ret = 0;
Badari Pulavartyeed4e512006-09-30 23:28:49 -07001064 unsigned short opcode;
1065
1066 if ((iocb->ki_opcode == IOCB_CMD_PREADV) ||
1067 (iocb->ki_opcode == IOCB_CMD_PREAD)) {
1068 rw_op = file->f_op->aio_read;
1069 opcode = IOCB_CMD_PREADV;
1070 } else {
1071 rw_op = file->f_op->aio_write;
1072 opcode = IOCB_CMD_PWRITEV;
1073 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074
Rusty Russellc2ec6682008-02-08 04:20:15 -08001075 /* This matches the pread()/pwrite() logic */
1076 if (iocb->ki_pos < 0)
1077 return -EINVAL;
1078
Al Viro8d71db42013-03-19 21:01:03 -04001079 if (opcode == IOCB_CMD_PWRITEV)
1080 file_start_write(file);
Zach Brown897f15f2005-09-30 11:58:55 -07001081 do {
Badari Pulavartyeed4e512006-09-30 23:28:49 -07001082 ret = rw_op(iocb, &iocb->ki_iovec[iocb->ki_cur_seg],
1083 iocb->ki_nr_segs - iocb->ki_cur_seg,
1084 iocb->ki_pos);
1085 if (ret > 0)
1086 aio_advance_iovec(iocb, ret);
Badari Pulavarty027445c2006-09-30 23:28:46 -07001087
Badari Pulavartyeed4e512006-09-30 23:28:49 -07001088 /* retry all partial writes. retry partial reads as long as its a
1089 * regular file. */
Zach Brown353fb072005-09-30 11:58:56 -07001090 } while (ret > 0 && iocb->ki_left > 0 &&
Badari Pulavartyeed4e512006-09-30 23:28:49 -07001091 (opcode == IOCB_CMD_PWRITEV ||
1092 (!S_ISFIFO(inode->i_mode) && !S_ISSOCK(inode->i_mode))));
Al Viro8d71db42013-03-19 21:01:03 -04001093 if (opcode == IOCB_CMD_PWRITEV)
1094 file_end_write(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
1096 /* This means we must have transferred all that we could */
1097 /* No need to retry anymore */
1098 if ((ret == 0) || (iocb->ki_left == 0))
1099 ret = iocb->ki_nbytes - iocb->ki_left;
1100
Rusty Russell7adfa2f2008-02-08 04:20:14 -08001101 /* If we managed to write some out we return that, rather than
1102 * the eventual error. */
1103 if (opcode == IOCB_CMD_PWRITEV
Zach Brown41003a72013-05-07 16:18:25 -07001104 && ret < 0 && ret != -EIOCBQUEUED
Rusty Russell7adfa2f2008-02-08 04:20:14 -08001105 && iocb->ki_nbytes - iocb->ki_left)
1106 ret = iocb->ki_nbytes - iocb->ki_left;
1107
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 return ret;
1109}
1110
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111static ssize_t aio_fdsync(struct kiocb *iocb)
1112{
1113 struct file *file = iocb->ki_filp;
1114 ssize_t ret = -EINVAL;
1115
1116 if (file->f_op->aio_fsync)
1117 ret = file->f_op->aio_fsync(iocb, 1);
1118 return ret;
1119}
1120
1121static ssize_t aio_fsync(struct kiocb *iocb)
1122{
1123 struct file *file = iocb->ki_filp;
1124 ssize_t ret = -EINVAL;
1125
1126 if (file->f_op->aio_fsync)
1127 ret = file->f_op->aio_fsync(iocb, 0);
1128 return ret;
1129}
1130
Jeff Moyer9d85cba2010-05-26 14:44:26 -07001131static ssize_t aio_setup_vectored_rw(int type, struct kiocb *kiocb, bool compat)
Badari Pulavartyeed4e512006-09-30 23:28:49 -07001132{
1133 ssize_t ret;
1134
Jeff Moyer9d85cba2010-05-26 14:44:26 -07001135#ifdef CONFIG_COMPAT
1136 if (compat)
1137 ret = compat_rw_copy_check_uvector(type,
1138 (struct compat_iovec __user *)kiocb->ki_buf,
1139 kiocb->ki_nbytes, 1, &kiocb->ki_inline_vec,
Christopher Yeohac34ebb2012-05-31 16:26:42 -07001140 &kiocb->ki_iovec);
Jeff Moyer9d85cba2010-05-26 14:44:26 -07001141 else
1142#endif
1143 ret = rw_copy_check_uvector(type,
1144 (struct iovec __user *)kiocb->ki_buf,
1145 kiocb->ki_nbytes, 1, &kiocb->ki_inline_vec,
Christopher Yeohac34ebb2012-05-31 16:26:42 -07001146 &kiocb->ki_iovec);
Badari Pulavartyeed4e512006-09-30 23:28:49 -07001147 if (ret < 0)
1148 goto out;
1149
Linus Torvaldsa70b52e2012-05-21 16:06:20 -07001150 ret = rw_verify_area(type, kiocb->ki_filp, &kiocb->ki_pos, ret);
1151 if (ret < 0)
1152 goto out;
1153
Badari Pulavartyeed4e512006-09-30 23:28:49 -07001154 kiocb->ki_nr_segs = kiocb->ki_nbytes;
1155 kiocb->ki_cur_seg = 0;
1156 /* ki_nbytes/left now reflect bytes instead of segs */
1157 kiocb->ki_nbytes = ret;
1158 kiocb->ki_left = ret;
1159
1160 ret = 0;
1161out:
1162 return ret;
1163}
1164
Linus Torvaldsa70b52e2012-05-21 16:06:20 -07001165static ssize_t aio_setup_single_vector(int type, struct file * file, struct kiocb *kiocb)
Badari Pulavartyeed4e512006-09-30 23:28:49 -07001166{
Linus Torvaldsa70b52e2012-05-21 16:06:20 -07001167 int bytes;
1168
1169 bytes = rw_verify_area(type, file, &kiocb->ki_pos, kiocb->ki_left);
1170 if (bytes < 0)
1171 return bytes;
1172
Badari Pulavartyeed4e512006-09-30 23:28:49 -07001173 kiocb->ki_iovec = &kiocb->ki_inline_vec;
1174 kiocb->ki_iovec->iov_base = kiocb->ki_buf;
Linus Torvaldsa70b52e2012-05-21 16:06:20 -07001175 kiocb->ki_iovec->iov_len = bytes;
Badari Pulavartyeed4e512006-09-30 23:28:49 -07001176 kiocb->ki_nr_segs = 1;
1177 kiocb->ki_cur_seg = 0;
Badari Pulavartyeed4e512006-09-30 23:28:49 -07001178 return 0;
1179}
1180
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181/*
1182 * aio_setup_iocb:
1183 * Performs the initial checks and aio retry method
1184 * setup for the kiocb at the time of io submission.
1185 */
Jeff Moyer9d85cba2010-05-26 14:44:26 -07001186static ssize_t aio_setup_iocb(struct kiocb *kiocb, bool compat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187{
1188 struct file *file = kiocb->ki_filp;
1189 ssize_t ret = 0;
1190
1191 switch (kiocb->ki_opcode) {
1192 case IOCB_CMD_PREAD:
1193 ret = -EBADF;
1194 if (unlikely(!(file->f_mode & FMODE_READ)))
1195 break;
1196 ret = -EFAULT;
1197 if (unlikely(!access_ok(VERIFY_WRITE, kiocb->ki_buf,
1198 kiocb->ki_left)))
1199 break;
Linus Torvaldsa70b52e2012-05-21 16:06:20 -07001200 ret = aio_setup_single_vector(READ, file, kiocb);
Badari Pulavartyeed4e512006-09-30 23:28:49 -07001201 if (ret)
1202 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 ret = -EINVAL;
1204 if (file->f_op->aio_read)
Badari Pulavartyeed4e512006-09-30 23:28:49 -07001205 kiocb->ki_retry = aio_rw_vect_retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 break;
1207 case IOCB_CMD_PWRITE:
1208 ret = -EBADF;
1209 if (unlikely(!(file->f_mode & FMODE_WRITE)))
1210 break;
1211 ret = -EFAULT;
1212 if (unlikely(!access_ok(VERIFY_READ, kiocb->ki_buf,
1213 kiocb->ki_left)))
1214 break;
Linus Torvaldsa70b52e2012-05-21 16:06:20 -07001215 ret = aio_setup_single_vector(WRITE, file, kiocb);
Badari Pulavartyeed4e512006-09-30 23:28:49 -07001216 if (ret)
1217 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 ret = -EINVAL;
1219 if (file->f_op->aio_write)
Badari Pulavartyeed4e512006-09-30 23:28:49 -07001220 kiocb->ki_retry = aio_rw_vect_retry;
1221 break;
1222 case IOCB_CMD_PREADV:
1223 ret = -EBADF;
1224 if (unlikely(!(file->f_mode & FMODE_READ)))
1225 break;
Jeff Moyer9d85cba2010-05-26 14:44:26 -07001226 ret = aio_setup_vectored_rw(READ, kiocb, compat);
Badari Pulavartyeed4e512006-09-30 23:28:49 -07001227 if (ret)
1228 break;
1229 ret = -EINVAL;
1230 if (file->f_op->aio_read)
1231 kiocb->ki_retry = aio_rw_vect_retry;
1232 break;
1233 case IOCB_CMD_PWRITEV:
1234 ret = -EBADF;
1235 if (unlikely(!(file->f_mode & FMODE_WRITE)))
1236 break;
Jeff Moyer9d85cba2010-05-26 14:44:26 -07001237 ret = aio_setup_vectored_rw(WRITE, kiocb, compat);
Badari Pulavartyeed4e512006-09-30 23:28:49 -07001238 if (ret)
1239 break;
1240 ret = -EINVAL;
1241 if (file->f_op->aio_write)
1242 kiocb->ki_retry = aio_rw_vect_retry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 break;
1244 case IOCB_CMD_FDSYNC:
1245 ret = -EINVAL;
1246 if (file->f_op->aio_fsync)
1247 kiocb->ki_retry = aio_fdsync;
1248 break;
1249 case IOCB_CMD_FSYNC:
1250 ret = -EINVAL;
1251 if (file->f_op->aio_fsync)
1252 kiocb->ki_retry = aio_fsync;
1253 break;
1254 default:
Kent Overstreetcaf41672013-05-07 16:18:35 -07001255 pr_debug("EINVAL: no operation provided\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 ret = -EINVAL;
1257 }
1258
1259 if (!kiocb->ki_retry)
1260 return ret;
1261
1262 return 0;
1263}
1264
Adrian Bunkd5470b52008-04-29 00:58:57 -07001265static int io_submit_one(struct kioctx *ctx, struct iocb __user *user_iocb,
Jeff Moyer080d6762011-11-02 13:40:10 -07001266 struct iocb *iocb, struct kiocb_batch *batch,
1267 bool compat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268{
1269 struct kiocb *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 ssize_t ret;
1271
1272 /* enforce forwards compatibility on users */
Davide Libenzi9c3060b2007-05-10 22:23:21 -07001273 if (unlikely(iocb->aio_reserved1 || iocb->aio_reserved2)) {
Kent Overstreetcaf41672013-05-07 16:18:35 -07001274 pr_debug("EINVAL: reserve field set\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 return -EINVAL;
1276 }
1277
1278 /* prevent overflows */
1279 if (unlikely(
1280 (iocb->aio_buf != (unsigned long)iocb->aio_buf) ||
1281 (iocb->aio_nbytes != (size_t)iocb->aio_nbytes) ||
1282 ((ssize_t)iocb->aio_nbytes < 0)
1283 )) {
1284 pr_debug("EINVAL: io_submit: overflow check\n");
1285 return -EINVAL;
1286 }
1287
Jeff Moyer080d6762011-11-02 13:40:10 -07001288 req = aio_get_req(ctx, batch); /* returns with 2 references to req */
Kent Overstreet1d98ebf2013-05-07 16:18:37 -07001289 if (unlikely(!req))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 return -EAGAIN;
Kent Overstreet1d98ebf2013-05-07 16:18:37 -07001291
1292 req->ki_filp = fget(iocb->aio_fildes);
1293 if (unlikely(!req->ki_filp)) {
1294 ret = -EBADF;
1295 goto out_put_req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 }
Kent Overstreet1d98ebf2013-05-07 16:18:37 -07001297
Davide Libenzi9c3060b2007-05-10 22:23:21 -07001298 if (iocb->aio_flags & IOCB_FLAG_RESFD) {
1299 /*
1300 * If the IOCB_FLAG_RESFD flag of aio_flags is set, get an
1301 * instance of the file* now. The file descriptor must be
1302 * an eventfd() fd, and will be signaled for each completed
1303 * event using the eventfd_signal() function.
1304 */
Davide Libenzi13389012009-06-30 11:41:11 -07001305 req->ki_eventfd = eventfd_ctx_fdget((int) iocb->aio_resfd);
Hirofumi Nakagawa801678c2008-04-29 01:03:09 -07001306 if (IS_ERR(req->ki_eventfd)) {
Davide Libenzi9c3060b2007-05-10 22:23:21 -07001307 ret = PTR_ERR(req->ki_eventfd);
Davide Libenzi87c3a862009-03-18 17:04:19 -07001308 req->ki_eventfd = NULL;
Davide Libenzi9c3060b2007-05-10 22:23:21 -07001309 goto out_put_req;
1310 }
1311 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
Ken Chen212079c2005-05-01 08:59:15 -07001313 ret = put_user(req->ki_key, &user_iocb->aio_key);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 if (unlikely(ret)) {
Kent Overstreetcaf41672013-05-07 16:18:35 -07001315 pr_debug("EFAULT: aio_key\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 goto out_put_req;
1317 }
1318
1319 req->ki_obj.user = user_iocb;
1320 req->ki_user_data = iocb->aio_data;
1321 req->ki_pos = iocb->aio_offset;
1322
1323 req->ki_buf = (char __user *)(unsigned long)iocb->aio_buf;
1324 req->ki_left = req->ki_nbytes = iocb->aio_nbytes;
1325 req->ki_opcode = iocb->aio_lio_opcode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
Jeff Moyer9d85cba2010-05-26 14:44:26 -07001327 ret = aio_setup_iocb(req, compat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
1329 if (ret)
1330 goto out_put_req;
1331
1332 spin_lock_irq(&ctx->ctx_lock);
Jan Kara7137c6bd2011-02-25 14:44:27 -08001333 /*
1334 * We could have raced with io_destroy() and are currently holding a
1335 * reference to ctx which should be destroyed. We cannot submit IO
1336 * since ctx gets freed as soon as io_submit() puts its reference. The
1337 * check here is reliable: io_destroy() sets ctx->dead before waiting
1338 * for outstanding IO and the barrier between these two is realized by
1339 * unlock of mm->ioctx_lock and lock of ctx->ctx_lock. Analogously we
1340 * increment ctx->reqs_active before checking for ctx->dead and the
1341 * barrier is realized by unlock and lock of ctx->ctx_lock. Thus if we
1342 * don't see ctx->dead set here, io_destroy() waits for our IO to
1343 * finish.
1344 */
Zach Brown41003a72013-05-07 16:18:25 -07001345 if (ctx->dead)
Jan Kara7137c6bd2011-02-25 14:44:27 -08001346 ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 spin_unlock_irq(&ctx->ctx_lock);
Zach Brown41003a72013-05-07 16:18:25 -07001348 if (ret)
1349 goto out_put_req;
1350
1351 if (unlikely(kiocbIsCancelled(req)))
1352 ret = -EINTR;
1353 else
1354 ret = req->ki_retry(req);
1355
1356 if (ret != -EIOCBQUEUED) {
1357 /*
1358 * There's no easy way to restart the syscall since other AIO's
1359 * may be already running. Just fail this IO with EINTR.
1360 */
1361 if (unlikely(ret == -ERESTARTSYS || ret == -ERESTARTNOINTR ||
1362 ret == -ERESTARTNOHAND ||
1363 ret == -ERESTART_RESTARTBLOCK))
1364 ret = -EINTR;
1365 aio_complete(req, ret, 0);
1366 }
Jeff Moyercfb1e332009-10-02 18:57:36 -04001367
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 aio_put_req(req); /* drop extra ref to req */
1369 return 0;
1370
1371out_put_req:
1372 aio_put_req(req); /* drop extra ref to req */
1373 aio_put_req(req); /* drop i/o ref to req */
1374 return ret;
1375}
1376
Jeff Moyer9d85cba2010-05-26 14:44:26 -07001377long do_io_submit(aio_context_t ctx_id, long nr,
1378 struct iocb __user *__user *iocbpp, bool compat)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379{
1380 struct kioctx *ctx;
1381 long ret = 0;
Jeff Moyer080d6762011-11-02 13:40:10 -07001382 int i = 0;
Shaohua Li9f5b9422010-07-01 07:55:01 +02001383 struct blk_plug plug;
Jeff Moyer080d6762011-11-02 13:40:10 -07001384 struct kiocb_batch batch;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
1386 if (unlikely(nr < 0))
1387 return -EINVAL;
1388
Jeff Moyer75e1c702010-09-10 14:16:00 -07001389 if (unlikely(nr > LONG_MAX/sizeof(*iocbpp)))
1390 nr = LONG_MAX/sizeof(*iocbpp);
1391
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 if (unlikely(!access_ok(VERIFY_READ, iocbpp, (nr*sizeof(*iocbpp)))))
1393 return -EFAULT;
1394
1395 ctx = lookup_ioctx(ctx_id);
1396 if (unlikely(!ctx)) {
Kent Overstreetcaf41672013-05-07 16:18:35 -07001397 pr_debug("EINVAL: invalid context id\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 return -EINVAL;
1399 }
1400
Jeff Moyer080d6762011-11-02 13:40:10 -07001401 kiocb_batch_init(&batch, nr);
1402
Shaohua Li9f5b9422010-07-01 07:55:01 +02001403 blk_start_plug(&plug);
1404
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 /*
1406 * AKPM: should this return a partial result if some of the IOs were
1407 * successfully submitted?
1408 */
1409 for (i=0; i<nr; i++) {
1410 struct iocb __user *user_iocb;
1411 struct iocb tmp;
1412
1413 if (unlikely(__get_user(user_iocb, iocbpp + i))) {
1414 ret = -EFAULT;
1415 break;
1416 }
1417
1418 if (unlikely(copy_from_user(&tmp, user_iocb, sizeof(tmp)))) {
1419 ret = -EFAULT;
1420 break;
1421 }
1422
Jeff Moyer080d6762011-11-02 13:40:10 -07001423 ret = io_submit_one(ctx, user_iocb, &tmp, &batch, compat);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 if (ret)
1425 break;
1426 }
Shaohua Li9f5b9422010-07-01 07:55:01 +02001427 blk_finish_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
Gleb Natapov69e47472012-01-08 17:07:28 +02001429 kiocb_batch_free(ctx, &batch);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 put_ioctx(ctx);
1431 return i ? i : ret;
1432}
1433
Jeff Moyer9d85cba2010-05-26 14:44:26 -07001434/* sys_io_submit:
1435 * Queue the nr iocbs pointed to by iocbpp for processing. Returns
1436 * the number of iocbs queued. May return -EINVAL if the aio_context
1437 * specified by ctx_id is invalid, if nr is < 0, if the iocb at
1438 * *iocbpp[0] is not properly initialized, if the operation specified
1439 * is invalid for the file descriptor in the iocb. May fail with
1440 * -EFAULT if any of the data structures point to invalid data. May
1441 * fail with -EBADF if the file descriptor specified in the first
1442 * iocb is invalid. May fail with -EAGAIN if insufficient resources
1443 * are available to queue any iocbs. Will return 0 if nr is 0. Will
1444 * fail with -ENOSYS if not implemented.
1445 */
1446SYSCALL_DEFINE3(io_submit, aio_context_t, ctx_id, long, nr,
1447 struct iocb __user * __user *, iocbpp)
1448{
1449 return do_io_submit(ctx_id, nr, iocbpp, 0);
1450}
1451
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452/* lookup_kiocb
1453 * Finds a given iocb for cancellation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 */
Adrian Bunk25ee7e32005-04-25 08:18:14 -07001455static struct kiocb *lookup_kiocb(struct kioctx *ctx, struct iocb __user *iocb,
1456 u32 key)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457{
1458 struct list_head *pos;
Zach Brownd00689a2005-11-13 16:07:34 -08001459
1460 assert_spin_locked(&ctx->ctx_lock);
1461
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 /* TODO: use a hash or array, this sucks. */
1463 list_for_each(pos, &ctx->active_reqs) {
1464 struct kiocb *kiocb = list_kiocb(pos);
1465 if (kiocb->ki_obj.user == iocb && kiocb->ki_key == key)
1466 return kiocb;
1467 }
1468 return NULL;
1469}
1470
1471/* sys_io_cancel:
1472 * Attempts to cancel an iocb previously passed to io_submit. If
1473 * the operation is successfully cancelled, the resulting event is
1474 * copied into the memory pointed to by result without being placed
1475 * into the completion queue and 0 is returned. May fail with
1476 * -EFAULT if any of the data structures pointed to are invalid.
1477 * May fail with -EINVAL if aio_context specified by ctx_id is
1478 * invalid. May fail with -EAGAIN if the iocb specified was not
1479 * cancelled. Will fail with -ENOSYS if not implemented.
1480 */
Heiko Carstens002c8972009-01-14 14:14:18 +01001481SYSCALL_DEFINE3(io_cancel, aio_context_t, ctx_id, struct iocb __user *, iocb,
1482 struct io_event __user *, result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483{
Kent Overstreet906b9732013-05-07 16:18:31 -07001484 struct io_event res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 struct kioctx *ctx;
1486 struct kiocb *kiocb;
1487 u32 key;
1488 int ret;
1489
1490 ret = get_user(key, &iocb->aio_key);
1491 if (unlikely(ret))
1492 return -EFAULT;
1493
1494 ctx = lookup_ioctx(ctx_id);
1495 if (unlikely(!ctx))
1496 return -EINVAL;
1497
1498 spin_lock_irq(&ctx->ctx_lock);
Kent Overstreet906b9732013-05-07 16:18:31 -07001499
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 kiocb = lookup_kiocb(ctx, iocb, key);
Kent Overstreet906b9732013-05-07 16:18:31 -07001501 if (kiocb)
1502 ret = kiocb_cancel(ctx, kiocb, &res);
1503 else
1504 ret = -EINVAL;
1505
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 spin_unlock_irq(&ctx->ctx_lock);
1507
Kent Overstreet906b9732013-05-07 16:18:31 -07001508 if (!ret) {
1509 /* Cancellation succeeded -- copy the result
1510 * into the user's buffer.
1511 */
1512 if (copy_to_user(result, &res, sizeof(res)))
1513 ret = -EFAULT;
1514 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515
1516 put_ioctx(ctx);
1517
1518 return ret;
1519}
1520
1521/* io_getevents:
1522 * Attempts to read at least min_nr events and up to nr events from
Satoru Takeuchi642b5122010-08-05 11:23:11 -07001523 * the completion queue for the aio_context specified by ctx_id. If
1524 * it succeeds, the number of read events is returned. May fail with
1525 * -EINVAL if ctx_id is invalid, if min_nr is out of range, if nr is
1526 * out of range, if timeout is out of range. May fail with -EFAULT
1527 * if any of the memory specified is invalid. May return 0 or
1528 * < min_nr if the timeout specified by timeout has elapsed
1529 * before sufficient events are available, where timeout == NULL
1530 * specifies an infinite timeout. Note that the timeout pointed to by
1531 * timeout is relative and will be updated if not NULL and the
1532 * operation blocks. Will fail with -ENOSYS if not implemented.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 */
Heiko Carstens002c8972009-01-14 14:14:18 +01001534SYSCALL_DEFINE5(io_getevents, aio_context_t, ctx_id,
1535 long, min_nr,
1536 long, nr,
1537 struct io_event __user *, events,
1538 struct timespec __user *, timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539{
1540 struct kioctx *ioctx = lookup_ioctx(ctx_id);
1541 long ret = -EINVAL;
1542
1543 if (likely(ioctx)) {
Namhyung Kim2e410252011-01-12 17:01:08 -08001544 if (likely(min_nr <= nr && min_nr >= 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 ret = read_events(ioctx, min_nr, nr, events, timeout);
1546 put_ioctx(ioctx);
1547 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 return ret;
1549}