blob: 8e629c4ef0c8b0298865c775b490b698e667480e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Gortmakerb95f1b312011-10-16 02:01:52 -040012#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/compiler.h>
Ross Zwislerf9fe48b2016-01-22 15:10:40 -080014#include <linux/dax.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/fs.h>
Hiro Yoshiokac22ce142006-06-23 02:04:16 -070016#include <linux/uaccess.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080017#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/kernel_stat.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090019#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/mm.h>
21#include <linux/swap.h>
22#include <linux/mman.h>
23#include <linux/pagemap.h>
24#include <linux/file.h>
25#include <linux/uio.h>
26#include <linux/hash.h>
27#include <linux/writeback.h>
Linus Torvalds53253382007-10-18 14:47:32 -070028#include <linux/backing-dev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/pagevec.h>
30#include <linux/blkdev.h>
31#include <linux/security.h>
Paul Jackson44110fe2006-03-24 03:16:04 -080032#include <linux/cpuset.h>
Nick Piggin2f718ff2007-10-16 01:24:59 -070033#include <linux/hardirq.h> /* for BUG_ON(!in_atomic()) only */
Johannes Weiner00501b52014-08-08 14:19:20 -070034#include <linux/hugetlb.h>
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080035#include <linux/memcontrol.h>
Dan Magenheimerc515e1f2011-05-26 10:01:43 -060036#include <linux/cleancache.h>
Kirill A. Shutemovf1820362014-04-07 15:37:19 -070037#include <linux/rmap.h>
Nick Piggin0f8053a2006-03-22 00:08:33 -080038#include "internal.h"
39
Robert Jarzmikfe0bfaa2013-04-29 15:06:10 -070040#define CREATE_TRACE_POINTS
41#include <trace/events/filemap.h>
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 * FIXME: remove all knowledge of the buffer layer from the core VM
45 */
Jan Kara148f9482009-08-17 19:52:36 +020046#include <linux/buffer_head.h> /* for try_to_free_buffers */
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Linus Torvalds1da177e2005-04-16 15:20:36 -070048#include <asm/mman.h>
49
50/*
51 * Shared mappings implemented 30.11.1994. It's not fully working yet,
52 * though.
53 *
54 * Shared mappings now work. 15.8.1995 Bruno.
55 *
56 * finished 'unifying' the page and buffer cache and SMP-threaded the
57 * page-cache, 21.05.1999, Ingo Molnar <mingo@redhat.com>
58 *
59 * SMP-threaded pagemap-LRU 1999, Andrea Arcangeli <andrea@suse.de>
60 */
61
62/*
63 * Lock ordering:
64 *
Davidlohr Buesoc8c06ef2014-12-12 16:54:24 -080065 * ->i_mmap_rwsem (truncate_pagecache)
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 * ->private_lock (__free_pte->__set_page_dirty_buffers)
Hugh Dickins5d337b92005-09-03 15:54:41 -070067 * ->swap_lock (exclusive_swap_page, others)
68 * ->mapping->tree_lock
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 *
Jes Sorensen1b1dcc12006-01-09 15:59:24 -080070 * ->i_mutex
Davidlohr Buesoc8c06ef2014-12-12 16:54:24 -080071 * ->i_mmap_rwsem (truncate->unmap_mapping_range)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 *
73 * ->mmap_sem
Davidlohr Buesoc8c06ef2014-12-12 16:54:24 -080074 * ->i_mmap_rwsem
Hugh Dickinsb8072f02005-10-29 18:16:41 -070075 * ->page_table_lock or pte_lock (various, mainly in memory.c)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 * ->mapping->tree_lock (arch-dependent flush_dcache_mmap_lock)
77 *
78 * ->mmap_sem
79 * ->lock_page (access_process_vm)
80 *
Al Viroccad2362014-02-11 22:36:48 -050081 * ->i_mutex (generic_perform_write)
Nick Piggin82591e62006-10-19 23:29:10 -070082 * ->mmap_sem (fault_in_pages_readable->do_page_fault)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 *
Christoph Hellwigf758eea2011-04-21 18:19:44 -060084 * bdi->wb.list_lock
Dave Chinnera66979a2011-03-22 22:23:41 +110085 * sb_lock (fs/fs-writeback.c)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 * ->mapping->tree_lock (__sync_single_inode)
87 *
Davidlohr Buesoc8c06ef2014-12-12 16:54:24 -080088 * ->i_mmap_rwsem
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 * ->anon_vma.lock (vma_adjust)
90 *
91 * ->anon_vma.lock
Hugh Dickinsb8072f02005-10-29 18:16:41 -070092 * ->page_table_lock or pte_lock (anon_vma_prepare and various)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 *
Hugh Dickinsb8072f02005-10-29 18:16:41 -070094 * ->page_table_lock or pte_lock
Hugh Dickins5d337b92005-09-03 15:54:41 -070095 * ->swap_lock (try_to_unmap_one)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 * ->private_lock (try_to_unmap_one)
97 * ->tree_lock (try_to_unmap_one)
98 * ->zone.lru_lock (follow_page->mark_page_accessed)
Nick Piggin053837f2006-01-18 17:42:27 -080099 * ->zone.lru_lock (check_pte_range->isolate_lru_page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 * ->private_lock (page_remove_rmap->set_page_dirty)
101 * ->tree_lock (page_remove_rmap->set_page_dirty)
Christoph Hellwigf758eea2011-04-21 18:19:44 -0600102 * bdi.wb->list_lock (page_remove_rmap->set_page_dirty)
Dave Chinner250df6ed2011-03-22 22:23:36 +1100103 * ->inode->i_lock (page_remove_rmap->set_page_dirty)
Johannes Weiner81f8c3a2016-03-15 14:57:04 -0700104 * ->memcg->move_lock (page_remove_rmap->lock_page_memcg)
Christoph Hellwigf758eea2011-04-21 18:19:44 -0600105 * bdi.wb->list_lock (zap_pte_range->set_page_dirty)
Dave Chinner250df6ed2011-03-22 22:23:36 +1100106 * ->inode->i_lock (zap_pte_range->set_page_dirty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 * ->private_lock (zap_pte_range->__set_page_dirty_buffers)
108 *
Davidlohr Buesoc8c06ef2014-12-12 16:54:24 -0800109 * ->i_mmap_rwsem
Andi Kleen9a3c5312012-03-21 16:34:09 -0700110 * ->tasklist_lock (memory_failure, collect_procs_ao)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 */
112
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700113static void page_cache_tree_delete(struct address_space *mapping,
114 struct page *page, void *shadow)
115{
Johannes Weiner449dd692014-04-03 14:47:56 -0700116 struct radix_tree_node *node;
117 unsigned long index;
118 unsigned int offset;
119 unsigned int tag;
120 void **slot;
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700121
Johannes Weiner449dd692014-04-03 14:47:56 -0700122 VM_BUG_ON(!PageLocked(page));
123
124 __radix_tree_lookup(&mapping->page_tree, page->index, &node, &slot);
125
126 if (shadow) {
Ross Zwislerf9fe48b2016-01-22 15:10:40 -0800127 mapping->nrexceptional++;
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700128 /*
Ross Zwislerf9fe48b2016-01-22 15:10:40 -0800129 * Make sure the nrexceptional update is committed before
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700130 * the nrpages update so that final truncate racing
131 * with reclaim does not see both counters 0 at the
132 * same time and miss a shadow entry.
133 */
134 smp_wmb();
Johannes Weiner449dd692014-04-03 14:47:56 -0700135 }
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700136 mapping->nrpages--;
Johannes Weiner449dd692014-04-03 14:47:56 -0700137
138 if (!node) {
139 /* Clear direct pointer tags in root node */
140 mapping->page_tree.gfp_mask &= __GFP_BITS_MASK;
141 radix_tree_replace_slot(slot, shadow);
142 return;
143 }
144
145 /* Clear tree tags for the removed page */
146 index = page->index;
147 offset = index & RADIX_TREE_MAP_MASK;
148 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++) {
149 if (test_bit(offset, node->tags[tag]))
150 radix_tree_tag_clear(&mapping->page_tree, index, tag);
151 }
152
153 /* Delete page, swap shadow entry */
154 radix_tree_replace_slot(slot, shadow);
155 workingset_node_pages_dec(node);
156 if (shadow)
157 workingset_node_shadows_inc(node);
158 else
159 if (__radix_tree_delete_node(&mapping->page_tree, node))
160 return;
161
162 /*
163 * Track node that only contains shadow entries.
164 *
165 * Avoid acquiring the list_lru lock if already tracked. The
166 * list_empty() test is safe as node->private_list is
167 * protected by mapping->tree_lock.
168 */
169 if (!workingset_node_pages(node) &&
170 list_empty(&node->private_list)) {
171 node->private_data = mapping;
172 list_lru_add(&workingset_shadow_nodes, &node->private_list);
173 }
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700174}
175
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176/*
Minchan Kime64a7822011-03-22 16:32:44 -0700177 * Delete a page from the page cache and free it. Caller has to make
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 * sure the page is locked and that nobody else uses it - or that usage
Greg Thelenc4843a72015-05-22 17:13:16 -0400179 * is safe. The caller must hold the mapping's tree_lock and
Johannes Weiner81f8c3a2016-03-15 14:57:04 -0700180 * lock_page_memcg().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 */
Johannes Weiner62cccb82016-03-15 14:57:22 -0700182void __delete_from_page_cache(struct page *page, void *shadow)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183{
184 struct address_space *mapping = page->mapping;
185
Robert Jarzmikfe0bfaa2013-04-29 15:06:10 -0700186 trace_mm_filemap_delete_from_page_cache(page);
Dan Magenheimerc515e1f2011-05-26 10:01:43 -0600187 /*
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 Magenheimer31677602011-09-21 11:56:28 -0400195 cleancache_invalidate_page(mapping, page);
Dan Magenheimerc515e1f2011-05-26 10:01:43 -0600196
Hugh Dickins06b241f2016-03-09 14:08:07 -0800197 VM_BUG_ON_PAGE(page_mapped(page), page);
198 if (!IS_ENABLED(CONFIG_DEBUG_VM) && unlikely(page_mapped(page))) {
199 int mapcount;
200
201 pr_alert("BUG: Bad page cache in process %s pfn:%05lx\n",
202 current->comm, page_to_pfn(page));
203 dump_page(page, "still mapped when deleted");
204 dump_stack();
205 add_taint(TAINT_BAD_PAGE, LOCKDEP_NOW_UNRELIABLE);
206
207 mapcount = page_mapcount(page);
208 if (mapping_exiting(mapping) &&
209 page_count(page) >= mapcount + 2) {
210 /*
211 * All vmas have already been torn down, so it's
212 * a good bet that actually the page is unmapped,
213 * and we'd prefer not to leak it: if we're wrong,
214 * some other bad page check should catch it later.
215 */
216 page_mapcount_reset(page);
217 atomic_sub(mapcount, &page->_count);
218 }
219 }
220
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700221 page_cache_tree_delete(mapping, page, shadow);
222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 page->mapping = NULL;
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700224 /* Leave page->index set: truncation lookup relies upon it */
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700225
Michal Hocko4165b9b42015-06-24 16:57:24 -0700226 /* hugetlb pages do not participate in page cache accounting. */
227 if (!PageHuge(page))
228 __dec_zone_page_state(page, NR_FILE_PAGES);
KOSAKI Motohiro4b021082009-09-21 17:01:33 -0700229 if (PageSwapBacked(page))
230 __dec_zone_page_state(page, NR_SHMEM);
Linus Torvalds3a692792007-12-19 14:05:13 -0800231
232 /*
Konstantin Khlebnikovb9ea2512015-04-14 15:45:27 -0700233 * At this point page must be either written or cleaned by truncate.
234 * Dirty page here signals a bug and loss of unwritten data.
Linus Torvalds3a692792007-12-19 14:05:13 -0800235 *
Konstantin Khlebnikovb9ea2512015-04-14 15:45:27 -0700236 * This fixes dirty accounting after removing the page entirely but
237 * leaves PageDirty set: it has no effect for truncated page and
238 * anyway will be cleared before returning page into buddy allocator.
Linus Torvalds3a692792007-12-19 14:05:13 -0800239 */
Konstantin Khlebnikovb9ea2512015-04-14 15:45:27 -0700240 if (WARN_ON_ONCE(PageDirty(page)))
Johannes Weiner62cccb82016-03-15 14:57:22 -0700241 account_page_cleaned(page, mapping, inode_to_wb(mapping->host));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242}
243
Minchan Kim702cfbf2011-03-22 16:32:43 -0700244/**
245 * delete_from_page_cache - delete page from page cache
246 * @page: the page which the kernel is trying to remove from page cache
247 *
248 * This must be called only on pages that have been verified to be in the page
249 * cache and locked. It will never put the page into the free list, the caller
250 * has a reference on the page.
251 */
252void delete_from_page_cache(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
254 struct address_space *mapping = page->mapping;
Greg Thelenc4843a72015-05-22 17:13:16 -0400255 unsigned long flags;
256
Linus Torvalds6072d132010-12-01 13:35:19 -0500257 void (*freepage)(struct page *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Matt Mackallcd7619d2005-05-01 08:59:01 -0700259 BUG_ON(!PageLocked(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Linus Torvalds6072d132010-12-01 13:35:19 -0500261 freepage = mapping->a_ops->freepage;
Greg Thelenc4843a72015-05-22 17:13:16 -0400262
Johannes Weiner62cccb82016-03-15 14:57:22 -0700263 lock_page_memcg(page);
Greg Thelenc4843a72015-05-22 17:13:16 -0400264 spin_lock_irqsave(&mapping->tree_lock, flags);
Johannes Weiner62cccb82016-03-15 14:57:22 -0700265 __delete_from_page_cache(page, NULL);
Greg Thelenc4843a72015-05-22 17:13:16 -0400266 spin_unlock_irqrestore(&mapping->tree_lock, flags);
Johannes Weiner62cccb82016-03-15 14:57:22 -0700267 unlock_page_memcg(page);
Linus Torvalds6072d132010-12-01 13:35:19 -0500268
269 if (freepage)
270 freepage(page);
Minchan Kim97cecb52011-03-22 16:30:53 -0700271 page_cache_release(page);
272}
273EXPORT_SYMBOL(delete_from_page_cache);
274
Dmitry Monakhov865ffef32013-04-29 15:08:42 -0700275static int filemap_check_errors(struct address_space *mapping)
276{
277 int ret = 0;
278 /* Check for outstanding write errors */
Jens Axboe7fcbbaf2014-05-22 11:54:16 -0700279 if (test_bit(AS_ENOSPC, &mapping->flags) &&
280 test_and_clear_bit(AS_ENOSPC, &mapping->flags))
Dmitry Monakhov865ffef32013-04-29 15:08:42 -0700281 ret = -ENOSPC;
Jens Axboe7fcbbaf2014-05-22 11:54:16 -0700282 if (test_bit(AS_EIO, &mapping->flags) &&
283 test_and_clear_bit(AS_EIO, &mapping->flags))
Dmitry Monakhov865ffef32013-04-29 15:08:42 -0700284 ret = -EIO;
285 return ret;
286}
287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288/**
Randy Dunlap485bb992006-06-23 02:03:49 -0700289 * __filemap_fdatawrite_range - start writeback on mapping dirty pages in range
Martin Waitz67be2dd2005-05-01 08:59:26 -0700290 * @mapping: address space structure to write
291 * @start: offset in bytes where the range starts
Andrew Morton469eb4d2006-03-24 03:17:45 -0800292 * @end: offset in bytes where the range ends (inclusive)
Martin Waitz67be2dd2005-05-01 08:59:26 -0700293 * @sync_mode: enable synchronous operation
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 *
Randy Dunlap485bb992006-06-23 02:03:49 -0700295 * Start writeback against all of a mapping's dirty pages that lie
296 * within the byte offsets <start, end> inclusive.
297 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 * If sync_mode is WB_SYNC_ALL then this is a "data integrity" operation, as
Randy Dunlap485bb992006-06-23 02:03:49 -0700299 * opposed to a regular memory cleansing writeback. The difference between
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 * these two operations is that if a dirty page/buffer is encountered, it must
301 * be waited upon, and not just skipped over.
302 */
Andrew Mortonebcf28e2006-03-24 03:18:04 -0800303int __filemap_fdatawrite_range(struct address_space *mapping, loff_t start,
304 loff_t end, int sync_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305{
306 int ret;
307 struct writeback_control wbc = {
308 .sync_mode = sync_mode,
Nick Piggin05fe4782009-01-06 14:39:08 -0800309 .nr_to_write = LONG_MAX,
OGAWA Hirofumi111ebb62006-06-23 02:03:26 -0700310 .range_start = start,
311 .range_end = end,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 };
313
314 if (!mapping_cap_writeback_dirty(mapping))
315 return 0;
316
Tejun Heob16b1de2015-06-02 08:39:48 -0600317 wbc_attach_fdatawrite_inode(&wbc, mapping->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 ret = do_writepages(mapping, &wbc);
Tejun Heob16b1de2015-06-02 08:39:48 -0600319 wbc_detach_inode(&wbc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 return ret;
321}
322
323static inline int __filemap_fdatawrite(struct address_space *mapping,
324 int sync_mode)
325{
OGAWA Hirofumi111ebb62006-06-23 02:03:26 -0700326 return __filemap_fdatawrite_range(mapping, 0, LLONG_MAX, sync_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327}
328
329int filemap_fdatawrite(struct address_space *mapping)
330{
331 return __filemap_fdatawrite(mapping, WB_SYNC_ALL);
332}
333EXPORT_SYMBOL(filemap_fdatawrite);
334
Jan Karaf4c0a0f2008-07-11 19:27:31 -0400335int filemap_fdatawrite_range(struct address_space *mapping, loff_t start,
Andrew Mortonebcf28e2006-03-24 03:18:04 -0800336 loff_t end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337{
338 return __filemap_fdatawrite_range(mapping, start, end, WB_SYNC_ALL);
339}
Jan Karaf4c0a0f2008-07-11 19:27:31 -0400340EXPORT_SYMBOL(filemap_fdatawrite_range);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Randy Dunlap485bb992006-06-23 02:03:49 -0700342/**
343 * filemap_flush - mostly a non-blocking flush
344 * @mapping: target address_space
345 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 * This is a mostly non-blocking flush. Not suitable for data-integrity
347 * purposes - I/O may not be started against all dirty pages.
348 */
349int filemap_flush(struct address_space *mapping)
350{
351 return __filemap_fdatawrite(mapping, WB_SYNC_NONE);
352}
353EXPORT_SYMBOL(filemap_flush);
354
Junichi Nomuraaa750fd2015-11-05 18:47:23 -0800355static int __filemap_fdatawait_range(struct address_space *mapping,
356 loff_t start_byte, loff_t end_byte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
Christoph Hellwig94004ed2009-09-30 22:16:33 +0200358 pgoff_t index = start_byte >> PAGE_CACHE_SHIFT;
359 pgoff_t end = end_byte >> PAGE_CACHE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 struct pagevec pvec;
361 int nr_pages;
Junichi Nomuraaa750fd2015-11-05 18:47:23 -0800362 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
Christoph Hellwig94004ed2009-09-30 22:16:33 +0200364 if (end_byte < start_byte)
Dmitry Monakhov865ffef32013-04-29 15:08:42 -0700365 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
367 pagevec_init(&pvec, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 while ((index <= end) &&
369 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index,
370 PAGECACHE_TAG_WRITEBACK,
371 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1)) != 0) {
372 unsigned i;
373
374 for (i = 0; i < nr_pages; i++) {
375 struct page *page = pvec.pages[i];
376
377 /* until radix tree lookup accepts end_index */
378 if (page->index > end)
379 continue;
380
381 wait_on_page_writeback(page);
Rik van Riel212260a2011-01-13 15:46:06 -0800382 if (TestClearPageError(page))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 ret = -EIO;
384 }
385 pagevec_release(&pvec);
386 cond_resched();
387 }
Dmitry Monakhov865ffef32013-04-29 15:08:42 -0700388out:
Junichi Nomuraaa750fd2015-11-05 18:47:23 -0800389 return ret;
390}
391
392/**
393 * filemap_fdatawait_range - wait for writeback to complete
394 * @mapping: address space structure to wait for
395 * @start_byte: offset in bytes where the range starts
396 * @end_byte: offset in bytes where the range ends (inclusive)
397 *
398 * Walk the list of under-writeback pages of the given address space
399 * in the given range and wait for all of them. Check error status of
400 * the address space and return it.
401 *
402 * Since the error status of the address space is cleared by this function,
403 * callers are responsible for checking the return value and handling and/or
404 * reporting the error.
405 */
406int filemap_fdatawait_range(struct address_space *mapping, loff_t start_byte,
407 loff_t end_byte)
408{
409 int ret, ret2;
410
411 ret = __filemap_fdatawait_range(mapping, start_byte, end_byte);
Dmitry Monakhov865ffef32013-04-29 15:08:42 -0700412 ret2 = filemap_check_errors(mapping);
413 if (!ret)
414 ret = ret2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
416 return ret;
417}
Jan Karad3bccb6f2009-08-17 19:30:27 +0200418EXPORT_SYMBOL(filemap_fdatawait_range);
419
420/**
Junichi Nomuraaa750fd2015-11-05 18:47:23 -0800421 * filemap_fdatawait_keep_errors - wait for writeback without clearing errors
422 * @mapping: address space structure to wait for
423 *
424 * Walk the list of under-writeback pages of the given address space
425 * and wait for all of them. Unlike filemap_fdatawait(), this function
426 * does not clear error status of the address space.
427 *
428 * Use this function if callers don't handle errors themselves. Expected
429 * call sites are system-wide / filesystem-wide data flushers: e.g. sync(2),
430 * fsfreeze(8)
431 */
432void filemap_fdatawait_keep_errors(struct address_space *mapping)
433{
434 loff_t i_size = i_size_read(mapping->host);
435
436 if (i_size == 0)
437 return;
438
439 __filemap_fdatawait_range(mapping, 0, i_size - 1);
440}
441
442/**
Randy Dunlap485bb992006-06-23 02:03:49 -0700443 * filemap_fdatawait - wait for all under-writeback pages to complete
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 * @mapping: address space structure to wait for
Randy Dunlap485bb992006-06-23 02:03:49 -0700445 *
446 * Walk the list of under-writeback pages of the given address space
Junichi Nomuraaa750fd2015-11-05 18:47:23 -0800447 * and wait for all of them. Check error status of the address space
448 * and return it.
449 *
450 * Since the error status of the address space is cleared by this function,
451 * callers are responsible for checking the return value and handling and/or
452 * reporting the error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 */
454int filemap_fdatawait(struct address_space *mapping)
455{
456 loff_t i_size = i_size_read(mapping->host);
457
458 if (i_size == 0)
459 return 0;
460
Christoph Hellwig94004ed2009-09-30 22:16:33 +0200461 return filemap_fdatawait_range(mapping, 0, i_size - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462}
463EXPORT_SYMBOL(filemap_fdatawait);
464
465int filemap_write_and_wait(struct address_space *mapping)
466{
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800467 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468
Ross Zwisler7f6d5b52016-02-26 15:19:55 -0800469 if ((!dax_mapping(mapping) && mapping->nrpages) ||
470 (dax_mapping(mapping) && mapping->nrexceptional)) {
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800471 err = filemap_fdatawrite(mapping);
472 /*
473 * Even if the above returned error, the pages may be
474 * written partially (e.g. -ENOSPC), so we wait for it.
475 * But the -EIO is special case, it may indicate the worst
476 * thing (e.g. bug) happened, so we avoid waiting for it.
477 */
478 if (err != -EIO) {
479 int err2 = filemap_fdatawait(mapping);
480 if (!err)
481 err = err2;
482 }
Dmitry Monakhov865ffef32013-04-29 15:08:42 -0700483 } else {
484 err = filemap_check_errors(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 }
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800486 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487}
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800488EXPORT_SYMBOL(filemap_write_and_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Randy Dunlap485bb992006-06-23 02:03:49 -0700490/**
491 * filemap_write_and_wait_range - write out & wait on a file range
492 * @mapping: the address_space for the pages
493 * @lstart: offset in bytes where the range starts
494 * @lend: offset in bytes where the range ends (inclusive)
495 *
Andrew Morton469eb4d2006-03-24 03:17:45 -0800496 * Write out and wait upon file offsets lstart->lend, inclusive.
497 *
498 * Note that `lend' is inclusive (describes the last byte to be written) so
499 * that this function can be used to write to the very end-of-file (end = -1).
500 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501int filemap_write_and_wait_range(struct address_space *mapping,
502 loff_t lstart, loff_t lend)
503{
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800504 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
Ross Zwisler7f6d5b52016-02-26 15:19:55 -0800506 if ((!dax_mapping(mapping) && mapping->nrpages) ||
507 (dax_mapping(mapping) && mapping->nrexceptional)) {
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800508 err = __filemap_fdatawrite_range(mapping, lstart, lend,
509 WB_SYNC_ALL);
510 /* See comment of filemap_write_and_wait() */
511 if (err != -EIO) {
Christoph Hellwig94004ed2009-09-30 22:16:33 +0200512 int err2 = filemap_fdatawait_range(mapping,
513 lstart, lend);
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800514 if (!err)
515 err = err2;
516 }
Dmitry Monakhov865ffef32013-04-29 15:08:42 -0700517 } else {
518 err = filemap_check_errors(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 }
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800520 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521}
Chris Masonf6995582009-04-15 13:22:37 -0400522EXPORT_SYMBOL(filemap_write_and_wait_range);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Randy Dunlap485bb992006-06-23 02:03:49 -0700524/**
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700525 * replace_page_cache_page - replace a pagecache page with a new one
526 * @old: page to be replaced
527 * @new: page to replace with
528 * @gfp_mask: allocation mode
529 *
530 * This function replaces a page in the pagecache with a new one. On
531 * success it acquires the pagecache reference for the new page and
532 * drops it for the old page. Both the old and new pages must be
533 * locked. This function does not add the new page to the LRU, the
534 * caller must do that.
535 *
536 * The remove + add is atomic. The only way this function can fail is
537 * memory allocation failure.
538 */
539int replace_page_cache_page(struct page *old, struct page *new, gfp_t gfp_mask)
540{
541 int error;
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700542
Sasha Levin309381fea2014-01-23 15:52:54 -0800543 VM_BUG_ON_PAGE(!PageLocked(old), old);
544 VM_BUG_ON_PAGE(!PageLocked(new), new);
545 VM_BUG_ON_PAGE(new->mapping, new);
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700546
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700547 error = radix_tree_preload(gfp_mask & ~__GFP_HIGHMEM);
548 if (!error) {
549 struct address_space *mapping = old->mapping;
550 void (*freepage)(struct page *);
Greg Thelenc4843a72015-05-22 17:13:16 -0400551 unsigned long flags;
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700552
553 pgoff_t offset = old->index;
554 freepage = mapping->a_ops->freepage;
555
556 page_cache_get(new);
557 new->mapping = mapping;
558 new->index = offset;
559
Johannes Weiner62cccb82016-03-15 14:57:22 -0700560 lock_page_memcg(old);
Greg Thelenc4843a72015-05-22 17:13:16 -0400561 spin_lock_irqsave(&mapping->tree_lock, flags);
Johannes Weiner62cccb82016-03-15 14:57:22 -0700562 __delete_from_page_cache(old, NULL);
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700563 error = radix_tree_insert(&mapping->page_tree, offset, new);
564 BUG_ON(error);
565 mapping->nrpages++;
Michal Hocko4165b9b42015-06-24 16:57:24 -0700566
567 /*
568 * hugetlb pages do not participate in page cache accounting.
569 */
570 if (!PageHuge(new))
571 __inc_zone_page_state(new, NR_FILE_PAGES);
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700572 if (PageSwapBacked(new))
573 __inc_zone_page_state(new, NR_SHMEM);
Greg Thelenc4843a72015-05-22 17:13:16 -0400574 spin_unlock_irqrestore(&mapping->tree_lock, flags);
Johannes Weiner62cccb82016-03-15 14:57:22 -0700575 unlock_page_memcg(old);
Johannes Weiner6a93ca82016-03-15 14:57:19 -0700576 mem_cgroup_migrate(old, new);
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700577 radix_tree_preload_end();
578 if (freepage)
579 freepage(old);
580 page_cache_release(old);
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700581 }
582
583 return error;
584}
585EXPORT_SYMBOL_GPL(replace_page_cache_page);
586
Johannes Weiner0cd61442014-04-03 14:47:46 -0700587static int page_cache_tree_insert(struct address_space *mapping,
Johannes Weinera5289102014-04-03 14:47:51 -0700588 struct page *page, void **shadowp)
Johannes Weiner0cd61442014-04-03 14:47:46 -0700589{
Johannes Weiner449dd692014-04-03 14:47:56 -0700590 struct radix_tree_node *node;
Johannes Weiner0cd61442014-04-03 14:47:46 -0700591 void **slot;
592 int error;
593
Johannes Weiner449dd692014-04-03 14:47:56 -0700594 error = __radix_tree_create(&mapping->page_tree, page->index,
595 &node, &slot);
596 if (error)
597 return error;
598 if (*slot) {
Johannes Weiner0cd61442014-04-03 14:47:46 -0700599 void *p;
600
601 p = radix_tree_deref_slot_protected(slot, &mapping->tree_lock);
602 if (!radix_tree_exceptional_entry(p))
603 return -EEXIST;
Ross Zwislerf9fe48b2016-01-22 15:10:40 -0800604
605 if (WARN_ON(dax_mapping(mapping)))
606 return -EINVAL;
607
Johannes Weinera5289102014-04-03 14:47:51 -0700608 if (shadowp)
609 *shadowp = p;
Ross Zwislerf9fe48b2016-01-22 15:10:40 -0800610 mapping->nrexceptional--;
Johannes Weiner449dd692014-04-03 14:47:56 -0700611 if (node)
612 workingset_node_shadows_dec(node);
Johannes Weiner0cd61442014-04-03 14:47:46 -0700613 }
Johannes Weiner449dd692014-04-03 14:47:56 -0700614 radix_tree_replace_slot(slot, page);
615 mapping->nrpages++;
616 if (node) {
617 workingset_node_pages_inc(node);
618 /*
619 * Don't track node that contains actual pages.
620 *
621 * Avoid acquiring the list_lru lock if already
622 * untracked. The list_empty() test is safe as
623 * node->private_list is protected by
624 * mapping->tree_lock.
625 */
626 if (!list_empty(&node->private_list))
627 list_lru_del(&workingset_shadow_nodes,
628 &node->private_list);
629 }
630 return 0;
Johannes Weiner0cd61442014-04-03 14:47:46 -0700631}
632
Johannes Weinera5289102014-04-03 14:47:51 -0700633static int __add_to_page_cache_locked(struct page *page,
634 struct address_space *mapping,
635 pgoff_t offset, gfp_t gfp_mask,
636 void **shadowp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637{
Johannes Weiner00501b52014-08-08 14:19:20 -0700638 int huge = PageHuge(page);
639 struct mem_cgroup *memcg;
Nick Piggine2867812008-07-25 19:45:30 -0700640 int error;
641
Sasha Levin309381fea2014-01-23 15:52:54 -0800642 VM_BUG_ON_PAGE(!PageLocked(page), page);
643 VM_BUG_ON_PAGE(PageSwapBacked(page), page);
Nick Piggine2867812008-07-25 19:45:30 -0700644
Johannes Weiner00501b52014-08-08 14:19:20 -0700645 if (!huge) {
646 error = mem_cgroup_try_charge(page, current->mm,
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -0800647 gfp_mask, &memcg, false);
Johannes Weiner00501b52014-08-08 14:19:20 -0700648 if (error)
649 return error;
650 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Jan Kara5e4c0d972013-09-11 14:26:05 -0700652 error = radix_tree_maybe_preload(gfp_mask & ~__GFP_HIGHMEM);
Kirill A. Shutemov66a0c8e2013-09-12 15:13:59 -0700653 if (error) {
Johannes Weiner00501b52014-08-08 14:19:20 -0700654 if (!huge)
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -0800655 mem_cgroup_cancel_charge(page, memcg, false);
Kirill A. Shutemov66a0c8e2013-09-12 15:13:59 -0700656 return error;
657 }
658
659 page_cache_get(page);
660 page->mapping = mapping;
661 page->index = offset;
662
663 spin_lock_irq(&mapping->tree_lock);
Johannes Weinera5289102014-04-03 14:47:51 -0700664 error = page_cache_tree_insert(mapping, page, shadowp);
Kirill A. Shutemov66a0c8e2013-09-12 15:13:59 -0700665 radix_tree_preload_end();
666 if (unlikely(error))
667 goto err_insert;
Michal Hocko4165b9b42015-06-24 16:57:24 -0700668
669 /* hugetlb pages do not participate in page cache accounting. */
670 if (!huge)
671 __inc_zone_page_state(page, NR_FILE_PAGES);
Kirill A. Shutemov66a0c8e2013-09-12 15:13:59 -0700672 spin_unlock_irq(&mapping->tree_lock);
Johannes Weiner00501b52014-08-08 14:19:20 -0700673 if (!huge)
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -0800674 mem_cgroup_commit_charge(page, memcg, false, false);
Kirill A. Shutemov66a0c8e2013-09-12 15:13:59 -0700675 trace_mm_filemap_add_to_page_cache(page);
676 return 0;
677err_insert:
678 page->mapping = NULL;
679 /* Leave page->index set: truncation relies upon it */
680 spin_unlock_irq(&mapping->tree_lock);
Johannes Weiner00501b52014-08-08 14:19:20 -0700681 if (!huge)
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -0800682 mem_cgroup_cancel_charge(page, memcg, false);
Kirill A. Shutemov66a0c8e2013-09-12 15:13:59 -0700683 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 return error;
685}
Johannes Weinera5289102014-04-03 14:47:51 -0700686
687/**
688 * add_to_page_cache_locked - add a locked page to the pagecache
689 * @page: page to add
690 * @mapping: the page's address_space
691 * @offset: page index
692 * @gfp_mask: page allocation mode
693 *
694 * This function is used to add a page to the pagecache. It must be locked.
695 * This function does not add the page to the LRU. The caller must do that.
696 */
697int add_to_page_cache_locked(struct page *page, struct address_space *mapping,
698 pgoff_t offset, gfp_t gfp_mask)
699{
700 return __add_to_page_cache_locked(page, mapping, offset,
701 gfp_mask, NULL);
702}
Nick Piggine2867812008-07-25 19:45:30 -0700703EXPORT_SYMBOL(add_to_page_cache_locked);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
705int add_to_page_cache_lru(struct page *page, struct address_space *mapping,
Al Viro6daa0e22005-10-21 03:18:50 -0400706 pgoff_t offset, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707{
Johannes Weinera5289102014-04-03 14:47:51 -0700708 void *shadow = NULL;
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700709 int ret;
710
Kirill A. Shutemov48c935a2016-01-15 16:51:24 -0800711 __SetPageLocked(page);
Johannes Weinera5289102014-04-03 14:47:51 -0700712 ret = __add_to_page_cache_locked(page, mapping, offset,
713 gfp_mask, &shadow);
714 if (unlikely(ret))
Kirill A. Shutemov48c935a2016-01-15 16:51:24 -0800715 __ClearPageLocked(page);
Johannes Weinera5289102014-04-03 14:47:51 -0700716 else {
717 /*
718 * The page might have been evicted from cache only
719 * recently, in which case it should be activated like
720 * any other repeatedly accessed page.
721 */
722 if (shadow && workingset_refault(shadow)) {
723 SetPageActive(page);
724 workingset_activation(page);
725 } else
726 ClearPageActive(page);
727 lru_cache_add(page);
728 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 return ret;
730}
Evgeniy Polyakov18bc0bb2009-02-09 17:02:42 +0300731EXPORT_SYMBOL_GPL(add_to_page_cache_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
Paul Jackson44110fe2006-03-24 03:16:04 -0800733#ifdef CONFIG_NUMA
Nick Piggin2ae88142006-10-28 10:38:23 -0700734struct page *__page_cache_alloc(gfp_t gfp)
Paul Jackson44110fe2006-03-24 03:16:04 -0800735{
Miao Xiec0ff7452010-05-24 14:32:08 -0700736 int n;
737 struct page *page;
738
Paul Jackson44110fe2006-03-24 03:16:04 -0800739 if (cpuset_do_page_mem_spread()) {
Mel Gormancc9a6c82012-03-21 16:34:11 -0700740 unsigned int cpuset_mems_cookie;
741 do {
Mel Gormand26914d2014-04-03 14:47:24 -0700742 cpuset_mems_cookie = read_mems_allowed_begin();
Mel Gormancc9a6c82012-03-21 16:34:11 -0700743 n = cpuset_mem_spread_node();
Vlastimil Babka96db8002015-09-08 15:03:50 -0700744 page = __alloc_pages_node(n, gfp, 0);
Mel Gormand26914d2014-04-03 14:47:24 -0700745 } while (!page && read_mems_allowed_retry(cpuset_mems_cookie));
Mel Gormancc9a6c82012-03-21 16:34:11 -0700746
Miao Xiec0ff7452010-05-24 14:32:08 -0700747 return page;
Paul Jackson44110fe2006-03-24 03:16:04 -0800748 }
Nick Piggin2ae88142006-10-28 10:38:23 -0700749 return alloc_pages(gfp, 0);
Paul Jackson44110fe2006-03-24 03:16:04 -0800750}
Nick Piggin2ae88142006-10-28 10:38:23 -0700751EXPORT_SYMBOL(__page_cache_alloc);
Paul Jackson44110fe2006-03-24 03:16:04 -0800752#endif
753
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754/*
755 * In order to wait for pages to become available there must be
756 * waitqueues associated with pages. By using a hash table of
757 * waitqueues where the bucket discipline is to maintain all
758 * waiters on the same queue and wake all when any of the pages
759 * become available, and for the woken contexts to check to be
760 * sure the appropriate page became available, this saves space
761 * at a cost of "thundering herd" phenomena during rare hash
762 * collisions.
763 */
NeilBrowna4796e372014-09-24 11:28:32 +1000764wait_queue_head_t *page_waitqueue(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765{
766 const struct zone *zone = page_zone(page);
767
768 return &zone->wait_table[hash_ptr(page, zone->wait_table_bits)];
769}
NeilBrowna4796e372014-09-24 11:28:32 +1000770EXPORT_SYMBOL(page_waitqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Harvey Harrison920c7a52008-02-04 22:29:26 -0800772void wait_on_page_bit(struct page *page, int bit_nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773{
774 DEFINE_WAIT_BIT(wait, &page->flags, bit_nr);
775
776 if (test_bit(bit_nr, &page->flags))
NeilBrown74316202014-07-07 15:16:04 +1000777 __wait_on_bit(page_waitqueue(page), &wait, bit_wait_io,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 TASK_UNINTERRUPTIBLE);
779}
780EXPORT_SYMBOL(wait_on_page_bit);
781
KOSAKI Motohirof62e00c2011-05-24 17:11:29 -0700782int wait_on_page_bit_killable(struct page *page, int bit_nr)
783{
784 DEFINE_WAIT_BIT(wait, &page->flags, bit_nr);
785
786 if (!test_bit(bit_nr, &page->flags))
787 return 0;
788
789 return __wait_on_bit(page_waitqueue(page), &wait,
NeilBrown74316202014-07-07 15:16:04 +1000790 bit_wait_io, TASK_KILLABLE);
KOSAKI Motohirof62e00c2011-05-24 17:11:29 -0700791}
792
NeilBrowncbbce822014-09-25 13:55:19 +1000793int wait_on_page_bit_killable_timeout(struct page *page,
794 int bit_nr, unsigned long timeout)
795{
796 DEFINE_WAIT_BIT(wait, &page->flags, bit_nr);
797
798 wait.key.timeout = jiffies + timeout;
799 if (!test_bit(bit_nr, &page->flags))
800 return 0;
801 return __wait_on_bit(page_waitqueue(page), &wait,
802 bit_wait_io_timeout, TASK_KILLABLE);
803}
804EXPORT_SYMBOL_GPL(wait_on_page_bit_killable_timeout);
805
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806/**
David Howells385e1ca5f2009-04-03 16:42:39 +0100807 * add_page_wait_queue - Add an arbitrary waiter to a page's wait queue
Randy Dunlap697f6192009-04-13 14:39:54 -0700808 * @page: Page defining the wait queue of interest
809 * @waiter: Waiter to add to the queue
David Howells385e1ca5f2009-04-03 16:42:39 +0100810 *
811 * Add an arbitrary @waiter to the wait queue for the nominated @page.
812 */
813void add_page_wait_queue(struct page *page, wait_queue_t *waiter)
814{
815 wait_queue_head_t *q = page_waitqueue(page);
816 unsigned long flags;
817
818 spin_lock_irqsave(&q->lock, flags);
819 __add_wait_queue(q, waiter);
820 spin_unlock_irqrestore(&q->lock, flags);
821}
822EXPORT_SYMBOL_GPL(add_page_wait_queue);
823
824/**
Randy Dunlap485bb992006-06-23 02:03:49 -0700825 * unlock_page - unlock a locked page
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 * @page: the page
827 *
828 * Unlocks the page and wakes up sleepers in ___wait_on_page_locked().
829 * Also wakes sleepers in wait_on_page_writeback() because the wakeup
Masanari Iidada3dae52014-09-09 01:27:23 +0900830 * mechanism between PageLocked pages and PageWriteback pages is shared.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 * But that's OK - sleepers in wait_on_page_writeback() just go back to sleep.
832 *
Nick Piggin8413ac92008-10-18 20:26:59 -0700833 * The mb is necessary to enforce ordering between the clear_bit and the read
834 * of the waitqueue (to avoid SMP races with a parallel wait_on_page_locked()).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 */
Harvey Harrison920c7a52008-02-04 22:29:26 -0800836void unlock_page(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837{
Kirill A. Shutemov48c935a2016-01-15 16:51:24 -0800838 page = compound_head(page);
Sasha Levin309381fea2014-01-23 15:52:54 -0800839 VM_BUG_ON_PAGE(!PageLocked(page), page);
Nick Piggin8413ac92008-10-18 20:26:59 -0700840 clear_bit_unlock(PG_locked, &page->flags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100841 smp_mb__after_atomic();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 wake_up_page(page, PG_locked);
843}
844EXPORT_SYMBOL(unlock_page);
845
Randy Dunlap485bb992006-06-23 02:03:49 -0700846/**
847 * end_page_writeback - end writeback against a page
848 * @page: the page
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 */
850void end_page_writeback(struct page *page)
851{
Mel Gorman888cf2d2014-06-04 16:10:34 -0700852 /*
853 * TestClearPageReclaim could be used here but it is an atomic
854 * operation and overkill in this particular case. Failing to
855 * shuffle a page marked for immediate reclaim is too mild to
856 * justify taking an atomic operation penalty at the end of
857 * ever page writeback.
858 */
859 if (PageReclaim(page)) {
860 ClearPageReclaim(page);
Miklos Szerediac6aadb2008-04-28 02:12:38 -0700861 rotate_reclaimable_page(page);
Mel Gorman888cf2d2014-06-04 16:10:34 -0700862 }
Miklos Szerediac6aadb2008-04-28 02:12:38 -0700863
864 if (!test_clear_page_writeback(page))
865 BUG();
866
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100867 smp_mb__after_atomic();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 wake_up_page(page, PG_writeback);
869}
870EXPORT_SYMBOL(end_page_writeback);
871
Matthew Wilcox57d99842014-06-04 16:07:45 -0700872/*
873 * After completing I/O on a page, call this routine to update the page
874 * flags appropriately
875 */
876void page_endio(struct page *page, int rw, int err)
877{
878 if (rw == READ) {
879 if (!err) {
880 SetPageUptodate(page);
881 } else {
882 ClearPageUptodate(page);
883 SetPageError(page);
884 }
885 unlock_page(page);
886 } else { /* rw == WRITE */
887 if (err) {
888 SetPageError(page);
889 if (page->mapping)
890 mapping_set_error(page->mapping, err);
891 }
892 end_page_writeback(page);
893 }
894}
895EXPORT_SYMBOL_GPL(page_endio);
896
Randy Dunlap485bb992006-06-23 02:03:49 -0700897/**
898 * __lock_page - get a lock on the page, assuming we need to sleep to get it
899 * @page: the page to lock
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 */
Harvey Harrison920c7a52008-02-04 22:29:26 -0800901void __lock_page(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902{
Kirill A. Shutemov48c935a2016-01-15 16:51:24 -0800903 struct page *page_head = compound_head(page);
904 DEFINE_WAIT_BIT(wait, &page_head->flags, PG_locked);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
Kirill A. Shutemov48c935a2016-01-15 16:51:24 -0800906 __wait_on_bit_lock(page_waitqueue(page_head), &wait, bit_wait_io,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 TASK_UNINTERRUPTIBLE);
908}
909EXPORT_SYMBOL(__lock_page);
910
Harvey Harrisonb5606c22008-02-13 15:03:16 -0800911int __lock_page_killable(struct page *page)
Matthew Wilcox2687a352007-12-06 11:18:49 -0500912{
Kirill A. Shutemov48c935a2016-01-15 16:51:24 -0800913 struct page *page_head = compound_head(page);
914 DEFINE_WAIT_BIT(wait, &page_head->flags, PG_locked);
Matthew Wilcox2687a352007-12-06 11:18:49 -0500915
Kirill A. Shutemov48c935a2016-01-15 16:51:24 -0800916 return __wait_on_bit_lock(page_waitqueue(page_head), &wait,
NeilBrown74316202014-07-07 15:16:04 +1000917 bit_wait_io, TASK_KILLABLE);
Matthew Wilcox2687a352007-12-06 11:18:49 -0500918}
Evgeniy Polyakov18bc0bb2009-02-09 17:02:42 +0300919EXPORT_SYMBOL_GPL(__lock_page_killable);
Matthew Wilcox2687a352007-12-06 11:18:49 -0500920
Paul Cassella9a95f3c2014-08-06 16:07:24 -0700921/*
922 * Return values:
923 * 1 - page is locked; mmap_sem is still held.
924 * 0 - page is not locked.
925 * mmap_sem has been released (up_read()), unless flags had both
926 * FAULT_FLAG_ALLOW_RETRY and FAULT_FLAG_RETRY_NOWAIT set, in
927 * which case mmap_sem is still held.
928 *
929 * If neither ALLOW_RETRY nor KILLABLE are set, will always return 1
930 * with the page locked and the mmap_sem unperturbed.
931 */
Michel Lespinassed065bd82010-10-26 14:21:57 -0700932int __lock_page_or_retry(struct page *page, struct mm_struct *mm,
933 unsigned int flags)
934{
KOSAKI Motohiro37b23e02011-05-24 17:11:30 -0700935 if (flags & FAULT_FLAG_ALLOW_RETRY) {
936 /*
937 * CAUTION! In this case, mmap_sem is not released
938 * even though return 0.
939 */
940 if (flags & FAULT_FLAG_RETRY_NOWAIT)
941 return 0;
942
943 up_read(&mm->mmap_sem);
944 if (flags & FAULT_FLAG_KILLABLE)
945 wait_on_page_locked_killable(page);
946 else
Gleb Natapov318b2752011-03-22 16:30:51 -0700947 wait_on_page_locked(page);
Michel Lespinassed065bd82010-10-26 14:21:57 -0700948 return 0;
KOSAKI Motohiro37b23e02011-05-24 17:11:30 -0700949 } else {
950 if (flags & FAULT_FLAG_KILLABLE) {
951 int ret;
952
953 ret = __lock_page_killable(page);
954 if (ret) {
955 up_read(&mm->mmap_sem);
956 return 0;
957 }
958 } else
959 __lock_page(page);
960 return 1;
Michel Lespinassed065bd82010-10-26 14:21:57 -0700961 }
962}
963
Randy Dunlap485bb992006-06-23 02:03:49 -0700964/**
Johannes Weinere7b563b2014-04-03 14:47:44 -0700965 * page_cache_next_hole - find the next hole (not-present entry)
966 * @mapping: mapping
967 * @index: index
968 * @max_scan: maximum range to search
969 *
970 * Search the set [index, min(index+max_scan-1, MAX_INDEX)] for the
971 * lowest indexed hole.
972 *
973 * Returns: the index of the hole if found, otherwise returns an index
974 * outside of the set specified (in which case 'return - index >=
975 * max_scan' will be true). In rare cases of index wrap-around, 0 will
976 * be returned.
977 *
978 * page_cache_next_hole may be called under rcu_read_lock. However,
979 * like radix_tree_gang_lookup, this will not atomically search a
980 * snapshot of the tree at a single point in time. For example, if a
981 * hole is created at index 5, then subsequently a hole is created at
982 * index 10, page_cache_next_hole covering both indexes may return 10
983 * if called under rcu_read_lock.
984 */
985pgoff_t page_cache_next_hole(struct address_space *mapping,
986 pgoff_t index, unsigned long max_scan)
987{
988 unsigned long i;
989
990 for (i = 0; i < max_scan; i++) {
Johannes Weiner0cd61442014-04-03 14:47:46 -0700991 struct page *page;
992
993 page = radix_tree_lookup(&mapping->page_tree, index);
994 if (!page || radix_tree_exceptional_entry(page))
Johannes Weinere7b563b2014-04-03 14:47:44 -0700995 break;
996 index++;
997 if (index == 0)
998 break;
999 }
1000
1001 return index;
1002}
1003EXPORT_SYMBOL(page_cache_next_hole);
1004
1005/**
1006 * page_cache_prev_hole - find the prev hole (not-present entry)
1007 * @mapping: mapping
1008 * @index: index
1009 * @max_scan: maximum range to search
1010 *
1011 * Search backwards in the range [max(index-max_scan+1, 0), index] for
1012 * the first hole.
1013 *
1014 * Returns: the index of the hole if found, otherwise returns an index
1015 * outside of the set specified (in which case 'index - return >=
1016 * max_scan' will be true). In rare cases of wrap-around, ULONG_MAX
1017 * will be returned.
1018 *
1019 * page_cache_prev_hole may be called under rcu_read_lock. However,
1020 * like radix_tree_gang_lookup, this will not atomically search a
1021 * snapshot of the tree at a single point in time. For example, if a
1022 * hole is created at index 10, then subsequently a hole is created at
1023 * index 5, page_cache_prev_hole covering both indexes may return 5 if
1024 * called under rcu_read_lock.
1025 */
1026pgoff_t page_cache_prev_hole(struct address_space *mapping,
1027 pgoff_t index, unsigned long max_scan)
1028{
1029 unsigned long i;
1030
1031 for (i = 0; i < max_scan; i++) {
Johannes Weiner0cd61442014-04-03 14:47:46 -07001032 struct page *page;
1033
1034 page = radix_tree_lookup(&mapping->page_tree, index);
1035 if (!page || radix_tree_exceptional_entry(page))
Johannes Weinere7b563b2014-04-03 14:47:44 -07001036 break;
1037 index--;
1038 if (index == ULONG_MAX)
1039 break;
1040 }
1041
1042 return index;
1043}
1044EXPORT_SYMBOL(page_cache_prev_hole);
1045
1046/**
Johannes Weiner0cd61442014-04-03 14:47:46 -07001047 * find_get_entry - find and get a page cache entry
Randy Dunlap485bb992006-06-23 02:03:49 -07001048 * @mapping: the address_space to search
Johannes Weiner0cd61442014-04-03 14:47:46 -07001049 * @offset: the page cache index
Randy Dunlap485bb992006-06-23 02:03:49 -07001050 *
Johannes Weiner0cd61442014-04-03 14:47:46 -07001051 * Looks up the page cache slot at @mapping & @offset. If there is a
1052 * page cache page, it is returned with an increased refcount.
1053 *
Johannes Weiner139b6a62014-05-06 12:50:05 -07001054 * If the slot holds a shadow entry of a previously evicted page, or a
1055 * swap entry from shmem/tmpfs, it is returned.
Johannes Weiner0cd61442014-04-03 14:47:46 -07001056 *
1057 * Otherwise, %NULL is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 */
Johannes Weiner0cd61442014-04-03 14:47:46 -07001059struct page *find_get_entry(struct address_space *mapping, pgoff_t offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060{
Nick Piggina60637c2008-07-25 19:45:31 -07001061 void **pagep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 struct page *page;
1063
Nick Piggina60637c2008-07-25 19:45:31 -07001064 rcu_read_lock();
1065repeat:
1066 page = NULL;
1067 pagep = radix_tree_lookup_slot(&mapping->page_tree, offset);
1068 if (pagep) {
1069 page = radix_tree_deref_slot(pagep);
Nick Piggin27d20fd2010-11-11 14:05:19 -08001070 if (unlikely(!page))
1071 goto out;
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001072 if (radix_tree_exception(page)) {
Hugh Dickins8079b1c2011-08-03 16:21:28 -07001073 if (radix_tree_deref_retry(page))
1074 goto repeat;
1075 /*
Johannes Weiner139b6a62014-05-06 12:50:05 -07001076 * A shadow entry of a recently evicted page,
1077 * or a swap entry from shmem/tmpfs. Return
1078 * it without attempting to raise page count.
Hugh Dickins8079b1c2011-08-03 16:21:28 -07001079 */
1080 goto out;
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001081 }
Nick Piggina60637c2008-07-25 19:45:31 -07001082 if (!page_cache_get_speculative(page))
1083 goto repeat;
1084
1085 /*
1086 * Has the page moved?
1087 * This is part of the lockless pagecache protocol. See
1088 * include/linux/pagemap.h for details.
1089 */
1090 if (unlikely(page != *pagep)) {
1091 page_cache_release(page);
1092 goto repeat;
1093 }
1094 }
Nick Piggin27d20fd2010-11-11 14:05:19 -08001095out:
Nick Piggina60637c2008-07-25 19:45:31 -07001096 rcu_read_unlock();
1097
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 return page;
1099}
Johannes Weiner0cd61442014-04-03 14:47:46 -07001100EXPORT_SYMBOL(find_get_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101
Randy Dunlap485bb992006-06-23 02:03:49 -07001102/**
Johannes Weiner0cd61442014-04-03 14:47:46 -07001103 * find_lock_entry - locate, pin and lock a page cache entry
1104 * @mapping: the address_space to search
1105 * @offset: the page cache index
1106 *
1107 * Looks up the page cache slot at @mapping & @offset. If there is a
1108 * page cache page, it is returned locked and with an increased
1109 * refcount.
1110 *
Johannes Weiner139b6a62014-05-06 12:50:05 -07001111 * If the slot holds a shadow entry of a previously evicted page, or a
1112 * swap entry from shmem/tmpfs, it is returned.
Johannes Weiner0cd61442014-04-03 14:47:46 -07001113 *
1114 * Otherwise, %NULL is returned.
1115 *
1116 * find_lock_entry() may sleep.
1117 */
1118struct page *find_lock_entry(struct address_space *mapping, pgoff_t offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119{
1120 struct page *page;
1121
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122repeat:
Johannes Weiner0cd61442014-04-03 14:47:46 -07001123 page = find_get_entry(mapping, offset);
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001124 if (page && !radix_tree_exception(page)) {
Nick Piggina60637c2008-07-25 19:45:31 -07001125 lock_page(page);
1126 /* Has the page been truncated? */
1127 if (unlikely(page->mapping != mapping)) {
1128 unlock_page(page);
1129 page_cache_release(page);
1130 goto repeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 }
Sasha Levin309381fea2014-01-23 15:52:54 -08001132 VM_BUG_ON_PAGE(page->index != offset, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 return page;
1135}
Johannes Weiner0cd61442014-04-03 14:47:46 -07001136EXPORT_SYMBOL(find_lock_entry);
1137
1138/**
Mel Gorman2457aec2014-06-04 16:10:31 -07001139 * pagecache_get_page - find and get a page reference
Johannes Weiner0cd61442014-04-03 14:47:46 -07001140 * @mapping: the address_space to search
1141 * @offset: the page index
Mel Gorman2457aec2014-06-04 16:10:31 -07001142 * @fgp_flags: PCG flags
Michal Hocko45f87de2014-12-29 20:30:35 +01001143 * @gfp_mask: gfp mask to use for the page cache data page allocation
Johannes Weiner0cd61442014-04-03 14:47:46 -07001144 *
Mel Gorman2457aec2014-06-04 16:10:31 -07001145 * Looks up the page cache slot at @mapping & @offset.
Johannes Weiner0cd61442014-04-03 14:47:46 -07001146 *
Randy Dunlap75325182014-07-30 16:08:37 -07001147 * PCG flags modify how the page is returned.
Johannes Weiner0cd61442014-04-03 14:47:46 -07001148 *
Mel Gorman2457aec2014-06-04 16:10:31 -07001149 * FGP_ACCESSED: the page will be marked accessed
1150 * FGP_LOCK: Page is return locked
1151 * FGP_CREAT: If page is not present then a new page is allocated using
Michal Hocko45f87de2014-12-29 20:30:35 +01001152 * @gfp_mask and added to the page cache and the VM's LRU
1153 * list. The page is returned locked and with an increased
1154 * refcount. Otherwise, %NULL is returned.
Mel Gorman2457aec2014-06-04 16:10:31 -07001155 *
1156 * If FGP_LOCK or FGP_CREAT are specified then the function may sleep even
1157 * if the GFP flags specified for FGP_CREAT are atomic.
1158 *
1159 * If there is a page cache page, it is returned with an increased refcount.
Johannes Weiner0cd61442014-04-03 14:47:46 -07001160 */
Mel Gorman2457aec2014-06-04 16:10:31 -07001161struct page *pagecache_get_page(struct address_space *mapping, pgoff_t offset,
Michal Hocko45f87de2014-12-29 20:30:35 +01001162 int fgp_flags, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163{
Nick Piggineb2be182007-10-16 01:24:57 -07001164 struct page *page;
Mel Gorman2457aec2014-06-04 16:10:31 -07001165
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166repeat:
Mel Gorman2457aec2014-06-04 16:10:31 -07001167 page = find_get_entry(mapping, offset);
1168 if (radix_tree_exceptional_entry(page))
1169 page = NULL;
1170 if (!page)
1171 goto no_page;
1172
1173 if (fgp_flags & FGP_LOCK) {
1174 if (fgp_flags & FGP_NOWAIT) {
1175 if (!trylock_page(page)) {
1176 page_cache_release(page);
1177 return NULL;
1178 }
1179 } else {
1180 lock_page(page);
1181 }
1182
1183 /* Has the page been truncated? */
1184 if (unlikely(page->mapping != mapping)) {
1185 unlock_page(page);
1186 page_cache_release(page);
1187 goto repeat;
1188 }
1189 VM_BUG_ON_PAGE(page->index != offset, page);
1190 }
1191
1192 if (page && (fgp_flags & FGP_ACCESSED))
1193 mark_page_accessed(page);
1194
1195no_page:
1196 if (!page && (fgp_flags & FGP_CREAT)) {
1197 int err;
1198 if ((fgp_flags & FGP_WRITE) && mapping_cap_account_dirty(mapping))
Michal Hocko45f87de2014-12-29 20:30:35 +01001199 gfp_mask |= __GFP_WRITE;
1200 if (fgp_flags & FGP_NOFS)
1201 gfp_mask &= ~__GFP_FS;
Mel Gorman2457aec2014-06-04 16:10:31 -07001202
Michal Hocko45f87de2014-12-29 20:30:35 +01001203 page = __page_cache_alloc(gfp_mask);
Nick Piggineb2be182007-10-16 01:24:57 -07001204 if (!page)
1205 return NULL;
Mel Gorman2457aec2014-06-04 16:10:31 -07001206
1207 if (WARN_ON_ONCE(!(fgp_flags & FGP_LOCK)))
1208 fgp_flags |= FGP_LOCK;
1209
Hugh Dickinseb39d612014-08-06 16:06:43 -07001210 /* Init accessed so avoid atomic mark_page_accessed later */
Mel Gorman2457aec2014-06-04 16:10:31 -07001211 if (fgp_flags & FGP_ACCESSED)
Hugh Dickinseb39d612014-08-06 16:06:43 -07001212 __SetPageReferenced(page);
Mel Gorman2457aec2014-06-04 16:10:31 -07001213
Michal Hocko45f87de2014-12-29 20:30:35 +01001214 err = add_to_page_cache_lru(page, mapping, offset,
1215 gfp_mask & GFP_RECLAIM_MASK);
Nick Piggineb2be182007-10-16 01:24:57 -07001216 if (unlikely(err)) {
1217 page_cache_release(page);
1218 page = NULL;
1219 if (err == -EEXIST)
1220 goto repeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 }
Mel Gorman2457aec2014-06-04 16:10:31 -07001223
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 return page;
1225}
Mel Gorman2457aec2014-06-04 16:10:31 -07001226EXPORT_SYMBOL(pagecache_get_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
1228/**
Johannes Weiner0cd61442014-04-03 14:47:46 -07001229 * find_get_entries - gang pagecache lookup
1230 * @mapping: The address_space to search
1231 * @start: The starting page cache index
1232 * @nr_entries: The maximum number of entries
1233 * @entries: Where the resulting entries are placed
1234 * @indices: The cache indices corresponding to the entries in @entries
1235 *
1236 * find_get_entries() will search for and return a group of up to
1237 * @nr_entries entries in the mapping. The entries are placed at
1238 * @entries. find_get_entries() takes a reference against any actual
1239 * pages it returns.
1240 *
1241 * The search returns a group of mapping-contiguous page cache entries
1242 * with ascending indexes. There may be holes in the indices due to
1243 * not-present pages.
1244 *
Johannes Weiner139b6a62014-05-06 12:50:05 -07001245 * Any shadow entries of evicted pages, or swap entries from
1246 * shmem/tmpfs, are included in the returned array.
Johannes Weiner0cd61442014-04-03 14:47:46 -07001247 *
1248 * find_get_entries() returns the number of pages and shadow entries
1249 * which were found.
1250 */
1251unsigned find_get_entries(struct address_space *mapping,
1252 pgoff_t start, unsigned int nr_entries,
1253 struct page **entries, pgoff_t *indices)
1254{
1255 void **slot;
1256 unsigned int ret = 0;
1257 struct radix_tree_iter iter;
1258
1259 if (!nr_entries)
1260 return 0;
1261
1262 rcu_read_lock();
1263restart:
1264 radix_tree_for_each_slot(slot, &mapping->page_tree, &iter, start) {
1265 struct page *page;
1266repeat:
1267 page = radix_tree_deref_slot(slot);
1268 if (unlikely(!page))
1269 continue;
1270 if (radix_tree_exception(page)) {
1271 if (radix_tree_deref_retry(page))
1272 goto restart;
1273 /*
Ross Zwislerf9fe48b2016-01-22 15:10:40 -08001274 * A shadow entry of a recently evicted page, a swap
1275 * entry from shmem/tmpfs or a DAX entry. Return it
1276 * without attempting to raise page count.
Johannes Weiner0cd61442014-04-03 14:47:46 -07001277 */
1278 goto export;
1279 }
1280 if (!page_cache_get_speculative(page))
1281 goto repeat;
1282
1283 /* Has the page moved? */
1284 if (unlikely(page != *slot)) {
1285 page_cache_release(page);
1286 goto repeat;
1287 }
1288export:
1289 indices[ret] = iter.index;
1290 entries[ret] = page;
1291 if (++ret == nr_entries)
1292 break;
1293 }
1294 rcu_read_unlock();
1295 return ret;
1296}
1297
1298/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 * find_get_pages - gang pagecache lookup
1300 * @mapping: The address_space to search
1301 * @start: The starting page index
1302 * @nr_pages: The maximum number of pages
1303 * @pages: Where the resulting pages are placed
1304 *
1305 * find_get_pages() will search for and return a group of up to
1306 * @nr_pages pages in the mapping. The pages are placed at @pages.
1307 * find_get_pages() takes a reference against the returned pages.
1308 *
1309 * The search returns a group of mapping-contiguous pages with ascending
1310 * indexes. There may be holes in the indices due to not-present pages.
1311 *
1312 * find_get_pages() returns the number of pages which were found.
1313 */
1314unsigned find_get_pages(struct address_space *mapping, pgoff_t start,
1315 unsigned int nr_pages, struct page **pages)
1316{
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001317 struct radix_tree_iter iter;
1318 void **slot;
1319 unsigned ret = 0;
1320
1321 if (unlikely(!nr_pages))
1322 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
Nick Piggina60637c2008-07-25 19:45:31 -07001324 rcu_read_lock();
1325restart:
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001326 radix_tree_for_each_slot(slot, &mapping->page_tree, &iter, start) {
Nick Piggina60637c2008-07-25 19:45:31 -07001327 struct page *page;
1328repeat:
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001329 page = radix_tree_deref_slot(slot);
Nick Piggina60637c2008-07-25 19:45:31 -07001330 if (unlikely(!page))
1331 continue;
Hugh Dickins9d8aa4e2011-03-22 16:33:06 -07001332
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001333 if (radix_tree_exception(page)) {
Hugh Dickins8079b1c2011-08-03 16:21:28 -07001334 if (radix_tree_deref_retry(page)) {
1335 /*
1336 * Transient condition which can only trigger
1337 * when entry at index 0 moves out of or back
1338 * to root: none yet gotten, safe to restart.
1339 */
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001340 WARN_ON(iter.index);
Hugh Dickins8079b1c2011-08-03 16:21:28 -07001341 goto restart;
1342 }
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001343 /*
Johannes Weiner139b6a62014-05-06 12:50:05 -07001344 * A shadow entry of a recently evicted page,
1345 * or a swap entry from shmem/tmpfs. Skip
1346 * over it.
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001347 */
Hugh Dickins8079b1c2011-08-03 16:21:28 -07001348 continue;
Nick Piggin27d20fd2010-11-11 14:05:19 -08001349 }
Nick Piggina60637c2008-07-25 19:45:31 -07001350
1351 if (!page_cache_get_speculative(page))
1352 goto repeat;
1353
1354 /* Has the page moved? */
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001355 if (unlikely(page != *slot)) {
Nick Piggina60637c2008-07-25 19:45:31 -07001356 page_cache_release(page);
1357 goto repeat;
1358 }
1359
1360 pages[ret] = page;
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001361 if (++ret == nr_pages)
1362 break;
Nick Piggina60637c2008-07-25 19:45:31 -07001363 }
Hugh Dickins5b280c02011-03-22 16:33:07 -07001364
Nick Piggina60637c2008-07-25 19:45:31 -07001365 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 return ret;
1367}
1368
Jens Axboeebf43502006-04-27 08:46:01 +02001369/**
1370 * find_get_pages_contig - gang contiguous pagecache lookup
1371 * @mapping: The address_space to search
1372 * @index: The starting page index
1373 * @nr_pages: The maximum number of pages
1374 * @pages: Where the resulting pages are placed
1375 *
1376 * find_get_pages_contig() works exactly like find_get_pages(), except
1377 * that the returned number of pages are guaranteed to be contiguous.
1378 *
1379 * find_get_pages_contig() returns the number of pages which were found.
1380 */
1381unsigned find_get_pages_contig(struct address_space *mapping, pgoff_t index,
1382 unsigned int nr_pages, struct page **pages)
1383{
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001384 struct radix_tree_iter iter;
1385 void **slot;
1386 unsigned int ret = 0;
1387
1388 if (unlikely(!nr_pages))
1389 return 0;
Jens Axboeebf43502006-04-27 08:46:01 +02001390
Nick Piggina60637c2008-07-25 19:45:31 -07001391 rcu_read_lock();
1392restart:
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001393 radix_tree_for_each_contig(slot, &mapping->page_tree, &iter, index) {
Nick Piggina60637c2008-07-25 19:45:31 -07001394 struct page *page;
1395repeat:
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001396 page = radix_tree_deref_slot(slot);
1397 /* The hole, there no reason to continue */
Nick Piggina60637c2008-07-25 19:45:31 -07001398 if (unlikely(!page))
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001399 break;
Hugh Dickins9d8aa4e2011-03-22 16:33:06 -07001400
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001401 if (radix_tree_exception(page)) {
Hugh Dickins8079b1c2011-08-03 16:21:28 -07001402 if (radix_tree_deref_retry(page)) {
1403 /*
1404 * Transient condition which can only trigger
1405 * when entry at index 0 moves out of or back
1406 * to root: none yet gotten, safe to restart.
1407 */
1408 goto restart;
1409 }
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001410 /*
Johannes Weiner139b6a62014-05-06 12:50:05 -07001411 * A shadow entry of a recently evicted page,
1412 * or a swap entry from shmem/tmpfs. Stop
1413 * looking for contiguous pages.
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001414 */
Hugh Dickins8079b1c2011-08-03 16:21:28 -07001415 break;
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001416 }
Nick Piggina60637c2008-07-25 19:45:31 -07001417
Nick Piggina60637c2008-07-25 19:45:31 -07001418 if (!page_cache_get_speculative(page))
1419 goto repeat;
1420
1421 /* Has the page moved? */
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001422 if (unlikely(page != *slot)) {
Nick Piggina60637c2008-07-25 19:45:31 -07001423 page_cache_release(page);
1424 goto repeat;
1425 }
1426
Nick Piggin9cbb4cb2011-01-13 15:45:51 -08001427 /*
1428 * must check mapping and index after taking the ref.
1429 * otherwise we can get both false positives and false
1430 * negatives, which is just confusing to the caller.
1431 */
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001432 if (page->mapping == NULL || page->index != iter.index) {
Nick Piggin9cbb4cb2011-01-13 15:45:51 -08001433 page_cache_release(page);
1434 break;
1435 }
1436
Nick Piggina60637c2008-07-25 19:45:31 -07001437 pages[ret] = page;
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001438 if (++ret == nr_pages)
1439 break;
Jens Axboeebf43502006-04-27 08:46:01 +02001440 }
Nick Piggina60637c2008-07-25 19:45:31 -07001441 rcu_read_unlock();
1442 return ret;
Jens Axboeebf43502006-04-27 08:46:01 +02001443}
David Howellsef71c152007-05-09 02:33:44 -07001444EXPORT_SYMBOL(find_get_pages_contig);
Jens Axboeebf43502006-04-27 08:46:01 +02001445
Randy Dunlap485bb992006-06-23 02:03:49 -07001446/**
1447 * find_get_pages_tag - find and return pages that match @tag
1448 * @mapping: the address_space to search
1449 * @index: the starting page index
1450 * @tag: the tag index
1451 * @nr_pages: the maximum number of pages
1452 * @pages: where the resulting pages are placed
1453 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 * Like find_get_pages, except we only return pages which are tagged with
Randy Dunlap485bb992006-06-23 02:03:49 -07001455 * @tag. We update @index to index the next page for the traversal.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 */
1457unsigned find_get_pages_tag(struct address_space *mapping, pgoff_t *index,
1458 int tag, unsigned int nr_pages, struct page **pages)
1459{
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001460 struct radix_tree_iter iter;
1461 void **slot;
1462 unsigned ret = 0;
1463
1464 if (unlikely(!nr_pages))
1465 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466
Nick Piggina60637c2008-07-25 19:45:31 -07001467 rcu_read_lock();
1468restart:
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001469 radix_tree_for_each_tagged(slot, &mapping->page_tree,
1470 &iter, *index, tag) {
Nick Piggina60637c2008-07-25 19:45:31 -07001471 struct page *page;
1472repeat:
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001473 page = radix_tree_deref_slot(slot);
Nick Piggina60637c2008-07-25 19:45:31 -07001474 if (unlikely(!page))
1475 continue;
Hugh Dickins9d8aa4e2011-03-22 16:33:06 -07001476
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001477 if (radix_tree_exception(page)) {
Hugh Dickins8079b1c2011-08-03 16:21:28 -07001478 if (radix_tree_deref_retry(page)) {
1479 /*
1480 * Transient condition which can only trigger
1481 * when entry at index 0 moves out of or back
1482 * to root: none yet gotten, safe to restart.
1483 */
1484 goto restart;
1485 }
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001486 /*
Johannes Weiner139b6a62014-05-06 12:50:05 -07001487 * A shadow entry of a recently evicted page.
1488 *
1489 * Those entries should never be tagged, but
1490 * this tree walk is lockless and the tags are
1491 * looked up in bulk, one radix tree node at a
1492 * time, so there is a sizable window for page
1493 * reclaim to evict a page we saw tagged.
1494 *
1495 * Skip over it.
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001496 */
Johannes Weiner139b6a62014-05-06 12:50:05 -07001497 continue;
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001498 }
Nick Piggina60637c2008-07-25 19:45:31 -07001499
1500 if (!page_cache_get_speculative(page))
1501 goto repeat;
1502
1503 /* Has the page moved? */
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001504 if (unlikely(page != *slot)) {
Nick Piggina60637c2008-07-25 19:45:31 -07001505 page_cache_release(page);
1506 goto repeat;
1507 }
1508
1509 pages[ret] = page;
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001510 if (++ret == nr_pages)
1511 break;
Nick Piggina60637c2008-07-25 19:45:31 -07001512 }
Hugh Dickins5b280c02011-03-22 16:33:07 -07001513
Nick Piggina60637c2008-07-25 19:45:31 -07001514 rcu_read_unlock();
1515
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 if (ret)
1517 *index = pages[ret - 1]->index + 1;
Nick Piggina60637c2008-07-25 19:45:31 -07001518
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 return ret;
1520}
David Howellsef71c152007-05-09 02:33:44 -07001521EXPORT_SYMBOL(find_get_pages_tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522
Ross Zwisler7e7f7742016-01-22 15:10:44 -08001523/**
1524 * find_get_entries_tag - find and return entries that match @tag
1525 * @mapping: the address_space to search
1526 * @start: the starting page cache index
1527 * @tag: the tag index
1528 * @nr_entries: the maximum number of entries
1529 * @entries: where the resulting entries are placed
1530 * @indices: the cache indices corresponding to the entries in @entries
1531 *
1532 * Like find_get_entries, except we only return entries which are tagged with
1533 * @tag.
1534 */
1535unsigned find_get_entries_tag(struct address_space *mapping, pgoff_t start,
1536 int tag, unsigned int nr_entries,
1537 struct page **entries, pgoff_t *indices)
1538{
1539 void **slot;
1540 unsigned int ret = 0;
1541 struct radix_tree_iter iter;
1542
1543 if (!nr_entries)
1544 return 0;
1545
1546 rcu_read_lock();
1547restart:
1548 radix_tree_for_each_tagged(slot, &mapping->page_tree,
1549 &iter, start, tag) {
1550 struct page *page;
1551repeat:
1552 page = radix_tree_deref_slot(slot);
1553 if (unlikely(!page))
1554 continue;
1555 if (radix_tree_exception(page)) {
1556 if (radix_tree_deref_retry(page)) {
1557 /*
1558 * Transient condition which can only trigger
1559 * when entry at index 0 moves out of or back
1560 * to root: none yet gotten, safe to restart.
1561 */
1562 goto restart;
1563 }
1564
1565 /*
1566 * A shadow entry of a recently evicted page, a swap
1567 * entry from shmem/tmpfs or a DAX entry. Return it
1568 * without attempting to raise page count.
1569 */
1570 goto export;
1571 }
1572 if (!page_cache_get_speculative(page))
1573 goto repeat;
1574
1575 /* Has the page moved? */
1576 if (unlikely(page != *slot)) {
1577 page_cache_release(page);
1578 goto repeat;
1579 }
1580export:
1581 indices[ret] = iter.index;
1582 entries[ret] = page;
1583 if (++ret == nr_entries)
1584 break;
1585 }
1586 rcu_read_unlock();
1587 return ret;
1588}
1589EXPORT_SYMBOL(find_get_entries_tag);
1590
Wu Fengguang76d42bd2006-06-25 05:48:43 -07001591/*
1592 * CD/DVDs are error prone. When a medium error occurs, the driver may fail
1593 * a _large_ part of the i/o request. Imagine the worst scenario:
1594 *
1595 * ---R__________________________________________B__________
1596 * ^ reading here ^ bad block(assume 4k)
1597 *
1598 * read(R) => miss => readahead(R...B) => media error => frustrating retries
1599 * => failing the whole request => read(R) => read(R+1) =>
1600 * readahead(R+1...B+1) => bang => read(R+2) => read(R+3) =>
1601 * readahead(R+3...B+2) => bang => read(R+3) => read(R+4) =>
1602 * readahead(R+4...B+3) => bang => read(R+4) => read(R+5) => ......
1603 *
1604 * It is going insane. Fix it by quickly scaling down the readahead size.
1605 */
1606static void shrink_readahead_size_eio(struct file *filp,
1607 struct file_ra_state *ra)
1608{
Wu Fengguang76d42bd2006-06-25 05:48:43 -07001609 ra->ra_pages /= 4;
Wu Fengguang76d42bd2006-06-25 05:48:43 -07001610}
1611
Randy Dunlap485bb992006-06-23 02:03:49 -07001612/**
Christoph Hellwig36e78912008-02-08 04:21:24 -08001613 * do_generic_file_read - generic file read routine
Randy Dunlap485bb992006-06-23 02:03:49 -07001614 * @filp: the file to read
1615 * @ppos: current file position
Al Viro6e58e792014-02-03 17:07:03 -05001616 * @iter: data destination
1617 * @written: already copied
Randy Dunlap485bb992006-06-23 02:03:49 -07001618 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 * This is a generic file read routine, and uses the
Randy Dunlap485bb992006-06-23 02:03:49 -07001620 * mapping->a_ops->readpage() function for the actual low-level stuff.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 *
1622 * This is really ugly. But the goto's actually try to clarify some
1623 * of the logic when it comes to error handling etc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 */
Al Viro6e58e792014-02-03 17:07:03 -05001625static ssize_t do_generic_file_read(struct file *filp, loff_t *ppos,
1626 struct iov_iter *iter, ssize_t written)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627{
Christoph Hellwig36e78912008-02-08 04:21:24 -08001628 struct address_space *mapping = filp->f_mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 struct inode *inode = mapping->host;
Christoph Hellwig36e78912008-02-08 04:21:24 -08001630 struct file_ra_state *ra = &filp->f_ra;
Fengguang Wu57f6b962007-10-16 01:24:37 -07001631 pgoff_t index;
1632 pgoff_t last_index;
1633 pgoff_t prev_index;
1634 unsigned long offset; /* offset into pagecache page */
Jan Karaec0f1632007-05-06 14:49:25 -07001635 unsigned int prev_offset;
Al Viro6e58e792014-02-03 17:07:03 -05001636 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 index = *ppos >> PAGE_CACHE_SHIFT;
Fengguang Wu7ff81072007-10-16 01:24:35 -07001639 prev_index = ra->prev_pos >> PAGE_CACHE_SHIFT;
1640 prev_offset = ra->prev_pos & (PAGE_CACHE_SIZE-1);
Al Viro6e58e792014-02-03 17:07:03 -05001641 last_index = (*ppos + iter->count + PAGE_CACHE_SIZE-1) >> PAGE_CACHE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 offset = *ppos & ~PAGE_CACHE_MASK;
1643
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 for (;;) {
1645 struct page *page;
Fengguang Wu57f6b962007-10-16 01:24:37 -07001646 pgoff_t end_index;
NeilBrowna32ea1e2007-07-17 04:03:04 -07001647 loff_t isize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 unsigned long nr, ret;
1649
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651find_page:
1652 page = find_get_page(mapping, index);
Fengguang Wu3ea89ee2007-07-19 01:48:02 -07001653 if (!page) {
Rusty Russellcf914a72007-07-19 01:48:08 -07001654 page_cache_sync_readahead(mapping,
Fengguang Wu7ff81072007-10-16 01:24:35 -07001655 ra, filp,
Fengguang Wu3ea89ee2007-07-19 01:48:02 -07001656 index, last_index - index);
1657 page = find_get_page(mapping, index);
1658 if (unlikely(page == NULL))
1659 goto no_cached_page;
1660 }
1661 if (PageReadahead(page)) {
Rusty Russellcf914a72007-07-19 01:48:08 -07001662 page_cache_async_readahead(mapping,
Fengguang Wu7ff81072007-10-16 01:24:35 -07001663 ra, filp, page,
Fengguang Wu3ea89ee2007-07-19 01:48:02 -07001664 index, last_index - index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 }
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07001666 if (!PageUptodate(page)) {
Mel Gormanebded022016-03-15 14:55:39 -07001667 /*
1668 * See comment in do_read_cache_page on why
1669 * wait_on_page_locked is used to avoid unnecessarily
1670 * serialisations and why it's safe.
1671 */
1672 wait_on_page_locked_killable(page);
1673 if (PageUptodate(page))
1674 goto page_ok;
1675
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07001676 if (inode->i_blkbits == PAGE_CACHE_SHIFT ||
1677 !mapping->a_ops->is_partially_uptodate)
1678 goto page_not_up_to_date;
Nick Piggin529ae9a2008-08-02 12:01:03 +02001679 if (!trylock_page(page))
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07001680 goto page_not_up_to_date;
Dave Hansen8d056cb2010-11-11 14:05:15 -08001681 /* Did it get truncated before we got the lock? */
1682 if (!page->mapping)
1683 goto page_not_up_to_date_locked;
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07001684 if (!mapping->a_ops->is_partially_uptodate(page,
Al Viro6e58e792014-02-03 17:07:03 -05001685 offset, iter->count))
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07001686 goto page_not_up_to_date_locked;
1687 unlock_page(page);
1688 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689page_ok:
NeilBrowna32ea1e2007-07-17 04:03:04 -07001690 /*
1691 * i_size must be checked after we know the page is Uptodate.
1692 *
1693 * Checking i_size after the check allows us to calculate
1694 * the correct value for "nr", which means the zero-filled
1695 * part of the page is not copied back to userspace (unless
1696 * another truncate extends the file - this is desired though).
1697 */
1698
1699 isize = i_size_read(inode);
1700 end_index = (isize - 1) >> PAGE_CACHE_SHIFT;
1701 if (unlikely(!isize || index > end_index)) {
1702 page_cache_release(page);
1703 goto out;
1704 }
1705
1706 /* nr is the maximum number of bytes to copy from this page */
1707 nr = PAGE_CACHE_SIZE;
1708 if (index == end_index) {
1709 nr = ((isize - 1) & ~PAGE_CACHE_MASK) + 1;
1710 if (nr <= offset) {
1711 page_cache_release(page);
1712 goto out;
1713 }
1714 }
1715 nr = nr - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716
1717 /* If users can be writing to this page using arbitrary
1718 * virtual addresses, take care about potential aliasing
1719 * before reading the page on the kernel side.
1720 */
1721 if (mapping_writably_mapped(mapping))
1722 flush_dcache_page(page);
1723
1724 /*
Jan Karaec0f1632007-05-06 14:49:25 -07001725 * When a sequential read accesses a page several times,
1726 * only mark it as accessed the first time.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 */
Jan Karaec0f1632007-05-06 14:49:25 -07001728 if (prev_index != index || offset != prev_offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 mark_page_accessed(page);
1730 prev_index = index;
1731
1732 /*
1733 * Ok, we have the page, and it's up-to-date, so
1734 * now we can copy it to user space...
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 */
Al Viro6e58e792014-02-03 17:07:03 -05001736
1737 ret = copy_page_to_iter(page, offset, nr, iter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 offset += ret;
1739 index += offset >> PAGE_CACHE_SHIFT;
1740 offset &= ~PAGE_CACHE_MASK;
Jan Kara6ce745e2007-05-06 14:49:26 -07001741 prev_offset = offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742
1743 page_cache_release(page);
Al Viro6e58e792014-02-03 17:07:03 -05001744 written += ret;
1745 if (!iov_iter_count(iter))
1746 goto out;
1747 if (ret < nr) {
1748 error = -EFAULT;
1749 goto out;
1750 }
1751 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752
1753page_not_up_to_date:
1754 /* Get exclusive access to the page ... */
Oleg Nesterov85462322008-06-08 21:20:43 +04001755 error = lock_page_killable(page);
1756 if (unlikely(error))
1757 goto readpage_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07001759page_not_up_to_date_locked:
Nick Pigginda6052f2006-09-25 23:31:35 -07001760 /* Did it get truncated before we got the lock? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 if (!page->mapping) {
1762 unlock_page(page);
1763 page_cache_release(page);
1764 continue;
1765 }
1766
1767 /* Did somebody else fill it already? */
1768 if (PageUptodate(page)) {
1769 unlock_page(page);
1770 goto page_ok;
1771 }
1772
1773readpage:
Jeff Moyer91803b42010-05-26 11:49:40 -04001774 /*
1775 * A previous I/O error may have been due to temporary
1776 * failures, eg. multipath errors.
1777 * PG_error will be set again if readpage fails.
1778 */
1779 ClearPageError(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 /* Start the actual read. The read will unlock the page. */
1781 error = mapping->a_ops->readpage(filp, page);
1782
Zach Brown994fc28c2005-12-15 14:28:17 -08001783 if (unlikely(error)) {
1784 if (error == AOP_TRUNCATED_PAGE) {
1785 page_cache_release(page);
Al Viro6e58e792014-02-03 17:07:03 -05001786 error = 0;
Zach Brown994fc28c2005-12-15 14:28:17 -08001787 goto find_page;
1788 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 goto readpage_error;
Zach Brown994fc28c2005-12-15 14:28:17 -08001790 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791
1792 if (!PageUptodate(page)) {
Oleg Nesterov85462322008-06-08 21:20:43 +04001793 error = lock_page_killable(page);
1794 if (unlikely(error))
1795 goto readpage_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 if (!PageUptodate(page)) {
1797 if (page->mapping == NULL) {
1798 /*
Christoph Hellwig2ecdc822010-01-26 17:27:20 +01001799 * invalidate_mapping_pages got it
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 */
1801 unlock_page(page);
1802 page_cache_release(page);
1803 goto find_page;
1804 }
1805 unlock_page(page);
Fengguang Wu7ff81072007-10-16 01:24:35 -07001806 shrink_readahead_size_eio(filp, ra);
Oleg Nesterov85462322008-06-08 21:20:43 +04001807 error = -EIO;
1808 goto readpage_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 }
1810 unlock_page(page);
1811 }
1812
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 goto page_ok;
1814
1815readpage_error:
1816 /* UHHUH! A synchronous read error occurred. Report it */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 page_cache_release(page);
1818 goto out;
1819
1820no_cached_page:
1821 /*
1822 * Ok, it wasn't cached, so we need to create a new
1823 * page..
1824 */
Nick Piggineb2be182007-10-16 01:24:57 -07001825 page = page_cache_alloc_cold(mapping);
1826 if (!page) {
Al Viro6e58e792014-02-03 17:07:03 -05001827 error = -ENOMEM;
Nick Piggineb2be182007-10-16 01:24:57 -07001828 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 }
Michal Hocko6afdb852015-06-24 16:58:06 -07001830 error = add_to_page_cache_lru(page, mapping, index,
Michal Hockoc62d2552015-11-06 16:28:49 -08001831 mapping_gfp_constraint(mapping, GFP_KERNEL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 if (error) {
Nick Piggineb2be182007-10-16 01:24:57 -07001833 page_cache_release(page);
Al Viro6e58e792014-02-03 17:07:03 -05001834 if (error == -EEXIST) {
1835 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 goto find_page;
Al Viro6e58e792014-02-03 17:07:03 -05001837 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 goto out;
1839 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 goto readpage;
1841 }
1842
1843out:
Fengguang Wu7ff81072007-10-16 01:24:35 -07001844 ra->prev_pos = prev_index;
1845 ra->prev_pos <<= PAGE_CACHE_SHIFT;
1846 ra->prev_pos |= prev_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847
Fengguang Wuf4e6b492007-10-16 01:24:33 -07001848 *ppos = ((loff_t)index << PAGE_CACHE_SHIFT) + offset;
Krishna Kumar0c6aa262008-10-15 22:01:13 -07001849 file_accessed(filp);
Al Viro6e58e792014-02-03 17:07:03 -05001850 return written ? written : error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851}
1852
Randy Dunlap485bb992006-06-23 02:03:49 -07001853/**
Al Viro6abd2322014-04-04 14:20:57 -04001854 * generic_file_read_iter - generic filesystem read routine
Randy Dunlap485bb992006-06-23 02:03:49 -07001855 * @iocb: kernel I/O control block
Al Viro6abd2322014-04-04 14:20:57 -04001856 * @iter: destination for the data read
Randy Dunlap485bb992006-06-23 02:03:49 -07001857 *
Al Viro6abd2322014-04-04 14:20:57 -04001858 * This is the "read_iter()" routine for all filesystems
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 * that can use the page cache directly.
1860 */
1861ssize_t
Al Viroed978a82014-03-05 22:53:04 -05001862generic_file_read_iter(struct kiocb *iocb, struct iov_iter *iter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863{
Al Viroed978a82014-03-05 22:53:04 -05001864 struct file *file = iocb->ki_filp;
1865 ssize_t retval = 0;
Badari Pulavarty543ade12006-09-30 23:28:48 -07001866 loff_t *ppos = &iocb->ki_pos;
Al Viroed978a82014-03-05 22:53:04 -05001867 loff_t pos = *ppos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868
Al Viro2ba48ce2015-04-09 13:52:01 -04001869 if (iocb->ki_flags & IOCB_DIRECT) {
Al Viroed978a82014-03-05 22:53:04 -05001870 struct address_space *mapping = file->f_mapping;
1871 struct inode *inode = mapping->host;
1872 size_t count = iov_iter_count(iter);
Badari Pulavarty543ade12006-09-30 23:28:48 -07001873 loff_t size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 if (!count)
1876 goto out; /* skip atime */
1877 size = i_size_read(inode);
Steven Whitehouse9fe55ee2014-01-24 14:42:22 +00001878 retval = filemap_write_and_wait_range(mapping, pos,
Al Viroed978a82014-03-05 22:53:04 -05001879 pos + count - 1);
Steven Whitehouse9fe55ee2014-01-24 14:42:22 +00001880 if (!retval) {
Al Viroed978a82014-03-05 22:53:04 -05001881 struct iov_iter data = *iter;
Omar Sandoval22c61862015-03-16 04:33:53 -07001882 retval = mapping->a_ops->direct_IO(iocb, &data, pos);
Steven Whitehouse9fe55ee2014-01-24 14:42:22 +00001883 }
Al Viroed978a82014-03-05 22:53:04 -05001884
Steven Whitehouse9fe55ee2014-01-24 14:42:22 +00001885 if (retval > 0) {
1886 *ppos = pos + retval;
Al Viroed978a82014-03-05 22:53:04 -05001887 iov_iter_advance(iter, retval);
Steven Whitehouse9fe55ee2014-01-24 14:42:22 +00001888 }
Josef Bacik66f998f2010-05-23 11:00:54 -04001889
Steven Whitehouse9fe55ee2014-01-24 14:42:22 +00001890 /*
1891 * Btrfs can have a short DIO read if we encounter
1892 * compressed extents, so if there was an error, or if
1893 * we've already read everything we wanted to, or if
1894 * there was a short read because we hit EOF, go ahead
1895 * and return. Otherwise fallthrough to buffered io for
Matthew Wilcoxfbbbad42015-02-16 15:58:53 -08001896 * the rest of the read. Buffered reads will not work for
1897 * DAX files, so don't bother trying.
Steven Whitehouse9fe55ee2014-01-24 14:42:22 +00001898 */
Matthew Wilcoxfbbbad42015-02-16 15:58:53 -08001899 if (retval < 0 || !iov_iter_count(iter) || *ppos >= size ||
1900 IS_DAX(inode)) {
Al Viroed978a82014-03-05 22:53:04 -05001901 file_accessed(file);
Steven Whitehouse9fe55ee2014-01-24 14:42:22 +00001902 goto out;
Steven Whitehouse0e0bcae2006-09-27 14:45:07 -04001903 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 }
1905
Al Viroed978a82014-03-05 22:53:04 -05001906 retval = do_generic_file_read(file, ppos, iter, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907out:
1908 return retval;
1909}
Al Viroed978a82014-03-05 22:53:04 -05001910EXPORT_SYMBOL(generic_file_read_iter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912#ifdef CONFIG_MMU
Randy Dunlap485bb992006-06-23 02:03:49 -07001913/**
1914 * page_cache_read - adds requested page to the page cache if not already there
1915 * @file: file to read
1916 * @offset: page index
Randy Dunlap62eb3202016-02-11 16:12:58 -08001917 * @gfp_mask: memory allocation flags
Randy Dunlap485bb992006-06-23 02:03:49 -07001918 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 * This adds the requested page to the page cache if it isn't already there,
1920 * and schedules an I/O to read in its contents from disk.
1921 */
Michal Hockoc20cd452016-01-14 15:20:12 -08001922static int page_cache_read(struct file *file, pgoff_t offset, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923{
1924 struct address_space *mapping = file->f_mapping;
Paul McQuade99dadfd2014-10-09 15:29:03 -07001925 struct page *page;
Zach Brown994fc28c2005-12-15 14:28:17 -08001926 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927
Zach Brown994fc28c2005-12-15 14:28:17 -08001928 do {
Michal Hockoc20cd452016-01-14 15:20:12 -08001929 page = __page_cache_alloc(gfp_mask|__GFP_COLD);
Zach Brown994fc28c2005-12-15 14:28:17 -08001930 if (!page)
1931 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932
Michal Hockoc20cd452016-01-14 15:20:12 -08001933 ret = add_to_page_cache_lru(page, mapping, offset, gfp_mask & GFP_KERNEL);
Zach Brown994fc28c2005-12-15 14:28:17 -08001934 if (ret == 0)
1935 ret = mapping->a_ops->readpage(file, page);
1936 else if (ret == -EEXIST)
1937 ret = 0; /* losing race to add is OK */
1938
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940
Zach Brown994fc28c2005-12-15 14:28:17 -08001941 } while (ret == AOP_TRUNCATED_PAGE);
Paul McQuade99dadfd2014-10-09 15:29:03 -07001942
Zach Brown994fc28c2005-12-15 14:28:17 -08001943 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944}
1945
1946#define MMAP_LOTSAMISS (100)
1947
Linus Torvaldsef00e082009-06-16 15:31:25 -07001948/*
1949 * Synchronous readahead happens when we don't even find
1950 * a page in the page cache at all.
1951 */
1952static void do_sync_mmap_readahead(struct vm_area_struct *vma,
1953 struct file_ra_state *ra,
1954 struct file *file,
1955 pgoff_t offset)
1956{
Linus Torvaldsef00e082009-06-16 15:31:25 -07001957 struct address_space *mapping = file->f_mapping;
1958
1959 /* If we don't want any read-ahead, don't bother */
Joe Perches64363aa2013-07-08 16:00:18 -07001960 if (vma->vm_flags & VM_RAND_READ)
Linus Torvaldsef00e082009-06-16 15:31:25 -07001961 return;
Wu Fengguang275b12b2011-05-24 17:12:28 -07001962 if (!ra->ra_pages)
1963 return;
Linus Torvaldsef00e082009-06-16 15:31:25 -07001964
Joe Perches64363aa2013-07-08 16:00:18 -07001965 if (vma->vm_flags & VM_SEQ_READ) {
Wu Fengguang7ffc59b2009-06-16 15:31:38 -07001966 page_cache_sync_readahead(mapping, ra, file, offset,
1967 ra->ra_pages);
Linus Torvaldsef00e082009-06-16 15:31:25 -07001968 return;
1969 }
1970
Andi Kleen207d04b2011-05-24 17:12:29 -07001971 /* Avoid banging the cache line if not needed */
1972 if (ra->mmap_miss < MMAP_LOTSAMISS * 10)
Linus Torvaldsef00e082009-06-16 15:31:25 -07001973 ra->mmap_miss++;
1974
1975 /*
1976 * Do we miss much more than hit in this file? If so,
1977 * stop bothering with read-ahead. It will only hurt.
1978 */
1979 if (ra->mmap_miss > MMAP_LOTSAMISS)
1980 return;
1981
Wu Fengguangd30a1102009-06-16 15:31:30 -07001982 /*
1983 * mmap read-around
1984 */
Roman Gushchin600e19a2015-11-05 18:47:08 -08001985 ra->start = max_t(long, 0, offset - ra->ra_pages / 2);
1986 ra->size = ra->ra_pages;
1987 ra->async_size = ra->ra_pages / 4;
Wu Fengguang275b12b2011-05-24 17:12:28 -07001988 ra_submit(ra, mapping, file);
Linus Torvaldsef00e082009-06-16 15:31:25 -07001989}
1990
1991/*
1992 * Asynchronous readahead happens when we find the page and PG_readahead,
1993 * so we want to possibly extend the readahead further..
1994 */
1995static void do_async_mmap_readahead(struct vm_area_struct *vma,
1996 struct file_ra_state *ra,
1997 struct file *file,
1998 struct page *page,
1999 pgoff_t offset)
2000{
2001 struct address_space *mapping = file->f_mapping;
2002
2003 /* If we don't want any read-ahead, don't bother */
Joe Perches64363aa2013-07-08 16:00:18 -07002004 if (vma->vm_flags & VM_RAND_READ)
Linus Torvaldsef00e082009-06-16 15:31:25 -07002005 return;
2006 if (ra->mmap_miss > 0)
2007 ra->mmap_miss--;
2008 if (PageReadahead(page))
Wu Fengguang2fad6f52009-06-16 15:31:29 -07002009 page_cache_async_readahead(mapping, ra, file,
2010 page, offset, ra->ra_pages);
Linus Torvaldsef00e082009-06-16 15:31:25 -07002011}
2012
Randy Dunlap485bb992006-06-23 02:03:49 -07002013/**
Nick Piggin54cb8822007-07-19 01:46:59 -07002014 * filemap_fault - read in file data for page fault handling
Nick Piggind0217ac2007-07-19 01:47:03 -07002015 * @vma: vma in which the fault was taken
2016 * @vmf: struct vm_fault containing details of the fault
Randy Dunlap485bb992006-06-23 02:03:49 -07002017 *
Nick Piggin54cb8822007-07-19 01:46:59 -07002018 * filemap_fault() is invoked via the vma operations vector for a
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 * mapped memory region to read in file data during a page fault.
2020 *
2021 * The goto's are kind of ugly, but this streamlines the normal case of having
2022 * it in the page cache, and handles the special cases reasonably without
2023 * having a lot of duplicated code.
Paul Cassella9a95f3c2014-08-06 16:07:24 -07002024 *
2025 * vma->vm_mm->mmap_sem must be held on entry.
2026 *
2027 * If our return value has VM_FAULT_RETRY set, it's because
2028 * lock_page_or_retry() returned 0.
2029 * The mmap_sem has usually been released in this case.
2030 * See __lock_page_or_retry() for the exception.
2031 *
2032 * If our return value does not have VM_FAULT_RETRY set, the mmap_sem
2033 * has not been released.
2034 *
2035 * We never return with VM_FAULT_RETRY and a bit from VM_FAULT_ERROR set.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 */
Nick Piggind0217ac2007-07-19 01:47:03 -07002037int filemap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038{
2039 int error;
Nick Piggin54cb8822007-07-19 01:46:59 -07002040 struct file *file = vma->vm_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 struct address_space *mapping = file->f_mapping;
2042 struct file_ra_state *ra = &file->f_ra;
2043 struct inode *inode = mapping->host;
Linus Torvaldsef00e082009-06-16 15:31:25 -07002044 pgoff_t offset = vmf->pgoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 struct page *page;
Kirill A. Shutemov99e3e532014-04-07 15:37:21 -07002046 loff_t size;
Nick Piggin83c54072007-07-19 01:47:05 -07002047 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048
Kirill A. Shutemov99e3e532014-04-07 15:37:21 -07002049 size = round_up(i_size_read(inode), PAGE_CACHE_SIZE);
2050 if (offset >= size >> PAGE_CACHE_SHIFT)
Linus Torvalds5307cc12007-10-31 09:19:46 -07002051 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 /*
Johannes Weiner49426422013-10-16 13:46:59 -07002054 * Do we have something in the page cache already?
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 */
Linus Torvaldsef00e082009-06-16 15:31:25 -07002056 page = find_get_page(mapping, offset);
Shaohua Li45cac652012-10-08 16:32:19 -07002057 if (likely(page) && !(vmf->flags & FAULT_FLAG_TRIED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 /*
Linus Torvaldsef00e082009-06-16 15:31:25 -07002059 * We found the page, so try async readahead before
2060 * waiting for the lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 */
Linus Torvaldsef00e082009-06-16 15:31:25 -07002062 do_async_mmap_readahead(vma, ra, file, page, offset);
Shaohua Li45cac652012-10-08 16:32:19 -07002063 } else if (!page) {
Linus Torvaldsef00e082009-06-16 15:31:25 -07002064 /* No page in the page cache at all */
2065 do_sync_mmap_readahead(vma, ra, file, offset);
2066 count_vm_event(PGMAJFAULT);
Ying Han456f9982011-05-26 16:25:38 -07002067 mem_cgroup_count_vm_event(vma->vm_mm, PGMAJFAULT);
Linus Torvaldsef00e082009-06-16 15:31:25 -07002068 ret = VM_FAULT_MAJOR;
2069retry_find:
Michel Lespinasseb522c942010-10-26 14:21:56 -07002070 page = find_get_page(mapping, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 if (!page)
2072 goto no_cached_page;
2073 }
2074
Michel Lespinassed88c0922010-11-02 13:05:18 -07002075 if (!lock_page_or_retry(page, vma->vm_mm, vmf->flags)) {
2076 page_cache_release(page);
Michel Lespinassed065bd82010-10-26 14:21:57 -07002077 return ret | VM_FAULT_RETRY;
Michel Lespinassed88c0922010-11-02 13:05:18 -07002078 }
Michel Lespinasseb522c942010-10-26 14:21:56 -07002079
2080 /* Did it get truncated? */
2081 if (unlikely(page->mapping != mapping)) {
2082 unlock_page(page);
2083 put_page(page);
2084 goto retry_find;
2085 }
Sasha Levin309381fea2014-01-23 15:52:54 -08002086 VM_BUG_ON_PAGE(page->index != offset, page);
Michel Lespinasseb522c942010-10-26 14:21:56 -07002087
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 /*
Nick Piggind00806b2007-07-19 01:46:57 -07002089 * We have a locked page in the page cache, now we need to check
2090 * that it's up-to-date. If not, it is going to be due to an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 */
Nick Piggind00806b2007-07-19 01:46:57 -07002092 if (unlikely(!PageUptodate(page)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 goto page_not_uptodate;
2094
Linus Torvaldsef00e082009-06-16 15:31:25 -07002095 /*
2096 * Found the page and have a reference on it.
2097 * We must recheck i_size under page lock.
2098 */
Kirill A. Shutemov99e3e532014-04-07 15:37:21 -07002099 size = round_up(i_size_read(inode), PAGE_CACHE_SIZE);
2100 if (unlikely(offset >= size >> PAGE_CACHE_SHIFT)) {
Nick Piggind00806b2007-07-19 01:46:57 -07002101 unlock_page(page);
Yan Zheng745ad482007-10-08 10:08:37 -07002102 page_cache_release(page);
Linus Torvalds5307cc12007-10-31 09:19:46 -07002103 return VM_FAULT_SIGBUS;
Nick Piggind00806b2007-07-19 01:46:57 -07002104 }
2105
Nick Piggind0217ac2007-07-19 01:47:03 -07002106 vmf->page = page;
Nick Piggin83c54072007-07-19 01:47:05 -07002107 return ret | VM_FAULT_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109no_cached_page:
2110 /*
2111 * We're only likely to ever get here if MADV_RANDOM is in
2112 * effect.
2113 */
Michal Hockoc20cd452016-01-14 15:20:12 -08002114 error = page_cache_read(file, offset, vmf->gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115
2116 /*
2117 * The page we want has now been added to the page cache.
2118 * In the unlikely event that someone removed it in the
2119 * meantime, we'll just come back here and read it again.
2120 */
2121 if (error >= 0)
2122 goto retry_find;
2123
2124 /*
2125 * An error return from page_cache_read can result if the
2126 * system is low on memory, or a problem occurs while trying
2127 * to schedule I/O.
2128 */
2129 if (error == -ENOMEM)
Nick Piggind0217ac2007-07-19 01:47:03 -07002130 return VM_FAULT_OOM;
2131 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132
2133page_not_uptodate:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 /*
2135 * Umm, take care of errors if the page isn't up-to-date.
2136 * Try to re-read it _once_. We do this synchronously,
2137 * because there really aren't any performance issues here
2138 * and we need to check for errors.
2139 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 ClearPageError(page);
Zach Brown994fc28c2005-12-15 14:28:17 -08002141 error = mapping->a_ops->readpage(file, page);
Miklos Szeredi3ef0f722008-05-14 16:05:37 -07002142 if (!error) {
2143 wait_on_page_locked(page);
2144 if (!PageUptodate(page))
2145 error = -EIO;
2146 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 page_cache_release(page);
Nick Piggind00806b2007-07-19 01:46:57 -07002148
2149 if (!error || error == AOP_TRUNCATED_PAGE)
2150 goto retry_find;
2151
2152 /* Things didn't work out. Return zero to tell the mm layer so. */
2153 shrink_readahead_size_eio(file, ra);
Nick Piggind0217ac2007-07-19 01:47:03 -07002154 return VM_FAULT_SIGBUS;
Nick Piggin54cb8822007-07-19 01:46:59 -07002155}
2156EXPORT_SYMBOL(filemap_fault);
2157
Kirill A. Shutemovf1820362014-04-07 15:37:19 -07002158void filemap_map_pages(struct vm_area_struct *vma, struct vm_fault *vmf)
2159{
2160 struct radix_tree_iter iter;
2161 void **slot;
2162 struct file *file = vma->vm_file;
2163 struct address_space *mapping = file->f_mapping;
2164 loff_t size;
2165 struct page *page;
2166 unsigned long address = (unsigned long) vmf->virtual_address;
2167 unsigned long addr;
2168 pte_t *pte;
2169
2170 rcu_read_lock();
2171 radix_tree_for_each_slot(slot, &mapping->page_tree, &iter, vmf->pgoff) {
2172 if (iter.index > vmf->max_pgoff)
2173 break;
2174repeat:
2175 page = radix_tree_deref_slot(slot);
2176 if (unlikely(!page))
2177 goto next;
2178 if (radix_tree_exception(page)) {
2179 if (radix_tree_deref_retry(page))
2180 break;
2181 else
2182 goto next;
2183 }
2184
2185 if (!page_cache_get_speculative(page))
2186 goto repeat;
2187
2188 /* Has the page moved? */
2189 if (unlikely(page != *slot)) {
2190 page_cache_release(page);
2191 goto repeat;
2192 }
2193
2194 if (!PageUptodate(page) ||
2195 PageReadahead(page) ||
2196 PageHWPoison(page))
2197 goto skip;
2198 if (!trylock_page(page))
2199 goto skip;
2200
2201 if (page->mapping != mapping || !PageUptodate(page))
2202 goto unlock;
2203
Kirill A. Shutemov99e3e532014-04-07 15:37:21 -07002204 size = round_up(i_size_read(mapping->host), PAGE_CACHE_SIZE);
2205 if (page->index >= size >> PAGE_CACHE_SHIFT)
Kirill A. Shutemovf1820362014-04-07 15:37:19 -07002206 goto unlock;
2207
2208 pte = vmf->pte + page->index - vmf->pgoff;
2209 if (!pte_none(*pte))
2210 goto unlock;
2211
2212 if (file->f_ra.mmap_miss > 0)
2213 file->f_ra.mmap_miss--;
2214 addr = address + (page->index - vmf->pgoff) * PAGE_SIZE;
2215 do_set_pte(vma, addr, page, pte, false, false);
2216 unlock_page(page);
2217 goto next;
2218unlock:
2219 unlock_page(page);
2220skip:
2221 page_cache_release(page);
2222next:
2223 if (iter.index == vmf->max_pgoff)
2224 break;
2225 }
2226 rcu_read_unlock();
2227}
2228EXPORT_SYMBOL(filemap_map_pages);
2229
Jan Kara4fcf1c62012-06-12 16:20:29 +02002230int filemap_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
2231{
2232 struct page *page = vmf->page;
Al Viro496ad9a2013-01-23 17:07:38 -05002233 struct inode *inode = file_inode(vma->vm_file);
Jan Kara4fcf1c62012-06-12 16:20:29 +02002234 int ret = VM_FAULT_LOCKED;
2235
Jan Kara14da9202012-06-12 16:20:37 +02002236 sb_start_pagefault(inode->i_sb);
Jan Kara4fcf1c62012-06-12 16:20:29 +02002237 file_update_time(vma->vm_file);
2238 lock_page(page);
2239 if (page->mapping != inode->i_mapping) {
2240 unlock_page(page);
2241 ret = VM_FAULT_NOPAGE;
2242 goto out;
2243 }
Jan Kara14da9202012-06-12 16:20:37 +02002244 /*
2245 * We mark the page dirty already here so that when freeze is in
2246 * progress, we are guaranteed that writeback during freezing will
2247 * see the dirty page and writeprotect it again.
2248 */
2249 set_page_dirty(page);
Darrick J. Wong1d1d1a72013-02-21 16:42:51 -08002250 wait_for_stable_page(page);
Jan Kara4fcf1c62012-06-12 16:20:29 +02002251out:
Jan Kara14da9202012-06-12 16:20:37 +02002252 sb_end_pagefault(inode->i_sb);
Jan Kara4fcf1c62012-06-12 16:20:29 +02002253 return ret;
2254}
2255EXPORT_SYMBOL(filemap_page_mkwrite);
2256
Alexey Dobriyanf0f37e2f2009-09-27 22:29:37 +04002257const struct vm_operations_struct generic_file_vm_ops = {
Nick Piggin54cb8822007-07-19 01:46:59 -07002258 .fault = filemap_fault,
Kirill A. Shutemovf1820362014-04-07 15:37:19 -07002259 .map_pages = filemap_map_pages,
Jan Kara4fcf1c62012-06-12 16:20:29 +02002260 .page_mkwrite = filemap_page_mkwrite,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261};
2262
2263/* This is used for a general mmap of a disk file */
2264
2265int generic_file_mmap(struct file * file, struct vm_area_struct * vma)
2266{
2267 struct address_space *mapping = file->f_mapping;
2268
2269 if (!mapping->a_ops->readpage)
2270 return -ENOEXEC;
2271 file_accessed(file);
2272 vma->vm_ops = &generic_file_vm_ops;
2273 return 0;
2274}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275
2276/*
2277 * This is for filesystems which do not implement ->writepage.
2278 */
2279int generic_file_readonly_mmap(struct file *file, struct vm_area_struct *vma)
2280{
2281 if ((vma->vm_flags & VM_SHARED) && (vma->vm_flags & VM_MAYWRITE))
2282 return -EINVAL;
2283 return generic_file_mmap(file, vma);
2284}
2285#else
2286int generic_file_mmap(struct file * file, struct vm_area_struct * vma)
2287{
2288 return -ENOSYS;
2289}
2290int generic_file_readonly_mmap(struct file * file, struct vm_area_struct * vma)
2291{
2292 return -ENOSYS;
2293}
2294#endif /* CONFIG_MMU */
2295
2296EXPORT_SYMBOL(generic_file_mmap);
2297EXPORT_SYMBOL(generic_file_readonly_mmap);
2298
Sasha Levin67f9fd92014-04-03 14:48:18 -07002299static struct page *wait_on_page_read(struct page *page)
2300{
2301 if (!IS_ERR(page)) {
2302 wait_on_page_locked(page);
2303 if (!PageUptodate(page)) {
2304 page_cache_release(page);
2305 page = ERR_PTR(-EIO);
2306 }
2307 }
2308 return page;
2309}
2310
Mel Gorman32b63522016-03-15 14:55:36 -07002311static struct page *do_read_cache_page(struct address_space *mapping,
Fengguang Wu57f6b962007-10-16 01:24:37 -07002312 pgoff_t index,
Hugh Dickins5e5358e2011-07-25 17:12:23 -07002313 int (*filler)(void *, struct page *),
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002314 void *data,
2315 gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316{
Nick Piggineb2be182007-10-16 01:24:57 -07002317 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 int err;
2319repeat:
2320 page = find_get_page(mapping, index);
2321 if (!page) {
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002322 page = __page_cache_alloc(gfp | __GFP_COLD);
Nick Piggineb2be182007-10-16 01:24:57 -07002323 if (!page)
2324 return ERR_PTR(-ENOMEM);
Dave Kleikampe6f67b82011-12-21 11:05:48 -06002325 err = add_to_page_cache_lru(page, mapping, index, gfp);
Nick Piggineb2be182007-10-16 01:24:57 -07002326 if (unlikely(err)) {
2327 page_cache_release(page);
2328 if (err == -EEXIST)
2329 goto repeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 /* Presumably ENOMEM for radix tree node */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 return ERR_PTR(err);
2332 }
Mel Gorman32b63522016-03-15 14:55:36 -07002333
2334filler:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 err = filler(data, page);
2336 if (err < 0) {
2337 page_cache_release(page);
Mel Gorman32b63522016-03-15 14:55:36 -07002338 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 }
Mel Gorman32b63522016-03-15 14:55:36 -07002340
2341 page = wait_on_page_read(page);
2342 if (IS_ERR(page))
2343 return page;
2344 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 if (PageUptodate(page))
2347 goto out;
2348
Mel Gormanebded022016-03-15 14:55:39 -07002349 /*
2350 * Page is not up to date and may be locked due one of the following
2351 * case a: Page is being filled and the page lock is held
2352 * case b: Read/write error clearing the page uptodate status
2353 * case c: Truncation in progress (page locked)
2354 * case d: Reclaim in progress
2355 *
2356 * Case a, the page will be up to date when the page is unlocked.
2357 * There is no need to serialise on the page lock here as the page
2358 * is pinned so the lock gives no additional protection. Even if the
2359 * the page is truncated, the data is still valid if PageUptodate as
2360 * it's a race vs truncate race.
2361 * Case b, the page will not be up to date
2362 * Case c, the page may be truncated but in itself, the data may still
2363 * be valid after IO completes as it's a read vs truncate race. The
2364 * operation must restart if the page is not uptodate on unlock but
2365 * otherwise serialising on page lock to stabilise the mapping gives
2366 * no additional guarantees to the caller as the page lock is
2367 * released before return.
2368 * Case d, similar to truncation. If reclaim holds the page lock, it
2369 * will be a race with remove_mapping that determines if the mapping
2370 * is valid on unlock but otherwise the data is valid and there is
2371 * no need to serialise with page lock.
2372 *
2373 * As the page lock gives no additional guarantee, we optimistically
2374 * wait on the page to be unlocked and check if it's up to date and
2375 * use the page if it is. Otherwise, the page lock is required to
2376 * distinguish between the different cases. The motivation is that we
2377 * avoid spurious serialisations and wakeups when multiple processes
2378 * wait on the same page for IO to complete.
2379 */
2380 wait_on_page_locked(page);
2381 if (PageUptodate(page))
2382 goto out;
2383
2384 /* Distinguish between all the cases under the safety of the lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 lock_page(page);
Mel Gormanebded022016-03-15 14:55:39 -07002386
2387 /* Case c or d, restart the operation */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 if (!page->mapping) {
2389 unlock_page(page);
2390 page_cache_release(page);
Mel Gorman32b63522016-03-15 14:55:36 -07002391 goto repeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 }
Mel Gormanebded022016-03-15 14:55:39 -07002393
2394 /* Someone else locked and filled the page in a very small window */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 if (PageUptodate(page)) {
2396 unlock_page(page);
2397 goto out;
2398 }
Mel Gorman32b63522016-03-15 14:55:36 -07002399 goto filler;
2400
David Howellsc855ff32007-05-09 13:42:20 +01002401out:
Nick Piggin6fe69002007-05-06 14:49:04 -07002402 mark_page_accessed(page);
2403 return page;
2404}
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002405
2406/**
Sasha Levin67f9fd92014-04-03 14:48:18 -07002407 * read_cache_page - read into page cache, fill it if needed
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002408 * @mapping: the page's address_space
2409 * @index: the page index
2410 * @filler: function to perform the read
Hugh Dickins5e5358e2011-07-25 17:12:23 -07002411 * @data: first arg to filler(data, page) function, often left as NULL
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002412 *
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002413 * Read into the page cache. If a page already exists, and PageUptodate() is
Sasha Levin67f9fd92014-04-03 14:48:18 -07002414 * not set, try to fill the page and wait for it to become unlocked.
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002415 *
2416 * If the page does not get brought uptodate, return -EIO.
2417 */
Sasha Levin67f9fd92014-04-03 14:48:18 -07002418struct page *read_cache_page(struct address_space *mapping,
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002419 pgoff_t index,
Hugh Dickins5e5358e2011-07-25 17:12:23 -07002420 int (*filler)(void *, struct page *),
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002421 void *data)
2422{
2423 return do_read_cache_page(mapping, index, filler, data, mapping_gfp_mask(mapping));
2424}
Sasha Levin67f9fd92014-04-03 14:48:18 -07002425EXPORT_SYMBOL(read_cache_page);
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002426
2427/**
2428 * read_cache_page_gfp - read into page cache, using specified page allocation flags.
2429 * @mapping: the page's address_space
2430 * @index: the page index
2431 * @gfp: the page allocator flags to use if allocating
2432 *
2433 * This is the same as "read_mapping_page(mapping, index, NULL)", but with
Dave Kleikampe6f67b82011-12-21 11:05:48 -06002434 * any new page allocations done using the specified allocation flags.
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002435 *
2436 * If the page does not get brought uptodate, return -EIO.
2437 */
2438struct page *read_cache_page_gfp(struct address_space *mapping,
2439 pgoff_t index,
2440 gfp_t gfp)
2441{
2442 filler_t *filler = (filler_t *)mapping->a_ops->readpage;
2443
Sasha Levin67f9fd92014-04-03 14:48:18 -07002444 return do_read_cache_page(mapping, index, filler, NULL, gfp);
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002445}
2446EXPORT_SYMBOL(read_cache_page_gfp);
2447
Nick Piggin2f718ff2007-10-16 01:24:59 -07002448/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 * Performs necessary checks before doing a write
2450 *
Randy Dunlap485bb992006-06-23 02:03:49 -07002451 * Can adjust writing position or amount of bytes to write.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 * Returns appropriate error code that caller should return or
2453 * zero in case that write should be allowed.
2454 */
Al Viro3309dd02015-04-09 12:55:47 -04002455inline ssize_t generic_write_checks(struct kiocb *iocb, struct iov_iter *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456{
Al Viro3309dd02015-04-09 12:55:47 -04002457 struct file *file = iocb->ki_filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458 struct inode *inode = file->f_mapping->host;
Jiri Slaby59e99e52010-03-05 13:41:44 -08002459 unsigned long limit = rlimit(RLIMIT_FSIZE);
Al Viro3309dd02015-04-09 12:55:47 -04002460 loff_t pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461
Al Viro3309dd02015-04-09 12:55:47 -04002462 if (!iov_iter_count(from))
2463 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464
Al Viro0fa6b002015-04-04 04:05:48 -04002465 /* FIXME: this is for backwards compatibility with 2.4 */
Al Viro2ba48ce2015-04-09 13:52:01 -04002466 if (iocb->ki_flags & IOCB_APPEND)
Al Viro3309dd02015-04-09 12:55:47 -04002467 iocb->ki_pos = i_size_read(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468
Al Viro3309dd02015-04-09 12:55:47 -04002469 pos = iocb->ki_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470
Al Viro0fa6b002015-04-04 04:05:48 -04002471 if (limit != RLIM_INFINITY) {
Al Viro3309dd02015-04-09 12:55:47 -04002472 if (iocb->ki_pos >= limit) {
Al Viro0fa6b002015-04-04 04:05:48 -04002473 send_sig(SIGXFSZ, current, 0);
2474 return -EFBIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 }
Al Viro3309dd02015-04-09 12:55:47 -04002476 iov_iter_truncate(from, limit - (unsigned long)pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 }
2478
2479 /*
2480 * LFS rule
2481 */
Al Viro3309dd02015-04-09 12:55:47 -04002482 if (unlikely(pos + iov_iter_count(from) > MAX_NON_LFS &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 !(file->f_flags & O_LARGEFILE))) {
Al Viro3309dd02015-04-09 12:55:47 -04002484 if (pos >= MAX_NON_LFS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 return -EFBIG;
Al Viro3309dd02015-04-09 12:55:47 -04002486 iov_iter_truncate(from, MAX_NON_LFS - (unsigned long)pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 }
2488
2489 /*
2490 * Are we about to exceed the fs block limit ?
2491 *
2492 * If we have written data it becomes a short write. If we have
2493 * exceeded without writing data we send a signal and return EFBIG.
2494 * Linus frestrict idea will clean these up nicely..
2495 */
Al Viro3309dd02015-04-09 12:55:47 -04002496 if (unlikely(pos >= inode->i_sb->s_maxbytes))
2497 return -EFBIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498
Al Viro3309dd02015-04-09 12:55:47 -04002499 iov_iter_truncate(from, inode->i_sb->s_maxbytes - pos);
2500 return iov_iter_count(from);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501}
2502EXPORT_SYMBOL(generic_write_checks);
2503
Nick Pigginafddba42007-10-16 01:25:01 -07002504int pagecache_write_begin(struct file *file, struct address_space *mapping,
2505 loff_t pos, unsigned len, unsigned flags,
2506 struct page **pagep, void **fsdata)
2507{
2508 const struct address_space_operations *aops = mapping->a_ops;
2509
Nick Piggin4e02ed42008-10-29 14:00:55 -07002510 return aops->write_begin(file, mapping, pos, len, flags,
Nick Pigginafddba42007-10-16 01:25:01 -07002511 pagep, fsdata);
Nick Pigginafddba42007-10-16 01:25:01 -07002512}
2513EXPORT_SYMBOL(pagecache_write_begin);
2514
2515int pagecache_write_end(struct file *file, struct address_space *mapping,
2516 loff_t pos, unsigned len, unsigned copied,
2517 struct page *page, void *fsdata)
2518{
2519 const struct address_space_operations *aops = mapping->a_ops;
Nick Pigginafddba42007-10-16 01:25:01 -07002520
Nick Piggin4e02ed42008-10-29 14:00:55 -07002521 return aops->write_end(file, mapping, pos, len, copied, page, fsdata);
Nick Pigginafddba42007-10-16 01:25:01 -07002522}
2523EXPORT_SYMBOL(pagecache_write_end);
2524
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525ssize_t
Al Viro0c949332014-03-22 06:51:37 -04002526generic_file_direct_write(struct kiocb *iocb, struct iov_iter *from, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527{
2528 struct file *file = iocb->ki_filp;
2529 struct address_space *mapping = file->f_mapping;
2530 struct inode *inode = mapping->host;
2531 ssize_t written;
Christoph Hellwiga969e902008-07-23 21:27:04 -07002532 size_t write_len;
2533 pgoff_t end;
Al Viro26978b82014-03-10 14:08:45 -04002534 struct iov_iter data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535
Al Viro0c949332014-03-22 06:51:37 -04002536 write_len = iov_iter_count(from);
Christoph Hellwiga969e902008-07-23 21:27:04 -07002537 end = (pos + write_len - 1) >> PAGE_CACHE_SHIFT;
Christoph Hellwiga969e902008-07-23 21:27:04 -07002538
Nick Piggin48b47c52009-01-06 14:40:22 -08002539 written = filemap_write_and_wait_range(mapping, pos, pos + write_len - 1);
Christoph Hellwiga969e902008-07-23 21:27:04 -07002540 if (written)
2541 goto out;
2542
2543 /*
2544 * After a write we want buffered reads to be sure to go to disk to get
2545 * the new data. We invalidate clean cached page from the region we're
2546 * about to write. We do this *before* the write so that we can return
Hisashi Hifumi6ccfa802008-09-02 14:35:40 -07002547 * without clobbering -EIOCBQUEUED from ->direct_IO().
Christoph Hellwiga969e902008-07-23 21:27:04 -07002548 */
2549 if (mapping->nrpages) {
2550 written = invalidate_inode_pages2_range(mapping,
2551 pos >> PAGE_CACHE_SHIFT, end);
Hisashi Hifumi6ccfa802008-09-02 14:35:40 -07002552 /*
2553 * If a page can not be invalidated, return 0 to fall back
2554 * to buffered write.
2555 */
2556 if (written) {
2557 if (written == -EBUSY)
2558 return 0;
Christoph Hellwiga969e902008-07-23 21:27:04 -07002559 goto out;
Hisashi Hifumi6ccfa802008-09-02 14:35:40 -07002560 }
Christoph Hellwiga969e902008-07-23 21:27:04 -07002561 }
2562
Al Viro26978b82014-03-10 14:08:45 -04002563 data = *from;
Omar Sandoval22c61862015-03-16 04:33:53 -07002564 written = mapping->a_ops->direct_IO(iocb, &data, pos);
Christoph Hellwiga969e902008-07-23 21:27:04 -07002565
2566 /*
2567 * Finally, try again to invalidate clean pages which might have been
2568 * cached by non-direct readahead, or faulted in by get_user_pages()
2569 * if the source of the write was an mmap'ed region of the file
2570 * we're writing. Either one is a pretty crazy thing to do,
2571 * so we don't support it 100%. If this invalidation
2572 * fails, tough, the write still worked...
2573 */
2574 if (mapping->nrpages) {
2575 invalidate_inode_pages2_range(mapping,
2576 pos >> PAGE_CACHE_SHIFT, end);
2577 }
2578
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 if (written > 0) {
Namhyung Kim01166512010-10-26 14:21:58 -07002580 pos += written;
Al Virof8579f82014-03-03 22:03:20 -05002581 iov_iter_advance(from, written);
Namhyung Kim01166512010-10-26 14:21:58 -07002582 if (pos > i_size_read(inode) && !S_ISBLK(inode->i_mode)) {
2583 i_size_write(inode, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 mark_inode_dirty(inode);
2585 }
Al Viro5cb6c6c2014-02-11 20:58:20 -05002586 iocb->ki_pos = pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 }
Christoph Hellwiga969e902008-07-23 21:27:04 -07002588out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 return written;
2590}
2591EXPORT_SYMBOL(generic_file_direct_write);
2592
Nick Piggineb2be182007-10-16 01:24:57 -07002593/*
2594 * Find or create a page at the given pagecache position. Return the locked
2595 * page. This function is specifically for buffered writes.
2596 */
Nick Piggin54566b22009-01-04 12:00:53 -08002597struct page *grab_cache_page_write_begin(struct address_space *mapping,
2598 pgoff_t index, unsigned flags)
Nick Piggineb2be182007-10-16 01:24:57 -07002599{
Nick Piggineb2be182007-10-16 01:24:57 -07002600 struct page *page;
Mel Gorman2457aec2014-06-04 16:10:31 -07002601 int fgp_flags = FGP_LOCK|FGP_ACCESSED|FGP_WRITE|FGP_CREAT;
Johannes Weiner0faa70c2012-01-10 15:07:53 -08002602
Nick Piggin54566b22009-01-04 12:00:53 -08002603 if (flags & AOP_FLAG_NOFS)
Mel Gorman2457aec2014-06-04 16:10:31 -07002604 fgp_flags |= FGP_NOFS;
Nick Piggineb2be182007-10-16 01:24:57 -07002605
Mel Gorman2457aec2014-06-04 16:10:31 -07002606 page = pagecache_get_page(mapping, index, fgp_flags,
Michal Hocko45f87de2014-12-29 20:30:35 +01002607 mapping_gfp_mask(mapping));
Mel Gorman2457aec2014-06-04 16:10:31 -07002608 if (page)
2609 wait_for_stable_page(page);
2610
Nick Piggineb2be182007-10-16 01:24:57 -07002611 return page;
2612}
Nick Piggin54566b22009-01-04 12:00:53 -08002613EXPORT_SYMBOL(grab_cache_page_write_begin);
Nick Piggineb2be182007-10-16 01:24:57 -07002614
Al Viro3b93f912014-02-11 21:34:08 -05002615ssize_t generic_perform_write(struct file *file,
Nick Pigginafddba42007-10-16 01:25:01 -07002616 struct iov_iter *i, loff_t pos)
2617{
2618 struct address_space *mapping = file->f_mapping;
2619 const struct address_space_operations *a_ops = mapping->a_ops;
2620 long status = 0;
2621 ssize_t written = 0;
Nick Piggin674b8922007-10-16 01:25:03 -07002622 unsigned int flags = 0;
2623
2624 /*
2625 * Copies from kernel address space cannot fail (NFSD is a big user).
2626 */
Al Viro777eda22014-12-17 04:46:46 -05002627 if (!iter_is_iovec(i))
Nick Piggin674b8922007-10-16 01:25:03 -07002628 flags |= AOP_FLAG_UNINTERRUPTIBLE;
Nick Pigginafddba42007-10-16 01:25:01 -07002629
2630 do {
2631 struct page *page;
Nick Pigginafddba42007-10-16 01:25:01 -07002632 unsigned long offset; /* Offset into pagecache page */
2633 unsigned long bytes; /* Bytes to write to page */
2634 size_t copied; /* Bytes copied from user */
2635 void *fsdata;
2636
2637 offset = (pos & (PAGE_CACHE_SIZE - 1));
Nick Pigginafddba42007-10-16 01:25:01 -07002638 bytes = min_t(unsigned long, PAGE_CACHE_SIZE - offset,
2639 iov_iter_count(i));
2640
2641again:
Linus Torvalds00a3d662015-10-07 08:32:38 +01002642 /*
2643 * Bring in the user page that we will copy from _first_.
2644 * Otherwise there's a nasty deadlock on copying from the
2645 * same page as we're writing to, without it being marked
2646 * up-to-date.
2647 *
2648 * Not only is this an optimisation, but it is also required
2649 * to check that the address is actually valid, when atomic
2650 * usercopies are used, below.
2651 */
2652 if (unlikely(iov_iter_fault_in_readable(i, bytes))) {
2653 status = -EFAULT;
2654 break;
2655 }
2656
Jan Kara296291c2015-10-22 13:32:21 -07002657 if (fatal_signal_pending(current)) {
2658 status = -EINTR;
2659 break;
2660 }
2661
Nick Piggin674b8922007-10-16 01:25:03 -07002662 status = a_ops->write_begin(file, mapping, pos, bytes, flags,
Nick Pigginafddba42007-10-16 01:25:01 -07002663 &page, &fsdata);
Mel Gorman2457aec2014-06-04 16:10:31 -07002664 if (unlikely(status < 0))
Nick Pigginafddba42007-10-16 01:25:01 -07002665 break;
2666
anfei zhou931e80e2010-02-02 13:44:02 -08002667 if (mapping_writably_mapped(mapping))
2668 flush_dcache_page(page);
Linus Torvalds00a3d662015-10-07 08:32:38 +01002669
Nick Pigginafddba42007-10-16 01:25:01 -07002670 copied = iov_iter_copy_from_user_atomic(page, i, offset, bytes);
Nick Pigginafddba42007-10-16 01:25:01 -07002671 flush_dcache_page(page);
2672
2673 status = a_ops->write_end(file, mapping, pos, bytes, copied,
2674 page, fsdata);
2675 if (unlikely(status < 0))
2676 break;
2677 copied = status;
2678
2679 cond_resched();
2680
Nick Piggin124d3b72008-02-02 15:01:17 +01002681 iov_iter_advance(i, copied);
Nick Pigginafddba42007-10-16 01:25:01 -07002682 if (unlikely(copied == 0)) {
2683 /*
2684 * If we were unable to copy any data at all, we must
2685 * fall back to a single segment length write.
2686 *
2687 * If we didn't fallback here, we could livelock
2688 * because not all segments in the iov can be copied at
2689 * once without a pagefault.
2690 */
2691 bytes = min_t(unsigned long, PAGE_CACHE_SIZE - offset,
2692 iov_iter_single_seg_count(i));
2693 goto again;
2694 }
Nick Pigginafddba42007-10-16 01:25:01 -07002695 pos += copied;
2696 written += copied;
2697
2698 balance_dirty_pages_ratelimited(mapping);
Nick Pigginafddba42007-10-16 01:25:01 -07002699 } while (iov_iter_count(i));
2700
2701 return written ? written : status;
2702}
Al Viro3b93f912014-02-11 21:34:08 -05002703EXPORT_SYMBOL(generic_perform_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704
Jan Karae4dd9de2009-08-17 18:10:06 +02002705/**
Al Viro81742022014-04-03 03:17:43 -04002706 * __generic_file_write_iter - write data to a file
Jan Karae4dd9de2009-08-17 18:10:06 +02002707 * @iocb: IO state structure (file, offset, etc.)
Al Viro81742022014-04-03 03:17:43 -04002708 * @from: iov_iter with data to write
Jan Karae4dd9de2009-08-17 18:10:06 +02002709 *
2710 * This function does all the work needed for actually writing data to a
2711 * file. It does all basic checks, removes SUID from the file, updates
2712 * modification times and calls proper subroutines depending on whether we
2713 * do direct IO or a standard buffered write.
2714 *
2715 * It expects i_mutex to be grabbed unless we work on a block device or similar
2716 * object which does not need locking at all.
2717 *
2718 * This function does *not* take care of syncing data in case of O_SYNC write.
2719 * A caller has to handle it. This is mainly due to the fact that we want to
2720 * avoid syncing under i_mutex.
2721 */
Al Viro81742022014-04-03 03:17:43 -04002722ssize_t __generic_file_write_iter(struct kiocb *iocb, struct iov_iter *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723{
2724 struct file *file = iocb->ki_filp;
Jeff Moyerfb5527e2006-10-19 23:28:13 -07002725 struct address_space * mapping = file->f_mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726 struct inode *inode = mapping->host;
Al Viro3b93f912014-02-11 21:34:08 -05002727 ssize_t written = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 ssize_t err;
Al Viro3b93f912014-02-11 21:34:08 -05002729 ssize_t status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731 /* We can write back this queue in page reclaim */
Christoph Hellwigde1414a2015-01-14 10:42:36 +01002732 current->backing_dev_info = inode_to_bdi(inode);
Jan Kara5fa8e0a2015-05-21 16:05:53 +02002733 err = file_remove_privs(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734 if (err)
2735 goto out;
2736
Josef Bacikc3b2da32012-03-26 09:59:21 -04002737 err = file_update_time(file);
2738 if (err)
2739 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740
Al Viro2ba48ce2015-04-09 13:52:01 -04002741 if (iocb->ki_flags & IOCB_DIRECT) {
Al Viro0b8def92015-04-07 10:22:53 -04002742 loff_t pos, endbyte;
Jeff Moyerfb5527e2006-10-19 23:28:13 -07002743
Al Viro0b8def92015-04-07 10:22:53 -04002744 written = generic_file_direct_write(iocb, from, iocb->ki_pos);
Matthew Wilcoxfbbbad42015-02-16 15:58:53 -08002745 /*
2746 * If the write stopped short of completing, fall back to
2747 * buffered writes. Some filesystems do this for writes to
2748 * holes, for example. For DAX files, a buffered write will
2749 * not succeed (even if it did, DAX does not handle dirty
2750 * page-cache pages correctly).
2751 */
Al Viro0b8def92015-04-07 10:22:53 -04002752 if (written < 0 || !iov_iter_count(from) || IS_DAX(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 goto out;
Al Viro3b93f912014-02-11 21:34:08 -05002754
Al Viro0b8def92015-04-07 10:22:53 -04002755 status = generic_perform_write(file, from, pos = iocb->ki_pos);
Jeff Moyerfb5527e2006-10-19 23:28:13 -07002756 /*
Al Viro3b93f912014-02-11 21:34:08 -05002757 * If generic_perform_write() returned a synchronous error
Jeff Moyerfb5527e2006-10-19 23:28:13 -07002758 * then we want to return the number of bytes which were
2759 * direct-written, or the error code if that was zero. Note
2760 * that this differs from normal direct-io semantics, which
2761 * will return -EFOO even if some bytes were written.
2762 */
Al Viro60bb4522014-08-08 12:39:16 -04002763 if (unlikely(status < 0)) {
Al Viro3b93f912014-02-11 21:34:08 -05002764 err = status;
Jeff Moyerfb5527e2006-10-19 23:28:13 -07002765 goto out;
2766 }
Jeff Moyerfb5527e2006-10-19 23:28:13 -07002767 /*
2768 * We need to ensure that the page cache pages are written to
2769 * disk and invalidated to preserve the expected O_DIRECT
2770 * semantics.
2771 */
Al Viro3b93f912014-02-11 21:34:08 -05002772 endbyte = pos + status - 1;
Al Viro0b8def92015-04-07 10:22:53 -04002773 err = filemap_write_and_wait_range(mapping, pos, endbyte);
Jeff Moyerfb5527e2006-10-19 23:28:13 -07002774 if (err == 0) {
Al Viro0b8def92015-04-07 10:22:53 -04002775 iocb->ki_pos = endbyte + 1;
Al Viro3b93f912014-02-11 21:34:08 -05002776 written += status;
Jeff Moyerfb5527e2006-10-19 23:28:13 -07002777 invalidate_mapping_pages(mapping,
2778 pos >> PAGE_CACHE_SHIFT,
2779 endbyte >> PAGE_CACHE_SHIFT);
2780 } else {
2781 /*
2782 * We don't know how much we wrote, so just return
2783 * the number of bytes which were direct-written
2784 */
2785 }
2786 } else {
Al Viro0b8def92015-04-07 10:22:53 -04002787 written = generic_perform_write(file, from, iocb->ki_pos);
2788 if (likely(written > 0))
2789 iocb->ki_pos += written;
Jeff Moyerfb5527e2006-10-19 23:28:13 -07002790 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791out:
2792 current->backing_dev_info = NULL;
2793 return written ? written : err;
2794}
Al Viro81742022014-04-03 03:17:43 -04002795EXPORT_SYMBOL(__generic_file_write_iter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796
Jan Karae4dd9de2009-08-17 18:10:06 +02002797/**
Al Viro81742022014-04-03 03:17:43 -04002798 * generic_file_write_iter - write data to a file
Jan Karae4dd9de2009-08-17 18:10:06 +02002799 * @iocb: IO state structure
Al Viro81742022014-04-03 03:17:43 -04002800 * @from: iov_iter with data to write
Jan Karae4dd9de2009-08-17 18:10:06 +02002801 *
Al Viro81742022014-04-03 03:17:43 -04002802 * This is a wrapper around __generic_file_write_iter() to be used by most
Jan Karae4dd9de2009-08-17 18:10:06 +02002803 * filesystems. It takes care of syncing the file in case of O_SYNC file
2804 * and acquires i_mutex as needed.
2805 */
Al Viro81742022014-04-03 03:17:43 -04002806ssize_t generic_file_write_iter(struct kiocb *iocb, struct iov_iter *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807{
2808 struct file *file = iocb->ki_filp;
Jan Kara148f9482009-08-17 19:52:36 +02002809 struct inode *inode = file->f_mapping->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810 ssize_t ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811
Al Viro59551022016-01-22 15:40:57 -05002812 inode_lock(inode);
Al Viro3309dd02015-04-09 12:55:47 -04002813 ret = generic_write_checks(iocb, from);
2814 if (ret > 0)
Al Viro5f380c72015-04-07 11:28:12 -04002815 ret = __generic_file_write_iter(iocb, from);
Al Viro59551022016-01-22 15:40:57 -05002816 inode_unlock(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817
Christoph Hellwig02afc27f2013-09-04 15:04:40 +02002818 if (ret > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819 ssize_t err;
2820
Al Virod311d792014-02-09 15:18:09 -05002821 err = generic_write_sync(file, iocb->ki_pos - ret, ret);
2822 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 ret = err;
2824 }
2825 return ret;
2826}
Al Viro81742022014-04-03 03:17:43 -04002827EXPORT_SYMBOL(generic_file_write_iter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828
David Howellscf9a2ae2006-08-29 19:05:54 +01002829/**
2830 * try_to_release_page() - release old fs-specific metadata on a page
2831 *
2832 * @page: the page which the kernel is trying to free
2833 * @gfp_mask: memory allocation flags (and I/O mode)
2834 *
2835 * The address_space is to try to release any data against the page
2836 * (presumably at page->private). If the release was successful, return `1'.
2837 * Otherwise return zero.
2838 *
David Howells266cf652009-04-03 16:42:36 +01002839 * This may also be called if PG_fscache is set on a page, indicating that the
2840 * page is known to the local caching routines.
2841 *
David Howellscf9a2ae2006-08-29 19:05:54 +01002842 * The @gfp_mask argument specifies whether I/O may be performed to release
Mel Gorman71baba42015-11-06 16:28:28 -08002843 * this page (__GFP_IO), and whether the call may block (__GFP_RECLAIM & __GFP_FS).
David Howellscf9a2ae2006-08-29 19:05:54 +01002844 *
David Howellscf9a2ae2006-08-29 19:05:54 +01002845 */
2846int try_to_release_page(struct page *page, gfp_t gfp_mask)
2847{
2848 struct address_space * const mapping = page->mapping;
2849
2850 BUG_ON(!PageLocked(page));
2851 if (PageWriteback(page))
2852 return 0;
2853
2854 if (mapping && mapping->a_ops->releasepage)
2855 return mapping->a_ops->releasepage(page, gfp_mask);
2856 return try_to_free_buffers(page);
2857}
2858
2859EXPORT_SYMBOL(try_to_release_page);