blob: bfc1ab053b1224acd96a1851e265f6872d744881 [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>
14#include <linux/fs.h>
Hiro Yoshiokac22ce142006-06-23 02:04:16 -070015#include <linux/uaccess.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080016#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/kernel_stat.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/mm.h>
20#include <linux/swap.h>
21#include <linux/mman.h>
22#include <linux/pagemap.h>
23#include <linux/file.h>
24#include <linux/uio.h>
25#include <linux/hash.h>
26#include <linux/writeback.h>
Linus Torvalds53253382007-10-18 14:47:32 -070027#include <linux/backing-dev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/pagevec.h>
29#include <linux/blkdev.h>
30#include <linux/security.h>
Paul Jackson44110fe2006-03-24 03:16:04 -080031#include <linux/cpuset.h>
Nick Piggin2f718ff2007-10-16 01:24:59 -070032#include <linux/hardirq.h> /* for BUG_ON(!in_atomic()) only */
Johannes Weiner00501b52014-08-08 14:19:20 -070033#include <linux/hugetlb.h>
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080034#include <linux/memcontrol.h>
Dan Magenheimerc515e1f2011-05-26 10:01:43 -060035#include <linux/cleancache.h>
Kirill A. Shutemovf1820362014-04-07 15:37:19 -070036#include <linux/rmap.h>
Nick Piggin0f8053a2006-03-22 00:08:33 -080037#include "internal.h"
38
Robert Jarzmikfe0bfaa2013-04-29 15:06:10 -070039#define CREATE_TRACE_POINTS
40#include <trace/events/filemap.h>
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 * FIXME: remove all knowledge of the buffer layer from the core VM
44 */
Jan Kara148f9482009-08-17 19:52:36 +020045#include <linux/buffer_head.h> /* for try_to_free_buffers */
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <asm/mman.h>
48
49/*
50 * Shared mappings implemented 30.11.1994. It's not fully working yet,
51 * though.
52 *
53 * Shared mappings now work. 15.8.1995 Bruno.
54 *
55 * finished 'unifying' the page and buffer cache and SMP-threaded the
56 * page-cache, 21.05.1999, Ingo Molnar <mingo@redhat.com>
57 *
58 * SMP-threaded pagemap-LRU 1999, Andrea Arcangeli <andrea@suse.de>
59 */
60
61/*
62 * Lock ordering:
63 *
Davidlohr Buesoc8c06ef2014-12-12 16:54:24 -080064 * ->i_mmap_rwsem (truncate_pagecache)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 * ->private_lock (__free_pte->__set_page_dirty_buffers)
Hugh Dickins5d337b92005-09-03 15:54:41 -070066 * ->swap_lock (exclusive_swap_page, others)
67 * ->mapping->tree_lock
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 *
Jes Sorensen1b1dcc12006-01-09 15:59:24 -080069 * ->i_mutex
Davidlohr Buesoc8c06ef2014-12-12 16:54:24 -080070 * ->i_mmap_rwsem (truncate->unmap_mapping_range)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 *
72 * ->mmap_sem
Davidlohr Buesoc8c06ef2014-12-12 16:54:24 -080073 * ->i_mmap_rwsem
Hugh Dickinsb8072f02005-10-29 18:16:41 -070074 * ->page_table_lock or pte_lock (various, mainly in memory.c)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 * ->mapping->tree_lock (arch-dependent flush_dcache_mmap_lock)
76 *
77 * ->mmap_sem
78 * ->lock_page (access_process_vm)
79 *
Al Viroccad2362014-02-11 22:36:48 -050080 * ->i_mutex (generic_perform_write)
Nick Piggin82591e62006-10-19 23:29:10 -070081 * ->mmap_sem (fault_in_pages_readable->do_page_fault)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 *
Christoph Hellwigf758eea2011-04-21 18:19:44 -060083 * bdi->wb.list_lock
Dave Chinnera66979a2011-03-22 22:23:41 +110084 * sb_lock (fs/fs-writeback.c)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 * ->mapping->tree_lock (__sync_single_inode)
86 *
Davidlohr Buesoc8c06ef2014-12-12 16:54:24 -080087 * ->i_mmap_rwsem
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 * ->anon_vma.lock (vma_adjust)
89 *
90 * ->anon_vma.lock
Hugh Dickinsb8072f02005-10-29 18:16:41 -070091 * ->page_table_lock or pte_lock (anon_vma_prepare and various)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 *
Hugh Dickinsb8072f02005-10-29 18:16:41 -070093 * ->page_table_lock or pte_lock
Hugh Dickins5d337b92005-09-03 15:54:41 -070094 * ->swap_lock (try_to_unmap_one)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 * ->private_lock (try_to_unmap_one)
96 * ->tree_lock (try_to_unmap_one)
97 * ->zone.lru_lock (follow_page->mark_page_accessed)
Nick Piggin053837f2006-01-18 17:42:27 -080098 * ->zone.lru_lock (check_pte_range->isolate_lru_page)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 * ->private_lock (page_remove_rmap->set_page_dirty)
100 * ->tree_lock (page_remove_rmap->set_page_dirty)
Christoph Hellwigf758eea2011-04-21 18:19:44 -0600101 * bdi.wb->list_lock (page_remove_rmap->set_page_dirty)
Dave Chinner250df6e2011-03-22 22:23:36 +1100102 * ->inode->i_lock (page_remove_rmap->set_page_dirty)
Greg Thelenc4843a72015-05-22 17:13:16 -0400103 * ->memcg->move_lock (page_remove_rmap->mem_cgroup_begin_page_stat)
Christoph Hellwigf758eea2011-04-21 18:19:44 -0600104 * bdi.wb->list_lock (zap_pte_range->set_page_dirty)
Dave Chinner250df6e2011-03-22 22:23:36 +1100105 * ->inode->i_lock (zap_pte_range->set_page_dirty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 * ->private_lock (zap_pte_range->__set_page_dirty_buffers)
107 *
Davidlohr Buesoc8c06ef2014-12-12 16:54:24 -0800108 * ->i_mmap_rwsem
Andi Kleen9a3c5312012-03-21 16:34:09 -0700109 * ->tasklist_lock (memory_failure, collect_procs_ao)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 */
111
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700112static void page_cache_tree_delete(struct address_space *mapping,
113 struct page *page, void *shadow)
114{
Johannes Weiner449dd692014-04-03 14:47:56 -0700115 struct radix_tree_node *node;
116 unsigned long index;
117 unsigned int offset;
118 unsigned int tag;
119 void **slot;
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700120
Johannes Weiner449dd692014-04-03 14:47:56 -0700121 VM_BUG_ON(!PageLocked(page));
122
123 __radix_tree_lookup(&mapping->page_tree, page->index, &node, &slot);
124
125 if (shadow) {
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700126 mapping->nrshadows++;
127 /*
128 * Make sure the nrshadows update is committed before
129 * the nrpages update so that final truncate racing
130 * with reclaim does not see both counters 0 at the
131 * same time and miss a shadow entry.
132 */
133 smp_wmb();
Johannes Weiner449dd692014-04-03 14:47:56 -0700134 }
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700135 mapping->nrpages--;
Johannes Weiner449dd692014-04-03 14:47:56 -0700136
137 if (!node) {
138 /* Clear direct pointer tags in root node */
139 mapping->page_tree.gfp_mask &= __GFP_BITS_MASK;
140 radix_tree_replace_slot(slot, shadow);
141 return;
142 }
143
144 /* Clear tree tags for the removed page */
145 index = page->index;
146 offset = index & RADIX_TREE_MAP_MASK;
147 for (tag = 0; tag < RADIX_TREE_MAX_TAGS; tag++) {
148 if (test_bit(offset, node->tags[tag]))
149 radix_tree_tag_clear(&mapping->page_tree, index, tag);
150 }
151
152 /* Delete page, swap shadow entry */
153 radix_tree_replace_slot(slot, shadow);
154 workingset_node_pages_dec(node);
155 if (shadow)
156 workingset_node_shadows_inc(node);
157 else
158 if (__radix_tree_delete_node(&mapping->page_tree, node))
159 return;
160
161 /*
162 * Track node that only contains shadow entries.
163 *
164 * Avoid acquiring the list_lru lock if already tracked. The
165 * list_empty() test is safe as node->private_list is
166 * protected by mapping->tree_lock.
167 */
168 if (!workingset_node_pages(node) &&
169 list_empty(&node->private_list)) {
170 node->private_data = mapping;
171 list_lru_add(&workingset_shadow_nodes, &node->private_list);
172 }
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700173}
174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175/*
Minchan Kime64a7822011-03-22 16:32:44 -0700176 * Delete a page from the page cache and free it. Caller has to make
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 * sure the page is locked and that nobody else uses it - or that usage
Greg Thelenc4843a72015-05-22 17:13:16 -0400178 * is safe. The caller must hold the mapping's tree_lock and
179 * mem_cgroup_begin_page_stat().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 */
Greg Thelenc4843a72015-05-22 17:13:16 -0400181void __delete_from_page_cache(struct page *page, void *shadow,
182 struct mem_cgroup *memcg)
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
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700197 page_cache_tree_delete(mapping, page, shadow);
198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 page->mapping = NULL;
Hugh Dickinsb85e0ef2011-07-25 17:12:25 -0700200 /* Leave page->index set: truncation lookup relies upon it */
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700201
Christoph Lameter347ce432006-06-30 01:55:35 -0700202 __dec_zone_page_state(page, NR_FILE_PAGES);
KOSAKI Motohiro4b021082009-09-21 17:01:33 -0700203 if (PageSwapBacked(page))
204 __dec_zone_page_state(page, NR_SHMEM);
Nick Piggin45426812007-07-15 23:38:12 -0700205 BUG_ON(page_mapped(page));
Linus Torvalds3a692792007-12-19 14:05:13 -0800206
207 /*
Konstantin Khlebnikovb9ea2512015-04-14 15:45:27 -0700208 * At this point page must be either written or cleaned by truncate.
209 * Dirty page here signals a bug and loss of unwritten data.
Linus Torvalds3a692792007-12-19 14:05:13 -0800210 *
Konstantin Khlebnikovb9ea2512015-04-14 15:45:27 -0700211 * This fixes dirty accounting after removing the page entirely but
212 * leaves PageDirty set: it has no effect for truncated page and
213 * anyway will be cleared before returning page into buddy allocator.
Linus Torvalds3a692792007-12-19 14:05:13 -0800214 */
Konstantin Khlebnikovb9ea2512015-04-14 15:45:27 -0700215 if (WARN_ON_ONCE(PageDirty(page)))
Tejun Heo682aa8e2015-05-28 14:50:53 -0400216 account_page_cleaned(page, mapping, memcg,
217 inode_to_wb(mapping->host));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218}
219
Minchan Kim702cfbf2011-03-22 16:32:43 -0700220/**
221 * delete_from_page_cache - delete page from page cache
222 * @page: the page which the kernel is trying to remove from page cache
223 *
224 * This must be called only on pages that have been verified to be in the page
225 * cache and locked. It will never put the page into the free list, the caller
226 * has a reference on the page.
227 */
228void delete_from_page_cache(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229{
230 struct address_space *mapping = page->mapping;
Greg Thelenc4843a72015-05-22 17:13:16 -0400231 struct mem_cgroup *memcg;
232 unsigned long flags;
233
Linus Torvalds6072d132010-12-01 13:35:19 -0500234 void (*freepage)(struct page *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Matt Mackallcd7619d2005-05-01 08:59:01 -0700236 BUG_ON(!PageLocked(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Linus Torvalds6072d132010-12-01 13:35:19 -0500238 freepage = mapping->a_ops->freepage;
Greg Thelenc4843a72015-05-22 17:13:16 -0400239
240 memcg = mem_cgroup_begin_page_stat(page);
241 spin_lock_irqsave(&mapping->tree_lock, flags);
242 __delete_from_page_cache(page, NULL, memcg);
243 spin_unlock_irqrestore(&mapping->tree_lock, flags);
244 mem_cgroup_end_page_stat(memcg);
Linus Torvalds6072d132010-12-01 13:35:19 -0500245
246 if (freepage)
247 freepage(page);
Minchan Kim97cecb52011-03-22 16:30:53 -0700248 page_cache_release(page);
249}
250EXPORT_SYMBOL(delete_from_page_cache);
251
Dmitry Monakhov865ffef32013-04-29 15:08:42 -0700252static int filemap_check_errors(struct address_space *mapping)
253{
254 int ret = 0;
255 /* Check for outstanding write errors */
Jens Axboe7fcbbaf2014-05-22 11:54:16 -0700256 if (test_bit(AS_ENOSPC, &mapping->flags) &&
257 test_and_clear_bit(AS_ENOSPC, &mapping->flags))
Dmitry Monakhov865ffef32013-04-29 15:08:42 -0700258 ret = -ENOSPC;
Jens Axboe7fcbbaf2014-05-22 11:54:16 -0700259 if (test_bit(AS_EIO, &mapping->flags) &&
260 test_and_clear_bit(AS_EIO, &mapping->flags))
Dmitry Monakhov865ffef32013-04-29 15:08:42 -0700261 ret = -EIO;
262 return ret;
263}
264
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265/**
Randy Dunlap485bb992006-06-23 02:03:49 -0700266 * __filemap_fdatawrite_range - start writeback on mapping dirty pages in range
Martin Waitz67be2dd2005-05-01 08:59:26 -0700267 * @mapping: address space structure to write
268 * @start: offset in bytes where the range starts
Andrew Morton469eb4d2006-03-24 03:17:45 -0800269 * @end: offset in bytes where the range ends (inclusive)
Martin Waitz67be2dd2005-05-01 08:59:26 -0700270 * @sync_mode: enable synchronous operation
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 *
Randy Dunlap485bb992006-06-23 02:03:49 -0700272 * Start writeback against all of a mapping's dirty pages that lie
273 * within the byte offsets <start, end> inclusive.
274 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 * If sync_mode is WB_SYNC_ALL then this is a "data integrity" operation, as
Randy Dunlap485bb992006-06-23 02:03:49 -0700276 * opposed to a regular memory cleansing writeback. The difference between
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 * these two operations is that if a dirty page/buffer is encountered, it must
278 * be waited upon, and not just skipped over.
279 */
Andrew Mortonebcf28e2006-03-24 03:18:04 -0800280int __filemap_fdatawrite_range(struct address_space *mapping, loff_t start,
281 loff_t end, int sync_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282{
283 int ret;
284 struct writeback_control wbc = {
285 .sync_mode = sync_mode,
Nick Piggin05fe4782009-01-06 14:39:08 -0800286 .nr_to_write = LONG_MAX,
OGAWA Hirofumi111ebb62006-06-23 02:03:26 -0700287 .range_start = start,
288 .range_end = end,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 };
290
291 if (!mapping_cap_writeback_dirty(mapping))
292 return 0;
293
Tejun Heob16b1de2015-06-02 08:39:48 -0600294 wbc_attach_fdatawrite_inode(&wbc, mapping->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 ret = do_writepages(mapping, &wbc);
Tejun Heob16b1de2015-06-02 08:39:48 -0600296 wbc_detach_inode(&wbc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 return ret;
298}
299
300static inline int __filemap_fdatawrite(struct address_space *mapping,
301 int sync_mode)
302{
OGAWA Hirofumi111ebb62006-06-23 02:03:26 -0700303 return __filemap_fdatawrite_range(mapping, 0, LLONG_MAX, sync_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304}
305
306int filemap_fdatawrite(struct address_space *mapping)
307{
308 return __filemap_fdatawrite(mapping, WB_SYNC_ALL);
309}
310EXPORT_SYMBOL(filemap_fdatawrite);
311
Jan Karaf4c0a0f2008-07-11 19:27:31 -0400312int filemap_fdatawrite_range(struct address_space *mapping, loff_t start,
Andrew Mortonebcf28e2006-03-24 03:18:04 -0800313 loff_t end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
315 return __filemap_fdatawrite_range(mapping, start, end, WB_SYNC_ALL);
316}
Jan Karaf4c0a0f2008-07-11 19:27:31 -0400317EXPORT_SYMBOL(filemap_fdatawrite_range);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Randy Dunlap485bb992006-06-23 02:03:49 -0700319/**
320 * filemap_flush - mostly a non-blocking flush
321 * @mapping: target address_space
322 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 * This is a mostly non-blocking flush. Not suitable for data-integrity
324 * purposes - I/O may not be started against all dirty pages.
325 */
326int filemap_flush(struct address_space *mapping)
327{
328 return __filemap_fdatawrite(mapping, WB_SYNC_NONE);
329}
330EXPORT_SYMBOL(filemap_flush);
331
Randy Dunlap485bb992006-06-23 02:03:49 -0700332/**
Christoph Hellwig94004ed2009-09-30 22:16:33 +0200333 * filemap_fdatawait_range - wait for writeback to complete
334 * @mapping: address space structure to wait for
335 * @start_byte: offset in bytes where the range starts
336 * @end_byte: offset in bytes where the range ends (inclusive)
Randy Dunlap485bb992006-06-23 02:03:49 -0700337 *
Christoph Hellwig94004ed2009-09-30 22:16:33 +0200338 * Walk the list of under-writeback pages of the given address space
339 * in the given range and wait for all of them.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 */
Christoph Hellwig94004ed2009-09-30 22:16:33 +0200341int filemap_fdatawait_range(struct address_space *mapping, loff_t start_byte,
342 loff_t end_byte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343{
Christoph Hellwig94004ed2009-09-30 22:16:33 +0200344 pgoff_t index = start_byte >> PAGE_CACHE_SHIFT;
345 pgoff_t end = end_byte >> PAGE_CACHE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 struct pagevec pvec;
347 int nr_pages;
Dmitry Monakhov865ffef32013-04-29 15:08:42 -0700348 int ret2, ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Christoph Hellwig94004ed2009-09-30 22:16:33 +0200350 if (end_byte < start_byte)
Dmitry Monakhov865ffef32013-04-29 15:08:42 -0700351 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
353 pagevec_init(&pvec, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 while ((index <= end) &&
355 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index,
356 PAGECACHE_TAG_WRITEBACK,
357 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1)) != 0) {
358 unsigned i;
359
360 for (i = 0; i < nr_pages; i++) {
361 struct page *page = pvec.pages[i];
362
363 /* until radix tree lookup accepts end_index */
364 if (page->index > end)
365 continue;
366
367 wait_on_page_writeback(page);
Rik van Riel212260a2011-01-13 15:46:06 -0800368 if (TestClearPageError(page))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 ret = -EIO;
370 }
371 pagevec_release(&pvec);
372 cond_resched();
373 }
Dmitry Monakhov865ffef32013-04-29 15:08:42 -0700374out:
375 ret2 = filemap_check_errors(mapping);
376 if (!ret)
377 ret = ret2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
379 return ret;
380}
Jan Karad3bccb6f2009-08-17 19:30:27 +0200381EXPORT_SYMBOL(filemap_fdatawait_range);
382
383/**
Randy Dunlap485bb992006-06-23 02:03:49 -0700384 * filemap_fdatawait - wait for all under-writeback pages to complete
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 * @mapping: address space structure to wait for
Randy Dunlap485bb992006-06-23 02:03:49 -0700386 *
387 * Walk the list of under-writeback pages of the given address space
388 * and wait for all of them.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 */
390int filemap_fdatawait(struct address_space *mapping)
391{
392 loff_t i_size = i_size_read(mapping->host);
393
394 if (i_size == 0)
395 return 0;
396
Christoph Hellwig94004ed2009-09-30 22:16:33 +0200397 return filemap_fdatawait_range(mapping, 0, i_size - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398}
399EXPORT_SYMBOL(filemap_fdatawait);
400
401int filemap_write_and_wait(struct address_space *mapping)
402{
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800403 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
405 if (mapping->nrpages) {
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800406 err = filemap_fdatawrite(mapping);
407 /*
408 * Even if the above returned error, the pages may be
409 * written partially (e.g. -ENOSPC), so we wait for it.
410 * But the -EIO is special case, it may indicate the worst
411 * thing (e.g. bug) happened, so we avoid waiting for it.
412 */
413 if (err != -EIO) {
414 int err2 = filemap_fdatawait(mapping);
415 if (!err)
416 err = err2;
417 }
Dmitry Monakhov865ffef32013-04-29 15:08:42 -0700418 } else {
419 err = filemap_check_errors(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 }
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800421 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422}
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800423EXPORT_SYMBOL(filemap_write_and_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424
Randy Dunlap485bb992006-06-23 02:03:49 -0700425/**
426 * filemap_write_and_wait_range - write out & wait on a file range
427 * @mapping: the address_space for the pages
428 * @lstart: offset in bytes where the range starts
429 * @lend: offset in bytes where the range ends (inclusive)
430 *
Andrew Morton469eb4d2006-03-24 03:17:45 -0800431 * Write out and wait upon file offsets lstart->lend, inclusive.
432 *
433 * Note that `lend' is inclusive (describes the last byte to be written) so
434 * that this function can be used to write to the very end-of-file (end = -1).
435 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436int filemap_write_and_wait_range(struct address_space *mapping,
437 loff_t lstart, loff_t lend)
438{
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800439 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
441 if (mapping->nrpages) {
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800442 err = __filemap_fdatawrite_range(mapping, lstart, lend,
443 WB_SYNC_ALL);
444 /* See comment of filemap_write_and_wait() */
445 if (err != -EIO) {
Christoph Hellwig94004ed2009-09-30 22:16:33 +0200446 int err2 = filemap_fdatawait_range(mapping,
447 lstart, lend);
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800448 if (!err)
449 err = err2;
450 }
Dmitry Monakhov865ffef32013-04-29 15:08:42 -0700451 } else {
452 err = filemap_check_errors(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 }
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800454 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455}
Chris Masonf6995582009-04-15 13:22:37 -0400456EXPORT_SYMBOL(filemap_write_and_wait_range);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
Randy Dunlap485bb992006-06-23 02:03:49 -0700458/**
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700459 * replace_page_cache_page - replace a pagecache page with a new one
460 * @old: page to be replaced
461 * @new: page to replace with
462 * @gfp_mask: allocation mode
463 *
464 * This function replaces a page in the pagecache with a new one. On
465 * success it acquires the pagecache reference for the new page and
466 * drops it for the old page. Both the old and new pages must be
467 * locked. This function does not add the new page to the LRU, the
468 * caller must do that.
469 *
470 * The remove + add is atomic. The only way this function can fail is
471 * memory allocation failure.
472 */
473int replace_page_cache_page(struct page *old, struct page *new, gfp_t gfp_mask)
474{
475 int error;
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700476
Sasha Levin309381fea2014-01-23 15:52:54 -0800477 VM_BUG_ON_PAGE(!PageLocked(old), old);
478 VM_BUG_ON_PAGE(!PageLocked(new), new);
479 VM_BUG_ON_PAGE(new->mapping, new);
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700480
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700481 error = radix_tree_preload(gfp_mask & ~__GFP_HIGHMEM);
482 if (!error) {
483 struct address_space *mapping = old->mapping;
484 void (*freepage)(struct page *);
Greg Thelenc4843a72015-05-22 17:13:16 -0400485 struct mem_cgroup *memcg;
486 unsigned long flags;
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700487
488 pgoff_t offset = old->index;
489 freepage = mapping->a_ops->freepage;
490
491 page_cache_get(new);
492 new->mapping = mapping;
493 new->index = offset;
494
Greg Thelenc4843a72015-05-22 17:13:16 -0400495 memcg = mem_cgroup_begin_page_stat(old);
496 spin_lock_irqsave(&mapping->tree_lock, flags);
497 __delete_from_page_cache(old, NULL, memcg);
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700498 error = radix_tree_insert(&mapping->page_tree, offset, new);
499 BUG_ON(error);
500 mapping->nrpages++;
501 __inc_zone_page_state(new, NR_FILE_PAGES);
502 if (PageSwapBacked(new))
503 __inc_zone_page_state(new, NR_SHMEM);
Greg Thelenc4843a72015-05-22 17:13:16 -0400504 spin_unlock_irqrestore(&mapping->tree_lock, flags);
505 mem_cgroup_end_page_stat(memcg);
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700506 mem_cgroup_migrate(old, new, true);
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700507 radix_tree_preload_end();
508 if (freepage)
509 freepage(old);
510 page_cache_release(old);
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700511 }
512
513 return error;
514}
515EXPORT_SYMBOL_GPL(replace_page_cache_page);
516
Johannes Weiner0cd61442014-04-03 14:47:46 -0700517static int page_cache_tree_insert(struct address_space *mapping,
Johannes Weinera5289102014-04-03 14:47:51 -0700518 struct page *page, void **shadowp)
Johannes Weiner0cd61442014-04-03 14:47:46 -0700519{
Johannes Weiner449dd692014-04-03 14:47:56 -0700520 struct radix_tree_node *node;
Johannes Weiner0cd61442014-04-03 14:47:46 -0700521 void **slot;
522 int error;
523
Johannes Weiner449dd692014-04-03 14:47:56 -0700524 error = __radix_tree_create(&mapping->page_tree, page->index,
525 &node, &slot);
526 if (error)
527 return error;
528 if (*slot) {
Johannes Weiner0cd61442014-04-03 14:47:46 -0700529 void *p;
530
531 p = radix_tree_deref_slot_protected(slot, &mapping->tree_lock);
532 if (!radix_tree_exceptional_entry(p))
533 return -EEXIST;
Johannes Weinera5289102014-04-03 14:47:51 -0700534 if (shadowp)
535 *shadowp = p;
Johannes Weiner449dd692014-04-03 14:47:56 -0700536 mapping->nrshadows--;
537 if (node)
538 workingset_node_shadows_dec(node);
Johannes Weiner0cd61442014-04-03 14:47:46 -0700539 }
Johannes Weiner449dd692014-04-03 14:47:56 -0700540 radix_tree_replace_slot(slot, page);
541 mapping->nrpages++;
542 if (node) {
543 workingset_node_pages_inc(node);
544 /*
545 * Don't track node that contains actual pages.
546 *
547 * Avoid acquiring the list_lru lock if already
548 * untracked. The list_empty() test is safe as
549 * node->private_list is protected by
550 * mapping->tree_lock.
551 */
552 if (!list_empty(&node->private_list))
553 list_lru_del(&workingset_shadow_nodes,
554 &node->private_list);
555 }
556 return 0;
Johannes Weiner0cd61442014-04-03 14:47:46 -0700557}
558
Johannes Weinera5289102014-04-03 14:47:51 -0700559static int __add_to_page_cache_locked(struct page *page,
560 struct address_space *mapping,
561 pgoff_t offset, gfp_t gfp_mask,
562 void **shadowp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563{
Johannes Weiner00501b52014-08-08 14:19:20 -0700564 int huge = PageHuge(page);
565 struct mem_cgroup *memcg;
Nick Piggine2867812008-07-25 19:45:30 -0700566 int error;
567
Sasha Levin309381fea2014-01-23 15:52:54 -0800568 VM_BUG_ON_PAGE(!PageLocked(page), page);
569 VM_BUG_ON_PAGE(PageSwapBacked(page), page);
Nick Piggine2867812008-07-25 19:45:30 -0700570
Johannes Weiner00501b52014-08-08 14:19:20 -0700571 if (!huge) {
572 error = mem_cgroup_try_charge(page, current->mm,
573 gfp_mask, &memcg);
574 if (error)
575 return error;
576 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Jan Kara5e4c0d972013-09-11 14:26:05 -0700578 error = radix_tree_maybe_preload(gfp_mask & ~__GFP_HIGHMEM);
Kirill A. Shutemov66a0c8e2013-09-12 15:13:59 -0700579 if (error) {
Johannes Weiner00501b52014-08-08 14:19:20 -0700580 if (!huge)
581 mem_cgroup_cancel_charge(page, memcg);
Kirill A. Shutemov66a0c8e2013-09-12 15:13:59 -0700582 return error;
583 }
584
585 page_cache_get(page);
586 page->mapping = mapping;
587 page->index = offset;
588
589 spin_lock_irq(&mapping->tree_lock);
Johannes Weinera5289102014-04-03 14:47:51 -0700590 error = page_cache_tree_insert(mapping, page, shadowp);
Kirill A. Shutemov66a0c8e2013-09-12 15:13:59 -0700591 radix_tree_preload_end();
592 if (unlikely(error))
593 goto err_insert;
Kirill A. Shutemov66a0c8e2013-09-12 15:13:59 -0700594 __inc_zone_page_state(page, NR_FILE_PAGES);
595 spin_unlock_irq(&mapping->tree_lock);
Johannes Weiner00501b52014-08-08 14:19:20 -0700596 if (!huge)
597 mem_cgroup_commit_charge(page, memcg, false);
Kirill A. Shutemov66a0c8e2013-09-12 15:13:59 -0700598 trace_mm_filemap_add_to_page_cache(page);
599 return 0;
600err_insert:
601 page->mapping = NULL;
602 /* Leave page->index set: truncation relies upon it */
603 spin_unlock_irq(&mapping->tree_lock);
Johannes Weiner00501b52014-08-08 14:19:20 -0700604 if (!huge)
605 mem_cgroup_cancel_charge(page, memcg);
Kirill A. Shutemov66a0c8e2013-09-12 15:13:59 -0700606 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 return error;
608}
Johannes Weinera5289102014-04-03 14:47:51 -0700609
610/**
611 * add_to_page_cache_locked - add a locked page to the pagecache
612 * @page: page to add
613 * @mapping: the page's address_space
614 * @offset: page index
615 * @gfp_mask: page allocation mode
616 *
617 * This function is used to add a page to the pagecache. It must be locked.
618 * This function does not add the page to the LRU. The caller must do that.
619 */
620int add_to_page_cache_locked(struct page *page, struct address_space *mapping,
621 pgoff_t offset, gfp_t gfp_mask)
622{
623 return __add_to_page_cache_locked(page, mapping, offset,
624 gfp_mask, NULL);
625}
Nick Piggine2867812008-07-25 19:45:30 -0700626EXPORT_SYMBOL(add_to_page_cache_locked);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
628int add_to_page_cache_lru(struct page *page, struct address_space *mapping,
Al Viro6daa0e22005-10-21 03:18:50 -0400629 pgoff_t offset, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630{
Johannes Weinera5289102014-04-03 14:47:51 -0700631 void *shadow = NULL;
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700632 int ret;
633
Johannes Weinera5289102014-04-03 14:47:51 -0700634 __set_page_locked(page);
635 ret = __add_to_page_cache_locked(page, mapping, offset,
636 gfp_mask, &shadow);
637 if (unlikely(ret))
638 __clear_page_locked(page);
639 else {
640 /*
641 * The page might have been evicted from cache only
642 * recently, in which case it should be activated like
643 * any other repeatedly accessed page.
644 */
645 if (shadow && workingset_refault(shadow)) {
646 SetPageActive(page);
647 workingset_activation(page);
648 } else
649 ClearPageActive(page);
650 lru_cache_add(page);
651 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 return ret;
653}
Evgeniy Polyakov18bc0bb2009-02-09 17:02:42 +0300654EXPORT_SYMBOL_GPL(add_to_page_cache_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Paul Jackson44110fe2006-03-24 03:16:04 -0800656#ifdef CONFIG_NUMA
Nick Piggin2ae88142006-10-28 10:38:23 -0700657struct page *__page_cache_alloc(gfp_t gfp)
Paul Jackson44110fe2006-03-24 03:16:04 -0800658{
Miao Xiec0ff7452010-05-24 14:32:08 -0700659 int n;
660 struct page *page;
661
Paul Jackson44110fe2006-03-24 03:16:04 -0800662 if (cpuset_do_page_mem_spread()) {
Mel Gormancc9a6c82012-03-21 16:34:11 -0700663 unsigned int cpuset_mems_cookie;
664 do {
Mel Gormand26914d2014-04-03 14:47:24 -0700665 cpuset_mems_cookie = read_mems_allowed_begin();
Mel Gormancc9a6c82012-03-21 16:34:11 -0700666 n = cpuset_mem_spread_node();
667 page = alloc_pages_exact_node(n, gfp, 0);
Mel Gormand26914d2014-04-03 14:47:24 -0700668 } while (!page && read_mems_allowed_retry(cpuset_mems_cookie));
Mel Gormancc9a6c82012-03-21 16:34:11 -0700669
Miao Xiec0ff7452010-05-24 14:32:08 -0700670 return page;
Paul Jackson44110fe2006-03-24 03:16:04 -0800671 }
Nick Piggin2ae88142006-10-28 10:38:23 -0700672 return alloc_pages(gfp, 0);
Paul Jackson44110fe2006-03-24 03:16:04 -0800673}
Nick Piggin2ae88142006-10-28 10:38:23 -0700674EXPORT_SYMBOL(__page_cache_alloc);
Paul Jackson44110fe2006-03-24 03:16:04 -0800675#endif
676
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677/*
678 * In order to wait for pages to become available there must be
679 * waitqueues associated with pages. By using a hash table of
680 * waitqueues where the bucket discipline is to maintain all
681 * waiters on the same queue and wake all when any of the pages
682 * become available, and for the woken contexts to check to be
683 * sure the appropriate page became available, this saves space
684 * at a cost of "thundering herd" phenomena during rare hash
685 * collisions.
686 */
NeilBrowna4796e32014-09-24 11:28:32 +1000687wait_queue_head_t *page_waitqueue(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688{
689 const struct zone *zone = page_zone(page);
690
691 return &zone->wait_table[hash_ptr(page, zone->wait_table_bits)];
692}
NeilBrowna4796e32014-09-24 11:28:32 +1000693EXPORT_SYMBOL(page_waitqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Harvey Harrison920c7a52008-02-04 22:29:26 -0800695void wait_on_page_bit(struct page *page, int bit_nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696{
697 DEFINE_WAIT_BIT(wait, &page->flags, bit_nr);
698
699 if (test_bit(bit_nr, &page->flags))
NeilBrown74316202014-07-07 15:16:04 +1000700 __wait_on_bit(page_waitqueue(page), &wait, bit_wait_io,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 TASK_UNINTERRUPTIBLE);
702}
703EXPORT_SYMBOL(wait_on_page_bit);
704
KOSAKI Motohirof62e00c2011-05-24 17:11:29 -0700705int wait_on_page_bit_killable(struct page *page, int bit_nr)
706{
707 DEFINE_WAIT_BIT(wait, &page->flags, bit_nr);
708
709 if (!test_bit(bit_nr, &page->flags))
710 return 0;
711
712 return __wait_on_bit(page_waitqueue(page), &wait,
NeilBrown74316202014-07-07 15:16:04 +1000713 bit_wait_io, TASK_KILLABLE);
KOSAKI Motohirof62e00c2011-05-24 17:11:29 -0700714}
715
NeilBrowncbbce822014-09-25 13:55:19 +1000716int wait_on_page_bit_killable_timeout(struct page *page,
717 int bit_nr, unsigned long timeout)
718{
719 DEFINE_WAIT_BIT(wait, &page->flags, bit_nr);
720
721 wait.key.timeout = jiffies + timeout;
722 if (!test_bit(bit_nr, &page->flags))
723 return 0;
724 return __wait_on_bit(page_waitqueue(page), &wait,
725 bit_wait_io_timeout, TASK_KILLABLE);
726}
727EXPORT_SYMBOL_GPL(wait_on_page_bit_killable_timeout);
728
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729/**
David Howells385e1ca5f2009-04-03 16:42:39 +0100730 * add_page_wait_queue - Add an arbitrary waiter to a page's wait queue
Randy Dunlap697f6192009-04-13 14:39:54 -0700731 * @page: Page defining the wait queue of interest
732 * @waiter: Waiter to add to the queue
David Howells385e1ca5f2009-04-03 16:42:39 +0100733 *
734 * Add an arbitrary @waiter to the wait queue for the nominated @page.
735 */
736void add_page_wait_queue(struct page *page, wait_queue_t *waiter)
737{
738 wait_queue_head_t *q = page_waitqueue(page);
739 unsigned long flags;
740
741 spin_lock_irqsave(&q->lock, flags);
742 __add_wait_queue(q, waiter);
743 spin_unlock_irqrestore(&q->lock, flags);
744}
745EXPORT_SYMBOL_GPL(add_page_wait_queue);
746
747/**
Randy Dunlap485bb992006-06-23 02:03:49 -0700748 * unlock_page - unlock a locked page
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 * @page: the page
750 *
751 * Unlocks the page and wakes up sleepers in ___wait_on_page_locked().
752 * Also wakes sleepers in wait_on_page_writeback() because the wakeup
Masanari Iidada3dae52014-09-09 01:27:23 +0900753 * mechanism between PageLocked pages and PageWriteback pages is shared.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 * But that's OK - sleepers in wait_on_page_writeback() just go back to sleep.
755 *
Nick Piggin8413ac92008-10-18 20:26:59 -0700756 * The mb is necessary to enforce ordering between the clear_bit and the read
757 * of the waitqueue (to avoid SMP races with a parallel wait_on_page_locked()).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 */
Harvey Harrison920c7a52008-02-04 22:29:26 -0800759void unlock_page(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760{
Sasha Levin309381fea2014-01-23 15:52:54 -0800761 VM_BUG_ON_PAGE(!PageLocked(page), page);
Nick Piggin8413ac92008-10-18 20:26:59 -0700762 clear_bit_unlock(PG_locked, &page->flags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100763 smp_mb__after_atomic();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 wake_up_page(page, PG_locked);
765}
766EXPORT_SYMBOL(unlock_page);
767
Randy Dunlap485bb992006-06-23 02:03:49 -0700768/**
769 * end_page_writeback - end writeback against a page
770 * @page: the page
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 */
772void end_page_writeback(struct page *page)
773{
Mel Gorman888cf2d2014-06-04 16:10:34 -0700774 /*
775 * TestClearPageReclaim could be used here but it is an atomic
776 * operation and overkill in this particular case. Failing to
777 * shuffle a page marked for immediate reclaim is too mild to
778 * justify taking an atomic operation penalty at the end of
779 * ever page writeback.
780 */
781 if (PageReclaim(page)) {
782 ClearPageReclaim(page);
Miklos Szerediac6aadb2008-04-28 02:12:38 -0700783 rotate_reclaimable_page(page);
Mel Gorman888cf2d2014-06-04 16:10:34 -0700784 }
Miklos Szerediac6aadb2008-04-28 02:12:38 -0700785
786 if (!test_clear_page_writeback(page))
787 BUG();
788
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100789 smp_mb__after_atomic();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 wake_up_page(page, PG_writeback);
791}
792EXPORT_SYMBOL(end_page_writeback);
793
Matthew Wilcox57d99842014-06-04 16:07:45 -0700794/*
795 * After completing I/O on a page, call this routine to update the page
796 * flags appropriately
797 */
798void page_endio(struct page *page, int rw, int err)
799{
800 if (rw == READ) {
801 if (!err) {
802 SetPageUptodate(page);
803 } else {
804 ClearPageUptodate(page);
805 SetPageError(page);
806 }
807 unlock_page(page);
808 } else { /* rw == WRITE */
809 if (err) {
810 SetPageError(page);
811 if (page->mapping)
812 mapping_set_error(page->mapping, err);
813 }
814 end_page_writeback(page);
815 }
816}
817EXPORT_SYMBOL_GPL(page_endio);
818
Randy Dunlap485bb992006-06-23 02:03:49 -0700819/**
820 * __lock_page - get a lock on the page, assuming we need to sleep to get it
821 * @page: the page to lock
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 */
Harvey Harrison920c7a52008-02-04 22:29:26 -0800823void __lock_page(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824{
825 DEFINE_WAIT_BIT(wait, &page->flags, PG_locked);
826
NeilBrown74316202014-07-07 15:16:04 +1000827 __wait_on_bit_lock(page_waitqueue(page), &wait, bit_wait_io,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 TASK_UNINTERRUPTIBLE);
829}
830EXPORT_SYMBOL(__lock_page);
831
Harvey Harrisonb5606c22008-02-13 15:03:16 -0800832int __lock_page_killable(struct page *page)
Matthew Wilcox2687a352007-12-06 11:18:49 -0500833{
834 DEFINE_WAIT_BIT(wait, &page->flags, PG_locked);
835
836 return __wait_on_bit_lock(page_waitqueue(page), &wait,
NeilBrown74316202014-07-07 15:16:04 +1000837 bit_wait_io, TASK_KILLABLE);
Matthew Wilcox2687a352007-12-06 11:18:49 -0500838}
Evgeniy Polyakov18bc0bb2009-02-09 17:02:42 +0300839EXPORT_SYMBOL_GPL(__lock_page_killable);
Matthew Wilcox2687a352007-12-06 11:18:49 -0500840
Paul Cassella9a95f3c2014-08-06 16:07:24 -0700841/*
842 * Return values:
843 * 1 - page is locked; mmap_sem is still held.
844 * 0 - page is not locked.
845 * mmap_sem has been released (up_read()), unless flags had both
846 * FAULT_FLAG_ALLOW_RETRY and FAULT_FLAG_RETRY_NOWAIT set, in
847 * which case mmap_sem is still held.
848 *
849 * If neither ALLOW_RETRY nor KILLABLE are set, will always return 1
850 * with the page locked and the mmap_sem unperturbed.
851 */
Michel Lespinassed065bd82010-10-26 14:21:57 -0700852int __lock_page_or_retry(struct page *page, struct mm_struct *mm,
853 unsigned int flags)
854{
KOSAKI Motohiro37b23e02011-05-24 17:11:30 -0700855 if (flags & FAULT_FLAG_ALLOW_RETRY) {
856 /*
857 * CAUTION! In this case, mmap_sem is not released
858 * even though return 0.
859 */
860 if (flags & FAULT_FLAG_RETRY_NOWAIT)
861 return 0;
862
863 up_read(&mm->mmap_sem);
864 if (flags & FAULT_FLAG_KILLABLE)
865 wait_on_page_locked_killable(page);
866 else
Gleb Natapov318b2752011-03-22 16:30:51 -0700867 wait_on_page_locked(page);
Michel Lespinassed065bd82010-10-26 14:21:57 -0700868 return 0;
KOSAKI Motohiro37b23e02011-05-24 17:11:30 -0700869 } else {
870 if (flags & FAULT_FLAG_KILLABLE) {
871 int ret;
872
873 ret = __lock_page_killable(page);
874 if (ret) {
875 up_read(&mm->mmap_sem);
876 return 0;
877 }
878 } else
879 __lock_page(page);
880 return 1;
Michel Lespinassed065bd82010-10-26 14:21:57 -0700881 }
882}
883
Randy Dunlap485bb992006-06-23 02:03:49 -0700884/**
Johannes Weinere7b563b2014-04-03 14:47:44 -0700885 * page_cache_next_hole - find the next hole (not-present entry)
886 * @mapping: mapping
887 * @index: index
888 * @max_scan: maximum range to search
889 *
890 * Search the set [index, min(index+max_scan-1, MAX_INDEX)] for the
891 * lowest indexed hole.
892 *
893 * Returns: the index of the hole if found, otherwise returns an index
894 * outside of the set specified (in which case 'return - index >=
895 * max_scan' will be true). In rare cases of index wrap-around, 0 will
896 * be returned.
897 *
898 * page_cache_next_hole may be called under rcu_read_lock. However,
899 * like radix_tree_gang_lookup, this will not atomically search a
900 * snapshot of the tree at a single point in time. For example, if a
901 * hole is created at index 5, then subsequently a hole is created at
902 * index 10, page_cache_next_hole covering both indexes may return 10
903 * if called under rcu_read_lock.
904 */
905pgoff_t page_cache_next_hole(struct address_space *mapping,
906 pgoff_t index, unsigned long max_scan)
907{
908 unsigned long i;
909
910 for (i = 0; i < max_scan; i++) {
Johannes Weiner0cd61442014-04-03 14:47:46 -0700911 struct page *page;
912
913 page = radix_tree_lookup(&mapping->page_tree, index);
914 if (!page || radix_tree_exceptional_entry(page))
Johannes Weinere7b563b2014-04-03 14:47:44 -0700915 break;
916 index++;
917 if (index == 0)
918 break;
919 }
920
921 return index;
922}
923EXPORT_SYMBOL(page_cache_next_hole);
924
925/**
926 * page_cache_prev_hole - find the prev hole (not-present entry)
927 * @mapping: mapping
928 * @index: index
929 * @max_scan: maximum range to search
930 *
931 * Search backwards in the range [max(index-max_scan+1, 0), index] for
932 * the first hole.
933 *
934 * Returns: the index of the hole if found, otherwise returns an index
935 * outside of the set specified (in which case 'index - return >=
936 * max_scan' will be true). In rare cases of wrap-around, ULONG_MAX
937 * will be returned.
938 *
939 * page_cache_prev_hole may be called under rcu_read_lock. However,
940 * like radix_tree_gang_lookup, this will not atomically search a
941 * snapshot of the tree at a single point in time. For example, if a
942 * hole is created at index 10, then subsequently a hole is created at
943 * index 5, page_cache_prev_hole covering both indexes may return 5 if
944 * called under rcu_read_lock.
945 */
946pgoff_t page_cache_prev_hole(struct address_space *mapping,
947 pgoff_t index, unsigned long max_scan)
948{
949 unsigned long i;
950
951 for (i = 0; i < max_scan; i++) {
Johannes Weiner0cd61442014-04-03 14:47:46 -0700952 struct page *page;
953
954 page = radix_tree_lookup(&mapping->page_tree, index);
955 if (!page || radix_tree_exceptional_entry(page))
Johannes Weinere7b563b2014-04-03 14:47:44 -0700956 break;
957 index--;
958 if (index == ULONG_MAX)
959 break;
960 }
961
962 return index;
963}
964EXPORT_SYMBOL(page_cache_prev_hole);
965
966/**
Johannes Weiner0cd61442014-04-03 14:47:46 -0700967 * find_get_entry - find and get a page cache entry
Randy Dunlap485bb992006-06-23 02:03:49 -0700968 * @mapping: the address_space to search
Johannes Weiner0cd61442014-04-03 14:47:46 -0700969 * @offset: the page cache index
Randy Dunlap485bb992006-06-23 02:03:49 -0700970 *
Johannes Weiner0cd61442014-04-03 14:47:46 -0700971 * Looks up the page cache slot at @mapping & @offset. If there is a
972 * page cache page, it is returned with an increased refcount.
973 *
Johannes Weiner139b6a62014-05-06 12:50:05 -0700974 * If the slot holds a shadow entry of a previously evicted page, or a
975 * swap entry from shmem/tmpfs, it is returned.
Johannes Weiner0cd61442014-04-03 14:47:46 -0700976 *
977 * Otherwise, %NULL is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 */
Johannes Weiner0cd61442014-04-03 14:47:46 -0700979struct page *find_get_entry(struct address_space *mapping, pgoff_t offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980{
Nick Piggina60637c2008-07-25 19:45:31 -0700981 void **pagep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 struct page *page;
983
Nick Piggina60637c2008-07-25 19:45:31 -0700984 rcu_read_lock();
985repeat:
986 page = NULL;
987 pagep = radix_tree_lookup_slot(&mapping->page_tree, offset);
988 if (pagep) {
989 page = radix_tree_deref_slot(pagep);
Nick Piggin27d20fd2010-11-11 14:05:19 -0800990 if (unlikely(!page))
991 goto out;
Hugh Dickinsa2c16d62011-08-03 16:21:19 -0700992 if (radix_tree_exception(page)) {
Hugh Dickins8079b1c2011-08-03 16:21:28 -0700993 if (radix_tree_deref_retry(page))
994 goto repeat;
995 /*
Johannes Weiner139b6a62014-05-06 12:50:05 -0700996 * A shadow entry of a recently evicted page,
997 * or a swap entry from shmem/tmpfs. Return
998 * it without attempting to raise page count.
Hugh Dickins8079b1c2011-08-03 16:21:28 -0700999 */
1000 goto out;
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001001 }
Nick Piggina60637c2008-07-25 19:45:31 -07001002 if (!page_cache_get_speculative(page))
1003 goto repeat;
1004
1005 /*
1006 * Has the page moved?
1007 * This is part of the lockless pagecache protocol. See
1008 * include/linux/pagemap.h for details.
1009 */
1010 if (unlikely(page != *pagep)) {
1011 page_cache_release(page);
1012 goto repeat;
1013 }
1014 }
Nick Piggin27d20fd2010-11-11 14:05:19 -08001015out:
Nick Piggina60637c2008-07-25 19:45:31 -07001016 rcu_read_unlock();
1017
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 return page;
1019}
Johannes Weiner0cd61442014-04-03 14:47:46 -07001020EXPORT_SYMBOL(find_get_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
Randy Dunlap485bb992006-06-23 02:03:49 -07001022/**
Johannes Weiner0cd61442014-04-03 14:47:46 -07001023 * find_lock_entry - locate, pin and lock a page cache entry
1024 * @mapping: the address_space to search
1025 * @offset: the page cache index
1026 *
1027 * Looks up the page cache slot at @mapping & @offset. If there is a
1028 * page cache page, it is returned locked and with an increased
1029 * refcount.
1030 *
Johannes Weiner139b6a62014-05-06 12:50:05 -07001031 * If the slot holds a shadow entry of a previously evicted page, or a
1032 * swap entry from shmem/tmpfs, it is returned.
Johannes Weiner0cd61442014-04-03 14:47:46 -07001033 *
1034 * Otherwise, %NULL is returned.
1035 *
1036 * find_lock_entry() may sleep.
1037 */
1038struct page *find_lock_entry(struct address_space *mapping, pgoff_t offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039{
1040 struct page *page;
1041
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042repeat:
Johannes Weiner0cd61442014-04-03 14:47:46 -07001043 page = find_get_entry(mapping, offset);
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001044 if (page && !radix_tree_exception(page)) {
Nick Piggina60637c2008-07-25 19:45:31 -07001045 lock_page(page);
1046 /* Has the page been truncated? */
1047 if (unlikely(page->mapping != mapping)) {
1048 unlock_page(page);
1049 page_cache_release(page);
1050 goto repeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 }
Sasha Levin309381fea2014-01-23 15:52:54 -08001052 VM_BUG_ON_PAGE(page->index != offset, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 return page;
1055}
Johannes Weiner0cd61442014-04-03 14:47:46 -07001056EXPORT_SYMBOL(find_lock_entry);
1057
1058/**
Mel Gorman2457aec2014-06-04 16:10:31 -07001059 * pagecache_get_page - find and get a page reference
Johannes Weiner0cd61442014-04-03 14:47:46 -07001060 * @mapping: the address_space to search
1061 * @offset: the page index
Mel Gorman2457aec2014-06-04 16:10:31 -07001062 * @fgp_flags: PCG flags
Michal Hocko45f87de2014-12-29 20:30:35 +01001063 * @gfp_mask: gfp mask to use for the page cache data page allocation
Johannes Weiner0cd61442014-04-03 14:47:46 -07001064 *
Mel Gorman2457aec2014-06-04 16:10:31 -07001065 * Looks up the page cache slot at @mapping & @offset.
Johannes Weiner0cd61442014-04-03 14:47:46 -07001066 *
Randy Dunlap75325182014-07-30 16:08:37 -07001067 * PCG flags modify how the page is returned.
Johannes Weiner0cd61442014-04-03 14:47:46 -07001068 *
Mel Gorman2457aec2014-06-04 16:10:31 -07001069 * FGP_ACCESSED: the page will be marked accessed
1070 * FGP_LOCK: Page is return locked
1071 * FGP_CREAT: If page is not present then a new page is allocated using
Michal Hocko45f87de2014-12-29 20:30:35 +01001072 * @gfp_mask and added to the page cache and the VM's LRU
1073 * list. The page is returned locked and with an increased
1074 * refcount. Otherwise, %NULL is returned.
Mel Gorman2457aec2014-06-04 16:10:31 -07001075 *
1076 * If FGP_LOCK or FGP_CREAT are specified then the function may sleep even
1077 * if the GFP flags specified for FGP_CREAT are atomic.
1078 *
1079 * If there is a page cache page, it is returned with an increased refcount.
Johannes Weiner0cd61442014-04-03 14:47:46 -07001080 */
Mel Gorman2457aec2014-06-04 16:10:31 -07001081struct page *pagecache_get_page(struct address_space *mapping, pgoff_t offset,
Michal Hocko45f87de2014-12-29 20:30:35 +01001082 int fgp_flags, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083{
Nick Piggineb2be182007-10-16 01:24:57 -07001084 struct page *page;
Mel Gorman2457aec2014-06-04 16:10:31 -07001085
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086repeat:
Mel Gorman2457aec2014-06-04 16:10:31 -07001087 page = find_get_entry(mapping, offset);
1088 if (radix_tree_exceptional_entry(page))
1089 page = NULL;
1090 if (!page)
1091 goto no_page;
1092
1093 if (fgp_flags & FGP_LOCK) {
1094 if (fgp_flags & FGP_NOWAIT) {
1095 if (!trylock_page(page)) {
1096 page_cache_release(page);
1097 return NULL;
1098 }
1099 } else {
1100 lock_page(page);
1101 }
1102
1103 /* Has the page been truncated? */
1104 if (unlikely(page->mapping != mapping)) {
1105 unlock_page(page);
1106 page_cache_release(page);
1107 goto repeat;
1108 }
1109 VM_BUG_ON_PAGE(page->index != offset, page);
1110 }
1111
1112 if (page && (fgp_flags & FGP_ACCESSED))
1113 mark_page_accessed(page);
1114
1115no_page:
1116 if (!page && (fgp_flags & FGP_CREAT)) {
1117 int err;
1118 if ((fgp_flags & FGP_WRITE) && mapping_cap_account_dirty(mapping))
Michal Hocko45f87de2014-12-29 20:30:35 +01001119 gfp_mask |= __GFP_WRITE;
1120 if (fgp_flags & FGP_NOFS)
1121 gfp_mask &= ~__GFP_FS;
Mel Gorman2457aec2014-06-04 16:10:31 -07001122
Michal Hocko45f87de2014-12-29 20:30:35 +01001123 page = __page_cache_alloc(gfp_mask);
Nick Piggineb2be182007-10-16 01:24:57 -07001124 if (!page)
1125 return NULL;
Mel Gorman2457aec2014-06-04 16:10:31 -07001126
1127 if (WARN_ON_ONCE(!(fgp_flags & FGP_LOCK)))
1128 fgp_flags |= FGP_LOCK;
1129
Hugh Dickinseb39d612014-08-06 16:06:43 -07001130 /* Init accessed so avoid atomic mark_page_accessed later */
Mel Gorman2457aec2014-06-04 16:10:31 -07001131 if (fgp_flags & FGP_ACCESSED)
Hugh Dickinseb39d612014-08-06 16:06:43 -07001132 __SetPageReferenced(page);
Mel Gorman2457aec2014-06-04 16:10:31 -07001133
Michal Hocko45f87de2014-12-29 20:30:35 +01001134 err = add_to_page_cache_lru(page, mapping, offset,
1135 gfp_mask & GFP_RECLAIM_MASK);
Nick Piggineb2be182007-10-16 01:24:57 -07001136 if (unlikely(err)) {
1137 page_cache_release(page);
1138 page = NULL;
1139 if (err == -EEXIST)
1140 goto repeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 }
Mel Gorman2457aec2014-06-04 16:10:31 -07001143
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 return page;
1145}
Mel Gorman2457aec2014-06-04 16:10:31 -07001146EXPORT_SYMBOL(pagecache_get_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
1148/**
Johannes Weiner0cd61442014-04-03 14:47:46 -07001149 * find_get_entries - gang pagecache lookup
1150 * @mapping: The address_space to search
1151 * @start: The starting page cache index
1152 * @nr_entries: The maximum number of entries
1153 * @entries: Where the resulting entries are placed
1154 * @indices: The cache indices corresponding to the entries in @entries
1155 *
1156 * find_get_entries() will search for and return a group of up to
1157 * @nr_entries entries in the mapping. The entries are placed at
1158 * @entries. find_get_entries() takes a reference against any actual
1159 * pages it returns.
1160 *
1161 * The search returns a group of mapping-contiguous page cache entries
1162 * with ascending indexes. There may be holes in the indices due to
1163 * not-present pages.
1164 *
Johannes Weiner139b6a62014-05-06 12:50:05 -07001165 * Any shadow entries of evicted pages, or swap entries from
1166 * shmem/tmpfs, are included in the returned array.
Johannes Weiner0cd61442014-04-03 14:47:46 -07001167 *
1168 * find_get_entries() returns the number of pages and shadow entries
1169 * which were found.
1170 */
1171unsigned find_get_entries(struct address_space *mapping,
1172 pgoff_t start, unsigned int nr_entries,
1173 struct page **entries, pgoff_t *indices)
1174{
1175 void **slot;
1176 unsigned int ret = 0;
1177 struct radix_tree_iter iter;
1178
1179 if (!nr_entries)
1180 return 0;
1181
1182 rcu_read_lock();
1183restart:
1184 radix_tree_for_each_slot(slot, &mapping->page_tree, &iter, start) {
1185 struct page *page;
1186repeat:
1187 page = radix_tree_deref_slot(slot);
1188 if (unlikely(!page))
1189 continue;
1190 if (radix_tree_exception(page)) {
1191 if (radix_tree_deref_retry(page))
1192 goto restart;
1193 /*
Johannes Weiner139b6a62014-05-06 12:50:05 -07001194 * A shadow entry of a recently evicted page,
1195 * or a swap entry from shmem/tmpfs. Return
1196 * it without attempting to raise page count.
Johannes Weiner0cd61442014-04-03 14:47:46 -07001197 */
1198 goto export;
1199 }
1200 if (!page_cache_get_speculative(page))
1201 goto repeat;
1202
1203 /* Has the page moved? */
1204 if (unlikely(page != *slot)) {
1205 page_cache_release(page);
1206 goto repeat;
1207 }
1208export:
1209 indices[ret] = iter.index;
1210 entries[ret] = page;
1211 if (++ret == nr_entries)
1212 break;
1213 }
1214 rcu_read_unlock();
1215 return ret;
1216}
1217
1218/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 * find_get_pages - gang pagecache lookup
1220 * @mapping: The address_space to search
1221 * @start: The starting page index
1222 * @nr_pages: The maximum number of pages
1223 * @pages: Where the resulting pages are placed
1224 *
1225 * find_get_pages() will search for and return a group of up to
1226 * @nr_pages pages in the mapping. The pages are placed at @pages.
1227 * find_get_pages() takes a reference against the returned pages.
1228 *
1229 * The search returns a group of mapping-contiguous pages with ascending
1230 * indexes. There may be holes in the indices due to not-present pages.
1231 *
1232 * find_get_pages() returns the number of pages which were found.
1233 */
1234unsigned find_get_pages(struct address_space *mapping, pgoff_t start,
1235 unsigned int nr_pages, struct page **pages)
1236{
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001237 struct radix_tree_iter iter;
1238 void **slot;
1239 unsigned ret = 0;
1240
1241 if (unlikely(!nr_pages))
1242 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243
Nick Piggina60637c2008-07-25 19:45:31 -07001244 rcu_read_lock();
1245restart:
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001246 radix_tree_for_each_slot(slot, &mapping->page_tree, &iter, start) {
Nick Piggina60637c2008-07-25 19:45:31 -07001247 struct page *page;
1248repeat:
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001249 page = radix_tree_deref_slot(slot);
Nick Piggina60637c2008-07-25 19:45:31 -07001250 if (unlikely(!page))
1251 continue;
Hugh Dickins9d8aa4e2011-03-22 16:33:06 -07001252
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001253 if (radix_tree_exception(page)) {
Hugh Dickins8079b1c2011-08-03 16:21:28 -07001254 if (radix_tree_deref_retry(page)) {
1255 /*
1256 * Transient condition which can only trigger
1257 * when entry at index 0 moves out of or back
1258 * to root: none yet gotten, safe to restart.
1259 */
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001260 WARN_ON(iter.index);
Hugh Dickins8079b1c2011-08-03 16:21:28 -07001261 goto restart;
1262 }
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001263 /*
Johannes Weiner139b6a62014-05-06 12:50:05 -07001264 * A shadow entry of a recently evicted page,
1265 * or a swap entry from shmem/tmpfs. Skip
1266 * over it.
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001267 */
Hugh Dickins8079b1c2011-08-03 16:21:28 -07001268 continue;
Nick Piggin27d20fd2010-11-11 14:05:19 -08001269 }
Nick Piggina60637c2008-07-25 19:45:31 -07001270
1271 if (!page_cache_get_speculative(page))
1272 goto repeat;
1273
1274 /* Has the page moved? */
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001275 if (unlikely(page != *slot)) {
Nick Piggina60637c2008-07-25 19:45:31 -07001276 page_cache_release(page);
1277 goto repeat;
1278 }
1279
1280 pages[ret] = page;
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001281 if (++ret == nr_pages)
1282 break;
Nick Piggina60637c2008-07-25 19:45:31 -07001283 }
Hugh Dickins5b280c02011-03-22 16:33:07 -07001284
Nick Piggina60637c2008-07-25 19:45:31 -07001285 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 return ret;
1287}
1288
Jens Axboeebf43502006-04-27 08:46:01 +02001289/**
1290 * find_get_pages_contig - gang contiguous pagecache lookup
1291 * @mapping: The address_space to search
1292 * @index: The starting page index
1293 * @nr_pages: The maximum number of pages
1294 * @pages: Where the resulting pages are placed
1295 *
1296 * find_get_pages_contig() works exactly like find_get_pages(), except
1297 * that the returned number of pages are guaranteed to be contiguous.
1298 *
1299 * find_get_pages_contig() returns the number of pages which were found.
1300 */
1301unsigned find_get_pages_contig(struct address_space *mapping, pgoff_t index,
1302 unsigned int nr_pages, struct page **pages)
1303{
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001304 struct radix_tree_iter iter;
1305 void **slot;
1306 unsigned int ret = 0;
1307
1308 if (unlikely(!nr_pages))
1309 return 0;
Jens Axboeebf43502006-04-27 08:46:01 +02001310
Nick Piggina60637c2008-07-25 19:45:31 -07001311 rcu_read_lock();
1312restart:
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001313 radix_tree_for_each_contig(slot, &mapping->page_tree, &iter, index) {
Nick Piggina60637c2008-07-25 19:45:31 -07001314 struct page *page;
1315repeat:
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001316 page = radix_tree_deref_slot(slot);
1317 /* The hole, there no reason to continue */
Nick Piggina60637c2008-07-25 19:45:31 -07001318 if (unlikely(!page))
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001319 break;
Hugh Dickins9d8aa4e2011-03-22 16:33:06 -07001320
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001321 if (radix_tree_exception(page)) {
Hugh Dickins8079b1c2011-08-03 16:21:28 -07001322 if (radix_tree_deref_retry(page)) {
1323 /*
1324 * Transient condition which can only trigger
1325 * when entry at index 0 moves out of or back
1326 * to root: none yet gotten, safe to restart.
1327 */
1328 goto restart;
1329 }
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001330 /*
Johannes Weiner139b6a62014-05-06 12:50:05 -07001331 * A shadow entry of a recently evicted page,
1332 * or a swap entry from shmem/tmpfs. Stop
1333 * looking for contiguous pages.
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001334 */
Hugh Dickins8079b1c2011-08-03 16:21:28 -07001335 break;
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001336 }
Nick Piggina60637c2008-07-25 19:45:31 -07001337
Nick Piggina60637c2008-07-25 19:45:31 -07001338 if (!page_cache_get_speculative(page))
1339 goto repeat;
1340
1341 /* Has the page moved? */
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001342 if (unlikely(page != *slot)) {
Nick Piggina60637c2008-07-25 19:45:31 -07001343 page_cache_release(page);
1344 goto repeat;
1345 }
1346
Nick Piggin9cbb4cb2011-01-13 15:45:51 -08001347 /*
1348 * must check mapping and index after taking the ref.
1349 * otherwise we can get both false positives and false
1350 * negatives, which is just confusing to the caller.
1351 */
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001352 if (page->mapping == NULL || page->index != iter.index) {
Nick Piggin9cbb4cb2011-01-13 15:45:51 -08001353 page_cache_release(page);
1354 break;
1355 }
1356
Nick Piggina60637c2008-07-25 19:45:31 -07001357 pages[ret] = page;
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001358 if (++ret == nr_pages)
1359 break;
Jens Axboeebf43502006-04-27 08:46:01 +02001360 }
Nick Piggina60637c2008-07-25 19:45:31 -07001361 rcu_read_unlock();
1362 return ret;
Jens Axboeebf43502006-04-27 08:46:01 +02001363}
David Howellsef71c152007-05-09 02:33:44 -07001364EXPORT_SYMBOL(find_get_pages_contig);
Jens Axboeebf43502006-04-27 08:46:01 +02001365
Randy Dunlap485bb992006-06-23 02:03:49 -07001366/**
1367 * find_get_pages_tag - find and return pages that match @tag
1368 * @mapping: the address_space to search
1369 * @index: the starting page index
1370 * @tag: the tag index
1371 * @nr_pages: the maximum number of pages
1372 * @pages: where the resulting pages are placed
1373 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 * Like find_get_pages, except we only return pages which are tagged with
Randy Dunlap485bb992006-06-23 02:03:49 -07001375 * @tag. We update @index to index the next page for the traversal.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 */
1377unsigned find_get_pages_tag(struct address_space *mapping, pgoff_t *index,
1378 int tag, unsigned int nr_pages, struct page **pages)
1379{
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001380 struct radix_tree_iter iter;
1381 void **slot;
1382 unsigned ret = 0;
1383
1384 if (unlikely(!nr_pages))
1385 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
Nick Piggina60637c2008-07-25 19:45:31 -07001387 rcu_read_lock();
1388restart:
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001389 radix_tree_for_each_tagged(slot, &mapping->page_tree,
1390 &iter, *index, tag) {
Nick Piggina60637c2008-07-25 19:45:31 -07001391 struct page *page;
1392repeat:
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001393 page = radix_tree_deref_slot(slot);
Nick Piggina60637c2008-07-25 19:45:31 -07001394 if (unlikely(!page))
1395 continue;
Hugh Dickins9d8aa4e2011-03-22 16:33:06 -07001396
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001397 if (radix_tree_exception(page)) {
Hugh Dickins8079b1c2011-08-03 16:21:28 -07001398 if (radix_tree_deref_retry(page)) {
1399 /*
1400 * Transient condition which can only trigger
1401 * when entry at index 0 moves out of or back
1402 * to root: none yet gotten, safe to restart.
1403 */
1404 goto restart;
1405 }
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001406 /*
Johannes Weiner139b6a62014-05-06 12:50:05 -07001407 * A shadow entry of a recently evicted page.
1408 *
1409 * Those entries should never be tagged, but
1410 * this tree walk is lockless and the tags are
1411 * looked up in bulk, one radix tree node at a
1412 * time, so there is a sizable window for page
1413 * reclaim to evict a page we saw tagged.
1414 *
1415 * Skip over it.
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001416 */
Johannes Weiner139b6a62014-05-06 12:50:05 -07001417 continue;
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001418 }
Nick Piggina60637c2008-07-25 19:45:31 -07001419
1420 if (!page_cache_get_speculative(page))
1421 goto repeat;
1422
1423 /* Has the page moved? */
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001424 if (unlikely(page != *slot)) {
Nick Piggina60637c2008-07-25 19:45:31 -07001425 page_cache_release(page);
1426 goto repeat;
1427 }
1428
1429 pages[ret] = page;
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001430 if (++ret == nr_pages)
1431 break;
Nick Piggina60637c2008-07-25 19:45:31 -07001432 }
Hugh Dickins5b280c02011-03-22 16:33:07 -07001433
Nick Piggina60637c2008-07-25 19:45:31 -07001434 rcu_read_unlock();
1435
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 if (ret)
1437 *index = pages[ret - 1]->index + 1;
Nick Piggina60637c2008-07-25 19:45:31 -07001438
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 return ret;
1440}
David Howellsef71c152007-05-09 02:33:44 -07001441EXPORT_SYMBOL(find_get_pages_tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
Wu Fengguang76d42bd2006-06-25 05:48:43 -07001443/*
1444 * CD/DVDs are error prone. When a medium error occurs, the driver may fail
1445 * a _large_ part of the i/o request. Imagine the worst scenario:
1446 *
1447 * ---R__________________________________________B__________
1448 * ^ reading here ^ bad block(assume 4k)
1449 *
1450 * read(R) => miss => readahead(R...B) => media error => frustrating retries
1451 * => failing the whole request => read(R) => read(R+1) =>
1452 * readahead(R+1...B+1) => bang => read(R+2) => read(R+3) =>
1453 * readahead(R+3...B+2) => bang => read(R+3) => read(R+4) =>
1454 * readahead(R+4...B+3) => bang => read(R+4) => read(R+5) => ......
1455 *
1456 * It is going insane. Fix it by quickly scaling down the readahead size.
1457 */
1458static void shrink_readahead_size_eio(struct file *filp,
1459 struct file_ra_state *ra)
1460{
Wu Fengguang76d42bd2006-06-25 05:48:43 -07001461 ra->ra_pages /= 4;
Wu Fengguang76d42bd2006-06-25 05:48:43 -07001462}
1463
Randy Dunlap485bb992006-06-23 02:03:49 -07001464/**
Christoph Hellwig36e78912008-02-08 04:21:24 -08001465 * do_generic_file_read - generic file read routine
Randy Dunlap485bb992006-06-23 02:03:49 -07001466 * @filp: the file to read
1467 * @ppos: current file position
Al Viro6e58e792014-02-03 17:07:03 -05001468 * @iter: data destination
1469 * @written: already copied
Randy Dunlap485bb992006-06-23 02:03:49 -07001470 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 * This is a generic file read routine, and uses the
Randy Dunlap485bb992006-06-23 02:03:49 -07001472 * mapping->a_ops->readpage() function for the actual low-level stuff.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 *
1474 * This is really ugly. But the goto's actually try to clarify some
1475 * of the logic when it comes to error handling etc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 */
Al Viro6e58e792014-02-03 17:07:03 -05001477static ssize_t do_generic_file_read(struct file *filp, loff_t *ppos,
1478 struct iov_iter *iter, ssize_t written)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479{
Christoph Hellwig36e78912008-02-08 04:21:24 -08001480 struct address_space *mapping = filp->f_mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 struct inode *inode = mapping->host;
Christoph Hellwig36e78912008-02-08 04:21:24 -08001482 struct file_ra_state *ra = &filp->f_ra;
Fengguang Wu57f6b962007-10-16 01:24:37 -07001483 pgoff_t index;
1484 pgoff_t last_index;
1485 pgoff_t prev_index;
1486 unsigned long offset; /* offset into pagecache page */
Jan Karaec0f1632007-05-06 14:49:25 -07001487 unsigned int prev_offset;
Al Viro6e58e792014-02-03 17:07:03 -05001488 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 index = *ppos >> PAGE_CACHE_SHIFT;
Fengguang Wu7ff81072007-10-16 01:24:35 -07001491 prev_index = ra->prev_pos >> PAGE_CACHE_SHIFT;
1492 prev_offset = ra->prev_pos & (PAGE_CACHE_SIZE-1);
Al Viro6e58e792014-02-03 17:07:03 -05001493 last_index = (*ppos + iter->count + PAGE_CACHE_SIZE-1) >> PAGE_CACHE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 offset = *ppos & ~PAGE_CACHE_MASK;
1495
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 for (;;) {
1497 struct page *page;
Fengguang Wu57f6b962007-10-16 01:24:37 -07001498 pgoff_t end_index;
NeilBrowna32ea1e2007-07-17 04:03:04 -07001499 loff_t isize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 unsigned long nr, ret;
1501
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503find_page:
1504 page = find_get_page(mapping, index);
Fengguang Wu3ea89ee2007-07-19 01:48:02 -07001505 if (!page) {
Rusty Russellcf914a72007-07-19 01:48:08 -07001506 page_cache_sync_readahead(mapping,
Fengguang Wu7ff81072007-10-16 01:24:35 -07001507 ra, filp,
Fengguang Wu3ea89ee2007-07-19 01:48:02 -07001508 index, last_index - index);
1509 page = find_get_page(mapping, index);
1510 if (unlikely(page == NULL))
1511 goto no_cached_page;
1512 }
1513 if (PageReadahead(page)) {
Rusty Russellcf914a72007-07-19 01:48:08 -07001514 page_cache_async_readahead(mapping,
Fengguang Wu7ff81072007-10-16 01:24:35 -07001515 ra, filp, page,
Fengguang Wu3ea89ee2007-07-19 01:48:02 -07001516 index, last_index - index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 }
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07001518 if (!PageUptodate(page)) {
1519 if (inode->i_blkbits == PAGE_CACHE_SHIFT ||
1520 !mapping->a_ops->is_partially_uptodate)
1521 goto page_not_up_to_date;
Nick Piggin529ae9a2008-08-02 12:01:03 +02001522 if (!trylock_page(page))
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07001523 goto page_not_up_to_date;
Dave Hansen8d056cb2010-11-11 14:05:15 -08001524 /* Did it get truncated before we got the lock? */
1525 if (!page->mapping)
1526 goto page_not_up_to_date_locked;
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07001527 if (!mapping->a_ops->is_partially_uptodate(page,
Al Viro6e58e792014-02-03 17:07:03 -05001528 offset, iter->count))
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07001529 goto page_not_up_to_date_locked;
1530 unlock_page(page);
1531 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532page_ok:
NeilBrowna32ea1e2007-07-17 04:03:04 -07001533 /*
1534 * i_size must be checked after we know the page is Uptodate.
1535 *
1536 * Checking i_size after the check allows us to calculate
1537 * the correct value for "nr", which means the zero-filled
1538 * part of the page is not copied back to userspace (unless
1539 * another truncate extends the file - this is desired though).
1540 */
1541
1542 isize = i_size_read(inode);
1543 end_index = (isize - 1) >> PAGE_CACHE_SHIFT;
1544 if (unlikely(!isize || index > end_index)) {
1545 page_cache_release(page);
1546 goto out;
1547 }
1548
1549 /* nr is the maximum number of bytes to copy from this page */
1550 nr = PAGE_CACHE_SIZE;
1551 if (index == end_index) {
1552 nr = ((isize - 1) & ~PAGE_CACHE_MASK) + 1;
1553 if (nr <= offset) {
1554 page_cache_release(page);
1555 goto out;
1556 }
1557 }
1558 nr = nr - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559
1560 /* If users can be writing to this page using arbitrary
1561 * virtual addresses, take care about potential aliasing
1562 * before reading the page on the kernel side.
1563 */
1564 if (mapping_writably_mapped(mapping))
1565 flush_dcache_page(page);
1566
1567 /*
Jan Karaec0f1632007-05-06 14:49:25 -07001568 * When a sequential read accesses a page several times,
1569 * only mark it as accessed the first time.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 */
Jan Karaec0f1632007-05-06 14:49:25 -07001571 if (prev_index != index || offset != prev_offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 mark_page_accessed(page);
1573 prev_index = index;
1574
1575 /*
1576 * Ok, we have the page, and it's up-to-date, so
1577 * now we can copy it to user space...
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 */
Al Viro6e58e792014-02-03 17:07:03 -05001579
1580 ret = copy_page_to_iter(page, offset, nr, iter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 offset += ret;
1582 index += offset >> PAGE_CACHE_SHIFT;
1583 offset &= ~PAGE_CACHE_MASK;
Jan Kara6ce745e2007-05-06 14:49:26 -07001584 prev_offset = offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
1586 page_cache_release(page);
Al Viro6e58e792014-02-03 17:07:03 -05001587 written += ret;
1588 if (!iov_iter_count(iter))
1589 goto out;
1590 if (ret < nr) {
1591 error = -EFAULT;
1592 goto out;
1593 }
1594 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595
1596page_not_up_to_date:
1597 /* Get exclusive access to the page ... */
Oleg Nesterov85462322008-06-08 21:20:43 +04001598 error = lock_page_killable(page);
1599 if (unlikely(error))
1600 goto readpage_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07001602page_not_up_to_date_locked:
Nick Pigginda6052f2006-09-25 23:31:35 -07001603 /* Did it get truncated before we got the lock? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 if (!page->mapping) {
1605 unlock_page(page);
1606 page_cache_release(page);
1607 continue;
1608 }
1609
1610 /* Did somebody else fill it already? */
1611 if (PageUptodate(page)) {
1612 unlock_page(page);
1613 goto page_ok;
1614 }
1615
1616readpage:
Jeff Moyer91803b42010-05-26 11:49:40 -04001617 /*
1618 * A previous I/O error may have been due to temporary
1619 * failures, eg. multipath errors.
1620 * PG_error will be set again if readpage fails.
1621 */
1622 ClearPageError(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 /* Start the actual read. The read will unlock the page. */
1624 error = mapping->a_ops->readpage(filp, page);
1625
Zach Brown994fc28c2005-12-15 14:28:17 -08001626 if (unlikely(error)) {
1627 if (error == AOP_TRUNCATED_PAGE) {
1628 page_cache_release(page);
Al Viro6e58e792014-02-03 17:07:03 -05001629 error = 0;
Zach Brown994fc28c2005-12-15 14:28:17 -08001630 goto find_page;
1631 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 goto readpage_error;
Zach Brown994fc28c2005-12-15 14:28:17 -08001633 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
1635 if (!PageUptodate(page)) {
Oleg Nesterov85462322008-06-08 21:20:43 +04001636 error = lock_page_killable(page);
1637 if (unlikely(error))
1638 goto readpage_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 if (!PageUptodate(page)) {
1640 if (page->mapping == NULL) {
1641 /*
Christoph Hellwig2ecdc822010-01-26 17:27:20 +01001642 * invalidate_mapping_pages got it
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 */
1644 unlock_page(page);
1645 page_cache_release(page);
1646 goto find_page;
1647 }
1648 unlock_page(page);
Fengguang Wu7ff81072007-10-16 01:24:35 -07001649 shrink_readahead_size_eio(filp, ra);
Oleg Nesterov85462322008-06-08 21:20:43 +04001650 error = -EIO;
1651 goto readpage_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 }
1653 unlock_page(page);
1654 }
1655
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 goto page_ok;
1657
1658readpage_error:
1659 /* UHHUH! A synchronous read error occurred. Report it */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 page_cache_release(page);
1661 goto out;
1662
1663no_cached_page:
1664 /*
1665 * Ok, it wasn't cached, so we need to create a new
1666 * page..
1667 */
Nick Piggineb2be182007-10-16 01:24:57 -07001668 page = page_cache_alloc_cold(mapping);
1669 if (!page) {
Al Viro6e58e792014-02-03 17:07:03 -05001670 error = -ENOMEM;
Nick Piggineb2be182007-10-16 01:24:57 -07001671 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 }
Nick Piggineb2be182007-10-16 01:24:57 -07001673 error = add_to_page_cache_lru(page, mapping,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 index, GFP_KERNEL);
1675 if (error) {
Nick Piggineb2be182007-10-16 01:24:57 -07001676 page_cache_release(page);
Al Viro6e58e792014-02-03 17:07:03 -05001677 if (error == -EEXIST) {
1678 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 goto find_page;
Al Viro6e58e792014-02-03 17:07:03 -05001680 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 goto out;
1682 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 goto readpage;
1684 }
1685
1686out:
Fengguang Wu7ff81072007-10-16 01:24:35 -07001687 ra->prev_pos = prev_index;
1688 ra->prev_pos <<= PAGE_CACHE_SHIFT;
1689 ra->prev_pos |= prev_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
Fengguang Wuf4e6b492007-10-16 01:24:33 -07001691 *ppos = ((loff_t)index << PAGE_CACHE_SHIFT) + offset;
Krishna Kumar0c6aa262008-10-15 22:01:13 -07001692 file_accessed(filp);
Al Viro6e58e792014-02-03 17:07:03 -05001693 return written ? written : error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694}
1695
Randy Dunlap485bb992006-06-23 02:03:49 -07001696/**
Al Viro6abd2322014-04-04 14:20:57 -04001697 * generic_file_read_iter - generic filesystem read routine
Randy Dunlap485bb992006-06-23 02:03:49 -07001698 * @iocb: kernel I/O control block
Al Viro6abd2322014-04-04 14:20:57 -04001699 * @iter: destination for the data read
Randy Dunlap485bb992006-06-23 02:03:49 -07001700 *
Al Viro6abd2322014-04-04 14:20:57 -04001701 * This is the "read_iter()" routine for all filesystems
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 * that can use the page cache directly.
1703 */
1704ssize_t
Al Viroed978a82014-03-05 22:53:04 -05001705generic_file_read_iter(struct kiocb *iocb, struct iov_iter *iter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706{
Al Viroed978a82014-03-05 22:53:04 -05001707 struct file *file = iocb->ki_filp;
1708 ssize_t retval = 0;
Badari Pulavarty543ade12006-09-30 23:28:48 -07001709 loff_t *ppos = &iocb->ki_pos;
Al Viroed978a82014-03-05 22:53:04 -05001710 loff_t pos = *ppos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711
Al Viro2ba48ce2015-04-09 13:52:01 -04001712 if (iocb->ki_flags & IOCB_DIRECT) {
Al Viroed978a82014-03-05 22:53:04 -05001713 struct address_space *mapping = file->f_mapping;
1714 struct inode *inode = mapping->host;
1715 size_t count = iov_iter_count(iter);
Badari Pulavarty543ade12006-09-30 23:28:48 -07001716 loff_t size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 if (!count)
1719 goto out; /* skip atime */
1720 size = i_size_read(inode);
Steven Whitehouse9fe55ee2014-01-24 14:42:22 +00001721 retval = filemap_write_and_wait_range(mapping, pos,
Al Viroed978a82014-03-05 22:53:04 -05001722 pos + count - 1);
Steven Whitehouse9fe55ee2014-01-24 14:42:22 +00001723 if (!retval) {
Al Viroed978a82014-03-05 22:53:04 -05001724 struct iov_iter data = *iter;
Omar Sandoval22c61862015-03-16 04:33:53 -07001725 retval = mapping->a_ops->direct_IO(iocb, &data, pos);
Steven Whitehouse9fe55ee2014-01-24 14:42:22 +00001726 }
Al Viroed978a82014-03-05 22:53:04 -05001727
Steven Whitehouse9fe55ee2014-01-24 14:42:22 +00001728 if (retval > 0) {
1729 *ppos = pos + retval;
Al Viroed978a82014-03-05 22:53:04 -05001730 iov_iter_advance(iter, retval);
Steven Whitehouse9fe55ee2014-01-24 14:42:22 +00001731 }
Josef Bacik66f998f2010-05-23 11:00:54 -04001732
Steven Whitehouse9fe55ee2014-01-24 14:42:22 +00001733 /*
1734 * Btrfs can have a short DIO read if we encounter
1735 * compressed extents, so if there was an error, or if
1736 * we've already read everything we wanted to, or if
1737 * there was a short read because we hit EOF, go ahead
1738 * and return. Otherwise fallthrough to buffered io for
Matthew Wilcoxfbbbad42015-02-16 15:58:53 -08001739 * the rest of the read. Buffered reads will not work for
1740 * DAX files, so don't bother trying.
Steven Whitehouse9fe55ee2014-01-24 14:42:22 +00001741 */
Matthew Wilcoxfbbbad42015-02-16 15:58:53 -08001742 if (retval < 0 || !iov_iter_count(iter) || *ppos >= size ||
1743 IS_DAX(inode)) {
Al Viroed978a82014-03-05 22:53:04 -05001744 file_accessed(file);
Steven Whitehouse9fe55ee2014-01-24 14:42:22 +00001745 goto out;
Steven Whitehouse0e0bcae2006-09-27 14:45:07 -04001746 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 }
1748
Al Viroed978a82014-03-05 22:53:04 -05001749 retval = do_generic_file_read(file, ppos, iter, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750out:
1751 return retval;
1752}
Al Viroed978a82014-03-05 22:53:04 -05001753EXPORT_SYMBOL(generic_file_read_iter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755#ifdef CONFIG_MMU
Randy Dunlap485bb992006-06-23 02:03:49 -07001756/**
1757 * page_cache_read - adds requested page to the page cache if not already there
1758 * @file: file to read
1759 * @offset: page index
1760 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 * This adds the requested page to the page cache if it isn't already there,
1762 * and schedules an I/O to read in its contents from disk.
1763 */
Harvey Harrison920c7a52008-02-04 22:29:26 -08001764static int page_cache_read(struct file *file, pgoff_t offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765{
1766 struct address_space *mapping = file->f_mapping;
Paul McQuade99dadfd2014-10-09 15:29:03 -07001767 struct page *page;
Zach Brown994fc28c2005-12-15 14:28:17 -08001768 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769
Zach Brown994fc28c2005-12-15 14:28:17 -08001770 do {
1771 page = page_cache_alloc_cold(mapping);
1772 if (!page)
1773 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774
Zach Brown994fc28c2005-12-15 14:28:17 -08001775 ret = add_to_page_cache_lru(page, mapping, offset, GFP_KERNEL);
1776 if (ret == 0)
1777 ret = mapping->a_ops->readpage(file, page);
1778 else if (ret == -EEXIST)
1779 ret = 0; /* losing race to add is OK */
1780
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782
Zach Brown994fc28c2005-12-15 14:28:17 -08001783 } while (ret == AOP_TRUNCATED_PAGE);
Paul McQuade99dadfd2014-10-09 15:29:03 -07001784
Zach Brown994fc28c2005-12-15 14:28:17 -08001785 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786}
1787
1788#define MMAP_LOTSAMISS (100)
1789
Linus Torvaldsef00e082009-06-16 15:31:25 -07001790/*
1791 * Synchronous readahead happens when we don't even find
1792 * a page in the page cache at all.
1793 */
1794static void do_sync_mmap_readahead(struct vm_area_struct *vma,
1795 struct file_ra_state *ra,
1796 struct file *file,
1797 pgoff_t offset)
1798{
1799 unsigned long ra_pages;
1800 struct address_space *mapping = file->f_mapping;
1801
1802 /* If we don't want any read-ahead, don't bother */
Joe Perches64363aa2013-07-08 16:00:18 -07001803 if (vma->vm_flags & VM_RAND_READ)
Linus Torvaldsef00e082009-06-16 15:31:25 -07001804 return;
Wu Fengguang275b12b2011-05-24 17:12:28 -07001805 if (!ra->ra_pages)
1806 return;
Linus Torvaldsef00e082009-06-16 15:31:25 -07001807
Joe Perches64363aa2013-07-08 16:00:18 -07001808 if (vma->vm_flags & VM_SEQ_READ) {
Wu Fengguang7ffc59b2009-06-16 15:31:38 -07001809 page_cache_sync_readahead(mapping, ra, file, offset,
1810 ra->ra_pages);
Linus Torvaldsef00e082009-06-16 15:31:25 -07001811 return;
1812 }
1813
Andi Kleen207d04b2011-05-24 17:12:29 -07001814 /* Avoid banging the cache line if not needed */
1815 if (ra->mmap_miss < MMAP_LOTSAMISS * 10)
Linus Torvaldsef00e082009-06-16 15:31:25 -07001816 ra->mmap_miss++;
1817
1818 /*
1819 * Do we miss much more than hit in this file? If so,
1820 * stop bothering with read-ahead. It will only hurt.
1821 */
1822 if (ra->mmap_miss > MMAP_LOTSAMISS)
1823 return;
1824
Wu Fengguangd30a1102009-06-16 15:31:30 -07001825 /*
1826 * mmap read-around
1827 */
Linus Torvaldsef00e082009-06-16 15:31:25 -07001828 ra_pages = max_sane_readahead(ra->ra_pages);
Wu Fengguang275b12b2011-05-24 17:12:28 -07001829 ra->start = max_t(long, 0, offset - ra_pages / 2);
1830 ra->size = ra_pages;
Wu Fengguang2cbea1d2011-05-24 17:12:30 -07001831 ra->async_size = ra_pages / 4;
Wu Fengguang275b12b2011-05-24 17:12:28 -07001832 ra_submit(ra, mapping, file);
Linus Torvaldsef00e082009-06-16 15:31:25 -07001833}
1834
1835/*
1836 * Asynchronous readahead happens when we find the page and PG_readahead,
1837 * so we want to possibly extend the readahead further..
1838 */
1839static void do_async_mmap_readahead(struct vm_area_struct *vma,
1840 struct file_ra_state *ra,
1841 struct file *file,
1842 struct page *page,
1843 pgoff_t offset)
1844{
1845 struct address_space *mapping = file->f_mapping;
1846
1847 /* If we don't want any read-ahead, don't bother */
Joe Perches64363aa2013-07-08 16:00:18 -07001848 if (vma->vm_flags & VM_RAND_READ)
Linus Torvaldsef00e082009-06-16 15:31:25 -07001849 return;
1850 if (ra->mmap_miss > 0)
1851 ra->mmap_miss--;
1852 if (PageReadahead(page))
Wu Fengguang2fad6f52009-06-16 15:31:29 -07001853 page_cache_async_readahead(mapping, ra, file,
1854 page, offset, ra->ra_pages);
Linus Torvaldsef00e082009-06-16 15:31:25 -07001855}
1856
Randy Dunlap485bb992006-06-23 02:03:49 -07001857/**
Nick Piggin54cb8822007-07-19 01:46:59 -07001858 * filemap_fault - read in file data for page fault handling
Nick Piggind0217ac2007-07-19 01:47:03 -07001859 * @vma: vma in which the fault was taken
1860 * @vmf: struct vm_fault containing details of the fault
Randy Dunlap485bb992006-06-23 02:03:49 -07001861 *
Nick Piggin54cb8822007-07-19 01:46:59 -07001862 * filemap_fault() is invoked via the vma operations vector for a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 * mapped memory region to read in file data during a page fault.
1864 *
1865 * The goto's are kind of ugly, but this streamlines the normal case of having
1866 * it in the page cache, and handles the special cases reasonably without
1867 * having a lot of duplicated code.
Paul Cassella9a95f3c2014-08-06 16:07:24 -07001868 *
1869 * vma->vm_mm->mmap_sem must be held on entry.
1870 *
1871 * If our return value has VM_FAULT_RETRY set, it's because
1872 * lock_page_or_retry() returned 0.
1873 * The mmap_sem has usually been released in this case.
1874 * See __lock_page_or_retry() for the exception.
1875 *
1876 * If our return value does not have VM_FAULT_RETRY set, the mmap_sem
1877 * has not been released.
1878 *
1879 * We never return with VM_FAULT_RETRY and a bit from VM_FAULT_ERROR set.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 */
Nick Piggind0217ac2007-07-19 01:47:03 -07001881int filemap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882{
1883 int error;
Nick Piggin54cb8822007-07-19 01:46:59 -07001884 struct file *file = vma->vm_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 struct address_space *mapping = file->f_mapping;
1886 struct file_ra_state *ra = &file->f_ra;
1887 struct inode *inode = mapping->host;
Linus Torvaldsef00e082009-06-16 15:31:25 -07001888 pgoff_t offset = vmf->pgoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 struct page *page;
Kirill A. Shutemov99e3e532014-04-07 15:37:21 -07001890 loff_t size;
Nick Piggin83c54072007-07-19 01:47:05 -07001891 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892
Kirill A. Shutemov99e3e532014-04-07 15:37:21 -07001893 size = round_up(i_size_read(inode), PAGE_CACHE_SIZE);
1894 if (offset >= size >> PAGE_CACHE_SHIFT)
Linus Torvalds5307cc12007-10-31 09:19:46 -07001895 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 /*
Johannes Weiner49426422013-10-16 13:46:59 -07001898 * Do we have something in the page cache already?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 */
Linus Torvaldsef00e082009-06-16 15:31:25 -07001900 page = find_get_page(mapping, offset);
Shaohua Li45cac652012-10-08 16:32:19 -07001901 if (likely(page) && !(vmf->flags & FAULT_FLAG_TRIED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 /*
Linus Torvaldsef00e082009-06-16 15:31:25 -07001903 * We found the page, so try async readahead before
1904 * waiting for the lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 */
Linus Torvaldsef00e082009-06-16 15:31:25 -07001906 do_async_mmap_readahead(vma, ra, file, page, offset);
Shaohua Li45cac652012-10-08 16:32:19 -07001907 } else if (!page) {
Linus Torvaldsef00e082009-06-16 15:31:25 -07001908 /* No page in the page cache at all */
1909 do_sync_mmap_readahead(vma, ra, file, offset);
1910 count_vm_event(PGMAJFAULT);
Ying Han456f9982011-05-26 16:25:38 -07001911 mem_cgroup_count_vm_event(vma->vm_mm, PGMAJFAULT);
Linus Torvaldsef00e082009-06-16 15:31:25 -07001912 ret = VM_FAULT_MAJOR;
1913retry_find:
Michel Lespinasseb522c942010-10-26 14:21:56 -07001914 page = find_get_page(mapping, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 if (!page)
1916 goto no_cached_page;
1917 }
1918
Michel Lespinassed88c0922010-11-02 13:05:18 -07001919 if (!lock_page_or_retry(page, vma->vm_mm, vmf->flags)) {
1920 page_cache_release(page);
Michel Lespinassed065bd82010-10-26 14:21:57 -07001921 return ret | VM_FAULT_RETRY;
Michel Lespinassed88c0922010-11-02 13:05:18 -07001922 }
Michel Lespinasseb522c942010-10-26 14:21:56 -07001923
1924 /* Did it get truncated? */
1925 if (unlikely(page->mapping != mapping)) {
1926 unlock_page(page);
1927 put_page(page);
1928 goto retry_find;
1929 }
Sasha Levin309381fea2014-01-23 15:52:54 -08001930 VM_BUG_ON_PAGE(page->index != offset, page);
Michel Lespinasseb522c942010-10-26 14:21:56 -07001931
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 /*
Nick Piggind00806b2007-07-19 01:46:57 -07001933 * We have a locked page in the page cache, now we need to check
1934 * that it's up-to-date. If not, it is going to be due to an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 */
Nick Piggind00806b2007-07-19 01:46:57 -07001936 if (unlikely(!PageUptodate(page)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 goto page_not_uptodate;
1938
Linus Torvaldsef00e082009-06-16 15:31:25 -07001939 /*
1940 * Found the page and have a reference on it.
1941 * We must recheck i_size under page lock.
1942 */
Kirill A. Shutemov99e3e532014-04-07 15:37:21 -07001943 size = round_up(i_size_read(inode), PAGE_CACHE_SIZE);
1944 if (unlikely(offset >= size >> PAGE_CACHE_SHIFT)) {
Nick Piggind00806b2007-07-19 01:46:57 -07001945 unlock_page(page);
Yan Zheng745ad482007-10-08 10:08:37 -07001946 page_cache_release(page);
Linus Torvalds5307cc12007-10-31 09:19:46 -07001947 return VM_FAULT_SIGBUS;
Nick Piggind00806b2007-07-19 01:46:57 -07001948 }
1949
Nick Piggind0217ac2007-07-19 01:47:03 -07001950 vmf->page = page;
Nick Piggin83c54072007-07-19 01:47:05 -07001951 return ret | VM_FAULT_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953no_cached_page:
1954 /*
1955 * We're only likely to ever get here if MADV_RANDOM is in
1956 * effect.
1957 */
Linus Torvaldsef00e082009-06-16 15:31:25 -07001958 error = page_cache_read(file, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959
1960 /*
1961 * The page we want has now been added to the page cache.
1962 * In the unlikely event that someone removed it in the
1963 * meantime, we'll just come back here and read it again.
1964 */
1965 if (error >= 0)
1966 goto retry_find;
1967
1968 /*
1969 * An error return from page_cache_read can result if the
1970 * system is low on memory, or a problem occurs while trying
1971 * to schedule I/O.
1972 */
1973 if (error == -ENOMEM)
Nick Piggind0217ac2007-07-19 01:47:03 -07001974 return VM_FAULT_OOM;
1975 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976
1977page_not_uptodate:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 /*
1979 * Umm, take care of errors if the page isn't up-to-date.
1980 * Try to re-read it _once_. We do this synchronously,
1981 * because there really aren't any performance issues here
1982 * and we need to check for errors.
1983 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 ClearPageError(page);
Zach Brown994fc28c2005-12-15 14:28:17 -08001985 error = mapping->a_ops->readpage(file, page);
Miklos Szeredi3ef0f722008-05-14 16:05:37 -07001986 if (!error) {
1987 wait_on_page_locked(page);
1988 if (!PageUptodate(page))
1989 error = -EIO;
1990 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 page_cache_release(page);
Nick Piggind00806b2007-07-19 01:46:57 -07001992
1993 if (!error || error == AOP_TRUNCATED_PAGE)
1994 goto retry_find;
1995
1996 /* Things didn't work out. Return zero to tell the mm layer so. */
1997 shrink_readahead_size_eio(file, ra);
Nick Piggind0217ac2007-07-19 01:47:03 -07001998 return VM_FAULT_SIGBUS;
Nick Piggin54cb8822007-07-19 01:46:59 -07001999}
2000EXPORT_SYMBOL(filemap_fault);
2001
Kirill A. Shutemovf1820362014-04-07 15:37:19 -07002002void filemap_map_pages(struct vm_area_struct *vma, struct vm_fault *vmf)
2003{
2004 struct radix_tree_iter iter;
2005 void **slot;
2006 struct file *file = vma->vm_file;
2007 struct address_space *mapping = file->f_mapping;
2008 loff_t size;
2009 struct page *page;
2010 unsigned long address = (unsigned long) vmf->virtual_address;
2011 unsigned long addr;
2012 pte_t *pte;
2013
2014 rcu_read_lock();
2015 radix_tree_for_each_slot(slot, &mapping->page_tree, &iter, vmf->pgoff) {
2016 if (iter.index > vmf->max_pgoff)
2017 break;
2018repeat:
2019 page = radix_tree_deref_slot(slot);
2020 if (unlikely(!page))
2021 goto next;
2022 if (radix_tree_exception(page)) {
2023 if (radix_tree_deref_retry(page))
2024 break;
2025 else
2026 goto next;
2027 }
2028
2029 if (!page_cache_get_speculative(page))
2030 goto repeat;
2031
2032 /* Has the page moved? */
2033 if (unlikely(page != *slot)) {
2034 page_cache_release(page);
2035 goto repeat;
2036 }
2037
2038 if (!PageUptodate(page) ||
2039 PageReadahead(page) ||
2040 PageHWPoison(page))
2041 goto skip;
2042 if (!trylock_page(page))
2043 goto skip;
2044
2045 if (page->mapping != mapping || !PageUptodate(page))
2046 goto unlock;
2047
Kirill A. Shutemov99e3e532014-04-07 15:37:21 -07002048 size = round_up(i_size_read(mapping->host), PAGE_CACHE_SIZE);
2049 if (page->index >= size >> PAGE_CACHE_SHIFT)
Kirill A. Shutemovf1820362014-04-07 15:37:19 -07002050 goto unlock;
2051
2052 pte = vmf->pte + page->index - vmf->pgoff;
2053 if (!pte_none(*pte))
2054 goto unlock;
2055
2056 if (file->f_ra.mmap_miss > 0)
2057 file->f_ra.mmap_miss--;
2058 addr = address + (page->index - vmf->pgoff) * PAGE_SIZE;
2059 do_set_pte(vma, addr, page, pte, false, false);
2060 unlock_page(page);
2061 goto next;
2062unlock:
2063 unlock_page(page);
2064skip:
2065 page_cache_release(page);
2066next:
2067 if (iter.index == vmf->max_pgoff)
2068 break;
2069 }
2070 rcu_read_unlock();
2071}
2072EXPORT_SYMBOL(filemap_map_pages);
2073
Jan Kara4fcf1c62012-06-12 16:20:29 +02002074int filemap_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
2075{
2076 struct page *page = vmf->page;
Al Viro496ad9a2013-01-23 17:07:38 -05002077 struct inode *inode = file_inode(vma->vm_file);
Jan Kara4fcf1c62012-06-12 16:20:29 +02002078 int ret = VM_FAULT_LOCKED;
2079
Jan Kara14da9202012-06-12 16:20:37 +02002080 sb_start_pagefault(inode->i_sb);
Jan Kara4fcf1c62012-06-12 16:20:29 +02002081 file_update_time(vma->vm_file);
2082 lock_page(page);
2083 if (page->mapping != inode->i_mapping) {
2084 unlock_page(page);
2085 ret = VM_FAULT_NOPAGE;
2086 goto out;
2087 }
Jan Kara14da9202012-06-12 16:20:37 +02002088 /*
2089 * We mark the page dirty already here so that when freeze is in
2090 * progress, we are guaranteed that writeback during freezing will
2091 * see the dirty page and writeprotect it again.
2092 */
2093 set_page_dirty(page);
Darrick J. Wong1d1d1a72013-02-21 16:42:51 -08002094 wait_for_stable_page(page);
Jan Kara4fcf1c62012-06-12 16:20:29 +02002095out:
Jan Kara14da9202012-06-12 16:20:37 +02002096 sb_end_pagefault(inode->i_sb);
Jan Kara4fcf1c62012-06-12 16:20:29 +02002097 return ret;
2098}
2099EXPORT_SYMBOL(filemap_page_mkwrite);
2100
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04002101const struct vm_operations_struct generic_file_vm_ops = {
Nick Piggin54cb8822007-07-19 01:46:59 -07002102 .fault = filemap_fault,
Kirill A. Shutemovf1820362014-04-07 15:37:19 -07002103 .map_pages = filemap_map_pages,
Jan Kara4fcf1c62012-06-12 16:20:29 +02002104 .page_mkwrite = filemap_page_mkwrite,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105};
2106
2107/* This is used for a general mmap of a disk file */
2108
2109int generic_file_mmap(struct file * file, struct vm_area_struct * vma)
2110{
2111 struct address_space *mapping = file->f_mapping;
2112
2113 if (!mapping->a_ops->readpage)
2114 return -ENOEXEC;
2115 file_accessed(file);
2116 vma->vm_ops = &generic_file_vm_ops;
2117 return 0;
2118}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119
2120/*
2121 * This is for filesystems which do not implement ->writepage.
2122 */
2123int generic_file_readonly_mmap(struct file *file, struct vm_area_struct *vma)
2124{
2125 if ((vma->vm_flags & VM_SHARED) && (vma->vm_flags & VM_MAYWRITE))
2126 return -EINVAL;
2127 return generic_file_mmap(file, vma);
2128}
2129#else
2130int generic_file_mmap(struct file * file, struct vm_area_struct * vma)
2131{
2132 return -ENOSYS;
2133}
2134int generic_file_readonly_mmap(struct file * file, struct vm_area_struct * vma)
2135{
2136 return -ENOSYS;
2137}
2138#endif /* CONFIG_MMU */
2139
2140EXPORT_SYMBOL(generic_file_mmap);
2141EXPORT_SYMBOL(generic_file_readonly_mmap);
2142
Sasha Levin67f9fd92014-04-03 14:48:18 -07002143static struct page *wait_on_page_read(struct page *page)
2144{
2145 if (!IS_ERR(page)) {
2146 wait_on_page_locked(page);
2147 if (!PageUptodate(page)) {
2148 page_cache_release(page);
2149 page = ERR_PTR(-EIO);
2150 }
2151 }
2152 return page;
2153}
2154
Nick Piggin6fe69002007-05-06 14:49:04 -07002155static struct page *__read_cache_page(struct address_space *mapping,
Fengguang Wu57f6b962007-10-16 01:24:37 -07002156 pgoff_t index,
Hugh Dickins5e5358e2011-07-25 17:12:23 -07002157 int (*filler)(void *, struct page *),
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002158 void *data,
2159 gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160{
Nick Piggineb2be182007-10-16 01:24:57 -07002161 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 int err;
2163repeat:
2164 page = find_get_page(mapping, index);
2165 if (!page) {
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002166 page = __page_cache_alloc(gfp | __GFP_COLD);
Nick Piggineb2be182007-10-16 01:24:57 -07002167 if (!page)
2168 return ERR_PTR(-ENOMEM);
Dave Kleikampe6f67b82011-12-21 11:05:48 -06002169 err = add_to_page_cache_lru(page, mapping, index, gfp);
Nick Piggineb2be182007-10-16 01:24:57 -07002170 if (unlikely(err)) {
2171 page_cache_release(page);
2172 if (err == -EEXIST)
2173 goto repeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 /* Presumably ENOMEM for radix tree node */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 return ERR_PTR(err);
2176 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 err = filler(data, page);
2178 if (err < 0) {
2179 page_cache_release(page);
2180 page = ERR_PTR(err);
Sasha Levin67f9fd92014-04-03 14:48:18 -07002181 } else {
2182 page = wait_on_page_read(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 }
2184 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 return page;
2186}
2187
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002188static struct page *do_read_cache_page(struct address_space *mapping,
Fengguang Wu57f6b962007-10-16 01:24:37 -07002189 pgoff_t index,
Hugh Dickins5e5358e2011-07-25 17:12:23 -07002190 int (*filler)(void *, struct page *),
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002191 void *data,
2192 gfp_t gfp)
2193
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194{
2195 struct page *page;
2196 int err;
2197
2198retry:
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002199 page = __read_cache_page(mapping, index, filler, data, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 if (IS_ERR(page))
David Howellsc855ff32007-05-09 13:42:20 +01002201 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 if (PageUptodate(page))
2203 goto out;
2204
2205 lock_page(page);
2206 if (!page->mapping) {
2207 unlock_page(page);
2208 page_cache_release(page);
2209 goto retry;
2210 }
2211 if (PageUptodate(page)) {
2212 unlock_page(page);
2213 goto out;
2214 }
2215 err = filler(data, page);
2216 if (err < 0) {
2217 page_cache_release(page);
David Howellsc855ff32007-05-09 13:42:20 +01002218 return ERR_PTR(err);
Sasha Levin67f9fd92014-04-03 14:48:18 -07002219 } else {
2220 page = wait_on_page_read(page);
2221 if (IS_ERR(page))
2222 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 }
David Howellsc855ff32007-05-09 13:42:20 +01002224out:
Nick Piggin6fe69002007-05-06 14:49:04 -07002225 mark_page_accessed(page);
2226 return page;
2227}
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002228
2229/**
Sasha Levin67f9fd92014-04-03 14:48:18 -07002230 * read_cache_page - read into page cache, fill it if needed
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002231 * @mapping: the page's address_space
2232 * @index: the page index
2233 * @filler: function to perform the read
Hugh Dickins5e5358e2011-07-25 17:12:23 -07002234 * @data: first arg to filler(data, page) function, often left as NULL
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002235 *
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002236 * Read into the page cache. If a page already exists, and PageUptodate() is
Sasha Levin67f9fd92014-04-03 14:48:18 -07002237 * not set, try to fill the page and wait for it to become unlocked.
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002238 *
2239 * If the page does not get brought uptodate, return -EIO.
2240 */
Sasha Levin67f9fd92014-04-03 14:48:18 -07002241struct page *read_cache_page(struct address_space *mapping,
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002242 pgoff_t index,
Hugh Dickins5e5358e2011-07-25 17:12:23 -07002243 int (*filler)(void *, struct page *),
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002244 void *data)
2245{
2246 return do_read_cache_page(mapping, index, filler, data, mapping_gfp_mask(mapping));
2247}
Sasha Levin67f9fd92014-04-03 14:48:18 -07002248EXPORT_SYMBOL(read_cache_page);
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002249
2250/**
2251 * read_cache_page_gfp - read into page cache, using specified page allocation flags.
2252 * @mapping: the page's address_space
2253 * @index: the page index
2254 * @gfp: the page allocator flags to use if allocating
2255 *
2256 * This is the same as "read_mapping_page(mapping, index, NULL)", but with
Dave Kleikampe6f67b82011-12-21 11:05:48 -06002257 * any new page allocations done using the specified allocation flags.
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002258 *
2259 * If the page does not get brought uptodate, return -EIO.
2260 */
2261struct page *read_cache_page_gfp(struct address_space *mapping,
2262 pgoff_t index,
2263 gfp_t gfp)
2264{
2265 filler_t *filler = (filler_t *)mapping->a_ops->readpage;
2266
Sasha Levin67f9fd92014-04-03 14:48:18 -07002267 return do_read_cache_page(mapping, index, filler, NULL, gfp);
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002268}
2269EXPORT_SYMBOL(read_cache_page_gfp);
2270
Nick Piggin2f718ff2007-10-16 01:24:59 -07002271/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 * Performs necessary checks before doing a write
2273 *
Randy Dunlap485bb992006-06-23 02:03:49 -07002274 * Can adjust writing position or amount of bytes to write.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 * Returns appropriate error code that caller should return or
2276 * zero in case that write should be allowed.
2277 */
Al Viro3309dd02015-04-09 12:55:47 -04002278inline ssize_t generic_write_checks(struct kiocb *iocb, struct iov_iter *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279{
Al Viro3309dd02015-04-09 12:55:47 -04002280 struct file *file = iocb->ki_filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 struct inode *inode = file->f_mapping->host;
Jiri Slaby59e99e52010-03-05 13:41:44 -08002282 unsigned long limit = rlimit(RLIMIT_FSIZE);
Al Viro3309dd02015-04-09 12:55:47 -04002283 loff_t pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284
Al Viro3309dd02015-04-09 12:55:47 -04002285 if (!iov_iter_count(from))
2286 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287
Al Viro0fa6b002015-04-04 04:05:48 -04002288 /* FIXME: this is for backwards compatibility with 2.4 */
Al Viro2ba48ce2015-04-09 13:52:01 -04002289 if (iocb->ki_flags & IOCB_APPEND)
Al Viro3309dd02015-04-09 12:55:47 -04002290 iocb->ki_pos = i_size_read(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291
Al Viro3309dd02015-04-09 12:55:47 -04002292 pos = iocb->ki_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293
Al Viro0fa6b002015-04-04 04:05:48 -04002294 if (limit != RLIM_INFINITY) {
Al Viro3309dd02015-04-09 12:55:47 -04002295 if (iocb->ki_pos >= limit) {
Al Viro0fa6b002015-04-04 04:05:48 -04002296 send_sig(SIGXFSZ, current, 0);
2297 return -EFBIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 }
Al Viro3309dd02015-04-09 12:55:47 -04002299 iov_iter_truncate(from, limit - (unsigned long)pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 }
2301
2302 /*
2303 * LFS rule
2304 */
Al Viro3309dd02015-04-09 12:55:47 -04002305 if (unlikely(pos + iov_iter_count(from) > MAX_NON_LFS &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 !(file->f_flags & O_LARGEFILE))) {
Al Viro3309dd02015-04-09 12:55:47 -04002307 if (pos >= MAX_NON_LFS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 return -EFBIG;
Al Viro3309dd02015-04-09 12:55:47 -04002309 iov_iter_truncate(from, MAX_NON_LFS - (unsigned long)pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 }
2311
2312 /*
2313 * Are we about to exceed the fs block limit ?
2314 *
2315 * If we have written data it becomes a short write. If we have
2316 * exceeded without writing data we send a signal and return EFBIG.
2317 * Linus frestrict idea will clean these up nicely..
2318 */
Al Viro3309dd02015-04-09 12:55:47 -04002319 if (unlikely(pos >= inode->i_sb->s_maxbytes))
2320 return -EFBIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321
Al Viro3309dd02015-04-09 12:55:47 -04002322 iov_iter_truncate(from, inode->i_sb->s_maxbytes - pos);
2323 return iov_iter_count(from);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324}
2325EXPORT_SYMBOL(generic_write_checks);
2326
Nick Pigginafddba42007-10-16 01:25:01 -07002327int pagecache_write_begin(struct file *file, struct address_space *mapping,
2328 loff_t pos, unsigned len, unsigned flags,
2329 struct page **pagep, void **fsdata)
2330{
2331 const struct address_space_operations *aops = mapping->a_ops;
2332
Nick Piggin4e02ed42008-10-29 14:00:55 -07002333 return aops->write_begin(file, mapping, pos, len, flags,
Nick Pigginafddba42007-10-16 01:25:01 -07002334 pagep, fsdata);
Nick Pigginafddba42007-10-16 01:25:01 -07002335}
2336EXPORT_SYMBOL(pagecache_write_begin);
2337
2338int pagecache_write_end(struct file *file, struct address_space *mapping,
2339 loff_t pos, unsigned len, unsigned copied,
2340 struct page *page, void *fsdata)
2341{
2342 const struct address_space_operations *aops = mapping->a_ops;
Nick Pigginafddba42007-10-16 01:25:01 -07002343
Nick Piggin4e02ed42008-10-29 14:00:55 -07002344 return aops->write_end(file, mapping, pos, len, copied, page, fsdata);
Nick Pigginafddba42007-10-16 01:25:01 -07002345}
2346EXPORT_SYMBOL(pagecache_write_end);
2347
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348ssize_t
Al Viro0c949332014-03-22 06:51:37 -04002349generic_file_direct_write(struct kiocb *iocb, struct iov_iter *from, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350{
2351 struct file *file = iocb->ki_filp;
2352 struct address_space *mapping = file->f_mapping;
2353 struct inode *inode = mapping->host;
2354 ssize_t written;
Christoph Hellwiga969e902008-07-23 21:27:04 -07002355 size_t write_len;
2356 pgoff_t end;
Al Viro26978b82014-03-10 14:08:45 -04002357 struct iov_iter data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358
Al Viro0c949332014-03-22 06:51:37 -04002359 write_len = iov_iter_count(from);
Christoph Hellwiga969e902008-07-23 21:27:04 -07002360 end = (pos + write_len - 1) >> PAGE_CACHE_SHIFT;
Christoph Hellwiga969e902008-07-23 21:27:04 -07002361
Nick Piggin48b47c52009-01-06 14:40:22 -08002362 written = filemap_write_and_wait_range(mapping, pos, pos + write_len - 1);
Christoph Hellwiga969e902008-07-23 21:27:04 -07002363 if (written)
2364 goto out;
2365
2366 /*
2367 * After a write we want buffered reads to be sure to go to disk to get
2368 * the new data. We invalidate clean cached page from the region we're
2369 * about to write. We do this *before* the write so that we can return
Hisashi Hifumi6ccfa802008-09-02 14:35:40 -07002370 * without clobbering -EIOCBQUEUED from ->direct_IO().
Christoph Hellwiga969e902008-07-23 21:27:04 -07002371 */
2372 if (mapping->nrpages) {
2373 written = invalidate_inode_pages2_range(mapping,
2374 pos >> PAGE_CACHE_SHIFT, end);
Hisashi Hifumi6ccfa802008-09-02 14:35:40 -07002375 /*
2376 * If a page can not be invalidated, return 0 to fall back
2377 * to buffered write.
2378 */
2379 if (written) {
2380 if (written == -EBUSY)
2381 return 0;
Christoph Hellwiga969e902008-07-23 21:27:04 -07002382 goto out;
Hisashi Hifumi6ccfa802008-09-02 14:35:40 -07002383 }
Christoph Hellwiga969e902008-07-23 21:27:04 -07002384 }
2385
Al Viro26978b82014-03-10 14:08:45 -04002386 data = *from;
Omar Sandoval22c61862015-03-16 04:33:53 -07002387 written = mapping->a_ops->direct_IO(iocb, &data, pos);
Christoph Hellwiga969e902008-07-23 21:27:04 -07002388
2389 /*
2390 * Finally, try again to invalidate clean pages which might have been
2391 * cached by non-direct readahead, or faulted in by get_user_pages()
2392 * if the source of the write was an mmap'ed region of the file
2393 * we're writing. Either one is a pretty crazy thing to do,
2394 * so we don't support it 100%. If this invalidation
2395 * fails, tough, the write still worked...
2396 */
2397 if (mapping->nrpages) {
2398 invalidate_inode_pages2_range(mapping,
2399 pos >> PAGE_CACHE_SHIFT, end);
2400 }
2401
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 if (written > 0) {
Namhyung Kim01166512010-10-26 14:21:58 -07002403 pos += written;
Al Virof8579f82014-03-03 22:03:20 -05002404 iov_iter_advance(from, written);
Namhyung Kim01166512010-10-26 14:21:58 -07002405 if (pos > i_size_read(inode) && !S_ISBLK(inode->i_mode)) {
2406 i_size_write(inode, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 mark_inode_dirty(inode);
2408 }
Al Viro5cb6c6c2014-02-11 20:58:20 -05002409 iocb->ki_pos = pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 }
Christoph Hellwiga969e902008-07-23 21:27:04 -07002411out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 return written;
2413}
2414EXPORT_SYMBOL(generic_file_direct_write);
2415
Nick Piggineb2be182007-10-16 01:24:57 -07002416/*
2417 * Find or create a page at the given pagecache position. Return the locked
2418 * page. This function is specifically for buffered writes.
2419 */
Nick Piggin54566b22009-01-04 12:00:53 -08002420struct page *grab_cache_page_write_begin(struct address_space *mapping,
2421 pgoff_t index, unsigned flags)
Nick Piggineb2be182007-10-16 01:24:57 -07002422{
Nick Piggineb2be182007-10-16 01:24:57 -07002423 struct page *page;
Mel Gorman2457aec2014-06-04 16:10:31 -07002424 int fgp_flags = FGP_LOCK|FGP_ACCESSED|FGP_WRITE|FGP_CREAT;
Johannes Weiner0faa70c2012-01-10 15:07:53 -08002425
Nick Piggin54566b22009-01-04 12:00:53 -08002426 if (flags & AOP_FLAG_NOFS)
Mel Gorman2457aec2014-06-04 16:10:31 -07002427 fgp_flags |= FGP_NOFS;
Nick Piggineb2be182007-10-16 01:24:57 -07002428
Mel Gorman2457aec2014-06-04 16:10:31 -07002429 page = pagecache_get_page(mapping, index, fgp_flags,
Michal Hocko45f87de2014-12-29 20:30:35 +01002430 mapping_gfp_mask(mapping));
Mel Gorman2457aec2014-06-04 16:10:31 -07002431 if (page)
2432 wait_for_stable_page(page);
2433
Nick Piggineb2be182007-10-16 01:24:57 -07002434 return page;
2435}
Nick Piggin54566b22009-01-04 12:00:53 -08002436EXPORT_SYMBOL(grab_cache_page_write_begin);
Nick Piggineb2be182007-10-16 01:24:57 -07002437
Al Viro3b93f912014-02-11 21:34:08 -05002438ssize_t generic_perform_write(struct file *file,
Nick Pigginafddba42007-10-16 01:25:01 -07002439 struct iov_iter *i, loff_t pos)
2440{
2441 struct address_space *mapping = file->f_mapping;
2442 const struct address_space_operations *a_ops = mapping->a_ops;
2443 long status = 0;
2444 ssize_t written = 0;
Nick Piggin674b8922007-10-16 01:25:03 -07002445 unsigned int flags = 0;
2446
2447 /*
2448 * Copies from kernel address space cannot fail (NFSD is a big user).
2449 */
Al Viro777eda22014-12-17 04:46:46 -05002450 if (!iter_is_iovec(i))
Nick Piggin674b8922007-10-16 01:25:03 -07002451 flags |= AOP_FLAG_UNINTERRUPTIBLE;
Nick Pigginafddba42007-10-16 01:25:01 -07002452
2453 do {
2454 struct page *page;
Nick Pigginafddba42007-10-16 01:25:01 -07002455 unsigned long offset; /* Offset into pagecache page */
2456 unsigned long bytes; /* Bytes to write to page */
2457 size_t copied; /* Bytes copied from user */
2458 void *fsdata;
2459
2460 offset = (pos & (PAGE_CACHE_SIZE - 1));
Nick Pigginafddba42007-10-16 01:25:01 -07002461 bytes = min_t(unsigned long, PAGE_CACHE_SIZE - offset,
2462 iov_iter_count(i));
2463
2464again:
Nick Pigginafddba42007-10-16 01:25:01 -07002465 /*
2466 * Bring in the user page that we will copy from _first_.
2467 * Otherwise there's a nasty deadlock on copying from the
2468 * same page as we're writing to, without it being marked
2469 * up-to-date.
2470 *
2471 * Not only is this an optimisation, but it is also required
2472 * to check that the address is actually valid, when atomic
2473 * usercopies are used, below.
2474 */
2475 if (unlikely(iov_iter_fault_in_readable(i, bytes))) {
2476 status = -EFAULT;
2477 break;
2478 }
2479
Nick Piggin674b8922007-10-16 01:25:03 -07002480 status = a_ops->write_begin(file, mapping, pos, bytes, flags,
Nick Pigginafddba42007-10-16 01:25:01 -07002481 &page, &fsdata);
Mel Gorman2457aec2014-06-04 16:10:31 -07002482 if (unlikely(status < 0))
Nick Pigginafddba42007-10-16 01:25:01 -07002483 break;
2484
anfei zhou931e80e2010-02-02 13:44:02 -08002485 if (mapping_writably_mapped(mapping))
2486 flush_dcache_page(page);
2487
Nick Pigginafddba42007-10-16 01:25:01 -07002488 copied = iov_iter_copy_from_user_atomic(page, i, offset, bytes);
Nick Pigginafddba42007-10-16 01:25:01 -07002489 flush_dcache_page(page);
2490
2491 status = a_ops->write_end(file, mapping, pos, bytes, copied,
2492 page, fsdata);
2493 if (unlikely(status < 0))
2494 break;
2495 copied = status;
2496
2497 cond_resched();
2498
Nick Piggin124d3b72008-02-02 15:01:17 +01002499 iov_iter_advance(i, copied);
Nick Pigginafddba42007-10-16 01:25:01 -07002500 if (unlikely(copied == 0)) {
2501 /*
2502 * If we were unable to copy any data at all, we must
2503 * fall back to a single segment length write.
2504 *
2505 * If we didn't fallback here, we could livelock
2506 * because not all segments in the iov can be copied at
2507 * once without a pagefault.
2508 */
2509 bytes = min_t(unsigned long, PAGE_CACHE_SIZE - offset,
2510 iov_iter_single_seg_count(i));
2511 goto again;
2512 }
Nick Pigginafddba42007-10-16 01:25:01 -07002513 pos += copied;
2514 written += copied;
2515
2516 balance_dirty_pages_ratelimited(mapping);
Jan Karaa50527b2011-12-02 09:17:02 +08002517 if (fatal_signal_pending(current)) {
2518 status = -EINTR;
2519 break;
2520 }
Nick Pigginafddba42007-10-16 01:25:01 -07002521 } while (iov_iter_count(i));
2522
2523 return written ? written : status;
2524}
Al Viro3b93f912014-02-11 21:34:08 -05002525EXPORT_SYMBOL(generic_perform_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526
Jan Karae4dd9de2009-08-17 18:10:06 +02002527/**
Al Viro81742022014-04-03 03:17:43 -04002528 * __generic_file_write_iter - write data to a file
Jan Karae4dd9de2009-08-17 18:10:06 +02002529 * @iocb: IO state structure (file, offset, etc.)
Al Viro81742022014-04-03 03:17:43 -04002530 * @from: iov_iter with data to write
Jan Karae4dd9de2009-08-17 18:10:06 +02002531 *
2532 * This function does all the work needed for actually writing data to a
2533 * file. It does all basic checks, removes SUID from the file, updates
2534 * modification times and calls proper subroutines depending on whether we
2535 * do direct IO or a standard buffered write.
2536 *
2537 * It expects i_mutex to be grabbed unless we work on a block device or similar
2538 * object which does not need locking at all.
2539 *
2540 * This function does *not* take care of syncing data in case of O_SYNC write.
2541 * A caller has to handle it. This is mainly due to the fact that we want to
2542 * avoid syncing under i_mutex.
2543 */
Al Viro81742022014-04-03 03:17:43 -04002544ssize_t __generic_file_write_iter(struct kiocb *iocb, struct iov_iter *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545{
2546 struct file *file = iocb->ki_filp;
Jeff Moyerfb5527e2006-10-19 23:28:13 -07002547 struct address_space * mapping = file->f_mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 struct inode *inode = mapping->host;
Al Viro3b93f912014-02-11 21:34:08 -05002549 ssize_t written = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 ssize_t err;
Al Viro3b93f912014-02-11 21:34:08 -05002551 ssize_t status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 /* We can write back this queue in page reclaim */
Christoph Hellwigde1414a2015-01-14 10:42:36 +01002554 current->backing_dev_info = inode_to_bdi(inode);
Miklos Szeredi2f1936b2008-06-24 16:50:14 +02002555 err = file_remove_suid(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 if (err)
2557 goto out;
2558
Josef Bacikc3b2da32012-03-26 09:59:21 -04002559 err = file_update_time(file);
2560 if (err)
2561 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562
Al Viro2ba48ce2015-04-09 13:52:01 -04002563 if (iocb->ki_flags & IOCB_DIRECT) {
Al Viro0b8def92015-04-07 10:22:53 -04002564 loff_t pos, endbyte;
Jeff Moyerfb5527e2006-10-19 23:28:13 -07002565
Al Viro0b8def92015-04-07 10:22:53 -04002566 written = generic_file_direct_write(iocb, from, iocb->ki_pos);
Matthew Wilcoxfbbbad42015-02-16 15:58:53 -08002567 /*
2568 * If the write stopped short of completing, fall back to
2569 * buffered writes. Some filesystems do this for writes to
2570 * holes, for example. For DAX files, a buffered write will
2571 * not succeed (even if it did, DAX does not handle dirty
2572 * page-cache pages correctly).
2573 */
Al Viro0b8def92015-04-07 10:22:53 -04002574 if (written < 0 || !iov_iter_count(from) || IS_DAX(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 goto out;
Al Viro3b93f912014-02-11 21:34:08 -05002576
Al Viro0b8def92015-04-07 10:22:53 -04002577 status = generic_perform_write(file, from, pos = iocb->ki_pos);
Jeff Moyerfb5527e2006-10-19 23:28:13 -07002578 /*
Al Viro3b93f912014-02-11 21:34:08 -05002579 * If generic_perform_write() returned a synchronous error
Jeff Moyerfb5527e2006-10-19 23:28:13 -07002580 * then we want to return the number of bytes which were
2581 * direct-written, or the error code if that was zero. Note
2582 * that this differs from normal direct-io semantics, which
2583 * will return -EFOO even if some bytes were written.
2584 */
Al Viro60bb4522014-08-08 12:39:16 -04002585 if (unlikely(status < 0)) {
Al Viro3b93f912014-02-11 21:34:08 -05002586 err = status;
Jeff Moyerfb5527e2006-10-19 23:28:13 -07002587 goto out;
2588 }
Jeff Moyerfb5527e2006-10-19 23:28:13 -07002589 /*
2590 * We need to ensure that the page cache pages are written to
2591 * disk and invalidated to preserve the expected O_DIRECT
2592 * semantics.
2593 */
Al Viro3b93f912014-02-11 21:34:08 -05002594 endbyte = pos + status - 1;
Al Viro0b8def92015-04-07 10:22:53 -04002595 err = filemap_write_and_wait_range(mapping, pos, endbyte);
Jeff Moyerfb5527e2006-10-19 23:28:13 -07002596 if (err == 0) {
Al Viro0b8def92015-04-07 10:22:53 -04002597 iocb->ki_pos = endbyte + 1;
Al Viro3b93f912014-02-11 21:34:08 -05002598 written += status;
Jeff Moyerfb5527e2006-10-19 23:28:13 -07002599 invalidate_mapping_pages(mapping,
2600 pos >> PAGE_CACHE_SHIFT,
2601 endbyte >> PAGE_CACHE_SHIFT);
2602 } else {
2603 /*
2604 * We don't know how much we wrote, so just return
2605 * the number of bytes which were direct-written
2606 */
2607 }
2608 } else {
Al Viro0b8def92015-04-07 10:22:53 -04002609 written = generic_perform_write(file, from, iocb->ki_pos);
2610 if (likely(written > 0))
2611 iocb->ki_pos += written;
Jeff Moyerfb5527e2006-10-19 23:28:13 -07002612 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613out:
2614 current->backing_dev_info = NULL;
2615 return written ? written : err;
2616}
Al Viro81742022014-04-03 03:17:43 -04002617EXPORT_SYMBOL(__generic_file_write_iter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618
Jan Karae4dd9de2009-08-17 18:10:06 +02002619/**
Al Viro81742022014-04-03 03:17:43 -04002620 * generic_file_write_iter - write data to a file
Jan Karae4dd9de2009-08-17 18:10:06 +02002621 * @iocb: IO state structure
Al Viro81742022014-04-03 03:17:43 -04002622 * @from: iov_iter with data to write
Jan Karae4dd9de2009-08-17 18:10:06 +02002623 *
Al Viro81742022014-04-03 03:17:43 -04002624 * This is a wrapper around __generic_file_write_iter() to be used by most
Jan Karae4dd9de2009-08-17 18:10:06 +02002625 * filesystems. It takes care of syncing the file in case of O_SYNC file
2626 * and acquires i_mutex as needed.
2627 */
Al Viro81742022014-04-03 03:17:43 -04002628ssize_t generic_file_write_iter(struct kiocb *iocb, struct iov_iter *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629{
2630 struct file *file = iocb->ki_filp;
Jan Kara148f9482009-08-17 19:52:36 +02002631 struct inode *inode = file->f_mapping->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 ssize_t ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002634 mutex_lock(&inode->i_mutex);
Al Viro3309dd02015-04-09 12:55:47 -04002635 ret = generic_write_checks(iocb, from);
2636 if (ret > 0)
Al Viro5f380c72015-04-07 11:28:12 -04002637 ret = __generic_file_write_iter(iocb, from);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002638 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639
Christoph Hellwig02afc272013-09-04 15:04:40 +02002640 if (ret > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641 ssize_t err;
2642
Al Virod311d792014-02-09 15:18:09 -05002643 err = generic_write_sync(file, iocb->ki_pos - ret, ret);
2644 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 ret = err;
2646 }
2647 return ret;
2648}
Al Viro81742022014-04-03 03:17:43 -04002649EXPORT_SYMBOL(generic_file_write_iter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650
David Howellscf9a2ae2006-08-29 19:05:54 +01002651/**
2652 * try_to_release_page() - release old fs-specific metadata on a page
2653 *
2654 * @page: the page which the kernel is trying to free
2655 * @gfp_mask: memory allocation flags (and I/O mode)
2656 *
2657 * The address_space is to try to release any data against the page
2658 * (presumably at page->private). If the release was successful, return `1'.
2659 * Otherwise return zero.
2660 *
David Howells266cf652009-04-03 16:42:36 +01002661 * This may also be called if PG_fscache is set on a page, indicating that the
2662 * page is known to the local caching routines.
2663 *
David Howellscf9a2ae2006-08-29 19:05:54 +01002664 * The @gfp_mask argument specifies whether I/O may be performed to release
Mingming Cao3f31fdd2008-07-25 01:46:22 -07002665 * this page (__GFP_IO), and whether the call may block (__GFP_WAIT & __GFP_FS).
David Howellscf9a2ae2006-08-29 19:05:54 +01002666 *
David Howellscf9a2ae2006-08-29 19:05:54 +01002667 */
2668int try_to_release_page(struct page *page, gfp_t gfp_mask)
2669{
2670 struct address_space * const mapping = page->mapping;
2671
2672 BUG_ON(!PageLocked(page));
2673 if (PageWriteback(page))
2674 return 0;
2675
2676 if (mapping && mapping->a_ops->releasepage)
2677 return mapping->a_ops->releasepage(page, gfp_mask);
2678 return try_to_free_buffers(page);
2679}
2680
2681EXPORT_SYMBOL(try_to_release_page);