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