Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | */ |
Paul Gortmaker | b95f1b31 | 2011-10-16 02:01:52 -0400 | [diff] [blame] | 12 | #include <linux/export.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/compiler.h> |
| 14 | #include <linux/fs.h> |
Hiro Yoshioka | c22ce14 | 2006-06-23 02:04:16 -0700 | [diff] [blame] | 15 | #include <linux/uaccess.h> |
Randy.Dunlap | c59ede7 | 2006-01-11 12:17:46 -0800 | [diff] [blame] | 16 | #include <linux/capability.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/kernel_stat.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 18 | #include <linux/gfp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/mm.h> |
| 20 | #include <linux/swap.h> |
| 21 | #include <linux/mman.h> |
| 22 | #include <linux/pagemap.h> |
| 23 | #include <linux/file.h> |
| 24 | #include <linux/uio.h> |
| 25 | #include <linux/hash.h> |
| 26 | #include <linux/writeback.h> |
Linus Torvalds | 5325338 | 2007-10-18 14:47:32 -0700 | [diff] [blame] | 27 | #include <linux/backing-dev.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <linux/pagevec.h> |
| 29 | #include <linux/blkdev.h> |
| 30 | #include <linux/security.h> |
Paul Jackson | 44110fe | 2006-03-24 03:16:04 -0800 | [diff] [blame] | 31 | #include <linux/cpuset.h> |
Nick Piggin | 2f718ff | 2007-10-16 01:24:59 -0700 | [diff] [blame] | 32 | #include <linux/hardirq.h> /* for BUG_ON(!in_atomic()) only */ |
Johannes Weiner | 00501b5 | 2014-08-08 14:19:20 -0700 | [diff] [blame] | 33 | #include <linux/hugetlb.h> |
Balbir Singh | 8a9f3cc | 2008-02-07 00:13:53 -0800 | [diff] [blame] | 34 | #include <linux/memcontrol.h> |
Dan Magenheimer | c515e1f | 2011-05-26 10:01:43 -0600 | [diff] [blame] | 35 | #include <linux/cleancache.h> |
Kirill A. Shutemov | f182036 | 2014-04-07 15:37:19 -0700 | [diff] [blame] | 36 | #include <linux/rmap.h> |
Nick Piggin | 0f8053a | 2006-03-22 00:08:33 -0800 | [diff] [blame] | 37 | #include "internal.h" |
| 38 | |
Robert Jarzmik | fe0bfaa | 2013-04-29 15:06:10 -0700 | [diff] [blame] | 39 | #define CREATE_TRACE_POINTS |
| 40 | #include <trace/events/filemap.h> |
| 41 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | * FIXME: remove all knowledge of the buffer layer from the core VM |
| 44 | */ |
Jan Kara | 148f948 | 2009-08-17 19:52:36 +0200 | [diff] [blame] | 45 | #include <linux/buffer_head.h> /* for try_to_free_buffers */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | #include <asm/mman.h> |
| 48 | |
| 49 | /* |
| 50 | * Shared mappings implemented 30.11.1994. It's not fully working yet, |
| 51 | * though. |
| 52 | * |
| 53 | * Shared mappings now work. 15.8.1995 Bruno. |
| 54 | * |
| 55 | * finished 'unifying' the page and buffer cache and SMP-threaded the |
| 56 | * page-cache, 21.05.1999, Ingo Molnar <mingo@redhat.com> |
| 57 | * |
| 58 | * SMP-threaded pagemap-LRU 1999, Andrea Arcangeli <andrea@suse.de> |
| 59 | */ |
| 60 | |
| 61 | /* |
| 62 | * Lock ordering: |
| 63 | * |
Davidlohr Bueso | c8c06ef | 2014-12-12 16:54:24 -0800 | [diff] [blame] | 64 | * ->i_mmap_rwsem (truncate_pagecache) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | * ->private_lock (__free_pte->__set_page_dirty_buffers) |
Hugh Dickins | 5d337b9 | 2005-09-03 15:54:41 -0700 | [diff] [blame] | 66 | * ->swap_lock (exclusive_swap_page, others) |
| 67 | * ->mapping->tree_lock |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | * |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 69 | * ->i_mutex |
Davidlohr Bueso | c8c06ef | 2014-12-12 16:54:24 -0800 | [diff] [blame] | 70 | * ->i_mmap_rwsem (truncate->unmap_mapping_range) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | * |
| 72 | * ->mmap_sem |
Davidlohr Bueso | c8c06ef | 2014-12-12 16:54:24 -0800 | [diff] [blame] | 73 | * ->i_mmap_rwsem |
Hugh Dickins | b8072f0 | 2005-10-29 18:16:41 -0700 | [diff] [blame] | 74 | * ->page_table_lock or pte_lock (various, mainly in memory.c) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | * ->mapping->tree_lock (arch-dependent flush_dcache_mmap_lock) |
| 76 | * |
| 77 | * ->mmap_sem |
| 78 | * ->lock_page (access_process_vm) |
| 79 | * |
Al Viro | ccad236 | 2014-02-11 22:36:48 -0500 | [diff] [blame] | 80 | * ->i_mutex (generic_perform_write) |
Nick Piggin | 82591e6 | 2006-10-19 23:29:10 -0700 | [diff] [blame] | 81 | * ->mmap_sem (fault_in_pages_readable->do_page_fault) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | * |
Christoph Hellwig | f758eea | 2011-04-21 18:19:44 -0600 | [diff] [blame] | 83 | * bdi->wb.list_lock |
Dave Chinner | a66979a | 2011-03-22 22:23:41 +1100 | [diff] [blame] | 84 | * sb_lock (fs/fs-writeback.c) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | * ->mapping->tree_lock (__sync_single_inode) |
| 86 | * |
Davidlohr Bueso | c8c06ef | 2014-12-12 16:54:24 -0800 | [diff] [blame] | 87 | * ->i_mmap_rwsem |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | * ->anon_vma.lock (vma_adjust) |
| 89 | * |
| 90 | * ->anon_vma.lock |
Hugh Dickins | b8072f0 | 2005-10-29 18:16:41 -0700 | [diff] [blame] | 91 | * ->page_table_lock or pte_lock (anon_vma_prepare and various) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | * |
Hugh Dickins | b8072f0 | 2005-10-29 18:16:41 -0700 | [diff] [blame] | 93 | * ->page_table_lock or pte_lock |
Hugh Dickins | 5d337b9 | 2005-09-03 15:54:41 -0700 | [diff] [blame] | 94 | * ->swap_lock (try_to_unmap_one) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | * ->private_lock (try_to_unmap_one) |
| 96 | * ->tree_lock (try_to_unmap_one) |
| 97 | * ->zone.lru_lock (follow_page->mark_page_accessed) |
Nick Piggin | 053837f | 2006-01-18 17:42:27 -0800 | [diff] [blame] | 98 | * ->zone.lru_lock (check_pte_range->isolate_lru_page) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | * ->private_lock (page_remove_rmap->set_page_dirty) |
| 100 | * ->tree_lock (page_remove_rmap->set_page_dirty) |
Christoph Hellwig | f758eea | 2011-04-21 18:19:44 -0600 | [diff] [blame] | 101 | * bdi.wb->list_lock (page_remove_rmap->set_page_dirty) |
Dave Chinner | 250df6e | 2011-03-22 22:23:36 +1100 | [diff] [blame] | 102 | * ->inode->i_lock (page_remove_rmap->set_page_dirty) |
Greg Thelen | c4843a7 | 2015-05-22 17:13:16 -0400 | [diff] [blame] | 103 | * ->memcg->move_lock (page_remove_rmap->mem_cgroup_begin_page_stat) |
Christoph Hellwig | f758eea | 2011-04-21 18:19:44 -0600 | [diff] [blame] | 104 | * bdi.wb->list_lock (zap_pte_range->set_page_dirty) |
Dave Chinner | 250df6e | 2011-03-22 22:23:36 +1100 | [diff] [blame] | 105 | * ->inode->i_lock (zap_pte_range->set_page_dirty) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | * ->private_lock (zap_pte_range->__set_page_dirty_buffers) |
| 107 | * |
Davidlohr Bueso | c8c06ef | 2014-12-12 16:54:24 -0800 | [diff] [blame] | 108 | * ->i_mmap_rwsem |
Andi Kleen | 9a3c531 | 2012-03-21 16:34:09 -0700 | [diff] [blame] | 109 | * ->tasklist_lock (memory_failure, collect_procs_ao) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | */ |
| 111 | |
Johannes Weiner | 91b0abe | 2014-04-03 14:47:49 -0700 | [diff] [blame] | 112 | static void page_cache_tree_delete(struct address_space *mapping, |
| 113 | struct page *page, void *shadow) |
| 114 | { |
Johannes Weiner | 449dd69 | 2014-04-03 14:47:56 -0700 | [diff] [blame] | 115 | struct radix_tree_node *node; |
| 116 | unsigned long index; |
| 117 | unsigned int offset; |
| 118 | unsigned int tag; |
| 119 | void **slot; |
Johannes Weiner | 91b0abe | 2014-04-03 14:47:49 -0700 | [diff] [blame] | 120 | |
Johannes Weiner | 449dd69 | 2014-04-03 14:47:56 -0700 | [diff] [blame] | 121 | VM_BUG_ON(!PageLocked(page)); |
| 122 | |
| 123 | __radix_tree_lookup(&mapping->page_tree, page->index, &node, &slot); |
| 124 | |
| 125 | if (shadow) { |
Johannes Weiner | 91b0abe | 2014-04-03 14:47:49 -0700 | [diff] [blame] | 126 | mapping->nrshadows++; |
| 127 | /* |
| 128 | * Make sure the nrshadows update is committed before |
| 129 | * the nrpages update so that final truncate racing |
| 130 | * with reclaim does not see both counters 0 at the |
| 131 | * same time and miss a shadow entry. |
| 132 | */ |
| 133 | smp_wmb(); |
Johannes Weiner | 449dd69 | 2014-04-03 14:47:56 -0700 | [diff] [blame] | 134 | } |
Johannes Weiner | 91b0abe | 2014-04-03 14:47:49 -0700 | [diff] [blame] | 135 | mapping->nrpages--; |
Johannes Weiner | 449dd69 | 2014-04-03 14:47:56 -0700 | [diff] [blame] | 136 | |
| 137 | if (!node) { |
| 138 | /* Clear direct pointer tags in root node */ |
| 139 | mapping->page_tree.gfp_mask &= __GFP_BITS_MASK; |
| 140 | radix_tree_replace_slot(slot, shadow); |
| 141 | return; |
| 142 | } |
| 143 | |
| 144 | /* Clear tree tags for the removed page */ |
| 145 | index = page->index; |
| 146 | offset = index & RADIX_TREE_MAP_MASK; |
| 147 | for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++) { |
| 148 | if (test_bit(offset, node->tags[tag])) |
| 149 | radix_tree_tag_clear(&mapping->page_tree, index, tag); |
| 150 | } |
| 151 | |
| 152 | /* Delete page, swap shadow entry */ |
| 153 | radix_tree_replace_slot(slot, shadow); |
| 154 | workingset_node_pages_dec(node); |
| 155 | if (shadow) |
| 156 | workingset_node_shadows_inc(node); |
| 157 | else |
| 158 | if (__radix_tree_delete_node(&mapping->page_tree, node)) |
| 159 | return; |
| 160 | |
| 161 | /* |
| 162 | * Track node that only contains shadow entries. |
| 163 | * |
| 164 | * Avoid acquiring the list_lru lock if already tracked. The |
| 165 | * list_empty() test is safe as node->private_list is |
| 166 | * protected by mapping->tree_lock. |
| 167 | */ |
| 168 | if (!workingset_node_pages(node) && |
| 169 | list_empty(&node->private_list)) { |
| 170 | node->private_data = mapping; |
| 171 | list_lru_add(&workingset_shadow_nodes, &node->private_list); |
| 172 | } |
Johannes Weiner | 91b0abe | 2014-04-03 14:47:49 -0700 | [diff] [blame] | 173 | } |
| 174 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | /* |
Minchan Kim | e64a782 | 2011-03-22 16:32:44 -0700 | [diff] [blame] | 176 | * Delete a page from the page cache and free it. Caller has to make |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | * sure the page is locked and that nobody else uses it - or that usage |
Greg Thelen | c4843a7 | 2015-05-22 17:13:16 -0400 | [diff] [blame] | 178 | * is safe. The caller must hold the mapping's tree_lock and |
| 179 | * mem_cgroup_begin_page_stat(). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | */ |
Greg Thelen | c4843a7 | 2015-05-22 17:13:16 -0400 | [diff] [blame] | 181 | void __delete_from_page_cache(struct page *page, void *shadow, |
| 182 | struct mem_cgroup *memcg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | { |
| 184 | struct address_space *mapping = page->mapping; |
| 185 | |
Robert Jarzmik | fe0bfaa | 2013-04-29 15:06:10 -0700 | [diff] [blame] | 186 | trace_mm_filemap_delete_from_page_cache(page); |
Dan Magenheimer | c515e1f | 2011-05-26 10:01:43 -0600 | [diff] [blame] | 187 | /* |
| 188 | * if we're uptodate, flush out into the cleancache, otherwise |
| 189 | * invalidate any existing cleancache entries. We can't leave |
| 190 | * stale data around in the cleancache once our page is gone |
| 191 | */ |
| 192 | if (PageUptodate(page) && PageMappedToDisk(page)) |
| 193 | cleancache_put_page(page); |
| 194 | else |
Dan Magenheimer | 3167760 | 2011-09-21 11:56:28 -0400 | [diff] [blame] | 195 | cleancache_invalidate_page(mapping, page); |
Dan Magenheimer | c515e1f | 2011-05-26 10:01:43 -0600 | [diff] [blame] | 196 | |
Johannes Weiner | 91b0abe | 2014-04-03 14:47:49 -0700 | [diff] [blame] | 197 | page_cache_tree_delete(mapping, page, shadow); |
| 198 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | page->mapping = NULL; |
Hugh Dickins | b85e0ef | 2011-07-25 17:12:25 -0700 | [diff] [blame] | 200 | /* Leave page->index set: truncation lookup relies upon it */ |
Johannes Weiner | 91b0abe | 2014-04-03 14:47:49 -0700 | [diff] [blame] | 201 | |
Michal Hocko | 4165b9b | 2015-06-24 16:57:24 -0700 | [diff] [blame] | 202 | /* hugetlb pages do not participate in page cache accounting. */ |
| 203 | if (!PageHuge(page)) |
| 204 | __dec_zone_page_state(page, NR_FILE_PAGES); |
KOSAKI Motohiro | 4b02108 | 2009-09-21 17:01:33 -0700 | [diff] [blame] | 205 | if (PageSwapBacked(page)) |
| 206 | __dec_zone_page_state(page, NR_SHMEM); |
Nick Piggin | 4542681 | 2007-07-15 23:38:12 -0700 | [diff] [blame] | 207 | BUG_ON(page_mapped(page)); |
Linus Torvalds | 3a69279 | 2007-12-19 14:05:13 -0800 | [diff] [blame] | 208 | |
| 209 | /* |
Konstantin Khlebnikov | b9ea251 | 2015-04-14 15:45:27 -0700 | [diff] [blame] | 210 | * At this point page must be either written or cleaned by truncate. |
| 211 | * Dirty page here signals a bug and loss of unwritten data. |
Linus Torvalds | 3a69279 | 2007-12-19 14:05:13 -0800 | [diff] [blame] | 212 | * |
Konstantin Khlebnikov | b9ea251 | 2015-04-14 15:45:27 -0700 | [diff] [blame] | 213 | * This fixes dirty accounting after removing the page entirely but |
| 214 | * leaves PageDirty set: it has no effect for truncated page and |
| 215 | * anyway will be cleared before returning page into buddy allocator. |
Linus Torvalds | 3a69279 | 2007-12-19 14:05:13 -0800 | [diff] [blame] | 216 | */ |
Konstantin Khlebnikov | b9ea251 | 2015-04-14 15:45:27 -0700 | [diff] [blame] | 217 | if (WARN_ON_ONCE(PageDirty(page))) |
Tejun Heo | 682aa8e | 2015-05-28 14:50:53 -0400 | [diff] [blame] | 218 | account_page_cleaned(page, mapping, memcg, |
| 219 | inode_to_wb(mapping->host)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | } |
| 221 | |
Minchan Kim | 702cfbf | 2011-03-22 16:32:43 -0700 | [diff] [blame] | 222 | /** |
| 223 | * delete_from_page_cache - delete page from page cache |
| 224 | * @page: the page which the kernel is trying to remove from page cache |
| 225 | * |
| 226 | * This must be called only on pages that have been verified to be in the page |
| 227 | * cache and locked. It will never put the page into the free list, the caller |
| 228 | * has a reference on the page. |
| 229 | */ |
| 230 | void delete_from_page_cache(struct page *page) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | { |
| 232 | struct address_space *mapping = page->mapping; |
Greg Thelen | c4843a7 | 2015-05-22 17:13:16 -0400 | [diff] [blame] | 233 | struct mem_cgroup *memcg; |
| 234 | unsigned long flags; |
| 235 | |
Linus Torvalds | 6072d13 | 2010-12-01 13:35:19 -0500 | [diff] [blame] | 236 | void (*freepage)(struct page *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | |
Matt Mackall | cd7619d | 2005-05-01 08:59:01 -0700 | [diff] [blame] | 238 | BUG_ON(!PageLocked(page)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | |
Linus Torvalds | 6072d13 | 2010-12-01 13:35:19 -0500 | [diff] [blame] | 240 | freepage = mapping->a_ops->freepage; |
Greg Thelen | c4843a7 | 2015-05-22 17:13:16 -0400 | [diff] [blame] | 241 | |
| 242 | memcg = mem_cgroup_begin_page_stat(page); |
| 243 | spin_lock_irqsave(&mapping->tree_lock, flags); |
| 244 | __delete_from_page_cache(page, NULL, memcg); |
| 245 | spin_unlock_irqrestore(&mapping->tree_lock, flags); |
| 246 | mem_cgroup_end_page_stat(memcg); |
Linus Torvalds | 6072d13 | 2010-12-01 13:35:19 -0500 | [diff] [blame] | 247 | |
| 248 | if (freepage) |
| 249 | freepage(page); |
Minchan Kim | 97cecb5 | 2011-03-22 16:30:53 -0700 | [diff] [blame] | 250 | page_cache_release(page); |
| 251 | } |
| 252 | EXPORT_SYMBOL(delete_from_page_cache); |
| 253 | |
Dmitry Monakhov | 865ffef3 | 2013-04-29 15:08:42 -0700 | [diff] [blame] | 254 | static int filemap_check_errors(struct address_space *mapping) |
| 255 | { |
| 256 | int ret = 0; |
| 257 | /* Check for outstanding write errors */ |
Jens Axboe | 7fcbbaf | 2014-05-22 11:54:16 -0700 | [diff] [blame] | 258 | if (test_bit(AS_ENOSPC, &mapping->flags) && |
| 259 | test_and_clear_bit(AS_ENOSPC, &mapping->flags)) |
Dmitry Monakhov | 865ffef3 | 2013-04-29 15:08:42 -0700 | [diff] [blame] | 260 | ret = -ENOSPC; |
Jens Axboe | 7fcbbaf | 2014-05-22 11:54:16 -0700 | [diff] [blame] | 261 | if (test_bit(AS_EIO, &mapping->flags) && |
| 262 | test_and_clear_bit(AS_EIO, &mapping->flags)) |
Dmitry Monakhov | 865ffef3 | 2013-04-29 15:08:42 -0700 | [diff] [blame] | 263 | ret = -EIO; |
| 264 | return ret; |
| 265 | } |
| 266 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | /** |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 268 | * __filemap_fdatawrite_range - start writeback on mapping dirty pages in range |
Martin Waitz | 67be2dd | 2005-05-01 08:59:26 -0700 | [diff] [blame] | 269 | * @mapping: address space structure to write |
| 270 | * @start: offset in bytes where the range starts |
Andrew Morton | 469eb4d | 2006-03-24 03:17:45 -0800 | [diff] [blame] | 271 | * @end: offset in bytes where the range ends (inclusive) |
Martin Waitz | 67be2dd | 2005-05-01 08:59:26 -0700 | [diff] [blame] | 272 | * @sync_mode: enable synchronous operation |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | * |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 274 | * Start writeback against all of a mapping's dirty pages that lie |
| 275 | * within the byte offsets <start, end> inclusive. |
| 276 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | * If sync_mode is WB_SYNC_ALL then this is a "data integrity" operation, as |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 278 | * opposed to a regular memory cleansing writeback. The difference between |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | * these two operations is that if a dirty page/buffer is encountered, it must |
| 280 | * be waited upon, and not just skipped over. |
| 281 | */ |
Andrew Morton | ebcf28e | 2006-03-24 03:18:04 -0800 | [diff] [blame] | 282 | int __filemap_fdatawrite_range(struct address_space *mapping, loff_t start, |
| 283 | loff_t end, int sync_mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | { |
| 285 | int ret; |
| 286 | struct writeback_control wbc = { |
| 287 | .sync_mode = sync_mode, |
Nick Piggin | 05fe478 | 2009-01-06 14:39:08 -0800 | [diff] [blame] | 288 | .nr_to_write = LONG_MAX, |
OGAWA Hirofumi | 111ebb6 | 2006-06-23 02:03:26 -0700 | [diff] [blame] | 289 | .range_start = start, |
| 290 | .range_end = end, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | }; |
| 292 | |
| 293 | if (!mapping_cap_writeback_dirty(mapping)) |
| 294 | return 0; |
| 295 | |
Tejun Heo | b16b1de | 2015-06-02 08:39:48 -0600 | [diff] [blame] | 296 | wbc_attach_fdatawrite_inode(&wbc, mapping->host); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | ret = do_writepages(mapping, &wbc); |
Tejun Heo | b16b1de | 2015-06-02 08:39:48 -0600 | [diff] [blame] | 298 | wbc_detach_inode(&wbc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | return ret; |
| 300 | } |
| 301 | |
| 302 | static inline int __filemap_fdatawrite(struct address_space *mapping, |
| 303 | int sync_mode) |
| 304 | { |
OGAWA Hirofumi | 111ebb6 | 2006-06-23 02:03:26 -0700 | [diff] [blame] | 305 | return __filemap_fdatawrite_range(mapping, 0, LLONG_MAX, sync_mode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | } |
| 307 | |
| 308 | int filemap_fdatawrite(struct address_space *mapping) |
| 309 | { |
| 310 | return __filemap_fdatawrite(mapping, WB_SYNC_ALL); |
| 311 | } |
| 312 | EXPORT_SYMBOL(filemap_fdatawrite); |
| 313 | |
Jan Kara | f4c0a0f | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 314 | int filemap_fdatawrite_range(struct address_space *mapping, loff_t start, |
Andrew Morton | ebcf28e | 2006-03-24 03:18:04 -0800 | [diff] [blame] | 315 | loff_t end) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | { |
| 317 | return __filemap_fdatawrite_range(mapping, start, end, WB_SYNC_ALL); |
| 318 | } |
Jan Kara | f4c0a0f | 2008-07-11 19:27:31 -0400 | [diff] [blame] | 319 | EXPORT_SYMBOL(filemap_fdatawrite_range); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 321 | /** |
| 322 | * filemap_flush - mostly a non-blocking flush |
| 323 | * @mapping: target address_space |
| 324 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 325 | * This is a mostly non-blocking flush. Not suitable for data-integrity |
| 326 | * purposes - I/O may not be started against all dirty pages. |
| 327 | */ |
| 328 | int filemap_flush(struct address_space *mapping) |
| 329 | { |
| 330 | return __filemap_fdatawrite(mapping, WB_SYNC_NONE); |
| 331 | } |
| 332 | EXPORT_SYMBOL(filemap_flush); |
| 333 | |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 334 | /** |
Christoph Hellwig | 94004ed | 2009-09-30 22:16:33 +0200 | [diff] [blame] | 335 | * filemap_fdatawait_range - wait for writeback to complete |
| 336 | * @mapping: address space structure to wait for |
| 337 | * @start_byte: offset in bytes where the range starts |
| 338 | * @end_byte: offset in bytes where the range ends (inclusive) |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 339 | * |
Christoph Hellwig | 94004ed | 2009-09-30 22:16:33 +0200 | [diff] [blame] | 340 | * Walk the list of under-writeback pages of the given address space |
| 341 | * in the given range and wait for all of them. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | */ |
Christoph Hellwig | 94004ed | 2009-09-30 22:16:33 +0200 | [diff] [blame] | 343 | int filemap_fdatawait_range(struct address_space *mapping, loff_t start_byte, |
| 344 | loff_t end_byte) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | { |
Christoph Hellwig | 94004ed | 2009-09-30 22:16:33 +0200 | [diff] [blame] | 346 | pgoff_t index = start_byte >> PAGE_CACHE_SHIFT; |
| 347 | pgoff_t end = end_byte >> PAGE_CACHE_SHIFT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | struct pagevec pvec; |
| 349 | int nr_pages; |
Dmitry Monakhov | 865ffef3 | 2013-04-29 15:08:42 -0700 | [diff] [blame] | 350 | int ret2, ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | |
Christoph Hellwig | 94004ed | 2009-09-30 22:16:33 +0200 | [diff] [blame] | 352 | if (end_byte < start_byte) |
Dmitry Monakhov | 865ffef3 | 2013-04-29 15:08:42 -0700 | [diff] [blame] | 353 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | |
| 355 | pagevec_init(&pvec, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | while ((index <= end) && |
| 357 | (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, |
| 358 | PAGECACHE_TAG_WRITEBACK, |
| 359 | min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1)) != 0) { |
| 360 | unsigned i; |
| 361 | |
| 362 | for (i = 0; i < nr_pages; i++) { |
| 363 | struct page *page = pvec.pages[i]; |
| 364 | |
| 365 | /* until radix tree lookup accepts end_index */ |
| 366 | if (page->index > end) |
| 367 | continue; |
| 368 | |
| 369 | wait_on_page_writeback(page); |
Rik van Riel | 212260a | 2011-01-13 15:46:06 -0800 | [diff] [blame] | 370 | if (TestClearPageError(page)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | ret = -EIO; |
| 372 | } |
| 373 | pagevec_release(&pvec); |
| 374 | cond_resched(); |
| 375 | } |
Dmitry Monakhov | 865ffef3 | 2013-04-29 15:08:42 -0700 | [diff] [blame] | 376 | out: |
| 377 | ret2 = filemap_check_errors(mapping); |
| 378 | if (!ret) |
| 379 | ret = ret2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | |
| 381 | return ret; |
| 382 | } |
Jan Kara | d3bccb6f | 2009-08-17 19:30:27 +0200 | [diff] [blame] | 383 | EXPORT_SYMBOL(filemap_fdatawait_range); |
| 384 | |
| 385 | /** |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 386 | * filemap_fdatawait - wait for all under-writeback pages to complete |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | * @mapping: address space structure to wait for |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 388 | * |
| 389 | * Walk the list of under-writeback pages of the given address space |
| 390 | * and wait for all of them. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | */ |
| 392 | int filemap_fdatawait(struct address_space *mapping) |
| 393 | { |
| 394 | loff_t i_size = i_size_read(mapping->host); |
| 395 | |
| 396 | if (i_size == 0) |
| 397 | return 0; |
| 398 | |
Christoph Hellwig | 94004ed | 2009-09-30 22:16:33 +0200 | [diff] [blame] | 399 | return filemap_fdatawait_range(mapping, 0, i_size - 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | } |
| 401 | EXPORT_SYMBOL(filemap_fdatawait); |
| 402 | |
| 403 | int filemap_write_and_wait(struct address_space *mapping) |
| 404 | { |
OGAWA Hirofumi | 28fd129 | 2006-01-08 01:02:14 -0800 | [diff] [blame] | 405 | int err = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | |
| 407 | if (mapping->nrpages) { |
OGAWA Hirofumi | 28fd129 | 2006-01-08 01:02:14 -0800 | [diff] [blame] | 408 | err = filemap_fdatawrite(mapping); |
| 409 | /* |
| 410 | * Even if the above returned error, the pages may be |
| 411 | * written partially (e.g. -ENOSPC), so we wait for it. |
| 412 | * But the -EIO is special case, it may indicate the worst |
| 413 | * thing (e.g. bug) happened, so we avoid waiting for it. |
| 414 | */ |
| 415 | if (err != -EIO) { |
| 416 | int err2 = filemap_fdatawait(mapping); |
| 417 | if (!err) |
| 418 | err = err2; |
| 419 | } |
Dmitry Monakhov | 865ffef3 | 2013-04-29 15:08:42 -0700 | [diff] [blame] | 420 | } else { |
| 421 | err = filemap_check_errors(mapping); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | } |
OGAWA Hirofumi | 28fd129 | 2006-01-08 01:02:14 -0800 | [diff] [blame] | 423 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | } |
OGAWA Hirofumi | 28fd129 | 2006-01-08 01:02:14 -0800 | [diff] [blame] | 425 | EXPORT_SYMBOL(filemap_write_and_wait); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 427 | /** |
| 428 | * filemap_write_and_wait_range - write out & wait on a file range |
| 429 | * @mapping: the address_space for the pages |
| 430 | * @lstart: offset in bytes where the range starts |
| 431 | * @lend: offset in bytes where the range ends (inclusive) |
| 432 | * |
Andrew Morton | 469eb4d | 2006-03-24 03:17:45 -0800 | [diff] [blame] | 433 | * Write out and wait upon file offsets lstart->lend, inclusive. |
| 434 | * |
| 435 | * Note that `lend' is inclusive (describes the last byte to be written) so |
| 436 | * that this function can be used to write to the very end-of-file (end = -1). |
| 437 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | int filemap_write_and_wait_range(struct address_space *mapping, |
| 439 | loff_t lstart, loff_t lend) |
| 440 | { |
OGAWA Hirofumi | 28fd129 | 2006-01-08 01:02:14 -0800 | [diff] [blame] | 441 | int err = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | |
| 443 | if (mapping->nrpages) { |
OGAWA Hirofumi | 28fd129 | 2006-01-08 01:02:14 -0800 | [diff] [blame] | 444 | err = __filemap_fdatawrite_range(mapping, lstart, lend, |
| 445 | WB_SYNC_ALL); |
| 446 | /* See comment of filemap_write_and_wait() */ |
| 447 | if (err != -EIO) { |
Christoph Hellwig | 94004ed | 2009-09-30 22:16:33 +0200 | [diff] [blame] | 448 | int err2 = filemap_fdatawait_range(mapping, |
| 449 | lstart, lend); |
OGAWA Hirofumi | 28fd129 | 2006-01-08 01:02:14 -0800 | [diff] [blame] | 450 | if (!err) |
| 451 | err = err2; |
| 452 | } |
Dmitry Monakhov | 865ffef3 | 2013-04-29 15:08:42 -0700 | [diff] [blame] | 453 | } else { |
| 454 | err = filemap_check_errors(mapping); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | } |
OGAWA Hirofumi | 28fd129 | 2006-01-08 01:02:14 -0800 | [diff] [blame] | 456 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | } |
Chris Mason | f699558 | 2009-04-15 13:22:37 -0400 | [diff] [blame] | 458 | EXPORT_SYMBOL(filemap_write_and_wait_range); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 460 | /** |
Miklos Szeredi | ef6a3c6 | 2011-03-22 16:30:52 -0700 | [diff] [blame] | 461 | * replace_page_cache_page - replace a pagecache page with a new one |
| 462 | * @old: page to be replaced |
| 463 | * @new: page to replace with |
| 464 | * @gfp_mask: allocation mode |
| 465 | * |
| 466 | * This function replaces a page in the pagecache with a new one. On |
| 467 | * success it acquires the pagecache reference for the new page and |
| 468 | * drops it for the old page. Both the old and new pages must be |
| 469 | * locked. This function does not add the new page to the LRU, the |
| 470 | * caller must do that. |
| 471 | * |
| 472 | * The remove + add is atomic. The only way this function can fail is |
| 473 | * memory allocation failure. |
| 474 | */ |
| 475 | int replace_page_cache_page(struct page *old, struct page *new, gfp_t gfp_mask) |
| 476 | { |
| 477 | int error; |
Miklos Szeredi | ef6a3c6 | 2011-03-22 16:30:52 -0700 | [diff] [blame] | 478 | |
Sasha Levin | 309381fea | 2014-01-23 15:52:54 -0800 | [diff] [blame] | 479 | VM_BUG_ON_PAGE(!PageLocked(old), old); |
| 480 | VM_BUG_ON_PAGE(!PageLocked(new), new); |
| 481 | VM_BUG_ON_PAGE(new->mapping, new); |
Miklos Szeredi | ef6a3c6 | 2011-03-22 16:30:52 -0700 | [diff] [blame] | 482 | |
Miklos Szeredi | ef6a3c6 | 2011-03-22 16:30:52 -0700 | [diff] [blame] | 483 | error = radix_tree_preload(gfp_mask & ~__GFP_HIGHMEM); |
| 484 | if (!error) { |
| 485 | struct address_space *mapping = old->mapping; |
| 486 | void (*freepage)(struct page *); |
Greg Thelen | c4843a7 | 2015-05-22 17:13:16 -0400 | [diff] [blame] | 487 | struct mem_cgroup *memcg; |
| 488 | unsigned long flags; |
Miklos Szeredi | ef6a3c6 | 2011-03-22 16:30:52 -0700 | [diff] [blame] | 489 | |
| 490 | pgoff_t offset = old->index; |
| 491 | freepage = mapping->a_ops->freepage; |
| 492 | |
| 493 | page_cache_get(new); |
| 494 | new->mapping = mapping; |
| 495 | new->index = offset; |
| 496 | |
Greg Thelen | c4843a7 | 2015-05-22 17:13:16 -0400 | [diff] [blame] | 497 | memcg = mem_cgroup_begin_page_stat(old); |
| 498 | spin_lock_irqsave(&mapping->tree_lock, flags); |
| 499 | __delete_from_page_cache(old, NULL, memcg); |
Miklos Szeredi | ef6a3c6 | 2011-03-22 16:30:52 -0700 | [diff] [blame] | 500 | error = radix_tree_insert(&mapping->page_tree, offset, new); |
| 501 | BUG_ON(error); |
| 502 | mapping->nrpages++; |
Michal Hocko | 4165b9b | 2015-06-24 16:57:24 -0700 | [diff] [blame] | 503 | |
| 504 | /* |
| 505 | * hugetlb pages do not participate in page cache accounting. |
| 506 | */ |
| 507 | if (!PageHuge(new)) |
| 508 | __inc_zone_page_state(new, NR_FILE_PAGES); |
Miklos Szeredi | ef6a3c6 | 2011-03-22 16:30:52 -0700 | [diff] [blame] | 509 | if (PageSwapBacked(new)) |
| 510 | __inc_zone_page_state(new, NR_SHMEM); |
Greg Thelen | c4843a7 | 2015-05-22 17:13:16 -0400 | [diff] [blame] | 511 | spin_unlock_irqrestore(&mapping->tree_lock, flags); |
| 512 | mem_cgroup_end_page_stat(memcg); |
Johannes Weiner | 0a31bc9 | 2014-08-08 14:19:22 -0700 | [diff] [blame] | 513 | mem_cgroup_migrate(old, new, true); |
Miklos Szeredi | ef6a3c6 | 2011-03-22 16:30:52 -0700 | [diff] [blame] | 514 | radix_tree_preload_end(); |
| 515 | if (freepage) |
| 516 | freepage(old); |
| 517 | page_cache_release(old); |
Miklos Szeredi | ef6a3c6 | 2011-03-22 16:30:52 -0700 | [diff] [blame] | 518 | } |
| 519 | |
| 520 | return error; |
| 521 | } |
| 522 | EXPORT_SYMBOL_GPL(replace_page_cache_page); |
| 523 | |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 524 | static int page_cache_tree_insert(struct address_space *mapping, |
Johannes Weiner | a528910 | 2014-04-03 14:47:51 -0700 | [diff] [blame] | 525 | struct page *page, void **shadowp) |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 526 | { |
Johannes Weiner | 449dd69 | 2014-04-03 14:47:56 -0700 | [diff] [blame] | 527 | struct radix_tree_node *node; |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 528 | void **slot; |
| 529 | int error; |
| 530 | |
Johannes Weiner | 449dd69 | 2014-04-03 14:47:56 -0700 | [diff] [blame] | 531 | error = __radix_tree_create(&mapping->page_tree, page->index, |
| 532 | &node, &slot); |
| 533 | if (error) |
| 534 | return error; |
| 535 | if (*slot) { |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 536 | void *p; |
| 537 | |
| 538 | p = radix_tree_deref_slot_protected(slot, &mapping->tree_lock); |
| 539 | if (!radix_tree_exceptional_entry(p)) |
| 540 | return -EEXIST; |
Johannes Weiner | a528910 | 2014-04-03 14:47:51 -0700 | [diff] [blame] | 541 | if (shadowp) |
| 542 | *shadowp = p; |
Johannes Weiner | 449dd69 | 2014-04-03 14:47:56 -0700 | [diff] [blame] | 543 | mapping->nrshadows--; |
| 544 | if (node) |
| 545 | workingset_node_shadows_dec(node); |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 546 | } |
Johannes Weiner | 449dd69 | 2014-04-03 14:47:56 -0700 | [diff] [blame] | 547 | radix_tree_replace_slot(slot, page); |
| 548 | mapping->nrpages++; |
| 549 | if (node) { |
| 550 | workingset_node_pages_inc(node); |
| 551 | /* |
| 552 | * Don't track node that contains actual pages. |
| 553 | * |
| 554 | * Avoid acquiring the list_lru lock if already |
| 555 | * untracked. The list_empty() test is safe as |
| 556 | * node->private_list is protected by |
| 557 | * mapping->tree_lock. |
| 558 | */ |
| 559 | if (!list_empty(&node->private_list)) |
| 560 | list_lru_del(&workingset_shadow_nodes, |
| 561 | &node->private_list); |
| 562 | } |
| 563 | return 0; |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 564 | } |
| 565 | |
Johannes Weiner | a528910 | 2014-04-03 14:47:51 -0700 | [diff] [blame] | 566 | static int __add_to_page_cache_locked(struct page *page, |
| 567 | struct address_space *mapping, |
| 568 | pgoff_t offset, gfp_t gfp_mask, |
| 569 | void **shadowp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | { |
Johannes Weiner | 00501b5 | 2014-08-08 14:19:20 -0700 | [diff] [blame] | 571 | int huge = PageHuge(page); |
| 572 | struct mem_cgroup *memcg; |
Nick Piggin | e286781 | 2008-07-25 19:45:30 -0700 | [diff] [blame] | 573 | int error; |
| 574 | |
Sasha Levin | 309381fea | 2014-01-23 15:52:54 -0800 | [diff] [blame] | 575 | VM_BUG_ON_PAGE(!PageLocked(page), page); |
| 576 | VM_BUG_ON_PAGE(PageSwapBacked(page), page); |
Nick Piggin | e286781 | 2008-07-25 19:45:30 -0700 | [diff] [blame] | 577 | |
Johannes Weiner | 00501b5 | 2014-08-08 14:19:20 -0700 | [diff] [blame] | 578 | if (!huge) { |
| 579 | error = mem_cgroup_try_charge(page, current->mm, |
| 580 | gfp_mask, &memcg); |
| 581 | if (error) |
| 582 | return error; |
| 583 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | |
Jan Kara | 5e4c0d97 | 2013-09-11 14:26:05 -0700 | [diff] [blame] | 585 | error = radix_tree_maybe_preload(gfp_mask & ~__GFP_HIGHMEM); |
Kirill A. Shutemov | 66a0c8e | 2013-09-12 15:13:59 -0700 | [diff] [blame] | 586 | if (error) { |
Johannes Weiner | 00501b5 | 2014-08-08 14:19:20 -0700 | [diff] [blame] | 587 | if (!huge) |
| 588 | mem_cgroup_cancel_charge(page, memcg); |
Kirill A. Shutemov | 66a0c8e | 2013-09-12 15:13:59 -0700 | [diff] [blame] | 589 | return error; |
| 590 | } |
| 591 | |
| 592 | page_cache_get(page); |
| 593 | page->mapping = mapping; |
| 594 | page->index = offset; |
| 595 | |
| 596 | spin_lock_irq(&mapping->tree_lock); |
Johannes Weiner | a528910 | 2014-04-03 14:47:51 -0700 | [diff] [blame] | 597 | error = page_cache_tree_insert(mapping, page, shadowp); |
Kirill A. Shutemov | 66a0c8e | 2013-09-12 15:13:59 -0700 | [diff] [blame] | 598 | radix_tree_preload_end(); |
| 599 | if (unlikely(error)) |
| 600 | goto err_insert; |
Michal Hocko | 4165b9b | 2015-06-24 16:57:24 -0700 | [diff] [blame] | 601 | |
| 602 | /* hugetlb pages do not participate in page cache accounting. */ |
| 603 | if (!huge) |
| 604 | __inc_zone_page_state(page, NR_FILE_PAGES); |
Kirill A. Shutemov | 66a0c8e | 2013-09-12 15:13:59 -0700 | [diff] [blame] | 605 | spin_unlock_irq(&mapping->tree_lock); |
Johannes Weiner | 00501b5 | 2014-08-08 14:19:20 -0700 | [diff] [blame] | 606 | if (!huge) |
| 607 | mem_cgroup_commit_charge(page, memcg, false); |
Kirill A. Shutemov | 66a0c8e | 2013-09-12 15:13:59 -0700 | [diff] [blame] | 608 | trace_mm_filemap_add_to_page_cache(page); |
| 609 | return 0; |
| 610 | err_insert: |
| 611 | page->mapping = NULL; |
| 612 | /* Leave page->index set: truncation relies upon it */ |
| 613 | spin_unlock_irq(&mapping->tree_lock); |
Johannes Weiner | 00501b5 | 2014-08-08 14:19:20 -0700 | [diff] [blame] | 614 | if (!huge) |
| 615 | mem_cgroup_cancel_charge(page, memcg); |
Kirill A. Shutemov | 66a0c8e | 2013-09-12 15:13:59 -0700 | [diff] [blame] | 616 | page_cache_release(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | return error; |
| 618 | } |
Johannes Weiner | a528910 | 2014-04-03 14:47:51 -0700 | [diff] [blame] | 619 | |
| 620 | /** |
| 621 | * add_to_page_cache_locked - add a locked page to the pagecache |
| 622 | * @page: page to add |
| 623 | * @mapping: the page's address_space |
| 624 | * @offset: page index |
| 625 | * @gfp_mask: page allocation mode |
| 626 | * |
| 627 | * This function is used to add a page to the pagecache. It must be locked. |
| 628 | * This function does not add the page to the LRU. The caller must do that. |
| 629 | */ |
| 630 | int add_to_page_cache_locked(struct page *page, struct address_space *mapping, |
| 631 | pgoff_t offset, gfp_t gfp_mask) |
| 632 | { |
| 633 | return __add_to_page_cache_locked(page, mapping, offset, |
| 634 | gfp_mask, NULL); |
| 635 | } |
Nick Piggin | e286781 | 2008-07-25 19:45:30 -0700 | [diff] [blame] | 636 | EXPORT_SYMBOL(add_to_page_cache_locked); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 637 | |
| 638 | int add_to_page_cache_lru(struct page *page, struct address_space *mapping, |
Al Viro | 6daa0e2 | 2005-10-21 03:18:50 -0400 | [diff] [blame] | 639 | pgoff_t offset, gfp_t gfp_mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 640 | { |
Johannes Weiner | a528910 | 2014-04-03 14:47:51 -0700 | [diff] [blame] | 641 | void *shadow = NULL; |
Rik van Riel | 4f98a2f | 2008-10-18 20:26:32 -0700 | [diff] [blame] | 642 | int ret; |
| 643 | |
Johannes Weiner | a528910 | 2014-04-03 14:47:51 -0700 | [diff] [blame] | 644 | __set_page_locked(page); |
| 645 | ret = __add_to_page_cache_locked(page, mapping, offset, |
| 646 | gfp_mask, &shadow); |
| 647 | if (unlikely(ret)) |
| 648 | __clear_page_locked(page); |
| 649 | else { |
| 650 | /* |
| 651 | * The page might have been evicted from cache only |
| 652 | * recently, in which case it should be activated like |
| 653 | * any other repeatedly accessed page. |
| 654 | */ |
| 655 | if (shadow && workingset_refault(shadow)) { |
| 656 | SetPageActive(page); |
| 657 | workingset_activation(page); |
| 658 | } else |
| 659 | ClearPageActive(page); |
| 660 | lru_cache_add(page); |
| 661 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 662 | return ret; |
| 663 | } |
Evgeniy Polyakov | 18bc0bb | 2009-02-09 17:02:42 +0300 | [diff] [blame] | 664 | EXPORT_SYMBOL_GPL(add_to_page_cache_lru); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | |
Paul Jackson | 44110fe | 2006-03-24 03:16:04 -0800 | [diff] [blame] | 666 | #ifdef CONFIG_NUMA |
Nick Piggin | 2ae8814 | 2006-10-28 10:38:23 -0700 | [diff] [blame] | 667 | struct page *__page_cache_alloc(gfp_t gfp) |
Paul Jackson | 44110fe | 2006-03-24 03:16:04 -0800 | [diff] [blame] | 668 | { |
Miao Xie | c0ff745 | 2010-05-24 14:32:08 -0700 | [diff] [blame] | 669 | int n; |
| 670 | struct page *page; |
| 671 | |
Paul Jackson | 44110fe | 2006-03-24 03:16:04 -0800 | [diff] [blame] | 672 | if (cpuset_do_page_mem_spread()) { |
Mel Gorman | cc9a6c8 | 2012-03-21 16:34:11 -0700 | [diff] [blame] | 673 | unsigned int cpuset_mems_cookie; |
| 674 | do { |
Mel Gorman | d26914d | 2014-04-03 14:47:24 -0700 | [diff] [blame] | 675 | cpuset_mems_cookie = read_mems_allowed_begin(); |
Mel Gorman | cc9a6c8 | 2012-03-21 16:34:11 -0700 | [diff] [blame] | 676 | n = cpuset_mem_spread_node(); |
Vlastimil Babka | 96db800 | 2015-09-08 15:03:50 -0700 | [diff] [blame] | 677 | page = __alloc_pages_node(n, gfp, 0); |
Mel Gorman | d26914d | 2014-04-03 14:47:24 -0700 | [diff] [blame] | 678 | } while (!page && read_mems_allowed_retry(cpuset_mems_cookie)); |
Mel Gorman | cc9a6c8 | 2012-03-21 16:34:11 -0700 | [diff] [blame] | 679 | |
Miao Xie | c0ff745 | 2010-05-24 14:32:08 -0700 | [diff] [blame] | 680 | return page; |
Paul Jackson | 44110fe | 2006-03-24 03:16:04 -0800 | [diff] [blame] | 681 | } |
Nick Piggin | 2ae8814 | 2006-10-28 10:38:23 -0700 | [diff] [blame] | 682 | return alloc_pages(gfp, 0); |
Paul Jackson | 44110fe | 2006-03-24 03:16:04 -0800 | [diff] [blame] | 683 | } |
Nick Piggin | 2ae8814 | 2006-10-28 10:38:23 -0700 | [diff] [blame] | 684 | EXPORT_SYMBOL(__page_cache_alloc); |
Paul Jackson | 44110fe | 2006-03-24 03:16:04 -0800 | [diff] [blame] | 685 | #endif |
| 686 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 | /* |
| 688 | * In order to wait for pages to become available there must be |
| 689 | * waitqueues associated with pages. By using a hash table of |
| 690 | * waitqueues where the bucket discipline is to maintain all |
| 691 | * waiters on the same queue and wake all when any of the pages |
| 692 | * become available, and for the woken contexts to check to be |
| 693 | * sure the appropriate page became available, this saves space |
| 694 | * at a cost of "thundering herd" phenomena during rare hash |
| 695 | * collisions. |
| 696 | */ |
NeilBrown | a4796e3 | 2014-09-24 11:28:32 +1000 | [diff] [blame] | 697 | wait_queue_head_t *page_waitqueue(struct page *page) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 698 | { |
| 699 | const struct zone *zone = page_zone(page); |
| 700 | |
| 701 | return &zone->wait_table[hash_ptr(page, zone->wait_table_bits)]; |
| 702 | } |
NeilBrown | a4796e3 | 2014-09-24 11:28:32 +1000 | [diff] [blame] | 703 | EXPORT_SYMBOL(page_waitqueue); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 704 | |
Harvey Harrison | 920c7a5 | 2008-02-04 22:29:26 -0800 | [diff] [blame] | 705 | void wait_on_page_bit(struct page *page, int bit_nr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | { |
| 707 | DEFINE_WAIT_BIT(wait, &page->flags, bit_nr); |
| 708 | |
| 709 | if (test_bit(bit_nr, &page->flags)) |
NeilBrown | 7431620 | 2014-07-07 15:16:04 +1000 | [diff] [blame] | 710 | __wait_on_bit(page_waitqueue(page), &wait, bit_wait_io, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | TASK_UNINTERRUPTIBLE); |
| 712 | } |
| 713 | EXPORT_SYMBOL(wait_on_page_bit); |
| 714 | |
KOSAKI Motohiro | f62e00c | 2011-05-24 17:11:29 -0700 | [diff] [blame] | 715 | int wait_on_page_bit_killable(struct page *page, int bit_nr) |
| 716 | { |
| 717 | DEFINE_WAIT_BIT(wait, &page->flags, bit_nr); |
| 718 | |
| 719 | if (!test_bit(bit_nr, &page->flags)) |
| 720 | return 0; |
| 721 | |
| 722 | return __wait_on_bit(page_waitqueue(page), &wait, |
NeilBrown | 7431620 | 2014-07-07 15:16:04 +1000 | [diff] [blame] | 723 | bit_wait_io, TASK_KILLABLE); |
KOSAKI Motohiro | f62e00c | 2011-05-24 17:11:29 -0700 | [diff] [blame] | 724 | } |
| 725 | |
NeilBrown | cbbce82 | 2014-09-25 13:55:19 +1000 | [diff] [blame] | 726 | int wait_on_page_bit_killable_timeout(struct page *page, |
| 727 | int bit_nr, unsigned long timeout) |
| 728 | { |
| 729 | DEFINE_WAIT_BIT(wait, &page->flags, bit_nr); |
| 730 | |
| 731 | wait.key.timeout = jiffies + timeout; |
| 732 | if (!test_bit(bit_nr, &page->flags)) |
| 733 | return 0; |
| 734 | return __wait_on_bit(page_waitqueue(page), &wait, |
| 735 | bit_wait_io_timeout, TASK_KILLABLE); |
| 736 | } |
| 737 | EXPORT_SYMBOL_GPL(wait_on_page_bit_killable_timeout); |
| 738 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | /** |
David Howells | 385e1ca5f | 2009-04-03 16:42:39 +0100 | [diff] [blame] | 740 | * add_page_wait_queue - Add an arbitrary waiter to a page's wait queue |
Randy Dunlap | 697f619 | 2009-04-13 14:39:54 -0700 | [diff] [blame] | 741 | * @page: Page defining the wait queue of interest |
| 742 | * @waiter: Waiter to add to the queue |
David Howells | 385e1ca5f | 2009-04-03 16:42:39 +0100 | [diff] [blame] | 743 | * |
| 744 | * Add an arbitrary @waiter to the wait queue for the nominated @page. |
| 745 | */ |
| 746 | void add_page_wait_queue(struct page *page, wait_queue_t *waiter) |
| 747 | { |
| 748 | wait_queue_head_t *q = page_waitqueue(page); |
| 749 | unsigned long flags; |
| 750 | |
| 751 | spin_lock_irqsave(&q->lock, flags); |
| 752 | __add_wait_queue(q, waiter); |
| 753 | spin_unlock_irqrestore(&q->lock, flags); |
| 754 | } |
| 755 | EXPORT_SYMBOL_GPL(add_page_wait_queue); |
| 756 | |
| 757 | /** |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 758 | * unlock_page - unlock a locked page |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 759 | * @page: the page |
| 760 | * |
| 761 | * Unlocks the page and wakes up sleepers in ___wait_on_page_locked(). |
| 762 | * Also wakes sleepers in wait_on_page_writeback() because the wakeup |
Masanari Iida | da3dae5 | 2014-09-09 01:27:23 +0900 | [diff] [blame] | 763 | * mechanism between PageLocked pages and PageWriteback pages is shared. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 764 | * But that's OK - sleepers in wait_on_page_writeback() just go back to sleep. |
| 765 | * |
Nick Piggin | 8413ac9 | 2008-10-18 20:26:59 -0700 | [diff] [blame] | 766 | * The mb is necessary to enforce ordering between the clear_bit and the read |
| 767 | * of the waitqueue (to avoid SMP races with a parallel wait_on_page_locked()). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 768 | */ |
Harvey Harrison | 920c7a5 | 2008-02-04 22:29:26 -0800 | [diff] [blame] | 769 | void unlock_page(struct page *page) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 770 | { |
Sasha Levin | 309381fea | 2014-01-23 15:52:54 -0800 | [diff] [blame] | 771 | VM_BUG_ON_PAGE(!PageLocked(page), page); |
Nick Piggin | 8413ac9 | 2008-10-18 20:26:59 -0700 | [diff] [blame] | 772 | clear_bit_unlock(PG_locked, &page->flags); |
Peter Zijlstra | 4e857c5 | 2014-03-17 18:06:10 +0100 | [diff] [blame] | 773 | smp_mb__after_atomic(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 774 | wake_up_page(page, PG_locked); |
| 775 | } |
| 776 | EXPORT_SYMBOL(unlock_page); |
| 777 | |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 778 | /** |
| 779 | * end_page_writeback - end writeback against a page |
| 780 | * @page: the page |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 781 | */ |
| 782 | void end_page_writeback(struct page *page) |
| 783 | { |
Mel Gorman | 888cf2d | 2014-06-04 16:10:34 -0700 | [diff] [blame] | 784 | /* |
| 785 | * TestClearPageReclaim could be used here but it is an atomic |
| 786 | * operation and overkill in this particular case. Failing to |
| 787 | * shuffle a page marked for immediate reclaim is too mild to |
| 788 | * justify taking an atomic operation penalty at the end of |
| 789 | * ever page writeback. |
| 790 | */ |
| 791 | if (PageReclaim(page)) { |
| 792 | ClearPageReclaim(page); |
Miklos Szeredi | ac6aadb | 2008-04-28 02:12:38 -0700 | [diff] [blame] | 793 | rotate_reclaimable_page(page); |
Mel Gorman | 888cf2d | 2014-06-04 16:10:34 -0700 | [diff] [blame] | 794 | } |
Miklos Szeredi | ac6aadb | 2008-04-28 02:12:38 -0700 | [diff] [blame] | 795 | |
| 796 | if (!test_clear_page_writeback(page)) |
| 797 | BUG(); |
| 798 | |
Peter Zijlstra | 4e857c5 | 2014-03-17 18:06:10 +0100 | [diff] [blame] | 799 | smp_mb__after_atomic(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 800 | wake_up_page(page, PG_writeback); |
| 801 | } |
| 802 | EXPORT_SYMBOL(end_page_writeback); |
| 803 | |
Matthew Wilcox | 57d9984 | 2014-06-04 16:07:45 -0700 | [diff] [blame] | 804 | /* |
| 805 | * After completing I/O on a page, call this routine to update the page |
| 806 | * flags appropriately |
| 807 | */ |
| 808 | void page_endio(struct page *page, int rw, int err) |
| 809 | { |
| 810 | if (rw == READ) { |
| 811 | if (!err) { |
| 812 | SetPageUptodate(page); |
| 813 | } else { |
| 814 | ClearPageUptodate(page); |
| 815 | SetPageError(page); |
| 816 | } |
| 817 | unlock_page(page); |
| 818 | } else { /* rw == WRITE */ |
| 819 | if (err) { |
| 820 | SetPageError(page); |
| 821 | if (page->mapping) |
| 822 | mapping_set_error(page->mapping, err); |
| 823 | } |
| 824 | end_page_writeback(page); |
| 825 | } |
| 826 | } |
| 827 | EXPORT_SYMBOL_GPL(page_endio); |
| 828 | |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 829 | /** |
| 830 | * __lock_page - get a lock on the page, assuming we need to sleep to get it |
| 831 | * @page: the page to lock |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 832 | */ |
Harvey Harrison | 920c7a5 | 2008-02-04 22:29:26 -0800 | [diff] [blame] | 833 | void __lock_page(struct page *page) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 834 | { |
| 835 | DEFINE_WAIT_BIT(wait, &page->flags, PG_locked); |
| 836 | |
NeilBrown | 7431620 | 2014-07-07 15:16:04 +1000 | [diff] [blame] | 837 | __wait_on_bit_lock(page_waitqueue(page), &wait, bit_wait_io, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 838 | TASK_UNINTERRUPTIBLE); |
| 839 | } |
| 840 | EXPORT_SYMBOL(__lock_page); |
| 841 | |
Harvey Harrison | b5606c2 | 2008-02-13 15:03:16 -0800 | [diff] [blame] | 842 | int __lock_page_killable(struct page *page) |
Matthew Wilcox | 2687a35 | 2007-12-06 11:18:49 -0500 | [diff] [blame] | 843 | { |
| 844 | DEFINE_WAIT_BIT(wait, &page->flags, PG_locked); |
| 845 | |
| 846 | return __wait_on_bit_lock(page_waitqueue(page), &wait, |
NeilBrown | 7431620 | 2014-07-07 15:16:04 +1000 | [diff] [blame] | 847 | bit_wait_io, TASK_KILLABLE); |
Matthew Wilcox | 2687a35 | 2007-12-06 11:18:49 -0500 | [diff] [blame] | 848 | } |
Evgeniy Polyakov | 18bc0bb | 2009-02-09 17:02:42 +0300 | [diff] [blame] | 849 | EXPORT_SYMBOL_GPL(__lock_page_killable); |
Matthew Wilcox | 2687a35 | 2007-12-06 11:18:49 -0500 | [diff] [blame] | 850 | |
Paul Cassella | 9a95f3c | 2014-08-06 16:07:24 -0700 | [diff] [blame] | 851 | /* |
| 852 | * Return values: |
| 853 | * 1 - page is locked; mmap_sem is still held. |
| 854 | * 0 - page is not locked. |
| 855 | * mmap_sem has been released (up_read()), unless flags had both |
| 856 | * FAULT_FLAG_ALLOW_RETRY and FAULT_FLAG_RETRY_NOWAIT set, in |
| 857 | * which case mmap_sem is still held. |
| 858 | * |
| 859 | * If neither ALLOW_RETRY nor KILLABLE are set, will always return 1 |
| 860 | * with the page locked and the mmap_sem unperturbed. |
| 861 | */ |
Michel Lespinasse | d065bd8 | 2010-10-26 14:21:57 -0700 | [diff] [blame] | 862 | int __lock_page_or_retry(struct page *page, struct mm_struct *mm, |
| 863 | unsigned int flags) |
| 864 | { |
KOSAKI Motohiro | 37b23e0 | 2011-05-24 17:11:30 -0700 | [diff] [blame] | 865 | if (flags & FAULT_FLAG_ALLOW_RETRY) { |
| 866 | /* |
| 867 | * CAUTION! In this case, mmap_sem is not released |
| 868 | * even though return 0. |
| 869 | */ |
| 870 | if (flags & FAULT_FLAG_RETRY_NOWAIT) |
| 871 | return 0; |
| 872 | |
| 873 | up_read(&mm->mmap_sem); |
| 874 | if (flags & FAULT_FLAG_KILLABLE) |
| 875 | wait_on_page_locked_killable(page); |
| 876 | else |
Gleb Natapov | 318b275 | 2011-03-22 16:30:51 -0700 | [diff] [blame] | 877 | wait_on_page_locked(page); |
Michel Lespinasse | d065bd8 | 2010-10-26 14:21:57 -0700 | [diff] [blame] | 878 | return 0; |
KOSAKI Motohiro | 37b23e0 | 2011-05-24 17:11:30 -0700 | [diff] [blame] | 879 | } else { |
| 880 | if (flags & FAULT_FLAG_KILLABLE) { |
| 881 | int ret; |
| 882 | |
| 883 | ret = __lock_page_killable(page); |
| 884 | if (ret) { |
| 885 | up_read(&mm->mmap_sem); |
| 886 | return 0; |
| 887 | } |
| 888 | } else |
| 889 | __lock_page(page); |
| 890 | return 1; |
Michel Lespinasse | d065bd8 | 2010-10-26 14:21:57 -0700 | [diff] [blame] | 891 | } |
| 892 | } |
| 893 | |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 894 | /** |
Johannes Weiner | e7b563b | 2014-04-03 14:47:44 -0700 | [diff] [blame] | 895 | * page_cache_next_hole - find the next hole (not-present entry) |
| 896 | * @mapping: mapping |
| 897 | * @index: index |
| 898 | * @max_scan: maximum range to search |
| 899 | * |
| 900 | * Search the set [index, min(index+max_scan-1, MAX_INDEX)] for the |
| 901 | * lowest indexed hole. |
| 902 | * |
| 903 | * Returns: the index of the hole if found, otherwise returns an index |
| 904 | * outside of the set specified (in which case 'return - index >= |
| 905 | * max_scan' will be true). In rare cases of index wrap-around, 0 will |
| 906 | * be returned. |
| 907 | * |
| 908 | * page_cache_next_hole may be called under rcu_read_lock. However, |
| 909 | * like radix_tree_gang_lookup, this will not atomically search a |
| 910 | * snapshot of the tree at a single point in time. For example, if a |
| 911 | * hole is created at index 5, then subsequently a hole is created at |
| 912 | * index 10, page_cache_next_hole covering both indexes may return 10 |
| 913 | * if called under rcu_read_lock. |
| 914 | */ |
| 915 | pgoff_t page_cache_next_hole(struct address_space *mapping, |
| 916 | pgoff_t index, unsigned long max_scan) |
| 917 | { |
| 918 | unsigned long i; |
| 919 | |
| 920 | for (i = 0; i < max_scan; i++) { |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 921 | struct page *page; |
| 922 | |
| 923 | page = radix_tree_lookup(&mapping->page_tree, index); |
| 924 | if (!page || radix_tree_exceptional_entry(page)) |
Johannes Weiner | e7b563b | 2014-04-03 14:47:44 -0700 | [diff] [blame] | 925 | break; |
| 926 | index++; |
| 927 | if (index == 0) |
| 928 | break; |
| 929 | } |
| 930 | |
| 931 | return index; |
| 932 | } |
| 933 | EXPORT_SYMBOL(page_cache_next_hole); |
| 934 | |
| 935 | /** |
| 936 | * page_cache_prev_hole - find the prev hole (not-present entry) |
| 937 | * @mapping: mapping |
| 938 | * @index: index |
| 939 | * @max_scan: maximum range to search |
| 940 | * |
| 941 | * Search backwards in the range [max(index-max_scan+1, 0), index] for |
| 942 | * the first hole. |
| 943 | * |
| 944 | * Returns: the index of the hole if found, otherwise returns an index |
| 945 | * outside of the set specified (in which case 'index - return >= |
| 946 | * max_scan' will be true). In rare cases of wrap-around, ULONG_MAX |
| 947 | * will be returned. |
| 948 | * |
| 949 | * page_cache_prev_hole may be called under rcu_read_lock. However, |
| 950 | * like radix_tree_gang_lookup, this will not atomically search a |
| 951 | * snapshot of the tree at a single point in time. For example, if a |
| 952 | * hole is created at index 10, then subsequently a hole is created at |
| 953 | * index 5, page_cache_prev_hole covering both indexes may return 5 if |
| 954 | * called under rcu_read_lock. |
| 955 | */ |
| 956 | pgoff_t page_cache_prev_hole(struct address_space *mapping, |
| 957 | pgoff_t index, unsigned long max_scan) |
| 958 | { |
| 959 | unsigned long i; |
| 960 | |
| 961 | for (i = 0; i < max_scan; i++) { |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 962 | struct page *page; |
| 963 | |
| 964 | page = radix_tree_lookup(&mapping->page_tree, index); |
| 965 | if (!page || radix_tree_exceptional_entry(page)) |
Johannes Weiner | e7b563b | 2014-04-03 14:47:44 -0700 | [diff] [blame] | 966 | break; |
| 967 | index--; |
| 968 | if (index == ULONG_MAX) |
| 969 | break; |
| 970 | } |
| 971 | |
| 972 | return index; |
| 973 | } |
| 974 | EXPORT_SYMBOL(page_cache_prev_hole); |
| 975 | |
| 976 | /** |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 977 | * find_get_entry - find and get a page cache entry |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 978 | * @mapping: the address_space to search |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 979 | * @offset: the page cache index |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 980 | * |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 981 | * Looks up the page cache slot at @mapping & @offset. If there is a |
| 982 | * page cache page, it is returned with an increased refcount. |
| 983 | * |
Johannes Weiner | 139b6a6 | 2014-05-06 12:50:05 -0700 | [diff] [blame] | 984 | * If the slot holds a shadow entry of a previously evicted page, or a |
| 985 | * swap entry from shmem/tmpfs, it is returned. |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 986 | * |
| 987 | * Otherwise, %NULL is returned. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 988 | */ |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 989 | struct page *find_get_entry(struct address_space *mapping, pgoff_t offset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 990 | { |
Nick Piggin | a60637c | 2008-07-25 19:45:31 -0700 | [diff] [blame] | 991 | void **pagep; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 992 | struct page *page; |
| 993 | |
Nick Piggin | a60637c | 2008-07-25 19:45:31 -0700 | [diff] [blame] | 994 | rcu_read_lock(); |
| 995 | repeat: |
| 996 | page = NULL; |
| 997 | pagep = radix_tree_lookup_slot(&mapping->page_tree, offset); |
| 998 | if (pagep) { |
| 999 | page = radix_tree_deref_slot(pagep); |
Nick Piggin | 27d20fd | 2010-11-11 14:05:19 -0800 | [diff] [blame] | 1000 | if (unlikely(!page)) |
| 1001 | goto out; |
Hugh Dickins | a2c16d6 | 2011-08-03 16:21:19 -0700 | [diff] [blame] | 1002 | if (radix_tree_exception(page)) { |
Hugh Dickins | 8079b1c | 2011-08-03 16:21:28 -0700 | [diff] [blame] | 1003 | if (radix_tree_deref_retry(page)) |
| 1004 | goto repeat; |
| 1005 | /* |
Johannes Weiner | 139b6a6 | 2014-05-06 12:50:05 -0700 | [diff] [blame] | 1006 | * A shadow entry of a recently evicted page, |
| 1007 | * or a swap entry from shmem/tmpfs. Return |
| 1008 | * it without attempting to raise page count. |
Hugh Dickins | 8079b1c | 2011-08-03 16:21:28 -0700 | [diff] [blame] | 1009 | */ |
| 1010 | goto out; |
Hugh Dickins | a2c16d6 | 2011-08-03 16:21:19 -0700 | [diff] [blame] | 1011 | } |
Nick Piggin | a60637c | 2008-07-25 19:45:31 -0700 | [diff] [blame] | 1012 | if (!page_cache_get_speculative(page)) |
| 1013 | goto repeat; |
| 1014 | |
| 1015 | /* |
| 1016 | * Has the page moved? |
| 1017 | * This is part of the lockless pagecache protocol. See |
| 1018 | * include/linux/pagemap.h for details. |
| 1019 | */ |
| 1020 | if (unlikely(page != *pagep)) { |
| 1021 | page_cache_release(page); |
| 1022 | goto repeat; |
| 1023 | } |
| 1024 | } |
Nick Piggin | 27d20fd | 2010-11-11 14:05:19 -0800 | [diff] [blame] | 1025 | out: |
Nick Piggin | a60637c | 2008-07-25 19:45:31 -0700 | [diff] [blame] | 1026 | rcu_read_unlock(); |
| 1027 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1028 | return page; |
| 1029 | } |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 1030 | EXPORT_SYMBOL(find_get_entry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1031 | |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 1032 | /** |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 1033 | * find_lock_entry - locate, pin and lock a page cache entry |
| 1034 | * @mapping: the address_space to search |
| 1035 | * @offset: the page cache index |
| 1036 | * |
| 1037 | * Looks up the page cache slot at @mapping & @offset. If there is a |
| 1038 | * page cache page, it is returned locked and with an increased |
| 1039 | * refcount. |
| 1040 | * |
Johannes Weiner | 139b6a6 | 2014-05-06 12:50:05 -0700 | [diff] [blame] | 1041 | * If the slot holds a shadow entry of a previously evicted page, or a |
| 1042 | * swap entry from shmem/tmpfs, it is returned. |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 1043 | * |
| 1044 | * Otherwise, %NULL is returned. |
| 1045 | * |
| 1046 | * find_lock_entry() may sleep. |
| 1047 | */ |
| 1048 | struct page *find_lock_entry(struct address_space *mapping, pgoff_t offset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1049 | { |
| 1050 | struct page *page; |
| 1051 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1052 | repeat: |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 1053 | page = find_get_entry(mapping, offset); |
Hugh Dickins | a2c16d6 | 2011-08-03 16:21:19 -0700 | [diff] [blame] | 1054 | if (page && !radix_tree_exception(page)) { |
Nick Piggin | a60637c | 2008-07-25 19:45:31 -0700 | [diff] [blame] | 1055 | lock_page(page); |
| 1056 | /* Has the page been truncated? */ |
| 1057 | if (unlikely(page->mapping != mapping)) { |
| 1058 | unlock_page(page); |
| 1059 | page_cache_release(page); |
| 1060 | goto repeat; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1061 | } |
Sasha Levin | 309381fea | 2014-01-23 15:52:54 -0800 | [diff] [blame] | 1062 | VM_BUG_ON_PAGE(page->index != offset, page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1063 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1064 | return page; |
| 1065 | } |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 1066 | EXPORT_SYMBOL(find_lock_entry); |
| 1067 | |
| 1068 | /** |
Mel Gorman | 2457aec | 2014-06-04 16:10:31 -0700 | [diff] [blame] | 1069 | * pagecache_get_page - find and get a page reference |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 1070 | * @mapping: the address_space to search |
| 1071 | * @offset: the page index |
Mel Gorman | 2457aec | 2014-06-04 16:10:31 -0700 | [diff] [blame] | 1072 | * @fgp_flags: PCG flags |
Michal Hocko | 45f87de | 2014-12-29 20:30:35 +0100 | [diff] [blame] | 1073 | * @gfp_mask: gfp mask to use for the page cache data page allocation |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 1074 | * |
Mel Gorman | 2457aec | 2014-06-04 16:10:31 -0700 | [diff] [blame] | 1075 | * Looks up the page cache slot at @mapping & @offset. |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 1076 | * |
Randy Dunlap | 7532518 | 2014-07-30 16:08:37 -0700 | [diff] [blame] | 1077 | * PCG flags modify how the page is returned. |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 1078 | * |
Mel Gorman | 2457aec | 2014-06-04 16:10:31 -0700 | [diff] [blame] | 1079 | * FGP_ACCESSED: the page will be marked accessed |
| 1080 | * FGP_LOCK: Page is return locked |
| 1081 | * FGP_CREAT: If page is not present then a new page is allocated using |
Michal Hocko | 45f87de | 2014-12-29 20:30:35 +0100 | [diff] [blame] | 1082 | * @gfp_mask and added to the page cache and the VM's LRU |
| 1083 | * list. The page is returned locked and with an increased |
| 1084 | * refcount. Otherwise, %NULL is returned. |
Mel Gorman | 2457aec | 2014-06-04 16:10:31 -0700 | [diff] [blame] | 1085 | * |
| 1086 | * If FGP_LOCK or FGP_CREAT are specified then the function may sleep even |
| 1087 | * if the GFP flags specified for FGP_CREAT are atomic. |
| 1088 | * |
| 1089 | * If there is a page cache page, it is returned with an increased refcount. |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 1090 | */ |
Mel Gorman | 2457aec | 2014-06-04 16:10:31 -0700 | [diff] [blame] | 1091 | struct page *pagecache_get_page(struct address_space *mapping, pgoff_t offset, |
Michal Hocko | 45f87de | 2014-12-29 20:30:35 +0100 | [diff] [blame] | 1092 | int fgp_flags, gfp_t gfp_mask) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1093 | { |
Nick Piggin | eb2be18 | 2007-10-16 01:24:57 -0700 | [diff] [blame] | 1094 | struct page *page; |
Mel Gorman | 2457aec | 2014-06-04 16:10:31 -0700 | [diff] [blame] | 1095 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1096 | repeat: |
Mel Gorman | 2457aec | 2014-06-04 16:10:31 -0700 | [diff] [blame] | 1097 | page = find_get_entry(mapping, offset); |
| 1098 | if (radix_tree_exceptional_entry(page)) |
| 1099 | page = NULL; |
| 1100 | if (!page) |
| 1101 | goto no_page; |
| 1102 | |
| 1103 | if (fgp_flags & FGP_LOCK) { |
| 1104 | if (fgp_flags & FGP_NOWAIT) { |
| 1105 | if (!trylock_page(page)) { |
| 1106 | page_cache_release(page); |
| 1107 | return NULL; |
| 1108 | } |
| 1109 | } else { |
| 1110 | lock_page(page); |
| 1111 | } |
| 1112 | |
| 1113 | /* Has the page been truncated? */ |
| 1114 | if (unlikely(page->mapping != mapping)) { |
| 1115 | unlock_page(page); |
| 1116 | page_cache_release(page); |
| 1117 | goto repeat; |
| 1118 | } |
| 1119 | VM_BUG_ON_PAGE(page->index != offset, page); |
| 1120 | } |
| 1121 | |
| 1122 | if (page && (fgp_flags & FGP_ACCESSED)) |
| 1123 | mark_page_accessed(page); |
| 1124 | |
| 1125 | no_page: |
| 1126 | if (!page && (fgp_flags & FGP_CREAT)) { |
| 1127 | int err; |
| 1128 | if ((fgp_flags & FGP_WRITE) && mapping_cap_account_dirty(mapping)) |
Michal Hocko | 45f87de | 2014-12-29 20:30:35 +0100 | [diff] [blame] | 1129 | gfp_mask |= __GFP_WRITE; |
| 1130 | if (fgp_flags & FGP_NOFS) |
| 1131 | gfp_mask &= ~__GFP_FS; |
Mel Gorman | 2457aec | 2014-06-04 16:10:31 -0700 | [diff] [blame] | 1132 | |
Michal Hocko | 45f87de | 2014-12-29 20:30:35 +0100 | [diff] [blame] | 1133 | page = __page_cache_alloc(gfp_mask); |
Nick Piggin | eb2be18 | 2007-10-16 01:24:57 -0700 | [diff] [blame] | 1134 | if (!page) |
| 1135 | return NULL; |
Mel Gorman | 2457aec | 2014-06-04 16:10:31 -0700 | [diff] [blame] | 1136 | |
| 1137 | if (WARN_ON_ONCE(!(fgp_flags & FGP_LOCK))) |
| 1138 | fgp_flags |= FGP_LOCK; |
| 1139 | |
Hugh Dickins | eb39d61 | 2014-08-06 16:06:43 -0700 | [diff] [blame] | 1140 | /* Init accessed so avoid atomic mark_page_accessed later */ |
Mel Gorman | 2457aec | 2014-06-04 16:10:31 -0700 | [diff] [blame] | 1141 | if (fgp_flags & FGP_ACCESSED) |
Hugh Dickins | eb39d61 | 2014-08-06 16:06:43 -0700 | [diff] [blame] | 1142 | __SetPageReferenced(page); |
Mel Gorman | 2457aec | 2014-06-04 16:10:31 -0700 | [diff] [blame] | 1143 | |
Michal Hocko | 45f87de | 2014-12-29 20:30:35 +0100 | [diff] [blame] | 1144 | err = add_to_page_cache_lru(page, mapping, offset, |
| 1145 | gfp_mask & GFP_RECLAIM_MASK); |
Nick Piggin | eb2be18 | 2007-10-16 01:24:57 -0700 | [diff] [blame] | 1146 | if (unlikely(err)) { |
| 1147 | page_cache_release(page); |
| 1148 | page = NULL; |
| 1149 | if (err == -EEXIST) |
| 1150 | goto repeat; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1151 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1152 | } |
Mel Gorman | 2457aec | 2014-06-04 16:10:31 -0700 | [diff] [blame] | 1153 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1154 | return page; |
| 1155 | } |
Mel Gorman | 2457aec | 2014-06-04 16:10:31 -0700 | [diff] [blame] | 1156 | EXPORT_SYMBOL(pagecache_get_page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1157 | |
| 1158 | /** |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 1159 | * find_get_entries - gang pagecache lookup |
| 1160 | * @mapping: The address_space to search |
| 1161 | * @start: The starting page cache index |
| 1162 | * @nr_entries: The maximum number of entries |
| 1163 | * @entries: Where the resulting entries are placed |
| 1164 | * @indices: The cache indices corresponding to the entries in @entries |
| 1165 | * |
| 1166 | * find_get_entries() will search for and return a group of up to |
| 1167 | * @nr_entries entries in the mapping. The entries are placed at |
| 1168 | * @entries. find_get_entries() takes a reference against any actual |
| 1169 | * pages it returns. |
| 1170 | * |
| 1171 | * The search returns a group of mapping-contiguous page cache entries |
| 1172 | * with ascending indexes. There may be holes in the indices due to |
| 1173 | * not-present pages. |
| 1174 | * |
Johannes Weiner | 139b6a6 | 2014-05-06 12:50:05 -0700 | [diff] [blame] | 1175 | * Any shadow entries of evicted pages, or swap entries from |
| 1176 | * shmem/tmpfs, are included in the returned array. |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 1177 | * |
| 1178 | * find_get_entries() returns the number of pages and shadow entries |
| 1179 | * which were found. |
| 1180 | */ |
| 1181 | unsigned find_get_entries(struct address_space *mapping, |
| 1182 | pgoff_t start, unsigned int nr_entries, |
| 1183 | struct page **entries, pgoff_t *indices) |
| 1184 | { |
| 1185 | void **slot; |
| 1186 | unsigned int ret = 0; |
| 1187 | struct radix_tree_iter iter; |
| 1188 | |
| 1189 | if (!nr_entries) |
| 1190 | return 0; |
| 1191 | |
| 1192 | rcu_read_lock(); |
| 1193 | restart: |
| 1194 | radix_tree_for_each_slot(slot, &mapping->page_tree, &iter, start) { |
| 1195 | struct page *page; |
| 1196 | repeat: |
| 1197 | page = radix_tree_deref_slot(slot); |
| 1198 | if (unlikely(!page)) |
| 1199 | continue; |
| 1200 | if (radix_tree_exception(page)) { |
| 1201 | if (radix_tree_deref_retry(page)) |
| 1202 | goto restart; |
| 1203 | /* |
Johannes Weiner | 139b6a6 | 2014-05-06 12:50:05 -0700 | [diff] [blame] | 1204 | * A shadow entry of a recently evicted page, |
| 1205 | * or a swap entry from shmem/tmpfs. Return |
| 1206 | * it without attempting to raise page count. |
Johannes Weiner | 0cd6144 | 2014-04-03 14:47:46 -0700 | [diff] [blame] | 1207 | */ |
| 1208 | goto export; |
| 1209 | } |
| 1210 | if (!page_cache_get_speculative(page)) |
| 1211 | goto repeat; |
| 1212 | |
| 1213 | /* Has the page moved? */ |
| 1214 | if (unlikely(page != *slot)) { |
| 1215 | page_cache_release(page); |
| 1216 | goto repeat; |
| 1217 | } |
| 1218 | export: |
| 1219 | indices[ret] = iter.index; |
| 1220 | entries[ret] = page; |
| 1221 | if (++ret == nr_entries) |
| 1222 | break; |
| 1223 | } |
| 1224 | rcu_read_unlock(); |
| 1225 | return ret; |
| 1226 | } |
| 1227 | |
| 1228 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1229 | * find_get_pages - gang pagecache lookup |
| 1230 | * @mapping: The address_space to search |
| 1231 | * @start: The starting page index |
| 1232 | * @nr_pages: The maximum number of pages |
| 1233 | * @pages: Where the resulting pages are placed |
| 1234 | * |
| 1235 | * find_get_pages() will search for and return a group of up to |
| 1236 | * @nr_pages pages in the mapping. The pages are placed at @pages. |
| 1237 | * find_get_pages() takes a reference against the returned pages. |
| 1238 | * |
| 1239 | * The search returns a group of mapping-contiguous pages with ascending |
| 1240 | * indexes. There may be holes in the indices due to not-present pages. |
| 1241 | * |
| 1242 | * find_get_pages() returns the number of pages which were found. |
| 1243 | */ |
| 1244 | unsigned find_get_pages(struct address_space *mapping, pgoff_t start, |
| 1245 | unsigned int nr_pages, struct page **pages) |
| 1246 | { |
Konstantin Khlebnikov | 0fc9d10 | 2012-03-28 14:42:54 -0700 | [diff] [blame] | 1247 | struct radix_tree_iter iter; |
| 1248 | void **slot; |
| 1249 | unsigned ret = 0; |
| 1250 | |
| 1251 | if (unlikely(!nr_pages)) |
| 1252 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1253 | |
Nick Piggin | a60637c | 2008-07-25 19:45:31 -0700 | [diff] [blame] | 1254 | rcu_read_lock(); |
| 1255 | restart: |
Konstantin Khlebnikov | 0fc9d10 | 2012-03-28 14:42:54 -0700 | [diff] [blame] | 1256 | radix_tree_for_each_slot(slot, &mapping->page_tree, &iter, start) { |
Nick Piggin | a60637c | 2008-07-25 19:45:31 -0700 | [diff] [blame] | 1257 | struct page *page; |
| 1258 | repeat: |
Konstantin Khlebnikov | 0fc9d10 | 2012-03-28 14:42:54 -0700 | [diff] [blame] | 1259 | page = radix_tree_deref_slot(slot); |
Nick Piggin | a60637c | 2008-07-25 19:45:31 -0700 | [diff] [blame] | 1260 | if (unlikely(!page)) |
| 1261 | continue; |
Hugh Dickins | 9d8aa4e | 2011-03-22 16:33:06 -0700 | [diff] [blame] | 1262 | |
Hugh Dickins | a2c16d6 | 2011-08-03 16:21:19 -0700 | [diff] [blame] | 1263 | if (radix_tree_exception(page)) { |
Hugh Dickins | 8079b1c | 2011-08-03 16:21:28 -0700 | [diff] [blame] | 1264 | if (radix_tree_deref_retry(page)) { |
| 1265 | /* |
| 1266 | * Transient condition which can only trigger |
| 1267 | * when entry at index 0 moves out of or back |
| 1268 | * to root: none yet gotten, safe to restart. |
| 1269 | */ |
Konstantin Khlebnikov | 0fc9d10 | 2012-03-28 14:42:54 -0700 | [diff] [blame] | 1270 | WARN_ON(iter.index); |
Hugh Dickins | 8079b1c | 2011-08-03 16:21:28 -0700 | [diff] [blame] | 1271 | goto restart; |
| 1272 | } |
Hugh Dickins | a2c16d6 | 2011-08-03 16:21:19 -0700 | [diff] [blame] | 1273 | /* |
Johannes Weiner | 139b6a6 | 2014-05-06 12:50:05 -0700 | [diff] [blame] | 1274 | * A shadow entry of a recently evicted page, |
| 1275 | * or a swap entry from shmem/tmpfs. Skip |
| 1276 | * over it. |
Hugh Dickins | a2c16d6 | 2011-08-03 16:21:19 -0700 | [diff] [blame] | 1277 | */ |
Hugh Dickins | 8079b1c | 2011-08-03 16:21:28 -0700 | [diff] [blame] | 1278 | continue; |
Nick Piggin | 27d20fd | 2010-11-11 14:05:19 -0800 | [diff] [blame] | 1279 | } |
Nick Piggin | a60637c | 2008-07-25 19:45:31 -0700 | [diff] [blame] | 1280 | |
| 1281 | if (!page_cache_get_speculative(page)) |
| 1282 | goto repeat; |
| 1283 | |
| 1284 | /* Has the page moved? */ |
Konstantin Khlebnikov | 0fc9d10 | 2012-03-28 14:42:54 -0700 | [diff] [blame] | 1285 | if (unlikely(page != *slot)) { |
Nick Piggin | a60637c | 2008-07-25 19:45:31 -0700 | [diff] [blame] | 1286 | page_cache_release(page); |
| 1287 | goto repeat; |
| 1288 | } |
| 1289 | |
| 1290 | pages[ret] = page; |
Konstantin Khlebnikov | 0fc9d10 | 2012-03-28 14:42:54 -0700 | [diff] [blame] | 1291 | if (++ret == nr_pages) |
| 1292 | break; |
Nick Piggin | a60637c | 2008-07-25 19:45:31 -0700 | [diff] [blame] | 1293 | } |
Hugh Dickins | 5b280c0 | 2011-03-22 16:33:07 -0700 | [diff] [blame] | 1294 | |
Nick Piggin | a60637c | 2008-07-25 19:45:31 -0700 | [diff] [blame] | 1295 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1296 | return ret; |
| 1297 | } |
| 1298 | |
Jens Axboe | ebf4350 | 2006-04-27 08:46:01 +0200 | [diff] [blame] | 1299 | /** |
| 1300 | * find_get_pages_contig - gang contiguous pagecache lookup |
| 1301 | * @mapping: The address_space to search |
| 1302 | * @index: The starting page index |
| 1303 | * @nr_pages: The maximum number of pages |
| 1304 | * @pages: Where the resulting pages are placed |
| 1305 | * |
| 1306 | * find_get_pages_contig() works exactly like find_get_pages(), except |
| 1307 | * that the returned number of pages are guaranteed to be contiguous. |
| 1308 | * |
| 1309 | * find_get_pages_contig() returns the number of pages which were found. |
| 1310 | */ |
| 1311 | unsigned find_get_pages_contig(struct address_space *mapping, pgoff_t index, |
| 1312 | unsigned int nr_pages, struct page **pages) |
| 1313 | { |
Konstantin Khlebnikov | 0fc9d10 | 2012-03-28 14:42:54 -0700 | [diff] [blame] | 1314 | struct radix_tree_iter iter; |
| 1315 | void **slot; |
| 1316 | unsigned int ret = 0; |
| 1317 | |
| 1318 | if (unlikely(!nr_pages)) |
| 1319 | return 0; |
Jens Axboe | ebf4350 | 2006-04-27 08:46:01 +0200 | [diff] [blame] | 1320 | |
Nick Piggin | a60637c | 2008-07-25 19:45:31 -0700 | [diff] [blame] | 1321 | rcu_read_lock(); |
| 1322 | restart: |
Konstantin Khlebnikov | 0fc9d10 | 2012-03-28 14:42:54 -0700 | [diff] [blame] | 1323 | radix_tree_for_each_contig(slot, &mapping->page_tree, &iter, index) { |
Nick Piggin | a60637c | 2008-07-25 19:45:31 -0700 | [diff] [blame] | 1324 | struct page *page; |
| 1325 | repeat: |
Konstantin Khlebnikov | 0fc9d10 | 2012-03-28 14:42:54 -0700 | [diff] [blame] | 1326 | page = radix_tree_deref_slot(slot); |
| 1327 | /* The hole, there no reason to continue */ |
Nick Piggin | a60637c | 2008-07-25 19:45:31 -0700 | [diff] [blame] | 1328 | if (unlikely(!page)) |
Konstantin Khlebnikov | 0fc9d10 | 2012-03-28 14:42:54 -0700 | [diff] [blame] | 1329 | break; |
Hugh Dickins | 9d8aa4e | 2011-03-22 16:33:06 -0700 | [diff] [blame] | 1330 | |
Hugh Dickins | a2c16d6 | 2011-08-03 16:21:19 -0700 | [diff] [blame] | 1331 | if (radix_tree_exception(page)) { |
Hugh Dickins | 8079b1c | 2011-08-03 16:21:28 -0700 | [diff] [blame] | 1332 | if (radix_tree_deref_retry(page)) { |
| 1333 | /* |
| 1334 | * Transient condition which can only trigger |
| 1335 | * when entry at index 0 moves out of or back |
| 1336 | * to root: none yet gotten, safe to restart. |
| 1337 | */ |
| 1338 | goto restart; |
| 1339 | } |
Hugh Dickins | a2c16d6 | 2011-08-03 16:21:19 -0700 | [diff] [blame] | 1340 | /* |
Johannes Weiner | 139b6a6 | 2014-05-06 12:50:05 -0700 | [diff] [blame] | 1341 | * A shadow entry of a recently evicted page, |
| 1342 | * or a swap entry from shmem/tmpfs. Stop |
| 1343 | * looking for contiguous pages. |
Hugh Dickins | a2c16d6 | 2011-08-03 16:21:19 -0700 | [diff] [blame] | 1344 | */ |
Hugh Dickins | 8079b1c | 2011-08-03 16:21:28 -0700 | [diff] [blame] | 1345 | break; |
Hugh Dickins | a2c16d6 | 2011-08-03 16:21:19 -0700 | [diff] [blame] | 1346 | } |
Nick Piggin | a60637c | 2008-07-25 19:45:31 -0700 | [diff] [blame] | 1347 | |
Nick Piggin | a60637c | 2008-07-25 19:45:31 -0700 | [diff] [blame] | 1348 | if (!page_cache_get_speculative(page)) |
| 1349 | goto repeat; |
| 1350 | |
| 1351 | /* Has the page moved? */ |
Konstantin Khlebnikov | 0fc9d10 | 2012-03-28 14:42:54 -0700 | [diff] [blame] | 1352 | if (unlikely(page != *slot)) { |
Nick Piggin | a60637c | 2008-07-25 19:45:31 -0700 | [diff] [blame] | 1353 | page_cache_release(page); |
| 1354 | goto repeat; |
| 1355 | } |
| 1356 | |
Nick Piggin | 9cbb4cb | 2011-01-13 15:45:51 -0800 | [diff] [blame] | 1357 | /* |
| 1358 | * must check mapping and index after taking the ref. |
| 1359 | * otherwise we can get both false positives and false |
| 1360 | * negatives, which is just confusing to the caller. |
| 1361 | */ |
Konstantin Khlebnikov | 0fc9d10 | 2012-03-28 14:42:54 -0700 | [diff] [blame] | 1362 | if (page->mapping == NULL || page->index != iter.index) { |
Nick Piggin | 9cbb4cb | 2011-01-13 15:45:51 -0800 | [diff] [blame] | 1363 | page_cache_release(page); |
| 1364 | break; |
| 1365 | } |
| 1366 | |
Nick Piggin | a60637c | 2008-07-25 19:45:31 -0700 | [diff] [blame] | 1367 | pages[ret] = page; |
Konstantin Khlebnikov | 0fc9d10 | 2012-03-28 14:42:54 -0700 | [diff] [blame] | 1368 | if (++ret == nr_pages) |
| 1369 | break; |
Jens Axboe | ebf4350 | 2006-04-27 08:46:01 +0200 | [diff] [blame] | 1370 | } |
Nick Piggin | a60637c | 2008-07-25 19:45:31 -0700 | [diff] [blame] | 1371 | rcu_read_unlock(); |
| 1372 | return ret; |
Jens Axboe | ebf4350 | 2006-04-27 08:46:01 +0200 | [diff] [blame] | 1373 | } |
David Howells | ef71c15 | 2007-05-09 02:33:44 -0700 | [diff] [blame] | 1374 | EXPORT_SYMBOL(find_get_pages_contig); |
Jens Axboe | ebf4350 | 2006-04-27 08:46:01 +0200 | [diff] [blame] | 1375 | |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 1376 | /** |
| 1377 | * find_get_pages_tag - find and return pages that match @tag |
| 1378 | * @mapping: the address_space to search |
| 1379 | * @index: the starting page index |
| 1380 | * @tag: the tag index |
| 1381 | * @nr_pages: the maximum number of pages |
| 1382 | * @pages: where the resulting pages are placed |
| 1383 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1384 | * Like find_get_pages, except we only return pages which are tagged with |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 1385 | * @tag. We update @index to index the next page for the traversal. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1386 | */ |
| 1387 | unsigned find_get_pages_tag(struct address_space *mapping, pgoff_t *index, |
| 1388 | int tag, unsigned int nr_pages, struct page **pages) |
| 1389 | { |
Konstantin Khlebnikov | 0fc9d10 | 2012-03-28 14:42:54 -0700 | [diff] [blame] | 1390 | struct radix_tree_iter iter; |
| 1391 | void **slot; |
| 1392 | unsigned ret = 0; |
| 1393 | |
| 1394 | if (unlikely(!nr_pages)) |
| 1395 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1396 | |
Nick Piggin | a60637c | 2008-07-25 19:45:31 -0700 | [diff] [blame] | 1397 | rcu_read_lock(); |
| 1398 | restart: |
Konstantin Khlebnikov | 0fc9d10 | 2012-03-28 14:42:54 -0700 | [diff] [blame] | 1399 | radix_tree_for_each_tagged(slot, &mapping->page_tree, |
| 1400 | &iter, *index, tag) { |
Nick Piggin | a60637c | 2008-07-25 19:45:31 -0700 | [diff] [blame] | 1401 | struct page *page; |
| 1402 | repeat: |
Konstantin Khlebnikov | 0fc9d10 | 2012-03-28 14:42:54 -0700 | [diff] [blame] | 1403 | page = radix_tree_deref_slot(slot); |
Nick Piggin | a60637c | 2008-07-25 19:45:31 -0700 | [diff] [blame] | 1404 | if (unlikely(!page)) |
| 1405 | continue; |
Hugh Dickins | 9d8aa4e | 2011-03-22 16:33:06 -0700 | [diff] [blame] | 1406 | |
Hugh Dickins | a2c16d6 | 2011-08-03 16:21:19 -0700 | [diff] [blame] | 1407 | if (radix_tree_exception(page)) { |
Hugh Dickins | 8079b1c | 2011-08-03 16:21:28 -0700 | [diff] [blame] | 1408 | if (radix_tree_deref_retry(page)) { |
| 1409 | /* |
| 1410 | * Transient condition which can only trigger |
| 1411 | * when entry at index 0 moves out of or back |
| 1412 | * to root: none yet gotten, safe to restart. |
| 1413 | */ |
| 1414 | goto restart; |
| 1415 | } |
Hugh Dickins | a2c16d6 | 2011-08-03 16:21:19 -0700 | [diff] [blame] | 1416 | /* |
Johannes Weiner | 139b6a6 | 2014-05-06 12:50:05 -0700 | [diff] [blame] | 1417 | * A shadow entry of a recently evicted page. |
| 1418 | * |
| 1419 | * Those entries should never be tagged, but |
| 1420 | * this tree walk is lockless and the tags are |
| 1421 | * looked up in bulk, one radix tree node at a |
| 1422 | * time, so there is a sizable window for page |
| 1423 | * reclaim to evict a page we saw tagged. |
| 1424 | * |
| 1425 | * Skip over it. |
Hugh Dickins | a2c16d6 | 2011-08-03 16:21:19 -0700 | [diff] [blame] | 1426 | */ |
Johannes Weiner | 139b6a6 | 2014-05-06 12:50:05 -0700 | [diff] [blame] | 1427 | continue; |
Hugh Dickins | a2c16d6 | 2011-08-03 16:21:19 -0700 | [diff] [blame] | 1428 | } |
Nick Piggin | a60637c | 2008-07-25 19:45:31 -0700 | [diff] [blame] | 1429 | |
| 1430 | if (!page_cache_get_speculative(page)) |
| 1431 | goto repeat; |
| 1432 | |
| 1433 | /* Has the page moved? */ |
Konstantin Khlebnikov | 0fc9d10 | 2012-03-28 14:42:54 -0700 | [diff] [blame] | 1434 | if (unlikely(page != *slot)) { |
Nick Piggin | a60637c | 2008-07-25 19:45:31 -0700 | [diff] [blame] | 1435 | page_cache_release(page); |
| 1436 | goto repeat; |
| 1437 | } |
| 1438 | |
| 1439 | pages[ret] = page; |
Konstantin Khlebnikov | 0fc9d10 | 2012-03-28 14:42:54 -0700 | [diff] [blame] | 1440 | if (++ret == nr_pages) |
| 1441 | break; |
Nick Piggin | a60637c | 2008-07-25 19:45:31 -0700 | [diff] [blame] | 1442 | } |
Hugh Dickins | 5b280c0 | 2011-03-22 16:33:07 -0700 | [diff] [blame] | 1443 | |
Nick Piggin | a60637c | 2008-07-25 19:45:31 -0700 | [diff] [blame] | 1444 | rcu_read_unlock(); |
| 1445 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1446 | if (ret) |
| 1447 | *index = pages[ret - 1]->index + 1; |
Nick Piggin | a60637c | 2008-07-25 19:45:31 -0700 | [diff] [blame] | 1448 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1449 | return ret; |
| 1450 | } |
David Howells | ef71c15 | 2007-05-09 02:33:44 -0700 | [diff] [blame] | 1451 | EXPORT_SYMBOL(find_get_pages_tag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1452 | |
Wu Fengguang | 76d42bd | 2006-06-25 05:48:43 -0700 | [diff] [blame] | 1453 | /* |
| 1454 | * CD/DVDs are error prone. When a medium error occurs, the driver may fail |
| 1455 | * a _large_ part of the i/o request. Imagine the worst scenario: |
| 1456 | * |
| 1457 | * ---R__________________________________________B__________ |
| 1458 | * ^ reading here ^ bad block(assume 4k) |
| 1459 | * |
| 1460 | * read(R) => miss => readahead(R...B) => media error => frustrating retries |
| 1461 | * => failing the whole request => read(R) => read(R+1) => |
| 1462 | * readahead(R+1...B+1) => bang => read(R+2) => read(R+3) => |
| 1463 | * readahead(R+3...B+2) => bang => read(R+3) => read(R+4) => |
| 1464 | * readahead(R+4...B+3) => bang => read(R+4) => read(R+5) => ...... |
| 1465 | * |
| 1466 | * It is going insane. Fix it by quickly scaling down the readahead size. |
| 1467 | */ |
| 1468 | static void shrink_readahead_size_eio(struct file *filp, |
| 1469 | struct file_ra_state *ra) |
| 1470 | { |
Wu Fengguang | 76d42bd | 2006-06-25 05:48:43 -0700 | [diff] [blame] | 1471 | ra->ra_pages /= 4; |
Wu Fengguang | 76d42bd | 2006-06-25 05:48:43 -0700 | [diff] [blame] | 1472 | } |
| 1473 | |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 1474 | /** |
Christoph Hellwig | 36e7891 | 2008-02-08 04:21:24 -0800 | [diff] [blame] | 1475 | * do_generic_file_read - generic file read routine |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 1476 | * @filp: the file to read |
| 1477 | * @ppos: current file position |
Al Viro | 6e58e79 | 2014-02-03 17:07:03 -0500 | [diff] [blame] | 1478 | * @iter: data destination |
| 1479 | * @written: already copied |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 1480 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1481 | * This is a generic file read routine, and uses the |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 1482 | * mapping->a_ops->readpage() function for the actual low-level stuff. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1483 | * |
| 1484 | * This is really ugly. But the goto's actually try to clarify some |
| 1485 | * of the logic when it comes to error handling etc. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1486 | */ |
Al Viro | 6e58e79 | 2014-02-03 17:07:03 -0500 | [diff] [blame] | 1487 | static ssize_t do_generic_file_read(struct file *filp, loff_t *ppos, |
| 1488 | struct iov_iter *iter, ssize_t written) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1489 | { |
Christoph Hellwig | 36e7891 | 2008-02-08 04:21:24 -0800 | [diff] [blame] | 1490 | struct address_space *mapping = filp->f_mapping; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1491 | struct inode *inode = mapping->host; |
Christoph Hellwig | 36e7891 | 2008-02-08 04:21:24 -0800 | [diff] [blame] | 1492 | struct file_ra_state *ra = &filp->f_ra; |
Fengguang Wu | 57f6b96 | 2007-10-16 01:24:37 -0700 | [diff] [blame] | 1493 | pgoff_t index; |
| 1494 | pgoff_t last_index; |
| 1495 | pgoff_t prev_index; |
| 1496 | unsigned long offset; /* offset into pagecache page */ |
Jan Kara | ec0f163 | 2007-05-06 14:49:25 -0700 | [diff] [blame] | 1497 | unsigned int prev_offset; |
Al Viro | 6e58e79 | 2014-02-03 17:07:03 -0500 | [diff] [blame] | 1498 | int error = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1499 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1500 | index = *ppos >> PAGE_CACHE_SHIFT; |
Fengguang Wu | 7ff8107 | 2007-10-16 01:24:35 -0700 | [diff] [blame] | 1501 | prev_index = ra->prev_pos >> PAGE_CACHE_SHIFT; |
| 1502 | prev_offset = ra->prev_pos & (PAGE_CACHE_SIZE-1); |
Al Viro | 6e58e79 | 2014-02-03 17:07:03 -0500 | [diff] [blame] | 1503 | last_index = (*ppos + iter->count + PAGE_CACHE_SIZE-1) >> PAGE_CACHE_SHIFT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1504 | offset = *ppos & ~PAGE_CACHE_MASK; |
| 1505 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1506 | for (;;) { |
| 1507 | struct page *page; |
Fengguang Wu | 57f6b96 | 2007-10-16 01:24:37 -0700 | [diff] [blame] | 1508 | pgoff_t end_index; |
NeilBrown | a32ea1e | 2007-07-17 04:03:04 -0700 | [diff] [blame] | 1509 | loff_t isize; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1510 | unsigned long nr, ret; |
| 1511 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1512 | cond_resched(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1513 | find_page: |
| 1514 | page = find_get_page(mapping, index); |
Fengguang Wu | 3ea89ee | 2007-07-19 01:48:02 -0700 | [diff] [blame] | 1515 | if (!page) { |
Rusty Russell | cf914a7 | 2007-07-19 01:48:08 -0700 | [diff] [blame] | 1516 | page_cache_sync_readahead(mapping, |
Fengguang Wu | 7ff8107 | 2007-10-16 01:24:35 -0700 | [diff] [blame] | 1517 | ra, filp, |
Fengguang Wu | 3ea89ee | 2007-07-19 01:48:02 -0700 | [diff] [blame] | 1518 | index, last_index - index); |
| 1519 | page = find_get_page(mapping, index); |
| 1520 | if (unlikely(page == NULL)) |
| 1521 | goto no_cached_page; |
| 1522 | } |
| 1523 | if (PageReadahead(page)) { |
Rusty Russell | cf914a7 | 2007-07-19 01:48:08 -0700 | [diff] [blame] | 1524 | page_cache_async_readahead(mapping, |
Fengguang Wu | 7ff8107 | 2007-10-16 01:24:35 -0700 | [diff] [blame] | 1525 | ra, filp, page, |
Fengguang Wu | 3ea89ee | 2007-07-19 01:48:02 -0700 | [diff] [blame] | 1526 | index, last_index - index); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1527 | } |
Hisashi Hifumi | 8ab22b9 | 2008-07-28 15:46:36 -0700 | [diff] [blame] | 1528 | if (!PageUptodate(page)) { |
| 1529 | if (inode->i_blkbits == PAGE_CACHE_SHIFT || |
| 1530 | !mapping->a_ops->is_partially_uptodate) |
| 1531 | goto page_not_up_to_date; |
Nick Piggin | 529ae9a | 2008-08-02 12:01:03 +0200 | [diff] [blame] | 1532 | if (!trylock_page(page)) |
Hisashi Hifumi | 8ab22b9 | 2008-07-28 15:46:36 -0700 | [diff] [blame] | 1533 | goto page_not_up_to_date; |
Dave Hansen | 8d056cb | 2010-11-11 14:05:15 -0800 | [diff] [blame] | 1534 | /* Did it get truncated before we got the lock? */ |
| 1535 | if (!page->mapping) |
| 1536 | goto page_not_up_to_date_locked; |
Hisashi Hifumi | 8ab22b9 | 2008-07-28 15:46:36 -0700 | [diff] [blame] | 1537 | if (!mapping->a_ops->is_partially_uptodate(page, |
Al Viro | 6e58e79 | 2014-02-03 17:07:03 -0500 | [diff] [blame] | 1538 | offset, iter->count)) |
Hisashi Hifumi | 8ab22b9 | 2008-07-28 15:46:36 -0700 | [diff] [blame] | 1539 | goto page_not_up_to_date_locked; |
| 1540 | unlock_page(page); |
| 1541 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1542 | page_ok: |
NeilBrown | a32ea1e | 2007-07-17 04:03:04 -0700 | [diff] [blame] | 1543 | /* |
| 1544 | * i_size must be checked after we know the page is Uptodate. |
| 1545 | * |
| 1546 | * Checking i_size after the check allows us to calculate |
| 1547 | * the correct value for "nr", which means the zero-filled |
| 1548 | * part of the page is not copied back to userspace (unless |
| 1549 | * another truncate extends the file - this is desired though). |
| 1550 | */ |
| 1551 | |
| 1552 | isize = i_size_read(inode); |
| 1553 | end_index = (isize - 1) >> PAGE_CACHE_SHIFT; |
| 1554 | if (unlikely(!isize || index > end_index)) { |
| 1555 | page_cache_release(page); |
| 1556 | goto out; |
| 1557 | } |
| 1558 | |
| 1559 | /* nr is the maximum number of bytes to copy from this page */ |
| 1560 | nr = PAGE_CACHE_SIZE; |
| 1561 | if (index == end_index) { |
| 1562 | nr = ((isize - 1) & ~PAGE_CACHE_MASK) + 1; |
| 1563 | if (nr <= offset) { |
| 1564 | page_cache_release(page); |
| 1565 | goto out; |
| 1566 | } |
| 1567 | } |
| 1568 | nr = nr - offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1569 | |
| 1570 | /* If users can be writing to this page using arbitrary |
| 1571 | * virtual addresses, take care about potential aliasing |
| 1572 | * before reading the page on the kernel side. |
| 1573 | */ |
| 1574 | if (mapping_writably_mapped(mapping)) |
| 1575 | flush_dcache_page(page); |
| 1576 | |
| 1577 | /* |
Jan Kara | ec0f163 | 2007-05-06 14:49:25 -0700 | [diff] [blame] | 1578 | * When a sequential read accesses a page several times, |
| 1579 | * only mark it as accessed the first time. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1580 | */ |
Jan Kara | ec0f163 | 2007-05-06 14:49:25 -0700 | [diff] [blame] | 1581 | if (prev_index != index || offset != prev_offset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1582 | mark_page_accessed(page); |
| 1583 | prev_index = index; |
| 1584 | |
| 1585 | /* |
| 1586 | * Ok, we have the page, and it's up-to-date, so |
| 1587 | * now we can copy it to user space... |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1588 | */ |
Al Viro | 6e58e79 | 2014-02-03 17:07:03 -0500 | [diff] [blame] | 1589 | |
| 1590 | ret = copy_page_to_iter(page, offset, nr, iter); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1591 | offset += ret; |
| 1592 | index += offset >> PAGE_CACHE_SHIFT; |
| 1593 | offset &= ~PAGE_CACHE_MASK; |
Jan Kara | 6ce745e | 2007-05-06 14:49:26 -0700 | [diff] [blame] | 1594 | prev_offset = offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1595 | |
| 1596 | page_cache_release(page); |
Al Viro | 6e58e79 | 2014-02-03 17:07:03 -0500 | [diff] [blame] | 1597 | written += ret; |
| 1598 | if (!iov_iter_count(iter)) |
| 1599 | goto out; |
| 1600 | if (ret < nr) { |
| 1601 | error = -EFAULT; |
| 1602 | goto out; |
| 1603 | } |
| 1604 | continue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1605 | |
| 1606 | page_not_up_to_date: |
| 1607 | /* Get exclusive access to the page ... */ |
Oleg Nesterov | 8546232 | 2008-06-08 21:20:43 +0400 | [diff] [blame] | 1608 | error = lock_page_killable(page); |
| 1609 | if (unlikely(error)) |
| 1610 | goto readpage_error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1611 | |
Hisashi Hifumi | 8ab22b9 | 2008-07-28 15:46:36 -0700 | [diff] [blame] | 1612 | page_not_up_to_date_locked: |
Nick Piggin | da6052f | 2006-09-25 23:31:35 -0700 | [diff] [blame] | 1613 | /* Did it get truncated before we got the lock? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1614 | if (!page->mapping) { |
| 1615 | unlock_page(page); |
| 1616 | page_cache_release(page); |
| 1617 | continue; |
| 1618 | } |
| 1619 | |
| 1620 | /* Did somebody else fill it already? */ |
| 1621 | if (PageUptodate(page)) { |
| 1622 | unlock_page(page); |
| 1623 | goto page_ok; |
| 1624 | } |
| 1625 | |
| 1626 | readpage: |
Jeff Moyer | 91803b4 | 2010-05-26 11:49:40 -0400 | [diff] [blame] | 1627 | /* |
| 1628 | * A previous I/O error may have been due to temporary |
| 1629 | * failures, eg. multipath errors. |
| 1630 | * PG_error will be set again if readpage fails. |
| 1631 | */ |
| 1632 | ClearPageError(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1633 | /* Start the actual read. The read will unlock the page. */ |
| 1634 | error = mapping->a_ops->readpage(filp, page); |
| 1635 | |
Zach Brown | 994fc28c | 2005-12-15 14:28:17 -0800 | [diff] [blame] | 1636 | if (unlikely(error)) { |
| 1637 | if (error == AOP_TRUNCATED_PAGE) { |
| 1638 | page_cache_release(page); |
Al Viro | 6e58e79 | 2014-02-03 17:07:03 -0500 | [diff] [blame] | 1639 | error = 0; |
Zach Brown | 994fc28c | 2005-12-15 14:28:17 -0800 | [diff] [blame] | 1640 | goto find_page; |
| 1641 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1642 | goto readpage_error; |
Zach Brown | 994fc28c | 2005-12-15 14:28:17 -0800 | [diff] [blame] | 1643 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1644 | |
| 1645 | if (!PageUptodate(page)) { |
Oleg Nesterov | 8546232 | 2008-06-08 21:20:43 +0400 | [diff] [blame] | 1646 | error = lock_page_killable(page); |
| 1647 | if (unlikely(error)) |
| 1648 | goto readpage_error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1649 | if (!PageUptodate(page)) { |
| 1650 | if (page->mapping == NULL) { |
| 1651 | /* |
Christoph Hellwig | 2ecdc82 | 2010-01-26 17:27:20 +0100 | [diff] [blame] | 1652 | * invalidate_mapping_pages got it |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1653 | */ |
| 1654 | unlock_page(page); |
| 1655 | page_cache_release(page); |
| 1656 | goto find_page; |
| 1657 | } |
| 1658 | unlock_page(page); |
Fengguang Wu | 7ff8107 | 2007-10-16 01:24:35 -0700 | [diff] [blame] | 1659 | shrink_readahead_size_eio(filp, ra); |
Oleg Nesterov | 8546232 | 2008-06-08 21:20:43 +0400 | [diff] [blame] | 1660 | error = -EIO; |
| 1661 | goto readpage_error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1662 | } |
| 1663 | unlock_page(page); |
| 1664 | } |
| 1665 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1666 | goto page_ok; |
| 1667 | |
| 1668 | readpage_error: |
| 1669 | /* UHHUH! A synchronous read error occurred. Report it */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1670 | page_cache_release(page); |
| 1671 | goto out; |
| 1672 | |
| 1673 | no_cached_page: |
| 1674 | /* |
| 1675 | * Ok, it wasn't cached, so we need to create a new |
| 1676 | * page.. |
| 1677 | */ |
Nick Piggin | eb2be18 | 2007-10-16 01:24:57 -0700 | [diff] [blame] | 1678 | page = page_cache_alloc_cold(mapping); |
| 1679 | if (!page) { |
Al Viro | 6e58e79 | 2014-02-03 17:07:03 -0500 | [diff] [blame] | 1680 | error = -ENOMEM; |
Nick Piggin | eb2be18 | 2007-10-16 01:24:57 -0700 | [diff] [blame] | 1681 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1682 | } |
Michal Hocko | 6afdb85 | 2015-06-24 16:58:06 -0700 | [diff] [blame] | 1683 | error = add_to_page_cache_lru(page, mapping, index, |
| 1684 | GFP_KERNEL & mapping_gfp_mask(mapping)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1685 | if (error) { |
Nick Piggin | eb2be18 | 2007-10-16 01:24:57 -0700 | [diff] [blame] | 1686 | page_cache_release(page); |
Al Viro | 6e58e79 | 2014-02-03 17:07:03 -0500 | [diff] [blame] | 1687 | if (error == -EEXIST) { |
| 1688 | error = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1689 | goto find_page; |
Al Viro | 6e58e79 | 2014-02-03 17:07:03 -0500 | [diff] [blame] | 1690 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1691 | goto out; |
| 1692 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1693 | goto readpage; |
| 1694 | } |
| 1695 | |
| 1696 | out: |
Fengguang Wu | 7ff8107 | 2007-10-16 01:24:35 -0700 | [diff] [blame] | 1697 | ra->prev_pos = prev_index; |
| 1698 | ra->prev_pos <<= PAGE_CACHE_SHIFT; |
| 1699 | ra->prev_pos |= prev_offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1700 | |
Fengguang Wu | f4e6b49 | 2007-10-16 01:24:33 -0700 | [diff] [blame] | 1701 | *ppos = ((loff_t)index << PAGE_CACHE_SHIFT) + offset; |
Krishna Kumar | 0c6aa26 | 2008-10-15 22:01:13 -0700 | [diff] [blame] | 1702 | file_accessed(filp); |
Al Viro | 6e58e79 | 2014-02-03 17:07:03 -0500 | [diff] [blame] | 1703 | return written ? written : error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1704 | } |
| 1705 | |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 1706 | /** |
Al Viro | 6abd232 | 2014-04-04 14:20:57 -0400 | [diff] [blame] | 1707 | * generic_file_read_iter - generic filesystem read routine |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 1708 | * @iocb: kernel I/O control block |
Al Viro | 6abd232 | 2014-04-04 14:20:57 -0400 | [diff] [blame] | 1709 | * @iter: destination for the data read |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 1710 | * |
Al Viro | 6abd232 | 2014-04-04 14:20:57 -0400 | [diff] [blame] | 1711 | * This is the "read_iter()" routine for all filesystems |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1712 | * that can use the page cache directly. |
| 1713 | */ |
| 1714 | ssize_t |
Al Viro | ed978a8 | 2014-03-05 22:53:04 -0500 | [diff] [blame] | 1715 | generic_file_read_iter(struct kiocb *iocb, struct iov_iter *iter) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1716 | { |
Al Viro | ed978a8 | 2014-03-05 22:53:04 -0500 | [diff] [blame] | 1717 | struct file *file = iocb->ki_filp; |
| 1718 | ssize_t retval = 0; |
Badari Pulavarty | 543ade1 | 2006-09-30 23:28:48 -0700 | [diff] [blame] | 1719 | loff_t *ppos = &iocb->ki_pos; |
Al Viro | ed978a8 | 2014-03-05 22:53:04 -0500 | [diff] [blame] | 1720 | loff_t pos = *ppos; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1721 | |
Al Viro | 2ba48ce | 2015-04-09 13:52:01 -0400 | [diff] [blame] | 1722 | if (iocb->ki_flags & IOCB_DIRECT) { |
Al Viro | ed978a8 | 2014-03-05 22:53:04 -0500 | [diff] [blame] | 1723 | struct address_space *mapping = file->f_mapping; |
| 1724 | struct inode *inode = mapping->host; |
| 1725 | size_t count = iov_iter_count(iter); |
Badari Pulavarty | 543ade1 | 2006-09-30 23:28:48 -0700 | [diff] [blame] | 1726 | loff_t size; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1727 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1728 | if (!count) |
| 1729 | goto out; /* skip atime */ |
| 1730 | size = i_size_read(inode); |
Steven Whitehouse | 9fe55ee | 2014-01-24 14:42:22 +0000 | [diff] [blame] | 1731 | retval = filemap_write_and_wait_range(mapping, pos, |
Al Viro | ed978a8 | 2014-03-05 22:53:04 -0500 | [diff] [blame] | 1732 | pos + count - 1); |
Steven Whitehouse | 9fe55ee | 2014-01-24 14:42:22 +0000 | [diff] [blame] | 1733 | if (!retval) { |
Al Viro | ed978a8 | 2014-03-05 22:53:04 -0500 | [diff] [blame] | 1734 | struct iov_iter data = *iter; |
Omar Sandoval | 22c6186 | 2015-03-16 04:33:53 -0700 | [diff] [blame] | 1735 | retval = mapping->a_ops->direct_IO(iocb, &data, pos); |
Steven Whitehouse | 9fe55ee | 2014-01-24 14:42:22 +0000 | [diff] [blame] | 1736 | } |
Al Viro | ed978a8 | 2014-03-05 22:53:04 -0500 | [diff] [blame] | 1737 | |
Steven Whitehouse | 9fe55ee | 2014-01-24 14:42:22 +0000 | [diff] [blame] | 1738 | if (retval > 0) { |
| 1739 | *ppos = pos + retval; |
Al Viro | ed978a8 | 2014-03-05 22:53:04 -0500 | [diff] [blame] | 1740 | iov_iter_advance(iter, retval); |
Steven Whitehouse | 9fe55ee | 2014-01-24 14:42:22 +0000 | [diff] [blame] | 1741 | } |
Josef Bacik | 66f998f | 2010-05-23 11:00:54 -0400 | [diff] [blame] | 1742 | |
Steven Whitehouse | 9fe55ee | 2014-01-24 14:42:22 +0000 | [diff] [blame] | 1743 | /* |
| 1744 | * Btrfs can have a short DIO read if we encounter |
| 1745 | * compressed extents, so if there was an error, or if |
| 1746 | * we've already read everything we wanted to, or if |
| 1747 | * there was a short read because we hit EOF, go ahead |
| 1748 | * and return. Otherwise fallthrough to buffered io for |
Matthew Wilcox | fbbbad4 | 2015-02-16 15:58:53 -0800 | [diff] [blame] | 1749 | * the rest of the read. Buffered reads will not work for |
| 1750 | * DAX files, so don't bother trying. |
Steven Whitehouse | 9fe55ee | 2014-01-24 14:42:22 +0000 | [diff] [blame] | 1751 | */ |
Matthew Wilcox | fbbbad4 | 2015-02-16 15:58:53 -0800 | [diff] [blame] | 1752 | if (retval < 0 || !iov_iter_count(iter) || *ppos >= size || |
| 1753 | IS_DAX(inode)) { |
Al Viro | ed978a8 | 2014-03-05 22:53:04 -0500 | [diff] [blame] | 1754 | file_accessed(file); |
Steven Whitehouse | 9fe55ee | 2014-01-24 14:42:22 +0000 | [diff] [blame] | 1755 | goto out; |
Steven Whitehouse | 0e0bcae | 2006-09-27 14:45:07 -0400 | [diff] [blame] | 1756 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1757 | } |
| 1758 | |
Al Viro | ed978a8 | 2014-03-05 22:53:04 -0500 | [diff] [blame] | 1759 | retval = do_generic_file_read(file, ppos, iter, retval); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1760 | out: |
| 1761 | return retval; |
| 1762 | } |
Al Viro | ed978a8 | 2014-03-05 22:53:04 -0500 | [diff] [blame] | 1763 | EXPORT_SYMBOL(generic_file_read_iter); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1764 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1765 | #ifdef CONFIG_MMU |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 1766 | /** |
| 1767 | * page_cache_read - adds requested page to the page cache if not already there |
| 1768 | * @file: file to read |
| 1769 | * @offset: page index |
| 1770 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1771 | * This adds the requested page to the page cache if it isn't already there, |
| 1772 | * and schedules an I/O to read in its contents from disk. |
| 1773 | */ |
Harvey Harrison | 920c7a5 | 2008-02-04 22:29:26 -0800 | [diff] [blame] | 1774 | static int page_cache_read(struct file *file, pgoff_t offset) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1775 | { |
| 1776 | struct address_space *mapping = file->f_mapping; |
Paul McQuade | 99dadfd | 2014-10-09 15:29:03 -0700 | [diff] [blame] | 1777 | struct page *page; |
Zach Brown | 994fc28c | 2005-12-15 14:28:17 -0800 | [diff] [blame] | 1778 | int ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1779 | |
Zach Brown | 994fc28c | 2005-12-15 14:28:17 -0800 | [diff] [blame] | 1780 | do { |
| 1781 | page = page_cache_alloc_cold(mapping); |
| 1782 | if (!page) |
| 1783 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1784 | |
Michal Hocko | 6afdb85 | 2015-06-24 16:58:06 -0700 | [diff] [blame] | 1785 | ret = add_to_page_cache_lru(page, mapping, offset, |
| 1786 | GFP_KERNEL & mapping_gfp_mask(mapping)); |
Zach Brown | 994fc28c | 2005-12-15 14:28:17 -0800 | [diff] [blame] | 1787 | if (ret == 0) |
| 1788 | ret = mapping->a_ops->readpage(file, page); |
| 1789 | else if (ret == -EEXIST) |
| 1790 | ret = 0; /* losing race to add is OK */ |
| 1791 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1792 | page_cache_release(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1793 | |
Zach Brown | 994fc28c | 2005-12-15 14:28:17 -0800 | [diff] [blame] | 1794 | } while (ret == AOP_TRUNCATED_PAGE); |
Paul McQuade | 99dadfd | 2014-10-09 15:29:03 -0700 | [diff] [blame] | 1795 | |
Zach Brown | 994fc28c | 2005-12-15 14:28:17 -0800 | [diff] [blame] | 1796 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1797 | } |
| 1798 | |
| 1799 | #define MMAP_LOTSAMISS (100) |
| 1800 | |
Linus Torvalds | ef00e08 | 2009-06-16 15:31:25 -0700 | [diff] [blame] | 1801 | /* |
| 1802 | * Synchronous readahead happens when we don't even find |
| 1803 | * a page in the page cache at all. |
| 1804 | */ |
| 1805 | static void do_sync_mmap_readahead(struct vm_area_struct *vma, |
| 1806 | struct file_ra_state *ra, |
| 1807 | struct file *file, |
| 1808 | pgoff_t offset) |
| 1809 | { |
| 1810 | unsigned long ra_pages; |
| 1811 | struct address_space *mapping = file->f_mapping; |
| 1812 | |
| 1813 | /* If we don't want any read-ahead, don't bother */ |
Joe Perches | 64363aa | 2013-07-08 16:00:18 -0700 | [diff] [blame] | 1814 | if (vma->vm_flags & VM_RAND_READ) |
Linus Torvalds | ef00e08 | 2009-06-16 15:31:25 -0700 | [diff] [blame] | 1815 | return; |
Wu Fengguang | 275b12b | 2011-05-24 17:12:28 -0700 | [diff] [blame] | 1816 | if (!ra->ra_pages) |
| 1817 | return; |
Linus Torvalds | ef00e08 | 2009-06-16 15:31:25 -0700 | [diff] [blame] | 1818 | |
Joe Perches | 64363aa | 2013-07-08 16:00:18 -0700 | [diff] [blame] | 1819 | if (vma->vm_flags & VM_SEQ_READ) { |
Wu Fengguang | 7ffc59b | 2009-06-16 15:31:38 -0700 | [diff] [blame] | 1820 | page_cache_sync_readahead(mapping, ra, file, offset, |
| 1821 | ra->ra_pages); |
Linus Torvalds | ef00e08 | 2009-06-16 15:31:25 -0700 | [diff] [blame] | 1822 | return; |
| 1823 | } |
| 1824 | |
Andi Kleen | 207d04b | 2011-05-24 17:12:29 -0700 | [diff] [blame] | 1825 | /* Avoid banging the cache line if not needed */ |
| 1826 | if (ra->mmap_miss < MMAP_LOTSAMISS * 10) |
Linus Torvalds | ef00e08 | 2009-06-16 15:31:25 -0700 | [diff] [blame] | 1827 | ra->mmap_miss++; |
| 1828 | |
| 1829 | /* |
| 1830 | * Do we miss much more than hit in this file? If so, |
| 1831 | * stop bothering with read-ahead. It will only hurt. |
| 1832 | */ |
| 1833 | if (ra->mmap_miss > MMAP_LOTSAMISS) |
| 1834 | return; |
| 1835 | |
Wu Fengguang | d30a110 | 2009-06-16 15:31:30 -0700 | [diff] [blame] | 1836 | /* |
| 1837 | * mmap read-around |
| 1838 | */ |
Linus Torvalds | ef00e08 | 2009-06-16 15:31:25 -0700 | [diff] [blame] | 1839 | ra_pages = max_sane_readahead(ra->ra_pages); |
Wu Fengguang | 275b12b | 2011-05-24 17:12:28 -0700 | [diff] [blame] | 1840 | ra->start = max_t(long, 0, offset - ra_pages / 2); |
| 1841 | ra->size = ra_pages; |
Wu Fengguang | 2cbea1d | 2011-05-24 17:12:30 -0700 | [diff] [blame] | 1842 | ra->async_size = ra_pages / 4; |
Wu Fengguang | 275b12b | 2011-05-24 17:12:28 -0700 | [diff] [blame] | 1843 | ra_submit(ra, mapping, file); |
Linus Torvalds | ef00e08 | 2009-06-16 15:31:25 -0700 | [diff] [blame] | 1844 | } |
| 1845 | |
| 1846 | /* |
| 1847 | * Asynchronous readahead happens when we find the page and PG_readahead, |
| 1848 | * so we want to possibly extend the readahead further.. |
| 1849 | */ |
| 1850 | static void do_async_mmap_readahead(struct vm_area_struct *vma, |
| 1851 | struct file_ra_state *ra, |
| 1852 | struct file *file, |
| 1853 | struct page *page, |
| 1854 | pgoff_t offset) |
| 1855 | { |
| 1856 | struct address_space *mapping = file->f_mapping; |
| 1857 | |
| 1858 | /* If we don't want any read-ahead, don't bother */ |
Joe Perches | 64363aa | 2013-07-08 16:00:18 -0700 | [diff] [blame] | 1859 | if (vma->vm_flags & VM_RAND_READ) |
Linus Torvalds | ef00e08 | 2009-06-16 15:31:25 -0700 | [diff] [blame] | 1860 | return; |
| 1861 | if (ra->mmap_miss > 0) |
| 1862 | ra->mmap_miss--; |
| 1863 | if (PageReadahead(page)) |
Wu Fengguang | 2fad6f5 | 2009-06-16 15:31:29 -0700 | [diff] [blame] | 1864 | page_cache_async_readahead(mapping, ra, file, |
| 1865 | page, offset, ra->ra_pages); |
Linus Torvalds | ef00e08 | 2009-06-16 15:31:25 -0700 | [diff] [blame] | 1866 | } |
| 1867 | |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 1868 | /** |
Nick Piggin | 54cb882 | 2007-07-19 01:46:59 -0700 | [diff] [blame] | 1869 | * filemap_fault - read in file data for page fault handling |
Nick Piggin | d0217ac | 2007-07-19 01:47:03 -0700 | [diff] [blame] | 1870 | * @vma: vma in which the fault was taken |
| 1871 | * @vmf: struct vm_fault containing details of the fault |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 1872 | * |
Nick Piggin | 54cb882 | 2007-07-19 01:46:59 -0700 | [diff] [blame] | 1873 | * filemap_fault() is invoked via the vma operations vector for a |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1874 | * mapped memory region to read in file data during a page fault. |
| 1875 | * |
| 1876 | * The goto's are kind of ugly, but this streamlines the normal case of having |
| 1877 | * it in the page cache, and handles the special cases reasonably without |
| 1878 | * having a lot of duplicated code. |
Paul Cassella | 9a95f3c | 2014-08-06 16:07:24 -0700 | [diff] [blame] | 1879 | * |
| 1880 | * vma->vm_mm->mmap_sem must be held on entry. |
| 1881 | * |
| 1882 | * If our return value has VM_FAULT_RETRY set, it's because |
| 1883 | * lock_page_or_retry() returned 0. |
| 1884 | * The mmap_sem has usually been released in this case. |
| 1885 | * See __lock_page_or_retry() for the exception. |
| 1886 | * |
| 1887 | * If our return value does not have VM_FAULT_RETRY set, the mmap_sem |
| 1888 | * has not been released. |
| 1889 | * |
| 1890 | * We never return with VM_FAULT_RETRY and a bit from VM_FAULT_ERROR set. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1891 | */ |
Nick Piggin | d0217ac | 2007-07-19 01:47:03 -0700 | [diff] [blame] | 1892 | int filemap_fault(struct vm_area_struct *vma, struct vm_fault *vmf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1893 | { |
| 1894 | int error; |
Nick Piggin | 54cb882 | 2007-07-19 01:46:59 -0700 | [diff] [blame] | 1895 | struct file *file = vma->vm_file; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1896 | struct address_space *mapping = file->f_mapping; |
| 1897 | struct file_ra_state *ra = &file->f_ra; |
| 1898 | struct inode *inode = mapping->host; |
Linus Torvalds | ef00e08 | 2009-06-16 15:31:25 -0700 | [diff] [blame] | 1899 | pgoff_t offset = vmf->pgoff; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1900 | struct page *page; |
Kirill A. Shutemov | 99e3e53 | 2014-04-07 15:37:21 -0700 | [diff] [blame] | 1901 | loff_t size; |
Nick Piggin | 83c5407 | 2007-07-19 01:47:05 -0700 | [diff] [blame] | 1902 | int ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1903 | |
Kirill A. Shutemov | 99e3e53 | 2014-04-07 15:37:21 -0700 | [diff] [blame] | 1904 | size = round_up(i_size_read(inode), PAGE_CACHE_SIZE); |
| 1905 | if (offset >= size >> PAGE_CACHE_SHIFT) |
Linus Torvalds | 5307cc1 | 2007-10-31 09:19:46 -0700 | [diff] [blame] | 1906 | return VM_FAULT_SIGBUS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1907 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1908 | /* |
Johannes Weiner | 4942642 | 2013-10-16 13:46:59 -0700 | [diff] [blame] | 1909 | * Do we have something in the page cache already? |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1910 | */ |
Linus Torvalds | ef00e08 | 2009-06-16 15:31:25 -0700 | [diff] [blame] | 1911 | page = find_get_page(mapping, offset); |
Shaohua Li | 45cac65 | 2012-10-08 16:32:19 -0700 | [diff] [blame] | 1912 | if (likely(page) && !(vmf->flags & FAULT_FLAG_TRIED)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1913 | /* |
Linus Torvalds | ef00e08 | 2009-06-16 15:31:25 -0700 | [diff] [blame] | 1914 | * We found the page, so try async readahead before |
| 1915 | * waiting for the lock. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1916 | */ |
Linus Torvalds | ef00e08 | 2009-06-16 15:31:25 -0700 | [diff] [blame] | 1917 | do_async_mmap_readahead(vma, ra, file, page, offset); |
Shaohua Li | 45cac65 | 2012-10-08 16:32:19 -0700 | [diff] [blame] | 1918 | } else if (!page) { |
Linus Torvalds | ef00e08 | 2009-06-16 15:31:25 -0700 | [diff] [blame] | 1919 | /* No page in the page cache at all */ |
| 1920 | do_sync_mmap_readahead(vma, ra, file, offset); |
| 1921 | count_vm_event(PGMAJFAULT); |
Ying Han | 456f998 | 2011-05-26 16:25:38 -0700 | [diff] [blame] | 1922 | mem_cgroup_count_vm_event(vma->vm_mm, PGMAJFAULT); |
Linus Torvalds | ef00e08 | 2009-06-16 15:31:25 -0700 | [diff] [blame] | 1923 | ret = VM_FAULT_MAJOR; |
| 1924 | retry_find: |
Michel Lespinasse | b522c94 | 2010-10-26 14:21:56 -0700 | [diff] [blame] | 1925 | page = find_get_page(mapping, offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1926 | if (!page) |
| 1927 | goto no_cached_page; |
| 1928 | } |
| 1929 | |
Michel Lespinasse | d88c092 | 2010-11-02 13:05:18 -0700 | [diff] [blame] | 1930 | if (!lock_page_or_retry(page, vma->vm_mm, vmf->flags)) { |
| 1931 | page_cache_release(page); |
Michel Lespinasse | d065bd8 | 2010-10-26 14:21:57 -0700 | [diff] [blame] | 1932 | return ret | VM_FAULT_RETRY; |
Michel Lespinasse | d88c092 | 2010-11-02 13:05:18 -0700 | [diff] [blame] | 1933 | } |
Michel Lespinasse | b522c94 | 2010-10-26 14:21:56 -0700 | [diff] [blame] | 1934 | |
| 1935 | /* Did it get truncated? */ |
| 1936 | if (unlikely(page->mapping != mapping)) { |
| 1937 | unlock_page(page); |
| 1938 | put_page(page); |
| 1939 | goto retry_find; |
| 1940 | } |
Sasha Levin | 309381fea | 2014-01-23 15:52:54 -0800 | [diff] [blame] | 1941 | VM_BUG_ON_PAGE(page->index != offset, page); |
Michel Lespinasse | b522c94 | 2010-10-26 14:21:56 -0700 | [diff] [blame] | 1942 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1943 | /* |
Nick Piggin | d00806b | 2007-07-19 01:46:57 -0700 | [diff] [blame] | 1944 | * We have a locked page in the page cache, now we need to check |
| 1945 | * that it's up-to-date. If not, it is going to be due to an error. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1946 | */ |
Nick Piggin | d00806b | 2007-07-19 01:46:57 -0700 | [diff] [blame] | 1947 | if (unlikely(!PageUptodate(page))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1948 | goto page_not_uptodate; |
| 1949 | |
Linus Torvalds | ef00e08 | 2009-06-16 15:31:25 -0700 | [diff] [blame] | 1950 | /* |
| 1951 | * Found the page and have a reference on it. |
| 1952 | * We must recheck i_size under page lock. |
| 1953 | */ |
Kirill A. Shutemov | 99e3e53 | 2014-04-07 15:37:21 -0700 | [diff] [blame] | 1954 | size = round_up(i_size_read(inode), PAGE_CACHE_SIZE); |
| 1955 | if (unlikely(offset >= size >> PAGE_CACHE_SHIFT)) { |
Nick Piggin | d00806b | 2007-07-19 01:46:57 -0700 | [diff] [blame] | 1956 | unlock_page(page); |
Yan Zheng | 745ad48 | 2007-10-08 10:08:37 -0700 | [diff] [blame] | 1957 | page_cache_release(page); |
Linus Torvalds | 5307cc1 | 2007-10-31 09:19:46 -0700 | [diff] [blame] | 1958 | return VM_FAULT_SIGBUS; |
Nick Piggin | d00806b | 2007-07-19 01:46:57 -0700 | [diff] [blame] | 1959 | } |
| 1960 | |
Nick Piggin | d0217ac | 2007-07-19 01:47:03 -0700 | [diff] [blame] | 1961 | vmf->page = page; |
Nick Piggin | 83c5407 | 2007-07-19 01:47:05 -0700 | [diff] [blame] | 1962 | return ret | VM_FAULT_LOCKED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1963 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1964 | no_cached_page: |
| 1965 | /* |
| 1966 | * We're only likely to ever get here if MADV_RANDOM is in |
| 1967 | * effect. |
| 1968 | */ |
Linus Torvalds | ef00e08 | 2009-06-16 15:31:25 -0700 | [diff] [blame] | 1969 | error = page_cache_read(file, offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1970 | |
| 1971 | /* |
| 1972 | * The page we want has now been added to the page cache. |
| 1973 | * In the unlikely event that someone removed it in the |
| 1974 | * meantime, we'll just come back here and read it again. |
| 1975 | */ |
| 1976 | if (error >= 0) |
| 1977 | goto retry_find; |
| 1978 | |
| 1979 | /* |
| 1980 | * An error return from page_cache_read can result if the |
| 1981 | * system is low on memory, or a problem occurs while trying |
| 1982 | * to schedule I/O. |
| 1983 | */ |
| 1984 | if (error == -ENOMEM) |
Nick Piggin | d0217ac | 2007-07-19 01:47:03 -0700 | [diff] [blame] | 1985 | return VM_FAULT_OOM; |
| 1986 | return VM_FAULT_SIGBUS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1987 | |
| 1988 | page_not_uptodate: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1989 | /* |
| 1990 | * Umm, take care of errors if the page isn't up-to-date. |
| 1991 | * Try to re-read it _once_. We do this synchronously, |
| 1992 | * because there really aren't any performance issues here |
| 1993 | * and we need to check for errors. |
| 1994 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1995 | ClearPageError(page); |
Zach Brown | 994fc28c | 2005-12-15 14:28:17 -0800 | [diff] [blame] | 1996 | error = mapping->a_ops->readpage(file, page); |
Miklos Szeredi | 3ef0f72 | 2008-05-14 16:05:37 -0700 | [diff] [blame] | 1997 | if (!error) { |
| 1998 | wait_on_page_locked(page); |
| 1999 | if (!PageUptodate(page)) |
| 2000 | error = -EIO; |
| 2001 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2002 | page_cache_release(page); |
Nick Piggin | d00806b | 2007-07-19 01:46:57 -0700 | [diff] [blame] | 2003 | |
| 2004 | if (!error || error == AOP_TRUNCATED_PAGE) |
| 2005 | goto retry_find; |
| 2006 | |
| 2007 | /* Things didn't work out. Return zero to tell the mm layer so. */ |
| 2008 | shrink_readahead_size_eio(file, ra); |
Nick Piggin | d0217ac | 2007-07-19 01:47:03 -0700 | [diff] [blame] | 2009 | return VM_FAULT_SIGBUS; |
Nick Piggin | 54cb882 | 2007-07-19 01:46:59 -0700 | [diff] [blame] | 2010 | } |
| 2011 | EXPORT_SYMBOL(filemap_fault); |
| 2012 | |
Kirill A. Shutemov | f182036 | 2014-04-07 15:37:19 -0700 | [diff] [blame] | 2013 | void filemap_map_pages(struct vm_area_struct *vma, struct vm_fault *vmf) |
| 2014 | { |
| 2015 | struct radix_tree_iter iter; |
| 2016 | void **slot; |
| 2017 | struct file *file = vma->vm_file; |
| 2018 | struct address_space *mapping = file->f_mapping; |
| 2019 | loff_t size; |
| 2020 | struct page *page; |
| 2021 | unsigned long address = (unsigned long) vmf->virtual_address; |
| 2022 | unsigned long addr; |
| 2023 | pte_t *pte; |
| 2024 | |
| 2025 | rcu_read_lock(); |
| 2026 | radix_tree_for_each_slot(slot, &mapping->page_tree, &iter, vmf->pgoff) { |
| 2027 | if (iter.index > vmf->max_pgoff) |
| 2028 | break; |
| 2029 | repeat: |
| 2030 | page = radix_tree_deref_slot(slot); |
| 2031 | if (unlikely(!page)) |
| 2032 | goto next; |
| 2033 | if (radix_tree_exception(page)) { |
| 2034 | if (radix_tree_deref_retry(page)) |
| 2035 | break; |
| 2036 | else |
| 2037 | goto next; |
| 2038 | } |
| 2039 | |
| 2040 | if (!page_cache_get_speculative(page)) |
| 2041 | goto repeat; |
| 2042 | |
| 2043 | /* Has the page moved? */ |
| 2044 | if (unlikely(page != *slot)) { |
| 2045 | page_cache_release(page); |
| 2046 | goto repeat; |
| 2047 | } |
| 2048 | |
| 2049 | if (!PageUptodate(page) || |
| 2050 | PageReadahead(page) || |
| 2051 | PageHWPoison(page)) |
| 2052 | goto skip; |
| 2053 | if (!trylock_page(page)) |
| 2054 | goto skip; |
| 2055 | |
| 2056 | if (page->mapping != mapping || !PageUptodate(page)) |
| 2057 | goto unlock; |
| 2058 | |
Kirill A. Shutemov | 99e3e53 | 2014-04-07 15:37:21 -0700 | [diff] [blame] | 2059 | size = round_up(i_size_read(mapping->host), PAGE_CACHE_SIZE); |
| 2060 | if (page->index >= size >> PAGE_CACHE_SHIFT) |
Kirill A. Shutemov | f182036 | 2014-04-07 15:37:19 -0700 | [diff] [blame] | 2061 | goto unlock; |
| 2062 | |
| 2063 | pte = vmf->pte + page->index - vmf->pgoff; |
| 2064 | if (!pte_none(*pte)) |
| 2065 | goto unlock; |
| 2066 | |
| 2067 | if (file->f_ra.mmap_miss > 0) |
| 2068 | file->f_ra.mmap_miss--; |
| 2069 | addr = address + (page->index - vmf->pgoff) * PAGE_SIZE; |
| 2070 | do_set_pte(vma, addr, page, pte, false, false); |
| 2071 | unlock_page(page); |
| 2072 | goto next; |
| 2073 | unlock: |
| 2074 | unlock_page(page); |
| 2075 | skip: |
| 2076 | page_cache_release(page); |
| 2077 | next: |
| 2078 | if (iter.index == vmf->max_pgoff) |
| 2079 | break; |
| 2080 | } |
| 2081 | rcu_read_unlock(); |
| 2082 | } |
| 2083 | EXPORT_SYMBOL(filemap_map_pages); |
| 2084 | |
Jan Kara | 4fcf1c6 | 2012-06-12 16:20:29 +0200 | [diff] [blame] | 2085 | int filemap_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf) |
| 2086 | { |
| 2087 | struct page *page = vmf->page; |
Al Viro | 496ad9a | 2013-01-23 17:07:38 -0500 | [diff] [blame] | 2088 | struct inode *inode = file_inode(vma->vm_file); |
Jan Kara | 4fcf1c6 | 2012-06-12 16:20:29 +0200 | [diff] [blame] | 2089 | int ret = VM_FAULT_LOCKED; |
| 2090 | |
Jan Kara | 14da920 | 2012-06-12 16:20:37 +0200 | [diff] [blame] | 2091 | sb_start_pagefault(inode->i_sb); |
Jan Kara | 4fcf1c6 | 2012-06-12 16:20:29 +0200 | [diff] [blame] | 2092 | file_update_time(vma->vm_file); |
| 2093 | lock_page(page); |
| 2094 | if (page->mapping != inode->i_mapping) { |
| 2095 | unlock_page(page); |
| 2096 | ret = VM_FAULT_NOPAGE; |
| 2097 | goto out; |
| 2098 | } |
Jan Kara | 14da920 | 2012-06-12 16:20:37 +0200 | [diff] [blame] | 2099 | /* |
| 2100 | * We mark the page dirty already here so that when freeze is in |
| 2101 | * progress, we are guaranteed that writeback during freezing will |
| 2102 | * see the dirty page and writeprotect it again. |
| 2103 | */ |
| 2104 | set_page_dirty(page); |
Darrick J. Wong | 1d1d1a7 | 2013-02-21 16:42:51 -0800 | [diff] [blame] | 2105 | wait_for_stable_page(page); |
Jan Kara | 4fcf1c6 | 2012-06-12 16:20:29 +0200 | [diff] [blame] | 2106 | out: |
Jan Kara | 14da920 | 2012-06-12 16:20:37 +0200 | [diff] [blame] | 2107 | sb_end_pagefault(inode->i_sb); |
Jan Kara | 4fcf1c6 | 2012-06-12 16:20:29 +0200 | [diff] [blame] | 2108 | return ret; |
| 2109 | } |
| 2110 | EXPORT_SYMBOL(filemap_page_mkwrite); |
| 2111 | |
Alexey Dobriyan | f0f37e2 | 2009-09-27 22:29:37 +0400 | [diff] [blame] | 2112 | const struct vm_operations_struct generic_file_vm_ops = { |
Nick Piggin | 54cb882 | 2007-07-19 01:46:59 -0700 | [diff] [blame] | 2113 | .fault = filemap_fault, |
Kirill A. Shutemov | f182036 | 2014-04-07 15:37:19 -0700 | [diff] [blame] | 2114 | .map_pages = filemap_map_pages, |
Jan Kara | 4fcf1c6 | 2012-06-12 16:20:29 +0200 | [diff] [blame] | 2115 | .page_mkwrite = filemap_page_mkwrite, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2116 | }; |
| 2117 | |
| 2118 | /* This is used for a general mmap of a disk file */ |
| 2119 | |
| 2120 | int generic_file_mmap(struct file * file, struct vm_area_struct * vma) |
| 2121 | { |
| 2122 | struct address_space *mapping = file->f_mapping; |
| 2123 | |
| 2124 | if (!mapping->a_ops->readpage) |
| 2125 | return -ENOEXEC; |
| 2126 | file_accessed(file); |
| 2127 | vma->vm_ops = &generic_file_vm_ops; |
| 2128 | return 0; |
| 2129 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2130 | |
| 2131 | /* |
| 2132 | * This is for filesystems which do not implement ->writepage. |
| 2133 | */ |
| 2134 | int generic_file_readonly_mmap(struct file *file, struct vm_area_struct *vma) |
| 2135 | { |
| 2136 | if ((vma->vm_flags & VM_SHARED) && (vma->vm_flags & VM_MAYWRITE)) |
| 2137 | return -EINVAL; |
| 2138 | return generic_file_mmap(file, vma); |
| 2139 | } |
| 2140 | #else |
| 2141 | int generic_file_mmap(struct file * file, struct vm_area_struct * vma) |
| 2142 | { |
| 2143 | return -ENOSYS; |
| 2144 | } |
| 2145 | int generic_file_readonly_mmap(struct file * file, struct vm_area_struct * vma) |
| 2146 | { |
| 2147 | return -ENOSYS; |
| 2148 | } |
| 2149 | #endif /* CONFIG_MMU */ |
| 2150 | |
| 2151 | EXPORT_SYMBOL(generic_file_mmap); |
| 2152 | EXPORT_SYMBOL(generic_file_readonly_mmap); |
| 2153 | |
Sasha Levin | 67f9fd9 | 2014-04-03 14:48:18 -0700 | [diff] [blame] | 2154 | static struct page *wait_on_page_read(struct page *page) |
| 2155 | { |
| 2156 | if (!IS_ERR(page)) { |
| 2157 | wait_on_page_locked(page); |
| 2158 | if (!PageUptodate(page)) { |
| 2159 | page_cache_release(page); |
| 2160 | page = ERR_PTR(-EIO); |
| 2161 | } |
| 2162 | } |
| 2163 | return page; |
| 2164 | } |
| 2165 | |
Nick Piggin | 6fe6900 | 2007-05-06 14:49:04 -0700 | [diff] [blame] | 2166 | static struct page *__read_cache_page(struct address_space *mapping, |
Fengguang Wu | 57f6b96 | 2007-10-16 01:24:37 -0700 | [diff] [blame] | 2167 | pgoff_t index, |
Hugh Dickins | 5e5358e | 2011-07-25 17:12:23 -0700 | [diff] [blame] | 2168 | int (*filler)(void *, struct page *), |
Linus Torvalds | 0531b2a | 2010-01-27 09:20:03 -0800 | [diff] [blame] | 2169 | void *data, |
| 2170 | gfp_t gfp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2171 | { |
Nick Piggin | eb2be18 | 2007-10-16 01:24:57 -0700 | [diff] [blame] | 2172 | struct page *page; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2173 | int err; |
| 2174 | repeat: |
| 2175 | page = find_get_page(mapping, index); |
| 2176 | if (!page) { |
Linus Torvalds | 0531b2a | 2010-01-27 09:20:03 -0800 | [diff] [blame] | 2177 | page = __page_cache_alloc(gfp | __GFP_COLD); |
Nick Piggin | eb2be18 | 2007-10-16 01:24:57 -0700 | [diff] [blame] | 2178 | if (!page) |
| 2179 | return ERR_PTR(-ENOMEM); |
Dave Kleikamp | e6f67b8 | 2011-12-21 11:05:48 -0600 | [diff] [blame] | 2180 | err = add_to_page_cache_lru(page, mapping, index, gfp); |
Nick Piggin | eb2be18 | 2007-10-16 01:24:57 -0700 | [diff] [blame] | 2181 | if (unlikely(err)) { |
| 2182 | page_cache_release(page); |
| 2183 | if (err == -EEXIST) |
| 2184 | goto repeat; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2185 | /* Presumably ENOMEM for radix tree node */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2186 | return ERR_PTR(err); |
| 2187 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2188 | err = filler(data, page); |
| 2189 | if (err < 0) { |
| 2190 | page_cache_release(page); |
| 2191 | page = ERR_PTR(err); |
Sasha Levin | 67f9fd9 | 2014-04-03 14:48:18 -0700 | [diff] [blame] | 2192 | } else { |
| 2193 | page = wait_on_page_read(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2194 | } |
| 2195 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2196 | return page; |
| 2197 | } |
| 2198 | |
Linus Torvalds | 0531b2a | 2010-01-27 09:20:03 -0800 | [diff] [blame] | 2199 | static struct page *do_read_cache_page(struct address_space *mapping, |
Fengguang Wu | 57f6b96 | 2007-10-16 01:24:37 -0700 | [diff] [blame] | 2200 | pgoff_t index, |
Hugh Dickins | 5e5358e | 2011-07-25 17:12:23 -0700 | [diff] [blame] | 2201 | int (*filler)(void *, struct page *), |
Linus Torvalds | 0531b2a | 2010-01-27 09:20:03 -0800 | [diff] [blame] | 2202 | void *data, |
| 2203 | gfp_t gfp) |
| 2204 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2205 | { |
| 2206 | struct page *page; |
| 2207 | int err; |
| 2208 | |
| 2209 | retry: |
Linus Torvalds | 0531b2a | 2010-01-27 09:20:03 -0800 | [diff] [blame] | 2210 | page = __read_cache_page(mapping, index, filler, data, gfp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2211 | if (IS_ERR(page)) |
David Howells | c855ff3 | 2007-05-09 13:42:20 +0100 | [diff] [blame] | 2212 | return page; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2213 | if (PageUptodate(page)) |
| 2214 | goto out; |
| 2215 | |
| 2216 | lock_page(page); |
| 2217 | if (!page->mapping) { |
| 2218 | unlock_page(page); |
| 2219 | page_cache_release(page); |
| 2220 | goto retry; |
| 2221 | } |
| 2222 | if (PageUptodate(page)) { |
| 2223 | unlock_page(page); |
| 2224 | goto out; |
| 2225 | } |
| 2226 | err = filler(data, page); |
| 2227 | if (err < 0) { |
| 2228 | page_cache_release(page); |
David Howells | c855ff3 | 2007-05-09 13:42:20 +0100 | [diff] [blame] | 2229 | return ERR_PTR(err); |
Sasha Levin | 67f9fd9 | 2014-04-03 14:48:18 -0700 | [diff] [blame] | 2230 | } else { |
| 2231 | page = wait_on_page_read(page); |
| 2232 | if (IS_ERR(page)) |
| 2233 | return page; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2234 | } |
David Howells | c855ff3 | 2007-05-09 13:42:20 +0100 | [diff] [blame] | 2235 | out: |
Nick Piggin | 6fe6900 | 2007-05-06 14:49:04 -0700 | [diff] [blame] | 2236 | mark_page_accessed(page); |
| 2237 | return page; |
| 2238 | } |
Linus Torvalds | 0531b2a | 2010-01-27 09:20:03 -0800 | [diff] [blame] | 2239 | |
| 2240 | /** |
Sasha Levin | 67f9fd9 | 2014-04-03 14:48:18 -0700 | [diff] [blame] | 2241 | * read_cache_page - read into page cache, fill it if needed |
Linus Torvalds | 0531b2a | 2010-01-27 09:20:03 -0800 | [diff] [blame] | 2242 | * @mapping: the page's address_space |
| 2243 | * @index: the page index |
| 2244 | * @filler: function to perform the read |
Hugh Dickins | 5e5358e | 2011-07-25 17:12:23 -0700 | [diff] [blame] | 2245 | * @data: first arg to filler(data, page) function, often left as NULL |
Linus Torvalds | 0531b2a | 2010-01-27 09:20:03 -0800 | [diff] [blame] | 2246 | * |
Linus Torvalds | 0531b2a | 2010-01-27 09:20:03 -0800 | [diff] [blame] | 2247 | * Read into the page cache. If a page already exists, and PageUptodate() is |
Sasha Levin | 67f9fd9 | 2014-04-03 14:48:18 -0700 | [diff] [blame] | 2248 | * not set, try to fill the page and wait for it to become unlocked. |
Linus Torvalds | 0531b2a | 2010-01-27 09:20:03 -0800 | [diff] [blame] | 2249 | * |
| 2250 | * If the page does not get brought uptodate, return -EIO. |
| 2251 | */ |
Sasha Levin | 67f9fd9 | 2014-04-03 14:48:18 -0700 | [diff] [blame] | 2252 | struct page *read_cache_page(struct address_space *mapping, |
Linus Torvalds | 0531b2a | 2010-01-27 09:20:03 -0800 | [diff] [blame] | 2253 | pgoff_t index, |
Hugh Dickins | 5e5358e | 2011-07-25 17:12:23 -0700 | [diff] [blame] | 2254 | int (*filler)(void *, struct page *), |
Linus Torvalds | 0531b2a | 2010-01-27 09:20:03 -0800 | [diff] [blame] | 2255 | void *data) |
| 2256 | { |
| 2257 | return do_read_cache_page(mapping, index, filler, data, mapping_gfp_mask(mapping)); |
| 2258 | } |
Sasha Levin | 67f9fd9 | 2014-04-03 14:48:18 -0700 | [diff] [blame] | 2259 | EXPORT_SYMBOL(read_cache_page); |
Linus Torvalds | 0531b2a | 2010-01-27 09:20:03 -0800 | [diff] [blame] | 2260 | |
| 2261 | /** |
| 2262 | * read_cache_page_gfp - read into page cache, using specified page allocation flags. |
| 2263 | * @mapping: the page's address_space |
| 2264 | * @index: the page index |
| 2265 | * @gfp: the page allocator flags to use if allocating |
| 2266 | * |
| 2267 | * This is the same as "read_mapping_page(mapping, index, NULL)", but with |
Dave Kleikamp | e6f67b8 | 2011-12-21 11:05:48 -0600 | [diff] [blame] | 2268 | * any new page allocations done using the specified allocation flags. |
Linus Torvalds | 0531b2a | 2010-01-27 09:20:03 -0800 | [diff] [blame] | 2269 | * |
| 2270 | * If the page does not get brought uptodate, return -EIO. |
| 2271 | */ |
| 2272 | struct page *read_cache_page_gfp(struct address_space *mapping, |
| 2273 | pgoff_t index, |
| 2274 | gfp_t gfp) |
| 2275 | { |
| 2276 | filler_t *filler = (filler_t *)mapping->a_ops->readpage; |
| 2277 | |
Sasha Levin | 67f9fd9 | 2014-04-03 14:48:18 -0700 | [diff] [blame] | 2278 | return do_read_cache_page(mapping, index, filler, NULL, gfp); |
Linus Torvalds | 0531b2a | 2010-01-27 09:20:03 -0800 | [diff] [blame] | 2279 | } |
| 2280 | EXPORT_SYMBOL(read_cache_page_gfp); |
| 2281 | |
Nick Piggin | 2f718ff | 2007-10-16 01:24:59 -0700 | [diff] [blame] | 2282 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2283 | * Performs necessary checks before doing a write |
| 2284 | * |
Randy Dunlap | 485bb99 | 2006-06-23 02:03:49 -0700 | [diff] [blame] | 2285 | * Can adjust writing position or amount of bytes to write. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2286 | * Returns appropriate error code that caller should return or |
| 2287 | * zero in case that write should be allowed. |
| 2288 | */ |
Al Viro | 3309dd0 | 2015-04-09 12:55:47 -0400 | [diff] [blame] | 2289 | inline ssize_t generic_write_checks(struct kiocb *iocb, struct iov_iter *from) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2290 | { |
Al Viro | 3309dd0 | 2015-04-09 12:55:47 -0400 | [diff] [blame] | 2291 | struct file *file = iocb->ki_filp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2292 | struct inode *inode = file->f_mapping->host; |
Jiri Slaby | 59e99e5 | 2010-03-05 13:41:44 -0800 | [diff] [blame] | 2293 | unsigned long limit = rlimit(RLIMIT_FSIZE); |
Al Viro | 3309dd0 | 2015-04-09 12:55:47 -0400 | [diff] [blame] | 2294 | loff_t pos; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2295 | |
Al Viro | 3309dd0 | 2015-04-09 12:55:47 -0400 | [diff] [blame] | 2296 | if (!iov_iter_count(from)) |
| 2297 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2298 | |
Al Viro | 0fa6b00 | 2015-04-04 04:05:48 -0400 | [diff] [blame] | 2299 | /* FIXME: this is for backwards compatibility with 2.4 */ |
Al Viro | 2ba48ce | 2015-04-09 13:52:01 -0400 | [diff] [blame] | 2300 | if (iocb->ki_flags & IOCB_APPEND) |
Al Viro | 3309dd0 | 2015-04-09 12:55:47 -0400 | [diff] [blame] | 2301 | iocb->ki_pos = i_size_read(inode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2302 | |
Al Viro | 3309dd0 | 2015-04-09 12:55:47 -0400 | [diff] [blame] | 2303 | pos = iocb->ki_pos; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2304 | |
Al Viro | 0fa6b00 | 2015-04-04 04:05:48 -0400 | [diff] [blame] | 2305 | if (limit != RLIM_INFINITY) { |
Al Viro | 3309dd0 | 2015-04-09 12:55:47 -0400 | [diff] [blame] | 2306 | if (iocb->ki_pos >= limit) { |
Al Viro | 0fa6b00 | 2015-04-04 04:05:48 -0400 | [diff] [blame] | 2307 | send_sig(SIGXFSZ, current, 0); |
| 2308 | return -EFBIG; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2309 | } |
Al Viro | 3309dd0 | 2015-04-09 12:55:47 -0400 | [diff] [blame] | 2310 | iov_iter_truncate(from, limit - (unsigned long)pos); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2311 | } |
| 2312 | |
| 2313 | /* |
| 2314 | * LFS rule |
| 2315 | */ |
Al Viro | 3309dd0 | 2015-04-09 12:55:47 -0400 | [diff] [blame] | 2316 | if (unlikely(pos + iov_iter_count(from) > MAX_NON_LFS && |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2317 | !(file->f_flags & O_LARGEFILE))) { |
Al Viro | 3309dd0 | 2015-04-09 12:55:47 -0400 | [diff] [blame] | 2318 | if (pos >= MAX_NON_LFS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2319 | return -EFBIG; |
Al Viro | 3309dd0 | 2015-04-09 12:55:47 -0400 | [diff] [blame] | 2320 | iov_iter_truncate(from, MAX_NON_LFS - (unsigned long)pos); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2321 | } |
| 2322 | |
| 2323 | /* |
| 2324 | * Are we about to exceed the fs block limit ? |
| 2325 | * |
| 2326 | * If we have written data it becomes a short write. If we have |
| 2327 | * exceeded without writing data we send a signal and return EFBIG. |
| 2328 | * Linus frestrict idea will clean these up nicely.. |
| 2329 | */ |
Al Viro | 3309dd0 | 2015-04-09 12:55:47 -0400 | [diff] [blame] | 2330 | if (unlikely(pos >= inode->i_sb->s_maxbytes)) |
| 2331 | return -EFBIG; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2332 | |
Al Viro | 3309dd0 | 2015-04-09 12:55:47 -0400 | [diff] [blame] | 2333 | iov_iter_truncate(from, inode->i_sb->s_maxbytes - pos); |
| 2334 | return iov_iter_count(from); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2335 | } |
| 2336 | EXPORT_SYMBOL(generic_write_checks); |
| 2337 | |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 2338 | int pagecache_write_begin(struct file *file, struct address_space *mapping, |
| 2339 | loff_t pos, unsigned len, unsigned flags, |
| 2340 | struct page **pagep, void **fsdata) |
| 2341 | { |
| 2342 | const struct address_space_operations *aops = mapping->a_ops; |
| 2343 | |
Nick Piggin | 4e02ed4 | 2008-10-29 14:00:55 -0700 | [diff] [blame] | 2344 | return aops->write_begin(file, mapping, pos, len, flags, |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 2345 | pagep, fsdata); |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 2346 | } |
| 2347 | EXPORT_SYMBOL(pagecache_write_begin); |
| 2348 | |
| 2349 | int pagecache_write_end(struct file *file, struct address_space *mapping, |
| 2350 | loff_t pos, unsigned len, unsigned copied, |
| 2351 | struct page *page, void *fsdata) |
| 2352 | { |
| 2353 | const struct address_space_operations *aops = mapping->a_ops; |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 2354 | |
Nick Piggin | 4e02ed4 | 2008-10-29 14:00:55 -0700 | [diff] [blame] | 2355 | return aops->write_end(file, mapping, pos, len, copied, page, fsdata); |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 2356 | } |
| 2357 | EXPORT_SYMBOL(pagecache_write_end); |
| 2358 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2359 | ssize_t |
Al Viro | 0c94933 | 2014-03-22 06:51:37 -0400 | [diff] [blame] | 2360 | generic_file_direct_write(struct kiocb *iocb, struct iov_iter *from, loff_t pos) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2361 | { |
| 2362 | struct file *file = iocb->ki_filp; |
| 2363 | struct address_space *mapping = file->f_mapping; |
| 2364 | struct inode *inode = mapping->host; |
| 2365 | ssize_t written; |
Christoph Hellwig | a969e90 | 2008-07-23 21:27:04 -0700 | [diff] [blame] | 2366 | size_t write_len; |
| 2367 | pgoff_t end; |
Al Viro | 26978b8 | 2014-03-10 14:08:45 -0400 | [diff] [blame] | 2368 | struct iov_iter data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2369 | |
Al Viro | 0c94933 | 2014-03-22 06:51:37 -0400 | [diff] [blame] | 2370 | write_len = iov_iter_count(from); |
Christoph Hellwig | a969e90 | 2008-07-23 21:27:04 -0700 | [diff] [blame] | 2371 | end = (pos + write_len - 1) >> PAGE_CACHE_SHIFT; |
Christoph Hellwig | a969e90 | 2008-07-23 21:27:04 -0700 | [diff] [blame] | 2372 | |
Nick Piggin | 48b47c5 | 2009-01-06 14:40:22 -0800 | [diff] [blame] | 2373 | written = filemap_write_and_wait_range(mapping, pos, pos + write_len - 1); |
Christoph Hellwig | a969e90 | 2008-07-23 21:27:04 -0700 | [diff] [blame] | 2374 | if (written) |
| 2375 | goto out; |
| 2376 | |
| 2377 | /* |
| 2378 | * After a write we want buffered reads to be sure to go to disk to get |
| 2379 | * the new data. We invalidate clean cached page from the region we're |
| 2380 | * about to write. We do this *before* the write so that we can return |
Hisashi Hifumi | 6ccfa80 | 2008-09-02 14:35:40 -0700 | [diff] [blame] | 2381 | * without clobbering -EIOCBQUEUED from ->direct_IO(). |
Christoph Hellwig | a969e90 | 2008-07-23 21:27:04 -0700 | [diff] [blame] | 2382 | */ |
| 2383 | if (mapping->nrpages) { |
| 2384 | written = invalidate_inode_pages2_range(mapping, |
| 2385 | pos >> PAGE_CACHE_SHIFT, end); |
Hisashi Hifumi | 6ccfa80 | 2008-09-02 14:35:40 -0700 | [diff] [blame] | 2386 | /* |
| 2387 | * If a page can not be invalidated, return 0 to fall back |
| 2388 | * to buffered write. |
| 2389 | */ |
| 2390 | if (written) { |
| 2391 | if (written == -EBUSY) |
| 2392 | return 0; |
Christoph Hellwig | a969e90 | 2008-07-23 21:27:04 -0700 | [diff] [blame] | 2393 | goto out; |
Hisashi Hifumi | 6ccfa80 | 2008-09-02 14:35:40 -0700 | [diff] [blame] | 2394 | } |
Christoph Hellwig | a969e90 | 2008-07-23 21:27:04 -0700 | [diff] [blame] | 2395 | } |
| 2396 | |
Al Viro | 26978b8 | 2014-03-10 14:08:45 -0400 | [diff] [blame] | 2397 | data = *from; |
Omar Sandoval | 22c6186 | 2015-03-16 04:33:53 -0700 | [diff] [blame] | 2398 | written = mapping->a_ops->direct_IO(iocb, &data, pos); |
Christoph Hellwig | a969e90 | 2008-07-23 21:27:04 -0700 | [diff] [blame] | 2399 | |
| 2400 | /* |
| 2401 | * Finally, try again to invalidate clean pages which might have been |
| 2402 | * cached by non-direct readahead, or faulted in by get_user_pages() |
| 2403 | * if the source of the write was an mmap'ed region of the file |
| 2404 | * we're writing. Either one is a pretty crazy thing to do, |
| 2405 | * so we don't support it 100%. If this invalidation |
| 2406 | * fails, tough, the write still worked... |
| 2407 | */ |
| 2408 | if (mapping->nrpages) { |
| 2409 | invalidate_inode_pages2_range(mapping, |
| 2410 | pos >> PAGE_CACHE_SHIFT, end); |
| 2411 | } |
| 2412 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2413 | if (written > 0) { |
Namhyung Kim | 0116651 | 2010-10-26 14:21:58 -0700 | [diff] [blame] | 2414 | pos += written; |
Al Viro | f8579f8 | 2014-03-03 22:03:20 -0500 | [diff] [blame] | 2415 | iov_iter_advance(from, written); |
Namhyung Kim | 0116651 | 2010-10-26 14:21:58 -0700 | [diff] [blame] | 2416 | if (pos > i_size_read(inode) && !S_ISBLK(inode->i_mode)) { |
| 2417 | i_size_write(inode, pos); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2418 | mark_inode_dirty(inode); |
| 2419 | } |
Al Viro | 5cb6c6c | 2014-02-11 20:58:20 -0500 | [diff] [blame] | 2420 | iocb->ki_pos = pos; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2421 | } |
Christoph Hellwig | a969e90 | 2008-07-23 21:27:04 -0700 | [diff] [blame] | 2422 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2423 | return written; |
| 2424 | } |
| 2425 | EXPORT_SYMBOL(generic_file_direct_write); |
| 2426 | |
Nick Piggin | eb2be18 | 2007-10-16 01:24:57 -0700 | [diff] [blame] | 2427 | /* |
| 2428 | * Find or create a page at the given pagecache position. Return the locked |
| 2429 | * page. This function is specifically for buffered writes. |
| 2430 | */ |
Nick Piggin | 54566b2 | 2009-01-04 12:00:53 -0800 | [diff] [blame] | 2431 | struct page *grab_cache_page_write_begin(struct address_space *mapping, |
| 2432 | pgoff_t index, unsigned flags) |
Nick Piggin | eb2be18 | 2007-10-16 01:24:57 -0700 | [diff] [blame] | 2433 | { |
Nick Piggin | eb2be18 | 2007-10-16 01:24:57 -0700 | [diff] [blame] | 2434 | struct page *page; |
Mel Gorman | 2457aec | 2014-06-04 16:10:31 -0700 | [diff] [blame] | 2435 | int fgp_flags = FGP_LOCK|FGP_ACCESSED|FGP_WRITE|FGP_CREAT; |
Johannes Weiner | 0faa70c | 2012-01-10 15:07:53 -0800 | [diff] [blame] | 2436 | |
Nick Piggin | 54566b2 | 2009-01-04 12:00:53 -0800 | [diff] [blame] | 2437 | if (flags & AOP_FLAG_NOFS) |
Mel Gorman | 2457aec | 2014-06-04 16:10:31 -0700 | [diff] [blame] | 2438 | fgp_flags |= FGP_NOFS; |
Nick Piggin | eb2be18 | 2007-10-16 01:24:57 -0700 | [diff] [blame] | 2439 | |
Mel Gorman | 2457aec | 2014-06-04 16:10:31 -0700 | [diff] [blame] | 2440 | page = pagecache_get_page(mapping, index, fgp_flags, |
Michal Hocko | 45f87de | 2014-12-29 20:30:35 +0100 | [diff] [blame] | 2441 | mapping_gfp_mask(mapping)); |
Mel Gorman | 2457aec | 2014-06-04 16:10:31 -0700 | [diff] [blame] | 2442 | if (page) |
| 2443 | wait_for_stable_page(page); |
| 2444 | |
Nick Piggin | eb2be18 | 2007-10-16 01:24:57 -0700 | [diff] [blame] | 2445 | return page; |
| 2446 | } |
Nick Piggin | 54566b2 | 2009-01-04 12:00:53 -0800 | [diff] [blame] | 2447 | EXPORT_SYMBOL(grab_cache_page_write_begin); |
Nick Piggin | eb2be18 | 2007-10-16 01:24:57 -0700 | [diff] [blame] | 2448 | |
Al Viro | 3b93f91 | 2014-02-11 21:34:08 -0500 | [diff] [blame] | 2449 | ssize_t generic_perform_write(struct file *file, |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 2450 | struct iov_iter *i, loff_t pos) |
| 2451 | { |
| 2452 | struct address_space *mapping = file->f_mapping; |
| 2453 | const struct address_space_operations *a_ops = mapping->a_ops; |
| 2454 | long status = 0; |
| 2455 | ssize_t written = 0; |
Nick Piggin | 674b892 | 2007-10-16 01:25:03 -0700 | [diff] [blame] | 2456 | unsigned int flags = 0; |
| 2457 | |
| 2458 | /* |
| 2459 | * Copies from kernel address space cannot fail (NFSD is a big user). |
| 2460 | */ |
Al Viro | 777eda2 | 2014-12-17 04:46:46 -0500 | [diff] [blame] | 2461 | if (!iter_is_iovec(i)) |
Nick Piggin | 674b892 | 2007-10-16 01:25:03 -0700 | [diff] [blame] | 2462 | flags |= AOP_FLAG_UNINTERRUPTIBLE; |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 2463 | |
| 2464 | do { |
| 2465 | struct page *page; |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 2466 | unsigned long offset; /* Offset into pagecache page */ |
| 2467 | unsigned long bytes; /* Bytes to write to page */ |
| 2468 | size_t copied; /* Bytes copied from user */ |
| 2469 | void *fsdata; |
| 2470 | |
| 2471 | offset = (pos & (PAGE_CACHE_SIZE - 1)); |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 2472 | bytes = min_t(unsigned long, PAGE_CACHE_SIZE - offset, |
| 2473 | iov_iter_count(i)); |
| 2474 | |
| 2475 | again: |
Nick Piggin | 674b892 | 2007-10-16 01:25:03 -0700 | [diff] [blame] | 2476 | status = a_ops->write_begin(file, mapping, pos, bytes, flags, |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 2477 | &page, &fsdata); |
Mel Gorman | 2457aec | 2014-06-04 16:10:31 -0700 | [diff] [blame] | 2478 | if (unlikely(status < 0)) |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 2479 | break; |
| 2480 | |
anfei zhou | 931e80e | 2010-02-02 13:44:02 -0800 | [diff] [blame] | 2481 | if (mapping_writably_mapped(mapping)) |
| 2482 | flush_dcache_page(page); |
Dave Hansen | 998ef75 | 2015-09-08 15:00:28 -0700 | [diff] [blame] | 2483 | /* |
| 2484 | * 'page' is now locked. If we are trying to copy from a |
| 2485 | * mapping of 'page' in userspace, the copy might fault and |
| 2486 | * would need PageUptodate() to complete. But, page can not be |
| 2487 | * made Uptodate without acquiring the page lock, which we hold. |
| 2488 | * Deadlock. Avoid with pagefault_disable(). Fix up below with |
| 2489 | * iov_iter_fault_in_readable(). |
| 2490 | */ |
| 2491 | pagefault_disable(); |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 2492 | copied = iov_iter_copy_from_user_atomic(page, i, offset, bytes); |
Dave Hansen | 998ef75 | 2015-09-08 15:00:28 -0700 | [diff] [blame] | 2493 | pagefault_enable(); |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 2494 | flush_dcache_page(page); |
| 2495 | |
| 2496 | status = a_ops->write_end(file, mapping, pos, bytes, copied, |
| 2497 | page, fsdata); |
| 2498 | if (unlikely(status < 0)) |
| 2499 | break; |
| 2500 | copied = status; |
| 2501 | |
| 2502 | cond_resched(); |
| 2503 | |
Nick Piggin | 124d3b7 | 2008-02-02 15:01:17 +0100 | [diff] [blame] | 2504 | iov_iter_advance(i, copied); |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 2505 | if (unlikely(copied == 0)) { |
| 2506 | /* |
| 2507 | * If we were unable to copy any data at all, we must |
| 2508 | * fall back to a single segment length write. |
| 2509 | * |
| 2510 | * If we didn't fallback here, we could livelock |
| 2511 | * because not all segments in the iov can be copied at |
| 2512 | * once without a pagefault. |
| 2513 | */ |
| 2514 | bytes = min_t(unsigned long, PAGE_CACHE_SIZE - offset, |
| 2515 | iov_iter_single_seg_count(i)); |
Dave Hansen | 998ef75 | 2015-09-08 15:00:28 -0700 | [diff] [blame] | 2516 | /* |
| 2517 | * This is the fallback to recover if the copy from |
| 2518 | * userspace above faults. |
| 2519 | */ |
| 2520 | if (unlikely(iov_iter_fault_in_readable(i, bytes))) { |
| 2521 | status = -EFAULT; |
| 2522 | break; |
| 2523 | } |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 2524 | goto again; |
| 2525 | } |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 2526 | pos += copied; |
| 2527 | written += copied; |
| 2528 | |
| 2529 | balance_dirty_pages_ratelimited(mapping); |
Jan Kara | a50527b | 2011-12-02 09:17:02 +0800 | [diff] [blame] | 2530 | if (fatal_signal_pending(current)) { |
| 2531 | status = -EINTR; |
| 2532 | break; |
| 2533 | } |
Nick Piggin | afddba4 | 2007-10-16 01:25:01 -0700 | [diff] [blame] | 2534 | } while (iov_iter_count(i)); |
| 2535 | |
| 2536 | return written ? written : status; |
| 2537 | } |
Al Viro | 3b93f91 | 2014-02-11 21:34:08 -0500 | [diff] [blame] | 2538 | EXPORT_SYMBOL(generic_perform_write); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2539 | |
Jan Kara | e4dd9de | 2009-08-17 18:10:06 +0200 | [diff] [blame] | 2540 | /** |
Al Viro | 8174202 | 2014-04-03 03:17:43 -0400 | [diff] [blame] | 2541 | * __generic_file_write_iter - write data to a file |
Jan Kara | e4dd9de | 2009-08-17 18:10:06 +0200 | [diff] [blame] | 2542 | * @iocb: IO state structure (file, offset, etc.) |
Al Viro | 8174202 | 2014-04-03 03:17:43 -0400 | [diff] [blame] | 2543 | * @from: iov_iter with data to write |
Jan Kara | e4dd9de | 2009-08-17 18:10:06 +0200 | [diff] [blame] | 2544 | * |
| 2545 | * This function does all the work needed for actually writing data to a |
| 2546 | * file. It does all basic checks, removes SUID from the file, updates |
| 2547 | * modification times and calls proper subroutines depending on whether we |
| 2548 | * do direct IO or a standard buffered write. |
| 2549 | * |
| 2550 | * It expects i_mutex to be grabbed unless we work on a block device or similar |
| 2551 | * object which does not need locking at all. |
| 2552 | * |
| 2553 | * This function does *not* take care of syncing data in case of O_SYNC write. |
| 2554 | * A caller has to handle it. This is mainly due to the fact that we want to |
| 2555 | * avoid syncing under i_mutex. |
| 2556 | */ |
Al Viro | 8174202 | 2014-04-03 03:17:43 -0400 | [diff] [blame] | 2557 | ssize_t __generic_file_write_iter(struct kiocb *iocb, struct iov_iter *from) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2558 | { |
| 2559 | struct file *file = iocb->ki_filp; |
Jeff Moyer | fb5527e | 2006-10-19 23:28:13 -0700 | [diff] [blame] | 2560 | struct address_space * mapping = file->f_mapping; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2561 | struct inode *inode = mapping->host; |
Al Viro | 3b93f91 | 2014-02-11 21:34:08 -0500 | [diff] [blame] | 2562 | ssize_t written = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2563 | ssize_t err; |
Al Viro | 3b93f91 | 2014-02-11 21:34:08 -0500 | [diff] [blame] | 2564 | ssize_t status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2565 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2566 | /* We can write back this queue in page reclaim */ |
Christoph Hellwig | de1414a | 2015-01-14 10:42:36 +0100 | [diff] [blame] | 2567 | current->backing_dev_info = inode_to_bdi(inode); |
Jan Kara | 5fa8e0a | 2015-05-21 16:05:53 +0200 | [diff] [blame] | 2568 | err = file_remove_privs(file); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2569 | if (err) |
| 2570 | goto out; |
| 2571 | |
Josef Bacik | c3b2da3 | 2012-03-26 09:59:21 -0400 | [diff] [blame] | 2572 | err = file_update_time(file); |
| 2573 | if (err) |
| 2574 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2575 | |
Al Viro | 2ba48ce | 2015-04-09 13:52:01 -0400 | [diff] [blame] | 2576 | if (iocb->ki_flags & IOCB_DIRECT) { |
Al Viro | 0b8def9 | 2015-04-07 10:22:53 -0400 | [diff] [blame] | 2577 | loff_t pos, endbyte; |
Jeff Moyer | fb5527e | 2006-10-19 23:28:13 -0700 | [diff] [blame] | 2578 | |
Al Viro | 0b8def9 | 2015-04-07 10:22:53 -0400 | [diff] [blame] | 2579 | written = generic_file_direct_write(iocb, from, iocb->ki_pos); |
Matthew Wilcox | fbbbad4 | 2015-02-16 15:58:53 -0800 | [diff] [blame] | 2580 | /* |
| 2581 | * If the write stopped short of completing, fall back to |
| 2582 | * buffered writes. Some filesystems do this for writes to |
| 2583 | * holes, for example. For DAX files, a buffered write will |
| 2584 | * not succeed (even if it did, DAX does not handle dirty |
| 2585 | * page-cache pages correctly). |
| 2586 | */ |
Al Viro | 0b8def9 | 2015-04-07 10:22:53 -0400 | [diff] [blame] | 2587 | if (written < 0 || !iov_iter_count(from) || IS_DAX(inode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2588 | goto out; |
Al Viro | 3b93f91 | 2014-02-11 21:34:08 -0500 | [diff] [blame] | 2589 | |
Al Viro | 0b8def9 | 2015-04-07 10:22:53 -0400 | [diff] [blame] | 2590 | status = generic_perform_write(file, from, pos = iocb->ki_pos); |
Jeff Moyer | fb5527e | 2006-10-19 23:28:13 -0700 | [diff] [blame] | 2591 | /* |
Al Viro | 3b93f91 | 2014-02-11 21:34:08 -0500 | [diff] [blame] | 2592 | * If generic_perform_write() returned a synchronous error |
Jeff Moyer | fb5527e | 2006-10-19 23:28:13 -0700 | [diff] [blame] | 2593 | * then we want to return the number of bytes which were |
| 2594 | * direct-written, or the error code if that was zero. Note |
| 2595 | * that this differs from normal direct-io semantics, which |
| 2596 | * will return -EFOO even if some bytes were written. |
| 2597 | */ |
Al Viro | 60bb452 | 2014-08-08 12:39:16 -0400 | [diff] [blame] | 2598 | if (unlikely(status < 0)) { |
Al Viro | 3b93f91 | 2014-02-11 21:34:08 -0500 | [diff] [blame] | 2599 | err = status; |
Jeff Moyer | fb5527e | 2006-10-19 23:28:13 -0700 | [diff] [blame] | 2600 | goto out; |
| 2601 | } |
Jeff Moyer | fb5527e | 2006-10-19 23:28:13 -0700 | [diff] [blame] | 2602 | /* |
| 2603 | * We need to ensure that the page cache pages are written to |
| 2604 | * disk and invalidated to preserve the expected O_DIRECT |
| 2605 | * semantics. |
| 2606 | */ |
Al Viro | 3b93f91 | 2014-02-11 21:34:08 -0500 | [diff] [blame] | 2607 | endbyte = pos + status - 1; |
Al Viro | 0b8def9 | 2015-04-07 10:22:53 -0400 | [diff] [blame] | 2608 | err = filemap_write_and_wait_range(mapping, pos, endbyte); |
Jeff Moyer | fb5527e | 2006-10-19 23:28:13 -0700 | [diff] [blame] | 2609 | if (err == 0) { |
Al Viro | 0b8def9 | 2015-04-07 10:22:53 -0400 | [diff] [blame] | 2610 | iocb->ki_pos = endbyte + 1; |
Al Viro | 3b93f91 | 2014-02-11 21:34:08 -0500 | [diff] [blame] | 2611 | written += status; |
Jeff Moyer | fb5527e | 2006-10-19 23:28:13 -0700 | [diff] [blame] | 2612 | invalidate_mapping_pages(mapping, |
| 2613 | pos >> PAGE_CACHE_SHIFT, |
| 2614 | endbyte >> PAGE_CACHE_SHIFT); |
| 2615 | } else { |
| 2616 | /* |
| 2617 | * We don't know how much we wrote, so just return |
| 2618 | * the number of bytes which were direct-written |
| 2619 | */ |
| 2620 | } |
| 2621 | } else { |
Al Viro | 0b8def9 | 2015-04-07 10:22:53 -0400 | [diff] [blame] | 2622 | written = generic_perform_write(file, from, iocb->ki_pos); |
| 2623 | if (likely(written > 0)) |
| 2624 | iocb->ki_pos += written; |
Jeff Moyer | fb5527e | 2006-10-19 23:28:13 -0700 | [diff] [blame] | 2625 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2626 | out: |
| 2627 | current->backing_dev_info = NULL; |
| 2628 | return written ? written : err; |
| 2629 | } |
Al Viro | 8174202 | 2014-04-03 03:17:43 -0400 | [diff] [blame] | 2630 | EXPORT_SYMBOL(__generic_file_write_iter); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2631 | |
Jan Kara | e4dd9de | 2009-08-17 18:10:06 +0200 | [diff] [blame] | 2632 | /** |
Al Viro | 8174202 | 2014-04-03 03:17:43 -0400 | [diff] [blame] | 2633 | * generic_file_write_iter - write data to a file |
Jan Kara | e4dd9de | 2009-08-17 18:10:06 +0200 | [diff] [blame] | 2634 | * @iocb: IO state structure |
Al Viro | 8174202 | 2014-04-03 03:17:43 -0400 | [diff] [blame] | 2635 | * @from: iov_iter with data to write |
Jan Kara | e4dd9de | 2009-08-17 18:10:06 +0200 | [diff] [blame] | 2636 | * |
Al Viro | 8174202 | 2014-04-03 03:17:43 -0400 | [diff] [blame] | 2637 | * This is a wrapper around __generic_file_write_iter() to be used by most |
Jan Kara | e4dd9de | 2009-08-17 18:10:06 +0200 | [diff] [blame] | 2638 | * filesystems. It takes care of syncing the file in case of O_SYNC file |
| 2639 | * and acquires i_mutex as needed. |
| 2640 | */ |
Al Viro | 8174202 | 2014-04-03 03:17:43 -0400 | [diff] [blame] | 2641 | ssize_t generic_file_write_iter(struct kiocb *iocb, struct iov_iter *from) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2642 | { |
| 2643 | struct file *file = iocb->ki_filp; |
Jan Kara | 148f948 | 2009-08-17 19:52:36 +0200 | [diff] [blame] | 2644 | struct inode *inode = file->f_mapping->host; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2645 | ssize_t ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2646 | |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 2647 | mutex_lock(&inode->i_mutex); |
Al Viro | 3309dd0 | 2015-04-09 12:55:47 -0400 | [diff] [blame] | 2648 | ret = generic_write_checks(iocb, from); |
| 2649 | if (ret > 0) |
Al Viro | 5f380c7 | 2015-04-07 11:28:12 -0400 | [diff] [blame] | 2650 | ret = __generic_file_write_iter(iocb, from); |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 2651 | mutex_unlock(&inode->i_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2652 | |
Christoph Hellwig | 02afc27 | 2013-09-04 15:04:40 +0200 | [diff] [blame] | 2653 | if (ret > 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2654 | ssize_t err; |
| 2655 | |
Al Viro | d311d79 | 2014-02-09 15:18:09 -0500 | [diff] [blame] | 2656 | err = generic_write_sync(file, iocb->ki_pos - ret, ret); |
| 2657 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2658 | ret = err; |
| 2659 | } |
| 2660 | return ret; |
| 2661 | } |
Al Viro | 8174202 | 2014-04-03 03:17:43 -0400 | [diff] [blame] | 2662 | EXPORT_SYMBOL(generic_file_write_iter); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2663 | |
David Howells | cf9a2ae | 2006-08-29 19:05:54 +0100 | [diff] [blame] | 2664 | /** |
| 2665 | * try_to_release_page() - release old fs-specific metadata on a page |
| 2666 | * |
| 2667 | * @page: the page which the kernel is trying to free |
| 2668 | * @gfp_mask: memory allocation flags (and I/O mode) |
| 2669 | * |
| 2670 | * The address_space is to try to release any data against the page |
| 2671 | * (presumably at page->private). If the release was successful, return `1'. |
| 2672 | * Otherwise return zero. |
| 2673 | * |
David Howells | 266cf65 | 2009-04-03 16:42:36 +0100 | [diff] [blame] | 2674 | * This may also be called if PG_fscache is set on a page, indicating that the |
| 2675 | * page is known to the local caching routines. |
| 2676 | * |
David Howells | cf9a2ae | 2006-08-29 19:05:54 +0100 | [diff] [blame] | 2677 | * The @gfp_mask argument specifies whether I/O may be performed to release |
Mingming Cao | 3f31fdd | 2008-07-25 01:46:22 -0700 | [diff] [blame] | 2678 | * this page (__GFP_IO), and whether the call may block (__GFP_WAIT & __GFP_FS). |
David Howells | cf9a2ae | 2006-08-29 19:05:54 +0100 | [diff] [blame] | 2679 | * |
David Howells | cf9a2ae | 2006-08-29 19:05:54 +0100 | [diff] [blame] | 2680 | */ |
| 2681 | int try_to_release_page(struct page *page, gfp_t gfp_mask) |
| 2682 | { |
| 2683 | struct address_space * const mapping = page->mapping; |
| 2684 | |
| 2685 | BUG_ON(!PageLocked(page)); |
| 2686 | if (PageWriteback(page)) |
| 2687 | return 0; |
| 2688 | |
| 2689 | if (mapping && mapping->a_ops->releasepage) |
| 2690 | return mapping->a_ops->releasepage(page, gfp_mask); |
| 2691 | return try_to_free_buffers(page); |
| 2692 | } |
| 2693 | |
| 2694 | EXPORT_SYMBOL(try_to_release_page); |