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