blob: 4d16907c0684939d615989064b87dc27725251a4 [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
Michal Hocko4165b9b2015-06-24 16:57:24 -0700202 /* hugetlb pages do not participate in page cache accounting. */
203 if (!PageHuge(page))
204 __dec_zone_page_state(page, NR_FILE_PAGES);
KOSAKI Motohiro4b021082009-09-21 17:01:33 -0700205 if (PageSwapBacked(page))
206 __dec_zone_page_state(page, NR_SHMEM);
Nick Piggin45426812007-07-15 23:38:12 -0700207 BUG_ON(page_mapped(page));
Linus Torvalds3a692792007-12-19 14:05:13 -0800208
209 /*
Konstantin Khlebnikovb9ea2512015-04-14 15:45:27 -0700210 * At this point page must be either written or cleaned by truncate.
211 * Dirty page here signals a bug and loss of unwritten data.
Linus Torvalds3a692792007-12-19 14:05:13 -0800212 *
Konstantin Khlebnikovb9ea2512015-04-14 15:45:27 -0700213 * This fixes dirty accounting after removing the page entirely but
214 * leaves PageDirty set: it has no effect for truncated page and
215 * anyway will be cleared before returning page into buddy allocator.
Linus Torvalds3a692792007-12-19 14:05:13 -0800216 */
Konstantin Khlebnikovb9ea2512015-04-14 15:45:27 -0700217 if (WARN_ON_ONCE(PageDirty(page)))
Tejun Heo682aa8e2015-05-28 14:50:53 -0400218 account_page_cleaned(page, mapping, memcg,
219 inode_to_wb(mapping->host));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220}
221
Minchan Kim702cfbf2011-03-22 16:32:43 -0700222/**
223 * delete_from_page_cache - delete page from page cache
224 * @page: the page which the kernel is trying to remove from page cache
225 *
226 * This must be called only on pages that have been verified to be in the page
227 * cache and locked. It will never put the page into the free list, the caller
228 * has a reference on the page.
229 */
230void delete_from_page_cache(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231{
232 struct address_space *mapping = page->mapping;
Greg Thelenc4843a72015-05-22 17:13:16 -0400233 struct mem_cgroup *memcg;
234 unsigned long flags;
235
Linus Torvalds6072d132010-12-01 13:35:19 -0500236 void (*freepage)(struct page *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Matt Mackallcd7619d2005-05-01 08:59:01 -0700238 BUG_ON(!PageLocked(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Linus Torvalds6072d132010-12-01 13:35:19 -0500240 freepage = mapping->a_ops->freepage;
Greg Thelenc4843a72015-05-22 17:13:16 -0400241
242 memcg = mem_cgroup_begin_page_stat(page);
243 spin_lock_irqsave(&mapping->tree_lock, flags);
244 __delete_from_page_cache(page, NULL, memcg);
245 spin_unlock_irqrestore(&mapping->tree_lock, flags);
246 mem_cgroup_end_page_stat(memcg);
Linus Torvalds6072d132010-12-01 13:35:19 -0500247
248 if (freepage)
249 freepage(page);
Minchan Kim97cecb52011-03-22 16:30:53 -0700250 page_cache_release(page);
251}
252EXPORT_SYMBOL(delete_from_page_cache);
253
Dmitry Monakhov865ffef32013-04-29 15:08:42 -0700254static int filemap_check_errors(struct address_space *mapping)
255{
256 int ret = 0;
257 /* Check for outstanding write errors */
Jens Axboe7fcbbaf2014-05-22 11:54:16 -0700258 if (test_bit(AS_ENOSPC, &mapping->flags) &&
259 test_and_clear_bit(AS_ENOSPC, &mapping->flags))
Dmitry Monakhov865ffef32013-04-29 15:08:42 -0700260 ret = -ENOSPC;
Jens Axboe7fcbbaf2014-05-22 11:54:16 -0700261 if (test_bit(AS_EIO, &mapping->flags) &&
262 test_and_clear_bit(AS_EIO, &mapping->flags))
Dmitry Monakhov865ffef32013-04-29 15:08:42 -0700263 ret = -EIO;
264 return ret;
265}
266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267/**
Randy Dunlap485bb992006-06-23 02:03:49 -0700268 * __filemap_fdatawrite_range - start writeback on mapping dirty pages in range
Martin Waitz67be2dd2005-05-01 08:59:26 -0700269 * @mapping: address space structure to write
270 * @start: offset in bytes where the range starts
Andrew Morton469eb4d2006-03-24 03:17:45 -0800271 * @end: offset in bytes where the range ends (inclusive)
Martin Waitz67be2dd2005-05-01 08:59:26 -0700272 * @sync_mode: enable synchronous operation
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 *
Randy Dunlap485bb992006-06-23 02:03:49 -0700274 * Start writeback against all of a mapping's dirty pages that lie
275 * within the byte offsets <start, end> inclusive.
276 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 * If sync_mode is WB_SYNC_ALL then this is a "data integrity" operation, as
Randy Dunlap485bb992006-06-23 02:03:49 -0700278 * opposed to a regular memory cleansing writeback. The difference between
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 * these two operations is that if a dirty page/buffer is encountered, it must
280 * be waited upon, and not just skipped over.
281 */
Andrew Mortonebcf28e2006-03-24 03:18:04 -0800282int __filemap_fdatawrite_range(struct address_space *mapping, loff_t start,
283 loff_t end, int sync_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284{
285 int ret;
286 struct writeback_control wbc = {
287 .sync_mode = sync_mode,
Nick Piggin05fe4782009-01-06 14:39:08 -0800288 .nr_to_write = LONG_MAX,
OGAWA Hirofumi111ebb62006-06-23 02:03:26 -0700289 .range_start = start,
290 .range_end = end,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 };
292
293 if (!mapping_cap_writeback_dirty(mapping))
294 return 0;
295
Tejun Heob16b1de2015-06-02 08:39:48 -0600296 wbc_attach_fdatawrite_inode(&wbc, mapping->host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 ret = do_writepages(mapping, &wbc);
Tejun Heob16b1de2015-06-02 08:39:48 -0600298 wbc_detach_inode(&wbc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 return ret;
300}
301
302static inline int __filemap_fdatawrite(struct address_space *mapping,
303 int sync_mode)
304{
OGAWA Hirofumi111ebb62006-06-23 02:03:26 -0700305 return __filemap_fdatawrite_range(mapping, 0, LLONG_MAX, sync_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306}
307
308int filemap_fdatawrite(struct address_space *mapping)
309{
310 return __filemap_fdatawrite(mapping, WB_SYNC_ALL);
311}
312EXPORT_SYMBOL(filemap_fdatawrite);
313
Jan Karaf4c0a0f2008-07-11 19:27:31 -0400314int filemap_fdatawrite_range(struct address_space *mapping, loff_t start,
Andrew Mortonebcf28e2006-03-24 03:18:04 -0800315 loff_t end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316{
317 return __filemap_fdatawrite_range(mapping, start, end, WB_SYNC_ALL);
318}
Jan Karaf4c0a0f2008-07-11 19:27:31 -0400319EXPORT_SYMBOL(filemap_fdatawrite_range);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Randy Dunlap485bb992006-06-23 02:03:49 -0700321/**
322 * filemap_flush - mostly a non-blocking flush
323 * @mapping: target address_space
324 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 * This is a mostly non-blocking flush. Not suitable for data-integrity
326 * purposes - I/O may not be started against all dirty pages.
327 */
328int filemap_flush(struct address_space *mapping)
329{
330 return __filemap_fdatawrite(mapping, WB_SYNC_NONE);
331}
332EXPORT_SYMBOL(filemap_flush);
333
Junichi Nomuraaa750fd2015-11-05 18:47:23 -0800334static int __filemap_fdatawait_range(struct address_space *mapping,
335 loff_t start_byte, loff_t end_byte)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336{
Christoph Hellwig94004ed2009-09-30 22:16:33 +0200337 pgoff_t index = start_byte >> PAGE_CACHE_SHIFT;
338 pgoff_t end = end_byte >> PAGE_CACHE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 struct pagevec pvec;
340 int nr_pages;
Junichi Nomuraaa750fd2015-11-05 18:47:23 -0800341 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Christoph Hellwig94004ed2009-09-30 22:16:33 +0200343 if (end_byte < start_byte)
Dmitry Monakhov865ffef32013-04-29 15:08:42 -0700344 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
346 pagevec_init(&pvec, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 while ((index <= end) &&
348 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index,
349 PAGECACHE_TAG_WRITEBACK,
350 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1)) != 0) {
351 unsigned i;
352
353 for (i = 0; i < nr_pages; i++) {
354 struct page *page = pvec.pages[i];
355
356 /* until radix tree lookup accepts end_index */
357 if (page->index > end)
358 continue;
359
360 wait_on_page_writeback(page);
Rik van Riel212260a2011-01-13 15:46:06 -0800361 if (TestClearPageError(page))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 ret = -EIO;
363 }
364 pagevec_release(&pvec);
365 cond_resched();
366 }
Dmitry Monakhov865ffef32013-04-29 15:08:42 -0700367out:
Junichi Nomuraaa750fd2015-11-05 18:47:23 -0800368 return ret;
369}
370
371/**
372 * filemap_fdatawait_range - wait for writeback to complete
373 * @mapping: address space structure to wait for
374 * @start_byte: offset in bytes where the range starts
375 * @end_byte: offset in bytes where the range ends (inclusive)
376 *
377 * Walk the list of under-writeback pages of the given address space
378 * in the given range and wait for all of them. Check error status of
379 * the address space and return it.
380 *
381 * Since the error status of the address space is cleared by this function,
382 * callers are responsible for checking the return value and handling and/or
383 * reporting the error.
384 */
385int filemap_fdatawait_range(struct address_space *mapping, loff_t start_byte,
386 loff_t end_byte)
387{
388 int ret, ret2;
389
390 ret = __filemap_fdatawait_range(mapping, start_byte, end_byte);
Dmitry Monakhov865ffef32013-04-29 15:08:42 -0700391 ret2 = filemap_check_errors(mapping);
392 if (!ret)
393 ret = ret2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
395 return ret;
396}
Jan Karad3bccb6f2009-08-17 19:30:27 +0200397EXPORT_SYMBOL(filemap_fdatawait_range);
398
399/**
Junichi Nomuraaa750fd2015-11-05 18:47:23 -0800400 * filemap_fdatawait_keep_errors - wait for writeback without clearing errors
401 * @mapping: address space structure to wait for
402 *
403 * Walk the list of under-writeback pages of the given address space
404 * and wait for all of them. Unlike filemap_fdatawait(), this function
405 * does not clear error status of the address space.
406 *
407 * Use this function if callers don't handle errors themselves. Expected
408 * call sites are system-wide / filesystem-wide data flushers: e.g. sync(2),
409 * fsfreeze(8)
410 */
411void filemap_fdatawait_keep_errors(struct address_space *mapping)
412{
413 loff_t i_size = i_size_read(mapping->host);
414
415 if (i_size == 0)
416 return;
417
418 __filemap_fdatawait_range(mapping, 0, i_size - 1);
419}
420
421/**
Randy Dunlap485bb992006-06-23 02:03:49 -0700422 * filemap_fdatawait - wait for all under-writeback pages to complete
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 * @mapping: address space structure to wait for
Randy Dunlap485bb992006-06-23 02:03:49 -0700424 *
425 * Walk the list of under-writeback pages of the given address space
Junichi Nomuraaa750fd2015-11-05 18:47:23 -0800426 * and wait for all of them. Check error status of the address space
427 * and return it.
428 *
429 * Since the error status of the address space is cleared by this function,
430 * callers are responsible for checking the return value and handling and/or
431 * reporting the error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 */
433int filemap_fdatawait(struct address_space *mapping)
434{
435 loff_t i_size = i_size_read(mapping->host);
436
437 if (i_size == 0)
438 return 0;
439
Christoph Hellwig94004ed2009-09-30 22:16:33 +0200440 return filemap_fdatawait_range(mapping, 0, i_size - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441}
442EXPORT_SYMBOL(filemap_fdatawait);
443
444int filemap_write_and_wait(struct address_space *mapping)
445{
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800446 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
448 if (mapping->nrpages) {
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800449 err = filemap_fdatawrite(mapping);
450 /*
451 * Even if the above returned error, the pages may be
452 * written partially (e.g. -ENOSPC), so we wait for it.
453 * But the -EIO is special case, it may indicate the worst
454 * thing (e.g. bug) happened, so we avoid waiting for it.
455 */
456 if (err != -EIO) {
457 int err2 = filemap_fdatawait(mapping);
458 if (!err)
459 err = err2;
460 }
Dmitry Monakhov865ffef32013-04-29 15:08:42 -0700461 } else {
462 err = filemap_check_errors(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 }
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800464 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465}
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800466EXPORT_SYMBOL(filemap_write_and_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
Randy Dunlap485bb992006-06-23 02:03:49 -0700468/**
469 * filemap_write_and_wait_range - write out & wait on a file range
470 * @mapping: the address_space for the pages
471 * @lstart: offset in bytes where the range starts
472 * @lend: offset in bytes where the range ends (inclusive)
473 *
Andrew Morton469eb4d2006-03-24 03:17:45 -0800474 * Write out and wait upon file offsets lstart->lend, inclusive.
475 *
476 * Note that `lend' is inclusive (describes the last byte to be written) so
477 * that this function can be used to write to the very end-of-file (end = -1).
478 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479int filemap_write_and_wait_range(struct address_space *mapping,
480 loff_t lstart, loff_t lend)
481{
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800482 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
484 if (mapping->nrpages) {
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800485 err = __filemap_fdatawrite_range(mapping, lstart, lend,
486 WB_SYNC_ALL);
487 /* See comment of filemap_write_and_wait() */
488 if (err != -EIO) {
Christoph Hellwig94004ed2009-09-30 22:16:33 +0200489 int err2 = filemap_fdatawait_range(mapping,
490 lstart, lend);
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800491 if (!err)
492 err = err2;
493 }
Dmitry Monakhov865ffef32013-04-29 15:08:42 -0700494 } else {
495 err = filemap_check_errors(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 }
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800497 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498}
Chris Masonf6995582009-04-15 13:22:37 -0400499EXPORT_SYMBOL(filemap_write_and_wait_range);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
Randy Dunlap485bb992006-06-23 02:03:49 -0700501/**
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700502 * replace_page_cache_page - replace a pagecache page with a new one
503 * @old: page to be replaced
504 * @new: page to replace with
505 * @gfp_mask: allocation mode
506 *
507 * This function replaces a page in the pagecache with a new one. On
508 * success it acquires the pagecache reference for the new page and
509 * drops it for the old page. Both the old and new pages must be
510 * locked. This function does not add the new page to the LRU, the
511 * caller must do that.
512 *
513 * The remove + add is atomic. The only way this function can fail is
514 * memory allocation failure.
515 */
516int replace_page_cache_page(struct page *old, struct page *new, gfp_t gfp_mask)
517{
518 int error;
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700519
Sasha Levin309381fea2014-01-23 15:52:54 -0800520 VM_BUG_ON_PAGE(!PageLocked(old), old);
521 VM_BUG_ON_PAGE(!PageLocked(new), new);
522 VM_BUG_ON_PAGE(new->mapping, new);
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700523
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700524 error = radix_tree_preload(gfp_mask & ~__GFP_HIGHMEM);
525 if (!error) {
526 struct address_space *mapping = old->mapping;
527 void (*freepage)(struct page *);
Greg Thelenc4843a72015-05-22 17:13:16 -0400528 struct mem_cgroup *memcg;
529 unsigned long flags;
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700530
531 pgoff_t offset = old->index;
532 freepage = mapping->a_ops->freepage;
533
534 page_cache_get(new);
535 new->mapping = mapping;
536 new->index = offset;
537
Greg Thelenc4843a72015-05-22 17:13:16 -0400538 memcg = mem_cgroup_begin_page_stat(old);
539 spin_lock_irqsave(&mapping->tree_lock, flags);
540 __delete_from_page_cache(old, NULL, memcg);
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700541 error = radix_tree_insert(&mapping->page_tree, offset, new);
542 BUG_ON(error);
543 mapping->nrpages++;
Michal Hocko4165b9b2015-06-24 16:57:24 -0700544
545 /*
546 * hugetlb pages do not participate in page cache accounting.
547 */
548 if (!PageHuge(new))
549 __inc_zone_page_state(new, NR_FILE_PAGES);
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700550 if (PageSwapBacked(new))
551 __inc_zone_page_state(new, NR_SHMEM);
Greg Thelenc4843a72015-05-22 17:13:16 -0400552 spin_unlock_irqrestore(&mapping->tree_lock, flags);
553 mem_cgroup_end_page_stat(memcg);
Hugh Dickins45637ba2015-11-05 18:49:40 -0800554 mem_cgroup_replace_page(old, new);
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700555 radix_tree_preload_end();
556 if (freepage)
557 freepage(old);
558 page_cache_release(old);
Miklos Szeredief6a3c62011-03-22 16:30:52 -0700559 }
560
561 return error;
562}
563EXPORT_SYMBOL_GPL(replace_page_cache_page);
564
Johannes Weiner0cd61442014-04-03 14:47:46 -0700565static int page_cache_tree_insert(struct address_space *mapping,
Johannes Weinera5289102014-04-03 14:47:51 -0700566 struct page *page, void **shadowp)
Johannes Weiner0cd61442014-04-03 14:47:46 -0700567{
Johannes Weiner449dd692014-04-03 14:47:56 -0700568 struct radix_tree_node *node;
Johannes Weiner0cd61442014-04-03 14:47:46 -0700569 void **slot;
570 int error;
571
Johannes Weiner449dd692014-04-03 14:47:56 -0700572 error = __radix_tree_create(&mapping->page_tree, page->index,
573 &node, &slot);
574 if (error)
575 return error;
576 if (*slot) {
Johannes Weiner0cd61442014-04-03 14:47:46 -0700577 void *p;
578
579 p = radix_tree_deref_slot_protected(slot, &mapping->tree_lock);
580 if (!radix_tree_exceptional_entry(p))
581 return -EEXIST;
Johannes Weinera5289102014-04-03 14:47:51 -0700582 if (shadowp)
583 *shadowp = p;
Johannes Weiner449dd692014-04-03 14:47:56 -0700584 mapping->nrshadows--;
585 if (node)
586 workingset_node_shadows_dec(node);
Johannes Weiner0cd61442014-04-03 14:47:46 -0700587 }
Johannes Weiner449dd692014-04-03 14:47:56 -0700588 radix_tree_replace_slot(slot, page);
589 mapping->nrpages++;
590 if (node) {
591 workingset_node_pages_inc(node);
592 /*
593 * Don't track node that contains actual pages.
594 *
595 * Avoid acquiring the list_lru lock if already
596 * untracked. The list_empty() test is safe as
597 * node->private_list is protected by
598 * mapping->tree_lock.
599 */
600 if (!list_empty(&node->private_list))
601 list_lru_del(&workingset_shadow_nodes,
602 &node->private_list);
603 }
604 return 0;
Johannes Weiner0cd61442014-04-03 14:47:46 -0700605}
606
Johannes Weinera5289102014-04-03 14:47:51 -0700607static int __add_to_page_cache_locked(struct page *page,
608 struct address_space *mapping,
609 pgoff_t offset, gfp_t gfp_mask,
610 void **shadowp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611{
Johannes Weiner00501b52014-08-08 14:19:20 -0700612 int huge = PageHuge(page);
613 struct mem_cgroup *memcg;
Nick Piggine2867812008-07-25 19:45:30 -0700614 int error;
615
Sasha Levin309381fea2014-01-23 15:52:54 -0800616 VM_BUG_ON_PAGE(!PageLocked(page), page);
617 VM_BUG_ON_PAGE(PageSwapBacked(page), page);
Nick Piggine2867812008-07-25 19:45:30 -0700618
Johannes Weiner00501b52014-08-08 14:19:20 -0700619 if (!huge) {
620 error = mem_cgroup_try_charge(page, current->mm,
621 gfp_mask, &memcg);
622 if (error)
623 return error;
624 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
Jan Kara5e4c0d972013-09-11 14:26:05 -0700626 error = radix_tree_maybe_preload(gfp_mask & ~__GFP_HIGHMEM);
Kirill A. Shutemov66a0c8e2013-09-12 15:13:59 -0700627 if (error) {
Johannes Weiner00501b52014-08-08 14:19:20 -0700628 if (!huge)
629 mem_cgroup_cancel_charge(page, memcg);
Kirill A. Shutemov66a0c8e2013-09-12 15:13:59 -0700630 return error;
631 }
632
633 page_cache_get(page);
634 page->mapping = mapping;
635 page->index = offset;
636
637 spin_lock_irq(&mapping->tree_lock);
Johannes Weinera5289102014-04-03 14:47:51 -0700638 error = page_cache_tree_insert(mapping, page, shadowp);
Kirill A. Shutemov66a0c8e2013-09-12 15:13:59 -0700639 radix_tree_preload_end();
640 if (unlikely(error))
641 goto err_insert;
Michal Hocko4165b9b2015-06-24 16:57:24 -0700642
643 /* hugetlb pages do not participate in page cache accounting. */
644 if (!huge)
645 __inc_zone_page_state(page, NR_FILE_PAGES);
Kirill A. Shutemov66a0c8e2013-09-12 15:13:59 -0700646 spin_unlock_irq(&mapping->tree_lock);
Johannes Weiner00501b52014-08-08 14:19:20 -0700647 if (!huge)
648 mem_cgroup_commit_charge(page, memcg, false);
Kirill A. Shutemov66a0c8e2013-09-12 15:13:59 -0700649 trace_mm_filemap_add_to_page_cache(page);
650 return 0;
651err_insert:
652 page->mapping = NULL;
653 /* Leave page->index set: truncation relies upon it */
654 spin_unlock_irq(&mapping->tree_lock);
Johannes Weiner00501b52014-08-08 14:19:20 -0700655 if (!huge)
656 mem_cgroup_cancel_charge(page, memcg);
Kirill A. Shutemov66a0c8e2013-09-12 15:13:59 -0700657 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 return error;
659}
Johannes Weinera5289102014-04-03 14:47:51 -0700660
661/**
662 * add_to_page_cache_locked - add a locked page to the pagecache
663 * @page: page to add
664 * @mapping: the page's address_space
665 * @offset: page index
666 * @gfp_mask: page allocation mode
667 *
668 * This function is used to add a page to the pagecache. It must be locked.
669 * This function does not add the page to the LRU. The caller must do that.
670 */
671int add_to_page_cache_locked(struct page *page, struct address_space *mapping,
672 pgoff_t offset, gfp_t gfp_mask)
673{
674 return __add_to_page_cache_locked(page, mapping, offset,
675 gfp_mask, NULL);
676}
Nick Piggine2867812008-07-25 19:45:30 -0700677EXPORT_SYMBOL(add_to_page_cache_locked);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
679int add_to_page_cache_lru(struct page *page, struct address_space *mapping,
Al Viro6daa0e22005-10-21 03:18:50 -0400680 pgoff_t offset, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681{
Johannes Weinera5289102014-04-03 14:47:51 -0700682 void *shadow = NULL;
Rik van Riel4f98a2f2008-10-18 20:26:32 -0700683 int ret;
684
Johannes Weinera5289102014-04-03 14:47:51 -0700685 __set_page_locked(page);
686 ret = __add_to_page_cache_locked(page, mapping, offset,
687 gfp_mask, &shadow);
688 if (unlikely(ret))
689 __clear_page_locked(page);
690 else {
691 /*
692 * The page might have been evicted from cache only
693 * recently, in which case it should be activated like
694 * any other repeatedly accessed page.
695 */
696 if (shadow && workingset_refault(shadow)) {
697 SetPageActive(page);
698 workingset_activation(page);
699 } else
700 ClearPageActive(page);
701 lru_cache_add(page);
702 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 return ret;
704}
Evgeniy Polyakov18bc0bb2009-02-09 17:02:42 +0300705EXPORT_SYMBOL_GPL(add_to_page_cache_lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
Paul Jackson44110fe2006-03-24 03:16:04 -0800707#ifdef CONFIG_NUMA
Nick Piggin2ae88142006-10-28 10:38:23 -0700708struct page *__page_cache_alloc(gfp_t gfp)
Paul Jackson44110fe2006-03-24 03:16:04 -0800709{
Miao Xiec0ff7452010-05-24 14:32:08 -0700710 int n;
711 struct page *page;
712
Paul Jackson44110fe2006-03-24 03:16:04 -0800713 if (cpuset_do_page_mem_spread()) {
Mel Gormancc9a6c82012-03-21 16:34:11 -0700714 unsigned int cpuset_mems_cookie;
715 do {
Mel Gormand26914d2014-04-03 14:47:24 -0700716 cpuset_mems_cookie = read_mems_allowed_begin();
Mel Gormancc9a6c82012-03-21 16:34:11 -0700717 n = cpuset_mem_spread_node();
Vlastimil Babka96db8002015-09-08 15:03:50 -0700718 page = __alloc_pages_node(n, gfp, 0);
Mel Gormand26914d2014-04-03 14:47:24 -0700719 } while (!page && read_mems_allowed_retry(cpuset_mems_cookie));
Mel Gormancc9a6c82012-03-21 16:34:11 -0700720
Miao Xiec0ff7452010-05-24 14:32:08 -0700721 return page;
Paul Jackson44110fe2006-03-24 03:16:04 -0800722 }
Nick Piggin2ae88142006-10-28 10:38:23 -0700723 return alloc_pages(gfp, 0);
Paul Jackson44110fe2006-03-24 03:16:04 -0800724}
Nick Piggin2ae88142006-10-28 10:38:23 -0700725EXPORT_SYMBOL(__page_cache_alloc);
Paul Jackson44110fe2006-03-24 03:16:04 -0800726#endif
727
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728/*
729 * In order to wait for pages to become available there must be
730 * waitqueues associated with pages. By using a hash table of
731 * waitqueues where the bucket discipline is to maintain all
732 * waiters on the same queue and wake all when any of the pages
733 * become available, and for the woken contexts to check to be
734 * sure the appropriate page became available, this saves space
735 * at a cost of "thundering herd" phenomena during rare hash
736 * collisions.
737 */
NeilBrowna4796e32014-09-24 11:28:32 +1000738wait_queue_head_t *page_waitqueue(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739{
740 const struct zone *zone = page_zone(page);
741
742 return &zone->wait_table[hash_ptr(page, zone->wait_table_bits)];
743}
NeilBrowna4796e32014-09-24 11:28:32 +1000744EXPORT_SYMBOL(page_waitqueue);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
Harvey Harrison920c7a52008-02-04 22:29:26 -0800746void wait_on_page_bit(struct page *page, int bit_nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747{
748 DEFINE_WAIT_BIT(wait, &page->flags, bit_nr);
749
750 if (test_bit(bit_nr, &page->flags))
NeilBrown74316202014-07-07 15:16:04 +1000751 __wait_on_bit(page_waitqueue(page), &wait, bit_wait_io,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 TASK_UNINTERRUPTIBLE);
753}
754EXPORT_SYMBOL(wait_on_page_bit);
755
KOSAKI Motohirof62e00c2011-05-24 17:11:29 -0700756int wait_on_page_bit_killable(struct page *page, int bit_nr)
757{
758 DEFINE_WAIT_BIT(wait, &page->flags, bit_nr);
759
760 if (!test_bit(bit_nr, &page->flags))
761 return 0;
762
763 return __wait_on_bit(page_waitqueue(page), &wait,
NeilBrown74316202014-07-07 15:16:04 +1000764 bit_wait_io, TASK_KILLABLE);
KOSAKI Motohirof62e00c2011-05-24 17:11:29 -0700765}
766
NeilBrowncbbce822014-09-25 13:55:19 +1000767int wait_on_page_bit_killable_timeout(struct page *page,
768 int bit_nr, unsigned long timeout)
769{
770 DEFINE_WAIT_BIT(wait, &page->flags, bit_nr);
771
772 wait.key.timeout = jiffies + timeout;
773 if (!test_bit(bit_nr, &page->flags))
774 return 0;
775 return __wait_on_bit(page_waitqueue(page), &wait,
776 bit_wait_io_timeout, TASK_KILLABLE);
777}
778EXPORT_SYMBOL_GPL(wait_on_page_bit_killable_timeout);
779
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780/**
David Howells385e1ca5f2009-04-03 16:42:39 +0100781 * add_page_wait_queue - Add an arbitrary waiter to a page's wait queue
Randy Dunlap697f6192009-04-13 14:39:54 -0700782 * @page: Page defining the wait queue of interest
783 * @waiter: Waiter to add to the queue
David Howells385e1ca5f2009-04-03 16:42:39 +0100784 *
785 * Add an arbitrary @waiter to the wait queue for the nominated @page.
786 */
787void add_page_wait_queue(struct page *page, wait_queue_t *waiter)
788{
789 wait_queue_head_t *q = page_waitqueue(page);
790 unsigned long flags;
791
792 spin_lock_irqsave(&q->lock, flags);
793 __add_wait_queue(q, waiter);
794 spin_unlock_irqrestore(&q->lock, flags);
795}
796EXPORT_SYMBOL_GPL(add_page_wait_queue);
797
798/**
Randy Dunlap485bb992006-06-23 02:03:49 -0700799 * unlock_page - unlock a locked page
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 * @page: the page
801 *
802 * Unlocks the page and wakes up sleepers in ___wait_on_page_locked().
803 * Also wakes sleepers in wait_on_page_writeback() because the wakeup
Masanari Iidada3dae52014-09-09 01:27:23 +0900804 * mechanism between PageLocked pages and PageWriteback pages is shared.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 * But that's OK - sleepers in wait_on_page_writeback() just go back to sleep.
806 *
Nick Piggin8413ac92008-10-18 20:26:59 -0700807 * The mb is necessary to enforce ordering between the clear_bit and the read
808 * of the waitqueue (to avoid SMP races with a parallel wait_on_page_locked()).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 */
Harvey Harrison920c7a52008-02-04 22:29:26 -0800810void unlock_page(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811{
Sasha Levin309381fea2014-01-23 15:52:54 -0800812 VM_BUG_ON_PAGE(!PageLocked(page), page);
Nick Piggin8413ac92008-10-18 20:26:59 -0700813 clear_bit_unlock(PG_locked, &page->flags);
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100814 smp_mb__after_atomic();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 wake_up_page(page, PG_locked);
816}
817EXPORT_SYMBOL(unlock_page);
818
Randy Dunlap485bb992006-06-23 02:03:49 -0700819/**
820 * end_page_writeback - end writeback against a page
821 * @page: the page
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 */
823void end_page_writeback(struct page *page)
824{
Mel Gorman888cf2d2014-06-04 16:10:34 -0700825 /*
826 * TestClearPageReclaim could be used here but it is an atomic
827 * operation and overkill in this particular case. Failing to
828 * shuffle a page marked for immediate reclaim is too mild to
829 * justify taking an atomic operation penalty at the end of
830 * ever page writeback.
831 */
832 if (PageReclaim(page)) {
833 ClearPageReclaim(page);
Miklos Szerediac6aadb2008-04-28 02:12:38 -0700834 rotate_reclaimable_page(page);
Mel Gorman888cf2d2014-06-04 16:10:34 -0700835 }
Miklos Szerediac6aadb2008-04-28 02:12:38 -0700836
837 if (!test_clear_page_writeback(page))
838 BUG();
839
Peter Zijlstra4e857c52014-03-17 18:06:10 +0100840 smp_mb__after_atomic();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 wake_up_page(page, PG_writeback);
842}
843EXPORT_SYMBOL(end_page_writeback);
844
Matthew Wilcox57d99842014-06-04 16:07:45 -0700845/*
846 * After completing I/O on a page, call this routine to update the page
847 * flags appropriately
848 */
849void page_endio(struct page *page, int rw, int err)
850{
851 if (rw == READ) {
852 if (!err) {
853 SetPageUptodate(page);
854 } else {
855 ClearPageUptodate(page);
856 SetPageError(page);
857 }
858 unlock_page(page);
859 } else { /* rw == WRITE */
860 if (err) {
861 SetPageError(page);
862 if (page->mapping)
863 mapping_set_error(page->mapping, err);
864 }
865 end_page_writeback(page);
866 }
867}
868EXPORT_SYMBOL_GPL(page_endio);
869
Randy Dunlap485bb992006-06-23 02:03:49 -0700870/**
871 * __lock_page - get a lock on the page, assuming we need to sleep to get it
872 * @page: the page to lock
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 */
Harvey Harrison920c7a52008-02-04 22:29:26 -0800874void __lock_page(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875{
876 DEFINE_WAIT_BIT(wait, &page->flags, PG_locked);
877
NeilBrown74316202014-07-07 15:16:04 +1000878 __wait_on_bit_lock(page_waitqueue(page), &wait, bit_wait_io,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 TASK_UNINTERRUPTIBLE);
880}
881EXPORT_SYMBOL(__lock_page);
882
Harvey Harrisonb5606c22008-02-13 15:03:16 -0800883int __lock_page_killable(struct page *page)
Matthew Wilcox2687a352007-12-06 11:18:49 -0500884{
885 DEFINE_WAIT_BIT(wait, &page->flags, PG_locked);
886
887 return __wait_on_bit_lock(page_waitqueue(page), &wait,
NeilBrown74316202014-07-07 15:16:04 +1000888 bit_wait_io, TASK_KILLABLE);
Matthew Wilcox2687a352007-12-06 11:18:49 -0500889}
Evgeniy Polyakov18bc0bb2009-02-09 17:02:42 +0300890EXPORT_SYMBOL_GPL(__lock_page_killable);
Matthew Wilcox2687a352007-12-06 11:18:49 -0500891
Paul Cassella9a95f3c2014-08-06 16:07:24 -0700892/*
893 * Return values:
894 * 1 - page is locked; mmap_sem is still held.
895 * 0 - page is not locked.
896 * mmap_sem has been released (up_read()), unless flags had both
897 * FAULT_FLAG_ALLOW_RETRY and FAULT_FLAG_RETRY_NOWAIT set, in
898 * which case mmap_sem is still held.
899 *
900 * If neither ALLOW_RETRY nor KILLABLE are set, will always return 1
901 * with the page locked and the mmap_sem unperturbed.
902 */
Michel Lespinassed065bd82010-10-26 14:21:57 -0700903int __lock_page_or_retry(struct page *page, struct mm_struct *mm,
904 unsigned int flags)
905{
KOSAKI Motohiro37b23e02011-05-24 17:11:30 -0700906 if (flags & FAULT_FLAG_ALLOW_RETRY) {
907 /*
908 * CAUTION! In this case, mmap_sem is not released
909 * even though return 0.
910 */
911 if (flags & FAULT_FLAG_RETRY_NOWAIT)
912 return 0;
913
914 up_read(&mm->mmap_sem);
915 if (flags & FAULT_FLAG_KILLABLE)
916 wait_on_page_locked_killable(page);
917 else
Gleb Natapov318b2752011-03-22 16:30:51 -0700918 wait_on_page_locked(page);
Michel Lespinassed065bd82010-10-26 14:21:57 -0700919 return 0;
KOSAKI Motohiro37b23e02011-05-24 17:11:30 -0700920 } else {
921 if (flags & FAULT_FLAG_KILLABLE) {
922 int ret;
923
924 ret = __lock_page_killable(page);
925 if (ret) {
926 up_read(&mm->mmap_sem);
927 return 0;
928 }
929 } else
930 __lock_page(page);
931 return 1;
Michel Lespinassed065bd82010-10-26 14:21:57 -0700932 }
933}
934
Randy Dunlap485bb992006-06-23 02:03:49 -0700935/**
Johannes Weinere7b563b2014-04-03 14:47:44 -0700936 * page_cache_next_hole - find the next hole (not-present entry)
937 * @mapping: mapping
938 * @index: index
939 * @max_scan: maximum range to search
940 *
941 * Search the set [index, min(index+max_scan-1, MAX_INDEX)] for the
942 * lowest indexed hole.
943 *
944 * Returns: the index of the hole if found, otherwise returns an index
945 * outside of the set specified (in which case 'return - index >=
946 * max_scan' will be true). In rare cases of index wrap-around, 0 will
947 * be returned.
948 *
949 * page_cache_next_hole may be called under rcu_read_lock. However,
950 * like radix_tree_gang_lookup, this will not atomically search a
951 * snapshot of the tree at a single point in time. For example, if a
952 * hole is created at index 5, then subsequently a hole is created at
953 * index 10, page_cache_next_hole covering both indexes may return 10
954 * if called under rcu_read_lock.
955 */
956pgoff_t page_cache_next_hole(struct address_space *mapping,
957 pgoff_t index, unsigned long max_scan)
958{
959 unsigned long i;
960
961 for (i = 0; i < max_scan; i++) {
Johannes Weiner0cd61442014-04-03 14:47:46 -0700962 struct page *page;
963
964 page = radix_tree_lookup(&mapping->page_tree, index);
965 if (!page || radix_tree_exceptional_entry(page))
Johannes Weinere7b563b2014-04-03 14:47:44 -0700966 break;
967 index++;
968 if (index == 0)
969 break;
970 }
971
972 return index;
973}
974EXPORT_SYMBOL(page_cache_next_hole);
975
976/**
977 * page_cache_prev_hole - find the prev hole (not-present entry)
978 * @mapping: mapping
979 * @index: index
980 * @max_scan: maximum range to search
981 *
982 * Search backwards in the range [max(index-max_scan+1, 0), index] for
983 * the first hole.
984 *
985 * Returns: the index of the hole if found, otherwise returns an index
986 * outside of the set specified (in which case 'index - return >=
987 * max_scan' will be true). In rare cases of wrap-around, ULONG_MAX
988 * will be returned.
989 *
990 * page_cache_prev_hole may be called under rcu_read_lock. However,
991 * like radix_tree_gang_lookup, this will not atomically search a
992 * snapshot of the tree at a single point in time. For example, if a
993 * hole is created at index 10, then subsequently a hole is created at
994 * index 5, page_cache_prev_hole covering both indexes may return 5 if
995 * called under rcu_read_lock.
996 */
997pgoff_t page_cache_prev_hole(struct address_space *mapping,
998 pgoff_t index, unsigned long max_scan)
999{
1000 unsigned long i;
1001
1002 for (i = 0; i < max_scan; i++) {
Johannes Weiner0cd61442014-04-03 14:47:46 -07001003 struct page *page;
1004
1005 page = radix_tree_lookup(&mapping->page_tree, index);
1006 if (!page || radix_tree_exceptional_entry(page))
Johannes Weinere7b563b2014-04-03 14:47:44 -07001007 break;
1008 index--;
1009 if (index == ULONG_MAX)
1010 break;
1011 }
1012
1013 return index;
1014}
1015EXPORT_SYMBOL(page_cache_prev_hole);
1016
1017/**
Johannes Weiner0cd61442014-04-03 14:47:46 -07001018 * find_get_entry - find and get a page cache entry
Randy Dunlap485bb992006-06-23 02:03:49 -07001019 * @mapping: the address_space to search
Johannes Weiner0cd61442014-04-03 14:47:46 -07001020 * @offset: the page cache index
Randy Dunlap485bb992006-06-23 02:03:49 -07001021 *
Johannes Weiner0cd61442014-04-03 14:47:46 -07001022 * Looks up the page cache slot at @mapping & @offset. If there is a
1023 * page cache page, it is returned with an increased refcount.
1024 *
Johannes Weiner139b6a62014-05-06 12:50:05 -07001025 * If the slot holds a shadow entry of a previously evicted page, or a
1026 * swap entry from shmem/tmpfs, it is returned.
Johannes Weiner0cd61442014-04-03 14:47:46 -07001027 *
1028 * Otherwise, %NULL is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 */
Johannes Weiner0cd61442014-04-03 14:47:46 -07001030struct page *find_get_entry(struct address_space *mapping, pgoff_t offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031{
Nick Piggina60637c2008-07-25 19:45:31 -07001032 void **pagep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 struct page *page;
1034
Nick Piggina60637c2008-07-25 19:45:31 -07001035 rcu_read_lock();
1036repeat:
1037 page = NULL;
1038 pagep = radix_tree_lookup_slot(&mapping->page_tree, offset);
1039 if (pagep) {
1040 page = radix_tree_deref_slot(pagep);
Nick Piggin27d20fd2010-11-11 14:05:19 -08001041 if (unlikely(!page))
1042 goto out;
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001043 if (radix_tree_exception(page)) {
Hugh Dickins8079b1c2011-08-03 16:21:28 -07001044 if (radix_tree_deref_retry(page))
1045 goto repeat;
1046 /*
Johannes Weiner139b6a62014-05-06 12:50:05 -07001047 * A shadow entry of a recently evicted page,
1048 * or a swap entry from shmem/tmpfs. Return
1049 * it without attempting to raise page count.
Hugh Dickins8079b1c2011-08-03 16:21:28 -07001050 */
1051 goto out;
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001052 }
Nick Piggina60637c2008-07-25 19:45:31 -07001053 if (!page_cache_get_speculative(page))
1054 goto repeat;
1055
1056 /*
1057 * Has the page moved?
1058 * This is part of the lockless pagecache protocol. See
1059 * include/linux/pagemap.h for details.
1060 */
1061 if (unlikely(page != *pagep)) {
1062 page_cache_release(page);
1063 goto repeat;
1064 }
1065 }
Nick Piggin27d20fd2010-11-11 14:05:19 -08001066out:
Nick Piggina60637c2008-07-25 19:45:31 -07001067 rcu_read_unlock();
1068
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 return page;
1070}
Johannes Weiner0cd61442014-04-03 14:47:46 -07001071EXPORT_SYMBOL(find_get_entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
Randy Dunlap485bb992006-06-23 02:03:49 -07001073/**
Johannes Weiner0cd61442014-04-03 14:47:46 -07001074 * find_lock_entry - locate, pin and lock a page cache entry
1075 * @mapping: the address_space to search
1076 * @offset: the page cache index
1077 *
1078 * Looks up the page cache slot at @mapping & @offset. If there is a
1079 * page cache page, it is returned locked and with an increased
1080 * refcount.
1081 *
Johannes Weiner139b6a62014-05-06 12:50:05 -07001082 * If the slot holds a shadow entry of a previously evicted page, or a
1083 * swap entry from shmem/tmpfs, it is returned.
Johannes Weiner0cd61442014-04-03 14:47:46 -07001084 *
1085 * Otherwise, %NULL is returned.
1086 *
1087 * find_lock_entry() may sleep.
1088 */
1089struct page *find_lock_entry(struct address_space *mapping, pgoff_t offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090{
1091 struct page *page;
1092
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093repeat:
Johannes Weiner0cd61442014-04-03 14:47:46 -07001094 page = find_get_entry(mapping, offset);
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001095 if (page && !radix_tree_exception(page)) {
Nick Piggina60637c2008-07-25 19:45:31 -07001096 lock_page(page);
1097 /* Has the page been truncated? */
1098 if (unlikely(page->mapping != mapping)) {
1099 unlock_page(page);
1100 page_cache_release(page);
1101 goto repeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 }
Sasha Levin309381fea2014-01-23 15:52:54 -08001103 VM_BUG_ON_PAGE(page->index != offset, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 return page;
1106}
Johannes Weiner0cd61442014-04-03 14:47:46 -07001107EXPORT_SYMBOL(find_lock_entry);
1108
1109/**
Mel Gorman2457aec2014-06-04 16:10:31 -07001110 * pagecache_get_page - find and get a page reference
Johannes Weiner0cd61442014-04-03 14:47:46 -07001111 * @mapping: the address_space to search
1112 * @offset: the page index
Mel Gorman2457aec2014-06-04 16:10:31 -07001113 * @fgp_flags: PCG flags
Michal Hocko45f87de2014-12-29 20:30:35 +01001114 * @gfp_mask: gfp mask to use for the page cache data page allocation
Johannes Weiner0cd61442014-04-03 14:47:46 -07001115 *
Mel Gorman2457aec2014-06-04 16:10:31 -07001116 * Looks up the page cache slot at @mapping & @offset.
Johannes Weiner0cd61442014-04-03 14:47:46 -07001117 *
Randy Dunlap75325182014-07-30 16:08:37 -07001118 * PCG flags modify how the page is returned.
Johannes Weiner0cd61442014-04-03 14:47:46 -07001119 *
Mel Gorman2457aec2014-06-04 16:10:31 -07001120 * FGP_ACCESSED: the page will be marked accessed
1121 * FGP_LOCK: Page is return locked
1122 * FGP_CREAT: If page is not present then a new page is allocated using
Michal Hocko45f87de2014-12-29 20:30:35 +01001123 * @gfp_mask and added to the page cache and the VM's LRU
1124 * list. The page is returned locked and with an increased
1125 * refcount. Otherwise, %NULL is returned.
Mel Gorman2457aec2014-06-04 16:10:31 -07001126 *
1127 * If FGP_LOCK or FGP_CREAT are specified then the function may sleep even
1128 * if the GFP flags specified for FGP_CREAT are atomic.
1129 *
1130 * If there is a page cache page, it is returned with an increased refcount.
Johannes Weiner0cd61442014-04-03 14:47:46 -07001131 */
Mel Gorman2457aec2014-06-04 16:10:31 -07001132struct page *pagecache_get_page(struct address_space *mapping, pgoff_t offset,
Michal Hocko45f87de2014-12-29 20:30:35 +01001133 int fgp_flags, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134{
Nick Piggineb2be182007-10-16 01:24:57 -07001135 struct page *page;
Mel Gorman2457aec2014-06-04 16:10:31 -07001136
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137repeat:
Mel Gorman2457aec2014-06-04 16:10:31 -07001138 page = find_get_entry(mapping, offset);
1139 if (radix_tree_exceptional_entry(page))
1140 page = NULL;
1141 if (!page)
1142 goto no_page;
1143
1144 if (fgp_flags & FGP_LOCK) {
1145 if (fgp_flags & FGP_NOWAIT) {
1146 if (!trylock_page(page)) {
1147 page_cache_release(page);
1148 return NULL;
1149 }
1150 } else {
1151 lock_page(page);
1152 }
1153
1154 /* Has the page been truncated? */
1155 if (unlikely(page->mapping != mapping)) {
1156 unlock_page(page);
1157 page_cache_release(page);
1158 goto repeat;
1159 }
1160 VM_BUG_ON_PAGE(page->index != offset, page);
1161 }
1162
1163 if (page && (fgp_flags & FGP_ACCESSED))
1164 mark_page_accessed(page);
1165
1166no_page:
1167 if (!page && (fgp_flags & FGP_CREAT)) {
1168 int err;
1169 if ((fgp_flags & FGP_WRITE) && mapping_cap_account_dirty(mapping))
Michal Hocko45f87de2014-12-29 20:30:35 +01001170 gfp_mask |= __GFP_WRITE;
1171 if (fgp_flags & FGP_NOFS)
1172 gfp_mask &= ~__GFP_FS;
Mel Gorman2457aec2014-06-04 16:10:31 -07001173
Michal Hocko45f87de2014-12-29 20:30:35 +01001174 page = __page_cache_alloc(gfp_mask);
Nick Piggineb2be182007-10-16 01:24:57 -07001175 if (!page)
1176 return NULL;
Mel Gorman2457aec2014-06-04 16:10:31 -07001177
1178 if (WARN_ON_ONCE(!(fgp_flags & FGP_LOCK)))
1179 fgp_flags |= FGP_LOCK;
1180
Hugh Dickinseb39d612014-08-06 16:06:43 -07001181 /* Init accessed so avoid atomic mark_page_accessed later */
Mel Gorman2457aec2014-06-04 16:10:31 -07001182 if (fgp_flags & FGP_ACCESSED)
Hugh Dickinseb39d612014-08-06 16:06:43 -07001183 __SetPageReferenced(page);
Mel Gorman2457aec2014-06-04 16:10:31 -07001184
Michal Hocko45f87de2014-12-29 20:30:35 +01001185 err = add_to_page_cache_lru(page, mapping, offset,
1186 gfp_mask & GFP_RECLAIM_MASK);
Nick Piggineb2be182007-10-16 01:24:57 -07001187 if (unlikely(err)) {
1188 page_cache_release(page);
1189 page = NULL;
1190 if (err == -EEXIST)
1191 goto repeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 }
Mel Gorman2457aec2014-06-04 16:10:31 -07001194
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 return page;
1196}
Mel Gorman2457aec2014-06-04 16:10:31 -07001197EXPORT_SYMBOL(pagecache_get_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
1199/**
Johannes Weiner0cd61442014-04-03 14:47:46 -07001200 * find_get_entries - gang pagecache lookup
1201 * @mapping: The address_space to search
1202 * @start: The starting page cache index
1203 * @nr_entries: The maximum number of entries
1204 * @entries: Where the resulting entries are placed
1205 * @indices: The cache indices corresponding to the entries in @entries
1206 *
1207 * find_get_entries() will search for and return a group of up to
1208 * @nr_entries entries in the mapping. The entries are placed at
1209 * @entries. find_get_entries() takes a reference against any actual
1210 * pages it returns.
1211 *
1212 * The search returns a group of mapping-contiguous page cache entries
1213 * with ascending indexes. There may be holes in the indices due to
1214 * not-present pages.
1215 *
Johannes Weiner139b6a62014-05-06 12:50:05 -07001216 * Any shadow entries of evicted pages, or swap entries from
1217 * shmem/tmpfs, are included in the returned array.
Johannes Weiner0cd61442014-04-03 14:47:46 -07001218 *
1219 * find_get_entries() returns the number of pages and shadow entries
1220 * which were found.
1221 */
1222unsigned find_get_entries(struct address_space *mapping,
1223 pgoff_t start, unsigned int nr_entries,
1224 struct page **entries, pgoff_t *indices)
1225{
1226 void **slot;
1227 unsigned int ret = 0;
1228 struct radix_tree_iter iter;
1229
1230 if (!nr_entries)
1231 return 0;
1232
1233 rcu_read_lock();
1234restart:
1235 radix_tree_for_each_slot(slot, &mapping->page_tree, &iter, start) {
1236 struct page *page;
1237repeat:
1238 page = radix_tree_deref_slot(slot);
1239 if (unlikely(!page))
1240 continue;
1241 if (radix_tree_exception(page)) {
1242 if (radix_tree_deref_retry(page))
1243 goto restart;
1244 /*
Johannes Weiner139b6a62014-05-06 12:50:05 -07001245 * A shadow entry of a recently evicted page,
1246 * or a swap entry from shmem/tmpfs. Return
1247 * it without attempting to raise page count.
Johannes Weiner0cd61442014-04-03 14:47:46 -07001248 */
1249 goto export;
1250 }
1251 if (!page_cache_get_speculative(page))
1252 goto repeat;
1253
1254 /* Has the page moved? */
1255 if (unlikely(page != *slot)) {
1256 page_cache_release(page);
1257 goto repeat;
1258 }
1259export:
1260 indices[ret] = iter.index;
1261 entries[ret] = page;
1262 if (++ret == nr_entries)
1263 break;
1264 }
1265 rcu_read_unlock();
1266 return ret;
1267}
1268
1269/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 * find_get_pages - gang pagecache lookup
1271 * @mapping: The address_space to search
1272 * @start: The starting page index
1273 * @nr_pages: The maximum number of pages
1274 * @pages: Where the resulting pages are placed
1275 *
1276 * find_get_pages() will search for and return a group of up to
1277 * @nr_pages pages in the mapping. The pages are placed at @pages.
1278 * find_get_pages() takes a reference against the returned pages.
1279 *
1280 * The search returns a group of mapping-contiguous pages with ascending
1281 * indexes. There may be holes in the indices due to not-present pages.
1282 *
1283 * find_get_pages() returns the number of pages which were found.
1284 */
1285unsigned find_get_pages(struct address_space *mapping, pgoff_t start,
1286 unsigned int nr_pages, struct page **pages)
1287{
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001288 struct radix_tree_iter iter;
1289 void **slot;
1290 unsigned ret = 0;
1291
1292 if (unlikely(!nr_pages))
1293 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
Nick Piggina60637c2008-07-25 19:45:31 -07001295 rcu_read_lock();
1296restart:
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001297 radix_tree_for_each_slot(slot, &mapping->page_tree, &iter, start) {
Nick Piggina60637c2008-07-25 19:45:31 -07001298 struct page *page;
1299repeat:
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001300 page = radix_tree_deref_slot(slot);
Nick Piggina60637c2008-07-25 19:45:31 -07001301 if (unlikely(!page))
1302 continue;
Hugh Dickins9d8aa4e2011-03-22 16:33:06 -07001303
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001304 if (radix_tree_exception(page)) {
Hugh Dickins8079b1c2011-08-03 16:21:28 -07001305 if (radix_tree_deref_retry(page)) {
1306 /*
1307 * Transient condition which can only trigger
1308 * when entry at index 0 moves out of or back
1309 * to root: none yet gotten, safe to restart.
1310 */
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001311 WARN_ON(iter.index);
Hugh Dickins8079b1c2011-08-03 16:21:28 -07001312 goto restart;
1313 }
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001314 /*
Johannes Weiner139b6a62014-05-06 12:50:05 -07001315 * A shadow entry of a recently evicted page,
1316 * or a swap entry from shmem/tmpfs. Skip
1317 * over it.
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001318 */
Hugh Dickins8079b1c2011-08-03 16:21:28 -07001319 continue;
Nick Piggin27d20fd2010-11-11 14:05:19 -08001320 }
Nick Piggina60637c2008-07-25 19:45:31 -07001321
1322 if (!page_cache_get_speculative(page))
1323 goto repeat;
1324
1325 /* Has the page moved? */
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001326 if (unlikely(page != *slot)) {
Nick Piggina60637c2008-07-25 19:45:31 -07001327 page_cache_release(page);
1328 goto repeat;
1329 }
1330
1331 pages[ret] = page;
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001332 if (++ret == nr_pages)
1333 break;
Nick Piggina60637c2008-07-25 19:45:31 -07001334 }
Hugh Dickins5b280c02011-03-22 16:33:07 -07001335
Nick Piggina60637c2008-07-25 19:45:31 -07001336 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 return ret;
1338}
1339
Jens Axboeebf43502006-04-27 08:46:01 +02001340/**
1341 * find_get_pages_contig - gang contiguous pagecache lookup
1342 * @mapping: The address_space to search
1343 * @index: The starting page index
1344 * @nr_pages: The maximum number of pages
1345 * @pages: Where the resulting pages are placed
1346 *
1347 * find_get_pages_contig() works exactly like find_get_pages(), except
1348 * that the returned number of pages are guaranteed to be contiguous.
1349 *
1350 * find_get_pages_contig() returns the number of pages which were found.
1351 */
1352unsigned find_get_pages_contig(struct address_space *mapping, pgoff_t index,
1353 unsigned int nr_pages, struct page **pages)
1354{
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001355 struct radix_tree_iter iter;
1356 void **slot;
1357 unsigned int ret = 0;
1358
1359 if (unlikely(!nr_pages))
1360 return 0;
Jens Axboeebf43502006-04-27 08:46:01 +02001361
Nick Piggina60637c2008-07-25 19:45:31 -07001362 rcu_read_lock();
1363restart:
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001364 radix_tree_for_each_contig(slot, &mapping->page_tree, &iter, index) {
Nick Piggina60637c2008-07-25 19:45:31 -07001365 struct page *page;
1366repeat:
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001367 page = radix_tree_deref_slot(slot);
1368 /* The hole, there no reason to continue */
Nick Piggina60637c2008-07-25 19:45:31 -07001369 if (unlikely(!page))
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001370 break;
Hugh Dickins9d8aa4e2011-03-22 16:33:06 -07001371
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001372 if (radix_tree_exception(page)) {
Hugh Dickins8079b1c2011-08-03 16:21:28 -07001373 if (radix_tree_deref_retry(page)) {
1374 /*
1375 * Transient condition which can only trigger
1376 * when entry at index 0 moves out of or back
1377 * to root: none yet gotten, safe to restart.
1378 */
1379 goto restart;
1380 }
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001381 /*
Johannes Weiner139b6a62014-05-06 12:50:05 -07001382 * A shadow entry of a recently evicted page,
1383 * or a swap entry from shmem/tmpfs. Stop
1384 * looking for contiguous pages.
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001385 */
Hugh Dickins8079b1c2011-08-03 16:21:28 -07001386 break;
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001387 }
Nick Piggina60637c2008-07-25 19:45:31 -07001388
Nick Piggina60637c2008-07-25 19:45:31 -07001389 if (!page_cache_get_speculative(page))
1390 goto repeat;
1391
1392 /* Has the page moved? */
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001393 if (unlikely(page != *slot)) {
Nick Piggina60637c2008-07-25 19:45:31 -07001394 page_cache_release(page);
1395 goto repeat;
1396 }
1397
Nick Piggin9cbb4cb2011-01-13 15:45:51 -08001398 /*
1399 * must check mapping and index after taking the ref.
1400 * otherwise we can get both false positives and false
1401 * negatives, which is just confusing to the caller.
1402 */
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001403 if (page->mapping == NULL || page->index != iter.index) {
Nick Piggin9cbb4cb2011-01-13 15:45:51 -08001404 page_cache_release(page);
1405 break;
1406 }
1407
Nick Piggina60637c2008-07-25 19:45:31 -07001408 pages[ret] = page;
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001409 if (++ret == nr_pages)
1410 break;
Jens Axboeebf43502006-04-27 08:46:01 +02001411 }
Nick Piggina60637c2008-07-25 19:45:31 -07001412 rcu_read_unlock();
1413 return ret;
Jens Axboeebf43502006-04-27 08:46:01 +02001414}
David Howellsef71c152007-05-09 02:33:44 -07001415EXPORT_SYMBOL(find_get_pages_contig);
Jens Axboeebf43502006-04-27 08:46:01 +02001416
Randy Dunlap485bb992006-06-23 02:03:49 -07001417/**
Jan Karabf9510b2017-11-15 17:34:33 -08001418 * find_get_pages_range_tag - find and return pages in given range matching @tag
Randy Dunlap485bb992006-06-23 02:03:49 -07001419 * @mapping: the address_space to search
1420 * @index: the starting page index
Jan Karabf9510b2017-11-15 17:34:33 -08001421 * @end: The final page index (inclusive)
Randy Dunlap485bb992006-06-23 02:03:49 -07001422 * @tag: the tag index
1423 * @nr_pages: the maximum number of pages
1424 * @pages: where the resulting pages are placed
1425 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 * Like find_get_pages, except we only return pages which are tagged with
Randy Dunlap485bb992006-06-23 02:03:49 -07001427 * @tag. We update @index to index the next page for the traversal.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 */
Jan Karabf9510b2017-11-15 17:34:33 -08001429unsigned find_get_pages_range_tag(struct address_space *mapping, pgoff_t *index,
1430 pgoff_t end, int tag, unsigned int nr_pages,
1431 struct page **pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432{
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001433 struct radix_tree_iter iter;
1434 void **slot;
1435 unsigned ret = 0;
1436
1437 if (unlikely(!nr_pages))
1438 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439
Nick Piggina60637c2008-07-25 19:45:31 -07001440 rcu_read_lock();
1441restart:
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001442 radix_tree_for_each_tagged(slot, &mapping->page_tree,
1443 &iter, *index, tag) {
Nick Piggina60637c2008-07-25 19:45:31 -07001444 struct page *page;
Jan Karabf9510b2017-11-15 17:34:33 -08001445
1446 if (iter.index > end)
1447 break;
Nick Piggina60637c2008-07-25 19:45:31 -07001448repeat:
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001449 page = radix_tree_deref_slot(slot);
Nick Piggina60637c2008-07-25 19:45:31 -07001450 if (unlikely(!page))
1451 continue;
Hugh Dickins9d8aa4e2011-03-22 16:33:06 -07001452
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001453 if (radix_tree_exception(page)) {
Hugh Dickins8079b1c2011-08-03 16:21:28 -07001454 if (radix_tree_deref_retry(page)) {
1455 /*
1456 * Transient condition which can only trigger
1457 * when entry at index 0 moves out of or back
1458 * to root: none yet gotten, safe to restart.
1459 */
1460 goto restart;
1461 }
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001462 /*
Johannes Weiner139b6a62014-05-06 12:50:05 -07001463 * A shadow entry of a recently evicted page.
1464 *
1465 * Those entries should never be tagged, but
1466 * this tree walk is lockless and the tags are
1467 * looked up in bulk, one radix tree node at a
1468 * time, so there is a sizable window for page
1469 * reclaim to evict a page we saw tagged.
1470 *
1471 * Skip over it.
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001472 */
Johannes Weiner139b6a62014-05-06 12:50:05 -07001473 continue;
Hugh Dickinsa2c16d62011-08-03 16:21:19 -07001474 }
Nick Piggina60637c2008-07-25 19:45:31 -07001475
1476 if (!page_cache_get_speculative(page))
1477 goto repeat;
1478
1479 /* Has the page moved? */
Konstantin Khlebnikov0fc9d102012-03-28 14:42:54 -07001480 if (unlikely(page != *slot)) {
Nick Piggina60637c2008-07-25 19:45:31 -07001481 page_cache_release(page);
1482 goto repeat;
1483 }
1484
1485 pages[ret] = page;
Jan Karabf9510b2017-11-15 17:34:33 -08001486 if (++ret == nr_pages) {
1487 *index = pages[ret - 1]->index + 1;
1488 goto out;
1489 }
Nick Piggina60637c2008-07-25 19:45:31 -07001490 }
Hugh Dickins5b280c02011-03-22 16:33:07 -07001491
Jan Karabf9510b2017-11-15 17:34:33 -08001492 /*
1493 * We come here when we got at @end. We take care to not overflow the
1494 * index @index as it confuses some of the callers. This breaks the
1495 * iteration when there is page at index -1 but that is already broken
1496 * anyway.
1497 */
1498 if (end == (pgoff_t)-1)
1499 *index = (pgoff_t)-1;
1500 else
1501 *index = end + 1;
1502out:
Nick Piggina60637c2008-07-25 19:45:31 -07001503 rcu_read_unlock();
1504
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 return ret;
1506}
Jan Karabf9510b2017-11-15 17:34:33 -08001507EXPORT_SYMBOL(find_get_pages_range_tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508
Wu Fengguang76d42bd2006-06-25 05:48:43 -07001509/*
1510 * CD/DVDs are error prone. When a medium error occurs, the driver may fail
1511 * a _large_ part of the i/o request. Imagine the worst scenario:
1512 *
1513 * ---R__________________________________________B__________
1514 * ^ reading here ^ bad block(assume 4k)
1515 *
1516 * read(R) => miss => readahead(R...B) => media error => frustrating retries
1517 * => failing the whole request => read(R) => read(R+1) =>
1518 * readahead(R+1...B+1) => bang => read(R+2) => read(R+3) =>
1519 * readahead(R+3...B+2) => bang => read(R+3) => read(R+4) =>
1520 * readahead(R+4...B+3) => bang => read(R+4) => read(R+5) => ......
1521 *
1522 * It is going insane. Fix it by quickly scaling down the readahead size.
1523 */
1524static void shrink_readahead_size_eio(struct file *filp,
1525 struct file_ra_state *ra)
1526{
Wu Fengguang76d42bd2006-06-25 05:48:43 -07001527 ra->ra_pages /= 4;
Wu Fengguang76d42bd2006-06-25 05:48:43 -07001528}
1529
Randy Dunlap485bb992006-06-23 02:03:49 -07001530/**
Christoph Hellwig36e78912008-02-08 04:21:24 -08001531 * do_generic_file_read - generic file read routine
Randy Dunlap485bb992006-06-23 02:03:49 -07001532 * @filp: the file to read
1533 * @ppos: current file position
Al Viro6e58e792014-02-03 17:07:03 -05001534 * @iter: data destination
1535 * @written: already copied
Randy Dunlap485bb992006-06-23 02:03:49 -07001536 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 * This is a generic file read routine, and uses the
Randy Dunlap485bb992006-06-23 02:03:49 -07001538 * mapping->a_ops->readpage() function for the actual low-level stuff.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 *
1540 * This is really ugly. But the goto's actually try to clarify some
1541 * of the logic when it comes to error handling etc.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 */
Al Viro6e58e792014-02-03 17:07:03 -05001543static ssize_t do_generic_file_read(struct file *filp, loff_t *ppos,
1544 struct iov_iter *iter, ssize_t written)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545{
Christoph Hellwig36e78912008-02-08 04:21:24 -08001546 struct address_space *mapping = filp->f_mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 struct inode *inode = mapping->host;
Christoph Hellwig36e78912008-02-08 04:21:24 -08001548 struct file_ra_state *ra = &filp->f_ra;
Fengguang Wu57f6b962007-10-16 01:24:37 -07001549 pgoff_t index;
1550 pgoff_t last_index;
1551 pgoff_t prev_index;
1552 unsigned long offset; /* offset into pagecache page */
Jan Karaec0f1632007-05-06 14:49:25 -07001553 unsigned int prev_offset;
Al Viro6e58e792014-02-03 17:07:03 -05001554 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 index = *ppos >> PAGE_CACHE_SHIFT;
Fengguang Wu7ff81072007-10-16 01:24:35 -07001557 prev_index = ra->prev_pos >> PAGE_CACHE_SHIFT;
1558 prev_offset = ra->prev_pos & (PAGE_CACHE_SIZE-1);
Al Viro6e58e792014-02-03 17:07:03 -05001559 last_index = (*ppos + iter->count + PAGE_CACHE_SIZE-1) >> PAGE_CACHE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 offset = *ppos & ~PAGE_CACHE_MASK;
1561
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 for (;;) {
1563 struct page *page;
Fengguang Wu57f6b962007-10-16 01:24:37 -07001564 pgoff_t end_index;
NeilBrowna32ea1e2007-07-17 04:03:04 -07001565 loff_t isize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 unsigned long nr, ret;
1567
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569find_page:
1570 page = find_get_page(mapping, index);
Fengguang Wu3ea89ee2007-07-19 01:48:02 -07001571 if (!page) {
Rusty Russellcf914a72007-07-19 01:48:08 -07001572 page_cache_sync_readahead(mapping,
Fengguang Wu7ff81072007-10-16 01:24:35 -07001573 ra, filp,
Fengguang Wu3ea89ee2007-07-19 01:48:02 -07001574 index, last_index - index);
1575 page = find_get_page(mapping, index);
1576 if (unlikely(page == NULL))
1577 goto no_cached_page;
1578 }
1579 if (PageReadahead(page)) {
Rusty Russellcf914a72007-07-19 01:48:08 -07001580 page_cache_async_readahead(mapping,
Fengguang Wu7ff81072007-10-16 01:24:35 -07001581 ra, filp, page,
Fengguang Wu3ea89ee2007-07-19 01:48:02 -07001582 index, last_index - index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 }
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07001584 if (!PageUptodate(page)) {
1585 if (inode->i_blkbits == PAGE_CACHE_SHIFT ||
1586 !mapping->a_ops->is_partially_uptodate)
1587 goto page_not_up_to_date;
Nick Piggin529ae9a2008-08-02 12:01:03 +02001588 if (!trylock_page(page))
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07001589 goto page_not_up_to_date;
Dave Hansen8d056cb2010-11-11 14:05:15 -08001590 /* Did it get truncated before we got the lock? */
1591 if (!page->mapping)
1592 goto page_not_up_to_date_locked;
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07001593 if (!mapping->a_ops->is_partially_uptodate(page,
Al Viro6e58e792014-02-03 17:07:03 -05001594 offset, iter->count))
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07001595 goto page_not_up_to_date_locked;
1596 unlock_page(page);
1597 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598page_ok:
NeilBrowna32ea1e2007-07-17 04:03:04 -07001599 /*
1600 * i_size must be checked after we know the page is Uptodate.
1601 *
1602 * Checking i_size after the check allows us to calculate
1603 * the correct value for "nr", which means the zero-filled
1604 * part of the page is not copied back to userspace (unless
1605 * another truncate extends the file - this is desired though).
1606 */
1607
1608 isize = i_size_read(inode);
1609 end_index = (isize - 1) >> PAGE_CACHE_SHIFT;
1610 if (unlikely(!isize || index > end_index)) {
1611 page_cache_release(page);
1612 goto out;
1613 }
1614
1615 /* nr is the maximum number of bytes to copy from this page */
1616 nr = PAGE_CACHE_SIZE;
1617 if (index == end_index) {
1618 nr = ((isize - 1) & ~PAGE_CACHE_MASK) + 1;
1619 if (nr <= offset) {
1620 page_cache_release(page);
1621 goto out;
1622 }
1623 }
1624 nr = nr - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
1626 /* If users can be writing to this page using arbitrary
1627 * virtual addresses, take care about potential aliasing
1628 * before reading the page on the kernel side.
1629 */
1630 if (mapping_writably_mapped(mapping))
1631 flush_dcache_page(page);
1632
1633 /*
Jan Karaec0f1632007-05-06 14:49:25 -07001634 * When a sequential read accesses a page several times,
1635 * only mark it as accessed the first time.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 */
Jan Karaec0f1632007-05-06 14:49:25 -07001637 if (prev_index != index || offset != prev_offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 mark_page_accessed(page);
1639 prev_index = index;
1640
1641 /*
1642 * Ok, we have the page, and it's up-to-date, so
1643 * now we can copy it to user space...
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 */
Al Viro6e58e792014-02-03 17:07:03 -05001645
1646 ret = copy_page_to_iter(page, offset, nr, iter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 offset += ret;
1648 index += offset >> PAGE_CACHE_SHIFT;
1649 offset &= ~PAGE_CACHE_MASK;
Jan Kara6ce745e2007-05-06 14:49:26 -07001650 prev_offset = offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651
1652 page_cache_release(page);
Al Viro6e58e792014-02-03 17:07:03 -05001653 written += ret;
1654 if (!iov_iter_count(iter))
1655 goto out;
1656 if (ret < nr) {
1657 error = -EFAULT;
1658 goto out;
1659 }
1660 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661
1662page_not_up_to_date:
1663 /* Get exclusive access to the page ... */
Oleg Nesterov85462322008-06-08 21:20:43 +04001664 error = lock_page_killable(page);
1665 if (unlikely(error))
1666 goto readpage_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667
Hisashi Hifumi8ab22b92008-07-28 15:46:36 -07001668page_not_up_to_date_locked:
Nick Pigginda6052f2006-09-25 23:31:35 -07001669 /* Did it get truncated before we got the lock? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 if (!page->mapping) {
1671 unlock_page(page);
1672 page_cache_release(page);
1673 continue;
1674 }
1675
1676 /* Did somebody else fill it already? */
1677 if (PageUptodate(page)) {
1678 unlock_page(page);
1679 goto page_ok;
1680 }
1681
1682readpage:
Jeff Moyer91803b42010-05-26 11:49:40 -04001683 /*
1684 * A previous I/O error may have been due to temporary
1685 * failures, eg. multipath errors.
1686 * PG_error will be set again if readpage fails.
1687 */
1688 ClearPageError(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 /* Start the actual read. The read will unlock the page. */
1690 error = mapping->a_ops->readpage(filp, page);
1691
Zach Brown994fc28c2005-12-15 14:28:17 -08001692 if (unlikely(error)) {
1693 if (error == AOP_TRUNCATED_PAGE) {
1694 page_cache_release(page);
Al Viro6e58e792014-02-03 17:07:03 -05001695 error = 0;
Zach Brown994fc28c2005-12-15 14:28:17 -08001696 goto find_page;
1697 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 goto readpage_error;
Zach Brown994fc28c2005-12-15 14:28:17 -08001699 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
1701 if (!PageUptodate(page)) {
Oleg Nesterov85462322008-06-08 21:20:43 +04001702 error = lock_page_killable(page);
1703 if (unlikely(error))
1704 goto readpage_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 if (!PageUptodate(page)) {
1706 if (page->mapping == NULL) {
1707 /*
Christoph Hellwig2ecdc822010-01-26 17:27:20 +01001708 * invalidate_mapping_pages got it
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 */
1710 unlock_page(page);
1711 page_cache_release(page);
1712 goto find_page;
1713 }
1714 unlock_page(page);
Fengguang Wu7ff81072007-10-16 01:24:35 -07001715 shrink_readahead_size_eio(filp, ra);
Oleg Nesterov85462322008-06-08 21:20:43 +04001716 error = -EIO;
1717 goto readpage_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 }
1719 unlock_page(page);
1720 }
1721
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 goto page_ok;
1723
1724readpage_error:
1725 /* UHHUH! A synchronous read error occurred. Report it */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 page_cache_release(page);
1727 goto out;
1728
1729no_cached_page:
1730 /*
1731 * Ok, it wasn't cached, so we need to create a new
1732 * page..
1733 */
Nick Piggineb2be182007-10-16 01:24:57 -07001734 page = page_cache_alloc_cold(mapping);
1735 if (!page) {
Al Viro6e58e792014-02-03 17:07:03 -05001736 error = -ENOMEM;
Nick Piggineb2be182007-10-16 01:24:57 -07001737 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 }
Michal Hocko6afdb852015-06-24 16:58:06 -07001739 error = add_to_page_cache_lru(page, mapping, index,
Michal Hockoc62d2552015-11-06 16:28:49 -08001740 mapping_gfp_constraint(mapping, GFP_KERNEL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 if (error) {
Nick Piggineb2be182007-10-16 01:24:57 -07001742 page_cache_release(page);
Al Viro6e58e792014-02-03 17:07:03 -05001743 if (error == -EEXIST) {
1744 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 goto find_page;
Al Viro6e58e792014-02-03 17:07:03 -05001746 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 goto out;
1748 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 goto readpage;
1750 }
1751
1752out:
Fengguang Wu7ff81072007-10-16 01:24:35 -07001753 ra->prev_pos = prev_index;
1754 ra->prev_pos <<= PAGE_CACHE_SHIFT;
1755 ra->prev_pos |= prev_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756
Fengguang Wuf4e6b492007-10-16 01:24:33 -07001757 *ppos = ((loff_t)index << PAGE_CACHE_SHIFT) + offset;
Krishna Kumar0c6aa262008-10-15 22:01:13 -07001758 file_accessed(filp);
Al Viro6e58e792014-02-03 17:07:03 -05001759 return written ? written : error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760}
1761
Randy Dunlap485bb992006-06-23 02:03:49 -07001762/**
Al Viro6abd2322014-04-04 14:20:57 -04001763 * generic_file_read_iter - generic filesystem read routine
Randy Dunlap485bb992006-06-23 02:03:49 -07001764 * @iocb: kernel I/O control block
Al Viro6abd2322014-04-04 14:20:57 -04001765 * @iter: destination for the data read
Randy Dunlap485bb992006-06-23 02:03:49 -07001766 *
Al Viro6abd2322014-04-04 14:20:57 -04001767 * This is the "read_iter()" routine for all filesystems
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 * that can use the page cache directly.
1769 */
1770ssize_t
Al Viroed978a82014-03-05 22:53:04 -05001771generic_file_read_iter(struct kiocb *iocb, struct iov_iter *iter)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772{
Al Viroed978a82014-03-05 22:53:04 -05001773 struct file *file = iocb->ki_filp;
1774 ssize_t retval = 0;
Badari Pulavarty543ade12006-09-30 23:28:48 -07001775 loff_t *ppos = &iocb->ki_pos;
Al Viroed978a82014-03-05 22:53:04 -05001776 loff_t pos = *ppos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777
Al Viro2ba48ce2015-04-09 13:52:01 -04001778 if (iocb->ki_flags & IOCB_DIRECT) {
Al Viroed978a82014-03-05 22:53:04 -05001779 struct address_space *mapping = file->f_mapping;
1780 struct inode *inode = mapping->host;
1781 size_t count = iov_iter_count(iter);
Badari Pulavarty543ade12006-09-30 23:28:48 -07001782 loff_t size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 if (!count)
1785 goto out; /* skip atime */
1786 size = i_size_read(inode);
Steven Whitehouse9fe55ee2014-01-24 14:42:22 +00001787 retval = filemap_write_and_wait_range(mapping, pos,
Al Viroed978a82014-03-05 22:53:04 -05001788 pos + count - 1);
Steven Whitehouse9fe55ee2014-01-24 14:42:22 +00001789 if (!retval) {
Al Viroed978a82014-03-05 22:53:04 -05001790 struct iov_iter data = *iter;
Omar Sandoval22c61862015-03-16 04:33:53 -07001791 retval = mapping->a_ops->direct_IO(iocb, &data, pos);
Steven Whitehouse9fe55ee2014-01-24 14:42:22 +00001792 }
Al Viroed978a82014-03-05 22:53:04 -05001793
Steven Whitehouse9fe55ee2014-01-24 14:42:22 +00001794 if (retval > 0) {
1795 *ppos = pos + retval;
Al Viroed978a82014-03-05 22:53:04 -05001796 iov_iter_advance(iter, retval);
Steven Whitehouse9fe55ee2014-01-24 14:42:22 +00001797 }
Josef Bacik66f998f2010-05-23 11:00:54 -04001798
Steven Whitehouse9fe55ee2014-01-24 14:42:22 +00001799 /*
1800 * Btrfs can have a short DIO read if we encounter
1801 * compressed extents, so if there was an error, or if
1802 * we've already read everything we wanted to, or if
1803 * there was a short read because we hit EOF, go ahead
1804 * and return. Otherwise fallthrough to buffered io for
Matthew Wilcoxfbbbad42015-02-16 15:58:53 -08001805 * the rest of the read. Buffered reads will not work for
1806 * DAX files, so don't bother trying.
Steven Whitehouse9fe55ee2014-01-24 14:42:22 +00001807 */
Matthew Wilcoxfbbbad42015-02-16 15:58:53 -08001808 if (retval < 0 || !iov_iter_count(iter) || *ppos >= size ||
1809 IS_DAX(inode)) {
Al Viroed978a82014-03-05 22:53:04 -05001810 file_accessed(file);
Steven Whitehouse9fe55ee2014-01-24 14:42:22 +00001811 goto out;
Steven Whitehouse0e0bcae2006-09-27 14:45:07 -04001812 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 }
1814
Al Viroed978a82014-03-05 22:53:04 -05001815 retval = do_generic_file_read(file, ppos, iter, retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816out:
1817 return retval;
1818}
Al Viroed978a82014-03-05 22:53:04 -05001819EXPORT_SYMBOL(generic_file_read_iter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821#ifdef CONFIG_MMU
Randy Dunlap485bb992006-06-23 02:03:49 -07001822/**
1823 * page_cache_read - adds requested page to the page cache if not already there
1824 * @file: file to read
1825 * @offset: page index
1826 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 * This adds the requested page to the page cache if it isn't already there,
1828 * and schedules an I/O to read in its contents from disk.
1829 */
Harvey Harrison920c7a52008-02-04 22:29:26 -08001830static int page_cache_read(struct file *file, pgoff_t offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831{
1832 struct address_space *mapping = file->f_mapping;
Paul McQuade99dadfd2014-10-09 15:29:03 -07001833 struct page *page;
Zach Brown994fc28c2005-12-15 14:28:17 -08001834 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835
Zach Brown994fc28c2005-12-15 14:28:17 -08001836 do {
1837 page = page_cache_alloc_cold(mapping);
1838 if (!page)
1839 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840
Michal Hocko6afdb852015-06-24 16:58:06 -07001841 ret = add_to_page_cache_lru(page, mapping, offset,
Michal Hockoc62d2552015-11-06 16:28:49 -08001842 mapping_gfp_constraint(mapping, GFP_KERNEL));
Zach Brown994fc28c2005-12-15 14:28:17 -08001843 if (ret == 0)
1844 ret = mapping->a_ops->readpage(file, page);
1845 else if (ret == -EEXIST)
1846 ret = 0; /* losing race to add is OK */
1847
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849
Zach Brown994fc28c2005-12-15 14:28:17 -08001850 } while (ret == AOP_TRUNCATED_PAGE);
Paul McQuade99dadfd2014-10-09 15:29:03 -07001851
Zach Brown994fc28c2005-12-15 14:28:17 -08001852 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853}
1854
1855#define MMAP_LOTSAMISS (100)
1856
Linus Torvaldsef00e082009-06-16 15:31:25 -07001857/*
1858 * Synchronous readahead happens when we don't even find
1859 * a page in the page cache at all.
1860 */
1861static void do_sync_mmap_readahead(struct vm_area_struct *vma,
1862 struct file_ra_state *ra,
1863 struct file *file,
1864 pgoff_t offset)
1865{
Linus Torvaldsef00e082009-06-16 15:31:25 -07001866 struct address_space *mapping = file->f_mapping;
1867
1868 /* If we don't want any read-ahead, don't bother */
Joe Perches64363aa2013-07-08 16:00:18 -07001869 if (vma->vm_flags & VM_RAND_READ)
Linus Torvaldsef00e082009-06-16 15:31:25 -07001870 return;
Wu Fengguang275b12b2011-05-24 17:12:28 -07001871 if (!ra->ra_pages)
1872 return;
Linus Torvaldsef00e082009-06-16 15:31:25 -07001873
Joe Perches64363aa2013-07-08 16:00:18 -07001874 if (vma->vm_flags & VM_SEQ_READ) {
Wu Fengguang7ffc59b2009-06-16 15:31:38 -07001875 page_cache_sync_readahead(mapping, ra, file, offset,
1876 ra->ra_pages);
Linus Torvaldsef00e082009-06-16 15:31:25 -07001877 return;
1878 }
1879
Andi Kleen207d04b2011-05-24 17:12:29 -07001880 /* Avoid banging the cache line if not needed */
1881 if (ra->mmap_miss < MMAP_LOTSAMISS * 10)
Linus Torvaldsef00e082009-06-16 15:31:25 -07001882 ra->mmap_miss++;
1883
1884 /*
1885 * Do we miss much more than hit in this file? If so,
1886 * stop bothering with read-ahead. It will only hurt.
1887 */
1888 if (ra->mmap_miss > MMAP_LOTSAMISS)
1889 return;
1890
Wu Fengguangd30a1102009-06-16 15:31:30 -07001891 /*
1892 * mmap read-around
1893 */
Roman Gushchin600e19a2015-11-05 18:47:08 -08001894 ra->start = max_t(long, 0, offset - ra->ra_pages / 2);
1895 ra->size = ra->ra_pages;
1896 ra->async_size = ra->ra_pages / 4;
Wu Fengguang275b12b2011-05-24 17:12:28 -07001897 ra_submit(ra, mapping, file);
Linus Torvaldsef00e082009-06-16 15:31:25 -07001898}
1899
1900/*
1901 * Asynchronous readahead happens when we find the page and PG_readahead,
1902 * so we want to possibly extend the readahead further..
1903 */
1904static void do_async_mmap_readahead(struct vm_area_struct *vma,
1905 struct file_ra_state *ra,
1906 struct file *file,
1907 struct page *page,
1908 pgoff_t offset)
1909{
1910 struct address_space *mapping = file->f_mapping;
1911
1912 /* If we don't want any read-ahead, don't bother */
Joe Perches64363aa2013-07-08 16:00:18 -07001913 if (vma->vm_flags & VM_RAND_READ)
Linus Torvaldsef00e082009-06-16 15:31:25 -07001914 return;
1915 if (ra->mmap_miss > 0)
1916 ra->mmap_miss--;
1917 if (PageReadahead(page))
Wu Fengguang2fad6f52009-06-16 15:31:29 -07001918 page_cache_async_readahead(mapping, ra, file,
1919 page, offset, ra->ra_pages);
Linus Torvaldsef00e082009-06-16 15:31:25 -07001920}
1921
Randy Dunlap485bb992006-06-23 02:03:49 -07001922/**
Nick Piggin54cb8822007-07-19 01:46:59 -07001923 * filemap_fault - read in file data for page fault handling
Nick Piggind0217ac2007-07-19 01:47:03 -07001924 * @vma: vma in which the fault was taken
1925 * @vmf: struct vm_fault containing details of the fault
Randy Dunlap485bb992006-06-23 02:03:49 -07001926 *
Nick Piggin54cb8822007-07-19 01:46:59 -07001927 * filemap_fault() is invoked via the vma operations vector for a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 * mapped memory region to read in file data during a page fault.
1929 *
1930 * The goto's are kind of ugly, but this streamlines the normal case of having
1931 * it in the page cache, and handles the special cases reasonably without
1932 * having a lot of duplicated code.
Paul Cassella9a95f3c2014-08-06 16:07:24 -07001933 *
1934 * vma->vm_mm->mmap_sem must be held on entry.
1935 *
1936 * If our return value has VM_FAULT_RETRY set, it's because
1937 * lock_page_or_retry() returned 0.
1938 * The mmap_sem has usually been released in this case.
1939 * See __lock_page_or_retry() for the exception.
1940 *
1941 * If our return value does not have VM_FAULT_RETRY set, the mmap_sem
1942 * has not been released.
1943 *
1944 * We never return with VM_FAULT_RETRY and a bit from VM_FAULT_ERROR set.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 */
Nick Piggind0217ac2007-07-19 01:47:03 -07001946int filemap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947{
1948 int error;
Nick Piggin54cb8822007-07-19 01:46:59 -07001949 struct file *file = vma->vm_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 struct address_space *mapping = file->f_mapping;
1951 struct file_ra_state *ra = &file->f_ra;
1952 struct inode *inode = mapping->host;
Linus Torvaldsef00e082009-06-16 15:31:25 -07001953 pgoff_t offset = vmf->pgoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 struct page *page;
Kirill A. Shutemov99e3e532014-04-07 15:37:21 -07001955 loff_t size;
Nick Piggin83c54072007-07-19 01:47:05 -07001956 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957
Kirill A. Shutemov99e3e532014-04-07 15:37:21 -07001958 size = round_up(i_size_read(inode), PAGE_CACHE_SIZE);
1959 if (offset >= size >> PAGE_CACHE_SHIFT)
Linus Torvalds5307cc12007-10-31 09:19:46 -07001960 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 /*
Johannes Weiner49426422013-10-16 13:46:59 -07001963 * Do we have something in the page cache already?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 */
Linus Torvaldsef00e082009-06-16 15:31:25 -07001965 page = find_get_page(mapping, offset);
Shaohua Li45cac652012-10-08 16:32:19 -07001966 if (likely(page) && !(vmf->flags & FAULT_FLAG_TRIED)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 /*
Linus Torvaldsef00e082009-06-16 15:31:25 -07001968 * We found the page, so try async readahead before
1969 * waiting for the lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 */
Linus Torvaldsef00e082009-06-16 15:31:25 -07001971 do_async_mmap_readahead(vma, ra, file, page, offset);
Shaohua Li45cac652012-10-08 16:32:19 -07001972 } else if (!page) {
Linus Torvaldsef00e082009-06-16 15:31:25 -07001973 /* No page in the page cache at all */
1974 do_sync_mmap_readahead(vma, ra, file, offset);
1975 count_vm_event(PGMAJFAULT);
Ying Han456f9982011-05-26 16:25:38 -07001976 mem_cgroup_count_vm_event(vma->vm_mm, PGMAJFAULT);
Linus Torvaldsef00e082009-06-16 15:31:25 -07001977 ret = VM_FAULT_MAJOR;
1978retry_find:
Michel Lespinasseb522c942010-10-26 14:21:56 -07001979 page = find_get_page(mapping, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 if (!page)
1981 goto no_cached_page;
1982 }
1983
Michel Lespinassed88c0922010-11-02 13:05:18 -07001984 if (!lock_page_or_retry(page, vma->vm_mm, vmf->flags)) {
1985 page_cache_release(page);
Michel Lespinassed065bd82010-10-26 14:21:57 -07001986 return ret | VM_FAULT_RETRY;
Michel Lespinassed88c0922010-11-02 13:05:18 -07001987 }
Michel Lespinasseb522c942010-10-26 14:21:56 -07001988
1989 /* Did it get truncated? */
1990 if (unlikely(page->mapping != mapping)) {
1991 unlock_page(page);
1992 put_page(page);
1993 goto retry_find;
1994 }
Sasha Levin309381fea2014-01-23 15:52:54 -08001995 VM_BUG_ON_PAGE(page->index != offset, page);
Michel Lespinasseb522c942010-10-26 14:21:56 -07001996
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 /*
Nick Piggind00806b2007-07-19 01:46:57 -07001998 * We have a locked page in the page cache, now we need to check
1999 * that it's up-to-date. If not, it is going to be due to an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 */
Nick Piggind00806b2007-07-19 01:46:57 -07002001 if (unlikely(!PageUptodate(page)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 goto page_not_uptodate;
2003
Linus Torvaldsef00e082009-06-16 15:31:25 -07002004 /*
2005 * Found the page and have a reference on it.
2006 * We must recheck i_size under page lock.
2007 */
Kirill A. Shutemov99e3e532014-04-07 15:37:21 -07002008 size = round_up(i_size_read(inode), PAGE_CACHE_SIZE);
2009 if (unlikely(offset >= size >> PAGE_CACHE_SHIFT)) {
Nick Piggind00806b2007-07-19 01:46:57 -07002010 unlock_page(page);
Yan Zheng745ad482007-10-08 10:08:37 -07002011 page_cache_release(page);
Linus Torvalds5307cc12007-10-31 09:19:46 -07002012 return VM_FAULT_SIGBUS;
Nick Piggind00806b2007-07-19 01:46:57 -07002013 }
2014
Nick Piggind0217ac2007-07-19 01:47:03 -07002015 vmf->page = page;
Nick Piggin83c54072007-07-19 01:47:05 -07002016 return ret | VM_FAULT_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018no_cached_page:
2019 /*
2020 * We're only likely to ever get here if MADV_RANDOM is in
2021 * effect.
2022 */
Linus Torvaldsef00e082009-06-16 15:31:25 -07002023 error = page_cache_read(file, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024
2025 /*
2026 * The page we want has now been added to the page cache.
2027 * In the unlikely event that someone removed it in the
2028 * meantime, we'll just come back here and read it again.
2029 */
2030 if (error >= 0)
2031 goto retry_find;
2032
2033 /*
2034 * An error return from page_cache_read can result if the
2035 * system is low on memory, or a problem occurs while trying
2036 * to schedule I/O.
2037 */
2038 if (error == -ENOMEM)
Nick Piggind0217ac2007-07-19 01:47:03 -07002039 return VM_FAULT_OOM;
2040 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041
2042page_not_uptodate:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 /*
2044 * Umm, take care of errors if the page isn't up-to-date.
2045 * Try to re-read it _once_. We do this synchronously,
2046 * because there really aren't any performance issues here
2047 * and we need to check for errors.
2048 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 ClearPageError(page);
Zach Brown994fc28c2005-12-15 14:28:17 -08002050 error = mapping->a_ops->readpage(file, page);
Miklos Szeredi3ef0f722008-05-14 16:05:37 -07002051 if (!error) {
2052 wait_on_page_locked(page);
2053 if (!PageUptodate(page))
2054 error = -EIO;
2055 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 page_cache_release(page);
Nick Piggind00806b2007-07-19 01:46:57 -07002057
2058 if (!error || error == AOP_TRUNCATED_PAGE)
2059 goto retry_find;
2060
2061 /* Things didn't work out. Return zero to tell the mm layer so. */
2062 shrink_readahead_size_eio(file, ra);
Nick Piggind0217ac2007-07-19 01:47:03 -07002063 return VM_FAULT_SIGBUS;
Nick Piggin54cb8822007-07-19 01:46:59 -07002064}
2065EXPORT_SYMBOL(filemap_fault);
2066
Kirill A. Shutemovf1820362014-04-07 15:37:19 -07002067void filemap_map_pages(struct vm_area_struct *vma, struct vm_fault *vmf)
2068{
2069 struct radix_tree_iter iter;
2070 void **slot;
2071 struct file *file = vma->vm_file;
2072 struct address_space *mapping = file->f_mapping;
2073 loff_t size;
2074 struct page *page;
2075 unsigned long address = (unsigned long) vmf->virtual_address;
2076 unsigned long addr;
2077 pte_t *pte;
2078
2079 rcu_read_lock();
2080 radix_tree_for_each_slot(slot, &mapping->page_tree, &iter, vmf->pgoff) {
2081 if (iter.index > vmf->max_pgoff)
2082 break;
2083repeat:
2084 page = radix_tree_deref_slot(slot);
2085 if (unlikely(!page))
2086 goto next;
2087 if (radix_tree_exception(page)) {
2088 if (radix_tree_deref_retry(page))
2089 break;
2090 else
2091 goto next;
2092 }
2093
2094 if (!page_cache_get_speculative(page))
2095 goto repeat;
2096
2097 /* Has the page moved? */
2098 if (unlikely(page != *slot)) {
2099 page_cache_release(page);
2100 goto repeat;
2101 }
2102
2103 if (!PageUptodate(page) ||
2104 PageReadahead(page) ||
2105 PageHWPoison(page))
2106 goto skip;
2107 if (!trylock_page(page))
2108 goto skip;
2109
2110 if (page->mapping != mapping || !PageUptodate(page))
2111 goto unlock;
2112
Kirill A. Shutemov99e3e532014-04-07 15:37:21 -07002113 size = round_up(i_size_read(mapping->host), PAGE_CACHE_SIZE);
2114 if (page->index >= size >> PAGE_CACHE_SHIFT)
Kirill A. Shutemovf1820362014-04-07 15:37:19 -07002115 goto unlock;
2116
2117 pte = vmf->pte + page->index - vmf->pgoff;
2118 if (!pte_none(*pte))
2119 goto unlock;
2120
2121 if (file->f_ra.mmap_miss > 0)
2122 file->f_ra.mmap_miss--;
2123 addr = address + (page->index - vmf->pgoff) * PAGE_SIZE;
2124 do_set_pte(vma, addr, page, pte, false, false);
2125 unlock_page(page);
2126 goto next;
2127unlock:
2128 unlock_page(page);
2129skip:
2130 page_cache_release(page);
2131next:
2132 if (iter.index == vmf->max_pgoff)
2133 break;
2134 }
2135 rcu_read_unlock();
2136}
2137EXPORT_SYMBOL(filemap_map_pages);
2138
Jan Kara4fcf1c62012-06-12 16:20:29 +02002139int filemap_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
2140{
2141 struct page *page = vmf->page;
Al Viro496ad9a2013-01-23 17:07:38 -05002142 struct inode *inode = file_inode(vma->vm_file);
Jan Kara4fcf1c62012-06-12 16:20:29 +02002143 int ret = VM_FAULT_LOCKED;
2144
Jan Kara14da9202012-06-12 16:20:37 +02002145 sb_start_pagefault(inode->i_sb);
Jan Kara4fcf1c62012-06-12 16:20:29 +02002146 file_update_time(vma->vm_file);
2147 lock_page(page);
2148 if (page->mapping != inode->i_mapping) {
2149 unlock_page(page);
2150 ret = VM_FAULT_NOPAGE;
2151 goto out;
2152 }
Jan Kara14da9202012-06-12 16:20:37 +02002153 /*
2154 * We mark the page dirty already here so that when freeze is in
2155 * progress, we are guaranteed that writeback during freezing will
2156 * see the dirty page and writeprotect it again.
2157 */
2158 set_page_dirty(page);
Darrick J. Wong1d1d1a72013-02-21 16:42:51 -08002159 wait_for_stable_page(page);
Jan Kara4fcf1c62012-06-12 16:20:29 +02002160out:
Jan Kara14da9202012-06-12 16:20:37 +02002161 sb_end_pagefault(inode->i_sb);
Jan Kara4fcf1c62012-06-12 16:20:29 +02002162 return ret;
2163}
2164EXPORT_SYMBOL(filemap_page_mkwrite);
2165
Alexey Dobriyanf0f37e22009-09-27 22:29:37 +04002166const struct vm_operations_struct generic_file_vm_ops = {
Nick Piggin54cb8822007-07-19 01:46:59 -07002167 .fault = filemap_fault,
Kirill A. Shutemovf1820362014-04-07 15:37:19 -07002168 .map_pages = filemap_map_pages,
Jan Kara4fcf1c62012-06-12 16:20:29 +02002169 .page_mkwrite = filemap_page_mkwrite,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170};
2171
2172/* This is used for a general mmap of a disk file */
2173
2174int generic_file_mmap(struct file * file, struct vm_area_struct * vma)
2175{
2176 struct address_space *mapping = file->f_mapping;
2177
2178 if (!mapping->a_ops->readpage)
2179 return -ENOEXEC;
2180 file_accessed(file);
2181 vma->vm_ops = &generic_file_vm_ops;
2182 return 0;
2183}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184
2185/*
2186 * This is for filesystems which do not implement ->writepage.
2187 */
2188int generic_file_readonly_mmap(struct file *file, struct vm_area_struct *vma)
2189{
2190 if ((vma->vm_flags & VM_SHARED) && (vma->vm_flags & VM_MAYWRITE))
2191 return -EINVAL;
2192 return generic_file_mmap(file, vma);
2193}
2194#else
2195int generic_file_mmap(struct file * file, struct vm_area_struct * vma)
2196{
2197 return -ENOSYS;
2198}
2199int generic_file_readonly_mmap(struct file * file, struct vm_area_struct * vma)
2200{
2201 return -ENOSYS;
2202}
2203#endif /* CONFIG_MMU */
2204
2205EXPORT_SYMBOL(generic_file_mmap);
2206EXPORT_SYMBOL(generic_file_readonly_mmap);
2207
Sasha Levin67f9fd92014-04-03 14:48:18 -07002208static struct page *wait_on_page_read(struct page *page)
2209{
2210 if (!IS_ERR(page)) {
2211 wait_on_page_locked(page);
2212 if (!PageUptodate(page)) {
2213 page_cache_release(page);
2214 page = ERR_PTR(-EIO);
2215 }
2216 }
2217 return page;
2218}
2219
Nick Piggin6fe69002007-05-06 14:49:04 -07002220static struct page *__read_cache_page(struct address_space *mapping,
Fengguang Wu57f6b962007-10-16 01:24:37 -07002221 pgoff_t index,
Hugh Dickins5e5358e2011-07-25 17:12:23 -07002222 int (*filler)(void *, struct page *),
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002223 void *data,
2224 gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225{
Nick Piggineb2be182007-10-16 01:24:57 -07002226 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 int err;
2228repeat:
2229 page = find_get_page(mapping, index);
2230 if (!page) {
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002231 page = __page_cache_alloc(gfp | __GFP_COLD);
Nick Piggineb2be182007-10-16 01:24:57 -07002232 if (!page)
2233 return ERR_PTR(-ENOMEM);
Dave Kleikampe6f67b82011-12-21 11:05:48 -06002234 err = add_to_page_cache_lru(page, mapping, index, gfp);
Nick Piggineb2be182007-10-16 01:24:57 -07002235 if (unlikely(err)) {
2236 page_cache_release(page);
2237 if (err == -EEXIST)
2238 goto repeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 /* Presumably ENOMEM for radix tree node */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 return ERR_PTR(err);
2241 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 err = filler(data, page);
2243 if (err < 0) {
2244 page_cache_release(page);
2245 page = ERR_PTR(err);
Sasha Levin67f9fd92014-04-03 14:48:18 -07002246 } else {
2247 page = wait_on_page_read(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 }
2249 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 return page;
2251}
2252
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002253static struct page *do_read_cache_page(struct address_space *mapping,
Fengguang Wu57f6b962007-10-16 01:24:37 -07002254 pgoff_t index,
Hugh Dickins5e5358e2011-07-25 17:12:23 -07002255 int (*filler)(void *, struct page *),
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002256 void *data,
2257 gfp_t gfp)
2258
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259{
2260 struct page *page;
2261 int err;
2262
2263retry:
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002264 page = __read_cache_page(mapping, index, filler, data, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 if (IS_ERR(page))
David Howellsc855ff32007-05-09 13:42:20 +01002266 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 if (PageUptodate(page))
2268 goto out;
2269
2270 lock_page(page);
2271 if (!page->mapping) {
2272 unlock_page(page);
2273 page_cache_release(page);
2274 goto retry;
2275 }
2276 if (PageUptodate(page)) {
2277 unlock_page(page);
2278 goto out;
2279 }
2280 err = filler(data, page);
2281 if (err < 0) {
2282 page_cache_release(page);
David Howellsc855ff32007-05-09 13:42:20 +01002283 return ERR_PTR(err);
Sasha Levin67f9fd92014-04-03 14:48:18 -07002284 } else {
2285 page = wait_on_page_read(page);
2286 if (IS_ERR(page))
2287 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 }
David Howellsc855ff32007-05-09 13:42:20 +01002289out:
Nick Piggin6fe69002007-05-06 14:49:04 -07002290 mark_page_accessed(page);
2291 return page;
2292}
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002293
2294/**
Sasha Levin67f9fd92014-04-03 14:48:18 -07002295 * read_cache_page - read into page cache, fill it if needed
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002296 * @mapping: the page's address_space
2297 * @index: the page index
2298 * @filler: function to perform the read
Hugh Dickins5e5358e2011-07-25 17:12:23 -07002299 * @data: first arg to filler(data, page) function, often left as NULL
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002300 *
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002301 * Read into the page cache. If a page already exists, and PageUptodate() is
Sasha Levin67f9fd92014-04-03 14:48:18 -07002302 * not set, try to fill the page and wait for it to become unlocked.
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002303 *
2304 * If the page does not get brought uptodate, return -EIO.
2305 */
Sasha Levin67f9fd92014-04-03 14:48:18 -07002306struct page *read_cache_page(struct address_space *mapping,
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002307 pgoff_t index,
Hugh Dickins5e5358e2011-07-25 17:12:23 -07002308 int (*filler)(void *, struct page *),
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002309 void *data)
2310{
2311 return do_read_cache_page(mapping, index, filler, data, mapping_gfp_mask(mapping));
2312}
Sasha Levin67f9fd92014-04-03 14:48:18 -07002313EXPORT_SYMBOL(read_cache_page);
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002314
2315/**
2316 * read_cache_page_gfp - read into page cache, using specified page allocation flags.
2317 * @mapping: the page's address_space
2318 * @index: the page index
2319 * @gfp: the page allocator flags to use if allocating
2320 *
2321 * This is the same as "read_mapping_page(mapping, index, NULL)", but with
Dave Kleikampe6f67b82011-12-21 11:05:48 -06002322 * any new page allocations done using the specified allocation flags.
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002323 *
2324 * If the page does not get brought uptodate, return -EIO.
2325 */
2326struct page *read_cache_page_gfp(struct address_space *mapping,
2327 pgoff_t index,
2328 gfp_t gfp)
2329{
2330 filler_t *filler = (filler_t *)mapping->a_ops->readpage;
2331
Sasha Levin67f9fd92014-04-03 14:48:18 -07002332 return do_read_cache_page(mapping, index, filler, NULL, gfp);
Linus Torvalds0531b2a2010-01-27 09:20:03 -08002333}
2334EXPORT_SYMBOL(read_cache_page_gfp);
2335
Nick Piggin2f718ff2007-10-16 01:24:59 -07002336/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 * Performs necessary checks before doing a write
2338 *
Randy Dunlap485bb992006-06-23 02:03:49 -07002339 * Can adjust writing position or amount of bytes to write.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 * Returns appropriate error code that caller should return or
2341 * zero in case that write should be allowed.
2342 */
Al Viro3309dd02015-04-09 12:55:47 -04002343inline ssize_t generic_write_checks(struct kiocb *iocb, struct iov_iter *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344{
Al Viro3309dd02015-04-09 12:55:47 -04002345 struct file *file = iocb->ki_filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 struct inode *inode = file->f_mapping->host;
Jiri Slaby59e99e52010-03-05 13:41:44 -08002347 unsigned long limit = rlimit(RLIMIT_FSIZE);
Al Viro3309dd02015-04-09 12:55:47 -04002348 loff_t pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349
Al Viro3309dd02015-04-09 12:55:47 -04002350 if (!iov_iter_count(from))
2351 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352
Al Viro0fa6b002015-04-04 04:05:48 -04002353 /* FIXME: this is for backwards compatibility with 2.4 */
Al Viro2ba48ce2015-04-09 13:52:01 -04002354 if (iocb->ki_flags & IOCB_APPEND)
Al Viro3309dd02015-04-09 12:55:47 -04002355 iocb->ki_pos = i_size_read(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356
Al Viro3309dd02015-04-09 12:55:47 -04002357 pos = iocb->ki_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358
Al Viro0fa6b002015-04-04 04:05:48 -04002359 if (limit != RLIM_INFINITY) {
Al Viro3309dd02015-04-09 12:55:47 -04002360 if (iocb->ki_pos >= limit) {
Al Viro0fa6b002015-04-04 04:05:48 -04002361 send_sig(SIGXFSZ, current, 0);
2362 return -EFBIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 }
Al Viro3309dd02015-04-09 12:55:47 -04002364 iov_iter_truncate(from, limit - (unsigned long)pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 }
2366
2367 /*
2368 * LFS rule
2369 */
Al Viro3309dd02015-04-09 12:55:47 -04002370 if (unlikely(pos + iov_iter_count(from) > MAX_NON_LFS &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 !(file->f_flags & O_LARGEFILE))) {
Al Viro3309dd02015-04-09 12:55:47 -04002372 if (pos >= MAX_NON_LFS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 return -EFBIG;
Al Viro3309dd02015-04-09 12:55:47 -04002374 iov_iter_truncate(from, MAX_NON_LFS - (unsigned long)pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 }
2376
2377 /*
2378 * Are we about to exceed the fs block limit ?
2379 *
2380 * If we have written data it becomes a short write. If we have
2381 * exceeded without writing data we send a signal and return EFBIG.
2382 * Linus frestrict idea will clean these up nicely..
2383 */
Al Viro3309dd02015-04-09 12:55:47 -04002384 if (unlikely(pos >= inode->i_sb->s_maxbytes))
2385 return -EFBIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386
Al Viro3309dd02015-04-09 12:55:47 -04002387 iov_iter_truncate(from, inode->i_sb->s_maxbytes - pos);
2388 return iov_iter_count(from);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389}
2390EXPORT_SYMBOL(generic_write_checks);
2391
Nick Pigginafddba42007-10-16 01:25:01 -07002392int pagecache_write_begin(struct file *file, struct address_space *mapping,
2393 loff_t pos, unsigned len, unsigned flags,
2394 struct page **pagep, void **fsdata)
2395{
2396 const struct address_space_operations *aops = mapping->a_ops;
2397
Nick Piggin4e02ed42008-10-29 14:00:55 -07002398 return aops->write_begin(file, mapping, pos, len, flags,
Nick Pigginafddba42007-10-16 01:25:01 -07002399 pagep, fsdata);
Nick Pigginafddba42007-10-16 01:25:01 -07002400}
2401EXPORT_SYMBOL(pagecache_write_begin);
2402
2403int pagecache_write_end(struct file *file, struct address_space *mapping,
2404 loff_t pos, unsigned len, unsigned copied,
2405 struct page *page, void *fsdata)
2406{
2407 const struct address_space_operations *aops = mapping->a_ops;
Nick Pigginafddba42007-10-16 01:25:01 -07002408
Nick Piggin4e02ed42008-10-29 14:00:55 -07002409 return aops->write_end(file, mapping, pos, len, copied, page, fsdata);
Nick Pigginafddba42007-10-16 01:25:01 -07002410}
2411EXPORT_SYMBOL(pagecache_write_end);
2412
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413ssize_t
Al Viro0c949332014-03-22 06:51:37 -04002414generic_file_direct_write(struct kiocb *iocb, struct iov_iter *from, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415{
2416 struct file *file = iocb->ki_filp;
2417 struct address_space *mapping = file->f_mapping;
2418 struct inode *inode = mapping->host;
2419 ssize_t written;
Christoph Hellwiga969e902008-07-23 21:27:04 -07002420 size_t write_len;
2421 pgoff_t end;
Al Viro26978b82014-03-10 14:08:45 -04002422 struct iov_iter data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423
Al Viro0c949332014-03-22 06:51:37 -04002424 write_len = iov_iter_count(from);
Christoph Hellwiga969e902008-07-23 21:27:04 -07002425 end = (pos + write_len - 1) >> PAGE_CACHE_SHIFT;
Christoph Hellwiga969e902008-07-23 21:27:04 -07002426
Nick Piggin48b47c52009-01-06 14:40:22 -08002427 written = filemap_write_and_wait_range(mapping, pos, pos + write_len - 1);
Christoph Hellwiga969e902008-07-23 21:27:04 -07002428 if (written)
2429 goto out;
2430
2431 /*
2432 * After a write we want buffered reads to be sure to go to disk to get
2433 * the new data. We invalidate clean cached page from the region we're
2434 * about to write. We do this *before* the write so that we can return
Hisashi Hifumi6ccfa802008-09-02 14:35:40 -07002435 * without clobbering -EIOCBQUEUED from ->direct_IO().
Christoph Hellwiga969e902008-07-23 21:27:04 -07002436 */
2437 if (mapping->nrpages) {
2438 written = invalidate_inode_pages2_range(mapping,
2439 pos >> PAGE_CACHE_SHIFT, end);
Hisashi Hifumi6ccfa802008-09-02 14:35:40 -07002440 /*
2441 * If a page can not be invalidated, return 0 to fall back
2442 * to buffered write.
2443 */
2444 if (written) {
2445 if (written == -EBUSY)
2446 return 0;
Christoph Hellwiga969e902008-07-23 21:27:04 -07002447 goto out;
Hisashi Hifumi6ccfa802008-09-02 14:35:40 -07002448 }
Christoph Hellwiga969e902008-07-23 21:27:04 -07002449 }
2450
Al Viro26978b82014-03-10 14:08:45 -04002451 data = *from;
Omar Sandoval22c61862015-03-16 04:33:53 -07002452 written = mapping->a_ops->direct_IO(iocb, &data, pos);
Christoph Hellwiga969e902008-07-23 21:27:04 -07002453
2454 /*
2455 * Finally, try again to invalidate clean pages which might have been
2456 * cached by non-direct readahead, or faulted in by get_user_pages()
2457 * if the source of the write was an mmap'ed region of the file
2458 * we're writing. Either one is a pretty crazy thing to do,
2459 * so we don't support it 100%. If this invalidation
2460 * fails, tough, the write still worked...
2461 */
2462 if (mapping->nrpages) {
2463 invalidate_inode_pages2_range(mapping,
2464 pos >> PAGE_CACHE_SHIFT, end);
2465 }
2466
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 if (written > 0) {
Namhyung Kim01166512010-10-26 14:21:58 -07002468 pos += written;
Al Virof8579f82014-03-03 22:03:20 -05002469 iov_iter_advance(from, written);
Namhyung Kim01166512010-10-26 14:21:58 -07002470 if (pos > i_size_read(inode) && !S_ISBLK(inode->i_mode)) {
2471 i_size_write(inode, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 mark_inode_dirty(inode);
2473 }
Al Viro5cb6c6c2014-02-11 20:58:20 -05002474 iocb->ki_pos = pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 }
Christoph Hellwiga969e902008-07-23 21:27:04 -07002476out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 return written;
2478}
2479EXPORT_SYMBOL(generic_file_direct_write);
2480
Nick Piggineb2be182007-10-16 01:24:57 -07002481/*
2482 * Find or create a page at the given pagecache position. Return the locked
2483 * page. This function is specifically for buffered writes.
2484 */
Nick Piggin54566b22009-01-04 12:00:53 -08002485struct page *grab_cache_page_write_begin(struct address_space *mapping,
2486 pgoff_t index, unsigned flags)
Nick Piggineb2be182007-10-16 01:24:57 -07002487{
Nick Piggineb2be182007-10-16 01:24:57 -07002488 struct page *page;
Mel Gorman2457aec2014-06-04 16:10:31 -07002489 int fgp_flags = FGP_LOCK|FGP_ACCESSED|FGP_WRITE|FGP_CREAT;
Johannes Weiner0faa70c2012-01-10 15:07:53 -08002490
Nick Piggin54566b22009-01-04 12:00:53 -08002491 if (flags & AOP_FLAG_NOFS)
Mel Gorman2457aec2014-06-04 16:10:31 -07002492 fgp_flags |= FGP_NOFS;
Nick Piggineb2be182007-10-16 01:24:57 -07002493
Mel Gorman2457aec2014-06-04 16:10:31 -07002494 page = pagecache_get_page(mapping, index, fgp_flags,
Michal Hocko45f87de2014-12-29 20:30:35 +01002495 mapping_gfp_mask(mapping));
Mel Gorman2457aec2014-06-04 16:10:31 -07002496 if (page)
2497 wait_for_stable_page(page);
2498
Nick Piggineb2be182007-10-16 01:24:57 -07002499 return page;
2500}
Nick Piggin54566b22009-01-04 12:00:53 -08002501EXPORT_SYMBOL(grab_cache_page_write_begin);
Nick Piggineb2be182007-10-16 01:24:57 -07002502
Al Viro3b93f912014-02-11 21:34:08 -05002503ssize_t generic_perform_write(struct file *file,
Nick Pigginafddba42007-10-16 01:25:01 -07002504 struct iov_iter *i, loff_t pos)
2505{
2506 struct address_space *mapping = file->f_mapping;
2507 const struct address_space_operations *a_ops = mapping->a_ops;
2508 long status = 0;
2509 ssize_t written = 0;
Nick Piggin674b8922007-10-16 01:25:03 -07002510 unsigned int flags = 0;
2511
2512 /*
2513 * Copies from kernel address space cannot fail (NFSD is a big user).
2514 */
Al Viro777eda22014-12-17 04:46:46 -05002515 if (!iter_is_iovec(i))
Nick Piggin674b8922007-10-16 01:25:03 -07002516 flags |= AOP_FLAG_UNINTERRUPTIBLE;
Nick Pigginafddba42007-10-16 01:25:01 -07002517
2518 do {
2519 struct page *page;
Nick Pigginafddba42007-10-16 01:25:01 -07002520 unsigned long offset; /* Offset into pagecache page */
2521 unsigned long bytes; /* Bytes to write to page */
2522 size_t copied; /* Bytes copied from user */
2523 void *fsdata;
2524
2525 offset = (pos & (PAGE_CACHE_SIZE - 1));
Nick Pigginafddba42007-10-16 01:25:01 -07002526 bytes = min_t(unsigned long, PAGE_CACHE_SIZE - offset,
2527 iov_iter_count(i));
2528
2529again:
Linus Torvalds00a3d662015-10-07 08:32:38 +01002530 /*
2531 * Bring in the user page that we will copy from _first_.
2532 * Otherwise there's a nasty deadlock on copying from the
2533 * same page as we're writing to, without it being marked
2534 * up-to-date.
2535 *
2536 * Not only is this an optimisation, but it is also required
2537 * to check that the address is actually valid, when atomic
2538 * usercopies are used, below.
2539 */
2540 if (unlikely(iov_iter_fault_in_readable(i, bytes))) {
2541 status = -EFAULT;
2542 break;
2543 }
2544
Jan Kara296291c2015-10-22 13:32:21 -07002545 if (fatal_signal_pending(current)) {
2546 status = -EINTR;
2547 break;
2548 }
2549
Nick Piggin674b8922007-10-16 01:25:03 -07002550 status = a_ops->write_begin(file, mapping, pos, bytes, flags,
Nick Pigginafddba42007-10-16 01:25:01 -07002551 &page, &fsdata);
Mel Gorman2457aec2014-06-04 16:10:31 -07002552 if (unlikely(status < 0))
Nick Pigginafddba42007-10-16 01:25:01 -07002553 break;
2554
anfei zhou931e80e2010-02-02 13:44:02 -08002555 if (mapping_writably_mapped(mapping))
2556 flush_dcache_page(page);
Linus Torvalds00a3d662015-10-07 08:32:38 +01002557
Nick Pigginafddba42007-10-16 01:25:01 -07002558 copied = iov_iter_copy_from_user_atomic(page, i, offset, bytes);
Nick Pigginafddba42007-10-16 01:25:01 -07002559 flush_dcache_page(page);
2560
2561 status = a_ops->write_end(file, mapping, pos, bytes, copied,
2562 page, fsdata);
2563 if (unlikely(status < 0))
2564 break;
2565 copied = status;
2566
2567 cond_resched();
2568
Nick Piggin124d3b72008-02-02 15:01:17 +01002569 iov_iter_advance(i, copied);
Nick Pigginafddba42007-10-16 01:25:01 -07002570 if (unlikely(copied == 0)) {
2571 /*
2572 * If we were unable to copy any data at all, we must
2573 * fall back to a single segment length write.
2574 *
2575 * If we didn't fallback here, we could livelock
2576 * because not all segments in the iov can be copied at
2577 * once without a pagefault.
2578 */
2579 bytes = min_t(unsigned long, PAGE_CACHE_SIZE - offset,
2580 iov_iter_single_seg_count(i));
2581 goto again;
2582 }
Nick Pigginafddba42007-10-16 01:25:01 -07002583 pos += copied;
2584 written += copied;
2585
2586 balance_dirty_pages_ratelimited(mapping);
Nick Pigginafddba42007-10-16 01:25:01 -07002587 } while (iov_iter_count(i));
2588
2589 return written ? written : status;
2590}
Al Viro3b93f912014-02-11 21:34:08 -05002591EXPORT_SYMBOL(generic_perform_write);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592
Jan Karae4dd9de2009-08-17 18:10:06 +02002593/**
Al Viro81742022014-04-03 03:17:43 -04002594 * __generic_file_write_iter - write data to a file
Jan Karae4dd9de2009-08-17 18:10:06 +02002595 * @iocb: IO state structure (file, offset, etc.)
Al Viro81742022014-04-03 03:17:43 -04002596 * @from: iov_iter with data to write
Jan Karae4dd9de2009-08-17 18:10:06 +02002597 *
2598 * This function does all the work needed for actually writing data to a
2599 * file. It does all basic checks, removes SUID from the file, updates
2600 * modification times and calls proper subroutines depending on whether we
2601 * do direct IO or a standard buffered write.
2602 *
2603 * It expects i_mutex to be grabbed unless we work on a block device or similar
2604 * object which does not need locking at all.
2605 *
2606 * This function does *not* take care of syncing data in case of O_SYNC write.
2607 * A caller has to handle it. This is mainly due to the fact that we want to
2608 * avoid syncing under i_mutex.
2609 */
Al Viro81742022014-04-03 03:17:43 -04002610ssize_t __generic_file_write_iter(struct kiocb *iocb, struct iov_iter *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611{
2612 struct file *file = iocb->ki_filp;
Jeff Moyerfb5527e2006-10-19 23:28:13 -07002613 struct address_space * mapping = file->f_mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 struct inode *inode = mapping->host;
Al Viro3b93f912014-02-11 21:34:08 -05002615 ssize_t written = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 ssize_t err;
Al Viro3b93f912014-02-11 21:34:08 -05002617 ssize_t status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619 /* We can write back this queue in page reclaim */
Christoph Hellwigde1414a2015-01-14 10:42:36 +01002620 current->backing_dev_info = inode_to_bdi(inode);
Jan Kara5fa8e0a2015-05-21 16:05:53 +02002621 err = file_remove_privs(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 if (err)
2623 goto out;
2624
Josef Bacikc3b2da32012-03-26 09:59:21 -04002625 err = file_update_time(file);
2626 if (err)
2627 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628
Al Viro2ba48ce2015-04-09 13:52:01 -04002629 if (iocb->ki_flags & IOCB_DIRECT) {
Al Viro0b8def92015-04-07 10:22:53 -04002630 loff_t pos, endbyte;
Jeff Moyerfb5527e2006-10-19 23:28:13 -07002631
Al Viro0b8def92015-04-07 10:22:53 -04002632 written = generic_file_direct_write(iocb, from, iocb->ki_pos);
Matthew Wilcoxfbbbad42015-02-16 15:58:53 -08002633 /*
2634 * If the write stopped short of completing, fall back to
2635 * buffered writes. Some filesystems do this for writes to
2636 * holes, for example. For DAX files, a buffered write will
2637 * not succeed (even if it did, DAX does not handle dirty
2638 * page-cache pages correctly).
2639 */
Al Viro0b8def92015-04-07 10:22:53 -04002640 if (written < 0 || !iov_iter_count(from) || IS_DAX(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641 goto out;
Al Viro3b93f912014-02-11 21:34:08 -05002642
Al Viro0b8def92015-04-07 10:22:53 -04002643 status = generic_perform_write(file, from, pos = iocb->ki_pos);
Jeff Moyerfb5527e2006-10-19 23:28:13 -07002644 /*
Al Viro3b93f912014-02-11 21:34:08 -05002645 * If generic_perform_write() returned a synchronous error
Jeff Moyerfb5527e2006-10-19 23:28:13 -07002646 * then we want to return the number of bytes which were
2647 * direct-written, or the error code if that was zero. Note
2648 * that this differs from normal direct-io semantics, which
2649 * will return -EFOO even if some bytes were written.
2650 */
Al Viro60bb4522014-08-08 12:39:16 -04002651 if (unlikely(status < 0)) {
Al Viro3b93f912014-02-11 21:34:08 -05002652 err = status;
Jeff Moyerfb5527e2006-10-19 23:28:13 -07002653 goto out;
2654 }
Jeff Moyerfb5527e2006-10-19 23:28:13 -07002655 /*
2656 * We need to ensure that the page cache pages are written to
2657 * disk and invalidated to preserve the expected O_DIRECT
2658 * semantics.
2659 */
Al Viro3b93f912014-02-11 21:34:08 -05002660 endbyte = pos + status - 1;
Al Viro0b8def92015-04-07 10:22:53 -04002661 err = filemap_write_and_wait_range(mapping, pos, endbyte);
Jeff Moyerfb5527e2006-10-19 23:28:13 -07002662 if (err == 0) {
Al Viro0b8def92015-04-07 10:22:53 -04002663 iocb->ki_pos = endbyte + 1;
Al Viro3b93f912014-02-11 21:34:08 -05002664 written += status;
Jeff Moyerfb5527e2006-10-19 23:28:13 -07002665 invalidate_mapping_pages(mapping,
2666 pos >> PAGE_CACHE_SHIFT,
2667 endbyte >> PAGE_CACHE_SHIFT);
2668 } else {
2669 /*
2670 * We don't know how much we wrote, so just return
2671 * the number of bytes which were direct-written
2672 */
2673 }
2674 } else {
Al Viro0b8def92015-04-07 10:22:53 -04002675 written = generic_perform_write(file, from, iocb->ki_pos);
2676 if (likely(written > 0))
2677 iocb->ki_pos += written;
Jeff Moyerfb5527e2006-10-19 23:28:13 -07002678 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679out:
2680 current->backing_dev_info = NULL;
2681 return written ? written : err;
2682}
Al Viro81742022014-04-03 03:17:43 -04002683EXPORT_SYMBOL(__generic_file_write_iter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684
Jan Karae4dd9de2009-08-17 18:10:06 +02002685/**
Al Viro81742022014-04-03 03:17:43 -04002686 * generic_file_write_iter - write data to a file
Jan Karae4dd9de2009-08-17 18:10:06 +02002687 * @iocb: IO state structure
Al Viro81742022014-04-03 03:17:43 -04002688 * @from: iov_iter with data to write
Jan Karae4dd9de2009-08-17 18:10:06 +02002689 *
Al Viro81742022014-04-03 03:17:43 -04002690 * This is a wrapper around __generic_file_write_iter() to be used by most
Jan Karae4dd9de2009-08-17 18:10:06 +02002691 * filesystems. It takes care of syncing the file in case of O_SYNC file
2692 * and acquires i_mutex as needed.
2693 */
Al Viro81742022014-04-03 03:17:43 -04002694ssize_t generic_file_write_iter(struct kiocb *iocb, struct iov_iter *from)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695{
2696 struct file *file = iocb->ki_filp;
Jan Kara148f9482009-08-17 19:52:36 +02002697 struct inode *inode = file->f_mapping->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698 ssize_t ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002700 mutex_lock(&inode->i_mutex);
Al Viro3309dd02015-04-09 12:55:47 -04002701 ret = generic_write_checks(iocb, from);
2702 if (ret > 0)
Al Viro5f380c72015-04-07 11:28:12 -04002703 ret = __generic_file_write_iter(iocb, from);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002704 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705
Christoph Hellwig02afc27f2013-09-04 15:04:40 +02002706 if (ret > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 ssize_t err;
2708
Al Virod311d792014-02-09 15:18:09 -05002709 err = generic_write_sync(file, iocb->ki_pos - ret, ret);
2710 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 ret = err;
2712 }
2713 return ret;
2714}
Al Viro81742022014-04-03 03:17:43 -04002715EXPORT_SYMBOL(generic_file_write_iter);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716
David Howellscf9a2ae2006-08-29 19:05:54 +01002717/**
2718 * try_to_release_page() - release old fs-specific metadata on a page
2719 *
2720 * @page: the page which the kernel is trying to free
2721 * @gfp_mask: memory allocation flags (and I/O mode)
2722 *
2723 * The address_space is to try to release any data against the page
2724 * (presumably at page->private). If the release was successful, return `1'.
2725 * Otherwise return zero.
2726 *
David Howells266cf652009-04-03 16:42:36 +01002727 * This may also be called if PG_fscache is set on a page, indicating that the
2728 * page is known to the local caching routines.
2729 *
David Howellscf9a2ae2006-08-29 19:05:54 +01002730 * The @gfp_mask argument specifies whether I/O may be performed to release
Mel Gorman71baba42015-11-06 16:28:28 -08002731 * this page (__GFP_IO), and whether the call may block (__GFP_RECLAIM & __GFP_FS).
David Howellscf9a2ae2006-08-29 19:05:54 +01002732 *
David Howellscf9a2ae2006-08-29 19:05:54 +01002733 */
2734int try_to_release_page(struct page *page, gfp_t gfp_mask)
2735{
2736 struct address_space * const mapping = page->mapping;
2737
2738 BUG_ON(!PageLocked(page));
2739 if (PageWriteback(page))
2740 return 0;
2741
2742 if (mapping && mapping->a_ops->releasepage)
2743 return mapping->a_ops->releasepage(page, gfp_mask);
2744 return try_to_free_buffers(page);
2745}
2746
2747EXPORT_SYMBOL(try_to_release_page);