blob: 2f065b19b6350941b6b0d3d1bc3c5a8a6e78a49c [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)))
Greg Thelenc4843a72015-05-22 17:13:16 -0400216 account_page_cleaned(page, mapping, memcg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217}
218
Minchan Kim702cfbf2011-03-22 16:32:43 -0700219/**
220 * delete_from_page_cache - delete page from page cache
221 * @page: the page which the kernel is trying to remove from page cache
222 *
223 * This must be called only on pages that have been verified to be in the page
224 * cache and locked. It will never put the page into the free list, the caller
225 * has a reference on the page.
226 */
227void delete_from_page_cache(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228{
229 struct address_space *mapping = page->mapping;
Greg Thelenc4843a72015-05-22 17:13:16 -0400230 struct mem_cgroup *memcg;
231 unsigned long flags;
232
Linus Torvalds6072d132010-12-01 13:35:19 -0500233 void (*freepage)(struct page *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Matt Mackallcd7619d2005-05-01 08:59:01 -0700235 BUG_ON(!PageLocked(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Linus Torvalds6072d132010-12-01 13:35:19 -0500237 freepage = mapping->a_ops->freepage;
Greg Thelenc4843a72015-05-22 17:13:16 -0400238
239 memcg = mem_cgroup_begin_page_stat(page);
240 spin_lock_irqsave(&mapping->tree_lock, flags);
241 __delete_from_page_cache(page, NULL, memcg);
242 spin_unlock_irqrestore(&mapping->tree_lock, flags);
243 mem_cgroup_end_page_stat(memcg);
Linus Torvalds6072d132010-12-01 13:35:19 -0500244
245 if (freepage)
246 freepage(page);
Minchan Kim97cecb52011-03-22 16:30:53 -0700247 page_cache_release(page);
248}
249EXPORT_SYMBOL(delete_from_page_cache);
250
Dmitry Monakhov865ffef32013-04-29 15:08:42 -0700251static int filemap_check_errors(struct address_space *mapping)
252{
253 int ret = 0;
254 /* Check for outstanding write errors */
Jens Axboe7fcbbaf2014-05-22 11:54:16 -0700255 if (test_bit(AS_ENOSPC, &mapping->flags) &&
256 test_and_clear_bit(AS_ENOSPC, &mapping->flags))
Dmitry Monakhov865ffef32013-04-29 15:08:42 -0700257 ret = -ENOSPC;
Jens Axboe7fcbbaf2014-05-22 11:54:16 -0700258 if (test_bit(AS_EIO, &mapping->flags) &&
259 test_and_clear_bit(AS_EIO, &mapping->flags))
Dmitry Monakhov865ffef32013-04-29 15:08:42 -0700260 ret = -EIO;
261 return ret;
262}
263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264/**
Randy Dunlap485bb992006-06-23 02:03:49 -0700265 * __filemap_fdatawrite_range - start writeback on mapping dirty pages in range
Martin Waitz67be2dd2005-05-01 08:59:26 -0700266 * @mapping: address space structure to write
267 * @start: offset in bytes where the range starts
Andrew Morton469eb4d2006-03-24 03:17:45 -0800268 * @end: offset in bytes where the range ends (inclusive)
Martin Waitz67be2dd2005-05-01 08:59:26 -0700269 * @sync_mode: enable synchronous operation
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 *
Randy Dunlap485bb992006-06-23 02:03:49 -0700271 * Start writeback against all of a mapping's dirty pages that lie
272 * within the byte offsets <start, end> inclusive.
273 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 * If sync_mode is WB_SYNC_ALL then this is a "data integrity" operation, as
Randy Dunlap485bb992006-06-23 02:03:49 -0700275 * opposed to a regular memory cleansing writeback. The difference between
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 * these two operations is that if a dirty page/buffer is encountered, it must
277 * be waited upon, and not just skipped over.
278 */
Andrew Mortonebcf28e2006-03-24 03:18:04 -0800279int __filemap_fdatawrite_range(struct address_space *mapping, loff_t start,
280 loff_t end, int sync_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281{
282 int ret;
283 struct writeback_control wbc = {
284 .sync_mode = sync_mode,
Nick Piggin05fe4782009-01-06 14:39:08 -0800285 .nr_to_write = LONG_MAX,
OGAWA Hirofumi111ebb62006-06-23 02:03:26 -0700286 .range_start = start,
287 .range_end = end,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 };
289
290 if (!mapping_cap_writeback_dirty(mapping))
291 return 0;
292
Tejun Heob16b1de2015-06-02 08:39:48 -0600293 wbc_attach_fdatawrite_inode(&wbc, mapping->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 ret = do_writepages(mapping, &wbc);
Tejun Heob16b1de2015-06-02 08:39:48 -0600295 wbc_detach_inode(&wbc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 return ret;
297}
298
299static inline int __filemap_fdatawrite(struct address_space *mapping,
300 int sync_mode)
301{
OGAWA Hirofumi111ebb62006-06-23 02:03:26 -0700302 return __filemap_fdatawrite_range(mapping, 0, LLONG_MAX, sync_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303}
304
305int filemap_fdatawrite(struct address_space *mapping)
306{
307 return __filemap_fdatawrite(mapping, WB_SYNC_ALL);
308}
309EXPORT_SYMBOL(filemap_fdatawrite);
310
Jan Karaf4c0a0f2008-07-11 19:27:31 -0400311int filemap_fdatawrite_range(struct address_space *mapping, loff_t start,
Andrew Mortonebcf28e2006-03-24 03:18:04 -0800312 loff_t end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
314 return __filemap_fdatawrite_range(mapping, start, end, WB_SYNC_ALL);
315}
Jan Karaf4c0a0f2008-07-11 19:27:31 -0400316EXPORT_SYMBOL(filemap_fdatawrite_range);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Randy Dunlap485bb992006-06-23 02:03:49 -0700318/**
319 * filemap_flush - mostly a non-blocking flush
320 * @mapping: target address_space
321 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 * This is a mostly non-blocking flush. Not suitable for data-integrity
323 * purposes - I/O may not be started against all dirty pages.
324 */
325int filemap_flush(struct address_space *mapping)
326{
327 return __filemap_fdatawrite(mapping, WB_SYNC_NONE);
328}
329EXPORT_SYMBOL(filemap_flush);
330
Randy Dunlap485bb992006-06-23 02:03:49 -0700331/**
Christoph Hellwig94004ed2009-09-30 22:16:33 +0200332 * filemap_fdatawait_range - wait for writeback to complete
333 * @mapping: address space structure to wait for
334 * @start_byte: offset in bytes where the range starts
335 * @end_byte: offset in bytes where the range ends (inclusive)
Randy Dunlap485bb992006-06-23 02:03:49 -0700336 *
Christoph Hellwig94004ed2009-09-30 22:16:33 +0200337 * Walk the list of under-writeback pages of the given address space
338 * in the given range and wait for all of them.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 */
Christoph Hellwig94004ed2009-09-30 22:16:33 +0200340int filemap_fdatawait_range(struct address_space *mapping, loff_t start_byte,
341 loff_t end_byte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342{
Christoph Hellwig94004ed2009-09-30 22:16:33 +0200343 pgoff_t index = start_byte >> PAGE_CACHE_SHIFT;
344 pgoff_t end = end_byte >> PAGE_CACHE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 struct pagevec pvec;
346 int nr_pages;
Dmitry Monakhov865ffef32013-04-29 15:08:42 -0700347 int ret2, ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Christoph Hellwig94004ed2009-09-30 22:16:33 +0200349 if (end_byte < start_byte)
Dmitry Monakhov865ffef32013-04-29 15:08:42 -0700350 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
352 pagevec_init(&pvec, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 while ((index <= end) &&
354 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index,
355 PAGECACHE_TAG_WRITEBACK,
356 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1)) != 0) {
357 unsigned i;
358
359 for (i = 0; i < nr_pages; i++) {
360 struct page *page = pvec.pages[i];
361
362 /* until radix tree lookup accepts end_index */
363 if (page->index > end)
364 continue;
365
366 wait_on_page_writeback(page);
Rik van Riel212260a2011-01-13 15:46:06 -0800367 if (TestClearPageError(page))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 ret = -EIO;
369 }
370 pagevec_release(&pvec);
371 cond_resched();
372 }
Dmitry Monakhov865ffef32013-04-29 15:08:42 -0700373out:
374 ret2 = filemap_check_errors(mapping);
375 if (!ret)
376 ret = ret2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
378 return ret;
379}
Jan Karad3bccb6f2009-08-17 19:30:27 +0200380EXPORT_SYMBOL(filemap_fdatawait_range);
381
382/**
Randy Dunlap485bb992006-06-23 02:03:49 -0700383 * filemap_fdatawait - wait for all under-writeback pages to complete
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 * @mapping: address space structure to wait for
Randy Dunlap485bb992006-06-23 02:03:49 -0700385 *
386 * Walk the list of under-writeback pages of the given address space
387 * and wait for all of them.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 */
389int filemap_fdatawait(struct address_space *mapping)
390{
391 loff_t i_size = i_size_read(mapping->host);
392
393 if (i_size == 0)
394 return 0;
395
Christoph Hellwig94004ed2009-09-30 22:16:33 +0200396 return filemap_fdatawait_range(mapping, 0, i_size - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397}
398EXPORT_SYMBOL(filemap_fdatawait);
399
400int filemap_write_and_wait(struct address_space *mapping)
401{
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800402 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
404 if (mapping->nrpages) {
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800405 err = filemap_fdatawrite(mapping);
406 /*
407 * Even if the above returned error, the pages may be
408 * written partially (e.g. -ENOSPC), so we wait for it.
409 * But the -EIO is special case, it may indicate the worst
410 * thing (e.g. bug) happened, so we avoid waiting for it.
411 */
412 if (err != -EIO) {
413 int err2 = filemap_fdatawait(mapping);
414 if (!err)
415 err = err2;
416 }
Dmitry Monakhov865ffef32013-04-29 15:08:42 -0700417 } else {
418 err = filemap_check_errors(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 }
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800420 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421}
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800422EXPORT_SYMBOL(filemap_write_and_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Randy Dunlap485bb992006-06-23 02:03:49 -0700424/**
425 * filemap_write_and_wait_range - write out & wait on a file range
426 * @mapping: the address_space for the pages
427 * @lstart: offset in bytes where the range starts
428 * @lend: offset in bytes where the range ends (inclusive)
429 *
Andrew Morton469eb4d2006-03-24 03:17:45 -0800430 * Write out and wait upon file offsets lstart->lend, inclusive.
431 *
432 * Note that `lend' is inclusive (describes the last byte to be written) so
433 * that this function can be used to write to the very end-of-file (end = -1).
434 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435int filemap_write_and_wait_range(struct address_space *mapping,
436 loff_t lstart, loff_t lend)
437{
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800438 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
440 if (mapping->nrpages) {
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800441 err = __filemap_fdatawrite_range(mapping, lstart, lend,
442 WB_SYNC_ALL);
443 /* See comment of filemap_write_and_wait() */
444 if (err != -EIO) {
Christoph Hellwig94004ed2009-09-30 22:16:33 +0200445 int err2 = filemap_fdatawait_range(mapping,
446 lstart, lend);
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800447 if (!err)
448 err = err2;
449 }
Dmitry Monakhov865ffef32013-04-29 15:08:42 -0700450 } else {
451 err = filemap_check_errors(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 }
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800453 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454}
Chris Masonf6995582009-04-15 13:22:37 -0400455EXPORT_SYMBOL(filemap_write_and_wait_range);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
Randy Dunlap485bb992006-06-23 02:03:49 -0700457/**
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700458 * replace_page_cache_page - replace a pagecache page with a new one
459 * @old: page to be replaced
460 * @new: page to replace with
461 * @gfp_mask: allocation mode
462 *
463 * This function replaces a page in the pagecache with a new one. On
464 * success it acquires the pagecache reference for the new page and
465 * drops it for the old page. Both the old and new pages must be
466 * locked. This function does not add the new page to the LRU, the
467 * caller must do that.
468 *
469 * The remove + add is atomic. The only way this function can fail is
470 * memory allocation failure.
471 */
472int replace_page_cache_page(struct page *old, struct page *new, gfp_t gfp_mask)
473{
474 int error;
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700475
Sasha Levin309381fea2014-01-23 15:52:54 -0800476 VM_BUG_ON_PAGE(!PageLocked(old), old);
477 VM_BUG_ON_PAGE(!PageLocked(new), new);
478 VM_BUG_ON_PAGE(new->mapping, new);
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700479
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700480 error = radix_tree_preload(gfp_mask & ~__GFP_HIGHMEM);
481 if (!error) {
482 struct address_space *mapping = old->mapping;
483 void (*freepage)(struct page *);
Greg Thelenc4843a72015-05-22 17:13:16 -0400484 struct mem_cgroup *memcg;
485 unsigned long flags;
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700486
487 pgoff_t offset = old->index;
488 freepage = mapping->a_ops->freepage;
489
490 page_cache_get(new);
491 new->mapping = mapping;
492 new->index = offset;
493
Greg Thelenc4843a72015-05-22 17:13:16 -0400494 memcg = mem_cgroup_begin_page_stat(old);
495 spin_lock_irqsave(&mapping->tree_lock, flags);
496 __delete_from_page_cache(old, NULL, memcg);
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700497 error = radix_tree_insert(&mapping->page_tree, offset, new);
498 BUG_ON(error);
499 mapping->nrpages++;
500 __inc_zone_page_state(new, NR_FILE_PAGES);
501 if (PageSwapBacked(new))
502 __inc_zone_page_state(new, NR_SHMEM);
Greg Thelenc4843a72015-05-22 17:13:16 -0400503 spin_unlock_irqrestore(&mapping->tree_lock, flags);
504 mem_cgroup_end_page_stat(memcg);
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700505 mem_cgroup_migrate(old, new, true);
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700506 radix_tree_preload_end();
507 if (freepage)
508 freepage(old);
509 page_cache_release(old);
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700510 }
511
512 return error;
513}
514EXPORT_SYMBOL_GPL(replace_page_cache_page);
515
Johannes Weiner0cd61442014-04-03 14:47:46 -0700516static int page_cache_tree_insert(struct address_space *mapping,
Johannes Weinera5289102014-04-03 14:47:51 -0700517 struct page *page, void **shadowp)
Johannes Weiner0cd61442014-04-03 14:47:46 -0700518{
Johannes Weiner449dd692014-04-03 14:47:56 -0700519 struct radix_tree_node *node;
Johannes Weiner0cd61442014-04-03 14:47:46 -0700520 void **slot;
521 int error;
522
Johannes Weiner449dd692014-04-03 14:47:56 -0700523 error = __radix_tree_create(&mapping->page_tree, page->index,
524 &node, &slot);
525 if (error)
526 return error;
527 if (*slot) {
Johannes Weiner0cd61442014-04-03 14:47:46 -0700528 void *p;
529
530 p = radix_tree_deref_slot_protected(slot, &mapping->tree_lock);
531 if (!radix_tree_exceptional_entry(p))
532 return -EEXIST;
Johannes Weinera5289102014-04-03 14:47:51 -0700533 if (shadowp)
534 *shadowp = p;
Johannes Weiner449dd692014-04-03 14:47:56 -0700535 mapping->nrshadows--;
536 if (node)
537 workingset_node_shadows_dec(node);
Johannes Weiner0cd61442014-04-03 14:47:46 -0700538 }
Johannes Weiner449dd692014-04-03 14:47:56 -0700539 radix_tree_replace_slot(slot, page);
540 mapping->nrpages++;
541 if (node) {
542 workingset_node_pages_inc(node);
543 /*
544 * Don't track node that contains actual pages.
545 *
546 * Avoid acquiring the list_lru lock if already
547 * untracked. The list_empty() test is safe as
548 * node->private_list is protected by
549 * mapping->tree_lock.
550 */
551 if (!list_empty(&node->private_list))
552 list_lru_del(&workingset_shadow_nodes,
553 &node->private_list);
554 }
555 return 0;
Johannes Weiner0cd61442014-04-03 14:47:46 -0700556}
557
Johannes Weinera5289102014-04-03 14:47:51 -0700558static int __add_to_page_cache_locked(struct page *page,
559 struct address_space *mapping,
560 pgoff_t offset, gfp_t gfp_mask,
561 void **shadowp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562{
Johannes Weiner00501b52014-08-08 14:19:20 -0700563 int huge = PageHuge(page);
564 struct mem_cgroup *memcg;
Nick Piggine2867812008-07-25 19:45:30 -0700565 int error;
566
Sasha Levin309381fea2014-01-23 15:52:54 -0800567 VM_BUG_ON_PAGE(!PageLocked(page), page);
568 VM_BUG_ON_PAGE(PageSwapBacked(page), page);
Nick Piggine2867812008-07-25 19:45:30 -0700569
Johannes Weiner00501b52014-08-08 14:19:20 -0700570 if (!huge) {
571 error = mem_cgroup_try_charge(page, current->mm,
572 gfp_mask, &memcg);
573 if (error)
574 return error;
575 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
Jan Kara5e4c0d972013-09-11 14:26:05 -0700577 error = radix_tree_maybe_preload(gfp_mask & ~__GFP_HIGHMEM);
Kirill A. Shutemov66a0c8e2013-09-12 15:13:59 -0700578 if (error) {
Johannes Weiner00501b52014-08-08 14:19:20 -0700579 if (!huge)
580 mem_cgroup_cancel_charge(page, memcg);
Kirill A. Shutemov66a0c8e2013-09-12 15:13:59 -0700581 return error;
582 }
583
584 page_cache_get(page);
585 page->mapping = mapping;
586 page->index = offset;
587
588 spin_lock_irq(&mapping->tree_lock);
Johannes Weinera5289102014-04-03 14:47:51 -0700589 error = page_cache_tree_insert(mapping, page, shadowp);
Kirill A. Shutemov66a0c8e2013-09-12 15:13:59 -0700590 radix_tree_preload_end();
591 if (unlikely(error))
592 goto err_insert;
Kirill A. Shutemov66a0c8e2013-09-12 15:13:59 -0700593 __inc_zone_page_state(page, NR_FILE_PAGES);
594 spin_unlock_irq(&mapping->tree_lock);
Johannes Weiner00501b52014-08-08 14:19:20 -0700595 if (!huge)
596 mem_cgroup_commit_charge(page, memcg, false);
Kirill A. Shutemov66a0c8e2013-09-12 15:13:59 -0700597 trace_mm_filemap_add_to_page_cache(page);
598 return 0;
599err_insert:
600 page->mapping = NULL;
601 /* Leave page->index set: truncation relies upon it */
602 spin_unlock_irq(&mapping->tree_lock);
Johannes Weiner00501b52014-08-08 14:19:20 -0700603 if (!huge)
604 mem_cgroup_cancel_charge(page, memcg);
Kirill A. Shutemov66a0c8e2013-09-12 15:13:59 -0700605 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 return error;
607}
Johannes Weinera5289102014-04-03 14:47:51 -0700608
609/**
610 * add_to_page_cache_locked - add a locked page to the pagecache
611 * @page: page to add
612 * @mapping: the page's address_space
613 * @offset: page index
614 * @gfp_mask: page allocation mode
615 *
616 * This function is used to add a page to the pagecache. It must be locked.
617 * This function does not add the page to the LRU. The caller must do that.
618 */
619int add_to_page_cache_locked(struct page *page, struct address_space *mapping,
620 pgoff_t offset, gfp_t gfp_mask)
621{
622 return __add_to_page_cache_locked(page, mapping, offset,
623 gfp_mask, NULL);
624}
Nick Piggine2867812008-07-25 19:45:30 -0700625EXPORT_SYMBOL(add_to_page_cache_locked);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
627int add_to_page_cache_lru(struct page *page, struct address_space *mapping,
Al Viro6daa0e22005-10-21 03:18:50 -0400628 pgoff_t offset, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629{
Johannes Weinera5289102014-04-03 14:47:51 -0700630 void *shadow = NULL;
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700631 int ret;
632
Johannes Weinera5289102014-04-03 14:47:51 -0700633 __set_page_locked(page);
634 ret = __add_to_page_cache_locked(page, mapping, offset,
635 gfp_mask, &shadow);
636 if (unlikely(ret))
637 __clear_page_locked(page);
638 else {
639 /*
640 * The page might have been evicted from cache only
641 * recently, in which case it should be activated like
642 * any other repeatedly accessed page.
643 */
644 if (shadow && workingset_refault(shadow)) {
645 SetPageActive(page);
646 workingset_activation(page);
647 } else
648 ClearPageActive(page);
649 lru_cache_add(page);
650 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 return ret;
652}
Evgeniy Polyakov18bc0bb2009-02-09 17:02:42 +0300653EXPORT_SYMBOL_GPL(add_to_page_cache_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Paul Jackson44110fe2006-03-24 03:16:04 -0800655#ifdef CONFIG_NUMA
Nick Piggin2ae88142006-10-28 10:38:23 -0700656struct page *__page_cache_alloc(gfp_t gfp)
Paul Jackson44110fe2006-03-24 03:16:04 -0800657{
Miao Xiec0ff7452010-05-24 14:32:08 -0700658 int n;
659 struct page *page;
660
Paul Jackson44110fe2006-03-24 03:16:04 -0800661 if (cpuset_do_page_mem_spread()) {
Mel Gormancc9a6c82012-03-21 16:34:11 -0700662 unsigned int cpuset_mems_cookie;
663 do {
Mel Gormand26914d2014-04-03 14:47:24 -0700664 cpuset_mems_cookie = read_mems_allowed_begin();
Mel Gormancc9a6c82012-03-21 16:34:11 -0700665 n = cpuset_mem_spread_node();
666 page = alloc_pages_exact_node(n, gfp, 0);
Mel Gormand26914d2014-04-03 14:47:24 -0700667 } while (!page && read_mems_allowed_retry(cpuset_mems_cookie));
Mel Gormancc9a6c82012-03-21 16:34:11 -0700668
Miao Xiec0ff7452010-05-24 14:32:08 -0700669 return page;
Paul Jackson44110fe2006-03-24 03:16:04 -0800670 }
Nick Piggin2ae88142006-10-28 10:38:23 -0700671 return alloc_pages(gfp, 0);
Paul Jackson44110fe2006-03-24 03:16:04 -0800672}
Nick Piggin2ae88142006-10-28 10:38:23 -0700673EXPORT_SYMBOL(__page_cache_alloc);
Paul Jackson44110fe2006-03-24 03:16:04 -0800674#endif
675
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676/*
677 * In order to wait for pages to become available there must be
678 * waitqueues associated with pages. By using a hash table of
679 * waitqueues where the bucket discipline is to maintain all
680 * waiters on the same queue and wake all when any of the pages
681 * become available, and for the woken contexts to check to be
682 * sure the appropriate page became available, this saves space
683 * at a cost of "thundering herd" phenomena during rare hash
684 * collisions.
685 */
NeilBrowna4796e32014-09-24 11:28:32 +1000686wait_queue_head_t *page_waitqueue(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687{
688 const struct zone *zone = page_zone(page);
689
690 return &zone->wait_table[hash_ptr(page, zone->wait_table_bits)];
691}
NeilBrowna4796e32014-09-24 11:28:32 +1000692EXPORT_SYMBOL(page_waitqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
Harvey Harrison920c7a52008-02-04 22:29:26 -0800694void wait_on_page_bit(struct page *page, int bit_nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695{
696 DEFINE_WAIT_BIT(wait, &page->flags, bit_nr);
697
698 if (test_bit(bit_nr, &page->flags))
NeilBrown74316202014-07-07 15:16:04 +1000699 __wait_on_bit(page_waitqueue(page), &wait, bit_wait_io,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 TASK_UNINTERRUPTIBLE);
701}
702EXPORT_SYMBOL(wait_on_page_bit);
703
KOSAKI Motohirof62e00c2011-05-24 17:11:29 -0700704int wait_on_page_bit_killable(struct page *page, int bit_nr)
705{
706 DEFINE_WAIT_BIT(wait, &page->flags, bit_nr);
707
708 if (!test_bit(bit_nr, &page->flags))
709 return 0;
710
711 return __wait_on_bit(page_waitqueue(page), &wait,
NeilBrown74316202014-07-07 15:16:04 +1000712 bit_wait_io, TASK_KILLABLE);
KOSAKI Motohirof62e00c2011-05-24 17:11:29 -0700713}
714
NeilBrowncbbce822014-09-25 13:55:19 +1000715int wait_on_page_bit_killable_timeout(struct page *page,
716 int bit_nr, unsigned long timeout)
717{
718 DEFINE_WAIT_BIT(wait, &page->flags, bit_nr);
719
720 wait.key.timeout = jiffies + timeout;
721 if (!test_bit(bit_nr, &page->flags))
722 return 0;
723 return __wait_on_bit(page_waitqueue(page), &wait,
724 bit_wait_io_timeout, TASK_KILLABLE);
725}
726EXPORT_SYMBOL_GPL(wait_on_page_bit_killable_timeout);
727
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728/**
David Howells385e1ca5f2009-04-03 16:42:39 +0100729 * add_page_wait_queue - Add an arbitrary waiter to a page's wait queue
Randy Dunlap697f6192009-04-13 14:39:54 -0700730 * @page: Page defining the wait queue of interest
731 * @waiter: Waiter to add to the queue
David Howells385e1ca5f2009-04-03 16:42:39 +0100732 *
733 * Add an arbitrary @waiter to the wait queue for the nominated @page.
734 */
735void add_page_wait_queue(struct page *page, wait_queue_t *waiter)
736{
737 wait_queue_head_t *q = page_waitqueue(page);
738 unsigned long flags;
739
740 spin_lock_irqsave(&q->lock, flags);
741 __add_wait_queue(q, waiter);
742 spin_unlock_irqrestore(&q->lock, flags);
743}
744EXPORT_SYMBOL_GPL(add_page_wait_queue);
745
746/**
Randy Dunlap485bb992006-06-23 02:03:49 -0700747 * unlock_page - unlock a locked page
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 * @page: the page
749 *
750 * Unlocks the page and wakes up sleepers in ___wait_on_page_locked().
751 * Also wakes sleepers in wait_on_page_writeback() because the wakeup
Masanari Iidada3dae52014-09-09 01:27:23 +0900752 * mechanism between PageLocked pages and PageWriteback pages is shared.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 * But that's OK - sleepers in wait_on_page_writeback() just go back to sleep.
754 *
Nick Piggin8413ac92008-10-18 20:26:59 -0700755 * The mb is necessary to enforce ordering between the clear_bit and the read
756 * of the waitqueue (to avoid SMP races with a parallel wait_on_page_locked()).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 */
Harvey Harrison920c7a52008-02-04 22:29:26 -0800758void unlock_page(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759{
Sasha Levin309381fea2014-01-23 15:52:54 -0800760 VM_BUG_ON_PAGE(!PageLocked(page), page);
Nick Piggin8413ac92008-10-18 20:26:59 -0700761 clear_bit_unlock(PG_locked, &page->flags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100762 smp_mb__after_atomic();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 wake_up_page(page, PG_locked);
764}
765EXPORT_SYMBOL(unlock_page);
766
Randy Dunlap485bb992006-06-23 02:03:49 -0700767/**
768 * end_page_writeback - end writeback against a page
769 * @page: the page
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 */
771void end_page_writeback(struct page *page)
772{
Mel Gorman888cf2d2014-06-04 16:10:34 -0700773 /*
774 * TestClearPageReclaim could be used here but it is an atomic
775 * operation and overkill in this particular case. Failing to
776 * shuffle a page marked for immediate reclaim is too mild to
777 * justify taking an atomic operation penalty at the end of
778 * ever page writeback.
779 */
780 if (PageReclaim(page)) {
781 ClearPageReclaim(page);
Miklos Szerediac6aadb2008-04-28 02:12:38 -0700782 rotate_reclaimable_page(page);
Mel Gorman888cf2d2014-06-04 16:10:34 -0700783 }
Miklos Szerediac6aadb2008-04-28 02:12:38 -0700784
785 if (!test_clear_page_writeback(page))
786 BUG();
787
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100788 smp_mb__after_atomic();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 wake_up_page(page, PG_writeback);
790}
791EXPORT_SYMBOL(end_page_writeback);
792
Matthew Wilcox57d99842014-06-04 16:07:45 -0700793/*
794 * After completing I/O on a page, call this routine to update the page
795 * flags appropriately
796 */
797void page_endio(struct page *page, int rw, int err)
798{
799 if (rw == READ) {
800 if (!err) {
801 SetPageUptodate(page);
802 } else {
803 ClearPageUptodate(page);
804 SetPageError(page);
805 }
806 unlock_page(page);
807 } else { /* rw == WRITE */
808 if (err) {
809 SetPageError(page);
810 if (page->mapping)
811 mapping_set_error(page->mapping, err);
812 }
813 end_page_writeback(page);
814 }
815}
816EXPORT_SYMBOL_GPL(page_endio);
817
Randy Dunlap485bb992006-06-23 02:03:49 -0700818/**
819 * __lock_page - get a lock on the page, assuming we need to sleep to get it
820 * @page: the page to lock
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 */
Harvey Harrison920c7a52008-02-04 22:29:26 -0800822void __lock_page(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823{
824 DEFINE_WAIT_BIT(wait, &page->flags, PG_locked);
825
NeilBrown74316202014-07-07 15:16:04 +1000826 __wait_on_bit_lock(page_waitqueue(page), &wait, bit_wait_io,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 TASK_UNINTERRUPTIBLE);
828}
829EXPORT_SYMBOL(__lock_page);
830
Harvey Harrisonb5606c22008-02-13 15:03:16 -0800831int __lock_page_killable(struct page *page)
Matthew Wilcox2687a352007-12-06 11:18:49 -0500832{
833 DEFINE_WAIT_BIT(wait, &page->flags, PG_locked);
834
835 return __wait_on_bit_lock(page_waitqueue(page), &wait,
NeilBrown74316202014-07-07 15:16:04 +1000836 bit_wait_io, TASK_KILLABLE);
Matthew Wilcox2687a352007-12-06 11:18:49 -0500837}
Evgeniy Polyakov18bc0bb2009-02-09 17:02:42 +0300838EXPORT_SYMBOL_GPL(__lock_page_killable);
Matthew Wilcox2687a352007-12-06 11:18:49 -0500839
Paul Cassella9a95f3c2014-08-06 16:07:24 -0700840/*
841 * Return values:
842 * 1 - page is locked; mmap_sem is still held.
843 * 0 - page is not locked.
844 * mmap_sem has been released (up_read()), unless flags had both
845 * FAULT_FLAG_ALLOW_RETRY and FAULT_FLAG_RETRY_NOWAIT set, in
846 * which case mmap_sem is still held.
847 *
848 * If neither ALLOW_RETRY nor KILLABLE are set, will always return 1
849 * with the page locked and the mmap_sem unperturbed.
850 */
Michel Lespinassed065bd82010-10-26 14:21:57 -0700851int __lock_page_or_retry(struct page *page, struct mm_struct *mm,
852 unsigned int flags)
853{
KOSAKI Motohiro37b23e02011-05-24 17:11:30 -0700854 if (flags & FAULT_FLAG_ALLOW_RETRY) {
855 /*
856 * CAUTION! In this case, mmap_sem is not released
857 * even though return 0.
858 */
859 if (flags & FAULT_FLAG_RETRY_NOWAIT)
860 return 0;
861
862 up_read(&mm->mmap_sem);
863 if (flags & FAULT_FLAG_KILLABLE)
864 wait_on_page_locked_killable(page);
865 else
Gleb Natapov318b2752011-03-22 16:30:51 -0700866 wait_on_page_locked(page);
Michel Lespinassed065bd82010-10-26 14:21:57 -0700867 return 0;
KOSAKI Motohiro37b23e02011-05-24 17:11:30 -0700868 } else {
869 if (flags & FAULT_FLAG_KILLABLE) {
870 int ret;
871
872 ret = __lock_page_killable(page);
873 if (ret) {
874 up_read(&mm->mmap_sem);
875 return 0;
876 }
877 } else
878 __lock_page(page);
879 return 1;
Michel Lespinassed065bd82010-10-26 14:21:57 -0700880 }
881}
882
Randy Dunlap485bb992006-06-23 02:03:49 -0700883/**
Johannes Weinere7b563b2014-04-03 14:47:44 -0700884 * page_cache_next_hole - find the next hole (not-present entry)
885 * @mapping: mapping
886 * @index: index
887 * @max_scan: maximum range to search
888 *
889 * Search the set [index, min(index+max_scan-1, MAX_INDEX)] for the
890 * lowest indexed hole.
891 *
892 * Returns: the index of the hole if found, otherwise returns an index
893 * outside of the set specified (in which case 'return - index >=
894 * max_scan' will be true). In rare cases of index wrap-around, 0 will
895 * be returned.
896 *
897 * page_cache_next_hole may be called under rcu_read_lock. However,
898 * like radix_tree_gang_lookup, this will not atomically search a
899 * snapshot of the tree at a single point in time. For example, if a
900 * hole is created at index 5, then subsequently a hole is created at
901 * index 10, page_cache_next_hole covering both indexes may return 10
902 * if called under rcu_read_lock.
903 */
904pgoff_t page_cache_next_hole(struct address_space *mapping,
905 pgoff_t index, unsigned long max_scan)
906{
907 unsigned long i;
908
909 for (i = 0; i < max_scan; i++) {
Johannes Weiner0cd61442014-04-03 14:47:46 -0700910 struct page *page;
911
912 page = radix_tree_lookup(&mapping->page_tree, index);
913 if (!page || radix_tree_exceptional_entry(page))
Johannes Weinere7b563b2014-04-03 14:47:44 -0700914 break;
915 index++;
916 if (index == 0)
917 break;
918 }
919
920 return index;
921}
922EXPORT_SYMBOL(page_cache_next_hole);
923
924/**
925 * page_cache_prev_hole - find the prev hole (not-present entry)
926 * @mapping: mapping
927 * @index: index
928 * @max_scan: maximum range to search
929 *
930 * Search backwards in the range [max(index-max_scan+1, 0), index] for
931 * the first hole.
932 *
933 * Returns: the index of the hole if found, otherwise returns an index
934 * outside of the set specified (in which case 'index - return >=
935 * max_scan' will be true). In rare cases of wrap-around, ULONG_MAX
936 * will be returned.
937 *
938 * page_cache_prev_hole may be called under rcu_read_lock. However,
939 * like radix_tree_gang_lookup, this will not atomically search a
940 * snapshot of the tree at a single point in time. For example, if a
941 * hole is created at index 10, then subsequently a hole is created at
942 * index 5, page_cache_prev_hole covering both indexes may return 5 if
943 * called under rcu_read_lock.
944 */
945pgoff_t page_cache_prev_hole(struct address_space *mapping,
946 pgoff_t index, unsigned long max_scan)
947{
948 unsigned long i;
949
950 for (i = 0; i < max_scan; i++) {
Johannes Weiner0cd61442014-04-03 14:47:46 -0700951 struct page *page;
952
953 page = radix_tree_lookup(&mapping->page_tree, index);
954 if (!page || radix_tree_exceptional_entry(page))
Johannes Weinere7b563b2014-04-03 14:47:44 -0700955 break;
956 index--;
957 if (index == ULONG_MAX)
958 break;
959 }
960
961 return index;
962}
963EXPORT_SYMBOL(page_cache_prev_hole);
964
965/**
Johannes Weiner0cd61442014-04-03 14:47:46 -0700966 * find_get_entry - find and get a page cache entry
Randy Dunlap485bb992006-06-23 02:03:49 -0700967 * @mapping: the address_space to search
Johannes Weiner0cd61442014-04-03 14:47:46 -0700968 * @offset: the page cache index
Randy Dunlap485bb992006-06-23 02:03:49 -0700969 *
Johannes Weiner0cd61442014-04-03 14:47:46 -0700970 * Looks up the page cache slot at @mapping & @offset. If there is a
971 * page cache page, it is returned with an increased refcount.
972 *
Johannes Weiner139b6a62014-05-06 12:50:05 -0700973 * If the slot holds a shadow entry of a previously evicted page, or a
974 * swap entry from shmem/tmpfs, it is returned.
Johannes Weiner0cd61442014-04-03 14:47:46 -0700975 *
976 * Otherwise, %NULL is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 */
Johannes Weiner0cd61442014-04-03 14:47:46 -0700978struct page *find_get_entry(struct address_space *mapping, pgoff_t offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979{
Nick Piggina60637c2008-07-25 19:45:31 -0700980 void **pagep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 struct page *page;
982
Nick Piggina60637c2008-07-25 19:45:31 -0700983 rcu_read_lock();
984repeat:
985 page = NULL;
986 pagep = radix_tree_lookup_slot(&mapping->page_tree, offset);
987 if (pagep) {
988 page = radix_tree_deref_slot(pagep);
Nick Piggin27d20fd2010-11-11 14:05:19 -0800989 if (unlikely(!page))
990 goto out;
Hugh Dickinsa2c16d62011-08-03 16:21:19 -0700991 if (radix_tree_exception(page)) {
Hugh Dickins8079b1c2011-08-03 16:21:28 -0700992 if (radix_tree_deref_retry(page))
993 goto repeat;
994 /*
Johannes Weiner139b6a62014-05-06 12:50:05 -0700995 * A shadow entry of a recently evicted page,
996 * or a swap entry from shmem/tmpfs. Return
997 * it without attempting to raise page count.
Hugh Dickins8079b1c2011-08-03 16:21:28 -0700998 */
999 goto out;
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001000 }
Nick Piggina60637c2008-07-25 19:45:31 -07001001 if (!page_cache_get_speculative(page))
1002 goto repeat;
1003
1004 /*
1005 * Has the page moved?
1006 * This is part of the lockless pagecache protocol. See
1007 * include/linux/pagemap.h for details.
1008 */
1009 if (unlikely(page != *pagep)) {
1010 page_cache_release(page);
1011 goto repeat;
1012 }
1013 }
Nick Piggin27d20fd2010-11-11 14:05:19 -08001014out:
Nick Piggina60637c2008-07-25 19:45:31 -07001015 rcu_read_unlock();
1016
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 return page;
1018}
Johannes Weiner0cd61442014-04-03 14:47:46 -07001019EXPORT_SYMBOL(find_get_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
Randy Dunlap485bb992006-06-23 02:03:49 -07001021/**
Johannes Weiner0cd61442014-04-03 14:47:46 -07001022 * find_lock_entry - locate, pin and lock a page cache entry
1023 * @mapping: the address_space to search
1024 * @offset: the page cache index
1025 *
1026 * Looks up the page cache slot at @mapping & @offset. If there is a
1027 * page cache page, it is returned locked and with an increased
1028 * refcount.
1029 *
Johannes Weiner139b6a62014-05-06 12:50:05 -07001030 * If the slot holds a shadow entry of a previously evicted page, or a
1031 * swap entry from shmem/tmpfs, it is returned.
Johannes Weiner0cd61442014-04-03 14:47:46 -07001032 *
1033 * Otherwise, %NULL is returned.
1034 *
1035 * find_lock_entry() may sleep.
1036 */
1037struct page *find_lock_entry(struct address_space *mapping, pgoff_t offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038{
1039 struct page *page;
1040
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041repeat:
Johannes Weiner0cd61442014-04-03 14:47:46 -07001042 page = find_get_entry(mapping, offset);
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001043 if (page && !radix_tree_exception(page)) {
Nick Piggina60637c2008-07-25 19:45:31 -07001044 lock_page(page);
1045 /* Has the page been truncated? */
1046 if (unlikely(page->mapping != mapping)) {
1047 unlock_page(page);
1048 page_cache_release(page);
1049 goto repeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 }
Sasha Levin309381fea2014-01-23 15:52:54 -08001051 VM_BUG_ON_PAGE(page->index != offset, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 return page;
1054}
Johannes Weiner0cd61442014-04-03 14:47:46 -07001055EXPORT_SYMBOL(find_lock_entry);
1056
1057/**
Mel Gorman2457aec2014-06-04 16:10:31 -07001058 * pagecache_get_page - find and get a page reference
Johannes Weiner0cd61442014-04-03 14:47:46 -07001059 * @mapping: the address_space to search
1060 * @offset: the page index
Mel Gorman2457aec2014-06-04 16:10:31 -07001061 * @fgp_flags: PCG flags
Michal Hocko45f87de2014-12-29 20:30:35 +01001062 * @gfp_mask: gfp mask to use for the page cache data page allocation
Johannes Weiner0cd61442014-04-03 14:47:46 -07001063 *
Mel Gorman2457aec2014-06-04 16:10:31 -07001064 * Looks up the page cache slot at @mapping & @offset.
Johannes Weiner0cd61442014-04-03 14:47:46 -07001065 *
Randy Dunlap75325182014-07-30 16:08:37 -07001066 * PCG flags modify how the page is returned.
Johannes Weiner0cd61442014-04-03 14:47:46 -07001067 *
Mel Gorman2457aec2014-06-04 16:10:31 -07001068 * FGP_ACCESSED: the page will be marked accessed
1069 * FGP_LOCK: Page is return locked
1070 * FGP_CREAT: If page is not present then a new page is allocated using
Michal Hocko45f87de2014-12-29 20:30:35 +01001071 * @gfp_mask and added to the page cache and the VM's LRU
1072 * list. The page is returned locked and with an increased
1073 * refcount. Otherwise, %NULL is returned.
Mel Gorman2457aec2014-06-04 16:10:31 -07001074 *
1075 * If FGP_LOCK or FGP_CREAT are specified then the function may sleep even
1076 * if the GFP flags specified for FGP_CREAT are atomic.
1077 *
1078 * If there is a page cache page, it is returned with an increased refcount.
Johannes Weiner0cd61442014-04-03 14:47:46 -07001079 */
Mel Gorman2457aec2014-06-04 16:10:31 -07001080struct page *pagecache_get_page(struct address_space *mapping, pgoff_t offset,
Michal Hocko45f87de2014-12-29 20:30:35 +01001081 int fgp_flags, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082{
Nick Piggineb2be182007-10-16 01:24:57 -07001083 struct page *page;
Mel Gorman2457aec2014-06-04 16:10:31 -07001084
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085repeat:
Mel Gorman2457aec2014-06-04 16:10:31 -07001086 page = find_get_entry(mapping, offset);
1087 if (radix_tree_exceptional_entry(page))
1088 page = NULL;
1089 if (!page)
1090 goto no_page;
1091
1092 if (fgp_flags & FGP_LOCK) {
1093 if (fgp_flags & FGP_NOWAIT) {
1094 if (!trylock_page(page)) {
1095 page_cache_release(page);
1096 return NULL;
1097 }
1098 } else {
1099 lock_page(page);
1100 }
1101
1102 /* Has the page been truncated? */
1103 if (unlikely(page->mapping != mapping)) {
1104 unlock_page(page);
1105 page_cache_release(page);
1106 goto repeat;
1107 }
1108 VM_BUG_ON_PAGE(page->index != offset, page);
1109 }
1110
1111 if (page && (fgp_flags & FGP_ACCESSED))
1112 mark_page_accessed(page);
1113
1114no_page:
1115 if (!page && (fgp_flags & FGP_CREAT)) {
1116 int err;
1117 if ((fgp_flags & FGP_WRITE) && mapping_cap_account_dirty(mapping))
Michal Hocko45f87de2014-12-29 20:30:35 +01001118 gfp_mask |= __GFP_WRITE;
1119 if (fgp_flags & FGP_NOFS)
1120 gfp_mask &= ~__GFP_FS;
Mel Gorman2457aec2014-06-04 16:10:31 -07001121
Michal Hocko45f87de2014-12-29 20:30:35 +01001122 page = __page_cache_alloc(gfp_mask);
Nick Piggineb2be182007-10-16 01:24:57 -07001123 if (!page)
1124 return NULL;
Mel Gorman2457aec2014-06-04 16:10:31 -07001125
1126 if (WARN_ON_ONCE(!(fgp_flags & FGP_LOCK)))
1127 fgp_flags |= FGP_LOCK;
1128
Hugh Dickinseb39d612014-08-06 16:06:43 -07001129 /* Init accessed so avoid atomic mark_page_accessed later */
Mel Gorman2457aec2014-06-04 16:10:31 -07001130 if (fgp_flags & FGP_ACCESSED)
Hugh Dickinseb39d612014-08-06 16:06:43 -07001131 __SetPageReferenced(page);
Mel Gorman2457aec2014-06-04 16:10:31 -07001132
Michal Hocko45f87de2014-12-29 20:30:35 +01001133 err = add_to_page_cache_lru(page, mapping, offset,
1134 gfp_mask & GFP_RECLAIM_MASK);
Nick Piggineb2be182007-10-16 01:24:57 -07001135 if (unlikely(err)) {
1136 page_cache_release(page);
1137 page = NULL;
1138 if (err == -EEXIST)
1139 goto repeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 }
Mel Gorman2457aec2014-06-04 16:10:31 -07001142
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 return page;
1144}
Mel Gorman2457aec2014-06-04 16:10:31 -07001145EXPORT_SYMBOL(pagecache_get_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
1147/**
Johannes Weiner0cd61442014-04-03 14:47:46 -07001148 * find_get_entries - gang pagecache lookup
1149 * @mapping: The address_space to search
1150 * @start: The starting page cache index
1151 * @nr_entries: The maximum number of entries
1152 * @entries: Where the resulting entries are placed
1153 * @indices: The cache indices corresponding to the entries in @entries
1154 *
1155 * find_get_entries() will search for and return a group of up to
1156 * @nr_entries entries in the mapping. The entries are placed at
1157 * @entries. find_get_entries() takes a reference against any actual
1158 * pages it returns.
1159 *
1160 * The search returns a group of mapping-contiguous page cache entries
1161 * with ascending indexes. There may be holes in the indices due to
1162 * not-present pages.
1163 *
Johannes Weiner139b6a62014-05-06 12:50:05 -07001164 * Any shadow entries of evicted pages, or swap entries from
1165 * shmem/tmpfs, are included in the returned array.
Johannes Weiner0cd61442014-04-03 14:47:46 -07001166 *
1167 * find_get_entries() returns the number of pages and shadow entries
1168 * which were found.
1169 */
1170unsigned find_get_entries(struct address_space *mapping,
1171 pgoff_t start, unsigned int nr_entries,
1172 struct page **entries, pgoff_t *indices)
1173{
1174 void **slot;
1175 unsigned int ret = 0;
1176 struct radix_tree_iter iter;
1177
1178 if (!nr_entries)
1179 return 0;
1180
1181 rcu_read_lock();
1182restart:
1183 radix_tree_for_each_slot(slot, &mapping->page_tree, &iter, start) {
1184 struct page *page;
1185repeat:
1186 page = radix_tree_deref_slot(slot);
1187 if (unlikely(!page))
1188 continue;
1189 if (radix_tree_exception(page)) {
1190 if (radix_tree_deref_retry(page))
1191 goto restart;
1192 /*
Johannes Weiner139b6a62014-05-06 12:50:05 -07001193 * A shadow entry of a recently evicted page,
1194 * or a swap entry from shmem/tmpfs. Return
1195 * it without attempting to raise page count.
Johannes Weiner0cd61442014-04-03 14:47:46 -07001196 */
1197 goto export;
1198 }
1199 if (!page_cache_get_speculative(page))
1200 goto repeat;
1201
1202 /* Has the page moved? */
1203 if (unlikely(page != *slot)) {
1204 page_cache_release(page);
1205 goto repeat;
1206 }
1207export:
1208 indices[ret] = iter.index;
1209 entries[ret] = page;
1210 if (++ret == nr_entries)
1211 break;
1212 }
1213 rcu_read_unlock();
1214 return ret;
1215}
1216
1217/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 * find_get_pages - gang pagecache lookup
1219 * @mapping: The address_space to search
1220 * @start: The starting page index
1221 * @nr_pages: The maximum number of pages
1222 * @pages: Where the resulting pages are placed
1223 *
1224 * find_get_pages() will search for and return a group of up to
1225 * @nr_pages pages in the mapping. The pages are placed at @pages.
1226 * find_get_pages() takes a reference against the returned pages.
1227 *
1228 * The search returns a group of mapping-contiguous pages with ascending
1229 * indexes. There may be holes in the indices due to not-present pages.
1230 *
1231 * find_get_pages() returns the number of pages which were found.
1232 */
1233unsigned find_get_pages(struct address_space *mapping, pgoff_t start,
1234 unsigned int nr_pages, struct page **pages)
1235{
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001236 struct radix_tree_iter iter;
1237 void **slot;
1238 unsigned ret = 0;
1239
1240 if (unlikely(!nr_pages))
1241 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242
Nick Piggina60637c2008-07-25 19:45:31 -07001243 rcu_read_lock();
1244restart:
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001245 radix_tree_for_each_slot(slot, &mapping->page_tree, &iter, start) {
Nick Piggina60637c2008-07-25 19:45:31 -07001246 struct page *page;
1247repeat:
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001248 page = radix_tree_deref_slot(slot);
Nick Piggina60637c2008-07-25 19:45:31 -07001249 if (unlikely(!page))
1250 continue;
Hugh Dickins9d8aa4e2011-03-22 16:33:06 -07001251
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001252 if (radix_tree_exception(page)) {
Hugh Dickins8079b1c2011-08-03 16:21:28 -07001253 if (radix_tree_deref_retry(page)) {
1254 /*
1255 * Transient condition which can only trigger
1256 * when entry at index 0 moves out of or back
1257 * to root: none yet gotten, safe to restart.
1258 */
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001259 WARN_ON(iter.index);
Hugh Dickins8079b1c2011-08-03 16:21:28 -07001260 goto restart;
1261 }
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001262 /*
Johannes Weiner139b6a62014-05-06 12:50:05 -07001263 * A shadow entry of a recently evicted page,
1264 * or a swap entry from shmem/tmpfs. Skip
1265 * over it.
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001266 */
Hugh Dickins8079b1c2011-08-03 16:21:28 -07001267 continue;
Nick Piggin27d20fd2010-11-11 14:05:19 -08001268 }
Nick Piggina60637c2008-07-25 19:45:31 -07001269
1270 if (!page_cache_get_speculative(page))
1271 goto repeat;
1272
1273 /* Has the page moved? */
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001274 if (unlikely(page != *slot)) {
Nick Piggina60637c2008-07-25 19:45:31 -07001275 page_cache_release(page);
1276 goto repeat;
1277 }
1278
1279 pages[ret] = page;
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001280 if (++ret == nr_pages)
1281 break;
Nick Piggina60637c2008-07-25 19:45:31 -07001282 }
Hugh Dickins5b280c02011-03-22 16:33:07 -07001283
Nick Piggina60637c2008-07-25 19:45:31 -07001284 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 return ret;
1286}
1287
Jens Axboeebf43502006-04-27 08:46:01 +02001288/**
1289 * find_get_pages_contig - gang contiguous pagecache lookup
1290 * @mapping: The address_space to search
1291 * @index: The starting page index
1292 * @nr_pages: The maximum number of pages
1293 * @pages: Where the resulting pages are placed
1294 *
1295 * find_get_pages_contig() works exactly like find_get_pages(), except
1296 * that the returned number of pages are guaranteed to be contiguous.
1297 *
1298 * find_get_pages_contig() returns the number of pages which were found.
1299 */
1300unsigned find_get_pages_contig(struct address_space *mapping, pgoff_t index,
1301 unsigned int nr_pages, struct page **pages)
1302{
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001303 struct radix_tree_iter iter;
1304 void **slot;
1305 unsigned int ret = 0;
1306
1307 if (unlikely(!nr_pages))
1308 return 0;
Jens Axboeebf43502006-04-27 08:46:01 +02001309
Nick Piggina60637c2008-07-25 19:45:31 -07001310 rcu_read_lock();
1311restart:
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001312 radix_tree_for_each_contig(slot, &mapping->page_tree, &iter, index) {
Nick Piggina60637c2008-07-25 19:45:31 -07001313 struct page *page;
1314repeat:
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001315 page = radix_tree_deref_slot(slot);
1316 /* The hole, there no reason to continue */
Nick Piggina60637c2008-07-25 19:45:31 -07001317 if (unlikely(!page))
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001318 break;
Hugh Dickins9d8aa4e2011-03-22 16:33:06 -07001319
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001320 if (radix_tree_exception(page)) {
Hugh Dickins8079b1c2011-08-03 16:21:28 -07001321 if (radix_tree_deref_retry(page)) {
1322 /*
1323 * Transient condition which can only trigger
1324 * when entry at index 0 moves out of or back
1325 * to root: none yet gotten, safe to restart.
1326 */
1327 goto restart;
1328 }
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001329 /*
Johannes Weiner139b6a62014-05-06 12:50:05 -07001330 * A shadow entry of a recently evicted page,
1331 * or a swap entry from shmem/tmpfs. Stop
1332 * looking for contiguous pages.
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001333 */
Hugh Dickins8079b1c2011-08-03 16:21:28 -07001334 break;
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001335 }
Nick Piggina60637c2008-07-25 19:45:31 -07001336
Nick Piggina60637c2008-07-25 19:45:31 -07001337 if (!page_cache_get_speculative(page))
1338 goto repeat;
1339
1340 /* Has the page moved? */
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001341 if (unlikely(page != *slot)) {
Nick Piggina60637c2008-07-25 19:45:31 -07001342 page_cache_release(page);
1343 goto repeat;
1344 }
1345
Nick Piggin9cbb4cb2011-01-13 15:45:51 -08001346 /*
1347 * must check mapping and index after taking the ref.
1348 * otherwise we can get both false positives and false
1349 * negatives, which is just confusing to the caller.
1350 */
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001351 if (page->mapping == NULL || page->index != iter.index) {
Nick Piggin9cbb4cb2011-01-13 15:45:51 -08001352 page_cache_release(page);
1353 break;
1354 }
1355
Nick Piggina60637c2008-07-25 19:45:31 -07001356 pages[ret] = page;
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001357 if (++ret == nr_pages)
1358 break;
Jens Axboeebf43502006-04-27 08:46:01 +02001359 }
Nick Piggina60637c2008-07-25 19:45:31 -07001360 rcu_read_unlock();
1361 return ret;
Jens Axboeebf43502006-04-27 08:46:01 +02001362}
David Howellsef71c152007-05-09 02:33:44 -07001363EXPORT_SYMBOL(find_get_pages_contig);
Jens Axboeebf43502006-04-27 08:46:01 +02001364
Randy Dunlap485bb992006-06-23 02:03:49 -07001365/**
1366 * find_get_pages_tag - find and return pages that match @tag
1367 * @mapping: the address_space to search
1368 * @index: the starting page index
1369 * @tag: the tag index
1370 * @nr_pages: the maximum number of pages
1371 * @pages: where the resulting pages are placed
1372 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 * Like find_get_pages, except we only return pages which are tagged with
Randy Dunlap485bb992006-06-23 02:03:49 -07001374 * @tag. We update @index to index the next page for the traversal.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 */
1376unsigned find_get_pages_tag(struct address_space *mapping, pgoff_t *index,
1377 int tag, unsigned int nr_pages, struct page **pages)
1378{
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001379 struct radix_tree_iter iter;
1380 void **slot;
1381 unsigned ret = 0;
1382
1383 if (unlikely(!nr_pages))
1384 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
Nick Piggina60637c2008-07-25 19:45:31 -07001386 rcu_read_lock();
1387restart:
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001388 radix_tree_for_each_tagged(slot, &mapping->page_tree,
1389 &iter, *index, tag) {
Nick Piggina60637c2008-07-25 19:45:31 -07001390 struct page *page;
1391repeat:
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001392 page = radix_tree_deref_slot(slot);
Nick Piggina60637c2008-07-25 19:45:31 -07001393 if (unlikely(!page))
1394 continue;
Hugh Dickins9d8aa4e2011-03-22 16:33:06 -07001395
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001396 if (radix_tree_exception(page)) {
Hugh Dickins8079b1c2011-08-03 16:21:28 -07001397 if (radix_tree_deref_retry(page)) {
1398 /*
1399 * Transient condition which can only trigger
1400 * when entry at index 0 moves out of or back
1401 * to root: none yet gotten, safe to restart.
1402 */
1403 goto restart;
1404 }
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001405 /*
Johannes Weiner139b6a62014-05-06 12:50:05 -07001406 * A shadow entry of a recently evicted page.
1407 *
1408 * Those entries should never be tagged, but
1409 * this tree walk is lockless and the tags are
1410 * looked up in bulk, one radix tree node at a
1411 * time, so there is a sizable window for page
1412 * reclaim to evict a page we saw tagged.
1413 *
1414 * Skip over it.
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001415 */
Johannes Weiner139b6a62014-05-06 12:50:05 -07001416 continue;
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001417 }
Nick Piggina60637c2008-07-25 19:45:31 -07001418
1419 if (!page_cache_get_speculative(page))
1420 goto repeat;
1421
1422 /* Has the page moved? */
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001423 if (unlikely(page != *slot)) {
Nick Piggina60637c2008-07-25 19:45:31 -07001424 page_cache_release(page);
1425 goto repeat;
1426 }
1427
1428 pages[ret] = page;
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001429 if (++ret == nr_pages)
1430 break;
Nick Piggina60637c2008-07-25 19:45:31 -07001431 }
Hugh Dickins5b280c02011-03-22 16:33:07 -07001432
Nick Piggina60637c2008-07-25 19:45:31 -07001433 rcu_read_unlock();
1434
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 if (ret)
1436 *index = pages[ret - 1]->index + 1;
Nick Piggina60637c2008-07-25 19:45:31 -07001437
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 return ret;
1439}
David Howellsef71c152007-05-09 02:33:44 -07001440EXPORT_SYMBOL(find_get_pages_tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
Wu Fengguang76d42bd2006-06-25 05:48:43 -07001442/*
1443 * CD/DVDs are error prone. When a medium error occurs, the driver may fail
1444 * a _large_ part of the i/o request. Imagine the worst scenario:
1445 *
1446 * ---R__________________________________________B__________
1447 * ^ reading here ^ bad block(assume 4k)
1448 *
1449 * read(R) => miss => readahead(R...B) => media error => frustrating retries
1450 * => failing the whole request => read(R) => read(R+1) =>
1451 * readahead(R+1...B+1) => bang => read(R+2) => read(R+3) =>
1452 * readahead(R+3...B+2) => bang => read(R+3) => read(R+4) =>
1453 * readahead(R+4...B+3) => bang => read(R+4) => read(R+5) => ......
1454 *
1455 * It is going insane. Fix it by quickly scaling down the readahead size.
1456 */
1457static void shrink_readahead_size_eio(struct file *filp,
1458 struct file_ra_state *ra)
1459{
Wu Fengguang76d42bd2006-06-25 05:48:43 -07001460 ra->ra_pages /= 4;
Wu Fengguang76d42bd2006-06-25 05:48:43 -07001461}
1462
Randy Dunlap485bb992006-06-23 02:03:49 -07001463/**
Christoph Hellwig36e78912008-02-08 04:21:24 -08001464 * do_generic_file_read - generic file read routine
Randy Dunlap485bb992006-06-23 02:03:49 -07001465 * @filp: the file to read
1466 * @ppos: current file position
Al Viro6e58e792014-02-03 17:07:03 -05001467 * @iter: data destination
1468 * @written: already copied
Randy Dunlap485bb992006-06-23 02:03:49 -07001469 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 * This is a generic file read routine, and uses the
Randy Dunlap485bb992006-06-23 02:03:49 -07001471 * mapping->a_ops->readpage() function for the actual low-level stuff.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 *
1473 * This is really ugly. But the goto's actually try to clarify some
1474 * of the logic when it comes to error handling etc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 */
Al Viro6e58e792014-02-03 17:07:03 -05001476static ssize_t do_generic_file_read(struct file *filp, loff_t *ppos,
1477 struct iov_iter *iter, ssize_t written)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478{
Christoph Hellwig36e78912008-02-08 04:21:24 -08001479 struct address_space *mapping = filp->f_mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 struct inode *inode = mapping->host;
Christoph Hellwig36e78912008-02-08 04:21:24 -08001481 struct file_ra_state *ra = &filp->f_ra;
Fengguang Wu57f6b962007-10-16 01:24:37 -07001482 pgoff_t index;
1483 pgoff_t last_index;
1484 pgoff_t prev_index;
1485 unsigned long offset; /* offset into pagecache page */
Jan Karaec0f1632007-05-06 14:49:25 -07001486 unsigned int prev_offset;
Al Viro6e58e792014-02-03 17:07:03 -05001487 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 index = *ppos >> PAGE_CACHE_SHIFT;
Fengguang Wu7ff81072007-10-16 01:24:35 -07001490 prev_index = ra->prev_pos >> PAGE_CACHE_SHIFT;
1491 prev_offset = ra->prev_pos & (PAGE_CACHE_SIZE-1);
Al Viro6e58e792014-02-03 17:07:03 -05001492 last_index = (*ppos + iter->count + PAGE_CACHE_SIZE-1) >> PAGE_CACHE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 offset = *ppos & ~PAGE_CACHE_MASK;
1494
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 for (;;) {
1496 struct page *page;
Fengguang Wu57f6b962007-10-16 01:24:37 -07001497 pgoff_t end_index;
NeilBrowna32ea1e2007-07-17 04:03:04 -07001498 loff_t isize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 unsigned long nr, ret;
1500
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502find_page:
1503 page = find_get_page(mapping, index);
Fengguang Wu3ea89ee2007-07-19 01:48:02 -07001504 if (!page) {
Rusty Russellcf914a72007-07-19 01:48:08 -07001505 page_cache_sync_readahead(mapping,
Fengguang Wu7ff81072007-10-16 01:24:35 -07001506 ra, filp,
Fengguang Wu3ea89ee2007-07-19 01:48:02 -07001507 index, last_index - index);
1508 page = find_get_page(mapping, index);
1509 if (unlikely(page == NULL))
1510 goto no_cached_page;
1511 }
1512 if (PageReadahead(page)) {
Rusty Russellcf914a72007-07-19 01:48:08 -07001513 page_cache_async_readahead(mapping,
Fengguang Wu7ff81072007-10-16 01:24:35 -07001514 ra, filp, page,
Fengguang Wu3ea89ee2007-07-19 01:48:02 -07001515 index, last_index - index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 }
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07001517 if (!PageUptodate(page)) {
1518 if (inode->i_blkbits == PAGE_CACHE_SHIFT ||
1519 !mapping->a_ops->is_partially_uptodate)
1520 goto page_not_up_to_date;
Nick Piggin529ae9a2008-08-02 12:01:03 +02001521 if (!trylock_page(page))
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07001522 goto page_not_up_to_date;
Dave Hansen8d056cb2010-11-11 14:05:15 -08001523 /* Did it get truncated before we got the lock? */
1524 if (!page->mapping)
1525 goto page_not_up_to_date_locked;
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07001526 if (!mapping->a_ops->is_partially_uptodate(page,
Al Viro6e58e792014-02-03 17:07:03 -05001527 offset, iter->count))
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07001528 goto page_not_up_to_date_locked;
1529 unlock_page(page);
1530 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531page_ok:
NeilBrowna32ea1e2007-07-17 04:03:04 -07001532 /*
1533 * i_size must be checked after we know the page is Uptodate.
1534 *
1535 * Checking i_size after the check allows us to calculate
1536 * the correct value for "nr", which means the zero-filled
1537 * part of the page is not copied back to userspace (unless
1538 * another truncate extends the file - this is desired though).
1539 */
1540
1541 isize = i_size_read(inode);
1542 end_index = (isize - 1) >> PAGE_CACHE_SHIFT;
1543 if (unlikely(!isize || index > end_index)) {
1544 page_cache_release(page);
1545 goto out;
1546 }
1547
1548 /* nr is the maximum number of bytes to copy from this page */
1549 nr = PAGE_CACHE_SIZE;
1550 if (index == end_index) {
1551 nr = ((isize - 1) & ~PAGE_CACHE_MASK) + 1;
1552 if (nr <= offset) {
1553 page_cache_release(page);
1554 goto out;
1555 }
1556 }
1557 nr = nr - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
1559 /* If users can be writing to this page using arbitrary
1560 * virtual addresses, take care about potential aliasing
1561 * before reading the page on the kernel side.
1562 */
1563 if (mapping_writably_mapped(mapping))
1564 flush_dcache_page(page);
1565
1566 /*
Jan Karaec0f1632007-05-06 14:49:25 -07001567 * When a sequential read accesses a page several times,
1568 * only mark it as accessed the first time.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 */
Jan Karaec0f1632007-05-06 14:49:25 -07001570 if (prev_index != index || offset != prev_offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 mark_page_accessed(page);
1572 prev_index = index;
1573
1574 /*
1575 * Ok, we have the page, and it's up-to-date, so
1576 * now we can copy it to user space...
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 */
Al Viro6e58e792014-02-03 17:07:03 -05001578
1579 ret = copy_page_to_iter(page, offset, nr, iter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 offset += ret;
1581 index += offset >> PAGE_CACHE_SHIFT;
1582 offset &= ~PAGE_CACHE_MASK;
Jan Kara6ce745e2007-05-06 14:49:26 -07001583 prev_offset = offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584
1585 page_cache_release(page);
Al Viro6e58e792014-02-03 17:07:03 -05001586 written += ret;
1587 if (!iov_iter_count(iter))
1588 goto out;
1589 if (ret < nr) {
1590 error = -EFAULT;
1591 goto out;
1592 }
1593 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594
1595page_not_up_to_date:
1596 /* Get exclusive access to the page ... */
Oleg Nesterov85462322008-06-08 21:20:43 +04001597 error = lock_page_killable(page);
1598 if (unlikely(error))
1599 goto readpage_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07001601page_not_up_to_date_locked:
Nick Pigginda6052f2006-09-25 23:31:35 -07001602 /* Did it get truncated before we got the lock? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 if (!page->mapping) {
1604 unlock_page(page);
1605 page_cache_release(page);
1606 continue;
1607 }
1608
1609 /* Did somebody else fill it already? */
1610 if (PageUptodate(page)) {
1611 unlock_page(page);
1612 goto page_ok;
1613 }
1614
1615readpage:
Jeff Moyer91803b42010-05-26 11:49:40 -04001616 /*
1617 * A previous I/O error may have been due to temporary
1618 * failures, eg. multipath errors.
1619 * PG_error will be set again if readpage fails.
1620 */
1621 ClearPageError(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 /* Start the actual read. The read will unlock the page. */
1623 error = mapping->a_ops->readpage(filp, page);
1624
Zach Brown994fc28c2005-12-15 14:28:17 -08001625 if (unlikely(error)) {
1626 if (error == AOP_TRUNCATED_PAGE) {
1627 page_cache_release(page);
Al Viro6e58e792014-02-03 17:07:03 -05001628 error = 0;
Zach Brown994fc28c2005-12-15 14:28:17 -08001629 goto find_page;
1630 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 goto readpage_error;
Zach Brown994fc28c2005-12-15 14:28:17 -08001632 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633
1634 if (!PageUptodate(page)) {
Oleg Nesterov85462322008-06-08 21:20:43 +04001635 error = lock_page_killable(page);
1636 if (unlikely(error))
1637 goto readpage_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 if (!PageUptodate(page)) {
1639 if (page->mapping == NULL) {
1640 /*
Christoph Hellwig2ecdc822010-01-26 17:27:20 +01001641 * invalidate_mapping_pages got it
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 */
1643 unlock_page(page);
1644 page_cache_release(page);
1645 goto find_page;
1646 }
1647 unlock_page(page);
Fengguang Wu7ff81072007-10-16 01:24:35 -07001648 shrink_readahead_size_eio(filp, ra);
Oleg Nesterov85462322008-06-08 21:20:43 +04001649 error = -EIO;
1650 goto readpage_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 }
1652 unlock_page(page);
1653 }
1654
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 goto page_ok;
1656
1657readpage_error:
1658 /* UHHUH! A synchronous read error occurred. Report it */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 page_cache_release(page);
1660 goto out;
1661
1662no_cached_page:
1663 /*
1664 * Ok, it wasn't cached, so we need to create a new
1665 * page..
1666 */
Nick Piggineb2be182007-10-16 01:24:57 -07001667 page = page_cache_alloc_cold(mapping);
1668 if (!page) {
Al Viro6e58e792014-02-03 17:07:03 -05001669 error = -ENOMEM;
Nick Piggineb2be182007-10-16 01:24:57 -07001670 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 }
Nick Piggineb2be182007-10-16 01:24:57 -07001672 error = add_to_page_cache_lru(page, mapping,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 index, GFP_KERNEL);
1674 if (error) {
Nick Piggineb2be182007-10-16 01:24:57 -07001675 page_cache_release(page);
Al Viro6e58e792014-02-03 17:07:03 -05001676 if (error == -EEXIST) {
1677 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 goto find_page;
Al Viro6e58e792014-02-03 17:07:03 -05001679 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 goto out;
1681 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 goto readpage;
1683 }
1684
1685out:
Fengguang Wu7ff81072007-10-16 01:24:35 -07001686 ra->prev_pos = prev_index;
1687 ra->prev_pos <<= PAGE_CACHE_SHIFT;
1688 ra->prev_pos |= prev_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689
Fengguang Wuf4e6b492007-10-16 01:24:33 -07001690 *ppos = ((loff_t)index << PAGE_CACHE_SHIFT) + offset;
Krishna Kumar0c6aa262008-10-15 22:01:13 -07001691 file_accessed(filp);
Al Viro6e58e792014-02-03 17:07:03 -05001692 return written ? written : error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693}
1694
Randy Dunlap485bb992006-06-23 02:03:49 -07001695/**
Al Viro6abd2322014-04-04 14:20:57 -04001696 * generic_file_read_iter - generic filesystem read routine
Randy Dunlap485bb992006-06-23 02:03:49 -07001697 * @iocb: kernel I/O control block
Al Viro6abd2322014-04-04 14:20:57 -04001698 * @iter: destination for the data read
Randy Dunlap485bb992006-06-23 02:03:49 -07001699 *
Al Viro6abd2322014-04-04 14:20:57 -04001700 * This is the "read_iter()" routine for all filesystems
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 * that can use the page cache directly.
1702 */
1703ssize_t
Al Viroed978a82014-03-05 22:53:04 -05001704generic_file_read_iter(struct kiocb *iocb, struct iov_iter *iter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705{
Al Viroed978a82014-03-05 22:53:04 -05001706 struct file *file = iocb->ki_filp;
1707 ssize_t retval = 0;
Badari Pulavarty543ade12006-09-30 23:28:48 -07001708 loff_t *ppos = &iocb->ki_pos;
Al Viroed978a82014-03-05 22:53:04 -05001709 loff_t pos = *ppos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710
Al Viro2ba48ce2015-04-09 13:52:01 -04001711 if (iocb->ki_flags & IOCB_DIRECT) {
Al Viroed978a82014-03-05 22:53:04 -05001712 struct address_space *mapping = file->f_mapping;
1713 struct inode *inode = mapping->host;
1714 size_t count = iov_iter_count(iter);
Badari Pulavarty543ade12006-09-30 23:28:48 -07001715 loff_t size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 if (!count)
1718 goto out; /* skip atime */
1719 size = i_size_read(inode);
Steven Whitehouse9fe55ee2014-01-24 14:42:22 +00001720 retval = filemap_write_and_wait_range(mapping, pos,
Al Viroed978a82014-03-05 22:53:04 -05001721 pos + count - 1);
Steven Whitehouse9fe55ee2014-01-24 14:42:22 +00001722 if (!retval) {
Al Viroed978a82014-03-05 22:53:04 -05001723 struct iov_iter data = *iter;
Omar Sandoval22c61862015-03-16 04:33:53 -07001724 retval = mapping->a_ops->direct_IO(iocb, &data, pos);
Steven Whitehouse9fe55ee2014-01-24 14:42:22 +00001725 }
Al Viroed978a82014-03-05 22:53:04 -05001726
Steven Whitehouse9fe55ee2014-01-24 14:42:22 +00001727 if (retval > 0) {
1728 *ppos = pos + retval;
Al Viroed978a82014-03-05 22:53:04 -05001729 iov_iter_advance(iter, retval);
Steven Whitehouse9fe55ee2014-01-24 14:42:22 +00001730 }
Josef Bacik66f998f2010-05-23 11:00:54 -04001731
Steven Whitehouse9fe55ee2014-01-24 14:42:22 +00001732 /*
1733 * Btrfs can have a short DIO read if we encounter
1734 * compressed extents, so if there was an error, or if
1735 * we've already read everything we wanted to, or if
1736 * there was a short read because we hit EOF, go ahead
1737 * and return. Otherwise fallthrough to buffered io for
Matthew Wilcoxfbbbad42015-02-16 15:58:53 -08001738 * the rest of the read. Buffered reads will not work for
1739 * DAX files, so don't bother trying.
Steven Whitehouse9fe55ee2014-01-24 14:42:22 +00001740 */
Matthew Wilcoxfbbbad42015-02-16 15:58:53 -08001741 if (retval < 0 || !iov_iter_count(iter) || *ppos >= size ||
1742 IS_DAX(inode)) {
Al Viroed978a82014-03-05 22:53:04 -05001743 file_accessed(file);
Steven Whitehouse9fe55ee2014-01-24 14:42:22 +00001744 goto out;
Steven Whitehouse0e0bcae2006-09-27 14:45:07 -04001745 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 }
1747
Al Viroed978a82014-03-05 22:53:04 -05001748 retval = do_generic_file_read(file, ppos, iter, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749out:
1750 return retval;
1751}
Al Viroed978a82014-03-05 22:53:04 -05001752EXPORT_SYMBOL(generic_file_read_iter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754#ifdef CONFIG_MMU
Randy Dunlap485bb992006-06-23 02:03:49 -07001755/**
1756 * page_cache_read - adds requested page to the page cache if not already there
1757 * @file: file to read
1758 * @offset: page index
1759 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 * This adds the requested page to the page cache if it isn't already there,
1761 * and schedules an I/O to read in its contents from disk.
1762 */
Harvey Harrison920c7a52008-02-04 22:29:26 -08001763static int page_cache_read(struct file *file, pgoff_t offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764{
1765 struct address_space *mapping = file->f_mapping;
Paul McQuade99dadfd2014-10-09 15:29:03 -07001766 struct page *page;
Zach Brown994fc28c2005-12-15 14:28:17 -08001767 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768
Zach Brown994fc28c2005-12-15 14:28:17 -08001769 do {
1770 page = page_cache_alloc_cold(mapping);
1771 if (!page)
1772 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773
Zach Brown994fc28c2005-12-15 14:28:17 -08001774 ret = add_to_page_cache_lru(page, mapping, offset, GFP_KERNEL);
1775 if (ret == 0)
1776 ret = mapping->a_ops->readpage(file, page);
1777 else if (ret == -EEXIST)
1778 ret = 0; /* losing race to add is OK */
1779
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
Zach Brown994fc28c2005-12-15 14:28:17 -08001782 } while (ret == AOP_TRUNCATED_PAGE);
Paul McQuade99dadfd2014-10-09 15:29:03 -07001783
Zach Brown994fc28c2005-12-15 14:28:17 -08001784 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785}
1786
1787#define MMAP_LOTSAMISS (100)
1788
Linus Torvaldsef00e082009-06-16 15:31:25 -07001789/*
1790 * Synchronous readahead happens when we don't even find
1791 * a page in the page cache at all.
1792 */
1793static void do_sync_mmap_readahead(struct vm_area_struct *vma,
1794 struct file_ra_state *ra,
1795 struct file *file,
1796 pgoff_t offset)
1797{
1798 unsigned long ra_pages;
1799 struct address_space *mapping = file->f_mapping;
1800
1801 /* If we don't want any read-ahead, don't bother */
Joe Perches64363aa2013-07-08 16:00:18 -07001802 if (vma->vm_flags & VM_RAND_READ)
Linus Torvaldsef00e082009-06-16 15:31:25 -07001803 return;
Wu Fengguang275b12b2011-05-24 17:12:28 -07001804 if (!ra->ra_pages)
1805 return;
Linus Torvaldsef00e082009-06-16 15:31:25 -07001806
Joe Perches64363aa2013-07-08 16:00:18 -07001807 if (vma->vm_flags & VM_SEQ_READ) {
Wu Fengguang7ffc59b2009-06-16 15:31:38 -07001808 page_cache_sync_readahead(mapping, ra, file, offset,
1809 ra->ra_pages);
Linus Torvaldsef00e082009-06-16 15:31:25 -07001810 return;
1811 }
1812
Andi Kleen207d04b2011-05-24 17:12:29 -07001813 /* Avoid banging the cache line if not needed */
1814 if (ra->mmap_miss < MMAP_LOTSAMISS * 10)
Linus Torvaldsef00e082009-06-16 15:31:25 -07001815 ra->mmap_miss++;
1816
1817 /*
1818 * Do we miss much more than hit in this file? If so,
1819 * stop bothering with read-ahead. It will only hurt.
1820 */
1821 if (ra->mmap_miss > MMAP_LOTSAMISS)
1822 return;
1823
Wu Fengguangd30a1102009-06-16 15:31:30 -07001824 /*
1825 * mmap read-around
1826 */
Linus Torvaldsef00e082009-06-16 15:31:25 -07001827 ra_pages = max_sane_readahead(ra->ra_pages);
Wu Fengguang275b12b2011-05-24 17:12:28 -07001828 ra->start = max_t(long, 0, offset - ra_pages / 2);
1829 ra->size = ra_pages;
Wu Fengguang2cbea1d2011-05-24 17:12:30 -07001830 ra->async_size = ra_pages / 4;
Wu Fengguang275b12b2011-05-24 17:12:28 -07001831 ra_submit(ra, mapping, file);
Linus Torvaldsef00e082009-06-16 15:31:25 -07001832}
1833
1834/*
1835 * Asynchronous readahead happens when we find the page and PG_readahead,
1836 * so we want to possibly extend the readahead further..
1837 */
1838static void do_async_mmap_readahead(struct vm_area_struct *vma,
1839 struct file_ra_state *ra,
1840 struct file *file,
1841 struct page *page,
1842 pgoff_t offset)
1843{
1844 struct address_space *mapping = file->f_mapping;
1845
1846 /* If we don't want any read-ahead, don't bother */
Joe Perches64363aa2013-07-08 16:00:18 -07001847 if (vma->vm_flags & VM_RAND_READ)
Linus Torvaldsef00e082009-06-16 15:31:25 -07001848 return;
1849 if (ra->mmap_miss > 0)
1850 ra->mmap_miss--;
1851 if (PageReadahead(page))
Wu Fengguang2fad6f52009-06-16 15:31:29 -07001852 page_cache_async_readahead(mapping, ra, file,
1853 page, offset, ra->ra_pages);
Linus Torvaldsef00e082009-06-16 15:31:25 -07001854}
1855
Randy Dunlap485bb992006-06-23 02:03:49 -07001856/**
Nick Piggin54cb8822007-07-19 01:46:59 -07001857 * filemap_fault - read in file data for page fault handling
Nick Piggind0217ac2007-07-19 01:47:03 -07001858 * @vma: vma in which the fault was taken
1859 * @vmf: struct vm_fault containing details of the fault
Randy Dunlap485bb992006-06-23 02:03:49 -07001860 *
Nick Piggin54cb8822007-07-19 01:46:59 -07001861 * filemap_fault() is invoked via the vma operations vector for a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 * mapped memory region to read in file data during a page fault.
1863 *
1864 * The goto's are kind of ugly, but this streamlines the normal case of having
1865 * it in the page cache, and handles the special cases reasonably without
1866 * having a lot of duplicated code.
Paul Cassella9a95f3c2014-08-06 16:07:24 -07001867 *
1868 * vma->vm_mm->mmap_sem must be held on entry.
1869 *
1870 * If our return value has VM_FAULT_RETRY set, it's because
1871 * lock_page_or_retry() returned 0.
1872 * The mmap_sem has usually been released in this case.
1873 * See __lock_page_or_retry() for the exception.
1874 *
1875 * If our return value does not have VM_FAULT_RETRY set, the mmap_sem
1876 * has not been released.
1877 *
1878 * We never return with VM_FAULT_RETRY and a bit from VM_FAULT_ERROR set.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 */
Nick Piggind0217ac2007-07-19 01:47:03 -07001880int filemap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881{
1882 int error;
Nick Piggin54cb8822007-07-19 01:46:59 -07001883 struct file *file = vma->vm_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 struct address_space *mapping = file->f_mapping;
1885 struct file_ra_state *ra = &file->f_ra;
1886 struct inode *inode = mapping->host;
Linus Torvaldsef00e082009-06-16 15:31:25 -07001887 pgoff_t offset = vmf->pgoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 struct page *page;
Kirill A. Shutemov99e3e532014-04-07 15:37:21 -07001889 loff_t size;
Nick Piggin83c54072007-07-19 01:47:05 -07001890 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891
Kirill A. Shutemov99e3e532014-04-07 15:37:21 -07001892 size = round_up(i_size_read(inode), PAGE_CACHE_SIZE);
1893 if (offset >= size >> PAGE_CACHE_SHIFT)
Linus Torvalds5307cc12007-10-31 09:19:46 -07001894 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 /*
Johannes Weiner49426422013-10-16 13:46:59 -07001897 * Do we have something in the page cache already?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 */
Linus Torvaldsef00e082009-06-16 15:31:25 -07001899 page = find_get_page(mapping, offset);
Shaohua Li45cac652012-10-08 16:32:19 -07001900 if (likely(page) && !(vmf->flags & FAULT_FLAG_TRIED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 /*
Linus Torvaldsef00e082009-06-16 15:31:25 -07001902 * We found the page, so try async readahead before
1903 * waiting for the lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 */
Linus Torvaldsef00e082009-06-16 15:31:25 -07001905 do_async_mmap_readahead(vma, ra, file, page, offset);
Shaohua Li45cac652012-10-08 16:32:19 -07001906 } else if (!page) {
Linus Torvaldsef00e082009-06-16 15:31:25 -07001907 /* No page in the page cache at all */
1908 do_sync_mmap_readahead(vma, ra, file, offset);
1909 count_vm_event(PGMAJFAULT);
Ying Han456f9982011-05-26 16:25:38 -07001910 mem_cgroup_count_vm_event(vma->vm_mm, PGMAJFAULT);
Linus Torvaldsef00e082009-06-16 15:31:25 -07001911 ret = VM_FAULT_MAJOR;
1912retry_find:
Michel Lespinasseb522c942010-10-26 14:21:56 -07001913 page = find_get_page(mapping, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 if (!page)
1915 goto no_cached_page;
1916 }
1917
Michel Lespinassed88c0922010-11-02 13:05:18 -07001918 if (!lock_page_or_retry(page, vma->vm_mm, vmf->flags)) {
1919 page_cache_release(page);
Michel Lespinassed065bd82010-10-26 14:21:57 -07001920 return ret | VM_FAULT_RETRY;
Michel Lespinassed88c0922010-11-02 13:05:18 -07001921 }
Michel Lespinasseb522c942010-10-26 14:21:56 -07001922
1923 /* Did it get truncated? */
1924 if (unlikely(page->mapping != mapping)) {
1925 unlock_page(page);
1926 put_page(page);
1927 goto retry_find;
1928 }
Sasha Levin309381fea2014-01-23 15:52:54 -08001929 VM_BUG_ON_PAGE(page->index != offset, page);
Michel Lespinasseb522c942010-10-26 14:21:56 -07001930
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 /*
Nick Piggind00806b2007-07-19 01:46:57 -07001932 * We have a locked page in the page cache, now we need to check
1933 * that it's up-to-date. If not, it is going to be due to an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 */
Nick Piggind00806b2007-07-19 01:46:57 -07001935 if (unlikely(!PageUptodate(page)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 goto page_not_uptodate;
1937
Linus Torvaldsef00e082009-06-16 15:31:25 -07001938 /*
1939 * Found the page and have a reference on it.
1940 * We must recheck i_size under page lock.
1941 */
Kirill A. Shutemov99e3e532014-04-07 15:37:21 -07001942 size = round_up(i_size_read(inode), PAGE_CACHE_SIZE);
1943 if (unlikely(offset >= size >> PAGE_CACHE_SHIFT)) {
Nick Piggind00806b2007-07-19 01:46:57 -07001944 unlock_page(page);
Yan Zheng745ad482007-10-08 10:08:37 -07001945 page_cache_release(page);
Linus Torvalds5307cc12007-10-31 09:19:46 -07001946 return VM_FAULT_SIGBUS;
Nick Piggind00806b2007-07-19 01:46:57 -07001947 }
1948
Nick Piggind0217ac2007-07-19 01:47:03 -07001949 vmf->page = page;
Nick Piggin83c54072007-07-19 01:47:05 -07001950 return ret | VM_FAULT_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952no_cached_page:
1953 /*
1954 * We're only likely to ever get here if MADV_RANDOM is in
1955 * effect.
1956 */
Linus Torvaldsef00e082009-06-16 15:31:25 -07001957 error = page_cache_read(file, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958
1959 /*
1960 * The page we want has now been added to the page cache.
1961 * In the unlikely event that someone removed it in the
1962 * meantime, we'll just come back here and read it again.
1963 */
1964 if (error >= 0)
1965 goto retry_find;
1966
1967 /*
1968 * An error return from page_cache_read can result if the
1969 * system is low on memory, or a problem occurs while trying
1970 * to schedule I/O.
1971 */
1972 if (error == -ENOMEM)
Nick Piggind0217ac2007-07-19 01:47:03 -07001973 return VM_FAULT_OOM;
1974 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975
1976page_not_uptodate:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 /*
1978 * Umm, take care of errors if the page isn't up-to-date.
1979 * Try to re-read it _once_. We do this synchronously,
1980 * because there really aren't any performance issues here
1981 * and we need to check for errors.
1982 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 ClearPageError(page);
Zach Brown994fc28c2005-12-15 14:28:17 -08001984 error = mapping->a_ops->readpage(file, page);
Miklos Szeredi3ef0f722008-05-14 16:05:37 -07001985 if (!error) {
1986 wait_on_page_locked(page);
1987 if (!PageUptodate(page))
1988 error = -EIO;
1989 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 page_cache_release(page);
Nick Piggind00806b2007-07-19 01:46:57 -07001991
1992 if (!error || error == AOP_TRUNCATED_PAGE)
1993 goto retry_find;
1994
1995 /* Things didn't work out. Return zero to tell the mm layer so. */
1996 shrink_readahead_size_eio(file, ra);
Nick Piggind0217ac2007-07-19 01:47:03 -07001997 return VM_FAULT_SIGBUS;
Nick Piggin54cb8822007-07-19 01:46:59 -07001998}
1999EXPORT_SYMBOL(filemap_fault);
2000
Kirill A. Shutemovf1820362014-04-07 15:37:19 -07002001void filemap_map_pages(struct vm_area_struct *vma, struct vm_fault *vmf)
2002{
2003 struct radix_tree_iter iter;
2004 void **slot;
2005 struct file *file = vma->vm_file;
2006 struct address_space *mapping = file->f_mapping;
2007 loff_t size;
2008 struct page *page;
2009 unsigned long address = (unsigned long) vmf->virtual_address;
2010 unsigned long addr;
2011 pte_t *pte;
2012
2013 rcu_read_lock();
2014 radix_tree_for_each_slot(slot, &mapping->page_tree, &iter, vmf->pgoff) {
2015 if (iter.index > vmf->max_pgoff)
2016 break;
2017repeat:
2018 page = radix_tree_deref_slot(slot);
2019 if (unlikely(!page))
2020 goto next;
2021 if (radix_tree_exception(page)) {
2022 if (radix_tree_deref_retry(page))
2023 break;
2024 else
2025 goto next;
2026 }
2027
2028 if (!page_cache_get_speculative(page))
2029 goto repeat;
2030
2031 /* Has the page moved? */
2032 if (unlikely(page != *slot)) {
2033 page_cache_release(page);
2034 goto repeat;
2035 }
2036
2037 if (!PageUptodate(page) ||
2038 PageReadahead(page) ||
2039 PageHWPoison(page))
2040 goto skip;
2041 if (!trylock_page(page))
2042 goto skip;
2043
2044 if (page->mapping != mapping || !PageUptodate(page))
2045 goto unlock;
2046
Kirill A. Shutemov99e3e532014-04-07 15:37:21 -07002047 size = round_up(i_size_read(mapping->host), PAGE_CACHE_SIZE);
2048 if (page->index >= size >> PAGE_CACHE_SHIFT)
Kirill A. Shutemovf1820362014-04-07 15:37:19 -07002049 goto unlock;
2050
2051 pte = vmf->pte + page->index - vmf->pgoff;
2052 if (!pte_none(*pte))
2053 goto unlock;
2054
2055 if (file->f_ra.mmap_miss > 0)
2056 file->f_ra.mmap_miss--;
2057 addr = address + (page->index - vmf->pgoff) * PAGE_SIZE;
2058 do_set_pte(vma, addr, page, pte, false, false);
2059 unlock_page(page);
2060 goto next;
2061unlock:
2062 unlock_page(page);
2063skip:
2064 page_cache_release(page);
2065next:
2066 if (iter.index == vmf->max_pgoff)
2067 break;
2068 }
2069 rcu_read_unlock();
2070}
2071EXPORT_SYMBOL(filemap_map_pages);
2072
Jan Kara4fcf1c62012-06-12 16:20:29 +02002073int filemap_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
2074{
2075 struct page *page = vmf->page;
Al Viro496ad9a2013-01-23 17:07:38 -05002076 struct inode *inode = file_inode(vma->vm_file);
Jan Kara4fcf1c62012-06-12 16:20:29 +02002077 int ret = VM_FAULT_LOCKED;
2078
Jan Kara14da9202012-06-12 16:20:37 +02002079 sb_start_pagefault(inode->i_sb);
Jan Kara4fcf1c62012-06-12 16:20:29 +02002080 file_update_time(vma->vm_file);
2081 lock_page(page);
2082 if (page->mapping != inode->i_mapping) {
2083 unlock_page(page);
2084 ret = VM_FAULT_NOPAGE;
2085 goto out;
2086 }
Jan Kara14da9202012-06-12 16:20:37 +02002087 /*
2088 * We mark the page dirty already here so that when freeze is in
2089 * progress, we are guaranteed that writeback during freezing will
2090 * see the dirty page and writeprotect it again.
2091 */
2092 set_page_dirty(page);
Darrick J. Wong1d1d1a72013-02-21 16:42:51 -08002093 wait_for_stable_page(page);
Jan Kara4fcf1c62012-06-12 16:20:29 +02002094out:
Jan Kara14da9202012-06-12 16:20:37 +02002095 sb_end_pagefault(inode->i_sb);
Jan Kara4fcf1c62012-06-12 16:20:29 +02002096 return ret;
2097}
2098EXPORT_SYMBOL(filemap_page_mkwrite);
2099
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04002100const struct vm_operations_struct generic_file_vm_ops = {
Nick Piggin54cb8822007-07-19 01:46:59 -07002101 .fault = filemap_fault,
Kirill A. Shutemovf1820362014-04-07 15:37:19 -07002102 .map_pages = filemap_map_pages,
Jan Kara4fcf1c62012-06-12 16:20:29 +02002103 .page_mkwrite = filemap_page_mkwrite,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104};
2105
2106/* This is used for a general mmap of a disk file */
2107
2108int generic_file_mmap(struct file * file, struct vm_area_struct * vma)
2109{
2110 struct address_space *mapping = file->f_mapping;
2111
2112 if (!mapping->a_ops->readpage)
2113 return -ENOEXEC;
2114 file_accessed(file);
2115 vma->vm_ops = &generic_file_vm_ops;
2116 return 0;
2117}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118
2119/*
2120 * This is for filesystems which do not implement ->writepage.
2121 */
2122int generic_file_readonly_mmap(struct file *file, struct vm_area_struct *vma)
2123{
2124 if ((vma->vm_flags & VM_SHARED) && (vma->vm_flags & VM_MAYWRITE))
2125 return -EINVAL;
2126 return generic_file_mmap(file, vma);
2127}
2128#else
2129int generic_file_mmap(struct file * file, struct vm_area_struct * vma)
2130{
2131 return -ENOSYS;
2132}
2133int generic_file_readonly_mmap(struct file * file, struct vm_area_struct * vma)
2134{
2135 return -ENOSYS;
2136}
2137#endif /* CONFIG_MMU */
2138
2139EXPORT_SYMBOL(generic_file_mmap);
2140EXPORT_SYMBOL(generic_file_readonly_mmap);
2141
Sasha Levin67f9fd92014-04-03 14:48:18 -07002142static struct page *wait_on_page_read(struct page *page)
2143{
2144 if (!IS_ERR(page)) {
2145 wait_on_page_locked(page);
2146 if (!PageUptodate(page)) {
2147 page_cache_release(page);
2148 page = ERR_PTR(-EIO);
2149 }
2150 }
2151 return page;
2152}
2153
Nick Piggin6fe69002007-05-06 14:49:04 -07002154static struct page *__read_cache_page(struct address_space *mapping,
Fengguang Wu57f6b962007-10-16 01:24:37 -07002155 pgoff_t index,
Hugh Dickins5e5358e2011-07-25 17:12:23 -07002156 int (*filler)(void *, struct page *),
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002157 void *data,
2158 gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159{
Nick Piggineb2be182007-10-16 01:24:57 -07002160 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 int err;
2162repeat:
2163 page = find_get_page(mapping, index);
2164 if (!page) {
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002165 page = __page_cache_alloc(gfp | __GFP_COLD);
Nick Piggineb2be182007-10-16 01:24:57 -07002166 if (!page)
2167 return ERR_PTR(-ENOMEM);
Dave Kleikampe6f67b82011-12-21 11:05:48 -06002168 err = add_to_page_cache_lru(page, mapping, index, gfp);
Nick Piggineb2be182007-10-16 01:24:57 -07002169 if (unlikely(err)) {
2170 page_cache_release(page);
2171 if (err == -EEXIST)
2172 goto repeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 /* Presumably ENOMEM for radix tree node */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 return ERR_PTR(err);
2175 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 err = filler(data, page);
2177 if (err < 0) {
2178 page_cache_release(page);
2179 page = ERR_PTR(err);
Sasha Levin67f9fd92014-04-03 14:48:18 -07002180 } else {
2181 page = wait_on_page_read(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 }
2183 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 return page;
2185}
2186
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002187static struct page *do_read_cache_page(struct address_space *mapping,
Fengguang Wu57f6b962007-10-16 01:24:37 -07002188 pgoff_t index,
Hugh Dickins5e5358e2011-07-25 17:12:23 -07002189 int (*filler)(void *, struct page *),
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002190 void *data,
2191 gfp_t gfp)
2192
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193{
2194 struct page *page;
2195 int err;
2196
2197retry:
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002198 page = __read_cache_page(mapping, index, filler, data, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 if (IS_ERR(page))
David Howellsc855ff32007-05-09 13:42:20 +01002200 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 if (PageUptodate(page))
2202 goto out;
2203
2204 lock_page(page);
2205 if (!page->mapping) {
2206 unlock_page(page);
2207 page_cache_release(page);
2208 goto retry;
2209 }
2210 if (PageUptodate(page)) {
2211 unlock_page(page);
2212 goto out;
2213 }
2214 err = filler(data, page);
2215 if (err < 0) {
2216 page_cache_release(page);
David Howellsc855ff32007-05-09 13:42:20 +01002217 return ERR_PTR(err);
Sasha Levin67f9fd92014-04-03 14:48:18 -07002218 } else {
2219 page = wait_on_page_read(page);
2220 if (IS_ERR(page))
2221 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 }
David Howellsc855ff32007-05-09 13:42:20 +01002223out:
Nick Piggin6fe69002007-05-06 14:49:04 -07002224 mark_page_accessed(page);
2225 return page;
2226}
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002227
2228/**
Sasha Levin67f9fd92014-04-03 14:48:18 -07002229 * read_cache_page - read into page cache, fill it if needed
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002230 * @mapping: the page's address_space
2231 * @index: the page index
2232 * @filler: function to perform the read
Hugh Dickins5e5358e2011-07-25 17:12:23 -07002233 * @data: first arg to filler(data, page) function, often left as NULL
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002234 *
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002235 * Read into the page cache. If a page already exists, and PageUptodate() is
Sasha Levin67f9fd92014-04-03 14:48:18 -07002236 * not set, try to fill the page and wait for it to become unlocked.
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002237 *
2238 * If the page does not get brought uptodate, return -EIO.
2239 */
Sasha Levin67f9fd92014-04-03 14:48:18 -07002240struct page *read_cache_page(struct address_space *mapping,
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002241 pgoff_t index,
Hugh Dickins5e5358e2011-07-25 17:12:23 -07002242 int (*filler)(void *, struct page *),
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002243 void *data)
2244{
2245 return do_read_cache_page(mapping, index, filler, data, mapping_gfp_mask(mapping));
2246}
Sasha Levin67f9fd92014-04-03 14:48:18 -07002247EXPORT_SYMBOL(read_cache_page);
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002248
2249/**
2250 * read_cache_page_gfp - read into page cache, using specified page allocation flags.
2251 * @mapping: the page's address_space
2252 * @index: the page index
2253 * @gfp: the page allocator flags to use if allocating
2254 *
2255 * This is the same as "read_mapping_page(mapping, index, NULL)", but with
Dave Kleikampe6f67b82011-12-21 11:05:48 -06002256 * any new page allocations done using the specified allocation flags.
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002257 *
2258 * If the page does not get brought uptodate, return -EIO.
2259 */
2260struct page *read_cache_page_gfp(struct address_space *mapping,
2261 pgoff_t index,
2262 gfp_t gfp)
2263{
2264 filler_t *filler = (filler_t *)mapping->a_ops->readpage;
2265
Sasha Levin67f9fd92014-04-03 14:48:18 -07002266 return do_read_cache_page(mapping, index, filler, NULL, gfp);
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002267}
2268EXPORT_SYMBOL(read_cache_page_gfp);
2269
Nick Piggin2f718ff2007-10-16 01:24:59 -07002270/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 * Performs necessary checks before doing a write
2272 *
Randy Dunlap485bb992006-06-23 02:03:49 -07002273 * Can adjust writing position or amount of bytes to write.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 * Returns appropriate error code that caller should return or
2275 * zero in case that write should be allowed.
2276 */
Al Viro3309dd02015-04-09 12:55:47 -04002277inline ssize_t generic_write_checks(struct kiocb *iocb, struct iov_iter *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278{
Al Viro3309dd02015-04-09 12:55:47 -04002279 struct file *file = iocb->ki_filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 struct inode *inode = file->f_mapping->host;
Jiri Slaby59e99e52010-03-05 13:41:44 -08002281 unsigned long limit = rlimit(RLIMIT_FSIZE);
Al Viro3309dd02015-04-09 12:55:47 -04002282 loff_t pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283
Al Viro3309dd02015-04-09 12:55:47 -04002284 if (!iov_iter_count(from))
2285 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286
Al Viro0fa6b002015-04-04 04:05:48 -04002287 /* FIXME: this is for backwards compatibility with 2.4 */
Al Viro2ba48ce2015-04-09 13:52:01 -04002288 if (iocb->ki_flags & IOCB_APPEND)
Al Viro3309dd02015-04-09 12:55:47 -04002289 iocb->ki_pos = i_size_read(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290
Al Viro3309dd02015-04-09 12:55:47 -04002291 pos = iocb->ki_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292
Al Viro0fa6b002015-04-04 04:05:48 -04002293 if (limit != RLIM_INFINITY) {
Al Viro3309dd02015-04-09 12:55:47 -04002294 if (iocb->ki_pos >= limit) {
Al Viro0fa6b002015-04-04 04:05:48 -04002295 send_sig(SIGXFSZ, current, 0);
2296 return -EFBIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 }
Al Viro3309dd02015-04-09 12:55:47 -04002298 iov_iter_truncate(from, limit - (unsigned long)pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 }
2300
2301 /*
2302 * LFS rule
2303 */
Al Viro3309dd02015-04-09 12:55:47 -04002304 if (unlikely(pos + iov_iter_count(from) > MAX_NON_LFS &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 !(file->f_flags & O_LARGEFILE))) {
Al Viro3309dd02015-04-09 12:55:47 -04002306 if (pos >= MAX_NON_LFS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 return -EFBIG;
Al Viro3309dd02015-04-09 12:55:47 -04002308 iov_iter_truncate(from, MAX_NON_LFS - (unsigned long)pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 }
2310
2311 /*
2312 * Are we about to exceed the fs block limit ?
2313 *
2314 * If we have written data it becomes a short write. If we have
2315 * exceeded without writing data we send a signal and return EFBIG.
2316 * Linus frestrict idea will clean these up nicely..
2317 */
Al Viro3309dd02015-04-09 12:55:47 -04002318 if (unlikely(pos >= inode->i_sb->s_maxbytes))
2319 return -EFBIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320
Al Viro3309dd02015-04-09 12:55:47 -04002321 iov_iter_truncate(from, inode->i_sb->s_maxbytes - pos);
2322 return iov_iter_count(from);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323}
2324EXPORT_SYMBOL(generic_write_checks);
2325
Nick Pigginafddba42007-10-16 01:25:01 -07002326int pagecache_write_begin(struct file *file, struct address_space *mapping,
2327 loff_t pos, unsigned len, unsigned flags,
2328 struct page **pagep, void **fsdata)
2329{
2330 const struct address_space_operations *aops = mapping->a_ops;
2331
Nick Piggin4e02ed42008-10-29 14:00:55 -07002332 return aops->write_begin(file, mapping, pos, len, flags,
Nick Pigginafddba42007-10-16 01:25:01 -07002333 pagep, fsdata);
Nick Pigginafddba42007-10-16 01:25:01 -07002334}
2335EXPORT_SYMBOL(pagecache_write_begin);
2336
2337int pagecache_write_end(struct file *file, struct address_space *mapping,
2338 loff_t pos, unsigned len, unsigned copied,
2339 struct page *page, void *fsdata)
2340{
2341 const struct address_space_operations *aops = mapping->a_ops;
Nick Pigginafddba42007-10-16 01:25:01 -07002342
Nick Piggin4e02ed42008-10-29 14:00:55 -07002343 return aops->write_end(file, mapping, pos, len, copied, page, fsdata);
Nick Pigginafddba42007-10-16 01:25:01 -07002344}
2345EXPORT_SYMBOL(pagecache_write_end);
2346
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347ssize_t
Al Viro0c949332014-03-22 06:51:37 -04002348generic_file_direct_write(struct kiocb *iocb, struct iov_iter *from, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349{
2350 struct file *file = iocb->ki_filp;
2351 struct address_space *mapping = file->f_mapping;
2352 struct inode *inode = mapping->host;
2353 ssize_t written;
Christoph Hellwiga969e902008-07-23 21:27:04 -07002354 size_t write_len;
2355 pgoff_t end;
Al Viro26978b82014-03-10 14:08:45 -04002356 struct iov_iter data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357
Al Viro0c949332014-03-22 06:51:37 -04002358 write_len = iov_iter_count(from);
Christoph Hellwiga969e902008-07-23 21:27:04 -07002359 end = (pos + write_len - 1) >> PAGE_CACHE_SHIFT;
Christoph Hellwiga969e902008-07-23 21:27:04 -07002360
Nick Piggin48b47c52009-01-06 14:40:22 -08002361 written = filemap_write_and_wait_range(mapping, pos, pos + write_len - 1);
Christoph Hellwiga969e902008-07-23 21:27:04 -07002362 if (written)
2363 goto out;
2364
2365 /*
2366 * After a write we want buffered reads to be sure to go to disk to get
2367 * the new data. We invalidate clean cached page from the region we're
2368 * about to write. We do this *before* the write so that we can return
Hisashi Hifumi6ccfa802008-09-02 14:35:40 -07002369 * without clobbering -EIOCBQUEUED from ->direct_IO().
Christoph Hellwiga969e902008-07-23 21:27:04 -07002370 */
2371 if (mapping->nrpages) {
2372 written = invalidate_inode_pages2_range(mapping,
2373 pos >> PAGE_CACHE_SHIFT, end);
Hisashi Hifumi6ccfa802008-09-02 14:35:40 -07002374 /*
2375 * If a page can not be invalidated, return 0 to fall back
2376 * to buffered write.
2377 */
2378 if (written) {
2379 if (written == -EBUSY)
2380 return 0;
Christoph Hellwiga969e902008-07-23 21:27:04 -07002381 goto out;
Hisashi Hifumi6ccfa802008-09-02 14:35:40 -07002382 }
Christoph Hellwiga969e902008-07-23 21:27:04 -07002383 }
2384
Al Viro26978b82014-03-10 14:08:45 -04002385 data = *from;
Omar Sandoval22c61862015-03-16 04:33:53 -07002386 written = mapping->a_ops->direct_IO(iocb, &data, pos);
Christoph Hellwiga969e902008-07-23 21:27:04 -07002387
2388 /*
2389 * Finally, try again to invalidate clean pages which might have been
2390 * cached by non-direct readahead, or faulted in by get_user_pages()
2391 * if the source of the write was an mmap'ed region of the file
2392 * we're writing. Either one is a pretty crazy thing to do,
2393 * so we don't support it 100%. If this invalidation
2394 * fails, tough, the write still worked...
2395 */
2396 if (mapping->nrpages) {
2397 invalidate_inode_pages2_range(mapping,
2398 pos >> PAGE_CACHE_SHIFT, end);
2399 }
2400
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 if (written > 0) {
Namhyung Kim01166512010-10-26 14:21:58 -07002402 pos += written;
Al Virof8579f82014-03-03 22:03:20 -05002403 iov_iter_advance(from, written);
Namhyung Kim01166512010-10-26 14:21:58 -07002404 if (pos > i_size_read(inode) && !S_ISBLK(inode->i_mode)) {
2405 i_size_write(inode, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 mark_inode_dirty(inode);
2407 }
Al Viro5cb6c6c2014-02-11 20:58:20 -05002408 iocb->ki_pos = pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 }
Christoph Hellwiga969e902008-07-23 21:27:04 -07002410out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 return written;
2412}
2413EXPORT_SYMBOL(generic_file_direct_write);
2414
Nick Piggineb2be182007-10-16 01:24:57 -07002415/*
2416 * Find or create a page at the given pagecache position. Return the locked
2417 * page. This function is specifically for buffered writes.
2418 */
Nick Piggin54566b22009-01-04 12:00:53 -08002419struct page *grab_cache_page_write_begin(struct address_space *mapping,
2420 pgoff_t index, unsigned flags)
Nick Piggineb2be182007-10-16 01:24:57 -07002421{
Nick Piggineb2be182007-10-16 01:24:57 -07002422 struct page *page;
Mel Gorman2457aec2014-06-04 16:10:31 -07002423 int fgp_flags = FGP_LOCK|FGP_ACCESSED|FGP_WRITE|FGP_CREAT;
Johannes Weiner0faa70c2012-01-10 15:07:53 -08002424
Nick Piggin54566b22009-01-04 12:00:53 -08002425 if (flags & AOP_FLAG_NOFS)
Mel Gorman2457aec2014-06-04 16:10:31 -07002426 fgp_flags |= FGP_NOFS;
Nick Piggineb2be182007-10-16 01:24:57 -07002427
Mel Gorman2457aec2014-06-04 16:10:31 -07002428 page = pagecache_get_page(mapping, index, fgp_flags,
Michal Hocko45f87de2014-12-29 20:30:35 +01002429 mapping_gfp_mask(mapping));
Mel Gorman2457aec2014-06-04 16:10:31 -07002430 if (page)
2431 wait_for_stable_page(page);
2432
Nick Piggineb2be182007-10-16 01:24:57 -07002433 return page;
2434}
Nick Piggin54566b22009-01-04 12:00:53 -08002435EXPORT_SYMBOL(grab_cache_page_write_begin);
Nick Piggineb2be182007-10-16 01:24:57 -07002436
Al Viro3b93f912014-02-11 21:34:08 -05002437ssize_t generic_perform_write(struct file *file,
Nick Pigginafddba42007-10-16 01:25:01 -07002438 struct iov_iter *i, loff_t pos)
2439{
2440 struct address_space *mapping = file->f_mapping;
2441 const struct address_space_operations *a_ops = mapping->a_ops;
2442 long status = 0;
2443 ssize_t written = 0;
Nick Piggin674b8922007-10-16 01:25:03 -07002444 unsigned int flags = 0;
2445
2446 /*
2447 * Copies from kernel address space cannot fail (NFSD is a big user).
2448 */
Al Viro777eda22014-12-17 04:46:46 -05002449 if (!iter_is_iovec(i))
Nick Piggin674b8922007-10-16 01:25:03 -07002450 flags |= AOP_FLAG_UNINTERRUPTIBLE;
Nick Pigginafddba42007-10-16 01:25:01 -07002451
2452 do {
2453 struct page *page;
Nick Pigginafddba42007-10-16 01:25:01 -07002454 unsigned long offset; /* Offset into pagecache page */
2455 unsigned long bytes; /* Bytes to write to page */
2456 size_t copied; /* Bytes copied from user */
2457 void *fsdata;
2458
2459 offset = (pos & (PAGE_CACHE_SIZE - 1));
Nick Pigginafddba42007-10-16 01:25:01 -07002460 bytes = min_t(unsigned long, PAGE_CACHE_SIZE - offset,
2461 iov_iter_count(i));
2462
2463again:
Nick Pigginafddba42007-10-16 01:25:01 -07002464 /*
2465 * Bring in the user page that we will copy from _first_.
2466 * Otherwise there's a nasty deadlock on copying from the
2467 * same page as we're writing to, without it being marked
2468 * up-to-date.
2469 *
2470 * Not only is this an optimisation, but it is also required
2471 * to check that the address is actually valid, when atomic
2472 * usercopies are used, below.
2473 */
2474 if (unlikely(iov_iter_fault_in_readable(i, bytes))) {
2475 status = -EFAULT;
2476 break;
2477 }
2478
Nick Piggin674b8922007-10-16 01:25:03 -07002479 status = a_ops->write_begin(file, mapping, pos, bytes, flags,
Nick Pigginafddba42007-10-16 01:25:01 -07002480 &page, &fsdata);
Mel Gorman2457aec2014-06-04 16:10:31 -07002481 if (unlikely(status < 0))
Nick Pigginafddba42007-10-16 01:25:01 -07002482 break;
2483
anfei zhou931e80e2010-02-02 13:44:02 -08002484 if (mapping_writably_mapped(mapping))
2485 flush_dcache_page(page);
2486
Nick Pigginafddba42007-10-16 01:25:01 -07002487 copied = iov_iter_copy_from_user_atomic(page, i, offset, bytes);
Nick Pigginafddba42007-10-16 01:25:01 -07002488 flush_dcache_page(page);
2489
2490 status = a_ops->write_end(file, mapping, pos, bytes, copied,
2491 page, fsdata);
2492 if (unlikely(status < 0))
2493 break;
2494 copied = status;
2495
2496 cond_resched();
2497
Nick Piggin124d3b72008-02-02 15:01:17 +01002498 iov_iter_advance(i, copied);
Nick Pigginafddba42007-10-16 01:25:01 -07002499 if (unlikely(copied == 0)) {
2500 /*
2501 * If we were unable to copy any data at all, we must
2502 * fall back to a single segment length write.
2503 *
2504 * If we didn't fallback here, we could livelock
2505 * because not all segments in the iov can be copied at
2506 * once without a pagefault.
2507 */
2508 bytes = min_t(unsigned long, PAGE_CACHE_SIZE - offset,
2509 iov_iter_single_seg_count(i));
2510 goto again;
2511 }
Nick Pigginafddba42007-10-16 01:25:01 -07002512 pos += copied;
2513 written += copied;
2514
2515 balance_dirty_pages_ratelimited(mapping);
Jan Karaa50527b2011-12-02 09:17:02 +08002516 if (fatal_signal_pending(current)) {
2517 status = -EINTR;
2518 break;
2519 }
Nick Pigginafddba42007-10-16 01:25:01 -07002520 } while (iov_iter_count(i));
2521
2522 return written ? written : status;
2523}
Al Viro3b93f912014-02-11 21:34:08 -05002524EXPORT_SYMBOL(generic_perform_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525
Jan Karae4dd9de2009-08-17 18:10:06 +02002526/**
Al Viro81742022014-04-03 03:17:43 -04002527 * __generic_file_write_iter - write data to a file
Jan Karae4dd9de2009-08-17 18:10:06 +02002528 * @iocb: IO state structure (file, offset, etc.)
Al Viro81742022014-04-03 03:17:43 -04002529 * @from: iov_iter with data to write
Jan Karae4dd9de2009-08-17 18:10:06 +02002530 *
2531 * This function does all the work needed for actually writing data to a
2532 * file. It does all basic checks, removes SUID from the file, updates
2533 * modification times and calls proper subroutines depending on whether we
2534 * do direct IO or a standard buffered write.
2535 *
2536 * It expects i_mutex to be grabbed unless we work on a block device or similar
2537 * object which does not need locking at all.
2538 *
2539 * This function does *not* take care of syncing data in case of O_SYNC write.
2540 * A caller has to handle it. This is mainly due to the fact that we want to
2541 * avoid syncing under i_mutex.
2542 */
Al Viro81742022014-04-03 03:17:43 -04002543ssize_t __generic_file_write_iter(struct kiocb *iocb, struct iov_iter *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544{
2545 struct file *file = iocb->ki_filp;
Jeff Moyerfb5527e2006-10-19 23:28:13 -07002546 struct address_space * mapping = file->f_mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547 struct inode *inode = mapping->host;
Al Viro3b93f912014-02-11 21:34:08 -05002548 ssize_t written = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 ssize_t err;
Al Viro3b93f912014-02-11 21:34:08 -05002550 ssize_t status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 /* We can write back this queue in page reclaim */
Christoph Hellwigde1414a2015-01-14 10:42:36 +01002553 current->backing_dev_info = inode_to_bdi(inode);
Miklos Szeredi2f1936b2008-06-24 16:50:14 +02002554 err = file_remove_suid(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 if (err)
2556 goto out;
2557
Josef Bacikc3b2da32012-03-26 09:59:21 -04002558 err = file_update_time(file);
2559 if (err)
2560 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561
Al Viro2ba48ce2015-04-09 13:52:01 -04002562 if (iocb->ki_flags & IOCB_DIRECT) {
Al Viro0b8def92015-04-07 10:22:53 -04002563 loff_t pos, endbyte;
Jeff Moyerfb5527e2006-10-19 23:28:13 -07002564
Al Viro0b8def92015-04-07 10:22:53 -04002565 written = generic_file_direct_write(iocb, from, iocb->ki_pos);
Matthew Wilcoxfbbbad42015-02-16 15:58:53 -08002566 /*
2567 * If the write stopped short of completing, fall back to
2568 * buffered writes. Some filesystems do this for writes to
2569 * holes, for example. For DAX files, a buffered write will
2570 * not succeed (even if it did, DAX does not handle dirty
2571 * page-cache pages correctly).
2572 */
Al Viro0b8def92015-04-07 10:22:53 -04002573 if (written < 0 || !iov_iter_count(from) || IS_DAX(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574 goto out;
Al Viro3b93f912014-02-11 21:34:08 -05002575
Al Viro0b8def92015-04-07 10:22:53 -04002576 status = generic_perform_write(file, from, pos = iocb->ki_pos);
Jeff Moyerfb5527e2006-10-19 23:28:13 -07002577 /*
Al Viro3b93f912014-02-11 21:34:08 -05002578 * If generic_perform_write() returned a synchronous error
Jeff Moyerfb5527e2006-10-19 23:28:13 -07002579 * then we want to return the number of bytes which were
2580 * direct-written, or the error code if that was zero. Note
2581 * that this differs from normal direct-io semantics, which
2582 * will return -EFOO even if some bytes were written.
2583 */
Al Viro60bb4522014-08-08 12:39:16 -04002584 if (unlikely(status < 0)) {
Al Viro3b93f912014-02-11 21:34:08 -05002585 err = status;
Jeff Moyerfb5527e2006-10-19 23:28:13 -07002586 goto out;
2587 }
Jeff Moyerfb5527e2006-10-19 23:28:13 -07002588 /*
2589 * We need to ensure that the page cache pages are written to
2590 * disk and invalidated to preserve the expected O_DIRECT
2591 * semantics.
2592 */
Al Viro3b93f912014-02-11 21:34:08 -05002593 endbyte = pos + status - 1;
Al Viro0b8def92015-04-07 10:22:53 -04002594 err = filemap_write_and_wait_range(mapping, pos, endbyte);
Jeff Moyerfb5527e2006-10-19 23:28:13 -07002595 if (err == 0) {
Al Viro0b8def92015-04-07 10:22:53 -04002596 iocb->ki_pos = endbyte + 1;
Al Viro3b93f912014-02-11 21:34:08 -05002597 written += status;
Jeff Moyerfb5527e2006-10-19 23:28:13 -07002598 invalidate_mapping_pages(mapping,
2599 pos >> PAGE_CACHE_SHIFT,
2600 endbyte >> PAGE_CACHE_SHIFT);
2601 } else {
2602 /*
2603 * We don't know how much we wrote, so just return
2604 * the number of bytes which were direct-written
2605 */
2606 }
2607 } else {
Al Viro0b8def92015-04-07 10:22:53 -04002608 written = generic_perform_write(file, from, iocb->ki_pos);
2609 if (likely(written > 0))
2610 iocb->ki_pos += written;
Jeff Moyerfb5527e2006-10-19 23:28:13 -07002611 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612out:
2613 current->backing_dev_info = NULL;
2614 return written ? written : err;
2615}
Al Viro81742022014-04-03 03:17:43 -04002616EXPORT_SYMBOL(__generic_file_write_iter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617
Jan Karae4dd9de2009-08-17 18:10:06 +02002618/**
Al Viro81742022014-04-03 03:17:43 -04002619 * generic_file_write_iter - write data to a file
Jan Karae4dd9de2009-08-17 18:10:06 +02002620 * @iocb: IO state structure
Al Viro81742022014-04-03 03:17:43 -04002621 * @from: iov_iter with data to write
Jan Karae4dd9de2009-08-17 18:10:06 +02002622 *
Al Viro81742022014-04-03 03:17:43 -04002623 * This is a wrapper around __generic_file_write_iter() to be used by most
Jan Karae4dd9de2009-08-17 18:10:06 +02002624 * filesystems. It takes care of syncing the file in case of O_SYNC file
2625 * and acquires i_mutex as needed.
2626 */
Al Viro81742022014-04-03 03:17:43 -04002627ssize_t generic_file_write_iter(struct kiocb *iocb, struct iov_iter *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628{
2629 struct file *file = iocb->ki_filp;
Jan Kara148f9482009-08-17 19:52:36 +02002630 struct inode *inode = file->f_mapping->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 ssize_t ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002633 mutex_lock(&inode->i_mutex);
Al Viro3309dd02015-04-09 12:55:47 -04002634 ret = generic_write_checks(iocb, from);
2635 if (ret > 0)
Al Viro5f380c72015-04-07 11:28:12 -04002636 ret = __generic_file_write_iter(iocb, from);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002637 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638
Christoph Hellwig02afc272013-09-04 15:04:40 +02002639 if (ret > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 ssize_t err;
2641
Al Virod311d792014-02-09 15:18:09 -05002642 err = generic_write_sync(file, iocb->ki_pos - ret, ret);
2643 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644 ret = err;
2645 }
2646 return ret;
2647}
Al Viro81742022014-04-03 03:17:43 -04002648EXPORT_SYMBOL(generic_file_write_iter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649
David Howellscf9a2ae2006-08-29 19:05:54 +01002650/**
2651 * try_to_release_page() - release old fs-specific metadata on a page
2652 *
2653 * @page: the page which the kernel is trying to free
2654 * @gfp_mask: memory allocation flags (and I/O mode)
2655 *
2656 * The address_space is to try to release any data against the page
2657 * (presumably at page->private). If the release was successful, return `1'.
2658 * Otherwise return zero.
2659 *
David Howells266cf652009-04-03 16:42:36 +01002660 * This may also be called if PG_fscache is set on a page, indicating that the
2661 * page is known to the local caching routines.
2662 *
David Howellscf9a2ae2006-08-29 19:05:54 +01002663 * The @gfp_mask argument specifies whether I/O may be performed to release
Mingming Cao3f31fdd2008-07-25 01:46:22 -07002664 * this page (__GFP_IO), and whether the call may block (__GFP_WAIT & __GFP_FS).
David Howellscf9a2ae2006-08-29 19:05:54 +01002665 *
David Howellscf9a2ae2006-08-29 19:05:54 +01002666 */
2667int try_to_release_page(struct page *page, gfp_t gfp_mask)
2668{
2669 struct address_space * const mapping = page->mapping;
2670
2671 BUG_ON(!PageLocked(page));
2672 if (PageWriteback(page))
2673 return 0;
2674
2675 if (mapping && mapping->a_ops->releasepage)
2676 return mapping->a_ops->releasepage(page, gfp_mask);
2677 return try_to_free_buffers(page);
2678}
2679
2680EXPORT_SYMBOL(try_to_release_page);