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