]> git.ipfire.org Git - people/arne_f/kernel.git/blame - fs/aio.c
aio: fix rcu sparse warnings introduced by ioctx table lookup patch
[people/arne_f/kernel.git] / fs / aio.c
CommitLineData
1da177e4
LT
1/*
2 * An async IO implementation for Linux
3 * Written by Benjamin LaHaise <bcrl@kvack.org>
4 *
5 * Implements an efficient asynchronous io interface.
6 *
7 * Copyright 2000, 2001, 2002 Red Hat, Inc. All Rights Reserved.
8 *
9 * See ../COPYING for licensing terms.
10 */
caf4167a
KO
11#define pr_fmt(fmt) "%s: " fmt, __func__
12
1da177e4
LT
13#include <linux/kernel.h>
14#include <linux/init.h>
15#include <linux/errno.h>
16#include <linux/time.h>
17#include <linux/aio_abi.h>
630d9c47 18#include <linux/export.h>
1da177e4 19#include <linux/syscalls.h>
b9d128f1 20#include <linux/backing-dev.h>
027445c3 21#include <linux/uio.h>
1da177e4 22
1da177e4
LT
23#include <linux/sched.h>
24#include <linux/fs.h>
25#include <linux/file.h>
26#include <linux/mm.h>
27#include <linux/mman.h>
3d2d827f 28#include <linux/mmu_context.h>
e1bdd5f2 29#include <linux/percpu.h>
1da177e4
LT
30#include <linux/slab.h>
31#include <linux/timer.h>
32#include <linux/aio.h>
33#include <linux/highmem.h>
34#include <linux/workqueue.h>
35#include <linux/security.h>
9c3060be 36#include <linux/eventfd.h>
cfb1e33e 37#include <linux/blkdev.h>
9d85cba7 38#include <linux/compat.h>
36bc08cc
GZ
39#include <linux/anon_inodes.h>
40#include <linux/migrate.h>
41#include <linux/ramfs.h>
723be6e3 42#include <linux/percpu-refcount.h>
1da177e4
LT
43
44#include <asm/kmap_types.h>
45#include <asm/uaccess.h>
1da177e4 46
68d70d03
AV
47#include "internal.h"
48
4e179bca
KO
49#define AIO_RING_MAGIC 0xa10a10a1
50#define AIO_RING_COMPAT_FEATURES 1
51#define AIO_RING_INCOMPAT_FEATURES 0
52struct aio_ring {
53 unsigned id; /* kernel internal index number */
54 unsigned nr; /* number of io_events */
55 unsigned head;
56 unsigned tail;
57
58 unsigned magic;
59 unsigned compat_features;
60 unsigned incompat_features;
61 unsigned header_length; /* size of aio_ring */
62
63
64 struct io_event io_events[0];
65}; /* 128 bytes + ring size */
66
67#define AIO_RING_PAGES 8
4e179bca 68
db446a08
BL
69struct kioctx_table {
70 struct rcu_head rcu;
71 unsigned nr;
72 struct kioctx *table[];
73};
74
e1bdd5f2
KO
75struct kioctx_cpu {
76 unsigned reqs_available;
77};
78
4e179bca 79struct kioctx {
723be6e3 80 struct percpu_ref users;
36f55889 81 atomic_t dead;
4e179bca 82
4e179bca 83 unsigned long user_id;
4e179bca 84
e1bdd5f2
KO
85 struct __percpu kioctx_cpu *cpu;
86
87 /*
88 * For percpu reqs_available, number of slots we move to/from global
89 * counter at a time:
90 */
91 unsigned req_batch;
3e845ce0
KO
92 /*
93 * This is what userspace passed to io_setup(), it's not used for
94 * anything but counting against the global max_reqs quota.
95 *
58c85dc2 96 * The real limit is nr_events - 1, which will be larger (see
3e845ce0
KO
97 * aio_setup_ring())
98 */
4e179bca
KO
99 unsigned max_reqs;
100
58c85dc2
KO
101 /* Size of ringbuffer, in units of struct io_event */
102 unsigned nr_events;
4e179bca 103
58c85dc2
KO
104 unsigned long mmap_base;
105 unsigned long mmap_size;
106
107 struct page **ring_pages;
108 long nr_pages;
109
4e23bcae 110 struct rcu_head rcu_head;
723be6e3 111 struct work_struct free_work;
4e23bcae
KO
112
113 struct {
34e83fc6
KO
114 /*
115 * This counts the number of available slots in the ringbuffer,
116 * so we avoid overflowing it: it's decremented (if positive)
117 * when allocating a kiocb and incremented when the resulting
118 * io_event is pulled off the ringbuffer.
e1bdd5f2
KO
119 *
120 * We batch accesses to it with a percpu version.
34e83fc6
KO
121 */
122 atomic_t reqs_available;
4e23bcae
KO
123 } ____cacheline_aligned_in_smp;
124
125 struct {
126 spinlock_t ctx_lock;
127 struct list_head active_reqs; /* used for cancellation */
128 } ____cacheline_aligned_in_smp;
129
58c85dc2
KO
130 struct {
131 struct mutex ring_lock;
4e23bcae
KO
132 wait_queue_head_t wait;
133 } ____cacheline_aligned_in_smp;
58c85dc2
KO
134
135 struct {
136 unsigned tail;
137 spinlock_t completion_lock;
4e23bcae 138 } ____cacheline_aligned_in_smp;
58c85dc2
KO
139
140 struct page *internal_pages[AIO_RING_PAGES];
36bc08cc 141 struct file *aio_ring_file;
db446a08
BL
142
143 unsigned id;
4e179bca
KO
144};
145
1da177e4 146/*------ sysctl variables----*/
d55b5fda
ZB
147static DEFINE_SPINLOCK(aio_nr_lock);
148unsigned long aio_nr; /* current system wide number of aio requests */
149unsigned long aio_max_nr = 0x10000; /* system wide maximum number of aio requests */
1da177e4
LT
150/*----end sysctl variables---*/
151
e18b890b
CL
152static struct kmem_cache *kiocb_cachep;
153static struct kmem_cache *kioctx_cachep;
1da177e4 154
1da177e4
LT
155/* aio_setup
156 * Creates the slab caches used by the aio routines, panic on
157 * failure as this is done early during the boot sequence.
158 */
159static int __init aio_setup(void)
160{
0a31bd5f
CL
161 kiocb_cachep = KMEM_CACHE(kiocb, SLAB_HWCACHE_ALIGN|SLAB_PANIC);
162 kioctx_cachep = KMEM_CACHE(kioctx,SLAB_HWCACHE_ALIGN|SLAB_PANIC);
1da177e4 163
caf4167a 164 pr_debug("sizeof(struct page) = %zu\n", sizeof(struct page));
1da177e4
LT
165
166 return 0;
167}
385773e0 168__initcall(aio_setup);
1da177e4
LT
169
170static void aio_free_ring(struct kioctx *ctx)
171{
36bc08cc
GZ
172 int i;
173 struct file *aio_ring_file = ctx->aio_ring_file;
1da177e4 174
36bc08cc
GZ
175 for (i = 0; i < ctx->nr_pages; i++) {
176 pr_debug("pid(%d) [%d] page->count=%d\n", current->pid, i,
177 page_count(ctx->ring_pages[i]));
58c85dc2 178 put_page(ctx->ring_pages[i]);
36bc08cc 179 }
1da177e4 180
58c85dc2
KO
181 if (ctx->ring_pages && ctx->ring_pages != ctx->internal_pages)
182 kfree(ctx->ring_pages);
36bc08cc
GZ
183
184 if (aio_ring_file) {
185 truncate_setsize(aio_ring_file->f_inode, 0);
36bc08cc
GZ
186 fput(aio_ring_file);
187 ctx->aio_ring_file = NULL;
188 }
189}
190
191static int aio_ring_mmap(struct file *file, struct vm_area_struct *vma)
192{
193 vma->vm_ops = &generic_file_vm_ops;
194 return 0;
195}
196
197static const struct file_operations aio_ring_fops = {
198 .mmap = aio_ring_mmap,
199};
200
201static int aio_set_page_dirty(struct page *page)
202{
203 return 0;
204}
205
0c45355f 206#if IS_ENABLED(CONFIG_MIGRATION)
36bc08cc
GZ
207static int aio_migratepage(struct address_space *mapping, struct page *new,
208 struct page *old, enum migrate_mode mode)
209{
210 struct kioctx *ctx = mapping->private_data;
211 unsigned long flags;
212 unsigned idx = old->index;
213 int rc;
214
215 /* Writeback must be complete */
216 BUG_ON(PageWriteback(old));
217 put_page(old);
218
219 rc = migrate_page_move_mapping(mapping, new, old, NULL, mode);
220 if (rc != MIGRATEPAGE_SUCCESS) {
221 get_page(old);
222 return rc;
223 }
224
225 get_page(new);
226
227 spin_lock_irqsave(&ctx->completion_lock, flags);
228 migrate_page_copy(new, old);
229 ctx->ring_pages[idx] = new;
230 spin_unlock_irqrestore(&ctx->completion_lock, flags);
231
232 return rc;
1da177e4 233}
0c45355f 234#endif
1da177e4 235
36bc08cc
GZ
236static const struct address_space_operations aio_ctx_aops = {
237 .set_page_dirty = aio_set_page_dirty,
0c45355f 238#if IS_ENABLED(CONFIG_MIGRATION)
36bc08cc 239 .migratepage = aio_migratepage,
0c45355f 240#endif
36bc08cc
GZ
241};
242
1da177e4
LT
243static int aio_setup_ring(struct kioctx *ctx)
244{
245 struct aio_ring *ring;
1da177e4 246 unsigned nr_events = ctx->max_reqs;
41003a7b 247 struct mm_struct *mm = current->mm;
41badc15 248 unsigned long size, populate;
1da177e4 249 int nr_pages;
36bc08cc
GZ
250 int i;
251 struct file *file;
1da177e4
LT
252
253 /* Compensate for the ring buffer's head/tail overlap entry */
254 nr_events += 2; /* 1 is required, 2 for good luck */
255
256 size = sizeof(struct aio_ring);
257 size += sizeof(struct io_event) * nr_events;
1da177e4 258
36bc08cc 259 nr_pages = PFN_UP(size);
1da177e4
LT
260 if (nr_pages < 0)
261 return -EINVAL;
262
36bc08cc
GZ
263 file = anon_inode_getfile_private("[aio]", &aio_ring_fops, ctx, O_RDWR);
264 if (IS_ERR(file)) {
265 ctx->aio_ring_file = NULL;
266 return -EAGAIN;
267 }
268
269 file->f_inode->i_mapping->a_ops = &aio_ctx_aops;
270 file->f_inode->i_mapping->private_data = ctx;
271 file->f_inode->i_size = PAGE_SIZE * (loff_t)nr_pages;
272
273 for (i = 0; i < nr_pages; i++) {
274 struct page *page;
275 page = find_or_create_page(file->f_inode->i_mapping,
276 i, GFP_HIGHUSER | __GFP_ZERO);
277 if (!page)
278 break;
279 pr_debug("pid(%d) page[%d]->count=%d\n",
280 current->pid, i, page_count(page));
281 SetPageUptodate(page);
282 SetPageDirty(page);
283 unlock_page(page);
284 }
285 ctx->aio_ring_file = file;
286 nr_events = (PAGE_SIZE * nr_pages - sizeof(struct aio_ring))
287 / sizeof(struct io_event);
1da177e4 288
58c85dc2 289 ctx->ring_pages = ctx->internal_pages;
1da177e4 290 if (nr_pages > AIO_RING_PAGES) {
58c85dc2
KO
291 ctx->ring_pages = kcalloc(nr_pages, sizeof(struct page *),
292 GFP_KERNEL);
293 if (!ctx->ring_pages)
1da177e4 294 return -ENOMEM;
1da177e4
LT
295 }
296
58c85dc2
KO
297 ctx->mmap_size = nr_pages * PAGE_SIZE;
298 pr_debug("attempting mmap of %lu bytes\n", ctx->mmap_size);
36bc08cc 299
41003a7b 300 down_write(&mm->mmap_sem);
36bc08cc
GZ
301 ctx->mmap_base = do_mmap_pgoff(ctx->aio_ring_file, 0, ctx->mmap_size,
302 PROT_READ | PROT_WRITE,
303 MAP_SHARED | MAP_POPULATE, 0, &populate);
58c85dc2 304 if (IS_ERR((void *)ctx->mmap_base)) {
41003a7b 305 up_write(&mm->mmap_sem);
58c85dc2 306 ctx->mmap_size = 0;
1da177e4
LT
307 aio_free_ring(ctx);
308 return -EAGAIN;
309 }
36bc08cc
GZ
310 up_write(&mm->mmap_sem);
311
312 mm_populate(ctx->mmap_base, populate);
1da177e4 313
58c85dc2
KO
314 pr_debug("mmap address: 0x%08lx\n", ctx->mmap_base);
315 ctx->nr_pages = get_user_pages(current, mm, ctx->mmap_base, nr_pages,
316 1, 0, ctx->ring_pages, NULL);
36bc08cc
GZ
317 for (i = 0; i < ctx->nr_pages; i++)
318 put_page(ctx->ring_pages[i]);
1da177e4 319
58c85dc2 320 if (unlikely(ctx->nr_pages != nr_pages)) {
1da177e4
LT
321 aio_free_ring(ctx);
322 return -EAGAIN;
323 }
324
58c85dc2
KO
325 ctx->user_id = ctx->mmap_base;
326 ctx->nr_events = nr_events; /* trusted copy */
1da177e4 327
58c85dc2 328 ring = kmap_atomic(ctx->ring_pages[0]);
1da177e4 329 ring->nr = nr_events; /* user copy */
db446a08 330 ring->id = ~0U;
1da177e4
LT
331 ring->head = ring->tail = 0;
332 ring->magic = AIO_RING_MAGIC;
333 ring->compat_features = AIO_RING_COMPAT_FEATURES;
334 ring->incompat_features = AIO_RING_INCOMPAT_FEATURES;
335 ring->header_length = sizeof(struct aio_ring);
e8e3c3d6 336 kunmap_atomic(ring);
58c85dc2 337 flush_dcache_page(ctx->ring_pages[0]);
1da177e4
LT
338
339 return 0;
340}
341
1da177e4
LT
342#define AIO_EVENTS_PER_PAGE (PAGE_SIZE / sizeof(struct io_event))
343#define AIO_EVENTS_FIRST_PAGE ((PAGE_SIZE - sizeof(struct aio_ring)) / sizeof(struct io_event))
344#define AIO_EVENTS_OFFSET (AIO_EVENTS_PER_PAGE - AIO_EVENTS_FIRST_PAGE)
345
0460fef2
KO
346void kiocb_set_cancel_fn(struct kiocb *req, kiocb_cancel_fn *cancel)
347{
348 struct kioctx *ctx = req->ki_ctx;
349 unsigned long flags;
350
351 spin_lock_irqsave(&ctx->ctx_lock, flags);
352
353 if (!req->ki_list.next)
354 list_add(&req->ki_list, &ctx->active_reqs);
355
356 req->ki_cancel = cancel;
357
358 spin_unlock_irqrestore(&ctx->ctx_lock, flags);
359}
360EXPORT_SYMBOL(kiocb_set_cancel_fn);
361
bec68faa 362static int kiocb_cancel(struct kioctx *ctx, struct kiocb *kiocb)
906b973c 363{
0460fef2 364 kiocb_cancel_fn *old, *cancel;
906b973c 365
0460fef2
KO
366 /*
367 * Don't want to set kiocb->ki_cancel = KIOCB_CANCELLED unless it
368 * actually has a cancel function, hence the cmpxchg()
369 */
370
371 cancel = ACCESS_ONCE(kiocb->ki_cancel);
372 do {
373 if (!cancel || cancel == KIOCB_CANCELLED)
57282d8f 374 return -EINVAL;
906b973c 375
0460fef2
KO
376 old = cancel;
377 cancel = cmpxchg(&kiocb->ki_cancel, old, KIOCB_CANCELLED);
378 } while (cancel != old);
906b973c 379
57282d8f 380 return cancel(kiocb);
906b973c
KO
381}
382
36f55889
KO
383static void free_ioctx_rcu(struct rcu_head *head)
384{
385 struct kioctx *ctx = container_of(head, struct kioctx, rcu_head);
e1bdd5f2
KO
386
387 free_percpu(ctx->cpu);
36f55889
KO
388 kmem_cache_free(kioctx_cachep, ctx);
389}
390
391/*
392 * When this function runs, the kioctx has been removed from the "hash table"
393 * and ctx->users has dropped to 0, so we know no more kiocbs can be submitted -
394 * now it's safe to cancel any that need to be.
395 */
723be6e3 396static void free_ioctx(struct work_struct *work)
36f55889 397{
723be6e3 398 struct kioctx *ctx = container_of(work, struct kioctx, free_work);
3e845ce0 399 struct aio_ring *ring;
36f55889 400 struct kiocb *req;
5ffac122
KO
401 unsigned cpu, avail;
402 DEFINE_WAIT(wait);
36f55889
KO
403
404 spin_lock_irq(&ctx->ctx_lock);
405
406 while (!list_empty(&ctx->active_reqs)) {
407 req = list_first_entry(&ctx->active_reqs,
408 struct kiocb, ki_list);
409
410 list_del_init(&req->ki_list);
bec68faa 411 kiocb_cancel(ctx, req);
36f55889
KO
412 }
413
414 spin_unlock_irq(&ctx->ctx_lock);
415
e1bdd5f2
KO
416 for_each_possible_cpu(cpu) {
417 struct kioctx_cpu *kcpu = per_cpu_ptr(ctx->cpu, cpu);
418
419 atomic_add(kcpu->reqs_available, &ctx->reqs_available);
420 kcpu->reqs_available = 0;
421 }
422
5ffac122
KO
423 while (1) {
424 prepare_to_wait(&ctx->wait, &wait, TASK_UNINTERRUPTIBLE);
3e845ce0 425
5ffac122
KO
426 ring = kmap_atomic(ctx->ring_pages[0]);
427 avail = (ring->head <= ring->tail)
428 ? ring->tail - ring->head
429 : ctx->nr_events - ring->head + ring->tail;
3e845ce0 430
34e83fc6 431 atomic_add(avail, &ctx->reqs_available);
5ffac122
KO
432 ring->head = ring->tail;
433 kunmap_atomic(ring);
434
435 if (atomic_read(&ctx->reqs_available) >= ctx->nr_events - 1)
436 break;
437
438 schedule();
3e845ce0 439 }
5ffac122 440 finish_wait(&ctx->wait, &wait);
3e845ce0 441
34e83fc6 442 WARN_ON(atomic_read(&ctx->reqs_available) > ctx->nr_events - 1);
36f55889
KO
443
444 aio_free_ring(ctx);
445
36f55889
KO
446 pr_debug("freeing %p\n", ctx);
447
448 /*
449 * Here the call_rcu() is between the wait_event() for reqs_active to
450 * hit 0, and freeing the ioctx.
451 *
452 * aio_complete() decrements reqs_active, but it has to touch the ioctx
453 * after to issue a wakeup so we use rcu.
454 */
455 call_rcu(&ctx->rcu_head, free_ioctx_rcu);
456}
457
723be6e3 458static void free_ioctx_ref(struct percpu_ref *ref)
36f55889 459{
723be6e3
KO
460 struct kioctx *ctx = container_of(ref, struct kioctx, users);
461
462 INIT_WORK(&ctx->free_work, free_ioctx);
463 schedule_work(&ctx->free_work);
36f55889
KO
464}
465
db446a08
BL
466static int ioctx_add_table(struct kioctx *ctx, struct mm_struct *mm)
467{
468 unsigned i, new_nr;
469 struct kioctx_table *table, *old;
470 struct aio_ring *ring;
471
472 spin_lock(&mm->ioctx_lock);
77d30b14 473 table = rcu_dereference(mm->ioctx_table);
db446a08
BL
474
475 while (1) {
476 if (table)
477 for (i = 0; i < table->nr; i++)
478 if (!table->table[i]) {
479 ctx->id = i;
480 table->table[i] = ctx;
481 spin_unlock(&mm->ioctx_lock);
482
483 ring = kmap_atomic(ctx->ring_pages[0]);
484 ring->id = ctx->id;
485 kunmap_atomic(ring);
486 return 0;
487 }
488
489 new_nr = (table ? table->nr : 1) * 4;
490
491 spin_unlock(&mm->ioctx_lock);
492
493 table = kzalloc(sizeof(*table) + sizeof(struct kioctx *) *
494 new_nr, GFP_KERNEL);
495 if (!table)
496 return -ENOMEM;
497
498 table->nr = new_nr;
499
500 spin_lock(&mm->ioctx_lock);
77d30b14 501 old = rcu_dereference(mm->ioctx_table);
db446a08
BL
502
503 if (!old) {
504 rcu_assign_pointer(mm->ioctx_table, table);
505 } else if (table->nr > old->nr) {
506 memcpy(table->table, old->table,
507 old->nr * sizeof(struct kioctx *));
508
509 rcu_assign_pointer(mm->ioctx_table, table);
510 kfree_rcu(old, rcu);
511 } else {
512 kfree(table);
513 table = old;
514 }
515 }
516}
517
1da177e4
LT
518/* ioctx_alloc
519 * Allocates and initializes an ioctx. Returns an ERR_PTR if it failed.
520 */
521static struct kioctx *ioctx_alloc(unsigned nr_events)
522{
41003a7b 523 struct mm_struct *mm = current->mm;
1da177e4 524 struct kioctx *ctx;
e23754f8 525 int err = -ENOMEM;
1da177e4 526
e1bdd5f2
KO
527 /*
528 * We keep track of the number of available ringbuffer slots, to prevent
529 * overflow (reqs_available), and we also use percpu counters for this.
530 *
531 * So since up to half the slots might be on other cpu's percpu counters
532 * and unavailable, double nr_events so userspace sees what they
533 * expected: additionally, we move req_batch slots to/from percpu
534 * counters at a time, so make sure that isn't 0:
535 */
536 nr_events = max(nr_events, num_possible_cpus() * 4);
537 nr_events *= 2;
538
1da177e4
LT
539 /* Prevent overflows */
540 if ((nr_events > (0x10000000U / sizeof(struct io_event))) ||
541 (nr_events > (0x10000000U / sizeof(struct kiocb)))) {
542 pr_debug("ENOMEM: nr_events too high\n");
543 return ERR_PTR(-EINVAL);
544 }
545
4cd81c3d 546 if (!nr_events || (unsigned long)nr_events > (aio_max_nr * 2UL))
1da177e4
LT
547 return ERR_PTR(-EAGAIN);
548
c3762229 549 ctx = kmem_cache_zalloc(kioctx_cachep, GFP_KERNEL);
1da177e4
LT
550 if (!ctx)
551 return ERR_PTR(-ENOMEM);
552
1da177e4 553 ctx->max_reqs = nr_events;
1da177e4 554
723be6e3
KO
555 if (percpu_ref_init(&ctx->users, free_ioctx_ref))
556 goto out_freectx;
557
1da177e4 558 spin_lock_init(&ctx->ctx_lock);
0460fef2 559 spin_lock_init(&ctx->completion_lock);
58c85dc2 560 mutex_init(&ctx->ring_lock);
1da177e4
LT
561 init_waitqueue_head(&ctx->wait);
562
563 INIT_LIST_HEAD(&ctx->active_reqs);
1da177e4 564
e1bdd5f2
KO
565 ctx->cpu = alloc_percpu(struct kioctx_cpu);
566 if (!ctx->cpu)
723be6e3 567 goto out_freeref;
1da177e4 568
e1bdd5f2
KO
569 if (aio_setup_ring(ctx) < 0)
570 goto out_freepcpu;
571
34e83fc6 572 atomic_set(&ctx->reqs_available, ctx->nr_events - 1);
e1bdd5f2 573 ctx->req_batch = (ctx->nr_events - 1) / (num_possible_cpus() * 4);
6878ea72
BL
574 if (ctx->req_batch < 1)
575 ctx->req_batch = 1;
34e83fc6 576
1da177e4 577 /* limit the number of system wide aios */
9fa1cb39 578 spin_lock(&aio_nr_lock);
4cd81c3d 579 if (aio_nr + nr_events > (aio_max_nr * 2UL) ||
2dd542b7 580 aio_nr + nr_events < aio_nr) {
9fa1cb39 581 spin_unlock(&aio_nr_lock);
1da177e4 582 goto out_cleanup;
2dd542b7
AV
583 }
584 aio_nr += ctx->max_reqs;
9fa1cb39 585 spin_unlock(&aio_nr_lock);
1da177e4 586
723be6e3
KO
587 percpu_ref_get(&ctx->users); /* io_setup() will drop this ref */
588
da90382c
BL
589 err = ioctx_add_table(ctx, mm);
590 if (err)
591 goto out_cleanup_put;
592
caf4167a 593 pr_debug("allocated ioctx %p[%ld]: mm=%p mask=0x%x\n",
58c85dc2 594 ctx, ctx->user_id, mm, ctx->nr_events);
1da177e4
LT
595 return ctx;
596
da90382c
BL
597out_cleanup_put:
598 percpu_ref_put(&ctx->users);
1da177e4 599out_cleanup:
e23754f8
AV
600 err = -EAGAIN;
601 aio_free_ring(ctx);
e1bdd5f2
KO
602out_freepcpu:
603 free_percpu(ctx->cpu);
723be6e3
KO
604out_freeref:
605 free_percpu(ctx->users.pcpu_count);
1da177e4 606out_freectx:
36bc08cc
GZ
607 if (ctx->aio_ring_file)
608 fput(ctx->aio_ring_file);
1da177e4 609 kmem_cache_free(kioctx_cachep, ctx);
caf4167a 610 pr_debug("error allocating ioctx %d\n", err);
e23754f8 611 return ERR_PTR(err);
1da177e4
LT
612}
613
36f55889
KO
614/* kill_ioctx
615 * Cancels all outstanding aio requests on an aio context. Used
616 * when the processes owning a context have all exited to encourage
617 * the rapid destruction of the kioctx.
618 */
db446a08 619static void kill_ioctx(struct mm_struct *mm, struct kioctx *ctx)
36f55889
KO
620{
621 if (!atomic_xchg(&ctx->dead, 1)) {
db446a08
BL
622 struct kioctx_table *table;
623
624 spin_lock(&mm->ioctx_lock);
77d30b14 625 table = rcu_dereference(mm->ioctx_table);
db446a08
BL
626
627 WARN_ON(ctx != table->table[ctx->id]);
628 table->table[ctx->id] = NULL;
629 spin_unlock(&mm->ioctx_lock);
630
723be6e3
KO
631 /* percpu_ref_kill() will do the necessary call_rcu() */
632 wake_up_all(&ctx->wait);
dee11c23 633
36f55889 634 /*
4fcc712f
KO
635 * It'd be more correct to do this in free_ioctx(), after all
636 * the outstanding kiocbs have finished - but by then io_destroy
637 * has already returned, so io_setup() could potentially return
638 * -EAGAIN with no ioctxs actually in use (as far as userspace
639 * could tell).
36f55889 640 */
4fcc712f
KO
641 spin_lock(&aio_nr_lock);
642 BUG_ON(aio_nr - ctx->max_reqs > aio_nr);
643 aio_nr -= ctx->max_reqs;
644 spin_unlock(&aio_nr_lock);
645
646 if (ctx->mmap_size)
647 vm_munmap(ctx->mmap_base, ctx->mmap_size);
648
723be6e3 649 percpu_ref_kill(&ctx->users);
36f55889 650 }
1da177e4
LT
651}
652
653/* wait_on_sync_kiocb:
654 * Waits on the given sync kiocb to complete.
655 */
57282d8f 656ssize_t wait_on_sync_kiocb(struct kiocb *req)
1da177e4 657{
57282d8f 658 while (!req->ki_ctx) {
1da177e4 659 set_current_state(TASK_UNINTERRUPTIBLE);
57282d8f 660 if (req->ki_ctx)
1da177e4 661 break;
41d10da3 662 io_schedule();
1da177e4
LT
663 }
664 __set_current_state(TASK_RUNNING);
57282d8f 665 return req->ki_user_data;
1da177e4 666}
385773e0 667EXPORT_SYMBOL(wait_on_sync_kiocb);
1da177e4 668
36f55889
KO
669/*
670 * exit_aio: called when the last user of mm goes away. At this point, there is
671 * no way for any new requests to be submited or any of the io_* syscalls to be
672 * called on the context.
673 *
674 * There may be outstanding kiocbs, but free_ioctx() will explicitly wait on
675 * them.
1da177e4 676 */
fc9b52cd 677void exit_aio(struct mm_struct *mm)
1da177e4 678{
db446a08 679 struct kioctx_table *table;
abf137dd 680 struct kioctx *ctx;
db446a08
BL
681 unsigned i = 0;
682
683 while (1) {
684 rcu_read_lock();
685 table = rcu_dereference(mm->ioctx_table);
686
687 do {
688 if (!table || i >= table->nr) {
689 rcu_read_unlock();
690 rcu_assign_pointer(mm->ioctx_table, NULL);
691 if (table)
692 kfree(table);
693 return;
694 }
695
696 ctx = table->table[i++];
697 } while (!ctx);
698
699 rcu_read_unlock();
abf137dd 700
936af157
AV
701 /*
702 * We don't need to bother with munmap() here -
703 * exit_mmap(mm) is coming and it'll unmap everything.
704 * Since aio_free_ring() uses non-zero ->mmap_size
705 * as indicator that it needs to unmap the area,
706 * just set it to 0; aio_free_ring() is the only
707 * place that uses ->mmap_size, so it's safe.
936af157 708 */
58c85dc2 709 ctx->mmap_size = 0;
36f55889 710
db446a08 711 kill_ioctx(mm, ctx);
1da177e4
LT
712 }
713}
714
e1bdd5f2
KO
715static void put_reqs_available(struct kioctx *ctx, unsigned nr)
716{
717 struct kioctx_cpu *kcpu;
718
719 preempt_disable();
720 kcpu = this_cpu_ptr(ctx->cpu);
721
722 kcpu->reqs_available += nr;
723 while (kcpu->reqs_available >= ctx->req_batch * 2) {
724 kcpu->reqs_available -= ctx->req_batch;
725 atomic_add(ctx->req_batch, &ctx->reqs_available);
726 }
727
728 preempt_enable();
729}
730
731static bool get_reqs_available(struct kioctx *ctx)
732{
733 struct kioctx_cpu *kcpu;
734 bool ret = false;
735
736 preempt_disable();
737 kcpu = this_cpu_ptr(ctx->cpu);
738
739 if (!kcpu->reqs_available) {
740 int old, avail = atomic_read(&ctx->reqs_available);
741
742 do {
743 if (avail < ctx->req_batch)
744 goto out;
745
746 old = avail;
747 avail = atomic_cmpxchg(&ctx->reqs_available,
748 avail, avail - ctx->req_batch);
749 } while (avail != old);
750
751 kcpu->reqs_available += ctx->req_batch;
752 }
753
754 ret = true;
755 kcpu->reqs_available--;
756out:
757 preempt_enable();
758 return ret;
759}
760
1da177e4 761/* aio_get_req
57282d8f
KO
762 * Allocate a slot for an aio request.
763 * Returns NULL if no requests are free.
1da177e4 764 */
a1c8eae7 765static inline struct kiocb *aio_get_req(struct kioctx *ctx)
1da177e4 766{
a1c8eae7
KO
767 struct kiocb *req;
768
e1bdd5f2 769 if (!get_reqs_available(ctx))
a1c8eae7
KO
770 return NULL;
771
0460fef2 772 req = kmem_cache_alloc(kiocb_cachep, GFP_KERNEL|__GFP_ZERO);
1da177e4 773 if (unlikely(!req))
a1c8eae7 774 goto out_put;
1da177e4 775
1da177e4 776 req->ki_ctx = ctx;
080d676d 777 return req;
a1c8eae7 778out_put:
e1bdd5f2 779 put_reqs_available(ctx, 1);
a1c8eae7 780 return NULL;
1da177e4
LT
781}
782
11599eba 783static void kiocb_free(struct kiocb *req)
1da177e4 784{
1d98ebfc
KO
785 if (req->ki_filp)
786 fput(req->ki_filp);
13389010
DL
787 if (req->ki_eventfd != NULL)
788 eventfd_ctx_put(req->ki_eventfd);
1da177e4 789 kmem_cache_free(kiocb_cachep, req);
1da177e4
LT
790}
791
d5470b59 792static struct kioctx *lookup_ioctx(unsigned long ctx_id)
1da177e4 793{
db446a08 794 struct aio_ring __user *ring = (void __user *)ctx_id;
abf137dd 795 struct mm_struct *mm = current->mm;
65c24491 796 struct kioctx *ctx, *ret = NULL;
db446a08
BL
797 struct kioctx_table *table;
798 unsigned id;
799
800 if (get_user(id, &ring->id))
801 return NULL;
1da177e4 802
abf137dd 803 rcu_read_lock();
db446a08 804 table = rcu_dereference(mm->ioctx_table);
abf137dd 805
db446a08
BL
806 if (!table || id >= table->nr)
807 goto out;
1da177e4 808
db446a08 809 ctx = table->table[id];
f30d704f 810 if (ctx && ctx->user_id == ctx_id) {
db446a08
BL
811 percpu_ref_get(&ctx->users);
812 ret = ctx;
813 }
814out:
abf137dd 815 rcu_read_unlock();
65c24491 816 return ret;
1da177e4
LT
817}
818
1da177e4
LT
819/* aio_complete
820 * Called when the io request on the given iocb is complete.
1da177e4 821 */
2d68449e 822void aio_complete(struct kiocb *iocb, long res, long res2)
1da177e4
LT
823{
824 struct kioctx *ctx = iocb->ki_ctx;
1da177e4 825 struct aio_ring *ring;
21b40200 826 struct io_event *ev_page, *event;
1da177e4 827 unsigned long flags;
21b40200 828 unsigned tail, pos;
1da177e4 829
20dcae32
ZB
830 /*
831 * Special case handling for sync iocbs:
832 * - events go directly into the iocb for fast handling
833 * - the sync task with the iocb in its stack holds the single iocb
834 * ref, no other paths have a way to get another ref
835 * - the sync task helpfully left a reference to itself in the iocb
1da177e4
LT
836 */
837 if (is_sync_kiocb(iocb)) {
1da177e4 838 iocb->ki_user_data = res;
57282d8f
KO
839 smp_wmb();
840 iocb->ki_ctx = ERR_PTR(-EXDEV);
1da177e4 841 wake_up_process(iocb->ki_obj.tsk);
2d68449e 842 return;
1da177e4
LT
843 }
844
36f55889 845 /*
36f55889 846 * Take rcu_read_lock() in case the kioctx is being destroyed, as we
34e83fc6 847 * need to issue a wakeup after incrementing reqs_available.
1da177e4 848 */
36f55889 849 rcu_read_lock();
1da177e4 850
0460fef2
KO
851 if (iocb->ki_list.next) {
852 unsigned long flags;
853
854 spin_lock_irqsave(&ctx->ctx_lock, flags);
855 list_del(&iocb->ki_list);
856 spin_unlock_irqrestore(&ctx->ctx_lock, flags);
857 }
11599eba 858
0460fef2
KO
859 /*
860 * Add a completion event to the ring buffer. Must be done holding
4b30f07e 861 * ctx->completion_lock to prevent other code from messing with the tail
0460fef2
KO
862 * pointer since we might be called from irq context.
863 */
864 spin_lock_irqsave(&ctx->completion_lock, flags);
865
58c85dc2 866 tail = ctx->tail;
21b40200
KO
867 pos = tail + AIO_EVENTS_OFFSET;
868
58c85dc2 869 if (++tail >= ctx->nr_events)
4bf69b2a 870 tail = 0;
1da177e4 871
58c85dc2 872 ev_page = kmap_atomic(ctx->ring_pages[pos / AIO_EVENTS_PER_PAGE]);
21b40200
KO
873 event = ev_page + pos % AIO_EVENTS_PER_PAGE;
874
1da177e4
LT
875 event->obj = (u64)(unsigned long)iocb->ki_obj.user;
876 event->data = iocb->ki_user_data;
877 event->res = res;
878 event->res2 = res2;
879
21b40200 880 kunmap_atomic(ev_page);
58c85dc2 881 flush_dcache_page(ctx->ring_pages[pos / AIO_EVENTS_PER_PAGE]);
21b40200
KO
882
883 pr_debug("%p[%u]: %p: %p %Lx %lx %lx\n",
caf4167a
KO
884 ctx, tail, iocb, iocb->ki_obj.user, iocb->ki_user_data,
885 res, res2);
1da177e4
LT
886
887 /* after flagging the request as done, we
888 * must never even look at it again
889 */
890 smp_wmb(); /* make event visible before updating tail */
891
58c85dc2 892 ctx->tail = tail;
1da177e4 893
58c85dc2 894 ring = kmap_atomic(ctx->ring_pages[0]);
21b40200 895 ring->tail = tail;
e8e3c3d6 896 kunmap_atomic(ring);
58c85dc2 897 flush_dcache_page(ctx->ring_pages[0]);
1da177e4 898
0460fef2
KO
899 spin_unlock_irqrestore(&ctx->completion_lock, flags);
900
21b40200 901 pr_debug("added to ring %p at [%u]\n", iocb, tail);
8d1c98b0
DL
902
903 /*
904 * Check if the user asked us to deliver the result through an
905 * eventfd. The eventfd_signal() function is safe to be called
906 * from IRQ context.
907 */
87c3a86e 908 if (iocb->ki_eventfd != NULL)
8d1c98b0
DL
909 eventfd_signal(iocb->ki_eventfd, 1);
910
1da177e4 911 /* everything turned out well, dispose of the aiocb. */
57282d8f 912 kiocb_free(iocb);
1da177e4 913
6cb2a210
QB
914 /*
915 * We have to order our ring_info tail store above and test
916 * of the wait list below outside the wait lock. This is
917 * like in wake_up_bit() where clearing a bit has to be
918 * ordered with the unlocked test.
919 */
920 smp_mb();
921
1da177e4
LT
922 if (waitqueue_active(&ctx->wait))
923 wake_up(&ctx->wait);
924
36f55889 925 rcu_read_unlock();
1da177e4 926}
385773e0 927EXPORT_SYMBOL(aio_complete);
1da177e4 928
a31ad380
KO
929/* aio_read_events
930 * Pull an event off of the ioctx's event ring. Returns the number of
931 * events fetched
1da177e4 932 */
a31ad380
KO
933static long aio_read_events_ring(struct kioctx *ctx,
934 struct io_event __user *event, long nr)
1da177e4 935{
1da177e4 936 struct aio_ring *ring;
5ffac122 937 unsigned head, tail, pos;
a31ad380
KO
938 long ret = 0;
939 int copy_ret;
940
58c85dc2 941 mutex_lock(&ctx->ring_lock);
1da177e4 942
58c85dc2 943 ring = kmap_atomic(ctx->ring_pages[0]);
a31ad380 944 head = ring->head;
5ffac122 945 tail = ring->tail;
a31ad380
KO
946 kunmap_atomic(ring);
947
5ffac122 948 pr_debug("h%u t%u m%u\n", head, tail, ctx->nr_events);
1da177e4 949
5ffac122 950 if (head == tail)
1da177e4
LT
951 goto out;
952
a31ad380
KO
953 while (ret < nr) {
954 long avail;
955 struct io_event *ev;
956 struct page *page;
957
5ffac122
KO
958 avail = (head <= tail ? tail : ctx->nr_events) - head;
959 if (head == tail)
a31ad380
KO
960 break;
961
962 avail = min(avail, nr - ret);
963 avail = min_t(long, avail, AIO_EVENTS_PER_PAGE -
964 ((head + AIO_EVENTS_OFFSET) % AIO_EVENTS_PER_PAGE));
965
966 pos = head + AIO_EVENTS_OFFSET;
58c85dc2 967 page = ctx->ring_pages[pos / AIO_EVENTS_PER_PAGE];
a31ad380
KO
968 pos %= AIO_EVENTS_PER_PAGE;
969
970 ev = kmap(page);
971 copy_ret = copy_to_user(event + ret, ev + pos,
972 sizeof(*ev) * avail);
973 kunmap(page);
974
975 if (unlikely(copy_ret)) {
976 ret = -EFAULT;
977 goto out;
978 }
979
980 ret += avail;
981 head += avail;
58c85dc2 982 head %= ctx->nr_events;
1da177e4 983 }
1da177e4 984
58c85dc2 985 ring = kmap_atomic(ctx->ring_pages[0]);
a31ad380 986 ring->head = head;
91d80a84 987 kunmap_atomic(ring);
58c85dc2 988 flush_dcache_page(ctx->ring_pages[0]);
a31ad380 989
5ffac122 990 pr_debug("%li h%u t%u\n", ret, head, tail);
3e845ce0 991
e1bdd5f2 992 put_reqs_available(ctx, ret);
a31ad380 993out:
58c85dc2 994 mutex_unlock(&ctx->ring_lock);
a31ad380 995
1da177e4
LT
996 return ret;
997}
998
a31ad380
KO
999static bool aio_read_events(struct kioctx *ctx, long min_nr, long nr,
1000 struct io_event __user *event, long *i)
1da177e4 1001{
a31ad380 1002 long ret = aio_read_events_ring(ctx, event + *i, nr - *i);
1da177e4 1003
a31ad380
KO
1004 if (ret > 0)
1005 *i += ret;
1da177e4 1006
a31ad380
KO
1007 if (unlikely(atomic_read(&ctx->dead)))
1008 ret = -EINVAL;
1da177e4 1009
a31ad380
KO
1010 if (!*i)
1011 *i = ret;
1da177e4 1012
a31ad380 1013 return ret < 0 || *i >= min_nr;
1da177e4
LT
1014}
1015
a31ad380 1016static long read_events(struct kioctx *ctx, long min_nr, long nr,
1da177e4
LT
1017 struct io_event __user *event,
1018 struct timespec __user *timeout)
1019{
a31ad380
KO
1020 ktime_t until = { .tv64 = KTIME_MAX };
1021 long ret = 0;
1da177e4 1022
1da177e4
LT
1023 if (timeout) {
1024 struct timespec ts;
a31ad380 1025
1da177e4 1026 if (unlikely(copy_from_user(&ts, timeout, sizeof(ts))))
a31ad380 1027 return -EFAULT;
1da177e4 1028
a31ad380 1029 until = timespec_to_ktime(ts);
1da177e4
LT
1030 }
1031
a31ad380
KO
1032 /*
1033 * Note that aio_read_events() is being called as the conditional - i.e.
1034 * we're calling it after prepare_to_wait() has set task state to
1035 * TASK_INTERRUPTIBLE.
1036 *
1037 * But aio_read_events() can block, and if it blocks it's going to flip
1038 * the task state back to TASK_RUNNING.
1039 *
1040 * This should be ok, provided it doesn't flip the state back to
1041 * TASK_RUNNING and return 0 too much - that causes us to spin. That
1042 * will only happen if the mutex_lock() call blocks, and we then find
1043 * the ringbuffer empty. So in practice we should be ok, but it's
1044 * something to be aware of when touching this code.
1045 */
1046 wait_event_interruptible_hrtimeout(ctx->wait,
1047 aio_read_events(ctx, min_nr, nr, event, &ret), until);
1da177e4 1048
a31ad380
KO
1049 if (!ret && signal_pending(current))
1050 ret = -EINTR;
1da177e4 1051
a31ad380 1052 return ret;
1da177e4
LT
1053}
1054
1da177e4
LT
1055/* sys_io_setup:
1056 * Create an aio_context capable of receiving at least nr_events.
1057 * ctxp must not point to an aio_context that already exists, and
1058 * must be initialized to 0 prior to the call. On successful
1059 * creation of the aio_context, *ctxp is filled in with the resulting
1060 * handle. May fail with -EINVAL if *ctxp is not initialized,
1061 * if the specified nr_events exceeds internal limits. May fail
1062 * with -EAGAIN if the specified nr_events exceeds the user's limit
1063 * of available events. May fail with -ENOMEM if insufficient kernel
1064 * resources are available. May fail with -EFAULT if an invalid
1065 * pointer is passed for ctxp. Will fail with -ENOSYS if not
1066 * implemented.
1067 */
002c8976 1068SYSCALL_DEFINE2(io_setup, unsigned, nr_events, aio_context_t __user *, ctxp)
1da177e4
LT
1069{
1070 struct kioctx *ioctx = NULL;
1071 unsigned long ctx;
1072 long ret;
1073
1074 ret = get_user(ctx, ctxp);
1075 if (unlikely(ret))
1076 goto out;
1077
1078 ret = -EINVAL;
d55b5fda
ZB
1079 if (unlikely(ctx || nr_events == 0)) {
1080 pr_debug("EINVAL: io_setup: ctx %lu nr_events %u\n",
1081 ctx, nr_events);
1da177e4
LT
1082 goto out;
1083 }
1084
1085 ioctx = ioctx_alloc(nr_events);
1086 ret = PTR_ERR(ioctx);
1087 if (!IS_ERR(ioctx)) {
1088 ret = put_user(ioctx->user_id, ctxp);
a2e1859a 1089 if (ret)
db446a08 1090 kill_ioctx(current->mm, ioctx);
723be6e3 1091 percpu_ref_put(&ioctx->users);
1da177e4
LT
1092 }
1093
1094out:
1095 return ret;
1096}
1097
1098/* sys_io_destroy:
1099 * Destroy the aio_context specified. May cancel any outstanding
1100 * AIOs and block on completion. Will fail with -ENOSYS if not
642b5123 1101 * implemented. May fail with -EINVAL if the context pointed to
1da177e4
LT
1102 * is invalid.
1103 */
002c8976 1104SYSCALL_DEFINE1(io_destroy, aio_context_t, ctx)
1da177e4
LT
1105{
1106 struct kioctx *ioctx = lookup_ioctx(ctx);
1107 if (likely(NULL != ioctx)) {
db446a08 1108 kill_ioctx(current->mm, ioctx);
723be6e3 1109 percpu_ref_put(&ioctx->users);
1da177e4
LT
1110 return 0;
1111 }
1112 pr_debug("EINVAL: io_destroy: invalid context id\n");
1113 return -EINVAL;
1114}
1115
41ef4eb8
KO
1116typedef ssize_t (aio_rw_op)(struct kiocb *, const struct iovec *,
1117 unsigned long, loff_t);
1118
8bc92afc
KO
1119static ssize_t aio_setup_vectored_rw(struct kiocb *kiocb,
1120 int rw, char __user *buf,
1121 unsigned long *nr_segs,
1122 struct iovec **iovec,
1123 bool compat)
eed4e51f
BP
1124{
1125 ssize_t ret;
1126
8bc92afc 1127 *nr_segs = kiocb->ki_nbytes;
41ef4eb8 1128
9d85cba7
JM
1129#ifdef CONFIG_COMPAT
1130 if (compat)
41ef4eb8 1131 ret = compat_rw_copy_check_uvector(rw,
8bc92afc
KO
1132 (struct compat_iovec __user *)buf,
1133 *nr_segs, 1, *iovec, iovec);
9d85cba7
JM
1134 else
1135#endif
41ef4eb8 1136 ret = rw_copy_check_uvector(rw,
8bc92afc
KO
1137 (struct iovec __user *)buf,
1138 *nr_segs, 1, *iovec, iovec);
eed4e51f 1139 if (ret < 0)
41ef4eb8 1140 return ret;
a70b52ec 1141
41ef4eb8 1142 /* ki_nbytes now reflect bytes instead of segs */
eed4e51f 1143 kiocb->ki_nbytes = ret;
41ef4eb8 1144 return 0;
eed4e51f
BP
1145}
1146
8bc92afc
KO
1147static ssize_t aio_setup_single_vector(struct kiocb *kiocb,
1148 int rw, char __user *buf,
1149 unsigned long *nr_segs,
1150 struct iovec *iovec)
eed4e51f 1151{
8bc92afc 1152 if (unlikely(!access_ok(!rw, buf, kiocb->ki_nbytes)))
41ef4eb8 1153 return -EFAULT;
a70b52ec 1154
8bc92afc
KO
1155 iovec->iov_base = buf;
1156 iovec->iov_len = kiocb->ki_nbytes;
1157 *nr_segs = 1;
eed4e51f
BP
1158 return 0;
1159}
1160
1da177e4
LT
1161/*
1162 * aio_setup_iocb:
1163 * Performs the initial checks and aio retry method
1164 * setup for the kiocb at the time of io submission.
1165 */
8bc92afc
KO
1166static ssize_t aio_run_iocb(struct kiocb *req, unsigned opcode,
1167 char __user *buf, bool compat)
1da177e4 1168{
41ef4eb8
KO
1169 struct file *file = req->ki_filp;
1170 ssize_t ret;
8bc92afc 1171 unsigned long nr_segs;
41ef4eb8
KO
1172 int rw;
1173 fmode_t mode;
1174 aio_rw_op *rw_op;
8bc92afc 1175 struct iovec inline_vec, *iovec = &inline_vec;
1da177e4 1176
8bc92afc 1177 switch (opcode) {
1da177e4 1178 case IOCB_CMD_PREAD:
eed4e51f 1179 case IOCB_CMD_PREADV:
41ef4eb8
KO
1180 mode = FMODE_READ;
1181 rw = READ;
1182 rw_op = file->f_op->aio_read;
1183 goto rw_common;
1184
1185 case IOCB_CMD_PWRITE:
eed4e51f 1186 case IOCB_CMD_PWRITEV:
41ef4eb8
KO
1187 mode = FMODE_WRITE;
1188 rw = WRITE;
1189 rw_op = file->f_op->aio_write;
1190 goto rw_common;
1191rw_common:
1192 if (unlikely(!(file->f_mode & mode)))
1193 return -EBADF;
1194
1195 if (!rw_op)
1196 return -EINVAL;
1197
8bc92afc
KO
1198 ret = (opcode == IOCB_CMD_PREADV ||
1199 opcode == IOCB_CMD_PWRITEV)
1200 ? aio_setup_vectored_rw(req, rw, buf, &nr_segs,
1201 &iovec, compat)
1202 : aio_setup_single_vector(req, rw, buf, &nr_segs,
1203 iovec);
eed4e51f 1204 if (ret)
41ef4eb8
KO
1205 return ret;
1206
1207 ret = rw_verify_area(rw, file, &req->ki_pos, req->ki_nbytes);
8bc92afc
KO
1208 if (ret < 0) {
1209 if (iovec != &inline_vec)
1210 kfree(iovec);
41ef4eb8 1211 return ret;
8bc92afc 1212 }
41ef4eb8
KO
1213
1214 req->ki_nbytes = ret;
41ef4eb8 1215
73a7075e
KO
1216 /* XXX: move/kill - rw_verify_area()? */
1217 /* This matches the pread()/pwrite() logic */
1218 if (req->ki_pos < 0) {
1219 ret = -EINVAL;
1220 break;
1221 }
1222
1223 if (rw == WRITE)
1224 file_start_write(file);
1225
8bc92afc 1226 ret = rw_op(req, iovec, nr_segs, req->ki_pos);
73a7075e
KO
1227
1228 if (rw == WRITE)
1229 file_end_write(file);
1da177e4 1230 break;
41ef4eb8 1231
1da177e4 1232 case IOCB_CMD_FDSYNC:
41ef4eb8
KO
1233 if (!file->f_op->aio_fsync)
1234 return -EINVAL;
1235
1236 ret = file->f_op->aio_fsync(req, 1);
1da177e4 1237 break;
41ef4eb8 1238
1da177e4 1239 case IOCB_CMD_FSYNC:
41ef4eb8
KO
1240 if (!file->f_op->aio_fsync)
1241 return -EINVAL;
1242
1243 ret = file->f_op->aio_fsync(req, 0);
1da177e4 1244 break;
41ef4eb8 1245
1da177e4 1246 default:
caf4167a 1247 pr_debug("EINVAL: no operation provided\n");
41ef4eb8 1248 return -EINVAL;
1da177e4
LT
1249 }
1250
8bc92afc
KO
1251 if (iovec != &inline_vec)
1252 kfree(iovec);
1253
41ef4eb8
KO
1254 if (ret != -EIOCBQUEUED) {
1255 /*
1256 * There's no easy way to restart the syscall since other AIO's
1257 * may be already running. Just fail this IO with EINTR.
1258 */
1259 if (unlikely(ret == -ERESTARTSYS || ret == -ERESTARTNOINTR ||
1260 ret == -ERESTARTNOHAND ||
1261 ret == -ERESTART_RESTARTBLOCK))
1262 ret = -EINTR;
1263 aio_complete(req, ret, 0);
1264 }
1da177e4
LT
1265
1266 return 0;
1267}
1268
d5470b59 1269static int io_submit_one(struct kioctx *ctx, struct iocb __user *user_iocb,
a1c8eae7 1270 struct iocb *iocb, bool compat)
1da177e4
LT
1271{
1272 struct kiocb *req;
1da177e4
LT
1273 ssize_t ret;
1274
1275 /* enforce forwards compatibility on users */
9c3060be 1276 if (unlikely(iocb->aio_reserved1 || iocb->aio_reserved2)) {
caf4167a 1277 pr_debug("EINVAL: reserve field set\n");
1da177e4
LT
1278 return -EINVAL;
1279 }
1280
1281 /* prevent overflows */
1282 if (unlikely(
1283 (iocb->aio_buf != (unsigned long)iocb->aio_buf) ||
1284 (iocb->aio_nbytes != (size_t)iocb->aio_nbytes) ||
1285 ((ssize_t)iocb->aio_nbytes < 0)
1286 )) {
1287 pr_debug("EINVAL: io_submit: overflow check\n");
1288 return -EINVAL;
1289 }
1290
41ef4eb8 1291 req = aio_get_req(ctx);
1d98ebfc 1292 if (unlikely(!req))
1da177e4 1293 return -EAGAIN;
1d98ebfc
KO
1294
1295 req->ki_filp = fget(iocb->aio_fildes);
1296 if (unlikely(!req->ki_filp)) {
1297 ret = -EBADF;
1298 goto out_put_req;
1da177e4 1299 }
1d98ebfc 1300
9c3060be
DL
1301 if (iocb->aio_flags & IOCB_FLAG_RESFD) {
1302 /*
1303 * If the IOCB_FLAG_RESFD flag of aio_flags is set, get an
1304 * instance of the file* now. The file descriptor must be
1305 * an eventfd() fd, and will be signaled for each completed
1306 * event using the eventfd_signal() function.
1307 */
13389010 1308 req->ki_eventfd = eventfd_ctx_fdget((int) iocb->aio_resfd);
801678c5 1309 if (IS_ERR(req->ki_eventfd)) {
9c3060be 1310 ret = PTR_ERR(req->ki_eventfd);
87c3a86e 1311 req->ki_eventfd = NULL;
9c3060be
DL
1312 goto out_put_req;
1313 }
1314 }
1da177e4 1315
8a660890 1316 ret = put_user(KIOCB_KEY, &user_iocb->aio_key);
1da177e4 1317 if (unlikely(ret)) {
caf4167a 1318 pr_debug("EFAULT: aio_key\n");
1da177e4
LT
1319 goto out_put_req;
1320 }
1321
1322 req->ki_obj.user = user_iocb;
1323 req->ki_user_data = iocb->aio_data;
1324 req->ki_pos = iocb->aio_offset;
73a7075e 1325 req->ki_nbytes = iocb->aio_nbytes;
1da177e4 1326
8bc92afc
KO
1327 ret = aio_run_iocb(req, iocb->aio_lio_opcode,
1328 (char __user *)(unsigned long)iocb->aio_buf,
1329 compat);
41003a7b 1330 if (ret)
7137c6bd 1331 goto out_put_req;
41003a7b 1332
1da177e4 1333 return 0;
1da177e4 1334out_put_req:
e1bdd5f2 1335 put_reqs_available(ctx, 1);
57282d8f 1336 kiocb_free(req);
1da177e4
LT
1337 return ret;
1338}
1339
9d85cba7
JM
1340long do_io_submit(aio_context_t ctx_id, long nr,
1341 struct iocb __user *__user *iocbpp, bool compat)
1da177e4
LT
1342{
1343 struct kioctx *ctx;
1344 long ret = 0;
080d676d 1345 int i = 0;
9f5b9425 1346 struct blk_plug plug;
1da177e4
LT
1347
1348 if (unlikely(nr < 0))
1349 return -EINVAL;
1350
75e1c70f
JM
1351 if (unlikely(nr > LONG_MAX/sizeof(*iocbpp)))
1352 nr = LONG_MAX/sizeof(*iocbpp);
1353
1da177e4
LT
1354 if (unlikely(!access_ok(VERIFY_READ, iocbpp, (nr*sizeof(*iocbpp)))))
1355 return -EFAULT;
1356
1357 ctx = lookup_ioctx(ctx_id);
1358 if (unlikely(!ctx)) {
caf4167a 1359 pr_debug("EINVAL: invalid context id\n");
1da177e4
LT
1360 return -EINVAL;
1361 }
1362
9f5b9425
SL
1363 blk_start_plug(&plug);
1364
1da177e4
LT
1365 /*
1366 * AKPM: should this return a partial result if some of the IOs were
1367 * successfully submitted?
1368 */
1369 for (i=0; i<nr; i++) {
1370 struct iocb __user *user_iocb;
1371 struct iocb tmp;
1372
1373 if (unlikely(__get_user(user_iocb, iocbpp + i))) {
1374 ret = -EFAULT;
1375 break;
1376 }
1377
1378 if (unlikely(copy_from_user(&tmp, user_iocb, sizeof(tmp)))) {
1379 ret = -EFAULT;
1380 break;
1381 }
1382
a1c8eae7 1383 ret = io_submit_one(ctx, user_iocb, &tmp, compat);
1da177e4
LT
1384 if (ret)
1385 break;
1386 }
9f5b9425 1387 blk_finish_plug(&plug);
1da177e4 1388
723be6e3 1389 percpu_ref_put(&ctx->users);
1da177e4
LT
1390 return i ? i : ret;
1391}
1392
9d85cba7
JM
1393/* sys_io_submit:
1394 * Queue the nr iocbs pointed to by iocbpp for processing. Returns
1395 * the number of iocbs queued. May return -EINVAL if the aio_context
1396 * specified by ctx_id is invalid, if nr is < 0, if the iocb at
1397 * *iocbpp[0] is not properly initialized, if the operation specified
1398 * is invalid for the file descriptor in the iocb. May fail with
1399 * -EFAULT if any of the data structures point to invalid data. May
1400 * fail with -EBADF if the file descriptor specified in the first
1401 * iocb is invalid. May fail with -EAGAIN if insufficient resources
1402 * are available to queue any iocbs. Will return 0 if nr is 0. Will
1403 * fail with -ENOSYS if not implemented.
1404 */
1405SYSCALL_DEFINE3(io_submit, aio_context_t, ctx_id, long, nr,
1406 struct iocb __user * __user *, iocbpp)
1407{
1408 return do_io_submit(ctx_id, nr, iocbpp, 0);
1409}
1410
1da177e4
LT
1411/* lookup_kiocb
1412 * Finds a given iocb for cancellation.
1da177e4 1413 */
25ee7e38
AB
1414static struct kiocb *lookup_kiocb(struct kioctx *ctx, struct iocb __user *iocb,
1415 u32 key)
1da177e4
LT
1416{
1417 struct list_head *pos;
d00689af
ZB
1418
1419 assert_spin_locked(&ctx->ctx_lock);
1420
8a660890
KO
1421 if (key != KIOCB_KEY)
1422 return NULL;
1423
1da177e4
LT
1424 /* TODO: use a hash or array, this sucks. */
1425 list_for_each(pos, &ctx->active_reqs) {
1426 struct kiocb *kiocb = list_kiocb(pos);
8a660890 1427 if (kiocb->ki_obj.user == iocb)
1da177e4
LT
1428 return kiocb;
1429 }
1430 return NULL;
1431}
1432
1433/* sys_io_cancel:
1434 * Attempts to cancel an iocb previously passed to io_submit. If
1435 * the operation is successfully cancelled, the resulting event is
1436 * copied into the memory pointed to by result without being placed
1437 * into the completion queue and 0 is returned. May fail with
1438 * -EFAULT if any of the data structures pointed to are invalid.
1439 * May fail with -EINVAL if aio_context specified by ctx_id is
1440 * invalid. May fail with -EAGAIN if the iocb specified was not
1441 * cancelled. Will fail with -ENOSYS if not implemented.
1442 */
002c8976
HC
1443SYSCALL_DEFINE3(io_cancel, aio_context_t, ctx_id, struct iocb __user *, iocb,
1444 struct io_event __user *, result)
1da177e4 1445{
1da177e4
LT
1446 struct kioctx *ctx;
1447 struct kiocb *kiocb;
1448 u32 key;
1449 int ret;
1450
1451 ret = get_user(key, &iocb->aio_key);
1452 if (unlikely(ret))
1453 return -EFAULT;
1454
1455 ctx = lookup_ioctx(ctx_id);
1456 if (unlikely(!ctx))
1457 return -EINVAL;
1458
1459 spin_lock_irq(&ctx->ctx_lock);
906b973c 1460
1da177e4 1461 kiocb = lookup_kiocb(ctx, iocb, key);
906b973c 1462 if (kiocb)
bec68faa 1463 ret = kiocb_cancel(ctx, kiocb);
906b973c
KO
1464 else
1465 ret = -EINVAL;
1466
1da177e4
LT
1467 spin_unlock_irq(&ctx->ctx_lock);
1468
906b973c 1469 if (!ret) {
bec68faa
KO
1470 /*
1471 * The result argument is no longer used - the io_event is
1472 * always delivered via the ring buffer. -EINPROGRESS indicates
1473 * cancellation is progress:
906b973c 1474 */
bec68faa 1475 ret = -EINPROGRESS;
906b973c 1476 }
1da177e4 1477
723be6e3 1478 percpu_ref_put(&ctx->users);
1da177e4
LT
1479
1480 return ret;
1481}
1482
1483/* io_getevents:
1484 * Attempts to read at least min_nr events and up to nr events from
642b5123
ST
1485 * the completion queue for the aio_context specified by ctx_id. If
1486 * it succeeds, the number of read events is returned. May fail with
1487 * -EINVAL if ctx_id is invalid, if min_nr is out of range, if nr is
1488 * out of range, if timeout is out of range. May fail with -EFAULT
1489 * if any of the memory specified is invalid. May return 0 or
1490 * < min_nr if the timeout specified by timeout has elapsed
1491 * before sufficient events are available, where timeout == NULL
1492 * specifies an infinite timeout. Note that the timeout pointed to by
6900807c 1493 * timeout is relative. Will fail with -ENOSYS if not implemented.
1da177e4 1494 */
002c8976
HC
1495SYSCALL_DEFINE5(io_getevents, aio_context_t, ctx_id,
1496 long, min_nr,
1497 long, nr,
1498 struct io_event __user *, events,
1499 struct timespec __user *, timeout)
1da177e4
LT
1500{
1501 struct kioctx *ioctx = lookup_ioctx(ctx_id);
1502 long ret = -EINVAL;
1503
1504 if (likely(ioctx)) {
2e410255 1505 if (likely(min_nr <= nr && min_nr >= 0))
1da177e4 1506 ret = read_events(ioctx, min_nr, nr, events, timeout);
723be6e3 1507 percpu_ref_put(&ioctx->users);
1da177e4 1508 }
1da177e4
LT
1509 return ret;
1510}