blob: 81fb9bff0d4f9022db02f9d3194ebc5ccd0c350e [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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/module.h>
13#include <linux/slab.h>
14#include <linux/compiler.h>
15#include <linux/fs.h>
Hiro Yoshiokac22ce142006-06-23 02:04:16 -070016#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/aio.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080018#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/kernel_stat.h>
20#include <linux/mm.h>
21#include <linux/swap.h>
22#include <linux/mman.h>
23#include <linux/pagemap.h>
24#include <linux/file.h>
25#include <linux/uio.h>
26#include <linux/hash.h>
27#include <linux/writeback.h>
Linus Torvalds53253382007-10-18 14:47:32 -070028#include <linux/backing-dev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/pagevec.h>
30#include <linux/blkdev.h>
Emil Medve3a424f22007-10-24 14:18:32 +020031#include <linux/backing-dev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/security.h>
33#include <linux/syscalls.h>
Paul Jackson44110fe2006-03-24 03:16:04 -080034#include <linux/cpuset.h>
Nick Piggin2f718ff2007-10-16 01:24:59 -070035#include <linux/hardirq.h> /* for BUG_ON(!in_atomic()) only */
Nick Piggin0f8053a2006-03-22 00:08:33 -080036#include "internal.h"
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 * FIXME: remove all knowledge of the buffer layer from the core VM
40 */
41#include <linux/buffer_head.h> /* for generic_osync_inode */
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <asm/mman.h>
44
Adrian Bunk5ce78522005-09-10 00:26:28 -070045static ssize_t
46generic_file_direct_IO(int rw, struct kiocb *iocb, const struct iovec *iov,
47 loff_t offset, unsigned long nr_segs);
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049/*
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 *
64 * ->i_mmap_lock (vmtruncate)
65 * ->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
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 * ->i_mmap_lock (truncate->unmap_mapping_range)
71 *
72 * ->mmap_sem
73 * ->i_mmap_lock
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 *
Nick Piggin82591e62006-10-19 23:29:10 -070080 * ->i_mutex (generic_file_buffered_write)
81 * ->mmap_sem (fault_in_pages_readable->do_page_fault)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 *
Jes Sorensen1b1dcc12006-01-09 15:59:24 -080083 * ->i_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 * ->i_alloc_sem (various)
85 *
86 * ->inode_lock
87 * ->sb_lock (fs/fs-writeback.c)
88 * ->mapping->tree_lock (__sync_single_inode)
89 *
90 * ->i_mmap_lock
91 * ->anon_vma.lock (vma_adjust)
92 *
93 * ->anon_vma.lock
Hugh Dickinsb8072f02005-10-29 18:16:41 -070094 * ->page_table_lock or pte_lock (anon_vma_prepare and various)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 *
Hugh Dickinsb8072f02005-10-29 18:16:41 -070096 * ->page_table_lock or pte_lock
Hugh Dickins5d337b92005-09-03 15:54:41 -070097 * ->swap_lock (try_to_unmap_one)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 * ->private_lock (try_to_unmap_one)
99 * ->tree_lock (try_to_unmap_one)
100 * ->zone.lru_lock (follow_page->mark_page_accessed)
Nick Piggin053837f2006-01-18 17:42:27 -0800101 * ->zone.lru_lock (check_pte_range->isolate_lru_page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 * ->private_lock (page_remove_rmap->set_page_dirty)
103 * ->tree_lock (page_remove_rmap->set_page_dirty)
104 * ->inode_lock (page_remove_rmap->set_page_dirty)
105 * ->inode_lock (zap_pte_range->set_page_dirty)
106 * ->private_lock (zap_pte_range->__set_page_dirty_buffers)
107 *
108 * ->task->proc_lock
109 * ->dcache_lock (proc_pid_lookup)
110 */
111
112/*
113 * Remove a page from the page cache and free it. Caller has to make
114 * sure the page is locked and that nobody else uses it - or that usage
115 * is safe. The caller must hold a write_lock on the mapping's tree_lock.
116 */
117void __remove_from_page_cache(struct page *page)
118{
119 struct address_space *mapping = page->mapping;
120
121 radix_tree_delete(&mapping->page_tree, page->index);
122 page->mapping = NULL;
123 mapping->nrpages--;
Christoph Lameter347ce432006-06-30 01:55:35 -0700124 __dec_zone_page_state(page, NR_FILE_PAGES);
Nick Piggin45426812007-07-15 23:38:12 -0700125 BUG_ON(page_mapped(page));
Linus Torvalds3a692792007-12-19 14:05:13 -0800126
127 /*
128 * Some filesystems seem to re-dirty the page even after
129 * the VM has canceled the dirty bit (eg ext3 journaling).
130 *
131 * Fix it up by doing a final dirty accounting check after
132 * having removed the page entirely.
133 */
134 if (PageDirty(page) && mapping_cap_account_dirty(mapping)) {
135 dec_zone_page_state(page, NR_FILE_DIRTY);
136 dec_bdi_stat(mapping->backing_dev_info, BDI_RECLAIMABLE);
137 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138}
139
140void remove_from_page_cache(struct page *page)
141{
142 struct address_space *mapping = page->mapping;
143
Matt Mackallcd7619d2005-05-01 08:59:01 -0700144 BUG_ON(!PageLocked(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
146 write_lock_irq(&mapping->tree_lock);
147 __remove_from_page_cache(page);
148 write_unlock_irq(&mapping->tree_lock);
149}
150
151static int sync_page(void *word)
152{
153 struct address_space *mapping;
154 struct page *page;
155
Andi Kleen07808b72005-11-05 17:25:53 +0100156 page = container_of((unsigned long *)word, struct page, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158 /*
William Lee Irwin IIIdd1d5af2005-05-01 08:58:38 -0700159 * page_mapping() is being called without PG_locked held.
160 * Some knowledge of the state and use of the page is used to
161 * reduce the requirements down to a memory barrier.
162 * The danger here is of a stale page_mapping() return value
163 * indicating a struct address_space different from the one it's
164 * associated with when it is associated with one.
165 * After smp_mb(), it's either the correct page_mapping() for
166 * the page, or an old page_mapping() and the page's own
167 * page_mapping() has gone NULL.
168 * The ->sync_page() address_space operation must tolerate
169 * page_mapping() going NULL. By an amazing coincidence,
170 * this comes about because none of the users of the page
171 * in the ->sync_page() methods make essential use of the
172 * page_mapping(), merely passing the page down to the backing
173 * device's unplug functions when it's non-NULL, which in turn
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700174 * ignore it for all cases but swap, where only page_private(page) is
William Lee Irwin IIIdd1d5af2005-05-01 08:58:38 -0700175 * of interest. When page_mapping() does go NULL, the entire
176 * call stack gracefully ignores the page and returns.
177 * -- wli
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 */
179 smp_mb();
180 mapping = page_mapping(page);
181 if (mapping && mapping->a_ops && mapping->a_ops->sync_page)
182 mapping->a_ops->sync_page(page);
183 io_schedule();
184 return 0;
185}
186
Matthew Wilcox2687a352007-12-06 11:18:49 -0500187static int sync_page_killable(void *word)
188{
189 sync_page(word);
190 return fatal_signal_pending(current) ? -EINTR : 0;
191}
192
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193/**
Randy Dunlap485bb992006-06-23 02:03:49 -0700194 * __filemap_fdatawrite_range - start writeback on mapping dirty pages in range
Martin Waitz67be2dd2005-05-01 08:59:26 -0700195 * @mapping: address space structure to write
196 * @start: offset in bytes where the range starts
Andrew Morton469eb4d2006-03-24 03:17:45 -0800197 * @end: offset in bytes where the range ends (inclusive)
Martin Waitz67be2dd2005-05-01 08:59:26 -0700198 * @sync_mode: enable synchronous operation
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 *
Randy Dunlap485bb992006-06-23 02:03:49 -0700200 * Start writeback against all of a mapping's dirty pages that lie
201 * within the byte offsets <start, end> inclusive.
202 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 * If sync_mode is WB_SYNC_ALL then this is a "data integrity" operation, as
Randy Dunlap485bb992006-06-23 02:03:49 -0700204 * opposed to a regular memory cleansing writeback. The difference between
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 * these two operations is that if a dirty page/buffer is encountered, it must
206 * be waited upon, and not just skipped over.
207 */
Andrew Mortonebcf28e2006-03-24 03:18:04 -0800208int __filemap_fdatawrite_range(struct address_space *mapping, loff_t start,
209 loff_t end, int sync_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210{
211 int ret;
212 struct writeback_control wbc = {
213 .sync_mode = sync_mode,
214 .nr_to_write = mapping->nrpages * 2,
OGAWA Hirofumi111ebb62006-06-23 02:03:26 -0700215 .range_start = start,
216 .range_end = end,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 };
218
219 if (!mapping_cap_writeback_dirty(mapping))
220 return 0;
221
222 ret = do_writepages(mapping, &wbc);
223 return ret;
224}
225
226static inline int __filemap_fdatawrite(struct address_space *mapping,
227 int sync_mode)
228{
OGAWA Hirofumi111ebb62006-06-23 02:03:26 -0700229 return __filemap_fdatawrite_range(mapping, 0, LLONG_MAX, sync_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230}
231
232int filemap_fdatawrite(struct address_space *mapping)
233{
234 return __filemap_fdatawrite(mapping, WB_SYNC_ALL);
235}
236EXPORT_SYMBOL(filemap_fdatawrite);
237
Andrew Mortonebcf28e2006-03-24 03:18:04 -0800238static int filemap_fdatawrite_range(struct address_space *mapping, loff_t start,
239 loff_t end)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240{
241 return __filemap_fdatawrite_range(mapping, start, end, WB_SYNC_ALL);
242}
243
Randy Dunlap485bb992006-06-23 02:03:49 -0700244/**
245 * filemap_flush - mostly a non-blocking flush
246 * @mapping: target address_space
247 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 * This is a mostly non-blocking flush. Not suitable for data-integrity
249 * purposes - I/O may not be started against all dirty pages.
250 */
251int filemap_flush(struct address_space *mapping)
252{
253 return __filemap_fdatawrite(mapping, WB_SYNC_NONE);
254}
255EXPORT_SYMBOL(filemap_flush);
256
Randy Dunlap485bb992006-06-23 02:03:49 -0700257/**
258 * wait_on_page_writeback_range - wait for writeback to complete
259 * @mapping: target address_space
260 * @start: beginning page index
261 * @end: ending page index
262 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 * Wait for writeback to complete against pages indexed by start->end
264 * inclusive
265 */
Andrew Mortonebcf28e2006-03-24 03:18:04 -0800266int wait_on_page_writeback_range(struct address_space *mapping,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 pgoff_t start, pgoff_t end)
268{
269 struct pagevec pvec;
270 int nr_pages;
271 int ret = 0;
272 pgoff_t index;
273
274 if (end < start)
275 return 0;
276
277 pagevec_init(&pvec, 0);
278 index = start;
279 while ((index <= end) &&
280 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index,
281 PAGECACHE_TAG_WRITEBACK,
282 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1)) != 0) {
283 unsigned i;
284
285 for (i = 0; i < nr_pages; i++) {
286 struct page *page = pvec.pages[i];
287
288 /* until radix tree lookup accepts end_index */
289 if (page->index > end)
290 continue;
291
292 wait_on_page_writeback(page);
293 if (PageError(page))
294 ret = -EIO;
295 }
296 pagevec_release(&pvec);
297 cond_resched();
298 }
299
300 /* Check for outstanding write errors */
301 if (test_and_clear_bit(AS_ENOSPC, &mapping->flags))
302 ret = -ENOSPC;
303 if (test_and_clear_bit(AS_EIO, &mapping->flags))
304 ret = -EIO;
305
306 return ret;
307}
308
Randy Dunlap485bb992006-06-23 02:03:49 -0700309/**
310 * sync_page_range - write and wait on all pages in the passed range
311 * @inode: target inode
312 * @mapping: target address_space
313 * @pos: beginning offset in pages to write
314 * @count: number of bytes to write
315 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 * Write and wait upon all the pages in the passed range. This is a "data
317 * integrity" operation. It waits upon in-flight writeout before starting and
318 * waiting upon new writeout. If there was an IO error, return it.
319 *
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800320 * We need to re-take i_mutex during the generic_osync_inode list walk because
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 * it is otherwise livelockable.
322 */
323int sync_page_range(struct inode *inode, struct address_space *mapping,
OGAWA Hirofumi268fc162006-01-08 01:02:12 -0800324 loff_t pos, loff_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325{
326 pgoff_t start = pos >> PAGE_CACHE_SHIFT;
327 pgoff_t end = (pos + count - 1) >> PAGE_CACHE_SHIFT;
328 int ret;
329
330 if (!mapping_cap_writeback_dirty(mapping) || !count)
331 return 0;
332 ret = filemap_fdatawrite_range(mapping, pos, pos + count - 1);
333 if (ret == 0) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800334 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 ret = generic_osync_inode(inode, mapping, OSYNC_METADATA);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800336 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 }
338 if (ret == 0)
339 ret = wait_on_page_writeback_range(mapping, start, end);
340 return ret;
341}
342EXPORT_SYMBOL(sync_page_range);
343
Randy Dunlap485bb992006-06-23 02:03:49 -0700344/**
345 * sync_page_range_nolock
346 * @inode: target inode
347 * @mapping: target address_space
348 * @pos: beginning offset in pages to write
349 * @count: number of bytes to write
350 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -0800351 * Note: Holding i_mutex across sync_page_range_nolock() is not a good idea
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 * as it forces O_SYNC writers to different parts of the same file
353 * to be serialised right until io completion.
354 */
OGAWA Hirofumi268fc162006-01-08 01:02:12 -0800355int sync_page_range_nolock(struct inode *inode, struct address_space *mapping,
356 loff_t pos, loff_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
358 pgoff_t start = pos >> PAGE_CACHE_SHIFT;
359 pgoff_t end = (pos + count - 1) >> PAGE_CACHE_SHIFT;
360 int ret;
361
362 if (!mapping_cap_writeback_dirty(mapping) || !count)
363 return 0;
364 ret = filemap_fdatawrite_range(mapping, pos, pos + count - 1);
365 if (ret == 0)
366 ret = generic_osync_inode(inode, mapping, OSYNC_METADATA);
367 if (ret == 0)
368 ret = wait_on_page_writeback_range(mapping, start, end);
369 return ret;
370}
OGAWA Hirofumi268fc162006-01-08 01:02:12 -0800371EXPORT_SYMBOL(sync_page_range_nolock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
373/**
Randy Dunlap485bb992006-06-23 02:03:49 -0700374 * filemap_fdatawait - wait for all under-writeback pages to complete
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 * @mapping: address space structure to wait for
Randy Dunlap485bb992006-06-23 02:03:49 -0700376 *
377 * Walk the list of under-writeback pages of the given address space
378 * and wait for all of them.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 */
380int filemap_fdatawait(struct address_space *mapping)
381{
382 loff_t i_size = i_size_read(mapping->host);
383
384 if (i_size == 0)
385 return 0;
386
387 return wait_on_page_writeback_range(mapping, 0,
388 (i_size - 1) >> PAGE_CACHE_SHIFT);
389}
390EXPORT_SYMBOL(filemap_fdatawait);
391
392int filemap_write_and_wait(struct address_space *mapping)
393{
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800394 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
396 if (mapping->nrpages) {
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800397 err = filemap_fdatawrite(mapping);
398 /*
399 * Even if the above returned error, the pages may be
400 * written partially (e.g. -ENOSPC), so we wait for it.
401 * But the -EIO is special case, it may indicate the worst
402 * thing (e.g. bug) happened, so we avoid waiting for it.
403 */
404 if (err != -EIO) {
405 int err2 = filemap_fdatawait(mapping);
406 if (!err)
407 err = err2;
408 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 }
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800410 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411}
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800412EXPORT_SYMBOL(filemap_write_and_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Randy Dunlap485bb992006-06-23 02:03:49 -0700414/**
415 * filemap_write_and_wait_range - write out & wait on a file range
416 * @mapping: the address_space for the pages
417 * @lstart: offset in bytes where the range starts
418 * @lend: offset in bytes where the range ends (inclusive)
419 *
Andrew Morton469eb4d2006-03-24 03:17:45 -0800420 * Write out and wait upon file offsets lstart->lend, inclusive.
421 *
422 * Note that `lend' is inclusive (describes the last byte to be written) so
423 * that this function can be used to write to the very end-of-file (end = -1).
424 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425int filemap_write_and_wait_range(struct address_space *mapping,
426 loff_t lstart, loff_t lend)
427{
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800428 int err = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
430 if (mapping->nrpages) {
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800431 err = __filemap_fdatawrite_range(mapping, lstart, lend,
432 WB_SYNC_ALL);
433 /* See comment of filemap_write_and_wait() */
434 if (err != -EIO) {
435 int err2 = wait_on_page_writeback_range(mapping,
436 lstart >> PAGE_CACHE_SHIFT,
437 lend >> PAGE_CACHE_SHIFT);
438 if (!err)
439 err = err2;
440 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 }
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800442 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443}
444
Randy Dunlap485bb992006-06-23 02:03:49 -0700445/**
446 * add_to_page_cache - add newly allocated pagecache pages
447 * @page: page to add
448 * @mapping: the page's address_space
449 * @offset: page index
450 * @gfp_mask: page allocation mode
451 *
452 * This function is used to add newly allocated pagecache pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 * the page is new, so we can just run SetPageLocked() against it.
454 * The other page state flags were set by rmqueue().
455 *
456 * This function does not add the page to the LRU. The caller must do that.
457 */
458int add_to_page_cache(struct page *page, struct address_space *mapping,
Al Viro6daa0e22005-10-21 03:18:50 -0400459 pgoff_t offset, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460{
461 int error = radix_tree_preload(gfp_mask & ~__GFP_HIGHMEM);
462
463 if (error == 0) {
464 write_lock_irq(&mapping->tree_lock);
465 error = radix_tree_insert(&mapping->page_tree, offset, page);
466 if (!error) {
467 page_cache_get(page);
468 SetPageLocked(page);
469 page->mapping = mapping;
470 page->index = offset;
471 mapping->nrpages++;
Christoph Lameter347ce432006-06-30 01:55:35 -0700472 __inc_zone_page_state(page, NR_FILE_PAGES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 }
474 write_unlock_irq(&mapping->tree_lock);
475 radix_tree_preload_end();
476 }
477 return error;
478}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479EXPORT_SYMBOL(add_to_page_cache);
480
481int add_to_page_cache_lru(struct page *page, struct address_space *mapping,
Al Viro6daa0e22005-10-21 03:18:50 -0400482 pgoff_t offset, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483{
484 int ret = add_to_page_cache(page, mapping, offset, gfp_mask);
485 if (ret == 0)
486 lru_cache_add(page);
487 return ret;
488}
489
Paul Jackson44110fe2006-03-24 03:16:04 -0800490#ifdef CONFIG_NUMA
Nick Piggin2ae88142006-10-28 10:38:23 -0700491struct page *__page_cache_alloc(gfp_t gfp)
Paul Jackson44110fe2006-03-24 03:16:04 -0800492{
493 if (cpuset_do_page_mem_spread()) {
494 int n = cpuset_mem_spread_node();
Nick Piggin2ae88142006-10-28 10:38:23 -0700495 return alloc_pages_node(n, gfp, 0);
Paul Jackson44110fe2006-03-24 03:16:04 -0800496 }
Nick Piggin2ae88142006-10-28 10:38:23 -0700497 return alloc_pages(gfp, 0);
Paul Jackson44110fe2006-03-24 03:16:04 -0800498}
Nick Piggin2ae88142006-10-28 10:38:23 -0700499EXPORT_SYMBOL(__page_cache_alloc);
Paul Jackson44110fe2006-03-24 03:16:04 -0800500#endif
501
Nick Piggindb376482006-09-25 23:31:24 -0700502static int __sleep_on_page_lock(void *word)
503{
504 io_schedule();
505 return 0;
506}
507
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508/*
509 * In order to wait for pages to become available there must be
510 * waitqueues associated with pages. By using a hash table of
511 * waitqueues where the bucket discipline is to maintain all
512 * waiters on the same queue and wake all when any of the pages
513 * become available, and for the woken contexts to check to be
514 * sure the appropriate page became available, this saves space
515 * at a cost of "thundering herd" phenomena during rare hash
516 * collisions.
517 */
518static wait_queue_head_t *page_waitqueue(struct page *page)
519{
520 const struct zone *zone = page_zone(page);
521
522 return &zone->wait_table[hash_ptr(page, zone->wait_table_bits)];
523}
524
525static inline void wake_up_page(struct page *page, int bit)
526{
527 __wake_up_bit(page_waitqueue(page), &page->flags, bit);
528}
529
Harvey Harrison920c7a52008-02-04 22:29:26 -0800530void wait_on_page_bit(struct page *page, int bit_nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531{
532 DEFINE_WAIT_BIT(wait, &page->flags, bit_nr);
533
534 if (test_bit(bit_nr, &page->flags))
535 __wait_on_bit(page_waitqueue(page), &wait, sync_page,
536 TASK_UNINTERRUPTIBLE);
537}
538EXPORT_SYMBOL(wait_on_page_bit);
539
540/**
Randy Dunlap485bb992006-06-23 02:03:49 -0700541 * unlock_page - unlock a locked page
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 * @page: the page
543 *
544 * Unlocks the page and wakes up sleepers in ___wait_on_page_locked().
545 * Also wakes sleepers in wait_on_page_writeback() because the wakeup
546 * mechananism between PageLocked pages and PageWriteback pages is shared.
547 * But that's OK - sleepers in wait_on_page_writeback() just go back to sleep.
548 *
549 * The first mb is necessary to safely close the critical section opened by the
550 * TestSetPageLocked(), the second mb is necessary to enforce ordering between
551 * the clear_bit and the read of the waitqueue (to avoid SMP races with a
552 * parallel wait_on_page_locked()).
553 */
Harvey Harrison920c7a52008-02-04 22:29:26 -0800554void unlock_page(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555{
556 smp_mb__before_clear_bit();
557 if (!TestClearPageLocked(page))
558 BUG();
559 smp_mb__after_clear_bit();
560 wake_up_page(page, PG_locked);
561}
562EXPORT_SYMBOL(unlock_page);
563
Randy Dunlap485bb992006-06-23 02:03:49 -0700564/**
565 * end_page_writeback - end writeback against a page
566 * @page: the page
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 */
568void end_page_writeback(struct page *page)
569{
570 if (!TestClearPageReclaim(page) || rotate_reclaimable_page(page)) {
571 if (!test_clear_page_writeback(page))
572 BUG();
573 }
574 smp_mb__after_clear_bit();
575 wake_up_page(page, PG_writeback);
576}
577EXPORT_SYMBOL(end_page_writeback);
578
Randy Dunlap485bb992006-06-23 02:03:49 -0700579/**
580 * __lock_page - get a lock on the page, assuming we need to sleep to get it
581 * @page: the page to lock
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 *
Randy Dunlap485bb992006-06-23 02:03:49 -0700583 * Ugly. Running sync_page() in state TASK_UNINTERRUPTIBLE is scary. If some
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 * random driver's requestfn sets TASK_RUNNING, we could busywait. However
585 * chances are that on the second loop, the block layer's plug list is empty,
586 * so sync_page() will then return in state TASK_UNINTERRUPTIBLE.
587 */
Harvey Harrison920c7a52008-02-04 22:29:26 -0800588void __lock_page(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589{
590 DEFINE_WAIT_BIT(wait, &page->flags, PG_locked);
591
592 __wait_on_bit_lock(page_waitqueue(page), &wait, sync_page,
593 TASK_UNINTERRUPTIBLE);
594}
595EXPORT_SYMBOL(__lock_page);
596
Matthew Wilcox2687a352007-12-06 11:18:49 -0500597int fastcall __lock_page_killable(struct page *page)
598{
599 DEFINE_WAIT_BIT(wait, &page->flags, PG_locked);
600
601 return __wait_on_bit_lock(page_waitqueue(page), &wait,
602 sync_page_killable, TASK_KILLABLE);
603}
604
Nick Piggindb376482006-09-25 23:31:24 -0700605/*
606 * Variant of lock_page that does not require the caller to hold a reference
607 * on the page's mapping.
608 */
Harvey Harrison920c7a52008-02-04 22:29:26 -0800609void __lock_page_nosync(struct page *page)
Nick Piggindb376482006-09-25 23:31:24 -0700610{
611 DEFINE_WAIT_BIT(wait, &page->flags, PG_locked);
612 __wait_on_bit_lock(page_waitqueue(page), &wait, __sleep_on_page_lock,
613 TASK_UNINTERRUPTIBLE);
614}
615
Randy Dunlap485bb992006-06-23 02:03:49 -0700616/**
617 * find_get_page - find and get a page reference
618 * @mapping: the address_space to search
619 * @offset: the page index
620 *
Nick Pigginda6052f2006-09-25 23:31:35 -0700621 * Is there a pagecache struct page at the given (mapping, offset) tuple?
622 * If yes, increment its refcount and return it; if no, return NULL.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 */
Fengguang Wu57f6b962007-10-16 01:24:37 -0700624struct page * find_get_page(struct address_space *mapping, pgoff_t offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625{
626 struct page *page;
627
628 read_lock_irq(&mapping->tree_lock);
629 page = radix_tree_lookup(&mapping->page_tree, offset);
630 if (page)
631 page_cache_get(page);
632 read_unlock_irq(&mapping->tree_lock);
633 return page;
634}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635EXPORT_SYMBOL(find_get_page);
636
Randy Dunlap485bb992006-06-23 02:03:49 -0700637/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 * find_lock_page - locate, pin and lock a pagecache page
Martin Waitz67be2dd2005-05-01 08:59:26 -0700639 * @mapping: the address_space to search
640 * @offset: the page index
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 *
642 * Locates the desired pagecache page, locks it, increments its reference
643 * count and returns its address.
644 *
645 * Returns zero if the page was not present. find_lock_page() may sleep.
646 */
647struct page *find_lock_page(struct address_space *mapping,
Fengguang Wu57f6b962007-10-16 01:24:37 -0700648 pgoff_t offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649{
650 struct page *page;
651
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652repeat:
Nick Piggin45726cb2007-10-16 01:24:41 -0700653 read_lock_irq(&mapping->tree_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 page = radix_tree_lookup(&mapping->page_tree, offset);
655 if (page) {
656 page_cache_get(page);
657 if (TestSetPageLocked(page)) {
658 read_unlock_irq(&mapping->tree_lock);
Nikita Danilovbbfbb7c2006-01-06 00:11:08 -0800659 __lock_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
661 /* Has the page been truncated while we slept? */
Nick Piggin45726cb2007-10-16 01:24:41 -0700662 if (unlikely(page->mapping != mapping)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 unlock_page(page);
664 page_cache_release(page);
665 goto repeat;
666 }
Nick Piggin45726cb2007-10-16 01:24:41 -0700667 VM_BUG_ON(page->index != offset);
668 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 }
670 }
671 read_unlock_irq(&mapping->tree_lock);
Nick Piggin45726cb2007-10-16 01:24:41 -0700672out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 return page;
674}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675EXPORT_SYMBOL(find_lock_page);
676
677/**
678 * find_or_create_page - locate or add a pagecache page
Martin Waitz67be2dd2005-05-01 08:59:26 -0700679 * @mapping: the page's address_space
680 * @index: the page's index into the mapping
681 * @gfp_mask: page allocation mode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 *
683 * Locates a page in the pagecache. If the page is not present, a new page
684 * is allocated using @gfp_mask and is added to the pagecache and to the VM's
685 * LRU list. The returned page is locked and has its reference count
686 * incremented.
687 *
688 * find_or_create_page() may sleep, even if @gfp_flags specifies an atomic
689 * allocation!
690 *
691 * find_or_create_page() returns the desired page's address, or zero on
692 * memory exhaustion.
693 */
694struct page *find_or_create_page(struct address_space *mapping,
Fengguang Wu57f6b962007-10-16 01:24:37 -0700695 pgoff_t index, gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696{
Nick Piggineb2be182007-10-16 01:24:57 -0700697 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 int err;
699repeat:
700 page = find_lock_page(mapping, index);
701 if (!page) {
Nick Piggineb2be182007-10-16 01:24:57 -0700702 page = __page_cache_alloc(gfp_mask);
703 if (!page)
704 return NULL;
705 err = add_to_page_cache_lru(page, mapping, index, gfp_mask);
706 if (unlikely(err)) {
707 page_cache_release(page);
708 page = NULL;
709 if (err == -EEXIST)
710 goto repeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 return page;
714}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715EXPORT_SYMBOL(find_or_create_page);
716
717/**
718 * find_get_pages - gang pagecache lookup
719 * @mapping: The address_space to search
720 * @start: The starting page index
721 * @nr_pages: The maximum number of pages
722 * @pages: Where the resulting pages are placed
723 *
724 * find_get_pages() will search for and return a group of up to
725 * @nr_pages pages in the mapping. The pages are placed at @pages.
726 * find_get_pages() takes a reference against the returned pages.
727 *
728 * The search returns a group of mapping-contiguous pages with ascending
729 * indexes. There may be holes in the indices due to not-present pages.
730 *
731 * find_get_pages() returns the number of pages which were found.
732 */
733unsigned find_get_pages(struct address_space *mapping, pgoff_t start,
734 unsigned int nr_pages, struct page **pages)
735{
736 unsigned int i;
737 unsigned int ret;
738
739 read_lock_irq(&mapping->tree_lock);
740 ret = radix_tree_gang_lookup(&mapping->page_tree,
741 (void **)pages, start, nr_pages);
742 for (i = 0; i < ret; i++)
743 page_cache_get(pages[i]);
744 read_unlock_irq(&mapping->tree_lock);
745 return ret;
746}
747
Jens Axboeebf43502006-04-27 08:46:01 +0200748/**
749 * find_get_pages_contig - gang contiguous pagecache lookup
750 * @mapping: The address_space to search
751 * @index: The starting page index
752 * @nr_pages: The maximum number of pages
753 * @pages: Where the resulting pages are placed
754 *
755 * find_get_pages_contig() works exactly like find_get_pages(), except
756 * that the returned number of pages are guaranteed to be contiguous.
757 *
758 * find_get_pages_contig() returns the number of pages which were found.
759 */
760unsigned find_get_pages_contig(struct address_space *mapping, pgoff_t index,
761 unsigned int nr_pages, struct page **pages)
762{
763 unsigned int i;
764 unsigned int ret;
765
766 read_lock_irq(&mapping->tree_lock);
767 ret = radix_tree_gang_lookup(&mapping->page_tree,
768 (void **)pages, index, nr_pages);
769 for (i = 0; i < ret; i++) {
770 if (pages[i]->mapping == NULL || pages[i]->index != index)
771 break;
772
773 page_cache_get(pages[i]);
774 index++;
775 }
776 read_unlock_irq(&mapping->tree_lock);
777 return i;
778}
David Howellsef71c152007-05-09 02:33:44 -0700779EXPORT_SYMBOL(find_get_pages_contig);
Jens Axboeebf43502006-04-27 08:46:01 +0200780
Randy Dunlap485bb992006-06-23 02:03:49 -0700781/**
782 * find_get_pages_tag - find and return pages that match @tag
783 * @mapping: the address_space to search
784 * @index: the starting page index
785 * @tag: the tag index
786 * @nr_pages: the maximum number of pages
787 * @pages: where the resulting pages are placed
788 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 * Like find_get_pages, except we only return pages which are tagged with
Randy Dunlap485bb992006-06-23 02:03:49 -0700790 * @tag. We update @index to index the next page for the traversal.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 */
792unsigned find_get_pages_tag(struct address_space *mapping, pgoff_t *index,
793 int tag, unsigned int nr_pages, struct page **pages)
794{
795 unsigned int i;
796 unsigned int ret;
797
798 read_lock_irq(&mapping->tree_lock);
799 ret = radix_tree_gang_lookup_tag(&mapping->page_tree,
800 (void **)pages, *index, nr_pages, tag);
801 for (i = 0; i < ret; i++)
802 page_cache_get(pages[i]);
803 if (ret)
804 *index = pages[ret - 1]->index + 1;
805 read_unlock_irq(&mapping->tree_lock);
806 return ret;
807}
David Howellsef71c152007-05-09 02:33:44 -0700808EXPORT_SYMBOL(find_get_pages_tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
Randy Dunlap485bb992006-06-23 02:03:49 -0700810/**
811 * grab_cache_page_nowait - returns locked page at given index in given cache
812 * @mapping: target address_space
813 * @index: the page index
814 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -0800815 * Same as grab_cache_page(), but do not wait if the page is unavailable.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 * This is intended for speculative data generators, where the data can
817 * be regenerated if the page couldn't be grabbed. This routine should
818 * be safe to call while holding the lock for another page.
819 *
820 * Clear __GFP_FS when allocating the page to avoid recursion into the fs
821 * and deadlock against the caller's locked page.
822 */
823struct page *
Fengguang Wu57f6b962007-10-16 01:24:37 -0700824grab_cache_page_nowait(struct address_space *mapping, pgoff_t index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825{
826 struct page *page = find_get_page(mapping, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
828 if (page) {
829 if (!TestSetPageLocked(page))
830 return page;
831 page_cache_release(page);
832 return NULL;
833 }
Nick Piggin2ae88142006-10-28 10:38:23 -0700834 page = __page_cache_alloc(mapping_gfp_mask(mapping) & ~__GFP_FS);
835 if (page && add_to_page_cache_lru(page, mapping, index, GFP_KERNEL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 page_cache_release(page);
837 page = NULL;
838 }
839 return page;
840}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841EXPORT_SYMBOL(grab_cache_page_nowait);
842
Wu Fengguang76d42bd2006-06-25 05:48:43 -0700843/*
844 * CD/DVDs are error prone. When a medium error occurs, the driver may fail
845 * a _large_ part of the i/o request. Imagine the worst scenario:
846 *
847 * ---R__________________________________________B__________
848 * ^ reading here ^ bad block(assume 4k)
849 *
850 * read(R) => miss => readahead(R...B) => media error => frustrating retries
851 * => failing the whole request => read(R) => read(R+1) =>
852 * readahead(R+1...B+1) => bang => read(R+2) => read(R+3) =>
853 * readahead(R+3...B+2) => bang => read(R+3) => read(R+4) =>
854 * readahead(R+4...B+3) => bang => read(R+4) => read(R+5) => ......
855 *
856 * It is going insane. Fix it by quickly scaling down the readahead size.
857 */
858static void shrink_readahead_size_eio(struct file *filp,
859 struct file_ra_state *ra)
860{
861 if (!ra->ra_pages)
862 return;
863
864 ra->ra_pages /= 4;
Wu Fengguang76d42bd2006-06-25 05:48:43 -0700865}
866
Randy Dunlap485bb992006-06-23 02:03:49 -0700867/**
868 * do_generic_mapping_read - generic file read routine
869 * @mapping: address_space to be read
Randy Dunlap8f731f72007-10-18 23:39:28 -0700870 * @ra: file's readahead state
Randy Dunlap485bb992006-06-23 02:03:49 -0700871 * @filp: the file to read
872 * @ppos: current file position
873 * @desc: read_descriptor
874 * @actor: read method
875 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 * This is a generic file read routine, and uses the
Randy Dunlap485bb992006-06-23 02:03:49 -0700877 * mapping->a_ops->readpage() function for the actual low-level stuff.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 *
879 * This is really ugly. But the goto's actually try to clarify some
880 * of the logic when it comes to error handling etc.
881 *
Randy Dunlap485bb992006-06-23 02:03:49 -0700882 * Note the struct file* is only passed for the use of readpage.
883 * It may be NULL.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 */
885void do_generic_mapping_read(struct address_space *mapping,
Fengguang Wu7ff81072007-10-16 01:24:35 -0700886 struct file_ra_state *ra,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 struct file *filp,
888 loff_t *ppos,
889 read_descriptor_t *desc,
890 read_actor_t actor)
891{
892 struct inode *inode = mapping->host;
Fengguang Wu57f6b962007-10-16 01:24:37 -0700893 pgoff_t index;
894 pgoff_t last_index;
895 pgoff_t prev_index;
896 unsigned long offset; /* offset into pagecache page */
Jan Karaec0f1632007-05-06 14:49:25 -0700897 unsigned int prev_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 index = *ppos >> PAGE_CACHE_SHIFT;
Fengguang Wu7ff81072007-10-16 01:24:35 -0700901 prev_index = ra->prev_pos >> PAGE_CACHE_SHIFT;
902 prev_offset = ra->prev_pos & (PAGE_CACHE_SIZE-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 last_index = (*ppos + desc->count + PAGE_CACHE_SIZE-1) >> PAGE_CACHE_SHIFT;
904 offset = *ppos & ~PAGE_CACHE_MASK;
905
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 for (;;) {
907 struct page *page;
Fengguang Wu57f6b962007-10-16 01:24:37 -0700908 pgoff_t end_index;
NeilBrowna32ea1e2007-07-17 04:03:04 -0700909 loff_t isize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 unsigned long nr, ret;
911
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913find_page:
914 page = find_get_page(mapping, index);
Fengguang Wu3ea89ee2007-07-19 01:48:02 -0700915 if (!page) {
Rusty Russellcf914a72007-07-19 01:48:08 -0700916 page_cache_sync_readahead(mapping,
Fengguang Wu7ff81072007-10-16 01:24:35 -0700917 ra, filp,
Fengguang Wu3ea89ee2007-07-19 01:48:02 -0700918 index, last_index - index);
919 page = find_get_page(mapping, index);
920 if (unlikely(page == NULL))
921 goto no_cached_page;
922 }
923 if (PageReadahead(page)) {
Rusty Russellcf914a72007-07-19 01:48:08 -0700924 page_cache_async_readahead(mapping,
Fengguang Wu7ff81072007-10-16 01:24:35 -0700925 ra, filp, page,
Fengguang Wu3ea89ee2007-07-19 01:48:02 -0700926 index, last_index - index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 }
928 if (!PageUptodate(page))
929 goto page_not_up_to_date;
930page_ok:
NeilBrowna32ea1e2007-07-17 04:03:04 -0700931 /*
932 * i_size must be checked after we know the page is Uptodate.
933 *
934 * Checking i_size after the check allows us to calculate
935 * the correct value for "nr", which means the zero-filled
936 * part of the page is not copied back to userspace (unless
937 * another truncate extends the file - this is desired though).
938 */
939
940 isize = i_size_read(inode);
941 end_index = (isize - 1) >> PAGE_CACHE_SHIFT;
942 if (unlikely(!isize || index > end_index)) {
943 page_cache_release(page);
944 goto out;
945 }
946
947 /* nr is the maximum number of bytes to copy from this page */
948 nr = PAGE_CACHE_SIZE;
949 if (index == end_index) {
950 nr = ((isize - 1) & ~PAGE_CACHE_MASK) + 1;
951 if (nr <= offset) {
952 page_cache_release(page);
953 goto out;
954 }
955 }
956 nr = nr - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
958 /* If users can be writing to this page using arbitrary
959 * virtual addresses, take care about potential aliasing
960 * before reading the page on the kernel side.
961 */
962 if (mapping_writably_mapped(mapping))
963 flush_dcache_page(page);
964
965 /*
Jan Karaec0f1632007-05-06 14:49:25 -0700966 * When a sequential read accesses a page several times,
967 * only mark it as accessed the first time.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 */
Jan Karaec0f1632007-05-06 14:49:25 -0700969 if (prev_index != index || offset != prev_offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 mark_page_accessed(page);
971 prev_index = index;
972
973 /*
974 * Ok, we have the page, and it's up-to-date, so
975 * now we can copy it to user space...
976 *
977 * The actor routine returns how many bytes were actually used..
978 * NOTE! This may not be the same as how much of a user buffer
979 * we filled up (we may be padding etc), so we can only update
980 * "pos" here (the actor routine has to update the user buffer
981 * pointers and the remaining count).
982 */
983 ret = actor(desc, page, offset, nr);
984 offset += ret;
985 index += offset >> PAGE_CACHE_SHIFT;
986 offset &= ~PAGE_CACHE_MASK;
Jan Kara6ce745e2007-05-06 14:49:26 -0700987 prev_offset = offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
989 page_cache_release(page);
990 if (ret == nr && desc->count)
991 continue;
992 goto out;
993
994page_not_up_to_date:
995 /* Get exclusive access to the page ... */
Matthew Wilcox0b94e972007-12-06 11:19:57 -0500996 if (lock_page_killable(page))
997 goto readpage_eio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
Nick Pigginda6052f2006-09-25 23:31:35 -0700999 /* Did it get truncated before we got the lock? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 if (!page->mapping) {
1001 unlock_page(page);
1002 page_cache_release(page);
1003 continue;
1004 }
1005
1006 /* Did somebody else fill it already? */
1007 if (PageUptodate(page)) {
1008 unlock_page(page);
1009 goto page_ok;
1010 }
1011
1012readpage:
1013 /* Start the actual read. The read will unlock the page. */
1014 error = mapping->a_ops->readpage(filp, page);
1015
Zach Brown994fc28c2005-12-15 14:28:17 -08001016 if (unlikely(error)) {
1017 if (error == AOP_TRUNCATED_PAGE) {
1018 page_cache_release(page);
1019 goto find_page;
1020 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 goto readpage_error;
Zach Brown994fc28c2005-12-15 14:28:17 -08001022 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
1024 if (!PageUptodate(page)) {
Matthew Wilcox0b94e972007-12-06 11:19:57 -05001025 if (lock_page_killable(page))
1026 goto readpage_eio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 if (!PageUptodate(page)) {
1028 if (page->mapping == NULL) {
1029 /*
1030 * invalidate_inode_pages got it
1031 */
1032 unlock_page(page);
1033 page_cache_release(page);
1034 goto find_page;
1035 }
1036 unlock_page(page);
Fengguang Wu7ff81072007-10-16 01:24:35 -07001037 shrink_readahead_size_eio(filp, ra);
Matthew Wilcox0b94e972007-12-06 11:19:57 -05001038 goto readpage_eio;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 }
1040 unlock_page(page);
1041 }
1042
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 goto page_ok;
1044
Matthew Wilcox0b94e972007-12-06 11:19:57 -05001045readpage_eio:
1046 error = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047readpage_error:
1048 /* UHHUH! A synchronous read error occurred. Report it */
1049 desc->error = error;
1050 page_cache_release(page);
1051 goto out;
1052
1053no_cached_page:
1054 /*
1055 * Ok, it wasn't cached, so we need to create a new
1056 * page..
1057 */
Nick Piggineb2be182007-10-16 01:24:57 -07001058 page = page_cache_alloc_cold(mapping);
1059 if (!page) {
1060 desc->error = -ENOMEM;
1061 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 }
Nick Piggineb2be182007-10-16 01:24:57 -07001063 error = add_to_page_cache_lru(page, mapping,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 index, GFP_KERNEL);
1065 if (error) {
Nick Piggineb2be182007-10-16 01:24:57 -07001066 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 if (error == -EEXIST)
1068 goto find_page;
1069 desc->error = error;
1070 goto out;
1071 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 goto readpage;
1073 }
1074
1075out:
Fengguang Wu7ff81072007-10-16 01:24:35 -07001076 ra->prev_pos = prev_index;
1077 ra->prev_pos <<= PAGE_CACHE_SHIFT;
1078 ra->prev_pos |= prev_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079
Fengguang Wuf4e6b492007-10-16 01:24:33 -07001080 *ppos = ((loff_t)index << PAGE_CACHE_SHIFT) + offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 if (filp)
1082 file_accessed(filp);
1083}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084EXPORT_SYMBOL(do_generic_mapping_read);
1085
1086int file_read_actor(read_descriptor_t *desc, struct page *page,
1087 unsigned long offset, unsigned long size)
1088{
1089 char *kaddr;
1090 unsigned long left, count = desc->count;
1091
1092 if (size > count)
1093 size = count;
1094
1095 /*
1096 * Faults on the destination of a read are common, so do it before
1097 * taking the kmap.
1098 */
1099 if (!fault_in_pages_writeable(desc->arg.buf, size)) {
1100 kaddr = kmap_atomic(page, KM_USER0);
1101 left = __copy_to_user_inatomic(desc->arg.buf,
1102 kaddr + offset, size);
1103 kunmap_atomic(kaddr, KM_USER0);
1104 if (left == 0)
1105 goto success;
1106 }
1107
1108 /* Do it the slow way */
1109 kaddr = kmap(page);
1110 left = __copy_to_user(desc->arg.buf, kaddr + offset, size);
1111 kunmap(page);
1112
1113 if (left) {
1114 size -= left;
1115 desc->error = -EFAULT;
1116 }
1117success:
1118 desc->count = count - size;
1119 desc->written += size;
1120 desc->arg.buf += size;
1121 return size;
1122}
1123
Dmitriy Monakhov0ceb3312007-05-08 00:23:02 -07001124/*
1125 * Performs necessary checks before doing a write
1126 * @iov: io vector request
1127 * @nr_segs: number of segments in the iovec
1128 * @count: number of bytes to write
1129 * @access_flags: type of access: %VERIFY_READ or %VERIFY_WRITE
1130 *
1131 * Adjust number of segments and amount of bytes to write (nr_segs should be
1132 * properly initialized first). Returns appropriate error code that caller
1133 * should return or zero in case that write should be allowed.
1134 */
1135int generic_segment_checks(const struct iovec *iov,
1136 unsigned long *nr_segs, size_t *count, int access_flags)
1137{
1138 unsigned long seg;
1139 size_t cnt = 0;
1140 for (seg = 0; seg < *nr_segs; seg++) {
1141 const struct iovec *iv = &iov[seg];
1142
1143 /*
1144 * If any segment has a negative length, or the cumulative
1145 * length ever wraps negative then return -EINVAL.
1146 */
1147 cnt += iv->iov_len;
1148 if (unlikely((ssize_t)(cnt|iv->iov_len) < 0))
1149 return -EINVAL;
1150 if (access_ok(access_flags, iv->iov_base, iv->iov_len))
1151 continue;
1152 if (seg == 0)
1153 return -EFAULT;
1154 *nr_segs = seg;
1155 cnt -= iv->iov_len; /* This segment is no good */
1156 break;
1157 }
1158 *count = cnt;
1159 return 0;
1160}
1161EXPORT_SYMBOL(generic_segment_checks);
1162
Randy Dunlap485bb992006-06-23 02:03:49 -07001163/**
Henrik Kretzschmarb2abacf2006-10-04 02:15:22 -07001164 * generic_file_aio_read - generic filesystem read routine
Randy Dunlap485bb992006-06-23 02:03:49 -07001165 * @iocb: kernel I/O control block
1166 * @iov: io vector request
1167 * @nr_segs: number of segments in the iovec
Henrik Kretzschmarb2abacf2006-10-04 02:15:22 -07001168 * @pos: current file position
Randy Dunlap485bb992006-06-23 02:03:49 -07001169 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 * This is the "read()" routine for all filesystems
1171 * that can use the page cache directly.
1172 */
1173ssize_t
Badari Pulavarty543ade12006-09-30 23:28:48 -07001174generic_file_aio_read(struct kiocb *iocb, const struct iovec *iov,
1175 unsigned long nr_segs, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176{
1177 struct file *filp = iocb->ki_filp;
1178 ssize_t retval;
1179 unsigned long seg;
1180 size_t count;
Badari Pulavarty543ade12006-09-30 23:28:48 -07001181 loff_t *ppos = &iocb->ki_pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182
1183 count = 0;
Dmitriy Monakhov0ceb3312007-05-08 00:23:02 -07001184 retval = generic_segment_checks(iov, &nr_segs, &count, VERIFY_WRITE);
1185 if (retval)
1186 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
1188 /* coalesce the iovecs and go direct-to-BIO for O_DIRECT */
1189 if (filp->f_flags & O_DIRECT) {
Badari Pulavarty543ade12006-09-30 23:28:48 -07001190 loff_t size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 struct address_space *mapping;
1192 struct inode *inode;
1193
1194 mapping = filp->f_mapping;
1195 inode = mapping->host;
1196 retval = 0;
1197 if (!count)
1198 goto out; /* skip atime */
1199 size = i_size_read(inode);
1200 if (pos < size) {
1201 retval = generic_file_direct_IO(READ, iocb,
1202 iov, pos, nr_segs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 if (retval > 0)
1204 *ppos = pos + retval;
1205 }
Steven Whitehouse0e0bcae2006-09-27 14:45:07 -04001206 if (likely(retval != 0)) {
Steven Whitehouse3f1a9aa2006-09-27 14:52:48 -04001207 file_accessed(filp);
Steven Whitehousea9e5f4d2006-07-25 17:24:12 -04001208 goto out;
Steven Whitehouse0e0bcae2006-09-27 14:45:07 -04001209 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 }
1211
1212 retval = 0;
1213 if (count) {
1214 for (seg = 0; seg < nr_segs; seg++) {
1215 read_descriptor_t desc;
1216
1217 desc.written = 0;
1218 desc.arg.buf = iov[seg].iov_base;
1219 desc.count = iov[seg].iov_len;
1220 if (desc.count == 0)
1221 continue;
1222 desc.error = 0;
1223 do_generic_file_read(filp,ppos,&desc,file_read_actor);
1224 retval += desc.written;
Tejun Heo39e88ca2005-10-30 15:02:40 -08001225 if (desc.error) {
1226 retval = retval ?: desc.error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 break;
1228 }
akpm@linux-foundation.orgc44939e2007-07-15 23:38:25 -07001229 if (desc.count > 0)
1230 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 }
1232 }
1233out:
1234 return retval;
1235}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236EXPORT_SYMBOL(generic_file_aio_read);
1237
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238static ssize_t
1239do_readahead(struct address_space *mapping, struct file *filp,
Fengguang Wu57f6b962007-10-16 01:24:37 -07001240 pgoff_t index, unsigned long nr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241{
1242 if (!mapping || !mapping->a_ops || !mapping->a_ops->readpage)
1243 return -EINVAL;
1244
1245 force_page_cache_readahead(mapping, filp, index,
1246 max_sane_readahead(nr));
1247 return 0;
1248}
1249
1250asmlinkage ssize_t sys_readahead(int fd, loff_t offset, size_t count)
1251{
1252 ssize_t ret;
1253 struct file *file;
1254
1255 ret = -EBADF;
1256 file = fget(fd);
1257 if (file) {
1258 if (file->f_mode & FMODE_READ) {
1259 struct address_space *mapping = file->f_mapping;
Fengguang Wu57f6b962007-10-16 01:24:37 -07001260 pgoff_t start = offset >> PAGE_CACHE_SHIFT;
1261 pgoff_t end = (offset + count - 1) >> PAGE_CACHE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 unsigned long len = end - start + 1;
1263 ret = do_readahead(mapping, file, start, len);
1264 }
1265 fput(file);
1266 }
1267 return ret;
1268}
1269
1270#ifdef CONFIG_MMU
Randy Dunlap485bb992006-06-23 02:03:49 -07001271/**
1272 * page_cache_read - adds requested page to the page cache if not already there
1273 * @file: file to read
1274 * @offset: page index
1275 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 * This adds the requested page to the page cache if it isn't already there,
1277 * and schedules an I/O to read in its contents from disk.
1278 */
Harvey Harrison920c7a52008-02-04 22:29:26 -08001279static int page_cache_read(struct file *file, pgoff_t offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280{
1281 struct address_space *mapping = file->f_mapping;
1282 struct page *page;
Zach Brown994fc28c2005-12-15 14:28:17 -08001283 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
Zach Brown994fc28c2005-12-15 14:28:17 -08001285 do {
1286 page = page_cache_alloc_cold(mapping);
1287 if (!page)
1288 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
Zach Brown994fc28c2005-12-15 14:28:17 -08001290 ret = add_to_page_cache_lru(page, mapping, offset, GFP_KERNEL);
1291 if (ret == 0)
1292 ret = mapping->a_ops->readpage(file, page);
1293 else if (ret == -EEXIST)
1294 ret = 0; /* losing race to add is OK */
1295
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
Zach Brown994fc28c2005-12-15 14:28:17 -08001298 } while (ret == AOP_TRUNCATED_PAGE);
1299
1300 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301}
1302
1303#define MMAP_LOTSAMISS (100)
1304
Randy Dunlap485bb992006-06-23 02:03:49 -07001305/**
Nick Piggin54cb8822007-07-19 01:46:59 -07001306 * filemap_fault - read in file data for page fault handling
Nick Piggind0217ac2007-07-19 01:47:03 -07001307 * @vma: vma in which the fault was taken
1308 * @vmf: struct vm_fault containing details of the fault
Randy Dunlap485bb992006-06-23 02:03:49 -07001309 *
Nick Piggin54cb8822007-07-19 01:46:59 -07001310 * filemap_fault() is invoked via the vma operations vector for a
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 * mapped memory region to read in file data during a page fault.
1312 *
1313 * The goto's are kind of ugly, but this streamlines the normal case of having
1314 * it in the page cache, and handles the special cases reasonably without
1315 * having a lot of duplicated code.
1316 */
Nick Piggind0217ac2007-07-19 01:47:03 -07001317int filemap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318{
1319 int error;
Nick Piggin54cb8822007-07-19 01:46:59 -07001320 struct file *file = vma->vm_file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 struct address_space *mapping = file->f_mapping;
1322 struct file_ra_state *ra = &file->f_ra;
1323 struct inode *inode = mapping->host;
1324 struct page *page;
Nick Piggin54cb8822007-07-19 01:46:59 -07001325 unsigned long size;
1326 int did_readaround = 0;
Nick Piggin83c54072007-07-19 01:47:05 -07001327 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 size = (i_size_read(inode) + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
Nick Piggind0217ac2007-07-19 01:47:03 -07001330 if (vmf->pgoff >= size)
Linus Torvalds5307cc12007-10-31 09:19:46 -07001331 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
1333 /* If we don't want any read-ahead, don't bother */
Nick Piggin54cb8822007-07-19 01:46:59 -07001334 if (VM_RandomReadHint(vma))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 goto no_cached_page;
1336
1337 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 * Do we have something in the page cache already?
1339 */
1340retry_find:
Nick Piggind0217ac2007-07-19 01:47:03 -07001341 page = find_lock_page(mapping, vmf->pgoff);
Fengguang Wu3ea89ee2007-07-19 01:48:02 -07001342 /*
1343 * For sequential accesses, we use the generic readahead logic.
1344 */
1345 if (VM_SequentialReadHint(vma)) {
1346 if (!page) {
Rusty Russellcf914a72007-07-19 01:48:08 -07001347 page_cache_sync_readahead(mapping, ra, file,
Fengguang Wu3ea89ee2007-07-19 01:48:02 -07001348 vmf->pgoff, 1);
1349 page = find_lock_page(mapping, vmf->pgoff);
1350 if (!page)
1351 goto no_cached_page;
1352 }
1353 if (PageReadahead(page)) {
Rusty Russellcf914a72007-07-19 01:48:08 -07001354 page_cache_async_readahead(mapping, ra, file, page,
Fengguang Wu3ea89ee2007-07-19 01:48:02 -07001355 vmf->pgoff, 1);
1356 }
1357 }
1358
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 if (!page) {
1360 unsigned long ra_pages;
1361
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 ra->mmap_miss++;
1363
1364 /*
1365 * Do we miss much more than hit in this file? If so,
1366 * stop bothering with read-ahead. It will only hurt.
1367 */
Fengguang Wu0bb7ba62007-10-16 01:24:32 -07001368 if (ra->mmap_miss > MMAP_LOTSAMISS)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 goto no_cached_page;
1370
1371 /*
1372 * To keep the pgmajfault counter straight, we need to
1373 * check did_readaround, as this is an inner loop.
1374 */
1375 if (!did_readaround) {
Nick Piggind0217ac2007-07-19 01:47:03 -07001376 ret = VM_FAULT_MAJOR;
Christoph Lameterf8891e52006-06-30 01:55:45 -07001377 count_vm_event(PGMAJFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 }
1379 did_readaround = 1;
1380 ra_pages = max_sane_readahead(file->f_ra.ra_pages);
1381 if (ra_pages) {
1382 pgoff_t start = 0;
1383
Nick Piggind0217ac2007-07-19 01:47:03 -07001384 if (vmf->pgoff > ra_pages / 2)
1385 start = vmf->pgoff - ra_pages / 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 do_page_cache_readahead(mapping, file, start, ra_pages);
1387 }
Nick Piggind0217ac2007-07-19 01:47:03 -07001388 page = find_lock_page(mapping, vmf->pgoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 if (!page)
1390 goto no_cached_page;
1391 }
1392
1393 if (!did_readaround)
Fengguang Wu0bb7ba62007-10-16 01:24:32 -07001394 ra->mmap_miss--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
1396 /*
Nick Piggind00806b2007-07-19 01:46:57 -07001397 * We have a locked page in the page cache, now we need to check
1398 * that it's up-to-date. If not, it is going to be due to an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 */
Nick Piggind00806b2007-07-19 01:46:57 -07001400 if (unlikely(!PageUptodate(page)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 goto page_not_uptodate;
1402
Nick Piggind00806b2007-07-19 01:46:57 -07001403 /* Must recheck i_size under page lock */
1404 size = (i_size_read(inode) + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
Nick Piggind0217ac2007-07-19 01:47:03 -07001405 if (unlikely(vmf->pgoff >= size)) {
Nick Piggind00806b2007-07-19 01:46:57 -07001406 unlock_page(page);
Yan Zheng745ad482007-10-08 10:08:37 -07001407 page_cache_release(page);
Linus Torvalds5307cc12007-10-31 09:19:46 -07001408 return VM_FAULT_SIGBUS;
Nick Piggind00806b2007-07-19 01:46:57 -07001409 }
1410
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 /*
1412 * Found the page and have a reference on it.
1413 */
1414 mark_page_accessed(page);
Fengguang Wuf4e6b492007-10-16 01:24:33 -07001415 ra->prev_pos = (loff_t)page->index << PAGE_CACHE_SHIFT;
Nick Piggind0217ac2007-07-19 01:47:03 -07001416 vmf->page = page;
Nick Piggin83c54072007-07-19 01:47:05 -07001417 return ret | VM_FAULT_LOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419no_cached_page:
1420 /*
1421 * We're only likely to ever get here if MADV_RANDOM is in
1422 * effect.
1423 */
Nick Piggind0217ac2007-07-19 01:47:03 -07001424 error = page_cache_read(file, vmf->pgoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425
1426 /*
1427 * The page we want has now been added to the page cache.
1428 * In the unlikely event that someone removed it in the
1429 * meantime, we'll just come back here and read it again.
1430 */
1431 if (error >= 0)
1432 goto retry_find;
1433
1434 /*
1435 * An error return from page_cache_read can result if the
1436 * system is low on memory, or a problem occurs while trying
1437 * to schedule I/O.
1438 */
1439 if (error == -ENOMEM)
Nick Piggind0217ac2007-07-19 01:47:03 -07001440 return VM_FAULT_OOM;
1441 return VM_FAULT_SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
1443page_not_uptodate:
Nick Piggind00806b2007-07-19 01:46:57 -07001444 /* IO error path */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 if (!did_readaround) {
Nick Piggind0217ac2007-07-19 01:47:03 -07001446 ret = VM_FAULT_MAJOR;
Christoph Lameterf8891e52006-06-30 01:55:45 -07001447 count_vm_event(PGMAJFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
1450 /*
1451 * Umm, take care of errors if the page isn't up-to-date.
1452 * Try to re-read it _once_. We do this synchronously,
1453 * because there really aren't any performance issues here
1454 * and we need to check for errors.
1455 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 ClearPageError(page);
Zach Brown994fc28c2005-12-15 14:28:17 -08001457 error = mapping->a_ops->readpage(file, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 page_cache_release(page);
Nick Piggind00806b2007-07-19 01:46:57 -07001459
1460 if (!error || error == AOP_TRUNCATED_PAGE)
1461 goto retry_find;
1462
1463 /* Things didn't work out. Return zero to tell the mm layer so. */
1464 shrink_readahead_size_eio(file, ra);
Nick Piggind0217ac2007-07-19 01:47:03 -07001465 return VM_FAULT_SIGBUS;
Nick Piggin54cb8822007-07-19 01:46:59 -07001466}
1467EXPORT_SYMBOL(filemap_fault);
1468
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469struct vm_operations_struct generic_file_vm_ops = {
Nick Piggin54cb8822007-07-19 01:46:59 -07001470 .fault = filemap_fault,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471};
1472
1473/* This is used for a general mmap of a disk file */
1474
1475int generic_file_mmap(struct file * file, struct vm_area_struct * vma)
1476{
1477 struct address_space *mapping = file->f_mapping;
1478
1479 if (!mapping->a_ops->readpage)
1480 return -ENOEXEC;
1481 file_accessed(file);
1482 vma->vm_ops = &generic_file_vm_ops;
Nick Piggind0217ac2007-07-19 01:47:03 -07001483 vma->vm_flags |= VM_CAN_NONLINEAR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 return 0;
1485}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486
1487/*
1488 * This is for filesystems which do not implement ->writepage.
1489 */
1490int generic_file_readonly_mmap(struct file *file, struct vm_area_struct *vma)
1491{
1492 if ((vma->vm_flags & VM_SHARED) && (vma->vm_flags & VM_MAYWRITE))
1493 return -EINVAL;
1494 return generic_file_mmap(file, vma);
1495}
1496#else
1497int generic_file_mmap(struct file * file, struct vm_area_struct * vma)
1498{
1499 return -ENOSYS;
1500}
1501int generic_file_readonly_mmap(struct file * file, struct vm_area_struct * vma)
1502{
1503 return -ENOSYS;
1504}
1505#endif /* CONFIG_MMU */
1506
1507EXPORT_SYMBOL(generic_file_mmap);
1508EXPORT_SYMBOL(generic_file_readonly_mmap);
1509
Nick Piggin6fe69002007-05-06 14:49:04 -07001510static struct page *__read_cache_page(struct address_space *mapping,
Fengguang Wu57f6b962007-10-16 01:24:37 -07001511 pgoff_t index,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 int (*filler)(void *,struct page*),
1513 void *data)
1514{
Nick Piggineb2be182007-10-16 01:24:57 -07001515 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 int err;
1517repeat:
1518 page = find_get_page(mapping, index);
1519 if (!page) {
Nick Piggineb2be182007-10-16 01:24:57 -07001520 page = page_cache_alloc_cold(mapping);
1521 if (!page)
1522 return ERR_PTR(-ENOMEM);
1523 err = add_to_page_cache_lru(page, mapping, index, GFP_KERNEL);
1524 if (unlikely(err)) {
1525 page_cache_release(page);
1526 if (err == -EEXIST)
1527 goto repeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 /* Presumably ENOMEM for radix tree node */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 return ERR_PTR(err);
1530 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 err = filler(data, page);
1532 if (err < 0) {
1533 page_cache_release(page);
1534 page = ERR_PTR(err);
1535 }
1536 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 return page;
1538}
1539
Nick Piggin6fe69002007-05-06 14:49:04 -07001540/*
1541 * Same as read_cache_page, but don't wait for page to become unlocked
1542 * after submitting it to the filler.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 */
Nick Piggin6fe69002007-05-06 14:49:04 -07001544struct page *read_cache_page_async(struct address_space *mapping,
Fengguang Wu57f6b962007-10-16 01:24:37 -07001545 pgoff_t index,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 int (*filler)(void *,struct page*),
1547 void *data)
1548{
1549 struct page *page;
1550 int err;
1551
1552retry:
1553 page = __read_cache_page(mapping, index, filler, data);
1554 if (IS_ERR(page))
David Howellsc855ff32007-05-09 13:42:20 +01001555 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 if (PageUptodate(page))
1557 goto out;
1558
1559 lock_page(page);
1560 if (!page->mapping) {
1561 unlock_page(page);
1562 page_cache_release(page);
1563 goto retry;
1564 }
1565 if (PageUptodate(page)) {
1566 unlock_page(page);
1567 goto out;
1568 }
1569 err = filler(data, page);
1570 if (err < 0) {
1571 page_cache_release(page);
David Howellsc855ff32007-05-09 13:42:20 +01001572 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 }
David Howellsc855ff32007-05-09 13:42:20 +01001574out:
Nick Piggin6fe69002007-05-06 14:49:04 -07001575 mark_page_accessed(page);
1576 return page;
1577}
1578EXPORT_SYMBOL(read_cache_page_async);
1579
1580/**
1581 * read_cache_page - read into page cache, fill it if needed
1582 * @mapping: the page's address_space
1583 * @index: the page index
1584 * @filler: function to perform the read
1585 * @data: destination for read data
1586 *
1587 * Read into the page cache. If a page already exists, and PageUptodate() is
1588 * not set, try to fill the page then wait for it to become unlocked.
1589 *
1590 * If the page does not get brought uptodate, return -EIO.
1591 */
1592struct page *read_cache_page(struct address_space *mapping,
Fengguang Wu57f6b962007-10-16 01:24:37 -07001593 pgoff_t index,
Nick Piggin6fe69002007-05-06 14:49:04 -07001594 int (*filler)(void *,struct page*),
1595 void *data)
1596{
1597 struct page *page;
1598
1599 page = read_cache_page_async(mapping, index, filler, data);
1600 if (IS_ERR(page))
1601 goto out;
1602 wait_on_page_locked(page);
1603 if (!PageUptodate(page)) {
1604 page_cache_release(page);
1605 page = ERR_PTR(-EIO);
1606 }
1607 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 return page;
1609}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610EXPORT_SYMBOL(read_cache_page);
1611
1612/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 * The logic we want is
1614 *
1615 * if suid or (sgid and xgrp)
1616 * remove privs
1617 */
Jens Axboe01de85e2006-10-17 19:50:36 +02001618int should_remove_suid(struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619{
1620 mode_t mode = dentry->d_inode->i_mode;
1621 int kill = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622
1623 /* suid always must be killed */
1624 if (unlikely(mode & S_ISUID))
1625 kill = ATTR_KILL_SUID;
1626
1627 /*
1628 * sgid without any exec bits is just a mandatory locking mark; leave
1629 * it alone. If some exec bits are set, it's a real sgid; kill it.
1630 */
1631 if (unlikely((mode & S_ISGID) && (mode & S_IXGRP)))
1632 kill |= ATTR_KILL_SGID;
1633
Jens Axboe01de85e2006-10-17 19:50:36 +02001634 if (unlikely(kill && !capable(CAP_FSETID)))
1635 return kill;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636
Jens Axboe01de85e2006-10-17 19:50:36 +02001637 return 0;
1638}
Mark Fashehd23a1472006-10-17 17:05:18 -07001639EXPORT_SYMBOL(should_remove_suid);
Jens Axboe01de85e2006-10-17 19:50:36 +02001640
1641int __remove_suid(struct dentry *dentry, int kill)
1642{
1643 struct iattr newattrs;
1644
1645 newattrs.ia_valid = ATTR_FORCE | kill;
1646 return notify_change(dentry, &newattrs);
1647}
1648
1649int remove_suid(struct dentry *dentry)
1650{
Serge E. Hallynb5376772007-10-16 23:31:36 -07001651 int killsuid = should_remove_suid(dentry);
1652 int killpriv = security_inode_need_killpriv(dentry);
1653 int error = 0;
Jens Axboe01de85e2006-10-17 19:50:36 +02001654
Serge E. Hallynb5376772007-10-16 23:31:36 -07001655 if (killpriv < 0)
1656 return killpriv;
1657 if (killpriv)
1658 error = security_inode_killpriv(dentry);
1659 if (!error && killsuid)
1660 error = __remove_suid(dentry, killsuid);
Jens Axboe01de85e2006-10-17 19:50:36 +02001661
Serge E. Hallynb5376772007-10-16 23:31:36 -07001662 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663}
1664EXPORT_SYMBOL(remove_suid);
1665
Nick Piggin2f718ff2007-10-16 01:24:59 -07001666static size_t __iovec_copy_from_user_inatomic(char *vaddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 const struct iovec *iov, size_t base, size_t bytes)
1668{
1669 size_t copied = 0, left = 0;
1670
1671 while (bytes) {
1672 char __user *buf = iov->iov_base + base;
1673 int copy = min(bytes, iov->iov_len - base);
1674
1675 base = 0;
Hiro Yoshiokac22ce142006-06-23 02:04:16 -07001676 left = __copy_from_user_inatomic_nocache(vaddr, buf, copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 copied += copy;
1678 bytes -= copy;
1679 vaddr += copy;
1680 iov++;
1681
NeilBrown01408c42006-06-25 05:47:58 -07001682 if (unlikely(left))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 }
1685 return copied - left;
1686}
1687
1688/*
Nick Piggin2f718ff2007-10-16 01:24:59 -07001689 * Copy as much as we can into the page and return the number of bytes which
1690 * were sucessfully copied. If a fault is encountered then return the number of
1691 * bytes which were copied.
1692 */
1693size_t iov_iter_copy_from_user_atomic(struct page *page,
1694 struct iov_iter *i, unsigned long offset, size_t bytes)
1695{
1696 char *kaddr;
1697 size_t copied;
1698
1699 BUG_ON(!in_atomic());
1700 kaddr = kmap_atomic(page, KM_USER0);
1701 if (likely(i->nr_segs == 1)) {
1702 int left;
1703 char __user *buf = i->iov->iov_base + i->iov_offset;
1704 left = __copy_from_user_inatomic_nocache(kaddr + offset,
1705 buf, bytes);
1706 copied = bytes - left;
1707 } else {
1708 copied = __iovec_copy_from_user_inatomic(kaddr + offset,
1709 i->iov, i->iov_offset, bytes);
1710 }
1711 kunmap_atomic(kaddr, KM_USER0);
1712
1713 return copied;
1714}
Nick Piggin89e10782007-10-16 01:25:07 -07001715EXPORT_SYMBOL(iov_iter_copy_from_user_atomic);
Nick Piggin2f718ff2007-10-16 01:24:59 -07001716
1717/*
1718 * This has the same sideeffects and return value as
1719 * iov_iter_copy_from_user_atomic().
1720 * The difference is that it attempts to resolve faults.
1721 * Page must not be locked.
1722 */
1723size_t iov_iter_copy_from_user(struct page *page,
1724 struct iov_iter *i, unsigned long offset, size_t bytes)
1725{
1726 char *kaddr;
1727 size_t copied;
1728
1729 kaddr = kmap(page);
1730 if (likely(i->nr_segs == 1)) {
1731 int left;
1732 char __user *buf = i->iov->iov_base + i->iov_offset;
1733 left = __copy_from_user_nocache(kaddr + offset, buf, bytes);
1734 copied = bytes - left;
1735 } else {
1736 copied = __iovec_copy_from_user_inatomic(kaddr + offset,
1737 i->iov, i->iov_offset, bytes);
1738 }
1739 kunmap(page);
1740 return copied;
1741}
Nick Piggin89e10782007-10-16 01:25:07 -07001742EXPORT_SYMBOL(iov_iter_copy_from_user);
Nick Piggin2f718ff2007-10-16 01:24:59 -07001743
1744static void __iov_iter_advance_iov(struct iov_iter *i, size_t bytes)
1745{
1746 if (likely(i->nr_segs == 1)) {
1747 i->iov_offset += bytes;
1748 } else {
1749 const struct iovec *iov = i->iov;
1750 size_t base = i->iov_offset;
1751
Nick Piggin124d3b72008-02-02 15:01:17 +01001752 /*
1753 * The !iov->iov_len check ensures we skip over unlikely
1754 * zero-length segments.
1755 */
1756 while (bytes || !iov->iov_len) {
Nick Piggin2f718ff2007-10-16 01:24:59 -07001757 int copy = min(bytes, iov->iov_len - base);
1758
1759 bytes -= copy;
1760 base += copy;
1761 if (iov->iov_len == base) {
1762 iov++;
1763 base = 0;
1764 }
1765 }
1766 i->iov = iov;
1767 i->iov_offset = base;
1768 }
1769}
1770
1771void iov_iter_advance(struct iov_iter *i, size_t bytes)
1772{
1773 BUG_ON(i->count < bytes);
1774
1775 __iov_iter_advance_iov(i, bytes);
1776 i->count -= bytes;
1777}
Nick Piggin89e10782007-10-16 01:25:07 -07001778EXPORT_SYMBOL(iov_iter_advance);
Nick Piggin2f718ff2007-10-16 01:24:59 -07001779
Nick Pigginafddba42007-10-16 01:25:01 -07001780/*
1781 * Fault in the first iovec of the given iov_iter, to a maximum length
1782 * of bytes. Returns 0 on success, or non-zero if the memory could not be
1783 * accessed (ie. because it is an invalid address).
1784 *
1785 * writev-intensive code may want this to prefault several iovecs -- that
1786 * would be possible (callers must not rely on the fact that _only_ the
1787 * first iovec will be faulted with the current implementation).
1788 */
1789int iov_iter_fault_in_readable(struct iov_iter *i, size_t bytes)
Nick Piggin2f718ff2007-10-16 01:24:59 -07001790{
Nick Piggin2f718ff2007-10-16 01:24:59 -07001791 char __user *buf = i->iov->iov_base + i->iov_offset;
Nick Pigginafddba42007-10-16 01:25:01 -07001792 bytes = min(bytes, i->iov->iov_len - i->iov_offset);
1793 return fault_in_pages_readable(buf, bytes);
Nick Piggin2f718ff2007-10-16 01:24:59 -07001794}
Nick Piggin89e10782007-10-16 01:25:07 -07001795EXPORT_SYMBOL(iov_iter_fault_in_readable);
Nick Piggin2f718ff2007-10-16 01:24:59 -07001796
1797/*
1798 * Return the count of just the current iov_iter segment.
1799 */
1800size_t iov_iter_single_seg_count(struct iov_iter *i)
1801{
1802 const struct iovec *iov = i->iov;
1803 if (i->nr_segs == 1)
1804 return i->count;
1805 else
1806 return min(i->count, iov->iov_len - i->iov_offset);
1807}
Nick Piggin89e10782007-10-16 01:25:07 -07001808EXPORT_SYMBOL(iov_iter_single_seg_count);
Nick Piggin2f718ff2007-10-16 01:24:59 -07001809
1810/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 * Performs necessary checks before doing a write
1812 *
Randy Dunlap485bb992006-06-23 02:03:49 -07001813 * Can adjust writing position or amount of bytes to write.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 * Returns appropriate error code that caller should return or
1815 * zero in case that write should be allowed.
1816 */
1817inline int generic_write_checks(struct file *file, loff_t *pos, size_t *count, int isblk)
1818{
1819 struct inode *inode = file->f_mapping->host;
1820 unsigned long limit = current->signal->rlim[RLIMIT_FSIZE].rlim_cur;
1821
1822 if (unlikely(*pos < 0))
1823 return -EINVAL;
1824
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 if (!isblk) {
1826 /* FIXME: this is for backwards compatibility with 2.4 */
1827 if (file->f_flags & O_APPEND)
1828 *pos = i_size_read(inode);
1829
1830 if (limit != RLIM_INFINITY) {
1831 if (*pos >= limit) {
1832 send_sig(SIGXFSZ, current, 0);
1833 return -EFBIG;
1834 }
1835 if (*count > limit - (typeof(limit))*pos) {
1836 *count = limit - (typeof(limit))*pos;
1837 }
1838 }
1839 }
1840
1841 /*
1842 * LFS rule
1843 */
1844 if (unlikely(*pos + *count > MAX_NON_LFS &&
1845 !(file->f_flags & O_LARGEFILE))) {
1846 if (*pos >= MAX_NON_LFS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 return -EFBIG;
1848 }
1849 if (*count > MAX_NON_LFS - (unsigned long)*pos) {
1850 *count = MAX_NON_LFS - (unsigned long)*pos;
1851 }
1852 }
1853
1854 /*
1855 * Are we about to exceed the fs block limit ?
1856 *
1857 * If we have written data it becomes a short write. If we have
1858 * exceeded without writing data we send a signal and return EFBIG.
1859 * Linus frestrict idea will clean these up nicely..
1860 */
1861 if (likely(!isblk)) {
1862 if (unlikely(*pos >= inode->i_sb->s_maxbytes)) {
1863 if (*count || *pos > inode->i_sb->s_maxbytes) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 return -EFBIG;
1865 }
1866 /* zero-length writes at ->s_maxbytes are OK */
1867 }
1868
1869 if (unlikely(*pos + *count > inode->i_sb->s_maxbytes))
1870 *count = inode->i_sb->s_maxbytes - *pos;
1871 } else {
David Howells93614012006-09-30 20:45:40 +02001872#ifdef CONFIG_BLOCK
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 loff_t isize;
1874 if (bdev_read_only(I_BDEV(inode)))
1875 return -EPERM;
1876 isize = i_size_read(inode);
1877 if (*pos >= isize) {
1878 if (*count || *pos > isize)
1879 return -ENOSPC;
1880 }
1881
1882 if (*pos + *count > isize)
1883 *count = isize - *pos;
David Howells93614012006-09-30 20:45:40 +02001884#else
1885 return -EPERM;
1886#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 }
1888 return 0;
1889}
1890EXPORT_SYMBOL(generic_write_checks);
1891
Nick Pigginafddba42007-10-16 01:25:01 -07001892int pagecache_write_begin(struct file *file, struct address_space *mapping,
1893 loff_t pos, unsigned len, unsigned flags,
1894 struct page **pagep, void **fsdata)
1895{
1896 const struct address_space_operations *aops = mapping->a_ops;
1897
1898 if (aops->write_begin) {
1899 return aops->write_begin(file, mapping, pos, len, flags,
1900 pagep, fsdata);
1901 } else {
1902 int ret;
1903 pgoff_t index = pos >> PAGE_CACHE_SHIFT;
1904 unsigned offset = pos & (PAGE_CACHE_SIZE - 1);
1905 struct inode *inode = mapping->host;
1906 struct page *page;
1907again:
1908 page = __grab_cache_page(mapping, index);
1909 *pagep = page;
1910 if (!page)
1911 return -ENOMEM;
1912
1913 if (flags & AOP_FLAG_UNINTERRUPTIBLE && !PageUptodate(page)) {
1914 /*
1915 * There is no way to resolve a short write situation
1916 * for a !Uptodate page (except by double copying in
1917 * the caller done by generic_perform_write_2copy).
1918 *
1919 * Instead, we have to bring it uptodate here.
1920 */
1921 ret = aops->readpage(file, page);
1922 page_cache_release(page);
1923 if (ret) {
1924 if (ret == AOP_TRUNCATED_PAGE)
1925 goto again;
1926 return ret;
1927 }
1928 goto again;
1929 }
1930
1931 ret = aops->prepare_write(file, page, offset, offset+len);
1932 if (ret) {
Nick Piggin55144762007-10-16 01:25:26 -07001933 unlock_page(page);
Nick Pigginafddba42007-10-16 01:25:01 -07001934 page_cache_release(page);
1935 if (pos + len > inode->i_size)
1936 vmtruncate(inode, inode->i_size);
Nick Pigginafddba42007-10-16 01:25:01 -07001937 }
1938 return ret;
1939 }
1940}
1941EXPORT_SYMBOL(pagecache_write_begin);
1942
1943int pagecache_write_end(struct file *file, struct address_space *mapping,
1944 loff_t pos, unsigned len, unsigned copied,
1945 struct page *page, void *fsdata)
1946{
1947 const struct address_space_operations *aops = mapping->a_ops;
1948 int ret;
1949
1950 if (aops->write_end) {
1951 mark_page_accessed(page);
1952 ret = aops->write_end(file, mapping, pos, len, copied,
1953 page, fsdata);
1954 } else {
1955 unsigned offset = pos & (PAGE_CACHE_SIZE - 1);
1956 struct inode *inode = mapping->host;
1957
1958 flush_dcache_page(page);
1959 ret = aops->commit_write(file, page, offset, offset+len);
1960 unlock_page(page);
1961 mark_page_accessed(page);
1962 page_cache_release(page);
Nick Pigginafddba42007-10-16 01:25:01 -07001963
1964 if (ret < 0) {
1965 if (pos + len > inode->i_size)
1966 vmtruncate(inode, inode->i_size);
1967 } else if (ret > 0)
1968 ret = min_t(size_t, copied, ret);
1969 else
1970 ret = copied;
1971 }
1972
1973 return ret;
1974}
1975EXPORT_SYMBOL(pagecache_write_end);
1976
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977ssize_t
1978generic_file_direct_write(struct kiocb *iocb, const struct iovec *iov,
1979 unsigned long *nr_segs, loff_t pos, loff_t *ppos,
1980 size_t count, size_t ocount)
1981{
1982 struct file *file = iocb->ki_filp;
1983 struct address_space *mapping = file->f_mapping;
1984 struct inode *inode = mapping->host;
1985 ssize_t written;
1986
1987 if (count != ocount)
1988 *nr_segs = iov_shorten((struct iovec *)iov, *nr_segs, count);
1989
1990 written = generic_file_direct_IO(WRITE, iocb, iov, pos, *nr_segs);
1991 if (written > 0) {
1992 loff_t end = pos + written;
1993 if (end > i_size_read(inode) && !S_ISBLK(inode->i_mode)) {
1994 i_size_write(inode, end);
1995 mark_inode_dirty(inode);
1996 }
1997 *ppos = end;
1998 }
1999
2000 /*
2001 * Sync the fs metadata but not the minor inode changes and
2002 * of course not the data as we did direct DMA for the IO.
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002003 * i_mutex is held, which protects generic_osync_inode() from
Zach Brown8459d862006-12-10 02:21:05 -08002004 * livelocking. AIO O_DIRECT ops attempt to sync metadata here.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 */
Zach Brown8459d862006-12-10 02:21:05 -08002006 if ((written >= 0 || written == -EIOCBQUEUED) &&
2007 ((file->f_flags & O_SYNC) || IS_SYNC(inode))) {
Hifumi Hisashi1e8a81c2005-06-25 14:54:32 -07002008 int err = generic_osync_inode(inode, mapping, OSYNC_METADATA);
2009 if (err < 0)
2010 written = err;
2011 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 return written;
2013}
2014EXPORT_SYMBOL(generic_file_direct_write);
2015
Nick Piggineb2be182007-10-16 01:24:57 -07002016/*
2017 * Find or create a page at the given pagecache position. Return the locked
2018 * page. This function is specifically for buffered writes.
2019 */
Nick Pigginafddba42007-10-16 01:25:01 -07002020struct page *__grab_cache_page(struct address_space *mapping, pgoff_t index)
Nick Piggineb2be182007-10-16 01:24:57 -07002021{
2022 int status;
2023 struct page *page;
2024repeat:
2025 page = find_lock_page(mapping, index);
2026 if (likely(page))
2027 return page;
2028
2029 page = page_cache_alloc(mapping);
2030 if (!page)
2031 return NULL;
2032 status = add_to_page_cache_lru(page, mapping, index, GFP_KERNEL);
2033 if (unlikely(status)) {
2034 page_cache_release(page);
2035 if (status == -EEXIST)
2036 goto repeat;
2037 return NULL;
2038 }
2039 return page;
2040}
Nick Pigginafddba42007-10-16 01:25:01 -07002041EXPORT_SYMBOL(__grab_cache_page);
Nick Piggineb2be182007-10-16 01:24:57 -07002042
Nick Pigginafddba42007-10-16 01:25:01 -07002043static ssize_t generic_perform_write_2copy(struct file *file,
2044 struct iov_iter *i, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045{
Andrew Mortonae374612007-10-16 01:24:55 -07002046 struct address_space *mapping = file->f_mapping;
Christoph Hellwigf5e54d62006-06-28 04:26:44 -07002047 const struct address_space_operations *a_ops = mapping->a_ops;
Nick Pigginafddba42007-10-16 01:25:01 -07002048 struct inode *inode = mapping->host;
2049 long status = 0;
2050 ssize_t written = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051
2052 do {
Nick Piggin08291422007-10-16 01:24:59 -07002053 struct page *src_page;
Nick Piggineb2be182007-10-16 01:24:57 -07002054 struct page *page;
Andrew Mortonae374612007-10-16 01:24:55 -07002055 pgoff_t index; /* Pagecache index for current page */
2056 unsigned long offset; /* Offset into pagecache page */
Nick Piggin08291422007-10-16 01:24:59 -07002057 unsigned long bytes; /* Bytes to write to page */
Andrew Mortonae374612007-10-16 01:24:55 -07002058 size_t copied; /* Bytes copied from user */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059
Andrew Mortonae374612007-10-16 01:24:55 -07002060 offset = (pos & (PAGE_CACHE_SIZE - 1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 index = pos >> PAGE_CACHE_SHIFT;
Nick Piggin2f718ff2007-10-16 01:24:59 -07002062 bytes = min_t(unsigned long, PAGE_CACHE_SIZE - offset,
Nick Pigginafddba42007-10-16 01:25:01 -07002063 iov_iter_count(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064
Nick Piggin08291422007-10-16 01:24:59 -07002065 /*
2066 * a non-NULL src_page indicates that we're doing the
2067 * copy via get_user_pages and kmap.
2068 */
2069 src_page = NULL;
Andrew Mortonae374612007-10-16 01:24:55 -07002070
Nick Piggin41cb8ac2007-10-16 01:24:53 -07002071 /*
2072 * Bring in the user page that we will copy from _first_.
2073 * Otherwise there's a nasty deadlock on copying from the
2074 * same page as we're writing to, without it being marked
2075 * up-to-date.
Nick Piggin08291422007-10-16 01:24:59 -07002076 *
2077 * Not only is this an optimisation, but it is also required
2078 * to check that the address is actually valid, when atomic
2079 * usercopies are used, below.
Nick Piggin41cb8ac2007-10-16 01:24:53 -07002080 */
Nick Pigginafddba42007-10-16 01:25:01 -07002081 if (unlikely(iov_iter_fault_in_readable(i, bytes))) {
Nick Piggin08291422007-10-16 01:24:59 -07002082 status = -EFAULT;
2083 break;
2084 }
Nick Piggineb2be182007-10-16 01:24:57 -07002085
2086 page = __grab_cache_page(mapping, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 if (!page) {
2088 status = -ENOMEM;
2089 break;
2090 }
2091
Nick Piggin08291422007-10-16 01:24:59 -07002092 /*
2093 * non-uptodate pages cannot cope with short copies, and we
2094 * cannot take a pagefault with the destination page locked.
2095 * So pin the source page to copy it.
2096 */
Nick Piggin674b8922007-10-16 01:25:03 -07002097 if (!PageUptodate(page) && !segment_eq(get_fs(), KERNEL_DS)) {
Nick Piggin08291422007-10-16 01:24:59 -07002098 unlock_page(page);
2099
2100 src_page = alloc_page(GFP_KERNEL);
2101 if (!src_page) {
2102 page_cache_release(page);
2103 status = -ENOMEM;
2104 break;
2105 }
2106
2107 /*
2108 * Cannot get_user_pages with a page locked for the
2109 * same reason as we can't take a page fault with a
2110 * page locked (as explained below).
2111 */
Nick Pigginafddba42007-10-16 01:25:01 -07002112 copied = iov_iter_copy_from_user(src_page, i,
Nick Piggin2f718ff2007-10-16 01:24:59 -07002113 offset, bytes);
Nick Piggin08291422007-10-16 01:24:59 -07002114 if (unlikely(copied == 0)) {
2115 status = -EFAULT;
2116 page_cache_release(page);
2117 page_cache_release(src_page);
2118 break;
2119 }
2120 bytes = copied;
2121
2122 lock_page(page);
2123 /*
2124 * Can't handle the page going uptodate here, because
2125 * that means we would use non-atomic usercopies, which
2126 * zero out the tail of the page, which can cause
2127 * zeroes to become transiently visible. We could just
2128 * use a non-zeroing copy, but the APIs aren't too
2129 * consistent.
2130 */
2131 if (unlikely(!page->mapping || PageUptodate(page))) {
2132 unlock_page(page);
2133 page_cache_release(page);
2134 page_cache_release(src_page);
2135 continue;
2136 }
Nick Piggin08291422007-10-16 01:24:59 -07002137 }
2138
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 status = a_ops->prepare_write(file, page, offset, offset+bytes);
Nick Piggin64649a52007-10-16 01:24:56 -07002140 if (unlikely(status))
2141 goto fs_write_aop_error;
Zach Brown994fc28c2005-12-15 14:28:17 -08002142
Nick Piggin08291422007-10-16 01:24:59 -07002143 if (!src_page) {
2144 /*
2145 * Must not enter the pagefault handler here, because
2146 * we hold the page lock, so we might recursively
2147 * deadlock on the same lock, or get an ABBA deadlock
2148 * against a different lock, or against the mmap_sem
2149 * (which nests outside the page lock). So increment
2150 * preempt count, and use _atomic usercopies.
2151 *
2152 * The page is uptodate so we are OK to encounter a
2153 * short copy: if unmodified parts of the page are
2154 * marked dirty and written out to disk, it doesn't
2155 * really matter.
2156 */
2157 pagefault_disable();
Nick Pigginafddba42007-10-16 01:25:01 -07002158 copied = iov_iter_copy_from_user_atomic(page, i,
Nick Piggin2f718ff2007-10-16 01:24:59 -07002159 offset, bytes);
Nick Piggin08291422007-10-16 01:24:59 -07002160 pagefault_enable();
2161 } else {
2162 void *src, *dst;
2163 src = kmap_atomic(src_page, KM_USER0);
2164 dst = kmap_atomic(page, KM_USER1);
2165 memcpy(dst + offset, src + offset, bytes);
2166 kunmap_atomic(dst, KM_USER1);
2167 kunmap_atomic(src, KM_USER0);
2168 copied = bytes;
2169 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 flush_dcache_page(page);
Nick Piggin4a9e5ef2007-10-16 01:24:58 -07002171
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 status = a_ops->commit_write(file, page, offset, offset+bytes);
Nick Piggin55144762007-10-16 01:25:26 -07002173 if (unlikely(status < 0))
Nick Piggin64649a52007-10-16 01:24:56 -07002174 goto fs_write_aop_error;
Nick Piggin64649a52007-10-16 01:24:56 -07002175 if (unlikely(status > 0)) /* filesystem did partial write */
Nick Piggin08291422007-10-16 01:24:59 -07002176 copied = min_t(size_t, copied, status);
2177
2178 unlock_page(page);
2179 mark_page_accessed(page);
2180 page_cache_release(page);
2181 if (src_page)
2182 page_cache_release(src_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183
Nick Pigginafddba42007-10-16 01:25:01 -07002184 iov_iter_advance(i, copied);
Nick Piggin4a9e5ef2007-10-16 01:24:58 -07002185 pos += copied;
Nick Pigginafddba42007-10-16 01:25:01 -07002186 written += copied;
Nick Piggin4a9e5ef2007-10-16 01:24:58 -07002187
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 balance_dirty_pages_ratelimited(mapping);
2189 cond_resched();
Nick Piggin64649a52007-10-16 01:24:56 -07002190 continue;
2191
2192fs_write_aop_error:
Nick Piggin55144762007-10-16 01:25:26 -07002193 unlock_page(page);
Nick Piggin64649a52007-10-16 01:24:56 -07002194 page_cache_release(page);
Nick Piggin08291422007-10-16 01:24:59 -07002195 if (src_page)
2196 page_cache_release(src_page);
Nick Piggin64649a52007-10-16 01:24:56 -07002197
2198 /*
2199 * prepare_write() may have instantiated a few blocks
2200 * outside i_size. Trim these off again. Don't need
2201 * i_size_read because we hold i_mutex.
2202 */
2203 if (pos + bytes > inode->i_size)
2204 vmtruncate(inode, inode->i_size);
Nick Piggin55144762007-10-16 01:25:26 -07002205 break;
Nick Pigginafddba42007-10-16 01:25:01 -07002206 } while (iov_iter_count(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207
Nick Pigginafddba42007-10-16 01:25:01 -07002208 return written ? written : status;
2209}
2210
2211static ssize_t generic_perform_write(struct file *file,
2212 struct iov_iter *i, loff_t pos)
2213{
2214 struct address_space *mapping = file->f_mapping;
2215 const struct address_space_operations *a_ops = mapping->a_ops;
2216 long status = 0;
2217 ssize_t written = 0;
Nick Piggin674b8922007-10-16 01:25:03 -07002218 unsigned int flags = 0;
2219
2220 /*
2221 * Copies from kernel address space cannot fail (NFSD is a big user).
2222 */
2223 if (segment_eq(get_fs(), KERNEL_DS))
2224 flags |= AOP_FLAG_UNINTERRUPTIBLE;
Nick Pigginafddba42007-10-16 01:25:01 -07002225
2226 do {
2227 struct page *page;
2228 pgoff_t index; /* Pagecache index for current page */
2229 unsigned long offset; /* Offset into pagecache page */
2230 unsigned long bytes; /* Bytes to write to page */
2231 size_t copied; /* Bytes copied from user */
2232 void *fsdata;
2233
2234 offset = (pos & (PAGE_CACHE_SIZE - 1));
2235 index = pos >> PAGE_CACHE_SHIFT;
2236 bytes = min_t(unsigned long, PAGE_CACHE_SIZE - offset,
2237 iov_iter_count(i));
2238
2239again:
2240
2241 /*
2242 * Bring in the user page that we will copy from _first_.
2243 * Otherwise there's a nasty deadlock on copying from the
2244 * same page as we're writing to, without it being marked
2245 * up-to-date.
2246 *
2247 * Not only is this an optimisation, but it is also required
2248 * to check that the address is actually valid, when atomic
2249 * usercopies are used, below.
2250 */
2251 if (unlikely(iov_iter_fault_in_readable(i, bytes))) {
2252 status = -EFAULT;
2253 break;
2254 }
2255
Nick Piggin674b8922007-10-16 01:25:03 -07002256 status = a_ops->write_begin(file, mapping, pos, bytes, flags,
Nick Pigginafddba42007-10-16 01:25:01 -07002257 &page, &fsdata);
2258 if (unlikely(status))
2259 break;
2260
2261 pagefault_disable();
2262 copied = iov_iter_copy_from_user_atomic(page, i, offset, bytes);
2263 pagefault_enable();
2264 flush_dcache_page(page);
2265
2266 status = a_ops->write_end(file, mapping, pos, bytes, copied,
2267 page, fsdata);
2268 if (unlikely(status < 0))
2269 break;
2270 copied = status;
2271
2272 cond_resched();
2273
Nick Piggin124d3b72008-02-02 15:01:17 +01002274 iov_iter_advance(i, copied);
Nick Pigginafddba42007-10-16 01:25:01 -07002275 if (unlikely(copied == 0)) {
2276 /*
2277 * If we were unable to copy any data at all, we must
2278 * fall back to a single segment length write.
2279 *
2280 * If we didn't fallback here, we could livelock
2281 * because not all segments in the iov can be copied at
2282 * once without a pagefault.
2283 */
2284 bytes = min_t(unsigned long, PAGE_CACHE_SIZE - offset,
2285 iov_iter_single_seg_count(i));
2286 goto again;
2287 }
Nick Pigginafddba42007-10-16 01:25:01 -07002288 pos += copied;
2289 written += copied;
2290
2291 balance_dirty_pages_ratelimited(mapping);
2292
2293 } while (iov_iter_count(i));
2294
2295 return written ? written : status;
2296}
2297
2298ssize_t
2299generic_file_buffered_write(struct kiocb *iocb, const struct iovec *iov,
2300 unsigned long nr_segs, loff_t pos, loff_t *ppos,
2301 size_t count, ssize_t written)
2302{
2303 struct file *file = iocb->ki_filp;
2304 struct address_space *mapping = file->f_mapping;
2305 const struct address_space_operations *a_ops = mapping->a_ops;
2306 struct inode *inode = mapping->host;
2307 ssize_t status;
2308 struct iov_iter i;
2309
2310 iov_iter_init(&i, iov, nr_segs, count, written);
2311 if (a_ops->write_begin)
2312 status = generic_perform_write(file, &i, pos);
2313 else
2314 status = generic_perform_write_2copy(file, &i, pos);
2315
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 if (likely(status >= 0)) {
Nick Pigginafddba42007-10-16 01:25:01 -07002317 written += status;
2318 *ppos = pos + status;
2319
2320 /*
2321 * For now, when the user asks for O_SYNC, we'll actually give
2322 * O_DSYNC
2323 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 if (unlikely((file->f_flags & O_SYNC) || IS_SYNC(inode))) {
2325 if (!a_ops->writepage || !is_sync_kiocb(iocb))
2326 status = generic_osync_inode(inode, mapping,
2327 OSYNC_METADATA|OSYNC_DATA);
2328 }
2329 }
2330
2331 /*
2332 * If we get here for O_DIRECT writes then we must have fallen through
2333 * to buffered writes (block instantiation inside i_size). So we sync
2334 * the file data here, to try to honour O_DIRECT expectations.
2335 */
2336 if (unlikely(file->f_flags & O_DIRECT) && written)
2337 status = filemap_write_and_wait(mapping);
2338
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 return written ? written : status;
2340}
2341EXPORT_SYMBOL(generic_file_buffered_write);
2342
Adrian Bunk5ce78522005-09-10 00:26:28 -07002343static ssize_t
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344__generic_file_aio_write_nolock(struct kiocb *iocb, const struct iovec *iov,
2345 unsigned long nr_segs, loff_t *ppos)
2346{
2347 struct file *file = iocb->ki_filp;
Jeff Moyerfb5527e2006-10-19 23:28:13 -07002348 struct address_space * mapping = file->f_mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 size_t ocount; /* original count */
2350 size_t count; /* after file limit checks */
2351 struct inode *inode = mapping->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 loff_t pos;
2353 ssize_t written;
2354 ssize_t err;
2355
2356 ocount = 0;
Dmitriy Monakhov0ceb3312007-05-08 00:23:02 -07002357 err = generic_segment_checks(iov, &nr_segs, &ocount, VERIFY_READ);
2358 if (err)
2359 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360
2361 count = ocount;
2362 pos = *ppos;
2363
2364 vfs_check_frozen(inode->i_sb, SB_FREEZE_WRITE);
2365
2366 /* We can write back this queue in page reclaim */
2367 current->backing_dev_info = mapping->backing_dev_info;
2368 written = 0;
2369
2370 err = generic_write_checks(file, &pos, &count, S_ISBLK(inode->i_mode));
2371 if (err)
2372 goto out;
2373
2374 if (count == 0)
2375 goto out;
2376
Josef "Jeff" Sipekd3ac7f82006-12-08 02:36:44 -08002377 err = remove_suid(file->f_path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 if (err)
2379 goto out;
2380
Christoph Hellwig870f4812006-01-09 20:52:01 -08002381 file_update_time(file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382
2383 /* coalesce the iovecs and go direct-to-BIO for O_DIRECT */
2384 if (unlikely(file->f_flags & O_DIRECT)) {
Jeff Moyerfb5527e2006-10-19 23:28:13 -07002385 loff_t endbyte;
2386 ssize_t written_buffered;
2387
2388 written = generic_file_direct_write(iocb, iov, &nr_segs, pos,
2389 ppos, count, ocount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 if (written < 0 || written == count)
2391 goto out;
2392 /*
2393 * direct-io write to a hole: fall through to buffered I/O
2394 * for completing the rest of the request.
2395 */
2396 pos += written;
2397 count -= written;
Jeff Moyerfb5527e2006-10-19 23:28:13 -07002398 written_buffered = generic_file_buffered_write(iocb, iov,
2399 nr_segs, pos, ppos, count,
2400 written);
2401 /*
2402 * If generic_file_buffered_write() retuned a synchronous error
2403 * then we want to return the number of bytes which were
2404 * direct-written, or the error code if that was zero. Note
2405 * that this differs from normal direct-io semantics, which
2406 * will return -EFOO even if some bytes were written.
2407 */
2408 if (written_buffered < 0) {
2409 err = written_buffered;
2410 goto out;
2411 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412
Jeff Moyerfb5527e2006-10-19 23:28:13 -07002413 /*
2414 * We need to ensure that the page cache pages are written to
2415 * disk and invalidated to preserve the expected O_DIRECT
2416 * semantics.
2417 */
2418 endbyte = pos + written_buffered - written - 1;
Mark Fashehef51c972007-05-08 00:27:10 -07002419 err = do_sync_mapping_range(file->f_mapping, pos, endbyte,
2420 SYNC_FILE_RANGE_WAIT_BEFORE|
2421 SYNC_FILE_RANGE_WRITE|
2422 SYNC_FILE_RANGE_WAIT_AFTER);
Jeff Moyerfb5527e2006-10-19 23:28:13 -07002423 if (err == 0) {
2424 written = written_buffered;
2425 invalidate_mapping_pages(mapping,
2426 pos >> PAGE_CACHE_SHIFT,
2427 endbyte >> PAGE_CACHE_SHIFT);
2428 } else {
2429 /*
2430 * We don't know how much we wrote, so just return
2431 * the number of bytes which were direct-written
2432 */
2433 }
2434 } else {
2435 written = generic_file_buffered_write(iocb, iov, nr_segs,
2436 pos, ppos, count, written);
2437 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438out:
2439 current->backing_dev_info = NULL;
2440 return written ? written : err;
2441}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442
Badari Pulavarty027445c2006-09-30 23:28:46 -07002443ssize_t generic_file_aio_write_nolock(struct kiocb *iocb,
2444 const struct iovec *iov, unsigned long nr_segs, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445{
2446 struct file *file = iocb->ki_filp;
2447 struct address_space *mapping = file->f_mapping;
2448 struct inode *inode = mapping->host;
2449 ssize_t ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450
Badari Pulavarty027445c2006-09-30 23:28:46 -07002451 BUG_ON(iocb->ki_pos != pos);
2452
2453 ret = __generic_file_aio_write_nolock(iocb, iov, nr_segs,
2454 &iocb->ki_pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455
2456 if (ret > 0 && ((file->f_flags & O_SYNC) || IS_SYNC(inode))) {
Badari Pulavarty027445c2006-09-30 23:28:46 -07002457 ssize_t err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458
2459 err = sync_page_range_nolock(inode, mapping, pos, ret);
2460 if (err < 0)
2461 ret = err;
2462 }
2463 return ret;
2464}
Badari Pulavarty027445c2006-09-30 23:28:46 -07002465EXPORT_SYMBOL(generic_file_aio_write_nolock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466
Badari Pulavarty027445c2006-09-30 23:28:46 -07002467ssize_t generic_file_aio_write(struct kiocb *iocb, const struct iovec *iov,
2468 unsigned long nr_segs, loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469{
2470 struct file *file = iocb->ki_filp;
2471 struct address_space *mapping = file->f_mapping;
2472 struct inode *inode = mapping->host;
2473 ssize_t ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474
2475 BUG_ON(iocb->ki_pos != pos);
2476
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002477 mutex_lock(&inode->i_mutex);
Badari Pulavarty027445c2006-09-30 23:28:46 -07002478 ret = __generic_file_aio_write_nolock(iocb, iov, nr_segs,
2479 &iocb->ki_pos);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002480 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481
2482 if (ret > 0 && ((file->f_flags & O_SYNC) || IS_SYNC(inode))) {
2483 ssize_t err;
2484
2485 err = sync_page_range(inode, mapping, pos, ret);
2486 if (err < 0)
2487 ret = err;
2488 }
2489 return ret;
2490}
2491EXPORT_SYMBOL(generic_file_aio_write);
2492
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493/*
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002494 * Called under i_mutex for writes to S_ISREG files. Returns -EIO if something
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 * went wrong during pagecache shootdown.
2496 */
Adrian Bunk5ce78522005-09-10 00:26:28 -07002497static ssize_t
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498generic_file_direct_IO(int rw, struct kiocb *iocb, const struct iovec *iov,
2499 loff_t offset, unsigned long nr_segs)
2500{
2501 struct file *file = iocb->ki_filp;
2502 struct address_space *mapping = file->f_mapping;
2503 ssize_t retval;
Zach Brown65b82912007-03-16 13:38:11 -08002504 size_t write_len;
2505 pgoff_t end = 0; /* silence gcc */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506
2507 /*
2508 * If it's a write, unmap all mmappings of the file up-front. This
2509 * will cause any pte dirty bits to be propagated into the pageframes
2510 * for the subsequent filemap_write_and_wait().
2511 */
2512 if (rw == WRITE) {
2513 write_len = iov_length(iov, nr_segs);
Zach Brown65b82912007-03-16 13:38:11 -08002514 end = (offset + write_len - 1) >> PAGE_CACHE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 if (mapping_mapped(mapping))
2516 unmap_mapping_range(mapping, offset, write_len, 0);
2517 }
2518
2519 retval = filemap_write_and_wait(mapping);
Zach Brown65b82912007-03-16 13:38:11 -08002520 if (retval)
2521 goto out;
2522
2523 /*
2524 * After a write we want buffered reads to be sure to go to disk to get
2525 * the new data. We invalidate clean cached page from the region we're
2526 * about to write. We do this *before* the write so that we can return
2527 * -EIO without clobbering -EIOCBQUEUED from ->direct_IO().
2528 */
2529 if (rw == WRITE && mapping->nrpages) {
2530 retval = invalidate_inode_pages2_range(mapping,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 offset >> PAGE_CACHE_SHIFT, end);
Zach Brown65b82912007-03-16 13:38:11 -08002532 if (retval)
2533 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 }
Zach Brown65b82912007-03-16 13:38:11 -08002535
2536 retval = mapping->a_ops->direct_IO(rw, iocb, iov, offset, nr_segs);
Zach Brown65b82912007-03-16 13:38:11 -08002537
2538 /*
2539 * Finally, try again to invalidate clean pages which might have been
Zach Brownbdb76ef2007-10-30 11:45:46 -07002540 * cached by non-direct readahead, or faulted in by get_user_pages()
2541 * if the source of the write was an mmap'ed region of the file
2542 * we're writing. Either one is a pretty crazy thing to do,
2543 * so we don't support it 100%. If this invalidation
2544 * fails, tough, the write still worked...
Zach Brown65b82912007-03-16 13:38:11 -08002545 */
2546 if (rw == WRITE && mapping->nrpages) {
Zach Brownbdb76ef2007-10-30 11:45:46 -07002547 invalidate_inode_pages2_range(mapping, offset >> PAGE_CACHE_SHIFT, end);
Zach Brown65b82912007-03-16 13:38:11 -08002548 }
2549out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 return retval;
2551}
David Howellscf9a2ae2006-08-29 19:05:54 +01002552
2553/**
2554 * try_to_release_page() - release old fs-specific metadata on a page
2555 *
2556 * @page: the page which the kernel is trying to free
2557 * @gfp_mask: memory allocation flags (and I/O mode)
2558 *
2559 * The address_space is to try to release any data against the page
2560 * (presumably at page->private). If the release was successful, return `1'.
2561 * Otherwise return zero.
2562 *
2563 * The @gfp_mask argument specifies whether I/O may be performed to release
2564 * this page (__GFP_IO), and whether the call may block (__GFP_WAIT).
2565 *
2566 * NOTE: @gfp_mask may go away, and this function may become non-blocking.
2567 */
2568int try_to_release_page(struct page *page, gfp_t gfp_mask)
2569{
2570 struct address_space * const mapping = page->mapping;
2571
2572 BUG_ON(!PageLocked(page));
2573 if (PageWriteback(page))
2574 return 0;
2575
2576 if (mapping && mapping->a_ops->releasepage)
2577 return mapping->a_ops->releasepage(page, gfp_mask);
2578 return try_to_free_buffers(page);
2579}
2580
2581EXPORT_SYMBOL(try_to_release_page);