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