aio: kill batch allocation
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / fs / aio.c
CommitLineData
1da177e4
LT
1/*
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 */
caf4167a
KO
11#define pr_fmt(fmt) "%s: " fmt, __func__
12
1da177e4
LT
13#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>
630d9c47 18#include <linux/export.h>
1da177e4 19#include <linux/syscalls.h>
b9d128f1 20#include <linux/backing-dev.h>
027445c3 21#include <linux/uio.h>
1da177e4 22
1da177e4
LT
23#include <linux/sched.h>
24#include <linux/fs.h>
25#include <linux/file.h>
26#include <linux/mm.h>
27#include <linux/mman.h>
3d2d827f 28#include <linux/mmu_context.h>
1da177e4
LT
29#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>
9c3060be 35#include <linux/eventfd.h>
cfb1e33e 36#include <linux/blkdev.h>
9d85cba7 37#include <linux/compat.h>
1da177e4
LT
38
39#include <asm/kmap_types.h>
40#include <asm/uaccess.h>
1da177e4 41
4e179bca
KO
42#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;
a31ad380 66 struct mutex ring_lock;
4e179bca
KO
67 long nr_pages;
68
69 unsigned nr, tail;
70
71 struct page *internal_pages[AIO_RING_PAGES];
72};
73
4e179bca
KO
74struct kioctx {
75 atomic_t users;
36f55889 76 atomic_t dead;
4e179bca
KO
77
78 /* This needs improving */
79 unsigned long user_id;
80 struct hlist_node list;
81
82 wait_queue_head_t wait;
83
84 spinlock_t ctx_lock;
85
11599eba 86 atomic_t reqs_active;
4e179bca
KO
87 struct list_head active_reqs; /* used for cancellation */
88
3e845ce0
KO
89 /*
90 * This is what userspace passed to io_setup(), it's not used for
91 * anything but counting against the global max_reqs quota.
92 *
93 * The real limit is ring->nr - 1, which will be larger (see
94 * aio_setup_ring())
95 */
4e179bca
KO
96 unsigned max_reqs;
97
98 struct aio_ring_info ring_info;
99
0460fef2
KO
100 spinlock_t completion_lock;
101
4e179bca 102 struct rcu_head rcu_head;
36f55889 103 struct work_struct rcu_work;
4e179bca
KO
104};
105
1da177e4 106/*------ sysctl variables----*/
d55b5fda
ZB
107static DEFINE_SPINLOCK(aio_nr_lock);
108unsigned long aio_nr; /* current system wide number of aio requests */
109unsigned long aio_max_nr = 0x10000; /* system wide maximum number of aio requests */
1da177e4
LT
110/*----end sysctl variables---*/
111
e18b890b
CL
112static struct kmem_cache *kiocb_cachep;
113static struct kmem_cache *kioctx_cachep;
1da177e4 114
1da177e4
LT
115/* aio_setup
116 * Creates the slab caches used by the aio routines, panic on
117 * failure as this is done early during the boot sequence.
118 */
119static int __init aio_setup(void)
120{
0a31bd5f
CL
121 kiocb_cachep = KMEM_CACHE(kiocb, SLAB_HWCACHE_ALIGN|SLAB_PANIC);
122 kioctx_cachep = KMEM_CACHE(kioctx,SLAB_HWCACHE_ALIGN|SLAB_PANIC);
1da177e4 123
caf4167a 124 pr_debug("sizeof(struct page) = %zu\n", sizeof(struct page));
1da177e4
LT
125
126 return 0;
127}
385773e0 128__initcall(aio_setup);
1da177e4
LT
129
130static void aio_free_ring(struct kioctx *ctx)
131{
132 struct aio_ring_info *info = &ctx->ring_info;
133 long i;
134
135 for (i=0; i<info->nr_pages; i++)
136 put_page(info->ring_pages[i]);
137
936af157 138 if (info->mmap_size) {
bfce281c 139 vm_munmap(info->mmap_base, info->mmap_size);
936af157 140 }
1da177e4
LT
141
142 if (info->ring_pages && info->ring_pages != info->internal_pages)
143 kfree(info->ring_pages);
144 info->ring_pages = NULL;
145 info->nr = 0;
146}
147
148static int aio_setup_ring(struct kioctx *ctx)
149{
150 struct aio_ring *ring;
151 struct aio_ring_info *info = &ctx->ring_info;
152 unsigned nr_events = ctx->max_reqs;
41003a7b 153 struct mm_struct *mm = current->mm;
41badc15 154 unsigned long size, populate;
1da177e4
LT
155 int nr_pages;
156
157 /* Compensate for the ring buffer's head/tail overlap entry */
158 nr_events += 2; /* 1 is required, 2 for good luck */
159
160 size = sizeof(struct aio_ring);
161 size += sizeof(struct io_event) * nr_events;
162 nr_pages = (size + PAGE_SIZE-1) >> PAGE_SHIFT;
163
164 if (nr_pages < 0)
165 return -EINVAL;
166
167 nr_events = (PAGE_SIZE * nr_pages - sizeof(struct aio_ring)) / sizeof(struct io_event);
168
169 info->nr = 0;
170 info->ring_pages = info->internal_pages;
171 if (nr_pages > AIO_RING_PAGES) {
11b0b5ab 172 info->ring_pages = kcalloc(nr_pages, sizeof(struct page *), GFP_KERNEL);
1da177e4
LT
173 if (!info->ring_pages)
174 return -ENOMEM;
1da177e4
LT
175 }
176
177 info->mmap_size = nr_pages * PAGE_SIZE;
caf4167a 178 pr_debug("attempting mmap of %lu bytes\n", info->mmap_size);
41003a7b 179 down_write(&mm->mmap_sem);
e3fc629d
AV
180 info->mmap_base = do_mmap_pgoff(NULL, 0, info->mmap_size,
181 PROT_READ|PROT_WRITE,
bebeb3d6
ML
182 MAP_ANONYMOUS|MAP_PRIVATE, 0,
183 &populate);
1da177e4 184 if (IS_ERR((void *)info->mmap_base)) {
41003a7b 185 up_write(&mm->mmap_sem);
1da177e4
LT
186 info->mmap_size = 0;
187 aio_free_ring(ctx);
188 return -EAGAIN;
189 }
190
caf4167a 191 pr_debug("mmap address: 0x%08lx\n", info->mmap_base);
41003a7b 192 info->nr_pages = get_user_pages(current, mm, info->mmap_base, nr_pages,
1da177e4 193 1, 0, info->ring_pages, NULL);
41003a7b 194 up_write(&mm->mmap_sem);
1da177e4
LT
195
196 if (unlikely(info->nr_pages != nr_pages)) {
197 aio_free_ring(ctx);
198 return -EAGAIN;
199 }
bebeb3d6 200 if (populate)
41badc15 201 mm_populate(info->mmap_base, populate);
1da177e4
LT
202
203 ctx->user_id = info->mmap_base;
204
205 info->nr = nr_events; /* trusted copy */
206
e8e3c3d6 207 ring = kmap_atomic(info->ring_pages[0]);
1da177e4
LT
208 ring->nr = nr_events; /* user copy */
209 ring->id = ctx->user_id;
210 ring->head = ring->tail = 0;
211 ring->magic = AIO_RING_MAGIC;
212 ring->compat_features = AIO_RING_COMPAT_FEATURES;
213 ring->incompat_features = AIO_RING_INCOMPAT_FEATURES;
214 ring->header_length = sizeof(struct aio_ring);
e8e3c3d6 215 kunmap_atomic(ring);
21b40200 216 flush_dcache_page(info->ring_pages[0]);
1da177e4
LT
217
218 return 0;
219}
220
1da177e4
LT
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
0460fef2
KO
225void kiocb_set_cancel_fn(struct kiocb *req, kiocb_cancel_fn *cancel)
226{
227 struct kioctx *ctx = req->ki_ctx;
228 unsigned long flags;
229
230 spin_lock_irqsave(&ctx->ctx_lock, flags);
231
232 if (!req->ki_list.next)
233 list_add(&req->ki_list, &ctx->active_reqs);
234
235 req->ki_cancel = cancel;
236
237 spin_unlock_irqrestore(&ctx->ctx_lock, flags);
238}
239EXPORT_SYMBOL(kiocb_set_cancel_fn);
240
906b973c
KO
241static int kiocb_cancel(struct kioctx *ctx, struct kiocb *kiocb,
242 struct io_event *res)
243{
0460fef2 244 kiocb_cancel_fn *old, *cancel;
906b973c
KO
245 int ret = -EINVAL;
246
0460fef2
KO
247 /*
248 * Don't want to set kiocb->ki_cancel = KIOCB_CANCELLED unless it
249 * actually has a cancel function, hence the cmpxchg()
250 */
251
252 cancel = ACCESS_ONCE(kiocb->ki_cancel);
253 do {
254 if (!cancel || cancel == KIOCB_CANCELLED)
255 return ret;
906b973c 256
0460fef2
KO
257 old = cancel;
258 cancel = cmpxchg(&kiocb->ki_cancel, old, KIOCB_CANCELLED);
259 } while (cancel != old);
906b973c 260
0460fef2
KO
261 atomic_inc(&kiocb->ki_users);
262 spin_unlock_irq(&ctx->ctx_lock);
263
264 memset(res, 0, sizeof(*res));
265 res->obj = (u64)(unsigned long)kiocb->ki_obj.user;
266 res->data = kiocb->ki_user_data;
267 ret = cancel(kiocb, res);
268
269 spin_lock_irq(&ctx->ctx_lock);
906b973c
KO
270
271 return ret;
272}
273
36f55889
KO
274static void free_ioctx_rcu(struct rcu_head *head)
275{
276 struct kioctx *ctx = container_of(head, struct kioctx, rcu_head);
277 kmem_cache_free(kioctx_cachep, ctx);
278}
279
280/*
281 * When this function runs, the kioctx has been removed from the "hash table"
282 * and ctx->users has dropped to 0, so we know no more kiocbs can be submitted -
283 * now it's safe to cancel any that need to be.
284 */
285static void free_ioctx(struct kioctx *ctx)
286{
3e845ce0
KO
287 struct aio_ring_info *info = &ctx->ring_info;
288 struct aio_ring *ring;
36f55889
KO
289 struct io_event res;
290 struct kiocb *req;
3e845ce0 291 unsigned head, avail;
36f55889
KO
292
293 spin_lock_irq(&ctx->ctx_lock);
294
295 while (!list_empty(&ctx->active_reqs)) {
296 req = list_first_entry(&ctx->active_reqs,
297 struct kiocb, ki_list);
298
299 list_del_init(&req->ki_list);
300 kiocb_cancel(ctx, req, &res);
301 }
302
303 spin_unlock_irq(&ctx->ctx_lock);
304
3e845ce0
KO
305 ring = kmap_atomic(info->ring_pages[0]);
306 head = ring->head;
307 kunmap_atomic(ring);
308
309 while (atomic_read(&ctx->reqs_active) > 0) {
310 wait_event(ctx->wait, head != info->tail);
311
312 avail = (head <= info->tail ? info->tail : info->nr) - head;
313
314 atomic_sub(avail, &ctx->reqs_active);
315 head += avail;
316 head %= info->nr;
317 }
318
319 WARN_ON(atomic_read(&ctx->reqs_active) < 0);
36f55889
KO
320
321 aio_free_ring(ctx);
322
323 spin_lock(&aio_nr_lock);
324 BUG_ON(aio_nr - ctx->max_reqs > aio_nr);
325 aio_nr -= ctx->max_reqs;
326 spin_unlock(&aio_nr_lock);
327
328 pr_debug("freeing %p\n", ctx);
329
330 /*
331 * Here the call_rcu() is between the wait_event() for reqs_active to
332 * hit 0, and freeing the ioctx.
333 *
334 * aio_complete() decrements reqs_active, but it has to touch the ioctx
335 * after to issue a wakeup so we use rcu.
336 */
337 call_rcu(&ctx->rcu_head, free_ioctx_rcu);
338}
339
340static void put_ioctx(struct kioctx *ctx)
341{
342 if (unlikely(atomic_dec_and_test(&ctx->users)))
343 free_ioctx(ctx);
344}
345
1da177e4
LT
346/* ioctx_alloc
347 * Allocates and initializes an ioctx. Returns an ERR_PTR if it failed.
348 */
349static struct kioctx *ioctx_alloc(unsigned nr_events)
350{
41003a7b 351 struct mm_struct *mm = current->mm;
1da177e4 352 struct kioctx *ctx;
e23754f8 353 int err = -ENOMEM;
1da177e4
LT
354
355 /* Prevent overflows */
356 if ((nr_events > (0x10000000U / sizeof(struct io_event))) ||
357 (nr_events > (0x10000000U / sizeof(struct kiocb)))) {
358 pr_debug("ENOMEM: nr_events too high\n");
359 return ERR_PTR(-EINVAL);
360 }
361
2dd542b7 362 if (!nr_events || (unsigned long)nr_events > aio_max_nr)
1da177e4
LT
363 return ERR_PTR(-EAGAIN);
364
c3762229 365 ctx = kmem_cache_zalloc(kioctx_cachep, GFP_KERNEL);
1da177e4
LT
366 if (!ctx)
367 return ERR_PTR(-ENOMEM);
368
1da177e4 369 ctx->max_reqs = nr_events;
1da177e4 370
86b62a2c 371 atomic_set(&ctx->users, 2);
36f55889 372 atomic_set(&ctx->dead, 0);
1da177e4 373 spin_lock_init(&ctx->ctx_lock);
0460fef2 374 spin_lock_init(&ctx->completion_lock);
a31ad380 375 mutex_init(&ctx->ring_info.ring_lock);
1da177e4
LT
376 init_waitqueue_head(&ctx->wait);
377
378 INIT_LIST_HEAD(&ctx->active_reqs);
1da177e4
LT
379
380 if (aio_setup_ring(ctx) < 0)
381 goto out_freectx;
382
383 /* limit the number of system wide aios */
9fa1cb39 384 spin_lock(&aio_nr_lock);
2dd542b7
AV
385 if (aio_nr + nr_events > aio_max_nr ||
386 aio_nr + nr_events < aio_nr) {
9fa1cb39 387 spin_unlock(&aio_nr_lock);
1da177e4 388 goto out_cleanup;
2dd542b7
AV
389 }
390 aio_nr += ctx->max_reqs;
9fa1cb39 391 spin_unlock(&aio_nr_lock);
1da177e4 392
39fa0031 393 /* now link into global list. */
abf137dd
JA
394 spin_lock(&mm->ioctx_lock);
395 hlist_add_head_rcu(&ctx->list, &mm->ioctx_list);
396 spin_unlock(&mm->ioctx_lock);
1da177e4 397
caf4167a 398 pr_debug("allocated ioctx %p[%ld]: mm=%p mask=0x%x\n",
41003a7b 399 ctx, ctx->user_id, mm, ctx->ring_info.nr);
1da177e4
LT
400 return ctx;
401
402out_cleanup:
e23754f8
AV
403 err = -EAGAIN;
404 aio_free_ring(ctx);
1da177e4 405out_freectx:
1da177e4 406 kmem_cache_free(kioctx_cachep, ctx);
caf4167a 407 pr_debug("error allocating ioctx %d\n", err);
e23754f8 408 return ERR_PTR(err);
1da177e4
LT
409}
410
36f55889 411static void kill_ioctx_work(struct work_struct *work)
1da177e4 412{
36f55889 413 struct kioctx *ctx = container_of(work, struct kioctx, rcu_work);
06af121e 414
36f55889
KO
415 wake_up_all(&ctx->wait);
416 put_ioctx(ctx);
417}
906b973c 418
36f55889
KO
419static void kill_ioctx_rcu(struct rcu_head *head)
420{
421 struct kioctx *ctx = container_of(head, struct kioctx, rcu_head);
1da177e4 422
36f55889
KO
423 INIT_WORK(&ctx->rcu_work, kill_ioctx_work);
424 schedule_work(&ctx->rcu_work);
425}
1da177e4 426
36f55889
KO
427/* kill_ioctx
428 * Cancels all outstanding aio requests on an aio context. Used
429 * when the processes owning a context have all exited to encourage
430 * the rapid destruction of the kioctx.
431 */
432static void kill_ioctx(struct kioctx *ctx)
433{
434 if (!atomic_xchg(&ctx->dead, 1)) {
435 hlist_del_rcu(&ctx->list);
436 /* Between hlist_del_rcu() and dropping the initial ref */
437 synchronize_rcu();
dee11c23 438
36f55889
KO
439 /*
440 * We can't punt to workqueue here because put_ioctx() ->
441 * free_ioctx() will unmap the ringbuffer, and that has to be
442 * done in the original process's context. kill_ioctx_rcu/work()
443 * exist for exit_aio(), as in that path free_ioctx() won't do
444 * the unmap.
445 */
446 kill_ioctx_work(&ctx->rcu_work);
447 }
1da177e4
LT
448}
449
450/* wait_on_sync_kiocb:
451 * Waits on the given sync kiocb to complete.
452 */
fc9b52cd 453ssize_t wait_on_sync_kiocb(struct kiocb *iocb)
1da177e4 454{
11599eba 455 while (atomic_read(&iocb->ki_users)) {
1da177e4 456 set_current_state(TASK_UNINTERRUPTIBLE);
11599eba 457 if (!atomic_read(&iocb->ki_users))
1da177e4 458 break;
41d10da3 459 io_schedule();
1da177e4
LT
460 }
461 __set_current_state(TASK_RUNNING);
462 return iocb->ki_user_data;
463}
385773e0 464EXPORT_SYMBOL(wait_on_sync_kiocb);
1da177e4 465
36f55889
KO
466/*
467 * exit_aio: called when the last user of mm goes away. At this point, there is
468 * no way for any new requests to be submited or any of the io_* syscalls to be
469 * called on the context.
470 *
471 * There may be outstanding kiocbs, but free_ioctx() will explicitly wait on
472 * them.
1da177e4 473 */
fc9b52cd 474void exit_aio(struct mm_struct *mm)
1da177e4 475{
abf137dd 476 struct kioctx *ctx;
36f55889 477 struct hlist_node *n;
abf137dd 478
36f55889 479 hlist_for_each_entry_safe(ctx, n, &mm->ioctx_list, list) {
1da177e4
LT
480 if (1 != atomic_read(&ctx->users))
481 printk(KERN_DEBUG
482 "exit_aio:ioctx still alive: %d %d %d\n",
36f55889
KO
483 atomic_read(&ctx->users),
484 atomic_read(&ctx->dead),
11599eba 485 atomic_read(&ctx->reqs_active));
936af157
AV
486 /*
487 * We don't need to bother with munmap() here -
488 * exit_mmap(mm) is coming and it'll unmap everything.
489 * Since aio_free_ring() uses non-zero ->mmap_size
490 * as indicator that it needs to unmap the area,
491 * just set it to 0; aio_free_ring() is the only
492 * place that uses ->mmap_size, so it's safe.
936af157
AV
493 */
494 ctx->ring_info.mmap_size = 0;
36f55889
KO
495
496 if (!atomic_xchg(&ctx->dead, 1)) {
497 hlist_del_rcu(&ctx->list);
498 call_rcu(&ctx->rcu_head, kill_ioctx_rcu);
499 }
1da177e4
LT
500 }
501}
502
1da177e4 503/* aio_get_req
11599eba 504 * Allocate a slot for an aio request. Increments the ki_users count
1da177e4
LT
505 * of the kioctx so that the kioctx stays around until all requests are
506 * complete. Returns NULL if no requests are free.
507 *
11599eba 508 * Returns with kiocb->ki_users set to 2. The io submit code path holds
1da177e4
LT
509 * an extra reference while submitting the i/o.
510 * This prevents races between the aio code path referencing the
511 * req (after submitting it) and aio_complete() freeing the req.
512 */
a1c8eae7 513static inline struct kiocb *aio_get_req(struct kioctx *ctx)
1da177e4 514{
a1c8eae7
KO
515 struct kiocb *req;
516
517 if (atomic_read(&ctx->reqs_active) >= ctx->ring_info.nr)
518 return NULL;
519
520 if (atomic_inc_return(&ctx->reqs_active) > ctx->ring_info.nr - 1)
521 goto out_put;
1da177e4 522
0460fef2 523 req = kmem_cache_alloc(kiocb_cachep, GFP_KERNEL|__GFP_ZERO);
1da177e4 524 if (unlikely(!req))
a1c8eae7 525 goto out_put;
1da177e4 526
11599eba 527 atomic_set(&req->ki_users, 2);
1da177e4 528 req->ki_ctx = ctx;
1da177e4 529
080d676d 530 return req;
a1c8eae7
KO
531out_put:
532 atomic_dec(&ctx->reqs_active);
533 return NULL;
1da177e4
LT
534}
535
11599eba 536static void kiocb_free(struct kiocb *req)
1da177e4 537{
1d98ebfc
KO
538 if (req->ki_filp)
539 fput(req->ki_filp);
13389010
DL
540 if (req->ki_eventfd != NULL)
541 eventfd_ctx_put(req->ki_eventfd);
1da177e4
LT
542 if (req->ki_dtor)
543 req->ki_dtor(req);
eed4e51f
BP
544 if (req->ki_iovec != &req->ki_inline_vec)
545 kfree(req->ki_iovec);
1da177e4 546 kmem_cache_free(kiocb_cachep, req);
1da177e4
LT
547}
548
2d68449e 549void aio_put_req(struct kiocb *req)
1da177e4 550{
11599eba
KO
551 if (atomic_dec_and_test(&req->ki_users))
552 kiocb_free(req);
1da177e4 553}
385773e0 554EXPORT_SYMBOL(aio_put_req);
1da177e4 555
d5470b59 556static struct kioctx *lookup_ioctx(unsigned long ctx_id)
1da177e4 557{
abf137dd 558 struct mm_struct *mm = current->mm;
65c24491 559 struct kioctx *ctx, *ret = NULL;
1da177e4 560
abf137dd
JA
561 rcu_read_lock();
562
b67bfe0d 563 hlist_for_each_entry_rcu(ctx, &mm->ioctx_list, list) {
36f55889
KO
564 if (ctx->user_id == ctx_id) {
565 atomic_inc(&ctx->users);
65c24491 566 ret = ctx;
1da177e4
LT
567 break;
568 }
abf137dd 569 }
1da177e4 570
abf137dd 571 rcu_read_unlock();
65c24491 572 return ret;
1da177e4
LT
573}
574
1da177e4
LT
575/* aio_complete
576 * Called when the io request on the given iocb is complete.
1da177e4 577 */
2d68449e 578void aio_complete(struct kiocb *iocb, long res, long res2)
1da177e4
LT
579{
580 struct kioctx *ctx = iocb->ki_ctx;
581 struct aio_ring_info *info;
582 struct aio_ring *ring;
21b40200 583 struct io_event *ev_page, *event;
1da177e4 584 unsigned long flags;
21b40200 585 unsigned tail, pos;
1da177e4 586
20dcae32
ZB
587 /*
588 * Special case handling for sync iocbs:
589 * - events go directly into the iocb for fast handling
590 * - the sync task with the iocb in its stack holds the single iocb
591 * ref, no other paths have a way to get another ref
592 * - the sync task helpfully left a reference to itself in the iocb
1da177e4
LT
593 */
594 if (is_sync_kiocb(iocb)) {
11599eba 595 BUG_ON(atomic_read(&iocb->ki_users) != 1);
1da177e4 596 iocb->ki_user_data = res;
11599eba 597 atomic_set(&iocb->ki_users, 0);
1da177e4 598 wake_up_process(iocb->ki_obj.tsk);
2d68449e 599 return;
1da177e4
LT
600 }
601
602 info = &ctx->ring_info;
603
36f55889 604 /*
36f55889
KO
605 * Take rcu_read_lock() in case the kioctx is being destroyed, as we
606 * need to issue a wakeup after decrementing reqs_active.
1da177e4 607 */
36f55889 608 rcu_read_lock();
1da177e4 609
0460fef2
KO
610 if (iocb->ki_list.next) {
611 unsigned long flags;
612
613 spin_lock_irqsave(&ctx->ctx_lock, flags);
614 list_del(&iocb->ki_list);
615 spin_unlock_irqrestore(&ctx->ctx_lock, flags);
616 }
11599eba 617
1da177e4
LT
618 /*
619 * cancelled requests don't get events, userland was given one
620 * when the event got cancelled.
621 */
0460fef2 622 if (unlikely(xchg(&iocb->ki_cancel,
3e845ce0
KO
623 KIOCB_CANCELLED) == KIOCB_CANCELLED)) {
624 atomic_dec(&ctx->reqs_active);
625 /* Still need the wake_up in case free_ioctx is waiting */
1da177e4 626 goto put_rq;
3e845ce0 627 }
1da177e4 628
0460fef2
KO
629 /*
630 * Add a completion event to the ring buffer. Must be done holding
631 * ctx->ctx_lock to prevent other code from messing with the tail
632 * pointer since we might be called from irq context.
633 */
634 spin_lock_irqsave(&ctx->completion_lock, flags);
635
1da177e4 636 tail = info->tail;
21b40200
KO
637 pos = tail + AIO_EVENTS_OFFSET;
638
4bf69b2a
KC
639 if (++tail >= info->nr)
640 tail = 0;
1da177e4 641
21b40200
KO
642 ev_page = kmap_atomic(info->ring_pages[pos / AIO_EVENTS_PER_PAGE]);
643 event = ev_page + pos % AIO_EVENTS_PER_PAGE;
644
1da177e4
LT
645 event->obj = (u64)(unsigned long)iocb->ki_obj.user;
646 event->data = iocb->ki_user_data;
647 event->res = res;
648 event->res2 = res2;
649
21b40200
KO
650 kunmap_atomic(ev_page);
651 flush_dcache_page(info->ring_pages[pos / AIO_EVENTS_PER_PAGE]);
652
653 pr_debug("%p[%u]: %p: %p %Lx %lx %lx\n",
caf4167a
KO
654 ctx, tail, iocb, iocb->ki_obj.user, iocb->ki_user_data,
655 res, res2);
1da177e4
LT
656
657 /* after flagging the request as done, we
658 * must never even look at it again
659 */
660 smp_wmb(); /* make event visible before updating tail */
661
662 info->tail = tail;
1da177e4 663
21b40200
KO
664 ring = kmap_atomic(info->ring_pages[0]);
665 ring->tail = tail;
e8e3c3d6 666 kunmap_atomic(ring);
21b40200 667 flush_dcache_page(info->ring_pages[0]);
1da177e4 668
0460fef2
KO
669 spin_unlock_irqrestore(&ctx->completion_lock, flags);
670
21b40200 671 pr_debug("added to ring %p at [%u]\n", iocb, tail);
8d1c98b0
DL
672
673 /*
674 * Check if the user asked us to deliver the result through an
675 * eventfd. The eventfd_signal() function is safe to be called
676 * from IRQ context.
677 */
87c3a86e 678 if (iocb->ki_eventfd != NULL)
8d1c98b0
DL
679 eventfd_signal(iocb->ki_eventfd, 1);
680
1da177e4
LT
681put_rq:
682 /* everything turned out well, dispose of the aiocb. */
11599eba 683 aio_put_req(iocb);
1da177e4 684
6cb2a210
QB
685 /*
686 * We have to order our ring_info tail store above and test
687 * of the wait list below outside the wait lock. This is
688 * like in wake_up_bit() where clearing a bit has to be
689 * ordered with the unlocked test.
690 */
691 smp_mb();
692
1da177e4
LT
693 if (waitqueue_active(&ctx->wait))
694 wake_up(&ctx->wait);
695
36f55889 696 rcu_read_unlock();
1da177e4 697}
385773e0 698EXPORT_SYMBOL(aio_complete);
1da177e4 699
a31ad380
KO
700/* aio_read_events
701 * Pull an event off of the ioctx's event ring. Returns the number of
702 * events fetched
1da177e4 703 */
a31ad380
KO
704static long aio_read_events_ring(struct kioctx *ctx,
705 struct io_event __user *event, long nr)
1da177e4 706{
a31ad380 707 struct aio_ring_info *info = &ctx->ring_info;
1da177e4 708 struct aio_ring *ring;
a31ad380
KO
709 unsigned head, pos;
710 long ret = 0;
711 int copy_ret;
712
713 mutex_lock(&info->ring_lock);
1da177e4 714
e8e3c3d6 715 ring = kmap_atomic(info->ring_pages[0]);
a31ad380
KO
716 head = ring->head;
717 kunmap_atomic(ring);
718
719 pr_debug("h%u t%u m%u\n", head, info->tail, info->nr);
1da177e4 720
a31ad380 721 if (head == info->tail)
1da177e4
LT
722 goto out;
723
a31ad380
KO
724 while (ret < nr) {
725 long avail;
726 struct io_event *ev;
727 struct page *page;
728
729 avail = (head <= info->tail ? info->tail : info->nr) - head;
730 if (head == info->tail)
731 break;
732
733 avail = min(avail, nr - ret);
734 avail = min_t(long, avail, AIO_EVENTS_PER_PAGE -
735 ((head + AIO_EVENTS_OFFSET) % AIO_EVENTS_PER_PAGE));
736
737 pos = head + AIO_EVENTS_OFFSET;
738 page = info->ring_pages[pos / AIO_EVENTS_PER_PAGE];
739 pos %= AIO_EVENTS_PER_PAGE;
740
741 ev = kmap(page);
742 copy_ret = copy_to_user(event + ret, ev + pos,
743 sizeof(*ev) * avail);
744 kunmap(page);
745
746 if (unlikely(copy_ret)) {
747 ret = -EFAULT;
748 goto out;
749 }
750
751 ret += avail;
752 head += avail;
753 head %= info->nr;
1da177e4 754 }
1da177e4 755
a31ad380
KO
756 ring = kmap_atomic(info->ring_pages[0]);
757 ring->head = head;
91d80a84 758 kunmap_atomic(ring);
21b40200 759 flush_dcache_page(info->ring_pages[0]);
a31ad380
KO
760
761 pr_debug("%li h%u t%u\n", ret, head, info->tail);
3e845ce0
KO
762
763 atomic_sub(ret, &ctx->reqs_active);
a31ad380
KO
764out:
765 mutex_unlock(&info->ring_lock);
766
1da177e4
LT
767 return ret;
768}
769
a31ad380
KO
770static bool aio_read_events(struct kioctx *ctx, long min_nr, long nr,
771 struct io_event __user *event, long *i)
1da177e4 772{
a31ad380 773 long ret = aio_read_events_ring(ctx, event + *i, nr - *i);
1da177e4 774
a31ad380
KO
775 if (ret > 0)
776 *i += ret;
1da177e4 777
a31ad380
KO
778 if (unlikely(atomic_read(&ctx->dead)))
779 ret = -EINVAL;
1da177e4 780
a31ad380
KO
781 if (!*i)
782 *i = ret;
1da177e4 783
a31ad380 784 return ret < 0 || *i >= min_nr;
1da177e4
LT
785}
786
a31ad380 787static long read_events(struct kioctx *ctx, long min_nr, long nr,
1da177e4
LT
788 struct io_event __user *event,
789 struct timespec __user *timeout)
790{
a31ad380
KO
791 ktime_t until = { .tv64 = KTIME_MAX };
792 long ret = 0;
1da177e4 793
1da177e4
LT
794 if (timeout) {
795 struct timespec ts;
a31ad380 796
1da177e4 797 if (unlikely(copy_from_user(&ts, timeout, sizeof(ts))))
a31ad380 798 return -EFAULT;
1da177e4 799
a31ad380 800 until = timespec_to_ktime(ts);
1da177e4
LT
801 }
802
a31ad380
KO
803 /*
804 * Note that aio_read_events() is being called as the conditional - i.e.
805 * we're calling it after prepare_to_wait() has set task state to
806 * TASK_INTERRUPTIBLE.
807 *
808 * But aio_read_events() can block, and if it blocks it's going to flip
809 * the task state back to TASK_RUNNING.
810 *
811 * This should be ok, provided it doesn't flip the state back to
812 * TASK_RUNNING and return 0 too much - that causes us to spin. That
813 * will only happen if the mutex_lock() call blocks, and we then find
814 * the ringbuffer empty. So in practice we should be ok, but it's
815 * something to be aware of when touching this code.
816 */
817 wait_event_interruptible_hrtimeout(ctx->wait,
818 aio_read_events(ctx, min_nr, nr, event, &ret), until);
1da177e4 819
a31ad380
KO
820 if (!ret && signal_pending(current))
821 ret = -EINTR;
1da177e4 822
a31ad380 823 return ret;
1da177e4
LT
824}
825
1da177e4
LT
826/* sys_io_setup:
827 * Create an aio_context capable of receiving at least nr_events.
828 * ctxp must not point to an aio_context that already exists, and
829 * must be initialized to 0 prior to the call. On successful
830 * creation of the aio_context, *ctxp is filled in with the resulting
831 * handle. May fail with -EINVAL if *ctxp is not initialized,
832 * if the specified nr_events exceeds internal limits. May fail
833 * with -EAGAIN if the specified nr_events exceeds the user's limit
834 * of available events. May fail with -ENOMEM if insufficient kernel
835 * resources are available. May fail with -EFAULT if an invalid
836 * pointer is passed for ctxp. Will fail with -ENOSYS if not
837 * implemented.
838 */
002c8976 839SYSCALL_DEFINE2(io_setup, unsigned, nr_events, aio_context_t __user *, ctxp)
1da177e4
LT
840{
841 struct kioctx *ioctx = NULL;
842 unsigned long ctx;
843 long ret;
844
845 ret = get_user(ctx, ctxp);
846 if (unlikely(ret))
847 goto out;
848
849 ret = -EINVAL;
d55b5fda
ZB
850 if (unlikely(ctx || nr_events == 0)) {
851 pr_debug("EINVAL: io_setup: ctx %lu nr_events %u\n",
852 ctx, nr_events);
1da177e4
LT
853 goto out;
854 }
855
856 ioctx = ioctx_alloc(nr_events);
857 ret = PTR_ERR(ioctx);
858 if (!IS_ERR(ioctx)) {
859 ret = put_user(ioctx->user_id, ctxp);
a2e1859a 860 if (ret)
36f55889 861 kill_ioctx(ioctx);
a2e1859a 862 put_ioctx(ioctx);
1da177e4
LT
863 }
864
865out:
866 return ret;
867}
868
869/* sys_io_destroy:
870 * Destroy the aio_context specified. May cancel any outstanding
871 * AIOs and block on completion. Will fail with -ENOSYS if not
642b5123 872 * implemented. May fail with -EINVAL if the context pointed to
1da177e4
LT
873 * is invalid.
874 */
002c8976 875SYSCALL_DEFINE1(io_destroy, aio_context_t, ctx)
1da177e4
LT
876{
877 struct kioctx *ioctx = lookup_ioctx(ctx);
878 if (likely(NULL != ioctx)) {
36f55889 879 kill_ioctx(ioctx);
a2e1859a 880 put_ioctx(ioctx);
1da177e4
LT
881 return 0;
882 }
883 pr_debug("EINVAL: io_destroy: invalid context id\n");
884 return -EINVAL;
885}
886
eed4e51f 887static void aio_advance_iovec(struct kiocb *iocb, ssize_t ret)
1da177e4 888{
eed4e51f
BP
889 struct iovec *iov = &iocb->ki_iovec[iocb->ki_cur_seg];
890
891 BUG_ON(ret <= 0);
892
893 while (iocb->ki_cur_seg < iocb->ki_nr_segs && ret > 0) {
894 ssize_t this = min((ssize_t)iov->iov_len, ret);
895 iov->iov_base += this;
896 iov->iov_len -= this;
897 iocb->ki_left -= this;
898 ret -= this;
899 if (iov->iov_len == 0) {
900 iocb->ki_cur_seg++;
901 iov++;
897f15fb 902 }
eed4e51f 903 }
1da177e4 904
eed4e51f
BP
905 /* the caller should not have done more io than what fit in
906 * the remaining iovecs */
907 BUG_ON(ret > 0 && iocb->ki_left == 0);
1da177e4
LT
908}
909
eed4e51f 910static ssize_t aio_rw_vect_retry(struct kiocb *iocb)
1da177e4
LT
911{
912 struct file *file = iocb->ki_filp;
eed4e51f
BP
913 struct address_space *mapping = file->f_mapping;
914 struct inode *inode = mapping->host;
915 ssize_t (*rw_op)(struct kiocb *, const struct iovec *,
916 unsigned long, loff_t);
1da177e4 917 ssize_t ret = 0;
eed4e51f
BP
918 unsigned short opcode;
919
920 if ((iocb->ki_opcode == IOCB_CMD_PREADV) ||
921 (iocb->ki_opcode == IOCB_CMD_PREAD)) {
922 rw_op = file->f_op->aio_read;
923 opcode = IOCB_CMD_PREADV;
924 } else {
925 rw_op = file->f_op->aio_write;
926 opcode = IOCB_CMD_PWRITEV;
927 }
1da177e4 928
c2ec6682
RR
929 /* This matches the pread()/pwrite() logic */
930 if (iocb->ki_pos < 0)
931 return -EINVAL;
932
8d71db4f
AV
933 if (opcode == IOCB_CMD_PWRITEV)
934 file_start_write(file);
897f15fb 935 do {
eed4e51f
BP
936 ret = rw_op(iocb, &iocb->ki_iovec[iocb->ki_cur_seg],
937 iocb->ki_nr_segs - iocb->ki_cur_seg,
938 iocb->ki_pos);
939 if (ret > 0)
940 aio_advance_iovec(iocb, ret);
941
942 /* retry all partial writes. retry partial reads as long as its a
943 * regular file. */
944 } while (ret > 0 && iocb->ki_left > 0 &&
945 (opcode == IOCB_CMD_PWRITEV ||
946 (!S_ISFIFO(inode->i_mode) && !S_ISSOCK(inode->i_mode))));
8d71db4f
AV
947 if (opcode == IOCB_CMD_PWRITEV)
948 file_end_write(file);
1da177e4 949
eed4e51f
BP
950 /* This means we must have transferred all that we could */
951 /* No need to retry anymore */
1da177e4
LT
952 if ((ret == 0) || (iocb->ki_left == 0))
953 ret = iocb->ki_nbytes - iocb->ki_left;
954
7adfa2ff
RR
955 /* If we managed to write some out we return that, rather than
956 * the eventual error. */
957 if (opcode == IOCB_CMD_PWRITEV
41003a7b 958 && ret < 0 && ret != -EIOCBQUEUED
7adfa2ff
RR
959 && iocb->ki_nbytes - iocb->ki_left)
960 ret = iocb->ki_nbytes - iocb->ki_left;
961
1da177e4
LT
962 return ret;
963}
964
965static ssize_t aio_fdsync(struct kiocb *iocb)
966{
967 struct file *file = iocb->ki_filp;
968 ssize_t ret = -EINVAL;
969
970 if (file->f_op->aio_fsync)
971 ret = file->f_op->aio_fsync(iocb, 1);
972 return ret;
973}
974
975static ssize_t aio_fsync(struct kiocb *iocb)
976{
977 struct file *file = iocb->ki_filp;
978 ssize_t ret = -EINVAL;
979
980 if (file->f_op->aio_fsync)
981 ret = file->f_op->aio_fsync(iocb, 0);
982 return ret;
983}
984
9d85cba7 985static ssize_t aio_setup_vectored_rw(int type, struct kiocb *kiocb, bool compat)
eed4e51f
BP
986{
987 ssize_t ret;
988
9d85cba7
JM
989#ifdef CONFIG_COMPAT
990 if (compat)
991 ret = compat_rw_copy_check_uvector(type,
992 (struct compat_iovec __user *)kiocb->ki_buf,
993 kiocb->ki_nbytes, 1, &kiocb->ki_inline_vec,
ac34ebb3 994 &kiocb->ki_iovec);
9d85cba7
JM
995 else
996#endif
997 ret = rw_copy_check_uvector(type,
998 (struct iovec __user *)kiocb->ki_buf,
999 kiocb->ki_nbytes, 1, &kiocb->ki_inline_vec,
ac34ebb3 1000 &kiocb->ki_iovec);
eed4e51f
BP
1001 if (ret < 0)
1002 goto out;
1003
a70b52ec
LT
1004 ret = rw_verify_area(type, kiocb->ki_filp, &kiocb->ki_pos, ret);
1005 if (ret < 0)
1006 goto out;
1007
eed4e51f
BP
1008 kiocb->ki_nr_segs = kiocb->ki_nbytes;
1009 kiocb->ki_cur_seg = 0;
1010 /* ki_nbytes/left now reflect bytes instead of segs */
1011 kiocb->ki_nbytes = ret;
1012 kiocb->ki_left = ret;
1013
1014 ret = 0;
1015out:
1016 return ret;
1017}
1018
a70b52ec 1019static ssize_t aio_setup_single_vector(int type, struct file * file, struct kiocb *kiocb)
eed4e51f 1020{
a70b52ec
LT
1021 int bytes;
1022
1023 bytes = rw_verify_area(type, file, &kiocb->ki_pos, kiocb->ki_left);
1024 if (bytes < 0)
1025 return bytes;
1026
eed4e51f
BP
1027 kiocb->ki_iovec = &kiocb->ki_inline_vec;
1028 kiocb->ki_iovec->iov_base = kiocb->ki_buf;
a70b52ec 1029 kiocb->ki_iovec->iov_len = bytes;
eed4e51f
BP
1030 kiocb->ki_nr_segs = 1;
1031 kiocb->ki_cur_seg = 0;
eed4e51f
BP
1032 return 0;
1033}
1034
1da177e4
LT
1035/*
1036 * aio_setup_iocb:
1037 * Performs the initial checks and aio retry method
1038 * setup for the kiocb at the time of io submission.
1039 */
9d85cba7 1040static ssize_t aio_setup_iocb(struct kiocb *kiocb, bool compat)
1da177e4
LT
1041{
1042 struct file *file = kiocb->ki_filp;
1043 ssize_t ret = 0;
1044
1045 switch (kiocb->ki_opcode) {
1046 case IOCB_CMD_PREAD:
1047 ret = -EBADF;
1048 if (unlikely(!(file->f_mode & FMODE_READ)))
1049 break;
1050 ret = -EFAULT;
1051 if (unlikely(!access_ok(VERIFY_WRITE, kiocb->ki_buf,
1052 kiocb->ki_left)))
1053 break;
a70b52ec 1054 ret = aio_setup_single_vector(READ, file, kiocb);
eed4e51f
BP
1055 if (ret)
1056 break;
1da177e4
LT
1057 ret = -EINVAL;
1058 if (file->f_op->aio_read)
eed4e51f 1059 kiocb->ki_retry = aio_rw_vect_retry;
1da177e4
LT
1060 break;
1061 case IOCB_CMD_PWRITE:
1062 ret = -EBADF;
1063 if (unlikely(!(file->f_mode & FMODE_WRITE)))
1064 break;
1065 ret = -EFAULT;
1066 if (unlikely(!access_ok(VERIFY_READ, kiocb->ki_buf,
1067 kiocb->ki_left)))
1068 break;
a70b52ec 1069 ret = aio_setup_single_vector(WRITE, file, kiocb);
eed4e51f
BP
1070 if (ret)
1071 break;
1072 ret = -EINVAL;
1073 if (file->f_op->aio_write)
1074 kiocb->ki_retry = aio_rw_vect_retry;
1075 break;
1076 case IOCB_CMD_PREADV:
1077 ret = -EBADF;
1078 if (unlikely(!(file->f_mode & FMODE_READ)))
1079 break;
9d85cba7 1080 ret = aio_setup_vectored_rw(READ, kiocb, compat);
eed4e51f
BP
1081 if (ret)
1082 break;
1083 ret = -EINVAL;
1084 if (file->f_op->aio_read)
1085 kiocb->ki_retry = aio_rw_vect_retry;
1086 break;
1087 case IOCB_CMD_PWRITEV:
1088 ret = -EBADF;
1089 if (unlikely(!(file->f_mode & FMODE_WRITE)))
1090 break;
9d85cba7 1091 ret = aio_setup_vectored_rw(WRITE, kiocb, compat);
eed4e51f
BP
1092 if (ret)
1093 break;
1da177e4
LT
1094 ret = -EINVAL;
1095 if (file->f_op->aio_write)
eed4e51f 1096 kiocb->ki_retry = aio_rw_vect_retry;
1da177e4
LT
1097 break;
1098 case IOCB_CMD_FDSYNC:
1099 ret = -EINVAL;
1100 if (file->f_op->aio_fsync)
1101 kiocb->ki_retry = aio_fdsync;
1102 break;
1103 case IOCB_CMD_FSYNC:
1104 ret = -EINVAL;
1105 if (file->f_op->aio_fsync)
1106 kiocb->ki_retry = aio_fsync;
1107 break;
1108 default:
caf4167a 1109 pr_debug("EINVAL: no operation provided\n");
1da177e4
LT
1110 ret = -EINVAL;
1111 }
1112
1113 if (!kiocb->ki_retry)
1114 return ret;
1115
1116 return 0;
1117}
1118
d5470b59 1119static int io_submit_one(struct kioctx *ctx, struct iocb __user *user_iocb,
a1c8eae7 1120 struct iocb *iocb, bool compat)
1da177e4
LT
1121{
1122 struct kiocb *req;
1da177e4
LT
1123 ssize_t ret;
1124
1125 /* enforce forwards compatibility on users */
9c3060be 1126 if (unlikely(iocb->aio_reserved1 || iocb->aio_reserved2)) {
caf4167a 1127 pr_debug("EINVAL: reserve field set\n");
1da177e4
LT
1128 return -EINVAL;
1129 }
1130
1131 /* prevent overflows */
1132 if (unlikely(
1133 (iocb->aio_buf != (unsigned long)iocb->aio_buf) ||
1134 (iocb->aio_nbytes != (size_t)iocb->aio_nbytes) ||
1135 ((ssize_t)iocb->aio_nbytes < 0)
1136 )) {
1137 pr_debug("EINVAL: io_submit: overflow check\n");
1138 return -EINVAL;
1139 }
1140
a1c8eae7 1141 req = aio_get_req(ctx); /* returns with 2 references to req */
1d98ebfc 1142 if (unlikely(!req))
1da177e4 1143 return -EAGAIN;
1d98ebfc
KO
1144
1145 req->ki_filp = fget(iocb->aio_fildes);
1146 if (unlikely(!req->ki_filp)) {
1147 ret = -EBADF;
1148 goto out_put_req;
1da177e4 1149 }
1d98ebfc 1150
9c3060be
DL
1151 if (iocb->aio_flags & IOCB_FLAG_RESFD) {
1152 /*
1153 * If the IOCB_FLAG_RESFD flag of aio_flags is set, get an
1154 * instance of the file* now. The file descriptor must be
1155 * an eventfd() fd, and will be signaled for each completed
1156 * event using the eventfd_signal() function.
1157 */
13389010 1158 req->ki_eventfd = eventfd_ctx_fdget((int) iocb->aio_resfd);
801678c5 1159 if (IS_ERR(req->ki_eventfd)) {
9c3060be 1160 ret = PTR_ERR(req->ki_eventfd);
87c3a86e 1161 req->ki_eventfd = NULL;
9c3060be
DL
1162 goto out_put_req;
1163 }
1164 }
1da177e4 1165
212079cf 1166 ret = put_user(req->ki_key, &user_iocb->aio_key);
1da177e4 1167 if (unlikely(ret)) {
caf4167a 1168 pr_debug("EFAULT: aio_key\n");
1da177e4
LT
1169 goto out_put_req;
1170 }
1171
1172 req->ki_obj.user = user_iocb;
1173 req->ki_user_data = iocb->aio_data;
1174 req->ki_pos = iocb->aio_offset;
1175
1176 req->ki_buf = (char __user *)(unsigned long)iocb->aio_buf;
1177 req->ki_left = req->ki_nbytes = iocb->aio_nbytes;
1178 req->ki_opcode = iocb->aio_lio_opcode;
1da177e4 1179
9d85cba7 1180 ret = aio_setup_iocb(req, compat);
41003a7b 1181 if (ret)
7137c6bd 1182 goto out_put_req;
41003a7b 1183
0460fef2 1184 ret = req->ki_retry(req);
41003a7b
ZB
1185 if (ret != -EIOCBQUEUED) {
1186 /*
1187 * There's no easy way to restart the syscall since other AIO's
1188 * may be already running. Just fail this IO with EINTR.
1189 */
1190 if (unlikely(ret == -ERESTARTSYS || ret == -ERESTARTNOINTR ||
1191 ret == -ERESTARTNOHAND ||
1192 ret == -ERESTART_RESTARTBLOCK))
1193 ret = -EINTR;
1194 aio_complete(req, ret, 0);
7137c6bd 1195 }
cfb1e33e 1196
1da177e4
LT
1197 aio_put_req(req); /* drop extra ref to req */
1198 return 0;
1199
1200out_put_req:
11599eba 1201 atomic_dec(&ctx->reqs_active);
1da177e4
LT
1202 aio_put_req(req); /* drop extra ref to req */
1203 aio_put_req(req); /* drop i/o ref to req */
1204 return ret;
1205}
1206
9d85cba7
JM
1207long do_io_submit(aio_context_t ctx_id, long nr,
1208 struct iocb __user *__user *iocbpp, bool compat)
1da177e4
LT
1209{
1210 struct kioctx *ctx;
1211 long ret = 0;
080d676d 1212 int i = 0;
9f5b9425 1213 struct blk_plug plug;
1da177e4
LT
1214
1215 if (unlikely(nr < 0))
1216 return -EINVAL;
1217
75e1c70f
JM
1218 if (unlikely(nr > LONG_MAX/sizeof(*iocbpp)))
1219 nr = LONG_MAX/sizeof(*iocbpp);
1220
1da177e4
LT
1221 if (unlikely(!access_ok(VERIFY_READ, iocbpp, (nr*sizeof(*iocbpp)))))
1222 return -EFAULT;
1223
1224 ctx = lookup_ioctx(ctx_id);
1225 if (unlikely(!ctx)) {
caf4167a 1226 pr_debug("EINVAL: invalid context id\n");
1da177e4
LT
1227 return -EINVAL;
1228 }
1229
9f5b9425
SL
1230 blk_start_plug(&plug);
1231
1da177e4
LT
1232 /*
1233 * AKPM: should this return a partial result if some of the IOs were
1234 * successfully submitted?
1235 */
1236 for (i=0; i<nr; i++) {
1237 struct iocb __user *user_iocb;
1238 struct iocb tmp;
1239
1240 if (unlikely(__get_user(user_iocb, iocbpp + i))) {
1241 ret = -EFAULT;
1242 break;
1243 }
1244
1245 if (unlikely(copy_from_user(&tmp, user_iocb, sizeof(tmp)))) {
1246 ret = -EFAULT;
1247 break;
1248 }
1249
a1c8eae7 1250 ret = io_submit_one(ctx, user_iocb, &tmp, compat);
1da177e4
LT
1251 if (ret)
1252 break;
1253 }
9f5b9425 1254 blk_finish_plug(&plug);
1da177e4
LT
1255
1256 put_ioctx(ctx);
1257 return i ? i : ret;
1258}
1259
9d85cba7
JM
1260/* sys_io_submit:
1261 * Queue the nr iocbs pointed to by iocbpp for processing. Returns
1262 * the number of iocbs queued. May return -EINVAL if the aio_context
1263 * specified by ctx_id is invalid, if nr is < 0, if the iocb at
1264 * *iocbpp[0] is not properly initialized, if the operation specified
1265 * is invalid for the file descriptor in the iocb. May fail with
1266 * -EFAULT if any of the data structures point to invalid data. May
1267 * fail with -EBADF if the file descriptor specified in the first
1268 * iocb is invalid. May fail with -EAGAIN if insufficient resources
1269 * are available to queue any iocbs. Will return 0 if nr is 0. Will
1270 * fail with -ENOSYS if not implemented.
1271 */
1272SYSCALL_DEFINE3(io_submit, aio_context_t, ctx_id, long, nr,
1273 struct iocb __user * __user *, iocbpp)
1274{
1275 return do_io_submit(ctx_id, nr, iocbpp, 0);
1276}
1277
1da177e4
LT
1278/* lookup_kiocb
1279 * Finds a given iocb for cancellation.
1da177e4 1280 */
25ee7e38
AB
1281static struct kiocb *lookup_kiocb(struct kioctx *ctx, struct iocb __user *iocb,
1282 u32 key)
1da177e4
LT
1283{
1284 struct list_head *pos;
d00689af
ZB
1285
1286 assert_spin_locked(&ctx->ctx_lock);
1287
1da177e4
LT
1288 /* TODO: use a hash or array, this sucks. */
1289 list_for_each(pos, &ctx->active_reqs) {
1290 struct kiocb *kiocb = list_kiocb(pos);
1291 if (kiocb->ki_obj.user == iocb && kiocb->ki_key == key)
1292 return kiocb;
1293 }
1294 return NULL;
1295}
1296
1297/* sys_io_cancel:
1298 * Attempts to cancel an iocb previously passed to io_submit. If
1299 * the operation is successfully cancelled, the resulting event is
1300 * copied into the memory pointed to by result without being placed
1301 * into the completion queue and 0 is returned. May fail with
1302 * -EFAULT if any of the data structures pointed to are invalid.
1303 * May fail with -EINVAL if aio_context specified by ctx_id is
1304 * invalid. May fail with -EAGAIN if the iocb specified was not
1305 * cancelled. Will fail with -ENOSYS if not implemented.
1306 */
002c8976
HC
1307SYSCALL_DEFINE3(io_cancel, aio_context_t, ctx_id, struct iocb __user *, iocb,
1308 struct io_event __user *, result)
1da177e4 1309{
906b973c 1310 struct io_event res;
1da177e4
LT
1311 struct kioctx *ctx;
1312 struct kiocb *kiocb;
1313 u32 key;
1314 int ret;
1315
1316 ret = get_user(key, &iocb->aio_key);
1317 if (unlikely(ret))
1318 return -EFAULT;
1319
1320 ctx = lookup_ioctx(ctx_id);
1321 if (unlikely(!ctx))
1322 return -EINVAL;
1323
1324 spin_lock_irq(&ctx->ctx_lock);
906b973c 1325
1da177e4 1326 kiocb = lookup_kiocb(ctx, iocb, key);
906b973c
KO
1327 if (kiocb)
1328 ret = kiocb_cancel(ctx, kiocb, &res);
1329 else
1330 ret = -EINVAL;
1331
1da177e4
LT
1332 spin_unlock_irq(&ctx->ctx_lock);
1333
906b973c
KO
1334 if (!ret) {
1335 /* Cancellation succeeded -- copy the result
1336 * into the user's buffer.
1337 */
1338 if (copy_to_user(result, &res, sizeof(res)))
1339 ret = -EFAULT;
1340 }
1da177e4
LT
1341
1342 put_ioctx(ctx);
1343
1344 return ret;
1345}
1346
1347/* io_getevents:
1348 * Attempts to read at least min_nr events and up to nr events from
642b5123
ST
1349 * the completion queue for the aio_context specified by ctx_id. If
1350 * it succeeds, the number of read events is returned. May fail with
1351 * -EINVAL if ctx_id is invalid, if min_nr is out of range, if nr is
1352 * out of range, if timeout is out of range. May fail with -EFAULT
1353 * if any of the memory specified is invalid. May return 0 or
1354 * < min_nr if the timeout specified by timeout has elapsed
1355 * before sufficient events are available, where timeout == NULL
1356 * specifies an infinite timeout. Note that the timeout pointed to by
1357 * timeout is relative and will be updated if not NULL and the
1358 * operation blocks. Will fail with -ENOSYS if not implemented.
1da177e4 1359 */
002c8976
HC
1360SYSCALL_DEFINE5(io_getevents, aio_context_t, ctx_id,
1361 long, min_nr,
1362 long, nr,
1363 struct io_event __user *, events,
1364 struct timespec __user *, timeout)
1da177e4
LT
1365{
1366 struct kioctx *ioctx = lookup_ioctx(ctx_id);
1367 long ret = -EINVAL;
1368
1369 if (likely(ioctx)) {
2e410255 1370 if (likely(min_nr <= nr && min_nr >= 0))
1da177e4
LT
1371 ret = read_events(ioctx, min_nr, nr, events, timeout);
1372 put_ioctx(ioctx);
1373 }
1da177e4
LT
1374 return ret;
1375}