]> bbs.cooldavid.org Git - net-next-2.6.git/blame - mm/filemap.c
readahead: combine file_ra_state.prev_index/prev_offset into prev_pos
[net-next-2.6.git] / mm / filemap.c
CommitLineData
1da177e4
LT
1/*
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 */
1da177e4
LT
12#include <linux/module.h>
13#include <linux/slab.h>
14#include <linux/compiler.h>
15#include <linux/fs.h>
c22ce143 16#include <linux/uaccess.h>
1da177e4 17#include <linux/aio.h>
c59ede7b 18#include <linux/capability.h>
1da177e4
LT
19#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>
28#include <linux/pagevec.h>
29#include <linux/blkdev.h>
30#include <linux/security.h>
31#include <linux/syscalls.h>
44110fe3 32#include <linux/cpuset.h>
ceffc078 33#include "filemap.h"
0f8053a5
NP
34#include "internal.h"
35
1da177e4 36/*
1da177e4
LT
37 * FIXME: remove all knowledge of the buffer layer from the core VM
38 */
39#include <linux/buffer_head.h> /* for generic_osync_inode */
40
1da177e4
LT
41#include <asm/mman.h>
42
5ce7852c
AB
43static ssize_t
44generic_file_direct_IO(int rw, struct kiocb *iocb, const struct iovec *iov,
45 loff_t offset, unsigned long nr_segs);
46
1da177e4
LT
47/*
48 * Shared mappings implemented 30.11.1994. It's not fully working yet,
49 * though.
50 *
51 * Shared mappings now work. 15.8.1995 Bruno.
52 *
53 * finished 'unifying' the page and buffer cache and SMP-threaded the
54 * page-cache, 21.05.1999, Ingo Molnar <mingo@redhat.com>
55 *
56 * SMP-threaded pagemap-LRU 1999, Andrea Arcangeli <andrea@suse.de>
57 */
58
59/*
60 * Lock ordering:
61 *
62 * ->i_mmap_lock (vmtruncate)
63 * ->private_lock (__free_pte->__set_page_dirty_buffers)
5d337b91
HD
64 * ->swap_lock (exclusive_swap_page, others)
65 * ->mapping->tree_lock
1da177e4 66 *
1b1dcc1b 67 * ->i_mutex
1da177e4
LT
68 * ->i_mmap_lock (truncate->unmap_mapping_range)
69 *
70 * ->mmap_sem
71 * ->i_mmap_lock
b8072f09 72 * ->page_table_lock or pte_lock (various, mainly in memory.c)
1da177e4
LT
73 * ->mapping->tree_lock (arch-dependent flush_dcache_mmap_lock)
74 *
75 * ->mmap_sem
76 * ->lock_page (access_process_vm)
77 *
82591e6e
NP
78 * ->i_mutex (generic_file_buffered_write)
79 * ->mmap_sem (fault_in_pages_readable->do_page_fault)
1da177e4 80 *
1b1dcc1b 81 * ->i_mutex
1da177e4
LT
82 * ->i_alloc_sem (various)
83 *
84 * ->inode_lock
85 * ->sb_lock (fs/fs-writeback.c)
86 * ->mapping->tree_lock (__sync_single_inode)
87 *
88 * ->i_mmap_lock
89 * ->anon_vma.lock (vma_adjust)
90 *
91 * ->anon_vma.lock
b8072f09 92 * ->page_table_lock or pte_lock (anon_vma_prepare and various)
1da177e4 93 *
b8072f09 94 * ->page_table_lock or pte_lock
5d337b91 95 * ->swap_lock (try_to_unmap_one)
1da177e4
LT
96 * ->private_lock (try_to_unmap_one)
97 * ->tree_lock (try_to_unmap_one)
98 * ->zone.lru_lock (follow_page->mark_page_accessed)
053837fc 99 * ->zone.lru_lock (check_pte_range->isolate_lru_page)
1da177e4
LT
100 * ->private_lock (page_remove_rmap->set_page_dirty)
101 * ->tree_lock (page_remove_rmap->set_page_dirty)
102 * ->inode_lock (page_remove_rmap->set_page_dirty)
103 * ->inode_lock (zap_pte_range->set_page_dirty)
104 * ->private_lock (zap_pte_range->__set_page_dirty_buffers)
105 *
106 * ->task->proc_lock
107 * ->dcache_lock (proc_pid_lookup)
108 */
109
110/*
111 * Remove a page from the page cache and free it. Caller has to make
112 * sure the page is locked and that nobody else uses it - or that usage
113 * is safe. The caller must hold a write_lock on the mapping's tree_lock.
114 */
115void __remove_from_page_cache(struct page *page)
116{
117 struct address_space *mapping = page->mapping;
118
119 radix_tree_delete(&mapping->page_tree, page->index);
120 page->mapping = NULL;
121 mapping->nrpages--;
347ce434 122 __dec_zone_page_state(page, NR_FILE_PAGES);
45426812 123 BUG_ON(page_mapped(page));
1da177e4
LT
124}
125
126void remove_from_page_cache(struct page *page)
127{
128 struct address_space *mapping = page->mapping;
129
cd7619d6 130 BUG_ON(!PageLocked(page));
1da177e4
LT
131
132 write_lock_irq(&mapping->tree_lock);
133 __remove_from_page_cache(page);
134 write_unlock_irq(&mapping->tree_lock);
135}
136
137static int sync_page(void *word)
138{
139 struct address_space *mapping;
140 struct page *page;
141
07808b74 142 page = container_of((unsigned long *)word, struct page, flags);
1da177e4
LT
143
144 /*
dd1d5afc
WLII
145 * page_mapping() is being called without PG_locked held.
146 * Some knowledge of the state and use of the page is used to
147 * reduce the requirements down to a memory barrier.
148 * The danger here is of a stale page_mapping() return value
149 * indicating a struct address_space different from the one it's
150 * associated with when it is associated with one.
151 * After smp_mb(), it's either the correct page_mapping() for
152 * the page, or an old page_mapping() and the page's own
153 * page_mapping() has gone NULL.
154 * The ->sync_page() address_space operation must tolerate
155 * page_mapping() going NULL. By an amazing coincidence,
156 * this comes about because none of the users of the page
157 * in the ->sync_page() methods make essential use of the
158 * page_mapping(), merely passing the page down to the backing
159 * device's unplug functions when it's non-NULL, which in turn
4c21e2f2 160 * ignore it for all cases but swap, where only page_private(page) is
dd1d5afc
WLII
161 * of interest. When page_mapping() does go NULL, the entire
162 * call stack gracefully ignores the page and returns.
163 * -- wli
1da177e4
LT
164 */
165 smp_mb();
166 mapping = page_mapping(page);
167 if (mapping && mapping->a_ops && mapping->a_ops->sync_page)
168 mapping->a_ops->sync_page(page);
169 io_schedule();
170 return 0;
171}
172
173/**
485bb99b 174 * __filemap_fdatawrite_range - start writeback on mapping dirty pages in range
67be2dd1
MW
175 * @mapping: address space structure to write
176 * @start: offset in bytes where the range starts
469eb4d0 177 * @end: offset in bytes where the range ends (inclusive)
67be2dd1 178 * @sync_mode: enable synchronous operation
1da177e4 179 *
485bb99b
RD
180 * Start writeback against all of a mapping's dirty pages that lie
181 * within the byte offsets <start, end> inclusive.
182 *
1da177e4 183 * If sync_mode is WB_SYNC_ALL then this is a "data integrity" operation, as
485bb99b 184 * opposed to a regular memory cleansing writeback. The difference between
1da177e4
LT
185 * these two operations is that if a dirty page/buffer is encountered, it must
186 * be waited upon, and not just skipped over.
187 */
ebcf28e1
AM
188int __filemap_fdatawrite_range(struct address_space *mapping, loff_t start,
189 loff_t end, int sync_mode)
1da177e4
LT
190{
191 int ret;
192 struct writeback_control wbc = {
193 .sync_mode = sync_mode,
194 .nr_to_write = mapping->nrpages * 2,
111ebb6e
OH
195 .range_start = start,
196 .range_end = end,
1da177e4
LT
197 };
198
199 if (!mapping_cap_writeback_dirty(mapping))
200 return 0;
201
202 ret = do_writepages(mapping, &wbc);
203 return ret;
204}
205
206static inline int __filemap_fdatawrite(struct address_space *mapping,
207 int sync_mode)
208{
111ebb6e 209 return __filemap_fdatawrite_range(mapping, 0, LLONG_MAX, sync_mode);
1da177e4
LT
210}
211
212int filemap_fdatawrite(struct address_space *mapping)
213{
214 return __filemap_fdatawrite(mapping, WB_SYNC_ALL);
215}
216EXPORT_SYMBOL(filemap_fdatawrite);
217
ebcf28e1
AM
218static int filemap_fdatawrite_range(struct address_space *mapping, loff_t start,
219 loff_t end)
1da177e4
LT
220{
221 return __filemap_fdatawrite_range(mapping, start, end, WB_SYNC_ALL);
222}
223
485bb99b
RD
224/**
225 * filemap_flush - mostly a non-blocking flush
226 * @mapping: target address_space
227 *
1da177e4
LT
228 * This is a mostly non-blocking flush. Not suitable for data-integrity
229 * purposes - I/O may not be started against all dirty pages.
230 */
231int filemap_flush(struct address_space *mapping)
232{
233 return __filemap_fdatawrite(mapping, WB_SYNC_NONE);
234}
235EXPORT_SYMBOL(filemap_flush);
236
485bb99b
RD
237/**
238 * wait_on_page_writeback_range - wait for writeback to complete
239 * @mapping: target address_space
240 * @start: beginning page index
241 * @end: ending page index
242 *
1da177e4
LT
243 * Wait for writeback to complete against pages indexed by start->end
244 * inclusive
245 */
ebcf28e1 246int wait_on_page_writeback_range(struct address_space *mapping,
1da177e4
LT
247 pgoff_t start, pgoff_t end)
248{
249 struct pagevec pvec;
250 int nr_pages;
251 int ret = 0;
252 pgoff_t index;
253
254 if (end < start)
255 return 0;
256
257 pagevec_init(&pvec, 0);
258 index = start;
259 while ((index <= end) &&
260 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index,
261 PAGECACHE_TAG_WRITEBACK,
262 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1)) != 0) {
263 unsigned i;
264
265 for (i = 0; i < nr_pages; i++) {
266 struct page *page = pvec.pages[i];
267
268 /* until radix tree lookup accepts end_index */
269 if (page->index > end)
270 continue;
271
272 wait_on_page_writeback(page);
273 if (PageError(page))
274 ret = -EIO;
275 }
276 pagevec_release(&pvec);
277 cond_resched();
278 }
279
280 /* Check for outstanding write errors */
281 if (test_and_clear_bit(AS_ENOSPC, &mapping->flags))
282 ret = -ENOSPC;
283 if (test_and_clear_bit(AS_EIO, &mapping->flags))
284 ret = -EIO;
285
286 return ret;
287}
288
485bb99b
RD
289/**
290 * sync_page_range - write and wait on all pages in the passed range
291 * @inode: target inode
292 * @mapping: target address_space
293 * @pos: beginning offset in pages to write
294 * @count: number of bytes to write
295 *
1da177e4
LT
296 * Write and wait upon all the pages in the passed range. This is a "data
297 * integrity" operation. It waits upon in-flight writeout before starting and
298 * waiting upon new writeout. If there was an IO error, return it.
299 *
1b1dcc1b 300 * We need to re-take i_mutex during the generic_osync_inode list walk because
1da177e4
LT
301 * it is otherwise livelockable.
302 */
303int sync_page_range(struct inode *inode, struct address_space *mapping,
268fc16e 304 loff_t pos, loff_t count)
1da177e4
LT
305{
306 pgoff_t start = pos >> PAGE_CACHE_SHIFT;
307 pgoff_t end = (pos + count - 1) >> PAGE_CACHE_SHIFT;
308 int ret;
309
310 if (!mapping_cap_writeback_dirty(mapping) || !count)
311 return 0;
312 ret = filemap_fdatawrite_range(mapping, pos, pos + count - 1);
313 if (ret == 0) {
1b1dcc1b 314 mutex_lock(&inode->i_mutex);
1da177e4 315 ret = generic_osync_inode(inode, mapping, OSYNC_METADATA);
1b1dcc1b 316 mutex_unlock(&inode->i_mutex);
1da177e4
LT
317 }
318 if (ret == 0)
319 ret = wait_on_page_writeback_range(mapping, start, end);
320 return ret;
321}
322EXPORT_SYMBOL(sync_page_range);
323
485bb99b
RD
324/**
325 * sync_page_range_nolock
326 * @inode: target inode
327 * @mapping: target address_space
328 * @pos: beginning offset in pages to write
329 * @count: number of bytes to write
330 *
72fd4a35 331 * Note: Holding i_mutex across sync_page_range_nolock() is not a good idea
1da177e4
LT
332 * as it forces O_SYNC writers to different parts of the same file
333 * to be serialised right until io completion.
334 */
268fc16e
OH
335int sync_page_range_nolock(struct inode *inode, struct address_space *mapping,
336 loff_t pos, loff_t count)
1da177e4
LT
337{
338 pgoff_t start = pos >> PAGE_CACHE_SHIFT;
339 pgoff_t end = (pos + count - 1) >> PAGE_CACHE_SHIFT;
340 int ret;
341
342 if (!mapping_cap_writeback_dirty(mapping) || !count)
343 return 0;
344 ret = filemap_fdatawrite_range(mapping, pos, pos + count - 1);
345 if (ret == 0)
346 ret = generic_osync_inode(inode, mapping, OSYNC_METADATA);
347 if (ret == 0)
348 ret = wait_on_page_writeback_range(mapping, start, end);
349 return ret;
350}
268fc16e 351EXPORT_SYMBOL(sync_page_range_nolock);
1da177e4
LT
352
353/**
485bb99b 354 * filemap_fdatawait - wait for all under-writeback pages to complete
1da177e4 355 * @mapping: address space structure to wait for
485bb99b
RD
356 *
357 * Walk the list of under-writeback pages of the given address space
358 * and wait for all of them.
1da177e4
LT
359 */
360int filemap_fdatawait(struct address_space *mapping)
361{
362 loff_t i_size = i_size_read(mapping->host);
363
364 if (i_size == 0)
365 return 0;
366
367 return wait_on_page_writeback_range(mapping, 0,
368 (i_size - 1) >> PAGE_CACHE_SHIFT);
369}
370EXPORT_SYMBOL(filemap_fdatawait);
371
372int filemap_write_and_wait(struct address_space *mapping)
373{
28fd1298 374 int err = 0;
1da177e4
LT
375
376 if (mapping->nrpages) {
28fd1298
OH
377 err = filemap_fdatawrite(mapping);
378 /*
379 * Even if the above returned error, the pages may be
380 * written partially (e.g. -ENOSPC), so we wait for it.
381 * But the -EIO is special case, it may indicate the worst
382 * thing (e.g. bug) happened, so we avoid waiting for it.
383 */
384 if (err != -EIO) {
385 int err2 = filemap_fdatawait(mapping);
386 if (!err)
387 err = err2;
388 }
1da177e4 389 }
28fd1298 390 return err;
1da177e4 391}
28fd1298 392EXPORT_SYMBOL(filemap_write_and_wait);
1da177e4 393
485bb99b
RD
394/**
395 * filemap_write_and_wait_range - write out & wait on a file range
396 * @mapping: the address_space for the pages
397 * @lstart: offset in bytes where the range starts
398 * @lend: offset in bytes where the range ends (inclusive)
399 *
469eb4d0
AM
400 * Write out and wait upon file offsets lstart->lend, inclusive.
401 *
402 * Note that `lend' is inclusive (describes the last byte to be written) so
403 * that this function can be used to write to the very end-of-file (end = -1).
404 */
1da177e4
LT
405int filemap_write_and_wait_range(struct address_space *mapping,
406 loff_t lstart, loff_t lend)
407{
28fd1298 408 int err = 0;
1da177e4
LT
409
410 if (mapping->nrpages) {
28fd1298
OH
411 err = __filemap_fdatawrite_range(mapping, lstart, lend,
412 WB_SYNC_ALL);
413 /* See comment of filemap_write_and_wait() */
414 if (err != -EIO) {
415 int err2 = wait_on_page_writeback_range(mapping,
416 lstart >> PAGE_CACHE_SHIFT,
417 lend >> PAGE_CACHE_SHIFT);
418 if (!err)
419 err = err2;
420 }
1da177e4 421 }
28fd1298 422 return err;
1da177e4
LT
423}
424
485bb99b
RD
425/**
426 * add_to_page_cache - add newly allocated pagecache pages
427 * @page: page to add
428 * @mapping: the page's address_space
429 * @offset: page index
430 * @gfp_mask: page allocation mode
431 *
432 * This function is used to add newly allocated pagecache pages;
1da177e4
LT
433 * the page is new, so we can just run SetPageLocked() against it.
434 * The other page state flags were set by rmqueue().
435 *
436 * This function does not add the page to the LRU. The caller must do that.
437 */
438int add_to_page_cache(struct page *page, struct address_space *mapping,
6daa0e28 439 pgoff_t offset, gfp_t gfp_mask)
1da177e4
LT
440{
441 int error = radix_tree_preload(gfp_mask & ~__GFP_HIGHMEM);
442
443 if (error == 0) {
444 write_lock_irq(&mapping->tree_lock);
445 error = radix_tree_insert(&mapping->page_tree, offset, page);
446 if (!error) {
447 page_cache_get(page);
448 SetPageLocked(page);
449 page->mapping = mapping;
450 page->index = offset;
451 mapping->nrpages++;
347ce434 452 __inc_zone_page_state(page, NR_FILE_PAGES);
1da177e4
LT
453 }
454 write_unlock_irq(&mapping->tree_lock);
455 radix_tree_preload_end();
456 }
457 return error;
458}
1da177e4
LT
459EXPORT_SYMBOL(add_to_page_cache);
460
461int add_to_page_cache_lru(struct page *page, struct address_space *mapping,
6daa0e28 462 pgoff_t offset, gfp_t gfp_mask)
1da177e4
LT
463{
464 int ret = add_to_page_cache(page, mapping, offset, gfp_mask);
465 if (ret == 0)
466 lru_cache_add(page);
467 return ret;
468}
469
44110fe3 470#ifdef CONFIG_NUMA
2ae88149 471struct page *__page_cache_alloc(gfp_t gfp)
44110fe3
PJ
472{
473 if (cpuset_do_page_mem_spread()) {
474 int n = cpuset_mem_spread_node();
2ae88149 475 return alloc_pages_node(n, gfp, 0);
44110fe3 476 }
2ae88149 477 return alloc_pages(gfp, 0);
44110fe3 478}
2ae88149 479EXPORT_SYMBOL(__page_cache_alloc);
44110fe3
PJ
480#endif
481
db37648c
NP
482static int __sleep_on_page_lock(void *word)
483{
484 io_schedule();
485 return 0;
486}
487
1da177e4
LT
488/*
489 * In order to wait for pages to become available there must be
490 * waitqueues associated with pages. By using a hash table of
491 * waitqueues where the bucket discipline is to maintain all
492 * waiters on the same queue and wake all when any of the pages
493 * become available, and for the woken contexts to check to be
494 * sure the appropriate page became available, this saves space
495 * at a cost of "thundering herd" phenomena during rare hash
496 * collisions.
497 */
498static wait_queue_head_t *page_waitqueue(struct page *page)
499{
500 const struct zone *zone = page_zone(page);
501
502 return &zone->wait_table[hash_ptr(page, zone->wait_table_bits)];
503}
504
505static inline void wake_up_page(struct page *page, int bit)
506{
507 __wake_up_bit(page_waitqueue(page), &page->flags, bit);
508}
509
510void fastcall wait_on_page_bit(struct page *page, int bit_nr)
511{
512 DEFINE_WAIT_BIT(wait, &page->flags, bit_nr);
513
514 if (test_bit(bit_nr, &page->flags))
515 __wait_on_bit(page_waitqueue(page), &wait, sync_page,
516 TASK_UNINTERRUPTIBLE);
517}
518EXPORT_SYMBOL(wait_on_page_bit);
519
520/**
485bb99b 521 * unlock_page - unlock a locked page
1da177e4
LT
522 * @page: the page
523 *
524 * Unlocks the page and wakes up sleepers in ___wait_on_page_locked().
525 * Also wakes sleepers in wait_on_page_writeback() because the wakeup
526 * mechananism between PageLocked pages and PageWriteback pages is shared.
527 * But that's OK - sleepers in wait_on_page_writeback() just go back to sleep.
528 *
529 * The first mb is necessary to safely close the critical section opened by the
530 * TestSetPageLocked(), the second mb is necessary to enforce ordering between
531 * the clear_bit and the read of the waitqueue (to avoid SMP races with a
532 * parallel wait_on_page_locked()).
533 */
534void fastcall unlock_page(struct page *page)
535{
536 smp_mb__before_clear_bit();
537 if (!TestClearPageLocked(page))
538 BUG();
539 smp_mb__after_clear_bit();
540 wake_up_page(page, PG_locked);
541}
542EXPORT_SYMBOL(unlock_page);
543
485bb99b
RD
544/**
545 * end_page_writeback - end writeback against a page
546 * @page: the page
1da177e4
LT
547 */
548void end_page_writeback(struct page *page)
549{
550 if (!TestClearPageReclaim(page) || rotate_reclaimable_page(page)) {
551 if (!test_clear_page_writeback(page))
552 BUG();
553 }
554 smp_mb__after_clear_bit();
555 wake_up_page(page, PG_writeback);
556}
557EXPORT_SYMBOL(end_page_writeback);
558
485bb99b
RD
559/**
560 * __lock_page - get a lock on the page, assuming we need to sleep to get it
561 * @page: the page to lock
1da177e4 562 *
485bb99b 563 * Ugly. Running sync_page() in state TASK_UNINTERRUPTIBLE is scary. If some
1da177e4
LT
564 * random driver's requestfn sets TASK_RUNNING, we could busywait. However
565 * chances are that on the second loop, the block layer's plug list is empty,
566 * so sync_page() will then return in state TASK_UNINTERRUPTIBLE.
567 */
568void fastcall __lock_page(struct page *page)
569{
570 DEFINE_WAIT_BIT(wait, &page->flags, PG_locked);
571
572 __wait_on_bit_lock(page_waitqueue(page), &wait, sync_page,
573 TASK_UNINTERRUPTIBLE);
574}
575EXPORT_SYMBOL(__lock_page);
576
db37648c
NP
577/*
578 * Variant of lock_page that does not require the caller to hold a reference
579 * on the page's mapping.
580 */
581void fastcall __lock_page_nosync(struct page *page)
582{
583 DEFINE_WAIT_BIT(wait, &page->flags, PG_locked);
584 __wait_on_bit_lock(page_waitqueue(page), &wait, __sleep_on_page_lock,
585 TASK_UNINTERRUPTIBLE);
586}
587
485bb99b
RD
588/**
589 * find_get_page - find and get a page reference
590 * @mapping: the address_space to search
591 * @offset: the page index
592 *
da6052f7
NP
593 * Is there a pagecache struct page at the given (mapping, offset) tuple?
594 * If yes, increment its refcount and return it; if no, return NULL.
1da177e4
LT
595 */
596struct page * find_get_page(struct address_space *mapping, unsigned long offset)
597{
598 struct page *page;
599
600 read_lock_irq(&mapping->tree_lock);
601 page = radix_tree_lookup(&mapping->page_tree, offset);
602 if (page)
603 page_cache_get(page);
604 read_unlock_irq(&mapping->tree_lock);
605 return page;
606}
1da177e4
LT
607EXPORT_SYMBOL(find_get_page);
608
1da177e4
LT
609/**
610 * find_lock_page - locate, pin and lock a pagecache page
67be2dd1
MW
611 * @mapping: the address_space to search
612 * @offset: the page index
1da177e4
LT
613 *
614 * Locates the desired pagecache page, locks it, increments its reference
615 * count and returns its address.
616 *
617 * Returns zero if the page was not present. find_lock_page() may sleep.
618 */
619struct page *find_lock_page(struct address_space *mapping,
620 unsigned long offset)
621{
622 struct page *page;
623
624 read_lock_irq(&mapping->tree_lock);
625repeat:
626 page = radix_tree_lookup(&mapping->page_tree, offset);
627 if (page) {
628 page_cache_get(page);
629 if (TestSetPageLocked(page)) {
630 read_unlock_irq(&mapping->tree_lock);
bbfbb7ce 631 __lock_page(page);
1da177e4
LT
632 read_lock_irq(&mapping->tree_lock);
633
634 /* Has the page been truncated while we slept? */
bbfbb7ce
ND
635 if (unlikely(page->mapping != mapping ||
636 page->index != offset)) {
1da177e4
LT
637 unlock_page(page);
638 page_cache_release(page);
639 goto repeat;
640 }
641 }
642 }
643 read_unlock_irq(&mapping->tree_lock);
644 return page;
645}
1da177e4
LT
646EXPORT_SYMBOL(find_lock_page);
647
648/**
649 * find_or_create_page - locate or add a pagecache page
67be2dd1
MW
650 * @mapping: the page's address_space
651 * @index: the page's index into the mapping
652 * @gfp_mask: page allocation mode
1da177e4
LT
653 *
654 * Locates a page in the pagecache. If the page is not present, a new page
655 * is allocated using @gfp_mask and is added to the pagecache and to the VM's
656 * LRU list. The returned page is locked and has its reference count
657 * incremented.
658 *
659 * find_or_create_page() may sleep, even if @gfp_flags specifies an atomic
660 * allocation!
661 *
662 * find_or_create_page() returns the desired page's address, or zero on
663 * memory exhaustion.
664 */
665struct page *find_or_create_page(struct address_space *mapping,
6daa0e28 666 unsigned long index, gfp_t gfp_mask)
1da177e4
LT
667{
668 struct page *page, *cached_page = NULL;
669 int err;
670repeat:
671 page = find_lock_page(mapping, index);
672 if (!page) {
673 if (!cached_page) {
43c0f3d2
CL
674 cached_page =
675 __page_cache_alloc(gfp_mask);
1da177e4
LT
676 if (!cached_page)
677 return NULL;
678 }
679 err = add_to_page_cache_lru(cached_page, mapping,
680 index, gfp_mask);
681 if (!err) {
682 page = cached_page;
683 cached_page = NULL;
684 } else if (err == -EEXIST)
685 goto repeat;
686 }
687 if (cached_page)
688 page_cache_release(cached_page);
689 return page;
690}
1da177e4
LT
691EXPORT_SYMBOL(find_or_create_page);
692
693/**
694 * find_get_pages - gang pagecache lookup
695 * @mapping: The address_space to search
696 * @start: The starting page index
697 * @nr_pages: The maximum number of pages
698 * @pages: Where the resulting pages are placed
699 *
700 * find_get_pages() will search for and return a group of up to
701 * @nr_pages pages in the mapping. The pages are placed at @pages.
702 * find_get_pages() takes a reference against the returned pages.
703 *
704 * The search returns a group of mapping-contiguous pages with ascending
705 * indexes. There may be holes in the indices due to not-present pages.
706 *
707 * find_get_pages() returns the number of pages which were found.
708 */
709unsigned find_get_pages(struct address_space *mapping, pgoff_t start,
710 unsigned int nr_pages, struct page **pages)
711{
712 unsigned int i;
713 unsigned int ret;
714
715 read_lock_irq(&mapping->tree_lock);
716 ret = radix_tree_gang_lookup(&mapping->page_tree,
717 (void **)pages, start, nr_pages);
718 for (i = 0; i < ret; i++)
719 page_cache_get(pages[i]);
720 read_unlock_irq(&mapping->tree_lock);
721 return ret;
722}
723
ebf43500
JA
724/**
725 * find_get_pages_contig - gang contiguous pagecache lookup
726 * @mapping: The address_space to search
727 * @index: The starting page index
728 * @nr_pages: The maximum number of pages
729 * @pages: Where the resulting pages are placed
730 *
731 * find_get_pages_contig() works exactly like find_get_pages(), except
732 * that the returned number of pages are guaranteed to be contiguous.
733 *
734 * find_get_pages_contig() returns the number of pages which were found.
735 */
736unsigned find_get_pages_contig(struct address_space *mapping, pgoff_t index,
737 unsigned int nr_pages, struct page **pages)
738{
739 unsigned int i;
740 unsigned int ret;
741
742 read_lock_irq(&mapping->tree_lock);
743 ret = radix_tree_gang_lookup(&mapping->page_tree,
744 (void **)pages, index, nr_pages);
745 for (i = 0; i < ret; i++) {
746 if (pages[i]->mapping == NULL || pages[i]->index != index)
747 break;
748
749 page_cache_get(pages[i]);
750 index++;
751 }
752 read_unlock_irq(&mapping->tree_lock);
753 return i;
754}
ef71c15c 755EXPORT_SYMBOL(find_get_pages_contig);
ebf43500 756
485bb99b
RD
757/**
758 * find_get_pages_tag - find and return pages that match @tag
759 * @mapping: the address_space to search
760 * @index: the starting page index
761 * @tag: the tag index
762 * @nr_pages: the maximum number of pages
763 * @pages: where the resulting pages are placed
764 *
1da177e4 765 * Like find_get_pages, except we only return pages which are tagged with
485bb99b 766 * @tag. We update @index to index the next page for the traversal.
1da177e4
LT
767 */
768unsigned find_get_pages_tag(struct address_space *mapping, pgoff_t *index,
769 int tag, unsigned int nr_pages, struct page **pages)
770{
771 unsigned int i;
772 unsigned int ret;
773
774 read_lock_irq(&mapping->tree_lock);
775 ret = radix_tree_gang_lookup_tag(&mapping->page_tree,
776 (void **)pages, *index, nr_pages, tag);
777 for (i = 0; i < ret; i++)
778 page_cache_get(pages[i]);
779 if (ret)
780 *index = pages[ret - 1]->index + 1;
781 read_unlock_irq(&mapping->tree_lock);
782 return ret;
783}
ef71c15c 784EXPORT_SYMBOL(find_get_pages_tag);
1da177e4 785
485bb99b
RD
786/**
787 * grab_cache_page_nowait - returns locked page at given index in given cache
788 * @mapping: target address_space
789 * @index: the page index
790 *
72fd4a35 791 * Same as grab_cache_page(), but do not wait if the page is unavailable.
1da177e4
LT
792 * This is intended for speculative data generators, where the data can
793 * be regenerated if the page couldn't be grabbed. This routine should
794 * be safe to call while holding the lock for another page.
795 *
796 * Clear __GFP_FS when allocating the page to avoid recursion into the fs
797 * and deadlock against the caller's locked page.
798 */
799struct page *
800grab_cache_page_nowait(struct address_space *mapping, unsigned long index)
801{
802 struct page *page = find_get_page(mapping, index);
1da177e4
LT
803
804 if (page) {
805 if (!TestSetPageLocked(page))
806 return page;
807 page_cache_release(page);
808 return NULL;
809 }
2ae88149
NP
810 page = __page_cache_alloc(mapping_gfp_mask(mapping) & ~__GFP_FS);
811 if (page && add_to_page_cache_lru(page, mapping, index, GFP_KERNEL)) {
1da177e4
LT
812 page_cache_release(page);
813 page = NULL;
814 }
815 return page;
816}
1da177e4
LT
817EXPORT_SYMBOL(grab_cache_page_nowait);
818
76d42bd9
WF
819/*
820 * CD/DVDs are error prone. When a medium error occurs, the driver may fail
821 * a _large_ part of the i/o request. Imagine the worst scenario:
822 *
823 * ---R__________________________________________B__________
824 * ^ reading here ^ bad block(assume 4k)
825 *
826 * read(R) => miss => readahead(R...B) => media error => frustrating retries
827 * => failing the whole request => read(R) => read(R+1) =>
828 * readahead(R+1...B+1) => bang => read(R+2) => read(R+3) =>
829 * readahead(R+3...B+2) => bang => read(R+3) => read(R+4) =>
830 * readahead(R+4...B+3) => bang => read(R+4) => read(R+5) => ......
831 *
832 * It is going insane. Fix it by quickly scaling down the readahead size.
833 */
834static void shrink_readahead_size_eio(struct file *filp,
835 struct file_ra_state *ra)
836{
837 if (!ra->ra_pages)
838 return;
839
840 ra->ra_pages /= 4;
76d42bd9
WF
841}
842
485bb99b
RD
843/**
844 * do_generic_mapping_read - generic file read routine
845 * @mapping: address_space to be read
f0b85c0c 846 * @_ra: file's readahead state
485bb99b
RD
847 * @filp: the file to read
848 * @ppos: current file position
849 * @desc: read_descriptor
850 * @actor: read method
851 *
1da177e4 852 * This is a generic file read routine, and uses the
485bb99b 853 * mapping->a_ops->readpage() function for the actual low-level stuff.
1da177e4
LT
854 *
855 * This is really ugly. But the goto's actually try to clarify some
856 * of the logic when it comes to error handling etc.
857 *
485bb99b
RD
858 * Note the struct file* is only passed for the use of readpage.
859 * It may be NULL.
1da177e4
LT
860 */
861void do_generic_mapping_read(struct address_space *mapping,
862 struct file_ra_state *_ra,
863 struct file *filp,
864 loff_t *ppos,
865 read_descriptor_t *desc,
866 read_actor_t actor)
867{
868 struct inode *inode = mapping->host;
869 unsigned long index;
1da177e4
LT
870 unsigned long offset;
871 unsigned long last_index;
872 unsigned long next_index;
873 unsigned long prev_index;
ec0f1637 874 unsigned int prev_offset;
1da177e4
LT
875 struct page *cached_page;
876 int error;
877 struct file_ra_state ra = *_ra;
878
879 cached_page = NULL;
880 index = *ppos >> PAGE_CACHE_SHIFT;
881 next_index = index;
f4e6b498
FW
882 prev_index = ra.prev_pos >> PAGE_CACHE_SHIFT;
883 prev_offset = ra.prev_pos & (PAGE_CACHE_SIZE-1);
1da177e4
LT
884 last_index = (*ppos + desc->count + PAGE_CACHE_SIZE-1) >> PAGE_CACHE_SHIFT;
885 offset = *ppos & ~PAGE_CACHE_MASK;
886
1da177e4
LT
887 for (;;) {
888 struct page *page;
a32ea1e1
N
889 unsigned long end_index;
890 loff_t isize;
1da177e4
LT
891 unsigned long nr, ret;
892
1da177e4 893 cond_resched();
1da177e4
LT
894find_page:
895 page = find_get_page(mapping, index);
3ea89ee8 896 if (!page) {
cf914a7d
RR
897 page_cache_sync_readahead(mapping,
898 &ra, filp,
3ea89ee8
FW
899 index, last_index - index);
900 page = find_get_page(mapping, index);
901 if (unlikely(page == NULL))
902 goto no_cached_page;
903 }
904 if (PageReadahead(page)) {
cf914a7d 905 page_cache_async_readahead(mapping,
3ea89ee8
FW
906 &ra, filp, page,
907 index, last_index - index);
1da177e4
LT
908 }
909 if (!PageUptodate(page))
910 goto page_not_up_to_date;
911page_ok:
a32ea1e1
N
912 /*
913 * i_size must be checked after we know the page is Uptodate.
914 *
915 * Checking i_size after the check allows us to calculate
916 * the correct value for "nr", which means the zero-filled
917 * part of the page is not copied back to userspace (unless
918 * another truncate extends the file - this is desired though).
919 */
920
921 isize = i_size_read(inode);
922 end_index = (isize - 1) >> PAGE_CACHE_SHIFT;
923 if (unlikely(!isize || index > end_index)) {
924 page_cache_release(page);
925 goto out;
926 }
927
928 /* nr is the maximum number of bytes to copy from this page */
929 nr = PAGE_CACHE_SIZE;
930 if (index == end_index) {
931 nr = ((isize - 1) & ~PAGE_CACHE_MASK) + 1;
932 if (nr <= offset) {
933 page_cache_release(page);
934 goto out;
935 }
936 }
937 nr = nr - offset;
1da177e4
LT
938
939 /* If users can be writing to this page using arbitrary
940 * virtual addresses, take care about potential aliasing
941 * before reading the page on the kernel side.
942 */
943 if (mapping_writably_mapped(mapping))
944 flush_dcache_page(page);
945
946 /*
ec0f1637
JK
947 * When a sequential read accesses a page several times,
948 * only mark it as accessed the first time.
1da177e4 949 */
ec0f1637 950 if (prev_index != index || offset != prev_offset)
1da177e4
LT
951 mark_page_accessed(page);
952 prev_index = index;
953
954 /*
955 * Ok, we have the page, and it's up-to-date, so
956 * now we can copy it to user space...
957 *
958 * The actor routine returns how many bytes were actually used..
959 * NOTE! This may not be the same as how much of a user buffer
960 * we filled up (we may be padding etc), so we can only update
961 * "pos" here (the actor routine has to update the user buffer
962 * pointers and the remaining count).
963 */
964 ret = actor(desc, page, offset, nr);
965 offset += ret;
966 index += offset >> PAGE_CACHE_SHIFT;
967 offset &= ~PAGE_CACHE_MASK;
6ce745ed 968 prev_offset = offset;
1da177e4
LT
969
970 page_cache_release(page);
971 if (ret == nr && desc->count)
972 continue;
973 goto out;
974
975page_not_up_to_date:
976 /* Get exclusive access to the page ... */
977 lock_page(page);
978
da6052f7 979 /* Did it get truncated before we got the lock? */
1da177e4
LT
980 if (!page->mapping) {
981 unlock_page(page);
982 page_cache_release(page);
983 continue;
984 }
985
986 /* Did somebody else fill it already? */
987 if (PageUptodate(page)) {
988 unlock_page(page);
989 goto page_ok;
990 }
991
992readpage:
993 /* Start the actual read. The read will unlock the page. */
994 error = mapping->a_ops->readpage(filp, page);
995
994fc28c
ZB
996 if (unlikely(error)) {
997 if (error == AOP_TRUNCATED_PAGE) {
998 page_cache_release(page);
999 goto find_page;
1000 }
1da177e4 1001 goto readpage_error;
994fc28c 1002 }
1da177e4
LT
1003
1004 if (!PageUptodate(page)) {
1005 lock_page(page);
1006 if (!PageUptodate(page)) {
1007 if (page->mapping == NULL) {
1008 /*
1009 * invalidate_inode_pages got it
1010 */
1011 unlock_page(page);
1012 page_cache_release(page);
1013 goto find_page;
1014 }
1015 unlock_page(page);
1016 error = -EIO;
76d42bd9 1017 shrink_readahead_size_eio(filp, &ra);
1da177e4
LT
1018 goto readpage_error;
1019 }
1020 unlock_page(page);
1021 }
1022
1da177e4
LT
1023 goto page_ok;
1024
1025readpage_error:
1026 /* UHHUH! A synchronous read error occurred. Report it */
1027 desc->error = error;
1028 page_cache_release(page);
1029 goto out;
1030
1031no_cached_page:
1032 /*
1033 * Ok, it wasn't cached, so we need to create a new
1034 * page..
1035 */
1036 if (!cached_page) {
1037 cached_page = page_cache_alloc_cold(mapping);
1038 if (!cached_page) {
1039 desc->error = -ENOMEM;
1040 goto out;
1041 }
1042 }
1043 error = add_to_page_cache_lru(cached_page, mapping,
1044 index, GFP_KERNEL);
1045 if (error) {
1046 if (error == -EEXIST)
1047 goto find_page;
1048 desc->error = error;
1049 goto out;
1050 }
1051 page = cached_page;
1052 cached_page = NULL;
1053 goto readpage;
1054 }
1055
1056out:
1057 *_ra = ra;
f4e6b498
FW
1058 _ra->prev_pos = prev_index;
1059 _ra->prev_pos <<= PAGE_CACHE_SHIFT;
1060 _ra->prev_pos |= prev_offset;
1da177e4 1061
f4e6b498 1062 *ppos = ((loff_t)index << PAGE_CACHE_SHIFT) + offset;
1da177e4
LT
1063 if (cached_page)
1064 page_cache_release(cached_page);
1065 if (filp)
1066 file_accessed(filp);
1067}
1da177e4
LT
1068EXPORT_SYMBOL(do_generic_mapping_read);
1069
1070int file_read_actor(read_descriptor_t *desc, struct page *page,
1071 unsigned long offset, unsigned long size)
1072{
1073 char *kaddr;
1074 unsigned long left, count = desc->count;
1075
1076 if (size > count)
1077 size = count;
1078
1079 /*
1080 * Faults on the destination of a read are common, so do it before
1081 * taking the kmap.
1082 */
1083 if (!fault_in_pages_writeable(desc->arg.buf, size)) {
1084 kaddr = kmap_atomic(page, KM_USER0);
1085 left = __copy_to_user_inatomic(desc->arg.buf,
1086 kaddr + offset, size);
1087 kunmap_atomic(kaddr, KM_USER0);
1088 if (left == 0)
1089 goto success;
1090 }
1091
1092 /* Do it the slow way */
1093 kaddr = kmap(page);
1094 left = __copy_to_user(desc->arg.buf, kaddr + offset, size);
1095 kunmap(page);
1096
1097 if (left) {
1098 size -= left;
1099 desc->error = -EFAULT;
1100 }
1101success:
1102 desc->count = count - size;
1103 desc->written += size;
1104 desc->arg.buf += size;
1105 return size;
1106}
1107
0ceb3314
DM
1108/*
1109 * Performs necessary checks before doing a write
1110 * @iov: io vector request
1111 * @nr_segs: number of segments in the iovec
1112 * @count: number of bytes to write
1113 * @access_flags: type of access: %VERIFY_READ or %VERIFY_WRITE
1114 *
1115 * Adjust number of segments and amount of bytes to write (nr_segs should be
1116 * properly initialized first). Returns appropriate error code that caller
1117 * should return or zero in case that write should be allowed.
1118 */
1119int generic_segment_checks(const struct iovec *iov,
1120 unsigned long *nr_segs, size_t *count, int access_flags)
1121{
1122 unsigned long seg;
1123 size_t cnt = 0;
1124 for (seg = 0; seg < *nr_segs; seg++) {
1125 const struct iovec *iv = &iov[seg];
1126
1127 /*
1128 * If any segment has a negative length, or the cumulative
1129 * length ever wraps negative then return -EINVAL.
1130 */
1131 cnt += iv->iov_len;
1132 if (unlikely((ssize_t)(cnt|iv->iov_len) < 0))
1133 return -EINVAL;
1134 if (access_ok(access_flags, iv->iov_base, iv->iov_len))
1135 continue;
1136 if (seg == 0)
1137 return -EFAULT;
1138 *nr_segs = seg;
1139 cnt -= iv->iov_len; /* This segment is no good */
1140 break;
1141 }
1142 *count = cnt;
1143 return 0;
1144}
1145EXPORT_SYMBOL(generic_segment_checks);
1146
485bb99b 1147/**
b2abacf3 1148 * generic_file_aio_read - generic filesystem read routine
485bb99b
RD
1149 * @iocb: kernel I/O control block
1150 * @iov: io vector request
1151 * @nr_segs: number of segments in the iovec
b2abacf3 1152 * @pos: current file position
485bb99b 1153 *
1da177e4
LT
1154 * This is the "read()" routine for all filesystems
1155 * that can use the page cache directly.
1156 */
1157ssize_t
543ade1f
BP
1158generic_file_aio_read(struct kiocb *iocb, const struct iovec *iov,
1159 unsigned long nr_segs, loff_t pos)
1da177e4
LT
1160{
1161 struct file *filp = iocb->ki_filp;
1162 ssize_t retval;
1163 unsigned long seg;
1164 size_t count;
543ade1f 1165 loff_t *ppos = &iocb->ki_pos;
1da177e4
LT
1166
1167 count = 0;
0ceb3314
DM
1168 retval = generic_segment_checks(iov, &nr_segs, &count, VERIFY_WRITE);
1169 if (retval)
1170 return retval;
1da177e4
LT
1171
1172 /* coalesce the iovecs and go direct-to-BIO for O_DIRECT */
1173 if (filp->f_flags & O_DIRECT) {
543ade1f 1174 loff_t size;
1da177e4
LT
1175 struct address_space *mapping;
1176 struct inode *inode;
1177
1178 mapping = filp->f_mapping;
1179 inode = mapping->host;
1180 retval = 0;
1181 if (!count)
1182 goto out; /* skip atime */
1183 size = i_size_read(inode);
1184 if (pos < size) {
1185 retval = generic_file_direct_IO(READ, iocb,
1186 iov, pos, nr_segs);
1da177e4
LT
1187 if (retval > 0)
1188 *ppos = pos + retval;
1189 }
0e0bcae3 1190 if (likely(retval != 0)) {
3f1a9aae 1191 file_accessed(filp);
a9e5f4d0 1192 goto out;
0e0bcae3 1193 }
1da177e4
LT
1194 }
1195
1196 retval = 0;
1197 if (count) {
1198 for (seg = 0; seg < nr_segs; seg++) {
1199 read_descriptor_t desc;
1200
1201 desc.written = 0;
1202 desc.arg.buf = iov[seg].iov_base;
1203 desc.count = iov[seg].iov_len;
1204 if (desc.count == 0)
1205 continue;
1206 desc.error = 0;
1207 do_generic_file_read(filp,ppos,&desc,file_read_actor);
1208 retval += desc.written;
39e88ca2
TH
1209 if (desc.error) {
1210 retval = retval ?: desc.error;
1da177e4
LT
1211 break;
1212 }
c44939ec 1213 if (desc.count > 0)
1214 break;
1da177e4
LT
1215 }
1216 }
1217out:
1218 return retval;
1219}
1da177e4
LT
1220EXPORT_SYMBOL(generic_file_aio_read);
1221
1da177e4
LT
1222static ssize_t
1223do_readahead(struct address_space *mapping, struct file *filp,
1224 unsigned long index, unsigned long nr)
1225{
1226 if (!mapping || !mapping->a_ops || !mapping->a_ops->readpage)
1227 return -EINVAL;
1228
1229 force_page_cache_readahead(mapping, filp, index,
1230 max_sane_readahead(nr));
1231 return 0;
1232}
1233
1234asmlinkage ssize_t sys_readahead(int fd, loff_t offset, size_t count)
1235{
1236 ssize_t ret;
1237 struct file *file;
1238
1239 ret = -EBADF;
1240 file = fget(fd);
1241 if (file) {
1242 if (file->f_mode & FMODE_READ) {
1243 struct address_space *mapping = file->f_mapping;
1244 unsigned long start = offset >> PAGE_CACHE_SHIFT;
1245 unsigned long end = (offset + count - 1) >> PAGE_CACHE_SHIFT;
1246 unsigned long len = end - start + 1;
1247 ret = do_readahead(mapping, file, start, len);
1248 }
1249 fput(file);
1250 }
1251 return ret;
1252}
1253
1254#ifdef CONFIG_MMU
485bb99b
RD
1255static int FASTCALL(page_cache_read(struct file * file, unsigned long offset));
1256/**
1257 * page_cache_read - adds requested page to the page cache if not already there
1258 * @file: file to read
1259 * @offset: page index
1260 *
1da177e4
LT
1261 * This adds the requested page to the page cache if it isn't already there,
1262 * and schedules an I/O to read in its contents from disk.
1263 */
1da177e4
LT
1264static int fastcall page_cache_read(struct file * file, unsigned long offset)
1265{
1266 struct address_space *mapping = file->f_mapping;
1267 struct page *page;
994fc28c 1268 int ret;
1da177e4 1269
994fc28c
ZB
1270 do {
1271 page = page_cache_alloc_cold(mapping);
1272 if (!page)
1273 return -ENOMEM;
1274
1275 ret = add_to_page_cache_lru(page, mapping, offset, GFP_KERNEL);
1276 if (ret == 0)
1277 ret = mapping->a_ops->readpage(file, page);
1278 else if (ret == -EEXIST)
1279 ret = 0; /* losing race to add is OK */
1da177e4 1280
1da177e4 1281 page_cache_release(page);
1da177e4 1282
994fc28c
ZB
1283 } while (ret == AOP_TRUNCATED_PAGE);
1284
1285 return ret;
1da177e4
LT
1286}
1287
1288#define MMAP_LOTSAMISS (100)
1289
485bb99b 1290/**
54cb8821 1291 * filemap_fault - read in file data for page fault handling
d0217ac0
NP
1292 * @vma: vma in which the fault was taken
1293 * @vmf: struct vm_fault containing details of the fault
485bb99b 1294 *
54cb8821 1295 * filemap_fault() is invoked via the vma operations vector for a
1da177e4
LT
1296 * mapped memory region to read in file data during a page fault.
1297 *
1298 * The goto's are kind of ugly, but this streamlines the normal case of having
1299 * it in the page cache, and handles the special cases reasonably without
1300 * having a lot of duplicated code.
1301 */
d0217ac0 1302int filemap_fault(struct vm_area_struct *vma, struct vm_fault *vmf)
1da177e4
LT
1303{
1304 int error;
54cb8821 1305 struct file *file = vma->vm_file;
1da177e4
LT
1306 struct address_space *mapping = file->f_mapping;
1307 struct file_ra_state *ra = &file->f_ra;
1308 struct inode *inode = mapping->host;
1309 struct page *page;
54cb8821
NP
1310 unsigned long size;
1311 int did_readaround = 0;
83c54070 1312 int ret = 0;
1da177e4 1313
1da177e4 1314 size = (i_size_read(inode) + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
d0217ac0 1315 if (vmf->pgoff >= size)
1da177e4
LT
1316 goto outside_data_content;
1317
1318 /* If we don't want any read-ahead, don't bother */
54cb8821 1319 if (VM_RandomReadHint(vma))
1da177e4
LT
1320 goto no_cached_page;
1321
1da177e4
LT
1322 /*
1323 * Do we have something in the page cache already?
1324 */
1325retry_find:
d0217ac0 1326 page = find_lock_page(mapping, vmf->pgoff);
3ea89ee8
FW
1327 /*
1328 * For sequential accesses, we use the generic readahead logic.
1329 */
1330 if (VM_SequentialReadHint(vma)) {
1331 if (!page) {
cf914a7d 1332 page_cache_sync_readahead(mapping, ra, file,
3ea89ee8
FW
1333 vmf->pgoff, 1);
1334 page = find_lock_page(mapping, vmf->pgoff);
1335 if (!page)
1336 goto no_cached_page;
1337 }
1338 if (PageReadahead(page)) {
cf914a7d 1339 page_cache_async_readahead(mapping, ra, file, page,
3ea89ee8
FW
1340 vmf->pgoff, 1);
1341 }
1342 }
1343
1da177e4
LT
1344 if (!page) {
1345 unsigned long ra_pages;
1346
1da177e4
LT
1347 ra->mmap_miss++;
1348
1349 /*
1350 * Do we miss much more than hit in this file? If so,
1351 * stop bothering with read-ahead. It will only hurt.
1352 */
0bb7ba6b 1353 if (ra->mmap_miss > MMAP_LOTSAMISS)
1da177e4
LT
1354 goto no_cached_page;
1355
1356 /*
1357 * To keep the pgmajfault counter straight, we need to
1358 * check did_readaround, as this is an inner loop.
1359 */
1360 if (!did_readaround) {
d0217ac0 1361 ret = VM_FAULT_MAJOR;
f8891e5e 1362 count_vm_event(PGMAJFAULT);
1da177e4
LT
1363 }
1364 did_readaround = 1;
1365 ra_pages = max_sane_readahead(file->f_ra.ra_pages);
1366 if (ra_pages) {
1367 pgoff_t start = 0;
1368
d0217ac0
NP
1369 if (vmf->pgoff > ra_pages / 2)
1370 start = vmf->pgoff - ra_pages / 2;
1da177e4
LT
1371 do_page_cache_readahead(mapping, file, start, ra_pages);
1372 }
d0217ac0 1373 page = find_lock_page(mapping, vmf->pgoff);
1da177e4
LT
1374 if (!page)
1375 goto no_cached_page;
1376 }
1377
1378 if (!did_readaround)
0bb7ba6b 1379 ra->mmap_miss--;
1da177e4
LT
1380
1381 /*
d00806b1
NP
1382 * We have a locked page in the page cache, now we need to check
1383 * that it's up-to-date. If not, it is going to be due to an error.
1da177e4 1384 */
d00806b1 1385 if (unlikely(!PageUptodate(page)))
1da177e4
LT
1386 goto page_not_uptodate;
1387
d00806b1
NP
1388 /* Must recheck i_size under page lock */
1389 size = (i_size_read(inode) + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
d0217ac0 1390 if (unlikely(vmf->pgoff >= size)) {
d00806b1 1391 unlock_page(page);
745ad48e 1392 page_cache_release(page);
d00806b1
NP
1393 goto outside_data_content;
1394 }
1395
1da177e4
LT
1396 /*
1397 * Found the page and have a reference on it.
1398 */
1399 mark_page_accessed(page);
f4e6b498 1400 ra->prev_pos = (loff_t)page->index << PAGE_CACHE_SHIFT;
d0217ac0 1401 vmf->page = page;
83c54070 1402 return ret | VM_FAULT_LOCKED;
1da177e4
LT
1403
1404outside_data_content:
1405 /*
1406 * An external ptracer can access pages that normally aren't
1407 * accessible..
1408 */
d0217ac0
NP
1409 if (vma->vm_mm == current->mm)
1410 return VM_FAULT_SIGBUS;
1411
1da177e4
LT
1412 /* Fall through to the non-read-ahead case */
1413no_cached_page:
1414 /*
1415 * We're only likely to ever get here if MADV_RANDOM is in
1416 * effect.
1417 */
d0217ac0 1418 error = page_cache_read(file, vmf->pgoff);
1da177e4
LT
1419
1420 /*
1421 * The page we want has now been added to the page cache.
1422 * In the unlikely event that someone removed it in the
1423 * meantime, we'll just come back here and read it again.
1424 */
1425 if (error >= 0)
1426 goto retry_find;
1427
1428 /*
1429 * An error return from page_cache_read can result if the
1430 * system is low on memory, or a problem occurs while trying
1431 * to schedule I/O.
1432 */
1433 if (error == -ENOMEM)
d0217ac0
NP
1434 return VM_FAULT_OOM;
1435 return VM_FAULT_SIGBUS;
1da177e4
LT
1436
1437page_not_uptodate:
d00806b1 1438 /* IO error path */
1da177e4 1439 if (!did_readaround) {
d0217ac0 1440 ret = VM_FAULT_MAJOR;
f8891e5e 1441 count_vm_event(PGMAJFAULT);
1da177e4 1442 }
1da177e4
LT
1443
1444 /*
1445 * Umm, take care of errors if the page isn't up-to-date.
1446 * Try to re-read it _once_. We do this synchronously,
1447 * because there really aren't any performance issues here
1448 * and we need to check for errors.
1449 */
1da177e4 1450 ClearPageError(page);
994fc28c 1451 error = mapping->a_ops->readpage(file, page);
d00806b1
NP
1452 page_cache_release(page);
1453
1454 if (!error || error == AOP_TRUNCATED_PAGE)
994fc28c 1455 goto retry_find;
1da177e4 1456
d00806b1 1457 /* Things didn't work out. Return zero to tell the mm layer so. */
76d42bd9 1458 shrink_readahead_size_eio(file, ra);
d0217ac0 1459 return VM_FAULT_SIGBUS;
54cb8821
NP
1460}
1461EXPORT_SYMBOL(filemap_fault);
1462
1da177e4 1463struct vm_operations_struct generic_file_vm_ops = {
54cb8821 1464 .fault = filemap_fault,
1da177e4
LT
1465};
1466
1467/* This is used for a general mmap of a disk file */
1468
1469int generic_file_mmap(struct file * file, struct vm_area_struct * vma)
1470{
1471 struct address_space *mapping = file->f_mapping;
1472
1473 if (!mapping->a_ops->readpage)
1474 return -ENOEXEC;
1475 file_accessed(file);
1476 vma->vm_ops = &generic_file_vm_ops;
d0217ac0 1477 vma->vm_flags |= VM_CAN_NONLINEAR;
1da177e4
LT
1478 return 0;
1479}
1da177e4
LT
1480
1481/*
1482 * This is for filesystems which do not implement ->writepage.
1483 */
1484int generic_file_readonly_mmap(struct file *file, struct vm_area_struct *vma)
1485{
1486 if ((vma->vm_flags & VM_SHARED) && (vma->vm_flags & VM_MAYWRITE))
1487 return -EINVAL;
1488 return generic_file_mmap(file, vma);
1489}
1490#else
1491int generic_file_mmap(struct file * file, struct vm_area_struct * vma)
1492{
1493 return -ENOSYS;
1494}
1495int generic_file_readonly_mmap(struct file * file, struct vm_area_struct * vma)
1496{
1497 return -ENOSYS;
1498}
1499#endif /* CONFIG_MMU */
1500
1501EXPORT_SYMBOL(generic_file_mmap);
1502EXPORT_SYMBOL(generic_file_readonly_mmap);
1503
6fe6900e 1504static struct page *__read_cache_page(struct address_space *mapping,
1da177e4
LT
1505 unsigned long index,
1506 int (*filler)(void *,struct page*),
1507 void *data)
1508{
1509 struct page *page, *cached_page = NULL;
1510 int err;
1511repeat:
1512 page = find_get_page(mapping, index);
1513 if (!page) {
1514 if (!cached_page) {
1515 cached_page = page_cache_alloc_cold(mapping);
1516 if (!cached_page)
1517 return ERR_PTR(-ENOMEM);
1518 }
1519 err = add_to_page_cache_lru(cached_page, mapping,
1520 index, GFP_KERNEL);
1521 if (err == -EEXIST)
1522 goto repeat;
1523 if (err < 0) {
1524 /* Presumably ENOMEM for radix tree node */
1525 page_cache_release(cached_page);
1526 return ERR_PTR(err);
1527 }
1528 page = cached_page;
1529 cached_page = NULL;
1530 err = filler(data, page);
1531 if (err < 0) {
1532 page_cache_release(page);
1533 page = ERR_PTR(err);
1534 }
1535 }
1536 if (cached_page)
1537 page_cache_release(cached_page);
1538 return page;
1539}
1540
6fe6900e
NP
1541/*
1542 * Same as read_cache_page, but don't wait for page to become unlocked
1543 * after submitting it to the filler.
1da177e4 1544 */
6fe6900e 1545struct page *read_cache_page_async(struct address_space *mapping,
1da177e4
LT
1546 unsigned long index,
1547 int (*filler)(void *,struct page*),
1548 void *data)
1549{
1550 struct page *page;
1551 int err;
1552
1553retry:
1554 page = __read_cache_page(mapping, index, filler, data);
1555 if (IS_ERR(page))
c855ff37 1556 return page;
1da177e4
LT
1557 if (PageUptodate(page))
1558 goto out;
1559
1560 lock_page(page);
1561 if (!page->mapping) {
1562 unlock_page(page);
1563 page_cache_release(page);
1564 goto retry;
1565 }
1566 if (PageUptodate(page)) {
1567 unlock_page(page);
1568 goto out;
1569 }
1570 err = filler(data, page);
1571 if (err < 0) {
1572 page_cache_release(page);
c855ff37 1573 return ERR_PTR(err);
1da177e4 1574 }
c855ff37 1575out:
6fe6900e
NP
1576 mark_page_accessed(page);
1577 return page;
1578}
1579EXPORT_SYMBOL(read_cache_page_async);
1580
1581/**
1582 * read_cache_page - read into page cache, fill it if needed
1583 * @mapping: the page's address_space
1584 * @index: the page index
1585 * @filler: function to perform the read
1586 * @data: destination for read data
1587 *
1588 * Read into the page cache. If a page already exists, and PageUptodate() is
1589 * not set, try to fill the page then wait for it to become unlocked.
1590 *
1591 * If the page does not get brought uptodate, return -EIO.
1592 */
1593struct page *read_cache_page(struct address_space *mapping,
1594 unsigned long index,
1595 int (*filler)(void *,struct page*),
1596 void *data)
1597{
1598 struct page *page;
1599
1600 page = read_cache_page_async(mapping, index, filler, data);
1601 if (IS_ERR(page))
1602 goto out;
1603 wait_on_page_locked(page);
1604 if (!PageUptodate(page)) {
1605 page_cache_release(page);
1606 page = ERR_PTR(-EIO);
1607 }
1da177e4
LT
1608 out:
1609 return page;
1610}
1da177e4
LT
1611EXPORT_SYMBOL(read_cache_page);
1612
1613/*
1614 * If the page was newly created, increment its refcount and add it to the
1615 * caller's lru-buffering pagevec. This function is specifically for
1616 * generic_file_write().
1617 */
1618static inline struct page *
1619__grab_cache_page(struct address_space *mapping, unsigned long index,
1620 struct page **cached_page, struct pagevec *lru_pvec)
1621{
1622 int err;
1623 struct page *page;
1624repeat:
1625 page = find_lock_page(mapping, index);
1626 if (!page) {
1627 if (!*cached_page) {
1628 *cached_page = page_cache_alloc(mapping);
1629 if (!*cached_page)
1630 return NULL;
1631 }
1632 err = add_to_page_cache(*cached_page, mapping,
1633 index, GFP_KERNEL);
1634 if (err == -EEXIST)
1635 goto repeat;
1636 if (err == 0) {
1637 page = *cached_page;
1638 page_cache_get(page);
1639 if (!pagevec_add(lru_pvec, page))
1640 __pagevec_lru_add(lru_pvec);
1641 *cached_page = NULL;
1642 }
1643 }
1644 return page;
1645}
1646
1647/*
1648 * The logic we want is
1649 *
1650 * if suid or (sgid and xgrp)
1651 * remove privs
1652 */
01de85e0 1653int should_remove_suid(struct dentry *dentry)
1da177e4
LT
1654{
1655 mode_t mode = dentry->d_inode->i_mode;
1656 int kill = 0;
1da177e4
LT
1657
1658 /* suid always must be killed */
1659 if (unlikely(mode & S_ISUID))
1660 kill = ATTR_KILL_SUID;
1661
1662 /*
1663 * sgid without any exec bits is just a mandatory locking mark; leave
1664 * it alone. If some exec bits are set, it's a real sgid; kill it.
1665 */
1666 if (unlikely((mode & S_ISGID) && (mode & S_IXGRP)))
1667 kill |= ATTR_KILL_SGID;
1668
01de85e0
JA
1669 if (unlikely(kill && !capable(CAP_FSETID)))
1670 return kill;
1da177e4 1671
01de85e0
JA
1672 return 0;
1673}
d23a147b 1674EXPORT_SYMBOL(should_remove_suid);
01de85e0
JA
1675
1676int __remove_suid(struct dentry *dentry, int kill)
1677{
1678 struct iattr newattrs;
1679
1680 newattrs.ia_valid = ATTR_FORCE | kill;
1681 return notify_change(dentry, &newattrs);
1682}
1683
1684int remove_suid(struct dentry *dentry)
1685{
1686 int kill = should_remove_suid(dentry);
1687
1688 if (unlikely(kill))
1689 return __remove_suid(dentry, kill);
1690
1691 return 0;
1da177e4
LT
1692}
1693EXPORT_SYMBOL(remove_suid);
1694
ceffc078 1695size_t
01408c49 1696__filemap_copy_from_user_iovec_inatomic(char *vaddr,
1da177e4
LT
1697 const struct iovec *iov, size_t base, size_t bytes)
1698{
1699 size_t copied = 0, left = 0;
1700
1701 while (bytes) {
1702 char __user *buf = iov->iov_base + base;
1703 int copy = min(bytes, iov->iov_len - base);
1704
1705 base = 0;
c22ce143 1706 left = __copy_from_user_inatomic_nocache(vaddr, buf, copy);
1da177e4
LT
1707 copied += copy;
1708 bytes -= copy;
1709 vaddr += copy;
1710 iov++;
1711
01408c49 1712 if (unlikely(left))
1da177e4 1713 break;
1da177e4
LT
1714 }
1715 return copied - left;
1716}
1717
1da177e4
LT
1718/*
1719 * Performs necessary checks before doing a write
1720 *
485bb99b 1721 * Can adjust writing position or amount of bytes to write.
1da177e4
LT
1722 * Returns appropriate error code that caller should return or
1723 * zero in case that write should be allowed.
1724 */
1725inline int generic_write_checks(struct file *file, loff_t *pos, size_t *count, int isblk)
1726{
1727 struct inode *inode = file->f_mapping->host;
1728 unsigned long limit = current->signal->rlim[RLIMIT_FSIZE].rlim_cur;
1729
1730 if (unlikely(*pos < 0))
1731 return -EINVAL;
1732
1da177e4
LT
1733 if (!isblk) {
1734 /* FIXME: this is for backwards compatibility with 2.4 */
1735 if (file->f_flags & O_APPEND)
1736 *pos = i_size_read(inode);
1737
1738 if (limit != RLIM_INFINITY) {
1739 if (*pos >= limit) {
1740 send_sig(SIGXFSZ, current, 0);
1741 return -EFBIG;
1742 }
1743 if (*count > limit - (typeof(limit))*pos) {
1744 *count = limit - (typeof(limit))*pos;
1745 }
1746 }
1747 }
1748
1749 /*
1750 * LFS rule
1751 */
1752 if (unlikely(*pos + *count > MAX_NON_LFS &&
1753 !(file->f_flags & O_LARGEFILE))) {
1754 if (*pos >= MAX_NON_LFS) {
1da177e4
LT
1755 return -EFBIG;
1756 }
1757 if (*count > MAX_NON_LFS - (unsigned long)*pos) {
1758 *count = MAX_NON_LFS - (unsigned long)*pos;
1759 }
1760 }
1761
1762 /*
1763 * Are we about to exceed the fs block limit ?
1764 *
1765 * If we have written data it becomes a short write. If we have
1766 * exceeded without writing data we send a signal and return EFBIG.
1767 * Linus frestrict idea will clean these up nicely..
1768 */
1769 if (likely(!isblk)) {
1770 if (unlikely(*pos >= inode->i_sb->s_maxbytes)) {
1771 if (*count || *pos > inode->i_sb->s_maxbytes) {
1da177e4
LT
1772 return -EFBIG;
1773 }
1774 /* zero-length writes at ->s_maxbytes are OK */
1775 }
1776
1777 if (unlikely(*pos + *count > inode->i_sb->s_maxbytes))
1778 *count = inode->i_sb->s_maxbytes - *pos;
1779 } else {
9361401e 1780#ifdef CONFIG_BLOCK
1da177e4
LT
1781 loff_t isize;
1782 if (bdev_read_only(I_BDEV(inode)))
1783 return -EPERM;
1784 isize = i_size_read(inode);
1785 if (*pos >= isize) {
1786 if (*count || *pos > isize)
1787 return -ENOSPC;
1788 }
1789
1790 if (*pos + *count > isize)
1791 *count = isize - *pos;
9361401e
DH
1792#else
1793 return -EPERM;
1794#endif
1da177e4
LT
1795 }
1796 return 0;
1797}
1798EXPORT_SYMBOL(generic_write_checks);
1799
1800ssize_t
1801generic_file_direct_write(struct kiocb *iocb, const struct iovec *iov,
1802 unsigned long *nr_segs, loff_t pos, loff_t *ppos,
1803 size_t count, size_t ocount)
1804{
1805 struct file *file = iocb->ki_filp;
1806 struct address_space *mapping = file->f_mapping;
1807 struct inode *inode = mapping->host;
1808 ssize_t written;
1809
1810 if (count != ocount)
1811 *nr_segs = iov_shorten((struct iovec *)iov, *nr_segs, count);
1812
1813 written = generic_file_direct_IO(WRITE, iocb, iov, pos, *nr_segs);
1814 if (written > 0) {
1815 loff_t end = pos + written;
1816 if (end > i_size_read(inode) && !S_ISBLK(inode->i_mode)) {
1817 i_size_write(inode, end);
1818 mark_inode_dirty(inode);
1819 }
1820 *ppos = end;
1821 }
1822
1823 /*
1824 * Sync the fs metadata but not the minor inode changes and
1825 * of course not the data as we did direct DMA for the IO.
1b1dcc1b 1826 * i_mutex is held, which protects generic_osync_inode() from
8459d86a 1827 * livelocking. AIO O_DIRECT ops attempt to sync metadata here.
1da177e4 1828 */
8459d86a
ZB
1829 if ((written >= 0 || written == -EIOCBQUEUED) &&
1830 ((file->f_flags & O_SYNC) || IS_SYNC(inode))) {
1e8a81c5
HH
1831 int err = generic_osync_inode(inode, mapping, OSYNC_METADATA);
1832 if (err < 0)
1833 written = err;
1834 }
1da177e4
LT
1835 return written;
1836}
1837EXPORT_SYMBOL(generic_file_direct_write);
1838
1839ssize_t
1840generic_file_buffered_write(struct kiocb *iocb, const struct iovec *iov,
1841 unsigned long nr_segs, loff_t pos, loff_t *ppos,
1842 size_t count, ssize_t written)
1843{
1844 struct file *file = iocb->ki_filp;
1845 struct address_space * mapping = file->f_mapping;
f5e54d6e 1846 const struct address_space_operations *a_ops = mapping->a_ops;
1da177e4
LT
1847 struct inode *inode = mapping->host;
1848 long status = 0;
1849 struct page *page;
1850 struct page *cached_page = NULL;
1851 size_t bytes;
1852 struct pagevec lru_pvec;
1853 const struct iovec *cur_iov = iov; /* current iovec */
1854 size_t iov_base = 0; /* offset in the current iovec */
1855 char __user *buf;
1856
1857 pagevec_init(&lru_pvec, 0);
1858
1859 /*
1860 * handle partial DIO write. Adjust cur_iov if needed.
1861 */
1862 if (likely(nr_segs == 1))
1863 buf = iov->iov_base + written;
1864 else {
1865 filemap_set_next_iovec(&cur_iov, &iov_base, written);
f021e921 1866 buf = cur_iov->iov_base + iov_base;
1da177e4
LT
1867 }
1868
1869 do {
1870 unsigned long index;
1871 unsigned long offset;
1872 size_t copied;
1873
1874 offset = (pos & (PAGE_CACHE_SIZE -1)); /* Within page */
1875 index = pos >> PAGE_CACHE_SHIFT;
1876 bytes = PAGE_CACHE_SIZE - offset;
6527c2bd
VS
1877
1878 /* Limit the size of the copy to the caller's write size */
1879 bytes = min(bytes, count);
1880
29dbb3fc
N
1881 /* We only need to worry about prefaulting when writes are from
1882 * user-space. NFSd uses vfs_writev with several non-aligned
1883 * segments in the vector, and limiting to one segment a time is
1884 * a noticeable performance for re-write
6527c2bd 1885 */
29dbb3fc
N
1886 if (!segment_eq(get_fs(), KERNEL_DS)) {
1887 /*
1888 * Limit the size of the copy to that of the current
1889 * segment, because fault_in_pages_readable() doesn't
1890 * know how to walk segments.
1891 */
1892 bytes = min(bytes, cur_iov->iov_len - iov_base);
1da177e4 1893
29dbb3fc
N
1894 /*
1895 * Bring in the user page that we will copy from
1896 * _first_. Otherwise there's a nasty deadlock on
1897 * copying from the same page as we're writing to,
1898 * without it being marked up-to-date.
1899 */
1900 fault_in_pages_readable(buf, bytes);
1901 }
1da177e4
LT
1902 page = __grab_cache_page(mapping,index,&cached_page,&lru_pvec);
1903 if (!page) {
1904 status = -ENOMEM;
1905 break;
1906 }
1907
81b0c871
AM
1908 if (unlikely(bytes == 0)) {
1909 status = 0;
1910 copied = 0;
1911 goto zero_length_segment;
1912 }
1913
1da177e4
LT
1914 status = a_ops->prepare_write(file, page, offset, offset+bytes);
1915 if (unlikely(status)) {
1916 loff_t isize = i_size_read(inode);
994fc28c
ZB
1917
1918 if (status != AOP_TRUNCATED_PAGE)
1919 unlock_page(page);
1920 page_cache_release(page);
1921 if (status == AOP_TRUNCATED_PAGE)
1922 continue;
1da177e4
LT
1923 /*
1924 * prepare_write() may have instantiated a few blocks
1925 * outside i_size. Trim these off again.
1926 */
1da177e4
LT
1927 if (pos + bytes > isize)
1928 vmtruncate(inode, isize);
1929 break;
1930 }
1931 if (likely(nr_segs == 1))
1932 copied = filemap_copy_from_user(page, offset,
1933 buf, bytes);
1934 else
1935 copied = filemap_copy_from_user_iovec(page, offset,
1936 cur_iov, iov_base, bytes);
1937 flush_dcache_page(page);
1938 status = a_ops->commit_write(file, page, offset, offset+bytes);
994fc28c
ZB
1939 if (status == AOP_TRUNCATED_PAGE) {
1940 page_cache_release(page);
1941 continue;
1942 }
81b0c871
AM
1943zero_length_segment:
1944 if (likely(copied >= 0)) {
1da177e4
LT
1945 if (!status)
1946 status = copied;
1947
1948 if (status >= 0) {
1949 written += status;
1950 count -= status;
1951 pos += status;
1952 buf += status;
f021e921 1953 if (unlikely(nr_segs > 1)) {
1da177e4
LT
1954 filemap_set_next_iovec(&cur_iov,
1955 &iov_base, status);
b0cfbd99
BP
1956 if (count)
1957 buf = cur_iov->iov_base +
1958 iov_base;
a5117181
MS
1959 } else {
1960 iov_base += status;
f021e921 1961 }
1da177e4
LT
1962 }
1963 }
1964 if (unlikely(copied != bytes))
1965 if (status >= 0)
1966 status = -EFAULT;
1967 unlock_page(page);
1968 mark_page_accessed(page);
1969 page_cache_release(page);
1970 if (status < 0)
1971 break;
1972 balance_dirty_pages_ratelimited(mapping);
1973 cond_resched();
1974 } while (count);
1975 *ppos = pos;
1976
1977 if (cached_page)
1978 page_cache_release(cached_page);
1979
1980 /*
1981 * For now, when the user asks for O_SYNC, we'll actually give O_DSYNC
1982 */
1983 if (likely(status >= 0)) {
1984 if (unlikely((file->f_flags & O_SYNC) || IS_SYNC(inode))) {
1985 if (!a_ops->writepage || !is_sync_kiocb(iocb))
1986 status = generic_osync_inode(inode, mapping,
1987 OSYNC_METADATA|OSYNC_DATA);
1988 }
1989 }
1990
1991 /*
1992 * If we get here for O_DIRECT writes then we must have fallen through
1993 * to buffered writes (block instantiation inside i_size). So we sync
1994 * the file data here, to try to honour O_DIRECT expectations.
1995 */
1996 if (unlikely(file->f_flags & O_DIRECT) && written)
1997 status = filemap_write_and_wait(mapping);
1998
1999 pagevec_lru_add(&lru_pvec);
2000 return written ? written : status;
2001}
2002EXPORT_SYMBOL(generic_file_buffered_write);
2003
5ce7852c 2004static ssize_t
1da177e4
LT
2005__generic_file_aio_write_nolock(struct kiocb *iocb, const struct iovec *iov,
2006 unsigned long nr_segs, loff_t *ppos)
2007{
2008 struct file *file = iocb->ki_filp;
fb5527e6 2009 struct address_space * mapping = file->f_mapping;
1da177e4
LT
2010 size_t ocount; /* original count */
2011 size_t count; /* after file limit checks */
2012 struct inode *inode = mapping->host;
1da177e4
LT
2013 loff_t pos;
2014 ssize_t written;
2015 ssize_t err;
2016
2017 ocount = 0;
0ceb3314
DM
2018 err = generic_segment_checks(iov, &nr_segs, &ocount, VERIFY_READ);
2019 if (err)
2020 return err;
1da177e4
LT
2021
2022 count = ocount;
2023 pos = *ppos;
2024
2025 vfs_check_frozen(inode->i_sb, SB_FREEZE_WRITE);
2026
2027 /* We can write back this queue in page reclaim */
2028 current->backing_dev_info = mapping->backing_dev_info;
2029 written = 0;
2030
2031 err = generic_write_checks(file, &pos, &count, S_ISBLK(inode->i_mode));
2032 if (err)
2033 goto out;
2034
2035 if (count == 0)
2036 goto out;
2037
d3ac7f89 2038 err = remove_suid(file->f_path.dentry);
1da177e4
LT
2039 if (err)
2040 goto out;
2041
870f4817 2042 file_update_time(file);
1da177e4
LT
2043
2044 /* coalesce the iovecs and go direct-to-BIO for O_DIRECT */
2045 if (unlikely(file->f_flags & O_DIRECT)) {
fb5527e6
JM
2046 loff_t endbyte;
2047 ssize_t written_buffered;
2048
2049 written = generic_file_direct_write(iocb, iov, &nr_segs, pos,
2050 ppos, count, ocount);
1da177e4
LT
2051 if (written < 0 || written == count)
2052 goto out;
2053 /*
2054 * direct-io write to a hole: fall through to buffered I/O
2055 * for completing the rest of the request.
2056 */
2057 pos += written;
2058 count -= written;
fb5527e6
JM
2059 written_buffered = generic_file_buffered_write(iocb, iov,
2060 nr_segs, pos, ppos, count,
2061 written);
2062 /*
2063 * If generic_file_buffered_write() retuned a synchronous error
2064 * then we want to return the number of bytes which were
2065 * direct-written, or the error code if that was zero. Note
2066 * that this differs from normal direct-io semantics, which
2067 * will return -EFOO even if some bytes were written.
2068 */
2069 if (written_buffered < 0) {
2070 err = written_buffered;
2071 goto out;
2072 }
1da177e4 2073
fb5527e6
JM
2074 /*
2075 * We need to ensure that the page cache pages are written to
2076 * disk and invalidated to preserve the expected O_DIRECT
2077 * semantics.
2078 */
2079 endbyte = pos + written_buffered - written - 1;
ef51c976
MF
2080 err = do_sync_mapping_range(file->f_mapping, pos, endbyte,
2081 SYNC_FILE_RANGE_WAIT_BEFORE|
2082 SYNC_FILE_RANGE_WRITE|
2083 SYNC_FILE_RANGE_WAIT_AFTER);
fb5527e6
JM
2084 if (err == 0) {
2085 written = written_buffered;
2086 invalidate_mapping_pages(mapping,
2087 pos >> PAGE_CACHE_SHIFT,
2088 endbyte >> PAGE_CACHE_SHIFT);
2089 } else {
2090 /*
2091 * We don't know how much we wrote, so just return
2092 * the number of bytes which were direct-written
2093 */
2094 }
2095 } else {
2096 written = generic_file_buffered_write(iocb, iov, nr_segs,
2097 pos, ppos, count, written);
2098 }
1da177e4
LT
2099out:
2100 current->backing_dev_info = NULL;
2101 return written ? written : err;
2102}
1da177e4 2103
027445c3
BP
2104ssize_t generic_file_aio_write_nolock(struct kiocb *iocb,
2105 const struct iovec *iov, unsigned long nr_segs, loff_t pos)
1da177e4
LT
2106{
2107 struct file *file = iocb->ki_filp;
2108 struct address_space *mapping = file->f_mapping;
2109 struct inode *inode = mapping->host;
2110 ssize_t ret;
1da177e4 2111
027445c3
BP
2112 BUG_ON(iocb->ki_pos != pos);
2113
2114 ret = __generic_file_aio_write_nolock(iocb, iov, nr_segs,
2115 &iocb->ki_pos);
1da177e4
LT
2116
2117 if (ret > 0 && ((file->f_flags & O_SYNC) || IS_SYNC(inode))) {
027445c3 2118 ssize_t err;
1da177e4
LT
2119
2120 err = sync_page_range_nolock(inode, mapping, pos, ret);
2121 if (err < 0)
2122 ret = err;
2123 }
2124 return ret;
2125}
027445c3 2126EXPORT_SYMBOL(generic_file_aio_write_nolock);
1da177e4 2127
027445c3
BP
2128ssize_t generic_file_aio_write(struct kiocb *iocb, const struct iovec *iov,
2129 unsigned long nr_segs, loff_t pos)
1da177e4
LT
2130{
2131 struct file *file = iocb->ki_filp;
2132 struct address_space *mapping = file->f_mapping;
2133 struct inode *inode = mapping->host;
2134 ssize_t ret;
1da177e4
LT
2135
2136 BUG_ON(iocb->ki_pos != pos);
2137
1b1dcc1b 2138 mutex_lock(&inode->i_mutex);
027445c3
BP
2139 ret = __generic_file_aio_write_nolock(iocb, iov, nr_segs,
2140 &iocb->ki_pos);
1b1dcc1b 2141 mutex_unlock(&inode->i_mutex);
1da177e4
LT
2142
2143 if (ret > 0 && ((file->f_flags & O_SYNC) || IS_SYNC(inode))) {
2144 ssize_t err;
2145
2146 err = sync_page_range(inode, mapping, pos, ret);
2147 if (err < 0)
2148 ret = err;
2149 }
2150 return ret;
2151}
2152EXPORT_SYMBOL(generic_file_aio_write);
2153
1da177e4 2154/*
1b1dcc1b 2155 * Called under i_mutex for writes to S_ISREG files. Returns -EIO if something
1da177e4
LT
2156 * went wrong during pagecache shootdown.
2157 */
5ce7852c 2158static ssize_t
1da177e4
LT
2159generic_file_direct_IO(int rw, struct kiocb *iocb, const struct iovec *iov,
2160 loff_t offset, unsigned long nr_segs)
2161{
2162 struct file *file = iocb->ki_filp;
2163 struct address_space *mapping = file->f_mapping;
2164 ssize_t retval;
65b8291c
ZB
2165 size_t write_len;
2166 pgoff_t end = 0; /* silence gcc */
1da177e4
LT
2167
2168 /*
2169 * If it's a write, unmap all mmappings of the file up-front. This
2170 * will cause any pte dirty bits to be propagated into the pageframes
2171 * for the subsequent filemap_write_and_wait().
2172 */
2173 if (rw == WRITE) {
2174 write_len = iov_length(iov, nr_segs);
65b8291c 2175 end = (offset + write_len - 1) >> PAGE_CACHE_SHIFT;
1da177e4
LT
2176 if (mapping_mapped(mapping))
2177 unmap_mapping_range(mapping, offset, write_len, 0);
2178 }
2179
2180 retval = filemap_write_and_wait(mapping);
65b8291c
ZB
2181 if (retval)
2182 goto out;
2183
2184 /*
2185 * After a write we want buffered reads to be sure to go to disk to get
2186 * the new data. We invalidate clean cached page from the region we're
2187 * about to write. We do this *before* the write so that we can return
2188 * -EIO without clobbering -EIOCBQUEUED from ->direct_IO().
2189 */
2190 if (rw == WRITE && mapping->nrpages) {
2191 retval = invalidate_inode_pages2_range(mapping,
1da177e4 2192 offset >> PAGE_CACHE_SHIFT, end);
65b8291c
ZB
2193 if (retval)
2194 goto out;
1da177e4 2195 }
65b8291c
ZB
2196
2197 retval = mapping->a_ops->direct_IO(rw, iocb, iov, offset, nr_segs);
2198 if (retval)
2199 goto out;
2200
2201 /*
2202 * Finally, try again to invalidate clean pages which might have been
2203 * faulted in by get_user_pages() if the source of the write was an
2204 * mmap()ed region of the file we're writing. That's a pretty crazy
2205 * thing to do, so we don't support it 100%. If this invalidation
2206 * fails and we have -EIOCBQUEUED we ignore the failure.
2207 */
2208 if (rw == WRITE && mapping->nrpages) {
2209 int err = invalidate_inode_pages2_range(mapping,
2210 offset >> PAGE_CACHE_SHIFT, end);
2211 if (err && retval >= 0)
2212 retval = err;
2213 }
2214out:
1da177e4
LT
2215 return retval;
2216}
cf9a2ae8
DH
2217
2218/**
2219 * try_to_release_page() - release old fs-specific metadata on a page
2220 *
2221 * @page: the page which the kernel is trying to free
2222 * @gfp_mask: memory allocation flags (and I/O mode)
2223 *
2224 * The address_space is to try to release any data against the page
2225 * (presumably at page->private). If the release was successful, return `1'.
2226 * Otherwise return zero.
2227 *
2228 * The @gfp_mask argument specifies whether I/O may be performed to release
2229 * this page (__GFP_IO), and whether the call may block (__GFP_WAIT).
2230 *
2231 * NOTE: @gfp_mask may go away, and this function may become non-blocking.
2232 */
2233int try_to_release_page(struct page *page, gfp_t gfp_mask)
2234{
2235 struct address_space * const mapping = page->mapping;
2236
2237 BUG_ON(!PageLocked(page));
2238 if (PageWriteback(page))
2239 return 0;
2240
2241 if (mapping && mapping->a_ops->releasepage)
2242 return mapping->a_ops->releasepage(page, gfp_mask);
2243 return try_to_free_buffers(page);
2244}
2245
2246EXPORT_SYMBOL(try_to_release_page);