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