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