linux/mm/filemap.c
<<
>>
Prefs
   1/*
   2 *      linux/mm/filemap.c
   3 *
   4 * Copyright (C) 1994-1999  Linus Torvalds
   5 */
   6
   7/*
   8 * This file handles the generic file mmap semantics used by
   9 * most "normal" filesystems (but you don't /have/ to use this:
  10 * the NFS filesystem used to do this differently, for example)
  11 */
  12#include <linux/module.h>
  13#include <linux/slab.h>
  14#include <linux/compiler.h>
  15#include <linux/fs.h>
  16#include <linux/uaccess.h>
  17#include <linux/aio.h>
  18#include <linux/capability.h>
  19#include <linux/kernel_stat.h>
  20#include <linux/mm.h>
  21#include <linux/swap.h>
  22#include <linux/mman.h>
  23#include <linux/pagemap.h>
  24#include <linux/file.h>
  25#include <linux/uio.h>
  26#include <linux/hash.h>
  27#include <linux/writeback.h>
  28#include <linux/backing-dev.h>
  29#include <linux/pagevec.h>
  30#include <linux/blkdev.h>
  31#include <linux/security.h>
  32#include <linux/syscalls.h>
  33#include <linux/cpuset.h>
  34#include <linux/hardirq.h> /* for BUG_ON(!in_atomic()) only */
  35#include <linux/memcontrol.h>
  36#include "internal.h"
  37
  38/*
  39 * FIXME: remove all knowledge of the buffer layer from the core VM
  40 */
  41#include <linux/buffer_head.h> /* for generic_osync_inode */
  42
  43#include <asm/mman.h>
  44
  45
  46/*
  47 * Shared mappings implemented 30.11.1994. It's not fully working yet,
  48 * though.
  49 *
  50 * Shared mappings now work. 15.8.1995  Bruno.
  51 *
  52 * finished 'unifying' the page and buffer cache and SMP-threaded the
  53 * page-cache, 21.05.1999, Ingo Molnar <mingo@redhat.com>
  54 *
  55 * SMP-threaded pagemap-LRU 1999, Andrea Arcangeli <andrea@suse.de>
  56 */
  57
  58/*
  59 * Lock ordering:
  60 *
  61 *  ->i_mmap_lock               (vmtruncate)
  62 *    ->private_lock            (__free_pte->__set_page_dirty_buffers)
  63 *      ->swap_lock             (exclusive_swap_page, others)
  64 *        ->mapping->tree_lock
  65 *
  66 *  ->i_mutex
  67 *    ->i_mmap_lock             (truncate->unmap_mapping_range)
  68 *
  69 *  ->mmap_sem
  70 *    ->i_mmap_lock
  71 *      ->page_table_lock or pte_lock   (various, mainly in memory.c)
  72 *        ->mapping->tree_lock  (arch-dependent flush_dcache_mmap_lock)
  73 *
  74 *  ->mmap_sem
  75 *    ->lock_page               (access_process_vm)
  76 *
  77 *  ->i_mutex                   (generic_file_buffered_write)
  78 *    ->mmap_sem                (fault_in_pages_readable->do_page_fault)
  79 *
  80 *  ->i_mutex
  81 *    ->i_alloc_sem             (various)
  82 *
  83 *  ->inode_lock
  84 *    ->sb_lock                 (fs/fs-writeback.c)
  85 *    ->mapping->tree_lock      (__sync_single_inode)
  86 *
  87 *  ->i_mmap_lock
  88 *    ->anon_vma.lock           (vma_adjust)
  89 *
  90 *  ->anon_vma.lock
  91 *    ->page_table_lock or pte_lock     (anon_vma_prepare and various)
  92 *
  93 *  ->page_table_lock or pte_lock
  94 *    ->swap_lock               (try_to_unmap_one)
  95 *    ->private_lock            (try_to_unmap_one)
  96 *    ->tree_lock               (try_to_unmap_one)
  97 *    ->zone.lru_lock           (follow_page->mark_page_accessed)
  98 *    ->zone.lru_lock           (check_pte_range->isolate_lru_page)
  99 *    ->private_lock            (page_remove_rmap->set_page_dirty)
 100 *    ->tree_lock               (page_remove_rmap->set_page_dirty)
 101 *    ->inode_lock              (page_remove_rmap->set_page_dirty)
 102 *    ->inode_lock              (zap_pte_range->set_page_dirty)
 103 *    ->private_lock            (zap_pte_range->__set_page_dirty_buffers)
 104 *
 105 *  ->task->proc_lock
 106 *    ->dcache_lock             (proc_pid_lookup)
 107 */
 108
 109/*
 110 * Remove a page from the page cache and free it. Caller has to make
 111 * sure the page is locked and that nobody else uses it - or that usage
 112 * is safe.  The caller must hold the mapping's tree_lock.
 113 */
 114void __remove_from_page_cache(struct page *page)
 115{
 116        struct address_space *mapping = page->mapping;
 117
 118        mem_cgroup_uncharge_cache_page(page);
 119        radix_tree_delete(&mapping->page_tree, page->index);
 120        page->mapping = NULL;
 121        mapping->nrpages--;
 122        __dec_zone_page_state(page, NR_FILE_PAGES);
 123        BUG_ON(page_mapped(page));
 124
 125        /*
 126         * Some filesystems seem to re-dirty the page even after
 127         * the VM has canceled the dirty bit (eg ext3 journaling).
 128         *
 129         * Fix it up by doing a final dirty accounting check after
 130         * having removed the page entirely.
 131         */
 132        if (PageDirty(page) && mapping_cap_account_dirty(mapping)) {
 133                dec_zone_page_state(page, NR_FILE_DIRTY);
 134                dec_bdi_stat(mapping->backing_dev_info, BDI_RECLAIMABLE);
 135        }
 136}
 137
 138void remove_from_page_cache(struct page *page)
 139{
 140        struct address_space *mapping = page->mapping;
 141
 142        BUG_ON(!PageLocked(page));
 143
 144        spin_lock_irq(&mapping->tree_lock);
 145        __remove_from_page_cache(page);
 146        spin_unlock_irq(&mapping->tree_lock);
 147}
 148
 149static int sync_page(void *word)
 150{
 151        struct address_space *mapping;
 152        struct page *page;
 153
 154        page = container_of((unsigned long *)word, struct page, flags);
 155
 156        /*
 157         * page_mapping() is being called without PG_locked held.
 158         * Some knowledge of the state and use of the page is used to
 159         * reduce the requirements down to a memory barrier.
 160         * The danger here is of a stale page_mapping() return value
 161         * indicating a struct address_space different from the one it's
 162         * associated with when it is associated with one.
 163         * After smp_mb(), it's either the correct page_mapping() for
 164         * the page, or an old page_mapping() and the page's own
 165         * page_mapping() has gone NULL.
 166         * The ->sync_page() address_space operation must tolerate
 167         * page_mapping() going NULL. By an amazing coincidence,
 168         * this comes about because none of the users of the page
 169         * in the ->sync_page() methods make essential use of the
 170         * page_mapping(), merely passing the page down to the backing
 171         * device's unplug functions when it's non-NULL, which in turn
 172         * ignore it for all cases but swap, where only page_private(page) is
 173         * of interest. When page_mapping() does go NULL, the entire
 174         * call stack gracefully ignores the page and returns.
 175         * -- wli
 176         */
 177        smp_mb();
 178        mapping = page_mapping(page);
 179        if (mapping && mapping->a_ops && mapping->a_ops->sync_page)
 180                mapping->a_ops->sync_page(page);
 181        io_schedule();
 182        return 0;
 183}
 184
 185static int sync_page_killable(void *word)
 186{
 187        sync_page(word);
 188        return fatal_signal_pending(current) ? -EINTR : 0;
 189}
 190
 191/**
 192 * __filemap_fdatawrite_range - start writeback on mapping dirty pages in range
 193 * @mapping:    address space structure to write
 194 * @start:      offset in bytes where the range starts
 195 * @end:        offset in bytes where the range ends (inclusive)
 196 * @sync_mode:  enable synchronous operation
 197 *
 198 * Start writeback against all of a mapping's dirty pages that lie
 199 * within the byte offsets <start, end> inclusive.
 200 *
 201 * If sync_mode is WB_SYNC_ALL then this is a "data integrity" operation, as
 202 * opposed to a regular memory cleansing writeback.  The difference between
 203 * these two operations is that if a dirty page/buffer is encountered, it must
 204 * be waited upon, and not just skipped over.
 205 */
 206int __filemap_fdatawrite_range(struct address_space *mapping, loff_t start,
 207                                loff_t end, int sync_mode)
 208{
 209        int ret;
 210        struct writeback_control wbc = {
 211                .sync_mode = sync_mode,
 212                .nr_to_write = LONG_MAX,
 213                .range_start = start,
 214                .range_end = end,
 215        };
 216
 217        if (!mapping_cap_writeback_dirty(mapping))
 218                return 0;
 219
 220        ret = do_writepages(mapping, &wbc);
 221        return ret;
 222}
 223
 224static inline int __filemap_fdatawrite(struct address_space *mapping,
 225        int sync_mode)
 226{
 227        return __filemap_fdatawrite_range(mapping, 0, LLONG_MAX, sync_mode);
 228}
 229
 230int filemap_fdatawrite(struct address_space *mapping)
 231{
 232        return __filemap_fdatawrite(mapping, WB_SYNC_ALL);
 233}
 234EXPORT_SYMBOL(filemap_fdatawrite);
 235
 236int filemap_fdatawrite_range(struct address_space *mapping, loff_t start,
 237                                loff_t end)
 238{
 239        return __filemap_fdatawrite_range(mapping, start, end, WB_SYNC_ALL);
 240}
 241EXPORT_SYMBOL(filemap_fdatawrite_range);
 242
 243/**
 244 * filemap_flush - mostly a non-blocking flush
 245 * @mapping:    target address_space
 246 *
 247 * This is a mostly non-blocking flush.  Not suitable for data-integrity
 248 * purposes - I/O may not be started against all dirty pages.
 249 */
 250int filemap_flush(struct address_space *mapping)
 251{
 252        return __filemap_fdatawrite(mapping, WB_SYNC_NONE);
 253}
 254EXPORT_SYMBOL(filemap_flush);
 255
 256/**
 257 * wait_on_page_writeback_range - wait for writeback to complete
 258 * @mapping:    target address_space
 259 * @start:      beginning page index
 260 * @end:        ending page index
 261 *
 262 * Wait for writeback to complete against pages indexed by start->end
 263 * inclusive
 264 */
 265int wait_on_page_writeback_range(struct address_space *mapping,
 266                                pgoff_t start, pgoff_t end)
 267{
 268        struct pagevec pvec;
 269        int nr_pages;
 270        int ret = 0;
 271        pgoff_t index;
 272
 273        if (end < start)
 274                return 0;
 275
 276        pagevec_init(&pvec, 0);
 277        index = start;
 278        while ((index <= end) &&
 279                        (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index,
 280                        PAGECACHE_TAG_WRITEBACK,
 281                        min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1)) != 0) {
 282                unsigned i;
 283
 284                for (i = 0; i < nr_pages; i++) {
 285                        struct page *page = pvec.pages[i];
 286
 287                        /* until radix tree lookup accepts end_index */
 288                        if (page->index > end)
 289                                continue;
 290
 291                        wait_on_page_writeback(page);
 292                        if (PageError(page))
 293                                ret = -EIO;
 294                }
 295                pagevec_release(&pvec);
 296                cond_resched();
 297        }
 298
 299        /* Check for outstanding write errors */
 300        if (test_and_clear_bit(AS_ENOSPC, &mapping->flags))
 301                ret = -ENOSPC;
 302        if (test_and_clear_bit(AS_EIO, &mapping->flags))
 303                ret = -EIO;
 304
 305        return ret;
 306}
 307
 308/**
 309 * sync_page_range - write and wait on all pages in the passed range
 310 * @inode:      target inode
 311 * @mapping:    target address_space
 312 * @pos:        beginning offset in pages to write
 313 * @count:      number of bytes to write
 314 *
 315 * Write and wait upon all the pages in the passed range.  This is a "data
 316 * integrity" operation.  It waits upon in-flight writeout before starting and
 317 * waiting upon new writeout.  If there was an IO error, return it.
 318 *
 319 * We need to re-take i_mutex during the generic_osync_inode list walk because
 320 * it is otherwise livelockable.
 321 */
 322int sync_page_range(struct inode *inode, struct address_space *mapping,
 323                        loff_t pos, loff_t count)
 324{
 325        pgoff_t start = pos >> PAGE_CACHE_SHIFT;
 326        pgoff_t end = (pos + count - 1) >> PAGE_CACHE_SHIFT;
 327        int ret;
 328
 329        if (!mapping_cap_writeback_dirty(mapping) || !count)
 330                return 0;
 331        ret = filemap_fdatawrite_range(mapping, pos, pos + count - 1);
 332        if (ret == 0) {
 333                mutex_lock(&inode->i_mutex);
 334                ret = generic_osync_inode(inode, mapping, OSYNC_METADATA);
 335                mutex_unlock(&inode->i_mutex);
 336        }
 337        if (ret == 0)
 338                ret = wait_on_page_writeback_range(mapping, start, end);
 339        return ret;
 340}
 341EXPORT_SYMBOL(sync_page_range);
 342
 343/**
 344 * sync_page_range_nolock - write & wait on all pages in the passed range without locking
 345 * @inode:      target inode
 346 * @mapping:    target address_space
 347 * @pos:        beginning offset in pages to write
 348 * @count:      number of bytes to write
 349 *
 350 * Note: Holding i_mutex across sync_page_range_nolock() is not a good idea
 351 * as it forces O_SYNC writers to different parts of the same file
 352 * to be serialised right until io completion.
 353 */
 354int sync_page_range_nolock(struct inode *inode, struct address_space *mapping,
 355                           loff_t pos, loff_t count)
 356{
 357        pgoff_t start = pos >> PAGE_CACHE_SHIFT;
 358        pgoff_t end = (pos + count - 1) >> PAGE_CACHE_SHIFT;
 359        int ret;
 360
 361        if (!mapping_cap_writeback_dirty(mapping) || !count)
 362                return 0;
 363        ret = filemap_fdatawrite_range(mapping, pos, pos + count - 1);
 364        if (ret == 0)
 365                ret = generic_osync_inode(inode, mapping, OSYNC_METADATA);
 366        if (ret == 0)
 367                ret = wait_on_page_writeback_range(mapping, start, end);
 368        return ret;
 369}
 370EXPORT_SYMBOL(sync_page_range_nolock);
 371
 372/**
 373 * filemap_fdatawait - wait for all under-writeback pages to complete
 374 * @mapping: address space structure to wait for
 375 *
 376 * Walk the list of under-writeback pages of the given address space
 377 * and wait for all of them.
 378 */
 379int filemap_fdatawait(struct address_space *mapping)
 380{
 381        loff_t i_size = i_size_read(mapping->host);
 382
 383        if (i_size == 0)
 384                return 0;
 385
 386        return wait_on_page_writeback_range(mapping, 0,
 387                                (i_size - 1) >> PAGE_CACHE_SHIFT);
 388}
 389EXPORT_SYMBOL(filemap_fdatawait);
 390
 391int filemap_write_and_wait(struct address_space *mapping)
 392{
 393        int err = 0;
 394
 395        if (mapping->nrpages) {
 396                err = filemap_fdatawrite(mapping);
 397                /*
 398                 * Even if the above returned error, the pages may be
 399                 * written partially (e.g. -ENOSPC), so we wait for it.
 400                 * But the -EIO is special case, it may indicate the worst
 401                 * thing (e.g. bug) happened, so we avoid waiting for it.
 402                 */
 403                if (err != -EIO) {
 404                        int err2 = filemap_fdatawait(mapping);
 405                        if (!err)
 406                                err = err2;
 407                }
 408        }
 409        return err;
 410}
 411EXPORT_SYMBOL(filemap_write_and_wait);
 412
 413/**
 414 * filemap_write_and_wait_range - write out & wait on a file range
 415 * @mapping:    the address_space for the pages
 416 * @lstart:     offset in bytes where the range starts
 417 * @lend:       offset in bytes where the range ends (inclusive)
 418 *
 419 * Write out and wait upon file offsets lstart->lend, inclusive.
 420 *
 421 * Note that `lend' is inclusive (describes the last byte to be written) so
 422 * that this function can be used to write to the very end-of-file (end = -1).
 423 */
 424int filemap_write_and_wait_range(struct address_space *mapping,
 425                                 loff_t lstart, loff_t lend)
 426{
 427        int err = 0;
 428
 429        if (mapping->nrpages) {
 430                err = __filemap_fdatawrite_range(mapping, lstart, lend,
 431                                                 WB_SYNC_ALL);
 432                /* See comment of filemap_write_and_wait() */
 433                if (err != -EIO) {
 434                        int err2 = wait_on_page_writeback_range(mapping,
 435                                                lstart >> PAGE_CACHE_SHIFT,
 436                                                lend >> PAGE_CACHE_SHIFT);
 437                        if (!err)
 438                                err = err2;
 439                }
 440        }
 441        return err;
 442}
 443
 444/**
 445 * add_to_page_cache_locked - add a locked page to the pagecache
 446 * @page:       page to add
 447 * @mapping:    the page's address_space
 448 * @offset:     page index
 449 * @gfp_mask:   page allocation mode
 450 *
 451 * This function is used to add a page to the pagecache. It must be locked.
 452 * This function does not add the page to the LRU.  The caller must do that.
 453 */
 454int add_to_page_cache_locked(struct page *page, struct address_space *mapping,
 455                pgoff_t offset, gfp_t gfp_mask)
 456{
 457        int error;
 458
 459        VM_BUG_ON(!PageLocked(page));
 460
 461        error = mem_cgroup_cache_charge(page, current->mm,
 462                                        gfp_mask & ~__GFP_HIGHMEM);
 463        if (error)
 464                goto out;
 465
 466        error = radix_tree_preload(gfp_mask & ~__GFP_HIGHMEM);
 467        if (error == 0) {
 468                page_cache_get(page);
 469                page->mapping = mapping;
 470                page->index = offset;
 471
 472                spin_lock_irq(&mapping->tree_lock);
 473                error = radix_tree_insert(&mapping->page_tree, offset, page);
 474                if (likely(!error)) {
 475                        mapping->nrpages++;
 476                        __inc_zone_page_state(page, NR_FILE_PAGES);
 477                } else {
 478                        page->mapping = NULL;
 479                        mem_cgroup_uncharge_cache_page(page);
 480                        page_cache_release(page);
 481                }
 482
 483                spin_unlock_irq(&mapping->tree_lock);
 484                radix_tree_preload_end();
 485        } else
 486                mem_cgroup_uncharge_cache_page(page);
 487out:
 488        return error;
 489}
 490EXPORT_SYMBOL(add_to_page_cache_locked);
 491
 492int add_to_page_cache_lru(struct page *page, struct address_space *mapping,
 493                                pgoff_t offset, gfp_t gfp_mask)
 494{
 495        int ret = add_to_page_cache(page, mapping, offset, gfp_mask);
 496        if (ret == 0)
 497                lru_cache_add(page);
 498        return ret;
 499}
 500
 501#ifdef CONFIG_NUMA
 502struct page *__page_cache_alloc(gfp_t gfp)
 503{
 504        if (cpuset_do_page_mem_spread()) {
 505                int n = cpuset_mem_spread_node();
 506                return alloc_pages_node(n, gfp, 0);
 507        }
 508        return alloc_pages(gfp, 0);
 509}
 510EXPORT_SYMBOL(__page_cache_alloc);
 511#endif
 512
 513static int __sleep_on_page_lock(void *word)
 514{
 515        io_schedule();
 516        return 0;
 517}
 518
 519/*
 520 * In order to wait for pages to become available there must be
 521 * waitqueues associated with pages. By using a hash table of
 522 * waitqueues where the bucket discipline is to maintain all
 523 * waiters on the same queue and wake all when any of the pages
 524 * become available, and for the woken contexts to check to be
 525 * sure the appropriate page became available, this saves space
 526 * at a cost of "thundering herd" phenomena during rare hash
 527 * collisions.
 528 */
 529static wait_queue_head_t *page_waitqueue(struct page *page)
 530{
 531        const struct zone *zone = page_zone(page);
 532
 533        return &zone->wait_table[hash_ptr(page, zone->wait_table_bits)];
 534}
 535
 536static inline void wake_up_page(struct page *page, int bit)
 537{
 538        __wake_up_bit(page_waitqueue(page), &page->flags, bit);
 539}
 540
 541void wait_on_page_bit(struct page *page, int bit_nr)
 542{
 543        DEFINE_WAIT_BIT(wait, &page->flags, bit_nr);
 544
 545        if (test_bit(bit_nr, &page->flags))
 546                __wait_on_bit(page_waitqueue(page), &wait, sync_page,
 547                                                        TASK_UNINTERRUPTIBLE);
 548}
 549EXPORT_SYMBOL(wait_on_page_bit);
 550
 551/**
 552 * unlock_page - unlock a locked page
 553 * @page: the page
 554 *
 555 * Unlocks the page and wakes up sleepers in ___wait_on_page_locked().
 556 * Also wakes sleepers in wait_on_page_writeback() because the wakeup
 557 * mechananism between PageLocked pages and PageWriteback pages is shared.
 558 * But that's OK - sleepers in wait_on_page_writeback() just go back to sleep.
 559 *
 560 * The first mb is necessary to safely close the critical section opened by the
 561 * test_and_set_bit() to lock the page; the second mb is necessary to enforce
 562 * ordering between the clear_bit and the read of the waitqueue (to avoid SMP
 563 * races with a parallel wait_on_page_locked()).
 564 */
 565void unlock_page(struct page *page)
 566{
 567        smp_mb__before_clear_bit();
 568        if (!test_and_clear_bit(PG_locked, &page->flags))
 569                BUG();
 570        smp_mb__after_clear_bit(); 
 571        wake_up_page(page, PG_locked);
 572}
 573EXPORT_SYMBOL(unlock_page);
 574
 575/**
 576 * end_page_writeback - end writeback against a page
 577 * @page: the page
 578 */
 579void end_page_writeback(struct page *page)
 580{
 581        if (TestClearPageReclaim(page))
 582                rotate_reclaimable_page(page);
 583
 584        if (!test_clear_page_writeback(page))
 585                BUG();
 586
 587        smp_mb__after_clear_bit();
 588        wake_up_page(page, PG_writeback);
 589}
 590EXPORT_SYMBOL(end_page_writeback);
 591
 592/**
 593 * __lock_page - get a lock on the page, assuming we need to sleep to get it
 594 * @page: the page to lock
 595 *
 596 * Ugly. Running sync_page() in state TASK_UNINTERRUPTIBLE is scary.  If some
 597 * random driver's requestfn sets TASK_RUNNING, we could busywait.  However
 598 * chances are that on the second loop, the block layer's plug list is empty,
 599 * so sync_page() will then return in state TASK_UNINTERRUPTIBLE.
 600 */
 601void __lock_page(struct page *page)
 602{
 603        DEFINE_WAIT_BIT(wait, &page->flags, PG_locked);
 604
 605        __wait_on_bit_lock(page_waitqueue(page), &wait, sync_page,
 606                                                        TASK_UNINTERRUPTIBLE);
 607}
 608EXPORT_SYMBOL(__lock_page);
 609
 610int __lock_page_killable(struct page *page)
 611{
 612        DEFINE_WAIT_BIT(wait, &page->flags, PG_locked);
 613
 614        return __wait_on_bit_lock(page_waitqueue(page), &wait,
 615                                        sync_page_killable, TASK_KILLABLE);
 616}
 617
 618/**
 619 * __lock_page_nosync - get a lock on the page, without calling sync_page()
 620 * @page: the page to lock
 621 *
 622 * Variant of lock_page that does not require the caller to hold a reference
 623 * on the page's mapping.
 624 */
 625void __lock_page_nosync(struct page *page)
 626{
 627        DEFINE_WAIT_BIT(wait, &page->flags, PG_locked);
 628        __wait_on_bit_lock(page_waitqueue(page), &wait, __sleep_on_page_lock,
 629                                                        TASK_UNINTERRUPTIBLE);
 630}
 631
 632/**
 633 * find_get_page - find and get a page reference
 634 * @mapping: the address_space to search
 635 * @offset: the page index
 636 *
 637 * Is there a pagecache struct page at the given (mapping, offset) tuple?
 638 * If yes, increment its refcount and return it; if no, return NULL.
 639 */
 640struct page *find_get_page(struct address_space *mapping, pgoff_t offset)
 641{
 642        void **pagep;
 643        struct page *page;
 644
 645        rcu_read_lock();
 646repeat:
 647        page = NULL;
 648        pagep = radix_tree_lookup_slot(&mapping->page_tree, offset);
 649        if (pagep) {
 650                page = radix_tree_deref_slot(pagep);
 651                if (unlikely(!page || page == RADIX_TREE_RETRY))
 652                        goto repeat;
 653
 654                if (!page_cache_get_speculative(page))
 655                        goto repeat;
 656
 657                /*
 658                 * Has the page moved?
 659                 * This is part of the lockless pagecache protocol. See
 660                 * include/linux/pagemap.h for details.
 661                 */
 662                if (unlikely(page != *pagep)) {
 663                        page_cache_release(page);
 664                        goto repeat;
 665                }
 666        }
 667        rcu_read_unlock();
 668
 669        return page;
 670}
 671EXPORT_SYMBOL(find_get_page);
 672
 673/**
 674 * find_lock_page - locate, pin and lock a pagecache page
 675 * @mapping: the address_space to search
 676 * @offset: the page index
 677 *
 678 * Locates the desired pagecache page, locks it, increments its reference
 679 * count and returns its address.
 680 *
 681 * Returns zero if the page was not present. find_lock_page() may sleep.
 682 */
 683struct page *find_lock_page(struct address_space *mapping, pgoff_t offset)
 684{
 685        struct page *page;
 686
 687repeat:
 688        page = find_get_page(mapping, offset);
 689        if (page) {
 690                lock_page(page);
 691                /* Has the page been truncated? */
 692                if (unlikely(page->mapping != mapping)) {
 693                        unlock_page(page);
 694                        page_cache_release(page);
 695                        goto repeat;
 696                }
 697                VM_BUG_ON(page->index != offset);
 698        }
 699        return page;
 700}
 701EXPORT_SYMBOL(find_lock_page);
 702
 703/**
 704 * find_or_create_page - locate or add a pagecache page
 705 * @mapping: the page's address_space
 706 * @index: the page's index into the mapping
 707 * @gfp_mask: page allocation mode
 708 *
 709 * Locates a page in the pagecache.  If the page is not present, a new page
 710 * is allocated using @gfp_mask and is added to the pagecache and to the VM's
 711 * LRU list.  The returned page is locked and has its reference count
 712 * incremented.
 713 *
 714 * find_or_create_page() may sleep, even if @gfp_flags specifies an atomic
 715 * allocation!
 716 *
 717 * find_or_create_page() returns the desired page's address, or zero on
 718 * memory exhaustion.
 719 */
 720struct page *find_or_create_page(struct address_space *mapping,
 721                pgoff_t index, gfp_t gfp_mask)
 722{
 723        struct page *page;
 724        int err;
 725repeat:
 726        page = find_lock_page(mapping, index);
 727        if (!page) {
 728                page = __page_cache_alloc(gfp_mask);
 729                if (!page)
 730                        return NULL;
 731                err = add_to_page_cache_lru(page, mapping, index, gfp_mask);
 732                if (unlikely(err)) {
 733                        page_cache_release(page);
 734                        page = NULL;
 735                        if (err == -EEXIST)
 736                                goto repeat;
 737                }
 738        }
 739        return page;
 740}
 741EXPORT_SYMBOL(find_or_create_page);
 742
 743/**
 744 * find_get_pages - gang pagecache lookup
 745 * @mapping:    The address_space to search
 746 * @start:      The starting page index
 747 * @nr_pages:   The maximum number of pages
 748 * @pages:      Where the resulting pages are placed
 749 *
 750 * find_get_pages() will search for and return a group of up to
 751 * @nr_pages pages in the mapping.  The pages are placed at @pages.
 752 * find_get_pages() takes a reference against the returned pages.
 753 *
 754 * The search returns a group of mapping-contiguous pages with ascending
 755 * indexes.  There may be holes in the indices due to not-present pages.
 756 *
 757 * find_get_pages() returns the number of pages which were found.
 758 */
 759unsigned find_get_pages(struct address_space *mapping, pgoff_t start,
 760                            unsigned int nr_pages, struct page **pages)
 761{
 762        unsigned int i;
 763        unsigned int ret;
 764        unsigned int nr_found;
 765
 766        rcu_read_lock();
 767restart:
 768        nr_found = radix_tree_gang_lookup_slot(&mapping->page_tree,
 769                                (void ***)pages, start, nr_pages);
 770        ret = 0;
 771        for (i = 0; i < nr_found; i++) {
 772                struct page *page;
 773repeat:
 774                page = radix_tree_deref_slot((void **)pages[i]);
 775                if (unlikely(!page))
 776                        continue;
 777                /*
 778                 * this can only trigger if nr_found == 1, making livelock
 779                 * a non issue.
 780                 */
 781                if (unlikely(page == RADIX_TREE_RETRY))
 782                        goto restart;
 783
 784                if (!page_cache_get_speculative(page))
 785                        goto repeat;
 786
 787                /* Has the page moved? */
 788                if (unlikely(page != *((void **)pages[i]))) {
 789                        page_cache_release(page);
 790                        goto repeat;
 791                }
 792
 793                pages[ret] = page;
 794                ret++;
 795        }
 796        rcu_read_unlock();
 797        return ret;
 798}
 799
 800/**
 801 * find_get_pages_contig - gang contiguous pagecache lookup
 802 * @mapping:    The address_space to search
 803 * @index:      The starting page index
 804 * @nr_pages:   The maximum number of pages
 805 * @pages:      Where the resulting pages are placed
 806 *
 807 * find_get_pages_contig() works exactly like find_get_pages(), except
 808 * that the returned number of pages are guaranteed to be contiguous.
 809 *
 810 * find_get_pages_contig() returns the number of pages which were found.
 811 */
 812unsigned find_get_pages_contig(struct address_space *mapping, pgoff_t index,
 813                               unsigned int nr_pages, struct page **pages)
 814{
 815        unsigned int i;
 816        unsigned int ret;
 817        unsigned int nr_found;
 818
 819        rcu_read_lock();
 820restart:
 821        nr_found = radix_tree_gang_lookup_slot(&mapping->page_tree,
 822                                (void ***)pages, index, nr_pages);
 823        ret = 0;
 824        for (i = 0; i < nr_found; i++) {
 825                struct page *page;
 826repeat:
 827                page = radix_tree_deref_slot((void **)pages[i]);
 828                if (unlikely(!page))
 829                        continue;
 830                /*
 831                 * this can only trigger if nr_found == 1, making livelock
 832                 * a non issue.
 833                 */
 834                if (unlikely(page == RADIX_TREE_RETRY))
 835                        goto restart;
 836
 837                if (page->mapping == NULL || page->index != index)
 838                        break;
 839
 840                if (!page_cache_get_speculative(page))
 841                        goto repeat;
 842
 843                /* Has the page moved? */
 844                if (unlikely(page != *((void **)pages[i]))) {
 845                        page_cache_release(page);
 846                        goto repeat;
 847                }
 848
 849                pages[ret] = page;
 850                ret++;
 851                index++;
 852        }
 853        rcu_read_unlock();
 854        return ret;
 855}
 856EXPORT_SYMBOL(find_get_pages_contig);
 857
 858/**
 859 * find_get_pages_tag - find and return pages that match @tag
 860 * @mapping:    the address_space to search
 861 * @index:      the starting page index
 862 * @tag:        the tag index
 863 * @nr_pages:   the maximum number of pages
 864 * @pages:      where the resulting pages are placed
 865 *
 866 * Like find_get_pages, except we only return pages which are tagged with
 867 * @tag.   We update @index to index the next page for the traversal.
 868 */
 869unsigned find_get_pages_tag(struct address_space *mapping, pgoff_t *index,
 870                        int tag, unsigned int nr_pages, struct page **pages)
 871{
 872        unsigned int i;
 873        unsigned int ret;
 874        unsigned int nr_found;
 875
 876        rcu_read_lock();
 877restart:
 878        nr_found = radix_tree_gang_lookup_tag_slot(&mapping->page_tree,
 879                                (void ***)pages, *index, nr_pages, tag);
 880        ret = 0;
 881        for (i = 0; i < nr_found; i++) {
 882                struct page *page;
 883repeat:
 884                page = radix_tree_deref_slot((void **)pages[i]);
 885                if (unlikely(!page))
 886                        continue;
 887                /*
 888                 * this can only trigger if nr_found == 1, making livelock
 889                 * a non issue.
 890                 */
 891                if (unlikely(page == RADIX_TREE_RETRY))
 892                        goto restart;
 893
 894                if (!page_cache_get_speculative(page))
 895                        goto repeat;
 896
 897                /* Has the page moved? */
 898                if (unlikely(page != *((void **)pages[i]))) {
 899                        page_cache_release(page);
 900                        goto repeat;
 901                }
 902
 903                pages[ret] = page;
 904                ret++;
 905        }
 906        rcu_read_unlock();
 907
 908        if (ret)
 909                *index = pages[ret - 1]->index + 1;
 910
 911        return ret;
 912}
 913EXPORT_SYMBOL(find_get_pages_tag);
 914
 915/**
 916 * grab_cache_page_nowait - returns locked page at given index in given cache
 917 * @mapping: target address_space
 918 * @index: the page index
 919 *
 920 * Same as grab_cache_page(), but do not wait if the page is unavailable.
 921 * This is intended for speculative data generators, where the data can
 922 * be regenerated if the page couldn't be grabbed.  This routine should
 923 * be safe to call while holding the lock for another page.
 924 *
 925 * Clear __GFP_FS when allocating the page to avoid recursion into the fs
 926 * and deadlock against the caller's locked page.
 927 */
 928struct page *
 929grab_cache_page_nowait(struct address_space *mapping, pgoff_t index)
 930{
 931        struct page *page = find_get_page(mapping, index);
 932
 933        if (page) {
 934                if (trylock_page(page))
 935                        return page;
 936                page_cache_release(page);
 937                return NULL;
 938        }
 939        page = __page_cache_alloc(mapping_gfp_mask(mapping) & ~__GFP_FS);
 940        if (page && add_to_page_cache_lru(page, mapping, index, GFP_KERNEL)) {
 941                page_cache_release(page);
 942                page = NULL;
 943        }
 944        return page;
 945}
 946EXPORT_SYMBOL(grab_cache_page_nowait);
 947
 948/*
 949 * CD/DVDs are error prone. When a medium error occurs, the driver may fail
 950 * a _large_ part of the i/o request. Imagine the worst scenario:
 951 *
 952 *      ---R__________________________________________B__________
 953 *         ^ reading here                             ^ bad block(assume 4k)
 954 *
 955 * read(R) => miss => readahead(R...B) => media error => frustrating retries
 956 * => failing the whole request => read(R) => read(R+1) =>
 957 * readahead(R+1...B+1) => bang => read(R+2) => read(R+3) =>
 958 * readahead(R+3...B+2) => bang => read(R+3) => read(R+4) =>
 959 * readahead(R+4...B+3) => bang => read(R+4) => read(R+5) => ......
 960 *
 961 * It is going insane. Fix it by quickly scaling down the readahead size.
 962 */
 963static void shrink_readahead_size_eio(struct file *filp,
 964                                        struct file_ra_state *ra)
 965{
 966        if (!ra->ra_pages)
 967                return;
 968
 969        ra->ra_pages /= 4;
 970}
 971
 972/**
 973 * do_generic_file_read - generic file read routine
 974 * @filp:       the file to read
 975 * @ppos:       current file position
 976 * @desc:       read_descriptor
 977 * @actor:      read method
 978 *
 979 * This is a generic file read routine, and uses the
 980 * mapping->a_ops->readpage() function for the actual low-level stuff.
 981 *
 982 * This is really ugly. But the goto's actually try to clarify some
 983 * of the logic when it comes to error handling etc.
 984 */
 985static void do_generic_file_read(struct file *filp, loff_t *ppos,
 986                read_descriptor_t *desc, read_actor_t actor)
 987{
 988        struct address_space *mapping = filp->f_mapping;
 989        struct inode *inode = mapping->host;
 990        struct file_ra_state *ra = &filp->f_ra;
 991        pgoff_t index;
 992        pgoff_t last_index;
 993        pgoff_t prev_index;
 994        unsigned long offset;      /* offset into pagecache page */
 995        unsigned int prev_offset;
 996        int error;
 997
 998        index = *ppos >> PAGE_CACHE_SHIFT;
 999        prev_index = ra->prev_pos >> PAGE_CACHE_SHIFT;
1000        prev_offset = ra->prev_pos & (PAGE_CACHE_SIZE-1);
1001        last_index = (*ppos + desc->count + PAGE_CACHE_SIZE-1) >> PAGE_CACHE_SHIFT;
1002        offset = *ppos & ~PAGE_CACHE_MASK;
1003
1004        for (;;) {
1005                struct page *page;
1006                pgoff_t end_index;
1007                loff_t isize;
1008                unsigned long nr, ret;
1009
1010                cond_resched();
1011find_page:
1012                page = find_get_page(mapping, index);
1013                if (!page) {
1014                        page_cache_sync_readahead(mapping,
1015                                        ra, filp,
1016                                        index, last_index - index);
1017                        page = find_get_page(mapping, index);
1018                        if (unlikely(page == NULL))
1019                                goto no_cached_page;
1020                }
1021                if (PageReadahead(page)) {
1022                        page_cache_async_readahead(mapping,
1023                                        ra, filp, page,
1024                                        index, last_index - index);
1025                }
1026                if (!PageUptodate(page)) {
1027                        if (inode->i_blkbits == PAGE_CACHE_SHIFT ||
1028                                        !mapping->a_ops->is_partially_uptodate)
1029                                goto page_not_up_to_date;
1030                        if (!trylock_page(page))
1031                                goto page_not_up_to_date;
1032                        if (!mapping->a_ops->is_partially_uptodate(page,
1033                                                                desc, offset))
1034                                goto page_not_up_to_date_locked;
1035                        unlock_page(page);
1036                }
1037page_ok:
1038                /*
1039                 * i_size must be checked after we know the page is Uptodate.
1040                 *
1041                 * Checking i_size after the check allows us to calculate
1042                 * the correct value for "nr", which means the zero-filled
1043                 * part of the page is not copied back to userspace (unless
1044                 * another truncate extends the file - this is desired though).
1045                 */
1046
1047                isize = i_size_read(inode);
1048                end_index = (isize - 1) >> PAGE_CACHE_SHIFT;
1049                if (unlikely(!isize || index > end_index)) {
1050                        page_cache_release(page);
1051                        goto out;
1052                }
1053
1054                /* nr is the maximum number of bytes to copy from this page */
1055                nr = PAGE_CACHE_SIZE;
1056                if (index == end_index) {
1057                        nr = ((isize - 1) & ~PAGE_CACHE_MASK) + 1;
1058                        if (nr <= offset) {
1059                                page_cache_release(page);
1060                                goto out;
1061                        }
1062                }
1063                nr = nr - offset;
1064
1065                /* If users can be writing to this page using arbitrary
1066                 * virtual addresses, take care about potential aliasing
1067                 * before reading the page on the kernel side.
1068                 */
1069                if (mapping_writably_mapped(mapping))
1070                        flush_dcache_page(page);
1071
1072                /*
1073                 * When a sequential read accesses a page several times,
1074                 * only mark it as accessed the first time.
1075                 */
1076                if (prev_index != index || offset != prev_offset)
1077                        mark_page_accessed(page);
1078                prev_index = index;
1079
1080                /*
1081                 * Ok, we have the page, and it's up-to-date, so
1082                 * now we can copy it to user space...
1083                 *
1084                 * The actor routine returns how many bytes were actually used..
1085                 * NOTE! This may not be the same as how much of a user buffer
1086                 * we filled up (we may be padding etc), so we can only update
1087                 * "pos" here (the actor routine has to update the user buffer
1088                 * pointers and the remaining count).
1089                 */
1090                ret = actor(desc, page, offset, nr);
1091                offset += ret;
1092                index += offset >> PAGE_CACHE_SHIFT;
1093                offset &= ~PAGE_CACHE_MASK;
1094                prev_offset = offset;
1095
1096                page_cache_release(page);
1097                if (ret == nr && desc->count)
1098                        continue;
1099                goto out;
1100
1101page_not_up_to_date:
1102                /* Get exclusive access to the page ... */
1103                if (lock_page_killable(page))
1104                        goto readpage_eio;
1105
1106page_not_up_to_date_locked:
1107                /* Did it get truncated before we got the lock? */
1108                if (!page->mapping) {
1109                        unlock_page(page);
1110                        page_cache_release(page);
1111                        continue;
1112                }
1113
1114                /* Did somebody else fill it already? */
1115                if (PageUptodate(page)) {
1116                        unlock_page(page);
1117                        goto page_ok;
1118                }
1119
1120readpage:
1121                /* Start the actual read. The read will unlock the page. */
1122                error = mapping->a_ops->readpage(filp, page);
1123
1124                if (unlikely(error)) {
1125                        if (error == AOP_TRUNCATED_PAGE) {
1126                                page_cache_release(page);
1127                                goto find_page;
1128                        }
1129                        goto readpage_error;
1130                }
1131
1132                if (!PageUptodate(page)) {
1133                        if (lock_page_killable(page))
1134                                goto readpage_eio;
1135                        if (!PageUptodate(page)) {
1136                                if (page->mapping == NULL) {
1137                                        /*
1138                                         * invalidate_inode_pages got it
1139                                         */
1140                                        unlock_page(page);
1141                                        page_cache_release(page);
1142                                        goto find_page;
1143                                }
1144                                unlock_page(page);
1145                                shrink_readahead_size_eio(filp, ra);
1146                                goto readpage_eio;
1147                        }
1148                        unlock_page(page);
1149                }
1150
1151                goto page_ok;
1152
1153readpage_eio:
1154                error = -EIO;
1155readpage_error:
1156                /* UHHUH! A synchronous read error occurred. Report it */
1157                desc->error = error;
1158                page_cache_release(page);
1159                goto out;
1160
1161no_cached_page:
1162                /*
1163                 * Ok, it wasn't cached, so we need to create a new
1164                 * page..
1165                 */
1166                page = page_cache_alloc_cold(mapping);
1167                if (!page) {
1168                        desc->error = -ENOMEM;
1169                        goto out;
1170                }
1171                error = add_to_page_cache_lru(page, mapping,
1172                                                index, GFP_KERNEL);
1173                if (error) {
1174                        page_cache_release(page);
1175                        if (error == -EEXIST)
1176                                goto find_page;
1177                        desc->error = error;
1178                        goto out;
1179                }
1180                goto readpage;
1181        }
1182
1183out:
1184        ra->prev_pos = prev_index;
1185        ra->prev_pos <<= PAGE_CACHE_SHIFT;
1186        ra->prev_pos |= prev_offset;
1187
1188        *ppos = ((loff_t)index << PAGE_CACHE_SHIFT) + offset;
1189        if (filp)
1190                file_accessed(filp);
1191}
1192
1193int file_read_actor(read_descriptor_t *desc, struct page *page,
1194                        unsigned long offset, unsigned long size)
1195{
1196        char *kaddr;
1197        unsigned long left, count = desc->count;
1198
1199        if (size > count)
1200                size = count;
1201
1202        /*
1203         * Faults on the destination of a read are common, so do it before
1204         * taking the kmap.
1205         */
1206        if (!fault_in_pages_writeable(desc->arg.buf, size)) {
1207                kaddr = kmap_atomic(page, KM_USER0);
1208                left = __copy_to_user_inatomic(desc->arg.buf,
1209                                                kaddr + offset, size);
1210                kunmap_atomic(kaddr, KM_USER0);
1211                if (left == 0)
1212                        goto success;
1213        }
1214
1215        /* Do it the slow way */
1216        kaddr = kmap(page);
1217        left = __copy_to_user(desc->arg.buf, kaddr + offset, size);
1218        kunmap(page);
1219
1220        if (left) {
1221                size -= left;
1222                desc->error = -EFAULT;
1223        }
1224success:
1225        desc->count = count - size;
1226        desc->written += size;
1227        desc->arg.buf += size;
1228        return size;
1229}
1230
1231/*
1232 * Performs necessary checks before doing a write
1233 * @iov:        io vector request
1234 * @nr_segs:    number of segments in the iovec
1235 * @count:      number of bytes to write
1236 * @access_flags: type of access: %VERIFY_READ or %VERIFY_WRITE
1237 *
1238 * Adjust number of segments and amount of bytes to write (nr_segs should be
1239 * properly initialized first). Returns appropriate error code that caller
1240 * should return or zero in case that write should be allowed.
1241 */
1242int generic_segment_checks(const struct iovec *iov,
1243                        unsigned long *nr_segs, size_t *count, int access_flags)
1244{
1245        unsigned long   seg;
1246        size_t cnt = 0;
1247        for (seg = 0; seg < *nr_segs; seg++) {
1248                const struct iovec *iv = &iov[seg];
1249
1250                /*
1251                 * If any segment has a negative length, or the cumulative
1252                 * length ever wraps negative then return -EINVAL.
1253                 */
1254                cnt += iv->iov_len;
1255                if (unlikely((ssize_t)(cnt|iv->iov_len) < 0))
1256                        return -EINVAL;
1257                if (access_ok(access_flags, iv->iov_base, iv->iov_len))
1258                        continue;
1259                if (seg == 0)
1260                        return -EFAULT;
1261                *nr_segs = seg;
1262                cnt -= iv->iov_len;     /* This segment is no good */
1263                break;
1264        }
1265        *count = cnt;
1266        return 0;
1267}
1268EXPORT_SYMBOL(generic_segment_checks);
1269
1270/**
1271 * generic_file_aio_read - generic filesystem read routine
1272 * @iocb:       kernel I/O control block
1273 * @iov:        io vector request
1274 * @nr_segs:    number of segments in the iovec
1275 * @pos:        current file position
1276 *
1277 * This is the "read()" routine for all filesystems
1278 * that can use the page cache directly.
1279 */
1280ssize_t
1281generic_file_aio_read(struct kiocb *iocb, const struct iovec *iov,
1282                unsigned long nr_segs, loff_t pos)
1283{
1284        struct file *filp = iocb->ki_filp;
1285        ssize_t retval;
1286        unsigned long seg;
1287        size_t count;
1288        loff_t *ppos = &iocb->ki_pos;
1289
1290        count = 0;
1291        retval = generic_segment_checks(iov, &nr_segs, &count, VERIFY_WRITE);
1292        if (retval)
1293                return retval;
1294
1295        /* coalesce the iovecs and go direct-to-BIO for O_DIRECT */
1296        if (filp->f_flags & O_DIRECT) {
1297                loff_t size;
1298                struct address_space *mapping;
1299                struct inode *inode;
1300
1301                mapping = filp->f_mapping;
1302                inode = mapping->host;
1303                if (!count)
1304                        goto out; /* skip atime */
1305                size = i_size_read(inode);
1306                if (pos < size) {
1307                        retval = filemap_write_and_wait_range(mapping, pos,
1308                                        pos + iov_length(iov, nr_segs) - 1);
1309                        if (!retval) {
1310                                retval = mapping->a_ops->direct_IO(READ, iocb,
1311                                                        iov, pos, nr_segs);
1312                        }
1313                        if (retval > 0)
1314                                *ppos = pos + retval;
1315                        if (retval) {
1316                                file_accessed(filp);
1317                                goto out;
1318                        }
1319                }
1320        }
1321
1322        for (seg = 0; seg < nr_segs; seg++) {
1323                read_descriptor_t desc;
1324
1325                desc.written = 0;
1326                desc.arg.buf = iov[seg].iov_base;
1327                desc.count = iov[seg].iov_len;
1328                if (desc.count == 0)
1329                        continue;
1330                desc.error = 0;
1331                do_generic_file_read(filp, ppos, &desc, file_read_actor);
1332                retval += desc.written;
1333                if (desc.error) {
1334                        retval = retval ?: desc.error;
1335                        break;
1336                }
1337                if (desc.count > 0)
1338                        break;
1339        }
1340out:
1341        return retval;
1342}
1343EXPORT_SYMBOL(generic_file_aio_read);
1344
1345static ssize_t
1346do_readahead(struct address_space *mapping, struct file *filp,
1347             pgoff_t index, unsigned long nr)
1348{
1349        if (!mapping || !mapping->a_ops || !mapping->a_ops->readpage)
1350                return -EINVAL;
1351
1352        force_page_cache_readahead(mapping, filp, index,
1353                                        max_sane_readahead(nr));
1354        return 0;
1355}
1356
1357SYSCALL_DEFINE(readahead)(int fd, loff_t offset, size_t count)
1358{
1359        ssize_t ret;
1360        struct file *file;
1361
1362        ret = -EBADF;
1363        file = fget(fd);
1364        if (file) {
1365                if (file->f_mode & FMODE_READ) {
1366                        struct address_space *mapping = file->f_mapping;
1367                        pgoff_t start = offset >> PAGE_CACHE_SHIFT;
1368                        pgoff_t end = (offset + count - 1) >> PAGE_CACHE_SHIFT;
1369                        unsigned long len = end - start + 1;
1370                        ret = do_readahead(mapping, file, start, len);
1371                }
1372                fput(file);
1373        }
1374        return ret;
1375}
1376#ifdef CONFIG_HAVE_SYSCALL_WRAPPERS
1377asmlinkage long SyS_readahead(long fd, loff_t offset, long count)
1378{
1379        return SYSC_readahead((int) fd, offset, (size_t) count);
1380}
1381SYSCALL_ALIAS(sys_readahead, SyS_readahead);
1382#endif
1383
1384#ifdef CONFIG_MMU
1385/**
1386 * page_cache_read - adds requested page to the page cache if not already there
1387 * @file:       file to read
1388 * @offset:     page index
1389 *
1390 * This adds the requested page to the page cache if it isn't already there,
1391 * and schedules an I/O to read in its contents from disk.
1392 */
1393static int page_cache_read(struct file *file, pgoff_t offset)
1394{
1395        struct address_space *mapping = file->f_mapping;
1396        struct page *page; 
1397        int ret;
1398
1399        do {
1400                page = page_cache_alloc_cold(mapping);
1401                if (!page)
1402                        return -ENOMEM;
1403
1404                ret = add_to_page_cache_lru(page, mapping, offset, GFP_KERNEL);
1405                if (ret == 0)
1406                        ret = mapping->a_ops->readpage(file, page);
1407                else if (ret == -EEXIST)
1408                        ret = 0; /* losing race to add is OK */
1409
1410                page_cache_release(page);
1411
1412        } while (ret == AOP_TRUNCATED_PAGE);
1413                
1414        return ret;
1415}
1416
1417#define MMAP_LOTSAMISS  (100)
1418
1419/**
1420 * filemap_fault - read in file data for page fault handling
1421 * @vma:        vma in which the fault was taken
1422 * @vmf:        struct vm_fault containing details of the fault
1423 *
1424 * filemap_fault() is invoked via the vma operations vector for a
1425 * mapped memory region to read in file data during a page fault.
1426 *
1427 * The goto's are kind of ugly, but this streamlines the normal case of having
1428 * it in the page cache, and handles the special cases reasonably without
1429 * having a lot of duplicated code.
1430 */
1431int filemap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1432{
1433        int error;
1434        struct file *file = vma->vm_file;
1435        struct address_space *mapping = file->f_mapping;
1436        struct file_ra_state *ra = &file->f_ra;
1437        struct inode *inode = mapping->host;
1438        struct page *page;
1439        pgoff_t size;
1440        int did_readaround = 0;
1441        int ret = 0;
1442
1443        size = (i_size_read(inode) + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
1444        if (vmf->pgoff >= size)
1445                return VM_FAULT_SIGBUS;
1446
1447        /* If we don't want any read-ahead, don't bother */
1448        if (VM_RandomReadHint(vma))
1449                goto no_cached_page;
1450
1451        /*
1452         * Do we have something in the page cache already?
1453         */
1454retry_find:
1455        page = find_lock_page(mapping, vmf->pgoff);
1456        /*
1457         * For sequential accesses, we use the generic readahead logic.
1458         */
1459        if (VM_SequentialReadHint(vma)) {
1460                if (!page) {
1461                        page_cache_sync_readahead(mapping, ra, file,
1462                                                           vmf->pgoff, 1);
1463                        page = find_lock_page(mapping, vmf->pgoff);
1464                        if (!page)
1465                                goto no_cached_page;
1466                }
1467                if (PageReadahead(page)) {
1468                        page_cache_async_readahead(mapping, ra, file, page,
1469                                                           vmf->pgoff, 1);
1470                }
1471        }
1472
1473        if (!page) {
1474                unsigned long ra_pages;
1475
1476                ra->mmap_miss++;
1477
1478                /*
1479                 * Do we miss much more than hit in this file? If so,
1480                 * stop bothering with read-ahead. It will only hurt.
1481                 */
1482                if (ra->mmap_miss > MMAP_LOTSAMISS)
1483                        goto no_cached_page;
1484
1485                /*
1486                 * To keep the pgmajfault counter straight, we need to
1487                 * check did_readaround, as this is an inner loop.
1488                 */
1489                if (!did_readaround) {
1490                        ret = VM_FAULT_MAJOR;
1491                        count_vm_event(PGMAJFAULT);
1492                }
1493                did_readaround = 1;
1494                ra_pages = max_sane_readahead(file->f_ra.ra_pages);
1495                if (ra_pages) {
1496                        pgoff_t start = 0;
1497
1498                        if (vmf->pgoff > ra_pages / 2)
1499                                start = vmf->pgoff - ra_pages / 2;
1500                        do_page_cache_readahead(mapping, file, start, ra_pages);
1501                }
1502                page = find_lock_page(mapping, vmf->pgoff);
1503                if (!page)
1504                        goto no_cached_page;
1505        }
1506
1507        if (!did_readaround)
1508                ra->mmap_miss--;
1509
1510        /*
1511         * We have a locked page in the page cache, now we need to check
1512         * that it's up-to-date. If not, it is going to be due to an error.
1513         */
1514        if (unlikely(!PageUptodate(page)))
1515                goto page_not_uptodate;
1516
1517        /* Must recheck i_size under page lock */
1518        size = (i_size_read(inode) + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
1519        if (unlikely(vmf->pgoff >= size)) {
1520                unlock_page(page);
1521                page_cache_release(page);
1522                return VM_FAULT_SIGBUS;
1523        }
1524
1525        /*
1526         * Found the page and have a reference on it.
1527         */
1528        mark_page_accessed(page);
1529        ra->prev_pos = (loff_t)page->index << PAGE_CACHE_SHIFT;
1530        vmf->page = page;
1531        return ret | VM_FAULT_LOCKED;
1532
1533no_cached_page:
1534        /*
1535         * We're only likely to ever get here if MADV_RANDOM is in
1536         * effect.
1537         */
1538        error = page_cache_read(file, vmf->pgoff);
1539
1540        /*
1541         * The page we want has now been added to the page cache.
1542         * In the unlikely event that someone removed it in the
1543         * meantime, we'll just come back here and read it again.
1544         */
1545        if (error >= 0)
1546                goto retry_find;
1547
1548        /*
1549         * An error return from page_cache_read can result if the
1550         * system is low on memory, or a problem occurs while trying
1551         * to schedule I/O.
1552         */
1553        if (error == -ENOMEM)
1554                return VM_FAULT_OOM;
1555        return VM_FAULT_SIGBUS;
1556
1557page_not_uptodate:
1558        /* IO error path */
1559        if (!did_readaround) {
1560                ret = VM_FAULT_MAJOR;
1561                count_vm_event(PGMAJFAULT);
1562        }
1563
1564        /*
1565         * Umm, take care of errors if the page isn't up-to-date.
1566         * Try to re-read it _once_. We do this synchronously,
1567         * because there really aren't any performance issues here
1568         * and we need to check for errors.
1569         */
1570        ClearPageError(page);
1571        error = mapping->a_ops->readpage(file, page);
1572        if (!error) {
1573                wait_on_page_locked(page);
1574                if (!PageUptodate(page))
1575                        error = -EIO;
1576        }
1577        page_cache_release(page);
1578
1579        if (!error || error == AOP_TRUNCATED_PAGE)
1580                goto retry_find;
1581
1582        /* Things didn't work out. Return zero to tell the mm layer so. */
1583        shrink_readahead_size_eio(file, ra);
1584        return VM_FAULT_SIGBUS;
1585}
1586EXPORT_SYMBOL(filemap_fault);
1587
1588struct vm_operations_struct generic_file_vm_ops = {
1589        .fault          = filemap_fault,
1590};
1591
1592/* This is used for a general mmap of a disk file */
1593
1594int generic_file_mmap(struct file * file, struct vm_area_struct * vma)
1595{
1596        struct address_space *mapping = file->f_mapping;
1597
1598        if (!mapping->a_ops->readpage)
1599                return -ENOEXEC;
1600        file_accessed(file);
1601        vma->vm_ops = &generic_file_vm_ops;
1602        vma->vm_flags |= VM_CAN_NONLINEAR;
1603        return 0;
1604}
1605
1606/*
1607 * This is for filesystems which do not implement ->writepage.
1608 */
1609int generic_file_readonly_mmap(struct file *file, struct vm_area_struct *vma)
1610{
1611        if ((vma->vm_flags & VM_SHARED) && (vma->vm_flags & VM_MAYWRITE))
1612                return -EINVAL;
1613        return generic_file_mmap(file, vma);
1614}
1615#else
1616int generic_file_mmap(struct file * file, struct vm_area_struct * vma)
1617{
1618        return -ENOSYS;
1619}
1620int generic_file_readonly_mmap(struct file * file, struct vm_area_struct * vma)
1621{
1622        return -ENOSYS;
1623}
1624#endif /* CONFIG_MMU */
1625
1626EXPORT_SYMBOL(generic_file_mmap);
1627EXPORT_SYMBOL(generic_file_readonly_mmap);
1628
1629static struct page *__read_cache_page(struct address_space *mapping,
1630                                pgoff_t index,
1631                                int (*filler)(void *,struct page*),
1632                                void *data)
1633{
1634        struct page *page;
1635        int err;
1636repeat:
1637        page = find_get_page(mapping, index);
1638        if (!page) {
1639                page = page_cache_alloc_cold(mapping);
1640                if (!page)
1641                        return ERR_PTR(-ENOMEM);
1642                err = add_to_page_cache_lru(page, mapping, index, GFP_KERNEL);
1643                if (unlikely(err)) {
1644                        page_cache_release(page);
1645                        if (err == -EEXIST)
1646                                goto repeat;
1647                        /* Presumably ENOMEM for radix tree node */
1648                        return ERR_PTR(err);
1649                }
1650                err = filler(data, page);
1651                if (err < 0) {
1652                        page_cache_release(page);
1653                        page = ERR_PTR(err);
1654                }
1655        }
1656        return page;
1657}
1658
1659/**
1660 * read_cache_page_async - read into page cache, fill it if needed
1661 * @mapping:    the page's address_space
1662 * @index:      the page index
1663 * @filler:     function to perform the read
1664 * @data:       destination for read data
1665 *
1666 * Same as read_cache_page, but don't wait for page to become unlocked
1667 * after submitting it to the filler.
1668 *
1669 * Read into the page cache. If a page already exists, and PageUptodate() is
1670 * not set, try to fill the page but don't wait for it to become unlocked.
1671 *
1672 * If the page does not get brought uptodate, return -EIO.
1673 */
1674struct page *read_cache_page_async(struct address_space *mapping,
1675                                pgoff_t index,
1676                                int (*filler)(void *,struct page*),
1677                                void *data)
1678{
1679        struct page *page;
1680        int err;
1681
1682retry:
1683        page = __read_cache_page(mapping, index, filler, data);
1684        if (IS_ERR(page))
1685                return page;
1686        if (PageUptodate(page))
1687                goto out;
1688
1689        lock_page(page);
1690        if (!page->mapping) {
1691                unlock_page(page);
1692                page_cache_release(page);
1693                goto retry;
1694        }
1695        if (PageUptodate(page)) {
1696                unlock_page(page);
1697                goto out;
1698        }
1699        err = filler(data, page);
1700        if (err < 0) {
1701                page_cache_release(page);
1702                return ERR_PTR(err);
1703        }
1704out:
1705        mark_page_accessed(page);
1706        return page;
1707}
1708EXPORT_SYMBOL(read_cache_page_async);
1709
1710/**
1711 * read_cache_page - read into page cache, fill it if needed
1712 * @mapping:    the page's address_space
1713 * @index:      the page index
1714 * @filler:     function to perform the read
1715 * @data:       destination for read data
1716 *
1717 * Read into the page cache. If a page already exists, and PageUptodate() is
1718 * not set, try to fill the page then wait for it to become unlocked.
1719 *
1720 * If the page does not get brought uptodate, return -EIO.
1721 */
1722struct page *read_cache_page(struct address_space *mapping,
1723                                pgoff_t index,
1724                                int (*filler)(void *,struct page*),
1725                                void *data)
1726{
1727        struct page *page;
1728
1729        page = read_cache_page_async(mapping, index, filler, data);
1730        if (IS_ERR(page))
1731                goto out;
1732        wait_on_page_locked(page);
1733        if (!PageUptodate(page)) {
1734                page_cache_release(page);
1735                page = ERR_PTR(-EIO);
1736        }
1737 out:
1738        return page;
1739}
1740EXPORT_SYMBOL(read_cache_page);
1741
1742/*
1743 * The logic we want is
1744 *
1745 *      if suid or (sgid and xgrp)
1746 *              remove privs
1747 */
1748int should_remove_suid(struct dentry *dentry)
1749{
1750        mode_t mode = dentry->d_inode->i_mode;
1751        int kill = 0;
1752
1753        /* suid always must be killed */
1754        if (unlikely(mode & S_ISUID))
1755                kill = ATTR_KILL_SUID;
1756
1757        /*
1758         * sgid without any exec bits is just a mandatory locking mark; leave
1759         * it alone.  If some exec bits are set, it's a real sgid; kill it.
1760         */
1761        if (unlikely((mode & S_ISGID) && (mode & S_IXGRP)))
1762                kill |= ATTR_KILL_SGID;
1763
1764        if (unlikely(kill && !capable(CAP_FSETID)))
1765                return kill;
1766
1767        return 0;
1768}
1769EXPORT_SYMBOL(should_remove_suid);
1770
1771static int __remove_suid(struct dentry *dentry, int kill)
1772{
1773        struct iattr newattrs;
1774
1775        newattrs.ia_valid = ATTR_FORCE | kill;
1776        return notify_change(dentry, &newattrs);
1777}
1778
1779int file_remove_suid(struct file *file)
1780{
1781        struct dentry *dentry = file->f_path.dentry;
1782        int killsuid = should_remove_suid(dentry);
1783        int killpriv = security_inode_need_killpriv(dentry);
1784        int error = 0;
1785
1786        if (killpriv < 0)
1787                return killpriv;
1788        if (killpriv)
1789                error = security_inode_killpriv(dentry);
1790        if (!error && killsuid)
1791                error = __remove_suid(dentry, killsuid);
1792
1793        return error;
1794}
1795EXPORT_SYMBOL(file_remove_suid);
1796
1797static size_t __iovec_copy_from_user_inatomic(char *vaddr,
1798                        const struct iovec *iov, size_t base, size_t bytes)
1799{
1800        size_t copied = 0, left = 0;
1801
1802        while (bytes) {
1803                char __user *buf = iov->iov_base + base;
1804                int copy = min(bytes, iov->iov_len - base);
1805
1806                base = 0;
1807                left = __copy_from_user_inatomic_nocache(vaddr, buf, copy);
1808                copied += copy;
1809                bytes -= copy;
1810                vaddr += copy;
1811                iov++;
1812
1813                if (unlikely(left))
1814                        break;
1815        }
1816        return copied - left;
1817}
1818
1819/*
1820 * Copy as much as we can into the page and return the number of bytes which
1821 * were sucessfully copied.  If a fault is encountered then return the number of
1822 * bytes which were copied.
1823 */
1824size_t iov_iter_copy_from_user_atomic(struct page *page,
1825                struct iov_iter *i, unsigned long offset, size_t bytes)
1826{
1827        char *kaddr;
1828        size_t copied;
1829
1830        BUG_ON(!in_atomic());
1831        kaddr = kmap_atomic(page, KM_USER0);
1832        if (likely(i->nr_segs == 1)) {
1833                int left;
1834                char __user *buf = i->iov->iov_base + i->iov_offset;
1835                left = __copy_from_user_inatomic_nocache(kaddr + offset,
1836                                                        buf, bytes);
1837                copied = bytes - left;
1838        } else {
1839                copied = __iovec_copy_from_user_inatomic(kaddr + offset,
1840                                                i->iov, i->iov_offset, bytes);
1841        }
1842        kunmap_atomic(kaddr, KM_USER0);
1843
1844        return copied;
1845}
1846EXPORT_SYMBOL(iov_iter_copy_from_user_atomic);
1847
1848/*
1849 * This has the same sideeffects and return value as
1850 * iov_iter_copy_from_user_atomic().
1851 * The difference is that it attempts to resolve faults.
1852 * Page must not be locked.
1853 */
1854size_t iov_iter_copy_from_user(struct page *page,
1855                struct iov_iter *i, unsigned long offset, size_t bytes)
1856{
1857        char *kaddr;
1858        size_t copied;
1859
1860        kaddr = kmap(page);
1861        if (likely(i->nr_segs == 1)) {
1862                int left;
1863                char __user *buf = i->iov->iov_base + i->iov_offset;
1864                left = __copy_from_user_nocache(kaddr + offset, buf, bytes);
1865                copied = bytes - left;
1866        } else {
1867                copied = __iovec_copy_from_user_inatomic(kaddr + offset,
1868                                                i->iov, i->iov_offset, bytes);
1869        }
1870        kunmap(page);
1871        return copied;
1872}
1873EXPORT_SYMBOL(iov_iter_copy_from_user);
1874
1875void iov_iter_advance(struct iov_iter *i, size_t bytes)
1876{
1877        BUG_ON(i->count < bytes);
1878
1879        if (likely(i->nr_segs == 1)) {
1880                i->iov_offset += bytes;
1881                i->count -= bytes;
1882        } else {
1883                const struct iovec *iov = i->iov;
1884                size_t base = i->iov_offset;
1885
1886                /*
1887                 * The !iov->iov_len check ensures we skip over unlikely
1888                 * zero-length segments (without overruning the iovec).
1889                 */
1890                while (bytes || unlikely(i->count && !iov->iov_len)) {
1891                        int copy;
1892
1893                        copy = min(bytes, iov->iov_len - base);
1894                        BUG_ON(!i->count || i->count < copy);
1895                        i->count -= copy;
1896                        bytes -= copy;
1897                        base += copy;
1898                        if (iov->iov_len == base) {
1899                                iov++;
1900                                base = 0;
1901                        }
1902                }
1903                i->iov = iov;
1904                i->iov_offset = base;
1905        }
1906}
1907EXPORT_SYMBOL(iov_iter_advance);
1908
1909/*
1910 * Fault in the first iovec of the given iov_iter, to a maximum length
1911 * of bytes. Returns 0 on success, or non-zero if the memory could not be
1912 * accessed (ie. because it is an invalid address).
1913 *
1914 * writev-intensive code may want this to prefault several iovecs -- that
1915 * would be possible (callers must not rely on the fact that _only_ the
1916 * first iovec will be faulted with the current implementation).
1917 */
1918int iov_iter_fault_in_readable(struct iov_iter *i, size_t bytes)
1919{
1920        char __user *buf = i->iov->iov_base + i->iov_offset;
1921        bytes = min(bytes, i->iov->iov_len - i->iov_offset);
1922        return fault_in_pages_readable(buf, bytes);
1923}
1924EXPORT_SYMBOL(iov_iter_fault_in_readable);
1925
1926/*
1927 * Return the count of just the current iov_iter segment.
1928 */
1929size_t iov_iter_single_seg_count(struct iov_iter *i)
1930{
1931        const struct iovec *iov = i->iov;
1932        if (i->nr_segs == 1)
1933                return i->count;
1934        else
1935                return min(i->count, iov->iov_len - i->iov_offset);
1936}
1937EXPORT_SYMBOL(iov_iter_single_seg_count);
1938
1939/*
1940 * Performs necessary checks before doing a write
1941 *
1942 * Can adjust writing position or amount of bytes to write.
1943 * Returns appropriate error code that caller should return or
1944 * zero in case that write should be allowed.
1945 */
1946inline int generic_write_checks(struct file *file, loff_t *pos, size_t *count, int isblk)
1947{
1948        struct inode *inode = file->f_mapping->host;
1949        unsigned long limit = current->signal->rlim[RLIMIT_FSIZE].rlim_cur;
1950
1951        if (unlikely(*pos < 0))
1952                return -EINVAL;
1953
1954        if (!isblk) {
1955                /* FIXME: this is for backwards compatibility with 2.4 */
1956                if (file->f_flags & O_APPEND)
1957                        *pos = i_size_read(inode);
1958
1959                if (limit != RLIM_INFINITY) {
1960                        if (*pos >= limit) {
1961                                send_sig(SIGXFSZ, current, 0);
1962                                return -EFBIG;
1963                        }
1964                        if (*count > limit - (typeof(limit))*pos) {
1965                                *count = limit - (typeof(limit))*pos;
1966                        }
1967                }
1968        }
1969
1970        /*
1971         * LFS rule
1972         */
1973        if (unlikely(*pos + *count > MAX_NON_LFS &&
1974                                !(file->f_flags & O_LARGEFILE))) {
1975                if (*pos >= MAX_NON_LFS) {
1976                        return -EFBIG;
1977                }
1978                if (*count > MAX_NON_LFS - (unsigned long)*pos) {
1979                        *count = MAX_NON_LFS - (unsigned long)*pos;
1980                }
1981        }
1982
1983        /*
1984         * Are we about to exceed the fs block limit ?
1985         *
1986         * If we have written data it becomes a short write.  If we have
1987         * exceeded without writing data we send a signal and return EFBIG.
1988         * Linus frestrict idea will clean these up nicely..
1989         */
1990        if (likely(!isblk)) {
1991                if (unlikely(*pos >= inode->i_sb->s_maxbytes)) {
1992                        if (*count || *pos > inode->i_sb->s_maxbytes) {
1993                                return -EFBIG;
1994                        }
1995                        /* zero-length writes at ->s_maxbytes are OK */
1996                }
1997
1998                if (unlikely(*pos + *count > inode->i_sb->s_maxbytes))
1999                        *count = inode->i_sb->s_maxbytes - *pos;
2000        } else {
2001#ifdef CONFIG_BLOCK
2002                loff_t isize;
2003                if (bdev_read_only(I_BDEV(inode)))
2004                        return -EPERM;
2005                isize = i_size_read(inode);
2006                if (*pos >= isize) {
2007                        if (*count || *pos > isize)
2008                                return -ENOSPC;
2009                }
2010
2011                if (*pos + *count > isize)
2012                        *count = isize - *pos;
2013#else
2014                return -EPERM;
2015#endif
2016        }
2017        return 0;
2018}
2019EXPORT_SYMBOL(generic_write_checks);
2020
2021int pagecache_write_begin(struct file *file, struct address_space *mapping,
2022                                loff_t pos, unsigned len, unsigned flags,
2023                                struct page **pagep, void **fsdata)
2024{
2025        const struct address_space_operations *aops = mapping->a_ops;
2026
2027        if (aops->write_begin) {
2028                return aops->write_begin(file, mapping, pos, len, flags,
2029                                                        pagep, fsdata);
2030        } else {
2031                int ret;
2032                pgoff_t index = pos >> PAGE_CACHE_SHIFT;
2033                unsigned offset = pos & (PAGE_CACHE_SIZE - 1);
2034                struct inode *inode = mapping->host;
2035                struct page *page;
2036again:
2037                page = grab_cache_page_write_begin(mapping, index, flags);
2038                *pagep = page;
2039                if (!page)
2040                        return -ENOMEM;
2041
2042                if (flags & AOP_FLAG_UNINTERRUPTIBLE && !PageUptodate(page)) {
2043                        /*
2044                         * There is no way to resolve a short write situation
2045                         * for a !Uptodate page (except by double copying in
2046                         * the caller done by generic_perform_write_2copy).
2047                         *
2048                         * Instead, we have to bring it uptodate here.
2049                         */
2050                        ret = aops->readpage(file, page);
2051                        page_cache_release(page);
2052                        if (ret) {
2053                                if (ret == AOP_TRUNCATED_PAGE)
2054                                        goto again;
2055                                return ret;
2056                        }
2057                        goto again;
2058                }
2059
2060                ret = aops->prepare_write(file, page, offset, offset+len);
2061                if (ret) {
2062                        unlock_page(page);
2063                        page_cache_release(page);
2064                        if (pos + len > inode->i_size)
2065                                vmtruncate(inode, inode->i_size);
2066                }
2067                return ret;
2068        }
2069}
2070EXPORT_SYMBOL(pagecache_write_begin);
2071
2072int pagecache_write_end(struct file *file, struct address_space *mapping,
2073                                loff_t pos, unsigned len, unsigned copied,
2074                                struct page *page, void *fsdata)
2075{
2076        const struct address_space_operations *aops = mapping->a_ops;
2077        int ret;
2078
2079        if (aops->write_end) {
2080                mark_page_accessed(page);
2081                ret = aops->write_end(file, mapping, pos, len, copied,
2082                                                        page, fsdata);
2083        } else {
2084                unsigned offset = pos & (PAGE_CACHE_SIZE - 1);
2085                struct inode *inode = mapping->host;
2086
2087                flush_dcache_page(page);
2088                ret = aops->commit_write(file, page, offset, offset+len);
2089                unlock_page(page);
2090                mark_page_accessed(page);
2091                page_cache_release(page);
2092
2093                if (ret < 0) {
2094                        if (pos + len > inode->i_size)
2095                                vmtruncate(inode, inode->i_size);
2096                } else if (ret > 0)
2097                        ret = min_t(size_t, copied, ret);
2098                else
2099                        ret = copied;
2100        }
2101
2102        return ret;
2103}
2104EXPORT_SYMBOL(pagecache_write_end);
2105
2106ssize_t
2107generic_file_direct_write(struct kiocb *iocb, const struct iovec *iov,
2108                unsigned long *nr_segs, loff_t pos, loff_t *ppos,
2109                size_t count, size_t ocount)
2110{
2111        struct file     *file = iocb->ki_filp;
2112        struct address_space *mapping = file->f_mapping;
2113        struct inode    *inode = mapping->host;
2114        ssize_t         written;
2115        size_t          write_len;
2116        pgoff_t         end;
2117
2118        if (count != ocount)
2119                *nr_segs = iov_shorten((struct iovec *)iov, *nr_segs, count);
2120
2121        write_len = iov_length(iov, *nr_segs);
2122        end = (pos + write_len - 1) >> PAGE_CACHE_SHIFT;
2123
2124        written = filemap_write_and_wait_range(mapping, pos, pos + write_len - 1);
2125        if (written)
2126                goto out;
2127
2128        /*
2129         * After a write we want buffered reads to be sure to go to disk to get
2130         * the new data.  We invalidate clean cached page from the region we're
2131         * about to write.  We do this *before* the write so that we can return
2132         * without clobbering -EIOCBQUEUED from ->direct_IO().
2133         */
2134        if (mapping->nrpages) {
2135                written = invalidate_inode_pages2_range(mapping,
2136                                        pos >> PAGE_CACHE_SHIFT, end);
2137                /*
2138                 * If a page can not be invalidated, return 0 to fall back
2139                 * to buffered write.
2140                 */
2141                if (written) {
2142                        if (written == -EBUSY)
2143                                return 0;
2144                        goto out;
2145                }
2146        }
2147
2148        written = mapping->a_ops->direct_IO(WRITE, iocb, iov, pos, *nr_segs);
2149
2150        /*
2151         * Finally, try again to invalidate clean pages which might have been
2152         * cached by non-direct readahead, or faulted in by get_user_pages()
2153         * if the source of the write was an mmap'ed region of the file
2154         * we're writing.  Either one is a pretty crazy thing to do,
2155         * so we don't support it 100%.  If this invalidation
2156         * fails, tough, the write still worked...
2157         */
2158        if (mapping->nrpages) {
2159                invalidate_inode_pages2_range(mapping,
2160                                              pos >> PAGE_CACHE_SHIFT, end);
2161        }
2162
2163        if (written > 0) {
2164                loff_t end = pos + written;
2165                if (end > i_size_read(inode) && !S_ISBLK(inode->i_mode)) {
2166                        i_size_write(inode,  end);
2167                        mark_inode_dirty(inode);
2168                }
2169                *ppos = end;
2170        }
2171
2172        /*
2173         * Sync the fs metadata but not the minor inode changes and
2174         * of course not the data as we did direct DMA for the IO.
2175         * i_mutex is held, which protects generic_osync_inode() from
2176         * livelocking.  AIO O_DIRECT ops attempt to sync metadata here.
2177         */
2178out:
2179        if ((written >= 0 || written == -EIOCBQUEUED) &&
2180            ((file->f_flags & O_SYNC) || IS_SYNC(inode))) {
2181                int err = generic_osync_inode(inode, mapping, OSYNC_METADATA);
2182                if (err < 0)
2183                        written = err;
2184        }
2185        return written;
2186}
2187EXPORT_SYMBOL(generic_file_direct_write);
2188
2189/*
2190 * Find or create a page at the given pagecache position. Return the locked
2191 * page. This function is specifically for buffered writes.
2192 */
2193struct page *grab_cache_page_write_begin(struct address_space *mapping,
2194                                        pgoff_t index, unsigned flags)
2195{
2196        int status;
2197        struct page *page;
2198        gfp_t gfp_notmask = 0;
2199        if (flags & AOP_FLAG_NOFS)
2200                gfp_notmask = __GFP_FS;
2201repeat:
2202        page = find_lock_page(mapping, index);
2203        if (likely(page))
2204                return page;
2205
2206        page = __page_cache_alloc(mapping_gfp_mask(mapping) & ~gfp_notmask);
2207        if (!page)
2208                return NULL;
2209        status = add_to_page_cache_lru(page, mapping, index,
2210                                                GFP_KERNEL & ~gfp_notmask);
2211        if (unlikely(status)) {
2212                page_cache_release(page);
2213                if (status == -EEXIST)
2214                        goto repeat;
2215                return NULL;
2216        }
2217        return page;
2218}
2219EXPORT_SYMBOL(grab_cache_page_write_begin);
2220
2221static ssize_t generic_perform_write_2copy(struct file *file,
2222                                struct iov_iter *i, loff_t pos)
2223{
2224        struct address_space *mapping = file->f_mapping;
2225        const struct address_space_operations *a_ops = mapping->a_ops;
2226        struct inode *inode = mapping->host;
2227        long status = 0;
2228        ssize_t written = 0;
2229
2230        do {
2231                struct page *src_page;
2232                struct page *page;
2233                pgoff_t index;          /* Pagecache index for current page */
2234                unsigned long offset;   /* Offset into pagecache page */
2235                unsigned long bytes;    /* Bytes to write to page */
2236                size_t copied;          /* Bytes copied from user */
2237
2238                offset = (pos & (PAGE_CACHE_SIZE - 1));
2239                index = pos >> PAGE_CACHE_SHIFT;
2240                bytes = min_t(unsigned long, PAGE_CACHE_SIZE - offset,
2241                                                iov_iter_count(i));
2242
2243                /*
2244                 * a non-NULL src_page indicates that we're doing the
2245                 * copy via get_user_pages and kmap.
2246                 */
2247                src_page = NULL;
2248
2249                /*
2250                 * Bring in the user page that we will copy from _first_.
2251                 * Otherwise there's a nasty deadlock on copying from the
2252                 * same page as we're writing to, without it being marked
2253                 * up-to-date.
2254                 *
2255                 * Not only is this an optimisation, but it is also required
2256                 * to check that the address is actually valid, when atomic
2257                 * usercopies are used, below.
2258                 */
2259                if (unlikely(iov_iter_fault_in_readable(i, bytes))) {
2260                        status = -EFAULT;
2261                        break;
2262                }
2263
2264                page = grab_cache_page_write_begin(mapping, index, 0);
2265                if (!page) {
2266                        status = -ENOMEM;
2267                        break;
2268                }
2269
2270                /*
2271                 * non-uptodate pages cannot cope with short copies, and we
2272                 * cannot take a pagefault with the destination page locked.
2273                 * So pin the source page to copy it.
2274                 */
2275                if (!PageUptodate(page) && !segment_eq(get_fs(), KERNEL_DS)) {
2276                        unlock_page(page);
2277
2278                        src_page = alloc_page(GFP_KERNEL);
2279                        if (!src_page) {
2280                                page_cache_release(page);
2281                                status = -ENOMEM;
2282                                break;
2283                        }
2284
2285                        /*
2286                         * Cannot get_user_pages with a page locked for the
2287                         * same reason as we can't take a page fault with a
2288                         * page locked (as explained below).
2289                         */
2290                        copied = iov_iter_copy_from_user(src_page, i,
2291                                                                offset, bytes);
2292                        if (unlikely(copied == 0)) {
2293                                status = -EFAULT;
2294                                page_cache_release(page);
2295                                page_cache_release(src_page);
2296                                break;
2297                        }
2298                        bytes = copied;
2299
2300                        lock_page(page);
2301                        /*
2302                         * Can't handle the page going uptodate here, because
2303                         * that means we would use non-atomic usercopies, which
2304                         * zero out the tail of the page, which can cause
2305                         * zeroes to become transiently visible. We could just
2306                         * use a non-zeroing copy, but the APIs aren't too
2307                         * consistent.
2308                         */
2309                        if (unlikely(!page->mapping || PageUptodate(page))) {
2310                                unlock_page(page);
2311                                page_cache_release(page);
2312                                page_cache_release(src_page);
2313                                continue;
2314                        }
2315                }
2316
2317                status = a_ops->prepare_write(file, page, offset, offset+bytes);
2318                if (unlikely(status))
2319                        goto fs_write_aop_error;
2320
2321                if (!src_page) {
2322                        /*
2323                         * Must not enter the pagefault handler here, because
2324                         * we hold the page lock, so we might recursively
2325                         * deadlock on the same lock, or get an ABBA deadlock
2326                         * against a different lock, or against the mmap_sem
2327                         * (which nests outside the page lock).  So increment
2328                         * preempt count, and use _atomic usercopies.
2329                         *
2330                         * The page is uptodate so we are OK to encounter a
2331                         * short copy: if unmodified parts of the page are
2332                         * marked dirty and written out to disk, it doesn't
2333                         * really matter.
2334                         */
2335                        pagefault_disable();
2336                        copied = iov_iter_copy_from_user_atomic(page, i,
2337                                                                offset, bytes);
2338                        pagefault_enable();
2339                } else {
2340                        void *src, *dst;
2341                        src = kmap_atomic(src_page, KM_USER0);
2342                        dst = kmap_atomic(page, KM_USER1);
2343                        memcpy(dst + offset, src + offset, bytes);
2344                        kunmap_atomic(dst, KM_USER1);
2345                        kunmap_atomic(src, KM_USER0);
2346                        copied = bytes;
2347                }
2348                flush_dcache_page(page);
2349
2350                status = a_ops->commit_write(file, page, offset, offset+bytes);
2351                if (unlikely(status < 0))
2352                        goto fs_write_aop_error;
2353                if (unlikely(status > 0)) /* filesystem did partial write */
2354                        copied = min_t(size_t, copied, status);
2355
2356                unlock_page(page);
2357                mark_page_accessed(page);
2358                page_cache_release(page);
2359                if (src_page)
2360                        page_cache_release(src_page);
2361
2362                iov_iter_advance(i, copied);
2363                pos += copied;
2364                written += copied;
2365
2366                balance_dirty_pages_ratelimited(mapping);
2367                cond_resched();
2368                continue;
2369
2370fs_write_aop_error:
2371                unlock_page(page);
2372                page_cache_release(page);
2373                if (src_page)
2374                        page_cache_release(src_page);
2375
2376                /*
2377                 * prepare_write() may have instantiated a few blocks
2378                 * outside i_size.  Trim these off again. Don't need
2379                 * i_size_read because we hold i_mutex.
2380                 */
2381                if (pos + bytes > inode->i_size)
2382                        vmtruncate(inode, inode->i_size);
2383                break;
2384        } while (iov_iter_count(i));
2385
2386        return written ? written : status;
2387}
2388
2389static ssize_t generic_perform_write(struct file *file,
2390                                struct iov_iter *i, loff_t pos)
2391{
2392        struct address_space *mapping = file->f_mapping;
2393        const struct address_space_operations *a_ops = mapping->a_ops;
2394        long status = 0;
2395        ssize_t written = 0;
2396        unsigned int flags = 0;
2397
2398        /*
2399         * Copies from kernel address space cannot fail (NFSD is a big user).
2400         */
2401        if (segment_eq(get_fs(), KERNEL_DS))
2402                flags |= AOP_FLAG_UNINTERRUPTIBLE;
2403
2404        do {
2405                struct page *page;
2406                pgoff_t index;          /* Pagecache index for current page */
2407                unsigned long offset;   /* Offset into pagecache page */
2408                unsigned long bytes;    /* Bytes to write to page */
2409                size_t copied;          /* Bytes copied from user */
2410                void *fsdata;
2411
2412                offset = (pos & (PAGE_CACHE_SIZE - 1));
2413                index = pos >> PAGE_CACHE_SHIFT;
2414                bytes = min_t(unsigned long, PAGE_CACHE_SIZE - offset,
2415                                                iov_iter_count(i));
2416
2417again:
2418
2419                /*
2420                 * Bring in the user page that we will copy from _first_.
2421                 * Otherwise there's a nasty deadlock on copying from the
2422                 * same page as we're writing to, without it being marked
2423                 * up-to-date.
2424                 *
2425                 * Not only is this an optimisation, but it is also required
2426                 * to check that the address is actually valid, when atomic
2427                 * usercopies are used, below.
2428                 */
2429                if (unlikely(iov_iter_fault_in_readable(i, bytes))) {
2430                        status = -EFAULT;
2431                        break;
2432                }
2433
2434                status = a_ops->write_begin(file, mapping, pos, bytes, flags,
2435                                                &page, &fsdata);
2436                if (unlikely(status))
2437                        break;
2438
2439                pagefault_disable();
2440                copied = iov_iter_copy_from_user_atomic(page, i, offset, bytes);
2441                pagefault_enable();
2442                flush_dcache_page(page);
2443
2444                mark_page_accessed(page);
2445                status = a_ops->write_end(file, mapping, pos, bytes, copied,
2446                                                page, fsdata);
2447                if (unlikely(status < 0))
2448                        break;
2449                copied = status;
2450
2451                cond_resched();
2452
2453                iov_iter_advance(i, copied);
2454                if (unlikely(copied == 0)) {
2455                        /*
2456                         * If we were unable to copy any data at all, we must
2457                         * fall back to a single segment length write.
2458                         *
2459                         * If we didn't fallback here, we could livelock
2460                         * because not all segments in the iov can be copied at
2461                         * once without a pagefault.
2462                         */
2463                        bytes = min_t(unsigned long, PAGE_CACHE_SIZE - offset,
2464                                                iov_iter_single_seg_count(i));
2465                        goto again;
2466                }
2467                pos += copied;
2468                written += copied;
2469
2470                balance_dirty_pages_ratelimited(mapping);
2471
2472        } while (iov_iter_count(i));
2473
2474        return written ? written : status;
2475}
2476
2477ssize_t
2478generic_file_buffered_write(struct kiocb *iocb, const struct iovec *iov,
2479                unsigned long nr_segs, loff_t pos, loff_t *ppos,
2480                size_t count, ssize_t written)
2481{
2482        struct file *file = iocb->ki_filp;
2483        struct address_space *mapping = file->f_mapping;
2484        const struct address_space_operations *a_ops = mapping->a_ops;
2485        struct inode *inode = mapping->host;
2486        ssize_t status;
2487        struct iov_iter i;
2488
2489        iov_iter_init(&i, iov, nr_segs, count, written);
2490        if (a_ops->write_begin)
2491                status = generic_perform_write(file, &i, pos);
2492        else
2493                status = generic_perform_write_2copy(file, &i, pos);
2494
2495        if (likely(status >= 0)) {
2496                written += status;
2497                *ppos = pos + status;
2498
2499                /*
2500                 * For now, when the user asks for O_SYNC, we'll actually give
2501                 * O_DSYNC
2502                 */
2503                if (unlikely((file->f_flags & O_SYNC) || IS_SYNC(inode))) {
2504                        if (!a_ops->writepage || !is_sync_kiocb(iocb))
2505                                status = generic_osync_inode(inode, mapping,
2506                                                OSYNC_METADATA|OSYNC_DATA);
2507                }
2508        }
2509        
2510        /*
2511         * If we get here for O_DIRECT writes then we must have fallen through
2512         * to buffered writes (block instantiation inside i_size).  So we sync
2513         * the file data here, to try to honour O_DIRECT expectations.
2514         */
2515        if (unlikely(file->f_flags & O_DIRECT) && written)
2516                status = filemap_write_and_wait_range(mapping,
2517                                        pos, pos + written - 1);
2518
2519        return written ? written : status;
2520}
2521EXPORT_SYMBOL(generic_file_buffered_write);
2522
2523static ssize_t
2524__generic_file_aio_write_nolock(struct kiocb *iocb, const struct iovec *iov,
2525                                unsigned long nr_segs, loff_t *ppos)
2526{
2527        struct file *file = iocb->ki_filp;
2528        struct address_space * mapping = file->f_mapping;
2529        size_t ocount;          /* original count */
2530        size_t count;           /* after file limit checks */
2531        struct inode    *inode = mapping->host;
2532        loff_t          pos;
2533        ssize_t         written;
2534        ssize_t         err;
2535
2536        ocount = 0;
2537        err = generic_segment_checks(iov, &nr_segs, &ocount, VERIFY_READ);
2538        if (err)
2539                return err;
2540
2541        count = ocount;
2542        pos = *ppos;
2543
2544        vfs_check_frozen(inode->i_sb, SB_FREEZE_WRITE);
2545
2546        /* We can write back this queue in page reclaim */
2547        current->backing_dev_info = mapping->backing_dev_info;
2548        written = 0;
2549
2550        err = generic_write_checks(file, &pos, &count, S_ISBLK(inode->i_mode));
2551        if (err)
2552                goto out;
2553
2554        if (count == 0)
2555                goto out;
2556
2557        err = file_remove_suid(file);
2558        if (err)
2559                goto out;
2560
2561        file_update_time(file);
2562
2563        /* coalesce the iovecs and go direct-to-BIO for O_DIRECT */
2564        if (unlikely(file->f_flags & O_DIRECT)) {
2565                loff_t endbyte;
2566                ssize_t written_buffered;
2567
2568                written = generic_file_direct_write(iocb, iov, &nr_segs, pos,
2569                                                        ppos, count, ocount);
2570                if (written < 0 || written == count)
2571                        goto out;
2572                /*
2573                 * direct-io write to a hole: fall through to buffered I/O
2574                 * for completing the rest of the request.
2575                 */
2576                pos += written;
2577                count -= written;
2578                written_buffered = generic_file_buffered_write(iocb, iov,
2579                                                nr_segs, pos, ppos, count,
2580                                                written);
2581                /*
2582                 * If generic_file_buffered_write() retuned a synchronous error
2583                 * then we want to return the number of bytes which were
2584                 * direct-written, or the error code if that was zero.  Note
2585                 * that this differs from normal direct-io semantics, which
2586                 * will return -EFOO even if some bytes were written.
2587                 */
2588                if (written_buffered < 0) {
2589                        err = written_buffered;
2590                        goto out;
2591                }
2592
2593                /*
2594                 * We need to ensure that the page cache pages are written to
2595                 * disk and invalidated to preserve the expected O_DIRECT
2596                 * semantics.
2597                 */
2598                endbyte = pos + written_buffered - written - 1;
2599                err = do_sync_mapping_range(file->f_mapping, pos, endbyte,
2600                                            SYNC_FILE_RANGE_WAIT_BEFORE|
2601                                            SYNC_FILE_RANGE_WRITE|
2602                                            SYNC_FILE_RANGE_WAIT_AFTER);
2603                if (err == 0) {
2604                        written = written_buffered;
2605                        invalidate_mapping_pages(mapping,
2606                                                 pos >> PAGE_CACHE_SHIFT,
2607                                                 endbyte >> PAGE_CACHE_SHIFT);
2608                } else {
2609                        /*
2610                         * We don't know how much we wrote, so just return
2611                         * the number of bytes which were direct-written
2612                         */
2613                }
2614        } else {
2615                written = generic_file_buffered_write(iocb, iov, nr_segs,
2616                                pos, ppos, count, written);
2617        }
2618out:
2619        current->backing_dev_info = NULL;
2620        return written ? written : err;
2621}
2622
2623ssize_t generic_file_aio_write_nolock(struct kiocb *iocb,
2624                const struct iovec *iov, unsigned long nr_segs, loff_t pos)
2625{
2626        struct file *file = iocb->ki_filp;
2627        struct address_space *mapping = file->f_mapping;
2628        struct inode *inode = mapping->host;
2629        ssize_t ret;
2630
2631        BUG_ON(iocb->ki_pos != pos);
2632
2633        ret = __generic_file_aio_write_nolock(iocb, iov, nr_segs,
2634                        &iocb->ki_pos);
2635
2636        if (ret > 0 && ((file->f_flags & O_SYNC) || IS_SYNC(inode))) {
2637                ssize_t err;
2638
2639                err = sync_page_range_nolock(inode, mapping, pos, ret);
2640                if (err < 0)
2641                        ret = err;
2642        }
2643        return ret;
2644}
2645EXPORT_SYMBOL(generic_file_aio_write_nolock);
2646
2647ssize_t generic_file_aio_write(struct kiocb *iocb, const struct iovec *iov,
2648                unsigned long nr_segs, loff_t pos)
2649{
2650        struct file *file = iocb->ki_filp;
2651        struct address_space *mapping = file->f_mapping;
2652        struct inode *inode = mapping->host;
2653        ssize_t ret;
2654
2655        BUG_ON(iocb->ki_pos != pos);
2656
2657        mutex_lock(&inode->i_mutex);
2658        ret = __generic_file_aio_write_nolock(iocb, iov, nr_segs,
2659                        &iocb->ki_pos);
2660        mutex_unlock(&inode->i_mutex);
2661
2662        if (ret > 0 && ((file->f_flags & O_SYNC) || IS_SYNC(inode))) {
2663                ssize_t err;
2664
2665                err = sync_page_range(inode, mapping, pos, ret);
2666                if (err < 0)
2667                        ret = err;
2668        }
2669        return ret;
2670}
2671EXPORT_SYMBOL(generic_file_aio_write);
2672
2673/**
2674 * try_to_release_page() - release old fs-specific metadata on a page
2675 *
2676 * @page: the page which the kernel is trying to free
2677 * @gfp_mask: memory allocation flags (and I/O mode)
2678 *
2679 * The address_space is to try to release any data against the page
2680 * (presumably at page->private).  If the release was successful, return `1'.
2681 * Otherwise return zero.
2682 *
2683 * The @gfp_mask argument specifies whether I/O may be performed to release
2684 * this page (__GFP_IO), and whether the call may block (__GFP_WAIT & __GFP_FS).
2685 *
2686 */
2687int try_to_release_page(struct page *page, gfp_t gfp_mask)
2688{
2689        struct address_space * const mapping = page->mapping;
2690
2691        BUG_ON(!PageLocked(page));
2692        if (PageWriteback(page))
2693                return 0;
2694
2695        if (mapping && mapping->a_ops->releasepage)
2696                return mapping->a_ops->releasepage(page, gfp_mask);
2697        return try_to_free_buffers(page);
2698}
2699
2700EXPORT_SYMBOL(try_to_release_page);
2701
lxr.linux.no kindly hosted by Redpill Linpro AS, provider of Linux consulting and operations services since 1995.